﻿/*----------------------------------------------------------------------------------
	Page:						Form.css
	Author:					John Bradnam
	Created:				070812 JLB
	Copyright:			Republicorp P/L
	Purpose:				Defines styles used in forms
	History:
	--------------------------------------------------------------------------------*/
	
div.form {
	position: relative;
	margin-top: 0px;
	margin-left: 0px;
	height: 570px;
	z-index: 1;
}
	
div.form .text {
	position: absolute;
	left: 0px;
	width: 566px;
}

div.form .prompt {
	position: absolute;
	left: 0px;
	width: 160px;
	margin-top: 5px;
}

div.form .mandatory {
	font-weight: bold;
	color: #A8425A;
	padding-left: 5px;
}

div.form .validator {
	position: absolute;
	left: 148px;
	margin-top: 1px;
	color: Red;
	font-weight: bold;
	font-size: 18pt;
}

div.form .prompt_label {
	position: absolute;
	left: 30px;
	width: 160px;
	font-weight: bold;
	color: #087AC9;
}

div.form .label {
	position: absolute;
	left: 162px;
	width: 410px;
}

div.form .data {
	position: absolute;
	left: 162px;
	width: 400px;
}

div.form input.edit {
	width: 396px;
	padding-left: 3px;
	padding-right: 3px;
}

div.form textarea {
	width: 398px;
	padding-left: 3px;
	font-size: 9pt;
}

div.form select.edit {
	width: 406px;
}

div.form input.button {
	width: 100px;
}

