.ddsmoothmenu-red{
/*background: #414141; /*background of menu bar (default state)*/
width: 299px;
font-size:13px;
float:left;
}

.ddsmoothmenu-red ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenu-red ul li{
	position: relative;
	display: inline;
	float: left;
}

/*Top level menu link items style*/
.ddsmoothmenu-red ul li a{
	display: block;
	background:#6e0000; /*background of menu items (default state)*/
	text-decoration: none;
	color: white;	
	padding:0px;
	margin:0;

	filter:progid:DXImageTransform.Microsoft.alpha(opacity=90);
	filter:alpha(Opacity=90); /*modify to change the shade solidity/opacity, same as below*/
	opacity:0.9; /*firefox  opacity*/
	-moz-opacity:0.9; /*mozilla opacity*/
	-khtml-opacity:0.9; /*opacity*/	
}

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

.ddsmoothmenu-red ul li a span{ /*IE6 hack to get sub menu links to behave correctly*/
	color:#ffffff;
	font-size:16px;
	position:absolute;
	top:2px;
	right:2px;
}
.ddsmoothmenu-red ul li a:link, .ddsmoothmenu-red ul li a:visited{
	color: white;
}



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

.ddsmoothmenu-red ul li a:hover{
	background: #cc0000; /*background of menu items during onmouseover (hover state)*/
	color: white;
}
	
/*1st sub level menu*/
.ddsmoothmenu-red 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)*/
.ddsmoothmenu-red ul li ul li{
	display: list-item;
	float: none;
}

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

/* Sub level menu links style */
.ddsmoothmenu-red ul li ul li a{
	font-size:13px;
	width: 140px; /*width of sub menus*/
	padding:5px;
	padding-left:5px;
	margin: 0;
	border-top-width: 0;
	border-bottom: 1px solid #b32d2b;
	border-right:1px solid #b32d2b;
}

/*Fix Submenu width of each menu -----*/
.ddsmoothmenu-red ul li ul li a.mnuSocietyWidth { width:137px; }
.ddsmoothmenu-red ul li ul li a.mnuClientWidth { width:142px; }


/* Holly Hack for IE \*/
* html .ddsmoothmenu-red{height: 1%;} /*Holly Hack for IE7 and below*/





