/* -------------------------------------------------------------- 
   
   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
   
-------------------------------------------------------------- */

label { color:#999999}


/* Fieldsets */
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 4px solid #333333; background:#000000 }
legend      { font-family:Georgia, "Times New Roman", Times, serif; font-size:1.6em; background-color:#333333; padding:5px 10px }

/* Text fields */
p input, p select,  p.title input, textarea, select   { width: 90%; margin:0.2em 0.5em 0.4em 0; border:none; background:#444615; padding:3px; color:#FFF}
p.date select{ width:5em;}
p.title input, p.title label { font-size:1.4em;}
p.title input:focus, input:focus, select:focus, textarea:focus{ background:#7D8C2B; }
p input.fbsubmit{
background:none repeat scroll 0 0 #7D8C2B;
clear:both;
font-family:georgia;
font-size:1.8em;
margin-left:67%;
width:100px;
}

/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; margin-top: 1em;  border: 2px solid #ddd; }
.error      { background: #000; color: #D12F19; border-color: #F00; }
.error ul{ margin-bottom:0;}
.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; }

