/* CSS Document */

/* NAVIGATION */

#navigation {
	float: left;
    width: 192px;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 10pt;
	background-color:#000000;
	color: #FFCF00;
	margin: 0 0 0 0;
	
}

/* remove bullets and indentation */
ul#nav_list {
    list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	width: 192px;
}

/* style the link and set the colours  */
ul#nav_list li a {
    display: block; /*display as a block element to make all block active rather than just the text*/
	width: 100%;
	padding: 0.2em 0 0.2em 0.6em;
	border-bottom:5px solid #FFCF00;
	border-top: 5px solid #0D0D0D;
	background-color: #000000; 
	color: #FFCF00; 
	text-decoration: none;
}

/* change colours of background and text on hover */
ul#nav_list li a:hover {
    background-color: #FFCF00; 
	color: #000000; 
	border-bottom-color: #FFFFFF;
	border-top-color: #FFFFFF;
}
