/* ------------------------------------------------------------------------------------------------ Resets */

*{
	margin:0;
	padding:0;
}

header,footer,
article,section,
hgroup,nav,
figure{
	display:block;
}

a img{
	border:none;
}

/* ------------------------------------------------------------------------------------------------ End Resets */

html {
	height:100%;
}

body {
	font-family:opensans, Helvetica, Arial, sans-serif;
	font-size:14px;
	line-height:21px;
	color:#222;
	background:#a9a9a9;
	height:100%;
}

#flashcontent {
	height: 100%;
}


/* ------------------------------------------------------------------------------------------------ Link Styles: */

a, a:visited {
	color:#6a6a6a;
	text-decoration:none;
}

a:hover{
	color:#ff8721;
}

/* ------------------------------------------------------------------------------------------------ Text Styles */

h1,h2,h3,h4,h5{
	font-weight:normal;
}

h1{
	font-size:36px;
	line-height:44px;
	padding-bottom:40px;
}

h2{
	font-size:24px;
	line-height:30px;
	padding-bottom:8px;
}

h3{
	font-size:20px;
	line-height:24px;
	padding-bottom:8px;
}

p {
	line-height:21px;
	padding-bottom:21px;
}


hr { 
	clear:both;
	display: block;
	height: 1px;
    border: 0;
	border-top: 1px solid #222;
    margin: 10px 0;
	padding: 0;
}

/* ------------------------------------------------------------------------------------------------ Layout styles: */


/* ------------------------------------------------------------------------------------------------ Menu styles */


#menucontainer {
	width:100%;
	height:150px;
	position:relative;
	padding:40px 30px 20px;
	margin:0 auto;
	background-color:#d2edf6;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

#toplogo {
	width: 30%;
	float: left;
}

nav {
	height:100px;
	float:right;
}

nav ul {
	display:block;
	z-index:999999;
	float:right;
	margin:0;
	padding:0;
}

#menu {
	display:none;
}


/* ------------------------------------------------------------------------------------------------ Home Styles: */


#homegrid {
	position:relative;
	width:100%;
	float:left;
}

#homegrid ul {
	margin:0;
}


#homegrid ul li {
	list-style:none;
}

#homegrid ul li a {
	float:left;
	width:318px;
	height:318px;
	padding:30px;
	margin:1px;
	background:#fff;
	font-size:16px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

#homegrid ul li a:hover {
	background:#d2edf6;
}


.logo {
	float:left;
	width:318px;
	height:318px;
	padding: 100px 25px;
	margin:1px;
	background:#d2edf6;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}


/* ------------------------------------------------------------------------------------------------ Body Copy Styles: */


#content {
	position:relative;
	background:#fff;
	clear:both;
	float:left;
	width:100%;
	margin:0;
	padding:5%;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

ul {
	list-style:square;
	margin:0 0 0 40px;
}

.clients {
	float:left;
	width:160px;
	height:160px;
}


/* ------------------------------------------------------------------------------------------------ Footer Styles: */


#footer {
	position:relative;
	clear:both;
	float:left;
	width:100%;
	font-size:11px;
	text-align:right;
	padding:20px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

#footer a:link {
	color:#6a6a6a;
}

#footer a:hover {
	color:#000;
}


/* ------------------------------------------------------------------------------------------------ Form Styles: */


input {
	font-family:, Helvetica, Arial, sans-serif;
	font-size:14px;
	border:1;
	padding:10px;
	margin:0 25px 0 0;
}

input.field {
	width:240px;
}

label {
    display: block;
	clear:both;
	font-family:opensans, "Courier New", Courier, monospace;
	font-size:18px;
	line-height:18px;
	padding:10px 0 10px;
	margin:0;
}

.button {
    display: block;
	clear:both;
	font-family:opensans, "Courier New", Courier, monospace;
	font-size:18px;
	color:#fff;
	background-color:#ff8721;
	border:0;
	padding:5px 15px;
	margin:20px 25px 20px 0;
}

.button:hover {
	background-color:#222;
	cursor:pointer;
}

label.error {
	color:#eb2629;
	font-size:16px;
	margin:0 25px 0 0;
	font-style:italic;
}

input.error, select.error, textarea.error {
	background:#666;
}

input:focus, select:focus, textarea:focus {
	background:#efefef;
	border:0;
}

/* ------------------------------------------------------------------------------------------------ Getting Responsive Yo: */

@media only screen and (max-width : 768px)  {

#toplogo {
	width: 50%;
}


}