/*
 * 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
 -----------------------*/
/*
 * Form elements
 -----------------------*/
fieldset        {padding:10px 30px;margin:0;border:1px solid #ccc;-moz-border-radius:1em;-webkit-border-radius:1em;border-radius:1em;border-bottom-width:10px;}
input           {width:250px;}
input,
textarea        {border:1px solid #ccc;padding:5px;margin:10px 0 0 0; -moz-border-radius:5px;-webkit-border-radius:5px;}
input:focus,
textarea:focus  {border-color: #009900;}
textarea        {font:.9em Verdana, Arial, Helvetica, sans-serif;}
label           {display:block;margin:12px 0 0;font-weight:700;font-size:11px;float:left; text-align:right;clear:left;width:140px;}
label:after     {content:": ";}
button          {display:block;float:left; cursor:pointer; font-weight:bold; margin:5px; background:#8fc900;-moz-border-radius:5px;-webkit-border-radius:5px; border:0; padding:5px; color:#FFFFFF;}
button:hover{
	background:#009900;}

/*
 * User feedback
 -----------------------*/
.yay, .oops     {font-size:.8em;text-align:center;padding:10px;color:#fff;font-weight:700;}
.yay            {background:#090;}
.oops           {background:#f30;}
div.error       {font-size:.8em;font-weight:700;padding:5px 0 0;color:#f30;margin:0 0 0 90px;}