.ddsmoothmenu
{   background: transparent; /*background of menu bar (default state)*/
    font: bold 12px Verdana;
    /*width: 100%;*/
    margin-left: 120px;
    margin-right: auto;
}

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

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

/*Top level menu link items style*/
.ddsmoothmenu ul li a
{   background: #9d9dde; /*background of menu items (default state)*/
    color: white;
    border-right: 1px solid #ffffff;
    display: block;
    padding: 8px 5px;
    text-decoration: none;
}

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

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

/*background of menu items during onmouseover (hover state)*/
.ddsmoothmenu ul li a:hover 
{   background: black; 
    color: #ffffff;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul
{   display: none; /*collapse all sub menus to begin with*/
    left: 0;
    position: absolute;
    visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li
{   display: list-item;
    float: 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
{   border-bottom: 1px solid gray;
    border-top-width: 0;
    font: normal 13px Verdana;
    margin: 0;
    padding: 5px;
    width: 160px; /*width of sub menus*/
}


/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass
{   position: absolute;
    right: 7px;
    top: 12px;
}

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

/* ######### CSS for shadow added to sub menus  ######### */
.ddshadow
{   background: silver;
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
}

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