﻿html, body, div, span, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var,
b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td article, aside, details, figure, figcaption,
footer, header, hgroup, menu, nav, section,
summary {
    line-height: 1.5em;
}

body {
    padding-bottom: 20px;
    width: auto !important;
    min-width: 480px;
    background: #ddd;
}

/*a:link, a:active, a:visited {
    color: #C8102E ;
    text-decoration: underline;
}*/

a:hover {
    color: #c6bd6a;
}

hr {
    border: 0;
    background-color: #C8102E;
    height: 1px;
    margin: 5px 0px 5px 0px;
}

footer {
    /* margin-top: 25px; */
    /* padding-top: 20px!important; */
    color: #444;
}

.footerLogo {
    font-size: 10px;
    font-weight: 900;
}

.footerDisclaimer {
    font-size: 12px;
}

    .footerDisclaimer a {
        color: #444;
    }

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
    background: #fff;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 20px 2%;
    }
}

/* Set widths on the form inputs since otherwise they're 100% wide 
input[type="text"],
input[type="password"] {
    max-width: 280px;
}*/

input[type="radio"] {
    margin: 0px 10px 0px 10px;
}

select {
    height: 35px;
}

    select.shortDDL {
        width: 70px;
    }

    select.form-control {
        padding: 3px;
    }

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

h1 {
    color: #526D8B;
    font-size: 1.7em;
}

h2 {
    font-size: 16px;
    margin-top: 5px;
}

h3 {
    font-size: 16px;
    margin: 30px 0px 15px 0px;
}

ul {
    list-style-type: disc;
}

    ul.x, ul.check {
        list-style-position: outside;
        list-style-type: none;
    }

        ul.x > li {
            background: url("../images/x.gif") no-repeat 0px 3px;
            padding-left: 30px;
            height: 18px;
        }

        ul.check > li {
            background: url("../images/check.gif") no-repeat 0px 4px;
            padding-left: 30px;
        }

.header {
    background: #fff;
    /* color: #fff; */
    height: 126px;
    padding: 10px;
    border-bottom: 23px solid #c8102E;
}

    .header #imgMain {
        padding-top: 15px;
        margin: 15px 0px 5px;
    }

span.reg {
    vertical-align: top;
    font-size: 60%;
}

.red {
    color: #C8102E;
}

.em {
    font-style: italic;
}

.contact ul {
    padding-top: 3px;
}

.contact li {
    list-style-type: none;
    font-size: 13px;
    padding: 3px;
}

.contact a {
    text-decoration: underline;
    padding: 5px;
}

    .contact a:hover {
        text-decoration: underline;
        background-color: #AA0E27;
    }

.formSection {
    border-left: 5px solid #AA0E27;
    padding-left: 20px;
    margin-bottom: 20px;
    /*min-height: 150px;*/
}

    .formSection:hover {
        border-left: 5px solid #00b3f0;
    }


.btnSubmit {
    float: right;
    width: 230px;
    height: 53px;
    background: url("../images/submit-button.png") top left no-repeat;
    border: none;
}

    .btnSubmit:hover {
        background: url("../images/submit-button.png") bottom left no-repeat;
    }

.btnReview {
    float: right;
    width: 230px;
    height: 53px;
    background: url("../images/review-button.png") top left no-repeat;
    border: none;
}

    .btnReview:hover {
        background: url("../images/review-button.png") bottom left no-repeat;
    }

.btnBack {
    float: left;
    width: 219px;
    height: 53px;
    background: url("../images/back-button.png") top left no-repeat;
    border: none;
}

    .btnBack:hover {
        background: url("../images/back-button.png") bottom left no-repeat;
    }

.alert-sm {
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-under {
    margin-top: 10px;
}

.alert-danger, .alert-warning {
    color: #000;
}

.alert-warning {
    background-color: #FFFFCC;
}

/* hack to set validation span to block*/
span.alert-sm[style*="inline"] {
    display: block !important;
}

/* custom radiobutton & checkboxes*/
.checkbox,
.radio {
    /* Enable absolute positioning of the hidden form controls */
    position: relative;
    /* Just a bit of space. */
    margin-bottom: 0.5em;
    /*
		Match line-height to the height of the replacement image to ensure it
		doesn't get clipped
		*/
    line-height: 22px;
}

fieldset :last-child {
    margin-bottom: 0;
}
/* Position and hide the real checkboxes and radio buttons */
input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    /* Match the image dimensions */
    width: 22px;
    height: 22px;
    /* Reset anything that could peek out or interfere with dimensions */
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    opacity: 0;
}

    /*
	Insert a pseudo element inside each label and give it a background
	image that will become the custom checkbox or radio button.
	Using inline-block lets you use vertical-align to adjust it vertically
	as needed.
	*/
    input[type="checkbox"] + label:before,
    input[type="radio"] + label:before {
        display: inline-block;
        width: 22px;
        height: 22px;
        margin-right: 4px;
        background: url(../images/radio-checkbox.png) no-repeat;
        content: " ";
        vertical-align: top;
    }

    input[type="checkbox"] + label:after,
    input[type="radio"] + label:after {
        display: inline-block;
        margin-right: 10px;
        content: " ";
    }
    /*
	Position the background image differently depending on the state of each
	checkbox and radio button.
	*/
    input[type="radio"]:focus + label:before {
        background-position: 0 -22px;
    }

    input[type="radio"]:checked + label:before {
        background-position: 0 -44px;
    }

    input[type="radio"]:checked:focus + label:before {
        background-position: -0 -66px;
    }

    input[type="checkbox"] + label:before,
    .radioCheck input[type="radio"] + label:before {
        background-position: 0 -88px;
    }

    input[type="checkbox"]:focus + label:before,
    .radioCheck input[type="radio"]:focus + label:before {
        background-position: 0 -110px;
    }

    input[type="checkbox"]:checked + label:before,
    .radioCheck input[type="radio"]:checked + label:before {
        background-position: 0 -132px;
    }

    input[type="checkbox"]:checked:focus + label:before,
    .radioCheck input[type="radio"]:checked:focus + label:before {
        background-position: 0 -154px;
    }

ul.questionList {
    padding-left: 20px;
}

.questionList li {
    list-style-type: none;
}

li.active {
    font-weight: bold;
}

li.inactive {
    font-weight: normal;
}

#ui-datepicker-div {
    display: none;
}


.btn-link {
    padding: 0;
}

.form-label {
    padding-bottom: 1px;
}

td.tblLabel {
    font-weight: bold;
    text-align: right;
    vertical-align: top;
    padding-right: 10px;
    min-width: 200px;
}

.tblSummary td {
    padding-bottom: 10px;
}
