﻿/*Standard styles*/
* {
    padding: 0;
    margin: 0;
}

body::-webkit-scrollbar, ::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb, ::-webkit-scrollbar-thumb {
    background-color: #6e6e6e;
    outline: 1px solid #333;
}

/* Overall structure of the page */


/* The header contains the menu, logo, and similar elements */

.header {
    position: fixed;
    height: 140px;
    left: 0;
    right: 0;
    z-index: 100000;
    background-color: rgb(226, 50, 56);
    -ms-transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s;
    -moz-transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s; /* Firefox 4 */
    -webkit-transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s; /* Safari and Chrome */
    -o-transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s; /* Opera */
    transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s;
}

    .header.showMobileMenu {
        left: 250px;
        right: -250px;
    }

    .header.scrolled {
        height: 50px;
    }

    .header .logo {
        float: left;
        margin: 30px 0 0 10px;
        max-width: 280px;
        max-height: 85px;
        -ms-transition: margin .3s, width .3s, height .3s, max-width .3s, max-height .3s;
        -moz-transition: margin .3s, width .3s, height .3s, max-width .3s, max-height .3s; /* Firefox 4 */
        -webkit-transition: margin .3s, width .3s, height .3s, max-width .3s, max-heightall .3s; /* Safari and Chrome */
        -o-transition: margin .3s, width .3s, height .3s, max-width .3s, max-height .3s; /* Opera */
        transition: margin .3s, width .3s, height .3s, max-width .3s, max-height .3s;
        overflow: hidden;
    }

    .header.scrolled .logo {
        margin: 5px 0 0 10px;
        max-height: 40px;
    }

    .header .menu {
        display: block;
        max-height: 110px;
        margin-left: 280px;
        margin-right: 20px;
        margin-top: 35px;
        -ms-transition: margin .3s, width .3s, height .3s, max-width .3s, max-height .3s;
        -moz-transition: margin .3s, width .3s, height .3s, max-width .3s, max-height .3s; /* Firefox 4 */
        -webkit-transition: margin .3s, width .3s, height .3s, max-width .3s, max-height .3s; /* Safari and Chrome */
        -o-transition: margin .3s, width .3s, height .3s, max-width .3s, max-height .3s; /* Opera */
        transition: margin .3s, width .3s, height .3s, max-width .3s, max-height .3s;
    }

    .header.scrolled .menu {
        display: block;
        max-height: 50px;
        margin-left: 150px;
        margin-right: 20px;
        margin-top: 15px;
    }

    .header .menu ul {
        font-size: 1.1em;
        float: right;
        font-weight: 200;
    }

        .header .menu ul li {
            float: left;
            list-style-type: none;
            margin: 0 4px 0 0;
        }

            .header .menu ul li a {
                padding: 5px 10px;
                color: white;
            }

                .header .menu ul li a:hover {
                    text-decoration: none;
                }

            .header .menu ul li .subMenu ul li:hover {
                background-color: #03142e;
                background-color: rgba(8, 57, 129, 0.5);
            }

    .header .subMenu {
        display: none;
        clear: both;
        padding: 0;
        margin: 15px 0 0 -10px;
        position: fixed;
        background-color: rgb(64, 64, 64);
        -webkit-box-shadow: 0 0 2px 2px #c5c5c5;
        -webkit-box-shadow: 0 0 2px 2px rgba(197, 197, 197, 0.3);
        -ms-box-shadow: 0 0 2px 2px #c5c5c5;
        -ms-box-shadow: 0 0 2px 2px rgba(197, 197, 197, 0.3);
        box-shadow: 0 0 2px 2px #c5c5c5;
        box-shadow: 0 0 2px 2px rgba(197, 197, 197, 0.3);
        -ms-border-radius: 10px;
        border-radius: 6px;
        font-size: 9pt;
    }

    .header .visibleSubMenu {
        display: block;
    }

    .header .subMenu ul {
        margin-top: 6px;
        margin-bottom: 6px;
    }

        .header .subMenu ul li {
            float: none !important;
            margin: 0 !important;
            padding: 8px 10px 8px 5px !important;
        }

            .header .subMenu ul li:hover {
                background-color: #585858;
                background-color: rgba(255,255,255,.15);
            }

    .header .mobileMenuIcon {
        display: none;
        float: left;
        cursor: pointer;
        margin: 16px 10px;
        color: white;
        font-size: 1.2em;
    }

.mobileMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    bottom: 0;
    background-color: rgb(39, 39, 39);
    color: white;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    z-index: -1;
    padding-right: 10px;
}

    .mobileMenu.showMobileMenu {
        display: block;
    }

    .mobileMenu ul li .subMenu {
        display: block;
        width: 285px;
        padding: 5px 0 5px 0;
    }

        .mobileMenu ul li .subMenu ul {
            list-style: none;
            padding-left: 0;
            padding-top: 5px;
            margin: 0;
            width: 200px;
        }

            .mobileMenu ul li .subMenu ul li {
                border-bottom: 0;
                padding: 7px 0 7px 20px;
                margin-left: 0;
            }

    .mobileMenu ul {
        list-style: none;
        padding-left: 0;
        padding-top: 5px;
    }

        .mobileMenu ul li {
            list-style: none;
            text-indent: 0;
            margin-left: 0;
            margin-top: 0;
            padding: 9px 0 9px 15px;
            font-weight: 300;
            font-size: 11pt;
            min-height: 25px;
            font-family: Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
            cursor: pointer;
        }

            .mobileMenu ul li a, .mobileMenu ul li a:visited, .mobileMenu ul li a:hover {
                color: white;
                text-decoration: none;
            }

            .mobileMenu ul li.neutralMenuSelected {
                border-left: 4px solid rgb(8, 57, 129);
                background-color: #03142e;
                background-color: rgba(8, 57, 129, 0.2);
            }

            .mobileMenu ul li.neutralMenu:hover {
                border-left: 4px solid rgb(8, 57, 129);
                padding: 9px 20px 9px 11px;
            }

/* Right sidebar */

.sidebar {
    position: fixed;
    right: 5px;
    width: 275px;
    top: 160px;
    bottom: 50px;
    overflow-y: auto;
    -ms-transition: margin .3s, width .3s, top .3s, left .3s, right .3s, bottom .3s, height .3s, max-width .3s, max-height .3s;
    -moz-transition: margin .3s, width .3s, top .3s, left .3s, right .3s, bottom .3s, height .3s, max-width .3s, max-height .3s; /* Firefox 4 */
    -webkit-transition: margin .3s, width .3s, top .3s, left .3s, right .3s, bottom .3s, height .3s, max-width .3s, max-height .3s; /* Safari and Chrome */
    -o-transition: margin .3s, width .3s, top .3s, left .3s, right .3s, bottom .3s, height .3s, max-width .3s, max-height .3s; /* Opera */
    transition: margin .3s, width .3s, top .3s, left .3s, right .3s, bottom .3s, height .3s, max-width .3s, max-height .3s;
}

    .sidebar.scrolled {
        top: 70px;
    }

    .sidebar ul {
        list-style-image: none;
        list-style-position: outside;
        list-style-type: none;
    }

    .sidebar li {
        font-size: 9pt;
        line-height: 18px;
        padding-top: 5px;
        padding-left: 10px;
        padding-bottom: 5px;
        margin-left: 5px;
        margin-top: 0px;
        margin-bottom: 0px;
        border-left: 1px solid #dddddd;
    }

        .sidebar li a:link {
            cursor: pointer;
            text-decoration: none;
            color: black;
        }

        .sidebar li a:visited {
            cursor: pointer;
            text-decoration: none;
            color: black;
        }

        .sidebar li a:hover {
            cursor: pointer;
            text-decoration: none;
            color: rgb(8, 57, 129);
        }

        .sidebar li.outlineLevel1 {
            font-weight: bold;
        }

        .sidebar li.outlineLevel2 {
            padding-left: 20px;
        }

        .sidebar li.outlineLevel3 {
            padding-left: 30px;
        }

/* Page Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    color: rgb(201, 201, 201);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: margin, width, top, left, right, bottom, height, max-width, max-height .3s;
    -ms-transition: margin, width, top, left, right, bottom, height, max-width, max-height .3s;
    -moz-transition: margin, width, top, left, right, bottom, height, max-width, max-height .3s; /* Firefox 4 */
    -webkit-transition: margin, width, top, left, right, bottom, height, max-width, max-height .3s; /* Safari and Chrome */
    -o-transition: margin, width, top, left, right, bottom, height, max-width, max-height .3s; /* Opera */
}

    .footer.showMobileMenu {
        left: 250px;
        right: -250px;
    }


/* Tablets Portrait or Landscape */
@media only screen and (max-width: 1150px) {
    .header .menu {
        display: none !important;
    }

    .header {
        height: 50px;
    }

    .top-header {
        top: 50px !important;
    }

        .top-header h1 {
            font-size: 24pt !important;
        }

    .header .logo {
        margin: 5px 0 0 10px;
        max-height: 40px;
    }

    .header .mobileMenuIcon {
        display: block !important;
    }

    .toc {
        display: none;
    }

    .content-container {
        margin-left: 0;
        padding-top: 150px;
        background-color: white;
        -ms-transition: padding-top .3s;
        -moz-transition: padding-top .3s; /* Firefox 4 */
        -webkit-transition: padding-top .3s; /* Safari and Chrome */
        -o-transition: padding-top .3s; /* Opera */
        transition: padding-top .3s;
    }

    .footer.scrolled {
        display: none;
    }

    blockquote {
        padding: 16px 20px 8px 20px !important;
        margin: 24px 0 !important;
    }
}

a:link {
    color: #034af3;
    text-decoration: none;
}

a:visited {
    color: #034af3;
}

a:hover {
    color: #1d60ff;
    text-decoration: underline;
}

a:active {
    color: #12eb87;
}

body {
    background-color: white;
    font-size: 11pt;
    font-family: Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
    margin: 0;
    padding: 0;
    color: Black;
    overflow-x: hidden;
}


p {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 12pt;
}

ul, ol {
    margin-bottom: 20px;
    line-height: 1.3em;
}

li {
    margin-top: .5em;
    margin-left: 25px;
    text-align: left;
}

img {
    border: 0;
}

table {
    width: 100%;
    overflow: auto;
    display: block;
    border-spacing: 0;
    border-collapse: collapse;
    margin: 15px 0;
    border-color: gray;
}


td, th {
    border: 1px solid #ddd;
    padding: 6px 13px;
    display: table-cell;
    vertical-align: top;
}

th {
    font-weight: bold;
    color: white;
    background: #555;
}

tbody > tr:nth-child(even) {
    background: #eee;
}

blockquote {
    color: #333;
    background-color: #e23238;
    background-color: rgba(226, 50, 56, .05);
    border-left: 8px solid rgb(226, 50, 56);
    padding: 16px 32px 8px 24px;
    margin: 24px 16px;
}

/* Main content area */

.content-container {
    padding-top: 250px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 100px;
    overflow-x: hidden;
    -ms-transition: top .3s, margin-left .3s, margin-right .3s;
    -moz-transition: top .3s, margin-left .3s, margin-right .3s; /* Firefox 4 */
    -webkit-transition: top .3s, margin-left .3s, margin-right .3s; /* Safari and Chrome */
    -o-transition: top .3s, margin-left .3s, margin-right .3s; /* Opera */
    transition: top .3s, margin-left .3s, margin-right .3s;
}

    .content-container.showMobileMenu {
        margin-left: 250px;
        margin-right: -250px;
    }

    .content-container pre {
        margin-top: 25px;
        margin-bottom: 25px;
    }

        .content-container pre code.hljs {
            overflow-x: auto;
            overflow-y: hidden;
            padding-left: 8px;
            padding-right: 8px;
        }

    .content-container h1 {
        color: #1e88e5;
        font-family: Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
        font-weight: 300;
        font-size: 32pt;
        margin-top: 40px;
        margin-bottom: 30px;
    }


    .content-container h2 {
        color: #1e88e5;
        font-family: Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
        font-weight: 300;
        font-size: 20pt;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .content-container h3 {
        color: #525252;
        font-family: Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
        font-weight: 300;
        font-size: 1.6em;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .content-container p {
        line-height: 1.7;
        text-align: justify;
    }

    .content-container li {
        line-height: 1.7;
    }

    .content-container img {
        max-width: 100%;
        margin-top: 20px;
        margin-top: 20px;
    }

.top-header {
    margin: 0;
    padding: 30px 30px 40px 30px;
    background-color: rgb(226, 50, 56);
    position: fixed;
    top: 140px;
    left: 0;
    right: 0;
     z-index: 100000;
   -ms-transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s, top .3s;
    -moz-transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s, top .3s; /* Firefox 4 */
    -webkit-transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s, top .3s; /* Safari and Chrome */
    -o-transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s, top .3s; /* Opera */
    transition: height .3s, margin-left .3s, margin-right .3s, left .3s, right .3s, top .3s;
}

    .top-header.scrolled {
        top: 50px;
    }

    .top-header h1 {
        line-height: .9em;
        font-weight: bold;
        font-size: 32pt;
        text-align: right;
        color: white;
        max-width: 850px;
        float: right;
    }

    .top-header.showMobileMenu {
        left: 250px;
        right: -250px;
    }


.imageFeature {
    width: 100%;
    height: 625px;
    overflow: hidden;
}

.feature_1 {
    float: left;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 30px;
}

div.bulletHost {
    margin: 0 auto;
    padding: 0;
}

div.unselectedBullet {
    margin: 6px 11px;
    padding: 0;
}

div.selectedBullet {
    margin: 6px 11px;
    padding: 0;
}

div.bulletHost {
    margin: 0 auto;
    padding: 0;
    clear: both;
}

div.selectedBullet {
    width: 10px;
    height: 10px;
    border: 1px solid rgb(118, 121, 124);
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: transparent;
    margin: 5px 10px;
    padding: 0;
    float: left;
    cursor: pointer;
}

div.unselectedBullet {
    width: 8px;
    height: 8px;
    border: 1px solid transparent;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: rgb(118, 121, 124);
    margin: 6px 11px;
    padding: 0;
    float: left;
    cursor: pointer;
}

.separator {
    padding-top: 50px;
    padding-bottom: 60px;
}

.content-container div.separator {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

.feature_1 p {
    font-size: 12pt;
    color: #1e88e5;
}

ul.feature-list li {
    list-style-type: none;
}

div.feature-list-bullet {
    background-color: #1e88e5;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 6px 8px 0 0;
    float: left;
}

a.no-highlight-link:link {
    color: black;
}
a.no-highlight-link:visited {
    color: black;
}
a.no-highlight-link:hover {
    color: black;
}