/* CSS Document */

/* ACCORDIAN MENU*/


#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 178px; /*  set width of each menu item here - when multiplied by no of menu-items should equal width above */
}


/*  COLOURING ETC */

#menu a {
text-decoration: none;
display: block;
}


#menu h2, #menu h3 {
margin: 0;
}

#menu h2 a, #menu h3 a {
text-transform: lowercase;
text-align: left;
color: #666666;
}

#menu h2 a{
font-weight: bold;
font-size: 8pt;
padding-left: 30px;
padding-top: 20px;
padding-bottom: 5px;
border-bottom: 1px solid #FFFFFF; 

}

#menu h3 a {
font-weight: bold;
font-size: 7pt;
background-color: #f2f5f5; 
padding-left: 45px;
padding-top: 5px;
padding-bottom: 5px;
border-bottom: 1px solid #f2f5f5;
}

#menu h2 a:hover  {
text-decoration: none;
color: #c94f5a; 
border-bottom: 1px solid #edeeee; 
}

#menu h2 a.down {
text-decoration: none;
color: #edeeee; 
}

#menu h3 a:hover  {
text-decoration: none;
color: #c94f5a; 
background-color: #edeeee;
border-bottom: 1px solid #edeeee;
}




