/* -------------------------------------------------------------- 
   
   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; }
fieldset           { margin: 0 0 .5em 0; border: none; }
legend             { font-weight: bold; font-size: 1.2em; }
legend+*           { margin-top: 1em; } /* compensates for the opera margin bug */


/* =Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
	margin: 0;
	margin-top: 4px;
	border: 1px solid #ccc; 
	background: #fff; 
	}
input, select      { cursor: pointer;}
select             { padding: .1em .2em 0 .2em; }
option             { padding: 0 .4em; background: #fff; }


.csc-mailform input {
	border: 1px solid #f29200; 
	width: 100px; 
	height: 12px; 
	font-size: 9px; 
	padding: 2px 0 0 0;
}


input.tx_mailform_text, 
input.tx_mailform_textarea {
	border: 1px solid #ccc;
	}

input.tx_mailform_submit {
	background: #ffffff; 
	border: solid 0px #fff; 
	background: url(../images/search_button.gif) no-repeat left top; 
	color: #000000;
	font-size: 9px;
	height: 18px;
	width: 85px;
	margin-left:10px;
	}
input.csc-mailform-submit {	
	background: #1f4477; 
	border: solid 0px #fff; 
	background: url(../images/search_button.gif) no-repeat left top; 
	color: #fff;
	font-size: 9px;
	height: 18px;
	width: 85px;
	margin-left:10px;
	}


input#tx_mailform_input-item-0-3 {	
	border: none; 
	background: url(../images/search_button.gif) no-repeat left top
	color: #1f4477;
	font-size: 9px;
	height: 18px;
	width: 85px;
	margin-left:10px;
	}

input.error, 
textarea.error, 
select.error       { border:1px solid #ff0000 !important; }
	
input.text, 
input.title        { width: 240px;  padding: .3em .4em .15em .4em; cursor: text;}
input.title        { font-size:1.5em; }
input.radio        { 
	vertical-align: middle; 
	padding: 0;
	margin: 0;
	margin-right: 5px;
	}
textarea { 
	padding: .3em .4em .15em .4em;
	overflow: auto; 
	height: 90px; 
	width: 164px; 
	}

/* =Success, notice and error boxes
-------------------------------------------------------------- */
.error, 
.notice, .success  { padding: .8em; margin-bottom: 1.6em; border: 2px solid #ddd; }

.error             { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice            { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success           { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a           { color: #8a1f11; background: none; padding: 0; margin: 0; }
.notice a          { color: #514721; background: none; padding: 0; margin: 0; }
.success a         { color: #264409; background: none; padding: 0; margin: 0; }

/* =Misc
-------------------------------------------------------------- */

.f-line            { margin: 0 0 10px 0; clear: both; }
.one-line          { display: inline; float: left;  margin: 0 20px 0 0; }

	