/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Raleway', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*------------------Responsive Grid--------------------*/
.wrap {
  max-width: 1280px;
  width: 92%;
  margin: 0px auto;
  position: relative; }

/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
}
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }
/*  GRID OF SIX  */
.span_6_of_6 {
	width: 100%;
}

.span_5_of_6 {
  	width: 83.06%;
}

.span_4_of_6 {
  	width: 66.13%;
}

.span_3_of_6 {
  	width: 49.2%;
}

.span_2_of_6 {
  	width: 32.26%;
}

.span_1_of_6 {
  	width: 15.33%;
}
/*--------------------My Code------------------*/
header{
	width:100%;
	background-color:#286334;
}
header h1{
	font-family: 'Raleway', sans-serif;
	font-size: 1.8em;
margin: 3.6% 0%;
font-weight: 700;
}
.img{
	float:left;
}
.logo{
color: rgb(246, 224, 90);
margin: 0px auto;
}
nav{
background-color: #286334;
float: right;
list-style: none;
}
nav ul{
	text-decoration:none;
}
nav li{
	display:inline-block;
}
nav ul li a{
	color: #F6E05A;
	display: block;
	font-size: 1.3em;
}
.cta a{
	border: 1px solid black;
}
.content h1{
	color:#d34c1d;
	font-size:1.4em;
	padding: 1.2% 0%;
}
.content h2{
	color:#53c7e1;
	font-size:1.2em;
	padding: 1.2% 0%;
}
.content p{
	color:black;
	float:left;
	font-size:16px;
	padding-bottom: 1.3%;
}
.cta1{
}
.cta2{
	text-align:center;
}
.cta3{
	text-align:right;
}
.form{
	margin:30px 0px 0px 627px;
}
.form div{
	margin:20px -1px;
}
.link{
	clear:both;
}
footer{
	background-color:#286334;
	text-align:center;
	padding: 1.3% 0%;
}
footer p{
	color:#e1d85b;
}
/*---------------------Media Queries------------------*/
/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
	.col {  margin: 1% 0 1% 0%; }
	.span_1_of_6, .span_2_of_6, .span_3_of_6, .span_4_of_6, .span_5_of_6, .span_6_of_6 { width: 100%; }
}