
.ddsmoothmenu{
	display:block;

}

.ddsmoothmenu ul{
	margin:0;
	padding: 0;
		float:right;
	list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenu ul li{
	position: relative;
	display: inline;
	float: left;
	margin-right:16px;
	padding-top:13px;


}

/*Top level menu link items style*/
.ddsmoothmenu ul li a {
	display: block;
	padding-left:9px;
	padding-right:9px;
	font-size: 15px;
		font-weight:bold;
	color: #fff;	
	text-decoration: none;
	outline: none;
}

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

.ddsmoothmenu ul li a.selected, .ddsmoothmenu ul li a:hover { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background-color:#FFF;
	 opacity:0.8;
  	filter:alpha(opacity=80); /* For IE8 and earlier */
	color:#000000;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	padding-top:10px;
	background: #860808;
	 opacity:0.8;
  	filter:alpha(opacity=80); /* For IE8 and earlier */
	
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
display: list-item;
float: none;
padding: 0;
background: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
top: 0;
}

.ddsmoothmenu ul li ul li a.selected, .ddsmoothmenu ul li ul li a:hover  { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #460303;
	
}
/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/
