@charset "utf-8";
#mainnav {
    width: 860px;
    margin-left: 10px;
    /* [disabled]margin-right: 0px; */
}


#mainnav ul {
    width: 100px;
    height: 28px;
    color: rgba(0,0,0,1.00);
    float: left;
    list-style-type: none;
    z-index: 1;
    font-weight: 600;
    font-size: 18px;
    height: 28px;
    border-radius: 10px;
    margin: 0px;
    padding: 0px;
}

/*hide the submenus by default*/

#mainnav ul ul  {
    display: none;
}
/*end*/

/*show the submenus on hover*/

#mainnav ul li:hover > ul {
    list-style-type: none;
    position: relative; /*position absolute submenus*/
    /* [disabled]display: block; */ /*show submenus*/
    display: inline-table;
    visibility: visible;
    font-weight: normal;
    font-size: 12px;
    border-radius: 10px;
    cursor: pointer;
    background-color: rgba(153,102,51,1.00);
    width: 104px;
    color: rgba(255,255,153,1.00);
}
/*end*/

/*style decoration for submenus*/
#mainnav ul li a    {
    color: rgba(0,0,0,1.00);
    text-decoration: none;
    display: block;
    line-height: 28px;
    text-align: center;
    width: 100px;
    border-radius: 10px;
    /* [disabled]background-color: rgba(255,255,153,1.00); */
    height: 28px;
    padding-top: 0px;
    margin-top: 0px;
    border-color: rgba(255,255,153,1.00);
}
#mainnav ul li a:hover  {
    background-color: rgba(204,204,153,1.00);
    border: 2px solid rgba(0,0,0,1.00);
    width: 100px;
    height: 28px;
    /* [disabled]border-radius: 10px; */
    background-image: url(../images/menubg01.png);
}
