/*
 * Controls the startuplounge 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.
*/

.zpFormStartuplounge .zpStatusImg,
.zpFormStartuplounge .zpCheckboxStatusImg,
.zpFormStartuplounge .zpRadioStatusImg { /* Container for field status image */
        padding: 0px;
				float:left;
        height: 36px;
        width: 36px;
        background-repeat: no-repeat;
        background-position: right;
        margin:0px 10px;
        display: inline-block;
} 

.zpFormStartuplounge .zpCommonStatusImg {
        /*opacity: 0.66;*/
        filter: alpha(opacity=66);
        /*padding-bottom: 5px;*/ /* Fixes alignment of asterisk ->  don't remove! */
}

.zpFormStartuplounge .zpCheckboxStatusImg,
.zpFormStartuplounge .zpRadioStatusImg { /* Container for checkbox and radio status images */
        opacity: 1.0;
        filter: alpha(opacity=100);
}


.zpFormStartuplounge .zpIsRequired .zpStatusImg{
        background-image: url(startuplounge/required2.gif);
}

.zpFormStartuplounge .zpIsEditing .zpStatusImg { /* properties of status image while editing field */
       opacity: 1.0;
       filter: alpha(opacity=100);
}

.zpFormStartuplounge .zpIsEditing .zpNotEmpty .zpCommonStatusImg{
       background-image: url(startuplounge/editing2.gif);
}

.zpFormStartuplounge .zpNotEditing .zpNotEmpty .zpNotValid .zpStatusImg{
        background-image: url(startuplounge/invalid2.gif);
}

.zpFormStartuplounge .zpIsValid .zpStatusImg{ /* Shown when field is valid */
        background-image: url(startuplounge/validated2.gif);
}

.zpFormStartuplounge .zpIsFetching .zpStatusImg { /* shown while inputing into field */
        background-image: url(startuplounge/fetching.gif) !important;
}

/*
 * Controls the look and feel of the form
 */

.zpFormStartuplounge .errOutput{ /* style for error field */
        background-color: #C70032;
        padding: 10px;
        margin-bottom: 20px;
        font-weight: bold;
        color: white;
        display: none;
}

.zpFormStartuplounge textarea {  
        background-color:#F5F1F2;
        border:1px solid #8484A1;
        width: 400px;
				margin-bottom:25px;
				padding:10px;
				float:left;
}

.zpFormStartuplounge .zpFormLabel, .zpFormLabel_wide { /* style for form fields labels */
        width: 200px;
				text-align:left;
        float: left;
        font-size: 1.2em;
				color: #555555;
        line-height:2.7em;
				margin-left:55px;
				font-weight: bold;
}

.zpFormLabel_wide {
	width:auto;
}

.zpFormStartuplounge .zpExpandedTable, 
.zpFormStartuplounge .zpExpandedTable td,  
.zpFormStartuplounge .zpExpandedTable th  {  
        border:1px solid #919B9C;
        border-collapse:collapse;                        
}

.zpFormStartuplounge .zpExpandedTable span { /* fixes the table cell height error, caused by invisible spans */
        display:none;
}

.zpFormStartuplounge .zpExpandedTable .multipleButton { /* multiply button in table container */
        margin:2px;
}

.zpFormStartuplounge .multipleButton{  /* style for field multiply button (if present) */
        margin-left: 10px; 
        text-align: center;
        width:20px;
}                              

* html .zpFormStartuplounge .multipleButton {  /*IE6 Fix of button height*/
        height:20px;
}
 
*:first-child+html .zpFormStartuplounge .multipleButton { /*IE7 Fix of button height*/
        height:20px;
} 


.zpFormStartuplounge {  /* Common form properties */
        /*background-color: #ECE9D8; */
/*
        border:1px solid black;
        font-size: 1.0em;
        font-family: "MS Sans Serif" , Arial, Tahoma, Verdana, sans-serif;
 				padding:10px;
*/
}

.zpFormStartuplounge .zpFormContent{ /* Form content container style */
        background: url("Startuplounge/xpform.jpg") repeat-x bottom #FCFCFE;
        border: solid 1px #919b9c;
        margin: 0px;
        padding: 0px 10px 10px 10px;
}

.zpFormLabelContainer {
}

* html .zpFormStartuplounge .zpFormContent{ /* IE6 fix */
        padding-top: 10px;
}

.zpFormStartuplounge .button{  /* style for form submit buttons */
        background: url("Startuplounge/button_xp.gif");
        height: 21px;
        width: 73px;
        border: none;
        line-height: 16px;
        font-family:  Arial, Verdana, sans-serif;
        font-size: 1.0em;
        margin-left: 10px;
        padding-bottom:2px;
}

* html .zpFormStartuplounge .button{ /* IE6 buttontext  fix */
        padding-bottom:0px;
}

*:first-child+html .zpFormStartuplounge .button{ /* IE7 buttontext fix */
        padding-bottom:0px;
}


.zpFormStartuplounge .zpFormButtons{ 
        text-align: right;
        margin: 10px;
}

.zpFormStartuplounge fieldset{  /* form fieldset style */
        margin: 0px 1px 10px 1px;
        padding: 10px;
        border:1px solid #D0D0BF;
}

* html .zpFormStartuplounge fieldset{  /* IE6 fix */
        margin-bottom:5px;
}                   	

.zpFormStartuplounge legend{  /* form legend: sign of the fieldset */
        color: #003366;
        padding:0px 5px;
				font-size: 1.5em;
}

* html .zpFormStartuplounge legend{
        margin-bottom: 10px;
}

.zpFormStartuplounge select {
        background-color:#FFFFFF;
        border:1px solid #7F9DB9;
        margin-bottom: 25px;
				padding:10px;
				font-size: 1.2em;
				float:left;
}
                              /* Dropdown styles */
.zpFormStartuplounge .dropDownArrow { /* All Browsers */
        background-image: url(Startuplounge/down_arrow.gif);
        padding:9px 9px; 
        padding-top:12px;
        background-repeat: no-repeat;
        margin-left:-1px;
        display: inline;
        cursor: pointer;
} 

* html .zpFormStartuplounge .dropDownArrow {  /* IE6 */
        vertical-align:top; /* important -> don't remove */
        height: 20px;
        background-image: url(Startuplounge/down_arrow_hilite.gif);
        padding: 0px 12px;
        background-repeat: no-repeat;
        margin-left:-1px; 
        margin-top:1px;
        display: inline-block;
        cursor: pointer;
}                                   

*+html .zpFormStartuplounge .dropDownArrow {  /* IE7 */
        margin-top:1px;
        vertical-align:top !important;
        height: 20px;
        background-image: url(Startuplounge/down_arrow.gif);
        padding: 0px 12px;
        background-repeat: no-repeat;
        margin-left:-1px;
        display: inline-block;
        cursor: pointer;
} 

.zpFormStartuplounge .dropDownArrow:hover,
.zpFormStartuplounge .dropDownArrow:active,
.zpFormStartuplounge .dropDownArrow:focus { /* All Browsers hover */
        background-image: url(Startuplounge/down_arrow_hilite.gif);
} 
                                /* end of dropdown styles */


.zpFormStartuplounge .fieldError {
        font-weight: bold;
}

.zpFormStartuplounge input {
        background:#FFFFFF;
        border:1px solid #7F9DB9;
        margin-bottom: 25px;
        width:auto;	
				padding:10px;
				font-size: 1.3em;
				float:left;
}

* html .zpFormStartuplounge input.zpFormRequired { /* fix for IE 6 - fixing width  */
				width:270px;
}


.zpFormStartuplounge .zpFormError{ /* text: this field is required style */
        color: #F73460;
        padding-left: 10px;
        font-weight: normal;
        display: inline-block;
				float:left;
        
}

.zpFormStartuplounge .zpRadioLabel { /* label for checkbox and radio elements */
        padding-left: 5px;
        vertical-align:top;
}


.zpFormStartuplounge .zpFormCheckbox { /* checkbox style */
        border:none !important;
        padding:0px;
        margin:0px 15px 0px 25px;
        width:30px; height:30px;
        background:none;	
}

.zpFormStartuplounge .zpFormRadio {  /* radio style */
        border:none;
        padding:0px;
        margin:0px;
        width:auto;
        background:none;
}

* html .zpFormStartuplounge .zpFormCheckbox { /* ie6 checkbox style */
        margin:-3px;
        width:14px !important;
        margin:-3px -3px -3px -1px;
}
       
* html .zpFormStartuplounge .zpFormRadio { /* ie6 radio style */
        margin:-3px -3px -3px -1px;
        vertical-align:3%;
        width:14px !important; 
}


*+html .zpFormStartuplounge .zpFormCheckbox { /* ie7 checkbox style */
        margin:-3px;
}
       
*+html .zpFormStartuplounge .zpFormRadio { /* ie7 radio style */
        margin:-3px;
        vertical-align:3%;
}

.zpFormStartuplounge .zpWrongValue{ /* highlighting field when trying to input not allowed symbol */
        background-color: #EA888C !important;
}
