.ddsmoothmenu{
	font-family: Arial;
	font-weight: bold;
	font-size: 14pt;
	text-align: center;
}

.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{
	/*margin-left:12px;*/
	display: block;
	padding: 2px 5px;
	color: #ffffff;
	text-decoration: none;
	vertical-align: middle;
}

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

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #FFFFFF; 
	color: #666666;
}

.ddsmoothmenu ul li a:hover{
	background: #FFFFFF; /*background of menu items during onmouseover (hover state)*/
	color: black;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	background: #FFFFFF; 
	color: black;
}

/*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;
	margin: 0;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	font: normal 8pt Verdana;
	width: 100%;
	white-space: nowrap;
	margin: 0;
	
}
/* Sub level menu links style */
.ddsmoothmenu ul li ul li a:link, .ddsmoothmenu ul li ul li a:visited{
	color: #666666;
}
.ddsmoothmenu ul li ul li a.Even{
	background:  #C4E0FF;
}
.ddsmoothmenu ul li ul li a.Odd{
	background:  #FFFFFF;
}
/* Sub level menu links style in hover state */
.ddsmoothmenu ul li ul li a:hover{
	background: #1D3A96;; /*background of menu items during onmouseover (hover state)*/
	color: #FFFFFF;
}
