/* 
    Document   : menu
    Created on : 08/08/2011, 08:52:16
    Author     : Caio
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

#menu {
    width: 100%;
    height: 50px;
    background: url('bg-menu-blue.png') no-repeat #EEEEEE;
}

#menu ul, li {
    float: left;
    list-style: none;
    font-size: 16px;
    padding: 0;
    font-weight: bold;

}
#menu li {
    text-transform: uppercase;
    padding: 18px 20px 0 20px;
    height:  32px;
    /*background: url('crop-menu.png') no-repeat right;*/
}

#menu li.first {
    padding-left:20px;
}

#menu li.last {
    padding-right: 20px;
    background: none;
}

#menu li a, #menu li a:visited {
    text-decoration: none;
    color: #fff;
}

#menu li a:hover {
    color: #ffb600;
}