/*--		Nav				---*/
	#navMenu{
		width:790px;
		overflow:hidden;
		background: #fff2d4;
		margin: 0 auto;
	}
	#nav {
		height: 32px;
		line-height: 32px;
	}
	
	#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		background: #fff2d4;
	}
	
	#nav a {
		display: block;
		font-size:10px;
		font-weight: bold;
		text-transform:uppercase;
		color:#493027;
		text-decoration: none;
		text-align: center;
	}
	
	#nav a:hover {
		color:#fff2d4;
		background: #493027;
		margin-left:1px;
	}
	
	#nav li { /* all list items */
		float: left;
		width: 6.5em; /* width needed or else Opera goes nuts */
		display: block;
	}
	
	#nav li.seperator { /* all list items */
		float: left;
		width: 0.2em; /* width needed or else Opera goes nuts */
		display: block;
	}
	
	#nav li.long { /* all list items */
		float: left;
		width: 14.1em; /* width needed or else Opera goes nuts */
		display: block;
	}
	
	#nav li.medium { /* all list items */
		float: left;
		width: 8.0em; /* width needed or else Opera goes nuts */
		display: block;
	}
	
	#nav li ul { /* second-level lists */
		position: absolute;
		width: 8.1em;
		left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
		z-index:+100;
	}
	
	#nav li ul li a {
		text-transform:none;
		font-weight:normal;
		border-bottom:thin;
		border-style:solid;
		border-color:#493027;		
	}
	
	#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}