/*------------------------------
    預設
    font_small = 16px
    font_normal = 18px
    font_large = 22px
*/
html {
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
  font-size: 1.125rem;
}
html.fontsize_sm {
  font-size: 1rem;
}
html.fontsize_md {
  font-size: 1.125rem;
}
html.fontsize_lg {
  font-size: 1.375rem;
}
body {
  color: #333333;
  line-height: 1;
  font-size: 1rem;
  font-family: Microsoft JhengHei, Arial, Helvetica, sans-serif;
}
body.fixed {
  position: fixed;
  overflow: hidden;
}
a,
a:hover {
  color: #333333;
  text-decoration: none;
}
/*------------------------------
    快速鍵
*/
a[accesskey] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/*------------------------------
    共用
*/
.hidden {
  display: none;
}
/*------------------------------
    主外框
*/
.wrap_container {
  position: relative;
  background-color: #ffffff;
}
/*------------------------------
    頂端區塊
*/
.wrap_top {
  position: relative;
}
@media (max-width: 991px) {
  .wrap_top {
    background-color: #E5B166;
    position: fixed;
    z-index: 10000;
    left: 0;
    right: 0;
    bottom: 0;
    top: 63px;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.3s ease-in-out;
    -moz-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
  }
  .wrap_top.show {
    max-height: 1000px;
    overflow: auto;
  }
}
/*------------------------------
    頂端區塊(手機)
*/
.mobile_header {
  border-bottom: 1px solid #B9375E;
  background-color: #fff;
  padding: 5px 15px;
  max-height: 63px;
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  display: none;
}
.mobile_header > .button {
  color: #B9375E;
  width: 60px;
  padding-top: 12px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.mobile_header > .button.show > .fa-bars:before {
  content: "\f00d";
}
@media (max-width: 991px) {
  .mobile_header {
    display: block;
  }
}
/*------------------------------
    上方功能列
*/
.wrap_header {
  min-height: 160px;
  font-size: 0.83rem;
  position: relative;
}
.wrap_header:after {
  display: block;
  clear: both;
  content: '';
}
@media (max-width: 991px) {
  .wrap_header {
    height: auto;
  }
}
.head_panel {
  position: absolute;
  right: 0;
  top: 8px;
}
.head_panel:after {
  display: block;
  clear: both;
  content: '';
}
@media (max-width: 991px) {
  .head_panel {
    position: static;
    width: auto;
    padding: 12px 20px;
    background-color: #B9375E;
    border-bottom: 1px solid #ffffff;
  }
}
.head_panel .head_link {
  float: left;
  color: #666666;
  padding-top: 6px;
}
.head_panel .head_link a {
  color: #666666;
  font-size: 0.88rem;
}
.head_panel .head_link a:after {
  content: '|';
  text-align: center;
  display: inline-block;
  font-size: 0.72rem;
  width: 16px;
  padding-left: 4px;
}
.head_panel .head_link a:last-child:after {
  display: none;
}
@media (max-width: 991px) {
  .head_panel .head_link {
    float: none;
    width: auto;
    text-align: center;
  }
  .head_panel .head_link a {
    color: #ffffff;
    display: inline-block;
    margin-right: 8px;
  }
  .head_panel .head_link a.home {
    display: none;
  }
  .head_panel .head_link a:after {
    display: none;
  }
  .head_panel .head_link a:before {
    font-size: 0.66rem;
    font-family: FontAwesome;
    margin-right: 2px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #B9375E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    position: relative;
    top: -2px;
  }
  .head_panel .head_link a.home:before {
    content: "\f015";
  }
  .head_panel .head_link a.sitemap:before {
    content: "\f0e8";
  }
  .head_panel .head_link a.mail:before {
    content: "\f003";
  }
  .head_panel .head_link a.faq:before {
    content: "\f128";
  }
}
@media (max-width: 374px) {
  .head_panel .head_link a:before {
    display: none;
  }
}
.head_panel .head_fontsize {
  display: inline-block;
  color: #666666;
  margin-left: 20px;
}
.head_panel .head_fontsize input[type="button"] {
  color: #666666;
  display: inline-block;
  padding: 5px;
  margin-left: 4px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #666666;
  background-color: #ffffff;
}
.head_panel .head_fontsize input[type="button"].active {
  color: #ffffff;
  background-color: #666666;
}
@media (max-width: 991px) {
  .head_panel .head_fontsize {
    display: none;
  }
}
.head_logo {
  float: left;
  width: 33%;
  max-width: 340px;
  padding-top: 45px;
  padding-right: 10px;
}
.head_logo img {
  max-width: 90%;
}
@media (max-width: 991px) {
  .head_logo {
    display: none;
  }
}
.head_search {
  float: left;
  width: auto;
  padding-top: 65px;
}

.head_search::after{
  clear: both;
}

@media (max-width: 991px) {
  .head_search {
    float: none;
    width: auto;
    max-width: initial;
    padding: 12px 20px;
    background-color: #B9375E;
    border-bottom: 1px solid #ffffff;
  }
}
.head_search .form_search {
  position: relative;
}
@media (max-width: 991px) {
  .head_search .form_search {
    text-align: center;
  }
}
.head_search .form_search input[type="text"] {
  padding: 8px 12px;
  max-height: 35px;
  /* border-radius: 16px; */
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 2px solid #b7395f;
  background-color: white;
  /* max-width: 200px; */
  float: left;
  
}

.head_search .form_search input[type="text"]::placeholder,
.head_search .form_search input[type="text"]::-webkit-input-placeholder,
.head_search .form_search input[type="text"]::-ms-input-placeholder
{
  color: #797979
}

@media (max-width: 1119px) {
  .head_search .form_search input[type="text"] {
    padding: 8px 10px;
    max-width: 150px;
  }
}
@media (max-width: 991px) {
  .head_search .form_search input[type="text"] {
    display: inline-block;
    margin-bottom: 5px;
    max-width: 150px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
  }
}
.head_search .form_search button {
  color: #B9375E;
  padding: 9px 12px;
  border-radius: 16px;
  border: 1px solid #B9375E;
  background-color: #ffffff;
  display: inline-block;
  float: left;
}
@media (max-width: 991px) {
  .head_search .form_search button {
    color: #B9375E;
    font-weight: bold;
    height: 35px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 374px) {
  .head_search .form_search button {
    padding-left: 5px;
    padding-right: 8px;
  }
}
.head_search .advanced_search {
  color: #B9375E;
  padding: 9px 12px;
  background-color: #ffffff;
  border: 1px solid #B9375E;
  display: inline-block;
}

.head_search .advanced_search.submit_btn{
  width: 53px;
  height: 35px;
  border: 2px solid #B9375E;
  background-color: #B9375E;
  text-indent: -9999px;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;

  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/search_icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}

.head_search .advanced_search.more_search_btn{
  border:none;
  color: #B9375E;
  background-color: #f9eee7;
  padding: 11px;
  border-radius: 10px;
  margin-left: 13px;
}

@media (max-width: 991px) {
  .head_search .advanced_search {
    color: #B9375E;
    font-weight: bold;
    height: 35px;
    border: 1px solid #ffffff;
    background-color: #ffffff;
    position: relative;
    top: -1px;
  }
}
@media (max-width: 374px) {
  .head_search .advanced_search {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.hot_keyword {
  padding-top: 10px;
  padding-left: 13px;
  font-size: 0.77rem;
}
@media (max-width: 991px) {
  .hot_keyword {
    padding-left: 0;
    padding-bottom: 10px;
    white-space: nowrap;
    display: none;
  }
}
.head_social {
  float: right;
  height: 73px;
  padding-top: 65px;
}
@media (max-width: 991px) {
  .head_social {
    padding-top: 0;
    float: none;
    width: auto;
    height: auto;
    padding: 12px 20px;
    text-align: center;
    background-color: #E5B166;
    border-bottom: 1px solid #ffffff;
  }
}
.head_social:after {
  content: '';
  display: table;
  clear: both;
}
.head_social > a {
  width: 33px;
  height: 33px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  text-indent: 300%;
  color: transparent;
  background-size: 100%;
}
.head_social > a[class^="lang_"] {
  width: 78px;
  height: 73px;
  margin-right: 3px;
}
.head_social > a[class^="social_"] {
  vertical-align: top;
  margin-top: 20px;
}
.head_social > a.lang_child {
  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/lang_child.jpg');
}
.head_social > a.lang_eng {
  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/lang_eng.jpg');
}
.head_social > a.social_facebook {
  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/social_facebook.jpg');
}
.head_social > a.social_google {
  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/social_google.jpg');
}
.head_social > a.social_youtube {
  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/social_youtube.jpg');
}
.head_social > a.social_rss {
  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/social_rss.jpg');
}
@media (max-width: 991px) {
  .head_social > a.lang_child {
    background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/mobile_lang_child.png');
  }
  .head_social > a.lang_eng {
    background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/mobile_lang_eng.png');
  }
  .head_social > a.social_facebook {
    background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/mobile_social_facebook.png');
  }
  .head_social > a.social_google {
    background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/mobile_social_google.png');
  }
  .head_social > a.social_youtube {
    background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/mobile_social_youtube.png');
  }
  .head_social > a.social_rss {
    background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/mobile_social_rss.png');
  }
  .head_social > a[class^="lang_"],
  .head_social > a[class^="lang_"]:nth-of-type(2),
  .head_social > a[class^="social_"] {
    width: 39px;
    height: 39px;
    margin-right: 5px;
  }
}
@media (max-width: 375px) {
  .head_social > a[class^="lang_"],
  .head_social > a[class^="lang_"]:nth-of-type(2),
  .head_social > a[class^="social_"] {
    width: 38px;
    height: 38px;
    background-size: cover;
  }
}
/*------------------------------
    主選單
*/
.wrap_menu {
  background-color: #E5B166;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom: 4px solid #B9375E;
  text-align: center;
  height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .wrap_menu {
    padding-left: 0;
    padding-right: 0;
  }
}
.wrap_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu_main {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu_main:after {
  content: '';
  display: table;
  clear: both;
}
.menu_main > li {
  float: left;
  width: 15.5%;
}
.menu_main > li:nth-of-type(5),
.menu_main > li:nth-of-type(6) {
  width: 19%;
}
.menu_main > li:hover > ul {
  /* display: block; */
}
@media (max-width: 991px) {
  .menu_main > li {
    float: none;
    width: auto;
    display: block;
    background-color: #B9375E;
    border-bottom: 1px solid #ffffff;
  }
  .menu_main > li:nth-of-type(5),
  .menu_main > li:nth-of-type(6) {
    width: auto;
  }
}
.menu_main > li > a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 1.11rem;
  /* padding: 21px 18px; */
  height: 60px;
  position: relative;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu_main > li > a.has_sub:after {
  content: "\f0d7";
  font-family: FontAwesome;
  font-size: 0.75rem;
  margin-left: 1.5%;
  margin-top: 1.2%;
}
@media (min-width: 992px) {
  .menu_main > li > a:hover,
  .menu_main > li > a:focus,
  .menu_main > li > a.active {
    color: #ffffff;
    background-color: #B9375E;
  }
}
@media (max-width: 991px) {
  .menu_main > li > a {
    background-color: #E5B166;
    color: #ffffff;
    justify-content: left;
    padding: 12px 20px;
  }
  .menu_main > li > a.has_sub:after {
    content: "\f107";
    display: flex;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
  }
}
.menu_sub {
  list-style: none;
  border-left: 1px solid #B9375E;
  border-right: 1px solid #B9375E;
  border-bottom: 1px solid #B9375E;
  background-color: #fff;
  margin: 0;
  position: absolute;
  z-index: 99;
  left: 0;
  right: 0;
  top: 60px;
  max-height: 0;
  overflow: hidden;
}
.menu_sub.show {
  padding: 8px 15px;
  max-height: 1000px;
  -webkit-transition: max-height 0.3s ease-in-out;
  -moz-transition: max-height 0.3s ease-in-out;
  -ms-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;

  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .menu_sub.show {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .menu_sub {
    position: static;
    border: none;
    padding: 0;
    background-color: #d18f2f;
  }
}
.menu_sub > li {
  float: left;
  width: 20%;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .menu_sub > li {
    float: none;
    width: 100%;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 10px;
    border-bottom: 1px solid #ffffff;
  }
  .menu_sub > li:first-child {
    border-top: 1px solid #ffffff;
  }
  .menu_sub > li:last-child {
    border-bottom: none;
  }
}
.menu_sub > li > a {
  background-color: #FFF7F9;
  border: 1px solid #f6e7ea;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 10px 10px 7px 20px;
  margin: 3px;
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
  height: 100%;
  min-height: 60px;
}
.menu_sub > li > a:before {
  content: "\f105";
  font-family: FontAwesome;
  font-size: 0.75rem;
  color: #B9375E;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
}
@media (min-width: 992px) {
  .menu_sub > li > a:hover,
  .menu_sub > li > a:focus,
  .menu_sub > li > a.active {
    background-color: #f6e7ea;
  }
}
@media (max-width: 991px) {
  .menu_sub > li > a {
    color: #ffffff;
    font-weight: normal;
    background-color: transparent;
    border: none;
    border-radius: 0;
    height: auto;
    margin: 0;
  }
  .menu_sub > li > a:before {
    color: #fff;
  }
}
/*------------------------------
    主要圖片區(banner)
*/
@media (max-width: 991px) {
  .wrap_banner {
    padding: 83px 0 20px;
    min-height: initial;
  }
}
/*------------------------------
    中央內容區
*/
.wrap_middle {
  min-height: 300px;
  position: relative;
  padding: 30px 0;
}
.wrap_middle:after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 991px) {
  .wrap_middle {
    padding: 93px 0 20px;
    min-height: initial;
  }

  .index .wrap_middle{
    padding-top: 0;
  }
}
/*------------------------------
    底部連結區與收合鍵
*/
.wrap_footer_switch {
  text-align: center;
}
.wrap_footer {
  position: relative;
  border-top: 3px solid #E5B166;
  padding-top: 40px;
  max-height: 3000px;
  overflow: hidden;
  -webkit-transition: padding-top 0.35s ease-in-out, max-height 0.3s ease-in-out;
  -moz-transition: padding-top 0.35s ease-in-out, max-height 0.3s ease-in-out;
  -o-transition: padding-top 0.35s ease-in-out, max-height 0.3s ease-in-out;
  transition: padding-top 0.35s ease-in-out, max-height 0.3s ease-in-out;
}
.wrap_footer:after {
  content: '';
  display: block;
  clear: both;
}
.wrap_footer.turnoff {
  max-height: 3px;
  padding-top: 0;
}
@media (max-width: 991px) {
  .wrap_footer {
    padding-top: 10px;
  }
}
.footer_switch_button {
  width: 50px;
  height: 20px;
  display: block;
  margin: 0 auto;
  color: transparent;
  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/footer_switch_up.jpg');
  text-indent: -1000px;
  overflow: hidden;
}
.footer_switch_button.turnoff {
  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/footer_switch_down.jpg');
}
.footer_links_block {
  min-height: 200px;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 20px;
  position: relative;
}
.footer_links_block:after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 991px) {
  .footer_links_block {
    min-height: initial;
    padding: 10px 0;
  }
}
.footer_links_item {
  float: left;
  width: 26%;
  line-height: 1.2;
  margin-bottom: 0;
  padding-right: 20px;
}
.footer_links_item:nth-of-type(1),
.footer_links_item:nth-of-type(2),
.footer_links_item:nth-of-type(3),
.footer_links_item:nth-of-type(4) {
  margin-bottom: 50px;
}
.footer_links_item:nth-of-type(4n+3) {
  width: 28%;
}
.footer_links_item:nth-of-type(4n+4) {
  width: 20%;
}
.footer_links_item:nth-of-type(4n+5) {
  clear: both;
}
.footer_links_item h2 {
  color: #E5B166;
  font-size: 1.33rem;
  font-weight: bold;
  margin: 0 0 20px;
}
.footer_links_item a {
  color: #666666;
  font-size: 0.94rem;
}
@media (max-width: 991px) {
  .footer_links_item {
    float: none;
    width: 100%;
    font-size: 0.88rem;
  }
  .footer_links_item:nth-of-type(1n+1) {
    margin-bottom: 10px;
  }
  .footer_links_item:nth-of-type(4n+3),
  .footer_links_item:nth-of-type(4n+4) {
    width: auto;
  }
  .footer_links_item h2,
  .footer_links_item p {
    margin-bottom: 10px;
  }
  .footer_links_item br {
    display: none;
  }
}
/*------------------------------
    版權宣告
*/
.wrap_bottom {
  position: relative;
  background-color: #B9375E;
}
.wrap_copyrights {
  color: #ffffff;
  font-size: 0.77rem;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.wrap_copyrights:after {
  display: block;
  clear: both;
  content: '';
}
.wrap_copyrights p {
  line-height: 1.2;
}
.wrap_copyrights a {
  color: #ffffff;
}
@media (max-width: 1350px) {
  .wrap_copyrights {
    padding-left: 85px;
  }
}
.crs_logo {
    width: 60px;
  float: left;
  margin-right: 40px;
}

.crs_logo > img {
    width:100%;
}

@media (max-width: 1350px) {
  .crs_logo {
    position: absolute;
    left: 0;
  }
}
.crs_connect {
  float: left;
}
@media (max-width: 1350px) {
  .crs_connect {
    float: none;
    margin-bottom: 30px;
  }
}
.crs_connect p {
  min-height: 27px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .crs_connect p {
    display: block;
    margin-bottom: 30px;
  }
  .crs_connect p:last-child {
    display: none;
  }
}
.crs_connect span {
  font-size: 1.25rem;
}
.crs_connect span:after {
  content: '';
  width: 23px;
  height: 23px;
  margin: 0 3px;
  display: inline-block;
  background-image: url('https://webarchive.lib.ntu.edu.tw:443/archive/wayback/20181111172734/https://www.sfaa.gov.tw/SFAA/Content/images/icons/foot_map.jpg');
  background-repeat: no-repeat;
  position: relative;
  top: 2px;
}
@media (max-width: 991px) {
  .crs_connect span {
    display: block;
    margin-bottom: 10px;
  }
}
.crs_nav {
  float: right;
  width: 31%;
  max-width: 370px;
}
.crs_nav a:after {
  content: '|';
  display: inline-block;
  font-size: 0.72rem;
  text-align: center;
  width: 15px;
  padding-left: 2px;
}
.crs_nav a:last-child:after {
  display: none;
}
@media (max-width: 1350px) {
  .crs_nav {
    float: none;
    width: auto;
    max-width: 100%;
  }
  .crs_nav p {
    margin-bottom: 10px;
  }
  .crs_nav a:nth-of-type(3),
  .crs_nav a:nth-of-type(2):after {
    display: none;
  }
}
.crs_info {
  float: right;
  width: 31%;
  max-width: 370px;
}
@media (max-width: 1350px) {
  .crs_info {
    float: none;
    width: auto;
    max-width: 100%;
  }
  .crs_info p {
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .index .wrap_middle {
    padding: 0;
    min-height: initial;
  }

  .index .wrap_middle{
    padding-top: 0;
  }
}





/*
     FILE ARCHIVED ON 17:27:34 十一月 11, 2018 AND RETRIEVED FROM THE
     AN OPENWAYBACK INSTANCE ON 4:23:12 五月 8, 2026.
     JAVASCRIPT APPENDED BY OPENWAYBACK, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
