html.homePage { 
    background: url(../images/bg.png) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: black;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: black;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: black;
}

div.homePageBox {
    border-radius: 10px;
    color: black;
    border: 1px black solid;
    background: rgba(255, 255, 255, 0.5);
}

.fa-1_5x {
    font-size: 1.5em;
}

.fa-bordered {
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

#topBar a:hover,
#topBar a:focus {
    color: #5b7b2e;
}

#menuItems {
    text-align: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.topBarContainer {
    z-index: 99999999;
}

#topBar {
    padding-top: 10px;
    background-color: rgba(255, 255, 255, 1);
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    color: #6eb43f;
    border-bottom: 2px solid black;
    text-align: left;
    height: 80px;
    font-size: 1.2em;
}

#mainContainer {
    background-color: #c9cacc;
    color: black;
    border-radius: 10px;
    border: 2px solid #6eb43f;
    min-height: 500px;
}

#mainContainer i:hover,
#mainContainer i:focus {
    color: #5b7b2e;
}

.pageTitle{
    font-size: 2em;
    text-align: center;
}

.overflowTableContainer {
    overflow: auto;
}

.wrapped {
    overflow-wrap: break-word;
}

.menuItem.active {
    text-decoration: underline;
    font-weight: bold;
}

#mainContainer a.disabled,
#mainContainer a.disabled:hover,
#mainContainer a.disabled:focus,
#mainContainer a.disabled i,
#mainContainer a.disabled i:hover,
#mainContainer a.disabled i:focus {
    cursor: not-allowed;
    color: grey;
}

textarea {
    resize: none;
}

#addItemButton {
    position: relative;
    top: 9px;
}

.itemForm table {
    border-top-width: 0px;
}

.itemForm table.no-border,
.itemForm table.no-border tbody tr,
.itemForm table.no-border tbody tr td {
    border: 0px;
}

.itemForm table.table-bordered,
.itemForm table.table-bordered tbody tr,
.itemForm table.table-bordered tbody tr td {
    border: 2px solid black;
    border-collapse: collapse;
}

.table > thead > tr > th.vertical-aligned-cell,
.table > tbody > tr > th.vertical-aligned-cell,
.table > tfoot > tr > th.vertical-aligned-cell,
.table > thead > tr > td.vertical-aligned-cell,
.table > tbody > tr > td.vertical-aligned-cell,
.table > tfoot > tr > td.vertical-aligned-cell {
    vertical-align: middle;
}

.form-control.reportInput {
    /*width: auto;*/
/*    display: inline-block;*/
    background-color: white;
    height: auto;
}

.expired {
    background-color: red !important;
}

.valid {
    background-color: green !important;
}

table.myTable {
    /*border: 1px #3c3333 solid;*/
    border-collapse: collapse;
    margin-bottom: 20px;
}

table.myTable th, table.myTable td {
    border: 1px #3c3333 solid;
    padding: 5px;
}

table.myTable th {
    font-weight: bold;
    text-align: center;
    color: black;
    background: rgba(128, 173, 65, 0.7);
}

table.myTable.fullyLeftAligned th {
    text-align: left;
}

.tagContainer,
.tagContainer div {
    border: 1px solid black;
    padding: 10px;
}

.tagContainer div:nth-child(even) {
    border-right: 0px;
}

.tagContainer div:nth-child(odd) {
    border-left: 0px;
}





















body {
    /*background: url("../images/body_bg.png") repeat scroll center center #6c6262;*/
    /*background-color: #f6f6f6;*/
    /*background-color: #80ad41;*/
    color: black;
    font-family: "Calibri";
    font-size: 18px;
    /*font-size: 100%;*/
    text-align: left;
    background-color: white;
}

@media (min-width: 100px) and (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    body {
        font-size: 14px;
    }
}

@media (min-width: 992px) and (max-width: 1499px) {
    body {
        font-size: 16px;
    }
}

@media (min-width: 1500px) {
    body {
        font-size: 18px;
    }
}

.centered_object {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.centered_vertically {
    margin-top: auto;
    margin-bottom: auto;
}

a, a:hover {
    text-decoration: none;
    color: inherit;
}

.space10 {
    height: 10px;
}

.space20 {
    height: 20px;
}

.space30 {
    height: 30px;
}

.space40 {
    height: 40px;
}

.space50 {
    height: 50px;
}

.space60 {
    height: 60px;
}

.space70 {
    height: 70px;
}

.space80 {
    height: 80px;
}

.space90 {
    height: 90px;
}

.space100 {
    height: 100px;
}

.space120 {
    height: 120px;
}

.space150 {
    height: 150px;
}

.space200 {
    height: 200px;
}

.centered {
    text-align: center;
}

.error {
    color: red;
    text-align: center;
    /*font-size: 20px;*/
}

.break_word {
    word-wrap: break-word;
}

.lock_position {
    position: absolute;
    top: 0;
    z-index: 100;
}

.lock_position.fixed-position {
    position: fixed;
}

#topLabels {
    text-align: right;
}

.clickable {
    cursor: pointer;
}

#topBar img {
    vertical-align: bottom;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}

.noPadding {
    padding: 0;
}

.required {
    color: red;
    font-weight: bold;
    /*font-size: 1.5em;*/
    text-align: left;
    padding-left: 2px;
}

.inputLabel {
    color: black;
    font-size: 0.75em;
    height: 15px;
    max-height: 15px;
    margin: 0px;
    margin-top: 2px;
    margin-left: -2px;
    position: absolute;
    display: none;
    /*text-decoration: underline;*/
}

@media (max-width: 991px) {
    .inputLabel {
        margin-left: 6px;
    }
}

.myInput {
    height: 45px;
}

.autoMargin {
    margin-right: auto;
    margin-left: auto;
}

.autoMargin > div,
.autoMargin > a > div {
    float: none !important;
    display: inline-block !important;
}

.buttonStyle1 {
    background-color: rgb(110, 180, 63);
    border-color: rgb(61, 132, 13);
    color: black;
}

.buttonStyle1:focus,
.buttonStyle1.focus {
    color: #ffffff;
    background-color: #5b7b2e;
    border-color: #5b7b2e;
}

.buttonStyle1:hover {
    color: #ffffff;
    background-color: #5b7b2e;
    border-color: #5b7b2e;
}

.buttonStyle1:active,
.buttonStyle1.active,
.open > .dropdown-toggle.buttonStyle1 {
    color: #ffffff;
    background-color: #5b7b2e;
    border-color: #5b7b2e;
}

.buttonStyle1:active:hover,
.buttonStyle1.active:hover,
.open > .dropdown-toggle.buttonStyle1:hover,
.buttonStyle1:active:focus,
.buttonStyle1.active:focus,
.open > .dropdown-toggle.buttonStyle1:focus,
.buttonStyle1:active.focus,
.buttonStyle1.active.focus,
.open > .dropdown-toggle.buttonStyle1.focus {
    color: #ffffff;
    background-color: #5b7b2e;
    border-color: #5b7b2e;
}

.buttonStyle1:active,
.buttonStyle1.active,
.open > .dropdown-toggle.buttonStyle1 {
    background-image: none;
}

.buttonStyle1.disabled,
.buttonStyle1[disabled],
fieldset[disabled] .buttonStyle1,
.buttonStyle1.disabled:hover,
.buttonStyle1[disabled]:hover,
fieldset[disabled] .buttonStyle1:hover,
.buttonStyle1.disabled:focus,
.buttonStyle1[disabled]:focus,
fieldset[disabled] .buttonStyle1:focus,
.buttonStyle1.disabled.focus,
.buttonStyle1[disabled].focus,
fieldset[disabled] .buttonStyle1.focus,
.buttonStyle1.disabled:active,
.buttonStyle1[disabled]:active,
fieldset[disabled] .buttonStyle1:active,
.buttonStyle1.disabled.active,
.buttonStyle1[disabled].active,
fieldset[disabled] .buttonStyle1.active {
    background-color: #80ad41;
    border-color: #80ad41;
}

.buttonStyle1 .badge {
    color: #80ad41;
    background-color: #80ad41;
}

.buttonStyle2 {
    background-color: #c9cacc;
    border-color: #a1a1a1;
    color: black;
}

.buttonStyle2:focus,
.buttonStyle2.focus {
    color: #ffffff;
    background-color: #6b6b6b;
    border-color: #6b6b6b;
}

.buttonStyle2:hover {
    color: #ffffff;
    background-color: #6b6b6b;
    border-color: #6b6b6b;
}

.buttonStyle2:active,
.buttonStyle2.active,
.open > .dropdown-toggle.buttonStyle2 {
    color: #ffffff;
    background-color: #6b6b6b;
    border-color: #6b6b6b;
}

.buttonStyle2:active:hover,
.buttonStyle2.active:hover,
.open > .dropdown-toggle.buttonStyle2:hover,
.buttonStyle2:active:focus,
.buttonStyle2.active:focus,
.open > .dropdown-toggle.buttonStyle2:focus,
.buttonStyle2:active.focus,
.buttonStyle2.active.focus,
.open > .dropdown-toggle.buttonStyle2.focus {
    color: #ffffff;
    background-color: #6b6b6b;
    border-color: #6b6b6b;
}

.buttonStyle2:active,
.buttonStyle2.active,
.open > .dropdown-toggle.buttonStyle2 {
    background-image: none;
}

.buttonStyle2.disabled,
.buttonStyle2[disabled],
fieldset[disabled] .buttonStyle2,
.buttonStyle2.disabled:hover,
.buttonStyle2[disabled]:hover,
fieldset[disabled] .buttonStyle2:hover,
.buttonStyle2.disabled:focus,
.buttonStyle2[disabled]:focus,
fieldset[disabled] .buttonStyle2:focus,
.buttonStyle2.disabled.focus,
.buttonStyle2[disabled].focus,
fieldset[disabled] .buttonStyle2.focus,
.buttonStyle2.disabled:active,
.buttonStyle2[disabled]:active,
fieldset[disabled] .buttonStyle2:active,
.buttonStyle2.disabled.active,
.buttonStyle2[disabled].active,
fieldset[disabled] .buttonStyle2.active {
    background-color: #80ad41;
    border-color: #80ad41;
}

.buttonStyle2 .badge {
    color: #6b6b6b;
    background-color: #6b6b6b;
}