
#mainMenu.ddsmoothmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
#mainMenu.ddsmoothmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/

* html #mainMenu.ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}


/*1st sub level menu*/
#mainMenu.ddsmoothmenu ul li ul{
	position: absolute;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	width:auto;
	padding-bottom:2px;
	background-image: url(/images/bk_submenu.png);
	background-repeat: no-repeat;
	background-position: right top;/*border-bottom:1px solid #222;*/
}

/*Sub level menu list items (undo style from Top level List Items)*/
#mainMenu.ddsmoothmenu ul li ul li{
	float: none;
	display: list-item;
	padding:0;
	top:-15px;
	left:15px;
	
}


/* Sub level menu links style */
#mainMenu.ddsmoothmenu ul li ul li a, #mainMenu.ddsmoothmenu ul li ul li a:hover{
text-align:left;
margin:0;
padding:5px 0 5px 5px;
/*background:#000;*/
line-height:100%;
width:130px;
height:1%;
border-bottom:0px solid #333;
text-transform:none;
font-size:12px;

}

#mainMenu.ddsmoothmenu ul li ul li a:hover {
	color:#1FA2E1;	
}

#mainMenu.ddsmoothmenu ul li ul li a.last, #mainMenu.ddsmoothmenu ul li ul li a.last:hover {
	border:none;	
}

/* Holly Hack for IE \*/
* html #mainMenu.ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


