/* CSS Document */

/*secondary menu on subject index pages*/
#second_menu {
width: 170px; /* set width of menu */
background: #F5F5DC;
border: 2px solid #d3c6a4;
}

#second_menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

#second_menu ul ul {
list-style: none;
margin: 0;
padding: 0;
}


/* style, color and size links and headings to suit */
#second_menu a, #second_menu h6 {
font: bold 10px/14px Verdana, Arial, Helvetica, sans-serif;
display: block;
margin: 0 0 0 2px;
padding: 2px 3px;
}
	
#second_menu h6 {
color: #a0a99c;
background: #F5F5DC;
text-transform: uppercase;
border-top: 1px dotted #a0a99c;

}

#second_menu a {
color: #4c4d51;
background: #F5F5DC url("") right no-repeat;
text-decoration: none;
}

#second_menu a:hover {
color: #ab0f17;
text-decoration:underline;
background:  url("") right no-repeat;
}

/*[if IE]*/

	#second_menu ul li a {
	height: 1%; /* make links honour display: block; properly */
	} 

	#second_menu a, #second_menu h6 {
	font: bold 10px/14px Verdana, Arial, Helvetica, sans-serif; 
	/* if required use em's for IE as it won't resize pixels */
	} 




	

