@charset "utf-8";
/* CSS Document */
#enquiry{float:left; margin:0; padding:0 0 20px 20px; width:670px; z-index:100000;}
#enquiry form{/* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:1em;
  color:#6a6a6a;
  font-weight:bold;
  margin: 0;
  padding: 0 0 20px 20px;
  width: 650px;
  z-index:10000;}
  
#enquiry form fieldset{
  /* clear: both;  note that this clear causes inputs to break to left in ie5.x mac, commented out */
  /*border-color: #333;
  border-width: 1px;
  border-style: solid; */
  padding:10px;        /* padding in fieldset support spotty in IE */
  margin:0 0 10px 0;
}

#enquiry form h1{
  font-size:1.75em; /* bump up legend font size, not too large or it'll overwrite border on left */
  color:#fcb040;       /* be careful with padding, it'll shift the nice offset on top of border  */
  padding:0 0 10px 0;
}

#enquiry form label{ 
	display:block;  /* block float the labels to left column, set a width */
	float:left; 
	width:80px; 
	padding:0; 
	margin:5px 0 5px 0; /* set top margin same as form input - textarea etc. elements */
	text-align:left; 
}

#enquiry form label:first-letter{
  /* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:underline;
	font-weight:bold;
	font-size:1.15em;
	color:#003f7f;					/* 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 */
}

#enquiry form input, form textarea, form select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:350px;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:3px 0 10px 45px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE 
	-moz-border-radius:2px; border-radius:2px;*/
	
}

#enquiry form input:focus, input:hover{background-color:#003f7f; color:#ffffff;}
#enquiry form textarea:focus, textarea:hover{background-color:#003f7f; color:#ffffff;}
#enquiry form select:focus, select:hover{background-color:#003f7f; color:#ffffff;}

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

#enquiry form #button {
	padding-left:150px /* set margin-left back to zero on reset button (set above) */
}

#enquiry select{
	width:215px;
	padding:3px;
	margin: 0 10px 5px 10px;
}

#enquiry textarea {
	overflow:auto;
	display:block;  /* block float the labels to left column, set a width */
	width:352px; 
	padding:0; 
	margin:5px 0 10px 125px; /* set top margin same as form input - textarea etc. elements */
	text-align:left; }

#enquiry form small {
	display: block;
	margin: 0 0 5px 50px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 1.25em;
}

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

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

#enquiry form #button{margin:0 auto; padding:0 0 0 200px;}
#enquiry form #button input{width:100px; margin:0 10px 0 0; padding:5px; color:#ffffff; background-color:#6e6e6e; border:0; -moz-border-radius:4px; border-radius:4px; cursor:pointer;}
#enquiry form #button input:hover{background-color:#85994c; color:#fff;}