﻿.menu
{
    padding:0;
    list-style:none;
    font-size:16px;
    background:#c1c1c1;
    border: 0px solid rgba(0,0,0,0.8);
    padding-top:40px
}
 
.menu li a{
    display: block;
    border-bottom: 0px solid rgba(0,0,0, 0.2);
    border-top: 0px solid rgba(255,255,255, 0.2);
    background:#013D83;
    text-decoration:none;
    color:#FFF;
    text-shadow: 1px 0px 1px rgba(0,0,0,0.2);
    filter: dropshadow(color=#000, offx=1, offy=0);
    padding:5px;
    padding-left:10px;
    font-family:Arial;
    font-size:10pt;
}
 
.menu li ul li a{
    font-size:12px;
    color:#000000;
    text-shadow: 1px 0px 1px rgba(255,255,255,0.5);
     
}
 
.menu li a:hover{
    background:#4a6ba2;
    -moz-transition: background 0.3s ease-in;
    -webkit-transition: background 0.3s ease-in;
    -o-transition: background 0.3s ease-in;
}
 
.menu ul{
    margin:0;
    padding:0;
    list-style:none;
    height:0;
    overflow: hidden;
    transition:1s;
    -moz-transition:1s;
    -webkit-transition:1s;
}
 
.menu li:hover ul{
    height:95px;
    overflow-y:auto;
    overflow-x:hidden;
    background-color:white;
}
 
.menu ul li a{
    background:#FFF;
    color: #000;
}
 
.menu ul li a:hover {
    background: none repeat scroll 0 0 #ccc;
    color: #000;
    -moz-transition: color 0.4s ease;
    -webkit-transition: color 0.4s ease;
    -o-transition: color 0.4s ease;
}