@charset "UTF-8";

.jq_modal_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2100;
    overflow-y: auto;
    left: 0;
    top: 0;
}

.jq_modal_wrap>div {
    display: table;
    width: 100%;
    height: 100%;
}

.jq_modal_wrap>div>div {
    display: table-cell;
    vertical-align: middle;
    padding: 30px;
    overflow-y: auto;
}

#jq_modal_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2000;
}

#jq_modal_bg.jq_modal_bg_open {
    animation: bgopen 0.3s forwards;
}

#jq_modal_bg.jq_modal_bg_close {
    animation: bgclose 0.3s forwards;
}

.laymodal {
    display: none;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.3s;
    width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid #bdbdbd;
    border-radius: 0px;
}

.laymodal .laymodal-content,
.laymodal .laymodal-footer {
    padding: 30px;
}

.laymodal .laymodal-footer {
    padding-top: 0;
}

.laymodal .boder-b {
    border-bottom: 1px solid #d8d8d8 !important;
}

.laymodal .laymodal-content {
    background: #fff;
    padding: 30px;
}

.laymodal .laymodal-footer {
    text-align: center;
}

.laymodal.modal_open {
    animation: modalopen 0.3s forwards;
}

.laymodal.modal_close {
    animation: modalclose 0.3s forwards;
}

.laymodal-focusclose {
    position: absolute;
    width: 0;
    height: 0;
    box-sizing: border-box;
    padding: 0;
    bottom: 0;
    outline: none;
    -ms-outline: none;
    margin: 0;
    opacity: 0;
}

@keyframes bgopen {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bgclose {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes modalopen {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes modalclose {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/* custom */
.laymodal__login_password {
    width: 760px;
    height: 480px;
}

.laymodal .input-area {
    display: inline-block;
}

.laymodal .btn-area {
    display: inline-block;
    vertical-align: 2px;
}

.laymodal .report-warp {
    width: 100%;
    min-height: 820px;
    border: 1px solid #bdbdbd;
    padding: 30px;
}

.laymodal .tit-hd h2 {
    font-size: 24px;
    font-weight: 400;
}

.laymodal .survey-result-box {
    padding: 10px;
    padding-bottom: 50px;
    padding-top: 20px;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
}

.laymodal .survey-result-box .cnt-survey-list {
    margin-bottom: 20px;
    font-weight: 400;
}

.laymodal .survey-result-box .cnt-survey-list dt {
    font-weight: 600;
}

.laymodal .survey-result-box .cnt-survey-list dd {
    margin-top: 10px;
}

.laymodal .survey-result-box .cnt-survey-list dd b {
    font-weight: 600;
}

.laymodal__alert {
    max-width: 400px;
    border-radius: 28px;
    overflow: hidden;
    border: 0;
    box-shadow: 0 11px 23px 0 rgba(0, 0, 0, 0.18);
}

.laymodal__alert .cs-icon-check {
    display: block;
    margin: 0 auto;
}

.laymodal__alert .laymodal-content {
    text-align: center;
}

.laymodal__alert .laymodal-content strong {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
}

.laymodal__alert .laymodal-content span {
    display: block;
    font-size: 18px;
    color: #6f6f6f;
    font-weight: 300;
    margin-top: 15px;
}

.laymodal__alert .cs-btn2 {
    width: 100%;
}

.laymodal__alert .laymodal-content,
.laymodal__alert .laymodal-footer {
    padding: 55px;
}

.laymodal__alert .laymodal-content {
    padding-bottom: 35px;
}

.laymodal__alert .laymodal-footer {
    padding-top: 0;
}

.laymodal__info {
    width: 760px;
}

.laymodal__info .laymodal-footer [class^="cs-btn"] {
    width: 290px;
}

.laymodal__info .laymodal-content h3 {
    font-size: 22px;
    margin: 0 0 20px 0;
    padding: 0;
}

.cs-loader {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 8000;
    transition: all 0.3s;
    color: #fff;
    opacity: 0;
    display: table;
}

.cs-loader.active {
    opacity: 1;
}

.cs-loader strong {
    display: block;
    font-weight: 300;
    font-size: 15px;
    text-align: center;
}

.cs-loader>div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

/* input 기본 */
.cs-input {
    border: 1px solid #3f3b3a;
    border-radius: 4px;
    height: 32px;
    box-sizing: border-box;
    padding: 0 8px;
    font-size: 14px;
    color: #3b3b3b;
    transition: all 0.3s;
    display: inline-block;
    vertical-align: middle;
}

.cs-input::placeholder {
    color: #bdbdbd;
    font-weight: Medium;
}

.cs-input:focus {
    border: 1px solid #3f3b3a;
}

.cs-input:readonly,
.cs-input:disabled {
    background-color: #eeeeee;
    border-color: #e1e1e1;
    color: #bdbdbd;
}

.cs-input+input {
    margin-left: 4px;
}

.cs-input-gray {
    /* 입력유부 확인이 될때 까지 */
    border: 1px solid #f4f4f4;
    background-color: #f4f4f4;
}

.cs-input-gray::placeholder {
    color: #bdbdbd;
    font-weight: Medium;
}

.cs-input-gray:placeholder-shown {
    border: 1px solid #f4f4f4;
    background-color: #f4f4f4;
}

.cs-input-gray:focus {
    border: 1px solid #3f3b3a;
    background-color: #ffffff;
}

.cs-input-gray:readonly,
.cs-input-gray:disabled {
    background-color: #eeeeee;
    border-color: #e1e1e1;
}

.cs-input-search {
    padding: 0px 50px 0px 8px;
    background-image: url("/html/common/manager/images/ic_input_search_cal.png");
    background-position: center right 10px;
    background-repeat: no-repeat;
}

.cs-input-search.cs-input-gray {
    background-image: url("/html/common/manager/images/ic_input_search_top.png");
}


/* error */
.cs-input.cs-input-error {
    border-color: #c01714;
    background-color: #fcf8f8 !important;
}

.cs-checkbox {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.cs-checkbox+label {
    user-select: none;
    -ms-user-select: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

.cs-checkbox+label span {
    display: inline-block;
    width: 26px;
    height: 24px;
    box-sizing: border-box;
    margin-right: 5px;
    position: relative;
    margin-top: -0.3em;
    vertical-align: middle;
    background-image: url("/html/common/manager/images/bt_check_n.png");
    transition: all 0.3s;
}

.cs-checkbox+label b {
    font-weight: normal;
}

.cs-checkbox:checked+label span {
    background-image: url("/html/common/manager/images/bt_check_s.png");
}

.cs-checkbox._disabled+label,
.cs-checkbox:disabled+label {
    color: #a7a7a7;
}

.cs-checkbox._disabled+label span,
.cs-checkbox:disabled+label span {
    border-color: #dadde0;
    background: #ebebeb;
}

.cs-checkbox+label+input+label {
    margin-left: 20px;
}

.cs-checkbox.-single+label span {
    margin-right: 0;
}

/* 작은사이즈 */
.cs-checkbox.cs-checkbox-sm {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.cs-checkbox.cs-checkbox-sm+label {
    user-select: none;
    -ms-user-select: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

.cs-checkbox.cs-checkbox-sm+label span {
    display: inline-block;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    margin-right: 5px;
    position: relative;
    margin-top: -0.3em;
    vertical-align: middle;
    background-image: url("/html/common/manager/images/bt_check_sm_n.png");
    transition: all 0.3s;
}

.cs-checkbox.cs-checkbox-sm+label b {
    font-weight: normal;
}

.cs-checkbox.cs-checkbox-sm:checked+label span {
    background-image: url("/html/common/manager/images/bt_check_sm_s.png");
}

.cs-checkbox.cs-checkbox-sm._disabled+label,
.cs-checkbox.cs-checkbox-sm:disabled+label {
    color: #a7a7a7;
}

.cs-checkbox.cs-checkbox-sm._disabled+label span,
.cs-checkbox.cs-checkbox-sm:disabled+label span {
    border-color: #dadde0;
    background: #ebebeb;
}

.cs-checkbox.cs-checkbox-sm+label+input+label {
    margin-left: 20px;
}

.cs-checkbox.cs-checkbox-sm.-single+label span {
    margin-right: 0;
}

/* 동그란 체크박스 */
.cs-checkbox.cs-checkbox-rd {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.cs-checkbox.cs-checkbox-rd+label {
    user-select: none;
    -ms-user-select: none;
    font-weight: normal;
    cursor: pointer;
    font-size: 16px;
    color: #7c7c7c;
    font-weight: 500;
}

.cs-checkbox.cs-checkbox-rd+label span {
    display: inline-block;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    margin-right: 5px;
    position: relative;
    margin-top: -0.3em;
    vertical-align: middle;
    background-image: url("/html/common/manager/images/bt_check_rd_n.png");
    transition: all 0.3s;
}

.cs-checkbox.cs-checkbox-rd+label b {
    font-weight: normal;
}

.cs-checkbox.cs-checkbox-rd:checked+label span {
    background-image: url("/html/common/manager/images/bt_check_rd_s.png");
}

.cs-checkbox.cs-checkbox-rd._disabled+label,
.cs-checkbox.cs-checkbox-rd:disabled+label {
    color: #a7a7a7;
}

.cs-checkbox.cs-checkbox-rd._disabled+label span,
.cs-checkbox.cs-checkbox-rd:disabled+label span {
    border-color: #dadde0;
    background: #ebebeb;
}

.cs-checkbox.cs-checkbox-rd+label+input+label {
    margin-left: 20px;
}

.cs-checkbox.cs-checkbox-rd.-single+label span {
    margin-right: 0;
}

.btn-checkbox {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.btn-checkbox+label {
    user-select: none;
    -ms-user-select: none;
    font-weight: normal;
    cursor: pointer;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    min-width: 60px;
    height: 32x;
    box-sizing: border-box;
    padding: 0px 10px;
    position: relative;
    vertical-align: middle;
    display: inline-block;
    transition: all 0.3s;
    color: #7c7c7c;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
}

.btn-checkbox:checked+label {
    background-color: #325577;
    border-color: #325577;
    color: #fff;
}

.btn-checkbox+label+input+label {
    margin-left: 8px;
}

.btn-checkbox.-single+label span {
    margin-right: 0;
}

.prv-tag-area {
    display: inline-block;
}

.ic-top-mail {
    display: inline-block;
    width: 20px;
    height: 15px;
    background: url("/html/common/manager/images/ico_top_email.png");
}

.ic-top-arm {
    display: inline-block;
    width: 16px;
    height: 20px;
    background: url("/html/common/manager/images/ic_top_alarm.png");
}

.ic-top-nt {
    display: inline-block;
    width: 16px;
    height: 20px;
    background: url("/html/common/manager/images/ic_top_notice.png");
}

.ic-top-nt-next {
    display: inline-block;
    width: 19px;
    height: 10px;
    background: url("/html/common/manager/images/ic_top_notice_arrow_right.png");
}

.ic-btn-excel {
    width: 18px;
    height: 18px;
    background: url("/html/common/manager/images/ic_btn_excel.png");
    display: inline-block;
    vertical-align: middle;
}

.ic-btn-print {
    width: 18px;
    height: 18px;
    background: url("/html/common/manager/images/ic_btn_print.png");
    display: inline-block;
    vertical-align: middle;
}

.ic-btn-pdf {
    width: 18px;
    height: 18px;
    background: url("/html/common/manager/images/ic_btn_pdf.png");
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.ic-btn-qrcode {
    width: 18px;
    height: 18px;
    background: url("/html/common/manager/images/ic_btn_qrcode.png");
    display: inline-block;
    vertical-align: middle;
}

.ic-pg-prev-first {
    width: 14px;
    height: 12px;
    background: url("/html/common/manager/images/ic_pg_prev_first.png");
    display: inline-block;
}

.ic-pg-prev {
    width: 7px;
    height: 12px;
    background: url("/html/common/manager/images/ic_pg_prev.png");
    display: inline-block;
}

.ic-pg-next {
    width: 7px;
    height: 12px;
    background: url("/html/common/manager/images/ic_pg_next.png");
    display: inline-block;
}

.ic-pg-next-last {
    width: 14px;
    height: 12px;
    background: url("/html/common/manager/images/ic_pg_next_last.png");
    display: inline-block;
}

.ic-prev-first-tiny {
    width: 32px;
    height: 24px;
    background: url("/html/common/manager/images/ic_prev_first_tiny.png");
    display: inline-block;
}

.ic-prev-tiny {
    width: 24px;
    height: 24px;
    background: url("/html/common/manager/images/ic_prev_tiny.png");
    display: inline-block;
}

.ic-next-tiny {
    width: 24px;
    height: 24px;
    background: url("/html/common/manager/images/ic_next_tiny.png");
    display: inline-block;
}

.ic-next-last-tiny {
    width: 32px;
    height: 24px;
    background: url("/html/common/manager/images/ic_next_last_tiny.png");
    display: inline-block;
}

.ic-circle-black {
    width: 8px;
    height: 8px;
    background: url("/html/common/manager/images/ico_circle_black.png");
    display: inline-block;
}

.ic-st {
    display: block;
    position: absolute;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    top: 26px;
}

.ic-st._1day {
    left: calc(14.28% * 1);
}

.ic-st._2day {
    left: calc(14.28% * 2);
}

.ic-st._3day {
    left: calc(14.28% * 3);
}

.ic-st._4day {
    left: calc(14.28% * 4);
}

.ic-st._5day {
    left: calc(14.28% * 5);
}

.ic-st._6day {
    left: calc(14.28% * 6);
}

.ic-st._7day {
    left: calc(14.28% * 7);
}

.show-bc-default {
    color: #3f3b3a;
}

.show-bc-blue {
    color: #325577;
}

.show-bc-orange {
    color: #edaa2c;
}

.show-bc-green {
    color: #3bc924;
}

.show-bc-red {
    color: #e61c19;
}

.show-bc-yellow {
    color: yellow;
}

.ic-st.bc-default {
    background-color: #3f3b3a;
}

.ic-st.bc-blue {
    background-color: #325577;
}

.ic-st.bc-gray {
    background-color: #3b3b3b;
}

.ic-st.bc-red {
    background-color: #e61c19;
}

.ic-st.bc-orange {
    background-color: #edaa2c;
}

.ic-st.bc-green {
    background-color: #3bc924;
}

.ic-st.bc-yellow {
    background-color: yellow;
}

.ic-st span {
    position: absolute;
    width: 100px;
    text-align: center;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #868686;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    margin-right: 8px;
}

.btn-group:last-child,
.btn-group-vertical:last-child {
    margin-right: 0px;
}

.btn-group .btn-frm-gray,
.btn-group-vertical .btn-frm-gray {
    font-size: 14px;
    font-weight: 400;
    color: #7c7c7c;
    margin-top: 2px;
}

.btn-group .btn-frm-red,
.btn-group-vertical .btn-frm-red {
    font-size: 14px;
    font-weight: 400;
    color: #e61c19;
    margin-top: 2px;
}

.btn-group .btn-frm-info,
.btn-group-vertical .btn-frm-info {
    font-weight: 400;
    color: #7c7c7c;
}

.btn-group.w100p .btn {
    width: 100%;
}

.btn-group.w2 .btn {
    width: calc(50% - 4px);
}

.btn-group.w3 .btn {
    width: calc(33.33333% - 6px);
}

.btn .label-memo {
    position: absolute;
    display: none;
    top: 24px;
    left: 0px;
    background: #fff;
    -webkit-box-shadow: 0 8px 25px -8px black;
    box-shadow: 0 4px 14px -8px black;
    border-radius: 0px 0px 4px 4px;
    text-align: left;
    font-size: 14px;
    z-index: 1;
}

.btn .label-memo .label-memo-header {
    width: 100%;
    display: block;
    height: 32px;
    line-height: 32px;
    color: #3f3b3a;
    background: #bdbdbd;
    border-radius: 4px 4px 0px 0px;
    text-align: center;
}

.btn .label-memo .label-memo-content {
    width: 100%;
    display: block;
    line-height: 16x;
    padding: 20px;
    color: #3f3b3a;
}

.btn .label-memo .label-memo-footer {
    width: 100%;
    display: block;
    height: 32px;
    line-height: 32x;
    padding: 0px 20px;
    border-radius: 0px 0px 4px 4px;
    color: #7c7c7c;
    font-size: 12px;
}

.btn-ic {
    padding: 0px 12px;
}

.btn-ic i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -0.3em;
}


.btn-default {
    color: #fff;
    background-color: #3f3b3a;
    border-color: #3f3b3a;
}

.btn-default:hover {
    color: #fff;
    background-color: #2a2726;
    border-color: #2a2726;
    -webkit-box-shadow: 0 8px 25px -8px black;
    box-shadow: 0 8px 25px -8px black;
}

.btn-outline-default {
    color: #3b3b3b;
    border-color: #3f3b3a;
}

.btn-outline-default:hover {
    color: #fff;
    background-color: #3f3b3a;
    border-color: #3f3b3a;
}


.btn-list-ic {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.15s ease-in-out;
    margin-right: 8px;
    margin-top: -4px;
    width: 32px;
    height: 32px;
}

.btn-list-ic:last-child {
    margin-right: 0px;
}

.btn-list-ic i.ic-list-file {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("/html/common/manager/images/ic_list_file.png");
}

.btn-list-ic i.ic-list-download {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("/html/common/manager/images/ic_list_download.png");
}

.btn-list-ic i.ic-list-text {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("/html/common/manager/images/ic_list_text.png");
}

.btn-list-ic i.ic-list-print {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("/html/common/manager/images/ic_list_print.png");
}

.btn-list-ic i.ic-list-qrcode {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("/html/common/manager/images/ic_list_qrcode.png");
}

/* size */
.btn-sm {
    font-size: 12px;
    font-weight: 400;
    padding: 0px 10px;
    line-height: 22px;
    border-radius: 2px;
    /* min-width: 80px; */
    height: 24px;
}

.btn-big {
    font-size: 18px;
    padding: 0px 18px;
    line-height: 48px;
    min-width: 100px;
    height: 48px;
}

.btn-rd {
    border-radius: 4px;
}

/* burger-icon */
.btn-gnb-all {
    display: block;
    width: 40px;
    height: 50px;
    text-indent: -9999px;
    font-size: 0;
}

.burger-icon {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    z-index: 102;
    padding: 8px 0;
    top: 14px;
    left: 10px;
    user-select: none;
    width: auto;
    margin: 0;
}

.burger-icon .burger-sticks {
    background: #e61c19;
    display: block;
    height: 3px;
    position: relative;
    transition: background 0.2s ease-out;
    width: 20px;
}

.burger-icon .burger-sticks:before,
.burger-icon .burger-sticks:after {
    background: #e61c19;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
}

.burger-icon .burger-sticks:before {
    top: 7px;
}

.burger-icon .burger-sticks:after {
    top: -7px;
}

.burger-check {
    display: none;
}

.burger-check:checked~.menu {
    max-width: 300px;
    height: 421px;
}

.burger-check:checked~.menu .m_nav li a {
    text-indent: 1px;
    width: 100%;
    padding: 0px 20px 0px 20px;
    line-height: 46px;
    color: #fff;
    border-bottom: 1px solid #707070;
}

.burger-check:checked~.burger-icon .burger-sticks {
    background: transparent;
}

.burger-check:checked~.burger-icon .burger-sticks:before {
    transform: rotate(-45deg);
}

.burger-check:checked~.burger-icon .burger-sticks:after {
    transform: rotate(45deg);
}

.burger-check:checked~.burger-icon:not(.steps) .burger-sticks:before,
.burger-check:checked~.burger-icon:not(.steps) .burger-sticks:after {
    top: 0;
}

.label-group,
.label-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    margin-right: 8px;
}

.label-group:last-child,
.label-group-vertical:last-child {
    margin-right: 0px;
}

.label {
    font-size: inherit;
}

.label {
    display: inline-block;
    position: relative;
    font-weight: 500;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0px 14px;
    font-size: 12px;
    line-height: 20px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-right: 4px;
    max-width: 80px;
    height: 24px;
}

.label:last-child {
    margin-right: 0px;
}

.label .label-memo {
    position: absolute;
    display: none;
    top: 24px;
    left: 0px;
    background: #fff;
    -webkit-box-shadow: 0 8px 25px -8px black;
    box-shadow: 0 4px 14px -8px black;
    border-radius: 0px 0px 4px 4px;
    text-align: left;
    font-size: 14px;
}

.label .label-memo .label-memo-header {
    width: 100%;
    display: block;
    height: 32px;
    line-height: 32px;
    color: #3f3b3a;
    background: #bdbdbd;
    border-radius: 4px 4px 0px 0px;
    text-align: center;
}

.label .label-memo .label-memo-content {
    width: 100%;
    display: block;
    line-height: 16x;
    padding: 20px;
    color: #3f3b3a;
}

.label .label-memo .label-memo-footer {
    width: 100%;
    display: block;
    height: 32px;
    line-height: 32x;
    padding: 0px 20px;
    border-radius: 0px 0px 4px 4px;
    color: #7c7c7c;
    font-size: 12px;
}

.label:hover .label-memo {
    display: block;
}

.label-sm {
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    padding: 0px 8px;
    height: 17px;
    line-height: 15px;
    max-width: 60px;
    border-radius: 4px;
}

.label-rd {
    border-radius: 4px;
}

.label-blue {
    border-color: #3e6fc6;
    background-color: #3e6fc6;
}

.label-outline-blue {
    color: #2a6198;
    border-color: #2a6198;
}

.label-red {
    border-color: #e61c19;
    background-color: #e61c19;
}

.label-outline-red {
    color: #e61c19;
    border-color: #e61c19;
}

.label-orange {
    border-color: #ffcf15;
    background-color: #ffcf15;
}

.label-outline-orange {
    color: #edaa2c;
    border-color: #edaa2c;
}

.label-default {
    border-color: #929292;
    background-color: #929292;
}

.label-outline-default {
    color: #3f3b3a;
    border-color: #3f3b3a;
}

.label-outline-default.label-rd {
    color: #3b3b3b;
    border-color: #bdbdbd;
}

.label-gray {
    border-color: #bdbdbd;
    background-color: #bdbdbd;
    color: #979797;
}

.label-outline-gray {
    color: #7c7c7c;
    border-color: #bdbdbd;
}

.label-outline-gray.label-rd {
    color: #3b3b3b;
    border-color: #bdbdbd;
}

.label-green {
    border-color: #3bc924;
    background-color: #3bc924;
}

.label-outline-green {
    color: #3bc924;
    border-color: #3bc924;
}

/* 기본 테이블 */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    font-size: 14px;
}

.table thead tr {
    margin-bottom: -2px;
}

.table thead tr th {
    background-color: #eeeeee;
    padding: 10px;
    vertical-align: bottom;
    color: #616161;
}

.table thead tr th:first-child {
    border-radius: 4px 0px 0px 4px;
}

.table thead tr th:last-child {
    border-radius: 0px 4px 4px 0px;
}

.table tbody tr {
    border-bottom: 1px solid #bdbdbd;
}

.table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.table tbody tr:hover {
    background-color: #f8f8f8;
}

.table tbody tr th {
    background-color: #eeeeee;
    border-bottom: 1px solid #bdbdbd;
    padding: 10px;
    vertical-align: middle;
    color: #616161;
}

.table tbody tr td {
    padding: 10px;
    vertical-align: middle;
    color: #3b3b3b;
}

.table tbody tr td .c-gray {
    font-weight: 400;
}

.table tbody tr td .label {
    width: 100%;
}

.table tbody tr td .td-tit {
    font-weight: 500;
}

.table tbody tr.tr-last {
    display: table-row;
    height: 1px;
}

.table tbody tr.tr-last th,
.table tbody tr.tr-last td {
    height: 1px;
    padding: 0px;
    margin: 0px;
}

.table.no-thead tbody {
    border-top: 1px solid #666666;
}

.table.ct-line th,
.table.ct-line td {
    border-right: 1px solid #cccccc;
}

.table.ct-line th:last-child,
.table.ct-line td:last-child {
    border-right: none;
}

.table.th-split tr {
    border-bottom: 4px solid #fff;
}

.table.th-split tr:hover {
    background-color: #fff;
}

.table.th-split tr:nth-child(even) {
    background-color: #fff;
}

.table.th-split tr:first-child {
    border-top: 1px solid #bdbdbd;
}

.table.th-split tr:last-child {
    border-bottom: 1px solid #bdbdbd;
}

.table.th-split tr.tr-last {
    border-top: 0px;
}

table.tiny tr.tr-summary {
    background-color: rgba(230, 28, 25, 0.1);
}

table.tiny tr th,
table.tiny tr td {
    padding: 10px 4px;
    text-align: center;
    font-weight: 400;
}

table.week thead tr th {
    vertical-align: middle;
}

table.week tbody tr td {
    position: relative;
}

.bd-b {
    border-bottom: 1px solid #bdbdbd;
}

.mh53 td {
    height: 53px;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }

    .m-sm-n1 {
        margin: -0.25rem !important;
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -0.25rem !important;
    }

    .m-sm-n2 {
        margin: -0.5rem !important;
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -0.5rem !important;
    }

    .m-sm-n3 {
        margin: -1rem !important;
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important;
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important;
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important;
    }

    .m-sm-n4 {
        margin: -1.5rem !important;
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important;
    }

    .m-sm-n5 {
        margin: -3rem !important;
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important;
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important;
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }

    .m-md-n1 {
        margin: -0.25rem !important;
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important;

    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important;
    }

    .m-md-n2 {
        margin: -0.5rem !important;
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important;
    }

    .m-md-n3 {
        margin: -1rem !important;
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important;
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important;
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important;
    }

    .m-md-n4 {
        margin: -1.5rem !important;
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important;
    }

    .m-md-n5 {
        margin: -3rem !important;
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important;
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important;
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }


    .m-lg-5 {
        margin: 3rem !important;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pb-lg-2,

    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }

    .m-lg-n1 {
        margin: -0.25rem !important;
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -0.25rem !important;
    }

    .m-lg-n2 {
        margin: -0.5rem !important;
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -0.5rem !important;
    }

    .m-lg-n3 {
        margin: -1rem !important;
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important;
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important;
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important;
    }

    .m-lg-n4 {
        margin: -1.5rem !important;
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important;
    }

    .m-lg-n5 {
        margin: -3rem !important;
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important;
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important;
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1600px) {
    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }

    .m-xl-n1 {
        margin: -0.25rem !important;
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
    }

    .m-xl-n2 {
        margin: -0.5rem !important;
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
    }

    .m-xl-n3 {
        margin: -1rem !important;
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important;
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important;
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important;
    }

    .m-xl-n4 {
        margin: -1.5rem !important;
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }

    .m-xl-n5 {
        margin: -3rem !important;
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important;
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important;
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

.ta-c {
    text-align: center;
}

.ta-l {
    text-align: left;
}

.ta-r {
    text-align: right;
}

.bb-0 {
    border-bottom: 0px !important;
}

.fl-l {
    float: left;
}

.fl-l::after {

    content: "";
    display: block;
    clear: both;
}

.fl-r {
    float: right;
}

.fl-r::after {
    content: "";
    display: block;
    clear: both;
}

.c-gray {
    color: #7c7c7c;
}

.c-default {
    color: #3b3b3b;
}

.c-red {
    color: #e61c19;
}

.c-red-imp {
    color: #e61c19 !important;
}

.c-blue {
    color: #2a6198;
}

.c-green {
    color: #3bc922;
}

.c-orange {
    color: #edaa2c;
}

.b-gray {
    background-color: #7c7c7c;
}

.b-default {
    color: #3b3b3b;
}

.b-red {
    background-color: #e61c19;
}

.b-blue {
    background-color: #2a6198;
}

.b-green {
    background-color: #3bc922;
}

.b-orange {
    background-color: #edaa2c;
}

.width100p {
    width: 100% !important;
}

.width5 {
    width: 5px;
}

.width10 {
    width: 10px;
}

.width15 {
    width: 15px;
}

.width20 {
    width: 20px;
}

.width25 {
    width: 25px;
}

.width30 {
    width: 30px;
}

.width35 {
    width: 35px;
}

.width40 {
    width: 40px;
}

.width45 {
    width: 45px;
}

.width50 {
    width: 50px;
}

.width55 {
    width: 55px;
}

.width60 {
    width: 60px;
}

.width65 {
    width: 65px;
}

.width70 {
    width: 70px;
}

.width75 {
    width: 75px;
}

.width80 {
    width: 80px;
}

.width85 {
    width: 85px;
}

.width90 {
    width: 90px;
}

.width95 {
    width: 95px;
}

.width100 {
    width: 100px;
}

.width105 {
    width: 105px;
}

.width110 {
    width: 110px;
}

.width115 {
    width: 115px;
}

.width120 {
    width: 120px;
}

.width125 {
    width: 125px;
}

.width130 {
    width: 130px;
}

.width135 {
    width: 135px;
}

.width140 {
    width: 140px;
}

.width145 {
    width: 145px;
}

.width150 {
    width: 150px;
}

.width155 {
    width: 155px;
}

.width160 {
    width: 160px;
}

.width165 {
    width: 165px;
}

.width170 {
    width: 170px;
}

.width175 {
    width: 175px;
}

.width180 {
    width: 180px;
}

.width185 {
    width: 185px;
}

.width190 {
    width: 190px;
}

.width195 {
    width: 195px;
}

.width200 {
    width: 200px;
}

.width205 {
    width: 205px;
}

.width210 {
    width: 210px;
}

.width215 {
    width: 215px;
}

.width220 {
    width: 220px;
}

.width225 {
    width: 225px;
}

.width230 {
    width: 230px;
}

.width235 {
    width: 235px;
}

.width240 {
    width: 240px;
}

.width245 {
    width: 245px;
}

.width250 {
    width: 250px;
}

.width255 {
    width: 255px;
}

.width260 {
    width: 260px;
}

.width265 {
    width: 265px;
}

.width270 {
    width: 270px;
}

.width275 {
    width: 275px;
}

.width280 {
    width: 280px;
}

.width285 {
    width: 285px;
}

.width290 {
    width: 290px;
}

.width295 {
    width: 295px;
}

.width300 {
    width: 300px;
}

.width305 {
    width: 305px;
}

.width310 {
    width: 310px;
}

.width315 {
    width: 315px;
}

.width320 {
    width: 320px;
}

.width325 {
    width: 325px;
}

.width330 {
    width: 330px;
}

.width335 {
    width: 335px;
}

.width340 {
    width: 340px;
}

.width345 {
    width: 345px;
}

.width350 {
    width: 350px;
}

.width355 {
    width: 355px;
}

.width360 {
    width: 360px;
}

.width365 {
    width: 365px;
}

.width370 {
    width: 370px;
}

.width375 {
    width: 375px;
}

.width380 {
    width: 380px;
}

.width385 {
    width: 385px;
}

.width390 {
    width: 390px;
}

.width395 {
    width: 395px;
}

.width400 {
    width: 400px;
}

.width405 {
    width: 405px;
}

.width410 {
    width: 410px;
}

.width415 {
    width: 415px;
}

.width420 {
    width: 420px;
}

.width425 {
    width: 425px;
}

.width430 {
    width: 430px;
}

.width435 {
    width: 435px;
}

.width440 {
    width: 440px;
}

.width445 {
    width: 445px;
}

.width450 {
    width: 450px;
}

.width455 {
    width: 455px;
}

.width460 {
    width: 460px;
}

.width465 {
    width: 465px;
}

.width470 {
    width: 470px;
}

.width475 {
    width: 475px;
}

.width480 {
    width: 480px;
}

.width485 {
    width: 485px;
}

.width490 {
    width: 490px;
}

.width495 {
    width: 495px;
}

.width500 {
    width: 500px;
}

.width505 {
    width: 505px;
}

.width510 {
    width: 510px;
}

.width515 {
    width: 515px;
}

.width520 {
    width: 520px;
}

.width525 {
    width: 525px;
}

.width530 {
    width: 530px;
}

.width535 {
    width: 535px;
}

.width540 {
    width: 540px;
}

.width545 {
    width: 545px;
}

.width550 {
    width: 550px;
}

.width555 {
    width: 555px;
}

.width560 {
    width: 560px;
}

.width565 {
    width: 565px;
}

.width570 {
    width: 570px;
}

.width575 {
    width: 575px;
}

.width580 {
    width: 580px;
}

.width585 {
    width: 585px;
}

.width590 {
    width: 590px;
}

.width595 {
    width: 595px;
}

.width600 {
    width: 600px;
}

.width605 {
    width: 605px;
}

.width610 {
    width: 610px;
}

.width615 {
    width: 615px;
}

.width620 {
    width: 620px;
}

.width625 {
    width: 625px;
}

.width630 {
    width: 630px;
}

.width635 {
    width: 635px;
}

.width640 {
    width: 640px;

}

.width645 {
    width: 645px;
}

.width650 {
    width: 650px;
}

.width655 {
    width: 655px;
}

.width660 {
    width: 660px;
}

.width665 {
    width: 665px;
}

.width670 {
    width: 670px;
}

.width675 {
    width: 675px;
}

.width680 {
    width: 680px;
}

.width685 {
    width: 685px;
}

.width690 {
    width: 690px;
}

.width695 {
    width: 695px;
}

.width700 {
    width: 700px;
}

.width705 {
    width: 705px;
}

.width710 {
    width: 710px;
}

.width715 {
    width: 715px;
}

.width720 {
    width: 720px;
}

.width725 {
    width: 725px;
}

.width730 {
    width: 730px;
}

.width735 {
    width: 735px;
}

.width740 {
    width: 740px;
}

.width745 {
    width: 745px;
}

.width750 {
    width: 750px;
}

.width755 {
    width: 755px;
}

.width760 {
    width: 760px;
}

.width765 {
    width: 765px;
}

.width770 {
    width: 770px;
}

.width775 {
    width: 775px;
}

.width780 {
    width: 780px;
}

.width785 {
    width: 785px;
}

.width790 {
    width: 790px;
}

.width795 {
    width: 795px;
}

.width800 {
    width: 800px;
}

.width805 {
    width: 805px;
}

.width810 {
    width: 810px;
}

.width815 {
    width: 815px;
}

.width820 {
    width: 820px;
}

.width825 {
    width: 825px;
}

.width830 {
    width: 830px;
}

.width835 {
    width: 835px;
}

.width840 {
    width: 840px;
}

.width845 {
    width: 845px;
}

.width850 {
    width: 850px;
}

.width855 {
    width: 855px;
}

.width860 {
    width: 860px;
}

.width865 {
    width: 865px;
}

.width870 {
    width: 870px;
}

.width875 {
    width: 875px;
}

.width880 {
    width: 880px;
}

.width885 {
    width: 885px;
}

.width890 {
    width: 890px;
}

.width895 {
    width: 895px;
}

.width900 {
    width: 900px;
}

.width905 {
    width: 905px;
}

.width910 {
    width: 910px;
}

.width915 {
    width: 915px;
}

.width920 {
    width: 920px;
}

.width925 {
    width: 925px;
}

.width930 {
    width: 930px;
}

.width935 {
    width: 935px;
}

.width940 {
    width: 940px;
}

.width945 {
    width: 945px;
}

.width950 {
    width: 950px;
}

.width955 {
    width: 955px;
}

.width960 {
    width: 960px;
}

.width965 {
    width: 965px;
}

.width970 {
    width: 970px;
}

.width975 {
    width: 975px;
}

.width980 {
    width: 980px;
}

.width985 {
    width: 985px;
}

.width990 {
    width: 990px;
}

.width995 {
    width: 995px;
}

.width1000 {
    width: 1000px;
}

.width1005 {
    width: 1005px;
}

.width1010 {
    width: 1010px;
}

.width1015 {
    width: 1015px;
}

.width1020 {
    width: 1020px;
}

.width1025 {
    width: 1025px;
}

.width1030 {
    width: 1030px;
}

.width1035 {
    width: 1035px;
}

.width1040 {
    width: 1040px;
}

.width1045 {
    width: 1045px;
}

.width1050 {
    width: 1050px;
}

.width1055 {
    width: 1055px;
}

.width1060 {
    width: 1060px;
}

.width1065 {
    width: 1065px;
}

.width1070 {
    width: 1070px;
}

.width1075 {
    width: 1075px;
}

.width1080 {
    width: 1080px;
}

.width1085 {
    width: 1085px;
}

.width1090 {
    width: 1090px;
}

.width1095 {
    width: 1095px;
}

.width1100 {
    width: 1100px;
}

.width1105 {
    width: 1105px;
}

.width1110 {
    width: 1110px;
}

.width1115 {
    width: 1115px;
}

.width1120 {
    width: 1120px;
}

.width1125 {
    width: 1125px;
}

.width1130 {
    width: 1130px;
}

.width1135 {
    width: 1135px;
}

.width1140 {
    width: 1140px;
}

.width1145 {
    width: 1145px;
}

.width1150 {
    width: 1150px;
}

.width1155 {
    width: 1155px;
}

.width1160 {
    width: 1160px;
}

.width1165 {
    width: 1165px;
}

.width1170 {
    width: 1170px;
}

.width1175 {
    width: 1175px;
}

.width1180 {
    width: 1180px;
}

.width1185 {
    width: 1185px;
}

.width1190 {
    width: 1190px;
}

.width1195 {
    width: 1195px;
}

.width1200 {
    width: 1200px;
}

.width1205 {
    width: 1205px;
}

.width1210 {
    width: 1210px;
}

.width1215 {
    width: 1215px;
}

.width1220 {
    width: 1220px;
}

.width1225 {
    width: 1225px;
}

.width1230 {
    width: 1230px;
}

.width1235 {
    width: 1235px;
}

.width1240 {
    width: 1240px;
}

.width1245 {
    width: 1245px;
}

.width1250 {
    width: 1250px;
}

.width1255 {
    width: 1255px;
}

.width1260 {
    width: 1260px;
}

.width1265 {
    width: 1265px;
}

.width1270 {
    width: 1270px;
}

.width1275 {
    width: 1275px;
}

.width1280 {
    width: 1280px;
}

.width1285 {
    width: 1285px;
}

.width1290 {
    width: 1290px;
}

.width1295 {
    width: 1295px;
}

.width1300 {
    width: 1300px;
}

.width1305 {
    width: 1305px;
}

.width1310 {
    width: 1310px;
}

.width1315 {
    width: 1315px;
}

.width1320 {
    width: 1320px;
}

.width1325 {
    width: 1325px;
}

.width1330 {
    width: 1330px;
}

.width1335 {
    width: 1335px;
}

.width1340 {
    width: 1340px;
}

.width1345 {
    width: 1345px;
}

.width1350 {
    width: 1350px;
}

.width1355 {
    width: 1355px;
}

.width1360 {
    width: 1360px;
}

.width1365 {
    width: 1365px;
}

.width1370 {
    width: 1370px;
}

.width1375 {
    width: 1375px;
}

.width1380 {
    width: 1380px;
}

.width1385 {
    width: 1385px;
}

.width1390 {
    width: 1390px;
}

.width1395 {
    width: 1395px;
}

.width1400 {
    width: 1400px;
}

.width1405 {
    width: 1405px;
}

.width1410 {
    width: 1410px;
}

.width1415 {
    width: 1415px;
}

.width1420 {
    width: 1420px;
}

.width1425 {
    width: 1425px;
}

.width1430 {
    width: 1430px;
}

.width1435 {
    width: 1435px;
}

.width1440 {
    width: 1440px;
}

.width1445 {
    width: 1445px;
}

.width1450 {
    width: 1450px;
}

.width1455 {
    width: 1455px;
}

.width1460 {
    width: 1460px;
}

.width1465 {
    width: 1465px;
}

.width1470 {
    width: 1470px;
}

.width1475 {
    width: 1475px;
}

.width1480 {
    width: 1480px;
}

.width1485 {
    width: 1485px;
}

.width1490 {
    width: 1490px;
}

.width1495 {
    width: 1495px;
}

.width1500 {
    width: 1500px;
}

.width5i {
    width: 5px !important;
}

.width10i {
    width: 10px !important;
}

.width15i {
    width: 15px !important;
}

.width20i {
    width: 20px !important;
}

.width25i {
    width: 25px !important;
}

.width30i {
    width: 30px !important;
}

.width35i {
    width: 35px !important;
}

.width40i {
    width: 40px !important;
}

.width45i {
    width: 45px !important;
}

.width50i {
    width: 50px !important;
}

.width55i {
    width: 55px !important;
}

.width60i {
    width: 60px !important;
}

.width65i {
    width: 65px !important;
}

.width70i {
    width: 70px !important;
}

.width75i {
    width: 75px !important;
}

.width80i {
    width: 80px !important;
}

.width85i {
    width: 85px !important;
}

.width90i {
    width: 90px !important;
}

.width95i {
    width: 95px !important;
}

.width100i {
    width: 100px !important;
}

.width105i {
    width: 105px !important;
}

.width110i {
    width: 110px !important;
}

.width115i {
    width: 115px !important;
}

.width120i {
    width: 120px !important;
}

.width125i {
    width: 125px !important;
}

.width130i {
    width: 130px !important;
}

.width135i {
    width: 135px !important;
}

.width140i {
    width: 140px !important;
}

.width145i {
    width: 145px !important;
}

.width150i {
    width: 150px !important;
}

.width155i {
    width: 155px !important;
}

.width160i {
    width: 160px !important;
}

.width165i {
    width: 165px !important;
}

.width170i {
    width: 170px !important;

}

.width175i {
    width: 175px !important;
}

.width180i {
    width: 180px !important;
}

.width185i {
    width: 185px !important;
}

.width190i {
    width: 190px !important;
}

.width195i {
    width: 195px !important;
}

.width200i {
    width: 200px !important;
}

.width205i {
    width: 205px !important;
}

.width210i {
    width: 210px !important;
}

.width215i {
    width: 215px !important;
}

.width220i {
    width: 220px !important;
}

.width225i {
    width: 225px !important;
}

.width230i {
    width: 230px !important;
}

.width235i {
    width: 235px !important;
}

.width240i {
    width: 240px !important;
}

.width245i {
    width: 245px !important;
}

.width250i {
    width: 250px !important;
}

.width255i {
    width: 255px !important;
}

.width260i {
    width: 260px !important;
}

.width265i {
    width: 265px !important;
}

.width270i {
    width: 270px !important;
}

.width275i {
    width: 275px !important;
}

.width280i {
    width: 280px !important;
}

.width285i {
    width: 285px !important;
}

.width290i {
    width: 290px !important;
}

.width295i {
    width: 295px !important;
}

.width300i {
    width: 300px !important;
}

.width305i {
    width: 305px !important;
}

.width310i {
    width: 310px !important;
}

.width315i {
    width: 315px !important;
}

.width320i {
    width: 320px !important;
}

.width325i {
    width: 325px !important;
}

.width330i {
    width: 330px !important;
}

.width335i {
    width: 335px !important;
}

.width340i {
    width: 340px !important;
}

.width345i {
    width: 345px !important;
}

.width350i {
    width: 350px !important;
}

.width355i {
    width: 355px !important;
}

.width360i {
    width: 360px !important;
}

.width365i {
    width: 365px !important;
}

.width370i {
    width: 370px !important;
}

.width375i {
    width: 375px !important;
}

.width380i {
    width: 380px !important;
}

.width385i {
    width: 385px !important;
}

.width390i {
    width: 390px !important;
}

.width395i {
    width: 395px !important;
}

.width400i {
    width: 400px !important;
}

.width405i {
    width: 405px !important;
}

.width410i {
    width: 410px !important;
}

.width415i {
    width: 415px !important;
}

.width420i {
    width: 420px !important;
}

.width425i {
    width: 425px !important;
}

.width430i {
    width: 430px !important;
}

.width435i {
    width: 435px !important;
}

.width440i {
    width: 440px !important;
}

.width445i {
    width: 445px !important;
}

.width450i {
    width: 450px !important;
}

.width455i {
    width: 455px !important;
}

.width460i {
    width: 460px !important;
}

.width465i {
    width: 465px !important;
}

.width470i {
    width: 470px !important;
}

.width475i {
    width: 475px !important;
}

.width480i {
    width: 480px !important;
}

.width485i {
    width: 485px !important;
}

.width490i {
    width: 490px !important;
}

.width495i {
    width: 495px !important;
}

.width500i {
    width: 500px !important;
}

.width505i {
    width: 505px !important;
}

.width510i {
    width: 510px !important;
}

.width515i {
    width: 515px !important;
}

.width520i {
    width: 520px !important;
}

.width525i {
    width: 525px !important;
}

.width530i {
    width: 530px !important;
}

.width535i {
    width: 535px !important;
}

.width540i {
    width: 540px !important;
}

.width545i {
    width: 545px !important;
}

.width550i {
    width: 550px !important;
}

.width555i {
    width: 555px !important;
}

.width560i {
    width: 560px !important;
}

.width565i {
    width: 565px !important;
}

.width570i {
    width: 570px !important;
}

.width575i {
    width: 575px !important;
}

.width580i {
    width: 580px !important;
}

.width585i {
    width: 585px !important;
}

.width590i {
    width: 590px !important;
}

.width595i {
    width: 595px !important;
}

.width600i {
    width: 600px !important;
}

.width605i {
    width: 605px !important;
}

.width610i {
    width: 610px !important;
}

.width615i {
    width: 615px !important;
}

.width620i {
    width: 620px !important;
}

.width625i {
    width: 625px !important;
}

.width630i {
    width: 630px !important;
}

.width635i {
    width: 635px !important;
}

.width640i {
    width: 640px !important;
}

.width645i {
    width: 645px !important;
}

.width650i {
    width: 650px !important;
}

.width655i {
    width: 655px !important;
}

.width660i {
    width: 660px !important;
}

.width665i {
    width: 665px !important;
}

.width670i {
    width: 670px !important;
}

.width675i {
    width: 675px !important;
}

.width680i {
    width: 680px !important;
}

.width685i {
    width: 685px !important;
}

.width690i {
    width: 690px !important;
}

.width695i {
    width: 695px !important;
}

.width700i {
    width: 700px !important;
}

.width705i {
    width: 705px !important;
}

.width710i {
    width: 710px !important;
}

.width715i {
    width: 715px !important;
}

.width720i {
    width: 720px !important;
}

.width725i {
    width: 725px !important;
}

.width730i {
    width: 730px !important;
}

.width735i {
    width: 735px !important;
}

.width740i {
    width: 740px !important;
}

.width745i {
    width: 745px !important;
}

.width750i {
    width: 750px !important;
}

.width755i {
    width: 755px !important;
}

.width760i {
    width: 760px !important;
}

.width765i {
    width: 765px !important;
}

.width770i {
    width: 770px !important;
}

.width775i {
    width: 775px !important;
}

.width780i {
    width: 780px !important;
}

.width785i {
    width: 785px !important;
}

.width790i {
    width: 790px !important;
}

.width795i {
    width: 795px !important;
}

.width800i {
    width: 800px !important;
}

.width805i {
    width: 805px !important;
}

.width810i {
    width: 810px !important;
}

.width815i {
    width: 815px !important;
}

.width820i {
    width: 820px !important;
}

.width825i {
    width: 825px !important;
}

.width830i {
    width: 830px !important;
}

.width835i {
    width: 835px !important;
}

.width840i {
    width: 840px !important;
}

.width845i {
    width: 845px !important;
}

.width850i {
    width: 850px !important;
}

.width855i {
    width: 855px !important;
}

.width860i {
    width: 860px !important;
}

.width865i {
    width: 865px !important;
}


.width870i {
    width: 870px !important;
}

.width875i {
    width: 875px !important;
}

.width880i {
    width: 880px !important;
}

.width885i {
    width: 885px !important;
}

.width890i {
    width: 890px !important;
}

.width895i {
    width: 895px !important;
}

.width900i {
    width: 900px !important;
}

.width905i {
    width: 905px !important;
}

.width910i {
    width: 910px !important;
}

.width915i {
    width: 915px !important;
}

.width920i {
    width: 920px !important;
}

.width925i {
    width: 925px !important;
}

.width930i {
    width: 930px !important;
}

.width935i {
    width: 935px !important;
}

.width940i {
    width: 940px !important;
}

.width945i {
    width: 945px !important;
}

.width950i {
    width: 950px !important;
}

.width955i {
    width: 955px !important;
}

.width960i {
    width: 960px !important;
}

.width965i {
    width: 965px !important;
}

.width970i {
    width: 970px !important;
}

.width975i {
    width: 975px !important;
}

.width980i {
    width: 980px !important;
}

.width985i {
    width: 985px !important;
}

.width990i {
    width: 990px !important;
}

.width995i {
    width: 995px !important;
}

.width1000i {
    width: 1000px !important;
}

.width1005i {
    width: 1005px !important;
}


.width1010i {
    width: 1010px !important;
}

.width1015i {
    width: 1015px !important;
}

.width1020i {
    width: 1020px !important;
}

.width1025i {
    width: 1025px !important;
}

.width1030i {
    width: 1030px !important;
}

.width1035i {
    width: 1035px !important;
}

.width1040i {
    width: 1040px !important;
}

.width1045i {
    width: 1045px !important;
}

.width1050i {
    width: 1050px !important;
}

.width1055i {
    width: 1055px !important;
}

.width1060i {
    width: 1060px !important;
}

.width1065i {
    width: 1065px !important;
}

.width1070i {
    width: 1070px !important;
}

.width1075i {
    width: 1075px !important;
}

.width1080i {
    width: 1080px !important;
}

.width1085i {
    width: 1085px !important;
}

.width1090i {
    width: 1090px !important;
}

.width1095i {
    width: 1095px !important;
}

.width1100i {
    width: 1100px !important;
}

.width1105i {
    width: 1105px !important;
}

.width1110i {
    width: 1110px !important;
}

.width1115i {
    width: 1115px !important;
}

.width1120i {
    width: 1120px !important;
}

.width1125i {
    width: 1125px !important;
}

.width1130i {
    width: 1130px !important;
}

.width1135i {
    width: 1135px !important;
}

.width1140i {
    width: 1140px !important;
}

.width1145i {
    width: 1145px !important;
}

.width1150i {
    width: 1150px !important;
}

.width1155i {
    width: 1155px !important;
}

.width1160i {
    width: 1160px !important;
}

.width1165i {
    width: 1165px !important;
}

.width1170i {
    width: 1170px !important;
}

.width1175i {
    width: 1175px !important;
}

.width1180i {
    width: 1180px !important;
}

.width1185i {
    width: 1185px !important;
}

.width1190i {
    width: 1190px !important;
}

.width1195i {
    width: 1195px !important;
}

.width1200i {
    width: 1200px !important;
}

.width1205i {
    width: 1205px !important;
}

.width1210i {
    width: 1210px !important;
}

.width1215i {
    width: 1215px !important;
}

.width1220i {
    width: 1220px !important;
}

.width1225i {
    width: 1225px !important;
}

.width1230i {
    width: 1230px !important;
}

.width1235i {
    width: 1235px !important;
}

.width1240i {
    width: 1240px !important;
}

.width1245i {
    width: 1245px !important;
}

.width1250i {
    width: 1250px !important;
}

.width1255i {
    width: 1255px !important;
}

.width1260i {
    width: 1260px !important;
}

.width1265i {
    width: 1265px !important;
}

.width1270i {
    width: 1270px !important;
}

.width1275i {
    width: 1275px !important;
}

.width1280i {
    width: 1280px !important;
}

.width1285i {
    width: 1285px !important;
}

.width1290i {
    width: 1290px !important;
}

.width1295i {
    width: 1295px !important;
}

.width1300i {
    width: 1300px !important;
}

.width1305i {
    width: 1305px !important;
}

.width1310i {
    width: 1310px !important;
}

.width1315i {
    width: 1315px !important;
}

.width1320i {
    width: 1320px !important;
}

.width1325i {
    width: 1325px !important;
}

.width1330i {
    width: 1330px !important;
}

.width1335i {
    width: 1335px !important;
}

.width1340i {
    width: 1340px !important;
}

.width1345i {
    width: 1345px !important;
}

.width1350i {
    width: 1350px !important;
}

.width1355i {
    width: 1355px !important;
}

.width1360i {
    width: 1360px !important;
}

.width1365i {
    width: 1365px !important;
}

.width1370i {
    width: 1370px !important;
}

.width1375i {
    width: 1375px !important;
}

.width1380i {
    width: 1380px !important;
}

.width1385i {
    width: 1385px !important;
}

.width1390i {
    width: 1390px !important;
}

.width1395i {
    width: 1395px !important;
}

.width1400i {
    width: 1400px !important;
}

.width1405i {
    width: 1405px !important;
}

.width1410i {
    width: 1410px !important;
}

.width1415i {
    width: 1415px !important;
}

.width1420i {
    width: 1420px !important;
}

.width1425i {
    width: 1425px !important;
}

.width1430i {
    width: 1430px !important;
}

.width1435i {
    width: 1435px !important;
}

.width1440i {
    width: 1440px !important;
}

.width1445i {
    width: 1445px !important;
}

.width1450i {
    width: 1450px !important;
}

.width1455i {
    width: 1455px !important;
}

.width1460i {
    width: 1460px !important;
}

.width1465i {
    width: 1465px !important;
}

.width1470i {
    width: 1470px !important;
}

.width1475i {
    width: 1475px !important;
}

.width1480i {
    width: 1480px !important;
}

.width1485i {
    width: 1485px !important;
}

.width1490i {
    width: 1490px !important;
}

.width1495i {
    width: 1495px !important;
}

.width1500i {
    width: 1500px !important;
}

.mt1 {
    margin-top: 1px !important;
}

.mt2 {
    margin-top: 2px !important;
}

.mt3 {
    margin-top: 3px !important;
}

.mt4 {
    margin-top: 4px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt6 {
    margin-top: 6px !important;
}

.mt7 {
    margin-top: 7px !important;
}

.mt8 {
    margin-top: 8px !important;
}

.mt9 {
    margin-top: 9px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt11 {
    margin-top: 11px !important;
}

.mt12 {
    margin-top: 12px !important;
}

.mt13 {
    margin-top: 13px !important;
}

.mt14 {
    margin-top: 14px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt16 {
    margin-top: 16px !important;
}

.mt17 {
    margin-top: 17px !important;
}

.mt18 {
    margin-top: 18px !important;
}

.mt19 {
    margin-top: 19px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt21 {
    margin-top: 21px !important;
}

.mt22 {
    margin-top: 22px !important;
}

.mt23 {
    margin-top: 23px !important;
}

.mt24 {
    margin-top: 24px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt26 {
    margin-top: 26px !important;
}

.mt27 {
    margin-top: 27px !important;
}

.mt28 {
    margin-top: 28px !important;
}

.mt29 {
    margin-top: 29px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt31 {
    margin-top: 31px !important;
}

.mt32 {
    margin-top: 32px !important;
}

.mt33 {
    margin-top: 33px !important;
}

.mt34 {
    margin-top: 34px !important;
}

.mt35 {
    margin-top: 35px !important;
}

.mt36 {
    margin-top: 36px !important;
}

.mt37 {
    margin-top: 37px !important;
}

.mt38 {

    margin-top: 38px !important;
}

.mt39 {
    margin-top: 39px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt41 {
    margin-top: 41px !important;
}

.mt42 {
    margin-top: 42px !important;
}

.mt43 {
    margin-top: 43px !important;
}

.mt44 {
    margin-top: 44px !important;
}

.mt45 {
    margin-top: 45px !important;
}

.mt46 {
    margin-top: 46px !important;
}

.mt47 {
    margin-top: 47px !important;
}

.mt48 {
    margin-top: 48px !important;
}

.mt49 {
    margin-top: 49px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt35 {
    margin-top: 35px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt45 {
    margin-top: 45px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt55 {
    margin-top: 55px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt65 {
    margin-top: 65px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt75 {
    margin-top: 75px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mt85 {
    margin-top: 85px !important;
}

.mt90 {
    margin-top: 90px !important;
}

.mt95 {
    margin-top: 95px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.mt105 {
    margin-top: 105px !important;
}

.mt110 {
    margin-top: 110px !important;
}

.mt115 {
    margin-top: 115px !important;
}

.mt120 {
    margin-top: 120px !important;
}

.mt125 {
    margin-top: 125px !important;
}

.mt130 {
    margin-top: 130px !important;
}

.mt135 {
    margin-top: 135px !important;
}

.mt140 {
    margin-top: 140px !important;
}

.mt145 {
    margin-top: 145px !important;
}

.mt150 {
    margin-top: 150px !important;
}

.mt155 {
    margin-top: 155px !important;
}

.mt160 {
    margin-top: 160px !important;
}

.mt165 {
    margin-top: 165px !important;
}

.mt170 {
    margin-top: 170px !important;
}

.mt175 {
    margin-top: 175px !important;
}

.mt180 {
    margin-top: 180px !important;
}

.mt185 {
    margin-top: 185px !important;
}

.mt190 {
    margin-top: 190px !important;
}

.mt195 {
    margin-top: 195px !important;
}

.mt200 {
    margin-top: 200px !important;
}

.mt205 {
    margin-top: 205px !important;
}

.mt210 {
    margin-top: 210px !important;
}

.mt215 {
    margin-top: 215px !important;
}

.mt220 {
    margin-top: 220px !important;
}

.mt225 {
    margin-top: 225px !important;
}

.mt230 {
    margin-top: 230px !important;
}

.mt235 {
    margin-top: 235px !important;
}

.mt240 {
    margin-top: 240px !important;
}

.mt245 {
    margin-top: 245px !important;
}

.mt250 {
    margin-top: 250px !important;
}

.mt255 {
    margin-top: 255px !important;
}

.mt260 {
    margin-top: 260px !important;
}

.mt265 {
    margin-top: 265px !important;
}

.mt270 {
    margin-top: 270px !important;
}

.mt275 {
    margin-top: 275px !important;
}

.mt280 {
    margin-top: 280px !important;
}

.mt285 {
    margin-top: 285px !important;
}

.mt290 {
    margin-top: 290px !important;
}

.mt295 {
    margin-top: 295px !important;
}

.mt300 {
    margin-top: 300px !important;
}

.mt305 {
    margin-top: 305px !important;
}

.mt310 {
    margin-top: 310px !important;
}

.mt315 {
    margin-top: 315px !important;
}

.mt320 {
    margin-top: 320px !important;
}

.mt325 {
    margin-top: 325px !important;
}

.mt330 {
    margin-top: 330px !important;
}

.mt335 {
    margin-top: 335px !important;
}

.mt340 {
    margin-top: 340px !important;
}

.mt345 {
    margin-top: 345px !important;
}

.mt350 {
    margin-top: 350px !important;
}

.mt355 {
    margin-top: 355px !important;
}

.mt360 {
    margin-top: 360px !important;
}

.mt365 {
    margin-top: 365px !important;
}

.mt370 {
    margin-top: 370px !important;
}

.mt375 {
    margin-top: 375px !important;
}

.mt380 {
    margin-top: 380px !important;
}

.mt385 {
    margin-top: 385px !important;
}

.mt390 {
    margin-top: 390px !important;
}

.mt395 {
    margin-top: 395px !important;
}

.mt400 {
    margin-top: 400px !important;
}

.mt405 {
    margin-top: 405px !important;
}

.mt410 {
    margin-top: 410px !important;
}

.mt415 {
    margin-top: 415px !important;
}

.mt420 {
    margin-top: 420px !important;
}

.mt425 {
    margin-top: 425px !important;
}

.mt430 {
    margin-top: 430px !important;
}

.mt435 {
    margin-top: 435px !important;
}

.mt440 {
    margin-top: 440px !important;
}

.mt445 {
    margin-top: 445px !important;
}

.mt450 {
    margin-top: 450px !important;
}

.mt455 {
    margin-top: 455px !important;
}

.mt460 {
    margin-top: 460px !important;
}

.mt465 {
    margin-top: 465px !important;
}

.mt470 {
    margin-top: 470px !important;
}

.mt475 {
    margin-top: 475px !important;
}

.mt480 {
    margin-top: 480px !important;
}

.mt485 {
    margin-top: 485px !important;
}

.mt490 {
    margin-top: 490px !important;
}

.mt495 {
    margin-top: 495px !important;
}

.mt-5 {
    margin-top: -5px;
}

.mt-10 {
    margin-top: -10px;
}

.mt-15 {
    margin-top: -15px;
}

.mt-20 {
    margin-top: -20px;
}

.mt-25 {
    margin-top: -25px;
}

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

.mt-35 {
    margin-top: -35px;
}

.mt-40 {
    margin-top: -40px;
}

.mt-45 {
    margin-top: -45px;
}

.mt-50 {
    margin-top: -50px;
}

.mt-55 {
    margin-top: -55px;
}

.mt-60 {
    margin-top: -60px;
}

.mt-65 {
    margin-top: -65px;
}

.mt-70 {
    margin-top: -70px;
}

.mt-75 {
    margin-top: -75px;
}

.mt-80 {
    margin-top: -80px;
}

.mt-85 {
    margin-top: -85px;
}

.mt-90 {
    margin-top: -90px;
}

.mt-95 {
    margin-top: -95px;
}

.mt-100 {
    margin-top: -100px;
}

.mt-105 {
    margin-top: -105px;
}

.mt-110 {
    margin-top: -110px;
}

.mt-115 {
    margin-top: -115px;
}

.mt-120 {
    margin-top: -120px;
}

.mt-125 {
    margin-top: -125px;
}

.mt-130 {
    margin-top: -130px;
}

.mt-135 {
    margin-top: -135px;
}

.mt-140 {
    margin-top: -140px;
}

.mt-145 {
    margin-top: -145px;
}

.mt-150 {
    margin-top: -150px;
}

.mt-155 {
    margin-top: -155px;
}

.mt-160 {
    margin-top: -160px;
}

.mt-165 {
    margin-top: -165px;
}

.mt-170 {
    margin-top: -170px;
}

.mt-175 {
    margin-top: -175px;
}

.mt-180 {
    margin-top: -180px;
}

.mt-185 {
    margin-top: -185px;
}

.mt-190 {
    margin-top: -190px;
}

.mt-195 {
    margin-top: -195px;
}

.mt-200 {
    margin-top: -200px;
}

.mt-205 {
    margin-top: -205px;
}

.mt-210 {
    margin-top: -210px;
}

.mt-215 {
    margin-top: -215px;
}

.mt-220 {
    margin-top: -220px;
}

.mt-225 {
    margin-top: -225px;
}

.mt-230 {
    margin-top: -230px;
}

.mt-235 {
    margin-top: -235px;
}

.mt-240 {
    margin-top: -240px;
}

.mt-245 {
    margin-top: -245px;
}

.mt-250 {
    margin-top: -250px;
}

.mt-255 {
    margin-top: -255px;
}

.mt-260 {
    margin-top: -260px;
}

.mt-265 {
    margin-top: -265px;
}

.mt-270 {
    margin-top: -270px;
}

.mt-275 {
    margin-top: -275px;
}

.mt-280 {
    margin-top: -280px;
}

.mt-285 {
    margin-top: -285px;
}

.mt-290 {
    margin-top: -290px;
}

.mt-295 {
    margin-top: -295px;
}

.mt-300 {
    margin-top: -300px;
}

.mt-305 {
    margin-top: -305px;
}

.mt-310 {
    margin-top: -310px;
}

.mt-315 {
    margin-top: -315px;
}

.mt-320 {
    margin-top: -320px;
}

.mt-325 {
    margin-top: -325px;
}

.mt-330 {
    margin-top: -330px;
}

.mt-335 {
    margin-top: -335px;
}

.mt-340 {
    margin-top: -340px;
}

.mt-345 {
    margin-top: -345px;
}

.mt-350 {
    margin-top: -350px;
}

.mt-355 {
    margin-top: -355px;
}

.mt-360 {
    margin-top: -360px;
}

.mt-365 {
    margin-top: -365px;
}

.mt-370 {
    margin-top: -370px;
}

.mt-375 {
    margin-top: -375px;
}

.mt-380 {
    margin-top: -380px;
}

.mt-385 {
    margin-top: -385px;
}

.mt-390 {
    margin-top: -390px;
}

.mt-395 {
    margin-top: -395px;
}

.mt-400 {
    margin-top: -400px;
}

.mt-405 {
    margin-top: -405px;
}

.mt-410 {
    margin-top: -410px;
}

.mt-415 {
    margin-top: -415px;
}

.mt-420 {
    margin-top: -420px;
}

.mt-425 {
    margin-top: -425px;
}

.mt-430 {
    margin-top: -430px;
}

.mt-435 {
    margin-top: -435px;
}

.mt-440 {
    margin-top: -440px;
}

.mt-445 {
    margin-top: -445px;
}

.mt-450 {
    margin-top: -450px;
}

.mt-455 {
    margin-top: -455px;
}

.mt-460 {
    margin-top: -460px;
}

.mt-465 {
    margin-top: -465px;
}

.mt-470 {
    margin-top: -470px;
}

.mt-475 {
    margin-top: -475px;
}

.mt-480 {
    margin-top: -480px;
}

.mt-485 {
    margin-top: -485px;
}

.mt-490 {
    margin-top: -490px;
}

.mt-495 {
    margin-top: -495px;
}

.mb1 {
    margin-bottom: 1px;
}

.mb2 {
    margin-bottom: 2px;
}

.mb3 {
    margin-bottom: 3px;
}

.mb4 {
    margin-bottom: 4px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb6 {
    margin-bottom: 6px;
}

.mb7 {
    margin-bottom: 7px;
}

.mb8 {
    margin-bottom: 8px;
}

.mb9 {
    margin-bottom: 9px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb11 {
    margin-bottom: 11px;
}

.mb12 {
    margin-bottom: 12px;
}

.mb13 {
    margin-bottom: 13px;
}

.mb14 {
    margin-bottom: 14px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb16 {
    margin-bottom: 16px;
}

.mb17 {
    margin-bottom: 17px;
}

.mb18 {
    margin-bottom: 18px;
}

.mb19 {
    margin-bottom: 19px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb21 {
    margin-bottom: 21px;
}

.mb22 {
    margin-bottom: 22px;
}

.mb23 {
    margin-bottom: 23px;
}

.mb24 {
    margin-bottom: 24px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb26 {
    margin-bottom: 26px;
}

.mb27 {
    margin-bottom: 27px;
}

.mb28 {
    margin-bottom: 28px;
}

.mb29 {
    margin-bottom: 29px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb31 {
    margin-bottom: 31px;
}

.mb32 {
    margin-bottom: 32px;
}

.mb33 {
    margin-bottom: 33px;
}

.mb34 {
    margin-bottom: 34px;
}

.mb35 {
    margin-bottom: 35px;
}

.mb36 {
    margin-bottom: 36px;
}

.mb37 {
    margin-bottom: 37px;
}

.mb38 {
    margin-bottom: 38px;
}

.mb39 {
    margin-bottom: 39px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb41 {
    margin-bottom: 41px;
}

.mb42 {
    margin-bottom: 42px;
}

.mb43 {
    margin-bottom: 43px;
}

.mb44 {
    margin-bottom: 44px;
}

.mb45 {
    margin-bottom: 45px;
}

.mb46 {
    margin-bottom: 46px;
}

.mb47 {
    margin-bottom: 47px;
}

.mb48 {
    margin-bottom: 48px;
}

.mb49 {
    margin-bottom: 49px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb35 {
    margin-bottom: 35px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb45 {
    margin-bottom: 45px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb55 {
    margin-bottom: 55px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb65 {
    margin-bottom: 65px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb75 {
    margin-bottom: 75px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb85 {
    margin-bottom: 85px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb95 {
    margin-bottom: 95px;
}

.mb100 {
    margin-bottom: 100px;
}

.mb105 {
    margin-bottom: 105px;
}

.mb110 {
    margin-bottom: 110px;
}

.mb115 {
    margin-bottom: 115px;
}

.mb120 {
    margin-bottom: 120px;
}

.mb125 {
    margin-bottom: 125px;
}

.mb130 {
    margin-bottom: 130px;
}

.mb135 {
    margin-bottom: 135px;
}

.mb140 {
    margin-bottom: 140px;
}

.mb145 {
    margin-bottom: 145px;
}

.mb150 {
    margin-bottom: 150px;
}

.mb155 {
    margin-bottom: 155px;
}

.mb160 {
    margin-bottom: 160px;
}

.mb165 {
    margin-bottom: 165px;
}

.mb170 {
    margin-bottom: 170px;
}

.mb175 {
    margin-bottom: 175px;
}

.mb180 {
    margin-bottom: 180px;
}

.mb185 {
    margin-bottom: 185px;
}

.mb190 {
    margin-bottom: 190px;
}

.mb195 {
    margin-bottom: 195px;
}

.mb200 {
    margin-bottom: 200px;
}

.mb205 {
    margin-bottom: 205px;
}

.mb210 {
    margin-bottom: 210px;
}

.mb215 {
    margin-bottom: 215px;
}

.mb220 {
    margin-bottom: 220px;
}

.mb225 {
    margin-bottom: 225px;
}

.mb230 {
    margin-bottom: 230px;
}

.mb235 {
    margin-bottom: 235px;
}

.mb240 {
    margin-bottom: 240px;
}

.mb245 {
    margin-bottom: 245px;
}

.mb250 {
    margin-bottom: 250px;
}

.mb255 {
    margin-bottom: 255px;
}

.mb260 {
    margin-bottom: 260px;
}

.mb265 {
    margin-bottom: 265px;
}

.mb270 {
    margin-bottom: 270px;
}

.mb275 {
    margin-bottom: 275px;
}

.mb280 {
    margin-bottom: 280px;
}

.mb285 {
    margin-bottom: 285px;
}

.mb290 {
    margin-bottom: 290px;
}

.mb295 {
    margin-bottom: 295px;
}

.mb300 {
    margin-bottom: 300px;
}

.mb305 {
    margin-bottom: 305px;
}

.mb310 {
    margin-bottom: 310px;
}

.mb315 {
    margin-bottom: 315px;
}

.mb320 {
    margin-bottom: 320px;
}

.mb325 {
    margin-bottom: 325px;
}

.mb330 {
    margin-bottom: 330px;
}

.mb335 {
    margin-bottom: 335px;
}

.mb340 {
    margin-bottom: 340px;
}

.mb345 {
    margin-bottom: 345px;
}

.mb350 {
    margin-bottom: 350px;
}

.mb355 {
    margin-bottom: 355px;
}

.mb360 {
    margin-bottom: 360px;
}

.mb365 {
    margin-bottom: 365px;
}

.mb370 {
    margin-bottom: 370px;
}

.mb375 {
    margin-bottom: 375px;
}

.mb380 {
    margin-bottom: 380px;
}

.mb385 {
    margin-bottom: 385px;
}

.mb390 {
    margin-bottom: 390px;
}

.mb395 {
    margin-bottom: 395px;
}

.mb400 {
    margin-bottom: 400px;
}

.mb405 {
    margin-bottom: 405px;
}

.mb410 {
    margin-bottom: 410px;
}

.mb415 {
    margin-bottom: 415px;
}

.mb420 {
    margin-bottom: 420px;
}

.mb425 {
    margin-bottom: 425px;
}

.mb430 {
    margin-bottom: 430px;
}

.mb435 {
    margin-bottom: 435px;
}

.mb440 {
    margin-bottom: 440px;
}

.mb445 {
    margin-bottom: 445px;
}

.mb450 {
    margin-bottom: 450px;
}

.mb455 {
    margin-bottom: 455px;
}

.mb460 {
    margin-bottom: 460px;
}

.mb465 {
    margin-bottom: 465px;
}

.mb470 {
    margin-bottom: 470px;
}

.mb475 {
    margin-bottom: 475px;
}

.mb480 {
    margin-bottom: 480px;
}

.mb485 {
    margin-bottom: 485px;
}

.mb490 {
    margin-bottom: 490px;
}

.mb495 {
    margin-bottom: 495px;
}

.ml1 {
    margin-left: 1px;
}

.ml2 {
    margin-left: 2px;
}

.ml3 {
    margin-left: 3px;
}

.ml4 {
    margin-left: 4px;
}

.ml5 {
    margin-left: 5px;
}

.ml6 {
    margin-left: 6px;
}

.ml7 {
    margin-left: 7px;
}

.ml8 {
    margin-left: 8px;
}

.ml9 {
    margin-left: 9px;
}

.ml10 {
    margin-left: 10px;
}

.ml11 {
    margin-left: 11px;
}

.ml12 {
    margin-left: 12px;
}

.ml13 {
    margin-left: 13px;
}

.ml14 {
    margin-left: 14px;
}

.ml15 {
    margin-left: 15px;
}

.ml16 {
    margin-left: 16px;
}

.ml17 {
    margin-left: 17px;
}

.ml18 {
    margin-left: 18px;
}

.ml19 {
    margin-left: 19px;
}

.ml20 {
    margin-left: 20px;
}

.ml21 {
    margin-left: 21px;
}

.ml22 {
    margin-left: 22px;
}

.ml23 {
    margin-left: 23px;
}

.ml24 {
    margin-left: 24px;
}

.ml25 {
    margin-left: 25px;
}

.ml26 {
    margin-left: 26px;
}

.ml27 {
    margin-left: 27px;
}

.ml28 {
    margin-left: 28px;
}

.ml29 {
    margin-left: 29px;
}

.ml30 {
    margin-left: 30px;
}

.ml31 {
    margin-left: 31px;
}

.ml32 {
    margin-left: 32px;
}

.ml33 {
    margin-left: 33px;
}

.ml34 {
    margin-left: 34px;
}

.ml35 {
    margin-left: 35px;
}

.ml36 {
    margin-left: 36px;
}

.ml37 {
    margin-left: 37px;
}

.ml38 {
    margin-left: 38px;
}

.ml39 {
    margin-left: 39px;
}

.ml40 {
    margin-left: 40px;
}

.ml41 {
    margin-left: 41px;
}

.ml42 {
    margin-left: 42px;
}

.ml43 {
    margin-left: 43px;
}

.ml44 {
    margin-left: 44px;
}

.ml45 {
    margin-left: 45px;
}

.ml46 {
    margin-left: 46px;
}

.ml47 {
    margin-left: 47px;
}

.ml48 {
    margin-left: 48px;
}

.ml49 {
    margin-left: 49px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml20 {
    margin-left: 20px;
}

.ml25 {
    margin-left: 25px;
}

.ml30 {
    margin-left: 30px;
}

.ml35 {
    margin-left: 35px;
}

.ml40 {
    margin-left: 40px;
}

.ml45 {
    margin-left: 45px;
}

.ml50 {
    margin-left: 50px;
}

.ml55 {
    margin-left: 55px;
}

.ml60 {
    margin-left: 60px;
}

.ml65 {
    margin-left: 65px;
}

.ml70 {
    margin-left: 70px;
}

.ml75 {
    margin-left: 75px;
}

.ml80 {
    margin-left: 80px;
}

.ml85 {
    margin-left: 85px;
}

.ml90 {
    margin-left: 90px;
}

.ml95 {
    margin-left: 95px;
}

.ml100 {
    margin-left: 100px;
}

.ml105 {
    margin-left: 105px;
}

.ml110 {
    margin-left: 110px;
}

.ml115 {
    margin-left: 115px;
}

.ml120 {
    margin-left: 120px;
}

.ml125 {
    margin-left: 125px;
}

.ml130 {
    margin-left: 130px;
}

.ml135 {
    margin-left: 135px;
}

.ml140 {
    margin-left: 140px;
}

.ml145 {
    margin-left: 145px;
}

.ml150 {
    margin-left: 150px;
}

.ml155 {
    margin-left: 155px;
}

.ml160 {
    margin-left: 160px;
}

.ml165 {
    margin-left: 165px;
}

.ml170 {
    margin-left: 170px;
}

.ml175 {
    margin-left: 175px;
}

.ml180 {
    margin-left: 180px;
}

.ml185 {
    margin-left: 185px;
}

.ml190 {
    margin-left: 190px;
}

.ml195 {
    margin-left: 195px;
}

.ml200 {
    margin-left: 200px;
}

.ml205 {
    margin-left: 205px;
}

.ml210 {
    margin-left: 210px;
}

.ml215 {
    margin-left: 215px;
}

.ml220 {
    margin-left: 220px;
}

.ml225 {
    margin-left: 225px;
}

.ml230 {
    margin-left: 230px;
}

.ml235 {
    margin-left: 235px;
}

.ml240 {
    margin-left: 240px;
}

.ml245 {
    margin-left: 245px;
}

.ml250 {
    margin-left: 250px;
}

.ml255 {
    margin-left: 255px;
}

.ml260 {
    margin-left: 260px;
}

.ml265 {
    margin-left: 265px;
}

.ml270 {
    margin-left: 270px;
}

.ml275 {
    margin-left: 275px;
}

.ml280 {
    margin-left: 280px;
}

.ml285 {
    margin-left: 285px;
}

.ml290 {
    margin-left: 290px;
}

.ml295 {
    margin-left: 295px;
}

.ml300 {
    margin-left: 300px;
}

.ml305 {
    margin-left: 305px;
}

.ml310 {
    margin-left: 310px;
}

.ml315 {
    margin-left: 315px;
}

.ml320 {
    margin-left: 320px;
}

.ml325 {
    margin-left: 325px;
}

.ml330 {
    margin-left: 330px;
}

.ml335 {
    margin-left: 335px;
}

.ml340 {
    margin-left: 340px;
}

.ml345 {
    margin-left: 345px;
}

.ml350 {
    margin-left: 350px;
}

.ml355 {
    margin-left: 355px;
}

.ml360 {
    margin-left: 360px;
}

.ml365 {
    margin-left: 365px;
}

.ml370 {
    margin-left: 370px;
}

.ml375 {
    margin-left: 375px;
}

.ml380 {
    margin-left: 380px;
}

.ml385 {
    margin-left: 385px;
}

.ml390 {
    margin-left: 390px;
}


.ml395 {
    margin-left: 395px;
}

.ml400 {
    margin-left: 400px;
}

.ml405 {
    margin-left: 405px;
}

.ml410 {
    margin-left: 410px;
}

.ml415 {
    margin-left: 415px;
}

.ml420 {
    margin-left: 420px;
}

.ml425 {
    margin-left: 425px;
}

.ml430 {
    margin-left: 430px;
}

.ml435 {
    margin-left: 435px;
}

.ml440 {
    margin-left: 440px;
}

.ml445 {
    margin-left: 445px;
}

.ml450 {
    margin-left: 450px;
}

.ml455 {
    margin-left: 455px;
}

.ml460 {
    margin-left: 460px;
}

.ml465 {
    margin-left: 465px;
}

.ml470 {
    margin-left: 470px;
}

.ml475 {
    margin-left: 475px;
}

.ml480 {
    margin-left: 480px;
}

.ml485 {
    margin-left: 485px;
}

.ml490 {
    margin-left: 490px;
}

.ml495 {
    margin-left: 495px;
}

.ml-5 {
    margin-left: -5px !important;
}

.ml-10 {
    margin-left: -5px !important;
}

.ml-15 {
    margin-left: -5px !important;
}

.ml-20 {
    margin-left: -5px !important;
}

.ml-25 {
    margin-left: -5px !important;
}

.ml-30 {
    margin-left: -5px !important;
}

.ml-35 {
    margin-left: -5px !important;
}

.ml-40 {
    margin-left: -5px !important;
}

.ml-45 {
    margin-left: -5px !important;
}

.ml-50 {
    margin-left: -5px !important;
}

.ml-55 {
    margin-left: -5px !important;
}

.ml-60 {
    margin-left: -5px !important;
}

.ml-65 {
    margin-left: -5px !important;
}

.ml-70 {
    margin-left: -5px !important;
}

.ml-75 {
    margin-left: -5px !important;
}

.ml-80 {
    margin-left: -5px !important;
}

.ml-85 {
    margin-left: -5px !important;
}

.ml-90 {
    margin-left: -5px !important;
}

.ml-95 {
    margin-left: -5px !important;
}

.ml-100 {
    margin-left: -5px !important;
}

.ml-105 {
    margin-left: -5px !important;
}

.ml-110 {
    margin-left: -5px !important;
}

.ml-115 {
    margin-left: -5px !important;
}

.ml-120 {
    margin-left: -5px !important;
}

.ml-125 {
    margin-left: -5px !important;
}

.ml-130 {
    margin-left: -5px !important;
}

.ml-135 {
    margin-left: -5px !important;
}

.ml-140 {
    margin-left: -5px !important;
}

.ml-145 {
    margin-left: -5px !important;
}

.ml-150 {
    margin-left: -5px !important;
}

.ml-155 {
    margin-left: -5px !important;
}

.ml-160 {
    margin-left: -5px !important;
}

.ml-165 {
    margin-left: -5px !important;
}

.ml-170 {
    margin-left: -5px !important;
}

.ml-175 {
    margin-left: -5px !important;
}

.ml-180 {
    margin-left: -5px !important;
}

.ml-185 {
    margin-left: -5px !important;
}

.ml-190 {
    margin-left: -5px !important;
}

.ml-195 {
    margin-left: -5px !important;
}

.ml-200 {
    margin-left: -5px !important;
}

.ml-205 {
    margin-left: -5px !important;
}

.ml-210 {
    margin-left: -5px !important;
}

.ml-215 {
    margin-left: -5px !important;
}

.ml-220 {
    margin-left: -5px !important;
}

.ml-225 {
    margin-left: -5px !important;
}

.ml-230 {
    margin-left: -5px !important;
}

.ml-235 {
    margin-left: -5px !important;
}

.ml-240 {
    margin-left: -5px !important;
}

.ml-245 {
    margin-left: -5px !important;
}

.ml-250 {
    margin-left: -5px !important;
}

.ml-255 {
    margin-left: -5px !important;
}

.ml-260 {
    margin-left: -5px !important;
}

.ml-265 {
    margin-left: -5px !important;
}

.ml-270 {
    margin-left: -5px !important;
}

.ml-275 {
    margin-left: -5px !important;
}

.ml-280 {
    margin-left: -5px !important;
}

.ml-285 {
    margin-left: -5px !important;
}

.ml-290 {
    margin-left: -5px !important;
}

.ml-295 {
    margin-left: -5px !important;
}

.ml-300 {
    margin-left: -5px !important;
}

.ml-305 {
    margin-left: -5px !important;
}

.ml-310 {
    margin-left: -5px !important;
}

.ml-315 {
    margin-left: -5px !important;
}

.ml-320 {
    margin-left: -5px !important;
}

.ml-325 {
    margin-left: -5px !important;
}

.ml-330 {
    margin-left: -5px !important;
}

.ml-335 {
    margin-left: -5px !important;
}

.ml-340 {
    margin-left: -5px !important;
}

.ml-345 {
    margin-left: -5px !important;
}

.ml-350 {
    margin-left: -5px !important;
}

.ml-355 {
    margin-left: -5px !important;
}

.ml-360 {
    margin-left: -5px !important;
}

.ml-365 {
    margin-left: -5px !important;
}

.ml-370 {
    margin-left: -5px !important;
}

.ml-375 {
    margin-left: -5px !important;
}

.ml-380 {
    margin-left: -5px !important;
}

.ml-385 {
    margin-left: -5px !important;
}

.ml-390 {
    margin-left: -5px !important;
}

.ml-395 {
    margin-left: -5px !important;
}

.ml-400 {
    margin-left: -5px !important;
}

.ml-405 {
    margin-left: -5px !important;
}

.ml-410 {
    margin-left: -5px !important;
}

.ml-415 {
    margin-left: -5px !important;
}

.ml-420 {
    margin-left: -5px !important;
}

.ml-425 {
    margin-left: -5px !important;
}

.ml-430 {
    margin-left: -5px !important;
}

.ml-435 {
    margin-left: -5px !important;
}

.ml-440 {
    margin-left: -5px !important;
}

.ml-445 {
    margin-left: -5px !important;
}

.ml-450 {
    margin-left: -5px !important;
}

.ml-455 {
    margin-left: -5px !important;
}

.ml-460 {
    margin-left: -5px !important;
}

.ml-465 {
    margin-left: -5px !important;
}

.ml-470 {
    margin-left: -5px !important;
}

.ml-475 {
    margin-left: -5px !important;
}

.ml-480 {
    margin-left: -5px !important;
}

.ml-485 {
    margin-left: -5px !important;
}

.ml-490 {
    margin-left: -5px !important;
}

.ml-495 {
    margin-left: -5px !important;
}

.mr1 {
    margin-right: 1px;
}

.mr2 {
    margin-right: 2px;
}

.mr3 {
    margin-right: 3px;
}

.mr4 {
    margin-right: 4px;
}

.mr5 {
    margin-right: 5px;
}

.mr6 {
    margin-right: 6px;
}

.mr7 {
    margin-right: 7px;
}

.mr8 {
    margin-right: 8px;
}

.mr9 {
    margin-right: 9px;
}

.mr10 {
    margin-right: 10px;
}

.mr11 {
    margin-right: 11px;
}

.mr12 {
    margin-right: 12px;
}

.mr13 {
    margin-right: 13px;
}

.mr14 {
    margin-right: 14px;
}

.mr15 {
    margin-right: 15px;
}

.mr16 {
    margin-right: 16px;
}

.mr17 {
    margin-right: 17px;
}

.mr18 {
    margin-right: 18px;
}

.mr19 {
    margin-right: 19px;
}

.mr20 {
    margin-right: 20px;
}

.mr21 {
    margin-right: 21px;
}

.mr22 {
    margin-right: 22px;
}

.mr23 {
    margin-right: 23px;
}

.mr24 {
    margin-right: 24px;
}

.mr25 {
    margin-right: 25px;
}

.mr26 {
    margin-right: 26px;
}

.mr27 {
    margin-right: 27px;
}

.mr28 {
    margin-right: 28px;
}

.mr29 {
    margin-right: 29px;
}

.mr30 {
    margin-right: 30px;
}

.mr31 {
    margin-right: 31px;
}

.mr32 {
    margin-right: 32px;
}

.mr33 {
    margin-right: 33px;
}

.mr34 {
    margin-right: 34px;
}

.mr35 {
    margin-right: 35px;
}

.mr36 {
    margin-right: 36px;
}

.mr37 {
    margin-right: 37px;
}

.mr38 {
    margin-right: 38px;
}

.mr39 {
    margin-right: 39px;
}

.mr40 {
    margin-right: 40px;
}

.mr41 {
    margin-right: 41px;
}

.mr42 {
    margin-right: 42px;
}

.mr43 {
    margin-right: 43px;
}

.mr44 {
    margin-right: 44px;
}

.mr45 {
    margin-right: 45px;
}

.mr46 {
    margin-right: 46px;
}

.mr47 {
    margin-right: 47px;
}

.mr48 {
    margin-right: 48px;
}

.mr49 {
    margin-right: 49px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr20 {
    margin-right: 20px;
}

.mr25 {
    margin-right: 25px;
}

.mr30 {
    margin-right: 30px;
}

.mr35 {
    margin-right: 35px;
}

.mr40 {
    margin-right: 40px;
}

.mr45 {
    margin-right: 45px;
}

.mr50 {
    margin-right: 50px;
}

.mr55 {
    margin-right: 55px;
}

.mr60 {
    margin-right: 60px;
}

.mr65 {
    margin-right: 65px;
}

.mr70 {
    margin-right: 70px;
}

.mr75 {
    margin-right: 75px;
}

.mr80 {
    margin-right: 80px;
}

.mr85 {
    margin-right: 85px;
}

.mr90 {
    margin-right: 90px;
}

.mr95 {
    margin-right: 95px;
}

.mr100 {
    margin-right: 100px;
}

.mr105 {
    margin-right: 105px;
}

.mr110 {
    margin-right: 110px;
}

.mr115 {
    margin-right: 115px;
}

.mr120 {
    margin-right: 120px;
}

.mr125 {
    margin-right: 125px;
}

.mr130 {
    margin-right: 130px;
}

.mr135 {
    margin-right: 135px;
}

.mr140 {
    margin-right: 140px;
}

.mr145 {
    margin-right: 145px;
}

.mr150 {
    margin-right: 150px;
}

.mr155 {
    margin-right: 155px;
}

.mr160 {
    margin-right: 160px;
}

.mr165 {
    margin-right: 165px;
}

.mr170 {
    margin-right: 170px;
}

.mr175 {
    margin-right: 175px;
}

.mr180 {
    margin-right: 180px;
}

.mr185 {
    margin-right: 185px;
}

.mr190 {
    margin-right: 190px;
}

.mr195 {
    margin-right: 195px;
}

.mr200 {
    margin-right: 200px;
}

.mr205 {
    margin-right: 205px;
}

.mr210 {
    margin-right: 210px;
}

.mr215 {
    margin-right: 215px;
}

.mr220 {
    margin-right: 220px;
}

.mr225 {
    margin-right: 225px;

}

.mr230 {
    margin-right: 230px;
}

.mr235 {
    margin-right: 235px;
}

.mr240 {
    margin-right: 240px;
}

.mr245 {
    margin-right: 245px;
}

.mr250 {
    margin-right: 250px;
}

.mr255 {
    margin-right: 255px;
}

.mr260 {
    margin-right: 260px;
}

.mr265 {
    margin-right: 265px;
}

.mr270 {
    margin-right: 270px;
}

.mr275 {
    margin-right: 275px;
}

.mr280 {
    margin-right: 280px;
}

.mr285 {
    margin-right: 285px;
}

.mr290 {
    margin-right: 290px;
}

.mr295 {
    margin-right: 295px;
}

.mr300 {
    margin-right: 300px;
}

.mr305 {
    margin-right: 305px;
}

.mr310 {
    margin-right: 310px;
}

.mr315 {
    margin-right: 315px;
}

.mr320 {
    margin-right: 320px;
}

.mr325 {
    margin-right: 325px;
}

.mr330 {
    margin-right: 330px;
}

.mr335 {
    margin-right: 335px;
}

.mr340 {
    margin-right: 340px;
}

.mr345 {
    margin-right: 345px;
}

.mr350 {
    margin-right: 350px;
}

.mr355 {
    margin-right: 355px;
}

.mr360 {
    margin-right: 360px;
}

.mr365 {
    margin-right: 365px;
}

.mr370 {
    margin-right: 370px;
}

.mr375 {
    margin-right: 375px;
}

.mr380 {
    margin-right: 380px;
}

.mr385 {
    margin-right: 385px;
}

.mr390 {
    margin-right: 390px;
}

.mr395 {
    margin-right: 395px;
}

.mr400 {
    margin-right: 400px;
}

.mr405 {
    margin-right: 405px;
}

.mr410 {
    margin-right: 410px;
}

.mr415 {
    margin-right: 415px;
}

.mr420 {
    margin-right: 420px;
}

.mr425 {
    margin-right: 425px;
}

.mr430 {
    margin-right: 430px;
}

.mr435 {
    margin-right: 435px;
}

.mr440 {
    margin-right: 440px;
}

.mr445 {
    margin-right: 445px;
}

.mr450 {
    margin-right: 450px;
}

.mr455 {
    margin-right: 455px;
}

.mr460 {
    margin-right: 460px;
}

.mr465 {
    margin-right: 465px;
}

.mr470 {
    margin-right: 470px;
}

.mr475 {
    margin-right: 475px;
}

.mr480 {
    margin-right: 480px;
}

.mr485 {
    margin-right: 485px;
}

.mr490 {
    margin-right: 490px;
}

.mr495 {
    margin-right: 495px;
}

.pt5 {
    padding-top: 5px !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt15 {
    padding-top: 15px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt25 {
    padding-top: 25px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pt35 {
    padding-top: 35px !important;
}

.pt40 {
    padding-top: 40px !important;
}

.pt45 {
    padding-top: 45px !important;
}

.pt50 {
    padding-top: 50px !important;
}

.pt55 {
    padding-top: 55px !important;
}

.pt60 {
    padding-top: 60px !important;
}

.pt65 {
    padding-top: 65px !important;
}

.pt70 {
    padding-top: 70px !important;
}

.pt75 {
    padding-top: 75px !important;
}

.pt80 {
    padding-top: 80px !important;
}

.pt85 {
    padding-top: 85px !important;
}

.pt90 {
    padding-top: 90px !important;
}

.pt95 {
    padding-top: 95px !important;
}

.pt100 {
    padding-top: 100px !important;
}

.pt105 {
    padding-top: 105px !important;
}

.pt110 {
    padding-top: 110px !important;
}

.pt115 {
    padding-top: 115px !important;
}

.pt120 {
    padding-top: 120px !important;
}

.pt125 {
    padding-top: 125px !important;
}

.pt130 {
    padding-top: 130px !important;
}

.pt135 {
    padding-top: 135px !important;
}

.pt140 {
    padding-top: 140px !important;
}

.pt145 {
    padding-top: 145px !important;
}

.pt150 {
    padding-top: 150px !important;
}

.pt155 {
    padding-top: 155px !important;
}

.pt160 {
    padding-top: 160px !important;
}

.pt165 {
    padding-top: 165px !important;
}

.pt170 {
    padding-top: 170px !important;
}

.pt175 {
    padding-top: 175px !important;
}

.pt180 {
    padding-top: 180px !important;
}

.pt185 {
    padding-top: 185px !important;
}

.pt190 {
    padding-top: 190px !important;
}

.pt195 {
    padding-top: 195px !important;
}

.pt200 {
    padding-top: 200px !important;
}

.pt205 {
    padding-top: 205px !important;
}

.pt210 {
    padding-top: 210px !important;
}

.pt215 {
    padding-top: 215px !important;
}

.pt220 {
    padding-top: 220px !important;
}

.pt225 {
    padding-top: 225px !important;
}

.pt230 {
    padding-top: 230px !important;
}

.pt235 {
    padding-top: 235px !important;
}

.pt240 {
    padding-top: 240px !important;
}

.pt245 {
    padding-top: 245px !important;
}

.pt250 {
    padding-top: 250px !important;
}

.pt255 {
    padding-top: 255px !important;
}

.pt260 {
    padding-top: 260px !important;
}

.pt265 {
    padding-top: 265px !important;
}

.pt270 {
    padding-top: 270px !important;
}

.pt275 {
    padding-top: 275px !important;
}

.pt280 {
    padding-top: 280px !important;
}

.pt285 {
    padding-top: 285px !important;
}

.pt290 {
    padding-top: 290px !important;
}

.pt295 {
    padding-top: 295px !important;
}

.pt300 {
    padding-top: 300px !important;
}

.pt305 {
    padding-top: 305px !important;
}

.pt310 {
    padding-top: 310px !important;
}

.pt315 {
    padding-top: 315px !important;
}

.pt320 {
    padding-top: 320px !important;
}

.pt325 {
    padding-top: 325px !important;
}

.pt330 {
    padding-top: 330px !important;
}

.pt335 {
    padding-top: 335px !important;
}

.pt340 {
    padding-top: 340px !important;
}

.pt345 {
    padding-top: 345px !important;
}

.pt350 {
    padding-top: 350px !important;
}

.pt355 {
    padding-top: 355px !important;
}

.pt360 {
    padding-top: 360px !important;
}

.pt365 {
    padding-top: 365px !important;
}

.pt370 {
    padding-top: 370px !important;
}

.pt375 {
    padding-top: 375px !important;
}

.pt380 {
    padding-top: 380px !important;
}

.pt385 {
    padding-top: 385px !important;
}

.pt390 {
    padding-top: 390px !important;
}

.pt395 {
    padding-top: 395px !important;
}

.pt400 {
    padding-top: 400px !important;
}

.pt405 {
    padding-top: 405px !important;
}

.pt410 {
    padding-top: 410px !important;
}

.pt415 {
    padding-top: 415px !important;
}

.pt420 {
    padding-top: 420px !important;
}

.pt425 {
    padding-top: 425px !important;
}

.pt430 {
    padding-top: 430px !important;
}

.pt435 {
    padding-top: 435px !important;
}

.pt440 {
    padding-top: 440px !important;
}

.pt445 {
    padding-top: 445px !important;
}

.pt450 {
    padding-top: 450px !important;
}

.pt455 {
    padding-top: 455px !important;
}

.pt460 {
    padding-top: 460px !important;
}

.pt465 {
    padding-top: 465px !important;
}

.pt470 {
    padding-top: 470px !important;
}

.pt475 {
    padding-top: 475px !important;
}

.pt480 {
    padding-top: 480px !important;
}

.pt485 {
    padding-top: 485px !important;
}

.pt490 {
    padding-top: 490px !important;
}

.pt495 {
    padding-top: 495px !important;
}

.pt-5 {
    padding-top: -5px;
}

.pt-10 {
    padding-top: -10px;
}

.pt-15 {
    padding-top: -15px;
}

.pt-20 {
    padding-top: -20px;
}

.pt-25 {
    padding-top: -25px;
}

.pt-30 {
    padding-top: -30px;
}

.pt-35 {
    padding-top: -35px;
}

.pt-40 {
    padding-top: -40px;
}

.pt-45 {
    padding-top: -45px;
}

.pt-50 {
    padding-top: -50px;
}

.pt-55 {
    padding-top: -55px;
}

.pt-60 {
    padding-top: -60px;
}

.pt-65 {
    padding-top: -65px;
}

.pt-70 {
    padding-top: -70px;
}

.pt-75 {
    padding-top: -75px;
}

.pt-80 {
    padding-top: -80px;
}

.pt-85 {
    padding-top: -85px;
}

.pt-90 {
    padding-top: -90px;
}

.pt-95 {
    padding-top: -95px;
}

.pt-100 {
    padding-top: -100px;
}

.pt-105 {
    padding-top: -105px;
}

.pt-110 {
    padding-top: -110px;
}

.pt-115 {
    padding-top: -115px;
}

.pt-120 {
    padding-top: -120px;
}

.pt-125 {
    padding-top: -125px;
}

.pt-130 {
    padding-top: -130px;
}

.pt-135 {
    padding-top: -135px;
}

.pt-140 {
    padding-top: -140px;
}

.pt-145 {
    padding-top: -145px;
}

.pt-150 {
    padding-top: -150px;
}

.pt-155 {
    padding-top: -155px;
}

.pt-160 {
    padding-top: -160px;
}

.pt-165 {
    padding-top: -165px;
}

.pt-170 {
    padding-top: -170px;
}

.pt-175 {
    padding-top: -175px;
}

.pt-180 {
    padding-top: -180px;
}

.pt-185 {
    padding-top: -185px;
}

.pt-190 {
    padding-top: -190px;
}

.pt-195 {
    padding-top: -195px;
}

.pt-200 {
    padding-top: -200px;
}

.pt-205 {
    padding-top: -205px;
}

.pt-210 {
    padding-top: -210px;
}

.pt-215 {
    padding-top: -215px;
}

.pt-220 {
    padding-top: -220px;
}

.pt-225 {
    padding-top: -225px;
}

.pt-230 {
    padding-top: -230px;
}

.pt-235 {
    padding-top: -235px;
}

.pt-240 {
    padding-top: -240px;
}

.pt-245 {
    padding-top: -245px;
}

.pt-250 {
    padding-top: -250px;
}

.pt-255 {
    padding-top: -255px;
}

.pt-260 {
    padding-top: -260px;
}

.pt-265 {
    padding-top: -265px;
}

.pt-270 {
    padding-top: -270px;
}

.pt-275 {
    padding-top: -275px;
}

.pt-280 {
    padding-top: -280px;
}

.pt-285 {
    padding-top: -285px;
}

.pt-290 {
    padding-top: -290px;
}

.pt-295 {
    padding-top: -295px;
}

.pt-300 {
    padding-top: -300px;
}

.pt-305 {
    padding-top: -305px;
}

.pt-310 {
    padding-top: -310px;
}

.pt-315 {
    padding-top: -315px;
}

.pt-320 {
    padding-top: -320px;
}

.pt-325 {
    padding-top: -325px;
}

.pt-330 {
    padding-top: -330px;
}

.pt-335 {
    padding-top: -335px;
}

.pt-340 {
    padding-top: -340px;
}

.pt-345 {
    padding-top: -345px;
}

.pt-350 {
    padding-top: -350px;
}

.pt-355 {
    padding-top: -355px;
}

.pt-360 {
    padding-top: -360px;
}

.pt-365 {
    padding-top: -365px;
}

.pt-370 {
    padding-top: -370px;
}

.pt-375 {
    padding-top: -375px;
}

.pt-380 {
    padding-top: -380px;
}

.pt-385 {
    padding-top: -385px;
}

.pt-390 {
    padding-top: -390px;
}

.pt-395 {
    padding-top: -395px;
}

.pt-400 {
    padding-top: -400px;
}

.pt-405 {
    padding-top: -405px;
}

.pt-410 {
    padding-top: -410px;
}

.pt-415 {
    padding-top: -415px;
}

.pt-420 {
    padding-top: -420px;
}

.pt-425 {
    padding-top: -425px;
}

.pt-430 {
    padding-top: -430px;
}

.pt-435 {
    padding-top: -435px;
}

.pt-440 {
    padding-top: -440px;
}

.pt-445 {
    padding-top: -445px;
}

.pt-450 {
    padding-top: -450px;
}

.pt-455 {
    padding-top: -455px;
}

.pt-460 {
    padding-top: -460px;
}

.pt-465 {
    padding-top: -465px;
}

.pt-470 {
    padding-top: -470px;
}

.pt-475 {
    padding-top: -475px;
}

.pt-480 {
    padding-top: -480px;
}

.pt-485 {
    padding-top: -485px;
}

.pt-490 {
    padding-top: -490px;
}

.pt-495 {
    padding-top: -495px;
}

.pb5 {
    padding-bottom: 5px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb15 {
    padding-bottom: 15px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb25 {
    padding-bottom: 25px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb35 {
    padding-bottom: 35px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb45 {
    padding-bottom: 45px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb55 {
    padding-bottom: 55px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb65 {
    padding-bottom: 65px;
}

.pb70 {
    padding-bottom: 70px;
}

.pb75 {
    padding-bottom: 75px;
}

.pb80 {
    padding-bottom: 80px;
}

.pb85 {
    padding-bottom: 85px;
}

.pb90 {
    padding-bottom: 90px;
}

.pb95 {
    padding-bottom: 95px;
}

.pb100 {
    padding-bottom: 100px;
}

.pb105 {
    padding-bottom: 105px;
}

.pb110 {
    padding-bottom: 110px;
}

.pb115 {
    padding-bottom: 115px;
}

.pb120 {
    padding-bottom: 120px;
}

.pb125 {
    padding-bottom: 125px;
}

.pb130 {
    padding-bottom: 130px;
}

.pb135 {
    padding-bottom: 135px;
}

.pb140 {
    padding-bottom: 140px;
}

.pb145 {
    padding-bottom: 145px;
}

.pb150 {
    padding-bottom: 150px;
}

.pb155 {
    padding-bottom: 155px;
}

.pb160 {
    padding-bottom: 160px;
}

.pb165 {
    padding-bottom: 165px;
}

.pb170 {
    padding-bottom: 170px;
}

.pb175 {
    padding-bottom: 175px;
}

.pb180 {
    padding-bottom: 180px;
}

.pb185 {
    padding-bottom: 185px;
}

.pb190 {
    padding-bottom: 190px;
}

.pb195 {
    padding-bottom: 195px;
}

.pb200 {
    padding-bottom: 200px;
}

.pb205 {
    padding-bottom: 205px;
}

.pb210 {
    padding-bottom: 210px;
}

.pb215 {
    padding-bottom: 215px;
}

.pb220 {
    padding-bottom: 220px;
}

.pb225 {
    padding-bottom: 225px;
}

.pb230 {
    padding-bottom: 230px;
}

.pb235 {
    padding-bottom: 235px;
}

.pb240 {
    padding-bottom: 240px;
}

.pb245 {
    padding-bottom: 245px;
}

.pb250 {
    padding-bottom: 250px;
}

.pb255 {
    padding-bottom: 255px;
}

.pb260 {
    padding-bottom: 260px;
}

.pb265 {
    padding-bottom: 265px;
}

.pb270 {
    padding-bottom: 270px;
}

.pb275 {
    padding-bottom: 275px;
}

.pb280 {
    padding-bottom: 280px;
}

.pb285 {
    padding-bottom: 285px;
}

.pb290 {
    padding-bottom: 290px;
}

.pb295 {
    padding-bottom: 295px;
}

.pb300 {
    padding-bottom: 300px;
}

.pb305 {
    padding-bottom: 305px;
}

.pb310 {
    padding-bottom: 310px;
}

.pb315 {
    padding-bottom: 315px;
}

.pb320 {
    padding-bottom: 320px;
}

.pb325 {
    padding-bottom: 325px;
}

.pb330 {
    padding-bottom: 330px;
}

.pb335 {
    padding-bottom: 335px;
}

.pb340 {
    padding-bottom: 340px;
}

.pb345 {
    padding-bottom: 345px;
}

.pb350 {
    padding-bottom: 350px;
}

.pb355 {
    padding-bottom: 355px;
}

.pb360 {
    padding-bottom: 360px;
}

.pb365 {
    padding-bottom: 365px;
}

.pb370 {
    padding-bottom: 370px;
}

.pb375 {
    padding-bottom: 375px;
}

.pb380 {
    padding-bottom: 380px;
}

.pb385 {
    padding-bottom: 385px;
}

.pb390 {
    padding-bottom: 390px;
}

.pb395 {
    padding-bottom: 395px;
}

.pb400 {
    padding-bottom: 400px;
}

.pb405 {
    padding-bottom: 405px;
}

.pb410 {
    padding-bottom: 410px;
}

.pb415 {
    padding-bottom: 415px;
}

.pb420 {
    padding-bottom: 420px;
}

.pb425 {
    padding-bottom: 425px;
}

.pb430 {
    padding-bottom: 430px;
}

.pb435 {

    padding-bottom: 435px;
}

.pb440 {
    padding-bottom: 440px;
}

.pb445 {
    padding-bottom: 445px;
}

.pb450 {
    padding-bottom: 450px;
}

.pb455 {
    padding-bottom: 455px;
}

.pb460 {
    padding-bottom: 460px;
}

.pb465 {
    padding-bottom: 465px;
}

.pb470 {
    padding-bottom: 470px;
}

.pb475 {
    padding-bottom: 475px;
}

.pb480 {
    padding-bottom: 480px;
}

.pb485 {
    padding-bottom: 485px;
}

.pb490 {
    padding-bottom: 490px;
}

.pb495 {
    padding-bottom: 495px;
}

.pl5 {
    padding-left: 5px;
}

.pl10 {
    padding-left: 10px;
}

.pl15 {
    padding-left: 15px;
}

.pl20 {
    padding-left: 20px;
}

.pl25 {
    padding-left: 25px;
}

.pl30 {
    padding-left: 30px;
}

.pl35 {
    padding-left: 35px;
}

.pl40 {
    padding-left: 40px;
}

.pl45 {
    padding-left: 45px;
}

.pl50 {
    padding-left: 50px;
}

.pl55 {
    padding-left: 55px;
}

.pl60 {
    padding-left: 60px;
}

.pl65 {
    padding-left: 65px;
}

.pl70 {
    padding-left: 70px;
}

.pl75 {
    padding-left: 75px;
}

.pl80 {
    padding-left: 80px;
}

.pl85 {
    padding-left: 85px;
}

.pl90 {
    padding-left: 90px;
}

.pl95 {
    padding-left: 95px;
}

.pl100 {
    padding-left: 100px;
}

.pl105 {
    padding-left: 105px;
}


.pl110 {
    padding-left: 110px;
}

.pl115 {
    padding-left: 115px;
}

.pl120 {
    padding-left: 120px;
}

.pl125 {
    padding-left: 125px;
}

.pl130 {
    padding-left: 130px;
}

.pl135 {
    padding-left: 135px;
}

.pl140 {
    padding-left: 140px;
}

.pl145 {
    padding-left: 145px;
}

.pl150 {
    padding-left: 150px;
}

.pl155 {
    padding-left: 155px;
}

.pl160 {
    padding-left: 160px;
}

.pl165 {
    padding-left: 165px;
}

.pl170 {
    padding-left: 170px;
}

.pl175 {
    padding-left: 175px;
}

.pl180 {
    padding-left: 180px;
}

.pl185 {
    padding-left: 185px;
}

.pl190 {
    padding-left: 190px;
}

.pl195 {
    padding-left: 195px;
}

.pl200 {
    padding-left: 200px;
}

.pl205 {
    padding-left: 205px;
}

.pl210 {
    padding-left: 210px;
}

.pl215 {
    padding-left: 215px;
}

.pl220 {
    padding-left: 220px;
}

.pl225 {
    padding-left: 225px;
}

.pl230 {
    padding-left: 230px;
}

.pl235 {
    padding-left: 235px;
}

.pl240 {
    padding-left: 240px;
}

.pl245 {
    padding-left: 245px;
}

.pl250 {
    padding-left: 250px;
}

.pl255 {
    padding-left: 255px;
}

.pl260 {
    padding-left: 260px;
}

.pl265 {
    padding-left: 265px;
}

.pl270 {
    padding-left: 270px;
}

.pl275 {
    padding-left: 275px;
}

.pl280 {
    padding-left: 280px;
}

.pl285 {
    padding-left: 285px;
}

.pl290 {
    padding-left: 290px;
}

.pl295 {
    padding-left: 295px;
}

.pl300 {
    padding-left: 300px;
}

.pl305 {
    padding-left: 305px;
}

.pl310 {
    padding-left: 310px;
}

.pl315 {
    padding-left: 315px;
}

.pl320 {
    padding-left: 320px;
}

.pl325 {
    padding-left: 325px;
}

.pl330 {
    padding-left: 330px;
}

.pl335 {
    padding-left: 335px;
}

.pl340 {
    padding-left: 340px;
}

.pl345 {
    padding-left: 345px;
}

.pl350 {
    padding-left: 350px;
}

.pl355 {
    padding-left: 355px;
}

.pl360 {
    padding-left: 360px;
}

.pl365 {
    padding-left: 365px;
}

.pl370 {
    padding-left: 370px;
}

.pl375 {
    padding-left: 375px;
}

.pl380 {
    padding-left: 380px;
}

.pl385 {
    padding-left: 385px;
}

.pl390 {
    padding-left: 390px;
}

.pl395 {
    padding-left: 395px;
}

.pl400 {
    padding-left: 400px;
}

.pl405 {
    padding-left: 405px;
}

.pl410 {
    padding-left: 410px;
}

.pl415 {
    padding-left: 415px;
}

.pl420 {
    padding-left: 420px;
}

.pl425 {
    padding-left: 425px;
}

.pl430 {
    padding-left: 430px;
}

.pl435 {
    padding-left: 435px;
}

.pl440 {
    padding-left: 440px;
}

.pl445 {
    padding-left: 445px;
}

.pl450 {
    padding-left: 450px;
}

.pl455 {
    padding-left: 455px;
}

.pl460 {
    padding-left: 460px;
}

.pl465 {
    padding-left: 465px;
}

.pl470 {
    padding-left: 470px;
}

.pl475 {
    padding-left: 475px;
}

.pl480 {
    padding-left: 480px;
}

.pl485 {
    padding-left: 485px;
}

.pl490 {
    padding-left: 490px;
}

.pl495 {
    padding-left: 495px;
}

.pl-5 {
    padding-left: -5px !important;
}

.pl-10 {
    padding-left: -5px !important;
}

.pl-15 {
    padding-left: -5px !important;
}

.pl-20 {
    padding-left: -5px !important;
}

.pl-25 {
    padding-left: -5px !important;
}

.pl-30 {
    padding-left: -5px !important;
}

.pl-35 {
    padding-left: -5px !important;
}

.pl-40 {
    padding-left: -5px !important;
}

.pl-45 {
    padding-left: -5px !important;
}

.pl-50 {
    padding-left: -5px !important;
}

.pl-55 {
    padding-left: -5px !important;
}

.pl-60 {
    padding-left: -5px !important;
}

.pl-65 {
    padding-left: -5px !important;
}

.pl-70 {
    padding-left: -5px !important;
}

.pl-75 {
    padding-left: -5px !important;
}

.pl-80 {
    padding-left: -5px !important;
}

.pl-85 {
    padding-left: -5px !important;
}

.pl-90 {
    padding-left: -5px !important;
}

.pl-95 {
    padding-left: -5px !important;
}

.pl-100 {
    padding-left: -5px !important;
}

.pl-105 {
    padding-left: -5px !important;
}

.pl-110 {
    padding-left: -5px !important;
}

.pl-115 {
    padding-left: -5px !important;
}

.pl-120 {
    padding-left: -5px !important;
}

.pl-125 {
    padding-left: -5px !important;
}

.pl-130 {
    padding-left: -5px !important;
}

.pl-135 {
    padding-left: -5px !important;
}

.pl-140 {
    padding-left: -5px !important;
}

.pl-145 {
    padding-left: -5px !important;
}

.pl-150 {
    padding-left: -5px !important;
}

.pl-155 {
    padding-left: -5px !important;
}

.pl-160 {
    padding-left: -5px !important;
}

.pl-165 {
    padding-left: -5px !important;
}

.pl-170 {
    padding-left: -5px !important;
}

.pl-175 {
    padding-left: -5px !important;
}

.pl-180 {
    padding-left: -5px !important;
}

.pl-185 {
    padding-left: -5px !important;
}

.pl-190 {
    padding-left: -5px !important;
}

.pl-195 {
    padding-left: -5px !important;
}

.pl-200 {
    padding-left: -5px !important;
}

.pl-205 {
    padding-left: -5px !important;
}

.pl-210 {
    padding-left: -5px !important;
}

.pl-215 {
    padding-left: -5px !important;
}

.pl-220 {
    padding-left: -5px !important;
}

.pl-225 {
    padding-left: -5px !important;
}

.pl-230 {
    padding-left: -5px !important;
}

.pl-235 {
    padding-left: -5px !important;
}

.pl-240 {
    padding-left: -5px !important;
}

.pl-245 {
    padding-left: -5px !important;
}

.pl-250 {
    padding-left: -5px !important;
}

.pl-255 {
    padding-left: -5px !important;
}

.pl-260 {
    padding-left: -5px !important;
}

.pl-265 {
    padding-left: -5px !important;
}

.pl-270 {
    padding-left: -5px !important;
}

.pl-275 {
    padding-left: -5px !important;
}

.pl-280 {
    padding-left: -5px !important;
}

.pl-285 {
    padding-left: -5px !important;
}

.pl-290 {
    padding-left: -5px !important;
}

.pl-295 {
    padding-left: -5px !important;
}

.pl-300 {
    padding-left: -5px !important;
}

.pl-305 {
    padding-left: -5px !important;
}

.pl-310 {
    padding-left: -5px !important;
}

.pl-315 {
    padding-left: -5px !important;
}

.pl-320 {
    padding-left: -5px !important;
}

.pl-325 {
    padding-left: -5px !important;
}

.pl-330 {
    padding-left: -5px !important;
}

.pl-335 {
    padding-left: -5px !important;
}

.pl-340 {
    padding-left: -5px !important;
}

.pl-345 {
    padding-left: -5px !important;
}

.pl-350 {
    padding-left: -5px !important;
}

.pl-355 {
    padding-left: -5px !important;
}

.pl-360 {
    padding-left: -5px !important;
}

.pl-365 {
    padding-left: -5px !important;
}

.pl-370 {
    padding-left: -5px !important;
}

.pl-375 {
    padding-left: -5px !important;
}

.pl-380 {
    padding-left: -5px !important;
}

.pl-385 {
    padding-left: -5px !important;
}

.pl-390 {
    padding-left: -5px !important;
}

.pl-395 {
    padding-left: -5px !important;
}

.pl-400 {
    padding-left: -5px !important;
}

.pl-405 {
    padding-left: -5px !important;
}

.pl-410 {
    padding-left: -5px !important;
}

.pl-415 {
    padding-left: -5px !important;
}

.pl-420 {
    padding-left: -5px !important;
}

.pl-425 {
    padding-left: -5px !important;
}

.pl-430 {
    padding-left: -5px !important;
}

.pl-435 {
    padding-left: -5px !important;
}

.pl-440 {
    padding-left: -5px !important;
}

.pl-445 {
    padding-left: -5px !important;
}

.pl-450 {
    padding-left: -5px !important;
}

.pl-455 {
    padding-left: -5px !important;
}

.pl-460 {
    padding-left: -5px !important;
}

.pl-465 {
    padding-left: -5px !important;
}

.pl-470 {
    padding-left: -5px !important;
}

.pl-475 {
    padding-left: -5px !important;
}

.pl-480 {
    padding-left: -5px !important;
}

.pl-485 {
    padding-left: -5px !important;
}

.pl-490 {
    padding-left: -5px !important;
}

.pl-495 {
    padding-left: -5px !important;
}

.pr5 {
    padding-right: 5px;
}

.pr10 {
    padding-right: 10px;
}

.pr15 {
    padding-right: 15px;
}

.pr20 {
    padding-right: 20px;
}

.pr25 {
    padding-right: 25px;
}

.pr30 {
    padding-right: 30px;
}

.pr35 {
    padding-right: 35px;
}

.pr40 {
    padding-right: 40px;
}

.pr45 {
    padding-right: 45px;
}

.pr50 {
    padding-right: 50px;
}

.pr55 {
    padding-right: 55px;
}

.pr60 {
    padding-right: 60px;
}

.pr65 {
    padding-right: 65px;
}

.pr70 {
    padding-right: 70px;
}

.pr75 {
    padding-right: 75px;
}

.pr80 {
    padding-right: 80px;
}

.pr85 {
    padding-right: 85px;
}

.pr90 {
    padding-right: 90px;
}

.pr95 {
    padding-right: 95px;
}

.pr100 {
    padding-right: 100px;
}

.pr105 {
    padding-right: 105px;
}

.pr110 {
    padding-right: 110px;
}

.pr115 {
    padding-right: 115px;
}

.pr120 {
    padding-right: 120px;
}

.pr125 {
    padding-right: 125px;
}

.pr130 {
    padding-right: 130px;
}

.pr135 {
    padding-right: 135px;
}

.pr140 {
    padding-right: 140px;
}

.pr145 {
    padding-right: 145px;
}

.pr150 {
    padding-right: 150px;
}

.pr155 {
    padding-right: 155px;
}

.pr160 {
    padding-right: 160px;
}

.pr165 {
    padding-right: 165px;
}

.pr170 {
    padding-right: 170px;
}

.pr175 {
    padding-right: 175px;
}

.pr180 {
    padding-right: 180px;
}

.pr185 {
    padding-right: 185px;
}

.pr190 {
    padding-right: 190px;
}

.pr195 {
    padding-right: 195px;
}

.pr200 {
    padding-right: 200px;
}

.pr205 {
    padding-right: 205px;
}

.pr210 {
    padding-right: 210px;
}

.pr215 {
    padding-right: 215px;
}

.pr220 {
    padding-right: 220px;
}

.pr225 {
    padding-right: 225px;
}

.pr230 {
    padding-right: 230px;
}

.pr235 {
    padding-right: 235px;
}

.pr240 {
    padding-right: 240px;
}

.pr245 {
    padding-right: 245px;
}

.pr250 {
    padding-right: 250px;
}

.pr255 {
    padding-right: 255px;
}

.pr260 {
    padding-right: 260px;
}

.pr265 {
    padding-right: 265px;
}

.pr270 {
    padding-right: 270px;
}

.pr275 {
    padding-right: 275px;
}

.pr280 {
    padding-right: 280px;
}

.pr285 {
    padding-right: 285px;
}

.pr290 {
    padding-right: 290px;
}

.pr295 {
    padding-right: 295px;
}

.pr300 {
    padding-right: 300px;
}

.pr305 {
    padding-right: 305px;
}

.pr310 {
    padding-right: 310px;
}

.pr315 {
    padding-right: 315px;
}

.pr320 {
    padding-right: 320px;
}

.pr325 {
    padding-right: 325px;
}

.pr330 {
    padding-right: 330px;
}

.pr335 {
    padding-right: 335px;
}

.pr340 {
    padding-right: 340px;
}

.pr345 {
    padding-right: 345px;
}

.pr350 {
    padding-right: 350px;
}

.pr355 {
    padding-right: 355px;
}

.pr360 {
    padding-right: 360px;
}

.pr365 {
    padding-right: 365px;
}

.pr370 {
    padding-right: 370px;
}

.pr375 {
    padding-right: 375px;
}

.pr380 {
    padding-right: 380px;
}

.pr385 {
    padding-right: 385px;
}

.pr390 {
    padding-right: 390px;
}

.pr395 {
    padding-right: 395px;
}

.pr400 {
    padding-right: 400px;
}

.pr405 {
    padding-right: 405px;
}

.pr410 {
    padding-right: 410px;
}

.pr415 {
    padding-right: 415px;
}

.pr420 {
    padding-right: 420px;
}

.pr425 {
    padding-right: 425px;
}

.pr430 {
    padding-right: 430px;
}

.pr435 {
    padding-right: 435px;
}

.pr440 {
    padding-right: 440px;
}

.pr445 {
    padding-right: 445px;
}

.pr450 {
    padding-right: 450px;
}

.pr455 {
    padding-right: 455px;
}

.pr460 {
    padding-right: 460px;
}

.pr465 {
    padding-right: 465px;
}

.pr470 {
    padding-right: 470px;
}

.pr475 {
    padding-right: 475px;
}

.pr480 {

    padding-right: 480px;
}

.pr485 {
    padding-right: 485px;
}

.pr490 {
    padding-right: 490px;
}

.pr495 {
    padding-right: 495px;
}

.fz1 {
    font-size: 1px;
}

.fz2 {
    font-size: 2px;
}

.fz3 {
    font-size: 3px;
}

.fz4 {
    font-size: 4px;
}

.fz5 {
    font-size: 5px;
}

.fz6 {
    font-size: 6px;
}

.fz7 {
    font-size: 7px;
}

.fz8 {
    font-size: 8px;
}

.fz9 {
    font-size: 9px;
}

.fz10 {
    font-size: 10px;
}

.fz11 {
    font-size: 11px;
}

.fz12 {
    font-size: 12px;
}

.fz13 {
    font-size: 13px;
}

.fz14 {
    font-size: 14px;
}

.fz15 {
    font-size: 15px;
}

.fz16 {
    font-size: 16px;
}

.fz17 {
    font-size: 17px;
}

.fz18 {
    font-size: 18px;
}

.fz19 {
    font-size: 19px;
}

.fz20 {
    font-size: 20px;
}

.fz21 {
    font-size: 21px;
}

.fz22 {
    font-size: 22px;
}

.fz23 {
    font-size: 23px;
}

.fz24 {
    font-size: 24px;
}

.fz25 {
    font-size: 25px;
}

.fz26 {
    font-size: 26px;
}

.fz27 {
    font-size: 27px;
}

.fz28 {
    font-size: 28px;
}

.fz29 {
    font-size: 29px;
}

.fz30 {
    font-size: 30px;
}

.fz31 {
    font-size: 31px;
}

.fz32 {
    font-size: 32px;
}

.fz33 {
    font-size: 33px;
}

.fz34 {
    font-size: 34px;
}

.fz35 {
    font-size: 35px;
}

.fz36 {
    font-size: 36px;
}

.fz37 {
    font-size: 37px;
}

.fz38 {
    font-size: 38px;
}

.fz39 {
    font-size: 39px;
}

.fz40 {
    font-size: 40px;
}

.fz41 {
    font-size: 41px;
}

.fz42 {
    font-size: 42px;
}

.fz43 {
    font-size: 43px;
}

.fz44 {
    font-size: 44px;
}

.fz45 {
    font-size: 45px;
}

.fz46 {
    font-size: 46px;
}

.fz47 {
    font-size: 47px;
}

.fz48 {
    font-size: 48px;
}

.fz49 {
    font-size: 49px;
}

.lh1 {
    line-height: 1px;
}

.lh2 {
    line-height: 2px;
}

.lh3 {
    line-height: 3px;
}

.lh4 {
    line-height: 4px;
}

.lh5 {
    line-height: 5px;
}

.lh6 {
    line-height: 6px;
}

.lh7 {
    line-height: 7px;
}

.lh8 {
    line-height: 8px;
}

.lh9 {
    line-height: 9px;
}

.lh10 {
    line-height: 10px;
}

.lh11 {
    line-height: 11px;
}

.lh12 {
    line-height: 12px;
}

.lh13 {
    line-height: 13px;
}

.lh14 {
    line-height: 14px;
}

.lh15 {
    line-height: 15px;
}

.lh16 {
    line-height: 16px;
}

.lh17 {
    line-height: 17px;
}

.lh18 {
    line-height: 18px;
}

.lh19 {
    line-height: 19px;
}

.lh20 {
    line-height: 20px;
}

.lh21 {
    line-height: 21px;
}

.lh22 {
    line-height: 22px;
}

.lh23 {
    line-height: 23px;
}

.lh24 {
    line-height: 24px;
}

.lh25 {
    line-height: 25px;
}

.lh26 {
    line-height: 26px;
}

.lh27 {
    line-height: 27px;
}

.lh28 {
    line-height: 28px;
}

.lh29 {
    line-height: 29px;
}

.lh30 {
    line-height: 30px;
}

.lh31 {
    line-height: 31px;
}

.lh32 {
    line-height: 32px;
}

.lh33 {
    line-height: 33px;
}

.lh34 {
    line-height: 34px;
}

.lh35 {
    line-height: 35px;
}

.lh36 {
    line-height: 36px;
}

.lh37 {
    line-height: 37px;
}

.lh38 {
    line-height: 38px;
}

.lh39 {
    line-height: 39px;
}

.lh40 {
    line-height: 40px;
}

.lh41 {
    line-height: 41px;
}

.lh42 {
    line-height: 42px;
}

.lh43 {
    line-height: 43px;
}

.lh44 {
    line-height: 44px;
}

.lh45 {
    line-height: 45px;
}

.lh46 {
    line-height: 46px;
}

.lh47 {
    line-height: 47px;
}

.lh48 {
    line-height: 48px;
}

.lh49 {
    line-height: 49px;
}

.height1 {
    height: 1px;
}

.height2 {
    height: 2px;
}

.height3 {
    height: 3px;
}

.height4 {
    height: 4px;
}

.height5 {
    height: 5px;
}

.height6 {
    height: 6px;
}

.height7 {
    height: 7px;
}

.height8 {
    height: 8px;
}

.height9 {
    height: 9px;
}

.height10 {
    height: 10px;
}

.height11 {
    height: 11px;
}

.height12 {
    height: 12px;
}

.height13 {
    height: 13px;
}

.height14 {
    height: 14px;
}

.height15 {
    height: 15px;
}

.height16 {
    height: 16px;
}

.height17 {
    height: 17px;
}

.height18 {
    height: 18px;
}

.height19 {
    height: 19px;
}

.height20 {
    height: 20px;
}

.height21 {
    height: 21px;
}

.height22 {
    height: 22px;
}

.height23 {
    height: 23px;
}

.height24 {
    height: 24px;
}

.height25 {
    height: 25px;
}

.height26 {
    height: 26px;
}

.height27 {
    height: 27px;
}

.height28 {
    height: 28px;
}

.height29 {
    height: 29px;
}

.height30 {
    height: 30px;
}

.height31 {
    height: 31px;
}

.height32 {
    height: 32px;
}

.height33 {
    height: 33px;
}

.height34 {
    height: 34px;
}

.height35 {
    height: 35px;
}

.height36 {
    height: 36px;
}

.height37 {
    height: 37px;
}

.height38 {
    height: 38px;
}

.height39 {
    height: 39px;
}

.height40 {
    height: 40px;
}

.height41 {
    height: 41px;
}

.height42 {
    height: 42px;
}

.height43 {
    height: 43px;
}

.height44 {
    height: 44px;
}

.height45 {
    height: 45px;
}

.height46 {
    height: 46px;
}

.height47 {
    height: 47px;
}

.height48 {
    height: 48px;
}

.height49 {
    height: 49px;
}

.height50 {
    height: 50px;
}

.height51 {
    height: 51px;
}

.height52 {
    height: 52px;
}

.height53 {
    height: 53px;
}

.height54 {
    height: 54px;
}

.height55 {
    height: 55px;
}

.height56 {
    height: 56px;
}

.height57 {
    height: 57px;
}

.height58 {
    height: 58px;
}

.height59 {
    height: 59px;
}

.height60 {
    height: 60px;
}

.height61 {
    height: 61px;
}

.height62 {
    height: 62px;
}

.height63 {
    height: 63px;
}

.height64 {
    height: 64px;
}

.height65 {
    height: 65px;
}

.height66 {
    height: 66px;
}

.height67 {
    height: 67px;
}

.height68 {
    height: 68px;
}

.height69 {
    height: 69px;
}

.height70 {
    height: 70px;
}

.height71 {
    height: 71px;
}

.height72 {
    height: 72px;
}

.height73 {
    height: 73px;
}

.height74 {
    height: 74px;
}

.height75 {
    height: 75px;
}

.height76 {
    height: 76px;
}

.height77 {
    height: 77px;
}

.height78 {
    height: 78px;
}

.height79 {
    height: 79px;
}

.height80 {
    height: 80px;
}

.height81 {
    height: 81px;
}

.height82 {
    height: 82px;
}

.height83 {
    height: 83px;
}

.height84 {
    height: 84px;
}

.height85 {
    height: 85px;
}

.height86 {
    height: 86px;
}

.height87 {
    height: 87px;
}

.height88 {
    height: 88px;
}

.height89 {
    height: 89px;
}

.height90 {
    height: 90px;
}

.height91 {
    height: 91px;
}

.height92 {
    height: 92px;
}

.height93 {
    height: 93px;
}

.height94 {
    height: 94px;
}

.height95 {
    height: 95px;
}

.height96 {
    height: 96px;
}

.height97 {
    height: 97px;
}

.height98 {
    height: 98px;
}

.height99 {
    height: 99px;
}

.height100 {
    height: 100px;
}

.height101 {
    height: 101px;
}

.height102 {
    height: 102px;
}

.height103 {
    height: 103px;
}

.height104 {
    height: 104px;
}

.height105 {
    height: 105px;
}

.height106 {
    height: 106px;
}

.height107 {
    height: 107px;
}

.height108 {
    height: 108px;
}

.height109 {
    height: 109px;
}

.height110 {
    height: 110px;
}

.height111 {
    height: 111px;
}

.height112 {
    height: 112px;
}

.height113 {
    height: 113px;
}

.height114 {
    height: 114px;
}

.height115 {
    height: 115px;
}

.height116 {
    height: 116px;
}

.height117 {
    height: 117px;
}

.height118 {
    height: 118px;
}

.height119 {
    height: 119px;
}

.height120 {
    height: 120px;
}

.height121 {
    height: 121px;
}

.height122 {
    height: 122px;
}

.height123 {
    height: 123px;
}

.height124 {
    height: 124px;
}

.height125 {
    height: 125px;
}

.height126 {
    height: 126px;
}

.height127 {
    height: 127px;
}

.height128 {
    height: 128px;
}

.height129 {
    height: 129px;
}

.height130 {
    height: 130px;
}

.height131 {
    height: 131px;
}

.height132 {
    height: 132px;
}

.height133 {
    height: 133px;
}

.height134 {
    height: 134px;
}

.height135 {
    height: 135px;
}

.height136 {
    height: 136px;
}

.height137 {
    height: 137px;
}

.height138 {
    height: 138px;
}

.height139 {
    height: 139px;
}

.height140 {
    height: 140px;
}

.height141 {
    height: 141px;
}

.height142 {
    height: 142px;
}

.height143 {
    height: 143px;
}

.height144 {
    height: 144px;
}

.height145 {
    height: 145px;
}

.height146 {
    height: 146px;
}

.height147 {
    height: 147px;
}

.height148 {
    height: 148px;
}

.height149 {
    height: 149px;
}

.height150 {
    height: 150px;
}

.height151 {
    height: 151px;
}

.height152 {
    height: 152px;
}

.height153 {
    height: 153px;
}

.height154 {
    height: 154px;
}

.height155 {
    height: 155px;
}

.height156 {
    height: 156px;
}

.height157 {
    height: 157px;
}

.height158 {
    height: 158px;
}

.height159 {
    height: 159px;
}

.height160 {
    height: 160px;
}

.height161 {
    height: 161px;
}

.height162 {
    height: 162px;
}

.height163 {
    height: 163px;
}

.height164 {
    height: 164px;
}

.height165 {
    height: 165px;
}

.height166 {
    height: 166px;
}

.height167 {
    height: 167px;
}

.height168 {
    height: 168px;
}

.height169 {
    height: 169px;
}

.height170 {
    height: 170px;
}

.height171 {
    height: 171px;
}

.height172 {
    height: 172px;
}

.height173 {
    height: 173px;
}

.height174 {
    height: 174px;
}

.height175 {
    height: 175px;
}

.height176 {
    height: 176px;
}

.height177 {
    height: 177px;
}

.height178 {
    height: 178px;
}

.height179 {
    height: 179px;
}

.height180 {
    height: 180px;
}

.height181 {
    height: 181px;
}

.height182 {
    height: 182px;
}

.height183 {
    height: 183px;
}

.height184 {
    height: 184px;
}

.height185 {
    height: 185px;
}

.height186 {
    height: 186px;
}

.height187 {
    height: 187px;
}

.height188 {
    height: 188px;
}

.height189 {
    height: 189px;
}

.height190 {
    height: 190px;
}

.height191 {
    height: 191px;
}

.height192 {
    height: 192px;
}

.height193 {
    height: 193px;
}

.height194 {
    height: 194px;
}

.height195 {
    height: 195px;
}

.height196 {
    height: 196px;
}

.height197 {
    height: 197px;
}

.height198 {
    height: 198px;
}

.height199 {
    height: 199px;
}

.height200 {
    height: 200px;
}

.height201 {
    height: 201px;
}

.height202 {
    height: 202px;
}

.height203 {
    height: 203px;
}

.height204 {
    height: 204px;
}

.height205 {
    height: 205px;
}

.height206 {
    height: 206px;
}

.height207 {
    height: 207px;
}

.height208 {
    height: 208px;
}

.height209 {
    height: 209px;
}

.height210 {
    height: 210px;
}

.height211 {
    height: 211px;
}

.height212 {
    height: 212px;
}

.height213 {
    height: 213px;
}

.height214 {
    height: 214px;
}

.height215 {
    height: 215px;
}

.height216 {
    height: 216px;
}

.height217 {
    height: 217px;
}

.height218 {
    height: 218px;
}

.height219 {
    height: 219px;
}

.height220 {
    height: 220px;
}

.height221 {
    height: 221px;
}

.height222 {
    height: 222px;
}

.height223 {
    height: 223px;
}

.height224 {
    height: 224px;
}

.height225 {
    height: 225px;
}

.height226 {
    height: 226px;
}

.height227 {
    height: 227px;
}

.height228 {
    height: 228px;
}

.height229 {
    height: 229px;
}

.height230 {
    height: 230px;
}

.height231 {
    height: 231px;
}

.height232 {
    height: 232px;
}

.height233 {
    height: 233px;
}

.height234 {
    height: 234px;
}

.height235 {
    height: 235px;
}

.height236 {
    height: 236px;
}

.height237 {
    height: 237px;
}

.height238 {
    height: 238px;
}

.height239 {
    height: 239px;
}

.height240 {
    height: 240px;
}

.height241 {
    height: 241px;
}

.height242 {
    height: 242px;
}

.height243 {
    height: 243px;
}

.height244 {
    height: 244px;
}

.height245 {
    height: 245px;
}

.height246 {
    height: 246px;
}

.height247 {
    height: 247px;
}

.height248 {
    height: 248px;
}

.height249 {
    height: 249px;
}

.height250 {
    height: 250px;
}

.height251 {
    height: 251px;
}

.height252 {
    height: 252px;
}

.height253 {
    height: 253px;
}

.height254 {
    height: 254px;
}

.height255 {
    height: 255px;
}

.height256 {
    height: 256px;
}

.height257 {
    height: 257px;
}

.height258 {
    height: 258px;
}

.height259 {
    height: 259px;
}

.height260 {
    height: 260px;
}

.height261 {
    height: 261px;
}

.height262 {
    height: 262px;
}

.height263 {
    height: 263px;
}

.height264 {
    height: 264px;
}

.height265 {
    height: 265px;
}

.height266 {
    height: 266px;
}

.height267 {
    height: 267px;
}

.height268 {
    height: 268px;
}

.height269 {
    height: 269px;
}

.height270 {
    height: 270px;
}

.height271 {
    height: 271px;
}

.height272 {
    height: 272px;
}

.height273 {
    height: 273px;
}

.height274 {
    height: 274px;
}

.height275 {
    height: 275px;
}

.height276 {
    height: 276px;
}

.height277 {
    height: 277px;
}

.height278 {
    height: 278px;
}

.height279 {
    height: 279px;
}

.height280 {
    height: 280px;
}

.height281 {
    height: 281px;
}

.height282 {
    height: 282px;
}

.height283 {
    height: 283px;
}

.height284 {
    height: 284px;
}

.height285 {
    height: 285px;
}

.height286 {
    height: 286px;
}

.height287 {
    height: 287px;
}

.height288 {
    height: 288px;
}

.height289 {
    height: 289px;
}

.height290 {
    height: 290px;
}

.height291 {
    height: 291px;
}

.height292 {
    height: 292px;
}

.height293 {
    height: 293px;
}

.height294 {
    height: 294px;
}

.height295 {
    height: 295px;
}

.height296 {
    height: 296px;
}

.height297 {
    height: 297px;
}

.height298 {
    height: 298px;
}

.height299 {
    height: 299px;
}

.height530 {
    height: 530px;
}

.height800 {
    height: 800px;
}

.ui-datepicker {
    border: 1px solid #636363;
    background: #fff;
    margin-top: 10px;
    padding: 20px 2px 15px 2px;
    width: 250px;
    box-sizing: border-box;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.1);
    z-index: 3 !important;
}

.ui-datepicker .ui-datepicker-title {
    font-size: 13px;
    color: #202020;
    margin-left: 12px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    cursor: pointer;
    position: absolute;
    right: 0;
    /*
    background: url('/html/common/manager/images/icon_calendar_arr.png');
    */
    font-size: 0;
    width: 20px;
    height: 20px;
}

.ui-datepicker .ui-datepicker-prev {
    right: 45px;
}

.ui-datepicker .ui-datepicker-next {
    right: 15px;
    transform: rotate(180deg);
}

.ui-datepicker .ui-datepicker-calendar {
    width: 100%;
    margin-top: 20px;
}

.ui-datepicker .ui-datepicker-calendar th {
    color: #7d86a9;
    font-weight: normal;
}

.ui-datepicker .ui-datepicker-calendar th,
.ui-datepicker .ui-datepicker-calendar td {
    font-size: 12px;
    text-align: center;
}

.ui-datepicker .ui-datepicker-calendar th,
.ui-datepicker .ui-datepicker-calendar td,
.ui-datepicker .ui-datepicker-calendar a {
    font-weight: 300;
}

.ui-datepicker .ui-datepicker-calendar td,
.ui-datepicker .ui-datepicker-calendar a {
    color: #7d86a9;
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-calendar a {
    width: 25px;
    height: 25px;
    display: inline-block;
    line-height: 25px;
    color: inherit;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-active {
    background: #1676ff;
    color: #fff;
    border-radius: 50%;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-disabled {
    color: #e2e2e2;
}

.js__inlinedate {
    position: relative;
    min-height: 270px;
}

.js__inlinedate .ui-datepicker-inline {
    width: 100%;
    border: none;
    box-shadow: none;
}

.js__inlinedate .ui-datepicker-inline .ui-datepicker-calendar th {
    font-weight: bold;
}

.js__inlinedate .ui-datepicker-inline .ui-datepicker-calendar td.ui-datepicker-week-end span,
.js__inlinedate .ui-datepicker-inline .ui-datepicker-calendar td.ui-datepicker-week-end a {
    color: #f83b1f;
}

.js__inlinedate .ui-datepicker-inline .ui-datepicker-calendar td.sel-ok span,
.js__inlinedate .ui-datepicker-inline .ui-datepicker-calendar td.sel-ok a {
    background: #4283db;
    color: #fff;
    border-radius: 0%;
}

.js__inlinedate .ui-datepicker-inline .ui-datepicker-calendar span {
    width: 25px;
    height: 25px;
    display: inline-block;
    line-height: 25px;
    color: inherit;
    color: #6b6b6b;
}

.js__inlinedate .ui-datepicker-inline .ui-datepicker-calendar a.ui-state-default {
    background: #dae7f9;
    color: #4283db;
}

.js__inlinedate .ui-datepicker-inline .ui-datepicker-calendar a.ui-state-active {
    background: #4283db;
    color: #fff;
    border-radius: 0%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.row-cols-1>* {
    flex: 0 0 100%;
    max-width: 100%;
}

.row-cols-2>* {
    flex: 0 0 50%;
    max-width: 50%;
}

.row-cols-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.row-cols-4>* {
    flex: 0 0 25%;
    max-width: 25%;
}

.row-cols-5>* {
    flex: 0 0 20%;
    max-width: 20%;
}

.row-cols-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}

.order-11 {
    order: 11;
}

.order-12 {
    order: 12;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-sm-1>* {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-sm-2>* {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-sm-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .row-cols-sm-4>* {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-sm-5>* {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-sm-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-6 {
        order: 6;
    }

    .order-sm-7 {
        order: 7;
    }

    .order-sm-8 {
        order: 8;
    }

    .order-sm-9 {
        order: 9;
    }

    .order-sm-10 {
        order: 10;
    }

    .order-sm-11 {
        order: 11;
    }

    .order-sm-12 {
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-md-1>* {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-md-2>* {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-md-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .row-cols-md-4>* {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-md-5>* {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-md-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-6 {
        order: 6;
    }

    .order-md-7 {
        order: 7;
    }

    .order-md-8 {
        order: 8;
    }

    .order-md-9 {
        order: 9;
    }

    .order-md-10 {
        order: 10;
    }

    .order-md-11 {
        order: 11;
    }

    .order-md-12 {
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-lg-1>* {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-lg-2>* {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-lg-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .row-cols-lg-4>* {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-lg-5>* {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-lg-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-6 {
        order: 6;
    }

    .order-lg-7 {
        order: 7;
    }

    .order-lg-8 {
        order: 8;
    }

    .order-lg-9 {
        order: 9;
    }

    .order-lg-10 {
        order: 10;
    }

    .order-lg-11 {
        order: 11;
    }

    .order-lg-12 {
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1600px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-xl-1>* {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-xl-2>* {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-xl-3>* {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .row-cols-xl-4>* {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-xl-5>* {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-xl-6>* {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        order: -1;
    }

    .order-xl-last {
        order: 13;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-6 {
        order: 6;
    }

    .order-xl-7 {
        order: 7;
    }

    .order-xl-8 {
        order: 8;
    }

    .order-xl-9 {
        order: 9;
    }

    .order-xl-10 {
        order: 10;
    }

    .order-xl-11 {
        order: 11;
    }

    .order-xl-12 {
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-items-sm-baseline {
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        align-items: stretch !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-content-sm-between {
        align-content: space-between !important;
    }

    .align-content-sm-around {
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        align-self: auto !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .align-self-sm-baseline {
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        justify-content: space-around !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-baseline {
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        align-items: stretch !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-content-md-between {
        align-content: space-between !important;
    }

    .align-content-md-around {
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        align-content: stretch !important;
    }

    .align-self-md-auto {
        align-self: auto !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .align-self-md-baseline {
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-items-lg-baseline {
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        align-items: stretch !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-content-lg-between {
        align-content: space-between !important;
    }

    .align-content-lg-around {
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        align-self: auto !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .align-self-lg-baseline {
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        align-self: stretch !important;
    }
}

@media (min-width: 1600px) {
    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-items-xl-baseline {
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        align-items: stretch !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-content-xl-between {
        align-content: space-between !important;
    }

    .align-content-xl-around {
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        align-self: auto !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .align-self-xl-baseline {
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        align-self: stretch !important;
    }
}

.header .header-warp {
    width: 100%;
    padding: 0px 32px;
    margin: 0 auto;
    max-width: 1600px;
    min-width: 1420px;
}

/* fixed-top */
.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f2f2f2;
    z-index: 10;
}

.fixed-top .header-top-warp {
    position: relative;
    height: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.fixed-top .header-top-warp .header-top-logo a {
    display: flex;
    align-items: center;
    height: 26px;
}

.fixed-top .header-top-warp .header-top-logo a span {
    font-size: 12px;
    font-weight: 500;
    color: #bdbdbd;
    margin-left: 4px;
}

.fixed-top .header-top-warp .header-top-util {
    display: flex;
    width: 768px;
    height: 40px;
    justify-content: space-between;
    align-items: center;
}

.fixed-top .header-top-warp .header-top-util .top-util-info {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    color: #4b4b4b;
}

.fixed-top .header-top-warp .header-top-util .top-util-info .user-info-branch {
    margin-right: 10px;
}

.fixed-top .header-top-warp .header-top-util .top-util-membership a {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    color: #4b4b4b;
    font-weight: 500;
}

.fixed-top .header-top-warp .header-top-util .top-util-membership a.ms-logout {
    margin-right: 20px;
}

.fixed-top .header-top-warp .header-top-util .top-util-membership a::before {
    content: "";
    display: inline-block;
    margin-top: -0.3em;
    vertical-align: middle;
    width: 21px;
    height: 20px;
    margin-right: 6px;
}

.fixed-top .header-top-warp .header-top-util .top-util-membership a.ms-logout::before {
    background-image: url("/html/common/manager/images/ic_top_logout.png");
}

.fixed-top .header-top-warp .header-top-util .top-util-membership a.ms-modify::before {
    background-image: url("/html/common/manager/images/ic_top_user.png");
}

.fixed-top .header-top-warp .header-top-util .top-util-membership a:hover {
    color: #e61c19;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util {
    display: flex;
    justify-content: space-between;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li {
    padding: 0px 4px;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li>a {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #4b4b4b;
    padding-left: 5px;
    padding-right: 5px;
    height: 40px;
    line-height: 40px;
    transition: all 0.3s ease-out;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li>a.nav-link::after {
    content: "";
    display: inline-block;
    margin-top: -0.3em;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    background-image: url("/html/common/manager/images/ic_top_arrow_down.png");
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li>a.nav-link.active {
    background-color: #e61c19;
    color: #ffffff;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li>a.nav-link.active::after {
    background-image: url("/html/common/manager/images/ic_top_arrow_up.png");
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li>a:hover {
    color: #e61c19;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu {
    opacity: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    background-color: #ffffff;
    width: 213px;
    transition: all 0.3s ease-out;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu dt {
    background-color: #e61c19;
    color: #ffffff;
    text-align: center;
    padding: 6px 0px;
    border-radius: 0px 6px 0px 0px / 0px 6px 0px 0px;
    font-size: 14px;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu dt::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    background-image: url("/html/common/manager/images/ic_top_arrow_up.png");
    transform: rotate(90deg);
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu dd {
    background-color: #ffffff;
    border-radius: 0px 0px 6px 6px / 0px 0px 6px 6px;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 10px 20px 10px;
    color: #3b3b3b;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu dd>ul>li {
    line-height: 26px;
    font-size: 12px;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu dd>ul>li>a:hover {
    color: #e61c19;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu.active {
    opacity: 1;
    height: auto;
    overflow: visible;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu#dropdown-free {
    margin-left: -69px;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu#dropdown-free dt {
    border-radius: 6px 6px 0px 0px / 6px 6px 0px 0px;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu#dropdown-qna {
    margin-left: -160px;
}

.fixed-top .header-top-warp .header-top-util .top-util-menu .top-util>li .dropdown-menu#dropdown-qna dt {
    border-radius: 6px 0px 0px 0px / 6px 0px 0px 0px;
}

/* header-search */
.header-search {
    position: relative;
    width: 100%;
    margin-top: 40px;
    background: #ffffff;
    min-width: 1420px;
}

.header-search .search-top {
    position: relative;
    height: 64px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-search .search-top .search-logo {
    display: inline-block;
}

.header-search .search-top .top-search-arm {
    display: inline-block;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-search .search-top .top-search-arm .top-search {
    display: inline-block;
    margin-right: 112px;
}

.header-search .search-top .top-search-arm .top-search input {
    width: 372px;
}

.header-search .search-top .top-search-arm .top-search input:focus {
    border-color: #e61c19;
}

.header-search .search-top .top-search-arm .top-alarm-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-search .search-top .top-search-arm .top-alarm-list li {
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px;
    position: relative;
    text-align: right;
    width: 32px;
    height: 32px;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.header-search .search-top .top-search-arm .top-alarm-list li i {
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.header-search .search-top .top-search-arm .top-alarm-list li span {
    display: block;
    position: absolute;
    top: -5px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #dbdbdb;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    color: #fff;
}

.header-search .search-top .top-search-arm .top-alarm-list li span.new {
    background-color: #e61c19;
}

/* header-nav */
.sticky-top {
    position: relative;
    width: 100%;
    background: #ffffff;
    z-index: 9;
}

.sticky-top.fiexed {
    position: fixed;
    top: 40px;
}

.sticky-top .gnb-top {
    position: relative;
    height: 56px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 1420px;
    width: 100%;
}

.sticky-top .gnb-top .hd-gnb {
    width: calc(50% + 370px);
    height: 56px;
    border-radius: 0px 28px 28px 0px;
    background-color: #fff;
    background-clip: border-box;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    /*align-items: center;*/
    -ms-flex-pack: justify;
    justify-content: flex-end;
    position: relative;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp {
    width: 1140px;
    border-radius: 0px 28px 28px 0px;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar {
    padding-left: 0px;
    padding-right: 30px;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: flex-start;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li {
    width: 12%;
    text-align: center;
    position: relative;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li.gnb-all {
    width: auto;
    /* margin-right: auto; */
    min-width: 40px;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li>a {
    font-size: 18px;
    font-weight: 500;
    color: #3f3b3a;
    height: 56px;
    vertical-align: middle;
    display: table-cell;
    width: 140px !important;
    text-align: center;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li>a.on {
    color: #e61c19;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li>a.on+ul.gnb-sub {
    visibility: hidden;
    opacity: 0;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li:hover>a {
    color: #e61c19;
    background-image: url("/html/common/manager/images/bg_top_gnb_open.png");
    background-position: center top;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li:hover>ul.gnb-sub {
    visibility: visible;
    opacity: 1;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li>ul.gnb-sub {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 50px;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    padding-top: 0px;
    background-image: url("/html/common/manager/images/bg_top_gnb_open.png");
    background-position: center bottom;
    padding-bottom: 20px;
    /*transition: all .2s ease-in-out;*/
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li>ul.gnb-sub>li {
    height: 56px;
    vertical-align: middle;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li>ul.gnb-sub>li a {
    font-size: 14px;
    font-weight: 500;
    color: #3f3b3a;
    transition: all 0.3s;
    position: relative;
    display: block;
    line-height: 56px;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-warp .navbar .navbar-list>li>ul.gnb-sub>li a:hover {
    color: #e61c19;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full {
    opacity: 0;
    height: 0;
    transition: all 0.1s ease-in-out;
    overflow: hidden;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .btn-home-warp {
    position: absolute;
    top: 48px;
    right: 1100px;
    opacity: 0;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .btn-home-warp a {
    display: block;
    padding-top: 26px;
    font-size: 12px;
    color: #3f3b3a;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .btn-home-warp a:hover {
    color: #e61c19;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .btn-home-warp a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 18px;
    background-image: url("/html/common/manager/images/ic_top_home_black.png");
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .btn-close-warp {
    position: absolute;
    width: 1090px;
    bottom: 30px;
    right: 50px;
    text-align: center;
    opacity: 0;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .nav-full-sub {
    position: absolute;
    width: 952px;
    bottom: 100px;
    right: 100px;
    opacity: 0;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .nav-full-sub li {
    float: left;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .nav-full-sub li .btn-full {
    background: #ededed;
    width: 136px;
    height: 56px;
    display: block;
    text-align: center;
    line-height: 56px;
    font-size: 16px;

    font-weight: 500;
    color: #3f3b3a;
    position: relative;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .nav-full-sub li .btn-full::after {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transform: scaleX(0.3);
    transform: scaleX(0.3);
    opacity: 0;
    transition: all 0.3s;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .nav-full-sub li .btn-full:hover::after {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transition: -webkit-transform 0.6s cubic-bezier(0.08, 0.35, 0.13, 1.02), opacity 0.4s;
    transition: transform 0.6s cubic-bezier(0.08, 0.35, 0.13, 1.02), opacity;
}

.sticky-top .gnb-top .hd-gnb .hd-gnb-full .nav-full-sub li:nth-child(2n) .btn-full {
    background: #bdbdbd;
}

.sticky-top .gnb-top .hd-gnb.active {
    -webkit-box-shadow: inset -3px 0px 6px 0px rgba(0, 0, 0, 0.1);
    box-shadow: inset -3px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.sticky-top .gnb-top .hd-gnb.active .hd-gnb-warp .navbar .navbar-list>li>ul.gnb-sub {
    visibility: visible;
    opacity: 1;
    background-image: none;
}

.sticky-top .gnb-top .hd-gnb.active .hd-gnb-full {
    opacity: 1;
    position: absolute;
    width: 100%;
    height: 810px;
    background: #ffffff;
    top: 25px;
    z-index: -1;
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

.sticky-top .gnb-top .hd-gnb.active .hd-gnb-full .btn-home-warp {
    opacity: 1;
}

.sticky-top .gnb-top .hd-gnb.active .hd-gnb-full .btn-close-warp {
    opacity: 1;
}

.sticky-top .gnb-top .hd-gnb.active .hd-gnb-full .nav-full-sub {
    opacity: 1;
}

.sticky-top .gnb-top .hd-notice {
    width: calc(50% - 386px);
    height: 56px;
    border-radius: 28px 0px 0px 28px;
    background-color: #fff;
    background-clip: border-box;
    -webkit-box-shadow: 0 4px 16px -13px black;
    box-shadow: 0px 4px 16px -13px black;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: flex-start;
}

.sticky-top .gnb-top .hd-notice .hd-notice-warp {
    width: 358px;
    background: #ffffff;
    padding-left: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sticky-top .gnb-top .hd-notice .hd-notice-warp i.ic-top-nt {
    margin-right: 10px;
}

.sticky-top .gnb-top .hd-notice .hd-notice-warp span.hd-notict-text {
    font-size: 14px;
    font-weight: 300;
    color: #222222;
    width: auto;
}

.sticky-top .gnb-top .hd-notice .hd-notice-warp span.hd-notict-text a:hover {
    color: #e61c19;
}

.sticky-top .sidebar-warp {
    position: absolute;
    top: 56px;
    width: 100%;
    max-width: 224px;
    z-index: -2;
    transition: all 300ms cubic-bezier(0.8, 0, 0.33, 1);
}

.sticky-top .sidebar-warp .sidebar ul {
    min-height: 740px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: inset 0px -4px 24px 0px rgba(0, 0, 0, 0.1);
    transition: all 300ms cubic-bezier(0.8, 0, 0.33, 1);
}

.sticky-top .sidebar-warp .sidebar ul li {
    width: 224px;
    transition: all 300ms cubic-bezier(0.8, 0, 0.33, 1);
    overflow: hidden;
}

.sticky-top .sidebar-warp .sidebar ul li.didebar-heade a {
    background-color: #e61c19;
    color: #ffffff;
}

.sticky-top .sidebar-warp .sidebar ul li.didebar-heade a:hover {
    background-color: #e61c19;
}

.sticky-top .sidebar-warp .sidebar ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 56px;
    padding-left: 88px;
    line-height: 56px;
    font-size: 16px;
    font-weight: 400;
    color: #2f2f2f;
    transition: all 0.2s ease-in-out;
}

.sticky-top .sidebar-warp .sidebar ul li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 12px;
    left: 40px;
    width: 32px;
    height: 32px;
}

.sticky-top .sidebar-warp .sidebar ul li a.sb-email::before {
    background-image: url("/html/common/manager/images/ic_sidebar_email.png");
}

.sticky-top .sidebar-warp .sidebar ul li a.sb-email-write::before {
    background-image: url("/html/common/manager/images/ic_sidebar_write.png");
}

.sticky-top .sidebar-warp .sidebar ul li a.sb-email-receive::before {
    background-image: url("/html/common/manager/images/ic_sidebar_receive.png");
}

.sticky-top .sidebar-warp .sidebar ul li a.sb-email-send::before {
    background-image: url("/html/common/manager/images/ic_sidebar_send.png");
}

.sticky-top .sidebar-warp .sidebar ul li a.sb-email-book::before {
    background-image: url("/html/common/manager/images/ic_sidebar_book.png");
}

.sticky-top .sidebar-warp .sidebar ul li a.active,
.sticky-top .sidebar-warp .sidebar ul li a:hover {
    background-color: #ededed;
}

.sticky-top .sidebar-warp .sidebar ul li a.active.sb-email-write::before,
.sticky-top .sidebar-warp .sidebar ul li a:hover.sb-email-write::before {
    background-image: url("/html/common/manager/images/ic_sidebar_write_on.png");
}

.sticky-top .sidebar-warp .sidebar ul li a.active.sb-email-receive::before,
.sticky-top .sidebar-warp .sidebar ul li a:hover.sb-email-receive::before {
    background-image: url("/html/common/manager/images/ic_sidebar_receive_on.png");
}

.sticky-top .sidebar-warp .sidebar ul li a.active.sb-email-send::before,
.sticky-top .sidebar-warp .sidebar ul li a:hover.sb-email-send::before {
    background-image: url("/html/common/manager/images/ic_sidebar_send_on.png");
}

.sticky-top .sidebar-warp .sidebar ul li a.active.sb-email-book::before,
.sticky-top .sidebar-warp .sidebar ul li a:hover.sb-email-book::before {
    background-image: url("/html/common/manager/images/ic_sidebar_book_on.png");
}

.sticky-top .sidebar-warp.close {
    max-width: 88px;
}

.sticky-top .sidebar-warp.close ul {
    width: 88px;
    overflow: hidden;
}

.sticky-top .sidebar-warp.close ul li {
    width: 88px;
}

.sticky-top .sidebar-warp.close .btn-sidebar-close::before {
    background-image: url("/html/common/manager/images/ic_sidebar_arrow_right.png");
}

.sticky-top .sidebar-warp .btn-sidebar-close {
    position: absolute;
    top: 0px;
    right: -56px;
    width: 56px;
    height: 56px;
    font-size: 0px;
    background: #ffffff;
    -webkit-box-shadow: 0px 4px 16px -8px black;
    box-shadow: 0px 4px 16px -8px black;
    border-radius: 0px 12px 12px 0px / 0px 12px 12px 0px;
}

.sticky-top .sidebar-warp .btn-sidebar-close::before {
    content: "";
    display: block;
    position: absolute;
    top: 16px;
    left: 22px;
    width: 15px;
    height: 27px;
    background-image: url("/html/common/manager/images/ic_sidebar_arrow_left.png");
}

.sticky-top .sidebar-warp .btn-sidebar-close.close::before {
    background-image: url("/html/common/manager/images/ic_sidebar_arrow_right.png");
}

/* floating-area */
.floating-area {
    z-index: 9;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1400px;
    width: 100%;
}

.floating-area .floating-util {
    position: absolute;
    right: -100px;
    bottom: 50px;
    width: 80px;
    text-align: center;
}

.floating-area .floating-util .btn-top {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background-color: #3f3b3a;
    margin: 0 auto;
    margin-top: 8px;
    transition: background-color ease-in-out 0.2s;
    -webkit-box-shadow: 0px 4px 16px -8px black;
    box-shadow: 0px 4px 16px -8px black;
    font-size: 14px;
    color: #ffffff;
}

.floating-area .floating-util .btn-top:hover {
    background-color: #756e6c;
}

.floating-area .floating-util .btn-open {
    opacity: 1;
    height: 48px;
    width: 80px;
    border-radius: 8px;
    background-color: #ededed;
    margin: 0 auto;
    transition: background-color ease-in-out 0.2s;
    -webkit-box-shadow: 0px 4px 16px -8px black;
    box-shadow: 0px 4px 16px -8px black;
    color: #505050;
    font-size: 12px;
}

.floating-area .floating-util .btn-open:hover {
    background-color: #c5c5c5;
}

.floating-area .floating-util .floating-util-warp {
    opacity: 0;
    height: 0px;
    display: none;
    transition: all ease-in-out 0.2s;
}

.floating-area .floating-util .floating-util-warp .btn-close {
    z-index: -1;
}

.floating-area .floating-util .floating-util-warp ul {
    width: 80px;
    border-radius: 8px;
    margin: 0 auto;
    font-size: 12px;
    color: #505050;
    overflow: hidden;
    -webkit-box-shadow: 0px 4px 16px -8px black;
    box-shadow: 0px 4px 16px -8px black;
    margin-top: 12px;
}

.floating-area .floating-util .floating-util-warp ul li a {
    display: block;
    height: 48px;
    line-height: 48px;
    background-color: #ededed;
    transition: background-color ease-in-out 0.2s;
    position: relative;
}

.floating-area .floating-util .floating-util-warp ul li a::after {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transform: scaleX(0.3);
    transform: scaleX(0.3);
    opacity: 0;
    transition: all 0.3s;
}

.floating-area .floating-util .floating-util-warp ul li a:hover::after {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transition: -webkit-transform 0.6s cubic-bezier(0.08, 0.35, 0.13, 1.02), opacity 0.4s;
    transition: transform 0.6s cubic-bezier(0.08, 0.35, 0.13, 1.02), opacity;
}

.floating-area .floating-util .floating-util-warp ul li::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
}

.floating-area .floating-util .floating-util-warp ul li:last-child::after {
    display: none;
}

.floating-area .floating-util.on .btn-open {
    display: none;
}

.floating-area .floating-util.on .floating-util-warp {
    opacity: 1;
    height: auto;
    display: block;
}

main {
    margin-top: 30px;
    top: 0px;
}

.cont-grid {
    max-width: 1400px;
    min-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: inherit;
}

.site-width {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: inherit;
}

.row.ta-r {
    justify-content: flex-end;
    margin-right: 5px !important;
}

.frm-row {
    display: flex;
    align-items: center;
}

.div-hidden {
    display: none;
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
}

.pagination .page-link {
    position: relative;
    display: block;
    padding: 0.25rem 0.48rem;
    line-height: 1.25;
    color: #7c7c7c;
    background-color: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 2px;
    margin: 0px 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pagination .page-link:hover {
    color: #fff;
    background-color: #7c7c7c;
    border-color: #7c7c7c;
}

.pagination .page-link i {
    display: inline-block;
    vertical-align: middle;
    /* margin-top: -0.3em; */
}

.pagination .page-item.active .page-link {
    background-color: #3f3b3a;
    border-color: #3f3b3a;
    color: #fff;
    z-index: 1;
}

.dev {
    border: 1px solid red;
}

.cnt-main-warp .card .card-header {
    padding: 0px 24px;
    margin: 0px;
    display: block;
    width: 100%;
    height: 48px;
    background-color: #3f3b3a;
    border-radius: 0px 22px 22px 0px / 0px 22px 22px 0px;
}

.cnt-main-warp .card .card-header .tit-1 a {
    display: inline-block;
    font-size: 18px;
    line-height: 48px;
    color: #ffffff;
    width: 100%;
    height: 48px;
    transition: all ease-in 0.2s;
}

.cnt-main-warp .card .card-header .tit-1 a::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 13px;
    line-height: 48px;
    margin-top: 16px;
    float: right;
    background: url("/html/common/manager/images/ic_main_tit_arrow_next.png");
    transition: all ease-in 0.2s;
}

.cnt-main-warp .card .card-header .tit-1 a:hover {
    color: #cccccc;
}

.cnt-main-warp .card .card-header .tit-1 a:hover::after {
    transform: translateX(8px);
}

.cnt-main-warp .card-body .main-tab-header {
    margin-top: 9px;
    margin-bottom: 10px;
    overflow: hidden;
    overflow-x: scroll;
    height: 50px;
}

.cnt-main-warp .card-body .main-tab-header::-webkit-scrollbar {
    display: none;
}

.cnt-main-warp .card-body .main-tab-header ul {
    width: 566px;
}

.cnt-main-warp .card-body .main-tab-header ul li {
    float: left;
}

.cnt-main-warp .card-body .main-tab-header ul li a {
    display: inline-block;
    padding: 0px 15px;
    min-height: 40px;
    line-height: 40px;
    border: 1px solid #e5eff8;
    border-radius: 10px;
    margin-right: 8px;
}

.cnt-main-warp .card-body .main-tab-header ul li a.active {
    background-color: #fae6e5;
    color: #e61c19;
    border: none;
}

.cnt-main-warp .card-body .main-tab-header ul::after {
    content: "";
    display: block;
    clear: both;
}

.cnt-main-warp .card-body .tab-content {
    display: none;
}

.cnt-main-warp .card-body .tab-content.active {
    display: block;
}

.cnt-main-warp .card-body .main-timeline td {
    padding: 20px;
}

.cnt-main-warp .card-body .main-timeline td>ul {
    position: relative;
    margin-bottom: 20px;
}

.cnt-main-warp .card-body .main-timeline td>ul li.ico-warp {
    display: inline-block;
    width: 48px;
    text-align: center;
}

.cnt-main-warp .card-body .main-timeline td>ul li.ico-warp div.ico {
    position: absolute;
    top: 0px;
    width: 32px;
    height: 32px;
    color: #ffffff;
    line-height: 32px;
    border-radius: 100%;
    background-color: #756e6c;
}

.cnt-main-warp .card-body .main-timeline td>ul li.txt {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
}

.cnt-main-warp .card-body .main-timeline td>ul::after {
    content: "";
    display: block;
    clear: both;
}

.cnt-main-warp .card-body .main-timeline td>ul:last-child {
    margin-bottom: 0px;
}

.cnt-main-warp .card-body .division-txt {
    display: inline-block;
    width: 100%;
    text-align: right;
    font-size: 10px;
    font-weight: 400;
    color: #3b3b3b;
}

.cnt-main-warp .card-body .summary-warp {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 24px;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list {
    display: flex;
    justify-content: space-between;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li {
    display: block;
    width: 86px;
    height: 95px;
    text-align: center;
    background: #ededed;
    border-radius: 8px;
    overflow: hidden;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .summary-head {
    height: 48px;
    color: #ffffff;
    line-height: 48px;
    position: relative;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .summary-head span {
    display: inline-block;
    line-height: 16px !important;
    font-size: 12px;
    margin-top: 10px;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .summary-head::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 0px;
    height: 0px;
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .summary-head.bc-blue {
    background-color: #2a6198;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .summary-head.bc-blue::after {
    border-top: 6px solid #2a6198;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .summary-head.bc-gray {
    background-color: #a5a5a5;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .summary-head.bc-gray::after {
    border-top: 6px solid #a5a5a5;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .summary-head.bc-red {
    background-color: #e61c19;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .summary-head.bc-red::after {
    border-top: 6px solid #e61c19;
}

.cnt-main-warp .card-body .summary-warp ul.summary-list li .txt-value {
    line-height: 48px;
}

.cnt-main-warp .card-body .tit-txt {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background-color: #fae6e5;
    color: #e61c19;
    font-size: 16px;
    margin-bottom: 16px;
    text-align: center;
    border-radius: 8px 8px 0px 0px / 8px 8px 0px 0px;
}

.cnt-main-warp .card-body .info-warp {
    display: flex;
    padding: 0px 0px 0px 0px;
    justify-content: space-between;
    width: 316px;
    margin-left: 14px;
}

.cnt-main-warp .card-body .info-warp .info-box {
    display: flex;
    align-items: center;
    width: 152px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    color: #ffffff;
    padding: 0px 20px;
    justify-content: space-between;
}

.cnt-main-warp .card-body .info-warp .info-box.bc-black {
    background-color: #3f3b3a;
}

.cnt-main-warp .card-body .info-warp .info-box.bc-red {
    background-color: #e61c19;
}

.cnt-main-warp .chart-warp .chart-header {
    min-height: 16px;
    margin-top: 9px;
    margin-bottom: 24px;
}

.cnt-main-warp .chart-warp .chart-header ul {
    float: right;
    width: 320px;
    display: flex;
    justify-content: flex-end;
}

.cnt-main-warp .chart-warp .chart-header ul li.chart-tit {
    display: block;
    width: 100%;
    height: 16px;
    line-height: 16px;
    max-width: 80px;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
    color: #222222;
    margin: 0px;
    padding: 0px;
}

.cnt-main-warp .chart-warp .chart-header ul li.chart-tit.ct-1 {
    background-color: #86c7e3;
}

.cnt-main-warp .chart-warp .chart-header ul li.chart-tit.ct-2 {
    background-color: #f5ac76;
}

.cnt-main-warp .chart-warp .chart-header ul li.chart-tit.ct-3 {
    background-color: #efd156;
}

.cnt-main-warp .chart-warp .chart-header ul li.chart-tit.ct-4 {
    background-color: #d64b49;
    color: #ffffff;
    border-radius: 0px 8px 8px 0px / 0px 8px 8px 0px;
}

.cnt-main-warp .chart-warp .chart-header::after {
    content: "";
    display: block;
    clear: both;
}