﻿#menu
{
    display:block;
    width:940px;
    height:30px;
    margin:auto;
    padding:5px 0 5px 0;
    text-align:center;
    clear:both;
    
    font-family:Trebuchet MS, Tahoma, Verdana, Times New Roman;
    font-size:20px;
    font-weight:bold;
}

#menu ul
{
    margin: 0px;
    padding: 0px;
    list-style:none;
}

#menu ul li
{
    position: relative;
    display: inline;
    float: left;
    width:33%;
}

#menu ul li a
{
    background-image:url("../design/menu.png");
    background-position:center center;
    background-repeat:no-repeat;
    display:block;
    width:200px;
    height:26px;
    padding:0px;
    margin:auto;
    
    color:white;
    text-align:center;
    cursor:default;
}

#menu ul li ul
{
    position:absolute;
    visibility:hidden;
    width:100%;
    left:0;
}

#menu ul li ul li
{
    display:block;
    width:100%;
    background-image:url("../design/sottomenu_corpo.png");
    background-position:center center;
    background-repeat:repeat-y;
}

#menu ul li ul li.ultimo
{
    background-image:url("../design/sottomenu_calce.png");
    background-position:center bottom;
    background-repeat:no-repeat;
}


#menu ul li ul li a
{
    background:none;
    font-size:13px;
    font-weight:bold;
    padding:4px 0 0px 0;
    height:24px;
    cursor:pointer;
}


#menu ul li ul li a:hover
{
    background-image:url("../design/sottomenu_selezionato.png");
    background-position:center center;
    background-repeat:no-repeat;
}