<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*******************************
DO NOT EDIT THIS STYLESHEET
*******************************/

.clearfix:after {
    content: "";
    clear: both;
    visibility: hidden;
    display: block;
    height: 0;
}

.eztabs {
    position: relative;
    font-family: "Segoe UI", sans-serif;
}

.eztabs__tabs__wrapper {
    border-bottom: 2px solid #555;
    overflow: visible;
}

.eztabs__tabs,
.eztabs__tabs__editors {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.eztabs__tabs,
.eztabs__tabs__editors {
    display: block;
    float: left;
}

.eztabs__tab {
    display: block;
    padding: 6px 10px;
    background: #DEDEDE;
    color: #000;
    float: left;
    margin-left: 0px;
    position: relative;
    margin-left: -1px;
    margin-right: 0px;
    border-bottom-width: 0px;
    margin-right: 4px;
    font-size: 16px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.eztabs__tab:first-of-type {
    margin-left: 0px;
}

.eztabs__tab:hover {
    cursor: pointer;
    color: #333;
    background: #e8e8e8;
}

.eztabs__tab:focus {
    outline: 0;
}

.eztabs__tab--active {
    background: #555;
    color: #fff;
}

.eztabs__tab--active:hover {
    background: #555;
    color: #fff;
}

.eztabs__tab__inner {
    display: inline-block;
    vertical-align: middle;
}

.eztabs__tab__edit {}

.eztabs__tab__edit:hover {
    background: #e8e8e8;
}

.eztabs__tab__edit .eztabs__tab__inner:before {
    /* display: block; */
}

.eztabs__tab__edit .ion {
    display: inline-block;
}

.eztabs__tab.ui-sortable-placeholder {
    background: rgba(219, 1, 1, .2) !important;
    visibility: visible !important;
}

.eztabs__tab.ui-sortable-helper {
    opacity: .7;
}

.eztabs__tab.ui-sortable-helper:hover {}

.eztabs__tab__deleteBtn {
    margin-right: 5px;
    font-size: 18px;
}

.eztabs__tab__name {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.eztabs__tab__name--editing {
    display: none;
}

.eztabs__eztab__input {
    border: 0px;
    background: 0px;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    display: none;
    padding: 0;
    min-width: 10px;
}

.eztabs__eztab__input:hover {
    cursor: text;
}

.eztabs__eztab__input--editing {
    display: inline-block;
    border: 1px solid #ccc;
}

.eztabs__eztab__input--editing:focus {
    outline: 1px solid #fff;
    outline: 0;
    background: #fff;
    color: #000;
    padding: 0 4px;
}

.eztabs__accordion {
    display: none;
    color: #fff;
}

.eztabs__accordion--active {
    color: #000;
}

.eztabs__accordion__inner {
    padding: 10px;
    display: table;
    width: calc(100% - 20px);
}

.eztabs__accordion__name,
.eztabs__accordion__icon {
    display: table-cell;
    vertical-align: middle;
}

.eztabs__accordion__icon {
    text-align: right;
}

.eztabs__accordion--active .eztabs__accordion__icon:before {
    content: "\f10d";
}

.eztabs__panels {
    display: none;
}

.eztabs__panels--visible {
    display: block;
}

.eztabs__panels__inner {
    padding: 10px 0;
}


/*Tool Tip*/

.eztooltip {
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
}

.eztooltip&gt;span {
    font-family: 'MyriadProLight';
    font-size: 18px;
    color: #333;
    height: 25px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.eztooltip__title {
    margin-right: 10px;
}

.eztooltip__content {
    position: relative;
}

.eztabs__tab__edit .eztooltip__content {
    display: block;
}

.eztabs__tab.ui-sortable-helper .eztooltip__message {
    display: none;
}

.eztooltip__content:hover {
    cursor: pointer;
}

.eztabs__tab .eztooltip__icon {
    display: block;
}

.eztooltip__message {
    position: absolute;
    background: #fff;
    color: #555;
    font-size: 14px;
    padding: 3px 8px;
    opacity: 0;
    margin: 9px auto;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 99999;
    visibility: hidden;
    border: 1px solid #CCC;
    -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    white-space: nowrap;
    line-height: 20px;
}

.eztabs__tab .eztooltip__message {
    width: initial;
    width: auto;
    text-align: center;
    display: inline-block;
}

.eztooltip__content:hover .eztooltip__message {
    visibility: visible;
    -webkit-animation: .5s ease 0s normal forwards 1 fadein;
    animation: .5s ease 0s normal forwards 1 fadein;
}

.t-ie9 .eztooltip__content:hover .eztooltip__message {
    opacity: 1;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.eztooltip__message:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #555;
    z-index: 1000;
}


/*Styles for dialog tabs since they are all the same*/

.eztabs--dialog .eztabs__tabs__wrapper {
    border-bottom: 3px solid #25A0DA;
}

.eztabs--dialog .eztabs__tab {
    font: 15px "Segoe UI", Arial, Helvetica, sans-serif;
    border-radius: 3px 3px 0 0;
    background: #F9F9F9;
    color: #000;
    border: 1px solid #cdcdcd;
    padding: 5px 10px;
}

.eztabs--dialog .eztabs__tab:hover {
    background: #e8e8e8;
}

.eztabs--dialog .eztabs__tab--active {
    background: #25A0DA;
    color: #fff;
    border: 1px solid #25A0DA;
}

.eztabs--dialog .eztabs__tab--active:hover {
    background: #25A0DA;
}

@media screen and (max-width:700px) {
    .eztabs__tabs__wrapper {
        display: none;
    }
    .eztabs {
        position: relative;
    }
    .eztabs__accordion {
        display: block;
        color: #333;
        background: #cdcdcd;
        margin-bottom: 1px;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        float: left;
        width: 100%;
    }
    .eztabs__accordion--active {
        color: #fff;
        background: #555;
    }
    .eztabs__panels--visible {
        background: transparent;
    }
    .eztabs__panels {
        background: transparent;
        width: 100%;
        float: left;
    }
    .eztabs__panels__inner {
        padding: 10px;
    }
}
</pre></body></html>