/* # = ID selector */
/*. = class selector */


body {
  background-color:#FFDD77; 
  color:black; 
  font-size:100%; 
  direction:ltr
  }
.body {
  color:FFDD77
  }
#body1 {
  color:black
  }  

a:link {color:#0000EE } /* unvisited link - link; darker blue (std?=#0000FF)*/
a:visited {color:#551A8B } /* visited link - vlink; dark purple (std?=#800080)*/
a:hover {color:# } /* mouse over link  (std?=#?)*/
a:active {color:#EE0000} /* link selected - alink; darker red (std?=#FF0000)*/



h1 {text-align:center; font-size:1.5em; font-weight:bold; font-family: Arial, Helvetica,sans-serif;}



/* Navigation List block with black blocks */
 ul#list-nav {                 /* list "ul" properties */
 list-style-type:none;
 height:60px;
 width:832px;
 padding:0;
 margin-left:auto;
 margin-right:auto;
 margin-top:auto;
 }

ul#list-nav li {            /* line item "li" properties */
float:left;
}

ul#list-nav li a {         /* anchor "a" properties */

padding:5px 0;
display:block;
width:100;
line-height:18px;
text-decoration:none;
font-family:Verdana, sans-serif;
font-size:.75em;
background:#000000;
color:#FFdd77;

text-align:center;
border-left:2px solid #FFdd77;
}

ul#list-nav li a:hover {
background:#a2b3a1;
color:#000
}



