﻿/*** generic form ***/

fieldset.formInfo
{
	border:none;
	padding:0px;
}

fieldset.formInfo ol
{
	padding:0px;
	margin:0px;
	list-style:none;	/* this removed the list number or bullet */
	display:inline;	/* this removes the list indentation */
}

fieldset.formInfo li
{
	margin-top:3px;
	line-height:2em;
	clear:both;		/* needed for IE8 */
}

/* this is the label column */
fieldset.formInfo li label:first-child,
fieldset.formInfo li span:first-child
{
	float:left;
	width:6em;			/* customize this for each situation */
	text-align:right;
	white-space:nowrap;
}

fieldset.formInfo li *:last-child	/* won't work in IE8 */
{
	margin-left:5px;
}

fieldset.formInfo li > input	/* for IE ... instead of last-child */
{
	margin-left:5px;	/* customize this */
}

fieldset.formInfo li > select /* for IE ... instead of last-child */
{
	margin-left:5px;	/* customize this */
}

fieldset.formInfo.buttons
{
	float:left;
	margin-left:6em;	/* customize this */
	padding-left:7px;
}


fieldset.formInfo div.notes
{
	font-size:80%;
}

/*** generic form ***/


fieldset.formWrapper
{
	position:relative;
	background-color:#F2F2F2;
	border:none;
	float:left;
	padding:10px;
}

/* add buffer to because of fix for IE background color bleed issue */
fieldset.formWrapper legend + fieldset
{
	margin-top:15px;
}

fieldset.formWrapper > legend
{
	/* IE stuff because of background color bleed in fieldsets*/
	position:absolute;
	top:-.7em;
	left:.3em;	
	/* ---- */
	
	font-size:125%;
	/*font-weight:bold;*/
	color:#9D0526;
}

*:focus 
{
	outline:none;
}

fieldset.formInfo input[type=text],
fieldset.formInfo input[type=password],
fieldset.formInfo textarea,
fieldset.formInfo select
{		
	border: solid #dddddd;
}


fieldset.formInfo input[type=text]:focus,
fieldset.formInfo input[type=password]:focus,
fieldset.formInfo textarea:focus,
fieldset.formInfo select:focus
{
	border: solid #9D0526;
}
