
    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_843eeb4e61b85aa377cfb9bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_552ca764c3a9081a0863fd2b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854000;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_d128b20a241f2d768ad552f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_17b2ffe5d94284d4d64e06f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_cc0f1143826412b06220e3c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_680dfe4ed0dd588af406ec83.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.049000;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_1461688b7e055e3a7b0977e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_5933067b283a42fde44a26b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.683000;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_1daa9773c0251f15603a616f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_e2723886e7254e0c4ba34160.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893000;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_07a45d0d34ca07d85bd1a850.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.685000;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_3a43ce839007357bff746efe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703450;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_acb7860f02559f14d5280f2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;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_752b1184bfe14f6d9b84299a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_0414ac6fae9064c75812144e.woff2')format("woff");}.fff{font-family:fff;line-height:0.900000;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3132d05495db12a9821ff371.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.726000;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_4631cf5c022f8456ae54ae2e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.244000;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;}
.m15{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);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,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);}
.mf{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-22.854000px;}
.v8{vertical-align:-14.778000px;}
.v3{vertical-align:-8.970000px;}
.v2{vertical-align:-6.012000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.774000px;}
.ve{vertical-align:16.884000px;}
.v9{vertical-align:17.934000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:24.678000px;}
.vd{vertical-align:31.050000px;}
.vf{vertical-align:38.574000px;}
.v7{vertical-align:40.440000px;}
.vb{vertical-align:46.992000px;}
.va{vertical-align:48.984000px;}
.vc{vertical-align:55.854000px;}
.lsf{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000921px;}
.ls2b{letter-spacing:0.001469px;}
.ls9{letter-spacing:0.002798px;}
.ls1c{letter-spacing:0.002886px;}
.ls26{letter-spacing:0.006921px;}
.ls3a{letter-spacing:0.014056px;}
.ls13{letter-spacing:1.613941px;}
.ls1{letter-spacing:1.654313px;}
.ls2f{letter-spacing:1.654398px;}
.ls33{letter-spacing:1.659558px;}
.ls27{letter-spacing:1.673717px;}
.ls8{letter-spacing:1.687588px;}
.ls22{letter-spacing:2.988411px;}
.ls2a{letter-spacing:2.989140px;}
.ls21{letter-spacing:2.992307px;}
.ls23{letter-spacing:2.993543px;}
.ls35{letter-spacing:3.153453px;}
.ls3d{letter-spacing:4.270641px;}
.ls3c{letter-spacing:4.276641px;}
.ls29{letter-spacing:4.281333px;}
.ls14{letter-spacing:6.486694px;}
.ls17{letter-spacing:13.270183px;}
.ls3e{letter-spacing:13.449600px;}
.ls7{letter-spacing:14.943900px;}
.ls6{letter-spacing:16.557841px;}
.ls5{letter-spacing:16.617617px;}
.lsc{letter-spacing:16.677392px;}
.ls42{letter-spacing:17.454475px;}
.ls41{letter-spacing:17.514251px;}
.ls16{letter-spacing:17.554641px;}
.ls2d{letter-spacing:18.530436px;}
.ls12{letter-spacing:19.216641px;}
.ls28{letter-spacing:19.221333px;}
.ls11{letter-spacing:20.861684px;}
.ls15{letter-spacing:20.878641px;}
.lsb{letter-spacing:20.932641px;}
.ls1a{letter-spacing:26.062162px;}
.ls19{letter-spacing:26.121937px;}
.ls0{letter-spacing:26.540366px;}
.ls10{letter-spacing:27.317449px;}
.ls25{letter-spacing:27.915205px;}
.ls4{letter-spacing:28.094532px;}
.ls40{letter-spacing:29.290044px;}
.ls3f{letter-spacing:29.349820px;}
.ls24{letter-spacing:29.887800px;}
.lse{letter-spacing:31.681068px;}
.ls3{letter-spacing:32.386641px;}
.ls30{letter-spacing:35.090525px;}
.ls31{letter-spacing:35.096525px;}
.lsd{letter-spacing:35.932641px;}
.ls38{letter-spacing:45.796641px;}
.ls34{letter-spacing:50.036525px;}
.ls36{letter-spacing:62.656641px;}
.lsa{letter-spacing:66.787531px;}
.ls3b{letter-spacing:75.879372px;}
.ls37{letter-spacing:99.016641px;}
.ls1b{letter-spacing:108.754641px;}
.ls1d{letter-spacing:112.642641px;}
.ls39{letter-spacing:118.150641px;}
.ls1e{letter-spacing:180.632017px;}
.ls1f{letter-spacing:214.634177px;}
.ls20{letter-spacing:229.403251px;}
.ls2e{letter-spacing:235.913722px;}
.ls18{letter-spacing:971.233949px;}
.ls32{letter-spacing:1043.469269px;}
.ls2c{letter-spacing:1540.058558px;}
.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;}
}
.ws24{word-spacing:-38.937826px;}
.ws1f{word-spacing:-38.913916px;}
.ws2{word-spacing:-31.633157px;}
.ws3c{word-spacing:-28.955301px;}
.ws38{word-spacing:-28.383644px;}
.ws3e{word-spacing:-22.320209px;}
.ws51{word-spacing:-21.519300px;}
.ws17{word-spacing:-14.943900px;}
.ws3f{word-spacing:-10.460700px;}
.ws52{word-spacing:-1.972595px;}
.ws34{word-spacing:-1.315063px;}
.ws33{word-spacing:-1.255288px;}
.wsa{word-spacing:-0.896634px;}
.ws9{word-spacing:-0.836858px;}
.ws46{word-spacing:-0.777083px;}
.ws56{word-spacing:-0.478205px;}
.ws1a{word-spacing:-0.298878px;}
.ws11{word-spacing:-0.239102px;}
.wse{word-spacing:-0.179327px;}
.ws7{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.059776px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.059776px;}
.ws6{word-spacing:0.119551px;}
.ws41{word-spacing:0.179327px;}
.wsc{word-spacing:0.239102px;}
.wsd{word-spacing:0.298878px;}
.ws8{word-spacing:0.358654px;}
.ws1b{word-spacing:0.418429px;}
.ws12{word-spacing:0.777083px;}
.ws3{word-spacing:1.016185px;}
.ws49{word-spacing:1.673717px;}
.ws1c{word-spacing:1.912819px;}
.ws1e{word-spacing:1.972595px;}
.ws55{word-spacing:3.048556px;}
.ws3d{word-spacing:3.586536px;}
.ws22{word-spacing:3.706087px;}
.ws16{word-spacing:3.765863px;}
.ws23{word-spacing:3.825638px;}
.ws3a{word-spacing:4.004965px;}
.ws47{word-spacing:4.483170px;}
.wsf{word-spacing:4.542946px;}
.ws10{word-spacing:4.602721px;}
.ws4c{word-spacing:4.662497px;}
.ws27{word-spacing:4.722272px;}
.ws53{word-spacing:4.841824px;}
.ws1{word-spacing:4.961375px;}
.ws50{word-spacing:5.379804px;}
.ws4{word-spacing:5.798233px;}
.ws48{word-spacing:6.097111px;}
.ws20{word-spacing:6.216662px;}
.ws4e{word-spacing:6.395989px;}
.ws4f{word-spacing:6.455765px;}
.ws54{word-spacing:6.575316px;}
.ws15{word-spacing:7.651277px;}
.ws14{word-spacing:7.711052px;}
.ws40{word-spacing:7.770828px;}
.ws1d{word-spacing:9.982525px;}
.ws4d{word-spacing:12.791978px;}
.ws3b{word-spacing:12.903687px;}
.ws26{word-spacing:13.210408px;}
.ws30{word-spacing:14.884124px;}
.ws19{word-spacing:14.943900px;}
.ws28{word-spacing:16.498066px;}
.ws25{word-spacing:16.557841px;}
.ws35{word-spacing:17.932650px;}
.ws39{word-spacing:23.465627px;}
.ws37{word-spacing:26.458423px;}
.ws36{word-spacing:28.510423px;}
.ws13{word-spacing:53.798400px;}
.ws31{word-spacing:63.421912px;}
.wsb{word-spacing:64.557900px;}
.ws4b{word-spacing:124.059110px;}
.ws4a{word-spacing:137.508710px;}
.ws44{word-spacing:159.619853px;}
.ws2f{word-spacing:186.858526px;}
.ws43{word-spacing:200.937024px;}
.ws42{word-spacing:249.301786px;}
.ws2b{word-spacing:292.780889px;}
.ws2e{word-spacing:301.747229px;}
.ws2c{word-spacing:312.626388px;}
.ws2a{word-spacing:316.691129px;}
.ws45{word-spacing:324.108417px;}
.ws32{word-spacing:326.613878px;}
.ws2d{word-spacing:326.793205px;}
.ws29{word-spacing:543.539531px;}
.ws21{word-spacing:1174.263265px;}
._d{margin-left:-6.455790px;}
._e{margin-left:-5.384584px;}
._1{margin-left:-4.131696px;}
._9{margin-left:-2.682722px;}
._0{margin-left:-1.549386px;}
._17{width:1.659449px;}
._18{width:3.141842px;}
._5{width:14.047266px;}
._16{width:15.710750px;}
._6{width:17.629022px;}
._4{width:18.709763px;}
._2{width:21.220338px;}
._11{width:22.236672px;}
._b{width:24.993380px;}
._f{width:26.683932px;}
._22{width:28.034756px;}
._3{width:30.421001px;}
._8{width:31.975166px;}
._2b{width:33.115682px;}
._a{width:34.131868px;}
._12{width:38.251604px;}
._19{width:43.031252px;}
._10{width:71.731200px;}
._1a{width:77.684890px;}
._c{width:86.077200px;}
._1b{width:99.903629px;}
._2a{width:152.410867px;}
._20{width:165.860467px;}
._15{width:186.559648px;}
._27{width:207.478880px;}
._29{width:218.152512px;}
._26{width:245.051712px;}
._25{width:255.542400px;}
._28{width:261.180451px;}
._21{width:263.665958px;}
._1f{width:267.109056px;}
._1d{width:277.115558px;}
._1c{width:280.558656px;}
._1e{width:281.839037px;}
._14{width:288.677911px;}
._13{width:322.429586px;}
._23{width:335.821015px;}
._7{width:1008.474148px;}
._24{width:1255.375851px;}
.fc4{color:transparent;}
.fc3{color:rgb(30,136,229);}
.fc1{color:rgb(229,57,53);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.887800px;}
.fsb{font-size:35.406504px;}
.fs6{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs9{font-size:42.150600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:50.580720px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:59.010840px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y8c{bottom:10.254451px;}
.y8b{bottom:25.764554px;}
.y96{bottom:36.911412px;}
.y8d{bottom:62.416038px;}
.y26{bottom:63.168000px;}
.y9b{bottom:97.817053px;}
.y97{bottom:104.923747px;}
.y25{bottom:108.000000px;}
.y4d{bottom:108.727500px;}
.ya1{bottom:118.113000px;}
.y92{bottom:125.231408px;}
.y8e{bottom:126.177602px;}
.y77{bottom:132.733500px;}
.ya0{bottom:136.047000px;}
.y24{bottom:137.766000px;}
.y4c{bottom:138.615000px;}
.y9f{bottom:153.979500px;}
.y23{bottom:155.700000px;}
.y76{bottom:162.622500px;}
.y9c{bottom:167.025951px;}
.y4b{bottom:168.504000px;}
.y98{bottom:172.936082px;}
.y9d{bottom:174.187643px;}
.yc0{bottom:174.628500px;}
.y75{bottom:180.555000px;}
.y22{bottom:185.466000px;}
.y8a{bottom:186.856500px;}
.y8f{bottom:189.939165px;}
.y4a{bottom:198.391500px;}
.y21{bottom:203.398500px;}
.ybf{bottom:204.516000px;}
.y74{bottom:210.442500px;}
.y49{bottom:216.324000px;}
.y20{bottom:233.166000px;}
.ybe{bottom:234.405000px;}
.y73{bottom:240.330000px;}
.y99{bottom:240.948417px;}
.y1f{bottom:251.098500px;}
.y90{bottom:253.700729px;}
.y48{bottom:257.580000px;}
.ybd{bottom:262.425000px;}
.y72{bottom:270.219000px;}
.y47{bottom:278.818500px;}
.y1e{bottom:279.118500px;}
.y71{bottom:283.930500px;}
.y70{bottom:288.151500px;}
.ydc{bottom:290.286000px;}
.y46{bottom:296.751000px;}
.ybc{bottom:305.202000px;}
.y6f{bottom:306.084000px;}
.y9a{bottom:308.960751px;}
.y45{bottom:314.683500px;}
.y95{bottom:314.811635px;}
.y91{bottom:317.462293px;}
.ydb{bottom:320.175000px;}
.y94{bottom:321.776969px;}
.y1d{bottom:321.840000px;}
.ybb{bottom:323.134500px;}
.y44{bottom:332.751000px;}
.y93{bottom:333.075306px;}
.y6e{bottom:334.104000px;}
.yda{bottom:338.107500px;}
.y1c{bottom:339.774000px;}
.yba{bottom:353.022000px;}
.y9e{bottom:353.060012px;}
.y1b{bottom:357.706500px;}
.y43{bottom:358.491000px;}
.yd9{bottom:367.995000px;}
.y6d{bottom:370.492500px;}
.yb9{bottom:370.954500px;}
.y1a{bottom:375.639000px;}
.y42{bottom:381.340500px;}
.yd8{bottom:385.927500px;}
.y19{bottom:393.571500px;}
.yb8{bottom:400.843500px;}
.y18{bottom:411.504000px;}
.yd7{bottom:415.816500px;}
.yb7{bottom:418.776000px;}
.y6c{bottom:420.928500px;}
.y41{bottom:427.584000px;}
.y17{bottom:429.436500px;}
.y6b{bottom:434.875500px;}
.y6a{bottom:438.861000px;}
.yd6{bottom:445.704000px;}
.yb6{bottom:446.796000px;}
.y16{bottom:447.370500px;}
.y40{bottom:455.604000px;}
.y68{bottom:470.907000px;}
.y69{bottom:471.405000px;}
.y15{bottom:474.087000px;}
.yd5{bottom:475.591500px;}
.y67{bottom:486.598500px;}
.y66{bottom:489.354000px;}
.yb5{bottom:489.573000px;}
.y14{bottom:492.019500px;}
.y65{bottom:493.297500px;}
.yd4{bottom:493.524000px;}
.y3f{bottom:498.381000px;}
.yb4{bottom:507.505500px;}
.y13{bottom:509.952000px;}
.y3e{bottom:516.313500px;}
.yd3{bottom:523.413000px;}
.y64{bottom:528.789000px;}
.y3d{bottom:534.247500px;}
.yb3{bottom:539.904000px;}
.y12{bottom:543.352500px;}
.yd2{bottom:553.300500px;}
.yb2{bottom:556.342500px;}
.y63{bottom:556.809000px;}
.y3c{bottom:567.123000px;}
.yb1{bottom:572.781000px;}
.y89{bottom:579.408000px;}
.yd1{bottom:583.188000px;}
.yb0{bottom:589.218000px;}
.y11{bottom:593.733000px;}
.y62{bottom:599.586000px;}
.y3b{bottom:600.000000px;}
.yd0{bottom:601.120500px;}
.y88{bottom:609.295500px;}
.yaf{bottom:613.465500px;}
.y61{bottom:617.518500px;}
.y10{bottom:617.583000px;}
.y3a{bottom:617.932500px;}
.ycf{bottom:631.009500px;}
.y60{bottom:635.451000px;}
.yf{bottom:635.515500px;}
.y39{bottom:635.865000px;}
.y87{bottom:639.183000px;}
.yae{bottom:647.223000px;}
.yce{bottom:648.942000px;}
.y5f{bottom:653.385000px;}
.y38{bottom:653.799000px;}
.ye{bottom:659.365500px;}
.y86{bottom:669.072000px;}
.y5e{bottom:671.317500px;}
.yad{bottom:675.243000px;}
.yd{bottom:677.298000px;}
.ycd{bottom:682.341000px;}
.y37{bottom:686.674500px;}
.yc{bottom:695.230500px;}
.y85{bottom:698.959500px;}
.y5d{bottom:713.023500px;}
.yb{bottom:713.164500px;}
.yac{bottom:718.020000px;}
.y36{bottom:719.551500px;}
.y84{bottom:728.847000px;}
.ya{bottom:731.097000px;}
.y5c{bottom:732.574500px;}
.ycc{bottom:732.777000px;}
.yab{bottom:735.952500px;}
.y35{bottom:737.484000px;}
.y83{bottom:746.779500px;}
.y5b{bottom:750.508500px;}
.ycb{bottom:750.709500px;}
.yaa{bottom:753.885000px;}
.y9{bottom:754.947000px;}
.y34{bottom:755.418000px;}
.y5a{bottom:768.441000px;}
.yca{bottom:768.642000px;}
.ya9{bottom:771.819000px;}
.y8{bottom:772.879500px;}
.y33{bottom:773.350500px;}
.y82{bottom:774.799500px;}
.y59{bottom:786.373500px;}
.yc9{bottom:786.576000px;}
.y7{bottom:790.812000px;}
.ya8{bottom:799.839000px;}
.y58{bottom:800.416500px;}
.y32{bottom:801.370500px;}
.y57{bottom:804.306000px;}
.yc8{bottom:804.508500px;}
.y81{bottom:817.576500px;}
.y56{bottom:822.238500px;}
.yc7{bottom:822.441000px;}
.y6{bottom:826.747500px;}
.y80{bottom:835.509000px;}
.y31{bottom:837.759000px;}
.y55{bottom:840.171000px;}
.ya7{bottom:842.616000px;}
.y7f{bottom:853.443000px;}
.yc6{bottom:855.318000px;}
.y54{bottom:858.105000px;}
.ya6{bottom:860.548500px;}
.y53{bottom:876.037500px;}
.ya5{bottom:878.481000px;}
.y5{bottom:884.233500px;}
.yc5{bottom:885.205500px;}
.y7e{bottom:886.005000px;}
.y30{bottom:888.195000px;}
.y52{bottom:896.226000px;}
.ya4{bottom:896.413500px;}
.y7d{bottom:902.443500px;}
.y4{bottom:905.155500px;}
.y2f{bottom:906.127500px;}
.yc4{bottom:915.093000px;}
.y7c{bottom:918.882000px;}
.y2e{bottom:924.060000px;}
.ya3{bottom:924.433500px;}
.y3{bottom:926.077500px;}
.yc3{bottom:933.025500px;}
.y7b{bottom:935.320500px;}
.y2d{bottom:941.992500px;}
.y51{bottom:942.366000px;}
.y7a{bottom:959.566500px;}
.y2c{bottom:959.925000px;}
.ya2{bottom:960.822000px;}
.yc2{bottom:962.914500px;}
.y2{bottom:969.414000px;}
.y2b{bottom:977.857500px;}
.y50{bottom:978.754500px;}
.yc1{bottom:980.847000px;}
.y79{bottom:993.325500px;}
.y2a{bottom:995.791500px;}
.y1{bottom:1002.291000px;}
.y78{bottom:1011.258000px;}
.y29{bottom:1013.724000px;}
.y4f{bottom:1029.190500px;}
.y28{bottom:1031.656500px;}
.y4e{bottom:1047.123000px;}
.y27{bottom:1065.055500px;}
.h10{height:16.604100px;}
.hb{height:24.871000px;}
.he{height:31.382100px;}
.h1e{height:32.892642px;}
.h1b{height:38.188444px;}
.h19{height:39.111437px;}
.hd{height:41.484266px;}
.h5{height:43.456861px;}
.h7{height:44.831700px;}
.h1c{height:45.826132px;}
.h3{height:47.916442px;}
.h4{height:49.781453px;}
.h16{height:52.109716px;}
.h2{height:52.148582px;}
.h6{height:53.072100px;}
.h1f{height:53.463821px;}
.h9{height:56.060100px;}
.ha{height:56.066100px;}
.h8{height:59.737577px;}
.h18{height:60.340861px;}
.hc{height:60.605700px;}
.h15{height:60.773700px;}
.h14{height:62.432100px;}
.h17{height:68.993716px;}
.h1d{height:69.930691px;}
.h1{height:75.093575px;}
.h12{height:78.374100px;}
.h11{height:80.366100px;}
.hf{height:85.271700px;}
.h13{height:115.252861px;}
.h1a{height:371.382351px;}
.h0{height:1188.000000px;}
.w1{width:596.713531px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5e{left:16.791087px;}
.x5d{left:23.673489px;}
.x5f{left:52.974927px;}
.x5b{left:63.028439px;}
.x14{left:108.000000px;}
.x57{left:112.522500px;}
.x40{left:116.631000px;}
.x76{left:122.481000px;}
.x1e{left:126.679500px;}
.x16{left:130.416000px;}
.x3b{left:132.657000px;}
.x38{left:143.101500px;}
.x7{left:145.360500px;}
.x49{left:154.447500px;}
.x58{left:158.554500px;}
.x59{left:166.086000px;}
.x1{left:182.011500px;}
.x4a{left:183.685500px;}
.x5a{left:185.182500px;}
.x53{left:188.001000px;}
.x42{left:190.420500px;}
.x36{left:199.150500px;}
.x62{left:206.020500px;}
.x37{left:207.885000px;}
.x63{left:213.492000px;}
.x6f{left:225.637500px;}
.x4b{left:233.349000px;}
.x54{left:237.805500px;}
.x2{left:242.178000px;}
.x5c{left:251.101991px;}
.x6b{left:265.570500px;}
.x1f{left:274.215000px;}
.x70{left:287.031000px;}
.x4c{left:292.102500px;}
.x10{left:300.609000px;}
.x6a{left:301.648500px;}
.x6c{left:310.336500px;}
.x41{left:322.060500px;}
.x6d{left:325.692000px;}
.x3f{left:330.394500px;}
.x4d{left:337.549500px;}
.x71{left:344.875500px;}
.x5{left:346.023000px;}
.x20{left:348.984000px;}
.x11{left:350.361000px;}
.x33{left:367.242000px;}
.x4{left:372.610500px;}
.x15{left:376.545000px;}
.x44{left:383.499000px;}
.x43{left:386.142000px;}
.x21{left:389.001000px;}
.x2b{left:391.083000px;}
.x65{left:395.356500px;}
.x34{left:397.600500px;}
.x22{left:399.721500px;}
.x6e{left:401.086500px;}
.x2c{left:402.609000px;}
.x3{left:406.458000px;}
.x3c{left:409.441500px;}
.x45{left:412.995000px;}
.x55{left:418.192500px;}
.x6{left:425.637000px;}
.x46{left:428.769000px;}
.x56{left:429.816000px;}
.x1a{left:439.252500px;}
.xa{left:455.256000px;}
.x1b{left:458.199000px;}
.x66{left:465.331500px;}
.x27{left:469.324500px;}
.x28{left:477.102000px;}
.x47{left:483.222000px;}
.x35{left:485.536500px;}
.x67{left:488.088000px;}
.x23{left:491.929500px;}
.x4e{left:493.431000px;}
.x17{left:497.353500px;}
.x4f{left:508.911000px;}
.x48{left:512.166000px;}
.x24{left:514.968000px;}
.x51{left:518.568000px;}
.x64{left:526.008000px;}
.xb{left:527.770500px;}
.x52{left:530.191500px;}
.x3d{left:532.309500px;}
.x8{left:536.631000px;}
.x19{left:543.600000px;}
.x3e{left:550.813500px;}
.x39{left:553.872000px;}
.x60{left:556.558498px;}
.x3a{left:565.495500px;}
.x18{left:566.908500px;}
.xc{left:570.297000px;}
.x12{left:574.084500px;}
.xd{left:583.365000px;}
.x2d{left:585.256500px;}
.x61{left:587.183544px;}
.x13{left:596.820000px;}
.x2e{left:604.549500px;}
.x9{left:610.644000px;}
.x50{left:612.258000px;}
.x74{left:632.557500px;}
.x29{left:655.044000px;}
.x2a{left:662.049000px;}
.x25{left:663.273000px;}
.x75{left:666.597000px;}
.x68{left:669.708000px;}
.x26{left:671.050500px;}
.x69{left:688.114500px;}
.x72{left:734.038500px;}
.xe{left:750.180000px;}
.xf{left:762.474000px;}
.x31{left:766.306500px;}
.x2f{left:770.167500px;}
.x30{left:777.172500px;}
.x73{left:780.505500px;}
.x1c{left:783.133500px;}
.x1d{left:794.757000px;}
.x32{left:808.954500px;}
@media print{
.v5{vertical-align:-20.314667pt;}
.v8{vertical-align:-13.136000pt;}
.v3{vertical-align:-7.973333pt;}
.v2{vertical-align:-5.344000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.021333pt;}
.ve{vertical-align:15.008000pt;}
.v9{vertical-align:15.941333pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:21.936000pt;}
.vd{vertical-align:27.600000pt;}
.vf{vertical-align:34.288000pt;}
.v7{vertical-align:35.946667pt;}
.vb{vertical-align:41.770667pt;}
.va{vertical-align:43.541333pt;}
.vc{vertical-align:49.648000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000818pt;}
.ls2b{letter-spacing:0.001306pt;}
.ls9{letter-spacing:0.002487pt;}
.ls1c{letter-spacing:0.002566pt;}
.ls26{letter-spacing:0.006152pt;}
.ls3a{letter-spacing:0.012495pt;}
.ls13{letter-spacing:1.434614pt;}
.ls1{letter-spacing:1.470500pt;}
.ls2f{letter-spacing:1.470576pt;}
.ls33{letter-spacing:1.475163pt;}
.ls27{letter-spacing:1.487748pt;}
.ls8{letter-spacing:1.500078pt;}
.ls22{letter-spacing:2.656365pt;}
.ls2a{letter-spacing:2.657014pt;}
.ls21{letter-spacing:2.659828pt;}
.ls23{letter-spacing:2.660927pt;}
.ls35{letter-spacing:2.803069pt;}
.ls3d{letter-spacing:3.796125pt;}
.ls3c{letter-spacing:3.801458pt;}
.ls29{letter-spacing:3.805629pt;}
.ls14{letter-spacing:5.765950pt;}
.ls17{letter-spacing:11.795718pt;}
.ls3e{letter-spacing:11.955200pt;}
.ls7{letter-spacing:13.283467pt;}
.ls6{letter-spacing:14.718081pt;}
.ls5{letter-spacing:14.771215pt;}
.lsc{letter-spacing:14.824349pt;}
.ls42{letter-spacing:15.515089pt;}
.ls41{letter-spacing:15.568223pt;}
.ls16{letter-spacing:15.604125pt;}
.ls2d{letter-spacing:16.471499pt;}
.ls12{letter-spacing:17.081458pt;}
.ls28{letter-spacing:17.085629pt;}
.ls11{letter-spacing:18.543719pt;}
.ls15{letter-spacing:18.558792pt;}
.lsb{letter-spacing:18.606792pt;}
.ls1a{letter-spacing:23.166366pt;}
.ls19{letter-spacing:23.219500pt;}
.ls0{letter-spacing:23.591437pt;}
.ls10{letter-spacing:24.282177pt;}
.ls25{letter-spacing:24.813516pt;}
.ls4{letter-spacing:24.972917pt;}
.ls40{letter-spacing:26.035595pt;}
.ls3f{letter-spacing:26.088729pt;}
.ls24{letter-spacing:26.566933pt;}
.lse{letter-spacing:28.160949pt;}
.ls3{letter-spacing:28.788125pt;}
.ls30{letter-spacing:31.191578pt;}
.ls31{letter-spacing:31.196911pt;}
.lsd{letter-spacing:31.940125pt;}
.ls38{letter-spacing:40.708125pt;}
.ls34{letter-spacing:44.476911pt;}
.ls36{letter-spacing:55.694792pt;}
.lsa{letter-spacing:59.366694pt;}
.ls3b{letter-spacing:67.448330pt;}
.ls37{letter-spacing:88.014792pt;}
.ls1b{letter-spacing:96.670792pt;}
.ls1d{letter-spacing:100.126792pt;}
.ls39{letter-spacing:105.022792pt;}
.ls1e{letter-spacing:160.561793pt;}
.ls1f{letter-spacing:190.785935pt;}
.ls20{letter-spacing:203.914001pt;}
.ls2e{letter-spacing:209.701086pt;}
.ls18{letter-spacing:863.319066pt;}
.ls32{letter-spacing:927.528239pt;}
.ls2c{letter-spacing:1368.940941pt;}
.ws24{word-spacing:-34.611401pt;}
.ws1f{word-spacing:-34.590147pt;}
.ws2{word-spacing:-28.118362pt;}
.ws3c{word-spacing:-25.738045pt;}
.ws38{word-spacing:-25.229906pt;}
.ws3e{word-spacing:-19.840186pt;}
.ws51{word-spacing:-19.128267pt;}
.ws17{word-spacing:-13.283467pt;}
.ws3f{word-spacing:-9.298400pt;}
.ws52{word-spacing:-1.753418pt;}
.ws34{word-spacing:-1.168945pt;}
.ws33{word-spacing:-1.115811pt;}
.wsa{word-spacing:-0.797008pt;}
.ws9{word-spacing:-0.743874pt;}
.ws46{word-spacing:-0.690740pt;}
.ws56{word-spacing:-0.425071pt;}
.ws1a{word-spacing:-0.265669pt;}
.ws11{word-spacing:-0.212535pt;}
.wse{word-spacing:-0.159402pt;}
.ws7{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.053134pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.053134pt;}
.ws6{word-spacing:0.106268pt;}
.ws41{word-spacing:0.159402pt;}
.wsc{word-spacing:0.212535pt;}
.wsd{word-spacing:0.265669pt;}
.ws8{word-spacing:0.318803pt;}
.ws1b{word-spacing:0.371937pt;}
.ws12{word-spacing:0.690740pt;}
.ws3{word-spacing:0.903276pt;}
.ws49{word-spacing:1.487748pt;}
.ws1c{word-spacing:1.700284pt;}
.ws1e{word-spacing:1.753418pt;}
.ws55{word-spacing:2.709827pt;}
.ws3d{word-spacing:3.188032pt;}
.ws22{word-spacing:3.294300pt;}
.ws16{word-spacing:3.347434pt;}
.ws23{word-spacing:3.400567pt;}
.ws3a{word-spacing:3.559969pt;}
.ws47{word-spacing:3.985040pt;}
.wsf{word-spacing:4.038174pt;}
.ws10{word-spacing:4.091308pt;}
.ws4c{word-spacing:4.144442pt;}
.ws27{word-spacing:4.197575pt;}
.ws53{word-spacing:4.303843pt;}
.ws1{word-spacing:4.410111pt;}
.ws50{word-spacing:4.782048pt;}
.ws4{word-spacing:5.153985pt;}
.ws48{word-spacing:5.419654pt;}
.ws20{word-spacing:5.525922pt;}
.ws4e{word-spacing:5.685324pt;}
.ws4f{word-spacing:5.738458pt;}
.ws54{word-spacing:5.844725pt;}
.ws15{word-spacing:6.801135pt;}
.ws14{word-spacing:6.854269pt;}
.ws40{word-spacing:6.907403pt;}
.ws1d{word-spacing:8.873356pt;}
.ws4d{word-spacing:11.370647pt;}
.ws3b{word-spacing:11.469944pt;}
.ws26{word-spacing:11.742585pt;}
.ws30{word-spacing:13.230333pt;}
.ws19{word-spacing:13.283467pt;}
.ws28{word-spacing:14.664947pt;}
.ws25{word-spacing:14.718081pt;}
.ws35{word-spacing:15.940133pt;}
.ws39{word-spacing:20.858335pt;}
.ws37{word-spacing:23.518598pt;}
.ws36{word-spacing:25.342598pt;}
.ws13{word-spacing:47.820800pt;}
.ws31{word-spacing:56.375033pt;}
.wsb{word-spacing:57.384800pt;}
.ws4b{word-spacing:110.274765pt;}
.ws4a{word-spacing:122.229965pt;}
.ws44{word-spacing:141.884314pt;}
.ws2f{word-spacing:166.096467pt;}
.ws43{word-spacing:178.610688pt;}
.ws42{word-spacing:221.601587pt;}
.ws2b{word-spacing:260.249679pt;}
.ws2e{word-spacing:268.219759pt;}
.ws2c{word-spacing:277.890123pt;}
.ws2a{word-spacing:281.503226pt;}
.ws45{word-spacing:288.096371pt;}
.ws32{word-spacing:290.323447pt;}
.ws2d{word-spacing:290.482849pt;}
.ws29{word-spacing:483.146250pt;}
.ws21{word-spacing:1043.789569pt;}
._d{margin-left:-5.738480pt;}
._e{margin-left:-4.786297pt;}
._1{margin-left:-3.672619pt;}
._9{margin-left:-2.384642pt;}
._0{margin-left:-1.377232pt;}
._17{width:1.475066pt;}
._18{width:2.792749pt;}
._5{width:12.486459pt;}
._16{width:13.965111pt;}
._6{width:15.670242pt;}
._4{width:16.630900pt;}
._2{width:18.862523pt;}
._11{width:19.765931pt;}
._b{width:22.216338pt;}
._f{width:23.719051pt;}
._22{width:24.919783pt;}
._3{width:27.040890pt;}
._8{width:28.422370pt;}
._2b{width:29.436162pt;}
._a{width:30.339438pt;}
._12{width:34.001426pt;}
._19{width:38.250002pt;}
._10{width:63.761067pt;}
._1a{width:69.053235pt;}
._c{width:76.513067pt;}
._1b{width:88.803226pt;}
._2a{width:135.476326pt;}
._20{width:147.431526pt;}
._15{width:165.830798pt;}
._27{width:184.425671pt;}
._29{width:193.913344pt;}
._26{width:217.823744pt;}
._25{width:227.148800pt;}
._28{width:232.160401pt;}
._21{width:234.369741pt;}
._1f{width:237.430272pt;}
._1d{width:246.324941pt;}
._1c{width:249.385472pt;}
._1e{width:250.523588pt;}
._14{width:256.602588pt;}
._13{width:286.604077pt;}
._23{width:298.507569pt;}
._7{width:896.421465pt;}
._24{width:1115.889645pt;}
.fs4{font-size:26.566933pt;}
.fsb{font-size:31.472448pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs9{font-size:37.467200pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:44.960640pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:52.454080pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:9.115067pt;}
.y8b{bottom:22.901826pt;}
.y96{bottom:32.810144pt;}
.y8d{bottom:55.480922pt;}
.y26{bottom:56.149333pt;}
.y9b{bottom:86.948492pt;}
.y97{bottom:93.265553pt;}
.y25{bottom:96.000000pt;}
.y4d{bottom:96.646667pt;}
.ya1{bottom:104.989333pt;}
.y92{bottom:111.316807pt;}
.y8e{bottom:112.157868pt;}
.y77{bottom:117.985333pt;}
.ya0{bottom:120.930667pt;}
.y24{bottom:122.458667pt;}
.y4c{bottom:123.213333pt;}
.y9f{bottom:136.870667pt;}
.y23{bottom:138.400000pt;}
.y76{bottom:144.553333pt;}
.y9c{bottom:148.467512pt;}
.y4b{bottom:149.781333pt;}
.y98{bottom:153.720962pt;}
.y9d{bottom:154.833460pt;}
.yc0{bottom:155.225333pt;}
.y75{bottom:160.493333pt;}
.y22{bottom:164.858667pt;}
.y8a{bottom:166.094667pt;}
.y8f{bottom:168.834814pt;}
.y4a{bottom:176.348000pt;}
.y21{bottom:180.798667pt;}
.ybf{bottom:181.792000pt;}
.y74{bottom:187.060000pt;}
.y49{bottom:192.288000pt;}
.y20{bottom:207.258667pt;}
.ybe{bottom:208.360000pt;}
.y73{bottom:213.626667pt;}
.y99{bottom:214.176370pt;}
.y1f{bottom:223.198667pt;}
.y90{bottom:225.511759pt;}
.y48{bottom:228.960000pt;}
.ybd{bottom:233.266667pt;}
.y72{bottom:240.194667pt;}
.y47{bottom:247.838667pt;}
.y1e{bottom:248.105333pt;}
.y71{bottom:252.382667pt;}
.y70{bottom:256.134667pt;}
.ydc{bottom:258.032000pt;}
.y46{bottom:263.778667pt;}
.ybc{bottom:271.290667pt;}
.y6f{bottom:272.074667pt;}
.y9a{bottom:274.631779pt;}
.y45{bottom:279.718667pt;}
.y95{bottom:279.832565pt;}
.y91{bottom:282.188705pt;}
.ydb{bottom:284.600000pt;}
.y94{bottom:286.023973pt;}
.y1d{bottom:286.080000pt;}
.ybb{bottom:287.230667pt;}
.y44{bottom:295.778667pt;}
.y93{bottom:296.066938pt;}
.y6e{bottom:296.981333pt;}
.yda{bottom:300.540000pt;}
.y1c{bottom:302.021333pt;}
.yba{bottom:313.797333pt;}
.y9e{bottom:313.831121pt;}
.y1b{bottom:317.961333pt;}
.y43{bottom:318.658667pt;}
.yd9{bottom:327.106667pt;}
.y6d{bottom:329.326667pt;}
.yb9{bottom:329.737333pt;}
.y1a{bottom:333.901333pt;}
.y42{bottom:338.969333pt;}
.yd8{bottom:343.046667pt;}
.y19{bottom:349.841333pt;}
.yb8{bottom:356.305333pt;}
.y18{bottom:365.781333pt;}
.yd7{bottom:369.614667pt;}
.yb7{bottom:372.245333pt;}
.y6c{bottom:374.158667pt;}
.y41{bottom:380.074667pt;}
.y17{bottom:381.721333pt;}
.y6b{bottom:386.556000pt;}
.y6a{bottom:390.098667pt;}
.yd6{bottom:396.181333pt;}
.yb6{bottom:397.152000pt;}
.y16{bottom:397.662667pt;}
.y40{bottom:404.981333pt;}
.y68{bottom:418.584000pt;}
.y69{bottom:419.026667pt;}
.y15{bottom:421.410667pt;}
.yd5{bottom:422.748000pt;}
.y67{bottom:432.532000pt;}
.y66{bottom:434.981333pt;}
.yb5{bottom:435.176000pt;}
.y14{bottom:437.350667pt;}
.y65{bottom:438.486667pt;}
.yd4{bottom:438.688000pt;}
.y3f{bottom:443.005333pt;}
.yb4{bottom:451.116000pt;}
.y13{bottom:453.290667pt;}
.y3e{bottom:458.945333pt;}
.yd3{bottom:465.256000pt;}
.y64{bottom:470.034667pt;}
.y3d{bottom:474.886667pt;}
.yb3{bottom:479.914667pt;}
.y12{bottom:482.980000pt;}
.yd2{bottom:491.822667pt;}
.yb2{bottom:494.526667pt;}
.y63{bottom:494.941333pt;}
.y3c{bottom:504.109333pt;}
.yb1{bottom:509.138667pt;}
.y89{bottom:515.029333pt;}
.yd1{bottom:518.389333pt;}
.yb0{bottom:523.749333pt;}
.y11{bottom:527.762667pt;}
.y62{bottom:532.965333pt;}
.y3b{bottom:533.333333pt;}
.yd0{bottom:534.329333pt;}
.y88{bottom:541.596000pt;}
.yaf{bottom:545.302667pt;}
.y61{bottom:548.905333pt;}
.y10{bottom:548.962667pt;}
.y3a{bottom:549.273333pt;}
.ycf{bottom:560.897333pt;}
.y60{bottom:564.845333pt;}
.yf{bottom:564.902667pt;}
.y39{bottom:565.213333pt;}
.y87{bottom:568.162667pt;}
.yae{bottom:575.309333pt;}
.yce{bottom:576.837333pt;}
.y5f{bottom:580.786667pt;}
.y38{bottom:581.154667pt;}
.ye{bottom:586.102667pt;}
.y86{bottom:594.730667pt;}
.y5e{bottom:596.726667pt;}
.yad{bottom:600.216000pt;}
.yd{bottom:602.042667pt;}
.ycd{bottom:606.525333pt;}
.y37{bottom:610.377333pt;}
.yc{bottom:617.982667pt;}
.y85{bottom:621.297333pt;}
.y5d{bottom:633.798667pt;}
.yb{bottom:633.924000pt;}
.yac{bottom:638.240000pt;}
.y36{bottom:639.601333pt;}
.y84{bottom:647.864000pt;}
.ya{bottom:649.864000pt;}
.y5c{bottom:651.177333pt;}
.ycc{bottom:651.357333pt;}
.yab{bottom:654.180000pt;}
.y35{bottom:655.541333pt;}
.y83{bottom:663.804000pt;}
.y5b{bottom:667.118667pt;}
.ycb{bottom:667.297333pt;}
.yaa{bottom:670.120000pt;}
.y9{bottom:671.064000pt;}
.y34{bottom:671.482667pt;}
.y5a{bottom:683.058667pt;}
.yca{bottom:683.237333pt;}
.ya9{bottom:686.061333pt;}
.y8{bottom:687.004000pt;}
.y33{bottom:687.422667pt;}
.y82{bottom:688.710667pt;}
.y59{bottom:698.998667pt;}
.yc9{bottom:699.178667pt;}
.y7{bottom:702.944000pt;}
.ya8{bottom:710.968000pt;}
.y58{bottom:711.481333pt;}
.y32{bottom:712.329333pt;}
.y57{bottom:714.938667pt;}
.yc8{bottom:715.118667pt;}
.y81{bottom:726.734667pt;}
.y56{bottom:730.878667pt;}
.yc7{bottom:731.058667pt;}
.y6{bottom:734.886667pt;}
.y80{bottom:742.674667pt;}
.y31{bottom:744.674667pt;}
.y55{bottom:746.818667pt;}
.ya7{bottom:748.992000pt;}
.y7f{bottom:758.616000pt;}
.yc6{bottom:760.282667pt;}
.y54{bottom:762.760000pt;}
.ya6{bottom:764.932000pt;}
.y53{bottom:778.700000pt;}
.ya5{bottom:780.872000pt;}
.y5{bottom:785.985333pt;}
.yc5{bottom:786.849333pt;}
.y7e{bottom:787.560000pt;}
.y30{bottom:789.506667pt;}
.y52{bottom:796.645333pt;}
.ya4{bottom:796.812000pt;}
.y7d{bottom:802.172000pt;}
.y4{bottom:804.582667pt;}
.y2f{bottom:805.446667pt;}
.yc4{bottom:813.416000pt;}
.y7c{bottom:816.784000pt;}
.y2e{bottom:821.386667pt;}
.ya3{bottom:821.718667pt;}
.y3{bottom:823.180000pt;}
.yc3{bottom:829.356000pt;}
.y7b{bottom:831.396000pt;}
.y2d{bottom:837.326667pt;}
.y51{bottom:837.658667pt;}
.y7a{bottom:852.948000pt;}
.y2c{bottom:853.266667pt;}
.ya2{bottom:854.064000pt;}
.yc2{bottom:855.924000pt;}
.y2{bottom:861.701333pt;}
.y2b{bottom:869.206667pt;}
.y50{bottom:870.004000pt;}
.yc1{bottom:871.864000pt;}
.y79{bottom:882.956000pt;}
.y2a{bottom:885.148000pt;}
.y1{bottom:890.925333pt;}
.y78{bottom:898.896000pt;}
.y29{bottom:901.088000pt;}
.y4f{bottom:914.836000pt;}
.y28{bottom:917.028000pt;}
.y4e{bottom:930.776000pt;}
.y27{bottom:946.716000pt;}
.h10{height:14.759200pt;}
.hb{height:22.107556pt;}
.he{height:27.895200pt;}
.h1e{height:29.237904pt;}
.h1b{height:33.945283pt;}
.h19{height:34.765722pt;}
.hd{height:36.874903pt;}
.h5{height:38.628321pt;}
.h7{height:39.850400pt;}
.h1c{height:40.734340pt;}
.h3{height:42.592393pt;}
.h4{height:44.250180pt;}
.h16{height:46.319747pt;}
.h2{height:46.354295pt;}
.h6{height:47.175200pt;}
.h1f{height:47.523396pt;}
.h9{height:49.831200pt;}
.ha{height:49.836533pt;}
.h8{height:53.100068pt;}
.h18{height:53.636321pt;}
.hc{height:53.871733pt;}
.h15{height:54.021067pt;}
.h14{height:55.495200pt;}
.h17{height:61.327747pt;}
.h1d{height:62.160614pt;}
.h1{height:66.749844pt;}
.h12{height:69.665867pt;}
.h11{height:71.436533pt;}
.hf{height:75.797067pt;}
.h13{height:102.446988pt;}
.h1a{height:330.117645pt;}
.h0{height:1056.000000pt;}
.w1{width:530.412027pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:14.925410pt;}
.x5d{left:21.043102pt;}
.x5f{left:47.088824pt;}
.x5b{left:56.025279pt;}
.x14{left:96.000000pt;}
.x57{left:100.020000pt;}
.x40{left:103.672000pt;}
.x76{left:108.872000pt;}
.x1e{left:112.604000pt;}
.x16{left:115.925333pt;}
.x3b{left:117.917333pt;}
.x38{left:127.201333pt;}
.x7{left:129.209333pt;}
.x49{left:137.286667pt;}
.x58{left:140.937333pt;}
.x59{left:147.632000pt;}
.x1{left:161.788000pt;}
.x4a{left:163.276000pt;}
.x5a{left:164.606667pt;}
.x53{left:167.112000pt;}
.x42{left:169.262667pt;}
.x36{left:177.022667pt;}
.x62{left:183.129333pt;}
.x37{left:184.786667pt;}
.x63{left:189.770667pt;}
.x6f{left:200.566667pt;}
.x4b{left:207.421333pt;}
.x54{left:211.382667pt;}
.x2{left:215.269333pt;}
.x5c{left:223.201770pt;}
.x6b{left:236.062667pt;}
.x1f{left:243.746667pt;}
.x70{left:255.138667pt;}
.x4c{left:259.646667pt;}
.x10{left:267.208000pt;}
.x6a{left:268.132000pt;}
.x6c{left:275.854667pt;}
.x41{left:286.276000pt;}
.x6d{left:289.504000pt;}
.x3f{left:293.684000pt;}
.x4d{left:300.044000pt;}
.x71{left:306.556000pt;}
.x5{left:307.576000pt;}
.x20{left:310.208000pt;}
.x11{left:311.432000pt;}
.x33{left:326.437333pt;}
.x4{left:331.209333pt;}
.x15{left:334.706667pt;}
.x44{left:340.888000pt;}
.x43{left:343.237333pt;}
.x21{left:345.778667pt;}
.x2b{left:347.629333pt;}
.x65{left:351.428000pt;}
.x34{left:353.422667pt;}
.x22{left:355.308000pt;}
.x6e{left:356.521333pt;}
.x2c{left:357.874667pt;}
.x3{left:361.296000pt;}
.x3c{left:363.948000pt;}
.x45{left:367.106667pt;}
.x55{left:371.726667pt;}
.x6{left:378.344000pt;}
.x46{left:381.128000pt;}
.x56{left:382.058667pt;}
.x1a{left:390.446667pt;}
.xa{left:404.672000pt;}
.x1b{left:407.288000pt;}
.x66{left:413.628000pt;}
.x27{left:417.177333pt;}
.x28{left:424.090667pt;}
.x47{left:429.530667pt;}
.x35{left:431.588000pt;}
.x67{left:433.856000pt;}
.x23{left:437.270667pt;}
.x4e{left:438.605333pt;}
.x17{left:442.092000pt;}
.x4f{left:452.365333pt;}
.x48{left:455.258667pt;}
.x24{left:457.749333pt;}
.x51{left:460.949333pt;}
.x64{left:467.562667pt;}
.xb{left:469.129333pt;}
.x52{left:471.281333pt;}
.x3d{left:473.164000pt;}
.x8{left:477.005333pt;}
.x19{left:483.200000pt;}
.x3e{left:489.612000pt;}
.x39{left:492.330667pt;}
.x60{left:494.718665pt;}
.x3a{left:502.662667pt;}
.x18{left:503.918667pt;}
.xc{left:506.930667pt;}
.x12{left:510.297333pt;}
.xd{left:518.546667pt;}
.x2d{left:520.228000pt;}
.x61{left:521.940928pt;}
.x13{left:530.506667pt;}
.x2e{left:537.377333pt;}
.x9{left:542.794667pt;}
.x50{left:544.229333pt;}
.x74{left:562.273333pt;}
.x29{left:582.261333pt;}
.x2a{left:588.488000pt;}
.x25{left:589.576000pt;}
.x75{left:592.530667pt;}
.x68{left:595.296000pt;}
.x26{left:596.489333pt;}
.x69{left:611.657333pt;}
.x72{left:652.478667pt;}
.xe{left:666.826667pt;}
.xf{left:677.754667pt;}
.x31{left:681.161333pt;}
.x2f{left:684.593333pt;}
.x30{left:690.820000pt;}
.x73{left:693.782667pt;}
.x1c{left:696.118667pt;}
.x1d{left:706.450667pt;}
.x32{left:719.070667pt;}
}




    .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; }
  