﻿body {
    padding-top: 90px;
    padding-bottom: 20px;
}

form {
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

a {
    cursor: pointer;
}
/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

    input[type=checkbox] {
        width: 25px;
        height: 25px;
    }

.cb-label {
    margin-left: 10px;
    margin-top: 5px;
}

.fl {
    float: left;
}

#divMessage {
    clear: left;
    float: left;
    text-align: center;
    width: 100%;
    color: black;
    margin-top: 15px;
    margin-bottom: 15px;
}

.message-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 15px;
}

.message-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    padding: 15px;
}

.required:after {
    content: " **";
    font-weight: bold;
    color: red;
}

.upperCase {
    text-transform: uppercase;
}

.breadcrumbLink {
}


.nav a {
    float: left;
    margin-top: 5px;
    color: #cecece;
}


#divLoginLink a {
    color: #cecece;
}

.breadcrumbLinkSeparator {
    color: #cecece;
}

.fl-50 {
    float: left;
    width: 50%;
}

@media (max-width: 700px) {
    .fl-50 {
        float: left;
        width: 100%;
    }
}

.form-button {
    clear: both;
    float: left;
    text-align: center;
}

.td-bold {
    font-weight: bold;
}

.rpt-table td {
    padding: 10px;
}

.nav-container-collapsed {
    float: right;
}

@media (max-width: 575px) {
    .nav-container-collapsed {
        clear: left;
        float: left;
    }
}

@media (max-width: 1000px) {
    .nav-container-collapsed {
        clear: left;
        float: left;
    }

    .td-bold {
        text-align: center;
        padding: 0px;
    }
}

h2 {
    font-size: 14pt;
}

@media print {
    #frmSubmit{
        display:none;
    }
    /*.form-control {
        display: none;
    }*/
    
    .td-bold {
        text-align: center;
        padding: 0px;
    }

    body {
        font-size: 70%;
    }
}

table {
    width: 100%;
}

.btn-default {
    border: solid 1px #333333;
}

.printCssLabel{
 display:none;
}

.rptBold{
    margin-top:7px;
}

/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: none;
    margin-top:4px;
    color:#cecece;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width:200px;
    margin-top:28px
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width:100%;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

