/*
Author: David Vuu
*/

@charset "utf-8";
/* ----------------------------------------------------
	FONTS
------------------------------------------------------- */

	/* Oswald */
	@import url(http://fonts.googleapis.com/css?family=Oswald);
	
	/* Droid Sans */
	@import url(http://fonts.googleapis.com/css?family=Droid+Sans:400,700);
	
	/* Droid Serif */
	@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700,700italic);

	/* Signika */
	@import url(http://fonts.googleapis.com/css?family=Signika:400,300,600,700);
	
	@import url(http://fonts.googleapis.com/css?family=Bitter);
	
/* ----------------------------------------------------
	CSS RESET
------------------------------------------------------- */

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, 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;
	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;
}

sup,
sub {
	height: 0;
	line-height: 1;
	vertical-align: baseline;
	_vertical-align: bottom;
	position: relative;
	
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}


/* ----------------------------------------------------
	FORM & THANKYOU PAGE
------------------------------------------------------- */

html, body {
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
}

#container {
	margin: 0 auto;
	width: 900px;
	text-align: left;
}

label {
	width: 80px;
	float: left;
	text-align: right;
	margin-right: 0.5em;
	display: block;
	color: #484848;
	margin-top: 4px;
	}
label.error { 	
	margin: 0px;
	margin-left: 90px;
	width: 200px;
	float: left;
	color: #db1d27;
	font-size: 10px;
	text-align: left;
	height: 10px;
	clear: both;
	position: relative;
	top: -6px;
	}
.red {
	color: #db1d27;
	}
.required {
	background-image:url(../images/form_bg.jpg);
	background-repeat:repeat-x;
	border:1px solid #aab5bb;
	}
.notrequired {
	background-image:url(../images/form_bg.jpg);
	background-repeat:repeat-x;
	border:1px solid #aab5bb;
	}	
.fields {
	clear: both;
	padding: 3px 0px;
}

#footer {
	margin-top: 10px;
	font-family: Verdana, Geneva, sans-serif; 
	font-size: 9px; 
	color: #666666;
}

/* ----------------------------------------------------
	BUTTON
------------------------------------------------------- */



.button {
	-moz-box-shadow:inset 0px 1px 0px 0px #fce2c1;
	-webkit-box-shadow:inset 0px 1px 0px 0px #fce2c1;
	box-shadow:inset 0px 1px 0px 0px #fce2c1;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffc477), color-stop(1, #fb9e25) );
	background:-moz-linear-gradient( center top, #ffc477 5%, #fb9e25 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc477', endColorstr='#fb9e25');
	background-color:#ffc477;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #eeb44f;
	display:inline-block;
	color:#ffffff;
	font-family:arial;
	font-size:15px;
	font-weight:bold;
	padding:2px 24px;
	text-decoration:none;
	text-shadow:1px 1px 0px #cc9f52;
}.button:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fb9e25), color-stop(1, #ffc477) );
	background:-moz-linear-gradient( center top, #fb9e25 5%, #ffc477 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fb9e25', endColorstr='#ffc477');
	background-color:#fb9e25;
}.button:active {
	position:relative;
	top:1px;
}