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

/* nav styles below */

body{min-height: 3000px;
	padding: 0px;
	margin: 0px;

}

#nav_container{
	background:rgba(47,22,22,1.00);
	height:40px;
    position: fixed;
	width:100%;
	z-index: 9999;
}


nav {background:rgba(120,1,3,1.00);
	height: 40px;
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	
}

nav ul {
	   font-family:Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "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:rgba(47,22,22,1.00);
	color:white;
	margin:1px;
	white-space: nowrap;
	height: 30px; /* width and height of top level nav items */
	width: 90px; /* if the button is small make this bigger like 120px */
	text-align: center;
	
}


nav ul li a:hover {
	background:rgba(248,106,109,1.00);
	
}


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

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

nav li:hover a {
	background:rgba(47,22,22,1.00);
	height: 30px; /* Height of lower-level nav items is shorter than main level */
	
}

nav li:hover li a:hover {background:rgba(120,1,3,1.00);
	
}

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


.ctr_nav{
	margin-left: 154px;
}

























