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

.cssform label{
color: #222;
float: left;
margin-left: -180px; /*width of left column*/
width: 175px; /*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: 220px;
}

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

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

.fieldWithErrors input{
	background: red;
}	

.errorExplanation h2 {
	clear: both;
	background: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.errorExplanation p {
	clear: both;
	background: none;
	padding: 0;
	margin: 0;
}

/* Transparent form message (error and notice) for static form*/
.transparent_message {
  width: 50%;
  text-align: center;
  font-size: 150%;
  opacity:  0.8;
  position: absolute;
  top: 150px;
  -moz-border-radius:2px;
}

.transparent_error {
  background: #FFA3A9;
  border: 1px solid #750004;
}

.transparent_error p {
  color: #560109;
}

.transparent_notice {
  background: #9BFFA3;
  border-top: 1px solid #23571D;
  border-bottom: 1px solid #23571D;  
  margin: 10px;
}

.transparent_notice p {
  color: #23571D;
}

/* Saving message for static form */
#info_message {
  position: absolute;
  background: #FFF;
  opacity:  0.7;
  z-index:  10000;
}

#info_message p {
  padding-top: 200px;
  font-size: 30px;
  color: #000;
  text-align:  center;
}
