
    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_ec732480ff3c660c8345146a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_80cb389bcb487c4e6b2860cb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_aafd8a339cb845e8b6d41df5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_f7ce69121e6dea7b109b8c5a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_22487a338c6187fe66cf0635.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_f2e8a7fdb5086ec0401379db.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_d4ecb083c9c4063684e29967.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_f3d8e3f1d9dcad3aca8f1336.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_4dc9c9dfad98af4e3d11b467.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_31b0c80e2974a01175646287.woff')format("woff");}.ffa{font-family:ffa;line-height:0.926270;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_ef902ac982f9d06ba8832a02.woff')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_0698cb0a9d033d8886f105bc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.675293;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_6ab7967c1275620eeff608a7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.851074;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_67e5a9ddfa49d3ace3493ee0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_c73ed88462dbe334063f1f13.woff')format("woff");}.fff{font-family:fff;line-height:0.850586;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_28b3533ccedbea9286e692f8.woff')format("woff");}.ff10{font-family:ff10;line-height:0.675293;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_caa01b16507653d1f5f47a4e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.926270;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_2da78ba28ec28d1f80e58cae.woff')format("woff");}.ff12{font-family:ff12;line-height:0.718750;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_1a14bec1c207b646b72ddca2.woff')format("woff");}.ff13{font-family:ff13;line-height:0.938477;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_468fe871d2147ddda9158507.woff')format("woff");}.ff14{font-family:ff14;line-height:0.913086;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_a9c0846e271b2ccd064e0241.woff')format("woff");}.ff15{font-family:ff15;line-height:0.929199;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_a4451a9e0fa0b02c919599d2.woff')format("woff");}.ff16{font-family:ff16;line-height:0.728027;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_a0ffd201ca321cd68c4c4c5e.woff')format("woff");}.ff17{font-family:ff17;line-height:0.938477;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_774f1321724bf1dcc0f34a7a.woff')format("woff");}.ff18{font-family:ff18;line-height:0.938477;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_e476566b4fa5873d00cc2499.woff')format("woff");}.ff19{font-family:ff19;line-height:0.938965;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_caf58d5ae1c9f054e74cf60a.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.740234;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_6b0c9ae3abad57e31029a474.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.938965;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_c4df50d088f04bd142cfc605.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;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_8422ea65e4b3066a651f01ce.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.927246;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_dcadad73689979e81ff46491.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.675293;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_cc5c2d6c1c316751ad2636e4.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.675293;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_2c4192cb714f9f8ee54687d4.woff')format("woff");}.ff20{font-family:ff20;line-height:0.938477;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_795912ea7b06caa9f082baa2.woff')format("woff");}.ff21{font-family:ff21;line-height:0.926270;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_0d73bf5b0c0444f1f7491f59.woff')format("woff");}.ff22{font-family:ff22;line-height:0.850586;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_2d6d7787999532208fa186dd.woff')format("woff");}.ff23{font-family:ff23;line-height:0.675293;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_986d7f2375c1236625bd5170.woff')format("woff");}.ff24{font-family:ff24;line-height:0.850586;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;}
.m1{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);}
.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);}
.v5{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440000px;}
.v3{vertical-align:23.040000px;}
.v4{vertical-align:24.480000px;}
.v7{vertical-align:37.440000px;}
.v1{vertical-align:50.400000px;}
.v2{vertical-align:51.840000px;}
.ls14{letter-spacing:-7.295999px;}
.ls69{letter-spacing:-4.838400px;}
.ls3{letter-spacing:-4.773600px;}
.ls6d{letter-spacing:-4.032000px;}
.ls2a{letter-spacing:-2.578800px;}
.ls38{letter-spacing:-2.461200px;}
.lsf{letter-spacing:-2.106000px;}
.ls10{letter-spacing:-1.854000px;}
.ls3a{letter-spacing:-0.940800px;}
.ls57{letter-spacing:-0.858000px;}
.ls3b{letter-spacing:-0.764400px;}
.ls29{letter-spacing:-0.630000px;}
.ls2d{letter-spacing:-0.554400px;}
.ls3c{letter-spacing:-0.512400px;}
.ls32{letter-spacing:-0.428400px;}
.ls4{letter-spacing:-0.367200px;}
.lsd{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.349800px;}
.ls3d{letter-spacing:-0.327600px;}
.ls45{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.316800px;}
.ls20{letter-spacing:-0.307200px;}
.ls4d{letter-spacing:-0.302400px;}
.ls42{letter-spacing:-0.294000px;}
.ls50{letter-spacing:-0.280800px;}
.ls12{letter-spacing:-0.278400px;}
.ls5a{letter-spacing:-0.277200px;}
.ls46{letter-spacing:-0.268800px;}
.ls64{letter-spacing:-0.264000px;}
.ls58{letter-spacing:-0.257400px;}
.ls2b{letter-spacing:-0.243600px;}
.ls4f{letter-spacing:-0.237600px;}
.ls1a{letter-spacing:-0.231000px;}
.ls17{letter-spacing:-0.218400px;}
.ls18{letter-spacing:-0.201600px;}
.ls6b{letter-spacing:-0.172800px;}
.ls19{letter-spacing:-0.171600px;}
.ls22{letter-spacing:-0.153600px;}
.ls2e{letter-spacing:-0.134400px;}
.ls21{letter-spacing:-0.124800px;}
.ls62{letter-spacing:-0.120000px;}
.ls30{letter-spacing:-0.092400px;}
.ls2f{letter-spacing:-0.075600px;}
.ls3e{letter-spacing:-0.050400px;}
.ls11{letter-spacing:-0.036000px;}
.ls56{letter-spacing:-0.032400px;}
.ls67{letter-spacing:-0.025200px;}
.ls4c{letter-spacing:-0.021600px;}
.ls28{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.016800px;}
.ls48{letter-spacing:0.021600px;}
.ls36{letter-spacing:0.025200px;}
.ls0{letter-spacing:0.030000px;}
.ls27{letter-spacing:0.033600px;}
.ls53{letter-spacing:0.036000px;}
.ls61{letter-spacing:0.043200px;}
.ls41{letter-spacing:0.050400px;}
.lsa{letter-spacing:0.052800px;}
.ls1f{letter-spacing:0.054000px;}
.ls6c{letter-spacing:0.057600px;}
.ls52{letter-spacing:0.060000px;}
.ls68{letter-spacing:0.075600px;}
.lsc{letter-spacing:0.100800px;}
.ls35{letter-spacing:0.126000px;}
.ls6a{letter-spacing:0.129600px;}
.ls26{letter-spacing:0.134400px;}
.ls2{letter-spacing:0.140400px;}
.ls1e{letter-spacing:0.142800px;}
.ls34{letter-spacing:0.151200px;}
.ls47{letter-spacing:0.153600px;}
.ls5d{letter-spacing:0.168000px;}
.ls60{letter-spacing:0.172800px;}
.ls43{letter-spacing:0.176400px;}
.ls4b{letter-spacing:0.180000px;}
.ls51{letter-spacing:0.187200px;}
.ls23{letter-spacing:0.197941px;}
.ls24{letter-spacing:0.198001px;}
.ls13{letter-spacing:0.201600px;}
.ls15{letter-spacing:0.218400px;}
.ls49{letter-spacing:0.234000px;}
.ls1{letter-spacing:0.244800px;}
.ls4e{letter-spacing:0.259200px;}
.ls3f{letter-spacing:0.260400px;}
.ls55{letter-spacing:0.270000px;}
.ls5c{letter-spacing:0.273600px;}
.ls25{letter-spacing:0.278400px;}
.ls44{letter-spacing:0.282003px;}
.ls1d{letter-spacing:0.282603px;}
.ls63{letter-spacing:0.300000px;}
.ls59{letter-spacing:0.304200px;}
.lse{letter-spacing:0.306000px;}
.ls8{letter-spacing:0.312003px;}
.ls7{letter-spacing:0.316800px;}
.ls40{letter-spacing:0.327600px;}
.ls5e{letter-spacing:0.331200px;}
.ls1b{letter-spacing:0.349800px;}
.ls54{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.361200px;}
.ls5f{letter-spacing:0.390001px;}
.ls4a{letter-spacing:0.504000px;}
.ls39{letter-spacing:1.184400px;}
.ls9{letter-spacing:24.000002px;}
.ls6{letter-spacing:34.230000px;}
.lsb{letter-spacing:54.096004px;}
.ls65{letter-spacing:70.200000px;}
.ls66{letter-spacing:78.600002px;}
.ls5b{letter-spacing:122.688000px;}
.ls33{letter-spacing:646.917003px;}
.ls37{letter-spacing:704.253603px;}
.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;}
}
.ws47{word-spacing:-50.040000px;}
.ws10{word-spacing:-34.794000px;}
.ws7{word-spacing:-34.704000px;}
.ws46{word-spacing:-33.539999px;}
.ws45{word-spacing:-33.359999px;}
.ws52{word-spacing:-33.192000px;}
.ws4d{word-spacing:-33.163200px;}
.ws4e{word-spacing:-33.076800px;}
.ws4f{word-spacing:-33.004800px;}
.ws50{word-spacing:-32.875200px;}
.ws51{word-spacing:-32.832000px;}
.ws48{word-spacing:-29.991600px;}
.ws5a{word-spacing:-27.979200px;}
.ws3e{word-spacing:-26.563197px;}
.ws3d{word-spacing:-26.534397px;}
.ws22{word-spacing:-26.409597px;}
.ws9{word-spacing:-26.371197px;}
.ws54{word-spacing:-24.659999px;}
.ws56{word-spacing:-24.395999px;}
.ws53{word-spacing:-24.239999px;}
.ws55{word-spacing:-24.095999px;}
.ws5b{word-spacing:-23.760000px;}
.wsd{word-spacing:-23.452799px;}
.ws8{word-spacing:-23.351999px;}
.ws41{word-spacing:-23.150399px;}
.ws1{word-spacing:-22.064400px;}
.ws42{word-spacing:-20.037600px;}
.ws43{word-spacing:-19.994400px;}
.wse{word-spacing:-19.391998px;}
.wsb{word-spacing:-18.697799px;}
.wsa{word-spacing:-18.176399px;}
.wsc{word-spacing:-17.998199px;}
.ws35{word-spacing:-17.312399px;}
.ws3a{word-spacing:-17.228399px;}
.ws17{word-spacing:-17.194799px;}
.ws57{word-spacing:-17.177999px;}
.ws25{word-spacing:-17.085599px;}
.ws36{word-spacing:-17.077199px;}
.ws1e{word-spacing:-17.068799px;}
.ws18{word-spacing:-17.051999px;}
.ws1f{word-spacing:-17.043599px;}
.ws34{word-spacing:-17.001599px;}
.ws1c{word-spacing:-16.959599px;}
.ws1a{word-spacing:-16.917599px;}
.ws15{word-spacing:-16.808399px;}
.ws3c{word-spacing:-16.724399px;}
.ws20{word-spacing:-16.623599px;}
.ws33{word-spacing:-16.539599px;}
.ws19{word-spacing:-16.497599px;}
.ws4b{word-spacing:-16.138198px;}
.ws4a{word-spacing:-15.833998px;}
.ws49{word-spacing:-14.975998px;}
.ws14{word-spacing:-14.473199px;}
.ws4c{word-spacing:-13.397999px;}
.ws4{word-spacing:-0.588000px;}
.ws0{word-spacing:-0.409200px;}
.wsf{word-spacing:-0.184800px;}
.ws3f{word-spacing:-0.129600px;}
.ws59{word-spacing:-0.096000px;}
.ws1d{word-spacing:-0.084000px;}
.ws40{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws58{word-spacing:0.172800px;}
.ws3{word-spacing:0.840000px;}
.ws6{word-spacing:3.492000px;}
.ws5{word-spacing:4.128000px;}
.ws11{word-spacing:47.712006px;}
.ws12{word-spacing:145.570351px;}
.ws1b{word-spacing:231.284412px;}
.ws3b{word-spacing:250.904410px;}
.ws2f{word-spacing:297.057609px;}
.ws13{word-spacing:305.786429px;}
.ws30{word-spacing:400.156809px;}
.ws26{word-spacing:420.340804px;}
.ws21{word-spacing:435.101408px;}
.ws2e{word-spacing:448.557609px;}
.ws23{word-spacing:456.787223px;}
.ws31{word-spacing:459.068409px;}
.ws2a{word-spacing:460.557609px;}
.ws16{word-spacing:467.991615px;}
.ws37{word-spacing:481.557607px;}
.ws32{word-spacing:483.056406px;}
.ws24{word-spacing:492.312014px;}
.ws27{word-spacing:502.245606px;}
.ws38{word-spacing:505.556406px;}
.ws2c{word-spacing:528.056406px;}
.ws28{word-spacing:562.747206px;}
.ws29{word-spacing:615.888606px;}
.ws2d{word-spacing:651.723606px;}
.ws39{word-spacing:686.223606px;}
.ws2b{word-spacing:700.501212px;}
.ws44{word-spacing:1078.200011px;}
._b{margin-left:-10.779764px;}
._6{margin-left:-8.068800px;}
._15{margin-left:-6.694779px;}
._2{margin-left:-5.040000px;}
._1{margin-left:-3.024000px;}
._0{margin-left:-1.872000px;}
._5{width:1.296000px;}
._7{width:2.556000px;}
._3{width:4.140000px;}
._4{width:5.328000px;}
._8{width:7.199999px;}
._9{width:8.543999px;}
._2c{width:51.600002px;}
._2b{width:56.100002px;}
._a{width:74.400003px;}
._2e{width:121.200002px;}
._29{width:153.412826px;}
._11{width:222.501622px;}
._2a{width:236.551230px;}
._12{width:249.433823px;}
._28{width:290.261439px;}
._1e{width:330.330044px;}
._16{width:348.064850px;}
._21{width:363.658252px;}
._13{width:386.359831px;}
._c{width:407.871032px;}
._26{width:442.975843px;}
._14{width:451.244436px;}
._1b{width:453.441038px;}
._d{width:474.226212px;}
._f{width:496.089616px;}
._e{width:501.199818px;}
._1f{width:506.310031px;}
._2d{width:527.752857px;}
._1c{width:567.109809px;}
._17{width:579.276608px;}
._23{width:599.940007px;}
._20{width:601.776608px;}
._25{width:624.334205px;}
._24{width:625.399805px;}
._18{width:636.613208px;}
._27{width:646.775405px;}
._10{width:648.947953px;}
._19{width:658.419608px;}
._1d{width:680.919608px;}
._1a{width:681.948005px;}
._22{width:704.110803px;}
.fc7{color:rgb(255,255,0);}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(10,35,122);}
.fc1{color:rgb(11,30,49);}
.fca{color:rgb(174,174,174);}
.fc9{color:rgb(118,118,118);}
.fc8{color:rgb(127,127,127);}
.fc6{color:rgb(0,176,80);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:54.000000px;}
.fsb{font-size:59.999990px;}
.fs5{font-size:65.999995px;}
.fsa{font-size:72.000000px;}
.fsd{font-size:77.999990px;}
.fs4{font-size:83.999995px;}
.fs3{font-size:95.999990px;}
.fs1{font-size:108.000000px;}
.fsc{font-size:119.999995px;}
.fs0{font-size:144.000000px;}
.fs7{font-size:162.000000px;}
.fs8{font-size:168.000048px;}
.fs2{font-size:180.000000px;}
.fs6{font-size:191.999952px;}
.y0{bottom:0.000000px;}
.y3c{bottom:10.080018px;}
.y88{bottom:15.120000px;}
.y3a{bottom:51.480015px;}
.y32{bottom:53.280015px;}
.y7e{bottom:56.880000px;}
.ya6{bottom:61.920000px;}
.y7d{bottom:77.760000px;}
.y2e{bottom:81.360000px;}
.y3d{bottom:81.719982px;}
.y38{bottom:81.719985px;}
.y68{bottom:91.079985px;}
.y5e{bottom:91.080000px;}
.y3e{bottom:91.800000px;}
.y37{bottom:92.880015px;}
.y56{bottom:101.880015px;}
.y87{bottom:108.360000px;}
.y22{bottom:116.280000px;}
.y3{bottom:118.080000px;}
.y7c{bottom:121.320000px;}
.y8c{bottom:128.520000px;}
.y86{bottom:129.240000px;}
.y14{bottom:129.960000px;}
.y3b{bottom:133.200000px;}
.y21{bottom:140.400000px;}
.y5a{bottom:140.760000px;}
.y7b{bottom:143.640000px;}
.y67{bottom:145.800015px;}
.y13{bottom:154.080000px;}
.y8b{bottom:154.800000px;}
.y35{bottom:156.959985px;}
.y2{bottom:161.640000px;}
.y20{bottom:165.960000px;}
.y51{bottom:166.320000px;}
.y39{bottom:174.600000px;}
.y12{bottom:179.280000px;}
.y59{bottom:181.800000px;}
.y4a{bottom:182.160000px;}
.y33{bottom:182.519985px;}
.y65{bottom:185.400000px;}
.y30{bottom:190.080000px;}
.y7a{bottom:190.440000px;}
.y1f{bottom:191.520000px;}
.y9d{bottom:198.720000px;}
.y11{bottom:204.840000px;}
.y95{bottom:217.080000px;}
.y79{bottom:220.320000px;}
.y58{bottom:221.760000px;}
.y36{bottom:223.200000px;}
.y1{bottom:224.640000px;}
.y64{bottom:225.000000px;}
.y10{bottom:230.400000px;}
.y2d{bottom:231.480000px;}
.y34{bottom:235.800000px;}
.y69{bottom:236.880000px;}
.y9c{bottom:237.600000px;}
.y78{bottom:250.200000px;}
.y92{bottom:252.720000px;}
.y28{bottom:254.160000px;}
.yf{bottom:255.960000px;}
.y1e{bottom:260.640000px;}
.y63{bottom:264.600000px;}
.y31{bottom:271.440000px;}
.y57{bottom:271.800000px;}
.y91{bottom:272.160000px;}
.y77{bottom:272.880000px;}
.y9b{bottom:278.280000px;}
.ye{bottom:280.080000px;}
.y66{bottom:284.040000px;}
.y1d{bottom:284.400000px;}
.y81{bottom:290.520000px;}
.y62{bottom:304.200000px;}
.yd{bottom:305.280000px;}
.y55{bottom:309.960000px;}
.y85{bottom:310.680000px;}
.y2f{bottom:312.840000px;}
.y9a{bottom:317.160000px;}
.y1c{bottom:318.960000px;}
.y52{bottom:322.920000px;}
.yc{bottom:330.840000px;}
.y54{bottom:335.520000px;}
.y50{bottom:335.880000px;}
.y61{bottom:343.800000px;}
.y76{bottom:346.320000px;}
.y2c{bottom:348.480000px;}
.y1b{bottom:353.520000px;}
.y53{bottom:361.080000px;}
.y2b{bottom:361.440000px;}
.y5c{bottom:363.240000px;}
.y75{bottom:370.440000px;}
.y99{bottom:371.160000px;}
.y49{bottom:374.400000px;}
.y60{bottom:383.400000px;}
.y74{bottom:392.760000px;}
.y4f{bottom:397.080000px;}
.y29{bottom:406.800000px;}
.y73{bottom:422.640000px;}
.y5f{bottom:423.000000px;}
.y44{bottom:438.480000px;}
.y4e{bottom:439.200000px;}
.y72{bottom:445.320000px;}
.y18{bottom:452.520000px;}
.ya4{bottom:457.920000px;}
.y5d{bottom:462.600000px;}
.y84{bottom:468.720000px;}
.y17{bottom:471.960000px;}
.y71{bottom:475.200000px;}
.y4d{bottom:475.920000px;}
.y98{bottom:479.160000px;}
.y43{bottom:482.040000px;}
.y94{bottom:482.760000px;}
.y70{bottom:497.880000px;}
.yb{bottom:501.120000px;}
.ya3{bottom:501.480000px;}
.y4c{bottom:506.160000px;}
.y83{bottom:515.160000px;}
.y97{bottom:518.040000px;}
.y6f{bottom:520.200000px;}
.y42{bottom:525.240000px;}
.ya{bottom:526.680000px;}
.y4b{bottom:531.000000px;}
.ya2{bottom:536.040000px;}
.y6e{bottom:550.440000px;}
.y9{bottom:552.240000px;}
.y27{bottom:554.040000px;}
.y82{bottom:568.440000px;}
.y96{bottom:570.600000px;}
.y6d{bottom:574.200000px;}
.y8{bottom:577.800000px;}
.ya1{bottom:578.160000px;}
.y26{bottom:581.040000px;}
.y5b{bottom:586.800000px;}
.y93{bottom:594.360000px;}
.y48{bottom:595.440000px;}
.y6c{bottom:596.880000px;}
.y41{bottom:597.240000px;}
.ya0{bottom:608.040000px;}
.y25{bottom:621.360000px;}
.y6b{bottom:628.200000px;}
.y7{bottom:630.360000px;}
.y9f{bottom:637.920000px;}
.y47{bottom:640.080000px;}
.y8e{bottom:644.760000px;}
.y6{bottom:655.920000px;}
.y24{bottom:662.040015px;}
.y40{bottom:664.200015px;}
.y8d{bottom:668.880015px;}
.y9e{bottom:669.600015px;}
.y90{bottom:671.040015px;}
.y5{bottom:681.120015px;}
.y46{bottom:682.200015px;}
.y80{bottom:685.800015px;}
.y23{bottom:687.240015px;}
.y3f{bottom:689.760015px;}
.y16{bottom:701.280015px;}
.y1a{bottom:702.360015px;}
.y7f{bottom:714.240015px;}
.y15{bottom:720.720015px;}
.y19{bottom:721.800015px;}
.y8a{bottom:736.920015px;}
.y6a{bottom:764.640015px;}
.y8f{bottom:765.000015px;}
.y45{bottom:766.440015px;}
.y4{bottom:768.240015px;}
.y2a{bottom:768.600015px;}
.y89{bottom:775.800015px;}
.ya5{bottom:778.320015px;}
.h1c{height:43.681634px;}
.h22{height:43.989255px;}
.h14{height:47.437497px;}
.h7{height:48.049801px;}
.h21{height:51.987298px;}
.h1a{height:52.417969px;}
.h1b{height:52.453125px;}
.h8{height:55.986325px;}
.hc{height:56.027341px;}
.h5{height:61.195309px;}
.h17{height:61.694297px;}
.h19{height:63.134297px;}
.h10{height:63.984369px;}
.h12{height:68.718743px;}
.h6{height:69.890618px;}
.h4{height:69.937493px;}
.h2{height:71.982422px;}
.h18{height:77.308594px;}
.h16{height:77.625000px;}
.h25{height:79.980466px;}
.h1f{height:87.363278px;}
.h1{height:95.976563px;}
.h24{height:103.078125px;}
.h23{height:104.835938px;}
.h1d{height:104.906250px;}
.ha{height:106.386325px;}
.hf{height:107.867341px;}
.he{height:107.973633px;}
.h3{height:119.970703px;}
.h15{height:122.308629px;}
.h1e{height:126.243278px;}
.h9{height:127.968718px;}
.h20{height:131.132813px;}
.hb{height:176.760000px;}
.h13{height:201.600000px;}
.h11{height:201.960000px;}
.hd{height:353.160000px;}
.h0{height:810.000000px;}
.w1{width:168.120000px;}
.w6{width:191.520000px;}
.w4{width:209.520000px;}
.w5{width:248.760000px;}
.w2{width:284.040000px;}
.w3{width:307.080000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1a{left:8.416065px;}
.x22{left:10.800000px;}
.x37{left:12.036150px;}
.x45{left:17.400000px;}
.x44{left:18.525000px;}
.x7{left:35.903025px;}
.x4{left:37.330755px;}
.x46{left:38.775000px;}
.x23{left:42.930465px;}
.x57{left:44.866800px;}
.x8{left:49.778025px;}
.x5{left:50.830740px;}
.x47{left:55.541580px;}
.x9{left:63.128025px;}
.x6{left:64.555740px;}
.x12{left:69.405585px;}
.x40{left:74.160000px;}
.x19{left:81.720000px;}
.x13{left:96.405585px;}
.x5c{left:98.181615px;}
.x17{left:99.562020px;}
.x53{left:109.800000px;}
.x27{left:125.640000px;}
.x21{left:131.198565px;}
.x1c{left:137.086065px;}
.x54{left:145.763505px;}
.x3a{left:148.102500px;}
.x43{left:152.343750px;}
.x2c{left:154.211250px;}
.x26{left:155.970000px;}
.x1d{left:157.501050px;}
.x2a{left:172.005000px;}
.x3c{left:174.206250px;}
.x29{left:182.321250px;}
.x25{left:188.340000px;}
.x2b{left:194.857500px;}
.x4e{left:203.365950px;}
.x24{left:218.096250px;}
.x2d{left:225.851250px;}
.x59{left:236.100000px;}
.x28{left:242.902500px;}
.x5a{left:276.600000px;}
.x5b{left:290.100000px;}
.x1f{left:296.514900px;}
.x20{left:299.889900px;}
.x1b{left:304.577400px;}
.x1e{left:307.764900px;}
.x41{left:322.560000px;}
.x1{left:335.801250px;}
.x42{left:373.369800px;}
.x58{left:404.343750px;}
.x2e{left:409.320000px;}
.x3{left:424.657500px;}
.x5d{left:436.938750px;}
.x18{left:462.036300px;}
.x2f{left:467.017200px;}
.x3b{left:469.186800px;}
.x52{left:473.906250px;}
.x16{left:482.857350px;}
.x3d{left:485.040000px;}
.x30{left:541.079700px;}
.x4d{left:554.821050px;}
.x2{left:613.410000px;}
.x4c{left:660.384150px;}
.x56{left:736.156950px;}
.xa{left:740.965200px;}
.x10{left:743.446950px;}
.x31{left:746.004750px;}
.xe{left:768.565200px;}
.x32{left:793.397250px;}
.xf{left:795.190200px;}
.x11{left:797.446950px;}
.x4b{left:808.854000px;}
.x49{left:838.800000px;}
.x4a{left:847.084800px;}
.xb{left:858.329700px;}
.x48{left:925.875000px;}
.x33{left:933.784650px;}
.x3e{left:935.514750px;}
.x34{left:941.254650px;}
.x35{left:989.907150px;}
.x50{left:992.617500px;}
.x5e{left:1010.180250px;}
.x51{left:1052.715000px;}
.x36{left:1101.600000px;}
.x4f{left:1118.652000px;}
.x14{left:1122.819750px;}
.x39{left:1136.421150px;}
.x38{left:1159.011150px;}
.xd{left:1171.915650px;}
.xc{left:1193.568150px;}
.x15{left:1204.706400px;}
.x55{left:1246.012650px;}
.x3f{left:1395.868500px;}
@media print{
.v5{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280000pt;}
.v3{vertical-align:20.480000pt;}
.v4{vertical-align:21.760000pt;}
.v7{vertical-align:33.280000pt;}
.v1{vertical-align:44.800000pt;}
.v2{vertical-align:46.080000pt;}
.ls14{letter-spacing:-6.485333pt;}
.ls69{letter-spacing:-4.300800pt;}
.ls3{letter-spacing:-4.243200pt;}
.ls6d{letter-spacing:-3.584000pt;}
.ls2a{letter-spacing:-2.292267pt;}
.ls38{letter-spacing:-2.187733pt;}
.lsf{letter-spacing:-1.872000pt;}
.ls10{letter-spacing:-1.648000pt;}
.ls3a{letter-spacing:-0.836267pt;}
.ls57{letter-spacing:-0.762667pt;}
.ls3b{letter-spacing:-0.679467pt;}
.ls29{letter-spacing:-0.560000pt;}
.ls2d{letter-spacing:-0.492800pt;}
.ls3c{letter-spacing:-0.455467pt;}
.ls32{letter-spacing:-0.380800pt;}
.ls4{letter-spacing:-0.326400pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.310933pt;}
.ls3d{letter-spacing:-0.291200pt;}
.ls45{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.281600pt;}
.ls20{letter-spacing:-0.273067pt;}
.ls4d{letter-spacing:-0.268800pt;}
.ls42{letter-spacing:-0.261333pt;}
.ls50{letter-spacing:-0.249600pt;}
.ls12{letter-spacing:-0.247467pt;}
.ls5a{letter-spacing:-0.246400pt;}
.ls46{letter-spacing:-0.238933pt;}
.ls64{letter-spacing:-0.234667pt;}
.ls58{letter-spacing:-0.228800pt;}
.ls2b{letter-spacing:-0.216533pt;}
.ls4f{letter-spacing:-0.211200pt;}
.ls1a{letter-spacing:-0.205333pt;}
.ls17{letter-spacing:-0.194133pt;}
.ls18{letter-spacing:-0.179200pt;}
.ls6b{letter-spacing:-0.153600pt;}
.ls19{letter-spacing:-0.152533pt;}
.ls22{letter-spacing:-0.136533pt;}
.ls2e{letter-spacing:-0.119467pt;}
.ls21{letter-spacing:-0.110933pt;}
.ls62{letter-spacing:-0.106667pt;}
.ls30{letter-spacing:-0.082133pt;}
.ls2f{letter-spacing:-0.067200pt;}
.ls3e{letter-spacing:-0.044800pt;}
.ls11{letter-spacing:-0.032000pt;}
.ls56{letter-spacing:-0.028800pt;}
.ls67{letter-spacing:-0.022400pt;}
.ls4c{letter-spacing:-0.019200pt;}
.ls28{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.014933pt;}
.ls48{letter-spacing:0.019200pt;}
.ls36{letter-spacing:0.022400pt;}
.ls0{letter-spacing:0.026667pt;}
.ls27{letter-spacing:0.029867pt;}
.ls53{letter-spacing:0.032000pt;}
.ls61{letter-spacing:0.038400pt;}
.ls41{letter-spacing:0.044800pt;}
.lsa{letter-spacing:0.046933pt;}
.ls1f{letter-spacing:0.048000pt;}
.ls6c{letter-spacing:0.051200pt;}
.ls52{letter-spacing:0.053333pt;}
.ls68{letter-spacing:0.067200pt;}
.lsc{letter-spacing:0.089600pt;}
.ls35{letter-spacing:0.112000pt;}
.ls6a{letter-spacing:0.115200pt;}
.ls26{letter-spacing:0.119467pt;}
.ls2{letter-spacing:0.124800pt;}
.ls1e{letter-spacing:0.126933pt;}
.ls34{letter-spacing:0.134400pt;}
.ls47{letter-spacing:0.136533pt;}
.ls5d{letter-spacing:0.149333pt;}
.ls60{letter-spacing:0.153600pt;}
.ls43{letter-spacing:0.156800pt;}
.ls4b{letter-spacing:0.160000pt;}
.ls51{letter-spacing:0.166400pt;}
.ls23{letter-spacing:0.175948pt;}
.ls24{letter-spacing:0.176001pt;}
.ls13{letter-spacing:0.179200pt;}
.ls15{letter-spacing:0.194133pt;}
.ls49{letter-spacing:0.208000pt;}
.ls1{letter-spacing:0.217600pt;}
.ls4e{letter-spacing:0.230400pt;}
.ls3f{letter-spacing:0.231467pt;}
.ls55{letter-spacing:0.240000pt;}
.ls5c{letter-spacing:0.243200pt;}
.ls25{letter-spacing:0.247467pt;}
.ls44{letter-spacing:0.250670pt;}
.ls1d{letter-spacing:0.251203pt;}
.ls63{letter-spacing:0.266667pt;}
.ls59{letter-spacing:0.270400pt;}
.lse{letter-spacing:0.272000pt;}
.ls8{letter-spacing:0.277336pt;}
.ls7{letter-spacing:0.281600pt;}
.ls40{letter-spacing:0.291200pt;}
.ls5e{letter-spacing:0.294400pt;}
.ls1b{letter-spacing:0.310933pt;}
.ls54{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.321067pt;}
.ls5f{letter-spacing:0.346668pt;}
.ls4a{letter-spacing:0.448000pt;}
.ls39{letter-spacing:1.052800pt;}
.ls9{letter-spacing:21.333335pt;}
.ls6{letter-spacing:30.426667pt;}
.lsb{letter-spacing:48.085337pt;}
.ls65{letter-spacing:62.400000pt;}
.ls66{letter-spacing:69.866668pt;}
.ls5b{letter-spacing:109.056000pt;}
.ls33{letter-spacing:575.037336pt;}
.ls37{letter-spacing:626.003202pt;}
.ws47{word-spacing:-44.480000pt;}
.ws10{word-spacing:-30.928000pt;}
.ws7{word-spacing:-30.848000pt;}
.ws46{word-spacing:-29.813332pt;}
.ws45{word-spacing:-29.653332pt;}
.ws52{word-spacing:-29.504000pt;}
.ws4d{word-spacing:-29.478400pt;}
.ws4e{word-spacing:-29.401600pt;}
.ws4f{word-spacing:-29.337600pt;}
.ws50{word-spacing:-29.222400pt;}
.ws51{word-spacing:-29.184000pt;}
.ws48{word-spacing:-26.659200pt;}
.ws5a{word-spacing:-24.870400pt;}
.ws3e{word-spacing:-23.611731pt;}
.ws3d{word-spacing:-23.586131pt;}
.ws22{word-spacing:-23.475198pt;}
.ws9{word-spacing:-23.441064pt;}
.ws54{word-spacing:-21.919999pt;}
.ws56{word-spacing:-21.685332pt;}
.ws53{word-spacing:-21.546666pt;}
.ws55{word-spacing:-21.418666pt;}
.ws5b{word-spacing:-21.120000pt;}
.wsd{word-spacing:-20.846932pt;}
.ws8{word-spacing:-20.757332pt;}
.ws41{word-spacing:-20.578132pt;}
.ws1{word-spacing:-19.612800pt;}
.ws42{word-spacing:-17.811200pt;}
.ws43{word-spacing:-17.772800pt;}
.wse{word-spacing:-17.237332pt;}
.wsb{word-spacing:-16.620265pt;}
.wsa{word-spacing:-16.156799pt;}
.wsc{word-spacing:-15.998399pt;}
.ws35{word-spacing:-15.388799pt;}
.ws3a{word-spacing:-15.314132pt;}
.ws17{word-spacing:-15.284266pt;}
.ws57{word-spacing:-15.269332pt;}
.ws25{word-spacing:-15.187199pt;}
.ws36{word-spacing:-15.179732pt;}
.ws1e{word-spacing:-15.172266pt;}
.ws18{word-spacing:-15.157332pt;}
.ws1f{word-spacing:-15.149866pt;}
.ws34{word-spacing:-15.112532pt;}
.ws1c{word-spacing:-15.075199pt;}
.ws1a{word-spacing:-15.037866pt;}
.ws15{word-spacing:-14.940799pt;}
.ws3c{word-spacing:-14.866132pt;}
.ws20{word-spacing:-14.776532pt;}
.ws33{word-spacing:-14.701866pt;}
.ws19{word-spacing:-14.664532pt;}
.ws4b{word-spacing:-14.345065pt;}
.ws4a{word-spacing:-14.074665pt;}
.ws49{word-spacing:-13.311998pt;}
.ws14{word-spacing:-12.865066pt;}
.ws4c{word-spacing:-11.909332pt;}
.ws4{word-spacing:-0.522667pt;}
.ws0{word-spacing:-0.363733pt;}
.wsf{word-spacing:-0.164267pt;}
.ws3f{word-spacing:-0.115200pt;}
.ws59{word-spacing:-0.085333pt;}
.ws1d{word-spacing:-0.074667pt;}
.ws40{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws58{word-spacing:0.153600pt;}
.ws3{word-spacing:0.746667pt;}
.ws6{word-spacing:3.104000pt;}
.ws5{word-spacing:3.669333pt;}
.ws11{word-spacing:42.410672pt;}
.ws12{word-spacing:129.395868pt;}
.ws1b{word-spacing:205.586144pt;}
.ws3b{word-spacing:223.026142pt;}
.ws2f{word-spacing:264.051208pt;}
.ws13{word-spacing:271.810159pt;}
.ws30{word-spacing:355.694941pt;}
.ws26{word-spacing:373.636270pt;}
.ws21{word-spacing:386.756807pt;}
.ws2e{word-spacing:398.717874pt;}
.ws23{word-spacing:406.033088pt;}
.ws31{word-spacing:408.060808pt;}
.ws2a{word-spacing:409.384541pt;}
.ws16{word-spacing:415.992547pt;}
.ws37{word-spacing:428.051207pt;}
.ws32{word-spacing:429.383472pt;}
.ws24{word-spacing:437.610679pt;}
.ws27{word-spacing:446.440539pt;}
.ws38{word-spacing:449.383472pt;}
.ws2c{word-spacing:469.383472pt;}
.ws28{word-spacing:500.219739pt;}
.ws29{word-spacing:547.456539pt;}
.ws2d{word-spacing:579.309872pt;}
.ws39{word-spacing:609.976539pt;}
.ws2b{word-spacing:622.667744pt;}
.ws44{word-spacing:958.400010pt;}
._b{margin-left:-9.582013pt;}
._6{margin-left:-7.172267pt;}
._15{margin-left:-5.950915pt;}
._2{margin-left:-4.480000pt;}
._1{margin-left:-2.688000pt;}
._0{margin-left:-1.664000pt;}
._5{width:1.152000pt;}
._7{width:2.272000pt;}
._3{width:3.680000pt;}
._4{width:4.736000pt;}
._8{width:6.399999pt;}
._9{width:7.594666pt;}
._2c{width:45.866668pt;}
._2b{width:49.866668pt;}
._a{width:66.133336pt;}
._2e{width:107.733335pt;}
._29{width:136.366956pt;}
._11{width:197.779219pt;}
._2a{width:210.267760pt;}
._12{width:221.718954pt;}
._28{width:258.010168pt;}
._1e{width:293.626706pt;}
._16{width:309.390978pt;}
._21{width:323.251780pt;}
._13{width:343.430961pt;}
._c{width:362.552028pt;}
._26{width:393.756305pt;}
._14{width:401.106165pt;}
._1b{width:403.058701pt;}
._d{width:421.534411pt;}
._f{width:440.968548pt;}
._e{width:445.510949pt;}
._1f{width:450.053361pt;}
._2d{width:469.113651pt;}
._1c{width:504.097608pt;}
._17{width:514.912540pt;}
._23{width:533.280006pt;}
._20{width:534.912540pt;}
._25{width:554.963738pt;}
._24{width:555.910938pt;}
._18{width:565.878407pt;}
._27{width:574.911471pt;}
._10{width:576.842625pt;}
._19{width:585.261874pt;}
._1d{width:605.261874pt;}
._1a{width:606.176005pt;}
._22{width:625.876269pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:53.333325pt;}
.fs5{font-size:58.666662pt;}
.fsa{font-size:64.000000pt;}
.fsd{font-size:69.333325pt;}
.fs4{font-size:74.666662pt;}
.fs3{font-size:85.333325pt;}
.fs1{font-size:96.000000pt;}
.fsc{font-size:106.666662pt;}
.fs0{font-size:128.000000pt;}
.fs7{font-size:144.000000pt;}
.fs8{font-size:149.333376pt;}
.fs2{font-size:160.000000pt;}
.fs6{font-size:170.666624pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:8.960016pt;}
.y88{bottom:13.440000pt;}
.y3a{bottom:45.760013pt;}
.y32{bottom:47.360013pt;}
.y7e{bottom:50.560000pt;}
.ya6{bottom:55.040000pt;}
.y7d{bottom:69.120000pt;}
.y2e{bottom:72.320000pt;}
.y3d{bottom:72.639984pt;}
.y38{bottom:72.639987pt;}
.y68{bottom:80.959987pt;}
.y5e{bottom:80.960000pt;}
.y3e{bottom:81.600000pt;}
.y37{bottom:82.560013pt;}
.y56{bottom:90.560013pt;}
.y87{bottom:96.320000pt;}
.y22{bottom:103.360000pt;}
.y3{bottom:104.960000pt;}
.y7c{bottom:107.840000pt;}
.y8c{bottom:114.240000pt;}
.y86{bottom:114.880000pt;}
.y14{bottom:115.520000pt;}
.y3b{bottom:118.400000pt;}
.y21{bottom:124.800000pt;}
.y5a{bottom:125.120000pt;}
.y7b{bottom:127.680000pt;}
.y67{bottom:129.600013pt;}
.y13{bottom:136.960000pt;}
.y8b{bottom:137.600000pt;}
.y35{bottom:139.519987pt;}
.y2{bottom:143.680000pt;}
.y20{bottom:147.520000pt;}
.y51{bottom:147.840000pt;}
.y39{bottom:155.200000pt;}
.y12{bottom:159.360000pt;}
.y59{bottom:161.600000pt;}
.y4a{bottom:161.920000pt;}
.y33{bottom:162.239987pt;}
.y65{bottom:164.800000pt;}
.y30{bottom:168.960000pt;}
.y7a{bottom:169.280000pt;}
.y1f{bottom:170.240000pt;}
.y9d{bottom:176.640000pt;}
.y11{bottom:182.080000pt;}
.y95{bottom:192.960000pt;}
.y79{bottom:195.840000pt;}
.y58{bottom:197.120000pt;}
.y36{bottom:198.400000pt;}
.y1{bottom:199.680000pt;}
.y64{bottom:200.000000pt;}
.y10{bottom:204.800000pt;}
.y2d{bottom:205.760000pt;}
.y34{bottom:209.600000pt;}
.y69{bottom:210.560000pt;}
.y9c{bottom:211.200000pt;}
.y78{bottom:222.400000pt;}
.y92{bottom:224.640000pt;}
.y28{bottom:225.920000pt;}
.yf{bottom:227.520000pt;}
.y1e{bottom:231.680000pt;}
.y63{bottom:235.200000pt;}
.y31{bottom:241.280000pt;}
.y57{bottom:241.600000pt;}
.y91{bottom:241.920000pt;}
.y77{bottom:242.560000pt;}
.y9b{bottom:247.360000pt;}
.ye{bottom:248.960000pt;}
.y66{bottom:252.480000pt;}
.y1d{bottom:252.800000pt;}
.y81{bottom:258.240000pt;}
.y62{bottom:270.400000pt;}
.yd{bottom:271.360000pt;}
.y55{bottom:275.520000pt;}
.y85{bottom:276.160000pt;}
.y2f{bottom:278.080000pt;}
.y9a{bottom:281.920000pt;}
.y1c{bottom:283.520000pt;}
.y52{bottom:287.040000pt;}
.yc{bottom:294.080000pt;}
.y54{bottom:298.240000pt;}
.y50{bottom:298.560000pt;}
.y61{bottom:305.600000pt;}
.y76{bottom:307.840000pt;}
.y2c{bottom:309.760000pt;}
.y1b{bottom:314.240000pt;}
.y53{bottom:320.960000pt;}
.y2b{bottom:321.280000pt;}
.y5c{bottom:322.880000pt;}
.y75{bottom:329.280000pt;}
.y99{bottom:329.920000pt;}
.y49{bottom:332.800000pt;}
.y60{bottom:340.800000pt;}
.y74{bottom:349.120000pt;}
.y4f{bottom:352.960000pt;}
.y29{bottom:361.600000pt;}
.y73{bottom:375.680000pt;}
.y5f{bottom:376.000000pt;}
.y44{bottom:389.760000pt;}
.y4e{bottom:390.400000pt;}
.y72{bottom:395.840000pt;}
.y18{bottom:402.240000pt;}
.ya4{bottom:407.040000pt;}
.y5d{bottom:411.200000pt;}
.y84{bottom:416.640000pt;}
.y17{bottom:419.520000pt;}
.y71{bottom:422.400000pt;}
.y4d{bottom:423.040000pt;}
.y98{bottom:425.920000pt;}
.y43{bottom:428.480000pt;}
.y94{bottom:429.120000pt;}
.y70{bottom:442.560000pt;}
.yb{bottom:445.440000pt;}
.ya3{bottom:445.760000pt;}
.y4c{bottom:449.920000pt;}
.y83{bottom:457.920000pt;}
.y97{bottom:460.480000pt;}
.y6f{bottom:462.400000pt;}
.y42{bottom:466.880000pt;}
.ya{bottom:468.160000pt;}
.y4b{bottom:472.000000pt;}
.ya2{bottom:476.480000pt;}
.y6e{bottom:489.280000pt;}
.y9{bottom:490.880000pt;}
.y27{bottom:492.480000pt;}
.y82{bottom:505.280000pt;}
.y96{bottom:507.200000pt;}
.y6d{bottom:510.400000pt;}
.y8{bottom:513.600000pt;}
.ya1{bottom:513.920000pt;}
.y26{bottom:516.480000pt;}
.y5b{bottom:521.600000pt;}
.y93{bottom:528.320000pt;}
.y48{bottom:529.280000pt;}
.y6c{bottom:530.560000pt;}
.y41{bottom:530.880000pt;}
.ya0{bottom:540.480000pt;}
.y25{bottom:552.320000pt;}
.y6b{bottom:558.400000pt;}
.y7{bottom:560.320000pt;}
.y9f{bottom:567.040000pt;}
.y47{bottom:568.960000pt;}
.y8e{bottom:573.120000pt;}
.y6{bottom:583.040000pt;}
.y24{bottom:588.480013pt;}
.y40{bottom:590.400013pt;}
.y8d{bottom:594.560013pt;}
.y9e{bottom:595.200013pt;}
.y90{bottom:596.480013pt;}
.y5{bottom:605.440013pt;}
.y46{bottom:606.400013pt;}
.y80{bottom:609.600013pt;}
.y23{bottom:610.880013pt;}
.y3f{bottom:613.120013pt;}
.y16{bottom:623.360013pt;}
.y1a{bottom:624.320013pt;}
.y7f{bottom:634.880013pt;}
.y15{bottom:640.640013pt;}
.y19{bottom:641.600013pt;}
.y8a{bottom:655.040013pt;}
.y6a{bottom:679.680013pt;}
.y8f{bottom:680.000013pt;}
.y45{bottom:681.280013pt;}
.y4{bottom:682.880013pt;}
.y2a{bottom:683.200013pt;}
.y89{bottom:689.600013pt;}
.ya5{bottom:691.840013pt;}
.h1c{height:38.828119pt;}
.h22{height:39.101560pt;}
.h14{height:42.166664pt;}
.h7{height:42.710934pt;}
.h21{height:46.210932pt;}
.h1a{height:46.593750pt;}
.h1b{height:46.625000pt;}
.h8{height:49.765622pt;}
.hc{height:49.802080pt;}
.h5{height:54.395830pt;}
.h17{height:54.839375pt;}
.h19{height:56.119375pt;}
.h10{height:56.874994pt;}
.h12{height:61.083327pt;}
.h6{height:62.124994pt;}
.h4{height:62.166660pt;}
.h2{height:63.984375pt;}
.h18{height:68.718750pt;}
.h16{height:69.000000pt;}
.h25{height:71.093747pt;}
.h1f{height:77.656247pt;}
.h1{height:85.312500pt;}
.h24{height:91.625000pt;}
.h23{height:93.187500pt;}
.h1d{height:93.250000pt;}
.ha{height:94.565622pt;}
.hf{height:95.882080pt;}
.he{height:95.976563pt;}
.h3{height:106.640625pt;}
.h15{height:108.718781pt;}
.h1e{height:112.216247pt;}
.h9{height:113.749972pt;}
.h20{height:116.562500pt;}
.hb{height:157.120000pt;}
.h13{height:179.200000pt;}
.h11{height:179.520000pt;}
.hd{height:313.920000pt;}
.h0{height:720.000000pt;}
.w1{width:149.440000pt;}
.w6{width:170.240000pt;}
.w4{width:186.240000pt;}
.w5{width:221.120000pt;}
.w2{width:252.480000pt;}
.w3{width:272.960000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.480947pt;}
.x22{left:9.600000pt;}
.x37{left:10.698800pt;}
.x45{left:15.466667pt;}
.x44{left:16.466667pt;}
.x7{left:31.913800pt;}
.x4{left:33.182893pt;}
.x46{left:34.466667pt;}
.x23{left:38.160413pt;}
.x57{left:39.881600pt;}
.x8{left:44.247133pt;}
.x5{left:45.182880pt;}
.x47{left:49.370293pt;}
.x9{left:56.113800pt;}
.x6{left:57.382880pt;}
.x12{left:61.693853pt;}
.x40{left:65.920000pt;}
.x19{left:72.640000pt;}
.x13{left:85.693853pt;}
.x5c{left:87.272547pt;}
.x17{left:88.499573pt;}
.x53{left:97.600000pt;}
.x27{left:111.680000pt;}
.x21{left:116.620947pt;}
.x1c{left:121.854280pt;}
.x54{left:129.567560pt;}
.x3a{left:131.646667pt;}
.x43{left:135.416667pt;}
.x2c{left:137.076667pt;}
.x26{left:138.640000pt;}
.x1d{left:140.000933pt;}
.x2a{left:152.893333pt;}
.x3c{left:154.850000pt;}
.x29{left:162.063333pt;}
.x25{left:167.413333pt;}
.x2b{left:173.206667pt;}
.x4e{left:180.769733pt;}
.x24{left:193.863333pt;}
.x2d{left:200.756667pt;}
.x59{left:209.866667pt;}
.x28{left:215.913333pt;}
.x5a{left:245.866667pt;}
.x5b{left:257.866667pt;}
.x1f{left:263.568800pt;}
.x20{left:266.568800pt;}
.x1b{left:270.735467pt;}
.x1e{left:273.568800pt;}
.x41{left:286.720000pt;}
.x1{left:298.490000pt;}
.x42{left:331.884267pt;}
.x58{left:359.416667pt;}
.x2e{left:363.840000pt;}
.x3{left:377.473333pt;}
.x5d{left:388.390000pt;}
.x18{left:410.698933pt;}
.x2f{left:415.126400pt;}
.x3b{left:417.054933pt;}
.x52{left:421.250000pt;}
.x16{left:429.206533pt;}
.x3d{left:431.146667pt;}
.x30{left:480.959733pt;}
.x4d{left:493.174267pt;}
.x2{left:545.253333pt;}
.x4c{left:587.008133pt;}
.x56{left:654.361733pt;}
.xa{left:658.635733pt;}
.x10{left:660.841733pt;}
.x31{left:663.115333pt;}
.xe{left:683.169067pt;}
.x32{left:705.242000pt;}
.xf{left:706.835733pt;}
.x11{left:708.841733pt;}
.x4b{left:718.981333pt;}
.x49{left:745.600000pt;}
.x4a{left:752.964267pt;}
.xb{left:762.959733pt;}
.x48{left:823.000000pt;}
.x33{left:830.030800pt;}
.x3e{left:831.568667pt;}
.x34{left:836.670800pt;}
.x35{left:879.917467pt;}
.x50{left:882.326667pt;}
.x5e{left:897.938000pt;}
.x51{left:935.746667pt;}
.x36{left:979.200000pt;}
.x4f{left:994.357333pt;}
.x14{left:998.062000pt;}
.x39{left:1010.152133pt;}
.x38{left:1030.232133pt;}
.xd{left:1041.702800pt;}
.xc{left:1060.949467pt;}
.x15{left:1070.850133pt;}
.x55{left:1107.566800pt;}
.x3f{left:1240.772000pt;}
}




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