/* -------------------------------------------------------------- 
   
   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 */
.nform fieldset   { padding:1.4em; margin: 0 0 0 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.1em; color: #9EA776;}

/* Text fields */
.nform input.small{ width: 150px; margin:0.25em 0.25em 0.25em 0; }

.nform input   { width: 300px; margin:0.5em 0.5em 0.5em 0; }
.nform input   { border:1px solid #bbb; background:#f6f6f6; padding:5px; }
.nform input:focus,
.nform input:focus         { border:1px solid #999; background:#fff; }
.nform input.title               { font-size:1.5em; }
.nform input[type=checkbox]{
	width: 25px;
}
.nform input[type=submit]{
	background-image: url(../design_art/button.jpg);
	width: 75px;
	height: 30px;
	border: 0;
	color: white;
	text-align: center;
}

/* Textareas */
textarea          { width: 300px; height: 250px; margin:0.5em 0.5em 0.5em 0; }
textarea            { border:1px solid #bbb; background:#eee; padding:5px; }
textarea:focus      { border:1px solid #999; background:#fff; }

/* Select fields */
select.fancy              { border:1px solid #ccc; background:#f6f6f6; width:200px; }
select.fancy:focus        { border:1px solid #999; background:#fff; }


/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success    { font-size: 12px; margin-left: 5px; margin-right: 5px; margin-top: 10px; padding: .25em;border: 1px 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; }
.notice p, .notice label { color: #464646; }
.inline { display: inline; }

.hide { display: none; }

