﻿body {
    background-color: #fff;
    color: #666;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.75em;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.container>.navbar-header {
    margin: 5px;
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}
.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}
.navbar {
    position: relative;
    height: 130px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.navbar-header-full {
    background-color: #f3f3f3;
    background-image: none;
    box-shadow: none;
    border-top: solid 1px #ddd;
}
.center {
    align-content: center
}
.left {
    float: left;
}
.right {
    float: right;
}
.loginField {
    text-align: right;
}
.title {
    clear: left;
    font-size: 28px;
    padding: 10px;
    margin-left: 60px;
}
#loginRequiredDiv {
    padding: 10px;
    float: right;
}
#logoutDiv {
    padding: 10px;
    float: right;
    margin-top: -100px;
}
.warningMessage {
    background-color: darkred;
    color: navajowhite;
    float: right;
    padding: 5px;
    margin-top: -30px;
    margin-right: 10px;
}
.statusWindowHeader {
    margin:20px;
    padding:10px;
    font-size:24px;
    background-color: #e7e7e7;
    border-color: #a7a7a7;
} 
.statusWindowSubhead {
    font-size:16px;
} 
.statusWindow {
    margin:10px;
    font-size:12px;
} 
.rules {
    font-size:12px;
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */*/
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    /*width: 500px;*/
    /*float: left;*/
    white-space: nowrap;
    background-color: #c37744 ;
    color: #fff;
    text-align: left;
    font-size: 12px;
    padding: 5px;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 10%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}