/**
 *  @file
 *  form.css
 *  
 *  This file contains the CSS for various forms on the site. Custom classes
 *  are added in the template.php.
 */

form .submit-holder{
	border: 1px solid #c85d8a;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;	
    margin-top: 18px;
    margin-bottom: 15px;
    width: auto;
    float: left;
    -webkit-box-shadow: 0px 1px 0px rgba(156, 75, 98, 0.75);
	-moz-box-shadow:    0px 1px 0px rgba(156, 75, 98, 0.75);
	box-shadow:         0px 1px 0px rgba(156, 75, 98, 0.75);
}

form .submit-holder.disabled {
	border: 1px solid #333;
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

form .input-holder{
	border: 1px solid #e2e2e2;
}

form .input-top-border{
	border-top: 1px solid #cdcdcd;
}

.webform-row-odd{
	float: right;
	/*margin-left: 14px;*/
}
.webform-row-even{
	float: left;
}
.form-actions{
	float: left;
	width: 100%;
}
.form-item-pass{
	margin-left: 14px;
}
.block form{
	padding: 0px 15px 15px;
}
	.node-webform h2{
		/*display: none;*/
	}
.form-item{
	width: 450px;
	float: left;
}
	.form-item label {
		font-family: 'News Gothic W01';
		font-size: 16px;
		font-weight: 400;
		font-style: normal;
		font-size-adjust: none;
		color: #222222;
		line-height: 22.4px;
		vertical-align:baseline;
		margin-bottom: 3px;
	}
	.form-item, .form-actions {
		margin-top: 4px;
		margin-bottom: 4px;
	}

.form-textarea,
.form-text
{
	background-repeat: repeat-x;
	background-position: top left;
	border: 0px;
	border-top: 1px solid #fdfdfd;
	height: 45px;
	line-height: 22.4px;
	display: block;
	font-family: 'News Gothic W01';
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	padding-top: 12px;
	padding-bottom: 10px;
	font-size: 18px;
	padding-left: 11px;
	width: 100%;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff; 
    resize: none;   
}

.form-textarea{
	height: 150px;
}
.grippie{
	display: none;
}
	.form-textarea.valid,
	.form-text.valid{
		background: url(../images/form_valid.png);
		background-position: right center;
		background-repeat: no-repeat;
		background-color: white;
	}
	.form-textarea.error,
	.form-text.error{
		background: url(../images/form_invalid.png);
		background-position: right center;
		background-repeat: no-repeat;
		background-color: white;
		color: black;
	}
	input.form-textarea.error,
	input.form-text.error{
		border: 1px solid #c85d8a;
	}
.form-required {
	display: none;
}
.form-submit {
	text-shadow: 0px -1px 0px rgba(177, 84, 112, 1);
	background: #e6649b;
	background-repeat: repeat-x;
	color: white;
	text-align: center;
	font-family:'News Gothic W01 Bold706740';
	padding: 10px 34px 10px 34px;
	-webkit-font-smoothing: antialiased;
	border: 0px;
	border-top: 1px solid #f09fc1;

	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.disabled .form-submit {
	background: #e1e1e1;
	border-top: none;
	color: #666;
	text-shadow: none;
}

div.messages.clientside-error{
	padding-left: 0;
	padding-right: 0;
}


/* Checkbox */
.form-type-checkbox{
    margin-top: 15px;
	width: 100%;
}
    .form-type-checkbox input{
        display: none;
    }
    .form-checkboxes label,
    .form-type-checkbox label{
        float: left;
        line-height: 30px;
        margin-left: 15px;
    }

    .form-type-checkbox .checkbox-replacement{
        width: 30px;
        height: 30px;
        float: left;
        border: 1px solid #e2e2e2;
        cursor: pointer;
        background-color: #fff;
        margin: 0 0 5px 0;
    }
    .form-type-checkbox .checkbox-replacement.checked{
        background-image: url(../images/form_valid.png);
        background-position: 6px center;
        background-repeat: no-repeat;
    }
        .form-type-checkbox .checkbox-replacement .checkbox{
            width: 100%;
            height: 100%;
            border-top: 1px solid #cdcdcd;
        }

/* Radiobutton */
.form-type-radio{
    margin-top: 15px;
}
    .form-type-radio input{
        display: none;
    }
    .form-radios label{
        float: left;
        line-height: 30px;
        margin-left: 15px;
    }

    .form-type-radio .radiobutton-replacement{
        width: 30px;
        height: 30px;
        float: left;
        border: 1px solid #e2e2e2;
        cursor: pointer;
        background-color: #fff;
        margin: 0 0 5px 0;
    }
    .form-type-radio .radiobutton-replacement.checked{
        background-image: url(../images/form_valid.png);
        background-position: center center;
        background-repeat: no-repeat;
    }
        .form-type-radio .radiobutton-replacement .radiobutton{
            width: 100%;
            height: 100%;
            border-top: 1px solid #cdcdcd;
        }
	

/* CLEARFIX */

form:after{
  content: "";
  display: table;
  clear: both;
}

