/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */
#navigation {
	width: 100%;
	min-height: 105px;
	background: #000000;
}

.nav {
	text-align: center;
	color: #afafaf;
	font-size: 25px;
	text-transform: uppercase;
	letter-spacing: 15px;
	font-weight: bold;
	padding-top: 30px;
}

#header {
	width: 100%;
	max-height: 450px;
	background: url(../images/header.png) no-repeat top center;
	background-size: cover;
	border-bottom: #000000 solid 10px;
}

.logo {
	text-align: center;
}

.logo_position {
	position: relative;
	z-index: 300;
	margin-top: 10px;
}

h1{
	font-size: 35px;
	color: #000000;
	font-weight: bold;
}

h2{
	font-size: 22px;
	color: #f0a815;
	font-weight: bold;
}

#content_block_mission {
	width: 100%;
	text-align: center;
	padding: 40px 0px;
}

#content_block_reg {
	width: 100%;
	text-align: center;
	background: #ececec;
	margin: 0;
	padding: 40px 0px;
}

.lgtext {
	font-size: 18px;
}

#content_block_tryout {
	width: 100%;
	text-align: center;
	padding: 40px 0px;
}

#spon_logos {
	width: 100%;
	min-height: 281px;
	background: url(../images/footer.png) no-repeat top center;
	background-size: cover;
}

#footer {
	width: 100%;
	padding: 20px 0px;
	background: #000000;
	color: #ffffff;
}

#footer a:link, #footer a:visited, #footer a:hover {
	color: #ffffff;
}



/* #Page Styles
================================================== */
	.desktop_only {
		display: block;
	}
	
	.mobile_only {
		display: none;
	}



/* #Media Queries
================================================== */

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 768px) {

	.desktop_only {
		display: none;
	}
	
	.mobile_only {
		display: block;
	}
	
}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {}

