form.psclogin,
form.psc {  
/* set width in form, not fieldset(takes up more room w/ fieldset width) */
  font:100% verdana,arial,sans-serif;
  margin: 0;
  padding: 0;
  min-width: 400px;
  max-width: 600px;
  width: 520px; 
}

form#login {
  width: 400px; 
}

form.psc fieldset {
  border-color: #000;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form.psc 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.psc label.req,
form.psc label { 
/*
	padding: 0; 
*/
	padding: 0 10px 0 0; 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 190px; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
    font-weight: bold;
}
form#login  label.req,
form#login  label{
	width: 180px; 
}

form#login  label.req,
form.psc label.req {
  background-image:url(/images/asterisk1.gif);
  background-position:right top;
  background-repeat:no-repeat;
}


form.psc fieldset label:first-letter { 
/* use first-letter pseudo-class to underline accesskey, note that */
text-decoration:underline;    /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                              /* pseudo-class on legend elements, but do support it on label elements */
                              /* we instead underline first letter on each label element and accesskey */
                              /* each input. doing only legends would  lessens cognitive load */
                              /* opera breaks after first letter underlined legends but not labels */
}

form.psc input, 
form.psc select, 
form.psc textarea {
	/* 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 */
}

form.psc input.contact, 
form.psc select.contact, 
form.psc textarea.contact {
/*
	width:auto;
*/
	width:300px;
	margin:5px 0 0 10px; /* margin left of form elem rather than right of label aligns textarea better in IE */
}

textarea { overflow: auto; }

form.psc 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.psc .required{font-weight:bold;} /* uses class instead of div, more efficient */

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

.errtxt, .errtxt_b{
   margin: 5px 5px 5px 5px;
   text-align: center;
   font-family: Georgia, Times New Roman, Times, serif;
   font-weight: normal;
   font-style: normal;
   font-size: 10pt;
   color: #FF0000;
   }

.errtxt_b {
   font-weight: bold;
   }

.ea_bt,
.ea_grbt,
.ea_blbt,
.psc_bt,
.psc_bt_w,
.psc_blbt,
.psc_blbt_w {
   font-family: Arial;
   font-weight : bold;
   font-size: 10pt;
   color : #000000;
   height : 25px;
   width : 100px;
   text-align : center;
   vertical-align : middle;
   padding : 0.1em 0.1em 0.1em;
/*
   color : #FFFFFF;
   border-bottom : 2px solid #737373;
   border-right : 2px solid #737373;
   border-top : 2px solid #E6E6E6;
   border-left : 2px solid #E6E6E6;

   background: #541113 url(/images/img/leftmenu_footer.gif) no-repeat scroll right bottom;
*/
   }

.psc_bt_w,
.psc_blbt_w {
   width : 150px;
   }

