#smoothmenu1 {
 margin:0px;
}

.ddsmoothmenu1 {
font-family:"Verdana";
font-size:10px;
width: 550px;
}

.ddsmoothmenu1 ul{
z-index:100;
margin: 0;
padding: 0;
}

/*Top level list items*/
.ddsmoothmenu1 ul li{
position: relative;
display: inline;
float: left;
padding:5px;
}

/*Top level menu link items style*/
.ddsmoothmenu1 ul li a{
display: block;
color: #DB0020;
padding-left: 15px;
text-decoration: none;
}

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

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

.ddsmoothmenu1 ul li a:hover{
color:#000000;
}
	
/*1st sub level menu*/
.ddsmoothmenu1 ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu1 ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu1 ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.ddsmoothmenu1 ul li ul li a{
font-family:"Arial Narrow";
font-size:15px;
width: 210px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid gray;
}

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