html {
    font-size:62.5%;
}

html.ovh {
    overflow: hidden;
}

html.gnbopen::before {
    content:"";
    display:block;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
    position:fixed;
    left:0;
    top:0;
    z-index:99;
}

body {
    width: 100%;
    height:100%;
    position: relative;
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size:1.6rem;
    letter-spacing: -0.03em;
    line-height: 1.5;
    word-break: keep-all;
    color: #212121;
    -webkit-text-size-adjust: 100%;
}

.sr-only {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: .1rem;
    height: .1rem;
    clip: rect(0.1rem, 0.1rem, 0.1rem, 0.1rem);
    opacity: 0;
    overflow: hidden;
}

header {
    position: relative;
    z-index: 100;
    background: #fff;
    width:100%;
    height:11rem;
    padding:0 4rem;
    --dropdown-top: 0;
    --depth1-height: 11rem;
    --dropdown-height: 36rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

header.sub {
    border-bottom:1px solid #e5e5e5
}

#logo {
    width:30.3rem;
}

.gnb {
    flex: 1 1 auto;
    position: static;
}

.gnb > ul {
    display: flex;
    justify-content: center;
    max-width: 100rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.gnb > ul > li {
    position: static;
}

.gnb > ul > li > .depth1 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--depth1-height);
    padding: 0 4rem;
    box-sizing: border-box;
    font-size: 2.4rem;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    text-align: center;
}

header::after {
    content: "";
    position: absolute;
    left: 0;
    top: var(--dropdown-top);
    width: 100%;
    height: var(--dropdown-height);
    background: #fff;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    box-sizing: border-box;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        visibility 0s linear 0.28s,
        height 0.22s ease;
    /* background-image:url(../images/ktpa_bg.png);
    background-position:right 5rem bottom -5rem;
    background-repeat:no-repeat; */
}

header.sub::after {
    border-top:0;
}

header.is-open::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        height 0.22s ease;
}

.gnb .depth2 {
    position: absolute;
    top: var(--depth1-height);
    height: var(--dropdown-height);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition:
        opacity 0.26s ease,
        transform 0.26s ease,
        visibility 0s linear 0.26s;
}

header.is-open .gnb .depth2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
        opacity 0.26s ease,
        transform 0.26s ease;
}

.gnb .depth2-inner {
    min-height: var(--dropdown-height);
    padding: 5rem;
    box-sizing: border-box;
    border-left: 1px solid #eee;
    background: transparent;
}

.gnb > ul > li:first-child .depth2-inner {
    border-left: 0;
}

.gnb .depth2-tit {
    margin-bottom: 1.6rem;
    font-size: 3.2rem;
    letter-spacing: -0.03em;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.gnb .depth2 ul,
.gnb .depth3 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gnb .depth2 > .depth2-inner > ul > li {
    margin-top: 1rem;
}

.gnb .depth2 > .depth2-inner > ul > li:first-child {
    margin-top: 0;
}

.gnb .depth2 > .depth2-inner > ul > li > a {
    display: inline-block;
    font-size: 2.2rem;
    letter-spacing: -0.03em;
    line-height: 1.8;
    color: #222;
    text-decoration: none;
    word-break: keep-all;
}

.gnb .depth2 > .depth2-inner > ul > li > a:hover {
    font-weight:bold;
}

/* .gnb .depth2 > .depth2-inner > ul > li.has {
    margin-top: 1.8rem;
} */

.gnb .depth2 > .depth2-inner > ul > li.has:first-child {
    margin-top: 0;
}

.gnb .depth2 > .depth2-inner > ul > li.has > a {
    position: relative;
    display:flex;
    align-items: center;
    gap:8px;
}

.gnb .depth2 > .depth2-inner > ul > li.has > a::after {
    content: "";
    display:block;
    top: 50%;
    width: 2.2rem;
    height: 2.2rem;
    border-radius:0.6rem;
    border:1px solid #d7d7d7;
    background-position:center;
    background-repeat:no-repeat;
    background-image:url(../images/depth3_close.png);
}

.gnb .depth3 {
    margin: 0.5rem 0 1.2rem 0;
}

.gnb .depth2 > .depth2-inner > ul > li.has.is-open > .depth3 {
    display: block;
    padding:1.2rem 1.5rem;
    border-radius:0.6rem;
    background-color:#f5f6fa;
}

.gnb .depth2 > .depth2-inner > ul > li.has.is-open > a::after {
    background-image:url(../images/depth3_open.png);
}

.gnb .depth3 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gnb .depth3 li {
    margin-top: 0.6rem;
}

.gnb .depth3 li:first-child {
    margin-top: 0;
}

.gnb .depth3 a {
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: #555;
    text-decoration: none;
    word-break: keep-all;
    padding-left:0.4em;
    position:relative;
}

.gnb .depth3 a:hover {
    color:#2b5bca;
    font-weight:bold;
}

.gnb .depth3 a::before {
    content:"";
    display:block;
    width:3px;
    height:3px;
    background-color:#555;
    border-radius:50%;
    position:absolute;
    left:0;
    top:1rem;
}

.gnb .depth3 a:hover::before {
    background-color:#2b5bca;
}

.gnb > ul > li:hover > .depth1,
.gnb > ul > li:focus-within > .depth1 {
    color: #0057b8;
}

.gnb a:focus {
    outline: 0.2rem solid #000;
    outline-offset: -0.2rem;
}


.h-util {
    display:flex;
    align-items: center;
    gap:1rem;
}

.h-util .login {
    display:flex;
    align-items: center;
    justify-content: center;
    padding:0 2rem;
    height:5rem;
    border:1px solid #d7d7d7;
    border-radius:2.5rem;
    font-size:1.8rem;
    letter-spacing: -0.03em;
    color:#222222;
}

.h-util .total-search,
.h-util .lang-eng {
    width:5rem;
    height:5rem;
    border:1px solid #d7d7d7;
    box-sizing: border-box;
    border-radius:50%;
    background-position:center;
    background-repeat:no-repeat;
}

.h-util .total-search {
    font-size:0;
    text-indent:-99999999em;
}

.h-util .lang-eng {
    font-size:1.8rem;
    letter-spacing: -0.03em;
    text-align: center;
    color:#222;
    display:flex;
    align-items: center;
    justify-content: center;
}

.h-util .total-search {
    background-image:url(../images/search_ico.png);
}

.h-util .all-menu {
    position:relative;
    width:5rem;
    height:5rem;
    font-size:0;
    text-indent:-99999999em;
    border-radius:50%;
    background-color:#223978;
    background-position:center;
}

.h-util .all-menu::before, 
.h-util .all-menu::after {
    content:"";
    display:block;
    height:2px;
    background-color:#fff;
    position:absolute;
    left:50%;
    transition: all 0.3s;
}

.h-util .all-menu::before {
    width:2rem;
    top:calc(50% - 0.4rem);
    transform: translateX(-50%) translateY(-50%);
}

.h-util .all-menu::after {
    width:1.2rem;
    top:calc(50% + 0.4rem);
    left:calc(50% + 0.4rem);
    transform: translateX(-50%) translateY(-50%);
}

.h-util .all-menu.is-open::before {
    top:50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.h-util .all-menu.is-open::after {
    width:2rem;
    top:50%;
    left:50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

/*모바일 메뉴*/
.m-nav-btn {
    display:none;
    font-size:0;
    text-indent:-999999em;
    position:relative;
    width:5rem;
    height:5rem;
    font-size:0;
    text-indent:-99999999em;
    border-radius:50%;
    background-color:#223978;
    background-position:center;
}

.m-nav-btn::before, 
.m-nav-btn::after {
    content:"";
    display:block;
    height:2px;
    background-color:#fff;
    position:absolute;
    left:50%;
    transition: all 0.3s;
}

.m-nav-btn::before {
    width:2rem;
    top:calc(50% - 0.4rem);
    transform: translateX(-50%) translateY(-50%);
}

.m-nav-btn::after {
    width:1.2rem;
    top:calc(50% + 0.4rem);
    left:calc(50% + 0.4rem);
    transform: translateX(-50%) translateY(-50%);
}

.m-nav-wrap {
    opacity:0;
    visibility: hidden;
    position:fixed;
    right:0;
    top:0;
    height:100%;
    width:100%;
    transition: all 0.5s;
}

.m-nav-wrap.is-open {
    opacity:1;
    visibility: visible;
}

.m-nav-wrap::before {
    content:"";
    position: absolute;
    display:block;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: all 0.5s;
}

.m-nav-wrap.is-open::before {
    background: rgba(0,0,0,0.5);
}

.m-nav-box {
    position:absolute;
    right:-100%;
    top:0;
    width:100%;
    height:100%;
    max-width:48rem;
    background-color:#fff;
    box-shadow:0 0 1.5rem rgba(0,0,0,0.5);
    transition: all 0.5s;
}

.m-nav-wrap.is-open .m-nav-box {
    right:0;
}

.m-nav-head {
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap:1rem;
    background-color:#2b5bca;
    height:11rem;
    padding:0 1.6rem;
    box-sizing: border-box;
    border-bottom:1px solid rgba(255,255,255,0.5)
}

.m-nav-logo {
    font-size:3.2rem;
    color:#fff;
}

.m-nav-head-right {
    display:flex;
    align-items: center;
    gap:0.8rem;
}

.m-nav-head-right .login {
    display:flex;
    align-items: center;
    justify-content: center;
    font-size:1.8rem;
    color:#fff;
    border:1px solid #fff;
    width:9rem;
    height:4rem;
    border-radius:2rem;
}

.m-nav-head-right .m-menu-close {
    width:4rem;
    height:4rem;
    border:1px solid #fff;
    border-radius:50%;
    font-size:0;
    text-indent:-9999999em;
    position:relative;
}

.m-nav-head-right .m-menu-close::before,
.m-nav-head-right .m-menu-close::after {
    content:"";
    display:block;
    width:1.8rem;
    height:0.1rem;
    background-color:#fff;
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.m-nav-head-right .m-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.m-nav-links {
    background-color:#2b5bca;
}

.m-nav-links ul {
    display:flex;
    align-items: center;
}

.m-nav-links ul li {
    flex:1;
    border-right:1px solid rgba(255,255,255,0.5)
}

.m-nav-links ul li:last-child {
    border-right:0;
}

.m-nav-links ul li a {
    display:flex;
    align-items: center;
    justify-content: center;
    height:5rem;
    color:#fff;
    font-size:1.8rem;
}

nav.m-nav {
    max-height:calc(100% - 16rem);
    overflow: auto;
}

nav.m-nav ul li > .m-depth1 {
    display:flex;
    width:100%;
    align-items: center;
    justify-content: space-between;
    padding:0 1.5rem;
    font-size:1.8rem;
    height:5.5rem;
    border-bottom:1px solid #d7d7d7;
    font-weight:bold;
    color:#222;
}

nav.m-nav ul li > .m-depth1::after {
    content:"";
    display:block;
    width: 0.8rem;
    height: 0.8rem;
    border-left: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(-45deg);
    transition: transform 0.2s ease, margin-top 0.2s ease;
}

nav.m-nav ul li.is-open > .m-depth1::after {
    transform: rotate(135deg);
    margin-top:0.2rem;
}

nav.m-nav ul li > .m-depth2 {
    background-color:#f9f9f9;
    padding:1.5rem;
    border-bottom:1px solid #d7d7d7;
    box-sizing: border-box;
    display:none;
}

nav.m-nav ul li > .m-depth2.is-open {
    
}

nav.m-nav ul li > .m-depth2 > ul > li {
    position:relative;
    padding-left:0.8rem;
    margin-bottom:0.5rem;
}

nav.m-nav ul li > .m-depth2 > ul > li:last-child {
    margin-bottom:0;
}

nav.m-nav ul li > .m-depth2 > ul > li::before {
    content:"";
    display:block;
    width:0.3rem;
    height:0.3rem;
    border-radius:50%;
    position:absolute;
    left:0;
    top:1.1rem;
    background-color:#2b5bca;
}

nav.m-nav ul li > .m-depth2 > ul > li > a,
nav.m-nav ul li > .m-depth2 > ul > li > .m-depth2-toggle {
    color:#333;
    font-size:1.8rem;
    display:flex;
    align-items: center;
    font-weight:500;
}

nav.m-nav ul li > .m-depth2 > ul > li.is-open > .m-depth2-toggle {
    font-weight:bold;
}

nav.m-nav ul li > .m-depth2 ul li.has > .m-depth3 {
    background-color:#fff;
    padding:1rem;
    border:1px solid #eaeaea;
    margin-top:0.5rem;
    border-radius:0.4rem;
    display:none;
}


nav.m-nav ul li > .m-depth2 ul li.has > .m-depth3 ul li a {
    font-size:1.8rem;
}

footer {
    background-color:#f3f7fb;
    border-radius:5rem 5rem 0 0;
    padding:5rem 1.5rem 0 1.5rem;
    box-sizing: border-box;
    position:relative;
    z-index:3;
}

footer .inner {
    max-width:1600px;
    width:100%;
    margin:0 auto;
}

footer .ft-con {
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom:3.5rem;
}

footer .ft-con .left address {
    color:#222;
    margin-top:1.5rem;
}

footer .ft-con .left address p {
    font-size:1.8rem;
    letter-spacing: -0.03em;
    margin-bottom:0.5rem;
}

footer .ft-con .left address ul {
    display:flex;
    align-items: center;
}

footer .ft-con .left address ul li {
    margin-right:1.5rem;
    padding-right:1.5rem;
    position:relative;
}

footer .ft-con .left address ul li::after {
    content:"";
    display:block;
    width:0.1rem;
    height:1.2rem;
    background-color:#a8aaad;
    position:absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
}


footer .ft-con .left address ul li:last-child {
    margin-right:0;
    padding-right:0;
}

footer .ft-con .left address ul li:last-child::after {
    display:none;
}

footer .ft-con .right .site-select {
    display:flex;
    gap:1rem
}

footer .ft-con .right .site-select button {
    display:flex;
    align-items: center;
    justify-content: space-between;
    width:23rem;
    height:5.4rem;
    background-color:#fff;
    border-radius:1rem;
    padding:0 2rem;
    box-sizing: border-box;
    font-size:1.8rem;
    letter-spacing: -0.03em;
    color:#222222;
    text-align: left;
    position:relative;
    z-index:1;
    border:1px solid #d7d7d7
}

footer .ft-con .right .site-select button::after {
    content:"";
    display:block;
    width:1.4rem;
    height:0.8rem;
    background-image:url(../images/site_select_arrow_b.png);
    background-repeat:no-repeat;
    background-position:center;
    transition: all 0.5s;
}

footer .ft-con .right .site-select button.on::after {
    transform: rotate(180deg);
}

footer .ft-con .right .site-select .family-site,
footer .ft-con .right .site-select .tp-site {
    position:relative;
}

footer .ft-con .right .site-select button + div {
    display:none;
    position:absolute;
    bottom:4.4rem;
    max-height:32.4rem;
    overflow: auto;
    background-color:#fff;
    width:100%;
    z-index:0;
    padding-bottom:1rem;
    border-top:1px solid #d7d7d7;
    border-left:1px solid #d7d7d7;
    border-right:1px solid #d7d7d7;
    box-sizing: border-box;
}

footer .ft-con .right .site-select button.on + div {
    display:block;
}
 
footer .ft-con .right .site-select button + div ul li {
    border-bottom:1px solid rgba(0,0,0,0.15);
    box-sizing: border-box;
}

footer .ft-con .right .site-select button + div ul li:last-child {
    border-bottom:0;
}

footer .ft-con .right .site-select button + div ul li a {
    display:flex;
    align-items: center;
    padding:0 1.5rem;
    height:5.4rem;
    color:rgba(0,0,0,0.6)
}

footer .ft-con .right .sns-links {
    display:flex;
    justify-content: flex-end;
    margin-top:2rem;
    gap:1rem;
}

footer .ft-con .right .sns-links a {
    font-size:0;
    text-indent:-99999999em;
    width:4rem;
    height:4rem;
    border-radius:50%;
    background-color:rgba(255,255,255,0.2);
    background-position:center;
    background-repeat:no-repeat;
}

footer .ft-con .right .sns-links a.yt {
    background-image:url(../images/sns_yt.png);
    background-size:1.2rem;
    background-color:#e7161b
}

footer .ft-con .right .sns-links a.blog {
    background-image:url(../images/sns_blog.png);
    background-size:1.4rem;
    background-color:#32b44a;
}

footer .ft-con .right .sns-links a.fb {
    background-image:url(../images/sns_fb.png);
    background-size:1rem;
    background-color:#475993;
}

footer .ft-bottom {
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:3rem 0;
    border-top:1px solid rgba(0,0,0,0.1);
}

footer .ft-bottom .ft-links ul {
    display:flex;
    align-items: center;
    gap:2rem;
}

footer .ft-bottom .ft-links ul li a {
    color:#222;
    font-size:1.8rem;
}

footer .ft-bottom .ft-links ul li a.privacy {
    font-weight:bold
}

footer .ft-bottom p.copyright {
    color:#555;
    font-size:1.8rem;
}


/* 체크박스 */
.chk-box{
    display:inline-flex;
    align-items:center;
    cursor:pointer;
    position:relative;
    font-size:1.8rem;
    color:#222;
}

.chk-box input {
    position:absolute;
    opacity:0;
}

.chk-icon{
    width:2.4rem;
    height:2.4rem;
    border:1px solid #ccc;
    border-radius:0.6rem;
    margin-right:0.8rem;
    position:relative;
    transition:all .2s;
}

.chk-icon::after{
    content:'';
    position:absolute;
    left:50%;
    top:calc(50% - 0.2rem);
    width:0.7rem;
    height:1.2rem;
    border:solid #fff;
    border-width:0 2px 2px 0;
    transform:translate(-50%, -50%) rotate(45deg);
    opacity:0;
}

.chk-box input:checked + .chk-icon{
    background:#2563eb;
    border-color:#2563eb;
}

.chk-box input:checked + .chk-icon::after{
    opacity:1;
}

/* 라디오 */
.radio-options {
    display:flex;
    gap:2rem;
}

.input-radio {
    display:inline-flex;
    align-items:center;
    cursor:pointer;
    position:relative;
}

.input-radio input[type="radio"] {
    position:absolute;
    opacity:0;
    width:0;
    height:0;
    margin:0;
}

.input-radio span {
    display:inline-flex;
    align-items:center;
    gap:0.8rem;
    font-size:1.8rem;
    color:#222;
}

.input-radio span::before {
    content:"";
    display:block;
    width:2.4rem;
    height:2.4rem;
    background-image:url(../images/radio_off.png);
    background-repeat:no-repeat;
    background-position:center;
    background-size:100%;
    flex-shrink:0;
}

.input-radio input[type="radio"]:checked + span {
    font-weight:600;
}

.input-radio input[type="radio"]:checked + span::before {
     background-image:url(../images/radio_on.png);
}

.input-radio input[type="radio"]:focus + span::before {
    outline:2px dashed #ff0000;
    border-radius:50%;
    outline-offset:2px;
}


/* 스크롤 디자인 변경 */
.scroll-box::-webkit-scrollbar {
    width: 0.6rem;
    height: 0.6rem;
}

.scroll-box::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}

.scroll-box::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 1rem;
}

/*버튼*/
.btns-wrap {
    display:flex;
    gap:1rem;
    align-items: center;
    margin-top:2rem;
}

.btns-wrap.center {
    justify-content: center;
}

.btns-wrap.right {
    justify-content: flex-end;
}

.btns-wrap button,
.btns-wrap a {
   height:6rem;
   width:100%;
   display:flex;
   align-items: center;
   justify-content: center;
   font-weight:500;
   max-width:27rem;
}

.btns-wrap button.sm-btn,
.btns-wrap a.sm-btn {
    height:4.4rem;
    width:auto;
    padding:0 1.5rem;
}

.list-btn {
    background-color:#222;
    border-radius:0.6rem;
    color:#fff;
    font-size:1.8rem;
}

.cancle-btn {
    background-color:#fafafa;
    border-radius:0.6rem;
    border:1px solid #d7d7d7;
    color:#222;
    font-size:1.8rem;
}

.submit-btn {
    text-align: center;
    color:#fff;
    background-color:#223978;
    border-radius:0.6rem;
    height:6rem;
    padding:0 1.5rem;
    font-size:1.8rem;
    font-weight:bold;
}

.download-btn {
    text-align: center;
    color:#fff;
    background-color:#223978;
    border-radius:0.6rem;
    height:6rem;
    padding:0 1.5rem;
    font-size:1.8rem;
    font-weight:bold;
    gap:1rem;
}

.download-btn::after {
    content:"";
    display:block;
    width:2.1rem;
    height:1.6rem;
    background-image:url(../images/down_ico.png);
    background-repeat:no-repeat;
    background-position:center;
}

/*약관 관련*/
.terms-area {
    background-color:#fafafa;
    border-radius:0.6rem;
    padding:2rem 2rem 2rem 4rem;
    border:1px solid #d7d7d7;
    margin:1.5rem 0;
}

.terms-area .terms-doc {
    font-size:1.8rem;
    color:#222;
    max-height:19rem;
    overflow: auto;
}

.terms-area .terms-doc pre {
    white-space: pre-wrap;
}

/*동의 관련*/
.agree-area {
    display:flex;
    align-items: center;
    justify-content: flex-end;
    column-gap:3rem;
}

.agree-area .agree-question {
    font-size:1.8rem;
    color:#222;
}

.agree-area .agree-options {
    display:flex;
    gap:2rem;
}

.agree-info {
    background-color:#f5f6fa;
    padding:2rem;
}

.agree-info p {
    text-align: center;
    font-size:1.8rem;
    color:#222;
}

/* 정보입력 table */
.write-info {
    display:flex;
    justify-content: flex-end;
    margin-bottom:0.5rem;
}

.write-info p {
    font-size:1.6rem;
    color:#222;
}

.write-info span.req {
    color:#ff3c3c;
}

.write-table {
    border-top:1px solid #000;
    width:100%;
    table-layout: fixed;
}

.write-table .req {
    color:#ff3c3c;
    font-weight:bold;
}

.write-table tbody tr th {
    background-color:#f2f4f9;
    font-size:1.8rem;
    font-weight:bold;
    padding:1.5rem;
    border-bottom:1px solid #d9d9d9;
    letter-spacing: -0.03em;
}

.write-table tbody tr td {
    padding:1.5rem 3rem;
    border-bottom:1px solid #d9d9d9;
    letter-spacing: -0.03em;
    height:7.7rem;
    font-size:1.8rem;
    color:#222;
}

.write-table tbody tr td button {
    height:4.6rem;
    padding:0 1.5rem;
    color:#fff;
    background-color:#223978;
    border-radius:0.6rem;
    font-size:1.8rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.write-table tbody tr td button.upfile {
    background-color:#222222
}

.write-table tbody tr td a.btn {
    display:inline-flex;
    align-items: center;
    justify-content: center;
    height:4.6rem;
    width:auto;
    padding:0 1.5rem;
    border-radius:0.6rem;
    background-color:#3768cd;
    color:#fff;
    font-size:1.8rem;
    letter-spacing: -0.03em;
}

.write-table tbody tr td input[type=text],
.write-table tbody tr td input[type=password],
.write-table tbody tr td select {
    height:4.6rem;
    width:100%;
    border:1px solid #d7d7d7;
    border-radius:0.6rem;
    padding:0 1.5rem;
    flex: 10000 1 0%;
    font-size:1.8rem;
    letter-spacing: -0.03em;
}

.write-table tbody tr td textarea {
    width:100%;
    border:1px solid #d7d7d7;
    border-radius:0.6rem;
    padding:1.5rem;
    flex: 10000 1 0%;
    font-size:1.8rem;
    letter-spacing: -0.03em;
    font-family: "Pretendard", sans-serif;
    height:18.7rem;
    line-height:1.4;
}

.write-table .max-group {
    display:flex;
    align-items: flex-start;
    flex-wrap:wrap;
    gap: 1.2rem .8rem;
    width:100%;
}

.write-table .max-group.center {
    align-items: center;
}

.write-table .max-width-40 {
    max-width:40rem;
}

.write-table .caution {
    color:#e23030
}

.write-table dl dt {
    font-weight:bold;
    margin-bottom:0.8rem;
    letter-spacing: -0.03em;
}

.write-table dl dd {
    font-size:1.8rem;
    letter-spacing: -0.03em;
}

.write-table dl dd p {
    letter-spacing: -0.03em;
}

.write-table dl dd p + ul {
    margin-top:1rem;
}

.write-table dl dd ul li {
    letter-spacing: -0.03em;
}

.write-table tbody tr td table {
    border-top:1px solid #d9d9d9;
    width:100%;
    table-layout: fixed;
}

.write-table tbody tr td table thead tr th {
    padding:0.8rem;
    height:5.6rem;
    background-color:#f6f6f6;
}

.write-table tbody tr td table tbody tr td {
    padding:0.8rem;
    height:auto;
    text-align: center;
    height:5.6rem;
}

.write-table tbody tr td table thead tr th,
.write-table tbody tr td table tbody tr td  {
	border-left: 1px solid #d9d9d9;
	border-right: 1px solid #d9d9d9;
}
.write-table tbody tr td table thead tr th:first-child,
.write-table tbody tr td table tbody tr td:first-child {
	border-left: 0;
}

.write-table tbody tr td table thead tr th:last-child,
.write-table tbody tr td table tbody tr td:last-child {
	border-right: 0;
}

.write-table tbody tr td table tbody tr td input[type=text],
.write-table tbody tr td table tbody tr td input[type=password],
.write-table tbody tr td table tbody tr td select {
    height:4.4rem;
    padding:0 1rem;
}

.upfile-info ul li{
    display:flex;
    gap:1.5rem;
    align-items: center;
    flex-wrap:wrap;
    margin-bottom:1.5rem;
}

.upfile-info ul li:last-child {
    margin-bottom:0;
}

.upfile-info ul li a {
    font-weight:500;
    color:#222;
    letter-spacing: -0.03em;
    text-decoration: underline;
    font-size:1.8rem;
    position:relative;
    display:flex;
    align-items: center;
    gap:0.8rem;
}

.upfile-info ul li ::before {
    content:"";
    display:block;
    width:2.2rem;
    height:2.4rem;
    background-image:url(../images/upfile_ico.png);
    background-repeat:no-repeat;
    background-position:center;
    background-size:100%;
}

.upfile-info .delfile {
    width:2.6rem;
    height:2.6rem;
    border-radius:0.6rem;
    background-color:#e9494d;
    position:relative;
    padding:0;
    background-image:url(../images/del_ico.png);
    background-size:1.2rem;
    background-position:center;
    background-repeat:no-repeat;
}

/* 레이어 팝업 */
.layer-pop-wrap {
    display:none;
    padding:0 1.5rem;
    position:fixed;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    width:100%;
    z-index:99999;
}

.layer-pop {
    border-radius:1rem;
    border:1px solid #d7d7d7;
    background-color:#fff;
    overflow: hidden;
    box-shadow:0.6rem 0.6rem 1rem rgba(0,0,0,0.05);
}

.layer-pop .layer-pop-top {
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:0 2.5rem;
    background-color:#edeff8;
    height:5.4rem;
    gap:1rem;
}

.layer-pop .layer-pop-top .tit {
    font-size:2rem;
    font-weight:bold;
    color:#222;
}

.layer-pop .layer-pop-top .close-pop {
    width:1.4rem;
    height:1.4rem;
    position:relative;
}

.layer-pop .layer-pop-top .close-pop::before,
.layer-pop .layer-pop-top .close-pop::after {
    content:"";
    display:block;
    width:1.7rem;
    height:0.2rem;
    position:absolute;
    left:50%;
    top:50%;
    background-color:#222;
}

.layer-pop .layer-pop-top .close-pop::before {
    transform: translate(-50%,-50%) rotate(45deg);
}

.layer-pop .layer-pop-top .close-pop::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}

.layer-pop .layer-pop-con {
    padding:3rem;
}

.layer-pop .btns-wrap button,
.layer-pop .btns-wrap a {
   height:4.4rem;
   width:100%;
   max-width:14rem;
}

.layer-pop .info-box {
    padding:2rem 3rem;
} 

.layer-pop .input-area {
    display:flex;
    align-items: center;
    gap:0.4rem;
    margin-bottom:0.8rem;
    flex-wrap:wrap;
}

.layer-pop .input-area:last-of-type {
    margin-bottom:0;
}

.layer-pop .input-area label {
    max-width:calc(100% - 30.4rem);
    width:100%;
    font-size:1.8rem;
    font-weight:bold;
    color:#222222;
    letter-spacing: -0.03em;
}

.layer-pop .input-area label span.req {
    color:#ff3c3c;
    font-weight:bold;
    letter-spacing: -0.03em;
}

.layer-pop .input-area input[type=text],
.layer-pop .input-area input[type=password] {
    width:30rem;
    padding:0 1.5rem;
    height:4.4rem;
    border:1px solid #d7d7d7;
    border-radius:0.6rem;
    font-size:1.8rem;
}

/* 그리드js 영역 margin */
.grid-table {
    padding:2.5rem 0;
    width:100%;
}

.state {
    font-weight:bold;
    letter-spacing: -0.03em;
}

.state.reception {
    color:#3065cb;
}

.state.ing {
    color:#37aa27;
}

.state.rejected {
    color:#f32121
}

.state.done {
    color:#099ca1
}

@media (max-width: 1600px) {
    html {
        font-size:55%;
    }

    footer {
        border-radius:2rem 2rem 0 0;
    }
}

@media (max-width: 1480px) {
    html {
        font-size:50%
    }
}

@media (max-width: 1280px) {
    html {
        font-size:45%;
    }
    nav.gnb {
        display:none;
    }

    .h-util {
        display:none;
    }

    .m-nav-btn {
        display:block;
    }

    footer {
        border-radius:0;
    }

    footer .ft-con {
        flex-wrap:wrap;
    }

    footer .ft-con .left {
        width:100%;
        text-align: center;
    }

    footer .ft-con .left address ul {
        justify-content: center;
    }

    footer .ft-con .right {
        width:100%;
    }

    footer .ft-con .right .site-select {
        justify-content: center;
        margin-top:2rem;
    }

    footer .ft-con .right .sns-links {
        justify-content: center;
    }

    footer .ft-con .right .site-select .family-site,
    footer .ft-con .right .site-select .tp-site {
        width:calc((100% - 1rem) / 2);
        max-width:23rem;
    }
    
    footer .ft-con .right .site-select button {
        width:100%;
    }

    footer .ft-bottom {
        flex-wrap:wrap;
    }

    footer .ft-bottom .ft-links {
        width:100%;
    }

    footer .ft-bottom .ft-links ul {
        justify-content: center;
    }

    footer .ft-bottom p.copyright {
        width:100%;
        text-align: center;
        margin-top:2rem;
    }
}

@media (max-width:960px) {
    header {
        padding:0 2rem;
    }

    .ft-logo {
        width:32rem;
        margin:0 auto
    }

    .list-wrap .scroll-box {
        overflow: auto;
    }

    .list-wrap .scroll-box .list-table {
        width:1024px;
    }
}

@media (max-width: 768px) {
    #logo {
        width:25rem;
    }

    .write-table > colgroup {
        display:none;
    }

    .write-table > tbody > tr {
        display:block;
        width:100%;
    }

    .write-table > tbody > tr > th {
        display:flex;
        align-items: center;
        width:100%
    }

    .write-table > tbody > tr > td {
        display:flex;
        align-items: center;
        width:100%;
        padding:1.5rem;
        height:auto;
     }

    .write-table > tbody > tr > td .scroll-box {
        overflow: auto;
    }

    .write-table > tbody > tr > td .scroll-box table {
        width:960px;
    }

    .layer-pop .input-area label {
        max-width:100%;
    }

    .layer-pop .input-area input[type=text],
    .layer-pop .input-area input[type=password] {
        width:100%;
    }
}



.tal { text-align: left !important; }
.tar { text-align: right !important; }
.tac { text-align: center !important; }
.mt0 { margin-top:0rem !important }
.mt1 { margin-top:0.1rem !important }
.mt2 { margin-top:0.2rem !important }
.mt3 { margin-top:0.3rem !important }
.mt4 { margin-top:0.4rem !important }
.mt5 { margin-top:0.5rem !important }
.mt6 { margin-top:0.6rem !important }
.mt7 { margin-top:0.7rem !important }
.mt8 { margin-top:0.8rem !important }
.mt9 { margin-top:0.9rem !important }
.mt10 { margin-top:1rem !important }
.mt11 { margin-top:1.1rem !important }
.mt12 { margin-top:1.2rem !important }
.mt13 { margin-top:1.3rem !important }
.mt14 { margin-top:1.4rem !important }
.mt15 { margin-top:1.5rem !important }
.mt16 { margin-top:1.6rem !important }
.mt17 { margin-top:1.7rem !important }
.mt18 { margin-top:1.8rem !important }
.mt19 { margin-top:1.9rem !important }
.mt20 { margin-top:2rem !important }
.mt21 { margin-top:2.1rem !important }
.mt22 { margin-top:2.2rem !important }
.mt23 { margin-top:2.3rem !important }
.mt24 { margin-top:2.4rem !important }
.mt25 { margin-top:2.5rem !important }
.mt26 { margin-top:2.6rem !important }
.mt27 { margin-top:2.7rem !important }
.mt28 { margin-top:2.8rem !important }
.mt29 { margin-top:2.9rem !important }
.mt30 { margin-top:3rem !important }
.mt31 { margin-top:3.1rem !important }
.mt32 { margin-top:3.2rem !important }
.mt33 { margin-top:3.3rem !important }
.mt34 { margin-top:3.4rem !important }
.mt35 { margin-top:3.5rem !important }
.mt36 { margin-top:3.6rem !important }
.mt37 { margin-top:3.7rem !important }
.mt38 { margin-top:3.8rem !important }
.mt39 { margin-top:3.9rem !important }
.mt40 { margin-top:4rem !important }
.mt41 { margin-top:4.1rem !important }
.mt42 { margin-top:4.2rem !important }
.mt43 { margin-top:4.3rem !important }
.mt44 { margin-top:4.4rem !important }
.mt45 { margin-top:4.5rem !important }
.mt46 { margin-top:4.6rem !important }
.mt47 { margin-top:4.7rem !important }
.mt48 { margin-top:4.8rem !important }
.mt49 { margin-top:4.9rem !important }
.mt50 { margin-top:5rem !important }
.mt51 { margin-top:5.1rem !important }
.mt52 { margin-top:5.2rem !important }
.mt53 { margin-top:5.3rem !important }
.mt54 { margin-top:5.4rem !important }
.mt55 { margin-top:5.5rem !important }
.mt56 { margin-top:5.6rem !important }
.mt57 { margin-top:5.7rem !important }
.mt58 { margin-top:5.8rem !important }
.mt59 { margin-top:5.9rem !important }
.mt60 { margin-top:6rem !important }
.mt61 { margin-top:6.1rem !important }
.mt62 { margin-top:6.2rem !important }
.mt63 { margin-top:6.3rem !important }
.mt64 { margin-top:6.4rem !important }
.mt65 { margin-top:6.5rem !important }
.mt66 { margin-top:6.6rem !important }
.mt67 { margin-top:6.7rem !important }
.mt68 { margin-top:6.8rem !important }
.mt69 { margin-top:6.9rem !important }
.mt70 { margin-top:7rem !important }
.mt71 { margin-top:7.1rem !important }
.mt72 { margin-top:7.2rem !important }
.mt73 { margin-top:7.3rem !important }
.mt74 { margin-top:7.4rem !important }
.mt75 { margin-top:7.5rem !important }
.mt76 { margin-top:7.6rem !important }
.mt77 { margin-top:7.7rem !important }
.mt78 { margin-top:7.8rem !important }
.mt79 { margin-top:7.9rem !important }
.mt80 { margin-top:8rem !important }
.mt81 { margin-top:8.1rem !important }
.mt82 { margin-top:8.2rem !important }
.mt83 { margin-top:8.3rem !important }
.mt84 { margin-top:8.4rem !important }
.mt85 { margin-top:8.5rem !important }
.mt86 { margin-top:8.6rem !important }
.mt87 { margin-top:8.7rem !important }
.mt88 { margin-top:8.8rem !important }
.mt89 { margin-top:8.9rem !important }
.mt90 { margin-top:9rem !important }
.mt91 { margin-top:9.1rem !important }
.mt92 { margin-top:9.2rem !important }
.mt93 { margin-top:9.3rem !important }
.mt94 { margin-top:9.4rem !important }
.mt95 { margin-top:9.5rem !important }
.mt96 { margin-top:9.6rem !important }
.mt97 { margin-top:9.7rem !important }
.mt98 { margin-top:9.8rem !important }
.mt99 { margin-top:9.9rem !important }
.mt100 { margin-top:10rem !important }
.mb0 { margin-bottom:0rem !important }
.mb1 { margin-bottom:0.1rem !important }
.mb2 { margin-bottom:0.2rem !important }
.mb3 { margin-bottom:0.3rem !important }
.mb4 { margin-bottom:0.4rem !important }
.mb5 { margin-bottom:0.5rem !important }
.mb6 { margin-bottom:0.6rem !important }
.mb7 { margin-bottom:0.7rem !important }
.mb8 { margin-bottom:0.8rem !important }
.mb9 { margin-bottom:0.9rem !important }
.mb10 { margin-bottom:1rem !important }
.mb11 { margin-bottom:1.1rem !important }
.mb12 { margin-bottom:1.2rem !important }
.mb13 { margin-bottom:1.3rem !important }
.mb14 { margin-bottom:1.4rem !important }
.mb15 { margin-bottom:1.5rem !important }
.mb16 { margin-bottom:1.6rem !important }
.mb17 { margin-bottom:1.7rem !important }
.mb18 { margin-bottom:1.8rem !important }
.mb19 { margin-bottom:1.9rem !important }
.mb20 { margin-bottom:2rem !important }
.mb21 { margin-bottom:2.1rem !important }
.mb22 { margin-bottom:2.2rem !important }
.mb23 { margin-bottom:2.3rem !important }
.mb24 { margin-bottom:2.4rem !important }
.mb25 { margin-bottom:2.5rem !important }
.mb26 { margin-bottom:2.6rem !important }
.mb27 { margin-bottom:2.7rem !important }
.mb28 { margin-bottom:2.8rem !important }
.mb29 { margin-bottom:2.9rem !important }
.mb30 { margin-bottom:3rem !important }
.mb31 { margin-bottom:3.1rem !important }
.mb32 { margin-bottom:3.2rem !important }
.mb33 { margin-bottom:3.3rem !important }
.mb34 { margin-bottom:3.4rem !important }
.mb35 { margin-bottom:3.5rem !important }
.mb36 { margin-bottom:3.6rem !important }
.mb37 { margin-bottom:3.7rem !important }
.mb38 { margin-bottom:3.8rem !important }
.mb39 { margin-bottom:3.9rem !important }
.mb40 { margin-bottom:4rem !important }
.mb41 { margin-bottom:4.1rem !important }
.mb42 { margin-bottom:4.2rem !important }
.mb43 { margin-bottom:4.3rem !important }
.mb44 { margin-bottom:4.4rem !important }
.mb45 { margin-bottom:4.5rem !important }
.mb46 { margin-bottom:4.6rem !important }
.mb47 { margin-bottom:4.7rem !important }
.mb48 { margin-bottom:4.8rem !important }
.mb49 { margin-bottom:4.9rem !important }
.mb50 { margin-bottom:5rem !important }
.mb51 { margin-bottom:5.1rem !important }
.mb52 { margin-bottom:5.2rem !important }
.mb53 { margin-bottom:5.3rem !important }
.mb54 { margin-bottom:5.4rem !important }
.mb55 { margin-bottom:5.5rem !important }
.mb56 { margin-bottom:5.6rem !important }
.mb57 { margin-bottom:5.7rem !important }
.mb58 { margin-bottom:5.8rem !important }
.mb59 { margin-bottom:5.9rem !important }
.mb60 { margin-bottom:6rem !important }
.mb61 { margin-bottom:6.1rem !important }
.mb62 { margin-bottom:6.2rem !important }
.mb63 { margin-bottom:6.3rem !important }
.mb64 { margin-bottom:6.4rem !important }
.mb65 { margin-bottom:6.5rem !important }
.mb66 { margin-bottom:6.6rem !important }
.mb67 { margin-bottom:6.7rem !important }
.mb68 { margin-bottom:6.8rem !important }
.mb69 { margin-bottom:6.9rem !important }
.mb70 { margin-bottom:7rem !important }
.mb71 { margin-bottom:7.1rem !important }
.mb72 { margin-bottom:7.2rem !important }
.mb73 { margin-bottom:7.3rem !important }
.mb74 { margin-bottom:7.4rem !important }
.mb75 { margin-bottom:7.5rem !important }
.mb76 { margin-bottom:7.6rem !important }
.mb77 { margin-bottom:7.7rem !important }
.mb78 { margin-bottom:7.8rem !important }
.mb79 { margin-bottom:7.9rem !important }
.mb80 { margin-bottom:8rem !important }
.mb81 { margin-bottom:8.1rem !important }
.mb82 { margin-bottom:8.2rem !important }
.mb83 { margin-bottom:8.3rem !important }
.mb84 { margin-bottom:8.4rem !important }
.mb85 { margin-bottom:8.5rem !important }
.mb86 { margin-bottom:8.6rem !important }
.mb87 { margin-bottom:8.7rem !important }
.mb88 { margin-bottom:8.8rem !important }
.mb89 { margin-bottom:8.9rem !important }
.mb90 { margin-bottom:9rem !important }
.mb91 { margin-bottom:9.1rem !important }
.mb92 { margin-bottom:9.2rem !important }
.mb93 { margin-bottom:9.3rem !important }
.mb94 { margin-bottom:9.4rem !important }
.mb95 { margin-bottom:9.5rem !important }
.mb96 { margin-bottom:9.6rem !important }
.mb97 { margin-bottom:9.7rem !important }
.mb98 { margin-bottom:9.8rem !important }
.mb99 { margin-bottom:9.9rem !important }
.mb100 { margin-bottom:10rem !important }
.ml0 { margin-left:0rem !important }
.ml1 { margin-left:0.1rem !important }
.ml2 { margin-left:0.2rem !important }
.ml3 { margin-left:0.3rem !important }
.ml4 { margin-left:0.4rem !important }
.ml5 { margin-left:0.5rem !important }
.ml6 { margin-left:0.6rem !important }
.ml7 { margin-left:0.7rem !important }
.ml8 { margin-left:0.8rem !important }
.ml9 { margin-left:0.9rem !important }
.ml10 { margin-left:1rem !important }
.ml11 { margin-left:1.1rem !important }
.ml12 { margin-left:1.2rem !important }
.ml13 { margin-left:1.3rem !important }
.ml14 { margin-left:1.4rem !important }
.ml15 { margin-left:1.5rem !important }
.ml16 { margin-left:1.6rem !important }
.ml17 { margin-left:1.7rem !important }
.ml18 { margin-left:1.8rem !important }
.ml19 { margin-left:1.9rem !important }
.ml20 { margin-left:2rem !important }
.ml21 { margin-left:2.1rem !important }
.ml22 { margin-left:2.2rem !important }
.ml23 { margin-left:2.3rem !important }
.ml24 { margin-left:2.4rem !important }
.ml25 { margin-left:2.5rem !important }
.ml26 { margin-left:2.6rem !important }
.ml27 { margin-left:2.7rem !important }
.ml28 { margin-left:2.8rem !important }
.ml29 { margin-left:2.9rem !important }
.ml30 { margin-left:3rem !important }
.ml31 { margin-left:3.1rem !important }
.ml32 { margin-left:3.2rem !important }
.ml33 { margin-left:3.3rem !important }
.ml34 { margin-left:3.4rem !important }
.ml35 { margin-left:3.5rem !important }
.ml36 { margin-left:3.6rem !important }
.ml37 { margin-left:3.7rem !important }
.ml38 { margin-left:3.8rem !important }
.ml39 { margin-left:3.9rem !important }
.ml40 { margin-left:4rem !important }
.ml41 { margin-left:4.1rem !important }
.ml42 { margin-left:4.2rem !important }
.ml43 { margin-left:4.3rem !important }
.ml44 { margin-left:4.4rem !important }
.ml45 { margin-left:4.5rem !important }
.ml46 { margin-left:4.6rem !important }
.ml47 { margin-left:4.7rem !important }
.ml48 { margin-left:4.8rem !important }
.ml49 { margin-left:4.9rem !important }
.ml50 { margin-left:5rem !important }
.ml51 { margin-left:5.1rem !important }
.ml52 { margin-left:5.2rem !important }
.ml53 { margin-left:5.3rem !important }
.ml54 { margin-left:5.4rem !important }
.ml55 { margin-left:5.5rem !important }
.ml56 { margin-left:5.6rem !important }
.ml57 { margin-left:5.7rem !important }
.ml58 { margin-left:5.8rem !important }
.ml59 { margin-left:5.9rem !important }
.ml60 { margin-left:6rem !important }
.ml61 { margin-left:6.1rem !important }
.ml62 { margin-left:6.2rem !important }
.ml63 { margin-left:6.3rem !important }
.ml64 { margin-left:6.4rem !important }
.ml65 { margin-left:6.5rem !important }
.ml66 { margin-left:6.6rem !important }
.ml67 { margin-left:6.7rem !important }
.ml68 { margin-left:6.8rem !important }
.ml69 { margin-left:6.9rem !important }
.ml70 { margin-left:7rem !important }
.ml71 { margin-left:7.1rem !important }
.ml72 { margin-left:7.2rem !important }
.ml73 { margin-left:7.3rem !important }
.ml74 { margin-left:7.4rem !important }
.ml75 { margin-left:7.5rem !important }
.ml76 { margin-left:7.6rem !important }
.ml77 { margin-left:7.7rem !important }
.ml78 { margin-left:7.8rem !important }
.ml79 { margin-left:7.9rem !important }
.ml80 { margin-left:8rem !important }
.ml81 { margin-left:8.1rem !important }
.ml82 { margin-left:8.2rem !important }
.ml83 { margin-left:8.3rem !important }
.ml84 { margin-left:8.4rem !important }
.ml85 { margin-left:8.5rem !important }
.ml86 { margin-left:8.6rem !important }
.ml87 { margin-left:8.7rem !important }
.ml88 { margin-left:8.8rem !important }
.ml89 { margin-left:8.9rem !important }
.ml90 { margin-left:9rem !important }
.ml91 { margin-left:9.1rem !important }
.ml92 { margin-left:9.2rem !important }
.ml93 { margin-left:9.3rem !important }
.ml94 { margin-left:9.4rem !important }
.ml95 { margin-left:9.5rem !important }
.ml96 { margin-left:9.6rem !important }
.ml97 { margin-left:9.7rem !important }
.ml98 { margin-left:9.8rem !important }
.ml99 { margin-left:9.9rem !important }
.ml100 { margin-left:10rem !important }
.mr0 { margin-right:0rem !important }
.mr1 { margin-right:0.1rem !important }
.mr2 { margin-right:0.2rem !important }
.mr3 { margin-right:0.3rem !important }
.mr4 { margin-right:0.4rem !important }
.mr5 { margin-right:0.5rem !important }
.mr6 { margin-right:0.6rem !important }
.mr7 { margin-right:0.7rem !important }
.mr8 { margin-right:0.8rem !important }
.mr9 { margin-right:0.9rem !important }
.mr10 { margin-right:1rem !important }
.mr11 { margin-right:1.1rem !important }
.mr12 { margin-right:1.2rem !important }
.mr13 { margin-right:1.3rem !important }
.mr14 { margin-right:1.4rem !important }
.mr15 { margin-right:1.5rem !important }
.mr16 { margin-right:1.6rem !important }
.mr17 { margin-right:1.7rem !important }
.mr18 { margin-right:1.8rem !important }
.mr19 { margin-right:1.9rem !important }
.mr20 { margin-right:2rem !important }
.mr21 { margin-right:2.1rem !important }
.mr22 { margin-right:2.2rem !important }
.mr23 { margin-right:2.3rem !important }
.mr24 { margin-right:2.4rem !important }
.mr25 { margin-right:2.5rem !important }
.mr26 { margin-right:2.6rem !important }
.mr27 { margin-right:2.7rem !important }
.mr28 { margin-right:2.8rem !important }
.mr29 { margin-right:2.9rem !important }
.mr30 { margin-right:3rem !important }
.mr31 { margin-right:3.1rem !important }
.mr32 { margin-right:3.2rem !important }
.mr33 { margin-right:3.3rem !important }
.mr34 { margin-right:3.4rem !important }
.mr35 { margin-right:3.5rem !important }
.mr36 { margin-right:3.6rem !important }
.mr37 { margin-right:3.7rem !important }
.mr38 { margin-right:3.8rem !important }
.mr39 { margin-right:3.9rem !important }
.mr40 { margin-right:4rem !important }
.mr41 { margin-right:4.1rem !important }
.mr42 { margin-right:4.2rem !important }
.mr43 { margin-right:4.3rem !important }
.mr44 { margin-right:4.4rem !important }
.mr45 { margin-right:4.5rem !important }
.mr46 { margin-right:4.6rem !important }
.mr47 { margin-right:4.7rem !important }
.mr48 { margin-right:4.8rem !important }
.mr49 { margin-right:4.9rem !important }
.mr50 { margin-right:5rem !important }
.mr51 { margin-right:5.1rem !important }
.mr52 { margin-right:5.2rem !important }
.mr53 { margin-right:5.3rem !important }
.mr54 { margin-right:5.4rem !important }
.mr55 { margin-right:5.5rem !important }
.mr56 { margin-right:5.6rem !important }
.mr57 { margin-right:5.7rem !important }
.mr58 { margin-right:5.8rem !important }
.mr59 { margin-right:5.9rem !important }
.mr60 { margin-right:6rem !important }
.mr61 { margin-right:6.1rem !important }
.mr62 { margin-right:6.2rem !important }
.mr63 { margin-right:6.3rem !important }
.mr64 { margin-right:6.4rem !important }
.mr65 { margin-right:6.5rem !important }
.mr66 { margin-right:6.6rem !important }
.mr67 { margin-right:6.7rem !important }
.mr68 { margin-right:6.8rem !important }
.mr69 { margin-right:6.9rem !important }
.mr70 { margin-right:7rem !important }
.mr71 { margin-right:7.1rem !important }
.mr72 { margin-right:7.2rem !important }
.mr73 { margin-right:7.3rem !important }
.mr74 { margin-right:7.4rem !important }
.mr75 { margin-right:7.5rem !important }
.mr76 { margin-right:7.6rem !important }
.mr77 { margin-right:7.7rem !important }
.mr78 { margin-right:7.8rem !important }
.mr79 { margin-right:7.9rem !important }
.mr80 { margin-right:8rem !important }
.mr81 { margin-right:8.1rem !important }
.mr82 { margin-right:8.2rem !important }
.mr83 { margin-right:8.3rem !important }
.mr84 { margin-right:8.4rem !important }
.mr85 { margin-right:8.5rem !important }
.mr86 { margin-right:8.6rem !important }
.mr87 { margin-right:8.7rem !important }
.mr88 { margin-right:8.8rem !important }
.mr89 { margin-right:8.9rem !important }
.mr90 { margin-right:9rem !important }
.mr91 { margin-right:9.1rem !important }
.mr92 { margin-right:9.2rem !important }
.mr93 { margin-right:9.3rem !important }
.mr94 { margin-right:9.4rem !important }
.mr95 { margin-right:9.5rem !important }
.mr96 { margin-right:9.6rem !important }
.mr97 { margin-right:9.7rem !important }
.mr98 { margin-right:9.8rem !important }
.mr99 { margin-right:9.9rem !important }
.mr100 { margin-right:10rem !important }
.pt0 { padding-top:0rem !important }
.pt1 { padding-top:0.1rem !important }
.pt2 { padding-top:0.2rem !important }
.pt3 { padding-top:0.3rem !important }
.pt4 { padding-top:0.4rem !important }
.pt5 { padding-top:0.5rem !important }
.pt6 { padding-top:0.6rem !important }
.pt7 { padding-top:0.7rem !important }
.pt8 { padding-top:0.8rem !important }
.pt9 { padding-top:0.9rem !important }
.pt10 { padding-top:1rem !important }
.pt11 { padding-top:1.1rem !important }
.pt12 { padding-top:1.2rem !important }
.pt13 { padding-top:1.3rem !important }
.pt14 { padding-top:1.4rem !important }
.pt15 { padding-top:1.5rem !important }
.pt16 { padding-top:1.6rem !important }
.pt17 { padding-top:1.7rem !important }
.pt18 { padding-top:1.8rem !important }
.pt19 { padding-top:1.9rem !important }
.pt20 { padding-top:2rem !important }
.pt21 { padding-top:2.1rem !important }
.pt22 { padding-top:2.2rem !important }
.pt23 { padding-top:2.3rem !important }
.pt24 { padding-top:2.4rem !important }
.pt25 { padding-top:2.5rem !important }
.pt26 { padding-top:2.6rem !important }
.pt27 { padding-top:2.7rem !important }
.pt28 { padding-top:2.8rem !important }
.pt29 { padding-top:2.9rem !important }
.pt30 { padding-top:3rem !important }
.pt31 { padding-top:3.1rem !important }
.pt32 { padding-top:3.2rem !important }
.pt33 { padding-top:3.3rem !important }
.pt34 { padding-top:3.4rem !important }
.pt35 { padding-top:3.5rem !important }
.pt36 { padding-top:3.6rem !important }
.pt37 { padding-top:3.7rem !important }
.pt38 { padding-top:3.8rem !important }
.pt39 { padding-top:3.9rem !important }
.pt40 { padding-top:4rem !important }
.pt41 { padding-top:4.1rem !important }
.pt42 { padding-top:4.2rem !important }
.pt43 { padding-top:4.3rem !important }
.pt44 { padding-top:4.4rem !important }
.pt45 { padding-top:4.5rem !important }
.pt46 { padding-top:4.6rem !important }
.pt47 { padding-top:4.7rem !important }
.pt48 { padding-top:4.8rem !important }
.pt49 { padding-top:4.9rem !important }
.pt50 { padding-top:5rem !important }
.pt51 { padding-top:5.1rem !important }
.pt52 { padding-top:5.2rem !important }
.pt53 { padding-top:5.3rem !important }
.pt54 { padding-top:5.4rem !important }
.pt55 { padding-top:5.5rem !important }
.pt56 { padding-top:5.6rem !important }
.pt57 { padding-top:5.7rem !important }
.pt58 { padding-top:5.8rem !important }
.pt59 { padding-top:5.9rem !important }
.pt60 { padding-top:6rem !important }
.pt61 { padding-top:6.1rem !important }
.pt62 { padding-top:6.2rem !important }
.pt63 { padding-top:6.3rem !important }
.pt64 { padding-top:6.4rem !important }
.pt65 { padding-top:6.5rem !important }
.pt66 { padding-top:6.6rem !important }
.pt67 { padding-top:6.7rem !important }
.pt68 { padding-top:6.8rem !important }
.pt69 { padding-top:6.9rem !important }
.pt70 { padding-top:7rem !important }
.pt71 { padding-top:7.1rem !important }
.pt72 { padding-top:7.2rem !important }
.pt73 { padding-top:7.3rem !important }
.pt74 { padding-top:7.4rem !important }
.pt75 { padding-top:7.5rem !important }
.pt76 { padding-top:7.6rem !important }
.pt77 { padding-top:7.7rem !important }
.pt78 { padding-top:7.8rem !important }
.pt79 { padding-top:7.9rem !important }
.pt80 { padding-top:8rem !important }
.pt81 { padding-top:8.1rem !important }
.pt82 { padding-top:8.2rem !important }
.pt83 { padding-top:8.3rem !important }
.pt84 { padding-top:8.4rem !important }
.pt85 { padding-top:8.5rem !important }
.pt86 { padding-top:8.6rem !important }
.pt87 { padding-top:8.7rem !important }
.pt88 { padding-top:8.8rem !important }
.pt89 { padding-top:8.9rem !important }
.pt90 { padding-top:9rem !important }
.pt91 { padding-top:9.1rem !important }
.pt92 { padding-top:9.2rem !important }
.pt93 { padding-top:9.3rem !important }
.pt94 { padding-top:9.4rem !important }
.pt95 { padding-top:9.5rem !important }
.pt96 { padding-top:9.6rem !important }
.pt97 { padding-top:9.7rem !important }
.pt98 { padding-top:9.8rem !important }
.pt99 { padding-top:9.9rem !important }
.pt100 { padding-top:10rem !important }
.pb0 { padding-bottom:0rem !important }
.pb1 { padding-bottom:0.1rem !important }
.pb2 { padding-bottom:0.2rem !important }
.pb3 { padding-bottom:0.3rem !important }
.pb4 { padding-bottom:0.4rem !important }
.pb5 { padding-bottom:0.5rem !important }
.pb6 { padding-bottom:0.6rem !important }
.pb7 { padding-bottom:0.7rem !important }
.pb8 { padding-bottom:0.8rem !important }
.pb9 { padding-bottom:0.9rem !important }
.pb10 { padding-bottom:1rem !important }
.pb11 { padding-bottom:1.1rem !important }
.pb12 { padding-bottom:1.2rem !important }
.pb13 { padding-bottom:1.3rem !important }
.pb14 { padding-bottom:1.4rem !important }
.pb15 { padding-bottom:1.5rem !important }
.pb16 { padding-bottom:1.6rem !important }
.pb17 { padding-bottom:1.7rem !important }
.pb18 { padding-bottom:1.8rem !important }
.pb19 { padding-bottom:1.9rem !important }
.pb20 { padding-bottom:2rem !important }
.pb21 { padding-bottom:2.1rem !important }
.pb22 { padding-bottom:2.2rem !important }
.pb23 { padding-bottom:2.3rem !important }
.pb24 { padding-bottom:2.4rem !important }
.pb25 { padding-bottom:2.5rem !important }
.pb26 { padding-bottom:2.6rem !important }
.pb27 { padding-bottom:2.7rem !important }
.pb28 { padding-bottom:2.8rem !important }
.pb29 { padding-bottom:2.9rem !important }
.pb30 { padding-bottom:3rem !important }
.pb31 { padding-bottom:3.1rem !important }
.pb32 { padding-bottom:3.2rem !important }
.pb33 { padding-bottom:3.3rem !important }
.pb34 { padding-bottom:3.4rem !important }
.pb35 { padding-bottom:3.5rem !important }
.pb36 { padding-bottom:3.6rem !important }
.pb37 { padding-bottom:3.7rem !important }
.pb38 { padding-bottom:3.8rem !important }
.pb39 { padding-bottom:3.9rem !important }
.pb40 { padding-bottom:4rem !important }
.pb41 { padding-bottom:4.1rem !important }
.pb42 { padding-bottom:4.2rem !important }
.pb43 { padding-bottom:4.3rem !important }
.pb44 { padding-bottom:4.4rem !important }
.pb45 { padding-bottom:4.5rem !important }
.pb46 { padding-bottom:4.6rem !important }
.pb47 { padding-bottom:4.7rem !important }
.pb48 { padding-bottom:4.8rem !important }
.pb49 { padding-bottom:4.9rem !important }
.pb50 { padding-bottom:5rem !important }
.pb51 { padding-bottom:5.1rem !important }
.pb52 { padding-bottom:5.2rem !important }
.pb53 { padding-bottom:5.3rem !important }
.pb54 { padding-bottom:5.4rem !important }
.pb55 { padding-bottom:5.5rem !important }
.pb56 { padding-bottom:5.6rem !important }
.pb57 { padding-bottom:5.7rem !important }
.pb58 { padding-bottom:5.8rem !important }
.pb59 { padding-bottom:5.9rem !important }
.pb60 { padding-bottom:6rem !important }
.pb61 { padding-bottom:6.1rem !important }
.pb62 { padding-bottom:6.2rem !important }
.pb63 { padding-bottom:6.3rem !important }
.pb64 { padding-bottom:6.4rem !important }
.pb65 { padding-bottom:6.5rem !important }
.pb66 { padding-bottom:6.6rem !important }
.pb67 { padding-bottom:6.7rem !important }
.pb68 { padding-bottom:6.8rem !important }
.pb69 { padding-bottom:6.9rem !important }
.pb70 { padding-bottom:7rem !important }
.pb71 { padding-bottom:7.1rem !important }
.pb72 { padding-bottom:7.2rem !important }
.pb73 { padding-bottom:7.3rem !important }
.pb74 { padding-bottom:7.4rem !important }
.pb75 { padding-bottom:7.5rem !important }
.pb76 { padding-bottom:7.6rem !important }
.pb77 { padding-bottom:7.7rem !important }
.pb78 { padding-bottom:7.8rem !important }
.pb79 { padding-bottom:7.9rem !important }
.pb80 { padding-bottom:8rem !important }
.pb81 { padding-bottom:8.1rem !important }
.pb82 { padding-bottom:8.2rem !important }
.pb83 { padding-bottom:8.3rem !important }
.pb84 { padding-bottom:8.4rem !important }
.pb85 { padding-bottom:8.5rem !important }
.pb86 { padding-bottom:8.6rem !important }
.pb87 { padding-bottom:8.7rem !important }
.pb88 { padding-bottom:8.8rem !important }
.pb89 { padding-bottom:8.9rem !important }
.pb90 { padding-bottom:9rem !important }
.pb91 { padding-bottom:9.1rem !important }
.pb92 { padding-bottom:9.2rem !important }
.pb93 { padding-bottom:9.3rem !important }
.pb94 { padding-bottom:9.4rem !important }
.pb95 { padding-bottom:9.5rem !important }
.pb96 { padding-bottom:9.6rem !important }
.pb97 { padding-bottom:9.7rem !important }
.pb98 { padding-bottom:9.8rem !important }
.pb99 { padding-bottom:9.9rem !important }
.pb100 { padding-bottom:10rem !important }
.pl0 { padding-left:0rem !important }
.pl1 { padding-left:0.1rem !important }
.pl2 { padding-left:0.2rem !important }
.pl3 { padding-left:0.3rem !important }
.pl4 { padding-left:0.4rem !important }
.pl5 { padding-left:0.5rem !important }
.pl6 { padding-left:0.6rem !important }
.pl7 { padding-left:0.7rem !important }
.pl8 { padding-left:0.8rem !important }
.pl9 { padding-left:0.9rem !important }
.pl10 { padding-left:1rem !important }
.pl11 { padding-left:1.1rem !important }
.pl12 { padding-left:1.2rem !important }
.pl13 { padding-left:1.3rem !important }
.pl14 { padding-left:1.4rem !important }
.pl15 { padding-left:1.5rem !important }
.pl16 { padding-left:1.6rem !important }
.pl17 { padding-left:1.7rem !important }
.pl18 { padding-left:1.8rem !important }
.pl19 { padding-left:1.9rem !important }
.pl20 { padding-left:2rem !important }
.pl21 { padding-left:2.1rem !important }
.pl22 { padding-left:2.2rem !important }
.pl23 { padding-left:2.3rem !important }
.pl24 { padding-left:2.4rem !important }
.pl25 { padding-left:2.5rem !important }
.pl26 { padding-left:2.6rem !important }
.pl27 { padding-left:2.7rem !important }
.pl28 { padding-left:2.8rem !important }
.pl29 { padding-left:2.9rem !important }
.pl30 { padding-left:3rem !important }
.pl31 { padding-left:3.1rem !important }
.pl32 { padding-left:3.2rem !important }
.pl33 { padding-left:3.3rem !important }
.pl34 { padding-left:3.4rem !important }
.pl35 { padding-left:3.5rem !important }
.pl36 { padding-left:3.6rem !important }
.pl37 { padding-left:3.7rem !important }
.pl38 { padding-left:3.8rem !important }
.pl39 { padding-left:3.9rem !important }
.pl40 { padding-left:4rem !important }
.pl41 { padding-left:4.1rem !important }
.pl42 { padding-left:4.2rem !important }
.pl43 { padding-left:4.3rem !important }
.pl44 { padding-left:4.4rem !important }
.pl45 { padding-left:4.5rem !important }
.pl46 { padding-left:4.6rem !important }
.pl47 { padding-left:4.7rem !important }
.pl48 { padding-left:4.8rem !important }
.pl49 { padding-left:4.9rem !important }
.pl50 { padding-left:5rem !important }
.pl51 { padding-left:5.1rem !important }
.pl52 { padding-left:5.2rem !important }
.pl53 { padding-left:5.3rem !important }
.pl54 { padding-left:5.4rem !important }
.pl55 { padding-left:5.5rem !important }
.pl56 { padding-left:5.6rem !important }
.pl57 { padding-left:5.7rem !important }
.pl58 { padding-left:5.8rem !important }
.pl59 { padding-left:5.9rem !important }
.pl60 { padding-left:6rem !important }
.pl61 { padding-left:6.1rem !important }
.pl62 { padding-left:6.2rem !important }
.pl63 { padding-left:6.3rem !important }
.pl64 { padding-left:6.4rem !important }
.pl65 { padding-left:6.5rem !important }
.pl66 { padding-left:6.6rem !important }
.pl67 { padding-left:6.7rem !important }
.pl68 { padding-left:6.8rem !important }
.pl69 { padding-left:6.9rem !important }
.pl70 { padding-left:7rem !important }
.pl71 { padding-left:7.1rem !important }
.pl72 { padding-left:7.2rem !important }
.pl73 { padding-left:7.3rem !important }
.pl74 { padding-left:7.4rem !important }
.pl75 { padding-left:7.5rem !important }
.pl76 { padding-left:7.6rem !important }
.pl77 { padding-left:7.7rem !important }
.pl78 { padding-left:7.8rem !important }
.pl79 { padding-left:7.9rem !important }
.pl80 { padding-left:8rem !important }
.pl81 { padding-left:8.1rem !important }
.pl82 { padding-left:8.2rem !important }
.pl83 { padding-left:8.3rem !important }
.pl84 { padding-left:8.4rem !important }
.pl85 { padding-left:8.5rem !important }
.pl86 { padding-left:8.6rem !important }
.pl87 { padding-left:8.7rem !important }
.pl88 { padding-left:8.8rem !important }
.pl89 { padding-left:8.9rem !important }
.pl90 { padding-left:9rem !important }
.pl91 { padding-left:9.1rem !important }
.pl92 { padding-left:9.2rem !important }
.pl93 { padding-left:9.3rem !important }
.pl94 { padding-left:9.4rem !important }
.pl95 { padding-left:9.5rem !important }
.pl96 { padding-left:9.6rem !important }
.pl97 { padding-left:9.7rem !important }
.pl98 { padding-left:9.8rem !important }
.pl99 { padding-left:9.9rem !important }
.pl100 { padding-left:10rem !important }
.pr0 { padding-right:0rem !important }
.pr1 { padding-right:0.1rem !important }
.pr2 { padding-right:0.2rem !important }
.pr3 { padding-right:0.3rem !important }
.pr4 { padding-right:0.4rem !important }
.pr5 { padding-right:0.5rem !important }
.pr6 { padding-right:0.6rem !important }
.pr7 { padding-right:0.7rem !important }
.pr8 { padding-right:0.8rem !important }
.pr9 { padding-right:0.9rem !important }
.pr10 { padding-right:1rem !important }
.pr11 { padding-right:1.1rem !important }
.pr12 { padding-right:1.2rem !important }
.pr13 { padding-right:1.3rem !important }
.pr14 { padding-right:1.4rem !important }
.pr15 { padding-right:1.5rem !important }
.pr16 { padding-right:1.6rem !important }
.pr17 { padding-right:1.7rem !important }
.pr18 { padding-right:1.8rem !important }
.pr19 { padding-right:1.9rem !important }
.pr20 { padding-right:2rem !important }
.pr21 { padding-right:2.1rem !important }
.pr22 { padding-right:2.2rem !important }
.pr23 { padding-right:2.3rem !important }
.pr24 { padding-right:2.4rem !important }
.pr25 { padding-right:2.5rem !important }
.pr26 { padding-right:2.6rem !important }
.pr27 { padding-right:2.7rem !important }
.pr28 { padding-right:2.8rem !important }
.pr29 { padding-right:2.9rem !important }
.pr30 { padding-right:3rem !important }
.pr31 { padding-right:3.1rem !important }
.pr32 { padding-right:3.2rem !important }
.pr33 { padding-right:3.3rem !important }
.pr34 { padding-right:3.4rem !important }
.pr35 { padding-right:3.5rem !important }
.pr36 { padding-right:3.6rem !important }
.pr37 { padding-right:3.7rem !important }
.pr38 { padding-right:3.8rem !important }
.pr39 { padding-right:3.9rem !important }
.pr40 { padding-right:4rem !important }
.pr41 { padding-right:4.1rem !important }
.pr42 { padding-right:4.2rem !important }
.pr43 { padding-right:4.3rem !important }
.pr44 { padding-right:4.4rem !important }
.pr45 { padding-right:4.5rem !important }
.pr46 { padding-right:4.6rem !important }
.pr47 { padding-right:4.7rem !important }
.pr48 { padding-right:4.8rem !important }
.pr49 { padding-right:4.9rem !important }
.pr50 { padding-right:5rem !important }
.pr51 { padding-right:5.1rem !important }
.pr52 { padding-right:5.2rem !important }
.pr53 { padding-right:5.3rem !important }
.pr54 { padding-right:5.4rem !important }
.pr55 { padding-right:5.5rem !important }
.pr56 { padding-right:5.6rem !important }
.pr57 { padding-right:5.7rem !important }
.pr58 { padding-right:5.8rem !important }
.pr59 { padding-right:5.9rem !important }
.pr60 { padding-right:6rem !important }
.pr61 { padding-right:6.1rem !important }
.pr62 { padding-right:6.2rem !important }
.pr63 { padding-right:6.3rem !important }
.pr64 { padding-right:6.4rem !important }
.pr65 { padding-right:6.5rem !important }
.pr66 { padding-right:6.6rem !important }
.pr67 { padding-right:6.7rem !important }
.pr68 { padding-right:6.8rem !important }
.pr69 { padding-right:6.9rem !important }
.pr70 { padding-right:7rem !important }
.pr71 { padding-right:7.1rem !important }
.pr72 { padding-right:7.2rem !important }
.pr73 { padding-right:7.3rem !important }
.pr74 { padding-right:7.4rem !important }
.pr75 { padding-right:7.5rem !important }
.pr76 { padding-right:7.6rem !important }
.pr77 { padding-right:7.7rem !important }
.pr78 { padding-right:7.8rem !important }
.pr79 { padding-right:7.9rem !important }
.pr80 { padding-right:8rem !important }
.pr81 { padding-right:8.1rem !important }
.pr82 { padding-right:8.2rem !important }
.pr83 { padding-right:8.3rem !important }
.pr84 { padding-right:8.4rem !important }
.pr85 { padding-right:8.5rem !important }
.pr86 { padding-right:8.6rem !important }
.pr87 { padding-right:8.7rem !important }
.pr88 { padding-right:8.8rem !important }
.pr89 { padding-right:8.9rem !important }
.pr90 { padding-right:9rem !important }
.pr91 { padding-right:9.1rem !important }
.pr92 { padding-right:9.2rem !important }
.pr93 { padding-right:9.3rem !important }
.pr94 { padding-right:9.4rem !important }
.pr95 { padding-right:9.5rem !important }
.pr96 { padding-right:9.6rem !important }
.pr97 { padding-right:9.7rem !important }
.pr98 { padding-right:9.8rem !important }
.pr99 { padding-right:9.9rem !important }
.pr100 { padding-right:10rem !important }