
/* ----------------------------------------- 
   =FORMS
   ----------------------------------------- */


/* basic */

fieldset {  
	margin: 1.5em 0 0 0;  
	padding: 0; 
}
 
legend {  
	margin-left: 1em;
	color: #000;  
	font-weight: bold; 
	line-height: 2em;
} 

fieldset ol {  
	padding: 0 1em 0 1em;  
	list-style: none; 
} 

fieldset li {  
	padding-bottom: 1em; 
} 

fieldset.submit {  
	border-style: none; 
}

textarea {
	width: 220px;
	height: 10em;
	border: 1px solid #ccc;
}

input.text {
	width: 220px;
	height: 17px;
	border: 1px solid #ccc;
}


/* sub groups */

fieldset fieldset {  
	margin-bottom: -2.5em;  
	border-style: none;  
	background-color: transparent;  
	background-image: none; 
}
 
fieldset fieldset legend {  
	margin-left: 0;  
	font-weight: normal;
}
 
fieldset fieldset ol {  
	position: relative;  
	top: -1.5em;  
	margin: 0 0 0 8em;  
	padding: 0; 
}
 
fieldset fieldset label {  
	float: none;  
	width: auto;  
	margin-right: auto; 
}


/* to position the label left of the input box */

fieldset {  
	float: left;  
	clear: left;  
	width: 100%;  
	margin: 1em 0 1.5em 0;  
	padding: 0; 
}

fieldset.submit {  
	float: none;  
	width: auto;  
	border: 0 none #FFF;  
	padding-left: 9.2em; 
}

fieldset li {  
	float: left;  
	clear: left;  
	width: 100%;  
	padding-bottom: 1em; 
}

label {  
	float: left;  
	width: 7em;  
	margin-right: 1em;
}


/* to right align lables */
/*
label {  
	text-align: right; 
}
*/


/* to position label above input */
/*
label {  
	display: block; 
}
*/


/* bg colors */
/*
legend {  
	margin-left: 1em;  
	padding: 0;  
	color: #000;  
	font-weight: bold; 
}
fieldset {  
	float: left;  
	clear: both;  
	width: 100%;  
	margin: 1em 0 1.5em 0;  
	padding: 0;  
	border: 1px solid #ccc;  
	background-color: #fffeec; 
}
fieldset.submit {  
	float: none;  
	width: auto;  
	border-style: none;  
	padding-left: 9.2em;  
	background-color: transparent; 
}
*/


/* bg image */

fieldset {  
	float: left;  
	clear: both;  
	/*width: 100%;*/
	width: 400px;
	margin: 0 0 1.5em 0;  
	padding: 15px 0 0 0;  
	border: 1px solid #f3f3f3;  
	background-color: #fff;  
	background-image: url(../images/form-bg.gif);  
	background-repeat: repeat-x; 
}
fieldset.submit {  
	float: none;  
	width: auto;  
	border-style: none;  
	padding-left: 9em;  
	background-color: transparent;  
	background-image: none; 
}



/* req - text */ 
/*
label em {  
	display: block;  
	color: #060;  
	font-size: 85%;  
	font-style: normal;  
	text-transform: uppercase; 
}
*/

/* req - image */ 

label {  
	position: relative;  
	float: left;  
	width: 7em;  
	margin-right: 1em; 
} 
label em {  
	position: absolute;  
	left: 6.6em;  
	top: 0px; 
}


/* error */

label.error { 
  float: none;
	width: 14em; 
	color: #C00;
	font-size: 85%; 
	font-weight: normal;
	text-transform: uppercase; 
	margin-left: 10px;
}



/* placeholder for longer error messages */

#error-placeholder {
	background: #fdd;
}

#error-placeholder p {
  border: 0;
  padding: 10px 0 10px 15px;
  margin: 0;
}

#error-placeholder ol {
  border: 0;
  padding: 0 0 10px 1em;
  margin: 0 0 1em 0;
}

#error-placeholder ol li {
  border: 0;
  padding: 0;
  margin: 0.3em 0 0.3em 1.8em;
}


