#menu
{
    width:70%;float:left;
    height:125px;
}

#menu ul ul {
    display: none;
}

#menu ul li:hover > ul 
{
    display: block;
}

#menu ul 
{
    width:80%;
    padding: 0 20px;
    list-style: none;
    position: relative;
    display: inline-table;
    float:right;
}
#menu ul:after 
{
    content: ""; clear: both; display: block;
}

#menu ul li 
{
    float: left;
}

.current-menu-item a{color:#252323 !important;}
.current-menu-item,
#menu ul li:hover 
{
    background: #e3e3e3;
}
#menu ul li:hover a 
{
    color: #252323;
}
		
#menu ul li a 
{
    display: block;
    padding-top:74px;
    padding-left:25px;
    padding-right:25px;
    padding-bottom:25px;
    font-size:16px;
    font-style:italic;
    color: white; text-decoration: none;
}
				
#menu ul ul 
{
    width:200px;
    background: #e3e3e3; border-radius: 0px; padding: 0;
    position: absolute; top: 100%;
    z-index:1;
}
#menu ul ul li 
{
    float: none; 
    position: relative;
}
#menu ul ul li a 
{
    padding-top:7px;
    padding-bottom:7px;
    padding-left:10px;
    padding-right:10px;
    font-size:13px;
    color: #5b5a58;
    font-style:normal;
}	
#menu ul ul li a:hover 
{
    background: #373737;
    color:white !important;
}
		
#menu ul ul ul 
{
    position: absolute; left: 100%; top:0;
}