        @import url('https://fonts.googleapis.com/css?family=Oswald:500|Source+Serif+Pro:400,700');

        html, body{
            margin: 0px;
            padding: 0px;
            cursor: default;
        }

      #canvas {
          z-index: -100;
          position: sticky;
          position: -webkit-sticky;
          top: 0px;
          width: 100%;
          height: 100vh;
          left: 0px;
          background-color: #F6F6F6;
      }

      .content {
          width: 40%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: space-between;
          padding-left: 25px;
          box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
      }

      #wrapper {
          position: relative;
          width: 100%;
      }

      #stickycontainer {
          position: relative;
          z-index: 100;
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
      }

      #container {
          z-index: 100;
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
      }

      #header {
          position: absolute;
          top: 50vh;
          font-family: "Oswald";
          font-size: 8.0em;
          font-weight: 500;
          text-transform: uppercase;
          padding: 0px 0px 0px 25px;
          margin: 0px 0px 50px 0px;
          display: flex;
          flex-direction: column;
          line-height: 1.0em;
          align-self: flex-start;
    }

    #header > span.filled {
        background-color: #F6C900;
        color: #FFFFFF;
    }

    .main-content {
        font-family: "Source Serif Pro";
        font-weight: 400;
        width: 100%;
        margin-bottom: 50vh;
        font-size: 16pt;
        line-height: 28pt;
        background-color: rgba(255,255,255,0.4);
        padding: 10px;
        box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
    }

    .section-header {
        font-family: "Oswald";
          font-size: 4.0em;
          font-weight: 500;
          text-transform: uppercase;
          margin: 0px;
    }

    .section-subheader {
        font-family: "Oswald";
        font-size: 2.0em;
        font-weight: 500;
        margin: 0px;
        text-transform: uppercase;
        color: steelblue;
    }

    .spacer {
        height: 100vh;
    }

    .svg-container {
        margin: 100px 0px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: row;
    }

    .intro {
        text-transform: uppercase;
        font-variant: all-petite-caps;
        font-weight: bold;
        font-size: 20pt;
    }

    .styled-select {
        -webkit-appearance: button;
        -webkit-border-radius: 2px;
        -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
        -webkit-padding-end: 20px;
        -webkit-padding-start: 2px;
        -webkit-user-select: none;
        background-image: url('arrow.png'), -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
        background-position: 97% center;
        background-repeat: no-repeat;
        border: 1px solid #AAA;
        color: #555;
        font-size: inherit;
        margin: 5px;
        overflow: hidden;
        padding: 5px 5px;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 200px;       
    }



    a:link, a:visited {
        text-decoration: none;
        color: #CC0000;
    }

    a:hover {
        text-decoration: underline;
        cursor: pointer;
    }

    .img-container {
        display: flex;
        flex-direction: column;
        flex: 1 0;
    }

    .img-container-header {
        font-family: "Oswald";
        font-size: 1.6em;
        font-weight: 500;
        margin: 0px;
        text-transform: uppercase;
        color: steelblue;

    }

    .img-container-image {

    }

    #tooltip {
        z-index: 200;
        position: absolute;
        top: 0px;
        left: 0px;
        content: "";
        visibility: hidden;
        font-family: "Oswald";
        font-size: 1.0em;
        font-weight: 500;
        text-transform: uppercase;
        pointer-events: none;
        background-color: rgba(255,255,255,0.8);
        padding: 3px;
    }

    #subchart {
        width: 60%;
        position: absolute;
        bottom: 0px;
        right: 0px;
        background-color: rgba(255,255,255,0.6);
        opacity: 0;
        text-align: right;
    }

    #subchart-svg {
        width: 100%;
        overflow-x: scroll;
    }

    .chartLabel {
        font-family: "Oswald";
        font-size: 1.0em;
        font-weight: 500;
        text-transform: uppercase;
    }

    #footer {
        width: 50%;
        margin-bottom: 0px;
    }

    #subchart-scroll {
        font-family: "Oswald";
        font-size: 1.0em;
        font-weight: 500;
        margin-right: 25px;
        text-transform: uppercase;
    }

    #edgi-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 200px;
    }

    #loading {
        z-index: 500;
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        display: flex;
        justify-content: center;
        align-items: center;
    }