:root{
    --command-container-background: rgba(180, 180, 255, 0.05);
    --command-container-border-fx: rgba(51,102,153,1);
    --command-container-blur: 6px;
    --pwt-blue: #336699;
    --pwt-active: #daa520;
    --pwt-bgcolor: #000000;
    --pwt-menuText: #ffffff;
}

html, body {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: 'Encode Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

input, text, textArea, select{
    color: var(--pwt-blue);
    font-size: 1.25em;
    outline: none;
}

table{
    position: relative;
    width: 100%;
    border: 1px dashed var(--pwt-active);
    border-collapse: collapse;
}

tr{
    border: 1px dashed var(--pwt-active);
    border-collapse: collapse;
}

tr:nth-child(){
    background-color: #cccccc;
}

tr td:first-child{
    text-align: center;
    font-weight: bold;
}


.blueText{
    color:var(--pwt-blue);
}
.redText{
    color: #cc0000;
}
.goldText{
    color:var(--pwt-active);
}

a:link{
    text-decoration: none;
    color: var(--pwt-active);
}

a:visited{
    text-decoration: none;
    color: var(--pwt-active);
}
a:hover{
    text-decoration: none;
    color:var(--pwt-active);
}
a:active{
    text-decoration: none;
    color:var(--pwt-active);
}

.statusFX2D_Blue{
    border-color: rgba(49, 131, 224, 0.1);
    box-shadow:
     0 0 1px 1px rgba(30, 184, 255, 0.6);
}

.statusFX2D_Green{
    border-color: rgba(62, 247, 15, 0.6);
    box-shadow:
    0 0 1px 1px rgba(38, 230, 12, 0.6),
}

.statusFX2D_Red{
    border-color: rgba(241, 5, 5, 0.3);
    box-shadow:
     0 0 1px 1px rgba(241, 5, 5, 0.7),
}

.statusFX2D_Yellow{
    border-color: rgba(254, 216, 2, 0.5);
    box-shadow:
     0 0 1px 1px rgba(253, 249, 8, 0.2),
}

.statusFX2D_Black{
    border-color: rgba(90, 12, 235, 0.4);
    box-shadow:
     0 0 1px 1px rgba(66, 10, 64, 1),
}

/* Main Holder for the Canvas and Menu */
#renderCanvas {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    right: 0px;
    -webkit-tap-highlight-color: transparent;
}


#landingScreen{
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    overflow-y: auto;
    z-index: 10;
}
    /*-- Loading Area Screen --*/
    #loadingArea {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
    }
            #loadingWelcomeText {
                display: block;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 0em;
                text-align: center;
                font-family: 'Bebas Neue', 'Encode Sans', sans-serif;
                font-size: 2em;
                -webkit-tap-highlight-color: transparent;
            }
            #loadingStatusText {
                display: block;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
                font-family: 'Bebas Neue', 'Encode Sans', sans-serif;
                font-size: 1.5em;
                -webkit-tap-highlight-color: transparent;
            }
            #landingInfoText{
                margin-top:1em;
                margin-bottom:0em;
                text-align: center;
                font-family: 'Bebas Neue', 'Encode Sans', sans-serif;
                font-size: 1.5em;
                -webkit-tap-highlight-color: transparent;
            }

    #modeSelectionArea{
        display: flex;
        display: none; /** Hide Loading Mode Options until system is in */
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: flex-start;
    }
        .modeSelectBlock{
            width:15em;
            height:20em;
            bottom:0em;
            margin:auto;
            text-align: center;
            font-family: 'Bebas Neue', 'Encode Sans', sans-serif;
        }
        .modeImage{
            width:7em;
            left:4em;
        }
        .modeTitle{
            margin-top:0em;
            font-size: 2em;
            margin-bottom: 0em;
        }
        .modeDescription{
            margin-top:0em;
            font-size: 1em;
        }

/*-- Main Search Bar--*/
#search {
    position: absolute;
    left: 0px;
    top: 0px;
    margin: 0px;
    z-index: 15;
}

#searchContent{
    position: absolute;
    left: 155px;
    top: 80px;
    width: 180px;
    height:100%;
    margin: 0px;
    margin-top:5px;
    z-index: 10;
    color: var(--pwt-blue);
    display:none;
}
    #searchContent input{
        position: absolute;
        z-index: 10;
        width: 180px;
        background: transparent;
        border: none;
        border-bottom: thin solid var(--pwt-blue);
        color: var(--pwt-active);
        /* display: none; */
    }

    #searchText{
        width:0px;
    }



/*--  HOME  NAVIGATION MENU BUTTON --*/
/* Make space for the button between the regular text based nav items
Then draw a carrier shape */
#homeNav {
    position: absolute;
    top: 15px;
    left: 50px;
    width: 100px;
    height: 100px;
    z-index: 15;
    display: none;
}

    #homeBackgroundRing{
        position:absolute;
        bottom: 0px;
        right: 0px;
        width: 90px;
        height: 90px;
        border-style: solid;
        border-width: 1px;
        border-color: var(--pwt-blue);
        border-radius: 50%;
        box-shadow: 0px 1px 2px 2px var(--pwt-blue);
        background-color: white;
    }

    /* format the SVG and button itself */
    #homeNavButton {
        position: absolute;
        padding-top: 5px;
        width: 80px;
        height: 80px;
        bottom: 5px;
        right: 7px;
        overflow: visible;
        cursor: pointer;
    }

    #helpButton{
        position:absolute;
        top: 105px;
        left: 60px;
        width: 40px;
        height: 40px;
        border-style: solid;
        border-width: 1px;
        border-color: var(--pwt-blue);
        border-radius: 50%;
        box-shadow: 0px 1px 2px 2px var(--pwt-blue);
        z-index: 9; /* One below the main button so it does not interfere with the main button firing */
    }

    #infoButton{
        position:absolute;
        top: 105px;
        right: 55px;
        width: 40px;
        height: 40px;
        border-style: solid;
        border-width: 1px;
        border-color: var(--pwt-blue);
        border-radius: 50%;
        box-shadow: 0px 1px 2px 2px var(--pwt-blue);
        z-index: 9; /* One below the main button so it does not interfere with the main button firing */
    }
    
    #searchButton{
        position: absolute;
        top: 69px;
        left: 104px;
        width: 40px;
        height: 40px;
        border-style: solid;
        border-width: 1px;
        border-color: var(--pwt-blue);
        border-radius: 50%;
        box-shadow: 0px 1px 2px 2px var(--pwt-blue);
        z-index: 9; /* One below the main button so it does not interfere with the main button firing */
    }

    #copywriteInfo{
        position: absolute;
        width: 12em;
        bottom: 1em;
        left: 1em;
        font-size: 0.75em;
        z-index:4;
    }

#portfolioMenu{
    position: absolute;
    right: -600px;
    bottom: 50px;
    width: 600px;
    height: 80%;
    z-index: 10;
}
    #portfolioSideTrim{
        position: absolute;
        z-index: 9;
        left: 0px;
        height: 100%;
        width: 35px;
        background-color: var(--pwt-blue);
        border-left: 1px solid var(--pwt-active);
        border-right: 1px solid var(--pwt-active);
    }
    #portfolioSlideIndicator{
        position: absolute;
        z-index: 9;
        left: 2px;
        top: 5px;
        transform: rotate(0deg);
    }
    #portfolioSlideIndicator p{
        font-family: 'Bebas Neue', 'Encode Sans', sans-serif;
        font-size: 2em;
        color: white;
        margin: 0px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    #portfolioSideTrimLow{
        position: absolute;
        z-index: 9;
        width: 35px;
        height: 100%;
        left: 25px;
        transform: skew(45deg, 0deg);
        background-color: var(--pwt-blue);
        border-left: 1px solid var(--pwt-active);
        border-right: 1px solid var(--pwt-active);
    }
    #portfolioContentArea{
        position:absolute;
        left: 35px;
        right: 0px;
        top:0px;
        bottom: 0px;
        background-color: #ffffff;
    }
    /* Formats all portfolio entries*/
    #portfolioContentFrame{
        position:absolute;
        left:0px;
        right: 0px;
        top:0px;
        bottom: 0px;
        border-left: 1px solid var(--pwt-active);
        border-right: 1px solid var(--pwt-active);
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
    }
        .portfolioRecord{
            position: relative;
            width:100%;
        }
            #portfolioWelcomeArea h4{
                position: relative;
                margin: 0px;
                padding: 0px;
                left: 0.25em;
                top: 0.4em;
                font-size: 1.75rem;
                font-family: 'Bebas Neue', 'Encode Sans', sans-serif;
                color: var(--pwt-blue);
            }

            #portfolioWelcomeArea p{
                position: relative;
                margin: 1em;
                left: 0.25em;
            }
            .portfolioRecordTitle{
                margin: 0px;
                padding: 0px;
            }
                .portfolioRecordTitleBG{
                    position: absolute;
                    top: 10px;
                    width: 500px;
                    height: 2em;
                    left: -25px;
                    background-color: var(--pwt-blue);
                    border-top: 1px solid var(--pwt-active);
                    border-bottom: 1px solid var(--pwt-active);
                    border-right: 1px solid var(--pwt-active);
                    transform: skew(35deg, 0deg);
                    
                }
                .portfolioRecordTitle h4{
                    position: absolute;
                    margin: 0px;
                    padding: 0px;
                    left: 0.25em;
                    top: 0.4em;
                    font-size: 1.75rem;
                    font-family: 'Bebas Neue', 'Encode Sans', sans-serif;
                    color: #ffffff;
                }

            .portfolioRecordAttractorMedia{
                margin: 0px;
                padding: 0px;
                width: 100%;
                height: 300px;
                overflow: hidden;
            }
                .portfolioRecordAttractorMediaImage{
                    width: 100%;
                }
                .portfolioRecordAttractorMediaVideo{
                    width: 100%;
                }
            .portfolioRecordAttractorDescription{
                position: absolute;
                bottom: 0em;
                margin: 0em;
                width: 100%;
                height: 4em;
            }
            .portfolioRecordAttractorDescriptionBG{
                position: absolute;
                bottom: 1em;
                margin: 0em;
                width: 100%;
                height: 2em;
                opacity: 50%;
                background-color: var(--pwt-blue);
                border-top: 1px solid var(--pwt-active);
                border-bottom: 1px solid var(--pwt-active);
            }
            .portfolioRecordAttractorDescription p{
                position: absolute;
                top: 3px;
                text-align: center;
                width: 100%;
                font-family: 'Bebas Neue', 'Encode Sans', sans-serif;
                font-size: 1.15em;
                color: white;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }

            #portfolioTop{
                position: absolute;
                width: 100%;
                height: 50px;
                top: -50px;
            }            
                    #portfolioTopL{
                        position: absolute;
                        z-index: 9;
                        width: 150px;
                        height: 50px;
                        left: 61px;
                        transform: skew(-45deg, 0deg);
                        background-color: #ffffff;
                        border-left: 1px solid var(--pwt-active);
                        border-top: 1px solid var(--pwt-active);
                    }
            
                    #portfolioTopR{
                        position: absolute;
                        z-index: 9;
                        width: 30em;
                        height: 100%;
                        right: 25px;
                        background-color: #ffffff;
                        transform: skew(45deg, 0deg);
                        border-right: 1px solid var(--pwt-active);
                    }
                    #portfolioTopTrimL{
                        position: absolute;
                        z-index: 9;
                        width: 35px;
                        height: 50px;
                        left: 25px;
                        bottom: 0px;
                        top:0px;
                        transform: skew(-45deg, 0deg);
                        background-color: var(--pwt-blue);
                        border-right: 1px solid var(--pwt-active);
                        border-top: 1px solid var(--pwt-active);
                    }

                    #portfolioTopTrimL2{
                        position: absolute;
                        z-index: 9;
                        width: 54px;
                        height: 40px;
                        left: 135px;
                        bottom: 0px;
                        top:0px;
                        transform: skew(-45deg, 0deg);
                        background-color: var(--pwt-blue);
                        border: 1px solid var(--pwt-active);
                    }
                    #portfolioTopTrimL3{
                        position: absolute;
                        z-index: 9;
                        width: 32px;
                        height: 40px;
                        left: 80px;
                        bottom: 0px;
                        top:0px;
                        transform: skew(-45deg, 0deg);
                        background-color: var(--pwt-blue);
                        border: 1px solid var(--pwt-active);                        
                    }
                    #portfolioTopTrimR{
                        position: absolute;
                        z-index: 9;
                        height: 40px;
                        right: 30px;
                        left: 170px;
                        top: 0px;
                        background-color: var(--pwt-blue);
                        transform: skew(45deg, 0deg);
                        border: 1px solid var(--pwt-active);                        
                    }
#portfolioBottom{
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: -50px;
}
        #portfolioTitleContainer{
            position: absolute;
            z-index: 15;
            width: 50%;
            height: 1em;
            top: 50%;
            transform: rotate(-90deg);
        }
            #portfoliotTitle{
                display: block;
                margin: 0px;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
                font-size: 2em;
                color: var(--pwt-menuText);
            }

        #portfolioBottomL{
            position: absolute;
            z-index: 9;
            width: 50%;
            height: 100%;
            left: 25px;
            transform: skew(45deg, 0deg);
            background-color: #ffffff;
            border-left: 1px solid var(--pwt-active);
            border-bottom: 1px solid var(--pwt-active);
        }

        #portfolioBottomR{
            position: absolute;
            z-index: 9;
            width: 50%;
            height: 100%;
            right: 25px;
            background-color: #ffffff;
            transform: skew(-45deg, 0deg);
            border-right: 1px solid var(--pwt-active);
            border-bottom: 1px solid var(--pwt-active);
        }
        #portfolioBottomTrimL{
            position: absolute;
            z-index: 9;
            width: 50%;
            height: 40px;
            left: 30px;
            transform: skew(45deg, 0deg);
            background-color: var(--pwt-blue);
            border-left: 1px solid var(--pwt-active);
            border-top: 1px solid var(--pwt-active);
            bottom:0px;
        }
        #portfolioBottomTrimR{
            position: absolute;
            z-index: 9;
            height: 40px;
            right: 75px;
            left: 25%;
            bottom: -1px;
            background-color: var(--pwt-blue);
            transform: skew(-45deg, 0deg);
            border-top: 1px solid var(--pwt-active);
            border-bottom: 1px solid var(--pwt-active);
            border-right: 1px solid var(--pwt-active);
        }
        #portfolioBottomTrimR2{
            position: absolute;
            z-index: 9;
            width: 30px;
            height: 40px;
            right: 30px;
            bottom: -1px;
            background-color: var(--pwt-blue);
            transform: skew(-45deg, 0deg);
            border: 1px solid var(--pwt-active);
        }




/*-- Main Title Block --*/
#titleArea{
    position: absolute;
    z-index: 10;
    height: 57px;
    left: 100px;
    right: 220px;
    top: 20px;
    pointer-events: none;
}

#titleAreaNibMask{
    position: absolute;
    z-index: 10;
    left: 98px;
    top: 20px;
    width: 55px;
    height: 54px;
    overflow: hidden;
    pointer-events: none;
    border-top: 1px solid var(--pwt-active);
    display: none; /* Hidden until Portfolio is online*/
}

#titleAreaNib{
    position: absolute;
    z-index: 10;
    left: 55px;
    top: 0px;
}

#titleAreaNib:before{
    content:'';
    position:absolute;
    top:2px;
    left:-99px;
    width:95px;
    height:95px;
    border-radius:100%;
    box-shadow: 44px 32px 0px 49px var(--pwt-blue)
}

#titleAreaShell{
    position:absolute;
    width:0%;
    height:0%;
    left:50px;
    /* width:100%; */
    /* height:100%; */
    bottom:0px; /*-- This sticks the container to the bottom, makes animation look nice */
    display:none;
}
    #titleBock {
        position: relative;
        float: left;
        left: 0px;
        bottom: 0px;
        height: 55px;
        width: 90%; /* -- Although this seems to contradict absolute positioning below, setting 100% height and width is REQUIRED for Babylon to work right -- */
    }
        #titleBlockBackground{
            position:absolute;
            width: 100%;
            height: 100%;
            left: -25px;
            background-color: var(--pwt-blue);
            border:1px solid var(--pwt-active);
            transform: skew(30deg, 0deg);
        }
        #titleInfoLeft{
            position: relative;
            left:0px;
            width:30%;
            height: 55px;
            float:left;
            display:none; /* Initially set to none for the menu animation FX */
        }
        #titleInfoTopL{
            position:absolute;
            top:0px;
            left:0px;
            margin-left:20px;
        }
                #statusInfo{
                    height:30px;
                    position: absolute;
                    left: 0px;
                    width: 40%;
                    bottom:0px;
                }
                /*-- Node Status Block --*/
                    #nodeStatusBlock
                    {
                        position: relative;
                        float: left;
                        left: 0px;
                        margin: 0px;
                    }
                        #nodeStatus {
                            position: absolute;
                            z-index: 10;
                            width: 150;
                            color: #ffffff;
                            width: 280px;
                        }
                        #nodeStatus p{
                            font-weight: bold;
                        }
            #titleInfoBottomL{
                position:absolute;
                bottom:0px;
                left:0px;
                margin-left:20px;
                font-size: 0.75em;
                width:620px;
                overflow: hidden;
            }
                #nodeDateBlock {
                    float:left;
                }
                    #nodeDateStart {
                        position: relative;
                        float: left;
                        text-align: right;
                        font-weight: bold;
                        color: #ffffff;
                        margin-top:0px;
                        margin-bottom:0px;
                    }
                    #nodeDateStart p{
                        position: relative;
                        margin-top:0px;
                        margin-bottom:0px;
                    }
                    #nodeDateEnd {
                        position: relative;
                        float: left;
                        text-align: right;
                        font-weight: bold;
                        color: #ffffff;
                        margin-top:0px;
                        margin-bottom:0px;
                    }
                    #nodeDateEnd p{
                        position: relative;
                        margin-top:0px;
                        margin-bottom:0px;
                        margin-right:20px;
                    }
                #nodeClientBlock {
                    float:left;
                    min-width:200px;
                }
                    #nodeClientLabel {
                        position: relative;
                        float: left;
                        text-align: right;
                        font-weight: bold;
                        color: #ffffff;
                        margin-top:0px;
                        margin-bottom:0px;
                    }
                    #nodeClient {
                        position: relative;
                        float: left;
                        text-align: right;
                        font-weight: bold;
                        color: #ffffff;
                        margin-top:0px;
                        margin-bottom:0px;
                    }
                    #nodeClient p{
                        position: relative;
                        margin-top:0px;
                        margin-bottom:0px;
                        width: 100%;
                        margin-left:2px;
                    }
        #nodeTitle {
            position: relative;
            z-index: 10;
            float:left;
            width: 50%;
            text-align: center;
            margin: 0px;
            color: #ffffff;
            font-size: 2em;
            font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
            display:none; /* Initially set to none for the menu animation FX */
        }
        #nodeTitle h3{
            position: relative;
            margin: 0px;
            z-index: 10;
        }
        /*-- Node Directorate Area --*/
        #nodeDirectorate{
            position: absolute;
            right: 0px;
            bottom: 0px;
            width: 20%;
            float: right;
            padding-right:25px;
            display:none; /* Initially set to none for the menu animation FX */
        }
            #nodeDirectorateLabel{
                position: relative;
                z-index: 10;
                left: 0px;
                color: #ffffff;
                font-size: 0.75em;
                font-weight: bold;
                text-align: left;
            }
            #nodeDirectorateLabel p {
                margin: 0px;
            }
        #titleSlash1{
            position: relative;
            float: left;
            width: 25px;
            height: 100%;
            margin-left: 0px;
            background-color: var(--pwt-blue);
            border:1px solid var(--pwt-active);
            transform: skew(30deg, 0deg);
        }
        #titleSlash2{
            position: relative;
            float: left;
            width: 15px;
            height: 100%;
            margin-left: 20px;
            background-color: var(--pwt-blue);
            border:1px solid var(--pwt-active);
            transform: skew(30deg, 0deg);
        }
        #titleSlash3{
            position: relative;
            float: left;
            width: 10px;
            height: 100%;
            margin-left: 10px;
            background-color: var(--pwt-blue);
            border:1px solid var(--pwt-active);
            transform: skew(30deg, 0deg);
        }

/*-- main Text Area Frame --*/
#mainTextFrame{
    position: absolute;
    z-index: 9;
    top: 15em;
    left: 1em;
    width: 40em;
    height: 0em;
    background-color:#ffffff;
    border-left:1px solid var(--pwt-active);
    border-right:1px solid var(--pwt-active);
}
    #mainTextCapTop{
        position:absolute;
        width:0%;
        height:0px;
        top:0px; 
        display:none; /* Initially set to none for the menu animation FX */
    }
        #mainTextCapTopL{
            position:absolute;
            width:50%;
            height:100%;
            left: 22px;
            transform: skew(-45deg, 0deg);
            background-color: #ffffff;
            border-left:1px solid var(--pwt-active);
            border-top: 1px solid var(--pwt-active);
        }
        #mainTextCapTopR{
            position:absolute;
            width:50%;
            height:100%;
            right: 22px;
            background-color: #ffffff;
            transform: skew(45deg, 0deg);
            border-right:1px solid var(--pwt-active);
            border-top: 1px solid var(--pwt-active);
        }
    #mainTextCapBottom{
        position:absolute;
        width: 100%;
        height:100px;
        bottom:-100px; /* -- pushes the div below the bottom of the content div -- */
    }
    #mainTextCapBottomGrowDown{
        position: absolute;
        width:0%;
        height: 0px;
        display:none; /* Initially set to none for the menu animation FX */
    }
    #mainTextFrameBorder{
        display:none;
    }
        #mainTextCapBottomL{
            position:absolute;
            z-index: 9;
            width:50%;
            height:100%;
            left: 22px;
            transform: skew(45deg, 0deg);
            background-color: #ffffff;
            border-left:1px solid var(--pwt-active);
            border-bottom: 1px solid var(--pwt-active);
        }
        #mainTextCapBottomR{
            position:absolute;
            z-index: 9;
            width:50%;
            height:100%;
            right: 22px;
            background-color: #ffffff;
            transform: skew(-45deg, 0deg);
            border-right:1px solid var(--pwt-active);
            border-bottom: 1px solid var(--pwt-active);
        }
    #htmlContentTitle{
        transform: rotate(-90deg);
        position: relative;
        margin: 0px;
        padding: 0px;
        left: -50%;
        font-size: 2em;
        color: #ffffff;
        display:none; /* Initially set to none for the menu animation FX */
    }
        #htmlContentFrame{
            position: absolute;
            z-index: 10;
            bottom: 10px;
            overflow-y: auto;
            text-align: left;
            left: 45px;
            right: 20px;
            top:10px;
            padding-right:10px;
            display:none; /* Initially set to none for the menu animation FX */
            -webkit-overflow-scrolling: touch;
        }
    .dots{
        position: absolute;
        z-index: 10;
        list-style-type:none;
        padding: 0;
        margin: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        width: 20px; /* note by varying this we control vertical dots, horizontal dots, or block of dots, 150 was default for a normal Ouiga, > is horizontal, 20 is verticle,  */ 
        right: 0px;
        display:none; /* Initially set to none for the menu animation FX */
    }
    .dot{
        display:inline-block;
        vertical-align:middle;
        margin-left:5px;
        margin-right:5px;
        cursor:pointer;
        color:white;
        position:relative;
        z-index:12;
    }
    .l1{
        z-index: 10;
        border-radius:100%;
        width:10px;
        height:10px;
        background:var(--pwt-blue);
        border:none;
    }
    .l2{
        z-index: 10;
        border-radius: 100%;
        width: 10px;
        height: 10px;
        border: solid 1px var(--pwt-blue);
        background: none;
    }
    .l3{
        z-index: 10;
        border-radius: 100%;
        width: 7px;
        height: 7px;
        border: none;
        background:var(--pwt-blue);
    }
    /* since we cant use a BR, this fills the row to maxium so that we start on the next row */
    .terminus{
        z-index: 10;
        margin-right:500px;
    }
    .select{
    display:block;
    border-radius:100%;
    width:15px;
    height:15px;
    background: var(--pwt-active);
    position:absolute;
    z-index:13;
    top:-4px;
    left:1px;
    pointer-events:none;
    }

    #prevButton{
        text-align: center;
        font-weight: bold;
        color: var(--pwt-blue);
        cursor: pointer;
    }
    #nextButton{
        text-align: center;
        font-weight: bold;
        color: var(--pwt-blue);
        cursor: pointer;
    }
    .vimeoVideo{
    position:relative;
    margin-left: 0px;
    margin-right: 0px;
    }

    .caption{
        margin-top: 5px;
        font-style: italic;
        margin-left: 10px;
        margin-right: 10px;
    }

    .htmlImage{
    position:relative;
    width:100%;
    }

    
/* These build cutout bevel edges on Divs */
.cutCapTop{
    position:absolute;
    width:100%;
    height:45px;
    top:-45px; /* -- pushes the div above the top of the previous element -- */
}
    .cutCapTopL{
        position:absolute;
        width:50%;
        height:100%;
        left: 22px;
        transform: skew(-45deg, 0deg);
        background-color: #ffffff;
        border-left:1px solid var(--pwt-active);
        border-top: 1px solid var(--pwt-active);
    }
    .cutCapTopR{
        position:absolute;
        width:50%;
        height:100%;
        right: 22px;
        background-color: #ffffff;
        transform: skew(45deg, 0deg);
        border-right:1px solid var(--pwt-active);
        border-top: 1px solid var(--pwt-active);
    }
.cutCapBottom{
    position:absolute;
    z-index: 9;
    width:100%;
    height:45px;
    top: 100%; /* -- pushes the div below the top of the previous element -- */
}
    .cutCapBottomL{
        position:absolute;
        z-index: 9;
        width:50%;
        height:100%;
        left: 22px;
        transform: skew(45deg, 0deg);
        background-color: #ffffff;
        border-left:1px solid var(--pwt-active);
        border-bottom: 1px solid var(--pwt-active);
    }
    .cutCapBottomR{
        position:absolute;
        z-index: 9;
        width: 50%;
        height: 100%;
        right: 22px;
        background-color: #ffffff;
        transform: skew(-45deg, 0deg);
        border-right:1px solid var(--pwt-active);
        border-bottom: 1px solid var(--pwt-active);
    }
.titleBorder{
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;

}
    .titleBorderT{
        position: absolute;
        right: 77px;
        height: 35px;
        top: -45px;
        background-color: var(--pwt-blue);
        left: 45px;
        border-top:1px solid var(--pwt-active);
        border-bottom:1px solid var(--pwt-active);
    }
    .titleBorderTMidCap{
        position:absolute;
        height: 45px;
        top: -45px;
        width: 35px;
        right: 55px; /* width + right space of titleBorderTop */
        background-color: var(--pwt-blue);
        transform: skew(45deg, 0deg);
        border:1px solid var(--pwt-active);
    }
    .titleBorderTRCap{
        position: absolute;
        height: 45px;
        top: -45px;
        width: 15px;
        right: 22px; /* width + right space of titleBorderTop */
        background-color: var(--pwt-blue);
        transform: skew(45deg, 0deg);
        border:1px solid var(--pwt-active);
    }
    .titleBorderTopL{
        position: absolute;
        width: 35px;
        height: 45px;
        left: 23px;
        top: -45px;
        transform: skew(-45deg, 0deg);
        background-color: var(--pwt-blue);
        border-top:1px solid var(--pwt-active);
        border-left:1px solid var(--pwt-active);
        border-right:1px solid var(--pwt-active);
    }
    .titleBorderL{
        position: absolute;
        width: 35px;
        bottom: 0px;
        top: 0px;
        background-color: var(--pwt-blue);
        border-left:1px solid var(--pwt-active);
        border-right:1px solid var(--pwt-active);
    }
    .titleBorderBottomL{
        position: absolute;
        width: 35px;
        height: 45px;
        top: 100%;
        left: 22px;
        transform: skew(45deg, 0deg);
        background-color: var(--pwt-blue);
        z-index: 50;
        border-left:1px solid var(--pwt-active);
        border-right:1px solid var(--pwt-active);
    }


.slashLeft{
    position: absolute;
    z-index:9;
    width:100%;
    height:100%;
    transform: skew(30deg, 0deg);
    background-color:var(--pwt-blue);
    border: 1px solid var(--pwt-active);
}

.slashRight{
    position: absolute;
    z-index:9;
    width:100%;
    height:100%;
    transform: skew(30deg, 0deg);
    background-color:var(--pwt-blue);
    border: 1px solid var(--pwt-active);
}

#helpPanel{
    position:absolute;
    /* must be positioned offset the existing menus*/
    left: 0%; 
    bottom: 0%;
    top: 0%;
    right: 0%;
    z-index: 20; /* floats above anything else */
    display: none;
    pointer-events: none;
}
    #navigationHelp{
        position:absolute;
        z-index:30;
        left:140px;
        top:210px;
        width:550px;
        height:450px;
        background-color: #ffffff;
        border-right:1px solid var(--pwt-active);
        border-left:1px solid var(--pwt-active);
        pointer-events: all;
    }
        .navHelpObject{
            position: relative;
            float:left;
            width:150px;
            height:200px;
            padding-left:10px;
        }
            .helpImage{
            position: relative;
            height: 80px;
            float:left;   
            }
            .navHelpObject p{
                float:left;
                width:100%;
                
            }
    /* Navigational HELP */
    #statusHelp{
        left: 300px;
        pointer-events: all;
    }

    #directorateHelp{
        left: 650px;
        pointer-events: all;
    }

    #technologyHelp{
        left: 1000px;
        width: 630px;
        pointer-events: all;
    }
    .helpSecContainer{
        position:absolute;
        z-index:30;
        left:1000px;
        top:50px;
        width:300px;
        max-height: 900px;
        background-color: #ffffff;
        border-right:1px solid var(--pwt-active);
        border-left:1px solid var(--pwt-active);
    }
        .helpSecTitle1Container{
            position:absolute;
            left: 17px;
            top: 50%;
            margin: 0px;
            padding: 0px;
        }
            .helpSecTitle1Container h4{
                transform: rotate(-90deg);
                position: relative;
                margin: 0px;
                padding: 0px;
                left: -50%;
                font-size: 2em;
                color: #ffffff;
            }
        .helpSecContainer p{
            margin-right: 10px;
            margin-left: 45px;
            font-size: 0.75em;
        }
        .helpSecContent{
            position: relative;
            left:45px;
            right:25px;
            top:20px;
        }
            .helpSecObject{
                position: relative;
                float:left;
                z-index:30;
                height: 75px;
                left:0px;
                width: 250px;
            }
            .helpSecTitle{
                position:relative;
                float: left;
                z-index:30;
                margin:0px;
                padding:0px;
                width: 100%; 
            }
                .helpSecTitle h6{
                    padding: 0px;
                    margin: 0px;
                }
            .helpSecIcon{
                position: absolute;
                z-index: 31;
                width: 48px;
                height: 48px;
                left: 0px;
                margin-top: 18px;
            }
            .helpSecColorWell{
                position: absolute;
                z-index: 30;
                width: 48px;
                height: 48px;
                left: 0px;
                margin-top: 18px;
            }
            .helpSecColorWellRound{
                border-radius: 50%;
            }
            .helpSecDesription{
                position:absolute;
                z-index: 30;
                margin: 0px;
                margin-left: 15px;
                margin-top: 5px;
                overflow:hidden; 
            }
            #helpCloseButton{
                position: absolute;
                left: 210px;
                bottom: 0px;
                width: 150px;
                height: 55px;
                color: var(--pwt-active);
            }
            
            #helpCloseButton:hover{
                color: var(--pwt-active);
                box-shadow:
                0 0 1px 1px rgba(30, 184, 255, 0.6);
                cursor: pointer;
            }
            
            #helpCloseButtonText{
                position:absolute;
                top: 25%;
                text-align: center;
                width: 100%;
                z-index:10;
                text-align: center;
                margin: 0px;
                color: #ffffff;
                font-size: 1.5em;
                font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
            }
            
            #helpSlashLeft{
                position:absolute;
                right: -20px;
                width: 10px;
                height: 100%;
            }
            
            #helpSlashRight{
                position:absolute;
                left: -20px;
                width: 10px;
                height: 100%;
            }


#infoArea{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    display: none;   
}
    #infoPanel{
        position:absolute;
        /* must be positioned offset the existing menus*/
        left: 5%; 
        bottom: 10%;
        top: 10%;
        right: 5%;
        z-index: 20; /* floats above anything else */
        border-right:1px solid var(--pwt-active);
        border-left:1px solid var(--pwt-active);
        background-color: #ffffff;
        display: none;
    }
        #infoNavigationHelp{
            position: relative;
            left: 0;
            width: 50%;
            top: 0px;
            height: 100%;
            float: left;
        }

            #infoMediaFrame{
                position: absolute;
                height: 90%;
                width: 88%;
                left: 70px;
                overflow: hidden;
            }
                #infoMedia{                        
                    position: absolute;
                    top: 0px;
                    width: 100%;
                }
            #infoMediaCaption{                        
                position: absolute;
                bottom: 0px;
                left:55px;
                height:45px;
                text-align: center;
            }
        #infoRightSide{
            position: relative;
            left: 0;
            width: 50%;
            top: 0px;
            height: 100%;
            float: right;            
        }
            #infoMessageFrame{
                position: absolute;
                top:0px;
                bottom:65px;
                right: 65px;
                left: 0px;
                overflow-y:scroll;
            }
            #infoMessage{
                position: absolute;
                right:20px;
                left:20px;
                display: none;
            }
        
            #infoCloseButton{
                position: absolute;
                left: 40%;
                bottom: 0px;
                width: 150px;
                height: 55px;
                color: var(--pwt-active);
                display: none;
            }
            
            #infoCloseButton:hover{
                color: var(--pwt-active);
                box-shadow:
                0 0 1px 1px rgba(30, 184, 255, 0.6);
                cursor: pointer;
            }
            
            #infoCloseButtonText{
                position:absolute;
                top: 25%;
                text-align: center;
                width: 100%;
                z-index:10;
                text-align: center;
                margin: 0px;
                color: #ffffff;
                font-size: 1.5em;
                font-family: 'Bebas Neue', Arial, Helvetica, sans-serif;
            }
            
            #infoSlashLeft{
                position:absolute;
                right: -20px;
                width: 10px;
                height: 100%;
            }
            
            #infoSlashRight{
                position:absolute;
                left: -20px;
                width: 10px;
                height: 100%;
            }

/* Nurkle Object */
#nurkles{
    left:0px;
    top:0px;
    width:100px;
    height:100px;
    overflow:hidden;
    z-index:8;
}

#nurklesSVGElements{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index:6;
    pointer-events: none;   
}

/* A nurkle anchor object */
.nk_anchor{
    position:absolute;
    z-index:7;
    pointer-events: none;   
}
    .nk_anchorShape{
        position:absolute;
        width:20px;
        height:20px;
        left:-10px;
        top:-10px;
        border:1px solid var(--pwt-active);
        border-radius: 50%;
        pointer-events: none;   
    }

/* Actual Nurkle Objects */
.nurkle{
    position: absolute;
    /*pointer-events: none;*/
    z-index:8;
}
    .nk_offsetContainer_right{
        position: relative;
        top: -35px;
        max-width: 320px; /* so single line descriptions dont get too long */
        pointer-events: none; 
    }

    .nk_offsetContainer_left{
        position: relative;
        top: -35px;
        right: 100%; /* move the container to align with the nurkle line */
        max-width: 250px;
        pointer-events: none;
    }
    .nk_offsetImgContainer{
        position:absolute;
        pointer-events: none;
    }
        .nk_title {
            position: relative;
            height: 24px;
            top: 7px;
            min-width:100px;
            max-width:250px;
            padding-top:4px;
            padding-left:15px;
            padding-right:15px;
            pointer-events: none;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
            .nk_title_text {
                position: relative;
                color: #ffffff;
                font-size: 1em;
                margin: 0px;
                padding: 0px;
                pointer-events: none;
            }

        .nk_desc_right {
            position: relative;
            top: 10px;
            left:20px;
            max-width:230px;
            margin: 0px;
            padding: 0px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .nk_desc_left {
            position: relative;
            top: 10px;
            right:20px;
            max-width:230px;
            margin: 0px;
            padding: 0px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

            .nk_desc_text_left{
                position: relative;
                color: var(--pwt-blue);
                font-size: 0.75em;
                font-weight: bold;
                margin: 0px;
                padding: 0px;
                padding-left:20px;
                pointer-events: none;   
            }

            .nk_desc_text_right{
                position: relative;
                color: var(--pwt-blue);
                right:0px;
                font-size: 0.75em;
                font-weight: bold;
                margin: 0px;
                padding: 0px;
                pointer-events: none;   
            }

        /* VIDEOS */
        .nk_vidOffsetContainer_right{
            position: relative;
            top: -50px;
            max-width: 320px; /* so single line descriptions dont get too long */
            /*pointer-events: none;*/ 
        }
        .nk_vidOffsetContainer_left{
            position: relative;
            top: -50px;
            right: 100%; /* move the container to align with the nurkle line */
            max-width: 250px;
            /*pointer-events: none;*/
        }
        .nk_vid{
            position: absolute;
            width: 280px;
            height: 45px;
            /*pointer-events: none;*/
            z-index:8;
        }
            .nk_vidTitle {
                position: relative;
                left: 20px;
                bottom: 6px;
                height: 24px;
                min-width: 100px;
                max-width: 250px;
                padding-right: 15px;
                padding-left: 20px;
                padding-top:4px;
            }
            .nk_vid_holder{
                position:relative;     
                overflow: hidden;
            }
                .nurkle_vid_iframe {
                    position:relative;
                    width: 350px;
                    height: 150px;
                    z-index:8;
                }
            .nk_vidExtras{
                position: relative;
                right: 5px;
                max-width: 230px;
                float: right;
                top: 8px;
                pointer-events: none;
            }
                .nk_date{
                    position: relative;
                    margin: 0px;
                    padding: 0px;
                    margin-right: 15px;
                    text-align: right;
                    pointer-events: none;
                }
                .nk_vidDesc{
                    position: relative;
                    margin: 0px;
                    padding: 0px;
                    margin-right: 15px;
                    text-align: right;
                    pointer-events: none;
                }
                    .nk_date_text, .nk_vidDesc_text{
                        position: relative;
                        color: var(--pwt-blue);
                        font-size: 0.75em;
                        font-weight: bold;
                        margin: 0px;
                        padding: 0px;
                        pointer-events: none;
                    }
        /* Imagry */
        .nk_img{
            position:relative;
            top: 0px;
            left: 0px;
            z-index:8;
        }

/*-- Center Screen Menu --*/
#centerScreen{
    position: absolute;
    top:20%;
    left:0%;
    height:500px;
    width:100%;
    z-index:500;
    text-align: center;
    font-weight: 900;
    font-size: 1.5em;
    border: solid 1px var(--pwt-active);
    visibility: hidden;
}

/*-- Floating Panel --*/
#floatPanel{
    position: absolute;
    top:0%;
    left:0%;
    height:1px;
    width:1px;
    z-index:500;
    visibility: hidden;
    overflow: visible;
}
