.cssform p {
	width: 400px;
	clear: left;
	margin: 0;
	padding: 5px 0 8px 0;
	padding-left: 100px; /*width of left column containing the label elements*/
	/* border-top: 1px dashed gray; */
	height: 1%;
	
}
	
.cssform label {
	font-weight: bold;
	float: left;
	margin-left: -100px; /*width of left column*/
	width: 150px; /*width of labels. Should be smaller than left column (100px) to create some right margin*/
	text-align:right;
	padding-right:15px;
}
	
.cssform textarea {
	width: 250px;
	height: 150px;
}

.cssform input[type='text'], select, textarea {
	padding:4px;
	border:1px solid #999999;
	background:#fff;
	font-family: Lucida grande, Geneva, Verdana, Arial, sans-serif;
	font-size:1em;
}

.cssform input[type='submit'] {
	font-family: Lucida grande, Geneva, Verdana, Arial, sans-serif;
	font-size:1em;
	cursor:pointer;
	width:10em;
	height:3em;
}

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