@charset "utf-8";
/* CSS Document */

/* center the resource page */
div.center_resource {
width:100%;
position:relative;
z-index:1;
border:0px;
margin: auto;
}

/* center docs */
#center_docs {
width:100%; 
border:0px;
margin: auto;
}

#resource_text_div {position:relative; width:750px; border:0px; z-index:1; margin:auto; }
#resource_video_div {position:relative; width:640px; height:360px; top: 10px; border:0px; z-index:1; margin:auto; }

#resource_form_docs_div {position:relative; width:800px; height:20px; top:2px; border:0px; margin:auto; }
#resource_form_videos_div {position:relative; width:500px; height:20px; top:50px; border:0px; margin:auto; }
#resource_button_div {position:relative; width:100px; height:20px; top:35px; border:0px; margin:auto; }

div.center_audio_player {
width:300px; 
margin: 0 auto;
border:0px;
}

/* resource dropdown css stuff */

/* center the resource page */
div.center_nav {
display: table;
position:relative;
z-index:100;
border:0px;
margin: auto;
}

nav ul ul {
	display: none;
}
	nav ul li:hover > ul {
		display: block;
	}
nav ul {
	background: #efefef; 
	background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);  
	background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); 
	background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); 
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	padding: 0 20px;
	border-radius: 10px;  
	list-style: none;
	position: relative;
	display: inline-table;
}
	nav ul:after {
		content: ""; clear: both; display: block;
	}
nav ul li {
	float: left;
}
	nav ul li:hover {
		background: #4b545f;
		background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
		background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
		background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);
	}
		nav ul li:hover a {
			color: #fff;
		}
	
	nav ul li a {
		display: block; padding: 25px 40px;
		color: #757575; text-decoration: none;
	}
nav ul ul {
	background: #5f6975; border-radius: 0px; padding: 0;
	position: absolute; top: 100%;
}
	nav ul ul li {
		float: none; 
		border-top: 1px solid #6b727c;
		border-bottom: 1px solid #575f6a;
		position: relative;
	}
		nav ul ul li a {
			padding: 10px 20px;
			color: #fff;
		}	
			nav ul ul li a:hover {
				background: #4b545f;
			}
nav ul ul ul {
	position: absolute; left: 100%; top:0;
}
	nav ul ul ul li a {
			display: block; width:100px; padding: 10px 20px;
			color: #757575; text-decoration: none;
	}