/* ******************************** BLOCCO PER FORM ******************************** */

.cssform p{
width: 300px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 180px; /*width of left column containing the label elements*/
height: 1%;
}

.cssform label{

float: left;
margin-left: -180px; /*width of left column*/
width: 100px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
text-align: left;
}

.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 230px;
margin-left: -70px; /*width of left column*/

}

.cssform textarea{
width: 230px;
height: 150px;
margin-left: -70px; /*width of left column*/

}

/*.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;
}

/* Usata per la validazione */

p.error{
  position: relative;
  top: -20px;
  left: 0px; 
  display: block;
  float: right;
	border: 1px solid #d6d8d6;
	background-color: #003c82;
	width: 120px;
	padding: 2px;
	font-size: 10px;
	color: #ffffff;
	text-align: left;
}
