#validate {
	color: red;
	text-align: left;
	background-color: white;
	background-image: url(../images/close.gif);
	background-position: right top;
	background-repeat: no-repeat;
	width: 240px;
	min-height: 40px;
	border: 1px solid grey;
	top: 50%;
	left: 50%;
	margin-top: -100px;
	margin-left: -140px;
	padding: 20px;
	overflow: auto;
	position: fixed;
	z-index: 1002;
	cursor: pointer;
}
* html #validate {
	height: 40px;
	position: absolute;
}
#validate span {
	background-image: url(../images/alert.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 30px;
}
#validate ul {
	list-style-type: decimal;
}
#fade {
	background-color: white;
	height: 100%;
	width: 100%;	
	position: fixed;
	display: block;
	top: 0px;
	left: 0px;
	z-index: 1001;
	opacity: .80;
	-moz-opacity: 0.8;
	filter: alpha(opacity=80);
}
form .red {
	border: 1px solid red;
}
label.red, label.red a, form a.red {
	color: red;
	border: none;
}
form hr {
	color: white;
	background-color: white;
	border: 0;
	height: 1px;
	clear: both;
}
.required { }
/* missatge de validació a div amb posició relativa */
.relatiu #validate {
	background: none;
	border: none;
	width: auto;
	min-height: 0px;
	top: 0px;
	left: 0px;
	position: relative;
	margin: 0px;
	padding: 10px;
	overflow: hidden;
}
* html .relatiu #validate {
	height: 0px;
}
.relatiu #validate ul {
	display: none;
}
.relatiu #fade {
	display: none;
}
/* label a sobre del field */
.sobre label {
	display: block;
}
.sobre input {
	clear: both;
}
/* label a la esquerra del field */
.esquerra label {
	float: left;
	width: 100px;
} 
/* seguits */
.seguits label {
	width: auto;
}
.seguits p, .seguits input {
	float: left;
}