/* === form div and elements ======================================= */

#form-div, #form-div2 {
	font-family: Verdana, Arial, Sans-Serif; 
  color:black;
  line-height : 1.5;
  border: 1px solid #666;
  padding: 10px 22px 0 22px;
  margin: 20px 0 0;
  }
   
/* === success and error message/results box ======================= */

#form-div2 p.success, #form-div2 p.error, #form-div2 p.center { 
  color : #fff;
  padding : 1px 4px; 
  border : 1px solid #000; 
  background-color : #006600;
  margin : 10px 3px;
  text-align : center;
}

#form-div2 p.error { 
  background-color : #bb0000; 
  }

#form-div2 p.error a, #form-div2 p.success a {
  color : #fff;
}

/* === textural form elements ====================================== */


label.req-label, label.opt-label{
   font-size : 0.8em;
    }

label.opt-label.check {
	cursor : pointer;
	font-size: 0.8em;
	line-height: 1;
 }

label.req-label.explain {
   font-size : 0.7em;
   color: #666;
  }
  
span.req {
	color: #0a2d9a;
	font-weight : bold;
	}

fieldset {
	margin: 0 0 22px 0;
	padding: 0;
	}

/* === control and interface form elements ========================= */
/*
  note: In this section you will see the hover/focus styles for the 
  inputs. For example: input:hover, input:focus. You will also see 
  these names applied as classes: input.hover, input,focus, for 
  example. This is not done by mistake. Those classes are needed for 
  the JavaScript focus script (files/focus.js) for IE 7 and older.
*/
input.checkbox {
	margin: 0;
  width : 1em;
  height : 1em;
  cursor : pointer;
  line-height: 1;
  }

input.text-short, 
input.text-med, 
input.text-long,
select.select,
textarea.textarea {
  font : 0.8em verdana, arial, helvetica, tahoma, sans-serif;
  border : 1px solid #777;
  background-color: #eee;
  cursor : text;
  padding: 3px; 
  margin: 0 0 4px 0;
 }
 
input#antispam {
	margin: 0;
 }

select.select {
  padding : 2px 0;
}

input.text-short {
  width : 100px;
}

input.text-med, select.select {
  width : 265px;
}

input.text-long {
  width : 300px;
}

textarea.textarea {
  width: 98%;
  height : 150px;
}

select.select, select.select option {
  cursor : pointer;
 }

input.text-short:focus, input.text-short.focus, 
input.text-med:focus, input.text-med.focus,
input.text-long:focus, input.text-long.focus,
select.select:focus, input.select.focus,
textarea.textarea:focus, textarea.textarea.focus {
  border : 1px solid #444;
  background-color: white;
  }

input.button { 
  font : 0.8em verdana, helvetica, palatino sans, tahoma, arial, sans-serif;
  margin-top : 8px;
  padding : 1px 5px;
  cursor : pointer;
  float : right;
  clear : both;
 }


/* because IE6 sucks - if you have a conditionally served IE6 style sheet add this to it */
* html input.button {
  border : 1px solid #666;
}


/* EOF - Created by Mike Cherim @ http://green-beast.com =========== */
