/* Expanding drop down menus */

#menu {
position: relative; /* Menu position that can be changed at will */
top: 0;
left: 0;
z-index:100;
width: 100%; /* precision for Opera */
}
#menu dl {
float: left;
width: 248px;
margin: 0;
padding: 0;
list-style-type: none;
}
#menu dt {
cursor: pointer;
text-align: center;
font-weight: bold;

margin: 0;
padding: 0;
list-style-type: none;
}
#menu dd {
display: none;
margin: 0;
padding: 0;
list-style-type: none;
}
#menu li {
text-align: left;
background: #EDEDE8;
margin: 0;
padding: 0 1.5em;
list-style-type: none;
line-height:2em;
}
#menu li a, #menu dt a {
color: #4B291B;
text-decoration: none;
display: block;
height: 100%;
border: 0 none;
}
#menu li a:hover, #menu li a:focus, #menu dt a:hover, #menu dt a:focus {
background: #E5F6FF;
color:#075181;
}
#site {
position: absolute;
z-index: 1;
top : 70px;
left : 10px;
color: #000;
background-color: #ddd;
padding: 5px;
border: 1px solid gray; 
}
