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

.cform {

}

.cform fieldset {

}

.cform .cf_hidden {
    display:none;
}

.cform legend {

}

ol.cf-ol {
    margin:0!important;
    padding:15px 0 0 0!important;
    border-top:1px solid #f2f2f2;
}
ol.cf-ol li {
    background:none!important;
    list-style:none!important;
    text-align:left;
    margin-bottom: 5px;
}

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

ol.cf-ol li.textonly {
    margin:12px 0pt !important;
    padding:0pt 0pt 0pt 100px;
}


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

.cform label {
    width:190px;
    margin:4px 10px 0 0;
    display:-moz-inline-box; /*for mozilla*/
    display:inline-block; /*for Opera & IE*/
    text-align:left;
    vertical-align:top;
    font-weight: bold;
}
.cform label span {
    width:190px; /* must be the same as above!*/
    display:block;
}

label.cf-after  {
    margin:4px 2px 0 6px;
    text-align:left;
    width:70px;
}

/* -------- */

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

.cform input,
.cform textarea {
    padding: 2px;
    vertical-align:top;
}
.cform input:hover,
.cform textarea:hover,
.cform select:hover {

}

.cform input:focus,
.cform textarea:focus,
.cform select:focus {

}

.cform textarea,
.cform input {
    width:300px;
}
.cform select {

}

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

.cform textarea {
    overflow:auto;
    font-size: 100%;
}

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

span.reqtxt,
span.emailreqtxt {
    display: none;
}


/*                                                    */
/*   radio button title                               */
/*                                                    */

ol.cf-ol li.cf-box-title {
    display: none;
}

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

input.cf-box-a,
input.cf-box-b  {
    margin:1px 0 0 0;
    width:16px;
    height:22px;
}

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


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

ol.cf-ol li.cf-box-group {
    margin: -5px 0 5px 0;
    padding: 0 0 0 200px;
}


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

p.cf-sb {
    margin: -15px 0 0 200px;
}
.cform input.sendbutton {
    width: 100px;
    color: #333;
}

/*                                                    */
/*   FORM FIELDS enhanced error display               */
/*                                                    */
ol.cf-ol li.cf_li_err {
    background:#FFDFDF;
    border-color:#DF7D7D;
    border-style:solid;
    border-width:1px 0pt;
    padding:5px 0!important;
    margin:5px 0!important;
}

ol.cf-ol li ul.cf_li_text_err {
    margin:0 0 0 10px;
    padding:0;
    color:#333;
}

ol.cf-ol ul.cf_li_text_err li {
    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 {
    height:15px;
    width:100px;
    padding: 4px 4px;
    margin: 0;
    vertical-align:text-bottom;
}

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

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

img.imgcalendar {
    border:none;
}

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

div.cf_info {
    display:none;
    padding:10px 15px!important;
    width:480px;
    margin:10px 0 0 0;
}
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:red!important;
    text-decoration:underline!important;
}
div.success {
    display:block;
    background:#e0ffc2;
    border: 1px solid #6fc361;
}
div.failure {
    display: block;
    background: #ffdfdf;
    border: 1px solid #df7d7d;
}

/*                                                    */
/*   formatting for invalid user inputs               */
/*                                                    */
.cform .cf_error {
    background: #ffdfdf;
}
div.mailerr {
    display:block;
}
.mailerr,
.cform .cf_errortxt {
    color:red;
}

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

p.cf_info       {
    margin:10px;
}
p.success   {
    color:green;
}
p.failure   {
    color:red;
}

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

[disabled] {
    color:#dddddd;
    border-color:#dddddd!important;
    background:none!important;
}
.disabled {
    border-color:#dddddd!important;
}

/*                                                    */
/* upload box styling                                 */
/*                                                    */

.cform input.cf_upload  {
    width:220px;
    background: #f9f9f9;
    border:1px solid #888888;
}

/*                                                    */
/*  Other: link love                                  */
/*                                                    */
.linklove {
    display: none;
}

/*                                                    */
/*  Other: browser hacks                              */
/*                                                    */
*+html ol.cf-ol,
*+html ol.cf-ol li  {
    display: inline-block;  /*for ie7*/
}
* html ol.cf-ol,
* html ol.cf-ol li,
* html span.reqtxt,
* html span.emailreqtxt {
    display: inline-block;
}
* html .cform legend {
    position:absolute;
    left: -8px;
    top:0;
    margin-left:0;
}
*+html .cform legend {
    position:absolute;
    left: -8px;
    top:0;
    margin-left:0;
}
* html .cform fieldset {
    position: relative;
    margin-top:15px;
    padding-top:25px;
}
*+html .cform fieldset {
    position: relative;
    margin-top:15px;
    padding-top:25px;
}
* html img.captcha  {
    margin-bottom:1px!important;
}
*+html img.captcha  {
    margin-bottom:1px!important;
}
