@charset "UTF-8";
/* CSS Document */
.nav ul{
margin: 0;
padding: 0;
width: 170px; /* Main Menu Item widths */
list-style-type: none;

/*border-bottom: 1px solid #ccc;*/
}
 
.nav ul li{
position: relative;
margin-bottom:2px;
}

/* Top level menu links style */
.nav ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
text-decoration: none;
padding: 6px;
color: #666;
}

.nav ul li a:link, .nav ul li a:visited, .nav ul li a:active{
background: #fff; /*background of menu items (default state)*/
color: #666;
}


.nav ul li a.selected,/*CSS class that's dynamically added to the currently active menu items' LI A element*/
.nav ul li a:hover { /*background of menu items during onmouseover (hover state)*/
background: #666; 
color: #fff;
}


/*Sub level menu items */
.nav ul li ul{
position: absolute;
top: 0;
width: 170px; /*Sub Menu Items width */
font-weight: normal;
visibility: hidden;
}


.nav ul li ul li a:link, .nav ul li ul li a:visited, .nav ul li ul li a:active{
background: #666; /*background of menu items (default state)*/
color: #fff;
}


.nav ul li ul li a.selected,/*CSS class that's dynamically added to the currently active menu items' LI A element*/
.nav ul li ul li a:hover { /*background of menu items during onmouseover (hover state)*/
background: #fff; 
color: #666;
}

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

