/*

FORM MODELS
Based on label placement
as seen in http://www.uxmatters.com/MT/archives/000107.php


FLAT RIGHT (default)

		 label here	[input here]
	long label here	[input here]


FLAT LEFT
label here			[input here]
long label here		[input here]


VERTICAL

label here
[input here]

long label here
[input here]



extras:

WIDE
[           input here            ]

AUTO
[input here]




*/

fieldset
{
	display:	block;
	padding:	5px;
	border:		2px groove #fff;
	margin-bottom:	20px;
	border: 0;
	border-top: 1px solid #ddd;
}

fieldset legend
{
	font-size:	14px;
	padding:	0 10px 0 10px;
	color:		#30690f;
	margin-bottom:	5px;
}

fieldset .field
{
	text-align:	left;
	padding: 5px;
	padding-right: 0;
	margin-bottom: 5px;
}

fieldset label
{
	display: block;
	float: left;
	width: 35%;
	text-align: right;
	margin-right: 10px;
	margin-top: 3px;
}

fieldset .left label
{
	text-align: left;
}

fieldset .above label
{
	display: block;
	float: none;
	width: auto;
	text-align: left;
}

fieldset .notice
{
	font-size:	 10px;
	color:		#999;
	margin-left: 35%;
	padding-left: 10px;
}

fieldset .above .notice
{
	margin: 0;
	padding: 0;
}


fieldset .invalid
{
	background: orange;
}

fieldset .invalid label
{
	font-weight: bold;
}

fieldset .invalid .notice
{
	color: black;
}

fieldset .footer
{
	text-align: center;
	margin-top: 30px;
}

fieldset .required label
{
}

fieldset .input_text,
fieldset .input_password
{
	border: 1px solid black;
	background: white;
	width: 150px;
}

fieldset .input_button
{
	background: #30690f;
	color: white;
	border: 1px solid black;
}

fieldset textarea
{
	border: 1px solid black;
}


fieldset .wide .input_text
{
	width: 59%;
}

fieldset .wide textarea
{
	width: 59%;
}


fieldset .wide.above .input_text
{
	width: 95%;
}

fieldset .wide.above textarea
{
	width: 95%;
}