@charset "UTF-8";
/*custom css for TinyMce Editor tool*/
/*----------------------------------
	Text align
----------------------------------*/
.text-align-left {
  text-align: left;
}

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

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

/*----------------------------------
	List
----------------------------------*/
.unorder-list-normal,
.unorder-list-side,
.order-list,
.order-list-side,
.order-list-circle,
.order-list-roman,
.order-list-single-brac {
  margin: 1.5rem 0;
  padding-left: 2em;
  font-size: 0.937rem;
}

.unorder-list-normal > li,
.unorder-list-side > li,
.order-list > li,
.order-list-side > li,
.order-list-circle > li,
.order-list-roman > li,
.order-list-single-brac > li {
  margin: 0.7em 0;
}

.unorder-list-normal {
  list-style: none;
}

.unorder-list-normal > li {
  position: relative;
}

.unorder-list-normal > li:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: -1.15em;
  display: block;
  width: 0.3em;
  height: 0.3em;
  border-radius: 0.3em;
  background: rgb(150, 10, 50);
  font-weight: 500;
}

.unorder-list-side {
  padding-left: 0;
  list-style: none;
}

.unorder-list-side > li {
  position: relative;
  display: inline-block;
  margin-left: 1.5em;
  margin-right: 1.5em;
}

.unorder-list-side > li:before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: -1em;
  display: block;
  width: 0.3em;
  height: 0.3em;
  border-radius: 0.3em;
  background: rgb(150, 10, 50);
  font-weight: 500;
}

.order-list-side {
  list-style: none;
  counter-reset: paren;
}

.order-list-side > li {
  position: relative;
}

.order-list-side > li:before {
  position: absolute;
  left: -2em;
  counter-increment: paren;
  content: "(" counter(paren) ")";
  font-weight: 500;
}

.order-list-circle {
  list-style: none;
  counter-reset: circle;
}

.order-list-circle > li {
  margin: 0.5em 0;
}

.order-list-circle > li:before {
  counter-increment: circle;
  content: counter(circle);
  display: inline-block;
  margin: 0 0.6em 0 -2em;
  padding-top: 0.25em;
  width: 1.4em;
  height: 1.4em;
  border: solid 1px rgb(60, 60, 60);
  border-radius: 0.7em;
  font-size: 0.7rem;
  line-height: 0.7em;
  text-align: center;
  vertical-align: 20%;
  letter-spacing: -0.05em;
  text-indent: -0.05em;
}

.order-list-roman {
  list-style: none;
  counter-reset: roman_numerals;
}

.order-list-roman > li {
  position: relative;
}

.order-list-roman > li:before {
  position: absolute;
  left: -2em;
  counter-increment: roman_numerals;
  content: "(" counter(roman_numerals, lower-roman) ")";
  font-weight: 500;
}

.order-list-single-brac {
  list-style: none;
  counter-reset: r_paren;
}

.order-list-single-brac > li {
  position: relative;
}

.order-list-single-brac > li:before {
  position: absolute;
  left: -2em;
  counter-increment: r_paren;
  content: counter(r_paren) ")";
  font-weight: 500;
}

/*----------------------------------
	Table
----------------------------------*/
.table-normal {
  margin: 40px 0;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.937rem;
  line-height: 1.5;
  text-align: left;
  table-layout: fixed;
}

.table-normal th,
.table-normal td {
  padding: 0.5em 0.8em;
  border: solid 1px rgb(180, 180, 180);
  vertical-align: middle;
}

.table-normal th {
  background: rgb(244, 241, 242);
  font-weight: 700;
  text-align: center;
}

.table-normal td {
  background: rgb(255, 255, 255);
}

.table_scroll {
  position: relative;
  margin: 1.5rem 0;
  padding: 10px 7px 1px;
  overflow: scroll visible;
  overflow-x: scroll;
  overflow-y: visible;
  border: solid 1px rgb(250, 245, 250);
  border-radius: 4px;
}

.table_scroll::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 740px;
  -webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.65) inset;
          box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.65) inset;
  border-radius: 4px;
  pointer-events: none;
}

.table_scroll::before {
  content: "Scroll ⇒";
  position: absolute;
  top: 0;
  right: -4px;
  padding: 0 12px;
  background: rgb(240, 140, 150);
  border-radius: 0 0 4px 4px;
  font-size: 0.937em;
  font-weight: 700;
  color: rgb(255, 255, 255);
  -webkit-animation: ks-blink 0.8s ease-in infinite alternate;
          animation: ks-blink 0.8s ease-in infinite alternate;
  z-index: 1;
}

@-webkit-keyframes ks-blink {
  0% {
    right: -4px;
    background: rgb(200, 100, 110);
  }
  100% {
    right: -10px;
    background: rgb(250, 170, 170);
  }
}

@keyframes ks-blink {
  0% {
    right: -4px;
    background: rgb(200, 100, 110);
  }
  100% {
    right: -10px;
    background: rgb(250, 170, 170);
  }
}
.table_scroll table {
  width: 730px;
}

.ks-table_note {
  width: 730px;
}

/* Under Construction
---------------------------------*/
.under-construction {
  margin: 100px 100px;
  padding: 0.8em 0;
  width: 70%;
  max-width: 700px;
  border-top: double 3px rgb(200, 120, 160);
  border-bottom: double 3px rgb(200, 120, 160);
  font-size: 0.9rem;
  text-align: center;
  font-weight: 700;
  color: rgb(110, 110, 110);
}

/*----------------------------------
	Decoration
----------------------------------*/
.decoration-broken-line {
  margin: 2.5rem auto;
  border: none;
  border-top: dotted 2px rgb(160, 140, 140);
}

.decoration-dashed {
  margin: 1.75rem auto;
  border: none;
  border-top: dotted 1px rgb(160, 140, 140);
}

/*----------------------------------
	Accordion box
----------------------------------*/
.accordion-box {
  margin-bottom: 2rem 0 0;
}

.accordion-box > .ac_button {
  position: relative;
  display: block;
  margin: 2rem 0 0;
  padding: 0.5em 0.5em 0.5em 2.5em;
  background: rgb(255, 255, 255);
  border: solid 1px rgb(131, 3, 62);
  font-size: 1.125rem;
  font-weight: 700;
  color: rgb(131, 3, 62);
  line-height: 1.4;
  cursor: pointer;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}

.accordion-box > .ac_button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  border-top: solid 2px rgb(131, 3, 62);
}

.accordion-box > .ac_button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  width: 20px;
  border-top: solid 2px rgb(131, 3, 62);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.wrapper:not(.ks-touch_device) .accordion-box > .ac_button:not(.clicked):hover {
  background: rgb(110, 130, 170);
  color: rgb(255, 255, 255);
}

.wrapper:not(.ks-touch_device) .accordion-box > .ac_button:not(.clicked):hover::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.accordion-box > .ac_button.clicked {
  background: rgb(131, 3, 62);
  color: rgb(255, 255, 255);
}

.accordion-box > .ac_button.clicked::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  border-color: rgb(255, 255, 255);
}

.accordion-box > .ac_content {
  padding: 0.5em 5px 0.8em 10px;
  width: 100%;
  display: none;
}

/*----------------------------------
	Button
----------------------------------*/
/*-- Single --*/
.button-large {
  position: relative;
  display: inline-block;
  margin: 0.7em 0;
  padding: 0.36em 0.9em;
  min-width: 190px;
  border: solid 1px rgb(131, 3, 62);
  font-size: 1.125rem;
  font-weight: 700;
  color: rgb(131, 3, 62);
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}

.button-large:hover {
  background: rgb(131, 3, 62);
  color: rgb(255, 255, 255);
}

.button-large::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.2rem;
  display: block;
  border-style: solid;
  border-width: 0.4rem 0 0.4rem 0.5rem;
  border-color: rgba(131, 3, 62, 0) rgba(131, 3, 62, 0) rgba(131, 3, 62, 0) currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.button-small {
  position: relative;
  display: inline-block;
  margin: 0.7em 0;
  padding: 0.36em 1.1em 0.36em 0.8em;
  border: solid 1px rgb(131, 3, 62);
  font-size: 0.937rem;
  font-weight: 700;
  color: rgb(131, 3, 62);
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}

.button-small:hover {
  background: rgb(131, 3, 62);
  color: rgb(255, 255, 255);
}

.button-small::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.2rem;
  display: block;
  border-style: solid;
  border-width: 0.3rem 0 0.3rem 0.4rem;
  border-color: rgba(131, 3, 62, 0) rgba(131, 3, 62, 0) rgba(131, 3, 62, 0) currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*-- Multi --*/
.button-multiple-side,
.button-two-rows,
.button-three-rows,
.button-four-rows,
.btn-two-hor,
.btn-two-horz-list {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 2.5rem auto;
  padding: 0;
  text-align: center;
  list-style: none;
  z-index: 0;
}

.button-multiple-side li,
.button-two-rows li,
.button-three-rows li,
.button-four-rows li,
.btn-two-hor li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.button-multiple-side li a,
.button-two-rows li a,
.button-three-rows li a,
.button-four-rows li a {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.5em 0;
  padding: 0.8em 1em 0.8em 0.8em;
  width: 100%;
  background: rgb(255, 255, 255);
  border: solid 1px rgb(131, 3, 62);
  font-weight: 500;
  color: rgb(131, 3, 62);
  line-height: 1.4;
  text-decoration: none;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  transition-opacity: background, color;
  z-index: 1;
}

.button-multiple-side a::after,
.button-two-rows a::after,
.button-three-rows a::after,
.button-four-rows a::after {
  position: absolute;
  top: calc(50% - 0.3em);
  right: 4px;
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 0.6em;
  height: 0.6em;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgb(131, 3, 62);
  border-width: 0.3em 0.2em 0.3em 0.4em;
  vertical-align: 10%;
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  transition-opacity: right, border;
}

.button-multiple-side a:hover,
.button-two-rows a:hover,
.button-three-rows a:hover,
.button-four-rows a:hover {
  background: rgb(131, 3, 62);
  color: rgb(255, 255, 255);
}

.button-multiple-side a:hover::after,
.button-two-rows a:hover::after,
.button-three-rows a:hover::after,
.button-four-rows a:hover::after {
  right: 0;
  border-left-color: rgb(255, 255, 255);
}

.button-multiple-side li.disabled a,
.button-two-rows li.disabled a,
.button-three-rows li.disabled a,
.button-four-rows li.disabled a {
  pointer-events: none;
  cursor: default;
  border-color: rgb(204, 204, 204);
  background: rgb(204, 204, 204);
}

.button-multiple-side li {
  width: 100%;
}

.button-two-rows li {
  width: 48%;
}

.button-three-rows li {
  width: 32%;
}

.button-four-rows li {
  width: 23%;
}

.btn-two-hor {
  max-width: 700px;
  padding-left: 10px;
  padding-right: 10px;
}

.btn-two-hor li {
  width: 48.5%;
}

.btn-two-hor li a {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.5em 0;
  padding: 0.8em 1em;
  width: 100%;
  background: rgb(255, 255, 255);
  border: solid 1px rgb(131, 3, 62);
  font-size: 1.625rem;
  font-weight: 500;
  color: rgb(131, 3, 62);
  line-height: 1.4;
  text-decoration: none;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  transition-opacity: background, color;
  z-index: 1;
}

.btn-two-hor li a::after {
  position: absolute;
  bottom: 3px;
  right: 50%;
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 0.6em;
  height: 0.6em;
  border-style: solid;
  border-color: rgb(239, 149, 62) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-width: 0.4em 0.5em 0 0.5em;
  vertical-align: 10%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  transition-opacity: right, border;
}

.btn-two-hor li a:hover {
  background: rgb(131, 3, 62);
  color: rgb(255, 255, 255);
}

.btn-two-hor li a:hover::after {
  bottom: 0;
  border-color: rgb(255, 255, 255) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

.btn-two-hor li.disabled a {
  pointer-events: none;
  cursor: default;
  border-color: rgb(204, 204, 204);
  background: rgb(204, 204, 204);
}

.btn-two-horz-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.5rem 0;
}

.btn-two-horz-list li {
  margin: 0.5em 0.8rem;
}

.btn-two-horz-list li a {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.2em 1.2em 0.2em 0.1em;
  width: 100%;
  border-bottom: dotted 1px rgb(131, 3, 62);
  font-size: 1.125rem;
  font-weight: 500;
  color: inherit;
  line-height: 1.4;
  text-decoration: none;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  transition-opacity: background, color;
  z-index: 1;
}

.btn-two-horz-list li a::after {
  position: absolute;
  top: 50%;
  right: 1px;
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 0.6em;
  height: 0.6em;
  border-style: solid;
  border-color: rgb(131, 3, 62) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-width: 0.5em 0.4em 0 0.4em;
  vertical-align: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  transition-opacity: right, border;
}

.btn-two-horz-list li a:hover {
  background: rgb(131, 3, 62);
  color: rgb(255, 255, 255);
}

.btn-two-horz-list li a:hover::after {
  bottom: 0;
  border-color: rgb(255, 255, 255) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}