html, body {
    height: 100%;
}

body {
    font-family: "Arial Bold", Helvetica, sans-serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    background-color: rgb(239,239,239);
    overflow: hidden;
}

h1 {
    font-size: 24px;
    font-weight: bold;    
}

h2 {
    font-size: 18px;
    font-weight: bold;    
}

h3 {
    font-size: 16px;
    /* font-weight: bold;     */
}

ul.outline {
    padding-left: 16px;
    list-style: none outside none;
    /* list-style-type: circle; */
}

/* Make text in element selectable */
.selectable-text {
    -webkit-user-select: text;
     -khtml-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
}

/* App level menu bar */
#menu-bar1 {
    position: relative;
    height: 40px;
    min-width: 600px;
    /* Firefox v3.6+ */
    background-image:-moz-linear-gradient(rgb(80,80,80) 0%,rgb(39,39,39) 100%); 
    /* safari v4.0+ and by Chrome v3.0+ */
    background-image:-webkit-gradient(linear,color-stop(0, rgb(80,80,80)),color-stop(1, rgb(39,39,39)));
    /* Chrome v10.0+ and by safari nightly build*/
    background-image:-webkit-linear-gradient(rgb(80,80,80) 0%,rgb(39,39,39) 100%);
    /* Opera v11.10+ */
    background-image:-o-linear-gradient(rgb(80,80,80) 0%,rgb(39,39,39) 100%);
    /* IE v10+ */
    background-image:-ms-linear-gradient(rgb(80,80,80) 0%,rgb(39,39,39) 100%);
    background-image:linear-gradient(rgb(80,80,80) 0%,rgb(39,39,39) 100%);
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff505050,endColorstr=#ff272727)";
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff505050,endColorstr=#ff272727);
    /* padding-right: 6px; */
    z-index: 100;
}

.sub-menu-bar {
/*    width: 50%;*/
    background-color: inherit;
    height: inherit;
}

.menu-bar-txt1 {
    margin-right: 6px;
    float: right;
    font-size: 12px;
    font-weight: bold;
    line-height: 40px;
    color: white;
}

.menu-bar-icon1 {
    padding-top: 12px;
    margin-right: 4px;
    margin-left: 4px;
    float: right;
}

.menu-bar-link1 {
    background-image: inherit;
    border: 0 solid black;
    color: white;
    filter: inherit;
    font-size: 12px;
    font-weight: bold;
    height: inherit;
    line-height: 40px;
    margin-right: 4px;
    position: relative;
    text-align: center;
    width: 108px;
    float: right;
    margin-left: 4px;
    margin-right: 4px;
}

.menu-bar-btn1 {
    position: relative;
    width: 108px;
    height: inherit;
    float: left;
    background-image: inherit;
    -ms-filter: inherit;
    filter: inherit;
    color: white;
    border: 0 solid black;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
/*    margin-top: 0.5em;*/
    margin-right: 4px;
    cursor: pointer;
}

.menu-bar-btn1:hover {
    /* Firefox v3.6+ */
    background-image:-moz-linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%); 
    /* safari v4.0+ and by Chrome v3.0+ */
    background-image:-webkit-gradient(linear,color-stop(0, rgb(34,34,34)),color-stop(1, rgb(51,51,51)));
    /* Chrome v10.0+ and by safari nightly build*/
    background-image:-webkit-linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%);
    /* Opera v11.10+ */
    background-image:-o-linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%);
    /* IE v10+ */
    background-image:-ms-linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%);
    background-image:linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%);
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff222222,endColorstr=#ff333333)";
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff222222,endColorstr=#ff333333);
}

.menu-bar-btn1-chosen {
    position: relative;
    width: 108px;
    height: inherit;
    float: left;
    /* Firefox v3.6+ */
    background-image:-moz-linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%); 
    /* safari v4.0+ and by Chrome v3.0+ */
    background-image:-webkit-gradient(linear,color-stop(0, rgb(34,34,34)),color-stop(1, rgb(51,51,51)));
    /* Chrome v10.0+ and by safari nightly build*/
    background-image:-webkit-linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%);
    /* Opera v11.10+ */
    background-image:-o-linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%);
    /* IE v10+ */
    background-image:-ms-linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%);
    background-image:linear-gradient(rgb(34,34,34) 0%,rgb(51,51,51) 100%);
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff222222,endColorstr=#ff333333)";
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff222222,endColorstr=#ff333333);

    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    margin-right: 4px;
    cursor: pointer;
}

.btn1-selector {
    position: absolute;
    top: 45%;
    left: 45%;
    color: rgb(239,239,239);
    font-size: 16px;
}


/******************************
 * Panels
 ******************************/

#main-panel {
    position: absolute;
    min-width: 600px;
    top: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #F0F0EE;
    overflow-y: auto;
}

#left-panel {
    position: relative;
    float: left;
    width: 20%;
    height: 100%;
    background-color: green;
}

#center-panel {
    position: relative;
    float: left;
    width: 60%;
    height: 100%;
    background-color: white;
}

#right-panel {
    position: relative;
    float: right;
    width: 20%;
    height: 100%;
    background-color: green;
}

.center-title {
    height: 40px;
    line-height: 40px;
    font-size: 36px;
    font-weight: bold;
}


/******************************
 * Links
 ******************************/

/* a:link, a:visited { */
a {
    font-weight: none;
    text-decoration: none;
    outline: none;
    /* color: white; */
    /* color: inherit; */
}

.text-link {
    color: rgb(4, 108, 166);   /* blue */
    font-size: 12px;
    cursor: pointer;
}

.text-link:hover {
    /* color: rgb(2, 54, 83); */
    color: rgb(50, 144, 19);   /* green */
}

table {
    border: 2px solid black;
    border-spacing: 10;
}

thead {
    /* border: 2px solid black; */
    font-weight: bold;
}

th, td {
    padding: 4px;
    /* border: 1px solid black; */
}

.table-link {
    color: rgb(4, 108, 166);
    cursor: pointer;
}

.table-link:hover {
    /* color: rgb(2, 54, 83); */
    color: rgb(50, 144, 19);
}
