﻿/* ---- VALIDATIONSUMMARY CONTROL ---- */

/* Property: ValidationSummary.CssClass
Overall appearance of the ValidationSummary control.
Consider background, font, and border attributes. */
.DESVALSummary
{
	display:block;
	padding:10px;
	border:1px dotted #ccc;
	margin-bottom: 6px;
	color: #333;
	font-size: 0.95em;
	background-color: #ffffcc;
}

/* Property: ValidationSummary.HeaderCssClass
The ValidationSummary header area. */
.DESVALSummaryHeader
{
   color: #BA0000;
}
.DESVALSummaryHeader TR
{
   color: #BA0000;
}

/* Property: ValidationSummary.ErrorMessageCssClass
Applied to each error message listed in the ValidationSummary.*/
.DESVALSummaryErrors
{
   color: #BA0000;
   margin: 6px 6px 6px 16px;
}

.DESVALSummaryErrors li
{
	margin-bottom: 5px;
}

/* Property: ValidationSummary.ErrorMessageCssClass
Applied to each error message listed in the ValidationSummary
when the HyperlinkToField property is used. */
.DESVALSummaryErrors A
{
   color: #BA0000;
   margin-top:6px;
   text-decoration: none;
   border-bottom: dotted 1px #BA0000;
}
.DESVALSummaryErrors A:hover
{
	color: #ffffff;
	text-decoration: none;
	border: solid 1px #BA0000;
	background-color: #BA0000;
}

/* Property: ValidationSummary.ErrorMessageCssClass_Alt
Applied to each error message listed in the ValidationSummary.*/
.DESVALSummaryErrorsAlt
{
   color: #ff8c00; /* dark orange */
   margin-top:6px;
}

/* Property: ValidationSummary.ErrorMessageCssClass_Alt
Applied to each error message listed in the ValidationSummary
when the HyperlinkToField property is used. */
.DESVALSummaryErrorsAlt A
{
   color: #ff8c00; /* dark orange */
   margin-top:6px;
}

/* Property: ValidationSummary.TableAltRowCssClass
Applied to alternating error message listed in the ValidationSummary
when using DisplayMode=Table.*/
.DESVALSummaryAltRows
{
   color: #990000;
   background-color: #add8e6; /* lightblue */
}

/* Property: ValidationSummary.TableAltRowCssClass
Applied to alternating error message listed in the ValidationSummary
when using DisplayMode=Table and the HyperlinkToField property is used.*/
.DESVALSummaryAltRows A
{
   color: #990000;
   background-color: #add8e6; /* lightblue */
}


/* Property: ValidationSummary.FooterCssClass
The ValidationSummary footer area. */
.DESVALSummaryFooter
{
   color: #BA0000;
}
.DESVALSummaryFooter TR
{
   color: #BA0000;
}