/* CSS Document */

/* ACCORDIAN MENU*/



#menu {
	position:relative;
	float:left;
	width:184px;
	z-index:500;
	padding-top: 90px;
	padding-left:35px;
}


#menu ul {
list-style: none;
margin: 0;
padding: 0;
/* width: 219px;  set width of each menu item here - when multiplied by no of menu-items should equal width above */
float: left; /* this makes the first UL horizontal */

}


/*  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: #cccccc;
}

#menu h2 a{
font-weight: bold;
font-size: 12px;
border-bottom: 1px solid #635E35; 
padding-top: 6px;
padding-bottom: 4px;

}

#menu h3 a {
font-weight: normal;
font-size: 11px;
padding-left: 10px;
border-bottom: 1px solid #cccccc;
padding-top: 6px;
padding-bottom: 4px;
}

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

#menu h2 a.down {
text-decoration: none;
color: #ffffff;
border-bottom: 1px solid #A5A179; 
}

#menu h3 a:hover  {
text-decoration: none;
color: #ffffff;
}





