/* -------------------------------------------------------------- 
   
   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       { font-weight: bold;}
fieldset    { padding:0; margin: 20px 0 0 0; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
  margin:0;
  border:1px solid #D0D0D0;
  background:url(../images/bg_formfield.gif) repeat-x top left #F5F5F5;
  color: #666;
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}

input.text, 
input.title   { width: 300px; padding:5px;}
select        { width: 314px; height:24px;}
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 250px; padding:5px; }

.sidemodule input.text, 
.sidemodule input.title   { width: 220px; padding:5px;}
.sidemodule select        { width: 214px; height:24px;}
.sidemodule input.title   { font-size:1.5em; }


 
.login input.text   { width: 240px;}


/* Success, notice and error boxes
-------------------------------------------------------------- */

.explain    { font-style:italic; font-size:.9em;}
p.explain   { width: 300px; margin: 0px;}



.error,
.notice, 
.success    {position:absolute;  padding: 6px;  margin-left: 10px; border: 2px solid #ddd; font-size: 1em; display:none;}

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }


