/* $Id: winxp.css 10008 2008-02-15 12:00:49Z smaxim $ */
/*
 * Controls the icons that are displayed according to the specified rules, 
 * depending on the validity of the data entered
 */
/*
 "zpStatusImg" class images for form fields -- apply appropriate rules here.
 The script auto-applies one of each of these CLASS attributes to a series of
        nested <span>s with an innermost .zpStatusImg class <span> we style:
 1) "zpIsRequired" or "zpNotRequired".
 2) "zpIsEmpty" or "zpNotEmpty".
 3) "zpIsEditing" or "zpNotEditing".
 4) "zpIsValid" or "zpNotValid".
 5) Always "zpStatusImg", this is the one styled.
*/

.zpFormWinxp .zpStatusImg,
.zpFormWinxp .zpCheckboxStatusImg,
.zpFormWinxp .zpRadioStatusImg { /* Container for field status image */
        padding: 0px 12px;
        height: 14px;
        width: 13px;
        background-repeat: no-repeat;
        background-position: right;
        margin-left:5px;
        margin-right:3px;
        display: inline-block;
        vertical-align: top;
} 

.zpFormWinxp .zpCommonStatusImg {
        opacity: 0.66;
        filter: alpha(opacity=66);
        padding-bottom: 5px; /* Fixes alignment of asterisk ->  don't remove! */
}

.zpFormWinxp .zpCheckboxStatusImg,
.zpFormWinxp .zpRadioStatusImg { /* Container for checkbox and radio status images */
        opacity: 1.0;
        filter: alpha(opacity=100);
}


.zpFormWinxp .zpIsRequired .zpStatusImg{
        background-image: url(http://www.eaaitaly2009.com/_script/themes/icons/required.gif);
}

.zpFormWinxp .zpIsEditing .zpStatusImg { /* properties of status image while editing field */
       opacity: 1.0;
       filter: alpha(opacity=100);
}

.zpFormWinxp .zpIsEditing .zpNotEmpty .zpCommonStatusImg{
       background-image: url(http://www.eaaitaly2009.com/_script/themes/icons/editing.gif);
}

.zpFormWinxp .zpNotEditing .zpNotEmpty .zpNotValid .zpStatusImg{
        background-image: url(http://www.eaaitaly2009.com/_script/themes/icons/invalid.gif);
}

.zpFormWinxp .zpIsValid .zpStatusImg{ /* Shown when field is valid */
        background-image: url(http://www.eaaitaly2009.com/_script/themes/icons/validated.gif);
}

.zpFormWinxp .zpIsFetching .zpStatusImg { /* shown while inputing into field */
        background-image: url(http://www.eaaitaly2009.com/_script/themes/icons/fetching.gif) !important;
}

.zpFormWinxp .zpFormError{ /* text: this field is required style */
        vertical-align:top;
        color: #F73460;
        padding-left: 10px;
        font-weight: normal;
        display: inline-block;
        /*position for error mesage*/
        position:relative;
				top:3px;
}

