/* -------------------------------------------------------------- 
   
   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; }

table.form{width:400px;}
table.form tr td{ padding:2px;}
table.form tr td.labelColumn{ text-align:right; padding-right:5px; width:150px; font-weight:bold}

.required{color:#FF0000}

/* Fieldsets */
fieldset    { padding:1.4em; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }

input, select{ 	font-size:10px; font-family:Verdana}

/* Text fields */
input.text, input.title   { width: 95%; margin:0.3em 0.3em 0.3em 0; }
input.text, input.title   { border:1px solid #bbb; background:#f6f6f6; padding:3px; }
input.text:focus,
input.title:focus         { outline: 1px solid #F49D41; background:#fff; }
input.title               { font-size:1.5em; }

/* Textareas */
textarea            { width: 400px; height: 250px; margin:0.5em 0.5em 0.5em 0; }
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus      { outline: 1px solid #F49D41; background:#fff; }

/* Select fields */
select              { border:1px solid #ccc; background:#f6f6f6; width:100%; padding:3px;}
select:focus        { outline: 1px solid #F49D41; background:#fff; }

/* Disabled input */
input[readonly="readonly"]:focus
{
	outline: none;
}

/* Validation */
div.validationsummary{width:550px; background: #FBE3E4; color: #D12F19; border:1px solid #FBC2C4; padding:10px; }
.validationsummary ul { margin:15px; }
div.validationsummary .validationHeader{ line-height:24px; font-weight:bold }
div.validationsummary .validationHeader img{ float:left; padding-right:10px; }

/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error      { background: #FBE3E4; color: #D12F19; border-color: #FBC2C4; }
.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; }

