
.menu
{
    padding:0;
    list-style:none;
    
     
    font-size:15px;
    font-weight: bold;
    /*text-transform: uppercase; */
    text-align:center;

    border: 0px solid rgba(0,0,0,0.8);
    float:left;
    
    width:240px;
    height:30px;
    
   
  
}

.menu li a
{
    display: block;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-bottom-left-radius:5px;
    
   
    background-color:#797979;
    text-decoration:none;
    color:#fff;
    text-shadow: 1px 0px 1px rgba(0,0,0,0.2);
    filter: dropshadow(color=#000, offx=1, offy=0);
    line-height: 18px;
    margin-top: 5px;
    padding: 5px 10px;
    padding-left:15px;  
     font-size:18px;
    
    
    
}
 
.menu li ul li a
{  background-color:#797979;
    font-size:14px;
    border-left: 1px solid black;
    border-bottom-left-radius:5px;
    color:#fff;
    font-weight: bold;
    height:15px;
    line-height: 15px;
    text-transform: none;	
    text-align:left;
    text-shadow: 1px 0px 1px rgba(255,255,255,0.5);
}
.menu li ul li a:hover{
    background-color: #797979;
     border: 2px solid #FF000C;
    border-radius: 5px;
     -moz-transition: border 0.4s ease-in;
    -webkit-transition: border 0.4s ease-in;
    -o-transition: border 0.4s ease-in;
    
    /*color: #FF000C;
		-moz-transition: color 0.7s ease-in;
    -webkit-transition: color  0.7s ease-in;
    -o-transition: color  0.7s ease-in;*/
    
}
.menu li a:hover
{ background-color: #797979;
      border: 2px solid #FF000C;
       border-radius: 5px;
    -moz-transition: border 0.7s ease-in;
    -webkit-transition: border 0.7s ease-in;
    -o-transition: border 0.7s ease-in;
    
    /*color: #FF000C;
		-moz-transition: color 0.7s ease-in;
    -webkit-transition: color  0.7s ease-in;
    -o-transition: color  0.7s ease-in;*/
    
}
 
.menu ul
{
    margin:0;
    padding:0;
    list-style:none;
    height:0;
    overflow: hidden;
    transition: height 1s ease-in-out;
    -moz-transition: height 1s ease-in-out;
    -webkit-transition: height 1s ease-in-out;
    
}

.menu li:hover ul
{    
    height: 120px;
    overflow-y:hidden;
    overflow-x:hidden;
    
}

.menu ul::-webkit-scrollbar
{
	width: 10px;	
	opacity:0.5;
    filter:alpha(opacity=100);
}
 
.menu ul li a
{
    margin: 3px auto;
    
    width: 190px;
}
 
.menu ul li a:hover 
{
    
    color: #000;
    -moz-transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
}
