@charset "utf-8";
/* CSS Document */

/* nav styles below */

body{min-height: 1200px;
	padding: 0px;
	margin: 0px;
}


#nav_container{background-color:rgba(150,132,137,1.00);
	height: 50px;
	position: fixed;
	width: 100%;
	z-index: 9999;
}


nav{background-color: rgba(150,132,137,1.00);
	height: 50px;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

nav ul{font-family: "Roboto", sans-serif;
	font-size: 22px;
	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 30px 3px 30px;
			background:rgba(150,132,137,1.00);
			color:rgba(255,255,255,1.00);
			margin-left: 1px;
			white-space: nowrap;
			height: 40px; /* Width and height of top level nav items */
			width: 120px;
			text-align: center;
}

nav ul li a:hover{background:rgba(169,79,98,1.00);
	}

nav li:hover ul{
	display: block;
	position: absolute;
	height: 40px;
}

nav li:hover li{
		float: none;
		font-size: 14px;
}

nav li:hover a {
	background:rgba(169,79,98,1.00);
	height: 40px; /* Height of lower-level nav items is shorter than main level */
}

nav li:hover li a:hover {
	background:rgba(205,197,152,1.00);
	color:rgba(0,0,0,1.00);
}

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: 280px;}
