/* --------------------------------------------------------------

   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
   * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  background-color:#fff;
  border:1px solid #bbb;
}
input[type=text]:focus, input[type=password]:focus,
input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border-color:#666;
}

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  margin:0.5em 0;
}

input.text,
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 250px; padding:5px; }

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  position:relative; top:.25em;
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }





/* Design
-------------------------------------------------------------- */


label {
	margin-top: 10px;
	
	}

#theform {
	width: 840px;
	height: 100%;
	margin-top: -20px;
	}
	
#theform fieldset {
	width: 380px;
	border: 0;
	margin: 0;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 1em;

	}

#theform hr {
	display: block; 
	clear: left; 
	margin: -0.66em 0; 
	visibility: hidden;
	}

	
#theform fieldset legend {
	font-size: 4em;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
	}
	
#theform fieldset legend span {
	display: none;
	}
	
#theform fieldset h3 {
	height: 4em;
	font-size: 16px;
	}
	
#theform fieldset div.help {
	color: #999999;
	font-size: 1em;
	height: 4em;
	width: 220px;
	}
	
#theform fieldset label {
	font-size: 16px;
	display: block;
	line-height: 1.5em;
	color: #666666;
	}
	
#theform fieldset input {
	font-size: 14px;
	padding:6px 6px;
	width:380px;
	background-color: #FFFFFF;
	border: 1px double #CBC4BD;
	}

#theform fieldset.error,
#theform fieldset.error legend,
#theform fieldset.error div.help {
	color: #8DB251;
	}
	
#theform fieldset strong.error {
	color: #fff;
	background-color: #666;
	font-size: 12px;
	width: 363px;
	font-weight: bold;
	display: block;
	margin-top:10px;
	margin-bottom:-5px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	}

#pt1 {

	}

#pt2 {

	}

#pt3 {

	}
	
#pt4 {


	}

#pt1, #pt2, #pt3 {
	float: left;
	}


#theform fieldset textarea {
	padding:7px 7px;
	width:380px;
	background:#FFF;
	overflow:hidden;
	height:150px;
	border: 1px double #CBC4BD;
	}
	
#theform .button
{
	margin:0 0 10px 0;
	padding:4px 7px;
	position: relative;
	top:20px;
	width:148px;
	height:47px;
	cursor: pointer;
	background-color: #FFFFFF;
	background-image: url(/images/submitbutton.jpg);
	background-repeat: no-repeat;
	border: 0px;
	background-position: left top;
}

#theform #pt4 {
	clear: both;
	display: block;
	height: 1px;
	width: 100%;
	}

#theform .required {
	color: #F00000;
}