
    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_402852b7e06b148a0b5cbc7a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959961;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_688e3ae23e245f81c696296c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_8010964bc0dcb04fd6e56f36.woff')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_54602958d95257a04d361ca3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_46c50d9818ef8f6ac6310ccd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_a4c88e983d0a5abcfc515c12.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c1ff315c40c6b05fe7d19dca.woff')format("woff");}.ff7{font-family:ff7;line-height:0.959961;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_9182181e8feed9b3dd716a06.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_ffb5409ea1646ce270e73477.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ac9604365968d43f051b9bda.woff')format("woff");}.ffa{font-family:ffa;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b38715ec3dcd5638dcfae372.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_68e7f0b99809bdfc8d889e74.woff')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_f6a2b115f74fa802ab4659ce.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_52e28bc552a1a5b59f1fa25c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.854980;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_4404840c6066b21e7c30037f.woff')format("woff");}.fff{font-family:fff;line-height:0.959961;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_ce7602960ab893eb16a4ff9d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_9373925c95e361d6949c2919.woff')format("woff");}.ff11{font-family:ff11;line-height:0.893555;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_7e193211e8eae7cab51a1f0d.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_8c1c6b4aa14e62c25a1cb267.woff')format("woff");}.ff13{font-family:ff13;line-height:0.914062;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_3ecdc3b3104300c877101b78.woff')format("woff");}.ff14{font-family:ff14;line-height:0.762207;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_d05ef8f17a28e64e6a4c9fa2.woff')format("woff");}.ff15{font-family:ff15;line-height:0.910156;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_a76cf2277e9fdcbce5c38994.woff')format("woff");}.ff16{font-family:ff16;line-height:0.692871;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_f16c08bd6c7c2ce10ff0f46e.woff')format("woff");}.ff17{font-family:ff17;line-height:0.914062;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_ac32bc00bf6a8fc435c76e8f.woff')format("woff");}.ff18{font-family:ff18;line-height:0.762207;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_b91fc735f5ca445ee95be009.woff')format("woff");}.ff19{font-family:ff19;line-height:0.910156;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_b680160fbd87d145fd7f30b4.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.893555;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_aaca230ad98d018fbe71e728.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.762207;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_197a777ff6796ce760986361.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_caead6880e5e7a2b406bd80b.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.910156;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_bb9d15267294423370911e1d.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.893555;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_0f17301a7c3490a99eb45fbe.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.762207;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_6386d134bee1cdc5809a9473.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_851660e6b28d5b6d4517998a.woff')format("woff");}.ff21{font-family:ff21;line-height:0.914062;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_71314e3fd6d97500957fe100.woff')format("woff");}.ff22{font-family:ff22;line-height:0.910645;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_4cd0b7ea55dfc205b903f2fc.woff')format("woff");}.ff23{font-family:ff23;line-height:0.893555;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_3d2a4d6aec0652e695f0fd8e.woff')format("woff");}.ff24{font-family:ff24;line-height:0.669434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_283e3c3527eb73c291633560.woff')format("woff");}.ff25{font-family:ff25;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_07b2b743e46e419249b08689.woff')format("woff");}.ff26{font-family:ff26;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_118af58fde475183e6c88345.woff')format("woff");}.ff27{font-family:ff27;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.178488px;}
.lsf{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.258336px;}
.ls12{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.ls2{letter-spacing:33.960000px;}
.ls11{letter-spacing:64.200000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(51,54,102),0 0.015em rgb(51,54,102),0.015em 0 rgb(51,54,102),0 -0.015em  rgb(51,54,102);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(51,54,102);text-shadow:none;}
}
.ws12{word-spacing:-72.000000px;}
.wsc{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.496000px;}
.ws11{word-spacing:-17.208000px;}
.ws13{word-spacing:-17.064000px;}
.wsb{word-spacing:-15.228576px;}
.ws0{word-spacing:-15.012000px;}
.ws5{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:770.070000px;}
.ws2{word-spacing:809.166000px;}
._c{margin-left:-2.208000px;}
._0{margin-left:-1.008000px;}
._9{width:1.056000px;}
._b{width:2.064000px;}
._f{width:66.216000px;}
._e{width:102.216000px;}
._d{width:197.976000px;}
._5{width:210.414000px;}
._8{width:352.866000px;}
._4{width:493.860000px;}
._1{width:550.992000px;}
._7{width:622.920000px;}
._3{width:737.022000px;}
._6{width:743.016000px;}
._2{width:818.076000px;}
._a{width:846.516000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(100,100,100);}
.fc0{color:rgb(51,54,102);}
.fs1{font-size:30.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:4.500000px;}
.yf1{bottom:17.640000px;}
.yfa{bottom:17.820000px;}
.yf8{bottom:18.000000px;}
.yff{bottom:18.045000px;}
.ybe{bottom:24.660000px;}
.yc0{bottom:25.020000px;}
.yd3{bottom:25.050000px;}
.yc5{bottom:25.065000px;}
.y111{bottom:26.280000px;}
.y135{bottom:26.325000px;}
.y122{bottom:26.634000px;}
.y115{bottom:26.640000px;}
.y119{bottom:26.670000px;}
.y113{bottom:26.685000px;}
.y120{bottom:26.820000px;}
.y138{bottom:27.360000px;}
.y14e{bottom:27.390000px;}
.y143{bottom:27.405000px;}
.y140{bottom:27.540000px;}
.y13c{bottom:29.520000px;}
.y158{bottom:29.700000px;}
.y36{bottom:30.000000px;}
.ydf{bottom:36.540000px;}
.ydc{bottom:36.585000px;}
.yd8{bottom:36.720000px;}
.ye0{bottom:36.900000px;}
.ydd{bottom:36.945000px;}
.yda{bottom:37.080000px;}
.yf0{bottom:39.960000px;}
.y157{bottom:43.014000px;}
.y139{bottom:43.020000px;}
.y14f{bottom:43.050000px;}
.y144{bottom:43.065000px;}
.y141{bottom:43.200000px;}
.y149{bottom:43.245000px;}
.yee{bottom:50.220000px;}
.yf4{bottom:52.065000px;}
.y102{bottom:52.194000px;}
.y106{bottom:52.200000px;}
.yf9{bottom:52.230000px;}
.yf7{bottom:52.380000px;}
.yfe{bottom:52.425000px;}
.y110{bottom:57.420000px;}
.y134{bottom:57.465000px;}
.y146{bottom:57.774000px;}
.y15f{bottom:57.780000px;}
.y15a{bottom:57.825000px;}
.y147{bottom:58.494000px;}
.y160{bottom:58.500000px;}
.y15b{bottom:58.545000px;}
.yef{bottom:62.280000px;}
.yc3{bottom:66.420000px;}
.y35{bottom:67.500000px;}
.y148{bottom:74.154000px;}
.y161{bottom:74.160000px;}
.y15c{bottom:74.205000px;}
.yf3{bottom:74.385000px;}
.y34{bottom:84.000000px;}
.yed{bottom:84.600000px;}
.y33{bottom:100.500000px;}
.yba{bottom:103.425000px;}
.yc2{bottom:107.820000px;}
.y156{bottom:109.116000px;}
.y32{bottom:117.000000px;}
.yb9{bottom:118.725000px;}
.yd1{bottom:119.556000px;}
.y101{bottom:122.256000px;}
.y121{bottom:124.236000px;}
.y51{bottom:132.516000px;}
.y31{bottom:133.500000px;}
.y6b{bottom:138.096000px;}
.y145{bottom:139.356000px;}
.ya5{bottom:140.436000px;}
.y96{bottom:140.796000px;}
.ycd{bottom:149.220000px;}
.y30{bottom:150.000000px;}
.y81{bottom:152.670000px;}
.y155{bottom:152.850000px;}
.yd0{bottom:161.670000px;}
.y15d{bottom:165.630000px;}
.y2f{bottom:166.500000px;}
.y11f{bottom:167.970000px;}
.yb8{bottom:171.930000px;}
.yea{bottom:174.630000px;}
.y6a{bottom:179.490000px;}
.ya4{bottom:181.830000px;}
.y95{bottom:182.190000px;}
.y2e{bottom:183.000000px;}
.y50{bottom:185.970000px;}
.yb7{bottom:187.230000px;}
.ycc{bottom:190.650000px;}
.y100{bottom:191.550000px;}
.y83{bottom:193.710000px;}
.y80{bottom:194.070000px;}
.y154{bottom:196.770000px;}
.ye9{bottom:196.950000px;}
.y2d{bottom:199.500000px;}
.y159{bottom:209.370000px;}
.y11e{bottom:211.890000px;}
.y142{bottom:214.230000px;}
.y2c{bottom:216.000000px;}
.ye8{bottom:219.270000px;}
.y69{bottom:220.890000px;}
.ya3{bottom:223.230000px;}
.y94{bottom:223.590000px;}
.yfd{bottom:226.650000px;}
.y4f{bottom:227.730000px;}
.ycb{bottom:232.050000px;}
.y2b{bottom:232.500000px;}
.y82{bottom:235.110000px;}
.y7f{bottom:235.470000px;}
.y153{bottom:240.555000px;}
.ye7{bottom:241.635000px;}
.y2a{bottom:249.000000px;}
.y11d{bottom:255.675000px;}
.y13f{bottom:258.015000px;}
.y68{bottom:262.290000px;}
.ye6{bottom:264.135000px;}
.ya2{bottom:264.630000px;}
.y93{bottom:264.990000px;}
.y29{bottom:265.500000px;}
.y4e{bottom:269.130000px;}
.yca{bottom:273.450000px;}
.y7e{bottom:276.870000px;}
.ye5{bottom:281.235000px;}
.y28{bottom:282.000000px;}
.y152{bottom:284.295000px;}
.ycf{bottom:286.590000px;}
.yfc{bottom:296.175000px;}
.y27{bottom:298.500000px;}
.yb6{bottom:299.310000px;}
.y11c{bottom:299.415000px;}
.y13e{bottom:301.935000px;}
.y67{bottom:303.690000px;}
.ya1{bottom:306.030000px;}
.y92{bottom:306.390000px;}
.ya8{bottom:306.510000px;}
.y4d{bottom:310.575000px;}
.y16b{bottom:312.015000px;}
.yb5{bottom:314.610000px;}
.yc9{bottom:314.850000px;}
.y26{bottom:315.000000px;}
.y9a{bottom:317.955000px;}
.y7d{bottom:318.315000px;}
.ya9{bottom:323.820000px;}
.y151{bottom:328.035000px;}
.yce{bottom:328.755000px;}
.y25{bottom:331.500000px;}
.ye4{bottom:335.415000px;}
.yaa{bottom:341.130000px;}
.y11b{bottom:343.335000px;}
.y66{bottom:345.135000px;}
.y13d{bottom:345.675000px;}
.ya0{bottom:347.475000px;}
.y91{bottom:347.835000px;}
.y24{bottom:348.000000px;}
.yab{bottom:358.455000px;}
.y85{bottom:359.355000px;}
.y7c{bottom:359.715000px;}
.y4c{bottom:364.035000px;}
.y23{bottom:364.500000px;}
.yfb{bottom:365.655000px;}
.y16a{bottom:367.455000px;}
.yc8{bottom:370.875000px;}
.y150{bottom:371.955000px;}
.y130{bottom:372.855000px;}
.yac{bottom:375.765000px;}
.y22{bottom:381.000000px;}
.y169{bottom:384.735000px;}
.y65{bottom:386.535000px;}
.y11a{bottom:387.075000px;}
.y9f{bottom:388.875000px;}
.y90{bottom:389.235000px;}
.ye3{bottom:389.415000px;}
.y10e{bottom:390.675000px;}
.yad{bottom:393.090000px;}
.y21{bottom:397.500000px;}
.y99{bottom:400.755000px;}
.y7b{bottom:401.115000px;}
.ya6{bottom:405.435000px;}
.ya7{bottom:406.440000px;}
.y12f{bottom:407.235000px;}
.yae{bottom:410.400000px;}
.y10d{bottom:412.995000px;}
.y20{bottom:414.000000px;}
.y14d{bottom:415.695000px;}
.y4b{bottom:417.315000px;}
.ybc{bottom:426.675000px;}
.yaf{bottom:427.755000px;}
.y64{bottom:427.935000px;}
.y168{bottom:428.475000px;}
.y12e{bottom:429.555000px;}
.y9e{bottom:430.275000px;}
.y1f{bottom:430.500000px;}
.y8f{bottom:430.635000px;}
.y118{bottom:430.815000px;}
.y13b{bottom:433.365000px;}
.yb4{bottom:434.310000px;}
.y10c{bottom:435.345000px;}
.ybb{bottom:441.975000px;}
.y98{bottom:442.155000px;}
.y7a{bottom:442.515000px;}
.ye2{bottom:443.625000px;}
.yb0{bottom:445.065000px;}
.y12d{bottom:451.905000px;}
.y1e{bottom:457.500000px;}
.y10b{bottom:457.665000px;}
.y14c{bottom:459.465000px;}
.yb1{bottom:462.390000px;}
.y63{bottom:469.335000px;}
.yf6{bottom:470.085000px;}
.y4a{bottom:470.775000px;}
.y9d{bottom:471.675000px;}
.y8e{bottom:472.035000px;}
.y167{bottom:472.245000px;}
.y12c{bottom:474.405000px;}
.y117{bottom:474.765000px;}
.y13a{bottom:477.105000px;}
.yb2{bottom:479.700000px;}
.y10a{bottom:479.985000px;}
.y97{bottom:483.555000px;}
.y79{bottom:483.915000px;}
.y1d{bottom:484.500000px;}
.yb3{bottom:495.180000px;}
.y12b{bottom:496.725000px;}
.ye1{bottom:497.805000px;}
.y14b{bottom:503.385000px;}
.y62{bottom:510.735000px;}
.y1c{bottom:511.500000px;}
.y49{bottom:512.175000px;}
.y9c{bottom:513.075000px;}
.y8d{bottom:513.435000px;}
.y109{bottom:514.365000px;}
.y166{bottom:516.165000px;}
.y116{bottom:518.505000px;}
.y12a{bottom:519.045000px;}
.y137{bottom:520.845000px;}
.y78{bottom:525.315000px;}
.y108{bottom:531.465000px;}
.y1b{bottom:538.500000px;}
.yf5{bottom:539.565000px;}
.y129{bottom:541.365000px;}
.y14a{bottom:547.125000px;}
.yde{bottom:551.985000px;}
.y61{bottom:552.135000px;}
.y9b{bottom:554.475000px;}
.y8c{bottom:554.835000px;}
.y165{bottom:559.905000px;}
.y114{bottom:562.245000px;}
.y136{bottom:564.765000px;}
.y1a{bottom:565.500000px;}
.y48{bottom:565.665000px;}
.y84{bottom:566.385000px;}
.y77{bottom:566.745000px;}
.yf2{bottom:574.665000px;}
.y128{bottom:574.845000px;}
.y127{bottom:590.865000px;}
.y19{bottom:592.500000px;}
.y60{bottom:593.565000px;}
.y8b{bottom:596.265000px;}
.y107{bottom:600.945000px;}
.y164{bottom:603.645000px;}
.ydb{bottom:606.165000px;}
.y76{bottom:608.145000px;}
.y133{bottom:608.505000px;}
.y47{bottom:618.585000px;}
.y18{bottom:619.500000px;}
.y5f{bottom:634.785000px;}
.y126{bottom:634.830000px;}
.y105{bottom:636.090000px;}
.y8a{bottom:637.665000px;}
.y17{bottom:646.500000px;}
.y163{bottom:647.610000px;}
.y87{bottom:649.185000px;}
.y75{bottom:649.545000px;}
.y112{bottom:649.950000px;}
.yd9{bottom:660.210000px;}
.yec{bottom:666.510000px;}
.y46{bottom:672.405000px;}
.y16{bottom:673.500000px;}
.y5e{bottom:677.805000px;}
.y125{bottom:678.570000px;}
.y89{bottom:679.065000px;}
.y132{bottom:683.430000px;}
.y74{bottom:690.945000px;}
.y162{bottom:691.350000px;}
.y10f{bottom:693.690000px;}
.y15{bottom:700.500000px;}
.yc7{bottom:702.825000px;}
.y104{bottom:705.390000px;}
.yd7{bottom:714.390000px;}
.y14{bottom:717.000000px;}
.y5d{bottom:720.285000px;}
.y124{bottom:722.310000px;}
.y45{bottom:725.685000px;}
.y73{bottom:732.345000px;}
.y15e{bottom:735.090000px;}
.y103{bottom:740.490000px;}
.y13{bottom:744.000000px;}
.yc6{bottom:744.945000px;}
.y131{bottom:752.190000px;}
.y12{bottom:760.500000px;}
.y5c{bottom:761.685000px;}
.y123{bottom:766.230000px;}
.y44{bottom:767.085000px;}
.y72{bottom:773.745000px;}
.yc4{bottom:787.065000px;}
.y11{bottom:787.500000px;}
.yd6{bottom:793.590000px;}
.y5b{bottom:803.085000px;}
.y10{bottom:804.000000px;}
.y43{bottom:808.485000px;}
.y71{bottom:815.190000px;}
.yc1{bottom:829.410000px;}
.yf{bottom:831.000000px;}
.y88{bottom:844.170000px;}
.y5a{bottom:844.530000px;}
.ye{bottom:847.500000px;}
.y70{bottom:856.590000px;}
.y42{bottom:861.990000px;}
.yd{bottom:864.000000px;}
.yc{bottom:880.500000px;}
.y59{bottom:885.930000px;}
.y6f{bottom:897.990000px;}
.yeb{bottom:900.000000px;}
.y57{bottom:903.390000px;}
.yb{bottom:907.500000px;}
.y41{bottom:915.090000px;}
.y58{bottom:927.330000px;}
.ya{bottom:934.500000px;}
.y6e{bottom:939.390000px;}
.ybf{bottom:954.330000px;}
.y56{bottom:956.850000px;}
.y9{bottom:961.500000px;}
.y40{bottom:968.730000px;}
.y8{bottom:978.000000px;}
.yd5{bottom:978.270000px;}
.y86{bottom:980.430000px;}
.y6d{bottom:980.790000px;}
.yd4{bottom:995.730000px;}
.ybd{bottom:996.450000px;}
.y7{bottom:1005.000000px;}
.y55{bottom:1010.130000px;}
.y3f{bottom:1021.830000px;}
.y6c{bottom:1022.190000px;}
.y6{bottom:1024.500000px;}
.yd2{bottom:1037.850000px;}
.y5{bottom:1042.500000px;}
.y3a{bottom:1048.500000px;}
.y4{bottom:1060.500000px;}
.y3e{bottom:1063.260000px;}
.y54{bottom:1063.620000px;}
.y39{bottom:1065.000000px;}
.y3{bottom:1081.500000px;}
.y38{bottom:1098.000000px;}
.y2{bottom:1102.500000px;}
.y1{bottom:1110.000000px;}
.y37{bottom:1114.500000px;}
.y3c{bottom:1114.740000px;}
.y3b{bottom:1119.240000px;}
.y53{bottom:1155.000000px;}
.y52{bottom:1170.000000px;}
.h8{height:20.160000px;}
.h2{height:22.500000px;}
.h1f{height:34.380000px;}
.h24{height:34.416000px;}
.hf{height:35.991211px;}
.h6{height:36.703125px;}
.h5{height:40.500000px;}
.h11{height:41.400000px;}
.h13{height:41.436000px;}
.h2c{height:41.522695px;}
.h27{height:43.020000px;}
.h28{height:43.056000px;}
.h29{height:43.200000px;}
.h2a{height:43.236000px;}
.h7{height:44.149219px;}
.hc{height:45.000000px;}
.h16{height:47.988281px;}
.h19{height:48.761719px;}
.h9{height:48.796875px;}
.h10{height:49.992188px;}
.ha{height:50.027344px;}
.h14{height:50.273438px;}
.hd{height:52.066406px;}
.h1b{height:53.280000px;}
.h1a{height:53.316000px;}
.h18{height:53.460000px;}
.h1c{height:53.496000px;}
.h4{height:54.000000px;}
.h26{height:56.453906px;}
.hb{height:60.878320px;}
.h3{height:63.000000px;}
.h23{height:68.580000px;}
.h21{height:68.616000px;}
.h20{height:68.760000px;}
.h22{height:68.796000px;}
.h1{height:72.000000px;}
.h25{height:74.160000px;}
.h2b{height:74.196000px;}
.h1e{height:91.116000px;}
.h1d{height:101.340000px;}
.h12{height:124.200000px;}
.h15{height:331.230000px;}
.he{height:620.100000px;}
.h17{height:918.000000px;}
.h0{height:1188.000000px;}
.w2{width:8.460000px;}
.w4{width:16.740000px;}
.w20{width:82.800000px;}
.w21{width:96.840000px;}
.w26{width:106.776000px;}
.w25{width:106.920000px;}
.wc{width:107.100000px;}
.wa{width:107.136000px;}
.wb{width:107.280000px;}
.w24{width:107.316000px;}
.w13{width:107.460000px;}
.w12{width:107.496000px;}
.wd{width:107.640000px;}
.w14{width:107.676000px;}
.w11{width:107.820000px;}
.we{width:107.856000px;}
.wf{width:108.000000px;}
.w10{width:108.036000px;}
.w18{width:116.280000px;}
.w1c{width:123.516000px;}
.w1d{width:169.770000px;}
.w16{width:190.470000px;}
.w19{width:201.270000px;}
.w1a{width:211.890000px;}
.w15{width:232.770000px;}
.w1e{width:235.830000px;}
.w1f{width:258.150000px;}
.w6{width:349.950000px;}
.w7{width:349.995000px;}
.w23{width:376.995000px;}
.w17{width:413.895000px;}
.w27{width:538.995000px;}
.w5{width:702.000000px;}
.w3{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w1b{width:955.950000px;}
.w22{width:970.710000px;}
.w9{width:1187.999982px;}
.w8{width:1188.000000px;}
.x0{left:0.000000px;}
.x11{left:7.500000px;}
.x46{left:12.780000px;}
.x40{left:14.040000px;}
.x53{left:15.120000px;}
.x34{left:16.560000px;}
.x4e{left:17.640000px;}
.x35{left:19.440000px;}
.x49{left:21.060000px;}
.x48{left:23.940000px;}
.x23{left:25.128000px;}
.x39{left:27.900000px;}
.x3a{left:29.520000px;}
.x42{left:30.600000px;}
.x4a{left:32.580000px;}
.x27{left:34.740000px;}
.x3d{left:37.800000px;}
.x33{left:45.570000px;}
.x4b{left:48.420000px;}
.x57{left:49.860000px;}
.x26{left:52.410000px;}
.x56{left:53.640000px;}
.x12{left:55.619973px;}
.x3b{left:60.660000px;}
.x3{left:62.955000px;}
.x10{left:64.079973px;}
.x3c{left:66.060000px;}
.x7{left:69.150000px;}
.x3e{left:70.560000px;}
.xc{left:72.539973px;}
.x36{left:73.980000px;}
.x37{left:75.240000px;}
.x21{left:77.865000px;}
.xd{left:80.999986px;}
.x44{left:92.700000px;}
.x24{left:94.110000px;}
.xa{left:108.035986px;}
.x22{left:118.410000px;}
.x25{left:119.874000px;}
.xe{left:135.035986px;}
.x15{left:156.089986px;}
.xf{left:162.029986px;}
.x54{left:169.410000px;}
.x9{left:184.890000px;}
.x4c{left:188.490000px;}
.x1{left:206.340000px;}
.x28{left:216.570000px;}
.x3f{left:233.130000px;}
.x4{left:242.055000px;}
.x55{left:269.490000px;}
.x1f{left:278.175000px;}
.x1a{left:310.575000px;}
.x19{left:318.675000px;}
.x29{left:324.570000px;}
.x18{left:326.775000px;}
.x8{left:328.425000px;}
.x20{left:330.840000px;}
.x30{left:342.390000px;}
.x5{left:381.030000px;}
.x14{left:398.594986px;}
.x41{left:403.635000px;}
.x2a{left:432.615000px;}
.x6{left:456.510000px;}
.x2{left:457.965000px;}
.x16{left:459.074986px;}
.x1b{left:478.470000px;}
.x4d{left:486.435000px;}
.x1c{left:531.210000px;}
.x31{left:533.775000px;}
.x2b{left:540.435000px;}
.x1e{left:551.370000px;}
.x1d{left:583.890000px;}
.x4f{left:594.435000px;}
.x43{left:640.185000px;}
.x2c{left:648.465000px;}
.x50{left:702.465000px;}
.x38{left:735.765000px;}
.x2d{left:756.285000px;}
.x13{left:793.410000px;}
.xb{left:801.690000px;}
.x51{left:810.105000px;}
.x17{left:811.589986px;}
.x2e{left:864.285000px;}
.x45{left:899.070000px;}
.x52{left:917.610000px;}
.x32{left:948.390000px;}
.x2f{left:972.150000px;}
.x47{left:982.590000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.158656pt;}
.lsf{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.229632pt;}
.ls12{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls2{letter-spacing:30.186667pt;}
.ls11{letter-spacing:57.066667pt;}
.ws12{word-spacing:-64.000000pt;}
.wsc{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.552000pt;}
.ws11{word-spacing:-15.296000pt;}
.ws13{word-spacing:-15.168000pt;}
.wsb{word-spacing:-13.536512pt;}
.ws0{word-spacing:-13.344000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:684.506667pt;}
.ws2{word-spacing:719.258667pt;}
._c{margin-left:-1.962667pt;}
._0{margin-left:-0.896000pt;}
._9{width:0.938667pt;}
._b{width:1.834667pt;}
._f{width:58.858667pt;}
._e{width:90.858667pt;}
._d{width:175.978667pt;}
._5{width:187.034667pt;}
._8{width:313.658667pt;}
._4{width:438.986667pt;}
._1{width:489.770667pt;}
._7{width:553.706667pt;}
._3{width:655.130667pt;}
._6{width:660.458667pt;}
._2{width:727.178667pt;}
._a{width:752.458667pt;}
.fs1{font-size:26.666667pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:4.000000pt;}
.yf1{bottom:15.680000pt;}
.yfa{bottom:15.840000pt;}
.yf8{bottom:16.000000pt;}
.yff{bottom:16.040000pt;}
.ybe{bottom:21.920000pt;}
.yc0{bottom:22.240000pt;}
.yd3{bottom:22.266667pt;}
.yc5{bottom:22.280000pt;}
.y111{bottom:23.360000pt;}
.y135{bottom:23.400000pt;}
.y122{bottom:23.674667pt;}
.y115{bottom:23.680000pt;}
.y119{bottom:23.706667pt;}
.y113{bottom:23.720000pt;}
.y120{bottom:23.840000pt;}
.y138{bottom:24.320000pt;}
.y14e{bottom:24.346667pt;}
.y143{bottom:24.360000pt;}
.y140{bottom:24.480000pt;}
.y13c{bottom:26.240000pt;}
.y158{bottom:26.400000pt;}
.y36{bottom:26.666667pt;}
.ydf{bottom:32.480000pt;}
.ydc{bottom:32.520000pt;}
.yd8{bottom:32.640000pt;}
.ye0{bottom:32.800000pt;}
.ydd{bottom:32.840000pt;}
.yda{bottom:32.960000pt;}
.yf0{bottom:35.520000pt;}
.y157{bottom:38.234667pt;}
.y139{bottom:38.240000pt;}
.y14f{bottom:38.266667pt;}
.y144{bottom:38.280000pt;}
.y141{bottom:38.400000pt;}
.y149{bottom:38.440000pt;}
.yee{bottom:44.640000pt;}
.yf4{bottom:46.280000pt;}
.y102{bottom:46.394667pt;}
.y106{bottom:46.400000pt;}
.yf9{bottom:46.426667pt;}
.yf7{bottom:46.560000pt;}
.yfe{bottom:46.600000pt;}
.y110{bottom:51.040000pt;}
.y134{bottom:51.080000pt;}
.y146{bottom:51.354667pt;}
.y15f{bottom:51.360000pt;}
.y15a{bottom:51.400000pt;}
.y147{bottom:51.994667pt;}
.y160{bottom:52.000000pt;}
.y15b{bottom:52.040000pt;}
.yef{bottom:55.360000pt;}
.yc3{bottom:59.040000pt;}
.y35{bottom:60.000000pt;}
.y148{bottom:65.914667pt;}
.y161{bottom:65.920000pt;}
.y15c{bottom:65.960000pt;}
.yf3{bottom:66.120000pt;}
.y34{bottom:74.666667pt;}
.yed{bottom:75.200000pt;}
.y33{bottom:89.333333pt;}
.yba{bottom:91.933333pt;}
.yc2{bottom:95.840000pt;}
.y156{bottom:96.992000pt;}
.y32{bottom:104.000000pt;}
.yb9{bottom:105.533333pt;}
.yd1{bottom:106.272000pt;}
.y101{bottom:108.672000pt;}
.y121{bottom:110.432000pt;}
.y51{bottom:117.792000pt;}
.y31{bottom:118.666667pt;}
.y6b{bottom:122.752000pt;}
.y145{bottom:123.872000pt;}
.ya5{bottom:124.832000pt;}
.y96{bottom:125.152000pt;}
.ycd{bottom:132.640000pt;}
.y30{bottom:133.333333pt;}
.y81{bottom:135.706667pt;}
.y155{bottom:135.866667pt;}
.yd0{bottom:143.706667pt;}
.y15d{bottom:147.226667pt;}
.y2f{bottom:148.000000pt;}
.y11f{bottom:149.306667pt;}
.yb8{bottom:152.826667pt;}
.yea{bottom:155.226667pt;}
.y6a{bottom:159.546667pt;}
.ya4{bottom:161.626667pt;}
.y95{bottom:161.946667pt;}
.y2e{bottom:162.666667pt;}
.y50{bottom:165.306667pt;}
.yb7{bottom:166.426667pt;}
.ycc{bottom:169.466667pt;}
.y100{bottom:170.266667pt;}
.y83{bottom:172.186667pt;}
.y80{bottom:172.506667pt;}
.y154{bottom:174.906667pt;}
.ye9{bottom:175.066667pt;}
.y2d{bottom:177.333333pt;}
.y159{bottom:186.106667pt;}
.y11e{bottom:188.346667pt;}
.y142{bottom:190.426667pt;}
.y2c{bottom:192.000000pt;}
.ye8{bottom:194.906667pt;}
.y69{bottom:196.346667pt;}
.ya3{bottom:198.426667pt;}
.y94{bottom:198.746667pt;}
.yfd{bottom:201.466667pt;}
.y4f{bottom:202.426667pt;}
.ycb{bottom:206.266667pt;}
.y2b{bottom:206.666667pt;}
.y82{bottom:208.986667pt;}
.y7f{bottom:209.306667pt;}
.y153{bottom:213.826667pt;}
.ye7{bottom:214.786667pt;}
.y2a{bottom:221.333333pt;}
.y11d{bottom:227.266667pt;}
.y13f{bottom:229.346667pt;}
.y68{bottom:233.146667pt;}
.ye6{bottom:234.786667pt;}
.ya2{bottom:235.226667pt;}
.y93{bottom:235.546667pt;}
.y29{bottom:236.000000pt;}
.y4e{bottom:239.226667pt;}
.yca{bottom:243.066667pt;}
.y7e{bottom:246.106667pt;}
.ye5{bottom:249.986667pt;}
.y28{bottom:250.666667pt;}
.y152{bottom:252.706667pt;}
.ycf{bottom:254.746667pt;}
.yfc{bottom:263.266667pt;}
.y27{bottom:265.333333pt;}
.yb6{bottom:266.053333pt;}
.y11c{bottom:266.146667pt;}
.y13e{bottom:268.386667pt;}
.y67{bottom:269.946667pt;}
.ya1{bottom:272.026667pt;}
.y92{bottom:272.346667pt;}
.ya8{bottom:272.453333pt;}
.y4d{bottom:276.066667pt;}
.y16b{bottom:277.346667pt;}
.yb5{bottom:279.653333pt;}
.yc9{bottom:279.866667pt;}
.y26{bottom:280.000000pt;}
.y9a{bottom:282.626667pt;}
.y7d{bottom:282.946667pt;}
.ya9{bottom:287.840000pt;}
.y151{bottom:291.586667pt;}
.yce{bottom:292.226667pt;}
.y25{bottom:294.666667pt;}
.ye4{bottom:298.146667pt;}
.yaa{bottom:303.226667pt;}
.y11b{bottom:305.186667pt;}
.y66{bottom:306.786667pt;}
.y13d{bottom:307.266667pt;}
.ya0{bottom:308.866667pt;}
.y91{bottom:309.186667pt;}
.y24{bottom:309.333333pt;}
.yab{bottom:318.626667pt;}
.y85{bottom:319.426667pt;}
.y7c{bottom:319.746667pt;}
.y4c{bottom:323.586667pt;}
.y23{bottom:324.000000pt;}
.yfb{bottom:325.026667pt;}
.y16a{bottom:326.626667pt;}
.yc8{bottom:329.666667pt;}
.y150{bottom:330.626667pt;}
.y130{bottom:331.426667pt;}
.yac{bottom:334.013333pt;}
.y22{bottom:338.666667pt;}
.y169{bottom:341.986667pt;}
.y65{bottom:343.586667pt;}
.y11a{bottom:344.066667pt;}
.y9f{bottom:345.666667pt;}
.y90{bottom:345.986667pt;}
.ye3{bottom:346.146667pt;}
.y10e{bottom:347.266667pt;}
.yad{bottom:349.413333pt;}
.y21{bottom:353.333333pt;}
.y99{bottom:356.226667pt;}
.y7b{bottom:356.546667pt;}
.ya6{bottom:360.386667pt;}
.ya7{bottom:361.280000pt;}
.y12f{bottom:361.986667pt;}
.yae{bottom:364.800000pt;}
.y10d{bottom:367.106667pt;}
.y20{bottom:368.000000pt;}
.y14d{bottom:369.506667pt;}
.y4b{bottom:370.946667pt;}
.ybc{bottom:379.266667pt;}
.yaf{bottom:380.226667pt;}
.y64{bottom:380.386667pt;}
.y168{bottom:380.866667pt;}
.y12e{bottom:381.826667pt;}
.y9e{bottom:382.466667pt;}
.y1f{bottom:382.666667pt;}
.y8f{bottom:382.786667pt;}
.y118{bottom:382.946667pt;}
.y13b{bottom:385.213333pt;}
.yb4{bottom:386.053333pt;}
.y10c{bottom:386.973333pt;}
.ybb{bottom:392.866667pt;}
.y98{bottom:393.026667pt;}
.y7a{bottom:393.346667pt;}
.ye2{bottom:394.333333pt;}
.yb0{bottom:395.613333pt;}
.y12d{bottom:401.693333pt;}
.y1e{bottom:406.666667pt;}
.y10b{bottom:406.813333pt;}
.y14c{bottom:408.413333pt;}
.yb1{bottom:411.013333pt;}
.y63{bottom:417.186667pt;}
.yf6{bottom:417.853333pt;}
.y4a{bottom:418.466667pt;}
.y9d{bottom:419.266667pt;}
.y8e{bottom:419.586667pt;}
.y167{bottom:419.773333pt;}
.y12c{bottom:421.693333pt;}
.y117{bottom:422.013333pt;}
.y13a{bottom:424.093333pt;}
.yb2{bottom:426.400000pt;}
.y10a{bottom:426.653333pt;}
.y97{bottom:429.826667pt;}
.y79{bottom:430.146667pt;}
.y1d{bottom:430.666667pt;}
.yb3{bottom:440.160000pt;}
.y12b{bottom:441.533333pt;}
.ye1{bottom:442.493333pt;}
.y14b{bottom:447.453333pt;}
.y62{bottom:453.986667pt;}
.y1c{bottom:454.666667pt;}
.y49{bottom:455.266667pt;}
.y9c{bottom:456.066667pt;}
.y8d{bottom:456.386667pt;}
.y109{bottom:457.213333pt;}
.y166{bottom:458.813333pt;}
.y116{bottom:460.893333pt;}
.y12a{bottom:461.373333pt;}
.y137{bottom:462.973333pt;}
.y78{bottom:466.946667pt;}
.y108{bottom:472.413333pt;}
.y1b{bottom:478.666667pt;}
.yf5{bottom:479.613333pt;}
.y129{bottom:481.213333pt;}
.y14a{bottom:486.333333pt;}
.yde{bottom:490.653333pt;}
.y61{bottom:490.786667pt;}
.y9b{bottom:492.866667pt;}
.y8c{bottom:493.186667pt;}
.y165{bottom:497.693333pt;}
.y114{bottom:499.773333pt;}
.y136{bottom:502.013333pt;}
.y1a{bottom:502.666667pt;}
.y48{bottom:502.813333pt;}
.y84{bottom:503.453333pt;}
.y77{bottom:503.773333pt;}
.yf2{bottom:510.813333pt;}
.y128{bottom:510.973333pt;}
.y127{bottom:525.213333pt;}
.y19{bottom:526.666667pt;}
.y60{bottom:527.613333pt;}
.y8b{bottom:530.013333pt;}
.y107{bottom:534.173333pt;}
.y164{bottom:536.573333pt;}
.ydb{bottom:538.813333pt;}
.y76{bottom:540.573333pt;}
.y133{bottom:540.893333pt;}
.y47{bottom:549.853333pt;}
.y18{bottom:550.666667pt;}
.y5f{bottom:564.253333pt;}
.y126{bottom:564.293333pt;}
.y105{bottom:565.413333pt;}
.y8a{bottom:566.813333pt;}
.y17{bottom:574.666667pt;}
.y163{bottom:575.653333pt;}
.y87{bottom:577.053333pt;}
.y75{bottom:577.373333pt;}
.y112{bottom:577.733333pt;}
.yd9{bottom:586.853333pt;}
.yec{bottom:592.453333pt;}
.y46{bottom:597.693333pt;}
.y16{bottom:598.666667pt;}
.y5e{bottom:602.493333pt;}
.y125{bottom:603.173333pt;}
.y89{bottom:603.613333pt;}
.y132{bottom:607.493333pt;}
.y74{bottom:614.173333pt;}
.y162{bottom:614.533333pt;}
.y10f{bottom:616.613333pt;}
.y15{bottom:622.666667pt;}
.yc7{bottom:624.733333pt;}
.y104{bottom:627.013333pt;}
.yd7{bottom:635.013333pt;}
.y14{bottom:637.333333pt;}
.y5d{bottom:640.253333pt;}
.y124{bottom:642.053333pt;}
.y45{bottom:645.053333pt;}
.y73{bottom:650.973333pt;}
.y15e{bottom:653.413333pt;}
.y103{bottom:658.213333pt;}
.y13{bottom:661.333333pt;}
.yc6{bottom:662.173333pt;}
.y131{bottom:668.613333pt;}
.y12{bottom:676.000000pt;}
.y5c{bottom:677.053333pt;}
.y123{bottom:681.093333pt;}
.y44{bottom:681.853333pt;}
.y72{bottom:687.773333pt;}
.yc4{bottom:699.613333pt;}
.y11{bottom:700.000000pt;}
.yd6{bottom:705.413333pt;}
.y5b{bottom:713.853333pt;}
.y10{bottom:714.666667pt;}
.y43{bottom:718.653333pt;}
.y71{bottom:724.613333pt;}
.yc1{bottom:737.253333pt;}
.yf{bottom:738.666667pt;}
.y88{bottom:750.373333pt;}
.y5a{bottom:750.693333pt;}
.ye{bottom:753.333333pt;}
.y70{bottom:761.413333pt;}
.y42{bottom:766.213333pt;}
.yd{bottom:768.000000pt;}
.yc{bottom:782.666667pt;}
.y59{bottom:787.493333pt;}
.y6f{bottom:798.213333pt;}
.yeb{bottom:800.000000pt;}
.y57{bottom:803.013333pt;}
.yb{bottom:806.666667pt;}
.y41{bottom:813.413333pt;}
.y58{bottom:824.293333pt;}
.ya{bottom:830.666667pt;}
.y6e{bottom:835.013333pt;}
.ybf{bottom:848.293333pt;}
.y56{bottom:850.533333pt;}
.y9{bottom:854.666667pt;}
.y40{bottom:861.093333pt;}
.y8{bottom:869.333333pt;}
.yd5{bottom:869.573333pt;}
.y86{bottom:871.493333pt;}
.y6d{bottom:871.813333pt;}
.yd4{bottom:885.093333pt;}
.ybd{bottom:885.733333pt;}
.y7{bottom:893.333333pt;}
.y55{bottom:897.893333pt;}
.y3f{bottom:908.293333pt;}
.y6c{bottom:908.613333pt;}
.y6{bottom:910.666667pt;}
.yd2{bottom:922.533333pt;}
.y5{bottom:926.666667pt;}
.y3a{bottom:932.000000pt;}
.y4{bottom:942.666667pt;}
.y3e{bottom:945.120000pt;}
.y54{bottom:945.440000pt;}
.y39{bottom:946.666667pt;}
.y3{bottom:961.333333pt;}
.y38{bottom:976.000000pt;}
.y2{bottom:980.000000pt;}
.y1{bottom:986.666667pt;}
.y37{bottom:990.666667pt;}
.y3c{bottom:990.880000pt;}
.y3b{bottom:994.880000pt;}
.y53{bottom:1026.666667pt;}
.y52{bottom:1040.000000pt;}
.h8{height:17.920000pt;}
.h2{height:20.000000pt;}
.h1f{height:30.560000pt;}
.h24{height:30.592000pt;}
.hf{height:31.992188pt;}
.h6{height:32.625000pt;}
.h5{height:36.000000pt;}
.h11{height:36.800000pt;}
.h13{height:36.832000pt;}
.h2c{height:36.909063pt;}
.h27{height:38.240000pt;}
.h28{height:38.272000pt;}
.h29{height:38.400000pt;}
.h2a{height:38.432000pt;}
.h7{height:39.243750pt;}
.hc{height:40.000000pt;}
.h16{height:42.656250pt;}
.h19{height:43.343750pt;}
.h9{height:43.375000pt;}
.h10{height:44.437500pt;}
.ha{height:44.468750pt;}
.h14{height:44.687500pt;}
.hd{height:46.281250pt;}
.h1b{height:47.360000pt;}
.h1a{height:47.392000pt;}
.h18{height:47.520000pt;}
.h1c{height:47.552000pt;}
.h4{height:48.000000pt;}
.h26{height:50.181250pt;}
.hb{height:54.114063pt;}
.h3{height:56.000000pt;}
.h23{height:60.960000pt;}
.h21{height:60.992000pt;}
.h20{height:61.120000pt;}
.h22{height:61.152000pt;}
.h1{height:64.000000pt;}
.h25{height:65.920000pt;}
.h2b{height:65.952000pt;}
.h1e{height:80.992000pt;}
.h1d{height:90.080000pt;}
.h12{height:110.400000pt;}
.h15{height:294.426667pt;}
.he{height:551.200000pt;}
.h17{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:7.520000pt;}
.w4{width:14.880000pt;}
.w20{width:73.600000pt;}
.w21{width:86.080000pt;}
.w26{width:94.912000pt;}
.w25{width:95.040000pt;}
.wc{width:95.200000pt;}
.wa{width:95.232000pt;}
.wb{width:95.360000pt;}
.w24{width:95.392000pt;}
.w13{width:95.520000pt;}
.w12{width:95.552000pt;}
.wd{width:95.680000pt;}
.w14{width:95.712000pt;}
.w11{width:95.840000pt;}
.we{width:95.872000pt;}
.wf{width:96.000000pt;}
.w10{width:96.032000pt;}
.w18{width:103.360000pt;}
.w1c{width:109.792000pt;}
.w1d{width:150.906667pt;}
.w16{width:169.306667pt;}
.w19{width:178.906667pt;}
.w1a{width:188.346667pt;}
.w15{width:206.906667pt;}
.w1e{width:209.626667pt;}
.w1f{width:229.466667pt;}
.w6{width:311.066667pt;}
.w7{width:311.106667pt;}
.w23{width:335.106667pt;}
.w17{width:367.906667pt;}
.w27{width:479.106667pt;}
.w5{width:624.000000pt;}
.w3{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w1b{width:849.733333pt;}
.w22{width:862.853333pt;}
.w9{width:1055.999984pt;}
.w8{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.666667pt;}
.x46{left:11.360000pt;}
.x40{left:12.480000pt;}
.x53{left:13.440000pt;}
.x34{left:14.720000pt;}
.x4e{left:15.680000pt;}
.x35{left:17.280000pt;}
.x49{left:18.720000pt;}
.x48{left:21.280000pt;}
.x23{left:22.336000pt;}
.x39{left:24.800000pt;}
.x3a{left:26.240000pt;}
.x42{left:27.200000pt;}
.x4a{left:28.960000pt;}
.x27{left:30.880000pt;}
.x3d{left:33.600000pt;}
.x33{left:40.506667pt;}
.x4b{left:43.040000pt;}
.x57{left:44.320000pt;}
.x26{left:46.586667pt;}
.x56{left:47.680000pt;}
.x12{left:49.439976pt;}
.x3b{left:53.920000pt;}
.x3{left:55.960000pt;}
.x10{left:56.959976pt;}
.x3c{left:58.720000pt;}
.x7{left:61.466667pt;}
.x3e{left:62.720000pt;}
.xc{left:64.479976pt;}
.x36{left:65.760000pt;}
.x37{left:66.880000pt;}
.x21{left:69.213333pt;}
.xd{left:71.999988pt;}
.x44{left:82.400000pt;}
.x24{left:83.653333pt;}
.xa{left:96.031988pt;}
.x22{left:105.253333pt;}
.x25{left:106.554667pt;}
.xe{left:120.031988pt;}
.x15{left:138.746655pt;}
.xf{left:144.026655pt;}
.x54{left:150.586667pt;}
.x9{left:164.346667pt;}
.x4c{left:167.546667pt;}
.x1{left:183.413333pt;}
.x28{left:192.506667pt;}
.x3f{left:207.226667pt;}
.x4{left:215.160000pt;}
.x55{left:239.546667pt;}
.x1f{left:247.266667pt;}
.x1a{left:276.066667pt;}
.x19{left:283.266667pt;}
.x29{left:288.506667pt;}
.x18{left:290.466667pt;}
.x8{left:291.933333pt;}
.x20{left:294.080000pt;}
.x30{left:304.346667pt;}
.x5{left:338.693333pt;}
.x14{left:354.306655pt;}
.x41{left:358.786667pt;}
.x2a{left:384.546667pt;}
.x6{left:405.786667pt;}
.x2{left:407.080000pt;}
.x16{left:408.066655pt;}
.x1b{left:425.306667pt;}
.x4d{left:432.386667pt;}
.x1c{left:472.186667pt;}
.x31{left:474.466667pt;}
.x2b{left:480.386667pt;}
.x1e{left:490.106667pt;}
.x1d{left:519.013333pt;}
.x4f{left:528.386667pt;}
.x43{left:569.053333pt;}
.x2c{left:576.413333pt;}
.x50{left:624.413333pt;}
.x38{left:654.013333pt;}
.x2d{left:672.253333pt;}
.x13{left:705.253333pt;}
.xb{left:712.613333pt;}
.x51{left:720.093333pt;}
.x17{left:721.413321pt;}
.x2e{left:768.253333pt;}
.x45{left:799.173333pt;}
.x52{left:815.653333pt;}
.x32{left:843.013333pt;}
.x2f{left:864.133333pt;}
.x47{left:873.413333pt;}
}




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