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

#form-div {
	font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif; 
  color : #ccc;
  line-height : 1.7;
  border: 1px solid #060;
  padding: 10px 20px 20px;
  margin-top: 20px;
}

/* === success and error message/results box ======================= */

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

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

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

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

label.opt-label.check {
  float : right;
  cursor : pointer;
  font-size: 0.9em;
 }

label.opt-label.main-label span.req, label span.req  {
  font-weight : bold;
  color : #c70000;
}

label.req-label.explain {
  color : #666;
  font-size : 0.8em;
  }

/* === 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 {
  width : 1em;
  height : 1em;
  cursor : pointer;
  }

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 #444;
  background-color : #222;
  cursor : text;
  color: #888;
  padding: 3px; 
  margin-bottom: 11px;
 }
 
input#antispam {
	margin: 0;
 }

select.select {
  padding : 2px 0;
}

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

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

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

textarea.textarea {
  width : 100%;
  height : 200px;
}

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 : #333;
  color: #ccc;
}

input.button { 
  font : 0.9em 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 =========== */

