/* CSS Menu */

#menu{
position:relative;
width:100%;
font: 85% bold Verdana, sans-serif;
}

#menu:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

#menu ul{
border: 1px solid #BBB;
width: auto;
background:#0080FF;
padding: 5px;
margin: 0;
text-align: center; /*set value to "right" for example to align menu to the left of page*/
}

#menu ul li{
display: inline;
}

#menu ul li a{
color: white;
padding: 5px;
margin: 0;
text-decoration: none;
border-right: 1px solid #DADADA;
}

#menu ul li a:hover{
background: #BCD7F3
}

#firstItem a { /* This sets a left side border for the first link in the menu.*/
border-left:1px solid #DADADA;
}
