/** Registration Form  **/

.cssform p{
width: 500px;
clear: left;
margin: 0;
padding: 0px 0 8px 0;

/* border-top: 1px dashed gray; */
}

.cssform label{
  font-family:Verdana, Helvetica, Arial;     
  color:#ba9b63;
  color: #2c5781;
  font-weight: bold;
  float: left;
  padding-left: 155px
  margin-left: -155px; /*width of left column*/
  width: 165px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
}

.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 280px;
}

.cssform textarea{
width: 250px;
height: 150px;
}

.hide{
	DISPLAY: none;
	VISIBILITY: hidden;
	margin-left: 150px;
	 
}

