.ddsmoothmenu{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	
}

.ddsmoothmenu ul{
	z-index:100; /*removes indent IE and Opera*/
	padding: 0; /*removes indent Mozilla and NN7*/
	list-style-type: none; /*turns off display of bullet*/
	margin: 0px;
}

/*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: #006CAC;
	text-decoration: none;
	padding-top: 3px;
	padding-left: 10px;
	padding-right: 0px;
	padding-bottom: 1px;
	text-align: left;
	width: 128px;
	margin: 0px;
}

* 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: #006CAC;	
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background-color: #006CAC;	
	color: #FFF; 
}
.ddsmoothmenu ul li a:hover {
	background-color: #006CAC;
	color: #FFF;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	margin-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{
	background-color: #8AACD4;
	color: #006CAC;
	margin-top: 0;
	margin-bottom: 4;
	width: 151px;
	margin-left: 0px;
	padding-right: 0px;
	padding-left: 10px;
}

.ddsmoothmenu ul li ul li a:hover{
	background-color: #006CAC;
	color: #FFF;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
}

