/*---------------------------------------------
	margin bottom
  ---------------------------------------------*/

.m-b-5{ margin-bottom: 5px; }
.m-b-10{ margin-bottom: 10px; }
.m-b-20{ margin-bottom: 20px; }
.m-b-30{ margin-bottom: 30px; }
.m-b-50{ margin-bottom: 50px; }
.m-b-200{ margin-bottom: 200px; }
/*---------------------------------------------
	margin top
  ---------------------------------------------*/
.m-t-5{ margin-top: 5px; }
.m-t-10{ margin-top: 10px; }
.m-t-20{ margin-top: 20px; }
.m-t-30{ margin-top: 30px; }
.m-t-50{ margin-top: 50px; }

/*---------------------------------------------
	margin left
  ---------------------------------------------*/
.m-l-10 { margin-left: 10px; }

/*===============================================
hr
===============================================*/
hr {
    background-color: whitesmoke;
    border: none;
    display: block;
    height: 2px;
    margin: 1.5rem 0;
}

/*===============================================
News icon
===============================================*/
.news_cat.icon_1 { background: #5ea23c; }
.news_cat.icon_2 { background: #e99258; }
.news_cat.icon_3 { background: #7b56cf; }
.news_cat.icon_4 { background: #FCA17D; }
.news_cat.icon_5 { background: #63A375; }
.news_cat.icon_6 { background: #FE7F2D; }
.news_cat.icon_7 { background: #4F6D7A; }
.news_cat.icon_8 { background: #993399; }
.news_cat.icon_9 { background: #339900; }
.news_cat.icon_10 { background: #666; }


/*===============================================
pagination
===============================================*/

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

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background:#fff;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
}


.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #000;
  text-decoration: none;
  border: solid 1px #dbdbdb;
  border-radius: 4px;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #fff;
  background: #1ea7b3;
  border-radius: 4px;
  border: solid 0px #dbdbdb;

}

/* News article  */
.articlepager {
    justify-content: space-between;
    display: flex;
}

/*===============================================
image 3
===============================================*/

.col_3{
width: 100%;
display: flex;
display: -ms-flexbox; /* IE10 */
flex-wrap: wrap;
-ms-flex-wrap: wrap; /* IE10 */
}
.col_3 > div{
width: 33.33333%;
padding: 10px;
}

@media screen and (max-width: 480px) {
  .col_3 > div{width: 100%;}
}


/*===============================================
table scroll
===============================================*/
.content table {
    width: 100%;
}
@media screen and (max-width: 768px) {
.scroll-table table {
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
}

.tbl03 {width:100%; border:1px solid #1ea7b3; border-bottom:none; background-color:#fff;}
.tbl03 tr {display:table-row; padding:0;}
.tbl03 th,.tbl03 td {display:table-cell; padding:0.5em 1em; border:1px solid #1ea7b3; vertical-align:top;}
.tbl03 th {border-bottom-color:#d6f3f6; background-color:#1ea7b3;  color:#fff; padding:0.5em 1em;border-right-color: #d6f3f6;}
.tbl03 tr:last-child th {border-bottom-color:#1ea7b3;}


.tbl04 {width:100%; border:1px solid #1ea7b3; border-bottom:none; background-color:#fff;}
.tbl04 tr {display:table-row; padding:0;}
.tbl04 th,.tbl04 td {display:table-cell; padding:0.5em 1em; border:1px solid #1ea7b3; vertical-align:top;}
.tbl04 th {border-bottom-color:#d6f3f6; background-color:#1ea7b3;  color:#fff; padding:0.5em 1em;border-right-color: #d6f3f6;}
.tbl04 tr:last-child th {border-bottom-color:#1ea7b3;}

.tbl04 tr td:nth-child(2) { text-align: right; }
.tbl04 tr td:nth-child(3) { text-align: right; }

@media screen and (max-width: 425px) {
	.tbl04 tr td:nth-child(2) { text-align: left; }
	.tbl04 tr td:nth-child(3) { text-align: left; width:33%; }
}

/* editor default */
.tbl00 {width:100%; border:1px solid #1ea7b3; border-bottom:none; background-color:#fff;}
.tbl00 tr {display:table-row; padding:0;}
.tbl00 th,.tbl00 td {display:table-cell; padding:0.5em 1em; border:1px solid #1ea7b3; vertical-align:top;}
.tbl00 th {border-bottom-color:#d6f3f6; background-color:#1ea7b3;  color:#fff; padding:0.5em 1em;border-right-color: #d6f3f6;}
.tbl00 tr:last-child th {border-bottom-color:#1ea7b3;}


/*===============================================
document
===============================================*/
.notification {
    background-color: whitesmoke;
    border-radius: 4px;
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
    position: relative;
}
.notification .title, .notification .subtitle, .notification .content {
    color: currentColor;
}
.title {
    color: #363636;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.125;
}
.title, .subtitle {
    word-break: break-word;
}
.title strong {
    color: inherit;
    font-weight: inherit;
}

/*===============================================
clearfix
===============================================*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

