/* CSS Style Sheet																		*/
/* file:		ra_form.css																*/
/* Date:		08 July 2009															*/
/* Author:	P G Swain																	*/
/* ================================================== */

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

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

#enquiryForm
{
	position: relative;
	width: 100%;
	margin: auto;
	font-size: 12px;
}

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

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

/* pale yellow background and maroon inset border */
#enquiryDetails	
{
	border:inset #5c0715;
	border-width: 5px;
	padding: 0;
	margin: 0px;
	border-color: #5b491f;
	background-color: #d7a900;
}

/* input and select style */
#enquiryDetails input, select
{
	margin-left: 150px;
	margin-bottom: 0.5em;
	line-height: 1em;
	cols: 35;
}

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

/* input label style */
#enquiryDetails 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 */
#enquiryDetails textarea
{
	margin-left: 150px;
	margin-bottom: 0.5em;
	line-height: 1em;
}

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

#problemForm
{
	position: relative;
	width: 100%;
	margin: auto;
	font-size: 12px;
}

#problemForm p
{
	margin-left: 5px;
	font: bold;
	text-decoration: underline;
}
/* fieldset style */
/* ============== */

/* pale yellow background and maroon inset border */
#problemDetails	
{
	border:inset #5c0715;
	border-width: 5px;
	padding: 0;
	margin: 0px;
	border-color: #5b491f;
	background-color: #a8b400;
}

/* input style */
#problemDetails input, select
{
	margin-left: 150px;
	margin-bottom: 0.5em;
	line-height: 1em;
}

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


/* input label style */
#problemDetails 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 */
#problemDetails textarea
{
	margin-left: 150px;
	margin-bottom: 0.5em;
	line-height: 1em;
}
