body {
	font-family: 'Open Sans';
	margin: 0px;
	background-color: #EFEFEF;
}
.float {
	float: left;
}
.span_it {
	width: 100%;
}
.spacer {
	margin-top: 25px;
}
a {
	color: inherit;
	text-decoration: none;
}
.subheader {
	font-size: 140%;
	font-weight: bold; 
}
	.sub_span {
		float: left; 
		width: 100%; 
		border: solid #D4D4D4; 
		border-width: 0px 0px 1px 0px; 
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
.header {
	font-size: 200%;
	font-weight: 800; 

}
.drop_shadow {
	-webkit-box-shadow: 10px 10px 20px -12px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 20px -12px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 20px -12px rgba(0,0,0,0.75);
}

header {
	position: fixed;
	top: 0px; 
	width: 100%;
	height: 80px;
	background-color: white;
	border: solid gray; 
	border-width: 0px 0px 1px 0px;
	z-index: 999;
}
.menu_button {
	float: left; 
	width: 15%;
	height: 100%;
	line-height: 80px;
	cursor: pointer;
	border: solid gray; 
	border-width: 0px 1px 0px 0px;
	transition: ease 0.5s;
	
}
.menu_lines {
	float: left;
	height: 100%;
	width: 40px; 
	margin-left: 25px;
	margin-right: 15px;
}
	.line {
		float: left;
		clear: both;
		height: 5px;
		background-color: black;
		content: '';
	}
	.l_1 {
		margin-top: 25px;
		width: 40%;
	}
		.menu_button:hover .l_1 {
			width: 90%;
			transition: ease 0.5s;
		}
	.l_2 {
		margin-top: 8px;
		width: 100%;
	}
		.menu_button:hover .l_2 {
			width: 90%;
			transition: ease 0.5s;
		}
	.l_3 {
		margin-top: 8px;
		width: 70%;
	}
		.menu_button:hover .l_3 {
			width: 90%;
			transition: ease 0.5s;
		}
	.menu_button:hover {
		background-color: #404040;
		color: white;
		transition: ease 0.5s;
	}
	.menu_button:hover .line { 
		background-color: white;
		transition: ease 0.5s;
	}
.menu_open {
	display: block;
}
.menu_close {
	display: none;
}
.logo {
	float: left;
	height: 100%;
	width: 70%;
	text-align: center;
}
	.logo_img {
		margin:10px;
		margin-top:5px;
		height: 80%;
	}
.login_container {
	float: left;
	width: 14%;
	background-color: gray;
}
.head_dropper {
	float: left; 
	width: 100%;
	height: 80px;
	display: block;
}


footer {
	position: fixed;
	bottom: 0px;
	height: 50px;
	width: 100%;
	background-color: #404040;
	color: white;
	z-index: 999;
}
.copyright {
	float: left;
	margin: 15px;
}
.social {
	float: right;
	margin: 15px;
}
.social_icon {
	height: 20px;
	margin-left: 15px;
	margin-right: 15px;
}
.foot_dropper {
	float: left;
	width: 100%;
	height: 100px;
	display: block;
}

nav {
	position: fixed;
	top: 80px;
	height: 100%;
	width: 400px;
	border: solid gray;
	border-width: 0px 1px 0px 0px;
	background-color: #404040;
	color: white;
	z-index: 99;
	display: none;
}
	.nav_item {
		float: left;
		margin-left: 10%;
		margin-right: 10%;
		width: 80%;
		padding-top: 15px;
		padding-bottom: 15px;
		border: solid gray; 
		border-width: 0px 0px 1px 0px;
	}
	.nav_item:hover {
		background-color: #2E2E2E;
		transition: ease 0.5s;		
	}
	.nav_item_inner {
		float: left; 
		margin-left: 15px;
	}
main {
	margin-top: 25px;
	float: left; 
	margin-left: 15%;
	width: 70%;
}

.selection_container {
	float: left;
	margin: 5px;
}
.label {
	font-size: 75%;
	font-style: italic;
}

.selection_selector {
	margin: 0px;
}


@media only screen and (max-width: 1000px) {
	body {
		font-size: 32px;
	}
	header {
		height: 200px;
	}
	.menu_button {
		width: 20%;
	}
	.menu_lines {
		float: left;
		height: 100%;
		width: 60%; 
		margin-left: 20%;
		margin-right: 20%;
	}
		.line {
			height: 12px;
		}
		.l_1 {
			margin-top: 60px;
		}
		.l_2 {
			margin-top: 20px;
		}
		.l_3 {
			margin-top: 20px;
		}
	.menu_font {
		display: none;
	}
	
	.logo {
		width: 60%;
	}
	.login_container {
		width: 19%;
	}
	.head_dropper {
		height: 200px;
	}
	footer {
		position: fixed;
		bottom: 0px;
		height: 150px;
		width: 100%;
		background-color: #404040;
		color: white;
		z-index: 999;
	}
	.copyright {
		float: left;
		margin: 0px;
		margin-top: 5px;
		width: 100%;
		text-align: center;
		clear: both;
	}
	.social {
		float: right;
		width: 100%;
		margin: 0px;
		margin-top: 25px;
		text-align: center;
		
	}
	.social_icon {
		height: 50px;
		margin-left: 25px;
		margin-right: 25px;
	}
	.foot_dropper {
		float: left;
		width: 100%;
		height: 250px;
		display: block;
	}
	nav {
		position: fixed;
		top: 200px;
		height: 100%;
		width: 100%;
		border: solid gray;
		border-width: 0px 1px 0px 0px;
		background-color: #404040;
		color: white;
		z-index: 99;
		display: none;
	}
	.nav_item {
		float: left;
		margin-left: 5%;
		margin-right: 5%;
		width: 90%;
		padding-top: 25px;
		padding-bottom: 25px;
		border: solid gray; 
		border-width: 0px 0px 1px 0px;
	}
	.nav_item:hover {
		background-color: #2E2E2E;
		transition: ease 0.5s;		
	}
	.nav_item_inner {
		float: left; 
		margin-left: 0px;
	}
	main {
		float: left; 
		margin-left: 2%;
		width: 96%;
	}
	.selection_container {
		float: left;
		clear: both;
		margin: 15px;
		width: 100%;
	}
	.selection_selector {
		width: 66%;
		-moz-appearance: none;
		-webkit-appearance: none;
		border-radius: 50px;
		padding: 20px;
		color: white;
		background-color: #1B587C;
		text-align: center;
	}

	
}


.tile {
	float: left;
	background-color: white;
	margin: 1%;
	border-radius: 10px;
}
.col_1 {
	width: 98%;
}
.col_2 {
	width: 48%;
}
.col_3 {
	width: 31%;
}
.col_4 {
	width: 23%;
}
.inner {
	padding: 15px;
}
.button {
	float: left;
	padding: 15px;
	padding-left: 40px;
	padding-right: 40px;
	border-radius: 50px;
	margin: 15px;
	text-align: center;
	font-weight: bold;
}
@media only screen and (max-width: 1000px) {
	.tile {
		margin-top: 2%;
		margin-bottom: 2%;
	}
	.col_1 {
		width: 96%;
	}
	.col_2 {
		width: 96%;
	}
	.inner {
		padding: 25px;
	}
	.button_holder {
		padding-bottom: 50px;
	}
	.score_container {
		width: 96%;		
	}
	.latest_scores {
		padding-bottom: 50px;
	}
	.megaphone {
		height: 25px;
		margin-right: 25px;
	}
	
	
}

select {
	float: left;
	padding: 10px;
	font-size: 18px;
	margin: 1%;
	background-color: white;

}
@media only screen and (max-width: 1000px) {
	select {
		float: left;
		padding: 10px;
		font-size: 40px;
		margin: 1%;
		background-color: white;
	}
	
	
}


