

h4 a { color: #004e41;
	margin: 0;
	font-size: 17px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	padding-top: 6px;
	padding-bottom:3px;
	margin-bottom:0;
	display:block;
	width:700px;
	text-transform:uppercase;
	
	border-bottom: 1px solid #a2aead;
	border-right: 0px solid #ffffff;
	border-top: 0px solid #ffffff;
	border-left: 0px solid #ffffff;
	background-color:#fff;
	text-decoration:none;



}
h4.selected a { color: #004e41; text-decoration:none; }

h4 a:hover { color: #004e41; text-decoration:none;  background-color: #ededed;}

.drawer a { color: #B9B9B9; }
.drawer a:hover { color: #787878 }
.toggler {
	color: #666;
	margin: 0;
	padding: 12px 12px;
	background: #f4f4f4;
	border-bottom: 0px solid #ffffff;
	border-right: 1px solid #ffffff;
	border-top: 3px solid #ffffff;
	border-left: 1px solid #ffffff;
	font-size: 1.2em;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
	cursor:hand;
	background-repeat:repeat-x;
}



.contactform {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
padding-top:10px; padding-left:10px; padding-right:10px; padding-bottom:10px;
  min-width: 600px;
  max-width: 660px;
  width: 600px; 
}

.contactform fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #000;
  background-color:#f4f4f4;
  border-width: 0px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
  color:#777777;
}

.contactform 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;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size:1.3em;
	
	
}



.contactform 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  */
}

.contactform 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; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

.contactform input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

.contactform 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%;
}

.contactform .required{font-weight:bold;} /* uses class instead of div, more efficient */

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