@charset "UTF-8";
/* CSS Document */

body{min-height: 500px;
	padding: 0px;
	margin: 0px;
	background-color: #FFFFFF;
}


#nav_container{background-color: #A97065;
	height: 40px;
	position: fixed;
	width: 100%;
	z-index: 9999;	
}

nav{background-color: #A97065;
	height: 40px;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

nav ul{font-family: "Gill Sans",Helvetica, Arial, "sans-serif";
	font-size: 20px;
	margin: 0px;
	padding: 0px;
	list-style: none;
}


nav ul li{display:block;
	position: relative;
	float: left;
}

nav li ul{display: none;	
}

nav ul li a {display: block;
	text-decoration: none; 
	padding: 7px 15px 3px 15px;
	background: #B88E86;
	color: #fff;
	margin-left: 1px;
	white-space: nowrap;
	height: 30px; /*width and height of top level nav items*/
	width: 150px;
	text-align: center;	
}

nav ul li a:hover {
	background:#E2C7C2;
}

nav li:hover ul{display: block;
	position: absolute;
	height: 30px;
}

nav li:hover li {
	float: none;
	font-size: 11px;	
}

nav li:hover a {
	background: #E2C7C2;
	height: 30px; /*height of lower level nav items is shorter than main level */	
}

nav li:hover li a:hover {
	background:#A97065;
}

nav ul li ul li a{
	text-align: left; /*Top-level items are centered, but nested list items are left-aligned*/
}

.ctr_nav{margin-left: 154px;}

