﻿@charset "UTF-8";

@font-face {
    font-family: 'Cooper Hewitt Web';
    src: url(../assets/fonts/cooperhewitt-bold-webfont.eot);
    src: url(../assets/fonts/cooperhewitt-bold-webfont.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/cooperhewitt-bold-webfont.woff2) format("woff2"), url(../assets/fonts/cooperhewitt-bold-webfont.woff) format("woff"), url(../assets/fonts/cooperhewitt-bold-webfont.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Cooper Hewitt Web';
    src: url(../assets/fonts/cooperhewitt-bolditalic-webfont.eot);
    src: url(../assets/fonts/cooperhewitt-bolditalic-webfont.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/cooperhewitt-bolditalic-webfont.woff2) format("woff2"), url(../assets/fonts/cooperhewitt-bolditalic-webfont.woff) format("woff"), url(../assets/fonts/cooperhewitt-bolditalic-webfont.ttf) format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Cooper Hewitt Web';
    src: url(../assets/fonts/cooperhewitt-medium-webfont.eot);
    src: url(../assets/fonts/cooperhewitt-medium-webfont.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/cooperhewitt-medium-webfont.woff2) format("woff2"), url(../assets/fonts/cooperhewitt-medium-webfont.woff) format("woff"), url(../assets/fonts/cooperhewitt-medium-webfont.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cooper Hewitt Web';
    src: url(../assets/fonts/cooperhewitt-mediumitalic-webfont.eot);
    src: url(../assets/fonts/cooperhewitt-mediumitalic-webfont.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/cooperhewitt-mediumitalic-webfont.woff2) format("woff2"), url(../assets/fonts/cooperhewitt-mediumitalic-webfont.woff) format("woff"), url(../assets/fonts/cooperhewitt-mediumitalic-webfont.ttf) format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Bebas Web';
    src: url(../assets/fonts/bebasneue_bold-webfont.eot);
    src: url(../assets/fonts/bebasneue_bold-webfont.eot?#iefix) format("embedded-opentype"), url(../assets/fonts/bebasneue_bold-webfont.woff2) format("woff2"), url(../assets/fonts/bebasneue_bold-webfont.woff) format("woff"), url(../assets/fonts/bebasneue_bold-webfont.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
}

/**
 * Foundation for Sites by ZURB
 * Version 6.3.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-in-down.mui-enter.mui-enter-active {
        transform: translateY(0);
    }

.slide-in-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-in-left.mui-enter.mui-enter-active {
        transform: translateX(0);
    }

.slide-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-in-up.mui-enter.mui-enter-active {
        transform: translateY(0);
    }

.slide-in-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-in-right.mui-enter.mui-enter-active {
        transform: translateX(0);
    }

.slide-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-out-down.mui-leave.mui-leave-active {
        transform: translateY(100%);
    }

.slide-out-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-out-right.mui-leave.mui-leave-active {
        transform: translateX(100%);
    }

.slide-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-out-up.mui-leave.mui-leave-active {
        transform: translateY(-100%);
    }

.slide-out-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-out-left.mui-leave.mui-leave-active {
        transform: translateX(-100%);
    }

.fade-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 0;
    transition-property: opacity;
}

    .fade-in.mui-enter.mui-enter-active {
        opacity: 1;
    }

.fade-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 1;
    transition-property: opacity;
}

    .fade-out.mui-leave.mui-leave-active {
        opacity: 0;
    }

.hinge-in-from-top.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-top.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-right.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-bottom.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(90deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-bottom.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(90deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-left.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-middle-x.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-middle-x.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-middle-y.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-middle-y.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-out-from-top.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-top.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateX(-90deg);
        opacity: 0;
    }

.hinge-out-from-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-right.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateY(-90deg);
        opacity: 0;
    }

.hinge-out-from-bottom.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-bottom.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateX(90deg);
        opacity: 0;
    }

.hinge-out-from-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-left.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateY(90deg);
        opacity: 0;
    }

.hinge-out-from-middle-x.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-middle-x.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateX(-90deg);
        opacity: 0;
    }

.hinge-out-from-middle-y.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-middle-y.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateY(-90deg);
        opacity: 0;
    }

.scale-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(0.5);
    transition-property: transform, opacity;
    opacity: 0;
}

    .scale-in-up.mui-enter.mui-enter-active {
        transform: scale(1);
        opacity: 1;
    }

.scale-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1.5);
    transition-property: transform, opacity;
    opacity: 0;
}

    .scale-in-down.mui-enter.mui-enter-active {
        transform: scale(1);
        opacity: 1;
    }

.scale-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1;
}

    .scale-out-up.mui-leave.mui-leave-active {
        transform: scale(1.5);
        opacity: 0;
    }

.scale-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1;
}

    .scale-out-down.mui-leave.mui-leave-active {
        transform: scale(0.5);
        opacity: 0;
    }

.spin-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(-0.75turn);
    transition-property: transform, opacity;
    opacity: 0;
}

    .spin-in.mui-enter.mui-enter-active {
        transform: rotate(0);
        opacity: 1;
    }

.spin-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1;
}

    .spin-out.mui-leave.mui-leave-active {
        transform: rotate(0.75turn);
        opacity: 0;
    }

.spin-in-ccw.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0.75turn);
    transition-property: transform, opacity;
    opacity: 0;
}

    .spin-in-ccw.mui-enter.mui-enter-active {
        transform: rotate(0);
        opacity: 1;
    }

.spin-out-ccw.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1;
}

    .spin-out-ccw.mui-leave.mui-leave-active {
        transform: rotate(-0.75turn);
        opacity: 0;
    }

.slow {
    transition-duration: 750ms !important;
}

.fast {
    transition-duration: 250ms !important;
}

.linear {
    transition-timing-function: linear !important;
}

.ease {
    transition-timing-function: ease !important;
}

.ease-in {
    transition-timing-function: ease-in !important;
}

.ease-out {
    transition-timing-function: ease-out !important;
}

.ease-in-out {
    transition-timing-function: ease-in-out !important;
}

.bounce-in {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
    transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
    transition-delay: 300ms !important;
}

.long-delay {
    transition-delay: 700ms !important;
}

.shake {
    animation-name: shake-7;
}

@keyframes shake-7 {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
        transform: translateX(7%);
    }

    5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
        transform: translateX(-7%);
    }
}

.spin-cw {
    animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(-1turn);
    }

    100% {
        transform: rotate(0);
    }
}

.spin-ccw {
    animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}

.wiggle {
    animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
    40%, 50%, 60% {
        transform: rotate(7deg);
    }

    35%, 45%, 55%, 65% {
        transform: rotate(-7deg);
    }

    0%, 30%, 70%, 100% {
        transform: rotate(0);
    }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
    animation-duration: 500ms;
}

.infinite {
    animation-iteration-count: infinite;
}

.slow {
    animation-duration: 750ms !important;
}

.fast {
    animation-duration: 250ms !important;
}

.linear {
    animation-timing-function: linear !important;
}

.ease {
    animation-timing-function: ease !important;
}

.ease-in {
    animation-timing-function: ease-in !important;
}

.ease-out {
    animation-timing-function: ease-out !important;
}

.ease-in-out {
    animation-timing-function: ease-in-out !important;
}

.bounce-in {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
    animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
    animation-delay: 300ms !important;
}

.long-delay {
    animation-delay: 700ms !important;
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
    font-family: sans-serif;
    /* 1 */
    line-height: 1.15;
    /* 2 */
    -ms-text-size-adjust: 100%;
    /* 3 */
    -webkit-text-size-adjust: 100%;
    /* 3 */
}

/* Sections
       ========================================================================== */
/**
     * Remove the margin in all browsers (opinionated).
     */
body {
    margin: 0;
}

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
    display: block;
}

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
    display: block;
}

/**
     * Add the correct margin in IE 8.
     */
figure {
    margin: 1em 40px;
}

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/**
     * Add the correct display in IE.
     */
main {
    display: block;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
    background-color: transparent;
    /* 1 */
    -webkit-text-decoration-skip: objects;
    /* 2 */
}

    /**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
    a:active,
    a:hover {
        outline-width: 0;
    }

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
    font-weight: inherit;
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
    font-weight: bolder;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/**
     * Add the correct font style in Android 4.3-.
     */
dfn {
    font-style: italic;
}

/**
     * Add the correct background and color in IE 9-.
     */
mark {
    background-color: #ff0;
    color: #000;
}

/**
     * Add the correct font size in all browsers.
     */
small {
    font-size: 80%;
}

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
    display: inline-block;
}

    /**
     * Add the correct display in iOS 4-7.
     */
    audio:not([controls]) {
        display: none;
        height: 0;
    }

/**
     * Remove the border on images inside links in IE 10-.
     */
img {
    border-style: none;
}

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
    overflow: hidden;
}

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionatedX).
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
    font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1.15;
    /* 1 */
    margin: 0;
    /* 2 */
}

/**
     * Show the overflow in IE.
     */
button {
    overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
    /* 1 */
    text-transform: none;
}

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
    */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    /**
       * Remove the inner border and padding in Firefox.
       */
    /**
       * Restore the focus styles unset by the previous rule.
       */
}

    button::-moz-focus-inner,
    [type="button"]::-moz-focus-inner,
    [type="reset"]::-moz-focus-inner,
    [type="submit"]::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    button:-moz-focusring,
    [type="button"]:-moz-focusring,
    [type="reset"]:-moz-focusring,
    [type="submit"]:-moz-focusring {
        outline: 1px dotted ButtonText;
    }

/**
     * Show the overflow in Edge.
     */
input {
    overflow: visible;
}

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
    /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */
}

    [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
    box-sizing: border-box;
    /* 1 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    color: inherit;
    /* 2 */
    white-space: normal;
    /* 1 */
}

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
     * Remove the default vertical scrollbar in IE.
     */
textarea {
    overflow: auto;
}

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
    display: block;
}

/*
     * Add the correct display in all browsers.
     */
summary {
    display: list-item;
}

/*
     * Add the correct display in IE 9-.
     */
menu {
    display: block;
}

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
    display: inline-block;
}

/**
     * Add the correct display in IE.
     */
template {
    display: none;
}

/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
    display: none;
}

.foundation-mq {
    font-family: "small=0em&medium=40em&large=64.0625em&xlarge=75em&xxlarge=90em";
}

html {
    box-sizing: border-box;
    font-size: 100%;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
    font-weight: normal;
    line-height: 1.5;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}

textarea {
    height: auto;
    min-height: 50px;
    border-radius: 0;
}

select {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
    max-width: none !important;
}

button {
    padding: 0;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1;
}

[data-whatinput='mouse'] button {
    outline: 0;
}

pre {
    overflow: auto;
}

.is-visible {
    display: block !important;
}

.is-hidden {
    display: none !important;
}

.row {
    max-width: 75rem;
    margin-right: auto;
    margin-left: auto;
}

    .row::before, .row::after {
        display: table;
        content: ' ';
    }

    .row::after {
        clear: both;
    }

    .row.collapse > .column, .row.collapse > .columns {
        padding-right: 0;
        padding-left: 0;
    }

    .row .row {
        margin-right: -0.625rem;
        margin-left: -0.625rem;
    }

@media print, screen and (min-width: 40em) {
    .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem;
    }
}

@media print, screen and (min-width: 64.0625em) {
    .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem;
    }
}

.row .row.collapse {
    margin-right: 0;
    margin-left: 0;
}

.row.expanded {
    max-width: none;
}

    .row.expanded .row {
        margin-right: auto;
        margin-left: auto;
    }

.row:not(.expanded) .row {
    max-width: none;
}

.row.gutter-small > .column, .row.gutter-small > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

.row.gutter-medium > .column, .row.gutter-medium > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
}

.column, .columns {
    width: 100%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

@media print, screen and (min-width: 40em) {
    .column, .columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right;
}

.column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left;
}

.column.row.row, .row.row.columns {
    float: none;
}

.row .column.row.row, .row .row.row.columns {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.small-1 {
    width: 8.3333333333%;
}

.small-push-1 {
    position: relative;
    left: 8.3333333333%;
}

.small-pull-1 {
    position: relative;
    left: -8.3333333333%;
}

.small-offset-0 {
    margin-left: 0%;
}

.small-2 {
    width: 16.6666666667%;
}

.small-push-2 {
    position: relative;
    left: 16.6666666667%;
}

.small-pull-2 {
    position: relative;
    left: -16.6666666667%;
}

.small-offset-1 {
    margin-left: 8.3333333333%;
}

.small-3 {
    width: 25%;
}

.small-push-3 {
    position: relative;
    left: 25%;
}

.small-pull-3 {
    position: relative;
    left: -25%;
}

.small-offset-2 {
    margin-left: 16.6666666667%;
}

.small-4 {
    width: 33.3333333333%;
}

.small-push-4 {
    position: relative;
    left: 33.3333333333%;
}

.small-pull-4 {
    position: relative;
    left: -33.3333333333%;
}

.small-offset-3 {
    margin-left: 25%;
}

.small-5 {
    width: 41.6666666667%;
}

.small-push-5 {
    position: relative;
    left: 41.6666666667%;
}

.small-pull-5 {
    position: relative;
    left: -41.6666666667%;
}

.small-offset-4 {
    margin-left: 33.3333333333%;
}

.small-6 {
    width: 50%;
}

.small-push-6 {
    position: relative;
    left: 50%;
}

.small-pull-6 {
    position: relative;
    left: -50%;
}

.small-offset-5 {
    margin-left: 41.6666666667%;
}

.small-7 {
    width: 58.3333333333%;
}

.small-push-7 {
    position: relative;
    left: 58.3333333333%;
}

.small-pull-7 {
    position: relative;
    left: -58.3333333333%;
}

.small-offset-6 {
    margin-left: 50%;
}

.small-8 {
    width: 66.6666666667%;
}

.small-push-8 {
    position: relative;
    left: 66.6666666667%;
}

.small-pull-8 {
    position: relative;
    left: -66.6666666667%;
}

.small-offset-7 {
    margin-left: 58.3333333333%;
}

.small-9 {
    width: 75%;
}

.small-push-9 {
    position: relative;
    left: 75%;
}

.small-pull-9 {
    position: relative;
    left: -75%;
}

.small-offset-8 {
    margin-left: 66.6666666667%;
}

.small-10 {
    width: 83.3333333333%;
}

.small-push-10 {
    position: relative;
    left: 83.3333333333%;
}

.small-pull-10 {
    position: relative;
    left: -83.3333333333%;
}

.small-offset-9 {
    margin-left: 75%;
}

.small-11 {
    width: 91.6666666667%;
}

.small-push-11 {
    position: relative;
    left: 91.6666666667%;
}

.small-pull-11 {
    position: relative;
    left: -91.6666666667%;
}

.small-offset-10 {
    margin-left: 83.3333333333%;
}

.small-12 {
    width: 100%;
}

.small-offset-11 {
    margin-left: 91.6666666667%;
}

.small-up-1 > .column, .small-up-1 > .columns {
    float: left;
    width: 100%;
}

    .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
        clear: both;
    }

    .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
        float: left;
    }

.small-up-2 > .column, .small-up-2 > .columns {
    float: left;
    width: 50%;
}

    .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
        clear: both;
    }

    .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
        float: left;
    }

.small-up-3 > .column, .small-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
}

    .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
        clear: both;
    }

    .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
        float: left;
    }

.small-up-4 > .column, .small-up-4 > .columns {
    float: left;
    width: 25%;
}

    .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
        clear: both;
    }

    .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
        float: left;
    }

.small-up-5 > .column, .small-up-5 > .columns {
    float: left;
    width: 20%;
}

    .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
        clear: both;
    }

    .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
        float: left;
    }

.small-up-6 > .column, .small-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
}

    .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
        clear: both;
    }

    .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
        float: left;
    }

.small-up-7 > .column, .small-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
}

    .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
        clear: both;
    }

    .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
        float: left;
    }

.small-up-8 > .column, .small-up-8 > .columns {
    float: left;
    width: 12.5%;
}

    .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
        clear: none;
    }

    .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
        clear: both;
    }

    .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
        float: left;
    }

.small-collapse > .column, .small-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
}

.small-collapse .row {
    margin-right: 0;
    margin-left: 0;
}

.expanded.row .small-collapse.row {
    margin-right: 0;
    margin-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

.small-centered {
    margin-right: auto;
    margin-left: auto;
}

    .small-centered, .small-centered:last-child:not(:first-child) {
        float: none;
        clear: both;
    }

.small-uncentered,
.small-push-0,
.small-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
}

@media print, screen and (min-width: 40em) {
    .medium-1 {
        width: 8.3333333333%;
    }

    .medium-push-1 {
        position: relative;
        left: 8.3333333333%;
    }

    .medium-pull-1 {
        position: relative;
        left: -8.3333333333%;
    }

    .medium-offset-0 {
        margin-left: 0%;
    }

    .medium-2 {
        width: 16.6666666667%;
    }

    .medium-push-2 {
        position: relative;
        left: 16.6666666667%;
    }

    .medium-pull-2 {
        position: relative;
        left: -16.6666666667%;
    }

    .medium-offset-1 {
        margin-left: 8.3333333333%;
    }

    .medium-3 {
        width: 25%;
    }

    .medium-push-3 {
        position: relative;
        left: 25%;
    }

    .medium-pull-3 {
        position: relative;
        left: -25%;
    }

    .medium-offset-2 {
        margin-left: 16.6666666667%;
    }

    .medium-4 {
        width: 33.3333333333%;
    }

    .medium-push-4 {
        position: relative;
        left: 33.3333333333%;
    }

    .medium-pull-4 {
        position: relative;
        left: -33.3333333333%;
    }

    .medium-offset-3 {
        margin-left: 25%;
    }

    .medium-5 {
        width: 41.6666666667%;
    }

    .medium-push-5 {
        position: relative;
        left: 41.6666666667%;
    }

    .medium-pull-5 {
        position: relative;
        left: -41.6666666667%;
    }

    .medium-offset-4 {
        margin-left: 33.3333333333%;
    }

    .medium-6 {
        width: 50%;
    }

    .medium-push-6 {
        position: relative;
        left: 50%;
    }

    .medium-pull-6 {
        position: relative;
        left: -50%;
    }

    .medium-offset-5 {
        margin-left: 41.6666666667%;
    }

    .medium-7 {
        width: 58.3333333333%;
    }

    .medium-push-7 {
        position: relative;
        left: 58.3333333333%;
    }

    .medium-pull-7 {
        position: relative;
        left: -58.3333333333%;
    }

    .medium-offset-6 {
        margin-left: 50%;
    }

    .medium-8 {
        width: 66.6666666667%;
    }

    .medium-push-8 {
        position: relative;
        left: 66.6666666667%;
    }

    .medium-pull-8 {
        position: relative;
        left: -66.6666666667%;
    }

    .medium-offset-7 {
        margin-left: 58.3333333333%;
    }

    .medium-9 {
        width: 75%;
    }

    .medium-push-9 {
        position: relative;
        left: 75%;
    }

    .medium-pull-9 {
        position: relative;
        left: -75%;
    }

    .medium-offset-8 {
        margin-left: 66.6666666667%;
    }

    .medium-10 {
        width: 83.3333333333%;
    }

    .medium-push-10 {
        position: relative;
        left: 83.3333333333%;
    }

    .medium-pull-10 {
        position: relative;
        left: -83.3333333333%;
    }

    .medium-offset-9 {
        margin-left: 75%;
    }

    .medium-11 {
        width: 91.6666666667%;
    }

    .medium-push-11 {
        position: relative;
        left: 91.6666666667%;
    }

    .medium-pull-11 {
        position: relative;
        left: -91.6666666667%;
    }

    .medium-offset-10 {
        margin-left: 83.3333333333%;
    }

    .medium-12 {
        width: 100%;
    }

    .medium-offset-11 {
        margin-left: 91.6666666667%;
    }

    .medium-up-1 > .column, .medium-up-1 > .columns {
        float: left;
        width: 100%;
    }

        .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
            clear: both;
        }

        .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
            float: left;
        }

    .medium-up-2 > .column, .medium-up-2 > .columns {
        float: left;
        width: 50%;
    }

        .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
            clear: both;
        }

        .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
            float: left;
        }

    .medium-up-3 > .column, .medium-up-3 > .columns {
        float: left;
        width: 33.3333333333%;
    }

        .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
            clear: both;
        }

        .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
            float: left;
        }

    .medium-up-4 > .column, .medium-up-4 > .columns {
        float: left;
        width: 25%;
    }

        .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
            clear: both;
        }

        .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
            float: left;
        }

    .medium-up-5 > .column, .medium-up-5 > .columns {
        float: left;
        width: 20%;
    }

        .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
            clear: both;
        }

        .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
            float: left;
        }

    .medium-up-6 > .column, .medium-up-6 > .columns {
        float: left;
        width: 16.6666666667%;
    }

        .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
            clear: both;
        }

        .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
            float: left;
        }

    .medium-up-7 > .column, .medium-up-7 > .columns {
        float: left;
        width: 14.2857142857%;
    }

        .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
            clear: both;
        }

        .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
            float: left;
        }

    .medium-up-8 > .column, .medium-up-8 > .columns {
        float: left;
        width: 12.5%;
    }

        .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
            clear: both;
        }

        .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
            float: left;
        }

    .medium-collapse > .column, .medium-collapse > .columns {
        padding-right: 0;
        padding-left: 0;
    }

    .medium-collapse .row {
        margin-right: 0;
        margin-left: 0;
    }

    .expanded.row .medium-collapse.row {
        margin-right: 0;
        margin-left: 0;
    }

    .medium-uncollapse > .column, .medium-uncollapse > .columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }

    .medium-centered {
        margin-right: auto;
        margin-left: auto;
    }

        .medium-centered, .medium-centered:last-child:not(:first-child) {
            float: none;
            clear: both;
        }

    .medium-uncentered,
    .medium-push-0,
    .medium-pull-0 {
        position: static;
        float: left;
        margin-right: 0;
        margin-left: 0;
    }
}

@media print, screen and (min-width: 64.0625em) {
    .large-1 {
        width: 8.3333333333%;
    }

    .large-push-1 {
        position: relative;
        left: 8.3333333333%;
    }

    .large-pull-1 {
        position: relative;
        left: -8.3333333333%;
    }

    .large-offset-0 {
        margin-left: 0%;
    }

    .large-2 {
        width: 16.6666666667%;
    }

    .large-push-2 {
        position: relative;
        left: 16.6666666667%;
    }

    .large-pull-2 {
        position: relative;
        left: -16.6666666667%;
    }

    .large-offset-1 {
        margin-left: 8.3333333333%;
    }

    .large-3 {
        width: 25%;
    }

    .large-push-3 {
        position: relative;
        left: 25%;
    }

    .large-pull-3 {
        position: relative;
        left: -25%;
    }

    .large-offset-2 {
        margin-left: 16.6666666667%;
    }

    .large-4 {
        width: 33.3333333333%;
    }

    .large-push-4 {
        position: relative;
        left: 33.3333333333%;
    }

    .large-pull-4 {
        position: relative;
        left: -33.3333333333%;
    }

    .large-offset-3 {
        margin-left: 25%;
    }

    .large-5 {
        width: 41.6666666667%;
    }

    .large-push-5 {
        position: relative;
        left: 41.6666666667%;
    }

    .large-pull-5 {
        position: relative;
        left: -41.6666666667%;
    }

    .large-offset-4 {
        margin-left: 33.3333333333%;
    }

    .large-6 {
        width: 50%;
    }

    .large-push-6 {
        position: relative;
        left: 50%;
    }

    .large-pull-6 {
        position: relative;
        left: -50%;
    }

    .large-offset-5 {
        margin-left: 41.6666666667%;
    }

    .large-7 {
        width: 58.3333333333%;
    }

    .large-push-7 {
        position: relative;
        left: 58.3333333333%;
    }

    .large-pull-7 {
        position: relative;
        left: -58.3333333333%;
    }

    .large-offset-6 {
        margin-left: 50%;
    }

    .large-8 {
        width: 66.6666666667%;
    }

    .large-push-8 {
        position: relative;
        left: 66.6666666667%;
    }

    .large-pull-8 {
        position: relative;
        left: -66.6666666667%;
    }

    .large-offset-7 {
        margin-left: 58.3333333333%;
    }

    .large-9 {
        width: 75%;
    }

    .large-push-9 {
        position: relative;
        left: 75%;
    }

    .large-pull-9 {
        position: relative;
        left: -75%;
    }

    .large-offset-8 {
        margin-left: 66.6666666667%;
    }

    .large-10 {
        width: 83.3333333333%;
    }

    .large-push-10 {
        position: relative;
        left: 83.3333333333%;
    }

    .large-pull-10 {
        position: relative;
        left: -83.3333333333%;
    }

    .large-offset-9 {
        margin-left: 75%;
    }

    .large-11 {
        width: 91.6666666667%;
    }

    .large-push-11 {
        position: relative;
        left: 91.6666666667%;
    }

    .large-pull-11 {
        position: relative;
        left: -91.6666666667%;
    }

    .large-offset-10 {
        margin-left: 83.3333333333%;
    }

    .large-12 {
        width: 100%;
    }

    .large-offset-11 {
        margin-left: 91.6666666667%;
    }

    .large-up-1 > .column, .large-up-1 > .columns {
        float: left;
        width: 100%;
    }

        .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
            clear: both;
        }

        .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
            float: left;
        }

    .large-up-2 > .column, .large-up-2 > .columns {
        float: left;
        width: 50%;
    }

        .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
            clear: both;
        }

        .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
            float: left;
        }

    .large-up-3 > .column, .large-up-3 > .columns {
        float: left;
        width: 33.3333333333%;
    }

        .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
            clear: both;
        }

        .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
            float: left;
        }

    .large-up-4 > .column, .large-up-4 > .columns {
        float: left;
        width: 25%;
    }

        .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
            clear: both;
        }

        .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
            float: left;
        }

    .large-up-5 > .column, .large-up-5 > .columns {
        float: left;
        width: 20%;
    }

        .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
            clear: both;
        }

        .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
            float: left;
        }

    .large-up-6 > .column, .large-up-6 > .columns {
        float: left;
        width: 16.6666666667%;
    }

        .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
            clear: both;
        }

        .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
            float: left;
        }

    .large-up-7 > .column, .large-up-7 > .columns {
        float: left;
        width: 14.2857142857%;
    }

        .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
            clear: both;
        }

        .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
            float: left;
        }

    .large-up-8 > .column, .large-up-8 > .columns {
        float: left;
        width: 12.5%;
    }

        .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
            clear: none;
        }

        .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
            clear: both;
        }

        .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
            float: left;
        }

    .large-collapse > .column, .large-collapse > .columns {
        padding-right: 0;
        padding-left: 0;
    }

    .large-collapse .row {
        margin-right: 0;
        margin-left: 0;
    }

    .expanded.row .large-collapse.row {
        margin-right: 0;
        margin-left: 0;
    }

    .large-uncollapse > .column, .large-uncollapse > .columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }

    .large-centered {
        margin-right: auto;
        margin-left: auto;
    }

        .large-centered, .large-centered:last-child:not(:first-child) {
            float: none;
            clear: both;
        }

    .large-uncentered,
    .large-push-0,
    .large-pull-0 {
        position: static;
        float: left;
        margin-right: 0;
        margin-left: 0;
    }
}

.column-block {
    margin-bottom: 1.25rem;
}

    .column-block > :last-child {
        margin-bottom: 0;
    }

@media print, screen and (min-width: 40em) {
    .column-block {
        margin-bottom: 1.875rem;
    }

        .column-block > :last-child {
            margin-bottom: 0;
        }
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 1rem;
    font-size: inherit;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

em,
i {
    font-style: italic;
    line-height: inherit;
}

strong,
b {
    font-weight: bold;
    line-height: inherit;
}

small {
    font-size: 80%;
    line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
    font-style: normal;
    font-weight: bold;
    color: inherit;
    text-rendering: optimizeLegibility;
}

    h1 small,
    h2 small,
    h3 small,
    h4 small,
    h5 small,
    h6 small {
        line-height: 0;
        color: #cacaca;
    }

h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.1875rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.0625rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.8125rem;
    }
}

a {
    line-height: inherit;
    color: #4E938E;
    text-decoration: none;
    cursor: pointer;
}

    a:hover, a:focus {
        color: #437e7a;
    }

    a img {
        border: 0;
    }

hr {
    clear: both;
    max-width: 75rem;
    height: 0;
    margin: 1.25rem auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #cacaca;
    border-left: 0;
}

ul,
ol,
dl {
    margin-bottom: 1rem;
    list-style-position: outside;
    line-height: 1.6;
}

li {
    font-size: inherit;
}

ul {
    margin-left: 1.25rem;
    list-style-type: disc;
}

ol {
    margin-left: 1.25rem;
}

    ul ul, ol ul, ul ol, ol ol {
        margin-left: 1.25rem;
        margin-bottom: 0;
    }

dl {
    margin-bottom: 1rem;
}

    dl dt {
        margin-bottom: 0.3rem;
        font-weight: bold;
    }

blockquote {
    margin: 0 0 1rem;
    padding: 0.5625rem 1.25rem 0 1.1875rem;
    border-left: 1px solid #cacaca;
}

    blockquote, blockquote p {
        line-height: 1.6;
        color: #8a8a8a;
    }

cite {
    display: block;
    font-size: 0.8125rem;
    color: #8a8a8a;
}

    cite:before {
        content: "— ";
    }

abbr {
    border-bottom: 1px dotted #000000;
    color: #000000;
    cursor: help;
}

figure {
    margin: 0;
}

code {
    padding: 0.125rem 0.3125rem 0.0625rem;
    border: 1px solid #cacaca;
    background-color: #e6e6e6;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: normal;
    color: #000000;
}

kbd {
    margin: 0;
    padding: 0.125rem 0.25rem 0;
    background-color: #e6e6e6;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    color: #000000;
}

.subheader {
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
    line-height: 1.4;
    color: #8a8a8a;
}

.lead {
    font-size: 125%;
    line-height: 1.6;
}

.stat {
    font-size: 2.5rem;
    line-height: 1;
}

p + .stat {
    margin-top: -1rem;
}

.no-bullet {
    margin-left: 0;
    list-style: none;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

@media print, screen and (min-width: 40em) {
    .medium-text-left {
        text-align: left;
    }

    .medium-text-right {
        text-align: right;
    }

    .medium-text-center {
        text-align: center;
    }

    .medium-text-justify {
        text-align: justify;
    }
}

@media print, screen and (min-width: 64.0625em) {
    .large-text-left {
        text-align: left;
    }

    .large-text-right {
        text-align: right;
    }

    .large-text-center {
        text-align: center;
    }

    .large-text-justify {
        text-align: justify;
    }
}

.show-for-print {
    display: none !important;
}

@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: black !important;
        text-shadow: none !important;
    }

    .show-for-print {
        display: block !important;
    }

    .hide-for-print {
        display: none !important;
    }

    table.show-for-print {
        display: table !important;
    }

    thead.show-for-print {
        display: table-header-group !important;
    }

    tbody.show-for-print {
        display: table-row-group !important;
    }

    tr.show-for-print {
        display: table-row !important;
    }

    td.show-for-print {
        display: table-cell !important;
    }

    th.show-for-print {
        display: table-cell !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

        .ir a:after,
        a[href^='javascript:']:after,
        a[href^='#']:after {
            content: '';
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    pre,
    blockquote {
        border: 1px solid #8a8a8a;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .print-break-inside {
        page-break-inside: auto;
    }
}

.button {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    padding: 0.85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 0.9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #4E938E;
    color: #ffffff;
}

[data-whatinput='mouse'] .button {
    outline: 0;
}

.button:hover, .button:focus {
    background-color: #427d79;
    color: #ffffff;
}

.button.tiny {
    font-size: 0.6rem;
}

.button.small {
    font-size: 0.75rem;
}

.button.large {
    font-size: 1.25rem;
}

.button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.button.primary {
    background-color: #4E938E;
    color: #000000;
}

    .button.primary:hover, .button.primary:focus {
        background-color: #3e7672;
        color: #000000;
    }

.button.secondary {
    background-color: #636254;
    color: #ffffff;
}

    .button.secondary:hover, .button.secondary:focus {
        background-color: #4f4e43;
        color: #ffffff;
    }

.button.success {
    background-color: #537F62;
    color: #ffffff;
}

    .button.success:hover, .button.success:focus {
        background-color: #42664e;
        color: #ffffff;
    }

.button.warning {
    background-color: #B74A26;
    color: #ffffff;
}

    .button.warning:hover, .button.warning:focus {
        background-color: #923b1e;
        color: #ffffff;
    }

.button.alert {
    background-color: #E76C24;
    color: #000000;
}

    .button.alert:hover, .button.alert:focus {
        background-color: #c15415;
        color: #000000;
    }

.button.hollow {
    border: 1px solid #4E938E;
    color: #4E938E;
}

    .button.hollow, .button.hollow:hover, .button.hollow:focus {
        background-color: transparent;
    }

        .button.hollow:hover, .button.hollow:focus {
            border-color: #274a47;
            color: #274a47;
        }

        .button.hollow.primary {
            border: 1px solid #4E938E;
            color: #4E938E;
        }

            .button.hollow.primary:hover, .button.hollow.primary:focus {
                border-color: #274a47;
                color: #274a47;
            }

        .button.hollow.secondary {
            border: 1px solid #636254;
            color: #636254;
        }

            .button.hollow.secondary:hover, .button.hollow.secondary:focus {
                border-color: #32312a;
                color: #32312a;
            }

        .button.hollow.success {
            border: 1px solid #537F62;
            color: #537F62;
        }

            .button.hollow.success:hover, .button.hollow.success:focus {
                border-color: #2a4031;
                color: #2a4031;
            }

        .button.hollow.warning {
            border: 1px solid #B74A26;
            color: #B74A26;
        }

            .button.hollow.warning:hover, .button.hollow.warning:focus {
                border-color: #5c2513;
                color: #5c2513;
            }

        .button.hollow.alert {
            border: 1px solid #E76C24;
            color: #E76C24;
        }

            .button.hollow.alert:hover, .button.hollow.alert:focus {
                border-color: #78350d;
                color: #78350d;
            }

.button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed;
}

    .button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
        background-color: #4E938E;
        color: #ffffff;
    }

        .button.disabled.primary, .button[disabled].primary {
            opacity: 0.25;
            cursor: not-allowed;
        }

            .button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
                background-color: #4E938E;
                color: #000000;
            }

        .button.disabled.secondary, .button[disabled].secondary {
            opacity: 0.25;
            cursor: not-allowed;
        }

            .button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
                background-color: #636254;
                color: #ffffff;
            }

        .button.disabled.success, .button[disabled].success {
            opacity: 0.25;
            cursor: not-allowed;
        }

            .button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
                background-color: #537F62;
                color: #ffffff;
            }

        .button.disabled.warning, .button[disabled].warning {
            opacity: 0.25;
            cursor: not-allowed;
        }

            .button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
                background-color: #B74A26;
                color: #ffffff;
            }

        .button.disabled.alert, .button[disabled].alert {
            opacity: 0.25;
            cursor: not-allowed;
        }

            .button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
                background-color: #E76C24;
                color: #000000;
            }

.button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #ffffff transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em;
}

.button.dropdown.hollow::after {
    border-top-color: #4E938E;
}

.button.dropdown.hollow.primary::after {
    border-top-color: #4E938E;
}

.button.dropdown.hollow.secondary::after {
    border-top-color: #636254;
}

.button.dropdown.hollow.success::after {
    border-top-color: #537F62;
}

.button.dropdown.hollow.warning::after {
    border-top-color: #B74A26;
}

.button.dropdown.hollow.alert::after {
    border-top-color: #E76C24;
}

.button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0;
}

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    border: 1px solid #cacaca;
    border-radius: 0;
    background-color: #ffffff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    color: #000000;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    appearance: none;
}

    [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
    textarea:focus {
        outline: none;
        border: 1px solid #8a8a8a;
        background-color: #ffffff;
        box-shadow: 0 0 5px #cacaca;
        transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    }

textarea {
    max-width: 100%;
}

    textarea[rows] {
        height: auto;
    }

    input::placeholder,
    textarea::placeholder {
        color: #cacaca;
    }

    input:disabled, input[readonly],
    textarea:disabled,
    textarea[readonly] {
        background-color: #e6e6e6;
        cursor: not-allowed;
    }

[type='submit'],
[type='button'] {
    appearance: none;
    border-radius: 0;
}

input[type='search'] {
    box-sizing: border-box;
}

[type='file'],
[type='checkbox'],
[type='radio'] {
    margin: 0 0 1rem;
}

    [type='checkbox'] + label,
    [type='radio'] + label {
        display: inline-block;
        vertical-align: baseline;
        margin-left: 0.5rem;
        margin-right: 1rem;
        margin-bottom: 0;
    }

        [type='checkbox'] + label[for],
        [type='radio'] + label[for] {
            cursor: pointer;
        }

label > [type='checkbox'],
label > [type='radio'] {
    margin-right: 0.5rem;
}

[type='file'] {
    width: 100%;
}

label {
    display: block;
    margin: 0;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.8;
    color: #000000;
}

    label.middle {
        margin: 0 0 1rem;
        padding: 0.5625rem 0;
    }

.help-text {
    margin-top: -0.5rem;
    font-size: 0.8125rem;
    font-style: italic;
    color: #000000;
}

.input-group {
    display: table;
    width: 100%;
    margin-bottom: 1rem;
}

    .input-group > :first-child {
        border-radius: 0 0 0 0;
    }

    .input-group > :last-child > * {
        border-radius: 0 0 0 0;
    }

.input-group-label, .input-group-field, .input-group-button, .input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
    margin: 0;
    white-space: nowrap;
    display: table-cell;
    vertical-align: middle;
}

.input-group-label {
    padding: 0 1rem;
    border: 1px solid #cacaca;
    background: #e6e6e6;
    color: #000000;
    text-align: center;
    white-space: nowrap;
    width: 1%;
    height: 100%;
}

    .input-group-label:first-child {
        border-right: 0;
    }

    .input-group-label:last-child {
        border-left: 0;
    }

.input-group-field {
    border-radius: 0;
    height: 2.5rem;
}

.input-group-button {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    width: 1%;
    height: 100%;
}

    .input-group-button a,
    .input-group-button input,
    .input-group-button button,
    .input-group-button label {
        height: 2.5rem;
        padding-top: 0;
        padding-bottom: 0;
        font-size: 1rem;
    }

.input-group .input-group-button {
    display: table-cell;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

legend {
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.fieldset {
    margin: 1.125rem 0;
    padding: 1.25rem;
    border: 1px solid #cacaca;
}

    .fieldset legend {
        margin: 0;
        margin-left: -0.1875rem;
        padding: 0 0.1875rem;
        background: #ffffff;
    }

select {
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    appearance: none;
    border: 1px solid #cacaca;
    border-radius: 0;
    background-color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    line-height: normal;
    color: #000000;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
    background-origin: content-box;
    background-position: right -1rem center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    padding-right: 1.5rem;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

@media screen and (min-width: 0\0) {
    select {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
    }
}

select:focus {
    outline: none;
    border: 1px solid #8a8a8a;
    background-color: #ffffff;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

select:disabled {
    background-color: #e6e6e6;
    cursor: not-allowed;
}

select::-ms-expand {
    display: none;
}

select[multiple] {
    height: auto;
    background-image: none;
}

.is-invalid-input:not(:focus) {
    border-color: #E76C24;
    background-color: #fdf0e9;
}

    .is-invalid-input:not(:focus)::placeholder {
        color: #E76C24;
    }

.is-invalid-label {
    color: #E76C24;
}

.form-error {
    display: none;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: #E76C24;
}

    .form-error.is-visible {
        display: block;
    }

.accordion {
    margin-left: 0;
    background: #ffffff;
    list-style-type: none;
}

.accordion-item:first-child > :first-child {
    border-radius: 0 0 0 0;
}

.accordion-item:last-child > :last-child {
    border-radius: 0 0 0 0;
}

.accordion-title {
    position: relative;
    display: block;
    padding: 1.25rem 1rem;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    font-size: 0.75rem;
    line-height: 1;
    color: #4E938E;
}

:last-child:not(.is-active) > .accordion-title {
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0 0 0 0;
}

.accordion-title:hover, .accordion-title:focus {
    background-color: #e6e6e6;
}

.accordion-title::before {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -0.5rem;
    content: '+';
}

.is-active > .accordion-title::before {
    content: '\2013';
}

.accordion-content {
    display: none;
    padding: 1rem;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    background-color: #ffffff;
    color: #000000;
}

:last-child > .accordion-content:last-child {
    border-bottom: 1px solid #e6e6e6;
}

.is-accordion-submenu-parent > a {
    position: relative;
}

    .is-accordion-submenu-parent > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #4E938E transparent transparent;
        position: absolute;
        top: 50%;
        margin-top: -3px;
        right: 1rem;
    }

.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
}

.badge {
    display: inline-block;
    min-width: 2.1em;
    padding: 0.3em;
    border-radius: 50%;
    font-size: 0.6rem;
    text-align: center;
    background: #4E938E;
    color: #ffffff;
}

    .badge.primary {
        background: #4E938E;
        color: #000000;
    }

    .badge.secondary {
        background: #636254;
        color: #ffffff;
    }

    .badge.success {
        background: #537F62;
        color: #ffffff;
    }

    .badge.warning {
        background: #B74A26;
        color: #ffffff;
    }

    .badge.alert {
        background: #E76C24;
        color: #000000;
    }

.breadcrumbs {
    margin: 0 0 1rem 0;
    list-style: none;
}

    .breadcrumbs::before, .breadcrumbs::after {
        display: table;
        content: ' ';
    }

    .breadcrumbs::after {
        clear: both;
    }

    .breadcrumbs li {
        float: left;
        font-size: 0.6875rem;
        color: #000000;
        cursor: default;
        text-transform: uppercase;
    }

        .breadcrumbs li:not(:last-child)::after {
            position: relative;
            top: 1px;
            margin: 0 0.75rem;
            opacity: 1;
            content: "/";
            color: #cacaca;
        }

    .breadcrumbs a {
        color: #4E938E;
    }

        .breadcrumbs a:hover {
            text-decoration: underline;
        }

    .breadcrumbs .disabled {
        color: #cacaca;
        cursor: not-allowed;
    }

.button-group {
    margin-bottom: 1rem;
    font-size: 0;
}

    .button-group::before, .button-group::after {
        display: table;
        content: ' ';
    }

    .button-group::after {
        clear: both;
    }

    .button-group .button {
        margin: 0;
        margin-right: 1px;
        margin-bottom: 1px;
        font-size: 0.9rem;
    }

        .button-group .button:last-child {
            margin-right: 0;
        }

    .button-group.tiny .button {
        font-size: 0.6rem;
    }

    .button-group.small .button {
        font-size: 0.75rem;
    }

    .button-group.large .button {
        font-size: 1.25rem;
    }

    .button-group.expanded {
        margin-right: -1px;
    }

        .button-group.expanded::before, .button-group.expanded::after {
            display: none;
        }

        .button-group.expanded .button:first-child:last-child {
            width: 100%;
        }

        .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
            display: inline-block;
            width: calc(50% - 1px);
            margin-right: 1px;
        }

            .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
                margin-right: -6px;
            }

        .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
            display: inline-block;
            width: calc(33.3333333333% - 1px);
            margin-right: 1px;
        }

            .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
                margin-right: -6px;
            }

        .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
            display: inline-block;
            width: calc(25% - 1px);
            margin-right: 1px;
        }

            .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
                margin-right: -6px;
            }

        .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
            display: inline-block;
            width: calc(20% - 1px);
            margin-right: 1px;
        }

            .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
                margin-right: -6px;
            }

        .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
            display: inline-block;
            width: calc(16.6666666667% - 1px);
            margin-right: 1px;
        }

            .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
                margin-right: -6px;
            }

    .button-group.primary .button {
        background-color: #4E938E;
        color: #000000;
    }

        .button-group.primary .button:hover, .button-group.primary .button:focus {
            background-color: #3e7672;
            color: #000000;
        }

    .button-group.secondary .button {
        background-color: #636254;
        color: #ffffff;
    }

        .button-group.secondary .button:hover, .button-group.secondary .button:focus {
            background-color: #4f4e43;
            color: #ffffff;
        }

    .button-group.success .button {
        background-color: #537F62;
        color: #ffffff;
    }

        .button-group.success .button:hover, .button-group.success .button:focus {
            background-color: #42664e;
            color: #ffffff;
        }

    .button-group.warning .button {
        background-color: #B74A26;
        color: #ffffff;
    }

        .button-group.warning .button:hover, .button-group.warning .button:focus {
            background-color: #923b1e;
            color: #ffffff;
        }

    .button-group.alert .button {
        background-color: #E76C24;
        color: #000000;
    }

        .button-group.alert .button:hover, .button-group.alert .button:focus {
            background-color: #c15415;
            color: #000000;
        }

    .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
        width: 100%;
    }

        .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
            margin-bottom: 0;
        }

@media print, screen and (min-width: 40em) {
    .button-group.stacked-for-small .button {
        width: auto;
        margin-bottom: 0;
    }
}

@media print, screen and (min-width: 64.0625em) {
    .button-group.stacked-for-medium .button {
        width: auto;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 39.9375em) {
    .button-group.stacked-for-small.expanded {
        display: block;
    }

        .button-group.stacked-for-small.expanded .button {
            display: block;
            margin-right: 0;
        }
}

.callout {
    position: relative;
    margin: 0 0 1rem 0;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0;
    background-color: white;
    color: #000000;
}

    .callout > :first-child {
        margin-top: 0;
    }

    .callout > :last-child {
        margin-bottom: 0;
    }

    .callout.primary {
        background-color: #e3f0ef;
        color: #000000;
    }

    .callout.secondary {
        background-color: #e8e8e4;
        color: #000000;
    }

    .callout.success {
        background-color: #e4ede7;
        color: #000000;
    }

    .callout.warning {
        background-color: #f8e2db;
        color: #000000;
    }

    .callout.alert {
        background-color: #fbe9de;
        color: #000000;
    }

    .callout.small {
        padding-top: 0.5rem;
        padding-right: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 0.5rem;
    }

    .callout.large {
        padding-top: 3rem;
        padding-right: 3rem;
        padding-bottom: 3rem;
        padding-left: 3rem;
    }

.card {
    margin-bottom: 1rem;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    overflow: hidden;
    color: #000000;
}

    .card > :last-child {
        margin-bottom: 0;
    }

.card-divider {
    padding: 1rem;
    background: #e6e6e6;
}

    .card-divider > :last-child {
        margin-bottom: 0;
    }

.card-section {
    padding: 1rem;
}

    .card-section > :last-child {
        margin-bottom: 0;
    }

.close-button {
    position: absolute;
    color: #8a8a8a;
    cursor: pointer;
}

[data-whatinput='mouse'] .close-button {
    outline: 0;
}

.close-button:hover, .close-button:focus {
    color: #000000;
}

.close-button.small {
    right: 0.66rem;
    top: 0.33em;
    font-size: 1.5em;
    line-height: 1;
}

.close-button, .close-button.medium {
    right: 1rem;
    top: 0.5rem;
    font-size: 2em;
    line-height: 1;
}

.menu {
    margin: 0;
    list-style-type: none;
}

    .menu > li {
        display: table-cell;
        vertical-align: middle;
    }

[data-whatinput='mouse'] .menu > li {
    outline: 0;
}

.menu > li > a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1;
}

.menu input,
.menu select,
.menu a,
.menu button {
    margin-bottom: 0;
}

.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
    vertical-align: middle;
}

    .menu > li > a img + span,
    .menu > li > a i + span,
    .menu > li > a svg + span {
        vertical-align: middle;
    }

.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block;
}

.menu > li, .menu.horizontal > li {
    display: table-cell;
}

.menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
}

    .menu.expanded > li:first-child:last-child {
        width: 100%;
    }

.menu.vertical > li {
    display: block;
}

@media print, screen and (min-width: 40em) {
    .menu.medium-horizontal > li {
        display: table-cell;
    }

    .menu.medium-expanded {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

        .menu.medium-expanded > li:first-child:last-child {
            width: 100%;
        }

    .menu.medium-vertical > li {
        display: block;
    }
}

@media print, screen and (min-width: 64.0625em) {
    .menu.large-horizontal > li {
        display: table-cell;
    }

    .menu.large-expanded {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

        .menu.large-expanded > li:first-child:last-child {
            width: 100%;
        }

    .menu.large-vertical > li {
        display: block;
    }
}

.menu.simple li {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}

.menu.simple a {
    padding: 0;
}

.menu.simple li {
    margin-left: 0;
    margin-right: 1rem;
}

.menu.simple.align-right li {
    margin-right: 0;
    margin-left: 1rem;
}

.menu.align-right::before, .menu.align-right::after {
    display: table;
    content: ' ';
}

.menu.align-right::after {
    clear: both;
}

.menu.align-right > li {
    float: right;
}

.menu.icon-top > li > a {
    text-align: center;
}

    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
        display: block;
        margin: 0 auto 0.25rem;
    }

.menu.icon-top.vertical a > span {
    margin: auto;
}

.menu.nested {
    margin-left: 1rem;
}

.menu .active > a {
    background: #4E938E;
    color: #ffffff;
}

.menu.menu-bordered li {
    border: 1px solid #e6e6e6;
}

    .menu.menu-bordered li:not(:first-child) {
        border-top: 0;
    }

.menu.menu-hover li:hover {
    background-color: #e6e6e6;
}

.menu-text {
    padding-top: 0;
    padding-bottom: 0;
    padding: 0.7rem 1rem;
    font-weight: bold;
    line-height: 1;
    color: inherit;
}

.menu-centered {
    text-align: center;
}

    .menu-centered > .menu {
        display: inline-block;
        vertical-align: top;
    }

.no-js [data-responsive-menu] ul {
    display: none;
}

.menu-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer;
}

    .menu-icon::after {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
        box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
        content: '';
    }

    .menu-icon:hover::after {
        background: #cacaca;
        box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
    }

    .menu-icon.dark {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        height: 16px;
        cursor: pointer;
    }

        .menu-icon.dark::after {
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            width: 100%;
            height: 2px;
            background: #000000;
            box-shadow: 0 7px 0 #000000, 0 14px 0 #000000;
            content: '';
        }

        .menu-icon.dark:hover::after {
            background: #8a8a8a;
            box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
        }

.is-drilldown {
    position: relative;
    overflow: hidden;
}

    .is-drilldown li {
        display: block;
    }

    .is-drilldown.animate-height {
        transition: height 0.5s;
    }

.is-drilldown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: -1;
    width: 100%;
    background: #ffffff;
    transition: transform 0.15s linear;
}

    .is-drilldown-submenu.is-active {
        z-index: 1;
        display: block;
        transform: translateX(-100%);
    }

    .is-drilldown-submenu.is-closing {
        transform: translateX(100%);
    }

.drilldown-submenu-cover-previous {
    min-height: 100%;
}

.is-drilldown-submenu-parent > a {
    position: relative;
}

    .is-drilldown-submenu-parent > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #4E938E;
        position: absolute;
        top: 50%;
        margin-top: -6px;
        right: 1rem;
    }

.js-drilldown-back > a::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #4E938E transparent transparent;
    border-left-width: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
    border-left-width: 0;
}

.dropdown-pane {
    position: absolute;
    z-index: 10;
    display: block;
    width: 300px;
    padding: 1rem;
    visibility: hidden;
    border: 1px solid #cacaca;
    border-radius: 0;
    background-color: #ffffff;
    font-size: 1rem;
}

    .dropdown-pane.is-open {
        visibility: visible;
    }

    .dropdown-pane.tiny {
        width: 100px;
    }

    .dropdown-pane.small {
        width: 200px;
    }

    .dropdown-pane.large {
        width: 400px;
    }

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
}

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
}

    .dropdown.menu > li.is-dropdown-submenu-parent > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #4E938E transparent transparent;
        right: 5px;
        margin-top: -3px;
    }

[data-whatinput='mouse'] .dropdown.menu a {
    outline: 0;
}

.no-js .dropdown.menu ul {
    display: none;
}

.dropdown.menu.vertical > li .is-dropdown-submenu {
    top: 0;
}

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
}

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
}

.dropdown.menu.vertical > li > a::after {
    right: 14px;
}

.dropdown.menu.vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #4E938E transparent transparent;
}

.dropdown.menu.vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #4E938E;
}

@media print, screen and (min-width: 40em) {
    .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto;
    }

    .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0;
    }

    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
        position: relative;
        padding-right: 1.5rem;
    }

        .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
            display: block;
            width: 0;
            height: 0;
            border: inset 6px;
            content: '';
            border-bottom-width: 0;
            border-top-style: solid;
            border-color: #4E938E transparent transparent;
            right: 5px;
            margin-top: -3px;
        }

    .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
        top: 0;
    }

    .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
        right: 100%;
        left: auto;
    }

    .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
        right: auto;
        left: 100%;
    }

    .dropdown.menu.medium-vertical > li > a::after {
        right: 14px;
    }

    .dropdown.menu.medium-vertical > li.opens-left > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #4E938E transparent transparent;
    }

    .dropdown.menu.medium-vertical > li.opens-right > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #4E938E;
    }
}

@media print, screen and (min-width: 64.0625em) {
    .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto;
    }

    .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0;
    }

    .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
        position: relative;
        padding-right: 1.5rem;
    }

        .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
            display: block;
            width: 0;
            height: 0;
            border: inset 6px;
            content: '';
            border-bottom-width: 0;
            border-top-style: solid;
            border-color: #4E938E transparent transparent;
            right: 5px;
            margin-top: -3px;
        }

    .dropdown.menu.large-vertical > li .is-dropdown-submenu {
        top: 0;
    }

    .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
        right: 100%;
        left: auto;
    }

    .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
        right: auto;
        left: 100%;
    }

    .dropdown.menu.large-vertical > li > a::after {
        right: 14px;
    }

    .dropdown.menu.large-vertical > li.opens-left > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #4E938E transparent transparent;
    }

    .dropdown.menu.large-vertical > li.opens-right > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #4E938E;
    }
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
    top: 100%;
    right: 0;
    left: auto;
}

.is-dropdown-menu.vertical {
    width: 100px;
}

    .is-dropdown-menu.vertical.align-right {
        float: right;
    }

.is-dropdown-submenu-parent {
    position: relative;
}

    .is-dropdown-submenu-parent a::after {
        position: absolute;
        top: 50%;
        right: 5px;
        margin-top: -6px;
    }

    .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
        top: 100%;
        left: auto;
    }

    .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
        right: 100%;
        left: auto;
    }

    .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
        right: auto;
        left: 100%;
    }

.is-dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
    display: none;
    min-width: 200px;
    border: 1px solid #cacaca;
    background: #ffffff;
}

    .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
        right: 14px;
    }

    .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #4E938E transparent transparent;
    }

    .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: '';
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #4E938E;
    }

    .is-dropdown-submenu .is-dropdown-submenu {
        margin-top: -1px;
    }

    .is-dropdown-submenu > li {
        width: 100%;
    }

    .is-dropdown-submenu.js-dropdown-active {
        display: block;
    }

.responsive-embed,
.flex-video {
    position: relative;
    height: 0;
    margin-bottom: 1rem;
    padding-bottom: 75%;
    overflow: hidden;
}

    .responsive-embed iframe,
    .responsive-embed object,
    .responsive-embed embed,
    .responsive-embed video,
    .flex-video iframe,
    .flex-video object,
    .flex-video embed,
    .flex-video video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .responsive-embed.widescreen,
    .flex-video.widescreen {
        padding-bottom: 56.25%;
    }

.label {
    display: inline-block;
    padding: 0.33333rem 0.5rem;
    border-radius: 0;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    background: #4E938E;
    color: #ffffff;
}

    .label.primary {
        background: #4E938E;
        color: #000000;
    }

    .label.secondary {
        background: #636254;
        color: #ffffff;
    }

    .label.success {
        background: #537F62;
        color: #ffffff;
    }

    .label.warning {
        background: #B74A26;
        color: #ffffff;
    }

    .label.alert {
        background: #E76C24;
        color: #000000;
    }

.media-object {
    display: block;
    margin-bottom: 1rem;
}

    .media-object img {
        max-width: none;
    }

@media screen and (max-width: 39.9375em) {
    .media-object.stack-for-small .media-object-section {
        padding: 0;
        padding-bottom: 1rem;
        display: block;
    }

        .media-object.stack-for-small .media-object-section img {
            width: 100%;
        }
}

.media-object-section {
    display: table-cell;
    vertical-align: top;
}

    .media-object-section:first-child {
        padding-right: 1rem;
    }

    .media-object-section:last-child:not(:nth-child(2)) {
        padding-left: 1rem;
    }

    .media-object-section > :last-child {
        margin-bottom: 0;
    }

    .media-object-section.middle {
        vertical-align: middle;
    }

    .media-object-section.bottom {
        vertical-align: bottom;
    }

.is-off-canvas-open {
    overflow: hidden;
}

.js-off-canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: rgba(51, 46, 45, 0.5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

    .js-off-canvas-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .js-off-canvas-overlay.is-closable {
        cursor: pointer;
    }

    .js-off-canvas-overlay.is-overlay-absolute {
        position: absolute;
    }

    .js-off-canvas-overlay.is-overlay-fixed {
        position: fixed;
    }

.off-canvas-wrapper {
    position: relative;
    overflow: hidden;
}

.off-canvas {
    position: fixed;
    z-index: 12;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    background: #222834;
}

[data-whatinput='mouse'] .off-canvas {
    outline: 0;
}

.off-canvas.is-transition-overlap {
    z-index: 12;
}

    .off-canvas.is-transition-overlap.is-open {
        box-shadow: none;
    }

.off-canvas.is-open {
    transform: translate(0, 0);
}

.off-canvas-absolute {
    position: absolute;
    z-index: 12;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    background: #332E2D;
}

[data-whatinput='mouse'] .off-canvas-absolute {
    outline: 0;
}

.off-canvas-absolute.is-transition-overlap {
    z-index: 12;
}

    .off-canvas-absolute.is-transition-overlap.is-open {
        box-shadow: none;
    }

.off-canvas-absolute.is-open {
    transform: translate(0, 0);
}

.position-left {
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    transform: translateX(-300px);
    overflow-y: auto;
}

    .position-left.is-open ~ .off-canvas-content {
        transform: translateX(300px);
    }

    .position-left.is-transition-push::after {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 1px;
        box-shadow: none;
        content: " ";
    }

    .position-left.is-transition-overlap.is-open ~ .off-canvas-content {
        transform: none;
    }

.position-right {
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    transform: translateX(300px);
    overflow-y: auto;
}

    .position-right.is-open ~ .off-canvas-content {
        transform: translateX(-300px);
    }

    .position-right.is-transition-push::after {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 1px;
        box-shadow: none;
        content: " ";
    }

    .position-right.is-transition-overlap.is-open ~ .off-canvas-content {
        transform: none;
    }

.position-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    transform: translateY(-250px);
    overflow-x: auto;
}

    .position-top.is-open ~ .off-canvas-content {
        transform: translateY(250px);
    }

    .position-top.is-transition-push::after {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        width: 100%;
        box-shadow: none;
        content: " ";
    }

    .position-top.is-transition-overlap.is-open ~ .off-canvas-content {
        transform: none;
    }

.position-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    transform: translateY(250px);
    overflow-x: auto;
}

    .position-bottom.is-open ~ .off-canvas-content {
        transform: translateY(-250px);
    }

    .position-bottom.is-transition-push::after {
        position: absolute;
        top: 0;
        left: 0;
        height: 1px;
        width: 100%;
        box-shadow: none;
        content: " ";
    }

    .position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
        transform: none;
    }

.off-canvas-content {
    transition: transform 0.5s ease;
    backface-visibility: hidden;
}

@media print, screen and (min-width: 40em) {
    .position-left.reveal-for-medium {
        transform: none;
        z-index: 12;
    }

        .position-left.reveal-for-medium ~ .off-canvas-content {
            margin-left: 300px;
        }

    .position-right.reveal-for-medium {
        transform: none;
        z-index: 12;
    }

        .position-right.reveal-for-medium ~ .off-canvas-content {
            margin-right: 300px;
        }

    .position-top.reveal-for-medium {
        transform: none;
        z-index: 12;
    }

        .position-top.reveal-for-medium ~ .off-canvas-content {
            margin-top: 300px;
        }

    .position-bottom.reveal-for-medium {
        transform: none;
        z-index: 12;
    }

        .position-bottom.reveal-for-medium ~ .off-canvas-content {
            margin-bottom: 300px;
        }
}

@media screen and (min-width: 64.0625em) {
    .position-left.reveal-for-large {
        transform: none;
        z-index: 12;
    }

        .position-left.reveal-for-large ~ .off-canvas-content {
            margin-left: 300px;
        }

    .position-right.reveal-for-large {
        transform: none;
        z-index: 12;
    }

        .position-right.reveal-for-large ~ .off-canvas-content {
            margin-right: 300px;
        }

    .position-top.reveal-for-large {
        transform: none;
        z-index: 12;
    }

        .position-top.reveal-for-large ~ .off-canvas-content {
            margin-top: 300px;
        }

    .position-bottom.reveal-for-large {
        transform: none;
        z-index: 12;
    }

        .position-bottom.reveal-for-large ~ .off-canvas-content {
            margin-bottom: 300px;
        }
}

.orbit {
    position: relative;
}

.orbit-container {
    position: relative;
    height: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
}

.orbit-slide {
    width: 100%;
}

    .orbit-slide.no-motionui.is-active {
        top: 0;
        left: 0;
    }

.orbit-figure {
    margin: 0;
}

.orbit-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.orbit-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.orbit-previous, .orbit-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 1rem;
    color: #ffffff;
}

[data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
    outline: 0;
}

.orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
    background-color: rgba(0, 0, 0, 0.5);
}

.orbit-previous {
    left: 0;
}

.orbit-next {
    left: auto;
    right: 0;
}

.orbit-bullets {
    position: relative;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

[data-whatinput='mouse'] .orbit-bullets {
    outline: 0;
}

.orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
    border-radius: 50%;
    background-color: #cacaca;
}

    .orbit-bullets button:hover {
        background-color: #8a8a8a;
    }

    .orbit-bullets button.is-active {
        background-color: #8a8a8a;
    }

.pagination {
    margin-left: 0;
    margin-bottom: 1rem;
}

    .pagination::before, .pagination::after {
        display: table;
        content: ' ';
    }

    .pagination::after {
        clear: both;
    }

    .pagination li {
        margin-right: 0.0625rem;
        border-radius: 0;
        font-size: 0.875rem;
        display: none;
    }

        .pagination li:last-child, .pagination li:first-child {
            display: inline-block;
        }

@media print, screen and (min-width: 40em) {
    .pagination li {
        display: inline-block;
    }
}

.pagination a,
.pagination button {
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0;
    color: #000000;
}

    .pagination a:hover,
    .pagination button:hover {
        background: #e6e6e6;
    }

.pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #4E938E;
    color: #ffffff;
    cursor: default;
}

.pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #cacaca;
    cursor: not-allowed;
}

    .pagination .disabled:hover {
        background: transparent;
    }

.pagination .ellipsis::after {
    padding: 0.1875rem 0.625rem;
    content: '\2026';
    color: #000000;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
    display: inline-block;
    margin-right: 0.5rem;
    content: '\00ab';
}

.pagination-next a::after,
.pagination-next.disabled::after {
    display: inline-block;
    margin-left: 0.5rem;
    content: '\00bb';
}

.progress {
    height: 1rem;
    margin-bottom: 1rem;
    border-radius: 0;
    background-color: #cacaca;
}

    .progress.primary .progress-meter {
        background-color: #4E938E;
    }

    .progress.secondary .progress-meter {
        background-color: #636254;
    }

    .progress.success .progress-meter {
        background-color: #537F62;
    }

    .progress.warning .progress-meter {
        background-color: #B74A26;
    }

    .progress.alert .progress-meter {
        background-color: #E76C24;
    }

.progress-meter {
    position: relative;
    display: block;
    width: 0%;
    height: 100%;
    background-color: #4E938E;
}

.progress-meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin: 0;
    font-size: 0.75rem;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap;
}

.slider {
    position: relative;
    height: 0.5rem;
    margin-top: 1.25rem;
    margin-bottom: 2.25rem;
    background-color: #e6e6e6;
    cursor: pointer;
    user-select: none;
    touch-action: none;
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    max-width: 100%;
    height: 0.5rem;
    background-color: #cacaca;
    transition: all 0.2s ease-in-out;
}

    .slider-fill.is-dragging {
        transition: all 0s linear;
    }

.slider-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 0;
    background-color: #4E938E;
    transition: all 0.2s ease-in-out;
    touch-action: manipulation;
}

[data-whatinput='mouse'] .slider-handle {
    outline: 0;
}

.slider-handle:hover {
    background-color: #427d79;
}

.slider-handle.is-dragging {
    transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
    opacity: 0.25;
    cursor: not-allowed;
}

.slider.vertical {
    display: inline-block;
    width: 0.5rem;
    height: 12.5rem;
    margin: 0 1.25rem;
    transform: scale(1, -1);
}

    .slider.vertical .slider-fill {
        top: 0;
        width: 0.5rem;
        max-height: 100%;
    }

    .slider.vertical .slider-handle {
        position: absolute;
        top: 0;
        left: 50%;
        width: 1.4rem;
        height: 1.4rem;
        transform: translateX(-50%);
    }

.sticky-container {
    position: relative;
}

.sticky {
    position: relative;
    z-index: 0;
    transform: translate3d(0, 0, 0);
}

    .sticky.is-stuck {
        position: fixed;
        z-index: 5;
    }

        .sticky.is-stuck.is-at-top {
            top: 0;
        }

        .sticky.is-stuck.is-at-bottom {
            bottom: 0;
        }

    .sticky.is-anchored {
        position: relative;
        right: auto;
        left: auto;
    }

        .sticky.is-anchored.is-at-bottom {
            bottom: 0;
        }

body.is-reveal-open {
    overflow: hidden;
}

html.is-reveal-open,
html.is-reveal-open body {
    min-height: 100%;
    overflow: hidden;
    position: fixed;
    user-select: none;
}

.reveal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1005;
    display: none;
    background-color: rgba(0, 0, 0, 0.45);
    overflow-y: scroll;
}

.reveal {
    z-index: 1006;
    backface-visibility: hidden;
    display: none;
    padding: 1rem;
    border: 1px solid #cacaca;
    border-radius: 0;
    background-color: #ffffff;
    position: relative;
    top: 100px;
    margin-right: auto;
    margin-left: auto;
    overflow-y: auto;
}

[data-whatinput='mouse'] .reveal {
    outline: 0;
}

@media print, screen and (min-width: 40em) {
    .reveal {
        min-height: 0;
    }
}

.reveal .column, .reveal .columns {
    min-width: 0;
}

.reveal > :last-child {
    margin-bottom: 0;
}

@media print, screen and (min-width: 40em) {
    .reveal {
        width: 600px;
        max-width: 75rem;
    }
}

@media print, screen and (min-width: 40em) {
    .reveal .reveal {
        right: auto;
        left: auto;
        margin: 0 auto;
    }
}

.reveal.collapse {
    padding: 0;
}

@media print, screen and (min-width: 40em) {
    .reveal.tiny {
        width: 30%;
        max-width: 75rem;
    }
}

@media print, screen and (min-width: 40em) {
    .reveal.small {
        width: 50%;
        max-width: 75rem;
    }
}

@media print, screen and (min-width: 40em) {
    .reveal.large {
        width: 90%;
        max-width: 75rem;
    }
}

.reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0;
}

@media screen and (max-width: 39.9375em) {
    .reveal {
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        height: 100vh;
        min-height: 100vh;
        margin-left: 0;
        border: 0;
        border-radius: 0;
    }
}

.reveal.without-overlay {
    position: fixed;
}

.switch {
    height: 2rem;
    position: relative;
    margin-bottom: 1rem;
    outline: 0;
    font-size: 0.875rem;
    font-weight: bold;
    color: #ffffff;
    user-select: none;
}

.switch-input {
    position: absolute;
    margin-bottom: 0;
    opacity: 0;
}

.switch-paddle {
    position: relative;
    display: block;
    width: 4rem;
    height: 2rem;
    border-radius: 0;
    background: #cacaca;
    transition: all 0.25s ease-out;
    font-weight: inherit;
    color: inherit;
    cursor: pointer;
}

input + .switch-paddle {
    margin: 0;
}

.switch-paddle::after {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate3d(0, 0, 0);
    border-radius: 0;
    background: #ffffff;
    transition: all 0.25s ease-out;
    content: '';
}

input:checked ~ .switch-paddle {
    background: #4E938E;
}

input:checked:disabled ~ .switch-paddle {
    background: #CCC;
    cursor: not-allowed;
}

input:checked ~ .switch-paddle::after {
    left: 2.25rem;
}

[data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0;
}

.switch-active, .switch-inactive {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.switch-active {
    left: 8%;
    display: none;
}

input:checked + label > .switch-active {
    display: block;
}

.switch-inactive {
    right: 15%;
}

input:checked + label > .switch-inactive {
    display: none;
}

.switch.tiny {
    height: 1.5rem;
}

    .switch.tiny .switch-paddle {
        width: 3rem;
        height: 1.5rem;
        font-size: 0.625rem;
    }

        .switch.tiny .switch-paddle::after {
            top: 0.25rem;
            left: 0.25rem;
            width: 1rem;
            height: 1rem;
        }

    .switch.tiny input:checked ~ .switch-paddle::after {
        left: 1.75rem;
    }

.switch.small {
    height: 1.75rem;
}

    .switch.small .switch-paddle {
        width: 3.5rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }

        .switch.small .switch-paddle::after {
            top: 0.25rem;
            left: 0.25rem;
            width: 1.25rem;
            height: 1.25rem;
        }

    .switch.small input:checked ~ .switch-paddle::after {
        left: 2rem;
    }

.switch.large {
    height: 2.5rem;
}

    .switch.large .switch-paddle {
        width: 5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

        .switch.large .switch-paddle::after {
            top: 0.25rem;
            left: 0.25rem;
            width: 2rem;
            height: 2rem;
        }

    .switch.large input:checked ~ .switch-paddle::after {
        left: 2.75rem;
    }

table {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

thead, tbody, tfoot {
    border: 1px solid #f2f2f2;
    background-color: #ffffff;
}

caption {
    padding: 0.5rem 0.3125rem 0.3125rem;
    font-weight: bold;
}

thead {
    background: #f9f9f9;
    color: #000000;
}

tfoot {
    background: #f2f2f2;
    color: #000000;
}

    thead tr, tfoot tr {
        background: transparent;
    }

    thead th, thead td, tfoot th, tfoot td {
        padding: 0.5rem 0.3125rem 0.3125rem;
        font-weight: bold;
        text-align: left;
    }

tbody th, tbody td {
    padding: 0.5rem 0.3125rem 0.3125rem;
}

tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f2f2f2;
}

table.unstriped tbody {
    background-color: #ffffff;
}

    table.unstriped tbody tr {
        border-bottom: 0;
        border-bottom: 1px solid #f2f2f2;
        background-color: #ffffff;
    }

@media screen and (max-width: 64em) {
    table.stack thead {
        display: none;
    }

    table.stack tfoot {
        display: none;
    }

    table.stack tr,
    table.stack th,
    table.stack td {
        display: block;
    }

    table.stack td {
        border-top: 0;
    }
}

table.scroll {
    display: block;
    width: 100%;
    overflow-x: auto;
}

table.hover thead tr:hover {
    background-color: #ececec;
}

table.hover tfoot tr:hover {
    background-color: #e6e5e5;
}

table.hover tbody tr:hover {
    background-color: #f2f2f2;
}

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
    background-color: #e6e5e5;
}

.table-scroll {
    overflow-x: auto;
}

    .table-scroll table {
        width: auto;
    }

.tabs {
    margin: 0;
    border: 1px solid #e6e6e6;
    background: #ffffff;
    list-style-type: none;
}

    .tabs::before, .tabs::after {
        display: table;
        content: ' ';
    }

    .tabs::after {
        clear: both;
    }

    .tabs.vertical > li {
        display: block;
        float: none;
        width: auto;
    }

    .tabs.simple > li > a {
        padding: 0;
    }

        .tabs.simple > li > a:hover {
            background: transparent;
        }

    .tabs.primary {
        background: #4E938E;
    }

        .tabs.primary > li > a {
            color: #000000;
        }

            .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
                background: #4a8c87;
            }

.tabs-title {
    float: left;
}

    .tabs-title > a {
        display: block;
        padding: 1.25rem 1.5rem;
        font-size: 0.75rem;
        line-height: 1;
        color: #4E938E;
    }

        .tabs-title > a:hover {
            background: #ffffff;
            color: #437e7a;
        }

        .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
            background: #4E938E;
            color: #4E938E;
        }

.tabs-content {
    border: 1px solid #e6e6e6;
    border-top: 0;
    background: #ffffff;
    color: #000000;
    transition: all 0.5s ease;
}

    .tabs-content.vertical {
        border: 1px solid #e6e6e6;
        border-left: 0;
    }

.tabs-panel {
    display: none;
    padding: 1rem;
}

    .tabs-panel[aria-hidden="false"] {
        display: block;
    }

.thumbnail {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 1rem;
    border: solid 4px #ffffff;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    line-height: 0;
}

a.thumbnail {
    transition: box-shadow 200ms ease-out;
}

    a.thumbnail:hover, a.thumbnail:focus {
        box-shadow: 0 0 6px 1px rgba(78, 147, 142, 0.5);
    }

    a.thumbnail image {
        box-shadow: none;
    }

.title-bar {
    padding: 0.5rem;
    background: #000000;
    color: #ffffff;
}

    .title-bar::before, .title-bar::after {
        display: table;
        content: ' ';
    }

    .title-bar::after {
        clear: both;
    }

    .title-bar .menu-icon {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

.title-bar-left {
    float: left;
}

.title-bar-right {
    float: right;
    text-align: right;
}

.title-bar-title {
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
}

.has-tip {
    position: relative;
    display: inline-block;
    border-bottom: dotted 1px #8a8a8a;
    font-weight: bold;
    cursor: help;
}

.tooltip {
    position: absolute;
    top: calc(100% + 0.6495rem);
    z-index: 1200;
    max-width: 10rem;
    padding: 0.75rem;
    border-radius: 0;
    background-color: #000000;
    font-size: 80%;
    color: #ffffff;
}

    .tooltip::before {
        display: block;
        width: 0;
        height: 0;
        border: inset 0.75rem;
        content: '';
        border-top-width: 0;
        border-bottom-style: solid;
        border-color: transparent transparent #000000;
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .tooltip.top::before {
        display: block;
        width: 0;
        height: 0;
        border: inset 0.75rem;
        content: '';
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #000000 transparent transparent;
        top: 100%;
        bottom: auto;
    }

    .tooltip.left::before {
        display: block;
        width: 0;
        height: 0;
        border: inset 0.75rem;
        content: '';
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #000000;
        top: 50%;
        bottom: auto;
        left: 100%;
        transform: translateY(-50%);
    }

    .tooltip.right::before {
        display: block;
        width: 0;
        height: 0;
        border: inset 0.75rem;
        content: '';
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #000000 transparent transparent;
        top: 50%;
        right: 100%;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
    }

.top-bar {
    padding: 0.5rem;
}

    .top-bar::before, .top-bar::after {
        display: table;
        content: ' ';
    }

    .top-bar::after {
        clear: both;
    }

    .top-bar,
    .top-bar ul {
        background-color: #e6e6e6;
    }

        .top-bar input {
            max-width: 200px;
            margin-right: 1rem;
        }

        .top-bar .input-group-field {
            width: 100%;
            margin-right: 0;
        }

        .top-bar input.button {
            width: auto;
        }

        .top-bar .top-bar-left,
        .top-bar .top-bar-right {
            width: 100%;
        }

@media print, screen and (min-width: 40em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
        width: auto;
    }
}

@media screen and (max-width: 64em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
        width: 100%;
    }
}

@media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
        width: 100%;
    }
}

.top-bar-title {
    display: inline-block;
    float: left;
    padding: 0.5rem 1rem 0.5rem 0;
}

    .top-bar-title .menu-icon {
        bottom: 2px;
    }

.top-bar-left {
    float: left;
}

.top-bar-right {
    float: right;
}

.hide {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

@media screen and (max-width: 39.9375em) {
    .hide-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
    .show-for-small-only {
        display: none !important;
    }
}

@media print, screen and (min-width: 40em) {
    .hide-for-medium {
        display: none !important;
    }
}

@media screen and (max-width: 39.9375em) {
    .show-for-medium {
        display: none !important;
    }
}

@media screen and (min-width: 40em) and (max-width: 64em) {
    .hide-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 64.0625em) {
    .show-for-medium-only {
        display: none !important;
    }
}

@media print, screen and (min-width: 64.0625em) {
    .hide-for-large {
        display: none !important;
    }
}

@media screen and (max-width: 64em) {
    .show-for-large {
        display: none !important;
    }
}

@media screen and (min-width: 64.0625em) and (max-width: 74.9375em) {
    .hide-for-large-only {
        display: none !important;
    }
}

@media screen and (max-width: 64em), screen and (min-width: 75em) {
    .show-for-large-only {
        display: none !important;
    }
}

.show-for-sr,
.show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

    .show-on-focus:active, .show-on-focus:focus {
        position: static !important;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
    }

.show-for-landscape,
.hide-for-portrait {
    display: block !important;
}

@media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
        display: block !important;
    }
}

@media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
        display: none !important;
    }
}

.hide-for-landscape,
.show-for-portrait {
    display: none !important;
}

@media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
        display: none !important;
    }
}

@media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
        display: block !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-center {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.clearfix::before, .clearfix::after {
    display: table;
    content: ' ';
}

.clearfix::after {
    clear: both;
}

.slide-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-in-down.mui-enter.mui-enter-active {
        transform: translateY(0);
    }

.slide-in-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-in-left.mui-enter.mui-enter-active {
        transform: translateX(0);
    }

.slide-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-in-up.mui-enter.mui-enter-active {
        transform: translateY(0);
    }

.slide-in-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-in-right.mui-enter.mui-enter-active {
        transform: translateX(0);
    }

.slide-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-out-down.mui-leave.mui-leave-active {
        transform: translateY(100%);
    }

.slide-out-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-out-right.mui-leave.mui-leave-active {
        transform: translateX(100%);
    }

.slide-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-out-up.mui-leave.mui-leave-active {
        transform: translateY(-100%);
    }

.slide-out-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

    .slide-out-left.mui-leave.mui-leave-active {
        transform: translateX(-100%);
    }

.fade-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 0;
    transition-property: opacity;
}

    .fade-in.mui-enter.mui-enter-active {
        opacity: 1;
    }

.fade-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 1;
    transition-property: opacity;
}

    .fade-out.mui-leave.mui-leave-active {
        opacity: 0;
    }

.hinge-in-from-top.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-top.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-right.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-bottom.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(90deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-bottom.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(90deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-left.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-middle-x.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-middle-x.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-in-from-middle-y.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0;
}

    .hinge-in-from-middle-y.mui-enter.mui-enter-active {
        transform: perspective(2000px) rotate(0deg);
        opacity: 1;
    }

.hinge-out-from-top.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-top.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateX(-90deg);
        opacity: 0;
    }

.hinge-out-from-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-right.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateY(-90deg);
        opacity: 0;
    }

.hinge-out-from-bottom.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-bottom.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateX(90deg);
        opacity: 0;
    }

.hinge-out-from-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-left.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateY(90deg);
        opacity: 0;
    }

.hinge-out-from-middle-x.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-middle-x.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateX(-90deg);
        opacity: 0;
    }

.hinge-out-from-middle-y.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1;
}

    .hinge-out-from-middle-y.mui-leave.mui-leave-active {
        transform: perspective(2000px) rotateY(-90deg);
        opacity: 0;
    }

.scale-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(0.5);
    transition-property: transform, opacity;
    opacity: 0;
}

    .scale-in-up.mui-enter.mui-enter-active {
        transform: scale(1);
        opacity: 1;
    }

.scale-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1.5);
    transition-property: transform, opacity;
    opacity: 0;
}

    .scale-in-down.mui-enter.mui-enter-active {
        transform: scale(1);
        opacity: 1;
    }

.scale-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1;
}

    .scale-out-up.mui-leave.mui-leave-active {
        transform: scale(1.5);
        opacity: 0;
    }

.scale-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1;
}

    .scale-out-down.mui-leave.mui-leave-active {
        transform: scale(0.5);
        opacity: 0;
    }

.spin-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(-0.75turn);
    transition-property: transform, opacity;
    opacity: 0;
}

    .spin-in.mui-enter.mui-enter-active {
        transform: rotate(0);
        opacity: 1;
    }

.spin-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1;
}

    .spin-out.mui-leave.mui-leave-active {
        transform: rotate(0.75turn);
        opacity: 0;
    }

.spin-in-ccw.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0.75turn);
    transition-property: transform, opacity;
    opacity: 0;
}

    .spin-in-ccw.mui-enter.mui-enter-active {
        transform: rotate(0);
        opacity: 1;
    }

.spin-out-ccw.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1;
}

    .spin-out-ccw.mui-leave.mui-leave-active {
        transform: rotate(-0.75turn);
        opacity: 0;
    }

.slow {
    transition-duration: 750ms !important;
}

.fast {
    transition-duration: 250ms !important;
}

.linear {
    transition-timing-function: linear !important;
}

.ease {
    transition-timing-function: ease !important;
}

.ease-in {
    transition-timing-function: ease-in !important;
}

.ease-out {
    transition-timing-function: ease-out !important;
}

.ease-in-out {
    transition-timing-function: ease-in-out !important;
}

.bounce-in {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
    transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
    transition-delay: 300ms !important;
}

.long-delay {
    transition-delay: 700ms !important;
}

.shake {
    animation-name: shake-7;
}

@keyframes shake-7 {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
        transform: translateX(7%);
    }

    5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
        transform: translateX(-7%);
    }
}

.spin-cw {
    animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(-1turn);
    }

    100% {
        transform: rotate(0);
    }
}

.spin-ccw {
    animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(1turn);
    }
}

.wiggle {
    animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
    40%, 50%, 60% {
        transform: rotate(7deg);
    }

    35%, 45%, 55%, 65% {
        transform: rotate(-7deg);
    }

    0%, 30%, 70%, 100% {
        transform: rotate(0);
    }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
    animation-duration: 500ms;
}

.infinite {
    animation-iteration-count: infinite;
}

.slow {
    animation-duration: 750ms !important;
}

.fast {
    animation-duration: 250ms !important;
}

.linear {
    animation-timing-function: linear !important;
}

.ease {
    animation-timing-function: ease !important;
}

.ease-in {
    animation-timing-function: ease-in !important;
}

.ease-out {
    animation-timing-function: ease-out !important;
}

.ease-in-out {
    animation-timing-function: ease-in-out !important;
}

.bounce-in {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
    animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
    animation-delay: 300ms !important;
}

.long-delay {
    animation-delay: 700ms !important;
}

/* Legacy support */
.hidden {
    display: none;
}

.portlet-content img {
    width: auto !important;
    height: auto !important;
    text-align: center !important;
    float: none !important;
    clear: both;
}

/* .MainFilterDate {
	float: left;
}
 */
/* Off-canvas trays (Navigation, Help, Messages) */
.off-canvas-logo {
    width: 108px;
    margin-bottom: .25em;
}

.off-canvas-content {
    padding: 1em 0;
}

@media screen and (max-width: 64em) {
    .off-canvas-content {
        padding-top: 3.5em;
    }
}

#siteContent {
}

.navigation-primary {
    list-style: none;
    margin-left: 0;
}

    .navigation-primary li {
        color: #ffffff;
        font-size: 1.39em;
        padding: .125em 1em;
    }

        .navigation-primary li:hover {
            background: #0078A6;
        }

    .navigation-primary .active {
        background: #0078a6;
        font-weight: bold;
    }

        .navigation-primary .active:hover,
        .navigation-primary .active:active {
            background: #59C8E3;
        }

#offCanvasLeft {
    padding-top: 1em;
    min-height: 100%;
}

#offCanvasRight {
    background: #cec3ae;
    height: 100%;
}

.tray-header {
    padding: .75em;
}

    .tray-header h1 {
        font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
        font-weight: bold;
        font-size: 140%;
        color: #fff;
        margin: 0;
    }

.tray-help {
    background: #4E938E;
}

    .tray-help h1:before {
        content: " ";
        background-size: cover;
        position: relative;
        display: inline-block;
        top: 4px;
        width: 24px;
        height: 24px;
        margin-right: 8px;
        background-image: url(../assets/svg/help.svg);
    }

.tray-msg {
    background: #F89C1B;
}

    .tray-msg h1:before {
        content: " ";
        background-size: cover;
        position: relative;
        display: inline-block;
        top: 4px;
        width: 24px;
        height: 24px;
        margin-right: 8px;
        background-image: url(../assets/svg/messages.svg);
    }

.tray-scenario, .tray-pattern, .tray-offer, .tray-exclusion {
    background: #537F62;
}

    .tray-scenario h1:before, .tray-pattern h1:before, .tray-offer h1:before, .tray-exclusion h1:before {
        content: " ";
        background-size: cover;
        position: relative;
        display: inline-block;
        top: 4px;
        width: 24px;
        height: 24px;
        margin-right: 8px;
        background-image: url(../assets/svg/curtailment.svg);
    }

.tray-content {
    padding: 1em;
}

    .tray-content h1, .tray-content h2, .tray-content h3, .tray-content h4, .tray-content h5 {
        font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
        font-weight: bold;
    }

    .tray-content h2 {
        font-size: 120%;
    }

.close-tray {
    float: right;
    cursor: pointer;
}

/* User bar (for medium+ screens) */
.user-bar-wrapper {
    position: fixed;
    bottom: 0;
    z-index: 11;
    width: 100%;
    padding-left: 300px;
    color: #fff;
}

    .user-bar-wrapper a {
        color: #fff;
    }

@media screen and (min-width: 40em) and (max-width: 64em) {
    .user-bar-wrapper {
        padding-left: 0;
    }
}

.user-bar-inner {
    background: rgba(100, 100, 98, 0.85);
    padding: .5em 0;
    font-size: 112.5%;
}

.user {
    float: left;
}

.bar-button {
    float: right;
    margin-left: 1em;
}

    .bar-button:before {
        content: " ";
        background-size: cover;
        position: relative;
        display: inline-block;
        top: 4px;
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

.messages:before {
    background-image: url(../assets/svg/messages.svg);
}

.help:before {
    background-image: url(../assets/svg/help.svg);
}

/* Mobile menu (for small screens) */
.mobile-menu {
    background: #363C49;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 12;
}

    .mobile-menu a {
        color: #fff;
    }

.mobile-button {
    padding: 5px 10px;
    border: #a54918 1px solid;
}

.mobile-logo {
    margin-top: -5px;
    max-height: 30px;
}

/* Navigation */
.nav-icon:before {
    content: " ";
    background-size: cover;
    position: relative;
    display: inline-block;
    top: 2px;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.performance-nav-icon:before {
    content: " ";
    background-size: cover;
    position: relative;
    display: inline-block;
    top: 7px;
    width: 24px;
    height: 24px;
    margin-right: 1px;
}

.info:before {
    background-image: url(../assets/svg/fi-info.svg);
}

#nav-dashboard:before,
.nav-dashboard:before {
    background-image: url(../assets/svg/home.svg);
}

#nav-marketplace:before,
.nav-marketplace:before {
    background-image: url(../assets/svg/marketplace.svg);
}

#nav-historical:before,
.nav-historical:before {
    background-image: url(../assets/svg/historical.svg);
}

#nav-price:before,
.nav-price:before {
    background-image: url(../assets/svg/price.svg);
}

#nav-financial:before,
.nav-financial:before {
    background-image: url(../assets/svg/financial.svg);
}

#nav-event:before,
.nav-event:before {
    background-image: url(../assets/svg/event.svg);
}

#nav-contracts:before,
.nav-contracts:before {
    background-image: url(../assets/svg/contracts.svg);
}

#nav-reports:before,
.nav-reports:before {
    background-image: url(../assets/svg/reports.svg);
}

#nav-settings:before,
.nav-settings:before {
    background-image: url(../assets/svg/settings.svg);
}

#nav-help:before,
.nav-help:before {
    background-image: url(../assets/svg/help.svg);
}

#nav-weather:before,
.nav-weather:before {
    background-image: url(../assets/svg/weather.svg);
}

#nav-signout:before,
.nav-signout:before {
    background-image: url(../assets/svg/signout.svg);
}

#nav-impersonate:before,
.nav-impersonate:before {
    background-image: url(../assets/svg/impersonate.svg);
}

#nav-curtailment:before,
.nav-curtailment:before {
    background-image: url(../assets/svg/curtailment.svg);
}

#nav-scheduling:before,
.nav-scheduling:before {
    background-image: url(../assets/svg/scheduling.svg);
}

#nav-payments:before,
.nav-payments:before {
    background-image: url(../assets/svg/dollar103.svg);
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

/* Messages */
.message {
    width: 100%;
    min-height: 48px;
    padding-left: 48px;
    margin: .75em 0;
}

.message-content {
    width: 100%;
    padding: 12px;
    height: 100%;
    min-height: 48px;
}

    .message-content p {
        display: none;
    }

    .message-content h3 {
        font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
        font-size: 100%;
        display: inline-block;
        margin: 0 0 0 0;
    }

.expanded h3 {
    margin: 0 0 16px 0;
}

.expanded p {
    display: inline-block;
    margin-bottom: 0;
}

.msg-settings {
    background: #332e2d;
    background-image: url(../assets/svg/settings.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-settings .message-content {
        background: #e5e0d9;
    }

.msg-financial {
    background: #537f62;
    background-image: url(../assets/svg/financial.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-financial .message-content {
        background: #e5e0d9;
    }

.msg-info {
    background: #FF8500;
    background-image: url(../assets/svg/info.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-info .message-content {
        background: #e5e3e0;
    }

.msg-curtailment {
    background: #b74a26;
    background-image: url(../assets/svg/warning.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-curtailment .message-content {
        background: #e5e0d9;
    }

.msg-feature, .msg-system {
    background: #332e2d;
    background-image: url(../assets/svg/feature.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-feature .message-content, .msg-system .message-content {
        background: #e5e0d9;
    }

.msg-price {
    background: #4e938e;
    background-image: url(../assets/svg/price.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-price .message-content {
        background: #e5e0d9;
    }

.msg-bid-accepted, .msg-success {
    background: #537f62;
    background-image: url(../assets/svg/check.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-bid-accepted .message-content, .msg-success .message-content {
        background: #e5e0d9;
    }

.msg-bid-failed, .msg-failure {
    background: #b74a26;
    background-image: url(../assets/svg/x.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-bid-failed .message-content, .msg-failure .message-content {
        background: #e5e0d9;
    }

.msg-contracts {
    background: #4e938e;
    background-image: url(../assets/svg/contracts.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-contracts .message-content {
        background: #e5e0d9;
    }

.msg-report {
    background: #f89c1b;
    background-image: url(../assets/svg/reports.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-report .message-content {
        background: #e5e0d9;
    }

.msg-weather {
    background: #f89c1b;
    background-image: url(../assets/svg/weather.svg);
    background-repeat: no-repeat;
    background-position: 8px 8px;
    background-size: 32px 32px;
}

    .msg-weather .message-content {
        background: #e5e0d9;
    }

#msg {
    font-weight: bold;
}

/*
.message .message-content {
	
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%2899, 99, 99%29"></polygon></svg>');
	background-size: 12px 8px;
	background-position: right 16px top 24px;
	background-repeat: no-repeat;
	
}

*/
/*	Prototyping styles	*/
.baseline-control {
    margin: 0 .5em;
    display: inline-block;
}

.label {
    border-radius: 3px;
}

    .label.secondary {
        background: #f2f2f2;
        color: #636254;
    }

table .label.secondary {
    background: #ddd;
}

#ct-grid-load .ct-slice-donut {
    stroke: #358f54;
}

#ct-lmp-small .ct-series-c {
    stroke: #80537b;
}

/* Stats (at a glance numbers) */
.stat {
    font-family: "Bebas Web", Helvetica, Roboto, Arial, sans-serif;
    text-align: center;
    display: block;
}

    .stat.temp {
        color: #E76C24;
    }

    .stat.usage {
        color: #4E938E;
    }

    .stat.price {
        color: #537F62;
    }

    .stat.day-ahead {
        color: #80537b;
    }

.stat-standout {
    text-align: center;
    margin-bottom: .5em;
    font-size: 80%;
}

.stat-weather {
    text-align: center;
    color: #636254;
    font-size: 80%;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

    .stat-weather .stat {
        font-size: 225%;
        color: #332E2D;
    }

.stat.weather-forecast {
    display: inline;
}

.stat .unit {
    font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
    font-weight: bold;
    font-size: 50%;
    vertical-align: middle;
}

/* Widgets */
.weather-conditions {
    background: #adbbcf;
    text-align: left;
}

    .weather-conditions h5 {
        text-align: center;
    }

    .weather-conditions .temperature {
        font-size: 2em;
        font-family: "Bebas Web", Helvetica, Roboto, Arial, sans-serif;
    }

.weather-icon {
    float: left;
    width: 50%;
    padding: 1em;
    min-height: 75px;
    text-align: center;
}

.current-readings {
    clear: both;
    list-style: none;
    font-weight: bold;
    padding-left: .25em;
}

    .current-readings span {
        font-weight: normal;
    }

.current-conditions, .forecast-tonight {
    padding: .5em;
}

.forecast-tonight {
    background-color: #344764;
    color: #fff;
}

.weather-conditions .conditions {
    font-size: 75%;
}

@media print, screen and (min-width: 40em) {
    select, input {
        /*commented out max-width because when changing the width of the 
            screen the textbox didnt align with the buttons in the authentication index/passwordsignin views. 
       max-width: 340px;
             */
    }

    h2.WidgetTitle {
        display: inline-block;
        vertical-align: top;
        margin-right: .5em;
    }

    h2.WidgetTitlePayments {
        display: inline-block;
        vertical-align: top;
        margin-left: .5em;
    }
}

h2 select {
    max-width: 320px;
    border: 2px #F89C1B solid;
}

h3 select {
    max-width: 300px;
    border: 2px #4E938E solid;
    font-size: 13px;
    background-color: #fff;
}

.weather-current {
    text-align: center;
}

.weather-date {
    font-size: 80%;
    color: #636254;
    font-weight: bold;
    text-align: center;
}

.weather-temp {
    text-align: center;
    font-size: 5rem;
    margin-top: 16px;
    color: #4E938E;
}

.small-widget {
    margin-bottom: .5em;
}

.medium-widget {
    margin-bottom: .75em;
}

.large-widget {
    margin-bottom: 1em;
}

.tracker-label {
    background: #f9f9f9;
    font-weight: bold;
}

h2 .button {
    margin-left: .5em;
}

.forecast-fill {
    background: #adbbcf;
    border-radius: 10px;
}

/* Marketplace section */
table {
    font-size: 75%;
}

@media print, screen and (min-width: 40em) {
    .tab {
        font-size: 75%;
    }
}

@media screen and (max-width: 39.9375em) {
    .tab {
        font-size: 90%;
    }
}

.tab .labels {
    font-weight: bold;
}

.tab .column .column .column:nth-child(2), .tab .columns .column .column:nth-child(2), .tab .column .columns .column:nth-child(2), .tab .columns .columns .column:nth-child(2), .tab .column .column .columns:nth-child(2), .tab .columns .column .columns:nth-child(2), .tab .column .columns .columns:nth-child(2), .tab .columns .columns .columns:nth-child(2) {
    background: #eee;
}

.choices div {
    width: 100%;
    display: block;
}

/* Login section */
body#app-login, body.app-login {
    background: #363C49;
}

.login-wrapper {
    margin-top: 3em;
    margin-bottom: 3em;
}

.login-form {
    background: #ffffff;
    border-radius: .5em;
    padding: 1.5em;
    min-width: min-content;
}

.warning .password-link {
    color: #7d3119;
}

.callout.small {
    font-size: 75%;
}

/* Weather section */
.day {
    text-align: center;
}

.daytime,
.nighttime {
    padding: 1em;
}

.daytime {
    background: #adbbcf;
    min-height: 300px;
}

.nighttime {
    background: #233043;
    color: #fff;
    min-height: 180px;
}

.day .humidity,
.day .wind,
.day .pressure {
    display: block;
}

.menu a.active {
    color: #332E2D;
}

/* Settings section */
@media screen and (max-width: 39.9375em) {
    .menu.expanded > li {
        display: block;
    }
}

.existing ul,
.bid-groups ul {
    list-style: none;
    margin-left: 0;
}

li.profile {
    display: block;
    width: 100%;
    clear: both;
    border-radius: .5em;
    background: #fef2e1;
    margin: .5em 0;
    padding: .5em;
    font-size: 80%;
}

.profile .left {
    width: 60%;
    float: left;
    display: inline-block;
}

.profile .actions {
    width: 40%;
    display: inline-block;
}

    .profile .actions a {
        font-weight: bold;
        text-decoration: underline;
        margin-left: .25em;
    }

.select-message .left {
    float: left;
    max-width: 70%;
}

    .select-message .left h4 {
        font-size: 1em;
    }

.select-message .right {
    float: right;
}

.select-message .clear {
    clear: both;
}

.bid-group .collapsed {
    background: #F89C1B;
    font-weight: bold;
    padding: .5em;
}

.bid-group .expanded {
    background: #fef2e1;
    padding: .5em;
}

.collapsed .toggle {
    color: #000;
    font-weight: bold;
    float: right;
}

.bid-group .left {
    float: left;
    max-width: 80%;
}

.bid-group .clear {
    clear: both;
}

.expanded .select-all {
    float: right;
}

.expanded label {
    font-weight: bold;
}

.bid-group .first {
    border-bottom: #332E2D 1px solid;
    margin-bottom: .5em;
}

.buttons .left, .actionButtons .left {
    float: left;
}

    .buttons .left .button, .actionButtons .left .button {
        margin-right: .5em;
    }

.buttons .right, .actionButtons .right {
    float: right;
}

    .buttons .right .button, .actionButtons .right .button {
        margin-left: .5em;
    }

.buttons .clear, .actionButtons .clear {
    clear: both;
}

.button.float-left,
.button.float-right {
    margin-left: .25em;
}

.t-last .button {
    margin: .1em .25em;
}

.resetPersonalization, .unDeleteable {
    display: none;
}

/* Styles in progress */
.btn-chart {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    padding: 0.85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 0.9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #4E938E;
    color: #000000;
}

[data-whatinput='mouse'] .btn-chart {
    outline: 0;
}

.btn-chart:hover, .btn-chart:focus {
    background-color: #3e7672;
    color: #000000;
}

.portlet-content {
    text-align: center;
    margin-bottom: 2rem;
}

.portlet.small .WidgetTitle .WidgetTitlePayments,
.medium-4.portlet .WidgetTitle .WidgetTitlePayments {
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
    display: block;
}

h3.widget-header {
    font-size: 1.2rem;
    text-align: left !important;
}

.MenuLink ul,
.NonMenuLink ul {
    list-style: none;
    margin: .25em 0;
}

.MenuLink li,
.NonMenuLink li {
    display: inline-block;
    margin: .25em;
    color: #4E938E;
    font-size: 75%;
}

.MenuLink li {
    cursor: pointer;
}

.NonMenuLink label {
    display: inline-block;
    color: #4E938E;
    font-size: 90%;
}

.MenuLink li.MenuLinkBackColor-Darker {
    background: #4E938E;
    border-radius: .25em;
    padding: .25em;
    color: #fff;
}

.MenuLink .expanded li {
    font-size: 100%;
    margin-right: 3em;
    padding: 0.3rem 0.5rem;
}

.MenuLink.unit {
    margin-right: 30px;
}

.portlet.small select {
    font-size: .8rem;
    height: 2rem;
    padding: 0 .5em;
}

.MarginBottom5 {
    width: 50%;
    float: left;
}

.chartLabel {
    font-size: 75%;
}

.event-performance-chart-label{
    font-size: 85%;
    margin-right: 0.25rem;
}

/* JQModal dialogues */
.jqmWindow {
    display: none;
    z-index: 1006;
    position: fixed;
    top: 17% !important;
    width: 100% !important;
    background-color: #EEE;
    color: #4E938E !important;
    border: 1px solid black;
    padding: 12px;
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    max-width: 500px !important;
    max-height: 400px !important;
    overflow: scroll;
}

[data-whatinput='mouse'] .jqmWindow {
    outline: 0;
}

@media screen and (min-width: 40em) {
    .jqmWindow {
        min-height: 0;
    }
}

.jqmWindow .column, .jqmWindow .columns,
.jqmWindow .columns {
    min-width: 0;
}

.jqmWindow > :last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 40em) {
    .jqmWindow {
        width: 90%;
        max-width: 75rem;
    }
}

.jqmOverlay {
    background-color: #000;
}

.jqmWindow ul {
    margin: 0 !important;
    margin-left: 1.25rem !important;
}

.outerPopup {
    display: none;
    position: absolute;
    top: 17%;
    width: 100%;
}

    .outerPopup .innerPopup {
        height: auto !important;
        overflow: auto;
        width: auto;
        margin: auto;
        max-width: 500px;
        background: #FFF;
        padding: 10px;
    }

        .outerPopup .innerPopup h1 {
            font-size: 22px;
            border-bottom: 1px solid black;
            margin-bottom: 10px;
        }

        .outerPopup .innerPopup div.popupContent {
            height: auto !important;
        }

            .outerPopup .innerPopup div.popupContent p {
                margin-left: 30px;
            }

        .outerPopup .innerPopup button {
            float: right;
        }

#jqModalWindow.outerPopup .innerPopup div.popupContent p {
    margin: 0;
}

#jqModalWindow.outerPopup .innerPopup div.popupContent table {
    width: 100%;
}

    #jqModalWindow.outerPopup .innerPopup div.popupContent table th {
        background-color: #332E2D;
        color: White;
        padding: 4px;
        text-align: left;
        font-weight: bold;
    }

.RoleRadioButton {
    vertical-align: middle;
    margin: 0px;
}

.ChartDetailValue,
.reading, #WeatherWidget .daytime .temperature,
#WeatherWidget .nighttime .temperature,
#WidgetGridLoad .value {
    font-size: 2.0rem;
    line-height: 1;
    font-family: "Bebas Web", Helvetica, Roboto, Arial, sans-serif;
    text-align: center;
    display: block;
    font-variant: small-caps;
}

p + .ChartDetailValue,
p + .reading {
    margin-top: -1rem;
}

.chartlabel {
    font-size: 90%;
}

.daytime h1,
.nighttime h1 {
    font-size: 100%;
}

.daytime h2,
.nighttime h2 {
    font-size: 90%;
}

.topside h2,
.topside .title2 {
    display: none;
}

#WidgetGridLoad .label {
    font-size: 90%;
    color: #332E2D;
    background: #ffffff;
}

.exportLink,
.zoomLink {
    float: right;
    font-size: 80%;
    color: #4E938E;
    background: #EEE;
    border-radius: .25em;
    padding: .25em;
    margin: .25em;
    cursor: pointer;
}

    .exportLink:after {
        content: 'Export';
        cursor: pointer;
    }

.medium-4 .purple {
    color: #625380;
}

.medium-4 .darkblue {
    color: #4e6a94;
}

.medium-4 .darkgreen {
    color: #537F62;
}

.medium-4 .lightorange {
    color: #E76C24;
}

.medium-4 .lightgreen {
    color: #358f54;
}

/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #B74A26;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #B74A26;
    background-color: #dfab98;
}

.input-validation-error-imperative {
    border: 1px solid #B74A26;
    background-color: #dfab98;
}

.validation-summary-errors {
    font-weight: bold;
    color: #B74A26;
}

.user-summary-message {
    font-weight: bold;
    color: #B74A26;
    margin: 0.5rem 0rem;
}

.input-validation-success {
    border: 1px solid #537F62;
    background-color: #b1c6b8;
}

.validation-summary-success {
    font-weight: bold;
    color: #358f54;
}

.tabs-title.is-active > a {
    color: #fff;
    font-weight: bold;
}

.decimals {
    width: 75%;
    float: left;
}

.arrows {
    float: right;
    margin-top: 8px;
}

    .arrows:after {
        content: '>';
        font-weight: bold;
        font-size: 1rem;
        color: #4E938E;
    }

*:focus {
    outline: none !important;
}

.exportLink:after {
    content: 'Export Data';
    cursor: pointer;
}

.zoomLink:after {
    content: 'Expand Chart';
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .zoomLink:not(.contractLink), .zoomLink:after {
        display: none;
    }

    .zoomLink.contractLink:after {
        display: block;
        content: 'Collapse Chart';
    }
}

.zoomLink.contractLink:after {
    content: 'Collapse Chart';
}

.loader {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: url("/Content/images/Widgets/loading.gif") no-repeat center center;
}

.loaderFixed {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: url("/Content/images/Widgets/loading.gif") no-repeat center center;
}

#chartoptiontable {
    font-size: 100%;
}

.currentUsage {
    font-weight: bold;
}

.rotate {
    display: inline-block;
    transform: rotate(90deg);
    width: 150px;
    margin: 0 0 0 -64px;
}

/*Infragistics Css*/
.ui-widget-content {
    /*	border: 1px solid #ebebeb; */
    background: white;
}

.ui-chart-legend {
    border: 1px solid #fff;
}
/*LMP Summary*/
#LMPSummary_Large #gridZoneList_scroll {
    display: inline-block;
    overflow: auto !important;
    overflow-y: auto;
    overflow-x: hidden;
}

/*CustomRange DatePicker*/
@media only screen and (min-device-width: 150px) and (max-device-width: 480px) {
    .touch .ui-datepicker {
        width: 100%;
    }
}

@media only screen and (min-device-width: 480px) {
    .touch .ui-datepicker {
        max-width: 60%;
        margin: 0 auto;
    }

    #customDateRangePicker .ui-widget-content {
        margin: 0 auto;
    }
}

#customDateRangePicker {
    z-index: 11;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

.ui-datepicker .ui-datepicker-current-day .ui-state-default {
    color: white !important;
    background: #4E938E;
    text-shadow: initial;
}

.ui-datepicker .ui-state-default {
    text-align: center;
}

.ui-widget-content .ui-state-active {
    background: #4E938E;
    color: white !important;
}

.ui-datepicker .ui-datepicker-calendar a.ui-state-hover {
    background: #4E938E;
    color: white !important;
}

.ui-datepicker .ui-datepicker-title {
    color: #fff;
}

.touch .ui-datepicker table {
    font-size: smaller;
}

#ui-datepicker-div {
    display: none;
    z-index: 11 !important;
    /*width: auto;*/
    min-width: 250px;
}

.ui-datepicker-trigger {
    display: inline;
    padding: 0px;
    padding-left: 3px;
    vertical-align: baseline;
    position: relative;
}

.ui-datepicker-today {
    background: #fcd392;
}

/*Financial Summary*/
#LargeFinancial #fssummarybtn {
    cursor: pointer;
    border: 0;
    border-radius: 1em;
    width: 30px;
    color: #fff;
    background: #34635f;
    font-size: 12px;
    overflow: hidden;
    letter-spacing: 1px;
}

#LargeFinancial .fssummarydetailsbtn {
    vertical-align: top;
    bottom: 0;
}

#LargeFinancial #fschartcontainerupdate {
    float: left;
    width: 75%;
}

#LargeFinancial #fssummarydetailsbtnwrapper {
    float: right;
}

#LargeFinancial #fssummarydetailswrapper {
    width: 25%;
    float: right;
    line-height: 13px;
}

#LargeFinancial #fschartsummary {
    float: left;
    background-color: #ececec;
    font-size: 9pt;
    bottom: 0;
    line-height: 15px;
}

#LargeFinancial #fschartsummarytable td.td-textalignright {
    text-align: right;
    width: 40%;
    padding: 1px;
}

#LargeFinancial #fschartsummarytable td.td-textalignleft {
    text-align: left;
    font-weight: bold;
    width: 60%;
    padding: 1px;
}

#LargeFinancial #fschartsummarytable {
    width: 100%;
    font-size: 100%;
}

#LargeFinancial #bidawarddollar-head {
    color: green;
    font-weight: bold;
}

#LargeFinancial #bidawardmwh-head {
    color: #0080FF;
    font-weight: bold;
}

#LargeFinancial #energyusage-head {
    color: red;
    font-weight: bold;
}

#LargeFinancial .td-head {
    text-align: left;
}

#LargeFinancial .updatechartcontainersize {
    width: 95%;
}

#LargeFinancial .updatechartsummarywrapper {
    width: 4%;
}

#LargeFinancial .updatesummarydetailsbtnwrapper {
    width: 100%;
}

#LargeFinancial #fssummarydaterange {
    font-weight: bold;
    padding: 1px;
    text-decoration: underline;
}

#LargeFinancial .td-textaligncenter {
    text-align: center;
}

/*RealTime Usage*/
#LargeRealTimeUsage #meterusagebtn {
    cursor: pointer;
    border: 0;
    border-radius: 1em;
    width: 30px;
    color: #fff;
    background: #34635f;
    font-size: 12px;
    overflow: hidden;
    letter-spacing: 1px;
}

#LargeRealTimeUsage .meterdetailsbtn {
    bottom: 0;
}

#LargeRealTimeUsage #rtchartcontainerupdate {
    width: 100%;
    float: left;
}

#LargeRealTimeUsage #realtimechart, #LargeRealTimeUsage #btnwrapper {
    float: left;
}

#LargeRealTimeUsage #meterusagebtn {
    float: right;
}

#LargeRealTimeUsage #meterlisthead {
    width: 100%;
}

#LargeRealTimeUsage #meterusagelistlegend {
    overflow-x: hidden;
    overflow-y: auto;
}

#LargeRealTimeUsage .ui-chart-legend-item {
    width: 100%;
}

#LargeRealTimeUsage table.ui-chart-legend-items-list {
    border-spacing: 5px;
    border: 2px solid black;
    width: 96%;
    text-align: left;
}

    #LargeRealTimeUsage table.ui-chart-legend-items-list tr {
        float: left;
        position: relative;
        padding: 4px;
    }

    #LargeRealTimeUsage table.ui-chart-legend-items-list thead tr {
        text-align: center;
        float: none;
    }

        #LargeRealTimeUsage table.ui-chart-legend-items-list thead tr td {
            text-align: center;
            text-decoration: underline;
        }

    #LargeRealTimeUsage table.ui-chart-legend-items-list tr[title]:hover:after {
        content: attr(title);
        padding: 2px 4px;
        color: #34635f;
        font-weight: bold;
        display: block;
        position: absolute;
        font-size: 0.9em;
        background-color: white;
        border: 1px #34635f solid;
        z-index: 11;
    }

    #LargeRealTimeUsage table.ui-chart-legend-items-list thead {
        background-color: black;
        color: #34635f;
        font-size: medium;
        font-weight: bold;
        font-family: 'Times New Roman', Times, serif;
    }

    #LargeRealTimeUsage table.ui-chart-legend-items-list td.ui-chart-legend-item-text {
        font-weight: bold;
        word-break: break-all;
    }

    #LargeRealTimeUsage table.ui-chart-legend-items-list tbody {
        display: block;
    }

#LargeRealTimeUsage #meterheaderclearhighlighting {
    cursor: pointer;
    padding-top: 10px;
    height: 40px;
    background: #34635f;
    color: #fff;
    font-size: medium;
    font-weight: bold;
    text-align: center;
    width: 100%;
    float: left;
    margin-left: 2px;
    border-radius: 1em;
    text-decoration: underline;
    overflow: hidden;
}

#LargeRealTimeUsage::-webkit-scrollbar {
    -webkit-appearance: none;
}

    #LargeRealTimeUsage::-webkit-scrollbar:vertical {
        width: 12px;
    }

    #LargeRealTimeUsage::-webkit-scrollbar:horizontal {
        height: 12px;
    }

#LargeRealTimeUsage::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

#LargeRealTimeUsage::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.ui-chart-toolbar {
    z-index: 15;
}

/*Account Settings*/
#AccountSettings div.inputs {
    float: none;
    width: 100%;
}

    #AccountSettings div.inputs div.Password {
        float: none;
        width: 100%;
        height: 100%;
        padding: 10px 0px 0px 0px;
    }

.settingsloader {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 8;
    background: url("/Content/images/Widgets/Loader3.gif") no-repeat center center;
}

#AccountSettings div.inputs div.PersonalInfo {
    float: none;
    width: 100%;
    padding-top: 10px;
}

#AccountSettings label {
    display: inline-block;
}

/*Infragistics jQuery tooltip template styles*/
.toolTipDataTextCustomize {
    font-weight: bold;
}

.toolTipTextColor {
    color: #34635f;
}

/*Error Pages*/
.ErrorPage {
    margin: 50px 10px;
    text-align: left !important;
}

    .ErrorPage.ImageErrorPage {
        margin: 0px;
    }

.errorIcon {
    width: 54px;
    height: 54px;
    background-image: url("/Content/images/Icons/icon5.png");
    background-repeat: no-repeat;
}

.ErrorPage .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.ErrorPage .errorMsgContainer {
    word-wrap: break-word;
}

.ErrorPage .header {
    color: red;
    font-weight: bold;
}

/*ManageUsers Create and edit*/
fieldset input[type=text],
fieldset input[type=password],
fieldset select {
    width: 100%;
}

/*Overriding Foundation Default CSS*/
table ul {
    margin: 0 !important;
    margin-left: 1.25rem !important;
}

label {
    display: inline;
}

.ui-igtrialwatermark {
    display: none;
}

.ImpersonateOnSelectUsersGridRow {
    color: white;
    background-color: #34635f !important;
    font-weight: inherit !important;
}

    .ImpersonateOnSelectUsersGridRow:hover {
        outline: 6px solid #34635f;
    }

.hiddenImportant {
    display: none !important;
}

#UserList .t-grid-content {
    font-size: 100% !important;
}

#UserList table {
    font-size: 90% !important;
}

/* Styles for bid status legend
-----------------------------------------------------------*/
.ico-bid-status-legend-large {
    color: white;
    vertical-align: middle;
    padding: 4px 3px 4px 3px;
    border-radius: 4px 4px;
    margin: 1px;
    font-size: 80%;
    font-weight: bold;
}

.ico-bid-status-legend-Rejected {
    background-color: #cb481d;
}

/*red*/
.ico-bid-status-legend-Awarded {
    background-color: #358f54;
}

/*lightGreenDot to green*/
.ico-bid-status-legend-NotAwarded {
    background-color: #e05b0c;
}

/*blue to orange*/
.ico-bid-status-legend-Draft {
    background-color: #344764;
}

/*black to blue*/
.ico-bid-status-legend-Withdrawn {
    background-color: #ce7e0b;
}

/*yellow*/
.ico-bid-status-legend-Acknowledged {
    background-color: #625380;
}

/*purple*/
.ico-bid-status-legend-Pending {
    background-color: #636254;
}

/*grey*/
.ico-bid-status-legend-PendingWithdraw {
    background-color: #7a470c;
}

/*green to dark yellow*/
#BidWizard .bids ul li.active {
    background-color: #4E938E;
    color: #fff;
}

.ico-bid-status-legend {
    float: left;
    width: 20px;
    height: 20px;
    background-image: url("/Content/Images/Icons/icon1.png");
    background-repeat: no-repeat;
}

.ico-menu-redCircle {
    background-position: 0px -260px;
}

.ico-menu-greenCircle {
    background-position: 0px -300px;
}

.ico-menu-checked {
    background-position: 0 -820px;
}

.ico-menu-unchecked {
    background-position: 0 -840px;
}

.ico-menu-delete {
    background-position: 0 -880px;
}

.ico-menu-deleteDisabled {
    background-position: 0 -920px;
}

.ico-mobile-validation-legend {
    float: left;
    width: 20px;
    height: 20px;
    background-image: url("/Content/Images/Icons/icon1.png");
    background-repeat: no-repeat;
}

.ico-menu-check {
    background-position: 0px -220px;
}

.centeredAlign {
    text-align: center !important;
    font-weight: bold !important;
}

.emailBody {
    color: #4E938E;
    font-weight: bold;
    text-decoration: underline;
}

/*Styles for Bid Edit view
------------------------------------------*/
.facilityDetails {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

#BidWizard .softWarning {
    background-color: #F7CF8C;
    position: relative;
    top: -6px;
    left: -9px;
    color: #424542;
    font-family: Arial, sans-serif;
    font-size: 100%;
    font-weight: bold;
    line-height: 28px;
    vertical-align: middle;
    padding-left: 15px;
}

#BidWizardCreate #BidDetail table td span.red,
#BidWizardCreate #BidDetail table td span.arrows-right-red {
    float: none;
    display: inline-block;
    color: red;
}

/*chart legends css*/
.canvasRed {
    color: red;
}

.canvasBlue {
    color: #0080FF;
}

.canvasGreen {
    color: #007800;
}

.canvasOrange {
    color: #FF6103;
}

.canvasDarkBlue {
    color: #0000E1;
}

.canvasPurple {
    color: #9932CC;
}

.canvasBlack {
    color: #000;
}

.t-widget,
.t-widget button,
.t-widget input,
.t-widget select,
.t-widget {
    border-width: 1px;
    border-style: solid;
}

.t-link {
    cursor: pointer;
    outline: none;
}

.t-icon,
.t-editor-button .t-tool-icon {
    background-color: transparent;
    background-repeat: no-repeat;
}

.t-grid-rtl .t-button .t-icon {
    margin-left: 3px;
    margin-right: -6px;
}

.t-header .t-link {
    text-decoration: none;
}

.t-icon,
.t-sprite,
.t-editor-button .t-tool-icon {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
}

* html .t-icon,
.t-sprite {
    text-indent: 0;
}

* + html .t-icon,
.t-sprite {
    text-indent: 0;
}

.t-grid {
    position: relative;
}

    .t-grid table {
        width: 100%;
        border-collapse: separate;
        empty-cells: show;
        border: 0;
    }

.t-grid-header .t-header {
    text-align: left;
}

.t-grid-header .t-header,
.t-grid-header .t-last-header {
    padding: .3em .6em;
    border-width: 0 1px 1px 0;
    border-style: solid;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.t-grid-header .t-last-header {
    border-right-width: 0;
}

.t-grid-header .t-header .t-link {
    line-height: 18px;
    height: 18px;
    display: block;
    margin: -.3em -.6em;
    padding: .3em 2.4em .3em .6em;
    border: 0;
}

.t-grid-header .t-header .t-icon {
    position: static;
}

.t-grid .t-state-hover {
    cursor: pointer;
}

.t-grid td {
    padding: .25em .6em;
    border: 0;
    vertical-align: middle;
    line-height: 1.6em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.t-grid .t-last {
    border-right-width: 0;
    border-bottom-width: 0;
}

.t-grid-header-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

div.t-grid-header {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

    div.t-grid-header .t-header,
    div.t-grid-header .t-last-header {
        border-bottom-width: 0;
    }

    div.t-grid-header .t-last-header {
        border-right-width: 1px;
    }

.t-grid-content {
    position: relative;
    overflow: auto;
    width: 100%;
}

    .t-grid-header table,
    .t-grid-content table {
        table-layout: fixed;
    }

    * html .t-grid-content table {
        width: auto;
    }

    * + html .t-grid-content table {
        width: auto;
    }

.t-grid .t-pager-wrapper,
.t-grid-footer {
    border-style: solid;
    border-width: 1px 0 0;
}

.t-grid div.t-pager-wrapper {
    border-width: 0 0 1px 0;
}

.t-grid-footer div.t-pager-wrapper {
    border-width: 0;
}

.t-grid div.t-grid-footer {
    border-width: 1px 0 0;
}

.t-grid .t-pager-wrapper {
    padding: .2em .6em;
    line-height: 1.8em;
    overflow: auto;
}

* html .t-pager-wrapper input {
    vertical-align: middle;
}

* + html .t-pager-wrapper input {
    vertical-align: middle;
}

.t-grid .t-pager,
.t-grid .t-status,
.t-grid .t-status-text,
.t-pager .t-numeric,
.t-pager .t-page-i-of-n,
.t-pager .t-link,
.t-pager span,
.t-pager input,
.t-grouping-row p {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
}

.t-grid .t-status {
    float: left;
    margin: -.2em .6em -.2em -.6em;
    padding: .2em .6em;
    height: 1.85em;
    border-right-width: 1px;
    border-right-style: solid;
}

.t-grid .t-pager {
    float: left;
    cursor: default;
}

.t-grid .t-status-text {
    float: right;
    margin-right: .2em;
}

.t-pager .t-link {
    text-decoration: none;
    padding: 1px;
    margin-top: .2em;
    border: 0;
    line-height: 16px;
}

.t-pager .t-state-active,
.t-pager .t-state-hover {
    padding: 0;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.t-pager span,
.t-pager .t-link {
    vertical-align: top;
}

.t-pager .t-numeric,
.t-pager .t-page-i-of-n {
    margin: 0 7px;
    vertical-align: top;
}

.t-numeric .t-link,
.t-numeric .t-state-active {
    margin-top: 0;
    padding: 0 5px;
    line-height: 22px;
    vertical-align: top;
}

.t-numeric .t-state-active,
.t-numeric .t-state-hover {
    padding: 0 4px;
    line-height: 20px;
}

.t-page-i-of-n input {
    width: 2em;
    vertical-align: baseline;
    font-size: 1em;
}

.t-pager-wrapper .t-status .t-icon {
    vertical-align: top;
    margin-top: 3px;
}

.t-grid-filter {
    float: right;
    height: 18px;
    padding: .3em .2em;
    position: relative;
    display: inline-block;
    *display: inline;
    margin: -1.8em -.6em -.3em 3px;
    margin-top: -.3em\9;
}

.t-link + .t-grid-filter {
    margin-top: -1.8em\9;
}

* + html .t-grid .t-grid-filter {
    margin-top: -1.8em;
}

.t-grid-filter .t-icon {
    vertical-align: top;
}

.t-grid .t-animation-container {
    position: absolute;
}

.t-grid td.t-group-cell,
.t-grid td.t-hierarchy-cell {
    border-right: 0;
}

.t-grid .t-group-col,
.t-grid .t-hierarchy-col {
    width: 30px;
}

* html .t-grid .text-box {
    width: 90%;
}

.t-grid .field-validation-error {
    display: block;
}

.t-grid .input-validation-error {
    border-style: ridge;
    border-color: #f00;
    background-color: #ffc0cb;
}

.t-grid-toolbar .t-button,
.t-grid-actions,
.t-grid-action {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    font-size: 1em;
    line-height: 1.417em;
}

.t-grid-action,
.t-grid-toolbar .t-button {
    margin: 0 .2em;
    min-width: 65px;
}

.t-grid-toolbar .t-button,
button.t-grid-action,
#ie8#fix {
    min-width: 75px;
}

.plevel2 {
    background-color: #26554A;
    font-size: 12px;
}

.plevel3 {
    background-color: #1A7C68;
    font-size: 12px;
}

.t-detail-row {
    position: relative;
}

.t-grid-resize-indicator {
    position: absolute;
    width: 2px;
    background-color: #aaa;
}

.t-grid .t-resize-handle {
    cursor: col-resize;
    position: absolute;
    height: 25px;
}

.t-widget {
    background-color: #e1f0ef;
    border-color: #ffffff;
}

.t-header,
.t-grid-header {
    background: #4E938E;
    border-color: #ffffff;
    height: 30px;
    vertical-align: middle;
}

.t-icon {
    background-image: url(../css/sprite.png);
}

.t-arrow-up {
    background-position: -16px -160px;
}

.t-arrow-down {
    background-position: -16px -176px;
}

.t-header .t-arrow-up,
.t-state-hover .t-arrow-up {
    background-position: -48px -160px;
}

.t-header .t-arrow-down,
.t-state-hover .t-arrow-down {
    background-position: -48px -176px;
}

.t-state-disabled .t-arrow-up {
    background-position: -32px -160px;
}

.t-state-disabled .t-arrow-down {
    background-position: -32px -176px;
}

.t-numerictextbox .t-arrow-up {
    background-position: -16px -162px;
}

.t-numerictextbox .t-arrow-down {
    background-position: -16px -178px;
}

.t-arrow-up-small {
    background-position: 0 -304px;
}

.t-arrow-down-small {
    background-position: -16px -304px;
}

.t-arrow-first {
    background-position: 0 -192px;
}

.t-arrow-prev {
    background-position: -16px -192px;
}

.t-arrow-next {
    background-position: -32px -192px;
}

.t-arrow-last {
    background-position: -48px -192px;
}

.t-state-disabled .t-arrow-first {
    background-position: 0 -208px;
}

.t-state-disabled .t-arrow-prev {
    background-position: -16px -208px;
}

.t-state-disabled .t-arrow-next {
    background-position: -32px -208px;
}

.t-state-disabled .t-arrow-last {
    background-position: -48px -208px;
}

.t-filter {
    background-position: 0 -240px;
}

.t-clear-filter {
    background-position: -16px -240px;
}

.t-refresh {
    background-position: -32px -240px;
    display: none;
}

.t-icon-calendar {
    background-position: -48px -240px;
}

.t-edit {
    background-position: 0 -336px;
}

.t-delete {
    background-position: -16px -336px;
}

.t-insert,
.t-update {
    background-position: -32px -336px;
}

.t-group-delete {
    background-position: 0 -288px;
}

.t-maximize {
    background-position: -16px -288px;
}

.t-restore {
    background-position: -32px -288px;
}

.t-close {
    background-position: -64px -288px;
}

.t-add {
    background-position: -48px -320px;
}

.t-denied,
.t-cancel {
    background-position: -64px -320px;
}

.t-loading,
.t-widget .t-loading {
    background: transparent url(Windows7/loading.gif) no-repeat 0 0;
}

.t-widget,
.t-link,
.t-popup {
    color: #000;
}

.t-header,
.t-header .t-link {
    color: #ffffff;
    font-weight: bold !important;
    font-size: 12px;
    padding-left: 2px;
}

    .t-header .t-group,
    .t-group .t-link {
        color: #333;
    }

.t-group,
.t-content,
.t-editable-area {
    background-color: #fcfcfc;
    border-color: #a5b3c5;
}

.t-alt {
    background-color: #b7dbd9;
}

.t-state-active {
    background-color: #fff;
    border-color: #426682;
}

.t-state-selected {
    background-color: #34635f;
    color: White;
    font-weight: bold;
}

.t-state-error {
    background-color: #ffc0cb;
    border-color: red;
    border-style: ridge;
}

.t-state-disabled,
.t-state-disabled .t-link {
    color: #888;
}

.t-toolbar,
.t-grouping-header,
.t-widget .t-pager-wrapper,
.t-grid-footer,
.t-widget .t-status {
    background-color: #eeeeee;
    border-color: white;
}

.t-grid td {
    border-right: 1px solid #fff;
}

div.t-grid form.t-grid-actions {
    float: left;
}

div.t-grid a.button {
    float: left;
}

.t-widget table {
    height: auto !important;
}

@media screen and (max-width: 39.9375em) {
    .t-widget table thead {
        display: none;
    }

    .t-widget table tfoot {
        display: none;
    }

    .t-widget table tr,
    .t-widget table th,
    .t-widget table td {
        display: block;
    }

    .t-widget table td {
        border-top: 0;
    }
}

@media screen and (max-width: 39.9375em) {
    /*Added to display mobile headers*/
    #CurrentBidActivityGrid .t-grid-content {
        padding-top: 180px;
    }

    #RecentTransactionLogGrid .t-grid-content {
        padding-top: 55px;
    }

    #FacilityList .t-grid-content {
        padding-top: 180px;
    }

    #BidDetail .t-grid-content {
        padding-top: 90px;
    }

    #BidDetailForMultiProducts .t-header {
        padding-bottom: 50px;
    }

    #BidDetailForMultiProducts .customHeader {
        padding-top: 30px;
    }

    #grdCompanies .t-grid-content {
        padding-top: 55px;
    }

    #UserList .t-grid-content {
        padding-top: 120px;
    }

    #grdRoles .tbody {
        padding-top: 130px !important;
    }

    #TransactionHistory .t-grid-content {
        padding-top: 90px;
    }

    .t-widget table.userFacilities td {
        display: table-cell;
    }

    .deactivate span.ico-menu-checked:after, .activate span.ico-menu-checked:after {
        content: 'Active';
        margin-left: 2em;
    }

    .deactivate span.ico-menu-unchecked:after, .activate span.ico-menu-unchecked:after {
        content: 'Inactive';
        margin-left: 2em;
    }
}

colgroup {
    display: none !important;
}

.t-grid-content {
    height: auto !important;
}

#BidDetailForMultiProducts .customHeader {
    background: #a5cecb;
    border-color: #ffffff;
    vertical-align: middle;
    /*padding-top: 0 !important;
	padding-bottom: 0 !important;*/
    color: #454647;
    font-weight: bold !important;
}

/*To hide the multi product grid header*/
#BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table thead {
    display: none !important;
}

/*To highlet the multi product grid header(first 2 rows of grid content)*/
#BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(1),
#BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(2) {
    background: #332E2D !important;
    color: #fff;
    font-weight: normal;
    font-size: 1em;
    min-height: 18px;
}

/*To hide the multi product grid header in mobile view*/
@media screen and (min-width: 0em) and (max-width: 64.0625em) {
    #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(1), #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(2), #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(3), #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(4), #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(5), #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(6), #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(7), #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(8), #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(9), #BidReviewDetailGridForMultiProducts .ui-widget .ui-widget-content table tbody tr:nth-child(10) {
        display: none !important;
    }
}

/*Small Widgets*/
.portlet.small {
    min-height: 300px;
}

/*footer css*/
#Footer {
    color: #2f7dae;
    padding: 20px 25px 25px;
    font-size: 7.8pt;
}

/*Block UI*/
.blockUI {
    z-index: 10 !important;
}

/*
 * jsTree default theme 1.0
 */
#menuPanel {
    display: block;
    position: absolute;
    /*top: -47px;*/
    width: 0;
    z-index: 11 !important;
}

#menuTop {
    display: block;
}

    #menuTop .menuTopRight {
        display: block;
    }

#menuPanel .menuContent {
    display: block;
    position: relative;
    font-size: 15px;
}

#leftMenu {
    width: 280px;
    position: relative;
    background: #fff;
    border: 1px #636254 solid;
    padding: 5px;
    top: 0px;
}

#menuPanel a {
    color: #4E938E;
    text-decoration: none;
}

    #menuPanel a:hover {
        color: #34635f;
        font-weight: bold;
        text-decoration: none;
        background-color: #FFF;
    }

    #menuPanel a:active,
    a.active {
        color: #234240;
    }

.jstree-default li,
.jstree-default ins {
    background-image: url("/Content/CPowerTemplating2-25-16/assets/d.png");
    background-repeat: no-repeat;
    background-color: transparent;
}

.jstree-default li {
    background-position: -90px 0;
    background-repeat: repeat-y;
}

    .jstree-default li.jstree-last {
        background: transparent;
    }

.jstree-default .jstree-open > ins {
    background-position: -72px 0;
}

.jstree-default .jstree-closed > ins {
    background-position: -54px 0;
}

.jstree-default .jstree-leaf > ins {
    background-position: -36px 0;
}

.jstree-default .jstree-hovered {
    background: #adcecc;
    padding: 0 2px;
}

.jstree-default .jstree-clicked {
    background: #86b6b3;
    padding: 0 2px;
}

.jstree-default a .jstree-icon {
    background-position: -56px -19px;
}

.jstree-default a.jstree-loading .jstree-icon {
    background: url("/Content/CPowerTemplating2-25-16/assets/throbber.gif") center center no-repeat !important;
}

.jstree-default .jstree-no-dots li,
.jstree-default .jstree-no-dots .jstree-leaf > ins {
    background: transparent;
}

.jstree-default .jstree-no-dots .jstree-open > ins {
    background-position: -18px 0;
}

.jstree-default .jstree-no-dots .jstree-closed > ins {
    background-position: 0 0;
}

.jstree-default .jstree-no-icons a .jstree-icon {
    display: none;
}

.jstree-default .jstree-search {
    font-style: italic;
}

.jstree-default .jstree-no-icons .jstree-checkbox {
    display: inline-block;
}

.jstree-default .jstree-no-checkboxes .jstree-checkbox {
    display: none !important;
}

.jstree-default .jstree-checked > a > .jstree-checkbox {
    background-position: -38px -19px;
}

.jstree-default .jstree-unchecked > a > .jstree-checkbox {
    background-position: -2px -19px;
}

.jstree-default .jstree-undetermined > a > .jstree-checkbox {
    background-position: -20px -19px;
}

.jstree-default .jstree-checked > a > .jstree-checkbox:hover {
    background-position: -38px -37px;
}

.jstree-default .jstree-unchecked > a > .jstree-checkbox:hover {
    background-position: -2px -37px;
}

.jstree-default .jstree-undetermined > a > .jstree-checkbox:hover {
    background-position: -20px -37px;
}

#jstree-marker.jstree-default {
    background: url("/Content/CPowerTemplating2-25-16/assets/d.png") -41px -57px no-repeat !important;
    text-indent: -100px;
}

.jstree-default a.jstree-search {
    color: #2a968e;
}

.jstree-default .jstree-locked a {
    color: #636254;
    cursor: default;
}

/*Zoom in and Zoom out CSS*/
.touch .ui-chart-toolbar button,
.ui-chart-toolbar button {
    width: 18px !important;
    height: 18px !important;
    margin: 2px !important;
}

.touch .ui-chart-toolbar,
.ui-chart-toolbar {
    background-color: transparent !important;
}

/*utility css*/
.discoslist .t-state-selected,
#WidgetConsumption .t-state-selected {
    background-color: inherit;
    color: black;
    font-weight: bolder;
}

@media screen and (min-width: 64.0625em) {
    #grdUsage {
        max-height: 300px;
        overflow: auto;
    }
}

/* Outdated Price Info */
.outdated {
    color: #636254;
    font-style: italic;
}

/* Curtailment Planning */
.action-group input[type=checkbox] {
    display: none;
}

.action-group label.action {
    font-size: 112.5%;
    width: 100%;
    background-color: #f3f0eb;
    margin: .25em 0;
    padding: .25em 1em .25em 2em;
    border-radius: .25em;
}

.action-group label span.action-name {
    max-width: 70%;
    text-overflow: ellipsis;
    overflow-x: hidden;
}

.action-group label span.type {
    float: right;
    text-align: right;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 62.5%;
    margin-top: .625em;
    margin-right: 1.5em;
    color: #636254;
    min-width: 15%;
}

.action-group label span.drop {
    font-weight: bold;
    float: right;
    text-align: right;
    color: #636254;
    min-width: 15%;
}

.action-group input:checked + label.action, .action-group input:checked + label.action:active {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%20415.582%20415.582%22%20style%3D%22enable-background%3Anew%200%200%20415.582%20415.582%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20d%3D%22M411.47%2C96.426l-46.319-46.32c-5.482-5.482-14.371-5.482-19.853%2C0L152.348%2C243.058l-82.066-82.064%20%20%20c-5.48-5.482-14.37-5.482-19.851%2C0l-46.319%2C46.32c-5.482%2C5.481-5.482%2C14.37%2C0%2C19.852l138.311%2C138.31%20%20%20c2.741%2C2.742%2C6.334%2C4.112%2C9.926%2C4.112c3.593%2C0%2C7.186-1.37%2C9.926-4.112L411.47%2C116.277c2.633-2.632%2C4.111-6.203%2C4.111-9.925%20%20%20C415.582%2C102.628%2C414.103%2C99.059%2C411.47%2C96.426z%22%20fill%3D%22%23FFFFFF%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E%0A);
    background-repeat: no-repeat;
    background-position: .5em center;
    background-color: #537f62;
    color: #fff;
    font-weight: bold;
}

.action-group input:checked + label span.drop, .action-group input:checked + label span.type {
    color: #fff;
}

.action-group input:checked + label.day-action,
.action-group input:checked + label.day-action:active {
    background-color: #537F62;
    border: 2px #537F62 solid;
    color: #fff;
    font-weight: bold;
}

.action-group input:checked[disabled] + label.day-action,
.action-group input:checked[disabled] + label.day-action:active {
    background-color: #332E2D;
    border: 2px #332E2D solid;
    color: #fff;
    font-weight: bold;
}

@media screen and (max-width: 39.9375em) {
    .action-group label.action {
        font-size: 75%;
        width: 100%;
        background-color: #f3f0eb;
        margin: .25em 0;
        padding: .25em 1em .25em 2em;
        border-radius: .25em;
    }

    .action-group label span.action-name {
        max-width: 80%;
        text-overflow: ellipsis;
        overflow-x: hidden;
    }

    .action-group label span.type {
        display: none;
    }

    .scenario-list a, .day-action, .product-list a, .pattern-list a, .payment-list a {
        font-size: 75%;
        padding: .25em;
    }

    .action-group .input-group {
        font-size: 75%;
    }
}

.scenario-list, .product-list, .pattern-list, .payment-list {
    list-style: none;
    margin-left: 0;
}

.product-list {
    text-align: center;
    margin-bottom: 0;
}

.payment-list {
    text-align: center;
    margin-bottom: 0;
}

.scenario-list li, .product-list li, .payment-list li {
    display: inline-block;
}

.pattern-list li {
    display: inline-block;
}

.scenario-list a, .product-list a, .payment-list a {
    border-bottom: 2px #636254 solid;
    display: inline-block;
    text-transform: initial;
    padding: .5em .75em;
    margin-right: .5em;
    margin-bottom: .25em;
    font-weight: bold;
    color: #636254;
    line-height: normal;
}

.pattern-list a {
    border-bottom: none;
    display: inline-block;
    text-transform: initial;
    padding: .25em .25em;
    margin: 0em;
    font-weight: bold;
    color: #636254;
    line-height: normal;
}

.scenario-list a.active, .scenario-list a:active, .product-list a.active, .product-list a:active, .payment-list a.active, .payment-list a:active {
    border-bottom: 2px #537F62 solid;
    background: #dbe7df;
    color: #537F62;
}

.pattern-list a.active, .pattern-list a:active {
    border-bottom: none;
    background: #dbe7df;
    color: #537F62;
    font-weight: bold;
}

.alert:before {
    content: " ";
    background-size: cover;
    position: relative;
    display: inline-block;
    top: 4px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20645.46%20645.46%22%20fill%3D%22%23b74a26%22%3E%3Cpath%20d%3D%22M631.477%20502.744L378.572%2088.973c-30.706-50.265-81.033-50.265-111.728%200L13.979%20502.784c-30.752%2050.367-9.031%2091.402%2048.142%2091.402v-0.034h521.186C640.536%20594.146%20662.229%20553.066%20631.477%20502.744zM354.848%20524.192h-63.962V460.15h63.956L354.848%20524.192%20354.848%20524.192zM357.312%20269.028l-16.355%20169.208h-36.232l0%200%20-16.679-169.117v-78.273h69.26L357.312%20269.028%20357.312%20269.028z%22/%3E%3C/svg%3E);
}

.alert:not(.active), .alert:not(:active) {
    color: #B74A26;
}

.alert.active, .alert:active {
    color: #332E2D !important;
    background-color: #e1e1dc !important;
}


.scenario-list a.add-scenario, .pattern-list a.add-pattern {
    border: none;
    font-size: 87.5%;
    color: #8e8d7a;
}

.notify.panel {
    background: #fde6c6;
    padding: .75em;
    margin: 1em 0;
}

label.notify {
    display: inline;
}

.notify > input[type="radio"], .notify > input[type="text"] {
    margin-bottom: 0;
}

label.day-action {
    display: inline-block;
    margin-left: 0;
    line-height: normal;
    border: 2px #636254 solid;
    text-transform: uppercase;
    padding: .5em .75em;
    margin-right: .5em;
    margin-bottom: .75em;
    min-width: 75px;
    text-align: center;
    font-weight: bold;
    border-radius: .25em;
    color: #636254;
}

button, .button {
    /*	text-transform: uppercase; */
    font-weight: bold;
}

.action-sum {
    text-transform: uppercase;
    color: #636254;
    font-size: 85%;
    text-align: right;
    float: right;
    padding-top: .5em;
}

.action-duplicate {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 85%;
    color: #9e9391;
    margin: .75em;
}

.action-create, .action-create:active {
    text-transform: normal;
    font-weight: bold;
    font-size: 85%;
    color: #537F62;
    background-color: #f3f0eb;
    padding: .5em;
    margin: .25em 0;
    border-radius: 10em;
    display: inline-block;
}

.action-delete {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 85%;
    color: #e69f87;
    margin: .75em;
}

.action-group textarea {
    font-size: 90%;
    line-height: 1.2;
    height: 5em;
}

.action-switch .switch-paddle {
    width: 6rem;
}

.action-switch input:checked ~ .switch-paddle::after {
    left: 4.25rem;
}

.action-switch .switch-inactive {
    right: 8%;
}

.action-label {
    font-size: 1rem;
    font-weight: bold;
}

.load-drop, .performance-trend {
    font-weight: bold;
    font-size: 112.5%;
    margin: 0 1em;
    text-align: right;
    padding: .25em;
    border-radius: .25em;
}

    .performance-trend, .performance-trend:disabled, .performance-label {
        background: #332E2D;
        color: #fff !important;
    }

.inline-text-input {
    display: inline;
    width: 30px;
    height: 1.2rem;
    font-size: .625rem;
    padding: .125rem;
}

.edit-mode {
    border: 2px solid #b4b3a7;
    border-radius: .25em;
    margin: .25em;
}

    .edit-mode input, .edit-mode select {
        border-left: none;
        border-bottom: none;
        border-top: none;
        max-width: none;
        background-color: none;
        box-shadow: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .edit-mode .edit-action {
        border-radius: .25em 0 0 .25em;
    }

    .edit-mode .input-group {
        margin-bottom: 0;
    }

    .edit-mode .input-group-label {
        background: none;
        border: none;
    }

    .edit-mode select {
        font-weight: bold;
        font-size: 80%;
    }

    .edit-mode .input-group input[type="number"] {
        text-align: right;
    }

.input-delete {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 85%;
    color: #b74a26;
    font: 0/0 serif;
    text-shadow: none;
    color: transparent;
}

    .input-delete::before {
        content: " ";
        background-size: cover;
        position: relative;
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%2095.939%2095.939%22%20style%3D%22enable-background%3Anew%200%200%2095.939%2095.939%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20d%3D%22M62.819%2C47.97l32.533-32.534c0.781-0.781%2C0.781-2.047%2C0-2.828L83.333%2C0.586C82.958%2C0.211%2C82.448%2C0%2C81.919%2C0%20%20%20c-0.53%2C0-1.039%2C0.211-1.414%2C0.586L47.97%2C33.121L15.435%2C0.586c-0.75-0.75-2.078-0.75-2.828%2C0L0.587%2C12.608%20%20%20c-0.781%2C0.781-0.781%2C2.047%2C0%2C2.828L33.121%2C47.97L0.587%2C80.504c-0.781%2C0.781-0.781%2C2.047%2C0%2C2.828l12.02%2C12.021%20%20%20c0.375%2C0.375%2C0.884%2C0.586%2C1.414%2C0.586c0.53%2C0%2C1.039-0.211%2C1.414-0.586L47.97%2C62.818l32.535%2C32.535%20%20%20c0.375%2C0.375%2C0.884%2C0.586%2C1.414%2C0.586c0.529%2C0%2C1.039-0.211%2C1.414-0.586l12.02-12.021c0.781-0.781%2C0.781-2.048%2C0-2.828L62.819%2C47.97%20%20%20z%22%20fill%3D%22%23b74a26%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E%0A);
    }

.estimated-label {
    background: #fff;
}

.performance-label, .estimated-label {
    font-weight: bold;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.locked {
    background-color: #e6e6e6;
    color: #332E2D;
    box-shadow: none;
}

.hour-column input, .hour-short, .hour-earnings, .hour-price {
    display: none;
}

input + label.hour-toggler {
    background-color: #fff;
    border: 2px #332E2D solid;
    background-repeat: no-repeat;
    background-position: .5em center;
}

input[disabled] + label.hour-toggler {
    background-color: #cccbc3;
}

input + label.hour-toggler.opportunity {
    background-color: #85b094;
}

input + label.hour-toggler.scheduled {
    background-color: #7ca0d4;
}

input:checked + label.hour-toggler {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%20415.582%20415.582%22%20style%3D%22enable-background%3Anew%200%200%20415.582%20415.582%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20d%3D%22M411.47%2C96.426l-46.319-46.32c-5.482-5.482-14.371-5.482-19.853%2C0L152.348%2C243.058l-82.066-82.064%20%20%20c-5.48-5.482-14.37-5.482-19.851%2C0l-46.319%2C46.32c-5.482%2C5.481-5.482%2C14.37%2C0%2C19.852l138.311%2C138.31%20%20%20c2.741%2C2.742%2C6.334%2C4.112%2C9.926%2C4.112c3.593%2C0%2C7.186-1.37%2C9.926-4.112L411.47%2C116.277c2.633-2.632%2C4.111-6.203%2C4.111-9.925%20%20%20C415.582%2C102.628%2C414.103%2C99.059%2C411.47%2C96.426z%22%20fill%3D%22%23332e2d%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E);
}


    input:checked + label.hour-toggler.pending {
        background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%20415.582%20415.582%22%20style%3D%22enable-background%3Anew%200%200%20415.582%20415.582%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20d%3D%22M411.47%2C96.426l-46.319-46.32c-5.482-5.482-14.371-5.482-19.853%2C0L152.348%2C243.058l-82.066-82.064%20%20%20c-5.48-5.482-14.37-5.482-19.851%2C0l-46.319%2C46.32c-5.482%2C5.481-5.482%2C14.37%2C0%2C19.852l138.311%2C138.31%20%20%20c2.741%2C2.742%2C6.334%2C4.112%2C9.926%2C4.112c3.593%2C0%2C7.186-1.37%2C9.926-4.112L411.47%2C116.277c2.633-2.632%2C4.111-6.203%2C4.111-9.925%20%20%20C415.582%2C102.628%2C414.103%2C99.059%2C411.47%2C96.426z%22%20fill%3D%22%23FFFFFF%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E);
    }

    input:checked + label.hour-toggler.noDispatch {
        background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%20402%20402%22%3E%3Cpath%20d%3D%22M394%20154.2c-5.3-5.3-11.8-8-19.4-8H27.4c-7.6%200-14.1%202.7-19.4%208C2.7%20159.5%200%20166%200%20173.6v54.8c0%207.6%202.7%2014.1%208%2019.4%205.3%205.3%2011.8%208%2019.4%208h347.2c7.6%200%2014.1-2.7%2019.4-8%205.3-5.3%208-11.8%208-19.4v-54.8C402%20166%20399.3%20159.5%20394%20154.2z%22%20fill%3D%22%23332e2d%22/%3E%3C/svg%3E);
    }


/*
input[disabled]:checked + label.hour-toggler {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%20415.582%20415.582%22%20style%3D%22enable-background%3Anew%200%200%20415.582%20415.582%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20d%3D%22M411.47%2C96.426l-46.319-46.32c-5.482-5.482-14.371-5.482-19.853%2C0L152.348%2C243.058l-82.066-82.064%20%20%20c-5.48-5.482-14.37-5.482-19.851%2C0l-46.319%2C46.32c-5.482%2C5.481-5.482%2C14.37%2C0%2C19.852l138.311%2C138.31%20%20%20c2.741%2C2.742%2C6.334%2C4.112%2C9.926%2C4.112c3.593%2C0%2C7.186-1.37%2C9.926-4.112L411.47%2C116.277c2.633-2.632%2C4.111-6.203%2C4.111-9.925%20%20%20C415.582%2C102.628%2C414.103%2C99.059%2C411.47%2C96.426z%22%20fill%3D%22%23ffffff%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E%0A);
}
*/
input[disabled] + label.hour-toggler {
    border: none;
}

label.hour-toggler {
    display: inline-block;
    margin-left: 0;
    margin-bottom: .5em;
    line-height: normal;
    border: 2px #636254 solid;
    text-transform: uppercase;
    padding: .25em;
    text-align: center;
    font-weight: bold;
    border-radius: .25em;
    width: 100%;
    background-color: #fff;
    color: #636254;
    min-height: 2em;
}

@media screen and (max-width: 39.9375em) {
    .hour-time {
        color: #332E2D;
    }

    .event label.hour-toggler {
        width: 47%;
        margin-left: 0;
        margin-right: 0;
    }

    input[disabled] + label.hour-toggler {
        border: 2px #fff solid;
    }

    .event label.hour-toggler .hour-time {
        margin-left: 1em;
    }

    label.act129-event {
        height: 9.5em;
        padding-top: 4em;
    }

    label.act129, label.act129-first, label.act129-event {
        width: 47%;
        float: right;
    }

        label.act129 .hour-time, label.act129-first .hour-time, label.act129-event .hour-time {
            display: none;
        }

        label.act129:before, label.act129-event:before, label.act129-first:before {
            content: "Act 129";
            color: #332E2D;
        }

    label.apsdayahead-event {
        height: 9.5em;
        padding-top: 4em;
    }

    label.apsdayahead, label.apsdayahead-first, label.apsdayahead-event {
        width: 47%;
        float: right;
    }

        label.apsdayahead .hour-time, label.apsdayahead-first .hour-time, label.apsdayahead-event .hour-time {
            display: none;
        }

        label.apsdayahead:before, label.apsdayahead-event:before, label.apsdayahead-first:before {
            content: "APS PS Day Ahead";
            color: #332E2D;
        }

    .event label:only-of-type {
        width: 100%;
    }

        .event label:only-of-type .hour-time {
            display: inline-block;
        }
}

@media print, screen and (min-width: 40em) {
    .hour-row {
        display: table;
        table-layout: fixed;
        width: 100%;
    }

    .hour-column {
        display: table-cell;
        padding: 2px;
    }

    .hour-time {
        display: none;
    }

    .hour-short {
        position: relative;
        display: none;
        font-weight: normal;
        font-size: 87.5%;
        text-transform: lowercase;
    }

    input:checked + label.hour-toggler,
    input:checked + label.hour-toggler:active {
        background-position: center;
    }

    label.hour-toggler {
        min-height: 2.25em;
    }

    label.act129-event {
        width: calc(400% + 16px);
        /*
		background-origin: content-box;
		background-position: 6.25% center !important; */
        vertical-align: middle;
    }

        label.act129-event:before, label.act129-first:before {
            content: "ACT 129 Event";
            color: #332E2D;
            margin-left: calc(-100% - 9em);
            text-align: right;
        }

    label.apsdayahead-event {
        width: calc(400% + 16px);
        vertical-align: middle;
    }

        label.apsdayahead-event:before, label.apsdayahead-first:before {
            content: "APS PS Day Ahead Event";
            color: #332E2D;
            margin-left: calc(-100% - 9em);
            text-align: right;
        }

}

ul.toggles {
    list-style: none;
    margin: 0;
}

    ul.toggles li {
        display: inline-block;
        font-size: 87.5%;
    }

    ul.toggles a {
        padding: .25em;
        margin: 0 .5em;
        color: #636254;
    }

        ul.toggles a.active,
        ul.toggles a:active {
            color: #fff;
            font-weight: bold;
            background: #4e938e;
            border-radius: .25em;
        }

.schedule-disclaimer {
    font-size: 75%;
    font-style: italic;
    color: #636254;
}

.current-estimate, .pjm-estimate, .act129-estimate {
    font-weight: normal;
    width: 100%;
}

.pjm-estimate, .act129-estimate {
    font-style: italic;
    font-size: 87.5%;
}

.earnings-estimate {
    color: #537f62;
    font-weight: bold;
    text-align: right;
    float: right;
    display: block;
    font-size: 150%;
    margin-top: -.25em;
}

.estimated-savings {
    /*color: #537f62;*/
    font-weight: bold;
    text-align: right;
    float: right;
    display: block;
    /*font-size: 150%;*/
    margin-top: -.25em;
}

.slo-details-container {
    display: block;
    text-align: center;
    padding: .25em;
}

.slo-details-container-table {
    /*   color: #537f62;
    font-weight: bold;
    text-align: right;
    float: right;
    display: block;
    font-size: 150%;
    margin-top: -.25em;*/
}

.slo-details-container-title {
    text-align: center;
}

.slo-details-container-hourend {
    text-align: right;
}

.slo-details-container-programs {
    text-align: center;
}

.slo-details-container-values {
    text-align: center;
    font-size: 95%;
}

.value-indicator-low {
    color: #537f62;
    font-weight: bold;
    text-align: right;
    float: right;
    display: block;
    font-size: 150%;
    margin-top: -.25em;
}

.value-indicator-medium {
    color: #ffdc1c;
    font-weight: bold;
    text-align: right;
    float: right;
    display: block;
    font-size: 150%;
    margin-top: -.25em;
}

.value-indicator-high {
    color: #d00e0e;
    font-weight: bold;
    text-align: right;
    float: right;
    display: block;
    font-size: 150%;
    margin-top: -.25em;
}

.value-indicator-emergency {
    color: #800080;
    font-weight: bold;
    text-align: right;
    float: right;
    display: block;
    font-size: 150%;
    margin-top: -.25em;
}

.act129-estimate {
    border-bottom: 2px solid #332E2D;
    padding-bottom: .5em;
}

.schedule-confirmation, .event-performance-detail {
    margin-top: 1em;
}

.scheduled-estimate {
    font-weight: normal;
    font-style: italic;
    display: none;
}

.scenario-value {
    color: #537f62;
    margin-left: .5em;
}

.temporary-date-picker {
    display: inline-block;
}

.schedule-date-picker {
    display: inline-block;
    /*	background: scale-color($grey-light, $lightness: 85%);  */
    font-size: 1.125em;
    font-weight: bold;
    padding: .25em 1.5em .25em .5em;
    border: 1px solid #cccbc3;
    border-bottom: 2px solid #332E2D;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2851, 51, 51%29'></polygon></svg>");
    background-size: 9px 6px;
    background-position: right .5em center;
    background-repeat: no-repeat;
    margin: 0 0 1rem;
}

    .schedule-date-picker:before {
        content: " ";
        background-size: cover;
        position: relative;
        display: inline-block;
        top: 2px;
        width: 16px;
        height: 16px;
        margin-right: 8px;
        background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22512px%22%20height%3D%22512px%22%20viewBox%3D%220%200%20485.213%20485.212%22%20style%3D%22enable-background%3Anew%200%200%20485.213%20485.212%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20d%3D%22M60.652%2C75.816V15.163C60.652%2C6.781%2C67.433%2C0%2C75.817%2C0c8.38%2C0%2C15.161%2C6.781%2C15.161%2C15.163v60.653%20%20%20c0%2C8.38-6.781%2C15.161-15.161%2C15.161C67.433%2C90.978%2C60.652%2C84.196%2C60.652%2C75.816z%20M318.424%2C90.978%20%20%20c8.378%2C0%2C15.163-6.781%2C15.163-15.161V15.163C333.587%2C6.781%2C326.802%2C0%2C318.424%2C0c-8.382%2C0-15.168%2C6.781-15.168%2C15.163v60.653%20%20%20C303.256%2C84.196%2C310.042%2C90.978%2C318.424%2C90.978z%20M485.212%2C363.906c0%2C66.996-54.312%2C121.307-121.303%2C121.307%20%20%20c-66.986%2C0-121.302-54.311-121.302-121.307c0-66.986%2C54.315-121.3%2C121.302-121.3C430.9%2C242.606%2C485.212%2C296.919%2C485.212%2C363.906z%20%20%20%20M454.89%2C363.906c0-50.161-40.81-90.976-90.98-90.976c-50.166%2C0-90.976%2C40.814-90.976%2C90.976c0%2C50.171%2C40.81%2C90.98%2C90.976%2C90.98%20%20%20C414.08%2C454.886%2C454.89%2C414.077%2C454.89%2C363.906z%20M121.305%2C181.955H60.652v60.651h60.653V181.955z%20M60.652%2C333.584h60.653V272.93%20%20%20H60.652V333.584z%20M151.629%2C242.606h60.654v-60.651h-60.654V242.606z%20M151.629%2C333.584h60.654V272.93h-60.654V333.584z%20%20%20%20M30.328%2C360.891V151.628h333.582v60.653h30.327V94c0-18.421-14.692-33.349-32.843-33.349h-12.647v15.166%20%20%20c0%2C16.701-13.596%2C30.325-30.322%2C30.325c-16.731%2C0-30.326-13.624-30.326-30.325V60.651H106.14v15.166%20%20%20c0%2C16.701-13.593%2C30.325-30.322%2C30.325c-16.733%2C0-30.327-13.624-30.327-30.325V60.651H32.859C14.707%2C60.651%2C0.001%2C75.579%2C0.001%2C94%20%20%20v266.892c0%2C18.36%2C14.706%2C33.346%2C32.858%2C33.346h179.424v-30.331H32.859C31.485%2C363.906%2C30.328%2C362.487%2C30.328%2C360.891z%20%20%20%20M303.256%2C242.606v-60.651h-60.648v60.651H303.256z%20M409.399%2C363.906h-45.49v-45.49c0-8.377-6.781-15.158-15.163-15.158%20%20%20s-15.159%2C6.781-15.159%2C15.158v60.658c0%2C8.378%2C6.777%2C15.163%2C15.159%2C15.163h60.653c8.382%2C0%2C15.163-6.785%2C15.163-15.163%20%20%20C424.562%2C370.692%2C417.781%2C363.906%2C409.399%2C363.906z%22%20fill%3D%22%23332e2d%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E%0A);
    }

.slo-date-picker {
    display: inline-block;
    /*	background: scale-color($grey-light, $lightness: 85%);  */
    font-size: 1.125em;
    font-weight: bold;
    padding: .25em 1.5em .25em .5em;
    border: 1px solid #cccbc3;
    border-bottom: 2px solid #332E2D;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2851, 51, 51%29'></polygon></svg>");
    background-size: 9px 6px;
    background-position: right .5em center;
    background-repeat: no-repeat;
    margin: 0 0 1rem;
}

    .slo-date-picker:before {
        content: " ";
        background-size: cover;
        position: relative;
        display: inline-block;
        top: 2px;
        width: 16px;
        height: 16px;
        margin-right: 8px;
        background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22512px%22%20height%3D%22512px%22%20viewBox%3D%220%200%20485.213%20485.212%22%20style%3D%22enable-background%3Anew%200%200%20485.213%20485.212%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20d%3D%22M60.652%2C75.816V15.163C60.652%2C6.781%2C67.433%2C0%2C75.817%2C0c8.38%2C0%2C15.161%2C6.781%2C15.161%2C15.163v60.653%20%20%20c0%2C8.38-6.781%2C15.161-15.161%2C15.161C67.433%2C90.978%2C60.652%2C84.196%2C60.652%2C75.816z%20M318.424%2C90.978%20%20%20c8.378%2C0%2C15.163-6.781%2C15.163-15.161V15.163C333.587%2C6.781%2C326.802%2C0%2C318.424%2C0c-8.382%2C0-15.168%2C6.781-15.168%2C15.163v60.653%20%20%20C303.256%2C84.196%2C310.042%2C90.978%2C318.424%2C90.978z%20M485.212%2C363.906c0%2C66.996-54.312%2C121.307-121.303%2C121.307%20%20%20c-66.986%2C0-121.302-54.311-121.302-121.307c0-66.986%2C54.315-121.3%2C121.302-121.3C430.9%2C242.606%2C485.212%2C296.919%2C485.212%2C363.906z%20%20%20%20M454.89%2C363.906c0-50.161-40.81-90.976-90.98-90.976c-50.166%2C0-90.976%2C40.814-90.976%2C90.976c0%2C50.171%2C40.81%2C90.98%2C90.976%2C90.98%20%20%20C414.08%2C454.886%2C454.89%2C414.077%2C454.89%2C363.906z%20M121.305%2C181.955H60.652v60.651h60.653V181.955z%20M60.652%2C333.584h60.653V272.93%20%20%20H60.652V333.584z%20M151.629%2C242.606h60.654v-60.651h-60.654V242.606z%20M151.629%2C333.584h60.654V272.93h-60.654V333.584z%20%20%20%20M30.328%2C360.891V151.628h333.582v60.653h30.327V94c0-18.421-14.692-33.349-32.843-33.349h-12.647v15.166%20%20%20c0%2C16.701-13.596%2C30.325-30.322%2C30.325c-16.731%2C0-30.326-13.624-30.326-30.325V60.651H106.14v15.166%20%20%20c0%2C16.701-13.593%2C30.325-30.322%2C30.325c-16.733%2C0-30.327-13.624-30.327-30.325V60.651H32.859C14.707%2C60.651%2C0.001%2C75.579%2C0.001%2C94%20%20%20v266.892c0%2C18.36%2C14.706%2C33.346%2C32.858%2C33.346h179.424v-30.331H32.859C31.485%2C363.906%2C30.328%2C362.487%2C30.328%2C360.891z%20%20%20%20M303.256%2C242.606v-60.651h-60.648v60.651H303.256z%20M409.399%2C363.906h-45.49v-45.49c0-8.377-6.781-15.158-15.163-15.158%20%20%20s-15.159%2C6.781-15.159%2C15.158v60.658c0%2C8.378%2C6.777%2C15.163%2C15.159%2C15.163h60.653c8.382%2C0%2C15.163-6.785%2C15.163-15.163%20%20%20C424.562%2C370.692%2C417.781%2C363.906%2C409.399%2C363.906z%22%20fill%3D%22%23332e2d%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E%0A);
    }

.scenario-picker {
    display: inline-block;
    background: #e4ede7;
    font-size: 1.125em;
    font-weight: bold;
    padding: .25em 1.5em .25em .5em;
    border: 1px solid #c1d7c9;
    border-bottom: 2px solid #537F62;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="24" height="32" viewBox="0 0 24 32"><polygon points="0,0 0,32 24,12" style="fill: rgb%2851, 51, 51%29"></polygon></svg>');
    background-size: 6px 9px;
    background-position: right .5em center;
    background-repeat: no-repeat;
    margin: 0 0 1rem;
}

.scenario-picker.disabled {
    background-image: none;
}


    .scenario-picker:before {
        content: " ";
        background-size: cover;
        position: relative;
        display: inline-block;
        top: 2px;
        width: 16px;
        height: 16px;
        margin-right: 8px;
        background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%22512px%22%20height%3D%22512px%22%20viewBox%3D%220%200%2047.628%2047.628%22%20style%3D%22enable-background%3Anew%200%200%2047.628%2047.628%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20d%3D%22M36.5%2C5.887c0%2C1.771-1.438%2C3.211-3.211%2C3.211H14.341c-1.773%2C0-3.211-1.438-3.211-3.211c0-1.773%2C1.438-3.211%2C3.211-3.211%20%20%20h2.862C17.459%2C1.159%2C18.77%2C0%2C20.359%2C0h6.909c1.59%2C0%2C2.901%2C1.159%2C3.157%2C2.676h2.861C35.061%2C2.675%2C36.5%2C4.114%2C36.5%2C5.887z%20%20%20%20M42.544%2C10.704v32.108c0%2C2.66-2.155%2C4.815-4.815%2C4.815H9.9c-2.66%2C0-4.816-2.155-4.816-4.815V10.704%20%20%20c0-2.351%2C1.687-4.302%2C3.915-4.725c0.05%2C2.912%2C2.418%2C5.26%2C5.342%2C5.26h18.948c2.924%2C0%2C5.291-2.348%2C5.342-5.26%20%20%20C40.857%2C6.401%2C42.544%2C8.353%2C42.544%2C10.704z%20M37.49%2C18.764c-1.254-1.254-3.287-1.255-4.541-0.001L21.092%2C30.619l-6.412-6.408%20%20%20c-1.253-1.254-3.286-1.253-4.541%2C0.002c-1.253%2C1.254-1.252%2C3.287%2C0.002%2C4.541l8.682%2C8.678c0.627%2C0.625%2C1.447%2C0.939%2C2.27%2C0.939%20%20%20c0.821%2C0%2C1.644-0.314%2C2.27-0.941l14.129-14.125C38.744%2C22.049%2C38.744%2C20.017%2C37.49%2C18.764z%22%20fill%3D%22%23332E2D%22/%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E%0A);
    }

.pattern-editor {
    display: inline-block;
}

.exclusionDays-editor {
    display: inline-block;
}

.pattern-header {
    margin-bottom: 10px;
}

.pattern-name-label {
    float: left;
    margin-left: 25px;
}

.pattern-name {
    float: right;
    width: 200px;
}

.pattern-row {
    padding: 0px;
    height: 24px;
    position: relative;
    font-size: 80%;
}

.pattern-row-left {
    padding-top: 0px;
    padding-right: 5px;
    position: relative;
    width: 65px;
    text-align: right;
    font-size: 75%;
}

.pattern-row-hr {
    height: 19px;
    width: 92px;
    position: absolute;
    left: 62px;
    bottom: 18px;
}

.pattern-row-mid {
    height: 18px;
    width: 70px;
    position: absolute;
    bottom: -3px;
    left: 68px;
    z-index: 999999 !important;
}

.pattern-row-right {
    height: 18px;
    width: 30px;
    position: absolute;
    bottom: -6px;
    left: 135px;
}

;

.pattern-hour-label {
    position: relative;
    width: 70px;
    text-align: right;
}

.pattern-mw {
    text-align: right;
    width: 65px;
    padding: 0px;
}

.pattern-unit {
    text-align: left;
    width: 25px;
    font-size: 80%;
}

.pattern-button {
    font-size: 80%;
    width: 175px;
    font-weight: normal;
}

.pattern-linkbutton {
    font-weight: normal;
    cursor: pointer;
}

.pattern-linkbutton-active {
    font-weight: bold;
    cursor: pointer;
}

.pattern-rwrequired:disabled {
    cursor: not-allowed;
}

.pattern-button-small {
    font-size: 80%;
    width: 95px;
    padding: 0.5em;
    margin: 0em;
}

.pattern-select-label {
    display: block;
    font-size: 80%;
    float: left;
    width: 30%;
}

.pattern-select {
    display: inline-block;
    min-width: 160px;
    font-size: 80%;
    height: 2em;
    float: left;
    width: 65%;
    margin: 0 0 8px;
}

.validation-tip-kw, .validation-tip-name, .validation-error {
    color: #E76C24;
}

.validation-tip-expired {
    color: #537f62;
}

.scenario-kw {
    font-weight: normal;
}

.scenario-potential {
    font-weight: normal;
    font-style: italic;
    color: #537F62;
    margin-left: .5em;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    border: 1px solid #cccbc3;
    border-bottom: 2px solid #332E2D;
    border-radius: 0;
    padding: .25em 1.5em .25em .5em;
    font-size: 1.25em;
    background-color: #fff;
    background-position: right .5em center;
    background-origin: padding-box;
}

.temporary-chart-div {
    background: #eae9e6;
    width: 100%;
    padding: 2em;
    text-align: center;
    height: 300px;
    margin: 1em 0;
}

.tray-content .scenario {
    text-transform: none;
    text-align: left;
    font-weight: normal;
    display: block;
    width: 100%;
    background: #e1dbce;
    border-radius: .25em;
    padding: .5em;
    overflow: hidden;
    margin-bottom: .5em;
}

    .tray-content .scenario.selected {
        background: #537f62;
    }

    .tray-content .scenario .scenario-earnings {
        font-size: 125%;
        float: right;
        text-align: right;
        color: #537f62;
        font-weight: bold;
        max-width: 35%;
        margin-top: .5em;
    }

    .tray-content .scenario.selected .scenario-earnings {
        color: #fff;
    }

    .tray-content .scenario .scenario-meta {
        float: left;
        max-width: 65%;
    }

    .tray-content .scenario .scenario-days,
    .tray-content .scenario .scenario-min,
    .tray-content .scenario .scenario-max {
        font-size: 75%;
        color: #636254;
    }

    .tray-content .scenario.selected .scenario-days,
    .tray-content .scenario.selected .scenario-min,
    .tray-content .scenario.selected .scenario-max {
        color: #cacaca;
    }

    .tray-content .scenario .scenario-name {
        font-size: 100%;
        font-weight: bold;
        color: #332e2d;
        display: block;
        margin-bottom: .25em;
    }

.row.chart-toggles {
    margin-bottom: .75em;
}

#economicDetailContainer tbody th, #act129DetailContainer tbody th, #apsDayAheadDetailContainer tbody th,
tbody td {
    padding: .5rem .2rem .3rem;
    border: 1px solid #ddd;
}

#sloDetailsContainer tbody th, #sloDetailsContainer tbody td {
    padding: .5rem .2rem .3rem;
    border: 1px solid #ddd;
    width: 4%;
}

#economicDetailContainer .bold, #act129DetailContainer .bold, #apsDayAheadDetailContainer .bold, ##sloDetailsContainer .bold,
#chartDetailsTable .bold {
    font-weight: bolder;
}

#chartDetailsTable table,
#chartDetailsTable label {
    font-size: 100%;
}

.legend, .legend-static {
    margin-top: 1em;
}

.legend-static {
    list-style: none;
    text-align: center;
}

.legend-item {
    display: inline-block;
}

.legend-button input {
    display: none;
}

    .legend-button input + label {
        width: 100%;
        border-radius: .25em;
        margin: .25em 0;
        padding: .25em .5em .25em 2.5em;
        font-size: 75%;
        font-weight: bold;
        background-color: #fff;
        background-position: .25em center;
        background-size: 20px;
        background-repeat: no-repeat;
        border: 2px solid #636254;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

.legend-item {
    margin: .25em .5em;
    padding: .25em .5em .25em 2.5em;
    font-size: 75%;
    font-weight: bold;
    background-color: #fff;
    background-position: .25em center;
    background-size: 20px;
    background-repeat: no-repeat;
}

.legend-button input + label:before {
    content: "ON";
    display: block;
    float: right;
    font-size: 50%;
    margin-top: .375em;
    color: #636254;
    font-style: normal;
}

.legend-button input:not(:checked) + label {
    font-style: italic;
    font-weight: bold;
    background-color: #ddd;
    color: #636254;
}

    .legend-button input:not(:checked) + label:before {
        content: "OFF";
    }

.legend-button input[disabled] + label {
    background-color: #fff;
    border-color: #fff;
}

    .legend-button input[disabled] + label:before {
        content: none;
    }

.legend-button input[disabled]:not(:checked) + label {
    display: none;
}

.legend-button input#baseline-act129-actual + label, li#baseline-act129-actual {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22170px%22%20height%3D%22166px%22%20viewBox%3D%220%200%20170%20166%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Ctitle%3EPath%202%20Copy%203%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5%2C163%20C5%2C163%2063.5034325%2C64.5720572%2065%2C63%20C66.4965675%2C61.4279428%20105%2C103%20105%2C103%20L165%2C3%22%20id%3D%22Path-2-Copy-3%22%20stroke%3D%22%23636254%22%20stroke-width%3D%2210%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#baseline-apsdayahead-actual + label, li#baseline-apsdayahead-actual {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22170px%22%20height%3D%22166px%22%20viewBox%3D%220%200%20170%20166%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Ctitle%3EPath%202%20Copy%203%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5%2C163%20C5%2C163%2063.5034325%2C64.5720572%2065%2C63%20C66.4965675%2C61.4279428%20105%2C103%20105%2C103%20L165%2C3%22%20id%3D%22Path-2-Copy-3%22%20stroke%3D%22%23636254%22%20stroke-width%3D%2210%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#baseline-actual + label, li#baseline-actual {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22180px%22%20height%3D%22172px%22%20viewBox%3D%220%200%20180%20172%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M10%2C166%20C10%2C166%2068.5034325%2C67.5720572%2070%2C66%20C71.4965675%2C64.4279428%20110%2C106%20110%2C106%20L170%2C6%22%20id%3D%22Path-2%22%20stroke%3D%22%23332E2D%22%20stroke-width%3D%2223%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#baseline-preliminary + label, li#baseline-preliminary {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22174px%22%20height%3D%22170px%22%20viewBox%3D%220%200%20174%20170%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M7%2C165%20C7%2C165%2065.5034325%2C66.5720572%2067%2C65%20C68.4965675%2C63.4279428%20107%2C105%20107%2C105%20L167%2C5%22%20id%3D%22Path-2-Copy%22%20stroke%3D%22%23636254%22%20stroke-width%3D%2216%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#usage-hourly + label, li#usage-hourly {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22180px%22%20height%3D%22172px%22%20viewBox%3D%220%200%20180%20172%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Ctitle%3EPath%202%20Copy%202%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M10%2C166%20C10%2C166%2068.5034325%2C67.5720572%2070%2C66%20C71.4965675%2C64.4279428%20110%2C106%20110%2C106%20L170%2C6%22%20id%3D%22Path-2-Copy-2%22%20stroke%3D%22%233B70BB%22%20stroke-width%3D%2223%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#load-forecast + label, li#load-forecast {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22180px%22%20height%3D%22172px%22%20viewBox%3D%220%200%20180%20172%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M10%2C166%20C10%2C166%2068.5034325%2C67.5720572%2070%2C66%20C71.4965675%2C64.4279428%20110%2C106%20110%2C106%20L170%2C6%22%20id%3D%22Path-2%22%20stroke%3D%22%23332E2D%22%20stroke-width%3D%2223%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}
.legend-button input#load-act-forecast + label, li#load-act-forecast {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22180px%22%20height%3D%22172px%22%20viewBox%3D%220%200%20180%20172%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M10%2C166%20C10%2C166%2068.5034325%2C67.5720572%2070%2C66%20C71.4965675%2C64.4279428%20110%2C106%20110%2C106%20L170%2C6%22%20id%3D%22Path-2%22%20stroke%3D%22%23332E2D%22%20stroke-width%3D%2223%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}
.legend-button input#load-actual + label, li#load-actual {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22180px%22%20height%3D%22172px%22%20viewBox%3D%220%200%20180%20172%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M10%2C166%20C10%2C166%2068.5034325%2C67.5720572%2070%2C66%20C71.4965675%2C64.4279428%20110%2C106%20110%2C106%20L170%2C6%22%20id%3D%22Path-2%22%20stroke%3D%22%23332E2D%22%20stroke-width%3D%2223%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}


.legend-button input#assets + label, li#assets {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22160px%22%20height%3D%22160px%22%20viewBox%3D%220%200%20160%20160%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2041.2%20%2835397%29%20-%20http%3A//www.bohemiancoding.com/sketch%20--%3E%0A%20%20%20%20%3Ctitle%3EGroup%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-1%22%20x%3D%220%22%20y%3D%22100%22%20width%3D%2240%22%20height%3D%2260%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-2%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%2260%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%2260%22%20y%3D%2250%22%20width%3D%2240%22%20height%3D%22110%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-4%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22110%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-3%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-5%22%20x%3D%22120%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22160%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-6%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22160%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-5%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group%22%20stroke%3D%22%23000000%22%20stroke-width%3D%2216%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle%22%20mask%3D%22url%28%23mask-2%29%22%20fill%3D%22%23AFAEA3%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy%22%20mask%3D%22url%28%23mask-4%29%22%20fill%3D%22%23F99C28%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy-2%22%20mask%3D%22url%28%23mask-6%29%22%20fill%3D%22%23B84A27%22%20xlink%3Ahref%3D%22%23path-5%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#usage-sub-hourly + label, li#usage-sub-hourly {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22174px%22%20height%3D%22170px%22%20viewBox%3D%220%200%20174%20170%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Ctitle%3EPath%202%20Copy%207%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M7%2C165%20C7%2C165%2065.5034325%2C66.5720572%2067%2C65%20C68.4965675%2C63.4279428%20107%2C105%20107%2C105%20L167%2C5%22%20id%3D%22Path-2-Copy-7%22%20stroke%3D%22%23859AB6%22%20stroke-width%3D%2216%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#scenario-load-drop + label, li#scenario-load-drop, li#ada-drop {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22180px%22%20height%3D%22172px%22%20viewBox%3D%220%200%20180%20172%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M10%2C166%20C10%2C166%2068.5034325%2C67.5720572%2070%2C66%20C71.4965675%2C64.4279428%20110%2C106%20110%2C106%20L170%2C6%22%20id%3D%22Path-2-Copy-4%22%20stroke%3D%22%23358f54%22%20stroke-width%3D%2223%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#curtailment-fill + label, li#curtailment-fill {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22175px%22%20height%3D%22161px%22%20viewBox%3D%220%200%20175%20161%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpolygon%20id%3D%22Path-2-Copy-5%22%20stroke%3D%22%23b1c6b8%22%20stroke-width%3D%2210%22%20fill%3D%22%23b1c6b8%22%20points%3D%2269%2055%20109%2095%20169%2015%20168.765625%20153.257813%209%20155%22%3E%3C/polygon%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#rt-prices + label, li#rt-prices {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22160px%22%20height%3D%22160px%22%20viewBox%3D%220%200%20160%20160%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2041.2%20%2835397%29%20-%20http%3A//www.bohemiancoding.com/sketch%20--%3E%0A%20%20%20%20%3Ctitle%3EGroup%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-1%22%20x%3D%220%22%20y%3D%22100%22%20width%3D%2240%22%20height%3D%2260%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-2%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%2260%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%2260%22%20y%3D%2250%22%20width%3D%2240%22%20height%3D%22110%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-4%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22110%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-3%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-5%22%20x%3D%22120%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22160%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-6%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22160%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-5%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group%22%20stroke%3D%22%23000000%22%20stroke-width%3D%2216%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle%22%20mask%3D%22url%28%23mask-2%29%22%20fill%3D%22%23AFAEA3%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy%22%20mask%3D%22url%28%23mask-4%29%22%20fill%3D%22%23F99C28%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy-2%22%20mask%3D%22url%28%23mask-6%29%22%20fill%3D%22%23B84A27%22%20xlink%3Ahref%3D%22%23path-5%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#da-prices + label, li#da-prices  {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22160px%22%20height%3D%22160px%22%20viewBox%3D%220%200%20160%20160%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2041.2%20%2835397%29%20-%20http%3A//www.bohemiancoding.com/sketch%20--%3E%0A%20%20%20%20%3Ctitle%3EGroup%202%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-1%22%20x%3D%220%22%20y%3D%22100%22%20width%3D%2240%22%20height%3D%2260%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-2%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%2260%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%2260%22%20y%3D%2250%22%20width%3D%2240%22%20height%3D%22110%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-4%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22110%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-3%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-5%22%20x%3D%22120%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22160%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-6%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22160%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-5%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20stroke%3D%22%23636254%22%20stroke-width%3D%2216%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy-3%22%20mask%3D%22url%28%23mask-2%29%22%20fill%3D%22%23AFAEA3%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy-4%22%20mask%3D%22url%28%23mask-4%29%22%20fill%3D%22%23F99C28%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy-5%22%20mask%3D%22url%28%23mask-6%29%22%20fill%3D%22%23B84A27%22%20xlink%3Ahref%3D%22%23path-5%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input#CalculationData + label, li#CalculationData {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20508.52%20508.52%22%20style%3D%22enable-background%3Anew%200%200%20508.52%20508.52%3B%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22512px%22%20height%3D%22512px%22%3E%0A%3Cg%3E%0A%09%3Cg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20d%3D%22M507.948%2C46.021c-1.367-16.368-14.588-30.13-31.21-30.13H31.782%20%20%20%20%20c-16.622%2C0-29.844%2C13.762-31.242%2C30.13H0v414.825c0%2C17.544%2C14.239%2C31.782%2C31.782%2C31.782h444.955%20%20%20%20%20c17.544%2C0%2C31.782-14.239%2C31.782-31.782V46.021H507.948z%20M158.912%2C460.846H31.782v-95.347h127.13V460.846z%20M158.912%2C336.354%20%20%20%20%20H31.782v-97.985h127.13V336.354z%20M158.912%2C206.586H31.782v-95.347h127.13V206.586z%20M317.825%2C460.846h-127.13v-95.347h127.13%20%20%20%20%20V460.846z%20M317.825%2C336.354h-127.13v-97.985h127.13V336.354z%20M317.825%2C206.586h-127.13v-95.347h127.13V206.586z%20M476.737%2C460.846%20%20%20%20%20h-127.13v-95.347h127.13V460.846z%20M476.737%2C336.354h-127.13v-97.985h127.13V336.354z%20M476.737%2C206.586h-127.13v-95.347h127.13%20%20%20%20%20V206.586z%22%20fill%3D%22%23332e2d%22/%3E%0A%09%09%3C/g%3E%0A%09%3C/g%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E%0A);
}

.legend-button input:not(:checked)#baseline-preliminary + label, .legend-button input:not(:checked)#baseline-act129-actual + label, .legend-button input:not(:checked)#baseline-actual + label, .legend-button input:not(:checked)#usage-hourly + label, .legend-button input:not(:checked)#usage-sub-hourly + label, .legend-button input:not(:checked)#scenario-load-drop + label {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22170px%22%20height%3D%22166px%22%20viewBox%3D%220%200%20170%20166%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Ctitle%3EPath%202%20Copy%203%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5%2C163%20C5%2C163%2063.5034325%2C64.5720572%2065%2C63%20C66.4965675%2C61.4279428%20105%2C103%20105%2C103%20L165%2C3%22%20id%3D%22Path-2-Copy-3%22%20stroke%3D%22%23636254%22%20stroke-width%3D%2210%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input:not(:checked)#baseline-preliminary + label, .legend-button input:not(:checked)#baseline-apsdayahead-actual + label, .legend-button input:not(:checked)#baseline-actual + label, .legend-button input:not(:checked)#usage-hourly + label, .legend-button input:not(:checked)#usage-sub-hourly + label, .legend-button input:not(:checked)#scenario-load-drop + label {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22170px%22%20height%3D%22166px%22%20viewBox%3D%220%200%20170%20166%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Ctitle%3EPath%202%20Copy%203%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M5%2C163%20C5%2C163%2063.5034325%2C64.5720572%2065%2C63%20C66.4965675%2C61.4279428%20105%2C103%20105%2C103%20L165%2C3%22%20id%3D%22Path-2-Copy-3%22%20stroke%3D%22%23636254%22%20stroke-width%3D%2210%22%3E%3C/path%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input:not(:checked)#curtailment-fill + label {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22175px%22%20height%3D%22161px%22%20viewBox%3D%220%200%20175%20161%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%20%20%20%20%3Ctitle%3EPath%202%20Copy%205%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cpolygon%20id%3D%22Path-2-Copy-5%22%20stroke%3D%22%23636254%22%20stroke-width%3D%2210%22%20fill%3D%22%23636254%22%20points%3D%2269%2055%20109%2095%20169%2015%20168.765625%20153.257813%209%20155%22%3E%3C/polygon%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input:not(:checked)#rt-prices + label, .legend-button input:not(:checked)#da-prices + label {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22160px%22%20height%3D%22160px%22%20viewBox%3D%220%200%20160%20160%22%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%3E%0A%0A%20%20%20%20%3Ctitle%3EGroup%202%3C/title%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C/desc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-1%22%20x%3D%220%22%20y%3D%22100%22%20width%3D%2240%22%20height%3D%2260%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-2%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%2260%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%2260%22%20y%3D%2250%22%20width%3D%2240%22%20height%3D%22110%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-4%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22110%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-3%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-5%22%20x%3D%22120%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22160%22%3E%3C/rect%3E%0A%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-6%22%20maskContentUnits%3D%22userSpaceOnUse%22%20maskUnits%3D%22objectBoundingBox%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2240%22%20height%3D%22160%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-5%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/mask%3E%0A%20%20%20%20%3C/defs%3E%0A%20%20%20%20%3Cg%20id%3D%22Page-1%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20stroke%3D%22%23636254%22%20stroke-width%3D%2216%22%20fill%3D%22%23636254%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy-3%22%20mask%3D%22url%28%23mask-2%29%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy-4%22%20mask%3D%22url%28%23mask-4%29%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Rectangle-Copy-5%22%20mask%3D%22url%28%23mask-6%29%22%20xlink%3Ahref%3D%22%23path-5%22%3E%3C/use%3E%0A%20%20%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/g%3E%0A%3C/svg%3E);
}

.legend-button input:not(:checked)#CalculationData + label {
    background-image: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20version%3D%221.1%22%20id%3D%22Capa_1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20508.52%20508.52%22%20style%3D%22enable-background%3Anew%200%200%20508.52%20508.52%3B%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22512px%22%20height%3D%22512px%22%3E%0A%3Cg%3E%0A%09%3Cg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20d%3D%22M507.948%2C46.021c-1.367-16.368-14.588-30.13-31.21-30.13H31.782%20%20%20%20%20c-16.622%2C0-29.844%2C13.762-31.242%2C30.13H0v414.825c0%2C17.544%2C14.239%2C31.782%2C31.782%2C31.782h444.955%20%20%20%20%20c17.544%2C0%2C31.782-14.239%2C31.782-31.782V46.021H507.948z%20M158.912%2C460.846H31.782v-95.347h127.13V460.846z%20M158.912%2C336.354%20%20%20%20%20H31.782v-97.985h127.13V336.354z%20M158.912%2C206.586H31.782v-95.347h127.13V206.586z%20M317.825%2C460.846h-127.13v-95.347h127.13%20%20%20%20%20V460.846z%20M317.825%2C336.354h-127.13v-97.985h127.13V336.354z%20M317.825%2C206.586h-127.13v-95.347h127.13V206.586z%20M476.737%2C460.846%20%20%20%20%20h-127.13v-95.347h127.13V460.846z%20M476.737%2C336.354h-127.13v-97.985h127.13V336.354z%20M476.737%2C206.586h-127.13v-95.347h127.13%20%20%20%20%20V206.586z%22%20fill%3D%22%23636254%22/%3E%0A%09%09%3C/g%3E%0A%09%3C/g%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3Cg%3E%0A%3C/g%3E%0A%3C/svg%3E%0A);
}


.chartLoadingInfo {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding-top: 20px;
}

.customDatePickerRefreshButton {
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
}

.ui-datepicker {
    border: 3px solid #888;
}

.schedulingOverlay {
    position: relative;
    top: -35px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.MenuLink.PriceType {
    text-align: right;
}

/*performance reporting*/
.reports tbody th, .reports tbody td {
    border: none;
}

.reports table {
    border-collapse: initial;
}

    .reports table thead, .reports table tbody, .reports table tfoot {
        background-color: transparent;
        border: none;
    }

.report-criteria .selection-group, .widget-view .selection-group {
    display: inline-block;
    min-width: 200px;
}

.report-criteria .radio-group, .widget-view .selection-group {
    margin-left: 1em;
    vertical-align: middle;
    min-width: 150px;
}

.date-range-group, .date-range-group .date-range-group-inner {
    display: inline-block;
}

.reports tbody th, .reports tbody td {
    padding: 0;
    border-color: #C2B49A !important;
    word-wrap: normal !important;
}

input:disabled.button {
    background-color: #4E938E;
}

.download-link {
    color: #4E938E;
    text-decoration: none;
    line-height: inherit;
    cursor: pointer;
}

/*.ui-floatingtoolbar-bottom-container {
    bottom: -38px !important;
}

.ui-floatingtoolbar-page-controls {
    top: -35px !important;
}

.report-view {
    margin-top: 35px;
    margin-bottom: 38px;
}*/

.report-view .ui-widget-shadow, .report-view .ui-widget-overlay, .report-view .ui-floatingtoolbar-panel-shadow {
    background: none;
}

/*CurtailmentPlan*/
#act129-default {
    display: inline-block;
    margin-left: .75em;
}

label.act129-default {
    display: inline;
    font-weight: bold;
    margin: 0 0 0 0.5em;
    line-height: 1.5;
}

    label.act129-default .current-default {
        font-weight: normal;
        font-style: italic;
        color: #8e8d7a;
        margin: -.75em 3.25em;
        font-size: 80%;
        display: block;
    }

.load-drop.input-group-field {
    border-right: 0;
    box-shadow: none;
}

.tabs-title.active a {
    color: #fff;
}

    .tabs-title.active a:hover {
        background: #4E938E;
    }

/*INFOVIS CSS*/

.infovis-tool #right-container {
    display: none;
}

.infovis-tool #center-container {
    width: 800px;
}

.infovis-tool #infovis {
    width: 800px;
}

.infovis-tool .node {
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
    font-size: 14px;
    text-align: center;
}

/*TOOLTIPS*/
.infovis-tool .tip {
    color: #fff;
    width: 139px;
    background-color: black;
    opacity: 0.9;
    filter: alpha(opacity=90);
    font-size: 10px;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    padding: 7px;
}

.infovis-tool .album {
    width: 100px;
    margin: 3px;
}

.infovis-tool #id-list {
    background-color: #EEEEEE;
    border: 1px solid #CCCCCC;
    margin: 10px 20px 0 20px;
    padding: 5px;
    text-align: left;
    text-indent: 2px;
}

    .infovis-tool #id-list table {
        margin-top: 2px;
    }

.infovis-tool #back {
    margin: 10px 40px;
}

.infovis-tool .button {
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font: 14px / 100% Arial, Helvetica, sans-serif;
    padding: 0.5em 1em 0.55em;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 0.5em;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

    .infovis-tool .button:hover {
        text-decoration: none;
    }

    .infovis-tool .button:active {
        position: relative;
        top: 1px;
    }

/* white */
.infovis-tool .white {
    color: #606060;
    border: solid 1px #b7b7b7;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
    background: -moz-linear-gradient(top, #fff, #ededed);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}

    .infovis-tool .white:hover {
        background: #ededed;
        background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
        background: -moz-linear-gradient(top, #fff, #dcdcdc);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
    }

    .infovis-tool .white:active {
        color: #999;
        background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
        background: -moz-linear-gradient(top, #ededed, #fff);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
    }

.tip-label, .tip-value {
    font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
    font-size: 12px;
    color: #4E938E;
}

.tip-value {
    font-weight: bold;
}

.tip-title {
    font-family: "Cooper Hewitt Web", "Roboto", Helvetica, Roboto, Arial, sans-serif;
    font-size: 14px;
    color: #4E938E;
}

#trending-tip-table td, th {
    border: none;
}

.close-reveal-modal {
    position: absolute;
    top: 5%;
    right: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}

.date-selection-type {
    display: inline;
}

.economic-event-highlight {
    background-color: #aa8ba6;
}

.act129-event-highlight {
    background-color: #869ab7;
}

.apsdayahead-event-highlight {
    background-color: #aa8bad;
}

.editor-text-area {
    min-height: 100px;
}

.ui-floatingtoolbar-page-controls {
    top: -38px !important;
}

.ui-floatingtoolbar-bottom-container {
    bottom: -38px !important;
}

.report-view {
    margin: 38px 0px 38px 0px;
}

.enlarged-report-view {
    margin: 0px 0px 0px 0px;
}

    .enlarged-report-view .ui-floatingtoolbar-page-controls {
        top: 6px !important;
    }

    .enlarged-report-view .ui-floatingtoolbar-bottom-container {
        bottom: 17px !important;
    }

.editable-date-picker {
    display: inline-block;
    box-sizing: border-box;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0.1rem;
    border: none;
    border-radius: 0;
    background-color: #ffffff;
    box-shadow: none;
    font-family: inherit;
    font-size: 100%;
    font-weight: bold;
    color: #000000;
    transition: none;
    max-width: 140px;
}

.dashboard-message-link {
    display: inline-block;
    color: #e76c24;
}

.registration-list-wrapper, .day-selectors {
    display: inline-block;
}

.inline-block {
    display: inline-block;
}

.chart-view-button {
    margin: 0;
    vertical-align: initial;
}

.impersonate-options {
    padding-left: 20px;
}

.t-grid-header .t-header {
    font-size: 14px;
}

.t-grid-content tr {
    font-size: 13px;
    cursor: pointer;
}

/* jQuery UI Datepicker moving pixels fix */
table.ui-datepicker-calendar {
    border-collapse: separate;
}

.ui-datepicker-calendar td {
    border: 1px solid transparent;
}

/* jQuery UI Datepicker hide datepicker helper */
#ui-datepicker-div {
    display: none;
}

/* jQuery UI Datepicker emphasis on selected dates */
.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
    background-image: url("/Content/Images/Widgets/x.png") !important;
    background-repeat: no-repeat;
    background-position: center center;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight span {
    background-image: url("/Content/Images/Widgets/x.png") !important;
    background-repeat: no-repeat;
    background-position: center center;
}

td.ui-state-highlight, table.ui-datepicker-calendar tbody td.ui-state-highlight td {
    background: none !important;
}

#ManageMessageCenterSearch #grdMessages a.button {
    color: white;
    margin: 0;
}

/*Custom tooltip*/

.custom-tooltip {
    position: relative;
    display: inline-block;
}

    .custom-tooltip .tooltiptext {
        visibility: hidden;
        width: 500px;
        background-color: none;
        color: #000;
        line-height:initial;
        text-align: left;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1000;
        top: -5px;
        right: 105%;
    }

    .custom-tooltip:hover .tooltiptext {
        visibility: visible;
    }


/*reponsive table*/

.responsive-card-table {
    border-collapse: collapse;
}

    .responsive-card-table.unstriped tbody {
        background-color: transparent;
    }

    .responsive-card-table th {
        background-color: #e6e6e6;
    }

    .responsive-card-table tr,
    .responsive-card-table th,
    .responsive-card-table td {
        border: 1px solid #0a0a0a;
    }

@media screen and (max-width: 640px) {
    .responsive-card-table {
    }

        .responsive-card-table thead tr {
            position: absolute;
            top: -9999em;
            left: -9999em;
            padding: 0.01rem;
        }

        .responsive-card-table tr {
            border: 1px solid #0a0a0a;
            display: block;
        }

            .responsive-card-table tr + tr {
                margin-top: 1.5rem;
            }

        .responsive-card-table td {
            border: none;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            border-bottom: 1px solid #0a0a0a;
            padding-left: 50%;
            position: relative;
        }

            .responsive-card-table td:before {
                content: attr(data-label);
                display: inline-block;
                font-weight: bold;
                line-height: 1.5;
                margin-left: -100%;
                width: 100%;
                position: relative;
                z-index: 1;
            }

            .responsive-card-table td:after {
                content: '';
                position: absolute;
                background: #e6e6e6;
                width: 45%;
                height: 95%;
                left: 1px;
                top: 1px;
                z-index: 0;
            }
}
/*
rounded circles
*/
.green-dot {
    height: 15px;
    width: 15px;
    background-color: green;
    border-radius: 50%;
    display: inline-block;
    margin:2px 2px -2px 2px;
}

.yellow-dot {
    height: 15px;
    width: 15px;
    background-color: #ffa500;
    border-radius: 50%;
    display: inline-block;
    margin: 2px 2px -2px 2px;
}

.red-dot {
    height: 15px;
    width: 15px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    margin: 2px 2px -2px 2px;
}

.width-200 {
    width: 200px;
}

.tableFixHead {
    overflow: auto;
    max-height: 400px;
}

.tableFixHead thead th {
    position: sticky;
    top: 0;
}

.tableFixHeadNumericalAlignment {
    text-align: right;
}
.tableRowNegativeValue {
    text-align: right;
    color: red;
}
.go-back-icon {
    background-image: url('/Content/CPowerTemplating2-25-16/assets/svg/back-svgrepo-com.svg');
    width: 20px;
}