.ddsmoothmenu ul li a.l1 {padding-top: 10px; height: 23px;}
.ddsmoothmenu ul li a.l2 {padding-top: 3px; height: 30px;}

.ddsmoothmenu {
	height: 33px;
	width: 900px;
	background: #58585a;
	font-size: 0.8em;
	text-transform: uppercase;
}

.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;
	color: #fff;
	text-decoration: none;
	height: 33px;
	width: 126px;
	color: #fff;
	text-align: center;
	/*line-height: 1.2em;*/
}

.ddsmoothmenu ul li a:hover {
	color: #dae5a7;
	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: 126px;
	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;
	/*text-indent: 3px;*/
	height: auto;
	/*line-height: 1.2em;*/
	color: #58585a;
	background: #dae5a7;
	width: 126px;
	padding: 5px 0;
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 1px solid #fff;
}

.ddsmoothmenu ul li ul li a:hover {
	color: #58585a;
	text-decoration: underline;
}