/* CSS Document */

.formbutton{ /* submit buttons */
cursor:pointer;
border:outset 1px #ccc;
background:#999;
color:#666;
font:bold 10px Arial;
padding: 1px 2px;
background:url(images/formbg.gif) repeat-x left top;
}

.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
background: #fff;
width: 140px;
border: 1px solid #999;
}
.cssform p{
width: 210px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 120px; /*width of left column containing the label elements*/
height: 0.5%;
}

.cssform label{

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

.cssform textarea{
background: #fff;
width: 230px;
border:1px solid #999
}

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