.cssform p{
font: normal 10pt Arial;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 255px; /*width of left column containing the label elements*/
border-bottom: 1px dashed white;
}

.cssform p.lastfield{
font: normal 10pt Arial;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 255px; /*width of left column containing the label elements*/
border-bottom: 0px;
}

.cssform p.desc_text{
font: normal 10pt Arial;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
border-bottom: 0px;
}

.cssform label{
font: normal 10pt Arial;
float: left;
margin-left: -255px; /*width of left column*/
width: 250px; /*width of labels. Should be smaller than left column (255px) to create some right margin*/
}


.cssform label.subtitle{
font: bold 10pt Arial;
float: left;
margin-left: -255px; /*width of left column*/
width: 250px; /*width of labels. Should be smaller than left column (255px) to create some right margin*/
}

.cssform select{
font: normal 10pt Arial;
}

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

.cssform input[type="submit"], .cssform input[type="reset"]{
font: normal 11pt Arial;
}

.cssform textarea{
width: 250px;
height: 150px;
}

.cssform textarea#eula {
width: 650px;
height: 300px;
font: normal 12pt Arial;
}

.cssform textarea#summary {
width: 650px;
height: 300px;
font: normal 11pt Arial;
}

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