/* CSS Document */

/* Horizontal inline navigation */

/* This styles the container */
#navigation{
width:640px;
background-color:#FD4629;
padding:8px;
margin-left:13px;
}

/* This makes it a horizontal nav */
#navigation li {
display:inline;
background-color:none;
}

/* This styles the list */
#navigation ul {
list-style-type:none;
padding:0;
margin:0;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
text-align:center;
}

/* This styles the buttons */
#navigation a {
text-decoration:none;
text-transform:uppercase;
font-weight:bold;
color:#FFFFFF;
padding:0px 22px 0px 6px;
}

/* This defines other states */
#navigation a:hover {
color:#99CC66;
}


