﻿html, body, form {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    display: block;
}

textarea {
    font-family: inherit;
    font-size: inherit;
}

.navbar {
    width: 100%;
    background-color: black;
    /*height: 10%;*/
    display: block;
    min-height: 90px;
}

.navbar ul {
    list-style: none;
    width: 80%;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 1px;
    left: 1px;
}

    .navbar ul li {
        display: inline;
        /*padding: 15px 15px 15px 15px;*/
        padding-right: 30px;
    }

        .navbar ul li a {
            text-decoration: none;
            color: white;
        }

        .navbar ul li a:hover {
            font-weight: bold;
        }

.navbar tr:hover td {
    background-color: transparent;
}

.navbarloggedin {
    /*float:right*/;
    display: inline-block;
    color: white;
    padding-right: 5px;
}

.bodycontentheader {
    margin-left: 10%;
    width: 80%;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: #eee;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 80%;
    display: block;
}

    .bodycontentheader h1, .bodycontentheader .offsetdiv60 {
        margin-left: 60px;
    }

.offset60 {
    margin-left: 60px;
}

.offset15 {
    margin-left: 15px;
}

.bodycontent {
    margin-left: 10%;
    width: 80%;
    height: 80%;
    display: block;
}

.copyright {
    position: absolute;
    bottom: 0px;
    margin-left: 10%;
    width: 80%;
    font-size: 12px;
    height: 10%;
    display: block;
}

    .copyright hr {
        width: 100%;
        color: #eee;
    }

.ItemTitle {
    font-size: large;
    color: gray;
}

.ItemText {
    font-size: large;
    color: black;
}

.buttoncontainer {
    float: right;
}

.modebutton, .button {
    display: inline-block;
    padding: 5px 8px 5px 8px;
    border-radius: 6px;
    background-color: #337ab7;
    margin-right: 15px;
    cursor: pointer;
}

    .modebutton a, .button a {
        color: white !important;
        text-decoration: none;
    }

.Xbuttondisabled {
    display: inline-block;
    padding: 5px 8px 5px 8px;
    border-radius: 6px;
    background-color: lightsteelblue;
    margin-right: 15px;
    cursor: default;
}

.elipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon {
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.disabled {
    pointer-events: none;
    cursor: default;
}

.hidden {
    display: none;
}

.floatclear {
    float: none;
    clear: both
}

.input {
    font-size: 12px;
}

.sort {
    text-decoration: underline;
    cursor: pointer;
}

.hint {
    cursor: pointer;
}

.pagelink {
    color: #337ab7 !important;
    text-decoration: none;
    font-size: 8pt;
    display: inline-block;
    margin-right: 15px;
    cursor: pointer;
}
.pagelink:hover {
    text-decoration: underline;
}
.popupmenu {
    background-color: white;
    z-index: 9999;
}

.spinner {
    z-index: 100000;
    position: absolute;
    margin-top: 10%;
    margin-left: 35%;
}

h1 {
    color: black;
    margin: 20px 0px 15px 0px;
    font-weight: 200
}
h2 {
    color: black;
    margin: 5px 0px 10px 0px;
    font-weight: 200
}

.contentdetail {
    height: 100%;
    width: 100%;
    box-sizing: content-box;
    overflow-y: auto;
}

/*TABS*/

.tbContainer {
    height: 100%;
    width: 100%;
    background-color: white;
}

.tbButtons {
    width: 100%;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid gray;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding-left: 5px;
    padding-top: 5px;
    padding-right: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .tbButtons ul {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .tbButtons li {
        display: inline-block;
        background-color: rgb(210,210,210);
        line-height: 30px;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        padding-left: 5px;
        padding-right: 5px;
        cursor: pointer;
    }

        .tbButtons li[selected=selected] {
            background-color: rgb(51,122,183);
            cursor: default;
        }

    .tbButtons a {
        height: 30px;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        color: white
    }
.tbPanels {
    height: calc(100% - 35px);
}
.tbPanel {
    height: 100%;
    width: 100%;
    display: none;
    border-left: 1px solid gray;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    overflow-x: auto;
    overflow-y: auto;
    resize: none;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow: overlay;
    padding: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .tbPanel[selected=selected] {
        display: block;
    }