@font-face {
    font-family: open sans;
    src: url(/font/OpenSans-Regular.ttf);
}
@font-face {
    font-family: open sans bold;
    src: url(/font/OpenSans-Bold.ttf);
}
@font-face {
    font-family: open sans light;
    src: url(/font/OpenSans-Light.ttf);
}
@font-face {
    font-family: open sans semibold;
    src: url(/font/OpenSans-Semibold.ttf);
}
@font-face {
    font-family: boomer;
    src: url(/font/BoomerTantrum.ttf);
}

html {
    width:100%;
    height: 100%;
}
body {
    width:100%;
    margin:0;
    padding:0;
    font-family:open sans;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.lite {
    background-color: #EEE;
}

p{
    max-width: 600px;
    padding: 10px 0;
}

h1 {
    color: #305f82;
    font-size: 40px;
    font-family: open sans light;
    font-weight: 100;
}

select {
    background-color: rgb(200,200,200);
    padding: 5px 10px;
    background-color: #999;
    color: black;
    border-radius: 5px;
    border-width: 0;
}

.lite select {
    background-color: revert;
    padding: revert;
    background-color: revert;
    color: revert;
    border-radius: revert;
    border-width: revert;
}

.logo{
    font-size: 20px;
    font-family: open sans;
    margin-left: 10px;
    color: white;
    display: inline-block;
}

.client_login .logo {
    display: block;
}

.product_label{
    font-size: 20px;
    font-family: open sans bold;
    margin-left: 10px;
    color: #F60;
}

.lite .product_label {
    color: rgba(110,200,240,0.6);
    /*line-height: 15px;*/
    font-size: 15px;
    /* display: inline-block; */
    vertical-align: middle;
    /*margin-bottom: 8px;*/
    font-family: open sans;
    color: #777;
}
.lite .product_label > div {
    /* display: inline-block; */
}

.orn_header {
    position: relative;
    margin-top: 60px;
}

.orn_header .title_section{
    border-radius: 20px;
    padding: 20px;
    border-bottom-right-radius: 0;
    background-color: rgb(220,220,220);
    box-shadow: 2px 2px 4px #999;
    display: inline-block;
    position: relative;
}

.orn_header .body_section {
    margin: 0 60px;
    background-color: rgb(220,220,220);
    border-top-right-radius: 20px;
    box-shadow: 2px 6px 4px #999;
    position: relative;
}

.orn_header .twisty_label{
    color: #555;
}

.orn_header .body_section > div {
    padding: 20px;
}

.orn_header .body_section > .contents {
    padding: 20px 0 0 0;
    font-family: open sans;
    font-size: 15px;
}

.orn_header .twisty_pane .controls {
    text-align: right;
    padding: 10px 3% 10px 0;
}

.search_options {
    background-color: rgba(255,255,255,0.3);
    padding: 20px;
    margin: 0 3%;
}

.search_options > div {
    display: table;
    width: 100%;
}
.search_options > div > div {
    display: table-row;
}
.search_options > div > div > div {
    display: table-cell;
    width: 25%;
    vertical-align: top;
}

.twisty_pane .controls .hidden, .twisty_pane .contents.hidden {
    display: none;
}

.twisty_label .arrow {
    width: 0;
    height: 0;
}

.twisty_label > div {
    display: inline-block;
    vertical-align: middle;
}

.twisty_label .label {
    margin-bottom: 2px;
    margin-left: 4px;
}

.twisty_label .arrow.down {
    border-top: 10px solid #555;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.lite .striped-table .header_row .arrow.down{
    border-top: 10px solid white;
}

.twisty_label .arrow.up {
    border-bottom: 10px solid #555;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.lite .striped-table .header_row .arrow.up{
    border-bottom: 10px solid white;
}

.twisty_pane .closed, .twisty_pane .open {
    cursor: pointer;
}

.corner_cutout {
    height: 40px;
    position: absolute;
}

.orn_header .corner_cutout.bottom_left {
    bottom: 0;
    right: -40px;
}

.orn_header .corner_cutout.top_right {
    top: 0;
    left: -40px;
}

.orn_header input {
    font-size: 18px;
    padding: 8px;
    border-radius: 4px;
    background-color: rgb(200,255,255);
    box-shadow: inset 0 2px 4px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
    border: 1px solid transparent;
    border-top: none;
    border-bottom: 1px solid #DDD;
}

.search_bar {
    text-align: center;
    font-size: 20px;
    padding: 50px 0;
}

.search_bar input {
    width: 600px;
}

.navbar{
    position: fixed;
    height: 60px;
    line-height: 60px;
    background-color: black;
    width: 100%;
    box-shadow: 4px 4px 8px #151515;
    z-index: 999;
}

.lite .navbar{
    background-color: white;
    box-shadow: 4px 4px 8px #CCC;
    display: flex;
}

.lite .navbar > div {
    vertical-align: middle;
    align-self: stretch;
}

.lite .navbar .product-label {
    line-height: 1em;
    height: 60px;
    padding-top: 15px;
}

.lite .navbar .user-data {
    margin-left: auto;
    margin-right: 80px;
}

.lite .navbar .user-data .company.show0 {
    display: none;
}

.navbar .logo img {
    height: 36px;
    vertical-align: middle;
    margin-bottom: 5px;
}

.navbar a, .navbar a:visited{
    color: white;
    text-decoration: none;
}

.menu{
    position: absolute;
    z-index: 999;
    right: 0;
    top: 0;
    text-align: right;
    font-size: 0;
    line-height: normal;
}
.menu img.btn{
    height: 48px;
    margin: 4px 4px 0 0;
    display: none;
    cursor: pointer;
}
.menu img.btn.active{
    display: inline-block;
}

.menu_body{
    text-align: left;
    display: none;
    font-size: 16px;
    margin-right: 4px;
    background-color: rgb(60,60,60);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 4px 4px 8px #151515;
}

.lite .menu_body{
    background-color: rgb(240,240,240);
    box-shadow: 4px 4px 8px #CCC;
}

.menu_item{
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.lite .menu_item{
    color: #777;
}

.menu_item:hover{
    background-color: rgba(255,255,255,0.2);
}

.lite .menu_item:hover{
    background-color: rgba(0,0,0,0.1);
}


.page {
    margin: 120px auto 0 auto;
    width: 90%;
    max-width:1600px;
    margin:auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lite .page {
    margin-top: 60px;
}

.page_title {
    margin: 0 15px;
    font-family: open sans;
    color: #444;
    font-size: 30px;
}


.lite > .page > .page_title {
    color: black;
    margin-left: 2%;
    margin-top: 20px;
    margin-bottom: 40px;
}

.page > .contents{
    flex: 1;
    text-align: center;
}

.panel{
    text-align: center;
    margin: 100px auto;
    display: inline-block;
}

.lite .page > .contents .panel:first-child{
    margin: 0 auto 20px auto;
    position: relative;
}

.panel + .panel{
    margin-top: 50px;
}


.panel > div {
    background-color: #ccc;
    box-shadow:2px 2px 5px 3px rgba(0,0,0,0.3);
    font-size:15px;
    text-align:left;
    padding: 40px 4%;
    border-radius: 5px;
}

.lite .panel > div {
    background-color: white;
    box-shadow: 2px 2px 5px 3px #CCC;
}

.panel.client_login > div {
    padding: 40px;
}


.panel.login > div {
    background-color: black;
    text-align: center;
}

.panel.client_login > div {
    background-color: white;
    text-align: center;
}

.panel.login .logo {
    margin-left: 0;
}

.panel.client_login .logo img {
    width: 100%;
    max-width: 600px;
    margin-left: 0;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .panel.client_login > div {
        box-shadow: none;
    }
}

.panel.login .dis_button{
    background-color: #333;
    color: #999;
}

.panel.login .go_button{
    background-color: #F60;
    color: white;
}
.panel.login .messages, .panel.client_login .messages{
    color: red;
}

.wide_panel{
    width: 100%;
}


.panel_item {
    margin: 15px 30px;
}


.panel_item > div:first-child {
    font-size: 20px;
}

.panel_item > div:last-child {
    padding: 15px;
}

.panel_title{
    font-family: open sans bold;
    font-size: 22px;
    color: black;
    margin-bottom: 16px;
}

.panel_subtitle{
    font-family: open sans semibold;
    font-size: 16px;
    margin-bottom: 8px;
}



.striped-table {
    width: 100%;
    font-family: open sans;
    color: white;
    background-color: white;
}
.lite .striped-table{
    color: black;
}

.striped-table tr:first-child.header_row,
.striped-table.grid-table tr.header_row
 {
    background-color: #F60;
    color: white;
}

.lite .striped-table tr:first-child.header_row{
    background-color: #579;
    color: white;
    font-weight: bold;
}

.striped-table td{
    padding: 8px;
    white-space: nowrap;
}

.lite .striped-table td{
    white-space: normal;
}

.striped-table tr td:last-child{
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    word-break: break-word;
    hyphens: auto;
}

.striped-table td:nth-child(even){
    background-color: rgba(0,0,0,0.5);
}
.lite .striped-table td:nth-child(even){
    background-color: rgba(110,200,240,0.3);
}

.striped-table td:nth-child(odd){
    background-color: rgba(50,50,50,0.5);
}
.lite .striped-table td:nth-child(odd){
    background-color: rgba(190,240,250,0.3);
}

.striped-table tr:nth-child(even){
    background-color: rgba(0,0,0,0.5);
}
.lite .striped-table tr:nth-child(even){
    background-color: rgba(110,200,240,0.5);
}

.striped-table tr:nth-child(odd){
    background-color: #444;
}
.lite .striped-table tr:nth-child(odd){
    background-color: rgba(190,240,250,0.5);
}

.striped-table tr.row_subtitle, .striped-table tr.row_subtitle td,
.striped-table tr.row_spacer, .striped-table tr.row_spacer td
{
    background-color: transparent;
}
.striped-table tr.row_spacer td{
    height: 50px;
}
.striped-table td.empty_header_cell:nth-child(even){
    background-color: rgba(0,0,0);
}
.striped-table td.empty_header_cell:nth-child(odd){
    background-color: rgba(59,59,59);
}




.value-cell{
    /*border:1px solid rgb(160,160,160);
    border-bottom:0;*/
}
/*.striped-table tr:last-child .value-cell{
    border-bottom:1px solid rgb(160,160,160);
}*/

.striped-table input{
    width: 100%;
    margin:0;
    background-color:rgba(255,255,255,0.6);
    border:0px;
    border-radius: 4px;
    font-size:20px;
}


.striped-table th{
    text-align: left;
}

.series_table + .series_table {
    margin-top: 25px;
}


.complete{
    color: lightblue;
}
.working{
    color: lightgreen;
}
.terminated{
    color: red;
}
.error{
    color: red;
}

.status_indicator.complete > div:first-child{
    background-color: lightblue;
}
.status_indicator.working > div:first-child{
    background-color: lightgreen;
}
.status_indicator.terminated > div:first-child,
.status_indicator.error > div:first-child {
    background-color: red;
}



.process_list .process_row{
    cursor: pointer;
}
.process_list .process_row:hover{
    background-color: white;
}

.last_checked{
    margin-bottom: 15px;
}

.last_checked .clock{
    font-family: open sans semibold;
}

.kill_process,
.maintenance_mode {
    float: right;
    cursor: pointer;
}

.list_footer {
    margin-top: 15px;
}

.list_footer div {
    display: inline-block;
    white-space: nowrap;
}
.list_footer .recs_per_page{
    float: left;
}
.list_footer .page_nav{
    float: right;
}

.process_summary_box + .process_summary_box {
    margin-top: 40px;
}

.page_nav .arrow_left{
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 10px solid black;
}

.page_nav .arrow_right{
    width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid black;
}

.page_nav .page_num, .page_nav .num_pages {
    margin: 0 8px;
}
.page_nav .page_prev, .page_nav .page_next, .page_nav .page_first, .page_nav .page_last {
    padding: 0 8px;
    cursor: pointer;
}
.page_nav .disabled {
    cursor: auto;
}
.page_nav .disabled .arrow_left {
    border-right: 10px solid #999;
}
.page_nav .disabled .arrow_right {
    border-left: 10px solid #999;
}

.process_summary .panel_subtitle {
    display: inline-block;
    float: left;
}

.process_summary .download_json {
    display: inline-block;
    float: right;
    cursor: pointer;
    margin-top: -0.5ex;
    margin-bottom: 1ex;
}

.page_nav input.page_num.visible {
    max-width: 3em;
    display: inline-block;
    font-size: inherit;
}

.page_nav .page_num_clickable {
    display: inline-block;
    min-width: 2em;
    text-align: center;
    cursor: pointer;
}

.process_log .log_pane{
    max-height: 800px;
    overflow-y: auto;
}
.process_log .log_pane .striped-table td.message{
    white-space: normal;
}
.process_log .log_pane tr.header_row{
    position: sticky;
    top: 0;
}

.process_log .status_indicator{
    float: right;
    background-color: #333;
    padding: 2px 8px;
    border-radius: 5px;
}

.status_indicator > div {
    display: inline-block;
}
.status_indicator > div:first-child{
    width: 10px;
    height: 10px;
    border-radius: 5px;
}
.status_indicator.working{
    cursor: pointer;
}

.status_indicator.working > div:first-child.off-state{
    background-color: transparent;
}

.process_log .last_checked {
    display: inline-block;
}

.process_log .download_logs {
    display: inline-block;
    float: right;
    margin-left: 1em;
    margin-top: -0.4ex;
    cursor: pointer;
}


.section-top{
    margin-top: 30px;
}


.user_form input[type=text], .user_form input[type=password] {
    font-size: 18px;
    width: calc(100% - 16px);
    padding: 8px;
    border-radius: 4px;
    background-color: #777;
	box-shadow: inset 0 2px 4px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
	border: 1px solid transparent;
    border-top: none;
    border-bottom: 1px solid #DDD;
    color: white;
}

.user_form{
    text-align: center;
    padding: 15px 30px;
}

.user_form > form > div + div, .user_form > form > div > div + div {
    margin-top: 15px;
}
.user_form .info {
    text-align:left;
}


input[type=button]{
    font-size:17px;
    background-color: #305f82;
    color: white;
    padding: 8px 16px;
    cursor:pointer;
    border: 0;
	border-radius: 5px;
    box-shadow: 2px 2px 4px rgb(150,150,150);
    margin: 4px 2px;
}
input[type=button].row_button{
    font-size: 12px;
    padding: 4px;
}

input[type=button].disabled{
    background-color: rgb(230,230,230);
    cursor: default;
}
input[type=button].loading{
    background-image: url('<TMPL_VAR NAME=alias_base>/images/wait.gif');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 25px;
}


input[type=text].error{
    background-color: rgb(255,200,200);
}


.input_err > div, .input_err > pre{
    color: red;
    padding: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 12px;
}


.subsection{
    margin-top:60px;
}

h2 {
    display:inline;
    padding: 4px;
}

a {
    text-decoration: none;
    color: rgb(0,80,100);
}

.event-row{
    cursor:pointer;
}


.site_menu{
    float: right;
    padding: 0 0 50px 30px;
    margin-top: 40px;
}
.site_menu div{
    font-weight:bold;
    padding: 20px 0;
}
.site_menu input[type=button]{
    width: 140px;
}


.emph_box {
    background-color: white;
    display: inline-block;
    border-radius: 4px;
    font-weight: bold;
    padding: 20px;
    box-shadow: 2px 2px 4px rgb(150,150,150);
}


.info_box{
    float:right;
    max-width: 400px;
}
@media screen and (max-width: 1400px){
    .info_box {
        float: none;
        margin-top: 20px;
    }
}

@media screen and (max-width: 1600px){
    .striped-table td {
        white-space: normal;
    }
    .grid-table td {
        white-space: normal;
    }
}

@media screen and (max-width: 1400px){
    .page { width: 100% }
    .panel > div {
        border-radius: 0;
        padding: 40px 10px;
    }
}

@media screen and (max-width: 1400px){

    .striped-table td{
        padding: 30px 8px;
    }

    .grid-table td{
        padding: 30px 8px;
    }

    .log_pane td:nth-child(2), .log_pane td:nth-child(3){
        display: none;
    }
    .log_pane td:last-child{
        white-space: normal;
    }
    .id_table td:last-child{
        display: none;
    }
    .utility_table td:nth-child(4), .utility_table td:last-child{
        display: none;
    }
    .child_proc_table td:nth-child(5), .child_proc_table td:last-child{
        display: none;
    }
    .process_list td:nth-child(6), .process_list td:nth-child(7) {
        display: none;
    }
    .list_footer {
        text-align: center;
    }
    .list_footer .recs_per_page, .list_footer .page_nav{
        float: none;
        display: block;
    }
    .list_footer .page_nav{
        margin-top: 20px;
    }
    .page_nav .arrow_left{
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-right: 30px solid black;
    }
    .page_nav .arrow_left.disabled{
        border-right: 30px solid #999;
    }
    .page_nav .arrow_right{
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 30px solid black;
    }
    .page_nav .arrow_right.disabled{
        border-left: 30px solid #999;
    }
    .page_nav .page_num{
        font-size: 30px;
    }
}

@media screen and (max-width: 1200px){
    .panel > div {
        font-size: 12px;
    }
    .striped-table td{
        white-space: normal;
    }
    .grid-table td{
        white-space: normal;
    }
    .log_pane td:last-child{
        display: none;
    }
}

@media screen and (max-width: 1000px){
    .process_list td:last-child, .process_list tr.filter_row{
        display: none;
    }
}


.footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: black;
    color: white;
}
.footer > p {
    margin: auto;
}


.grid-table {
    width: 100%;
    font-family: open sans;
    color: white;
    background-color: inherit;
}

.grid-table td{
    padding: 8px;
    white-space: nowrap;
}

td.so-x-of-y-of {
    width: 0.1%;
    white-space: nowrap;
}

td.so-x-of-y-x {
    text-align: right;
}

td.so-x-of-y-y {
    width: 0.1%;
    white-space: nowrap;
}

td.so-x-of-y-row-caption {
    width: 0.1%;
    white-space: nowrap;
}

td.so-x-of-y-header {
    text-align: right;
}

.so-x-of-y-percents {
    width: 0.1%;
    white-space: nowrap;
}

td.so_graph_frame, .so_graph_frame td {
    margin: 0;
    padding: 0;
}

td.so_graph_frame table {
    border-collapse: collapse;
    border: none;
    font-size: 75%;
    margin-left: 0.5em;
    margin-right: 0.5em;
    margin-bottom: 1em;
    margin-top: 0.5em;
}

.so_graph_frame td.x_middle {
}

.so_graph_frame td.y_middle {
    height:100%;
}

.so_graph_frame td.y_top {
    padding-left: 0.3em;
    text-align: left;
    vertical-align: top;
    width:100%;
}

.so_graph_frame td.y_bottom {
    padding-left: 0.3em;
    text-align: left;
    vertical-align: bottom;
}

.so_graph_frame td.x_left {
    text-align: left;
}

.so_graph_frame td.x_right {
    text-align: right;
}

.so_graph_frame td:nth-child(even),
.so_graph_frame td:nth-child(odd),
.so_graph_frame tr:nth-child(even),
.so_graph_frame tr:nth-child(odd)
{
    background-color: inherit;
}

.so-header span.last_checked {
    display:inline-block;
    float:right;
    font-size: 70%;
    margin: 0;
    opacity: 0.4;
    visibility: hidden;
}

.so-header span.last_checked span {
    line-height: 200%;
}

.so-daemon-running:before {
  content: "\1F7E2 ";
}

.so-daemon-not-running:before {
  content: "\1F534 ";
}

.h6 {
    font-size: 80%;
}

td.h6 {
    padding-left: 2em;
}

.h5 {
    font-size: 80%;
}

.h4 {
    font-size: 120%;
}

.h3 {
    font-size: 150%;
}

.test-result-column {
    text-align: center;
}

.lite .process_details > div {
    margin: 0;
    padding-top: 1em;
}

.lite .process-details-table {
    font-size: 1.2em;
}

.lite .process-details-table td {
    padding-right: 1em;
    padding-left: 1em;
}

.lite .process-details-table tr:last-child td {
    padding-bottom: 1em;
}

.lite .process-details-table select {
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
}

.lite .process-details-table select option {
    font-weight: bold;
}

.lite .process-details-table select option[value=""] {
    font-weight: revert;
    color: gray;
}

.lite .process-details-table button#run_process {
    font-size: 1.3em;
    margin-top: 0.4em;
}

.lite .processes_list tr.active {
    cursor: pointer;
}

.lite .processes_list .status{
    font-weight: bold;
}

.lite .processes_list .complete{
    color: green;
}
.lite .processes_list .working{
    color: navy;
}
.lite .processes_list .terminated{
    color: red;
}
.error{
    color: red;
}

.lite .progress-bar {
    width:100%;
    height:1.5em;
    border-radius: 1.5em;
    overflow: hidden;
    border: 1px solid #5C8FB3;
}
.lite .progress-bar .progress-bar-foreground {
    position:relative;
    z-index: 2;
    width: 100%;
    top: -100%;
    text-align: center;
    line-height: 1.45em;
    color: black;
    font-weight: bold;
    height: 100%;
}
/* a clipping frame through which the progress bar moves during animation */
.lite .progress-bar .progress-bar-background-frame {
    width:50%;
    overflow: hidden;
    height: 100%;
}
/* the actual progress bar moved by animation */
.lite .progress-bar .progress-bar-background {
    z-index: 1;
    position:relative;
    background: repeating-linear-gradient(135deg,#5C8FB3 0 10px,#749BB6 0 20px);
    background-size: 100% 100%;
    animation:progress-bar 120s linear infinite;
    width: 1000%;
    margin-left: -800%;
    margin-right: -200%;
    margin-right: 0px;
    filter: brightness(1.3);
    height: 100%;
}
@keyframes progress-bar {
    100% {
       margin-left: -100%;
       margin-right: -900%;
    }
}

.lite .processes_list .progress-bar .progress-bar-background {
    background: #5C8FB3;
    animation: none;
}

.lite .otp_setup_code_entry input#activation_code {
    width: 15em;
    text-align: center;
}

.lite .otp_setup_code_entry .button {
    margin-top: 3em;
}

.lite .otp_setup_seed_display div {
    text-align: center;
    margin: auto;
    margin-bottom: 1em;
}

.lite .otp_setup_seed_display div.button {
    margin-top: 3em;
}

.lite .otp_setup_check .success {
    text-align: center;
    margin: auto;
    color: green;
    font-weight: bold;
}

.lite .otp_setup_check .error {
    text-align: center;
    margin: auto;
    color: red;
    font-weight: bold;
}

.lite .otp_setup_check .error .button {
    margin-top: 3em;
}

.lite .otp_setup_check .in_progress {
    animation: blinker 1s linear infinite;
    text-align: center;
    margin: auto;
    margin-bottom: 1em;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.lite div.button {
    cursor: pointer;
}

.striped-table.param_table td {
    white-space: normal;
}

.maintenance_mode_buttons.maintenance_mode_off .button.maintenance_mode_off,
.maintenance_mode_buttons.maintenance_mode_on .button.maintenance_mode_on {
    display: none;
}

.heatmap0 {color:hsl(120, 100%, 60%);}
.heatmap1 {color:hsl(118.8, 100%, 60%);}
.heatmap2 {color:hsl(117.6, 100%, 60%);}
.heatmap3 {color:hsl(116.39999999999999, 100%, 60%);}
.heatmap4 {color:hsl(115.19999999999999, 100%, 60%);}
.heatmap5 {color:hsl(114, 100%, 60%);}
.heatmap6 {color:hsl(112.8, 100%, 60%);}
.heatmap7 {color:hsl(111.60000000000001, 100%, 60%);}
.heatmap8 {color:hsl(110.4, 100%, 60%);}
.heatmap9 {color:hsl(109.2, 100%, 60%);}
.heatmap10 {color:hsl(108, 100%, 60%);}
.heatmap11 {color:hsl(106.8, 100%, 60%);}
.heatmap12 {color:hsl(105.6, 100%, 60%);}
.heatmap13 {color:hsl(104.4, 100%, 60%);}
.heatmap14 {color:hsl(103.2, 100%, 60%);}
.heatmap15 {color:hsl(102, 100%, 60%);}
.heatmap16 {color:hsl(100.8, 100%, 60%);}
.heatmap17 {color:hsl(99.6, 100%, 60%);}
.heatmap18 {color:hsl(98.39999999999999, 100%, 60%);}
.heatmap19 {color:hsl(97.2, 100%, 60%);}
.heatmap20 {color:hsl(96, 100%, 60%);}
.heatmap21 {color:hsl(94.80000000000001, 100%, 60%);}
.heatmap22 {color:hsl(93.60000000000001, 100%, 60%);}
.heatmap23 {color:hsl(92.4, 100%, 60%);}
.heatmap24 {color:hsl(91.2, 100%, 60%);}
.heatmap25 {color:hsl(90, 100%, 60%);}
.heatmap26 {color:hsl(88.8, 100%, 60%);}
.heatmap27 {color:hsl(87.6, 100%, 60%);}
.heatmap28 {color:hsl(86.39999999999999, 100%, 60%);}
.heatmap29 {color:hsl(85.19999999999999, 100%, 60%);}
.heatmap30 {color:hsl(84, 100%, 60%);}
.heatmap31 {color:hsl(82.8, 100%, 60%);}
.heatmap32 {color:hsl(81.60000000000001, 100%, 60%);}
.heatmap33 {color:hsl(80.4, 100%, 60%);}
.heatmap34 {color:hsl(79.2, 100%, 60%);}
.heatmap35 {color:hsl(78, 100%, 60%);}
.heatmap36 {color:hsl(76.8, 100%, 60%);}
.heatmap37 {color:hsl(75.6, 100%, 60%);}
.heatmap38 {color:hsl(74.4, 100%, 60%);}
.heatmap39 {color:hsl(73.2, 100%, 60%);}
.heatmap40 {color:hsl(72, 100%, 60%);}
.heatmap41 {color:hsl(70.8, 100%, 60%);}
.heatmap42 {color:hsl(69.6, 100%, 60%);}
.heatmap43 {color:hsl(68.39999999999999, 100%, 60%);}
.heatmap44 {color:hsl(67.2, 100%, 60%);}
.heatmap45 {color:hsl(66, 100%, 60%);}
.heatmap46 {color:hsl(64.80000000000001, 100%, 60%);}
.heatmap47 {color:hsl(63.6, 100%, 60%);}
.heatmap48 {color:hsl(62.400000000000006, 100%, 60%);}
.heatmap49 {color:hsl(61.2, 100%, 60%);}
.heatmap50 {color:hsl(60, 100%, 60%);}
.heatmap51 {color:hsl(58.8, 100%, 60%);}
.heatmap52 {color:hsl(57.599999999999994, 100%, 60%);}
.heatmap53 {color:hsl(56.4, 100%, 60%);}
.heatmap54 {color:hsl(55.2, 100%, 60%);}
.heatmap55 {color:hsl(54, 100%, 60%);}
.heatmap56 {color:hsl(52.8, 100%, 60%);}
.heatmap57 {color:hsl(51.6, 100%, 60%);}
.heatmap58 {color:hsl(50.4, 100%, 60%);}
.heatmap59 {color:hsl(49.199999999999996, 100%, 60%);}
.heatmap60 {color:hsl(48, 100%, 60%);}
.heatmap61 {color:hsl(46.800000000000004, 100%, 60%);}
.heatmap62 {color:hsl(45.6, 100%, 60%);}
.heatmap63 {color:hsl(44.4, 100%, 60%);}
.heatmap64 {color:hsl(43.199999999999996, 100%, 60%);}
.heatmap65 {color:hsl(42, 100%, 60%);}
.heatmap66 {color:hsl(40.800000000000004, 100%, 60%);}
.heatmap67 {color:hsl(39.6, 100%, 60%);}
.heatmap68 {color:hsl(38.4, 100%, 60%);}
.heatmap69 {color:hsl(37.2, 100%, 60%);}
.heatmap70 {color:hsl(36, 100%, 60%);}
.heatmap71 {color:hsl(34.8, 100%, 60%);}
.heatmap72 {color:hsl(33.6, 100%, 60%);}
.heatmap73 {color:hsl(32.400000000000006, 100%, 60%);}
.heatmap74 {color:hsl(31.200000000000003, 100%, 60%);}
.heatmap75 {color:hsl(30, 100%, 60%);}
.heatmap76 {color:hsl(28.799999999999997, 100%, 60%);}
.heatmap77 {color:hsl(27.6, 100%, 60%);}
.heatmap78 {color:hsl(26.4, 100%, 60%);}
.heatmap79 {color:hsl(25.2, 100%, 60%);}
.heatmap80 {color:hsl(24, 100%, 60%);}
.heatmap81 {color:hsl(22.8, 100%, 60%);}
.heatmap82 {color:hsl(21.599999999999998, 100%, 60%);}
.heatmap83 {color:hsl(20.400000000000002, 100%, 60%);}
.heatmap84 {color:hsl(19.2, 100%, 60%);}
.heatmap85 {color:hsl(18, 100%, 60%);}
.heatmap86 {color:hsl(16.8, 100%, 60%);}
.heatmap87 {color:hsl(15.600000000000001, 100%, 60%);}
.heatmap88 {color:hsl(14.399999999999999, 100%, 60%);}
.heatmap89 {color:hsl(13.2, 100%, 60%);}
.heatmap90 {color:hsl(12, 100%, 60%);}
.heatmap91 {color:hsl(10.799999999999999, 100%, 60%);}
.heatmap92 {color:hsl(9.6, 100%, 60%);}
.heatmap93 {color:hsl(8.4, 100%, 60%);}
.heatmap94 {color:hsl(7.199999999999999, 100%, 60%);}
.heatmap95 {color:hsl(6, 100%, 60%);}
.heatmap96 {color:hsl(4.8, 100%, 60%);}
.heatmap97 {color:hsl(3.5999999999999996, 100%, 60%);}
.heatmap98 {color:hsl(2.4, 100%, 60%);}
.heatmap99 {color:hsl(1.2, 100%, 60%);}
.heatmap100 {color:hsl(1, 100%, 60%);}
