form.Standard {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	margin: 0;
	padding: 0;
	overflow:visible;
	clear:both;
}

form.Standard fieldset {
	border:none;
	padding: 0 0 1em 0;        /* padding in fieldset support spotty in IE */
	margin: 0;
	width:100%;
}

form.Standard h2 {
	font-size:100%;
	color:#333;
	width:100%;
	background:#ccc;
	margin:0;
	padding:.25em 0 .25em .25em;
}
form.Standard fieldset legend {
	color:#333;
	font-weight:bold;
	clear:both;
	padding:.25em;
}

form.Standard label {
	display: block;	/* block float the labels to left column, set a width */
	float: left;
	clear:right;
	width: 300px;
	padding: 0;
	margin: 5px 0 0;	/* set top margin same as form input - textarea etc. elements */
	text-align: left; 
}
form.Standard .radioblock {
	float:left;
	display:block;
	margin:0;
	padding:0;
}

* html form.Standard .radioblock  {	
	margin:0 0 0 -15px;
}

form.Standard .radioblock label {
	display: block;	/* block float the labels to left column, set a width */
	float: left;
	width: 280px;
	padding: 0;
	margin: 5px 7px 0;	/* set top margin same as form input - textarea etc. elements */
	text-align: left;
}

* html form.Standard .radioblock label {
	margin: 7px 7px 0;	/* set top margin same as form input - textarea etc. elements */

}

form.Standard select {
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	float:left;
	display: block;
}

form.Standard input#radio {
display: block;	/* block float the labels to left column, set a width */
float: left;
width: 20%;
}


form.Standard input, form.Standard textarea, form.Standard select, form.Standard input#file {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	float:left;
	display: block;
	font-family: "Verdana" Arial sans-serif;
	font-size:0.8em;
}
* html form.Standard input, form.Standard textarea, form.Standard select, form.Standard input#file {
	font-size:100%;
}

form.Standard input#hidden {
	display:none;
}

form.Standard br {
	clear:both;
}

form.Standard input:focus, form.Standard textarea:focus, form.Standard select:focus {
	border:red solid 1px;
}

form.Standard input#reset {
	margin-left: 10px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }


form.Standard br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

.Required {
	margin: 7px 0 0;	/* set top margin same as form input - textarea etc. elements */
	padding:0;
	float: left;
	color: red;
	display: block;
	height:1.5em;
	width:1.5em;
}

.Warning, .Alert {
	font-weight:bold;
	color: red;
}

/* Styles for form inputs */


form.Standard .Text200 { 
	 color: #333; width: 200px; border: #333 solid 1px;
}

form.Standard .Text20 { 
	 color: #333; width: 20px; border: #333 solid 1px;
}

form.Inline {
	margin:0;
	padding:0;
	display:inline;
}

.button {
	background:#eeeeee;
	color: #333;
	font-size:0.8em;
	border:1px solid #333;
	margin: 0;
	cursor:pointer;
}

a.button {
	padding:2px .5em;
	text-decoration:none;
	font-size:0.8em;
}

form.Standard div.button_link {
	float:left;
	padding:3px .5em;
	margin:4px 0 0 .5em;
	overflow:visible;
	background:#fff;
}

* html form.Standard div.button_link {
	padding: 2px 1em;
	border: 1px #333 solid;
	margin: 5px .5em;
}
a.cancel_button {
	margin:0;
	padding:1px 2em;
	text-decoration:none;
	background:#eeeeee;
	color: #333;
	font-size:0.8em;
	border:1px solid #333;
	
}

* html a.cancel_button {
	font-size:1em;
	overflow:visible;
	border:none;
}
/* end review app display */