    :root {
      --color-primary: #122040;
      --color-secondary: rgba(93, 62, 93, 1.0);
      --color-ltgray: rgba(211, 211, 212, 1.0);
      --color-mdgray: rgba(149, 150, 153, 1.0); 
      --color-dkgray: rgba(78, 80, 84, 1.0);
      --color-white: rgba(255, 255, 255, 1.0);
      --color-black: rgba(0, 0, 0, 1.0);
      --color-tip: rgba(93, 62, 93, 1.0);
      --color-note: rgba(93, 62, 93, 1.0);
      --color-important: #122040;
      --color-caution: #122040;
      --color-warning: #122040;
      font-family: "Roboto", sans-serif;
      font-size: 10.0pt;
    }

    * {
      box-sizing: border-box;
    }
    *, *:before, *:after {
      box-sizing: inherit;
    }

    a, a:visited, a:active {
      color: #122040;
      /* text-decoration: none; */
    }
    a:hover {
      text-decoration: underline;
    }

    body {
      margin: 0;
      padding: 0;
      overflow: hidden;
    }

    .fa-question-circle:hover {
      cursor: pointer;
    }

    /* The Modal (background) */
    .modal {
      background-color: rgb(0, 0, 0); /* Fallback color */
      background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
      display: none; /* Hidden by default */
      height: 100%; /* Full height */
      left: 0;
      overflow: auto; /* Enable scroll if needed */
      padding-top: 100px; /* Location of the box */
      position: fixed; /* Stay in place */
      top: 0;
      width: 100%; /* Full width */
      z-index: 1; /* Sit on top */
    }

    /* Modal Content */
    .modal-content {
      background-color: #fefefe;
      border: 1px solid #888;
      border-radius: 12px;
      margin: auto;
      padding: 20px;
      width: 80%;
    }

    /* The Close Button */
    .close {
      color: #aaaaaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
    }
    .close:hover,
    .close:focus {
      color: #122040;
      color: #122040;
      cursor: pointer;
      text-decoration: none;
    }

    section.container {
      background-color: rgba(93, 62, 93, 1.0);
      background-color: var(--color-secondary);
      display: grid;
      display: -ms-grid;
      grid-template-areas:"navpaneheader contentpaneheader"
                          "toolspane contentpane" 
                          "navpane contentpane";
      grid-template-columns: 250px 1fr;
      -ms-grid-columns: 250px 1fr;
      grid-template-rows: 70px 130px 1fr;
      -ms-grid-rows: 70px 130px 1fr;
      height: 100vh;
    }
    div#navpaneheader {
      align-self: stretch;
      justify-self: stretch;
      grid-column: 1;
      -ms-grid-column: 1;
      grid-row: 1;
      -ms-grid-row: 1;
      grid-area: navpaneheader;

      background-color: rgba(93, 62, 93, 1.0);
      background-color: var(--color-secondary);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 150px;
      color: white;
      color: var(--color-white);
      display:block;
    }

    div#toolspane {
      grid-column: 1;
      -ms-grid-column: 1;
      grid-row: 2;
      -ms-grid-row: 2;
      grid-area: toolspane;
      
      background-color: white;
      background-color: var(--color-white);
    }
    
    /* div#feedback {
      grid-column: 1;
      -ms-grid-column: 1;
      grid-row: 3;
      -ms-grid-row: 3;
      grid-area: feedback;
      background-color: rgba(93, 62, 93, 1.0);
      background-color: var(--color-secondary);
      color: white;
      color: var(--color-white);
      text-align: center;
      margin-top: auto;
      margin-bottom: auto;
    } */

    div#navpane {
      align-self: stretch;
      grid-column: 1;
      -ms-grid-column: 1;
      grid-row: 3;
      -ms-grid-row: 3;
      grid-area: navpane;
      
      background-color: white;
      background-color: var(--color-white);
      overflow-y: auto;
      overflow-x: hidden;
    }
    
    div#contentpaneheader {
      align-self: center;
      justify-self: stretch;
      grid-column: 2;
      -ms-grid-column: 2;
      grid-row: 1;
      -ms-grid-row: 1;
      grid-area: contentpaneheader;

      background-color: rgba(93, 62, 93, 1.0);
      background-color: var(--color-secondary);
      color: white;
      color: var(--color-white);
      font-size: 14.0pt;
      white-space: nowrap;
    }

    div#contentpane {
      grid-column: 2;
      -ms-grid-column: 2;
      grid-row: 2/3;
      -ms-grid-row: 2;
      -ms-grid-row-span: 2;
      grid-area: contentpane;

      background-color: white;
      background-color: var(--color-white);
      overflow-y: scroll;
    }

    div.relcard {
      background-color: rgba(232,232,232,1.0);
      background-color: var(--color-ltgray);
      border-radius: 6px;
      box-shadow: 3px 3px rgba(160,160,160, 1.0);
      margin: 12px;
      padding: 6px;
    }

    div.topiccontainer {
      background-color: white;
      background-color: var(--color-white);
      border-radius: 6px;
      padding: 6px 6px;
      margin: 6px 6px;
    }

    span.topictitle {
      color: rgba(93, 62, 93, 1.0);
      color: var(--color-secondary);
      font-size: 11.0pt;
      font-weight: bold;
    }

    div.topic {
      background-color: white;
      background-color: var(--color-white);
      border-radius: 6px;
      display: none;
      padding: 6px 10px;
      margin: 6px 6px;
    }

    span.relcardtitle {
      color: #122040;
      color: #122040;
      font-weight: bold;
      font-size: 12.0pt;
      cursor: pointer;
    }

    span.relcardtitle:hover {
      text-shadow: 0px 0px 15px rgba(255,79,31,0.7);
      cursor: pointer;
    }

    span.topictitle:hover {
      color: #122040;
      color: #122040;
      cursor: pointer;
    }
    
    div#topiclist {
      overflow-y: auto;
    }

    div#linkhome {
      border: thin solid #122040;
      border-radius: 6px;
      color: #122040;
      color: #122040;
      margin: 6px 10px;
      padding: 6px;
      vertical-align: middle;
      width: 90%;
    }

    input#searchbox {
      border: thin solid rgba(93, 62, 93, 1.0);
      border: thin solid var(--color-secondary);
      border-radius: 6px;
      margin: 12px 10px;
      /* margin-left: 6px;
      margin-right: auto; */
      padding: 6px;
      width: 90%;
    }

    input.selallbtn {
      background-color: #122040;
      background-color: #122040;
      border: none;
      border-radius: 6px;
      color: white;
      color: var(--color-white);
      font-size: 8.0pt;
      margin-left: 3px;
      margin-top: 5px;
      width: 75px;
    }

    input.relchk {
      vertical-align: text-bottom;
      height: 11px;
      margin-right: 1px;
    }

    label.checkboxlabel {
      color: rgba(93, 62, 93, 1.0);
      color: var(--color-secondary);
    }

    div.more {
      background-color: rgba(232,232,232,1.0);
      background-color: var(--color-ltgray);
      border-radius: 6px;
      margin-left: 10px;

      height: 193px;

      overflow: hidden;
      transition: height 600ms;
    }

    div.less{
      background-color: rgba(232,232,232,1.0);
      background-color: var(--color-ltgray);
      border-radius: 6px;
      margin-left: 10px;

      height: max-content;

      overflow: hidden;
      transition: height 300ms;
    }

    div#releases {
      display:block;
      font-size: 9.0pt;
      margin: 3px 0px;
      height: 16px;
      user-select: none;
    }

    div#prodhits {
      background-color: rgba(232,232,232,1.0);
      background-color: var(--color-ltgray);
      border-radius: 6px;
      /* display: flex;
      flex: 1;
      flex-direction: column; */
      min-height: 10vh;
      margin-left: 6px;
      margin-top: 6px;
      overflow-x: hidden;
      overflow-y: auto;
      padding: 0px 3px;
      /* transition: height 300ms; */
    }

    span#togglerelchks {
      color: #122040;
      color: #122040;
      cursor: pointer;
      font-size: 9.0pt;
      margin-left: 45%;
    }
    span#togglerelchks:hover {
      text-shadow: 0px 0px 6px #122040;
      text-shadow: 0px 0px 6px #122040;
    }

    span.arrowdown {
      display: inline-block;
      margin-right: 6px;
      padding: 0;
      transform: rotate(180deg);
      transition-duration: .2s;
    }

    span.arrowright {
      display: inline-block;
      margin-right: 6px;
      padding: 0;
      transform: rotate(90deg);
      transition-duration: .2s;
    }

    span.producttag {
      background-color: rgba(93, 62, 93, 1.0);
      background-color: var(--color-secondary);
      border-radius: 6px;
      color:white;
      cursor: pointer;
      display:inline-block;
      font-size:7.0pt;
      font-weight: bold;
      margin:2px;
      padding:2px 5px;
      user-select: none;
      white-space:nowrap;
    }
    span.selectedproducttag {
      background-color: #122040;
      background-color: #122040;
      border-radius: 6px;
      color:white;
      cursor: pointer;
      display:inline-block;
      font-size:7.0pt;
      font-weight: bold;
      margin:2px;
      padding:2px 5px;
      user-select: none;
      white-space:nowrap;
    }

    span.appliedFilters {
      border: thin solid #122040;
      border: thin solid #122040;
      border-radius: 12px;
      color: rgba(192,192,192,1.0);
      color: var(--color-mdgray);
      display: inline-block;
      font-size: 9.0pt;
      margin: 2px 3px;
      padding: 0px 6px;
      white-space: nowrap;
    }
    span.closeFilter {
      color: #122040;
      color: #122040;
    }

    h1 {
      display: none;
    }

    h2 {
      font-size: 11.0pt;
    }

    h3 {
      font-size: 10.0pt;
    }