.ddsmoothmenu{
width: 100%;
z-index: 90;
height: 30px;
line-height: 30px;
}

.ddsmoothmenu ul{
z-index:90;
margin: 0px auto;
padding: 0px;
list-style-type: none;
}

.ddsmoothmenu ul li{
position: relative;
display: inline;
float: left;
height: 30px;
line-height: 30px;
margin:0px auto;
width: 100px;
}

.ddsmoothmenu ul li a{
display: block;
font-family: Helvetica;
font-size: 8pt;
color: #ffffff;
text-decoration: none;
height: 30px;
line-height: 30px;
}

* 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{

}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
color: #ffffff;	
}

.ddsmoothmenu ul li a:hover{
background: transparent; /*background of menu items during onmouseover (hover state)*/
color:#ffffff;
}
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
background: url("1px.png");
position: absolute;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
width: 200px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
height: 20px;
line-height:20px;
display: list-item;
float: none;
border-top: 1px solid #999999;
width: 200px;
}

/*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{
text-align:left;
margin-left:10px;
height: 20px;
line-height:20px;
color:#444444;
}

.ddsmoothmenu ul li ul li a:hover{
color:#274072;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
}

.rightarrowclass{
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
	opacity: 0.7;
}