/*DC form code*/
/* Setup form layout */

form { 
  /* set width in form, not fieldset (still takes up more room  fieldset width */
  /*font-size:0.8em;*/
  margin: 0;
  padding: 0;
  /*min-width: 500px; too wide for 2 col*/
  /*max-width: 100%;*/
  width: 100%; 
  /*float:left; good for FF but breaks IE6 */
}

form fieldset 
{
	border: 0;
	border-top: 1px solid #000;
	padding: 10px;        /* padding in fieldset support spotty in IE */
	margin: 0;
}

form fieldset legend {
	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 label { 
	display: block;   /*block float the labels to left column, set a width */
	display: inline;   /*seems to fix layout*/
	float: left; 
	width: 250px; 
	padding: 0; 
	margin: 5px 0 0 0; /* set top margin same as form input - textarea etc. elements */
	/*text-align: right;    not good readability  */
	/*background-color:#f5f5fd;*/
	color:#40408c;
}

form input, form textarea, form select
{
	/* display: inline; inline display 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 */
/*	border: #000066 1px solid; puts borders on everything incluing checkbox and radio*/
	padding: 1px;
	font-size: 1em;
	color: #000066;
    border: #000066 1px solid;}
}

form label.radio {float:none;}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
	padding: 0px;
}

textarea { overflow: auto; }

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{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

form fieldset.radio{
  border-width: 0px; /*hides radio fieldset line*/
}

.checktitle {float:left;display:block;width:250px;}
.checkgroup {float:left;display:block;}
.checkgroup input {float:left;}
.checkgroup label {text-align:left;}

/*more accessible form code*/

/*form ul {list-style: none; margin: 0; padding: 0}
form li {margin: 0.5em 0}
form label {width: 250px; margin-right: 0.5em;text-align: right; float: left; }
form .checktitle label {width: auto; text-align: left; margin: 0; float: none; display: inline}
form .checktitle span {display:block; padding-left: 12em}
form .checktitle span.name {padding-left: 0; width: 11.5em; text-align: right}*/

form li {list-style:none;}

.form fieldset {border: 0; border-top: 1px solid #000066; /*display: block;*/}
.form fieldset legend {font-weight: bold; font-size: 1.2em;}
.form label {width: 20em; float: left; display: block; padding-left:5px}
.form ul {list-style: none; margin: 0; padding: 0;}
.form li {margin-top: 1px; background-color:#F7F7F7; float:left; width:100%; padding:2px 0;}
.form li.check {display:block; width:100%; clear:both;}
.form li.check input {border: none;}
.form li.check label {float: none; display: inline;}
.form .groupCheck {float: left;}
.form .groupCheck span {display: block;}
.form .prompt {padding-left: 5px; width: 20em; float:left; color:#40408c;}

form li.buttons 
{padding-left:20em; display:block; width:auto; float:left; clear:both; background:none; border-top:none;}

form textarea {overflow: auto;}
form input:hover, select:hover, textarea:hover {border: #a6dc8e 1px solid;}
form input:focus , select:focus , textarea:focus  {border: #66ac4e 1px solid;}

form .InFormText {display:block; clear:left; background-color: #FFFFFF;}



/* Table styles and layout */

td
{
	/*font-size: 0.65em;*/
	padding-bottom: 2px;
}

td.header
{
	/*font-size: 0.8em;*/
	font-weight: bold;
}

.editLink
{
	padding-left: 5px;
/*	font-size: 0.9em;*/
	font-weight: normal;
}

#tasks
{
	padding-left: 5px;
	font-size: 0.9em;
	font-weight: normal;

}

.infoTable {	
	border: 1px solid #336699;
	border-collapse: collapse;
	/*margin-top: 12px;*/
	/*width:95%;*/
}

.infoTable tr.Header td{
	background-color: #E6ECF7;
	font-weight: bold;
	padding: 3px;
	border: 1px solid #336699;
	line-height: 1.2;	
}

.infoTable tr.Row td {
	background-color: #FFFFFF;
	padding: 3px;
	border: 1px solid #336699;
	line-height: 1.2;
}

.InFormText {
display:block;
clear:left;
background-color: #E5E5E5;
border: 1px solid #c0c0c0; 
margin: 5px 0px; 
padding: 5px; 
}

.radiogroup {clear:left; width:100%;}
#radioDiv {clear:both; width:100%;}

.radiogroupLabel {
display:block;
clear:left;
margin: 4px 0px; 
/*padding: 5px; */
width:250px;
float:left;
text-align:right;
/*background-color:#f5f5fd;*/
color:#40408c;
}

.radiogroupOptions {/*width:250px;*/display:inline;float:left;}
.radiogroupOptions div {/*width:250px;*/ }

.formLine {float:left;width:100%;clear:left;background-color:#f7f7f7;margin-bottom:1px;}
