html {
    width:100%;
    min-height: 100%;
    margin: 0 auto;
}
body {
    color: #666;
    font: 17px Arial, sans-serif;
    background-color: transparent;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
h1 {
    color: #1293cf;
    font:700 32px Arial, sans-serif;
    letter-spacing: -0.05em;
}
h2 {
    color: #1293cd;
    font:700 27px Arial, sans-serif;
}
h3 {
    color: #00b5ee;
    font:700 17px/22px Arial, sans-serif;
    margin: 0;
    padding: 0;
}
h4 {
    color: #00b5ee;
    font: 20px Arial, sans-serif;
}
h5 {
    color: #666;
    font: 15px/20px Arial, sans-serif;
    margin: 0;
}
h6 {
    color: #666;
    font: 13px/20px Arial, sans-serif;
}
p, table {
    color: #666;
    font: 17px/1.5 Arial, sans-serif;
}
label {
    color: #00b5ee;
    font: 17px Arial, sans-serif;
}
    label.error {
        color: red;
    }
a {
    color: #1492cc;
    -webkit-transition: all 250ms ease-in-out;
       -moz-transition: all 250ms ease-in-out;
        -ms-transition: all 250ms ease-in-out;
         -o-transition: all 250ms ease-in-out;
            transition: all 250ms ease-in-out;
}
a:hover, a:visisted, a:focus {
    color: red;
}
:focus, a:focus {
    outline:none !important;
}
.clearFix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;	
}
* html .clearFix {
	height: 1%;
}
.clearFix {
	min-height: 1px;
}
/*////////////////////////////////////////////////*/
header {
    padding: 35px 0 0;
    margin: 0 auto;
    width: 100%;
}
    .row-fluid {
        width: 90%;
        max-width: 580px;
        margin: 0 auto;
        padding-bottom: 30px;
    }
        #form .row-fluid {
            padding-bottom: 5px;
        }
.form-field input.required {
    border-color: #ccc;
    border-radius: 5px;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    width: 100%;
}
    .form-field .required.error {
        border-color: red;
        color: red;
        -webkit-transition: all 250ms ease-in-out;
           -moz-transition: all 250ms ease-in-out;
            -ms-transition: all 250ms ease-in-out;
             -o-transition: all 250ms ease-in-out;
                transition: all 250ms ease-in-out;
    }
    .form-field .required.error::-webkit-input-placeholder {
       color: red;
    }

    .form-field .required.error:-moz-placeholder { /* Firefox 18- */
       color: red;  
    }

    .form-field .required.error::-moz-placeholder {  /* Firefox 19+ */
       color: red;  
    }

    .form-field .required.error:-ms-input-placeholder {  
       color: red;  
    }
    option.state-opt {
        color: #666;
    }
select {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #666;
    height: 50px;
    line-height: 50px;
    padding: 5px 0;
    width: 100%;
}
    select:focus, 
    input[type="file"]:focus, 
    input[type="radio"]:focus, 
    input[type="checkbox"]:focus {
        outline: none;
        outline-offset: 0px; 
    }
.cta {
    display: block;
    background:#0576bd;
    padding: 15px 25px;
    color: #fff;
    font: 700 17px Arial, sans-serif;
    text-decoration: none;
    border: 0px;
    margin-top:15px;
    -webkit-transition: all 250ms ease-in-out;
       -moz-transition: all 250ms ease-in-out;
        -ms-transition: all 250ms ease-in-out;
         -o-transition: all 250ms ease-in-out;
            transition: all 250ms ease-in-out;
}
    .cta:hover {
        text-decoration: none;
        background: #2a84cd;
    }
footer {
    border-top:7px solid #dff1fb;
    width: 90%;
    max-width: 580px;
    margin: 0 auto;
    padding: 10px 0;
}
@media screen and (max-width:579px) {
    .form-field {
        width: 90% !important;
        max-width: none !important;
    }
    select {
        width: 95%;
    }
}