@charset "utf-8";
/* CSS Document */


.nav{
	font-weight: bold;
	width: 100%;
}

.nav ul{
	padding: 0; /*6px should equal top padding of "ul li a" below, 7px should equal bottom padding + bottom border of "ul li a" below*/
	margin: 5px 2px;
	text-align: left;
















//set value to "left", "center", or "right"*/
; 															border-left: 0 solid #633;
	font-size: 14px;
}

.nav ul li{
	display: inline;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
}

.nav ul li a{
	color: #633;
	padding: 0 10px 0 2px; /*top padding is 6px, bottom padding is 4px*/
	margin-right: 10px; /*spacing between each menu link*/
	text-decoration: none; /*bottom border is 3px*/
	margin-left: 10px;
	border-right: 1px solid #64332F;
}

.nav ul li a:hover, .nav ul li a.selected{
	border-bottom-color: #633;
	text-decoration: underline;
}

