/* CSS Document */
.ddsmoothmenu-v ul{
margin: 0;
padding: 0;
width: 240px; /* Main Menu Item widths */
list-style-type: none;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:normal;
border:1px solid #CCCCCC;
border-radius:4px;
}
 
.ddsmoothmenu-v ul li{
position: relative;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: #143956;
text-decoration: none;
padding-top:6px;
padding-bottom:6px;
padding-left:3px;
border-bottom: 1px dotted #CCCCCC;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:normal;

}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
background:#DADDE4; /*background of menu items (default state)*/
color:#143956;
font-weight:normal;
vertical-align:middle;
padding-left:8px;
}


.ddsmoothmenu-v ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background:#333;
color:#FFFFFF; 

}

.ddsmoothmenu-v ul li a:hover{
background:#333;
color:#FFFFFF; /*background of menu items during onmouseover (hover state)*/

}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
position: absolute;
width: 610px; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;
background:#DADDE4;
}

 
/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 2%; }
/* End */
