/* CSS menu */

#menu{
position:absolute; /* in ie css to change it back to absolute */
z-index:500;
left:0;
top:85px;
font-size:.9em;
font-size:12px;
width:130px;
}

#menu ul{
margin:0;
padding:0;
list-style:none;
}

#menu ul li{ /*in ie css to fix the retarded ie spacing thing between the li --would be in here, but opera freaks out */
position:relative;
}

#menu a{
display:block;
width:130px;
padding:2px;
border-bottom:1px solid white;
background-color:#85B3DE;
text-decoration:none;
color:#000000;
}
#menu a:hover{
background-color:#668EB3;
}


/* the submenu boxes #B4D10D#85B3DE*/
#menu div{
position:absolute;
z-index:600;
top:0;
left:-200px;
border-width:1px 1px 0 1px;
border-color:#FFFFFF;
border-style:solid;
}

#menu div a{
border-bottom:1px solid #FFFFFF;
background-color:#CCCCCC;
opacity:.80;
filter:alpha(opacity=80);
color:#000000;
font-size:.9em;
font-size:11px;
}
#menu div a:hover{
opacity:1;
filter:alpha(opacity=100);
background-color:#CCCCCC;
}


/* for the section navigation list */

#menu p{ /*for the section heading */
color:#FFFFFF;
margin-bottom:0;
margin-left:5px;
font-variant:small-caps;
font-size:11px;
}

#menu ol{
color:#FFFFFF;
list-style:disc;
margin-left:25px;
margin-top:0;
margin-bottom:5px;
padding:0;
font-size:.9em;
font-size:11px;
}
#menu ol ol{
color:#FFFFFF;
margin-left:20px;
}

/*this nifty property gets rid of the sub sub navigation ol in the popout menu when it is open in the bottom section there... */
#menu ul ol{
height:0;
padding:0;
margin:0;
visibility:hidden;
}

#menu ol .current, #menu span .current{ /*for the grey highlighted current page*/
color:#CCCCCC;
cursor:auto;
}

#menu ol a{
background-color:transparent;
color:#FFFFFF;
width:100px;
border:0;
}
#menu ol a:hover{
background-color:transparent;
color:#CCCCCC;
}

/* these two are for the section headings */
#menu span a{
background-color:transparent;
border:none;
color:#FFFFFF;
}
#menu span a:hover{
background-color:transparent;
color:#CCCCCC;
}

/*end section navigation ol list */


/* for the current section -- moves the menu directly below the current menu section -- not currently utilized */
#menu #current{
position:static;
border:0;
}
