#navList li  {
    height: 30px;
}

#navList ul {
    margin-top: 10px;
    _margin: 0; /*IE6 only*/
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 31px;
    z-index: 1;    
    background: #103858;   
    box-shadow: 0 -1px 0 rgba(255,255,255,.3);  
    border-radius: 3px;
    transition: all .2s ease-in-out;
}

#navList li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin-top: 60px;
}

#navList ul li {
    list-style: none;
    float: none;
    display:block;
    border: 0;
    _line-height: 0; /*IE6 only*/
    box-shadow: 0 1px 0 #111, 0 2px 0 #666;
}

#navList ul li:last-child {   
    box-shadow: none;    
}

/*IE6 only*/

#navList li  #ChildNode  {    
    _height: 10px; 
    display: block;
    float: initial;
    text-transform: none;
}

#navList #ChildNode  : hover {
 
    background-color: #0186ba;
    background-image: linear-gradient(#04acec, #0186ba);
}

#navList a:hover:after{
    position:absolute;
    bottom:-20px;
    left:37%;
    content:"";
    color:#d2d8de;
    text-shadow:none
    }