/* HYDRAULICO FORM CSS */
FORM {
	background-color:#EEF7FF; 
	padding:10px;
	font-family:Arial, Helvetica, sans-serif;
	}
INPUT, TEXTAREA {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:24px;
	color:#333333;
	margin:0;
	}

.hyform div {
	width: 230px;
	clear: left;
	margin: 0;
	padding: 5px 0 0 5px;
	padding-left: 125px; /*width of left column containing the label elements*/
	height: 1%;
	font-size:11px;
	color:#444444;
	}
	
.hyform div.section {
	width: 355px;
	clear: left;
	margin: 15px 0 0 0;
	padding: 5px 0 8px 0px;
	border-top: 1px dotted #ccc;
	height: 1%;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	font-weight:normal;
	color:#00427D;
	}

.hyform label{
	float: left;
	margin-left: -125px; /*width of left column*/
	width: 110px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
	}

.hyform input[type="text"] { /*width of text boxes. IE6 does not understand this attribute*/
	width: 225px;
	}
.hyform input[type="checkbox"] {
	margin-bottom:5px;
	}
.hyform input[type="radio"] {
	margin: 0px 0px 10px 0px;
	}
.hyform input[type="submit"] {
	margin: 10px 0px 10px -120px;
	}

.hyform textarea {
	width: 350px;
	height: 100px;
	margin-left:-125px;
	}


/*.threepxfix class below:
Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
*/

* html .threepxfix {
	margin-left: 3px;
	}

