/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	margin-left: -35px;
}
#nav li{
float:left;
	position:relative;
	display:block;
	margin-bottom: 0px;
}

#nav li a{
	display:block;
	color:#fff;
	text-decoration:none;
	line-height: 20px;
	margin-top:5px;
	margin-bottom:0px;
	padding-left: 6px;
	padding-right: 6px;
	border-right: 1px solid #666666;
	margin-bottom: 0px;
	}
#nav li a:hover{
	color:#fff;
	background:#980000; /* Solid colour fall-back */
	text-decoration:none;
}

/*--- DROPDOWN ---*/
#nav ul{
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	margin-left: -40px;
}
#nav ul li{
	margin-top: 0px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	display:block;
	margin-bottom: 0px;
	margin-top:0px;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: left;
	border: 0px;

}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* Set styles for top level when dropdown is hovered */
	background:#980000; /* Solid colour fall-back */
	text-decoration: none;
}
#nav li:hover ul a{ /* Override some top level styles when dropdown is hovered */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Set styles for dropdown when items are hovered */
	background:#333; /* Solid colour fall-back */
	text-decoration:none;
