.ddsmoothmenu{
margin: 0;
padding: 0;
}

.ddsmoothmenu ul{
margin: 0;
padding: 0;
width: 150px; /* Main Menu Item widths */
list-style-type: none;
}
 
.ddsmoothmenu ul li{
position: relative;
padding: 0px;
}

/* Top level menu links style */
.ddsmoothmenu ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: white;
text-decoration: none;
padding: 20px;
border: 1px solid #000000;
}

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited, .ddsmoothmenu ul li a:active{
background: #FFFFFF; /*background of menu items (default state)*/
color: black;
}


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

.ddsmoothmenu ul li a:hover{
background: #E6EBF2; /*background of menu items during onmouseover (hover state)*/
color: black;
font-weight: normal;
}

/*Sub level menu items */
.ddsmoothmenu ul li ul{
position: absolute;
width: 150px; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;
padding-left: 0px;
}

/*Sub level menu items */
.ddsmoothmenu ul li ul li{
top: 0;
padding-left: 0.8em;
}

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

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

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: #7B7C7D;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}