.ddsmoothmenu {
	height: 22px;
	width: 900px;
	display: block;
	font-size: 0.9em;
}

.ddsmoothmenu ul {
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*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;
	padding-top: 2px;
	height: 20px;
	width: 147px;
	text-transform: uppercase;
	color: #fff;
	background: #004c99;
	text-align: center;
}

.ddsmoothmenu ul li a#active {
	display: block;
	text-decoration: none;
	padding-top: 2px;
	height: 20px;
	width: 147px;
	text-transform: uppercase;
	color: #fff;
	background: #b3071b;
	text-align: center;
}

.ddsmoothmenu ul li a:hover {
	color: #fff;
	background: #b3071b;
	text-decoration: none;
}

* html .ddsmoothmenu ul li a { /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul {
	z-index: 100;
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	top: 0;
	background-color: white;
	width: 147px;
	text-align: center;
}

/*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 {
	display: block;
	height: 20px;
	color: #fff;
	background: #004c99;
	width: 147px;
	padding-top: 2px;
	text-decoration: none;
	text-transform: uppercase;
	border-top: 1px solid #fff;
}

.ddsmoothmenu ul li ul li a:hover {
	color: #fff;
	background: #b3071b;
	text-decoration: none;
}