/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   
-------------------------------------------------------------- */

label { font-weight: bold; width:150px; float:left }
b{color:red}

/* Fieldsets */
fieldset div {
border-bottom:1px solid #CCCCCC;
padding:7px 0pt;
}

fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }

/* Text fields */
input{ /*width: 100px;*/ border:1px solid #bbb; background:#f6f6f6; padding:5px; }
input:focus         { border:1px solid #999; background:#fff; }


/* Textareas */
textarea            { width: 180px; height: 100px;}
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus      { border:1px solid #999; background:#fff; }

/* Select fields */
select              { border:1px solid #ccc; background:#f6f6f6; width:200px; }
select:focus        { border:1px solid #999; background:#fff; }

/* button fields */

input.button {
border:1px outset green;
width:110px;
cursor:pointer;
background-color:#ccc;
margin:0.5em 0.5em 0.5em 0pt;
display:block;
}



/* 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; }

