@charset "utf-8";

/* form format */

.formformat {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	margin: 0;
	padding: 0;
	min-width: 500px;
	max-width: 100%;
	width: 100%;
}

.formformat fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #000;
	padding: 10px;        /* padding in fieldset support spotty in IE */
	margin: 0;
}

.formformat fieldset legend {
	font-size:14px; /* bump up legend font size, not too large or it'll overwrite border on left */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;   /* be careful with padding, it'll shift the nice offset on top of border  */
	font-weight: normal;
	border: 1px solid #CCCCCC;
	background-color: #1F3A58;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 6px;
	margin: 10px;
	color: #FFFFFF;
}

.formformat label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

.formformat 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 */
}

.formformat input {
	/* 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 */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: normal;
	color: #333333;
}
.formformat 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 */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: normal;
	color: #333333;
}
.formformat select {
	/* 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 */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: normal;
	color: #333333;
}

.formformat input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

.formformat textarea { overflow: auto; }

.formformat 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%;
}

.formformat .required{
	font-weight:normal;
	color: #E20A17;
} /* uses class instead of div, more efficient */

.formformat .requiredinput{
	border: 1px solid #1F3A58;
	background-color: #FFFFF9;
} /* uses class instead of div, more efficient */

.formformat br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

.formformat .button {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #1F3A58;
	border: 1px solid #999999;
	font-size: 10pt;
	font-weight: bold;
}
.formformat p{
	color: #336699;
}



/* for Catalog Download form */

.Genericform {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #333333;
	padding: 0px;
	width: 600px;
}
.Genericform p{
	padding-top: 3px;
	padding-bottom: 3px;
}
.Genericform fieldset {
	padding: 10px;
	border: 1px solid #BFBFBF;
}
.Genericform fieldset  legend  {
	font-size: 1.4em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: normal;
	font-weight: lighter;
	line-height: normal;
	font-variant: normal;
	letter-spacing: -1px;
	text-align: right;
	color: #666666;
	border: 1px solid #CCCCCC;
	clear: both;
	margin-bottom: 10px;
	background-color: #F0F1E3;
	margin-right: 5px;
	margin-left: 5px;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
	margin-top: 0px;
}
.Genericform label {
	padding: 2px;
	float: left;
	width: 130px;
	margin-right: 10px;
	display: block;
	text-align: right;
}
.Genericform input {
	border: 1px solid #9BCDFF;
	color: #666666;
	margin: 1px;
}
.Genericform input#Submit {
	border: 1px solid #9BCDFF;
	color: #FFF;
	margin: 1px;
	background-color: #666;
	font-weight: bold;
	padding-top: 3px;
	padding-bottom: 3px;
}
.Genericform select {
	border: 1px solid #9BCDFF;
	color: #666666;
	margin: 1px;
}
.Genericform textarea {
	width: 300px;
	border: 1px solid #9BCDFF;
	height: 150px;
}

