/* ######### Drop Down ULs CSS ######### */

.ddsubmenustyle, .ddsubmenustyle ul{ /*topmost and sub ULs, respectively*/
font: normal 13px Verdana;
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
background: white;
border-bottom-width: 0;
visibility: hidden;
z-index: 100;
}

.ddsubmenustyle li a{
display: block;
height:23px; 
width: 176px; /*width of menu (not including side paddings)*/
color: black;
background-color: #00ABCC;
text-decoration: none;
padding: 4px 5px;
border-bottom: 2px solid #fff;
}

* html .ddsubmenustyle li{ /*IE6 CSS hack*/
display: inline-block;
width: 180px; /*width of menu (include side paddings of LI A*/
}

.ddsubmenustyle li a:hover{background-color: #00ABCC; color: white;}
.ddsubmenustyle li a.selected{background-color: #00ABCC; color: white;}

/* ######### Neutral CSS  ######### */
.downarrowpointer{padding-left: 4px; border: 0;}
.rightarrowpointer{position: absolute; padding-top: 3px; left: 100px; border: 0;}
.ddiframeshim{position: absolute; z-index: 500; background: transparent; border-width: 0; width: 0; height: 0; display: block;}

/* ######### Marker List Vertical Menu ######### */

.markermenu{
width: 198px; /*width of side bar menu*/
clear: left;
position: relative; /*Preserve this for "right" arrow images (added by script) to be positioned correctly*/
}

.markermenu ul{
list-style-type: none;
margin: 0 0;
padding: 0;
border-top: 2px solid #fff;
}

.markermenu ul li a{
font: 14px Verdana, Arial, sans-serif;
color: #00014e;
display: block;
height:25px; 
width: auto;
padding: 3px 0;
padding-left: 6px;
text-decoration: none;
border-bottom: 2px solid #fff;
}

* html .markermenu ul li a{ /*IE6 hack*/ width: 195px;}

.markermenu ul li a:visited, .markermenu ul li a:active{color: #00014e;background-color: #cceef5;}
.markermenu ul li a:hover, .markermenu ul li a.selected{color: white;background-color: #f4921c;}


