.ddsmoothmenu{
    width: 920px;
    float:left;
    height: 35px;
    border:0px solid red;
}

.ddsmoothmenu ul{
    z-index:10;
    margin: 0;
    padding: 0;
    list-style-type: none;
    border:0px solid red;
}

/*Top level list items*/
.ddsmoothmenu ul li{
    position: relative;
    display: inline;
    float: left;
    border:0px solid yellow;
    z-index:3;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a{
    display: block;
    text-decoration: none;
    height: 25px;
    text-align:center;
    padding:10px 3px 0px 3px;
    border:0px solid #fff;
    margin:0px 1px 0px 0px;
    color: #fff;
}

.ddsmoothmenu ul li a.first{
    display: block;
    text-decoration: none;
    height: 25px;
    text-align:center;
    padding:10px 3px 0px 3px;
    border:0px solid #000;
    margin:0px 1px 0px 0px;
    color: #fff;
}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
    display: inline-block;
}

/*FOR SIMPLE RECORD ACTION :SELECTED, CURRENT, HOVER*/
.ddsmoothmenu ul li a.selected,.ddsmoothmenu ul li a.current, .ddsmoothmenu ul li a:hover{
    display: block;
    text-decoration: none;
   height: 25px;
    text-align:center;
    padding:10px 3px 0px 3px;
    border:0px solid #8380d1;
    margin:0px 1px 0px 0px;
    color: #3b5202;
    -webkit-border-top-left-radius: 6px;
    -moz-border-top-left-radius: 6px;
    border-top-left-radius: 6px;

    -webkit-border-top-right-radius: 6px;
    -moz-border-top-right-radius: 6px;
    border-top-right-radius: 6px;
    background: #e7e8e2;
}

.ddsmoothmenu ul li a.first.selected,.ddsmoothmenu ul li a.first.current, .ddsmoothmenu ul li a.first:hover{
    display: block;
    text-decoration: none;
   height: 25px;
    text-align:center;
    padding:10px 3px 7px 3px;
    border:0px solid #8380d1;
    margin:0px 1px 0px 0px;
    color: #3b5202;
    -webkit-border-top-left-radius: 6px;
    -moz-border-top-left-radius: 6px;
    border-top-left-radius: 6px;

    -webkit-border-top-right-radius: 6px;
    -moz-border-top-right-radius: 6px;
    border-top-right-radius: 6px;
    background: #e7e8e2;
}

/*1st sub level menu*/
.ddsmoothmenu ul li ul{
    position: absolute;
    left: 0;
    display: none; /*collapse all sub menus to begin with*/
    visibility: hidden;
    margin-top: 0px;
}

/*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{
    width: 218px; /*width of sub menus*/
    height:auto;
    padding: 5px 0px 5px 22px;
    border-top-width: 0;
    background:#4e7204;
    border-bottom: #fff 1px solid;
    text-align:left;
    color: #fff;
/*    filter:alpha(opacity=80);
    -moz-opacity:0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    */
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;

}


.ddsmoothmenu ul li  ul li a.selected,.ddsmoothmenu ul li ul li a.current,.ddsmoothmenu ul li ul li a:hover{
    width: 218px; /*width of sub menus*/
    height:auto;
    padding: 5px 0px 5px 22px;
    margin: 0;
    border-top-width: 0;
    background:#2a5400;
    border-bottom: #fff 1px solid;
    text-align:left;
    color: yellow;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}


/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
    margin-left: 0px;
    margin-right: -1px;
    visibility: hidden;
/*    display: none;*/
}

.rightarrowclass{
    position: absolute;
    top: 6px;
    right: 5px;
    visibility: hidden;
    /*    display: none;*/
}

/* ######### 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;
}