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

.cssform label
{
	float: left;
	margin-left: -100px; /*width of left column*/
	margin-right: 10px;
	width: 120px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
	text-align: right;
}

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

.cssform textarea
{
}

legend
{
	border-color: black;
	font-weight: bold;
}

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

legend
{
	color: black;
	background-color: inherit;
}

fieldset
{
 	border: 1px solid #666666;
 	padding: 10px;
 	margin: 10px;
}

fieldset textarea, fieldset input, fieldset select
{
	margin: 0px;
	padding: 0px;
	float: left;
}

.radio
{
	background-color: #485938;
	color: inherit;
	float: none;
}


