 .dropdown{
	background: transparent; /*background of menu bar (default state)*/
	width: 100%;
	font-size: 12px;
	letter-spacing:2px;
	margin:0;
	padding:0;
}

.dropdown ul{
	z-index:100;
	list-style-type: none;
	list-style-position:outside;
	border:0;
	margin: 0;
	padding: 0;
	border:0;
}

/*Top level list items*/
.dropdown ul li{
	position: relative;
	display: inline;
	float: left;
	text-align:center;
	margin: 0;
	padding: 0;
	border:0;
}

/*Top level menu link items style*/
.dropdown ul li a{
	display: block;
	color: white;
	padding: 24px 29px;
	color: #2d2b2b;
	text-decoration: none;
}

* html .dropdown ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

.dropdown ul li a:link, .dropdown ul li a:visited{
	color: white;
}
.dropdown ul li ul li a:link, .dropdown ul li ul li a:visited{
	color: white;
}

.dropdown ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: transparent url(../images/menu_nv.png) top repeat-x; 
	color: white;
}

.dropdown ul li a:hover{
	background: transparent url(../images/menu_nv.png) top repeat-x;  /*background of menu items during onmouseover (hover state)*/
	color: white;
}

.dropdown ul li ul li a.selected{
	background: #009BC1; 
	color: white;
}

.dropdown ul li ul li a:hover{
	background: #009BC1; 
}

.dropdown ul li a.active{
	background: transparent url(../images/menu_nv.png) top repeat-x;  /*background of menu items during onmouseover (hover state)*/
	color: white;
}
	
/* Holly Hack for IE \*/
* html .dropdown{height: 1%;} /*Holly Hack for IE7 and below*/
