﻿@font-face {
    font-family: "LCARS";
    src: url('fonts/swiss911B.eot?#iefix') format('embedded-opentype'), url('fonts/Swiss911B.ttf') format('truetype'), url('fonts/swiss911B.woff') format('woff'), url('fonts/swiss911B.svg') format('svg');
}
html, body {
    background-attachment: fixed;
    overflow-y:hidden;
    height:100%;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: black;
    color: #FFCC99;
    font-family: LCARS;
    font-size: 38px;
    min-height: calc(100% - 10px);
    padding: 5px 5px;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 20px);
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

li {
    float: left;
}

    li a, .dropbtn {
        font-family: LCARS;
        display: inline-block;
        height: 40px;
        width: 100px;
        background: #CC99CC;
        color: black;
        font-size: 16px;
        text-align: right;
        padding: 0 5px 0 5px;
        border-width: 0 0 0 0;
    }

        li a:hover, .dropdown:hover .dropbtn {
            background-color: gold;
            color: black;
        }

    li.dropdown {
        display: inline-block;
    }

.dropdown-content {
    display: none;
    font-size: 24px;
    position: absolute;
    background-color: black;
    min-width: 110px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0);
    max-height: 85%;
    border-color: black;
    overflow-y: auto;
    z-index: 15;
}

    .dropdown-content a {
        color: black;
        /*padding: 12px 16px; */
        padding: 0 5px 0 5px;
        text-decoration: none;
        display: block;
        text-align: right;
        margin: 5px 5px 5px 5px;
        background-color: #CC99CC;
        height: 40px;
    }

        .dropdown-content a:hover {
            background-color: #ff9900;
            color: black;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.datepod {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.halfCircleL {
    height: 40px;
    width: 20px;
    border-radius: 40px 0 0 40px;
    background: orange;
    margin: 5px 5px 5px 5px;
    display: inline-block;
    vertical-align: middle;
}

.titlebar {
    height: 60px;
    width: calc(100% - 300px);
    background: orange;
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px 0 3px;
}
.subtitlebar {
    height: 40px;
    vertical-align:middle;
    border-radius: 100px 0 0 0;
}
.subtitlebar, .subtitlebar2 {
    display: inline-block;
    margin: 0 3px 0 0;
}
.subtitlebar2 {
    height:80px;
    vertical-align:top;
    margin: 4px 3px 0 0;
}

.titletext {
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 5px;
}
.maintitletext {
    height: 60px;
    font-size: 60px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px 0 5px;
}
.halfCircleR {
    height: 40px;
    width: 20px;
    border-radius: 0 40px 40px 0;
    background: orange;
    margin: 5px 5px 5px 5px;
    display: inline-block;
    vertical-align: middle;
}

.dropdown {
    height: 40px;
    width: 100px;
    background: #CC6699;
    color: black;
    font-size: 16px;
    text-align: right;
    display: inline-block;
    vertical-align: middle;
}

.panelcontainer {
    width: calc(100% - 35px);
    /*margin: 3px 5px 3px 40px;*/
    margin: 0px 5px 0px 40px;
    display: inline-block;
}

.panelbracketcontainer {
    /*width: calc(100% - 10px);
    margin: 3px 5px 4px 5px;
    */
    width:100%;
    display: inline-block;
}

.panelframeaa, .panelframeba {
    float: left;
    width: 80%;
    height: 75px;
    background-color: lightgoldenrodyellow;
    border-radius: 0 0 0 100px;
}

.panelframeabracket, .panelframebbracket {
    float: left;
    width: 50%;
    /*height: 295px;*/
    height: calc(100% - 5px);
    background-color: #9999CC;
    margin: 0 0 0 0;
}
.panelframeabracket {
    border-radius: 0 0 0 100px;
}
.panelframebbracket {
    position:relative;
    top:-5px;
    border-radius: 0 0 0 0;
}
.panelframeaa {
    border-radius: 0 0 0 100px;
}

.panelframeba {
    border-radius: 100px 0 0 0;
}

.panelframeab, .panelframebb {
    float: right;
    width: calc(20% - 5px);
    height: 75px;
    font-size: 14px;
    color: black;
}

.panelframeab {
    background-color: #FFCC99;
    position: relative;
}

.panelframebb {
    background-color: #CC99CC;
}

.panelsidebtncon {
    float: left;
    width: calc(((100% - 45px)*.1));
    margin: 6px 0 0 40px;
}

.panelbuttona {
    display: block;
    font-family: LCARS;
    height: 40px;
    width: 100%;
    background: goldenrod;
    color: black;
    font-size: 18px;
    text-align: right;
    padding: 5px 5px 5px 5px;
    border-width: 0 0 0 0;
    border-style: none;
    animation: blinker 2s linear infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blinker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
.newsfeed {
    overflow:hidden;
    margin: 0 auto;
    height: 52px;
    line-height:.5em;
    vertical-align: middle;
    display: inline-block;
    animation: typing 1.7s steps(40, end);
}
.newsfeedtext {
    text-decoration: none;
    font-size: 24px;
    color: lightblue;
}
.newsfeedtextbox{
    padding:5px 5px 5px 5px;
    position:relative;
}
.panelside, .panelsidetop {
    vertical-align: bottom;
    text-align: right;
    font-size: 10px;
    color: black;
    background-color: lightgoldenrodyellow;
    width: calc(100% - 10px);
    padding: 5px 5px 5px 5px;
    border-width: 0 0 0 0;
    margin: 3px 0 0 0;
}
.panelside {
    /*min-height: 200px;*/
    min-height:244px;
}
.panelsidetop {
    border-radius: 100px 0 0 0;
    min-height:100px;
}

.panelblacka, .panelblackb {
    position: relative;
    left: 10%;
    width: 90%;
    height: 55px;
    background-color: black;
    text-align: center;
}

.panelblackabracket, .panelblackbbracket {
    position: relative;
    left:calc(10% + 5px);
    width: 40%;
    background-color: black;
    text-align: center;
}

.panelblacka {
    top: 0;
    border-radius: 0 0 0 100px;
}

.panelblackb {
    top: 20px;
    border-radius: 100px 0 0 0;
}

.panelblackabracket {
    top: 0;
    /*height: 280px;*/
    height:calc(100% - 25px);
    border-radius: 0 0 0 100px;
}

.panelblackbbracket {
    border-radius: 100px 0 0 0;
    top: -5px;
    height: calc(100% - 5px);
}
.activepanel {
    width: 100%;
}

.paneltext {
    min-height: 356px;
    display: table;
    width: calc(((100% - 45px)*.9));
    text-align: center;
    vertical-align: middle;
    color: lightgrey;
}

.formbuttonstyle, .submitbuttonstyle1, .submitbuttonstyle2, .submitbuttonstyle3, .submitbuttonstyle4, .submitbuttonstyle11, .submitbuttonstyle21, .submitbuttonstyle31, .submitbuttonstyle12, .submitbuttonstyle22, .submitbuttonstyle32, .submitbuttonstyle13 {
    border-radius: 40px 40px 40px 40px;
    font-family: LCARS;
    color: black;
    height: 50px;
    border-style: none;
    margin: 5px 5px 5px 5px;
    font-size: 22px;
    position: relative;
    bottom: 0;
}

.formbuttonstyle {
    background-color: #CC6699;
    width: 300px;
    padding: 0 20px 0 20px;
}

.submitbuttonstyle1, .submitbuttonstyle2, .submitbuttonstyle3, .submitbuttonstyle4, .submitbuttonstyle11, .submitbuttonstyle21, .submitbuttonstyle31, .submitbuttonstyle12, .submitbuttonstyle22, .submitbuttonstyle32, .submitbuttonstyle13 {
    width: 200px;
    padding: 5px 20px 5px 20px;
    text-align: right;
    cursor: pointer;
}

.submitbuttonstyle1 {
    background-color: #FFCC99;
}

.submitbuttonstyle2 {
    background-color: #CC99CC;
}

.submitbuttonstyle3 {
    background-color: #0094ff;
}

.submitbuttonstyle4 {
    background-color: #99ccff;
}

.submitbuttonstyle11 {
    background-color: #ccfff2;
}
.submitbuttonstyle21 {
    background-color: #cce6ff;
}
.submitbuttonstyle31 {
    background-color: #ccccff;
}
.submitbuttonstyle12 {
    background-color: #99ffe6;
}
.submitbuttonstyle22 {
    background-color: #99ccff;
}
.submitbuttonstyle32 {
    background-color: #9999ff;
}
.submitbuttonstyle13 {
    background-color: #66ffd9;
}
::-webkit-scrollbar{
    visibility:hidden;
    width:5px;
    background-color:chocolate;
}
/*::-webkit-scrollbar-button {
    background-color: goldenrod;
}

::-webkit-scrollbar-thumb {
    background-color: gold;
    border-radius: 5px 5px 5px 5px;
}

    ::-webkit-scrollbar-thumb:vertical {
        height: 20px;
    }*/
