/* Minification failed. Returning unminified contents.
(37,18): run-time error CSS1039: Token not allowed after unary operator: '-bs-border-width'
(37,47): run-time error CSS1039: Token not allowed after unary operator: '-bs-border-color'
(40,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-warning'
(41,28): run-time error CSS1039: Token not allowed after unary operator: '-bs-gray-600'
 */
/* All page settings */
html {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,.004);
    position: relative;
    min-height: 100%;
}
body {
    font-weight: normal;
    font-style: normal;
    line-height: normal;
}

img {
    border: 0 none;
    vertical-align: middle;
}

.hide {
    display: none;
}

.fs-tiny {
    font-size: calc(.5rem + .3vw);
}

/* 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;
}

/* Give bootstrap a tertiary color for buttons that matches the border of inputs */
.btn-outline-tertiary {
    border: var(--bs-border-width) solid var(--bs-border-color);
}
.btn:hover.btn-outline-tertiary {
    color: var(--bs-warning);
    background-color: var(--bs-gray-600);
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
.reset-sizing input,
.reset-sizing select,
.reset-sizing textarea {
    max-width: inherit;
    font-size: 0.85rem;
}

footer {
    color: #FFF;
    font-size: 0.75rem;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}
footer a,
footer a:hover, 
footer a:link {
    color: #FFF;
}

.white-text-shadow {
    color: #fff;
    -ms-text-shadow: 0 0 20px #9a9a9a;
    -ms-text-shadow: 0 0 20px rgba(0,0,0,.4);
    text-shadow: 0 0 20px #9a9a9a;
    text-shadow: 0 0 20px rgba(0,0,0,.4);
}

#page div#logo {
    background-image: url('/Content/images/site/logo.jpg');
    height: 5vw;
    min-height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 10vw;
    min-width: 80px;
    background-position-y: bottom;
}

/* Page-specific styles*/
#page #index .image-area {
    min-height: 2vw;
}
#page #index .image-area > img {
    width: 100%;
    height: auto;
}
#page #index .image-content-area {
    position: absolute;
    background-image: url('/Content/images/site/shader.png');
    background-color: transparent;
    top: inherit;
    bottom: 10%;
    padding-left: 16px;
    padding-right: 16px;
    z-index: 1;
}

.animation-blink {
    animation-name: blinker;
    animation-delay: 0.15s;
    animation-timing-function: ease;
    animation-duration: 1.25s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes blinker {
    0% { opacity: 1.0;}
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

/* Smaller screens */
@media screen and (max-width: 767px) {
    body {
        font-size: .85rem;
    }
}

/* Larger screens */
@media screen and (min-width: 768px) {

}

