/* $Id: default.css 5681 2006-12-18 16:00:32Z 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.
*/

.zpFormDefault .zpStatusImg { /* Container for field status image */
        padding: 0px 4px;
        height: 14px;
        width: 13px;
        background-repeat: no-repeat;
        background-position: right;
        opacity: 0.66;
        filter: alpha(opacity=66);
        margin-left:5px;
        margin-right:3px;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 5px;  /* Fixes alignment of asterisk ->  don't remove! */
}

.zpFormDefault .zpCheckboxStatusImg,
.zpFormDefault .zpRadioStatusImg { /* Container for checkbox and radio status images */
        padding: 0px 4px;
        height: 14px;
        width: 13px;
        background-repeat: no-repeat;
        background-position: right;
        opacity: 100;
        filter: alpha(opacity=100);
        margin-left:5px;
        margin-right:3px;
        display: inline-block;
        vertical-align: top;
} 


.zpFormDefault .zpIsEditing .zpStatusImg { /* properties of status image while editing field */
        opacity: 1.0;
        filter: alpha(opacity=100);
}

.zpFormDefault .zpIsRequired .zpStatusImg,
.zpFormDefault .zpIsRequired .zpCheckboxStatusImg,
.zpFormDefault .zpIsRequired .zpRadioStatusImg { /* image: if field is required */
        background-image: url(icons/required.gif);
}


.zpFormDefault .zpIsRequired .zpNotEmpty .zpNotValid .zpStatusImg,
.zpFormDefault .zpIsRequired .zpNotEmpty .zpNotValid .zpCheckboxStatusImg,
.zpFormDefault .zpIsRequired .zpNotEmpty .zpNotValid .zpRadioStatusImg { /* image: shown if requred field have ivalid format */
        background-image: url(icons/required_invalid.gif);
}

.zpFormDefault .zpNotEmpty .zpNotValid .zpStatusImg,
.zpFormDefault .zpNotEmpty .zpNotValid .zpCheckboxStatusImg,
.zpFormDefault .zpNotEmpty .zpNotValid .zpRadioStatusImg { /* image: shown if requred fileld is invalid */
        background-image: url(icons/invalid.gif);
}

.zpFormDefault .zpIsValid .zpStatusImg,
.zpFormDefault .zpIsValid .zpCheckboxStatusImg,
.zpFormDefault .zpIsValid .zpRadioStatusImg { /* image: if requred field is valid */
        background-image: url(icons/validated.gif);
}

.zpFormDefault .zpIsFetching .zpStatusImg { /* shown while inputing into field */
        background-image: url(icons/fetching.gif) !important;
}

/*
 * Controls the look and feel of the form
 */

.zpFormDefault .errOutput{ /* style for error field */
        background-color: #C70032;
        padding: 10px;
        margin-bottom: 20px;
        font-weight: bold;
        color: white;
        display: none;

}

.zpFormDefault textarea {
        background-color:#FFFFFF;
        border:1px solid #D5D5D5;
        width: 270px;
		font-family:Arial;
		font-size:12px;
		margin-bottom: 5px;
}

.zpFormDefault .zpFormLabel { /* style for form fields labels */
        width: 50px;
        float: left;
        font-size: 11px;
        line-height:12px;
}

.zpFormDefault .zpFormLabel2 { /* style for form fields labels */
        width: 100px;
        float: left;
        font-size: 11px;
        line-height:12px;
}

.zpFormDefault .zpFormLabel3 { /* style for form fields labels */
        width: 120px;
        float: left;
        font-size: 11px;
        line-height:12px;
}

.zpFormDefault .zpExpandedTable, 
.zpFormDefault .zpExpandedTable td,  
.zpFormDefault .zpExpandedTable th  { 
        border:1px solid #919B9C;
        border-collapse:collapse;                        
}

.zpFormDefault .zpExpandedTable span { /* fixes the table cell height error, caused by invisible spans */
        display:none;
}

.zpFormDefault .zpExpandedTable .multipleButton { /* multiply button in table container */
        margin:2px;
}

.zpFormDefault .multipleButton{ /* style for field multiply button (if present) */ 
        margin-left: 10px; 
        text-align: center;
        width:20px;
}


.zpFormDefault { /* Common form properties */
      /*  background-color: #FFFFFF;*/
        border:0px solid #FFFFFF;
        font-size: 11px;
        padding-top:3px;
        font-family: Tahoma;
}

.zpFormDefault .zpFormContent{ /* Form content container style */
        background: none;
        border: solid 1px #919b9c;
        margin: 0px 10px;
        padding: 0px 10px 10px 10px;
}

* html .zpFormDefault .zpFormContent{
        padding-top: 10px;
}

.zpFormDefault .button{ /* style for form submit buttons */
		background-image:url(/pg/system/button.gif);
        height: 21px;
        width: 73px;
        border: 1px solid #BD9E43;
        line-height: 16px;
		font-weight:bold;
        font-family:  Tahoma;
        font-size: 11px;
        margin-left: 10px;
        padding-bottom:2px;
		cursor:pointer;
}

* html .zpFormDefault .button{
        padding-bottom:0px;
}

.zpFormDefault .zpFormButtons{
        text-align: right;
        margin: 10px;
}

.zpFormDefault fieldset{
        margin: 7px;
        padding: 7px;
        border: solid 1px #C1D3E1;
}

* html .zpFormDefault fieldset{
        padding-top: 10px;
}

.zpFormDefault legend{ /* form legend: sign of the fieldset */
        color: #9195D2;
        padding:0px 5px;
}

* html .zpFormDefault legend{
        margin-bottom: 10px;
}

.zpFormDefault select {
        background-color:#FFFFFF;
        border:1px solid #D5D5D5;
        margin-bottom: 5px;
		font-size:12px;
        height: 19px;
}
                                        /* Dropdown styles */
.zpFormDefault .dropDownArrow { /* All browsers */
        background-image: url(default/down_arrow.gif);
        padding:9px 9px; 
        padding-top:12px;
        background-repeat: no-repeat;
        margin-left:-1px;
        display: inline;
        cursor: pointer;
} 
                                        
*+html .zpFormDefault .dropDownArrow {  /* IE7 */
        margin-top:1px;
        vertical-align:top !important;
        height: 20px;
        background-image: url(default/down_arrow.gif);
        padding: 0px 12px;
        background-repeat: no-repeat;
        margin-left:-1px;
        display: inline-block;
        cursor: pointer;
} 

* html .zpFormDefault .dropDownArrow { /*IE6*/
        vertical-align:top; /*important -> don't remove*/
        height: 20px;
        background-image: url(default/down_arrow_hilite.gif);
        padding: 0px 12px;
        background-repeat: no-repeat;
        margin-left:-1px; 
        margin-top:1px;
        display: inline-block;
        cursor: pointer;
}                                   

.zpFormDefault .dropDownArrow:hover,
.zpFormDefault .dropDownArrow:active,
.zpFormDefault .dropDownArrow:focus { /*All Browsers hover*/
        background-image: url(default/down_arrow_hilite.gif);
} 
                                      /* end of dropdown styles */
                                      
.zpFormDefault .fieldError {
        font-weight: bold;
}

.zpFormDefault input {
        background:#FFFFFF;
        border:1px solid #D5D5D5;
        margin-bottom: 5px;
		font-size:12px;
        width:auto;
}

.zpFormDefault input:focus, 
.zpFormDefault textarea:focus, 
.zpFormDefault input:hover, 
.zpFormDefault textarea:hover { /* mouseover style for input fields */
        background-color: #FFF2D9;
}


.zpFormDefault .zpFormError{ /* text: this field is required style */
        vertical-align:top;
        color: #F73460;
        padding-left: 10px;
        font-weight: normal;
        display: inline-block;
}

.zpFormDefault .zpRadioLabel {  /* label for checkbox and radio elements */
        padding-left: 5px;
        vertical-align:top;
}

.zpFormDefault .zpFormCheckbox { /* checkbox style */
        border:none !important;
        padding:0px;
        margin:0px;
        width:auto;
        background:none;
}

.zpFormDefault .zpFormRadio {  /* radio style*/
        border:none;
        padding:0px;
        margin:0px;
        width:auto;
        background:none;
}

* html .zpFormDefault .zpFormCheckbox { /* ie6 checkbox style */
        margin:-3px;
}
       
* html .zpFormDefault .zpFormRadio { /* ie6 radio style */
        margin:-3px;
        vertical-align:3%;
}

*+html .zpFormDefault .zpFormCheckbox { /* ie7 checkbox style */
        margin:-3px;
}
       
*+html .zpFormDefault .zpFormRadio { /* ie7 radio style */
        margin:-3px;
        vertical-align:3%;
}

.zpFormDefault .zpWrongValue{ /* highlighting field when trying to input not allowed symbol */
        background-color: #EA888C !important;
}
