﻿/* 
 * Style used by the label output mode.
 * Applied to the error labels that get positioned after an input.
 */
label.error {
/*	color:#fff;
*/	margin-left:2px;
	background-position:left center;
	background-repeat:no-repeat;
	padding:2px;
	padding-left:18px;
	/* [disabled]-moz-border-radius:4px; */
	/* [disabled]-webkit-border-radius: 4px; */
}


/*
 * 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: #FFF;
*/	padding: 4px;
	cursor: pointer;
	/* [disabled]border-color: #FFF; */
	border-width: 1px;
	border-style: solid;
}
.validity-modal-msg:hover {
/*	background-color:#FFF;
*/}

/*
 * 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:2px solid #990000 !important;
}



.validity-tooltip {
	z-index:1003;
	cursor:pointer;
	padding:3px;
	width:16em;
	border-width:1px;
/*	border-color:#FFF;
*/	border-style:solid;
	color:#FFF;
	position: absolute;
	background-color:#990000;
}

.validity-tooltip:hover {
/*	border-color:#FFF;
*/}

.validity-tooltip .validity-tooltip-outer, .validity-tooltip .validity-tooltip-inner {
    position: absolute; 
    width:0; 
    height:0; 
    border-right-width: 0;
    background:none;
    bottom:auto;
}

.validity-tooltip .validity-tooltip-outer {
/*	border-color:#FFF;
*/	border-style:solid;
	border-top: 0px solid transparent;
	border-bottom: 24px solid transparent;
	border-right-width:20px;
	border-right-style:solid;
	border-right-color:inherit;
	border-left-width:0px;
	top:-1px;
	left:-21px;
}

.validity-tooltip .validity-tooltip-inner {
	border-left-width:0px;
	top:1px;
	left:3px;
	border-top-width: 0px;
	border-right-width: 20px;
	border-bottom-width: 24px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #990000;
}
