/**
 * 	Laurel Springs Forms Stylesheet
 *  Author: JS
 *  Package: Laurel Springs
 *  Version: 1.0
 */

.lss-forms {
	width: 100%;
	margin: 4rem auto 0;
}
.lss-forms input[type="text"],
.lss-forms input[type="email"],
.lss-forms input[type="tel"],
.lss-forms input[type="password"],
.lss-forms input[type="file"],
.lss-forms textarea,
.lss-forms select {
	display: block;
	width: 100%;
	padding: 0.7rem 0.7rem !important;
	min-height: 34px;
	margin: 0 0 2rem 0;
	background: #E9F1F2;
	border: 1px solid #cadade;
	font-size: 1.3rem;
	color: #333;
/* 	Mobile fix */	
	appearance: none;
	-moz-appearance: none; /* Firefox */
	-webkit-appearance: none; /* Safari and Chrome */
	-ms-appearance: none;
/* 	Sizing fix */	
	-webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.lss-forms select::-ms-expand {
    display: none;
}
.lss-forms select {
	background: #FFFFFF;
	padding: 0.47rem 0.4rem !important;
	background: #FFF url( '../images/green-arrow.png' ) no-repeat;
	background-size: 22px 6px;
	background-position: 100% 55%;
}
.lss-forms select option {
	padding: 0.1em 0.5em;
	color: #333;
}
.lss-forms textarea {
	min-height: 10em;
	/*margin-bottom: 5rem;*/
}
.lss-forms input#birthdate,
.lss-forms input#birthdate_2 {
	background: #FFF url( '../images/calendar.png' ) no-repeat;
	background-size: 30px 15px;
	background-position: 100% 55%;
}
.lss-forms p.sec-header {
	border-bottom: 1px solid #DEEAEC;
	text-align: center;
	text-transform: uppercase;
	line-height: 0;
	font-weight: 600;
	margin: 4rem 0 5rem;
}
.lss-forms p.sec-header span {
	background: #FFFFFF;
	padding: 0 2rem;
}
.lss-forms .check_field {
	margin: 2rem 0;
	font-size: 1.5rem;
}
.lss-forms .hasError,
.lss-forms input.hasError,
.lss-forms select.hasError,
.lss-forms textarea.hasError {
	border: 1px solid #8C231C;
}

/*	Disabled Fieldset */
.lss-forms fieldset:disabled {
	display: none;
}
.lss-forms fieldset {
	border: none;
	margin: 0 0 2rem 0;
	padding: 0 0 0 0;
}
#sit_count {
	float: right;
	font-size: 1rem;
	color: #333333;
}

/*	Buttons */
.lss-forms .btn {
	background: #FFFFFF;
	border: 1px solid #8C231C;
	font-size: 1.5rem;
	font-weight: 600;
	padding: 1rem 5rem;
	color: #8C231C;
	display: block;
	margin: 5rem auto 0;
}
.lss-forms .btn:hover {
	cursor: pointer;
	background: #8C231C;
	color: #FFFFFF;
}
.lss-forms .btn-submit.disabled {
	border: 1px solid #DFDFDF;
	color: #DFDFDF;
}
.lss-forms .btn-submit.disabled:hover {
	cursor: default;
	border: 1px solid #DFDFDF;
	color: #DFDFDF;
	background: #FFFFFF;
}

/*	Placeholders */
.lss-forms select.empty,
.lss-forms select option:first-of-type {
	color: #333;
}

::-webkit-input-placeholder { /* WebKit browsers */
	color: #333;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #333;
	opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #333;
	opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #333;
}
::-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #333;
}

/* 	Error Messages */
ul#lss_form_errors {
	/*display: none;*/
	margin: 0 0 1em 0;
	padding: 0 0 0 0;
}
ul#lss_form_errors li {
	display: block;
	width: auto;
	color: #A00;
}
ul#lss_form_errors li::before {
	content: "\F12A";
	font-family: FontAwesome;
	margin-right: 0.4em;
}
.lss-forms input.error {
	background: #FFF url( '../images/error.gif' ) no-repeat;
	background-size: 14px 14px;
	background-position: 98% 50%;
}

/*	Formatting */
.lss-forms span.half > * {
	width: 49%;
}
.lss-forms span.half > *:nth-child( odd ) {
	float: left;
}
.lss-forms span.half > *:nth-child( even ) {
	float: right;
}
.lss-forms span.third > * {
	width: 32%;
	float: left;
}
.lss-forms span.third > *:nth-child( 2 ) {
	margin: 0 2%;
}

@media only screen and ( max-width: 960px ) {
	.lss-forms {
		width: 92%;
	}
}

/* TALEO */
body.page-accreditation table td {
	border-top:none;
}

body.page-accreditation table p,
body.page-accreditation table span,
body.page-accreditation table ul li {
	color: #333 !important;
	font-family: 'Sintony', sans-serif !important;
	font-size: 18px !important;
	font-size: 1.8rem !important;
	font-weight: 300 !important;
	line-height: 1.625 !important;
}

td.nowrapFormLabel {
	padding-right:1.5rem;
}

body.page-accreditation table input[type="submit"] {
	margin-right:2rem;
}