﻿
/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #ff0000;
    font-style:italic;
    font-size:10px;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors {    
    color: #C92D2D;
    border: 1px solid #C92D2D;
    background: #FFE1DB url(images/icon_error_24x24.png) no-repeat 10px 50%;
}
.validation-summary-errors ul {    
    margin: 0px;
    padding-left: 20px;
}
.validation-summary-errors ul li {    
    margin: 0px;
    padding: 0px;
}

.validation-summary-valid {
    display: none;
}

/* Styles for editor and display helpers
----------------------------------------------------------*/
.display-label, 
.editor-label {
    margin: 0.8em 0 0 0;
}

.display-field, 
.editor-field {
    margin: 0.5em 0 0 0;
}

.text-box {
    width: 30em;
}

.text-box.multi-line {
    height: 6.5em;
}

.tri-state {
    width: 6em;
}

.required {
    font:bold;color:red;padding-right:1px;
}

/* inline alerts
----------------------------------------------------------*/
.alert 
{
    margin: 0 0 10px 0;
    padding: 5px 5px 5px 42px;
    border: 1px solid;
    min-height: 25px;
}
.alert.success 
{
    color: #175B17;
    border: 1px solid #175B17;
    background: #D0EAD0 url(images/icon_success_24x24.png) no-repeat 10px 50%;
}
.alert a.close {
    display: block;
    cursor: pointer;
    float: right;
    width: 13px; 
    height: 13px;
    margin-top: 3px;
    background: url(images/icon_close_alert.png) no-repeat;
}