﻿#cssmenu 
{
    width:900px;
    font-size:14px;
}

#cssmenu ul
{

    margin: 0px;
    padding: 0px;
    line-height: 2.9em;
    text-align: center;
}

#cssmenu li
{
    margin: 0px;
    padding: 0px;
    float: left;
    position: relative;
    list-style: none;
    border-right-style: solid;
    border-left-style: solid;
    border-right-width: thin;
    border-left-width: thin;
    border-right-color: #CCCCCC;
    border-left-color: #CCCCCC;   
}

#cssmenu ul li a
{
    text-decoration: none;
    width: 136px;
    display: block;
    color: #000;
}



#cssmenu ul ul 
{
    text-align:left;     
    position:absolute;
    visibility:hidden;

    top:40px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 2px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 2px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 2px;

    background: #fff;
    background: -moz-linear-gradient(#f7f7f7 0%, #ececec 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #ececec));
    background: -webkit-linear-gradient(#f7f7f7 0%, #ececec 100%);
    background: linear-gradient(#f7f7f7 0%, #ececec 100%);
  
}

#cssmenu ul ul li
{
    padding-left: 25px;
    width: 180px;
    height: 32px;
    line-height: 2.0em;
    border-bottom-style: double;
    border-bottom-width: thin;
    border-bottom-color: #E8E8E8;
}


#cssmenu ul li:hover ul
{
    visibility:visible;
    
}

#cssmenu li:hover
{
    background: #fff;
    background: -moz-linear-gradient(#f7f7f7 0%, #ececec 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #ececec));
    background: -webkit-linear-gradient(#f7f7f7 0%, #ececec 100%);
    background: linear-gradient(#f7f7f7 0%, #ececec 100%);
}

