/* CSS Document */

/* form hierarchy is
		form
		fieldset
			legend
		label
		input
*/

/* form style */
/* ========== */

#inquiryform		{
					 position: relative;
					 font-size: 12px;
					 padding: 0 0 20px 0;
					}

#inquiryform p
{
	margin-left: 5px;
	font: bold;
  	text-decoration: underline;
}

/* fieldset style */
/* ============== */

/* pale yellow background and maroon inset border */
#inquirydetails			{
					 width: 90%;
/*					 background: #ffffcc;	*/
					 border:inset #5c0715;
					 border-width: 5px;
					 padding: 0;
					 margin: 0px;
					 border-color:#FF6600;
					}

/* fieldset legend style */
/* ===================== */

#inquirydetails legend				{
					 border:#990033 outset 2px;
					 font-size: 1.5em;
					}

/* input style */
/* =========== */

#inquirydetails input, select
{
	margin-left: 150px;
	margin-bottom: 0.5em;
	line-height: 1em;
}

/* verification code fields style */
#inquirydetails img
{
	margin-left: 150px;
	margin-bottom: 0.5em;
	line-height: 1em;
}

/* input label style */
/* ================= */

#inquirydetails label	{
					 position: absolute;	/* this fixes label's position in margin of input	*/
					 padding-top: .2em;
					 left: 20px;			/* move to the right from the fieldset edge			*/
					}

/* textarea style */
/* ============== */

#inquirydetails textarea	{
					 margin-left: 150px;
					 margin-bottom: 0.5em;
					 line-height: 1em;
					}
