﻿body {
    background-color: black;
}

@font-face {
    font-family: Segoe Script;
    src: url(/fonts/segoesc.ttf);
}

/*Bootstrap overrides*/

/*.item {
    height: 100%;
}*/

/*.carousel {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

    .carousel .carousel-inner {
        height: 100%;
    }*/

.navbar-nav {
    float:right !important;
}

.mainLogo {
    width: 250px;
}

.navbar-inverse {
    background-color: #000 !important;
}


.navbar-nav > li > a {
    float: right;
    text-decoration: none;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    color: white;
    font-size: 18px;
    font-family: 'Segoe Script';
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .navbar-nav > li > a:hover, .selectedHeader {
        /*background-color: white;*/
        /*color: red;*/
        color: white !important;
    }

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

footer {
    position: fixed;
    bottom: 0px;
    height: 20px;
    left: 0px;
    right: 0px;
    background-color: black;
    color: white;
}

.mainContent {
    position: absolute;
    top: 50px;
    left: 0px;
    right: 0px;
    bottom: 20px;
    background-color: darkgray;
    overflow: hidden;
}

.pageInfoCtr {
    position: absolute;
    height: 100%;
    left: 30%;
    width: 70%;
    color: white;
    font-family: Calibri;
    font-size: 16px;
    text-align: right;
    background: linear-gradient(to left, black, transparent);
    overflow: auto;
    /*border:1px solid red;*/
}

.pageInfo {
    position: absolute;
    width: calc(70% - 40px);
    right: 20px;
    margin-top: 20px;
}

.sideMenu {
    position: fixed;
    /*max-width: 200px;*/
    top: 50px;
    float: left;
    text-decoration: none;
    height: 100%;
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    color: white;
    font-size: 20px;
    font-family: 'Segoe Script';
    /*background-image:url('../images/SideMenuBg.png');
    background-position-x:right;*/
    /*background: linear-gradient(to right, black, transparent);*/
}

    .sideMenu .sideMenuLink:hover, .sideMenuSelected {
        /*background-color: white;*/
        color: red;
    }

.sideMenuLink {
    display: block;
    cursor: pointer;
}

    .sideMenuLink a {
        color: white;
    }

.mobileShow {
    display: none;
}

@media (min-width: 1200px) {
    .container {
        width: calc(100% - 100px);
    }
}

@media (max-width: 768px) {
    .sideMenu {
        display: none;
    }
    .mobileHide {
        display:none;
    }
    .mobileShow {
        display: block;
    }
}