/* ######### Drop Down ULs CSS ######### */


.ddsubmenustyle, .ddsubmenustyle ul{ /*topmost and sub ULs, respectively*/
font:normal 10px/18px Verdana, Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: white;
border: #6699ff solid;
border-width: 1px 1px 0;
border-bottom-width: 0;
visibility: hidden;
z-index: 100;
}

.ddsubmenustyle li img {

border: 0;
}

.ddsubmenustyle li a{
display: block;
width: 220px; /*width of menu (not including side paddings)*/
padding: 0 0;
text-decoration: none;
color: DarkSlateGray;
letter-spacing: 0px;
background-color: white;
text-indent: 5px;
border-bottom: 1px solid #6699ff;  
}

.ddsubmenustyle li a.3rdLevel{
font-weight: bold;
background-color: #D3D3D3;
}

.ddsubmenustyle li a.short{
width: 125px;
}

* html .ddsubmenustyle li{ /*IE6 CSS hack*/
display: inline-block;
width: 220px; /*width of menu (include side paddings of LI A*/
}

* html .ddsubmenustyle li.short{ /*IE6 CSS hack*/
display: inline-block;
width: 125px; /*width of menu (include side paddings of LI A*/
}

.ddsubmenustyle li a:hover{
background-color: #6699ff;
color: black;
}

