/************************************************/
/*	MENU STUFF				*/
/************************************************/
#nav, #nav ul {
/* position and style the nav id */
	border: 0px;
	padding: 0px;
	margin: 0px;
	width: 190px;
	height: 450px;
	list-style: none;
	z-index: 100;
	background: #ffffff;
	border-top: 1px solid #ffffff;
}
#nav a {
	display: block;
	height: 50px;
	width: 190px;
}
#nav li {
/* float the main list items */
	border: 0px;
	padding: 0px;
	margin: 0px;
	float: left;
}
#nav li a {
/* for all links in the list */
	display: block;
	height: 50px;
	width: 190px;
	border: 0px;
	padding: 0px;
	margin: 0px;
	border-bottom: 1px solid #ffffff;
	font-size: 12px;
	letter-spacing: 2px;
	text-decoration: none;
	text-align: left;
	text-indent: 12px;
	line-height: 50px;
	background: #666666;
	color: #ffffff;
}
#nav li a.double {
/* for all links in the list */
	display: block;
	height: 50px;
	width: 190px;
	border: 0px;
	padding: 0px;
	margin: 0px;
	border-bottom: 1px solid #ffffff;
	font-size: 12px;
	letter-spacing: 2px;
	text-decoration: none;
	text-align: left;
	text-indent: 12px;
	line-height: 20px;
	background: #666666;
	color: #ffffff;
}
#nav li.on a {
/* change colors for current-page tab */
	background: #444444;
	color: #ffffff;
}
#nav li:hover a {
	background: #000000;
	color: #ffffff;
}
#nav li a:hover{
	background: #444444;
	color: #ffffff;
}