.ddsmoothmenu{
	font: bold normal 8pt Arial;
	text-transform: uppercase;
	width: 900px;
}
.ddsmoothmenu ul{
	padding: 0;
	margin: 0;
	list-style-type: none;
	z-index:100;
}
/* top level list items */
.ddsmoothmenu ul li{
	display: inline;
	float: left;
	position: relative;
}
/* top level menu link items style */
.ddsmoothmenu ul li a{
	text-decoration: none;
	background: #E7E9E9;
	display: block;
	width: 276px;
	height: 16px;
	padding-top: 4px;
	padding-right: 6px;
	padding-left: 6px;
	margin-right: 24px;
	border: 1px solid #ADAFAF;
}
* html .ddsmoothmenu ul li a{ /* IE 6 hack to get sub menu links to behave correctly */
	display: inline-block;
}
.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
	color: #3A3A3A;
}
.ddsmoothmenu ul li a:active{
	color: #E7E9E9;
	background: #ADAFAF;
}
.ddsmoothmenu ul li a:hover{
	color: #E7E9E9;
	background: #ADAFAF; /* background of menu items during onmouseover (hover state) */
}
/* 1st sub level menu */
.ddsmoothmenu ul li ul{
	display: none; /* collapse all sub menus to begin with */
	position: absolute;
	visibility: hidden;
	left: 0px;
}
/* sub level menu list items (undo style from top level list items) */
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
}
/* all subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
	top: 0;
}
/* sub level menu links style */
.ddsmoothmenu ul li ul li a{
	font: normal 8pt Arial;
	text-transform: uppercase;
	width: 270px;
	height: 16px;
	padding-top: 4px;
	padding-right: 6px;
	padding-left: 6px;
	margin: 0;
	border-top-width: 0px;
	border-bottom: 1px solid #ADAFAF;
}
/* CSS for shadow added to sub menus */
.ddshadow{
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.toplevelshadow{ /* shadow opacity doesn't work in IE */
	opacity: 0;
}