/* CSS Document */

/* HORIZONTAL DROP DOWN MENU */



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

#menu ul ul {
display: none;
}
/*  COLOURING ETC */

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


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

#menu h2 a, #menu h3 a {
font-family: Georgia, "Times New Roman", Times, serif;
text-align: right;
font-style: normal;
text-transform: lowercase;
font-weight: bold;
}

#menu h2 a {
color: #00483a;
font-size: 10pt;
padding-right: 10px;
padding-top: 12px;
padding-bottom: 2px;
}

#menu h3 a{
color: #a5676f;
font-size: 8pt;
padding-top: 3px;
padding-bottom: 2px;
}


#menu h2 a.down  {
color: #7c1e2c;
}

#menu h3 a.down  {
color: #7c1e2c;
}


#menu h2 a:hover  {
text-decoration: none;
color: #7c1e2c;
}

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



#sub_menu ul li h3 a {
	display: block; 
}

* html #sub_menu ul li h3 a {
	width: 100%; 
}

