/* CSS to handle menu navigation */

#navsite {
 font-size: 0.9em;
 font-weight: normal;
 width: 150px; 
 border: none; 
 padding: 0; 
 background-color: #f8f2da;
 color: #395bae;
 position: absolute;
 margin: 0;
 left: 900px;
 top: 220px;
}

#navsite p {
 display: none;
}

#navsite ul {
 list-style: none; 
 margin: 0 0 30px 0; 
 padding: 0; 
}

#navsite li {
 margin: 0 0 3px 0; 
}

#navsite ul li a {
 display: block; 
 padding: 6px 2px 6px 0.5em; 
 border-left: 10px solid #935a0c; 
 border-top: 1px solid #935a0c;
 border-right: 1px solid #935a0c;
 border-bottom: 1px solid #935a0c;
 background-color: #e4dec8; 
 color: #395bae; 
 text-decoration: none; 
 width: 100%; 
}

html>body #navsite ul li a { 
 width: auto; 
}

#navsite ul li a:hover {
 border-left: 10px solid #446dd1;
 border-right: 1px solid #446dd1;
 border-bottom: 1px solid #446dd1;
 border-top: 1px solid #446dd1;
 background-color: #9cb7f8; 
 color: #395bae; 
}


