/* CSS Document */

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

.cssform label{
font-weight: bold;
float: left;
margin-left: -155px; /*width of left column*/
width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
}
.required_field{
font-weight: bold;
color:#fc7803;
}
.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 180px;
}

.cssform .button{
	font-weight: bold;
	font-size:12px;
	color:#fff;
	cursor: pointer;
	background-color:#2D4B8D;
	border: 1px solid #2D4B8D;
	
}
.cssform .button:hover{
	font-weight: bold;
	color:#fff;
	font-size:12px;
	cursor: pointer;
	background-color:#2D4B8D;
	border: 1px solid #2D4B8D;
	
}
.cssform textarea{
width: 290px;
height: 57px;
}
