/*
 * Modified contact form originally created by Chris Coyier from css-tricks.com
 * View screencast:  http: //css-tricks.com/videos/css-tricks-video-21.php
 -------------------------------------------------------------------------*/

/*
 * General XHTML styles
 -----------------------*/
html {
	text-align: center;
}
body {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	margin: 1em 0;
	width: 50em;
	text-align: left;
	padding: 0;
}

pre {
	background-color: #00456E;
	color: #FFF;
}
h1 {
	font-size: 30px;
	color: #00456E;
}
h1 img {
	vertical-align: middle;
}
/*
 * Form elements
 -----------------------*/
input,
blockquote {
	width: 21em;
}
input,
select,
textarea,
blockquote {
	border: 1px solid #ccc;
	padding: 0.2em;
	margin: 0.4em 0 0 0;
}
blockquote {
	float: left;
}
option {
	white-space: pre;
}
option.msg {
	text-align: center;
	color: #999;
}
input:focus,
select:focus,
textarea:focus {
	background: #ffc;
}
textarea {
	font: .9em Verdana, Arial, Helvetica, sans-serif;
}
label {
	color: #00456E;
	display: block;
	margin: 0.5em 0 0;
	font-weight: 700;
	font-size: .9em;
	float: left;
	clear: left;
	width: 20em;
	border-bottom: 1px dotted #CCC;
}
label:after {
	content: ":  ";
	color:#999;
}
button {
	display: block;
	float: left;
	clear: both;
	margin: 1em 0 1em 20em;
}
a, b {
	color: black;
}
b.required {
	float: right;
}
/*
 * User feedback
 -----------------------*/
.yay, .oops {
	font-size: .8em;
	text-align: center;
	padding: 10px;
	color: #fff;
	font-weight: 700;
}
.yay {
	background: #090;
}
.oops {
	background: #f30;
}
.yay.backlink,
.oops.backlink,
.yay.msg {
	color: #000;
	background: none;
	padding: 0;
	font-weight: normal;
}
label.error {
	display: block;
	font-size: 0.9em;
	font-weight: 700;
	color: #f00;
	margin: 0 0 0 220px;
	padding: 0 0 0 8px;
	background: url('../images/error_arrow.gif') left no-repeat;
	border: none;
	width: 25em;
}
label.error:after{
	content: "";
}

/*
 * Captcha
 -----------------------*/
form img {
	border: 1px solid #777;
	margin: 0.5em 0 0;
	display: block;
}
h3 {
	font-size: 1em;
	font-weight: 400;
	margin: 0 0 0 0em;
}
.clear {
	clear: both;
}
