﻿html {
    height: 100%;
}

body {
    font-family: arial;
    /*text-align: center;*/
    height: 100%;
}

#flexbody {
    display: flex;
    flex-direction: column;
    height: 100%;
    /*min-height: 100%;*/
}

/*setting minimum widths for the table below*/
table.custom_table {
    /*color: red;*/
    /*margin: 0 auto;*/
    width: 100%;
}

    table.custom_table .v_name {
        min-width: 350px;
    }

    table.custom_table .street_add {
        min-width: 300px;
    }

    table.custom_table .state_add {
        min-width: 215px;
    }

    table.custom_table .c_name {
        min-width: 165px;
    }

    table.custom_table .phone {
        min-width: 165px;
    }

    table.custom_table .mail {
        min-width: 250px;
    }

    table.custom_table .web {
        min-width: 250px;
    }

main {
    flex: 1 0 auto;
    
}

em {
    font-weight: bold;
    font-style: normal;
}

/*Skip Links*/


#skip-links {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin-left: 0;
    list-style: outside none;
}

#skip-links a {
    position: absolute;
    left: 15px;
    top: -100px;
    z-index: 10000;
    height: auto;
    margin: 0 auto;
    padding: 10px 15px;
    background-color: transparent;
    color: #ffba00;
    outline: none;
    transition: top 0.2s, background-color 0.2s;
}

#skip-links a:focus, #skip-links a:hover {
    top: 0;
    background-color: #333;
}


/*focus highlights*/

a:focus {
    border: 1px solid #FFBA00;
}

/*Links*/

a:hover, a:visited, a:link, a:active {
    text-decoration: none;
}

p > a, li > a {
    color: #63656A;
}

form {
    margin: 5px;
}

/*P&T Word Header*/

.ptheader {
    background-color: #FFBA00;
    padding: 5px 0px 5px 0px;
}

    .ptheader > .content {
        max-width: 1200px;
        text-align: left;
        font-size: 36px;
        background-color: #FFBA00;
        margin: auto;
    }

/*P&T Contact Footer*/

.ptfooter {
    background-color: black;
    border-style: solid;
    border-width: 3px 0px 0px 0px;
    border-color: #FFBA00;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    clear: both;
}

    .ptfooter > .content {
        max-width: 1200px;
        font-size: 14px;
        color: white;
        margin: auto;
    }

    .ptfooter .leftcol {
        width: 50%;
        float: left;
        text-align: left;
    }

    .ptfooter .rightcol {
        width: 50%;
        float: left;
        text-align: right;
    }

    .ptfooter .leftcol a {
        color: #fff;
    }

    .ptfooter .rightcol a {
        color: #FFBA00;
    }

/*main frame*/
iframe {
    border: 1px;
    width: 100%;
    height: 85%;
    margin: auto;
    display: block;
}

.subframe {
    border: 1px;
    width: 100%;
    height: 90%;
    margin: auto;
    display: block;
}

img.brandmark {
    margin: auto;
    display: block;
    max-width: 50%;
    max-height: 50%;
    width: 650px;
    padding: 50px;
}

#headerline {
    text-align: right;
    margin: 5px;
    padding-bottom: 5px;
    border-style: solid;
    border-color: lightgrey;
    border-width: 0px 0px 1px 0px;
}

/*recenter nav tabs*/
.nav-tabs > li, .nav-pills > li {
    float: none;
    display: inline-block;
}

.nav-tabs, .nav-pills {
    text-align: center;
}

.tab-pane {
    padding: 5px 5px 5px 5px;
}

/*footer*/
.footnote {
    text-align: center;
    font-size: 10px;
    background-color: black;
    padding: 10px 10px 15px;
    color: #969491;
}

    .footnote a {
        color: #FFBA00;
    }

/*form table style*/
.tableForm {
    margin: auto;
    text-align: left;
}

    .tableForm th {
        text-align: center;
    }

/*report table style*/
table.report {
    border-collapse: collapse;
    margin: auto;
}

    table.report th {
        background-color: black;
        color: #FFBA00;
        border: 2px solid #969491;
        padding: 3px;
    }

    table.report td {
        border: 2px solid #969491;
        padding: 3px;
    }

/*button menu above reports*/
table.reportmenu {
    border: 0;
    text-align: center;
}

/*report options*/
.label {
    text-align: right;
    font-weight: bold;
}

/*Standout header line for unbordered tables*/
th.dividingHeader {
    background-color: black;
    color: #FFBA00;
    border: 2px solid #969491;
    padding: 3px;
}

/*Simple List*/
ul.simple {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

blockquote {
    max-width: 300px;
}

/*block for displaying a mailing address*/
.addressBlock {
    display: inline-block;
    margin: auto;
    text-align: left;
}


/* Tooltip container */
.tooltip {
    color: #e57200;
}

    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        background-color: #63656A;
        color: #fff;
        padding: 5px 5px;
        border-radius: 6px;
        font-weight: normal;
        font-size: small;
        text-align: center;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

/*hide elements for printing*/
@media print {
    .noprint {
        display: none;
    }

    /*report table style*/
    table.report {
        border-collapse: collapse;
    }

        table.report th, .reportth {
            color: black;
            border: 2px solid black;
            padding: 3px;
        }

        table.report td, .reporttd {
            border: 2px solid black;
            padding: 3px;
        }

    @page {
        size: landscape;
    }
}

div#partialDetails {
    width: 100%;
}

/*div#main_content {
    min-height: 100%;
    padding-bottom: 285px;
}*/
div#main2 {
    overflow: auto;
    padding-bottom: 285px;
}

div#container {
    min-height: 100%;
}

div#main2 > form > table#calculator {
    border-collapse: separate;
    border-spacing: 5px;
    margin-left: auto;
    margin-right: auto;
}

    div#main2 > form > table#calculator tr td#note {
        color: red;
        font-weight: bold;
    }

    div#main2 > form > table#calculator tr td#note2 {
        color: red;
        font-weight: bold;
    }

    div#main2 > form > table#calculator tr td input::-webkit-outer-spin-button,
    div#main2 > form > table#calculator tr td input::-webkit-inner-spin-button {
        display: none; /* <- Crashes Chrome on hover */
        -webkit-appearance: none;
        margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
    }

    div#main2 > form > table#calculator tr td input[type=number] {
        -moz-appearance: textfield; /* Firefox */
    }

    .button {
        font-family: arial;
        font-weight: bold;
        font-size: 12px;
        text-decoration: none;
        background-color: #FFBA00;
        color: #000000;
        padding: 2px 6px 2px 6px;
        border-top: 1px solid #969491;
        border-right: 1px solid #000000;
        border-bottom: 1px solid #000000;
        border-left: 1px solid #969491;
        border-radius: 3px;
    }

    .button:hover {
        font-family: arial;
        font-weight: bold;
        font-size: 12px;
        text-decoration: none;
        background-color: #FFBA00;
        color: #000000;
        padding: 2px 6px 2px 6px;
        border-top: 1px solid #000000;
        border-right: 1px solid #969491;
        border-bottom: 1px solid #969491;
        border-left: 1px solid #000000;
        border-radius: 3px;
    }

div#top > div#disclaimer {
    border:solid;
    border-width: 1px;
    width: 200px;
    height: 160px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    word-wrap: normal;
    float: right;
    padding: 5px 5px 5px;
}

div#top > div#disclaimer > p {
    text-indent: 25px;
}

div#top > div#instructions {
    float: left;
    font-family: Arial, Helvetica, sans-serif;
}

div#top > div#HSLawson {
    float: right;
    bottom: auto;
    vertical-align: bottom;
    padding-top: 240px;
    padding-right: 110px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
}

div#mailOptions {
    float: left;
    width: 800px;
    margin: auto;
    font-family: Arial, Helvetica, sans-serif;
}

div#authorization {
    font-family: Arial, Helvetica, sans-serif;
}