@charset "utf-8";
body {
	font-family: Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	overflow-x: hidden;
}
#container {
	width: 100%;  /* this will create a container 80% of the browser width */
	background: #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-height: 100%;
}
#header {
	background: #18a2e1;
	padding-top: 10px;
	padding-left: 40px;
	height: 155px;
	background: rgb(59,103,158); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(59,103,158,1) 0%, rgba(43,136,217,1) 50%, rgba(32,124,202,1) 51%, rgba(125,185,232,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,103,158,1)), color-stop(50%,rgba(43,136,217,1)), 		color-stop(51%,rgba(32,124,202,1)), color-stop(100%,rgba(125,185,232,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(59,103,158,1) 0%,rgba(43,136,217,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b679e', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
}
#header .name {
	font-style: italic;
	color: #ffffff;
	font-weight: 700;
	float: left;
	padding-left: 20px;
}
#header .logo {
	float: left;
}
#header img {
	border: none;
}
#header .right_img {
	position: fixed;
	left: 450px;
	top: 0;
	overflow: hidden;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#navbar {
	width: 100%;
	float: left;
	background: #000000;
	padding-top: 8px;
	padding-bottom: 8px;
	position: relative;
	top: -10px;
}
.nav {
	width: 14%;
	float: left;
	text-align: center;
}
.nav_current {
	width: 14%;
	float: left;
	text-align: center;

}
.nav a {
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
}
.nav_current a {
	font-size: 14px;
	font-weight: bold;
	color: #79b6e7;
	text-decoration: none;
}
.nav a:hover {
	color: #79b6e7;
}
#mainContent_left {
	background: #FFFFFF;
	width:70%;
	float: left;
	position: relative;
	top: -10px;
	height: 900px;
}
#mainContent_left h1 {
	text-align: center;
}
#mainContent_left p {
	text-align: left;
}
#mainContent_left h1, h2, h3, p {
	padding-left: 15px;
	padding-right: 15px;
}
.innercontent {
	width:90%;
	margin:auto;
}
#mainContent_right {
	position: relative;
	top: -10px;
	width: 29.9%;
	float: left;
	background: #79b6e7;
	border-left: 1px #000000 solid;
	height: 900px;
}
#mainContent_right h3, p {
	text-align: center;
}
#mainContent_right h1, h2, h3, p {
	padding-left: 15px;
	padding-right: 15px;
}
#mainContent_right .social {
	text-align: center;
}
#mainContent_right .social img {
	border: none;
}
#footer {
	clear: both;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	position: relative;
	top:-15px;
	width: 100%;
}
#footer p {
	color: #ffffff;
	text-align: center;
	font-size: 12px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer a {
	color:#fff;
}