/* style the menu navigation wrap  */
#menu-wrap {
    background-color: #fff;
    height:50px;
} 

#menu-wrap ul {
    background-color: #fff;
    margin-bottom:0px;
}

/* style the links for the top level */
#menu-wrap ul a, #menu-wrap ul a:visited {
    text-decoration:none; 
    color:#000;
    height:50px;
    line-height:50px;
    display:block;
    padding-left:15px; 
    padding-right: 15px;
    font-size:14px;
    font-weight: bold;

}


/* style the top level hover */
#menu-wrap a:hover, #menu-wrap ul ul a:hover{
    background:#B3D9FF;
}


/* style for the selected page*/
.selected_page  {
	background-color: #f2f2f2;
}


/* Position the second level */
#menu-wrap ul ul {
	top: 50px;

}


/* style the second level links */

#menu-wrap ul ul a {
    color:#000;
    height:40px;
    line-height:40px;
    background-color:#f2f2f2;
    font-weight:normal;
    border-bottom: 1px solid #aaa9a9;
    border-left:1px solid #aaa9a9;
}

#menu-wrap ul ul a:visited {
    color:#000;
    height:40px;
    line-height:40px;
    background-color:#f2f2f2;
    font-weight:normal;
    border-bottom: 1px solid #aaa9a9;
    border-left:1px solid #aaa9a9;
}

          
/* style the second level hover */
#menu-wrap ul ul a:hover{
    background:#B3D9FF
}

                                  

/* style selected subpage in the top menu */                                  
#menu-wrap li.selected_subpage{    
    color: #004D99;
    background-color: #B3D9FF;
    height:40px;
    line-height:40px;
    width:150px;
    padding-left:20px;
    padding-right:20px;
    font-size:14px;
}
#menu-wrap li.selected_subpage a, #menu-wrap li.selected_subpage a:visited{
    background-color: #B3D9FF;
}
#menu-wrap ul ul li a.selected{    
    background-color: #D0D8F0;
    color: #004D99;
}
