
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_7bd279e9e839194e05e8ff5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0cf0a7f11048f0a51aab359d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cd8f127331d460522f114fbd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d37c15fbb6f0ffa605000369.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_98e0ec28a6eef4f6b74237c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6f7be8999661e0a7e4490a1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5045298ec762a0f8825e9903.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4e8c5e228322b3018e0ede81.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01126c5b4eb1c55de7680b90.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e2ecbd61f71d6fe72b3dd3f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d37c15fbb6f0ffa605000369.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_01b4a12395b7ad1c88489494.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f1667b56f3f1491d17c9991c.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b109672c97e0092e480695da.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ac8ec37026862fcd836833fd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_594d57b9afae80c046f2637e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_662d0579a25bfb2bc18a4a79.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_64e67f4968a9b0836e8b5269.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b50e62740f0b8e11882835da.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1b10dd55025cac4fcc4c71ca.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_3445c19a0a7815da80a75d23.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_01a91726f5ce3e73927f6498.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a5dac26168a0c9c751911f55.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_65198c7f542281a40a69720d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_3445c19a0a7815da80a75d23.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_3a35b69586e403a7586fd8eb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_185cc38a713d413a48bf6f98.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_20942812ae8599b70ad970ce.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_7e6e7e4b72e539cdd141ba16.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_fcb0e65bad798f3c7bac22b6.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_cc8a0c6c63a7e44fd4f3f94c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_536285b8d8f5ce403c8ae74e.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_43b5f4147db3d5b1901a9748.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_080516ad10a7b84d53107bc4.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_1d527e327707c50f63d2f525.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_19ebdf35b1ab1f36635a52e9.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_1077406b93ca7ea31ae0def1.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_14a15afb952d606e82773ec4.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_7f30ef395946151846848f0c.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_455b1e37ee3aa10359010fd0.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_a8986f39366c4358827cfc0b.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_1c3ecf1a73f3c15003555286.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_aa79721c429eab1fa36a75b0.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_f0b581cbb95b9d54389662e9.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_8766ed7778c43fddf752c01a.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_48495256d80cc38984765de8.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_c959f2ab6c406aebf369a250.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_ee0344d93251d65389aefb47.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_01126c5b4eb1c55de7680b90.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_463a958c4d64d27f5e6c80f9.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_01126c5b4eb1c55de7680b90.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_8ebce7f0183a0c96527a409c.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_a803626d46d5d3ef72a932c7.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_d37c15fbb6f0ffa605000369.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_594da11868b6d8b2dc29ef2a.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_af2ad5c7bd15c5b659e75a29.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_cb9a748bfbc0d79384bfa463.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_89d36476ed99a2bc60ca7ef0.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_9e567ec83bc5a1d1020db2f9.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_01126c5b4eb1c55de7680b90.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_8abbd57356af21cfac57dfdd.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_cb078d443dd9a12042ab05ed.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_0e4986414f0edc42ef7f8b9d.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_18b5113f0f1a63285c5fa6cb.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_a8a03fbc94021fec5d12864d.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_1bba10217cfe8fc1005693ab.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_0e4986414f0edc42ef7f8b9d.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_18b5113f0f1a63285c5fa6cb.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_a8e98a3b7d49a238fd14fa76.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_e8be18ab288a6e81e54c4af7.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_0e4986414f0edc42ef7f8b9d.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_18b5113f0f1a63285c5fa6cb.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_345f62cc163097202cbcae3a.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_1237c387fdf4e6f68f629ca7.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_01126c5b4eb1c55de7680b90.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_f41f47c354ca5545212dc05a.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_ac18082c80bb097722d3da1a.woff2')format("woff");}.ff60{font-family:ff60;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_1eaac51150955d88a7c76d5e.woff2')format("woff");}.ff61{font-family:ff61;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_036fc5166061a9197f9c0022.woff2')format("woff");}.ff62{font-family:ff62;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_2047afe95558d297f7524807.woff2')format("woff");}.ff63{font-family:ff63;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_bc32d5d697cecb4e91f9c61f.woff2')format("woff");}.ff64{font-family:ff64;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_46918e0c4bb55b877a50cdff.woff2')format("woff");}.ff65{font-family:ff65;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_ac18082c80bb097722d3da1a.woff2')format("woff");}.ff66{font-family:ff66;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_a1c8e8ea99778a521d3f08b6.woff2')format("woff");}.ff67{font-family:ff67;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_559a3be0c7bab15dc5a41599.woff2')format("woff");}.ff68{font-family:ff68;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_6888dc39e34aa6c46959765e.woff2')format("woff");}.ff69{font-family:ff69;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_625a4d1e0f24b1618ed772a6.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.863281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237764,0.000000,-0.077254,0.237764,0,0);-ms-transform:matrix(0.237764,0.000000,-0.077254,0.237764,0,0);-webkit-transform:matrix(0.237764,0.000000,-0.077254,0.237764,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-12.000000px;}
.v2{vertical-align:-9.599880px;}
.v4{vertical-align:-6.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.000040px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000060px;}
.ls18{letter-spacing:0.000240px;}
.ls1{letter-spacing:0.000360px;}
.ls2{letter-spacing:0.000480px;}
.lsb{letter-spacing:0.001560px;}
.ls9{letter-spacing:0.003720px;}
.ls7{letter-spacing:0.006060px;}
.lsc{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.007980px;}
.ls4{letter-spacing:0.008040px;}
.ls3{letter-spacing:0.010080px;}
.ls6{letter-spacing:0.011700px;}
.ls1a{letter-spacing:0.017580px;}
.ls5{letter-spacing:0.023460px;}
.ls1b{letter-spacing:66.336900px;}
.ls10{letter-spacing:87.775620px;}
.ls1c{letter-spacing:98.414100px;}
.ls15{letter-spacing:102.178680px;}
.lsf{letter-spacing:135.862800px;}
.ls19{letter-spacing:136.917060px;}
.ls13{letter-spacing:152.803680px;}
.ls1e{letter-spacing:160.289100px;}
.ls12{letter-spacing:179.665260px;}
.ls14{letter-spacing:180.873780px;}
.ls11{letter-spacing:188.067360px;}
.lse{letter-spacing:204.942360px;}
.ls17{letter-spacing:240.645960px;}
.ls1d{letter-spacing:242.623500px;}
.lsd{letter-spacing:269.588340px;}
.ls16{letter-spacing:340.312560px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-60.000000px;}
.ws3{word-spacing:-48.000000px;}
.ws5{word-spacing:-45.000000px;}
.ws6{word-spacing:-30.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws2{word-spacing:-12.000000px;}
.ws9{word-spacing:-11.250000px;}
.wsa{word-spacing:-8.250000px;}
.ws7{word-spacing:-0.045000px;}
.ws8{word-spacing:-0.033000px;}
.ws0{word-spacing:0.000000px;}
._4{width:65.951640px;}
._12{width:98.305260px;}
._8{width:113.437560px;}
._10{width:156.820800px;}
._d{width:186.104940px;}
._6{width:219.830820px;}
._e{width:246.390360px;}
._a{width:247.979940px;}
._b{width:257.640360px;}
._7{width:263.265360px;}
._9{width:274.848360px;}
._c{width:276.069840px;}
._13{width:291.513660px;}
._5{width:295.269840px;}
._11{width:298.369680px;}
._3{width:324.060900px;}
._f{width:340.310460px;}
._0{width:432.000000px;}
._2{width:2144.215320px;}
._1{width:2168.215320px;}
.fc2{color:rgb(0,0,102);}
.fc1{color:rgb(181,199,222);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.000000px;}
.fs8{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:63.087739px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:105.900000px;}
.y142{bottom:156.899790px;}
.y152{bottom:161.220705px;}
.y186{bottom:162.994635px;}
.y141{bottom:174.899790px;}
.y151{bottom:175.470705px;}
.yc3{bottom:178.565190px;}
.y185{bottom:179.494635px;}
.y117{bottom:181.121790px;}
.yd5{bottom:186.517365px;}
.y85{bottom:187.744635px;}
.y26{bottom:190.458720px;}
.y140{bottom:192.899790px;}
.y184{bottom:195.994635px;}
.yc2{bottom:196.565190px;}
.y5b{bottom:196.744635px;}
.y116{bottom:199.121790px;}
.ya0{bottom:199.953270px;}
.y150{bottom:201.814455px;}
.y84{bottom:205.744635px;}
.y13f{bottom:210.899790px;}
.y183{bottom:212.494635px;}
.y25{bottom:214.392795px;}
.yc1{bottom:214.565190px;}
.y5a{bottom:214.744635px;}
.y9f{bottom:217.953270px;}
.y83{bottom:223.744635px;}
.y13e{bottom:228.899790px;}
.y182{bottom:231.994635px;}
.y59{bottom:232.744635px;}
.yd4{bottom:234.671175px;}
.y9e{bottom:235.953270px;}
.yf9{bottom:236.711790px;}
.y82{bottom:241.744635px;}
.y14f{bottom:244.744635px;}
.y13d{bottom:246.899790px;}
.y115{bottom:247.275600px;}
.y181{bottom:248.494635px;}
.y58{bottom:250.744635px;}
.y9d{bottom:253.953270px;}
.yf8{bottom:254.711790px;}
.y1ae{bottom:256.744635px;}
.y81{bottom:259.744635px;}
.yc0{bottom:262.719000px;}
.y14e{bottom:262.744635px;}
.y180{bottom:264.994635px;}
.y24{bottom:268.458720px;}
.y57{bottom:268.744635px;}
.y9c{bottom:271.953270px;}
.yf7{bottom:272.711790px;}
.y1a8{bottom:274.744635px;}
.y80{bottom:277.744635px;}
.y13c{bottom:279.899790px;}
.y14d{bottom:280.744635px;}
.y17f{bottom:284.494635px;}
.y23{bottom:286.458720px;}
.y56{bottom:286.744635px;}
.y9b{bottom:289.953270px;}
.y1a7{bottom:292.744635px;}
.y7f{bottom:295.744635px;}
.y13b{bottom:297.899790px;}
.y14c{bottom:298.744635px;}
.yd3{bottom:300.183840px;}
.y17e{bottom:300.994635px;}
.ybf{bottom:301.744635px;}
.y22{bottom:304.458720px;}
.y55{bottom:304.744635px;}
.yf6{bottom:305.711790px;}
.y9a{bottom:307.953270px;}
.y1a6{bottom:309.244635px;}
.y7e{bottom:313.744635px;}
.y13a{bottom:315.899790px;}
.y14b{bottom:316.744635px;}
.yd2{bottom:318.183840px;}
.ybe{bottom:319.744635px;}
.y17d{bottom:320.494635px;}
.y21{bottom:322.458720px;}
.y54{bottom:322.744635px;}
.yf5{bottom:323.711790px;}
.y99{bottom:325.953270px;}
.y7d{bottom:331.744635px;}
.y139{bottom:333.899790px;}
.y14a{bottom:334.744635px;}
.yd1{bottom:336.183840px;}
.y17c{bottom:336.994635px;}
.y20{bottom:340.458720px;}
.y53{bottom:340.744635px;}
.yf4{bottom:341.711745px;}
.y114{bottom:342.456030px;}
.y1b9{bottom:348.184620px;}
.y7c{bottom:349.744635px;}
.y138{bottom:351.899790px;}
.ybd{bottom:352.744635px;}
.y17b{bottom:356.494635px;}
.y1f{bottom:358.458720px;}
.y52{bottom:358.744635px;}
.y98{bottom:358.953270px;}
.yf3{bottom:359.711745px;}
.y1b8{bottom:366.184620px;}
.y7b{bottom:367.744635px;}
.y137{bottom:369.899790px;}
.ybc{bottom:370.744635px;}
.y17a{bottom:372.994635px;}
.y1e{bottom:376.458720px;}
.y51{bottom:376.744635px;}
.y97{bottom:376.953270px;}
.yf2{bottom:377.711745px;}
.y1b7{bottom:384.184620px;}
.yd0{bottom:384.337650px;}
.y7a{bottom:385.744635px;}
.y136{bottom:387.899790px;}
.ybb{bottom:388.744635px;}
.y179{bottom:392.494635px;}
.y1d{bottom:394.458720px;}
.y50{bottom:394.744635px;}
.y96{bottom:394.953270px;}
.y1b6{bottom:402.184620px;}
.y79{bottom:403.744635px;}
.y1b1{bottom:404.344620px;}
.y135{bottom:405.899790px;}
.yba{bottom:406.744635px;}
.y178{bottom:408.994635px;}
.y1c{bottom:412.458720px;}
.y95{bottom:412.953270px;}
.y113{bottom:415.744635px;}
.y1b5{bottom:418.684620px;}
.y78{bottom:421.744635px;}
.y1b0{bottom:422.344620px;}
.yb9{bottom:424.744635px;}
.ycf{bottom:425.064285px;}
.yf1{bottom:425.865555px;}
.y4f{bottom:427.744635px;}
.y177{bottom:428.494635px;}
.y1b4{bottom:430.444605px;}
.y1b{bottom:430.458720px;}
.y94{bottom:430.953270px;}
.y112{bottom:433.744635px;}
.y1af{bottom:438.844620px;}
.y134{bottom:438.899790px;}
.y77{bottom:439.744635px;}
.yb8{bottom:442.744635px;}
.y176{bottom:444.994635px;}
.y4e{bottom:445.744635px;}
.y1b3{bottom:448.444605px;}
.y1a{bottom:448.458720px;}
.y93{bottom:448.953270px;}
.y111{bottom:451.744635px;}
.y133{bottom:456.899790px;}
.y76{bottom:457.744635px;}
.yb7{bottom:460.744635px;}
.y4d{bottom:463.744635px;}
.y175{bottom:464.494635px;}
.y1b2{bottom:464.944605px;}
.yf0{bottom:465.377190px;}
.y19{bottom:466.458720px;}
.y92{bottom:466.953270px;}
.y110{bottom:469.744635px;}
.yce{bottom:473.218095px;}
.y132{bottom:474.899790px;}
.y75{bottom:475.744635px;}
.yb6{bottom:478.744635px;}
.y174{bottom:480.994635px;}
.y4c{bottom:481.744635px;}
.yef{bottom:483.377190px;}
.y18{bottom:484.458720px;}
.y91{bottom:484.953270px;}
.y10f{bottom:487.744635px;}
.y131{bottom:492.899790px;}
.y74{bottom:493.744635px;}
.yb5{bottom:496.744635px;}
.y173{bottom:497.494635px;}
.y1ab{bottom:498.484635px;}
.y4b{bottom:499.744635px;}
.y17{bottom:502.458720px;}
.y90{bottom:502.953270px;}
.y10e{bottom:505.744635px;}
.y130{bottom:510.899790px;}
.y73{bottom:511.744635px;}
.yb4{bottom:514.744635px;}
.yee{bottom:516.377190px;}
.y1aa{bottom:516.484635px;}
.y172{bottom:516.994635px;}
.y4a{bottom:517.744635px;}
.y16{bottom:520.458720px;}
.y8f{bottom:520.953270px;}
.y10d{bottom:523.744635px;}
.y149{bottom:526.744635px;}
.y12f{bottom:528.899790px;}
.y1a9{bottom:532.984635px;}
.y171{bottom:533.494635px;}
.yed{bottom:534.377190px;}
.y49{bottom:535.744635px;}
.y15{bottom:538.458720px;}
.ycd{bottom:538.730715px;}
.y72{bottom:544.744635px;}
.y12e{bottom:546.899790px;}
.yb3{bottom:547.744635px;}
.y170{bottom:549.994635px;}
.yec{bottom:552.377190px;}
.y48{bottom:553.744635px;}
.ycc{bottom:556.730715px;}
.y10c{bottom:556.744635px;}
.y1a5{bottom:557.494635px;}
.y71{bottom:562.744635px;}
.y14{bottom:563.028540px;}
.y12d{bottom:564.899790px;}
.yb2{bottom:565.744635px;}
.y8e{bottom:569.107080px;}
.y16f{bottom:569.494635px;}
.yeb{bottom:570.377190px;}
.y47{bottom:571.744635px;}
.ycb{bottom:574.730715px;}
.y10b{bottom:574.744635px;}
.y1a4{bottom:576.994635px;}
.y70{bottom:580.744635px;}
.y12c{bottom:582.899790px;}
.yb1{bottom:583.744635px;}
.y16e{bottom:585.994635px;}
.yea{bottom:588.377190px;}
.yca{bottom:592.730715px;}
.y10a{bottom:592.744635px;}
.y1a3{bottom:593.494635px;}
.y13{bottom:598.507050px;}
.y6f{bottom:598.744635px;}
.y12b{bottom:600.899790px;}
.yb0{bottom:601.744635px;}
.y16d{bottom:602.494635px;}
.y46{bottom:604.744635px;}
.ye9{bottom:606.377190px;}
.y109{bottom:610.744635px;}
.y12{bottom:612.150015px;}
.y1a2{bottom:612.994635px;}
.y6e{bottom:616.744635px;}
.y12a{bottom:618.899790px;}
.y16c{bottom:618.994635px;}
.yaf{bottom:619.744635px;}
.y45{bottom:622.744635px;}
.ye8{bottom:624.377190px;}
.y108{bottom:628.744635px;}
.y1a1{bottom:629.494635px;}
.y6d{bottom:634.744635px;}
.y8d{bottom:634.884525px;}
.y129{bottom:636.899790px;}
.y11{bottom:637.678710px;}
.yae{bottom:637.744635px;}
.y16b{bottom:638.494635px;}
.y44{bottom:640.744635px;}
.yc9{bottom:640.884525px;}
.ye7{bottom:642.377190px;}
.y1ad{bottom:645.904635px;}
.y107{bottom:646.744635px;}
.y1a0{bottom:648.994635px;}
.y6c{bottom:652.744635px;}
.y128{bottom:654.899790px;}
.y16a{bottom:654.994635px;}
.y10{bottom:655.678710px;}
.y43{bottom:658.744635px;}
.ye6{bottom:660.377190px;}
.y1ac{bottom:662.404635px;}
.y106{bottom:664.744635px;}
.y19f{bottom:665.494635px;}
.y6b{bottom:670.744635px;}
.y169{bottom:671.494635px;}
.y127{bottom:672.899790px;}
.yf{bottom:673.678710px;}
.y42{bottom:676.744635px;}
.y19e{bottom:681.994635px;}
.y105{bottom:682.744635px;}
.y6a{bottom:688.744635px;}
.y126{bottom:690.899790px;}
.y168{bottom:690.994635px;}
.y41{bottom:694.744635px;}
.ye{bottom:700.678710px;}
.y104{bottom:700.744635px;}
.y19d{bottom:701.494635px;}
.yc8{bottom:703.238145px;}
.yad{bottom:706.744635px;}
.y167{bottom:707.494635px;}
.ye5{bottom:708.531000px;}
.y125{bottom:708.899790px;}
.y40{bottom:712.744635px;}
.y69{bottom:716.314455px;}
.y19c{bottom:717.994635px;}
.yd{bottom:718.678710px;}
.y103{bottom:718.744635px;}
.yc7{bottom:721.238175px;}
.yac{bottom:724.744635px;}
.y124{bottom:726.899760px;}
.y166{bottom:726.994635px;}
.y8c{bottom:727.391985px;}
.y3f{bottom:730.744635px;}
.y148{bottom:734.314455px;}
.y19b{bottom:734.494635px;}
.yc{bottom:736.678710px;}
.y102{bottom:736.744635px;}
.yab{bottom:742.744635px;}
.y68{bottom:743.314455px;}
.y165{bottom:743.494635px;}
.y123{bottom:744.899760px;}
.y3e{bottom:748.744635px;}
.y19a{bottom:750.994635px;}
.yaa{bottom:760.744635px;}
.y122{bottom:762.899760px;}
.y164{bottom:762.994635px;}
.yb{bottom:763.678710px;}
.y8b{bottom:763.744635px;}
.yc6{bottom:769.391985px;}
.y101{bottom:769.744635px;}
.y199{bottom:770.494635px;}
.y147{bottom:772.744635px;}
.ye4{bottom:775.744635px;}
.ya9{bottom:778.744635px;}
.y163{bottom:779.494635px;}
.ya{bottom:781.678710px;}
.y3d{bottom:781.744635px;}
.y198{bottom:786.994635px;}
.y100{bottom:787.744635px;}
.y146{bottom:790.744635px;}
.ye3{bottom:793.744635px;}
.y121{bottom:795.899760px;}
.y162{bottom:795.994635px;}
.y9{bottom:799.678710px;}
.y3c{bottom:799.744635px;}
.ya8{bottom:802.678710px;}
.y197{bottom:803.494635px;}
.yc5{bottom:805.744635px;}
.y145{bottom:808.744635px;}
.ye2{bottom:811.744635px;}
.y120{bottom:813.899760px;}
.y161{bottom:815.494635px;}
.y3b{bottom:817.744635px;}
.y196{bottom:822.994635px;}
.yc4{bottom:823.744635px;}
.y8{bottom:826.678710px;}
.y144{bottom:826.744635px;}
.y1c3{bottom:827.850945px;}
.y11f{bottom:831.899760px;}
.y160{bottom:831.994635px;}
.y3a{bottom:835.744635px;}
.ya7{bottom:838.744635px;}
.y195{bottom:839.494635px;}
.yff{bottom:841.744635px;}
.y7{bottom:844.678710px;}
.ye1{bottom:844.744635px;}
.y15f{bottom:848.494635px;}
.y11e{bottom:849.899760px;}
.y8a{bottom:850.744635px;}
.y1c2{bottom:851.952015px;}
.y39{bottom:853.744635px;}
.ya6{bottom:856.744635px;}
.y194{bottom:858.994635px;}
.yfe{bottom:859.744635px;}
.y6{bottom:862.678710px;}
.ye0{bottom:862.744635px;}
.y15e{bottom:864.994635px;}
.y11d{bottom:867.899760px;}
.y89{bottom:868.744635px;}
.y38{bottom:871.744635px;}
.ya5{bottom:874.744635px;}
.y193{bottom:875.494635px;}
.y1c1{bottom:876.053100px;}
.yfd{bottom:877.744635px;}
.ydf{bottom:880.744635px;}
.y15d{bottom:881.494635px;}
.y88{bottom:886.744635px;}
.y5{bottom:889.678710px;}
.y37{bottom:889.744635px;}
.y11c{bottom:891.833835px;}
.ya4{bottom:892.744635px;}
.y192{bottom:894.994635px;}
.yde{bottom:898.744635px;}
.y1c0{bottom:900.154170px;}
.y15c{bottom:900.994635px;}
.y87{bottom:904.744635px;}
.y4{bottom:907.678710px;}
.y36{bottom:907.744635px;}
.ya3{bottom:910.744635px;}
.y191{bottom:911.494635px;}
.ydd{bottom:916.744635px;}
.y15b{bottom:917.494635px;}
.y1c4{bottom:922.605240px;}
.y86{bottom:922.744635px;}
.y1bf{bottom:924.255240px;}
.y3{bottom:925.678710px;}
.y35{bottom:925.744635px;}
.y11b{bottom:927.899760px;}
.y190{bottom:927.994635px;}
.ya2{bottom:928.744635px;}
.ydc{bottom:934.744635px;}
.y15a{bottom:936.994635px;}
.y67{bottom:940.744635px;}
.y34{bottom:943.744635px;}
.y11a{bottom:945.899760px;}
.ya1{bottom:946.744635px;}
.y18f{bottom:947.494635px;}
.y1be{bottom:948.356310px;}
.ydb{bottom:952.744635px;}
.y159{bottom:953.494635px;}
.y66{bottom:958.744635px;}
.y33{bottom:961.744635px;}
.y18e{bottom:963.994635px;}
.yfc{bottom:964.744635px;}
.y2{bottom:965.950200px;}
.yda{bottom:970.744635px;}
.y1bd{bottom:972.457395px;}
.y158{bottom:972.994635px;}
.y65{bottom:976.744635px;}
.y32{bottom:979.744635px;}
.y18d{bottom:980.494635px;}
.yfb{bottom:982.744635px;}
.yd9{bottom:988.744635px;}
.y157{bottom:989.494635px;}
.y119{bottom:994.053570px;}
.y64{bottom:994.744635px;}
.y1{bottom:995.950200px;}
.y1bc{bottom:996.558465px;}
.y31{bottom:997.744635px;}
.y18c{bottom:999.994635px;}
.y156{bottom:1005.994635px;}
.yd8{bottom:1006.744635px;}
.yfa{bottom:1010.314455px;}
.y63{bottom:1012.744635px;}
.y30{bottom:1015.744635px;}
.y18b{bottom:1016.494635px;}
.yd7{bottom:1024.744635px;}
.y1ba{bottom:1026.000000px;}
.y143{bottom:1030.678710px;}
.y62{bottom:1030.744635px;}
.y155{bottom:1032.814455px;}
.y18a{bottom:1032.994635px;}
.y2f{bottom:1033.744635px;}
.y2b{bottom:1041.900000px;}
.y5e{bottom:1047.106935px;}
.y61{bottom:1048.744635px;}
.y2e{bottom:1051.744635px;}
.yd6{bottom:1052.314455px;}
.y189{bottom:1052.494635px;}
.y1bb{bottom:1056.610845px;}
.y2a{bottom:1059.900000px;}
.y2c{bottom:1060.606935px;}
.y118{bottom:1063.476000px;}
.y60{bottom:1066.744635px;}
.y188{bottom:1068.994635px;}
.y154{bottom:1073.220705px;}
.y2d{bottom:1079.314455px;}
.y5f{bottom:1084.744635px;}
.y187{bottom:1085.494635px;}
.y29{bottom:1085.819085px;}
.y153{bottom:1087.470705px;}
.y28{bottom:1106.292480px;}
.y5c{bottom:1121.595705px;}
.y27{bottom:1132.888185px;}
.hb{height:37.406250px;}
.h13{height:44.165039px;}
.h12{height:45.351562px;}
.ha{height:47.109375px;}
.h3{height:50.062500px;}
.hf{height:52.998047px;}
.h10{height:54.421875px;}
.h11{height:56.320312px;}
.h5{height:58.886719px;}
.h9{height:61.917166px;}
.h2{height:62.578125px;}
.h8{height:64.775391px;}
.he{height:67.085918px;}
.hc{height:67.085977px;}
.hd{height:67.109415px;}
.h4{height:75.093750px;}
.h7{height:84.656250px;}
.h1{height:87.609375px;}
.h6{height:129.550781px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:35.314455px;}
.x8{left:117.000000px;}
.xf{left:125.250000px;}
.x10{left:130.693905px;}
.x1{left:135.000000px;}
.x3{left:141.950490px;}
.x4{left:144.000000px;}
.x2{left:162.000000px;}
.x9{left:213.512700px;}
.x7{left:225.000000px;}
.xc{left:240.000000px;}
.xd{left:247.500000px;}
.x5{left:346.484985px;}
.x11{left:421.876095px;}
.xe{left:423.751470px;}
.xb{left:762.890580px;}
.xa{left:769.335930px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v2{vertical-align:-8.533227pt;}
.v4{vertical-align:-5.866667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.777813pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000053pt;}
.ls18{letter-spacing:0.000213pt;}
.ls1{letter-spacing:0.000320pt;}
.ls2{letter-spacing:0.000427pt;}
.lsb{letter-spacing:0.001387pt;}
.ls9{letter-spacing:0.003307pt;}
.ls7{letter-spacing:0.005387pt;}
.lsc{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.007093pt;}
.ls4{letter-spacing:0.007147pt;}
.ls3{letter-spacing:0.008960pt;}
.ls6{letter-spacing:0.010400pt;}
.ls1a{letter-spacing:0.015627pt;}
.ls5{letter-spacing:0.020853pt;}
.ls1b{letter-spacing:58.966133pt;}
.ls10{letter-spacing:78.022773pt;}
.ls1c{letter-spacing:87.479200pt;}
.ls15{letter-spacing:90.825493pt;}
.lsf{letter-spacing:120.766933pt;}
.ls19{letter-spacing:121.704053pt;}
.ls13{letter-spacing:135.825493pt;}
.ls1e{letter-spacing:142.479200pt;}
.ls12{letter-spacing:159.702453pt;}
.ls14{letter-spacing:160.776693pt;}
.ls11{letter-spacing:167.170987pt;}
.lse{letter-spacing:182.170987pt;}
.ls17{letter-spacing:213.907520pt;}
.ls1d{letter-spacing:215.665333pt;}
.lsd{letter-spacing:239.634080pt;}
.ls16{letter-spacing:302.500053pt;}
.ws4{word-spacing:-53.333333pt;}
.ws3{word-spacing:-42.666667pt;}
.ws5{word-spacing:-40.000000pt;}
.ws6{word-spacing:-26.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws9{word-spacing:-10.000000pt;}
.wsa{word-spacing:-7.333333pt;}
.ws7{word-spacing:-0.040000pt;}
.ws8{word-spacing:-0.029333pt;}
.ws0{word-spacing:0.000000pt;}
._4{width:58.623680pt;}
._12{width:87.382453pt;}
._8{width:100.833387pt;}
._10{width:139.396267pt;}
._d{width:165.426613pt;}
._6{width:195.405173pt;}
._e{width:219.013653pt;}
._a{width:220.426613pt;}
._b{width:229.013653pt;}
._7{width:234.013653pt;}
._9{width:244.309653pt;}
._c{width:245.395413pt;}
._13{width:259.123253pt;}
._5{width:262.462080pt;}
._11{width:265.217493pt;}
._3{width:288.054133pt;}
._f{width:302.498187pt;}
._0{width:384.000000pt;}
._2{width:1905.969173pt;}
._1{width:1927.302507pt;}
.fs9{font-size:29.333333pt;}
.fs8{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:56.077990pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:94.133333pt;}
.y142{bottom:139.466480pt;}
.y152{bottom:143.307293pt;}
.y186{bottom:144.884120pt;}
.y141{bottom:155.466480pt;}
.y151{bottom:155.973960pt;}
.yc3{bottom:158.724613pt;}
.y185{bottom:159.550787pt;}
.y117{bottom:160.997147pt;}
.yd5{bottom:165.793213pt;}
.y85{bottom:166.884120pt;}
.y26{bottom:169.296640pt;}
.y140{bottom:171.466480pt;}
.y184{bottom:174.217453pt;}
.yc2{bottom:174.724613pt;}
.y5b{bottom:174.884120pt;}
.y116{bottom:176.997147pt;}
.ya0{bottom:177.736240pt;}
.y150{bottom:179.390627pt;}
.y84{bottom:182.884120pt;}
.y13f{bottom:187.466480pt;}
.y183{bottom:188.884120pt;}
.y25{bottom:190.571373pt;}
.yc1{bottom:190.724613pt;}
.y5a{bottom:190.884120pt;}
.y9f{bottom:193.736240pt;}
.y83{bottom:198.884120pt;}
.y13e{bottom:203.466480pt;}
.y182{bottom:206.217453pt;}
.y59{bottom:206.884120pt;}
.yd4{bottom:208.596600pt;}
.y9e{bottom:209.736240pt;}
.yf9{bottom:210.410480pt;}
.y82{bottom:214.884120pt;}
.y14f{bottom:217.550787pt;}
.y13d{bottom:219.466480pt;}
.y115{bottom:219.800533pt;}
.y181{bottom:220.884120pt;}
.y58{bottom:222.884120pt;}
.y9d{bottom:225.736240pt;}
.yf8{bottom:226.410480pt;}
.y1ae{bottom:228.217453pt;}
.y81{bottom:230.884120pt;}
.yc0{bottom:233.528000pt;}
.y14e{bottom:233.550787pt;}
.y180{bottom:235.550787pt;}
.y24{bottom:238.629973pt;}
.y57{bottom:238.884120pt;}
.y9c{bottom:241.736240pt;}
.yf7{bottom:242.410480pt;}
.y1a8{bottom:244.217453pt;}
.y80{bottom:246.884120pt;}
.y13c{bottom:248.799813pt;}
.y14d{bottom:249.550787pt;}
.y17f{bottom:252.884120pt;}
.y23{bottom:254.629973pt;}
.y56{bottom:254.884120pt;}
.y9b{bottom:257.736240pt;}
.y1a7{bottom:260.217453pt;}
.y7f{bottom:262.884120pt;}
.y13b{bottom:264.799813pt;}
.y14c{bottom:265.550787pt;}
.yd3{bottom:266.830080pt;}
.y17e{bottom:267.550787pt;}
.ybf{bottom:268.217453pt;}
.y22{bottom:270.629973pt;}
.y55{bottom:270.884120pt;}
.yf6{bottom:271.743813pt;}
.y9a{bottom:273.736240pt;}
.y1a6{bottom:274.884120pt;}
.y7e{bottom:278.884120pt;}
.y13a{bottom:280.799813pt;}
.y14b{bottom:281.550787pt;}
.yd2{bottom:282.830080pt;}
.ybe{bottom:284.217453pt;}
.y17d{bottom:284.884120pt;}
.y21{bottom:286.629973pt;}
.y54{bottom:286.884120pt;}
.yf5{bottom:287.743813pt;}
.y99{bottom:289.736240pt;}
.y7d{bottom:294.884120pt;}
.y139{bottom:296.799813pt;}
.y14a{bottom:297.550787pt;}
.yd1{bottom:298.830080pt;}
.y17c{bottom:299.550787pt;}
.y20{bottom:302.629973pt;}
.y53{bottom:302.884120pt;}
.yf4{bottom:303.743773pt;}
.y114{bottom:304.405360pt;}
.y1b9{bottom:309.497440pt;}
.y7c{bottom:310.884120pt;}
.y138{bottom:312.799813pt;}
.ybd{bottom:313.550787pt;}
.y17b{bottom:316.884120pt;}
.y1f{bottom:318.629973pt;}
.y52{bottom:318.884120pt;}
.y98{bottom:319.069573pt;}
.yf3{bottom:319.743773pt;}
.y1b8{bottom:325.497440pt;}
.y7b{bottom:326.884120pt;}
.y137{bottom:328.799813pt;}
.ybc{bottom:329.550787pt;}
.y17a{bottom:331.550787pt;}
.y1e{bottom:334.629973pt;}
.y51{bottom:334.884120pt;}
.y97{bottom:335.069573pt;}
.yf2{bottom:335.743773pt;}
.y1b7{bottom:341.497440pt;}
.yd0{bottom:341.633467pt;}
.y7a{bottom:342.884120pt;}
.y136{bottom:344.799813pt;}
.ybb{bottom:345.550787pt;}
.y179{bottom:348.884120pt;}
.y1d{bottom:350.629973pt;}
.y50{bottom:350.884120pt;}
.y96{bottom:351.069573pt;}
.y1b6{bottom:357.497440pt;}
.y79{bottom:358.884120pt;}
.y1b1{bottom:359.417440pt;}
.y135{bottom:360.799813pt;}
.yba{bottom:361.550787pt;}
.y178{bottom:363.550787pt;}
.y1c{bottom:366.629973pt;}
.y95{bottom:367.069573pt;}
.y113{bottom:369.550787pt;}
.y1b5{bottom:372.164107pt;}
.y78{bottom:374.884120pt;}
.y1b0{bottom:375.417440pt;}
.yb9{bottom:377.550787pt;}
.ycf{bottom:377.834920pt;}
.yf1{bottom:378.547160pt;}
.y4f{bottom:380.217453pt;}
.y177{bottom:380.884120pt;}
.y1b4{bottom:382.617427pt;}
.y1b{bottom:382.629973pt;}
.y94{bottom:383.069573pt;}
.y112{bottom:385.550787pt;}
.y1af{bottom:390.084107pt;}
.y134{bottom:390.133147pt;}
.y77{bottom:390.884120pt;}
.yb8{bottom:393.550787pt;}
.y176{bottom:395.550787pt;}
.y4e{bottom:396.217453pt;}
.y1b3{bottom:398.617427pt;}
.y1a{bottom:398.629973pt;}
.y93{bottom:399.069573pt;}
.y111{bottom:401.550787pt;}
.y133{bottom:406.133147pt;}
.y76{bottom:406.884120pt;}
.yb7{bottom:409.550787pt;}
.y4d{bottom:412.217453pt;}
.y175{bottom:412.884120pt;}
.y1b2{bottom:413.284093pt;}
.yf0{bottom:413.668613pt;}
.y19{bottom:414.629973pt;}
.y92{bottom:415.069573pt;}
.y110{bottom:417.550787pt;}
.yce{bottom:420.638307pt;}
.y132{bottom:422.133147pt;}
.y75{bottom:422.884120pt;}
.yb6{bottom:425.550787pt;}
.y174{bottom:427.550787pt;}
.y4c{bottom:428.217453pt;}
.yef{bottom:429.668613pt;}
.y18{bottom:430.629973pt;}
.y91{bottom:431.069573pt;}
.y10f{bottom:433.550787pt;}
.y131{bottom:438.133147pt;}
.y74{bottom:438.884120pt;}
.yb5{bottom:441.550787pt;}
.y173{bottom:442.217453pt;}
.y1ab{bottom:443.097453pt;}
.y4b{bottom:444.217453pt;}
.y17{bottom:446.629973pt;}
.y90{bottom:447.069573pt;}
.y10e{bottom:449.550787pt;}
.y130{bottom:454.133147pt;}
.y73{bottom:454.884120pt;}
.yb4{bottom:457.550787pt;}
.yee{bottom:459.001947pt;}
.y1aa{bottom:459.097453pt;}
.y172{bottom:459.550787pt;}
.y4a{bottom:460.217453pt;}
.y16{bottom:462.629973pt;}
.y8f{bottom:463.069573pt;}
.y10d{bottom:465.550787pt;}
.y149{bottom:468.217453pt;}
.y12f{bottom:470.133147pt;}
.y1a9{bottom:473.764120pt;}
.y171{bottom:474.217453pt;}
.yed{bottom:475.001947pt;}
.y49{bottom:476.217453pt;}
.y15{bottom:478.629973pt;}
.ycd{bottom:478.871747pt;}
.y72{bottom:484.217453pt;}
.y12e{bottom:486.133147pt;}
.yb3{bottom:486.884120pt;}
.y170{bottom:488.884120pt;}
.yec{bottom:491.001947pt;}
.y48{bottom:492.217453pt;}
.ycc{bottom:494.871747pt;}
.y10c{bottom:494.884120pt;}
.y1a5{bottom:495.550787pt;}
.y71{bottom:500.217453pt;}
.y14{bottom:500.469813pt;}
.y12d{bottom:502.133147pt;}
.yb2{bottom:502.884120pt;}
.y8e{bottom:505.872960pt;}
.y16f{bottom:506.217453pt;}
.yeb{bottom:507.001947pt;}
.y47{bottom:508.217453pt;}
.ycb{bottom:510.871747pt;}
.y10b{bottom:510.884120pt;}
.y1a4{bottom:512.884120pt;}
.y70{bottom:516.217453pt;}
.y12c{bottom:518.133147pt;}
.yb1{bottom:518.884120pt;}
.y16e{bottom:520.884120pt;}
.yea{bottom:523.001947pt;}
.yca{bottom:526.871747pt;}
.y10a{bottom:526.884120pt;}
.y1a3{bottom:527.550787pt;}
.y13{bottom:532.006267pt;}
.y6f{bottom:532.217453pt;}
.y12b{bottom:534.133147pt;}
.yb0{bottom:534.884120pt;}
.y16d{bottom:535.550787pt;}
.y46{bottom:537.550787pt;}
.ye9{bottom:539.001947pt;}
.y109{bottom:542.884120pt;}
.y12{bottom:544.133347pt;}
.y1a2{bottom:544.884120pt;}
.y6e{bottom:548.217453pt;}
.y12a{bottom:550.133147pt;}
.y16c{bottom:550.217453pt;}
.yaf{bottom:550.884120pt;}
.y45{bottom:553.550787pt;}
.ye8{bottom:555.001947pt;}
.y108{bottom:558.884120pt;}
.y1a1{bottom:559.550787pt;}
.y6d{bottom:564.217453pt;}
.y8d{bottom:564.341800pt;}
.y129{bottom:566.133147pt;}
.y11{bottom:566.825520pt;}
.yae{bottom:566.884120pt;}
.y16b{bottom:567.550787pt;}
.y44{bottom:569.550787pt;}
.yc9{bottom:569.675133pt;}
.ye7{bottom:571.001947pt;}
.y1ad{bottom:574.137453pt;}
.y107{bottom:574.884120pt;}
.y1a0{bottom:576.884120pt;}
.y6c{bottom:580.217453pt;}
.y128{bottom:582.133147pt;}
.y16a{bottom:582.217453pt;}
.y10{bottom:582.825520pt;}
.y43{bottom:585.550787pt;}
.ye6{bottom:587.001947pt;}
.y1ac{bottom:588.804120pt;}
.y106{bottom:590.884120pt;}
.y19f{bottom:591.550787pt;}
.y6b{bottom:596.217453pt;}
.y169{bottom:596.884120pt;}
.y127{bottom:598.133147pt;}
.yf{bottom:598.825520pt;}
.y42{bottom:601.550787pt;}
.y19e{bottom:606.217453pt;}
.y105{bottom:606.884120pt;}
.y6a{bottom:612.217453pt;}
.y126{bottom:614.133147pt;}
.y168{bottom:614.217453pt;}
.y41{bottom:617.550787pt;}
.ye{bottom:622.825520pt;}
.y104{bottom:622.884120pt;}
.y19d{bottom:623.550787pt;}
.yc8{bottom:625.100573pt;}
.yad{bottom:628.217453pt;}
.y167{bottom:628.884120pt;}
.ye5{bottom:629.805333pt;}
.y125{bottom:630.133147pt;}
.y40{bottom:633.550787pt;}
.y69{bottom:636.723960pt;}
.y19c{bottom:638.217453pt;}
.yd{bottom:638.825520pt;}
.y103{bottom:638.884120pt;}
.yc7{bottom:641.100600pt;}
.yac{bottom:644.217453pt;}
.y124{bottom:646.133120pt;}
.y166{bottom:646.217453pt;}
.y8c{bottom:646.570653pt;}
.y3f{bottom:649.550787pt;}
.y148{bottom:652.723960pt;}
.y19b{bottom:652.884120pt;}
.yc{bottom:654.825520pt;}
.y102{bottom:654.884120pt;}
.yab{bottom:660.217453pt;}
.y68{bottom:660.723960pt;}
.y165{bottom:660.884120pt;}
.y123{bottom:662.133120pt;}
.y3e{bottom:665.550787pt;}
.y19a{bottom:667.550787pt;}
.yaa{bottom:676.217453pt;}
.y122{bottom:678.133120pt;}
.y164{bottom:678.217453pt;}
.yb{bottom:678.825520pt;}
.y8b{bottom:678.884120pt;}
.yc6{bottom:683.903987pt;}
.y101{bottom:684.217453pt;}
.y199{bottom:684.884120pt;}
.y147{bottom:686.884120pt;}
.ye4{bottom:689.550787pt;}
.ya9{bottom:692.217453pt;}
.y163{bottom:692.884120pt;}
.ya{bottom:694.825520pt;}
.y3d{bottom:694.884120pt;}
.y198{bottom:699.550787pt;}
.y100{bottom:700.217453pt;}
.y146{bottom:702.884120pt;}
.ye3{bottom:705.550787pt;}
.y121{bottom:707.466453pt;}
.y162{bottom:707.550787pt;}
.y9{bottom:710.825520pt;}
.y3c{bottom:710.884120pt;}
.ya8{bottom:713.492187pt;}
.y197{bottom:714.217453pt;}
.yc5{bottom:716.217453pt;}
.y145{bottom:718.884120pt;}
.ye2{bottom:721.550787pt;}
.y120{bottom:723.466453pt;}
.y161{bottom:724.884120pt;}
.y3b{bottom:726.884120pt;}
.y196{bottom:731.550787pt;}
.yc4{bottom:732.217453pt;}
.y8{bottom:734.825520pt;}
.y144{bottom:734.884120pt;}
.y1c3{bottom:735.867507pt;}
.y11f{bottom:739.466453pt;}
.y160{bottom:739.550787pt;}
.y3a{bottom:742.884120pt;}
.ya7{bottom:745.550787pt;}
.y195{bottom:746.217453pt;}
.yff{bottom:748.217453pt;}
.y7{bottom:750.825520pt;}
.ye1{bottom:750.884120pt;}
.y15f{bottom:754.217453pt;}
.y11e{bottom:755.466453pt;}
.y8a{bottom:756.217453pt;}
.y1c2{bottom:757.290680pt;}
.y39{bottom:758.884120pt;}
.ya6{bottom:761.550787pt;}
.y194{bottom:763.550787pt;}
.yfe{bottom:764.217453pt;}
.y6{bottom:766.825520pt;}
.ye0{bottom:766.884120pt;}
.y15e{bottom:768.884120pt;}
.y11d{bottom:771.466453pt;}
.y89{bottom:772.217453pt;}
.y38{bottom:774.884120pt;}
.ya5{bottom:777.550787pt;}
.y193{bottom:778.217453pt;}
.y1c1{bottom:778.713867pt;}
.yfd{bottom:780.217453pt;}
.ydf{bottom:782.884120pt;}
.y15d{bottom:783.550787pt;}
.y88{bottom:788.217453pt;}
.y5{bottom:790.825520pt;}
.y37{bottom:790.884120pt;}
.y11c{bottom:792.741187pt;}
.ya4{bottom:793.550787pt;}
.y192{bottom:795.550787pt;}
.yde{bottom:798.884120pt;}
.y1c0{bottom:800.137040pt;}
.y15c{bottom:800.884120pt;}
.y87{bottom:804.217453pt;}
.y4{bottom:806.825520pt;}
.y36{bottom:806.884120pt;}
.ya3{bottom:809.550787pt;}
.y191{bottom:810.217453pt;}
.ydd{bottom:814.884120pt;}
.y15b{bottom:815.550787pt;}
.y1c4{bottom:820.093547pt;}
.y86{bottom:820.217453pt;}
.y1bf{bottom:821.560213pt;}
.y3{bottom:822.825520pt;}
.y35{bottom:822.884120pt;}
.y11b{bottom:824.799787pt;}
.y190{bottom:824.884120pt;}
.ya2{bottom:825.550787pt;}
.ydc{bottom:830.884120pt;}
.y15a{bottom:832.884120pt;}
.y67{bottom:836.217453pt;}
.y34{bottom:838.884120pt;}
.y11a{bottom:840.799787pt;}
.ya1{bottom:841.550787pt;}
.y18f{bottom:842.217453pt;}
.y1be{bottom:842.983387pt;}
.ydb{bottom:846.884120pt;}
.y159{bottom:847.550787pt;}
.y66{bottom:852.217453pt;}
.y33{bottom:854.884120pt;}
.y18e{bottom:856.884120pt;}
.yfc{bottom:857.550787pt;}
.y2{bottom:858.622400pt;}
.yda{bottom:862.884120pt;}
.y1bd{bottom:864.406573pt;}
.y158{bottom:864.884120pt;}
.y65{bottom:868.217453pt;}
.y32{bottom:870.884120pt;}
.y18d{bottom:871.550787pt;}
.yfb{bottom:873.550787pt;}
.yd9{bottom:878.884120pt;}
.y157{bottom:879.550787pt;}
.y119{bottom:883.603173pt;}
.y64{bottom:884.217453pt;}
.y1{bottom:885.289067pt;}
.y1bc{bottom:885.829747pt;}
.y31{bottom:886.884120pt;}
.y18c{bottom:888.884120pt;}
.y156{bottom:894.217453pt;}
.yd8{bottom:894.884120pt;}
.yfa{bottom:898.057293pt;}
.y63{bottom:900.217453pt;}
.y30{bottom:902.884120pt;}
.y18b{bottom:903.550787pt;}
.yd7{bottom:910.884120pt;}
.y1ba{bottom:912.000000pt;}
.y143{bottom:916.158853pt;}
.y62{bottom:916.217453pt;}
.y155{bottom:918.057293pt;}
.y18a{bottom:918.217453pt;}
.y2f{bottom:918.884120pt;}
.y2b{bottom:926.133333pt;}
.y5e{bottom:930.761720pt;}
.y61{bottom:932.217453pt;}
.y2e{bottom:934.884120pt;}
.yd6{bottom:935.390627pt;}
.y189{bottom:935.550787pt;}
.y1bb{bottom:939.209640pt;}
.y2a{bottom:942.133333pt;}
.y2c{bottom:942.761720pt;}
.y118{bottom:945.312000pt;}
.y60{bottom:948.217453pt;}
.y188{bottom:950.217453pt;}
.y154{bottom:953.973960pt;}
.y2d{bottom:959.390627pt;}
.y5f{bottom:964.217453pt;}
.y187{bottom:964.884120pt;}
.y29{bottom:965.172520pt;}
.y153{bottom:966.640627pt;}
.y28{bottom:983.371093pt;}
.y5c{bottom:996.973960pt;}
.y27{bottom:1007.011720pt;}
.hb{height:33.250000pt;}
.h13{height:39.257812pt;}
.h12{height:40.312500pt;}
.ha{height:41.875000pt;}
.h3{height:44.500000pt;}
.hf{height:47.109375pt;}
.h10{height:48.375000pt;}
.h11{height:50.062500pt;}
.h5{height:52.343750pt;}
.h9{height:55.037481pt;}
.h2{height:55.625000pt;}
.h8{height:57.578125pt;}
.he{height:59.631927pt;}
.hc{height:59.631980pt;}
.hd{height:59.652813pt;}
.h4{height:66.750000pt;}
.h7{height:75.250000pt;}
.h1{height:77.875000pt;}
.h6{height:115.156250pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:31.390627pt;}
.x8{left:104.000000pt;}
.xf{left:111.333333pt;}
.x10{left:116.172360pt;}
.x1{left:120.000000pt;}
.x3{left:126.178213pt;}
.x4{left:128.000000pt;}
.x2{left:144.000000pt;}
.x9{left:189.789067pt;}
.x7{left:200.000000pt;}
.xc{left:213.333333pt;}
.xd{left:220.000000pt;}
.x5{left:307.986653pt;}
.x11{left:375.000973pt;}
.xe{left:376.667973pt;}
.xb{left:678.124960pt;}
.xa{left:683.854160pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  