#menu1 {/*menu container*/
        width: 100%;
        height: 20px;
        text-align: center; 
        margin-left: -20px;
       
        margin-top: -25px;
        margin-bottom: 5px;
        overflow: visible;      
}
#ndiv, #ndiv2, #ndiv3, #ndiv4{/*1st menu div*/
        width: 130px;
        height: 10px;
        display: inline-block;
        position: relative;
}
#n, #n2, #n3, #n4 {/*1st and 2nd ul */
    list-style: none;
    padding-left: 10px;
    padding-right: 10px;
    width:5em;    
    cursor: pointer;
}
#n:hover, #n2:hover, #n3:hover, #n4:hover{/*1st and 2nd ul */
    color: red;
    cursor: pointer;
    text-decoration: none;
}
#n li, #n2 li, #n3 li, #n4 li {/*1st and 2nd top menu link,  controls the box around dropdown apppears on hover*/
    /*display:inline;*/
    background: none;
    position: relative;
    width: 150px;
    margin-top: -10px;
/*    border-radius:8px;
    -moz-border-radius:8px;  Firefox 3.6 and earlier */
/*    box-shadow: 2px 2px 2px #666666;*/
}
 #n2 li .h {/*1st and 2nd li hover controled by jQuery script */
    background-color: inherit;
    border-left: 1px solid #CF3;
    border-right: 1px solid #CF3;
    color: background;
    text-align: center;
}
#n ul, #n2 ul, #n3 ul, #n4 ul { /*1st and 2nd second ul styles for dropdown*/
    position: absolute;
    display: none;
    padding: 10px 0 10px 0;
    list-style: none;
    width:100%;
    text-align: center;
    text-decoration: none;
}   
#n ul li, #n2 ul li, #n3 ul li, #n4 ul li {
    background-color: red;
    opacity:0.85;
    filter:alpha(opacity=85); /* For IE8 and earlier */
    text-decoration: none;
    list-style-type:none;
    border: 1px solid white;
    height: 25px;
    width: auto;
    padding:5px;
}
#n ul li a, #n2 ul li a, #n3 ul li a, #n4 ul li a{ /*1st and 2nd a styles for dropdown*/
    text-decoration: none;   
    color: black;
    font-size: .9em;    
}
#n li a, #n3 li a, #n4 li a{
  text-decoration: none;
  color: black;
}
#n a:hover, #n3 a:hover, #n4 a:hover{/*1st and 2nd ul */
    color: red;
    cursor: pointer;
    text-decoration: none;
}