﻿/* Navigation Menu */
.navcontainer
{
	display: block;
	width: 1000px;
	background-color: #B8AE91;
}

.navcontainer ul
{
	margin: 0px;
	padding-left: 0;
	color: Black;
	font-family: arial, helvetica, sans-serif;
	white-space: normal;
	font-size: 15px;
	letter-spacing: 1px;
}

.navcontainer ul li
{
	display: inline;
	height: 30px;
}

.navcontainer ul li a
{
	display: inline;
	background-color: #B8AE91;
	color: Black;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	float: left;
	border-right: 1px solid #fff;
	height: 30px;
	text-align: center;
	line-height: 30px;
	width: 248px;
	padding-top: 3px;
}

.navcontainer ul #homeButton a
{
	width: 209px;
}

#navmenufiller
{
	display: block;
	width: 40px;
	height: 33px;
	background-color: #B8AE91;
	border-width: 0px;
}

.navcontainer ul li a:hover
{
	background-color: #526054;
	color: #fff;
}

.navcontainer ul .selectedButton a
{
	background-color: #526054;
	color: #fff;
}

.navlist
{
	width: 248px;
	text-align: center;
	background-color: #B8AE91;
	color: Black;
	text-transform: uppercase;
	font-family: "Arial";
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 1px;
	float: left;
	border-right: 1px solid #fff;
	height: 30px;
	line-height: 30px;
}

.navlist:hover
{
	background-color: #526054;
	color: #fff;
}
/* End of navigation menu */