.ddsmoothmenu{
    float:right;

}
.ddsmoothmenu ul{
    z-index:100;
    margin: 0;
    padding: 0;
    list-style-type: none;	
}

/*Top level list items*/
.ddsmoothmenu ul li{
    position: relative;
    display: inline;
    float: left;
}

/*Top level menu link items style*/
.topmenu{
    display: block;
    color: #f1f1f2;
    text-decoration: none;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 12px;
    padding-bottom:2px;
    margin-bottom:2px;

}


* html .topmenu{ /*IE6 hack to get sub menu links to behave correctly*/
    display: inline-block;	
}

a.topmenu {
    margin-left:22px;
    margin-right:12px;
    padding: 14px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-weight: bold;
}
a.topmenu:visited {
    


}
a.topmenu.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
      background-color: #ff790b;
    color:#fff;

}
a.topmenu:hover{
    background-color: #ff790b;
    color:#fff;


}


/*1st sub level menu*/
.ddsmoothmenu ul li ul{
    position: absolute;
    left: 0;
    display: none; /*collapse all sub menus to begin with*/
   -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-right:0px;
    margin-left:20px;
    padding-top:10px;
    padding-bottom:10px;
    padding-right:20px;
    padding-left: 10px;
    background-color:#ffffff;
    width:100%;
    margin-top: 3px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
    display: list-item;
    float: none;
    margin-top:1px;
    margin-bottom:1px;

}

/*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: 100%; /*width of sub menus*/
    padding-left: 5px;
    margin: 0;
    height:18px;
     font-family: Verdana, Geneva, sans-serif;
    font-size: 11px;
    color:#717171;
    text-decoration:none;
    line-height:18px;
    display:block;
    margin-left:5px;

}
.ddsmoothmenu ul li ul li a:hover{
    background:#eeeeee;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/

.ddshadow{ /*shadow for NON CSS3 capable browsers*/
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background: #ffffff;
}

.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
    opacity: 0.9;
}