li{font-size:12px;} 

ul.menu_bar li:hover
{
	
	text-decoration:underline;
}

ul.menu_bar
{
    list-style-type:none;   /* Remove the bullet points*/
    padding:0px;              /* Get first menu item to the far left in firefox */
    margin:0;
    cursor: default;               /* Get first menu to the far left in i.e. */
    background-color:#dfdef1;
    
    /*background-image:url(images/button1.gif);*/
   
    
}

ul.menu_bar li > a 
{
    /*padding:5px 0 5px 0px;
    margin:0;               */
    text-decoration: none;
    color:black;
    font-size: 16px;
    line-height:12px;
	    
}



ul.menu_bar li
{
    /*list-style-type:none;*/   /* Remove the bullet points*/   
    position:relative;
    display:inline;
    padding:5px 0 5px 20px; 
    margin:0;
    width:225px;
    line-height: 24px; 
}


ul.menu_bar li > ul
{
    position:absolute;
    display:none;
    left:0px;
    top:12px;
    background-color:#b8b5f3;
    border-width:1px;
    border-color: blue;
    border-style:solid;  

}

ul.menu_bar li:hover > ul
{                   
    display:block;
    padding:5px;
    margin: 6px 0 0 20px;
    top:18px;                /* Position of drop down menu. Don't set to large as can't have a gap */
    font-family:Trebuchet MS; 

}

ul.menu_bar li ul > li
{
    padding: 3px;
    margin: 0px;
    display:block;
        font-size: 12px;
    line-height:12px;
    font-family:Trebuchet MS;
}

ul.menu_bar li ul li:hover
{
    padding:3px;
    margin: 0px;
    background-color: #ffa;
        font-size: 12px;
    line-height:12px;
    font-family:Trebuchet MS;
}


