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

* {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	margin: 0px;
	padding: 0px;
}
body {
	background-color: white;
}
.nav {
	margin-top: 10px;
	padding-left: 200px;
	background-color: rgba(255,55,58,1.00);
	overflow: hidden;
	-webkit-transition: max-height 0.4s;
	-ms-transition: max-height 0.4s;
	-moz-transition: max-height 0.4s;
	-o-transition: max-height 0.4s;
	transition: max-height 0.4s;
}
.item {
	margin: 10px 0px;
}
.item a {
	color: #fff;
	text-decoration: none;
	border: 1px solid #0071ba;
	padding: 5px 8px;
}
.item a:hover {
	color: #0071ba;
	background-color: #fff;
	opacity: 0.9;
	border: 1px solid #fff;
	border-radius: 8px;
}
.handle {
	font-size: 1em;
	width: 100%;
	background-color: #70ff00;
	text-align: left;
	box-sizing: border-box;
	padding: 12px 30px;
	cursor: pointer;
	color: #fff;
	display: none;
}
.header {
	background-color: #8dff00;
	padding: 50px 0 50px 50px;
	margin-bottom: 50px;
	
}
#mainContent {
	margin: 20px 20px 30px 30px;
	min-height: 300px;
}
#contentLeft {
	float: left;
	width: 55%;
	padding-right: 5%;
	height: auto;
}
#contentRight {
	float: left;
	width: 34%;
	height: auto;
	padding: 3%;
	margin-bottom: 25px;
	background-color: aqua;
}
footer {
	font-size: 80%;
	color: white;
	padding: 30px 20px 60px 20px;
	background-color: #004b88;
}
p {
	font-weight: 300;
	font-size:1em;
	line-height:1.5em;
	padding-bottom:1.1em;
}
label,option {
	font-weight: 300;
	font-size:.95em;
	line-height:1.2em;
}
.contact-info {
	vertical-align: middle;
	text-align: right;
}
h1  {
	font-weight: 700;
	font-size: 1.5em;
	color: rgba(46,49,146,1);
	padding-top: 15px;
	padding-bottom: 6px;
	line-height: 1.25em;
}
h2  {
	font-weight: 500;
	color: #2e3192;
	padding-top: 2px;
	font-size: 1.2em;
	line-height: inherit;
	padding-bottom: 6px;
	margin-top: 8px;
}
h3 {
	font-weight: 400;
	text-transform: uppercase;
	color: #333333;
	font-size: 1em;
	margin-top: 3px;
}
ul {
	padding-left: 5%;
	padding-bottom: 1.1em;
}
ol {
	padding-left: 7%;
	padding-bottom: 1.1em;	
}
ul li {
	font-weight: 300;
	line-height:1.5em;
	list-style-image: url(../img/bullet.png);
}
ol li {	
	font-weight: 300;
	line-height:1.5em;
}
a {
	font-weight:400;
	text-decoration:none;
	color:#0071ba;
}
.button {
	font-weight:700;
	font-size: 1em;
	color:#FFF;
	background-color: #0071ba;
	padding: 6px;
	margin-bottom: 8px;
	border: 2px solid #0071ba;
	border-radius: 8px;
}
a .button:hover {
	color: #0071ba;
	background-color: #E7F1F9;
	padding: 6px;
	border: 2px solid #0071ba;
	border-radius: 8px;
}
strong {
	font-weight: 400;
}
em {
	font-style:italic;
}
dt {
	font-weight: 700;
	text-transform: capitalize;
	color: #333333;
	font-size: 1em;
	margin-top:6px;
}
input, textarea, select, option {
	font-weight: 300;
	background: none;
	border: solid 1px #0071ba;
	border-radius: 8px;
	padding: 6px;
	margin: 0 4px 3px 10px;
	font-size: .95em;
	display: inline-block;
}
input[type="text"], input[type="email"], textarea {
	width: 70%;
	font-weight:300;
}
input[type="radio"], input[type="checkbox"] {
	font-weight: 300;
	font-size: 115%;
}
input[type="submit"] {
	background-color:rgba(13,76,136,1);
	border: solid 2px rgba(13,76,136,1);
	border-radius: 8px;
	font-weight:300;
  	color:#FFF;
	font-size: 1em;
	line-height:normal;
	padding: 7px 10px;
}
input[type="submit"]:hover {
	background-color: rgba(13,76,136,.2);
	color: #0071ba;

}
input[type="reset"] {
	background-color: rgba(13,76,136,.2);
	border: solid 2px rgba(13,76,136,1);
	border-radius: 8px;
	font-weight:400;
	font-size: 1em;
	color: #0071ba;
	padding: 7px 10px;
}
input[type="reset"]:hover {
	background-color:rgba(13,76,136,.2);
	color: #fff;
}

/******************************
Flexbox Layout
*******************************/
.nav {
   display: -webkit-flex;
  	display: flex;
 	-webkit-flex: flex-end;
  	flex: flex-end;
  	-webkit-justify-content: space-around;
	justify-content: space-around;
}

/******************************
Media Queries
*******************************/

@media all and (max-width: 830px) {
	.nav {
		-webkit-flex-direction: column;
    	flex-direction: column;
		margin: 0px;
		padding: 0px;
		min-width: 350px;
		max-height: 0;
	}
	.item {
		box-sizing: border-box;
		width: 100%;
		padding: 6px 10px;
		text-align: left;
		margin-bottom: 0px;
	}
	.item a {
		padding: 4px 16px;
	}
	.showing{
		max-height: 20em;
	}
	.handle{
		display: block;
	}
	.footer {
		display: block;
		float:none;
	}
}

@media all and (max-width: 599px){
	#bannerLogo {
		width: 30%;
		height: auto;
		padding: 15px 0 6px 15px;
	}
	.nav {
		-webkit-flex-direction: column;
    	flex-direction: column;
		margin: 0px;
		padding: 0px;
		min-width: 320px;
		max-height: 0;
	}
	.item {
		box-sizing: border-box;
		width: 100%;
		padding: 6px 10px;
		text-align: left;
		margin-bottom: 0px;
	}
	.item a {
		padding: 4px 16px;
	}
	.showing{
		max-height: 20em;
	}
	.handle{
		width: auto;
		display: block;
	}
	#sponsors {
		margin-top:10px;
		display:block;
		float: left;
		width:60%;
	}
	#mainContent {
		width: 100%;
	  	min-width:320px;
		margin: 0 5% 0 5%;
	}
	#contentLeft {
	  	width: 90%;
	  	padding: 0px;
	  	float: none;
	  	margin-bottom: 0px;
	}
	#contentRight {
	  	width: 90%;
	  	padding: 0px;
	  	float: none;
	}
}
