

.cssform p{
	width: 250px;
	/*clear: left;*/
	margin: 0;
	padding: 5px 0 8px 175px; /*width of left column containing the label elements*/
	border-top: 1px dashed gray;
	height: 1%;
	
}


.cssform label{
	font-weight: bold;
	float: left; /*width of left column*/
	width: 170px;
	line-height: 14px;
	margin: 4px 0px 0px -175px;
	padding:0;
}




.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 180px;
}


.cssform textarea{
width: 225px;
height: 100px;
}


/*.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;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}