@charset "utf-8";
/* Color Swatches
Blue: #8ea3a4
Light Blue: #9fb1b2
Gray: #555
Light Gray: #ddd
*/

/* ---------------------------------------------------------------
	RESET STYLES FOR ALL BROWSERS
----------------------------------------------------------------*/
/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */
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; }

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;
}
th,td { vertical-align: middle; }

sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

img, object, embed {
	max-width: 100%;
	height: auto;
}

strong, b { font-weight: bold; }

.clickable, input[type=button], input[type=submit], button {cursor: pointer;} /* hand cursor on clickable elements */

button, input, select, textarea {margin: 0;} /* Webkit browsers add a 2px margin outside the chrome of form elements */

/* End reset */

@font-face {
    font-family: 'BebasNeueRegular';
    src: url('fonts/BebasNeue-webfont.eot');
    src: url('fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeue-webfont.woff') format('woff'),
         url('fonts/BebasNeue-webfont.ttf') format('truetype'),
         url('fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #555;
}

/* ---------------------------------------------------------------
LAYOUT
----------------------------------------------------------------*/
#container {
	width: 97%;
	margin: 1.5%;
	padding: 0;
	position: relative;
	z-index: 2;
}

/* ---------------------------------------------------------------
TYPOGRAPHY
----------------------------------------------------------------*/

/* -------- Headers --------*/
h1, h2 {
	font-family: "BebasNeueRegular", Arial, Helvetica, sans-serif;
	color: #8ea3a4;
	text-transform: uppercase;
	margin: 0 0 .25em;
	font-size: 2.5em;
	line-height: 1em;
	letter-spacing: -1px;
}
h2 {
	font-size: 1.75em;
	margin-bottom: .1em;
	color: #555;
}

/* -------- Paragraph --------*/
p {
	font-size: .8125em; /* 13px */
	line-height: 1.5em;
	margin: 0 0 1em;
}

/* ---------------------------------------------------------------
FORMS
----------------------------------------------------------------*/
form {
	margin: 0;
}
fieldset {
	border: 1px solid #555;
	padding: 20px;
	margin: 0;
}
label {
	color: #8ea3a4;
	display: block;
	padding-bottom: 2px;
	font-weight: bold;
}
.label {
	width: 12em;
	float: left;
	clear: left;
	overflow: hidden;
}
input[type=text],textarea {
	border: 1px solid #555;
	padding: 4px;
}
input[type=text] {
	width: 300px;
}
label.error {
	font-weight: bold;
	color: #f00;
	margin-left: 5px;
	padding: 0;
	position: relative;
	display: inline;
}
input[type="text"].error,input[type="password"].error,select.error,textarea.error {
	border: 1px solid #f00;
}
input[type=submit] {
	font-family: "BebasNeueRegular", Arial, Helvetica, sans-serif;
	background-color: #555;
	border: none;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	padding: 0 10px;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
}
input[type=submit] { /* Firefox & Opera fix */
	padding: 5px 10px;
}
input[type=submit]:hover {
	background-color: #8ea3a4;
}
textarea {
	resize: none;
}
.noSpam {
	display: none;
}
.placeholder {
	color: #aaa;
}
.email-link {
	font-weight: bold;
	background: url(../images/icon_email.png) no-repeat;
	line-height: 17px;
	padding-left: 26px;
}