@charset "utf-8";
/* CSS Document */

.ddsmoothmenu-v ul{
margin: 0;
padding: 0;
width: 100%; /* Main Menu Item widths */
list-style-type: none;
font: bold 10px Verdana;
color:white;
float:left;
background-color:#1ba7c5;
height:auto;
display:inline-block;

}
 
.ddsmoothmenu-v ul li{
position: relative;
margin:0;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: white;
text-decoration: none;
border-bottom: 1px solid #659e28;
width:auto;
overflow:visible;



}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{
background: #1ba7c5; /*background of menu items (default state)*/
color: white;
padding:6px 0px 0px 10px;
height:20px;
border:0px;
text-transform:uppercase;
font-size:9px;
width:auto;
overflow:visible;


}


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

}

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

}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul{
position: absolute;
width: auto; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;
margin:0px;
border:0px;

}

.ddsmoothmenu-v ul li ul li a:link, .ddsmoothmenu-v ul li ul li a:visited, .ddsmoothmenu-v ul li ul li a:active{
background-color:#7ebc3c;
}

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

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