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

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-weight: normal;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
:focus {
	outline: 0;
}
body {
	line-height: 1;
}
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;
}
/*  Line up Select and Input elements to same width:
	
    border-box   : Width = everything, including border.
    padding-box  : Width = everything EXCEPT border.
    content-box  : Width = content. Not including padding or border.
*/
input, select{
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box; 
}
/*  Clear Fix  */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.cf:after {
    clear: both;
}
/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}
input[type="submit"]{
    cursor:hand;
    cursor:pointer;
    border:none;
}
/*LVFHA*/
/***************************** Post Reset Styles *******************************/

body{
	font-family:Arial, Helvetica, sans-serif;
	font-size:24px;
	background:#434544;
}
.cont{
	width:1200px;
	margin:0 auto;
}
header{
	padding:20px 0;
	background:#FFF;
}
header h1{
	padding-left:175px;
	font-size:36px;
	color:#525F7F;
}
section{
	background:url(images/bg.jpg) no-repeat right center #434544;
	background-size:contain;
}
@media(max-width:1070px){
	section{
		background-size:cover;
	}
}
section .cont{
	padding-top:30px;
}
h2{
	font-size:40px;
	display:block;
	width:518px;
	height:137px;
	margin-left:100px;
	background:url(images/h2.png) no-repeat center center;/* 518x137 */
	text-indent:-99999px;
	color:#FFF;
}
form{
	width:350px;
	margin:15px 0 30px 170px;
}
input, select{
	padding:6px 30px;
	width:100%;
	margin-bottom:12px;
	border:none;
	border-radius:30px;
	background:#FFF;
	box-shadow:2px 2px 0 #222;
	color:#525F7F;
	font-size:24px;
}
input[type="checkbox"]{
	display:inline;
	width:auto;
}
label{
	color:#CCC;
	text-shadow:2px 2px 0 #222;
}
form .cf{
	padding:5px 0;
}
input[type="submit"]{
	border:none;
	border-radius:80px;
	padding:15px 0;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	font-size:30px;
	font-weight:bold;
	color:#FFF;
	background: #AACF00;
	background: -moz-linear-gradient(top,  #AACF00 1%, #77BB2A 100%);
	background: -webkit-linear-gradient(top,  #AACF00 1%,#77BB2A 100%);
	background: linear-gradient(to bottom,  #AACF00 1%,#77BB2A 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#AACF00', endColorstr='#77BB2A',GradientType=0 );
}
.profs{
	padding-bottom:40px;
}
.profs img{
	display:inline-block;
	margin-right:15px;
	border-radius:10px;
}
footer{
	background:#222;
	padding:5px 0;
	color:#666;
	font-size:12px;
	text-align:right;
}
footer a{
	color:#666;
	text-decoration:none;
}