/* css for weds.html */
/* css units    px   pixel      syntax:  12px
 *              in   inches
 *              cm   centimeters
 *
 *              em   1em is === def font size      10em
 *              %    w/ rel to width of parent elem  20%
 *


 SYNTAX for ids and classes
 #id   ----- javascript/css   unique  id='someid'
 .class ---- javascript/css   group of elems class='classname'
 
 */

.articleText{   }
.navigationText{  }


.red{color:red;}
.rightAlign{text-align:right;}
#maintitle{ text-align:center; }


ul.xItem{
    list-style-image: url('x.png');
}
ol{
    list-style-type: lower-alpha;
}


/************** navigation ***/
nav ul{
    list-style-type:none;
}
nav ul li {
    display:inline;
    background-color:yellow;
    margin:5px 5px;
    padding:5px 10px;
    border:solid black 1px;
}

a:link {color:blue; } /* def presence */
a:visited{color:blue; }  
a:hover {background-color:white;} 
a:active{ } /*press link*/












h1, h2, h3 ,h4,h5,h6{ /* apply rules to h1 and h2 and h3*/ }

p a{/*for all <a> in a <p> style the <a> in this way*/  
    text-decoration:overline;
}

p{ 
    /*font-family: "Arial", Helvetica, Sans-serif;*/
    /*font-family: "Times New Roman", Times, serif;*/
    font-family: "Courier New", Courier, monospace;
    /*font-family: 'Major Mono Display', monospace;*/
    font-size:16px; /*default 16 px */
    font-weight: 100;
    /*letter-spacing:10px;*/
    word-spacing:10px;
    text-decoration:underline ; /*overline  none*/
    line-height: 1.5;
    text-transform:capitalize;
    text-indent: 20px;
    text-shadow:-1px -1px 1px black;
}

a{
    text-decoration:none;
}







