/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

/* Contact Form
------------------------------*/



form {
	float: left;
	display: block;
	margin: 1em 0;
	}

fieldset ol {
	list-style-type: none;
	width: 430px;
	}

fieldset ol li {
	float: left;
	width: 200px;
	margin-right: 30px;
	margin-bottom: 1em;
	}

fieldset ol li.alt-label {
	margin: 0;
	}

fieldset ol li.message {
	width: 430px;
	}
	
fieldset ol li.send {
	
	}

form, fieldset {
	padding: 0;
	width: 100%;
	}	

fieldset {
	border: 0;
	}

legend {
	position: absolute;
	left: -2000px;
	}

input, textarea, select {
	margin: 0.5em 0 0 0;
	padding: 3px 5px;
	vertical-align: middle;
	color: #666;
	border: 1px solid #C3C3C3;
	border-top-color: #7C7C7C;
	border-bottom-color: #DDD;
	font-size: 1em;
	width: 100%;
	font-family: Helvetica, Arial, sans-serif;
	}

input.send-button {
	padding: 3px 5px 2px 5px;
	width: auto;
	overflow: hidden;
	color: #000;
	border: 3px double;
	font-weight: bold;
	line-height: 1;
	border-color: #F1F1F1 #C0C0C0 #C0C0C0 #F1F1F1;
	background: #fff url(/img/btnbg.gif) bottom repeat-x;
	cursor: pointer;
	margin: 0;
	}

input.send-button:hover {
	color: #C31A1A;
	}

select { 
	padding: 2px 0 2px 3px;
	}

label {
	cursor: pointer;
	font-weight: bold;
	display: block;
	font-family: Georgia, "lucida bright", "times new roman", serif; 
	}

label em {
	margin-left: 6px;
	color: #999;
	font-weight: normal;
	}

img.req {
	margin: 0;
	}

strong.error {colour: #B20C08;}

/* Success, error & notice boxes for messages and errors.
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #817134; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #529214; border-color: #C6D880; }
.error a    { color: #D12F19; }
.notice a   { color: #817134; }
.success a  { color: #529214; } */
