/* -------------------------------------------------------------- 
   
   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;
	width: 340px;
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	color: #618AB8;
	vertical-align: text-top;
	display: block;
	margin-top: 1px;
	margin-right: 1px;
	margin-bottom: 5px;
	margin-left: 1px;
}
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      {
	font-weight: bold;
	font-size:0.8em;
}


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
	border:1px solid rgb(220,220,220);
	margin-top: 0.2em;
	margin-right: 0.2em;
	margin-bottom: 0.2em;
	margin-left: 0.2em;
	padding: 0.2em;
	width: 240px;
}

select {
	width: 247px;
}
input.text:focus, input.title:focus,
textarea:focus, select:focus {
	border:1px solid #666;
	background-color: #FFFFCC;
}

input.text, 
input.title   {
	width: 240px;
}
input.title   {
	font-size:1em;
}
textarea      {
	width: 240px;
	height: 100px;
	vertical-align: top;
}


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error      {
	color: #333333;
	border-color: #FF0000;
	background-color: #FF0000;
}
.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; }
.errorMessage {color : #F00; }
.errorItem {background : #F99;}

