.ddsmoothmenu{
    font: bold 12px;
    width: 100%;
    }

.ddsmoothmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
width: 100%;
height: 34px;
background-color: -moz-linear-gradient(center top , #E2D8BE, #ffffff) repeat scroll 0 0 transparent;
/* For WebKit (Safari, Google Chrome etc) */
		background: -webkit-gradient(linear, left top, left bottom, from(#e2d8be), to(#fff));
		/* For Mozilla/Gecko (Firefox etc) */
		background: -moz-linear-gradient(top, #e2d8be, #fff);
		/* For Internet Explorer 5.5 - 7 */
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFe2d8be, endColorstr=#FFffffff);
		/* For Internet Explorer 8 */
		-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFe2d8be, endColorstr=#FFffffff)";
/*filter:alpha(opacity=50); -moz-opacity:0.50; -khtml-opacity: 0.50; opacity: 0.50;*/
}

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

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
display: block;
font-family: Arial, Helvetica, Lucida Grande,'PT Serif', Serif;
padding: 8px 15px 8px 10px;
text-decoration: none;
/*text-transform: uppercase;*/
font-size: 1.6em;
font-weight: normal;
}

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

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

.ddsmoothmenu ul li a:hover{
color: #a39161;
}

/*1st sub level menu*/
.ddsmoothmenu ul li ul{
    position: absolute;
    left: 0;
    display: none; /*collapse all sub menus to begin with*/
    visibility: hidden;
    width: 170px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
    display: list-item;
    float: none;
    border-bottom: 1px dotted #a39161;
    background-color: #e2d8be;
}
.ddsmoothmenu ul li ul li.last{
    border-radius:0 0 8px 0; -moz-border-radius:0 0 8px 0; -webkit-border-radius:0 0 8px 0;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
    top: 0;
}
.ddsmoothmenu ul li ul li.last ul li{
border-radius:0px; -moz-border-radius:0px; -webkit-border-radius:0px;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
color:#005daa!important;
font-size: 1.5em;
/*width: 100px; */ /*width of sub menus*/
padding: 8px 5px;
margin: 0;
}
.ddsmoothmenu ul li ul li a:hover {color: #a39161!important;}

/* 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: 12px;
right: 7px;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

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