/* ------------------------------------------------- */
/* Form Styles                                       */
/* ------------------------------------------------- */

/* columnForm: a simple form style with labels and inputs aligned after them, but with inputs ligned up with each other */

.columnForm {
	margin: 0 auto;
	max-width: 100%;
	min-width: 94%;
}

.columnForm fieldset {
	margin: 0 auto 10px auto;
	max-width: 100%;
	/* min-width: 94%; */
}

.columnForm .row { 
	position: relative;
	clear: right;
	margin: 0;
	padding: 0;
}

.columnForm .heading {
	text-align: left;
}

.columnForm .spacer {
	float: right;
	height: 0px;
	margin: 0;
	padding: 0;
	width: 100%;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.columnForm .leftCol {
	vertical-align: top;
	display: inline-block;
	width: 21%;
	font-weight: bold;
	clear: right;
	border-right: 2px solid #ccc;
	padding: 8px 5px 5px 5px;
}

.columnForm .rightCol {
	display: inline-block;
	vertical-align: bottom;
	border-left: 2px solid #ccc;
	margin: 0 -2px;
	padding: 5px;
	min-width: 200px;
	max-width: 72%;
	text-align: left;
}

.columnForm .rightCol * {
	max-width: 100%;
}

.columnForm .rightCol label {
	max-width: 100%;
	min-width: 400px;
}

.columnForm .button {
	margin-top: 10px;
}

/* centeredForm: a simple form style with inputs left aligned and labels right aligned in the center of the page.
	NOTE: The layout cannot accomodate the content of either side wrapping to a second line. */

.centeredForm {
	width: 500px;
}

.centeredForm p {
	position: relative;
	height: 15px;
}

.centeredForm p label {
	position: absolute;
	right: 60%;
}

.centeredForm p input, .centeredForm p select {
	position: absolute;
	left: 42%;
	max-width: 300px;
}