
.ddsmoothmenu{ float:left;
/*background of menu bar (default state)*/
}

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

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
list-style:none; color:#fff; float:left; border-right:1px solid #cecece; font-size:11px; 
}
.ddsmoothmenu ul li a b { font-size:18px; color:#d1cfb7; }
.ddsmoothmenu ul li a:hover b { color:#cc4242; font-size:18px; }
.ddsmoothmenu ul li.last{ border-right:none; }

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
display: block;
color: #FF0000;
float:left; padding:3px 15px;; text-decoration:none; margin:0 0 0 0; cursor:pointer; 
/*border-right:1px solid #ccc;*/
}

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

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
 color:#fff;
}

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


.ddsmoothmenu ul li a:hover{
 /* ABH : background of menu items during onmouseover (hover state)*/
 color:#fff;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
z-index:1000;
padding-top:15px;
margin-left:0;
display:block; /*collapse all sub menus to begin with*/
visibility: hidden;
background:url(../images/down_arrow.gif) 40px 5px no-repeat;
border-bottom: 1px solid #400e0e; 
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
display:block;
float:none;
background:none;
border-right:none;
border-left:none;
}

/*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{
font:bold 13px Calibri, Arial, Helvetica, sans-serif;
width: 140px; /*width of sub menus*/
margin: 0px;
padding:8px 10px 8px 22px;
background:#fff url(../images/arrow_03.gif) 10px 12px no-repeat;
border-bottom: 1px solid #400e0e;
border-left: 2px solid #400e0e;
border-right: 2px solid #400e0e;
color:#000;
text-align:left;
 /* ABH : drop down background default */
}

.ddsmoothmenu ul li ul li a:link, .ddsmoothmenu ul li ul li a:visited{
color: #000;
}

.ddsmoothmenu ul li ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background:#fff url(../images/arrow_03.gif) 10px 12px no-repeat;
color: #400e0e;

}

.ddsmoothmenu ul li ul li a:hover{
/* ABH : background of menu items during onmouseover (hover state)*/
color: #ab0000;
background:#f1f1f1 url(../images/arrow_03.gif) 10px 12px no-repeat;
}
	

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

.downarrowclass{
position: absolute;
top: 10px;
right: 7px;
}

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

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