.ddsmoothmenu {
	float: left;
	width: 840px;
	padding-top:60px;
	font-family: tahoma, "tahoma", Times, serif;
	font-size: 12px;
}
.ddsmoothmenu ul {
	z-index:100;
	list-style:none;
	padding:0px;
	margin:0;
}
/*Top level list items*/
.ddsmoothmenu ul li {
	position: relative;
	display: inline;
	float: left;
}
/*Top level menu link items style*/
.ddsmoothmenu ul li a {
	display: block;
	text-decoration: none;
	font-family: tahoma, "tahoma", Times, serif;
	font-size: 12px;
	color: #333;
	background-color:#c8c6c6;
	padding-right: 10px!important;
	padding-left: 10px;
	display: block;
	line-height: 40px;
	margin-right:2px;
	margin-bottom:2px;
}
* html .ddsmoothmenu ul li a { /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}
.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited {
	color: #333;
}
.ddsmoothmenu ul li a.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	color: #333;
}
.ddsmoothmenu ul li a:hover {
	color: #ffffff;
	background-color:#158848;
}
/* sub menus */
.ddsmoothmenu ul li ul {
	position: absolute;
	left: -3000px;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	list-style: none!important;
}
/*Sub level menu list items (alters style from Top level List Items)*/
.ddsmoothmenu ul li ul li {
	background-image:none!important;
	background-color:#c8c6c6;
	display: list-item;
	float: none;
	padding-right:0px;
	padding-left:0px;
	margin-bottom:2px;
}
/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul {
	background: white;
	top: 0;
}
/* Sub level menu links style */
.ddsmoothmenu ul li ul li a {
	padding:1px 10px 1px 10px!important;
	margin: 0;
	border-top-width: 0;
}
/* Holly Hack for IE \*/
* html .ddsmoothmenu {
	height: 1%;
} /*Holly Hack for IE7 and below*/
