/* 
 * Style used by the label output mode.
 * Applied to the error labels that get positioned after an input.
 */
/*label.error {
	color:#fff;
	margin-left:4px;
	background-image:url('arrow.gif');
	background-position:left center;
	background-repeat:no-repeat;
	padding-left:20px;
	-moz-border-radius:4px;
	-webkit-border-radius: 4px;
	padding-top: 3px;
	padding-right: 6px;
	padding-bottom: 3px;
	font-size: 10px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	margin-top: 0px;
	margin-right: 4px;
	margin-bottom: 0px;
	height: 20px;
	font-weight: bold;
}*/

label.error {
	width:120px;
	position:absolute;
	top:21px;
	*top:24px;
	left:-10px;
	*left:-10px;
	margin:0;
	padding:0;
	color:#f00;
	border:1px solid #FEFAEC;
	background:#F1F1E0;
	font:bold 9px Verdana;
	text-transform:uppercase;
	text-align:center;
}

/*
 * Styles used by the modal output mode.
 * '.validity-modal-msg' is applied to the modal boxes 
 * and '.validity-modal-msg:hover' is applied to suggest 
 * to the user that the boxes are clickable.
 */
.validity-modal-msg { 
    position:absolute; 
    z-index:2; 
    background-color:#999; 
    border:solid 1px #000; 
    padding:4px;
    cursor:pointer; 
}
.validity-modal-msg:hover { 
    background-color:#aaa; 
}

/*
 * Styles used by the summary output mode.
 * '.validity-summary-container' is a container on the page that should contain a UL 
 * which is the actual summary. The container can hold 
 * an extra bit of text (or anything really) that explains what the summary is.
 * '.validity-erroneous' is applied to every input that fails.
 */
.validity-summary-container { display:none; }
.validity-summary-output ul { }
.validity-erroneous { border:solid 2px #f56600 !important; }
