@charset "UTF-8";
/* CSS Document */
.nav{
width: 100%;
}

.nav ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.nav ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.nav ul li a{
display: block;
color: #333;
padding: 8px 10px;
text-decoration: none;
}

.nav ul li ul li a{
	background: #fff; 

}

* html .nav ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}


.nav ul li a.selected,
.nav ul li a:hover { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	opacity:0.8;
	filter: alpha(opacity = 80);
}
	
/*1st sub level menu*/
.nav ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.nav ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.nav ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.nav ul li ul li a{
min-width: 160px; /*width of sub menus*/
padding: 5px 5px 5px 10px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid #333;
border-left: 1px solid #333;
border-right: 1px solid #333;
}

/* Holly Hack for IE \*/
* html .nav{height: 1%;} /*Holly Hack for IE7 and below*/
.clear {clear:both;}

* html .nav ul li ul li a{
_width: 154px;_padding-right:10px;
}
/***** Accordion Menu CSS ****
#container-nav {float:left; clear:left; margin:0px; position:relative;}
#container-nav ul {list-style:none; margin:0;}
#container-nav ul li {color: #fff; float:left; font-weight: bold; padding:0 10px; margin:0; cursor:pointer;}
#container-nav ul li ul li {padding:0; margin:0; position:relative;}
#container-nav ul li ul li a {	}
#container-nav ul li a {color: #fff; padding:3px 5px; display:block;}
#container-nav .current_page_item a {color: #fff;}*/


