/* ######### Drop Down ULs CSS ######### */


.ddsubmenustyle, .ddsubmenustyle ul{ /*topmost and sub ULs, respectively*/
border-left:0px solid black; border-right:0px solid black; border-top:0px solid black; border-bottom:0px solid black; margin:0; padding:0; position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: 000080;
visibility: hidden;
z-index: 100; font-style:normal; font-variant:normal; font-weight:normal; font-size:13px; font-family:Arial;
}

.ddsubmenustyle li a{
display: block;
width: 175px; /*width of menu (not including side paddings)*/
color: white;
background-color: 000080;
text-decoration: underline;
padding: 4px 5px;
border-bottom: 0px solid black;
}

* html .ddsubmenustyle li{ /*IE6 CSS hack*/
display: inline-block;
width: 175px; /*width of menu (include side paddings of LI A*/
}

.ddsubmenustyle li a:hover{
background-color: 00080;
color: red;
}