/*                                                    */
/*  main 'top-level' form elements                    */
/*                                                    */

.cform {
	font-family:Arial,sans-serif;
    background: none repeat scroll 0 0 #f9f9f9;
    margin: 10px auto 0;
    width: 510px;
    border: 1px solid #eee;
    border-radius: 3px;
	-moz-border-radius:3px;
	-khtml-border-radius:3px;
	-webkit-border-radius:3px;
}

.cform fieldset	{ 
	margin-top:0; 
	padding:5px 0 15px 0; 
	border:0; 
}

.cform .cf_hidden {
	display:none; 
	border:none!important;
	background:none!important;
	padding:0!important;
	margin:0!important;
}

.cform legend { 
    background: none repeat scroll 0 0 white;
    border-radius: 2px;
	-moz-border-radius: 2px;
	-khtml-border-radius:2px;
	-webkit-border-radius:2px;	
    color: #26468a;
    font-size: 0.78em;
    font-weight: bold;
    padding: 2px 7px 3px;
    margin: 0 26%;
}
.cform fieldset:first-child legend { 
    border-radius: 0 0 3px 0;
	-moz-border-radius:0 0 3px 0;
	-khtml-border-radius:0 0 3px 0;
	-webkit-border-radius:0 0 3px 0;
}

ol.cf-ol { 
	margin:0!important; 
	padding:0!important;
}

ol.cf-ol li	{
	background:none!important; 
	margin:5px 0!important;
	padding:0; 
	list-style:none!important; 
	text-align:left;
	line-height:1.3em;
}


/*                                                    */
/* just for text-only fields (no input)               */
/*                                                    */

ol.cf-ol li.textonly {
	letter-spacing:1px;
	margin:10px 0pt !important;
	padding:5px 0pt;
	text-align:center;
	font-size:0.8em;
	text-shadow: 0 1px 0 #FFFFFF;
}


/*                                                    */
/* global definitions for field labels                */
/*                                                    */

.cform label {
    color: #555555;
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    line-height: 1.3em;
    margin: 0.6em 1% 0.5em 1%;
    text-align: right;
    vertical-align: top;
    width: 20%;
}

.cform label span {
}

label.cf-before {
	margin:0.4em 5px; 
}

label.cf-after 	{
	margin:0.4em 5px;
	text-align:left;
	width:115px;
}

label.cf-after span {
	width:115px;
	display:block;
}

label.cf-group-after {
	margin:0.4em 5px;
	width:72px;
	text-align:left;
}
label.cf-group-after span {
	width:72px;
	display:block;
}

/*                                                    */
/*   FORM FIELDS general formatting                   */
/*                                                    */

.cform input,
.cform textarea,
.cform select { 
	text-shadow: 0 1px 0 #FFFFFF;
	color: #111111;
    font-size: 0.9em;
    padding: 5px 10px;
	
	background: #f9f9f9; 
	border: 1px solid #e2e2e2; 
	vertical-align:top;

	box-shadow: none;	
	background: #f7f7f7; /* Old browsers */
	background: -moz-linear-gradient(top,  #f7f7f7 0%, #eeeeee 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#eeeeee)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f7f7f7 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f7f7f7 0%,#eeeeee 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f7f7f7 0%,#eeeeee 100%); /* IE10+ */
	background: linear-gradient(top,  #f7f7f7 0%,#eeeeee 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
}
/*
.cform input:hover,
.cform textarea:hover,
.cform select:hover	{
background: #ffffff; 
background: -moz-linear-gradient(top,  #ffffff 0%, #efefef 100%); 
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); 
background: -webkit-linear-gradient(top,  #ffffff 0%,#efefef 100%); 
background: -o-linear-gradient(top,  #ffffff 0%,#efefef 100%); 
background: -ms-linear-gradient(top,  #ffffff 0%,#efefef 100%);
background: linear-gradient(top,  #ffffff 0%,#efefef 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 ); 
}
*/
.cform input:hover,
.cform textarea:hover,
.cform select:hover,
.cform input:focus,
.cform textarea:focus,
.cform select:focus	{ 
	text-shadow: none;
	border: 1px solid #999; 
	background: #fff;
	box-shadow: 0 1px 2px #ccc inset;
}

.cform textarea,
.cform input {
	width: 65%;
}
.cform select {
	padding: 2px 5px;
    width: 69%; /* attempt to have equal length */
}  

.cform select.cfselectmulti	{ 
	height:7.5em; 
}

.cform textarea {
	font-family: arial;
	font-size: 0.9em;
	overflow:auto;
	resize:none;
}

.ui-datepicker-trigger{
	cursor:pointer;
	margin-top: 3px;
}
/*                                                    */
/*   radio button title                               */
/*                                                    */

ol.cf-ol li.cf-box-title {
    color: #999999;
    font-size: 0.8em;
    font-weight: bold;
	margin-left:1.5em;
    padding: 8px 0 0 22%; /* check with label 'width' incl. */
}

/*                                                    */
/*   check boxes                                      */
/*                                                    */

.cform input.cf-box-a,
.cform input.cf-box-b 	{ 
	margin:1px 0 0 0; 
	width:14px;
	height:22px;
	border:none!important;
	background:none!important; 
}

.cform input.cf-box-a 	{ 
	margin-left:22%; /* check with label 'width' incl. */
} 


/*                                                    */
/* check box groups                                   */
/*                                                    */

ol.cf-ol li.cf-box-group {
	margin:10px 0pt 0px !important;
	padding-left: 22%; 
} 

/*                                                    */
/* formatting for text:  "(required)"  & other        */
/*                                                    */

span.reqtxt,
span.emailreqtxt { 
    color: #9B4D4D;
    display: block;
    font-size: 0.7em;
    height: 14px;
    line-height: 1em;
    margin: 0 0 0 22%;
	padding: 0 0 0 20px;
    text-align: right;
    vertical-align: top;
    width: 65%;
}

/*                                                    */
/*   FORM submit button                               */
/*                                                    */

p.cf-sb {
	text-align:right;
	padding: 0!important;
	margin: 0;
}
.cform input.backbutton,
.cform input.resetbutton,
.cform input.sendbutton	{  
	padding:5px 10px; 
	margin: 0 0 0 5px;
	font-size:0.8em;
	cursor:pointer;
	width:auto;

    border-radius: 3px 0 0 0;
	-moz-border-radius:3px 0 0 0;
	-khtml-border-radius:3px 0 0 0;
	-webkit-border-radius:3px 0 0 0;

	border:1px solid #ccc;
	
	background: #f7f7f7; /* Old browsers */
	background: -moz-linear-gradient(top,  #f7f7f7 1%, #e5e5e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#f7f7f7), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f7f7f7 1%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f7f7f7 1%,#e5e5e5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f7f7f7 1%,#e5e5e5 100%); /* IE10+ */
	background: linear-gradient(top,  #f7f7f7 1%,#e5e5e5 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
}
.cform input.backbutton:hover,
.cform input.resetbutton:hover,
.cform input.sendbutton:hover {
	border:1px solid #aaa;
	background: #fdfdfd; /* Old browsers */
	background: -moz-linear-gradient(top,  #f7f7f7 1%, #c1c1c1 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#f7f7f7), color-stop(100%,#c1c1c1)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f7f7f7 1%,#c1c1c1 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f7f7f7 1%,#c1c1c1 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f7f7f7 1%,#c1c1c1 100%); /* IE10+ */
	background: linear-gradient(top,  #f7f7f7 1%,#c1c1c1 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#c1c1c1',GradientType=0 ); /* IE6-9 */
}
.cform input.resetbutton {
	width: auto;
	padding:5px 1em;
}
.cform input.backbutton {
	width: auto;
	padding:5px 1em;
}

/*                                                    */
/*   FORM FIELDS enhanced error display               */
/*                                                    */
ol.cf-ol li.cf_li_err {
	background:#FFDFDF url(li-err-bg.png) repeat!important;
	border-color:#EDC4C4;
	border-style:solid;
	border-width:1px 0pt;
	padding:10px 0 1px!important;
	margin:5px 0!important;
}

ol.cf-ol li ul.cf_li_text_err {
	height:1%;
	min-height:1%;
	margin:0 0 0 100px;
	padding:0;
	color:#333;
}

ol.cf-ol ul.cf_li_text_err li {
	background:url(icon-alert.png) no-repeat left 1px!important;
	list-style:none!important;
	font-weight:bold;
	text-indent:0;
	margin:0 0 2px!important;
	padding-left:15px;
}
ol.cf-ol ul.cf_li_text_err li:before {
	content:'';
}

/*                                                    */
/* 'visitor verification' related styles              */
/*                                                    */

label.secq,
label.seccap {
	vertical-align:text-bottom;
	margin-bottom:4px;
}

input.secinput {
	vertical-align:text-bottom;
}

#cforms_captcha6,
#cforms_captcha5,
#cforms_captcha4,
#cforms_captcha3,
#cforms_captcha2,
#cforms_captcha {
	width:50px;
	padding: 4px 4px;
	margin: 0;
}

img.captcha	{
	vertical-align:text-bottom;
	margin:0 0 0 10px!important;
	padding:0!important;
	border:none!important;
	float:none!important;
}

.captcha-reset {
	vertical-align:text-bottom;
	color:#777777;
	margin:0 0 2px 3px;
	width:21px;
	height:21px;
	border:none;
}

img.imgcalendar {
	border:none;
}

/*                                                    */
/* change formatting of response msgs here            */
/*                                                    */

div.cf_info {
	font-family:Arial,sans-serif;
	font-size:0.8em;
	color:#333;
	display:none;
	padding:10px 15px!important;
	width:480px;
	line-height:1.3em;
	margin:10px auto;
}
div.cf_info > span{
	text-shadow: 0 1px 0 #FFFFFF;
	font-weight: bold;
}
div.cf_info ol {
	margin:0;
	padding:5px 15px 0 30px;
}
div.cf_info ol li {
	padding:1px 0;
	margin:2px 0;
}
div.cf_info a	{
	color:#ad2929!important;
	text-decoration:underline!important;
}
div.success {
	background:#F7F7F7 none repeat scroll 0% 50%;
	color:#444444;
	display:block;
}
div.failure {
	display:block;
    background: url(li-err-bg.png) repeat scroll 0 0 #FFDFDF !important;
    border: 1px solid #EDC4C4;
    border-radius: 3px;
	-moz-border-radius:3px;
	-khtml-border-radius:3px;
	-webkit-border-radius:3px;
}
div.waiting {
	background:#F9F9F9;
	color:#AAAAAA;
	display:block;
}
/*                                                    */
/*   formatting for invalid user inputs               */
/*                                                    */
.cform .cf_error { 
	color:#ad2929; 
	border:1px solid #ad2929; 
}
div.mailerr {
	display:block;
}
.mailerr,
.cform .cf_errortxt {
	color:#ad2929; 
}

/*                                                    */
/* disabled fields [disabled] does not work on IE!    */
/*                                                    */

.disabled,
.disabled:hover,
[disabled]:hover,
[disabled] {
	color:#aaa!important;
	border-color:#dddddd!important;
	background:none!important;
	box-shadow: none!important;
}

/*                                                    */
/* upload box styling                                 */
/*                                                    */
.cform input.cf_upload  {
	width:220px;
	background: #f9f9f9;
	border:1px solid #888888;
}

/*                                                    */
/*  Other: browser hacks                              */
/*                                                    */
/*
* html .cform fieldset {
	position: relative;
	margin-top:15px;
	padding-top:25px; 
}
* html .cform legend { 
	position:absolute; 
	top: -10px; 
	left: 10px; 
	margin-left:0;
}
*+html .cform fieldset {
	position: relative;
	margin-top:15px;
	padding-top:25px; 
}
*+html .cform legend { 
	position:absolute; 
	top: -10px; 
	left: 10px; 
	margin-left:0;
}
/*for ie6*/
/*
* html ol.cf-ol,
* html ol.cf-ol li,
* html span.reqtxt,
* html span.emailreqtxt { 
	display: inline-block;  
}
*/
/*for ie7*/
/*
*+html .cform label,
*+html ol.cf-ol,
*+html ol.cf-ol li,
*+html span.reqtxt,
*+html span.emailreqtxt {
	display: inline-block; 
}

* html img.captcha {
	margin-bottom:1px!important;
}
*+html img.captcha {
	margin-bottom:1px!important;
}
*/

div.failure, div.success{
 width: 66%;
 float: right;
}

li#li-3-1, li#li-3-2, li#li-3-4, li#li-3-5, li#li-3-10, li#li-2-5, li#li-4-6, li#li-5-6{
   background: none !important;
   border: none;
}

ol.cf-ol ul.cf_li_text_err li{
	color: #892121;
}

#left-area ol li ul{
	padding: 2px 0 2px 65px !important;
}

input#cf3_field_4 {
    width: 272px;
    height: 33px;
}

input#cf3_field_5 {
    width: 266px;
    height: 33px;
}

select#cf3_field_6 {
    width: 133px;
}

input#cf3_field_10, input#cf2_field_5, input#cf4_field_6, input#cf5_field_6{
    width: 260px;
    height: 33px;
}

li#li-3-4 {
    width: 678px;
}

li#li-3-5 {
    width: 697px;
}

li#li-3-6 {
    width: 1075px;
}

li#li-3-10, li#li-2-5, li#li-4-6, li#li-5-6 {
    width: 675px;
}


label#label-2-1,#label-2-2,#label-2-3{
	visibility: hidden;
}

label#label-3-1,#label-3-2,#label-3-3,#label-3-7,#label-3-8{
	visibility: hidden;
}

label#label-4-1,#label-4-2,#label-4-3,#label-4-4{
	visibility: hidden;
}

label#label-5-1,#label-5-2,#label-5-3,#label-5-4{
	visibility: hidden;
}

.cform #label-3-4 span{
	color: #26468a;
    background: white;
    padding: 4px 9px 9px 6px;
    margin: -13px;
    border-radius: 2px;
}

.cform #label-3-5 span{
	color: #26468a;
    background: white;
    padding: 4px 9px 9px 6px;
    margin: -13px;
    border-radius: 2px;
}

.cform #label-3-6 span{
	color: #26468a;
    background: white;
    padding: 4px 38px 2px 6px;
    margin: -17px;
    border-radius: 2px;
}

.cform .secq span{
	color: #26468a;
    background: white;
    padding: 6px 38px 7px 6px;
    margin: -17px;
    border-radius: 2px;
}


/* Responsive Styles 981px - 1100px */
@media all and (min-width: 981px) and (max-width: 1110px) {
	
	div.failure, div.success{
		width: 86%;
		float: right;
		margin-right: 12%;
	}
	
	label#label-2-1,#label-2-2,#label-2-3{
		display: none;
	}

	label#label-3-1,#label-3-2,#label-3-3,#label-3-7,#label-3-8{
		display: none;
	}
	
	label#label-4-1,#label-4-2,#label-4-3,#label-4-4{
		display: none;
	}
	
	label#label-5-1,#label-5-2,#label-5-3,#label-5-4{
		display: none;
	}
	
	.cform #label-3-4 span{
		color: #26468a;
	    background: white;
	    padding: 5px 17px 9px 4px;
		margin: -14px;
		font-size: 17px;
	}
	
	.cform #label-3-5 span{
		color: #26468a;
	    background: white;
	    padding: 5px 22px 9px 4px;
		margin: -23px;
		font-size: 17px;
	}
	
	.cform #label-3-6 span{
		color: #26468a;
	    background: white;
	    padding: 5px 60px 2px 3px;
	    margin: -32px;
	    font-size: 17px;
	}
	
	.cform .secq span{
		color: #26468a;
	    background: white;
	    padding: 9px 17px 7px 4px;
		margin: -14px;
		font-size: 17px;
	}
	
	.cform legend{
		margin: 0;
		font-size: 0.78em;
	}
	
	label#label-3-4{
		width: 7%;
	}
	
	label#label-3-5{
		width: 7%;
	}
	
	label#label-3-6{
		width: 16%;
	}
	
	label.secq{
		width: 6% !important;
	}
	
	input#cf3_field_4 {
	    width: 272px;
	    height: 35px;
	}

	input#cf3_field_5 {
	    width: 266px;
	    height: 35px;
	}
	
	input#cf3_field_10, input#cf2_field_5, input#cf4_field_6, input#cf5_field_6 {
	    width: 288px;
	    height: 35px;
	}
		
}

/* Responsive Styles Tablet Portrait And Below */
@media all and (max-width: 768px) {
	
	div.failure, div.success{
		width: 87%;
		float: right;
		margin-right: 11%;
	}
	
	label#label-2-1,#label-2-2,#label-2-3{
		display: none;
	}

	label#label-3-1,#label-3-2,#label-3-3,#label-3-7,#label-3-8{
		display: none;
	}
	
	label#label-4-1,#label-4-2,#label-4-3,#label-4-4{
		display: none;
	}
	
	label#label-5-1,#label-5-2,#label-5-3,#label-5-4{
		display: none;
	}
	
	label#label-3-4 {
    	width: 8%;
	}
	
	input#cf3_field_4 {
	    width: 271px;
	}
	
	label#label-3-5 {
    	width: 9%;
	}
	
	input#cf3_field_5 {
	    width: 262px;
	}
	
	input#cf3_field_10, input#cf2_field_5, input#cf4_field_6, input#cf5_field_6 {
	    width: 232px;
	}
	
	
	label.secq {
    	width: 5% !important;
	}
	
	label#label-3-6 {
    	width: 18%;
	}
	
	select#cf3_field_6 {
	    width: 127px;
	}
	
	.cform label{
		margin: 0.4em 1% 0.5em 0% !important;
	}
	
	.cform legend{
		margin: 0;
		font-size: 0.78em;
	}
	
	.cform #label-3-4 span{
		color: #26468a;
	    background: white;
	    padding: 5px 17px 8px 4px;
	    margin: -14px;
	    font-size: 17px;
	}
	
	.cform #label-3-5 span{
		color: #26468a;
	    background: white;
	    padding: 5px 22px 8px 4px;
		margin: -15px;
		font-size: 17px;
	}
	
	.cform #label-3-6 span{
		color: #26468a;
	    background: white;
	    padding: 6px 75px 0px 3px;
	    margin: -35px;
	    font-size: 17px;
	}
	
	.cform .secq span{
		color: #26468a;
	    background: white;
	    padding: 7px 17px 8px 4px;
	    margin: -14px;
	    font-size: 17px;
	}


}

/* Responsive Styles Smartphone Portrait */
@media all and (max-width: 479px) {
	
	div.failure, div.success{
		width: 97%;
		float: right;
	}
	
	label#label-2-1,#label-2-2,#label-2-3{
		display: none;
	}

	label#label-3-1,#label-3-2,#label-3-3,#label-3-7,#label-3-8{
		display: none;
	}
	
	label#label-4-1,#label-4-2,#label-4-3,#label-4-4{
		display: none;
	}
	
	label#label-5-1,#label-5-2,#label-5-3,#label-5-4{
		display: none;
	}
  	
  	label#label-3-4 {
    	width: 8%;
	}
	
	input#cf3_field_4 {
	    width: 161px;
	}
	
	label#label-3-5 {
    	width: 9%;
	}
	
	input#cf3_field_5 {
	    width: 152px;
	}
	
	input#cf3_field_10, input#cf2_field_5, input#cf4_field_6, input#cf5_field_6 {
	    width: 172px;
	}
		
	label#label-3-6 {
    	width: 145px;
	}
	
	select#cf3_field_6 {
	    width: 6%;
	}
	
	.cform label{
		margin: 0.4em 1% 0.5em 0% !important;
	}
	
	.cform legend{
		margin: 0;
		font-size: 0.6em;
	}
	
	#li-3-10 label {
		width: 7%;
	}
		
	ul.cf_li_text_err {
	    left: -180px;
	    position: relative;
	    width: 73%;
	}
	
	.cform #label-3-4 span{
		color: #26468a;
	    background: white;
	    padding: 7px 17px 8px 4px;
	    margin: -8px;
	    font-size: 15px;
	}
	
	.cform #label-3-5 span{
		color: #26468a;
	    background: white;
	    padding: 7px 22px 8px 4px;
		margin: -10px;
		font-size: 15px;
	}
	
	.cform #label-3-6 span{
		color: #26468a;
	    background: white;
	    padding: 6px 27px 0px 3px;
	    margin: -19px;
	    font-size: 15px;
	}
	
	.cform .secq span{
		color: #26468a;
	    background: white;
	    padding: 8px 27px 8px 3px;
	    margin: -19px;
	    font-size: 15px;
	}
		
}





