/* CSS Document */
.form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: 0;
  padding: 5px;
  width: 275px; 
}

.form2 {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: 0;
  padding: 5px;
  min-width: 400px;
  max-width: 400px;
  width: 400px; 
}

.form3 label {
	float: left;
	width: 45%;
	display: block;
	padding: 0.4em;
}

.form fieldset {
  border-color: #000;
  border-width: 0px;
  border-style: solid;
  padding: 0px;        /* 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 */
	float: left; 
	width: 75px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: left; 
}

.form label2 { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 125px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: left; 
}

.form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:none;    /* 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 input, form 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;
}

.form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

.form textarea { overflow: auto; height:25px; }

.smaller {
	font-size:80%;
	color:#757575;
	}

.medium {
	font-size:90%;
	padding:2px;
	background:#CCCCCC;
	margin-left:0px;
	color:#222222;
	}

.button {
	background:#333333;
	color:#FFFFFF;
	border:#000000 1px solid;
	font-size:12px;
	margin-left:68px;
	margin-top:4px;
	width:50px;
	height:20px;
	padding:1px;
	padding-bottom:2px;
	}

.button2 {
	background:#333333;
	color:#FFFFFF;
	border:#000000 1px solid;
	font-size:12px;
	width:50px;
	height:24px;
	padding:1px;
	}

.button3 {
	background:#333333;
	color:#FFFFFF;
	border:#000000 1px solid;
	font-size:12px;
	margin-top:4px;
	height:24px;
	padding:1px;
	padding-bottom:2px;
	}

.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 */
}


/* CONTACT PAGE FORM*/

.form3 {
	background:#f6f6f6;
	padding:10px;
	position:relative;
	width: 455px;
}

.form3 fieldset {
	margin: 0;
	border: 0;
	padding: 0;
	clear: left;
}

.form3 legend {
	clear: both;
	font-size: 100%;
	font-weight: bold;
	padding-left: 0;
	padding-top: 0.8em;
/*
	position: relative;
	left: -0.5em;
*/
}

.form3 label {
	float: left;
	width: 45%;
	display: block;
	padding: 0.4em;
}

.form3 label.wider {
	width: 95%;
}

.form3 label.narrower {
	/* IE 6 (and most other browsers) */
	width: 20%;
}

.xform label.narrower {
	/* IE 5.5 */
	width: 23%;
}

.form3 input, select, textarea {
	width: 100%;
	margin-top: 0.1em;
}

.smallinput {
	padding-left: 2em;
	margin-right: -2em;
}

.smallinput input {
	width: 1.2em;
	height: 1.1em;
	margin-right: 0.4em;

	position: relative;
	padding-left: 0.3em;
}

.submit input {
	width: 4em;
}

.form3 .button {
	background:#333333;
	color:#FFFFFF;
	border:#000000 1px solid;
	font-size:12px;
	width:50px;
	height:24px;
	padding:1px;
	}

.hint {
   	display: none;
    position: absolute;
    right: 250px;
    width: 150px;
    margin-top: 0px;
    border: 1px solid #cc3333;
    padding: 5px 7px;
	color:#cc3333;
    /* to fix IE6, I can't just declare a background-color,
    I must do a bg image, too!  So I'm duplicating the pointer.gif
    image, and positioning it so that it doesn't show up
    within the box */
    background: #ffffdf;
}

/* The pointer image is hadded by using another span */
.hint .hint-pointer {
    position: absolute;
	margin-left:-138px;
	top:-10px;
    width: 19px;
    height: 10px;
    background: url(../images/pointer.gif) left top no-repeat;
}