/* -------------------------------------------------------------- 
   
   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; }


/* 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: 300px; 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:200px; padding:3px;}
select:focus        { outline: 1px solid #F49D41; background:#fff; }

/* Disabled input */
input[readonly="readonly"]:focus
{
	outline: none;
}

/* Form */
.required { color:#FF0000; font-weight:bold; }
.help { font-size: 10px; font-style: italic; color: #808080; }
label.focus { color:#f9991d; }
input.focus, textarea.focus { border:solid 1px #f9991d; outline: 1px solid #f9991d; }

/* Buttons */
.button {text-decoration: none; font-weight:bold; cursor:pointer; cursor:hand; background:#CCCCCC url(images/ui/ui-bg_glass_75_e6e6e6_1x400.png) repeat-x scroll 50% 50%; color:#015AFE; border: solid 1px #000; border-width: 0 1px 1px 0; padding: 4px 10px; line-height: 15px;  -moz-border-radius-topleft: 3px; -moz-border-radius-bottomleft: 3px; -moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 3px;}
.button:hover { color: #000; border: 1px inset #CCCCCC; padding: 4px 9px 3px 9px; text-decoration:none }

/* List */
.list { border:1px solid #A8BCCF; background:#f6f6f6; padding:3px;  overflow: auto; width: 300px; margin:3px 0; }
.list label { font-weight:normal}

/* Validation */
.validationSummary{ background: #FBE3E4; color: #D12F19; border:1px solid #FBC2C4; padding:10px; margin:10px 0; }
.validationSummary ul { margin:10px 15px; }
.validationSummary .validationHeader{ line-height:24px; font-weight:bold }
.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; }
