form fieldset fieldset {
	margin-left: auto;
	margin-right: auto;
}

form fieldset {
	  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
	  border-color: #000;
	  border-width: 1px;
	  border-style: solid;
	  padding: 10px;        /* padding in fieldset support spotty in IE */
	  margin: 0;
}

form fieldset legend {
	font-weight: bold;
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form fieldset label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 200px; 
	padding: 0; 
	margin: 5px 0px 0; /* set top margin same as form input - textarea etc. elements */
	text-align: left; 
}

form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 400px;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 0px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}
/* probably won't work everywhere */
input[type=text] {
	width: 400px;
}
form div.radio_button_group {
	margin-left: 200px;
}
input.short {
	width: 150px;
}
input.medium {
	width: 200px;
}
input.long {
	width: 450px;
}
textarea.short {
	width: 200px;
}
form select, checkbox, radio, input[type=checkbox], input[type=radio] {
	width: auto;
	margin: 5px 0 0 0px;
}

form div.radio_button_group label {
	display: inline;
	float: none;
	margin-left: 5px;
}

form textarea {
	height: 100px;
}

form textarea.medium_size {
	height: 100px;
}

textarea { overflow: auto; }

form textarea.tall {
	height: 300px;
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

form input[type=submit] {
	width: auto;
}

form submit {
	color: red;
}


form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required, div .required { 
	font-weight:bold; 
	color: red;
} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}


/******************************************************************************
 * fieldset with labels on top of field
 *****************************************************************************/
form fieldset.horizontal label { 
	display: block;  /* block float the labels to left column, set a width */
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: left; 
}
form fieldset {
	text-align: left;
	margin-bottom: 20px;

}

/*******************************************************************************
*	form newsletter compact
*******************************************************************************/

#newsletter_form_compact {
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 25px 5px 25px 5px;
	background-image: url(/images/background_newsletter_subscription_form.jpg);
	padding: 10px;
	margin: 10px 0px;	
	color: #118192;
	font-weight: bold;
	font-size: 12px;
}
#newsletter_form_compact input[type=text] {
	width: 150px;	
	font-size: 12px;
	padding: 2px;
}
/*******************************************************************************
*	form search by term
*******************************************************************************/
#search_fulltext_term {
	width: 200px;
	margin: 5px 0px 0px 0px;
}
#cmd_search {
	margin-left: 10px;
	}
