/* -------------------------------------------------------------- 
   
   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
   
-------------------------------------------------------------- */



/* Form fields
-------------------------------------------------------------- */
/*
input.text, input.title,
textarea, select {
  margin:0.2em 0;
  border:1px solid #bbb;
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}

input.text, 
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 250px; padding:5px; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.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: #003; font-weight:bold }

.border		{border:solid 1px black;}

.form_title
{
	float:left;
	width:210px;
	margin:2px;
	font-weight:bold
}

.form_field
{
	float:left;
	margin:2px;
}

.fright {
	float:right;	
}

.fleft {
	float:left;	
}

.break,.clear,.breaker
{
	clear:both;
	height:0px;
	line-height:0px;
}

.w100 {
	width:100px;	
}

.w150 {
	width:100px;	
}

.w180 {
	width:180px;	
}

.w200 {
	width:200px;	
}

.w250 {
	width:250px;	
}

.w300 {
	width:300px;	
}

.w350 {
	width:350px;	
}

.w400 {
	width:400px;	
}

.w450 {
	width:450px;	
}

.w500 {
	width:500px;	
}

ul.errors {display:none}
div.errors input,div.errors select,div.errors textarea {background-color:#FBE3E4; border:solid 1px  #F00}