.ddsmoothmenu{
width: 100%;
}

.ddsmoothmenu ul{
z-index:100;
margin: 42px 0 0 0;
padding: 0;
list-style-type: none;
float: right;
border-radius: 10px;
-moz-border-radius: 10px; -webkit-border-radius: 10px; 
}

.ddsmoothmenu ul.sub-menu {
margin-top: 1px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}
.ddsmoothmenu ul.sub-menu li {
margin-left: 0;
}

/*Top level list items*/
.ddsmoothmenu ul li{
padding: 5px 0;
margin-left: 0px;
position: relative;
display: inline;
float: left;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a {
display: block;
font-size: 13px;
font-weight: bold;
padding: 0 10px;
text-decoration: none;
//line-height: 1.5;
}

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

/* defined in theme_css/style.php */
.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited { }

/* defined in theme_css/style.php */
.ddsmoothmenu ul li a.selected { }

/* defined in theme_css/style.php */
.ddsmoothmenu ul li a:hover { }
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul {
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
margin: 0;
}

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

/*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 {
width: 160px; /*width of sub menus*/
margin: 0;
padding: 8px 0;
border-left: none;
border-right: none;
background: url(../images/inset_line_2x2px.png) repeat-x scroll left bottom transparent;
font-size: 11px;
font-weight: normal;
}

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


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 43%;
right: 17px;
padding: 0;
background-color: transparent;
-webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none; 
}

.rightarrowclass{
position: absolute;
top: 43%;
right: 22px;
padding: 0;
background-color: transparent;
-webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}

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

.ddshadow{ /*shadow for NON CSS3 capable browsers*/
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
}

.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
opacity: 0.8;
}