
    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_6968080d57d32e30eb2d55b7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c2ab519a36e9b5be59dc65a5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3da5711c776741ee0c9e93e4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895508;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_adda60ae3627bb807f1a1def.woff')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_4824b8f32034d4466c683616.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3848d836d4397a5c82cc5971.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6968080d57d32e30eb2d55b7.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_c2ab519a36e9b5be59dc65a5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f4c2b9262576e9a3edab9179.woff')format("woff");}.ffa{font-family:ffa;line-height:0.898438;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_4ffad4e9be1b019b6c57f31b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.091309;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_d10400203ab5162f76d4257c.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c2ab519a36e9b5be59dc65a5.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7cb1f3c6e74af42f6b10b558.woff')format("woff");}.ffe{font-family:ffe;line-height:0.711000;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_5b1ad27b71e5628283873deb.woff')format("woff");}.fff{font-family:fff;line-height:0.900391;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_dcc7f9bcd6d05c92e49fdf57.woff')format("woff");}.ff10{font-family:ff10;line-height:0.961426;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);}
.v2{vertical-align:-15.984000px;}
.v3{vertical-align:-7.218000px;}
.v5{vertical-align:-3.996000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.579400px;}
.v1{vertical-align:27.972000px;}
.ls3{letter-spacing:-2.520000px;}
.ls9{letter-spacing:-1.236000px;}
.ls4{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-1.035408px;}
.ls10{letter-spacing:-0.972794px;}
.ls2{letter-spacing:-0.420000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000600px;}
.ls19{letter-spacing:0.007800px;}
.ls1c{letter-spacing:0.045000px;}
.ls0{letter-spacing:0.165000px;}
.ls8{letter-spacing:0.198000px;}
.ls7{letter-spacing:0.252000px;}
.lse{letter-spacing:0.360294px;}
.lsb{letter-spacing:0.360300px;}
.lsa{letter-spacing:0.618000px;}
.ls1f{letter-spacing:0.696000px;}
.ls2b{letter-spacing:0.726600px;}
.ls13{letter-spacing:1.062600px;}
.ls16{letter-spacing:1.398600px;}
.ls15{letter-spacing:1.428600px;}
.ls20{letter-spacing:1.588200px;}
.ls21{letter-spacing:1.736592px;}
.ls1{letter-spacing:1.755000px;}
.ls18{letter-spacing:1.795200px;}
.lsd{letter-spacing:1.980000px;}
.ls22{letter-spacing:2.364000px;}
.ls25{letter-spacing:2.621400px;}
.ls5{letter-spacing:2.772000px;}
.ls17{letter-spacing:3.711000px;}
.lsc{letter-spacing:3.798600px;}
.ls12{letter-spacing:5.247000px;}
.ls26{letter-spacing:5.795400px;}
.ls1e{letter-spacing:6.222000px;}
.ls28{letter-spacing:6.556200px;}
.ls14{letter-spacing:6.796800px;}
.ls2a{letter-spacing:7.138800px;}
.ls1d{letter-spacing:7.531200px;}
.ls29{letter-spacing:7.631400px;}
.ls23{letter-spacing:8.478600px;}
.ls24{letter-spacing:8.985000px;}
.ls27{letter-spacing:11.348400px;}
.ls1a{letter-spacing:13.034850px;}
.ls1b{letter-spacing:13.884600px;}
.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;}
}
.ws0{word-spacing:-16.665000px;}
.ws14{word-spacing:-16.068000px;}
.ws26{word-spacing:-15.450000px;}
.ws1e{word-spacing:-12.000000px;}
.ws4a{word-spacing:-10.176000px;}
.ws21{word-spacing:-9.367644px;}
.ws27{word-spacing:-9.007350px;}
.ws25{word-spacing:-8.034556px;}
.ws7e{word-spacing:-7.910400px;}
.ws37{word-spacing:-6.996000px;}
.ws68{word-spacing:-6.550800px;}
.ws71{word-spacing:-5.623800px;}
.ws55{word-spacing:-5.005800px;}
.ws3{word-spacing:-4.620000px;}
.ws79{word-spacing:-3.151800px;}
.ws89{word-spacing:-3.028200px;}
.ws90{word-spacing:-2.904600px;}
.ws38{word-spacing:-2.533800px;}
.ws7{word-spacing:-2.520000px;}
.ws4f{word-spacing:-2.410200px;}
.ws22{word-spacing:-2.286600px;}
.ws77{word-spacing:-2.224800px;}
.ws33{word-spacing:-1.977600px;}
.ws74{word-spacing:-1.915800px;}
.wsd{word-spacing:-1.730400px;}
.ws56{word-spacing:-1.536000px;}
.ws96{word-spacing:-1.483200px;}
.ws1a{word-spacing:-1.421400px;}
.ws24{word-spacing:-1.371216px;}
.ws47{word-spacing:-1.152000px;}
.ws15{word-spacing:-1.140000px;}
.ws6b{word-spacing:-1.112400px;}
.ws32{word-spacing:-0.865200px;}
.ws50{word-spacing:-0.864000px;}
.ws72{word-spacing:-0.803400px;}
.ws12{word-spacing:-0.768000px;}
.ws5b{word-spacing:-0.741600px;}
.ws36{word-spacing:-0.727584px;}
.ws20{word-spacing:-0.672000px;}
.ws17{word-spacing:-0.618000px;}
.ws44{word-spacing:-0.556200px;}
.ws1f{word-spacing:-0.462000px;}
.ws65{word-spacing:-0.309000px;}
.ws48{word-spacing:-0.144000px;}
.ws23{word-spacing:-0.123600px;}
.ws49{word-spacing:-0.096000px;}
.ws1{word-spacing:-0.061800px;}
.ws2{word-spacing:0.000000px;}
.ws18{word-spacing:0.123600px;}
.ws54{word-spacing:0.185400px;}
.ws8{word-spacing:0.240000px;}
.ws52{word-spacing:0.247200px;}
.wsa{word-spacing:0.370800px;}
.ws99{word-spacing:0.432600px;}
.ws53{word-spacing:0.494400px;}
.ws98{word-spacing:0.741600px;}
.ws8b{word-spacing:0.988800px;}
.ws88{word-spacing:1.050600px;}
.ws11{word-spacing:1.236000px;}
.ws61{word-spacing:1.359600px;}
.ws4e{word-spacing:1.421400px;}
.wsb{word-spacing:1.545000px;}
.ws41{word-spacing:1.606800px;}
.ws2f{word-spacing:1.730400px;}
.ws73{word-spacing:1.792200px;}
.ws3c{word-spacing:1.854000px;}
.ws3e{word-spacing:1.915800px;}
.ws28{word-spacing:1.977600px;}
.ws83{word-spacing:2.101200px;}
.ws34{word-spacing:2.112000px;}
.ws66{word-spacing:2.224800px;}
.ws60{word-spacing:2.348400px;}
.ws3b{word-spacing:2.410200px;}
.ws76{word-spacing:2.595600px;}
.ws6{word-spacing:2.640000px;}
.ws57{word-spacing:2.657400px;}
.wse{word-spacing:2.781000px;}
.ws45{word-spacing:3.028200px;}
.ws51{word-spacing:3.072000px;}
.ws3a{word-spacing:3.090000px;}
.ws30{word-spacing:3.151800px;}
.ws2b{word-spacing:3.275400px;}
.ws3f{word-spacing:3.522600px;}
.ws35{word-spacing:3.648000px;}
.ws4b{word-spacing:4.140600px;}
.ws84{word-spacing:4.202400px;}
.ws7d{word-spacing:4.264200px;}
.ws97{word-spacing:4.635000px;}
.ws46{word-spacing:4.758600px;}
.ws31{word-spacing:4.820400px;}
.ws6e{word-spacing:4.944000px;}
.ws40{word-spacing:5.005800px;}
.ws95{word-spacing:5.129400px;}
.ws3d{word-spacing:5.500200px;}
.ws58{word-spacing:5.685600px;}
.ws7a{word-spacing:5.809200px;}
.ws9{word-spacing:5.871000px;}
.ws80{word-spacing:6.118200px;}
.ws6a{word-spacing:6.180000px;}
.ws94{word-spacing:6.365400px;}
.ws70{word-spacing:6.427200px;}
.ws82{word-spacing:6.550800px;}
.ws2e{word-spacing:6.736200px;}
.ws5f{word-spacing:6.859800px;}
.ws1d{word-spacing:6.996000px;}
.ws43{word-spacing:7.045200px;}
.ws2a{word-spacing:7.107000px;}
.ws29{word-spacing:7.230600px;}
.ws63{word-spacing:7.292400px;}
.ws91{word-spacing:7.663200px;}
.ws19{word-spacing:7.786800px;}
.ws2d{word-spacing:8.031408px;}
.ws39{word-spacing:8.034000px;}
.ws42{word-spacing:8.157600px;}
.ws67{word-spacing:8.404800px;}
.ws62{word-spacing:8.466600px;}
.ws8d{word-spacing:8.528400px;}
.ws5{word-spacing:8.760000px;}
.ws59{word-spacing:8.775600px;}
.ws5e{word-spacing:8.899200px;}
.ws69{word-spacing:8.961000px;}
.ws6d{word-spacing:9.640800px;}
.ws4{word-spacing:9.660000px;}
.wsf{word-spacing:9.949800px;}
.ws4c{word-spacing:10.073400px;}
.ws85{word-spacing:10.815000px;}
.ws1c{word-spacing:11.185800px;}
.ws86{word-spacing:11.247600px;}
.ws6c{word-spacing:11.371200px;}
.ws8a{word-spacing:11.989200px;}
.ws4d{word-spacing:12.174600px;}
.ws78{word-spacing:12.483600px;}
.ws2c{word-spacing:12.916200px;}
.ws5a{word-spacing:13.966800px;}
.ws64{word-spacing:14.152200px;}
.ws1b{word-spacing:14.584800px;}
.ws7f{word-spacing:14.708400px;}
.ws7b{word-spacing:14.770200px;}
.ws5d{word-spacing:16.068000px;}
.ws8e{word-spacing:16.129800px;}
.ws8c{word-spacing:16.315200px;}
.ws93{word-spacing:16.686000px;}
.ws16{word-spacing:16.809600px;}
.ws75{word-spacing:17.304000px;}
.ws7c{word-spacing:18.292800px;}
.ws8f{word-spacing:19.776000px;}
.ws5c{word-spacing:21.382800px;}
.ws6f{word-spacing:21.444600px;}
.ws81{word-spacing:23.484000px;}
.ws92{word-spacing:24.967200px;}
.wsc{word-spacing:28.737000px;}
.ws10{word-spacing:34.917000px;}
.ws87{word-spacing:53.457000px;}
.ws13{word-spacing:539.422800px;}
._f{margin-left:-16.305360px;}
._1e{margin-left:-10.085640px;}
._1c{margin-left:-8.329320px;}
._13{margin-left:-7.016760px;}
._b{margin-left:-5.362860px;}
._4{margin-left:-3.832980px;}
._d{margin-left:-2.716800px;}
._0{margin-left:-1.549800px;}
._1{width:1.058400px;}
._5{width:2.867520px;}
._2{width:4.284000px;}
._3{width:6.270000px;}
._a{width:7.595220px;}
._6{width:9.263820px;}
._e{width:10.561620px;}
._c{width:11.822340px;}
._7{width:13.385880px;}
._1a{width:14.393220px;}
._10{width:16.636560px;}
._1b{width:17.711880px;}
._8{width:18.904620px;}
._12{width:20.183880px;}
._9{width:22.130580px;}
._19{width:23.267700px;}
._11{width:24.565500px;}
._14{width:26.506020px;}
._17{width:28.290660px;}
._15{width:30.122700px;}
._16{width:31.595580px;}
._1d{width:35.179200px;}
._1f{width:53.432280px;}
._18{width:70.920000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:20.988000px;}
.fs8{font-size:27.984000px;}
.fsb{font-size:34.980000px;}
.fsa{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y23{bottom:76.500000px;}
.y4d{bottom:76.500150px;}
.y7b{bottom:80.495850px;}
.yec{bottom:80.496000px;}
.y4c{bottom:80.496150px;}
.y7a{bottom:89.999850px;}
.yc5{bottom:90.000000px;}
.yc8{bottom:90.000150px;}
.y4b{bottom:90.000300px;}
.y14c{bottom:92.621100px;}
.y14e{bottom:92.636100px;}
.y22{bottom:93.996000px;}
.ya3{bottom:93.996150px;}
.yf9{bottom:93.996300px;}
.y123{bottom:101.713800px;}
.y79{bottom:103.499850px;}
.yc4{bottom:103.500000px;}
.yc7{bottom:103.500150px;}
.y4a{bottom:103.500300px;}
.yeb{bottom:107.496000px;}
.yc6{bottom:107.496150px;}
.yf8{bottom:107.496450px;}
.y14b{bottom:111.161100px;}
.y14d{bottom:111.176100px;}
.y176{bottom:111.551250px;}
.y78{bottom:116.999850px;}
.yc3{bottom:117.000000px;}
.y49{bottom:117.000300px;}
.yf7{bottom:117.000600px;}
.ydd{bottom:117.268500px;}
.y122{bottom:120.253950px;}
.yc2{bottom:120.996000px;}
.y48{bottom:120.996300px;}
.y21{bottom:121.312200px;}
.y14a{bottom:129.701100px;}
.ya2{bottom:129.716100px;}
.y175{bottom:130.091250px;}
.y77{bottom:130.499850px;}
.yc1{bottom:130.500000px;}
.yc0{bottom:134.496000px;}
.y47{bottom:134.496450px;}
.yf6{bottom:134.496600px;}
.ydc{bottom:135.808500px;}
.y121{bottom:138.793800px;}
.y20{bottom:139.852200px;}
.ye3{bottom:144.000000px;}
.y46{bottom:144.000600px;}
.yf5{bottom:144.000750px;}
.y76{bottom:147.995850px;}
.yfb{bottom:147.996000px;}
.y149{bottom:148.241100px;}
.ya1{bottom:148.256100px;}
.y174{bottom:148.631250px;}
.ydb{bottom:154.348500px;}
.y120{bottom:157.333950px;}
.y75{bottom:157.499850px;}
.ye2{bottom:157.500000px;}
.y45{bottom:157.500600px;}
.yf4{bottom:157.500750px;}
.yfa{bottom:161.496000px;}
.ybf{bottom:165.536100px;}
.y148{bottom:166.781100px;}
.ya0{bottom:166.796100px;}
.y173{bottom:167.171250px;}
.y74{bottom:170.999850px;}
.yef{bottom:171.000000px;}
.y44{bottom:171.000600px;}
.yf3{bottom:171.000750px;}
.yda{bottom:172.888500px;}
.ye1{bottom:174.996000px;}
.y11f{bottom:175.873800px;}
.y1f{bottom:176.932200px;}
.ybe{bottom:184.076100px;}
.y73{bottom:184.499850px;}
.ye0{bottom:184.500000px;}
.y43{bottom:184.500600px;}
.y147{bottom:185.321100px;}
.y9f{bottom:185.336100px;}
.y172{bottom:185.711250px;}
.yea{bottom:188.496000px;}
.y42{bottom:188.496600px;}
.yf2{bottom:188.496750px;}
.yd9{bottom:191.428500px;}
.y11e{bottom:194.413950px;}
.y1e{bottom:195.472200px;}
.y72{bottom:197.999850px;}
.ydf{bottom:198.000000px;}
.yf1{bottom:198.000900px;}
.yde{bottom:201.996000px;}
.ybd{bottom:202.616100px;}
.y146{bottom:203.861100px;}
.y9e{bottom:203.876100px;}
.y171{bottom:204.251250px;}
.y71{bottom:211.499850px;}
.ye9{bottom:211.500000px;}
.yf0{bottom:211.500900px;}
.y11d{bottom:212.953800px;}
.y1d{bottom:214.012200px;}
.yee{bottom:215.496000px;}
.ybc{bottom:221.156100px;}
.y145{bottom:222.401100px;}
.y9d{bottom:222.416100px;}
.y170{bottom:222.791250px;}
.y70{bottom:224.999850px;}
.ye8{bottom:225.000000px;}
.yd8{bottom:228.508500px;}
.yfc{bottom:228.996000px;}
.y11c{bottom:231.493950px;}
.y1c{bottom:232.552200px;}
.ye7{bottom:238.500000px;}
.ybb{bottom:239.696100px;}
.y144{bottom:240.941100px;}
.y9c{bottom:240.956100px;}
.y16f{bottom:241.331250px;}
.y6f{bottom:242.495850px;}
.ye6{bottom:242.496000px;}
.y11b{bottom:250.033800px;}
.y1b{bottom:251.092200px;}
.y6e{bottom:251.999850px;}
.ye5{bottom:252.000000px;}
.yed{bottom:255.996000px;}
.yba{bottom:258.236100px;}
.y143{bottom:259.481100px;}
.y9b{bottom:259.496100px;}
.y16e{bottom:259.871250px;}
.yd7{bottom:265.588500px;}
.y11a{bottom:268.573950px;}
.y6d{bottom:269.495850px;}
.ye4{bottom:269.496000px;}
.y1a{bottom:269.632200px;}
.yb9{bottom:276.776100px;}
.y142{bottom:278.021100px;}
.y9a{bottom:278.036100px;}
.y16d{bottom:278.411250px;}
.yd6{bottom:284.128500px;}
.y119{bottom:287.113800px;}
.y19{bottom:288.172200px;}
.yb8{bottom:295.316100px;}
.y6c{bottom:296.113800px;}
.y41{bottom:296.489100px;}
.y141{bottom:296.561100px;}
.y99{bottom:296.576100px;}
.y16c{bottom:296.951250px;}
.yd5{bottom:302.668500px;}
.y118{bottom:305.653950px;}
.y18{bottom:306.712200px;}
.yb7{bottom:313.856100px;}
.y6b{bottom:314.653950px;}
.y40{bottom:315.029100px;}
.y140{bottom:315.101100px;}
.y98{bottom:315.116100px;}
.y16b{bottom:315.491250px;}
.yd4{bottom:321.208500px;}
.y117{bottom:324.193800px;}
.yb6{bottom:332.396100px;}
.y17{bottom:332.752200px;}
.y6a{bottom:333.193800px;}
.y3f{bottom:333.569100px;}
.y13f{bottom:333.641100px;}
.y97{bottom:333.656100px;}
.y16a{bottom:334.031250px;}
.yd3{bottom:339.748500px;}
.y116{bottom:342.733950px;}
.yb5{bottom:350.936100px;}
.y69{bottom:351.733950px;}
.y3e{bottom:352.109100px;}
.y13e{bottom:352.181100px;}
.y96{bottom:352.196100px;}
.y169{bottom:352.571250px;}
.yd2{bottom:358.288500px;}
.y115{bottom:361.273800px;}
.yb4{bottom:369.476100px;}
.y68{bottom:370.273800px;}
.y3d{bottom:370.649100px;}
.y13d{bottom:370.721100px;}
.y95{bottom:370.736100px;}
.y16{bottom:371.092200px;}
.y168{bottom:371.111250px;}
.yd1{bottom:376.828500px;}
.y114{bottom:379.813800px;}
.yb3{bottom:388.016100px;}
.y67{bottom:388.813800px;}
.y3c{bottom:389.189100px;}
.y13c{bottom:389.261100px;}
.y94{bottom:389.276100px;}
.y15{bottom:389.632200px;}
.y167{bottom:389.651250px;}
.yd0{bottom:395.368500px;}
.y113{bottom:398.353800px;}
.yb2{bottom:406.556100px;}
.y66{bottom:407.353800px;}
.y3b{bottom:407.729100px;}
.y13b{bottom:407.801100px;}
.y93{bottom:407.816100px;}
.y166{bottom:408.191250px;}
.ycf{bottom:413.908500px;}
.y112{bottom:416.893800px;}
.yb1{bottom:425.096100px;}
.y65{bottom:425.893800px;}
.y14{bottom:426.172200px;}
.y3a{bottom:426.269100px;}
.y13a{bottom:426.341100px;}
.y92{bottom:426.356100px;}
.y165{bottom:426.731250px;}
.yce{bottom:432.448500px;}
.y111{bottom:435.433800px;}
.yb0{bottom:443.636100px;}
.y13{bottom:444.172200px;}
.y64{bottom:444.433800px;}
.y39{bottom:444.809100px;}
.y139{bottom:444.881100px;}
.y91{bottom:444.896100px;}
.y164{bottom:445.271250px;}
.ycd{bottom:450.988500px;}
.y110{bottom:453.973800px;}
.y12{bottom:462.172200px;}
.yaf{bottom:462.176100px;}
.y63{bottom:462.973800px;}
.y38{bottom:463.349100px;}
.y138{bottom:463.421100px;}
.y90{bottom:463.436100px;}
.y163{bottom:463.811250px;}
.ycc{bottom:469.528500px;}
.y10f{bottom:472.513800px;}
.y11{bottom:480.172200px;}
.yae{bottom:480.716100px;}
.y62{bottom:481.513800px;}
.y37{bottom:481.889100px;}
.y137{bottom:481.961100px;}
.y8f{bottom:481.976100px;}
.y162{bottom:482.351250px;}
.ycb{bottom:488.068500px;}
.y10e{bottom:491.053950px;}
.y10{bottom:498.172200px;}
.yad{bottom:499.256100px;}
.y61{bottom:500.053950px;}
.y36{bottom:500.429100px;}
.y136{bottom:500.501100px;}
.y8e{bottom:500.516100px;}
.y161{bottom:500.891400px;}
.yca{bottom:506.608500px;}
.y10d{bottom:509.593800px;}
.yf{bottom:516.172200px;}
.yac{bottom:517.796100px;}
.y60{bottom:518.593800px;}
.y35{bottom:518.969100px;}
.y135{bottom:519.041100px;}
.y8d{bottom:519.056100px;}
.y160{bottom:519.431250px;}
.y10c{bottom:528.133800px;}
.yc9{bottom:534.148500px;}
.ye{bottom:534.172200px;}
.yab{bottom:536.336100px;}
.y5f{bottom:537.133800px;}
.y34{bottom:537.509100px;}
.y134{bottom:537.581100px;}
.y8c{bottom:537.596100px;}
.y15f{bottom:537.971250px;}
.y10b{bottom:546.673800px;}
.yd{bottom:552.172200px;}
.yaa{bottom:554.876100px;}
.y5e{bottom:555.673800px;}
.y33{bottom:556.049100px;}
.y133{bottom:556.121100px;}
.y8b{bottom:556.136100px;}
.y15e{bottom:556.511250px;}
.y10a{bottom:565.213950px;}
.ya9{bottom:573.416100px;}
.y5d{bottom:574.213950px;}
.y32{bottom:574.589100px;}
.y132{bottom:574.661100px;}
.y8a{bottom:574.676100px;}
.y15d{bottom:575.051400px;}
.yc{bottom:577.672200px;}
.y109{bottom:583.753950px;}
.ya8{bottom:591.956100px;}
.y5c{bottom:592.753950px;}
.y31{bottom:593.129100px;}
.y131{bottom:593.201100px;}
.y89{bottom:593.216100px;}
.y15c{bottom:593.591250px;}
.y108{bottom:602.293800px;}
.ya7{bottom:610.496100px;}
.y5b{bottom:611.293800px;}
.y30{bottom:611.669100px;}
.y130{bottom:611.741100px;}
.y88{bottom:611.756100px;}
.y15b{bottom:612.131250px;}
.y107{bottom:620.833800px;}
.ya6{bottom:629.036100px;}
.y5a{bottom:629.833800px;}
.y2f{bottom:630.208950px;}
.y12f{bottom:630.281100px;}
.y87{bottom:630.296100px;}
.y15a{bottom:630.671250px;}
.yb{bottom:636.472200px;}
.y106{bottom:639.373800px;}
.ya5{bottom:647.576100px;}
.y59{bottom:648.373800px;}
.y2e{bottom:648.749100px;}
.y12e{bottom:648.821100px;}
.y86{bottom:648.836100px;}
.y159{bottom:649.211250px;}
.y105{bottom:657.913950px;}
.ya{bottom:658.072200px;}
.y58{bottom:666.913950px;}
.y2d{bottom:667.289100px;}
.y12d{bottom:667.361100px;}
.y85{bottom:667.376100px;}
.y158{bottom:667.751250px;}
.y104{bottom:676.453800px;}
.ya4{bottom:684.656100px;}
.y57{bottom:685.453800px;}
.y2c{bottom:685.829100px;}
.y12c{bottom:685.901100px;}
.y84{bottom:685.916100px;}
.y157{bottom:686.291250px;}
.y9{bottom:693.772200px;}
.y103{bottom:694.993950px;}
.y56{bottom:703.993950px;}
.y2b{bottom:704.369100px;}
.y12b{bottom:704.441100px;}
.y83{bottom:704.456100px;}
.y156{bottom:704.831250px;}
.y102{bottom:713.533800px;}
.y8{bottom:719.324250px;}
.y55{bottom:722.533800px;}
.y2a{bottom:722.909100px;}
.y12a{bottom:722.981100px;}
.y82{bottom:722.996100px;}
.y155{bottom:723.371250px;}
.y101{bottom:732.073950px;}
.y54{bottom:741.073950px;}
.y29{bottom:741.449100px;}
.y129{bottom:741.521100px;}
.y81{bottom:741.536100px;}
.y154{bottom:741.911250px;}
.y7{bottom:746.024250px;}
.y100{bottom:750.613800px;}
.y53{bottom:759.613800px;}
.y28{bottom:759.989100px;}
.y128{bottom:760.061100px;}
.y80{bottom:760.076100px;}
.y153{bottom:760.451250px;}
.yff{bottom:769.153800px;}
.y52{bottom:778.153800px;}
.y27{bottom:778.528950px;}
.y127{bottom:778.601100px;}
.y7f{bottom:778.616100px;}
.y152{bottom:778.991250px;}
.yfe{bottom:787.693950px;}
.y6{bottom:789.224250px;}
.y51{bottom:796.693950px;}
.y26{bottom:797.069100px;}
.y126{bottom:797.141100px;}
.y7e{bottom:797.156100px;}
.y151{bottom:797.531400px;}
.yfd{bottom:806.233950px;}
.y125{bottom:815.681100px;}
.y7d{bottom:815.696100px;}
.y150{bottom:816.071250px;}
.y5{bottom:816.224250px;}
.y50{bottom:833.773950px;}
.y25{bottom:834.149100px;}
.y124{bottom:834.220950px;}
.y7c{bottom:834.236100px;}
.y14f{bottom:834.611250px;}
.y4{bottom:870.224250px;}
.y4f{bottom:893.470500px;}
.y3{bottom:897.224250px;}
.y4e{bottom:905.470500px;}
.y24{bottom:906.525150px;}
.he{height:19.443961px;}
.h15{height:26.039438px;}
.h2{height:29.182617px;}
.hf{height:33.351562px;}
.h7{height:37.098633px;}
.h10{height:37.520508px;}
.ha{height:41.132812px;}
.h9{height:41.220703px;}
.h16{height:41.660156px;}
.h14{height:42.023438px;}
.h19{height:42.306445px;}
.hc{height:42.366797px;}
.hd{height:42.457324px;}
.hb{height:42.608203px;}
.h12{height:42.940137px;}
.h18{height:44.284951px;}
.h11{height:45.181641px;}
.h6{height:45.342773px;}
.h8{height:45.503906px;}
.h17{height:47.276367px;}
.h1a{height:52.122717px;}
.h13{height:54.105176px;}
.h5{height:57.708984px;}
.h4{height:61.616338px;}
.h3{height:74.197266px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.x8{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.xe{left:81.948000px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.xc{left:102.551550px;}
.x3{left:106.662900px;}
.xd{left:112.063050px;}
.xa{left:195.380250px;}
.xb{left:202.202850px;}
.xf{left:505.045200px;}
.x9{left:541.222350px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-6.416000pt;}
.v5{vertical-align:-3.552000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.292800pt;}
.v1{vertical-align:24.864000pt;}
.ls3{letter-spacing:-2.240000pt;}
.ls9{letter-spacing:-1.098667pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.920363pt;}
.ls10{letter-spacing:-0.864706pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000533pt;}
.ls19{letter-spacing:0.006933pt;}
.ls1c{letter-spacing:0.040000pt;}
.ls0{letter-spacing:0.146667pt;}
.ls8{letter-spacing:0.176000pt;}
.ls7{letter-spacing:0.224000pt;}
.lse{letter-spacing:0.320261pt;}
.lsb{letter-spacing:0.320267pt;}
.lsa{letter-spacing:0.549333pt;}
.ls1f{letter-spacing:0.618667pt;}
.ls2b{letter-spacing:0.645867pt;}
.ls13{letter-spacing:0.944533pt;}
.ls16{letter-spacing:1.243200pt;}
.ls15{letter-spacing:1.269867pt;}
.ls20{letter-spacing:1.411733pt;}
.ls21{letter-spacing:1.543637pt;}
.ls1{letter-spacing:1.560000pt;}
.ls18{letter-spacing:1.595733pt;}
.lsd{letter-spacing:1.760000pt;}
.ls22{letter-spacing:2.101333pt;}
.ls25{letter-spacing:2.330133pt;}
.ls5{letter-spacing:2.464000pt;}
.ls17{letter-spacing:3.298667pt;}
.lsc{letter-spacing:3.376533pt;}
.ls12{letter-spacing:4.664000pt;}
.ls26{letter-spacing:5.151467pt;}
.ls1e{letter-spacing:5.530667pt;}
.ls28{letter-spacing:5.827733pt;}
.ls14{letter-spacing:6.041600pt;}
.ls2a{letter-spacing:6.345600pt;}
.ls1d{letter-spacing:6.694400pt;}
.ls29{letter-spacing:6.783467pt;}
.ls23{letter-spacing:7.536533pt;}
.ls24{letter-spacing:7.986667pt;}
.ls27{letter-spacing:10.087467pt;}
.ls1a{letter-spacing:11.586533pt;}
.ls1b{letter-spacing:12.341867pt;}
.ws0{word-spacing:-14.813333pt;}
.ws14{word-spacing:-14.282667pt;}
.ws26{word-spacing:-13.733333pt;}
.ws1e{word-spacing:-10.666667pt;}
.ws4a{word-spacing:-9.045333pt;}
.ws21{word-spacing:-8.326795pt;}
.ws27{word-spacing:-8.006533pt;}
.ws25{word-spacing:-7.141828pt;}
.ws7e{word-spacing:-7.031467pt;}
.ws37{word-spacing:-6.218667pt;}
.ws68{word-spacing:-5.822933pt;}
.ws71{word-spacing:-4.998933pt;}
.ws55{word-spacing:-4.449600pt;}
.ws3{word-spacing:-4.106667pt;}
.ws79{word-spacing:-2.801600pt;}
.ws89{word-spacing:-2.691733pt;}
.ws90{word-spacing:-2.581867pt;}
.ws38{word-spacing:-2.252267pt;}
.ws7{word-spacing:-2.240000pt;}
.ws4f{word-spacing:-2.142400pt;}
.ws22{word-spacing:-2.032533pt;}
.ws77{word-spacing:-1.977600pt;}
.ws33{word-spacing:-1.757867pt;}
.ws74{word-spacing:-1.702933pt;}
.wsd{word-spacing:-1.538133pt;}
.ws56{word-spacing:-1.365333pt;}
.ws96{word-spacing:-1.318400pt;}
.ws1a{word-spacing:-1.263467pt;}
.ws24{word-spacing:-1.218859pt;}
.ws47{word-spacing:-1.024000pt;}
.ws15{word-spacing:-1.013333pt;}
.ws6b{word-spacing:-0.988800pt;}
.ws32{word-spacing:-0.769067pt;}
.ws50{word-spacing:-0.768000pt;}
.ws72{word-spacing:-0.714133pt;}
.ws12{word-spacing:-0.682667pt;}
.ws5b{word-spacing:-0.659200pt;}
.ws36{word-spacing:-0.646741pt;}
.ws20{word-spacing:-0.597333pt;}
.ws17{word-spacing:-0.549333pt;}
.ws44{word-spacing:-0.494400pt;}
.ws1f{word-spacing:-0.410667pt;}
.ws65{word-spacing:-0.274667pt;}
.ws48{word-spacing:-0.128000pt;}
.ws23{word-spacing:-0.109867pt;}
.ws49{word-spacing:-0.085333pt;}
.ws1{word-spacing:-0.054933pt;}
.ws2{word-spacing:0.000000pt;}
.ws18{word-spacing:0.109867pt;}
.ws54{word-spacing:0.164800pt;}
.ws8{word-spacing:0.213333pt;}
.ws52{word-spacing:0.219733pt;}
.wsa{word-spacing:0.329600pt;}
.ws99{word-spacing:0.384533pt;}
.ws53{word-spacing:0.439467pt;}
.ws98{word-spacing:0.659200pt;}
.ws8b{word-spacing:0.878933pt;}
.ws88{word-spacing:0.933867pt;}
.ws11{word-spacing:1.098667pt;}
.ws61{word-spacing:1.208533pt;}
.ws4e{word-spacing:1.263467pt;}
.wsb{word-spacing:1.373333pt;}
.ws41{word-spacing:1.428267pt;}
.ws2f{word-spacing:1.538133pt;}
.ws73{word-spacing:1.593067pt;}
.ws3c{word-spacing:1.648000pt;}
.ws3e{word-spacing:1.702933pt;}
.ws28{word-spacing:1.757867pt;}
.ws83{word-spacing:1.867733pt;}
.ws34{word-spacing:1.877333pt;}
.ws66{word-spacing:1.977600pt;}
.ws60{word-spacing:2.087467pt;}
.ws3b{word-spacing:2.142400pt;}
.ws76{word-spacing:2.307200pt;}
.ws6{word-spacing:2.346667pt;}
.ws57{word-spacing:2.362133pt;}
.wse{word-spacing:2.472000pt;}
.ws45{word-spacing:2.691733pt;}
.ws51{word-spacing:2.730667pt;}
.ws3a{word-spacing:2.746667pt;}
.ws30{word-spacing:2.801600pt;}
.ws2b{word-spacing:2.911467pt;}
.ws3f{word-spacing:3.131200pt;}
.ws35{word-spacing:3.242667pt;}
.ws4b{word-spacing:3.680533pt;}
.ws84{word-spacing:3.735467pt;}
.ws7d{word-spacing:3.790400pt;}
.ws97{word-spacing:4.120000pt;}
.ws46{word-spacing:4.229867pt;}
.ws31{word-spacing:4.284800pt;}
.ws6e{word-spacing:4.394667pt;}
.ws40{word-spacing:4.449600pt;}
.ws95{word-spacing:4.559467pt;}
.ws3d{word-spacing:4.889067pt;}
.ws58{word-spacing:5.053867pt;}
.ws7a{word-spacing:5.163733pt;}
.ws9{word-spacing:5.218667pt;}
.ws80{word-spacing:5.438400pt;}
.ws6a{word-spacing:5.493333pt;}
.ws94{word-spacing:5.658133pt;}
.ws70{word-spacing:5.713067pt;}
.ws82{word-spacing:5.822933pt;}
.ws2e{word-spacing:5.987733pt;}
.ws5f{word-spacing:6.097600pt;}
.ws1d{word-spacing:6.218667pt;}
.ws43{word-spacing:6.262400pt;}
.ws2a{word-spacing:6.317333pt;}
.ws29{word-spacing:6.427200pt;}
.ws63{word-spacing:6.482133pt;}
.ws91{word-spacing:6.811733pt;}
.ws19{word-spacing:6.921600pt;}
.ws2d{word-spacing:7.139029pt;}
.ws39{word-spacing:7.141333pt;}
.ws42{word-spacing:7.251200pt;}
.ws67{word-spacing:7.470933pt;}
.ws62{word-spacing:7.525867pt;}
.ws8d{word-spacing:7.580800pt;}
.ws5{word-spacing:7.786667pt;}
.ws59{word-spacing:7.800533pt;}
.ws5e{word-spacing:7.910400pt;}
.ws69{word-spacing:7.965333pt;}
.ws6d{word-spacing:8.569600pt;}
.ws4{word-spacing:8.586667pt;}
.wsf{word-spacing:8.844267pt;}
.ws4c{word-spacing:8.954133pt;}
.ws85{word-spacing:9.613333pt;}
.ws1c{word-spacing:9.942933pt;}
.ws86{word-spacing:9.997867pt;}
.ws6c{word-spacing:10.107733pt;}
.ws8a{word-spacing:10.657067pt;}
.ws4d{word-spacing:10.821867pt;}
.ws78{word-spacing:11.096533pt;}
.ws2c{word-spacing:11.481067pt;}
.ws5a{word-spacing:12.414933pt;}
.ws64{word-spacing:12.579733pt;}
.ws1b{word-spacing:12.964267pt;}
.ws7f{word-spacing:13.074133pt;}
.ws7b{word-spacing:13.129067pt;}
.ws5d{word-spacing:14.282667pt;}
.ws8e{word-spacing:14.337600pt;}
.ws8c{word-spacing:14.502400pt;}
.ws93{word-spacing:14.832000pt;}
.ws16{word-spacing:14.941867pt;}
.ws75{word-spacing:15.381333pt;}
.ws7c{word-spacing:16.260267pt;}
.ws8f{word-spacing:17.578667pt;}
.ws5c{word-spacing:19.006933pt;}
.ws6f{word-spacing:19.061867pt;}
.ws81{word-spacing:20.874667pt;}
.ws92{word-spacing:22.193067pt;}
.wsc{word-spacing:25.544000pt;}
.ws10{word-spacing:31.037333pt;}
.ws87{word-spacing:47.517333pt;}
.ws13{word-spacing:479.486933pt;}
._f{margin-left:-14.493653pt;}
._1e{margin-left:-8.965013pt;}
._1c{margin-left:-7.403840pt;}
._13{margin-left:-6.237120pt;}
._b{margin-left:-4.766987pt;}
._4{margin-left:-3.407093pt;}
._d{margin-left:-2.414933pt;}
._0{margin-left:-1.377600pt;}
._1{width:0.940800pt;}
._5{width:2.548907pt;}
._2{width:3.808000pt;}
._3{width:5.573333pt;}
._a{width:6.751307pt;}
._6{width:8.234507pt;}
._e{width:9.388107pt;}
._c{width:10.508747pt;}
._7{width:11.898560pt;}
._1a{width:12.793973pt;}
._10{width:14.788053pt;}
._1b{width:15.743893pt;}
._8{width:16.804107pt;}
._12{width:17.941227pt;}
._9{width:19.671627pt;}
._19{width:20.682400pt;}
._11{width:21.836000pt;}
._14{width:23.560907pt;}
._17{width:25.147253pt;}
._15{width:26.775733pt;}
._16{width:28.084960pt;}
._1d{width:31.270400pt;}
._1f{width:47.495360pt;}
._18{width:63.040000pt;}
.fsc{font-size:18.656000pt;}
.fs8{font-size:24.874667pt;}
.fsb{font-size:31.093333pt;}
.fsa{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y23{bottom:68.000000pt;}
.y4d{bottom:68.000133pt;}
.y7b{bottom:71.551867pt;}
.yec{bottom:71.552000pt;}
.y4c{bottom:71.552133pt;}
.y7a{bottom:79.999867pt;}
.yc5{bottom:80.000000pt;}
.yc8{bottom:80.000133pt;}
.y4b{bottom:80.000267pt;}
.y14c{bottom:82.329867pt;}
.y14e{bottom:82.343200pt;}
.y22{bottom:83.552000pt;}
.ya3{bottom:83.552133pt;}
.yf9{bottom:83.552267pt;}
.y123{bottom:90.412267pt;}
.y79{bottom:91.999867pt;}
.yc4{bottom:92.000000pt;}
.yc7{bottom:92.000133pt;}
.y4a{bottom:92.000267pt;}
.yeb{bottom:95.552000pt;}
.yc6{bottom:95.552133pt;}
.yf8{bottom:95.552400pt;}
.y14b{bottom:98.809867pt;}
.y14d{bottom:98.823200pt;}
.y176{bottom:99.156667pt;}
.y78{bottom:103.999867pt;}
.yc3{bottom:104.000000pt;}
.y49{bottom:104.000267pt;}
.yf7{bottom:104.000533pt;}
.ydd{bottom:104.238667pt;}
.y122{bottom:106.892400pt;}
.yc2{bottom:107.552000pt;}
.y48{bottom:107.552267pt;}
.y21{bottom:107.833067pt;}
.y14a{bottom:115.289867pt;}
.ya2{bottom:115.303200pt;}
.y175{bottom:115.636667pt;}
.y77{bottom:115.999867pt;}
.yc1{bottom:116.000000pt;}
.yc0{bottom:119.552000pt;}
.y47{bottom:119.552400pt;}
.yf6{bottom:119.552533pt;}
.ydc{bottom:120.718667pt;}
.y121{bottom:123.372267pt;}
.y20{bottom:124.313067pt;}
.ye3{bottom:128.000000pt;}
.y46{bottom:128.000533pt;}
.yf5{bottom:128.000667pt;}
.y76{bottom:131.551867pt;}
.yfb{bottom:131.552000pt;}
.y149{bottom:131.769867pt;}
.ya1{bottom:131.783200pt;}
.y174{bottom:132.116667pt;}
.ydb{bottom:137.198667pt;}
.y120{bottom:139.852400pt;}
.y75{bottom:139.999867pt;}
.ye2{bottom:140.000000pt;}
.y45{bottom:140.000533pt;}
.yf4{bottom:140.000667pt;}
.yfa{bottom:143.552000pt;}
.ybf{bottom:147.143200pt;}
.y148{bottom:148.249867pt;}
.ya0{bottom:148.263200pt;}
.y173{bottom:148.596667pt;}
.y74{bottom:151.999867pt;}
.yef{bottom:152.000000pt;}
.y44{bottom:152.000533pt;}
.yf3{bottom:152.000667pt;}
.yda{bottom:153.678667pt;}
.ye1{bottom:155.552000pt;}
.y11f{bottom:156.332267pt;}
.y1f{bottom:157.273067pt;}
.ybe{bottom:163.623200pt;}
.y73{bottom:163.999867pt;}
.ye0{bottom:164.000000pt;}
.y43{bottom:164.000533pt;}
.y147{bottom:164.729867pt;}
.y9f{bottom:164.743200pt;}
.y172{bottom:165.076667pt;}
.yea{bottom:167.552000pt;}
.y42{bottom:167.552533pt;}
.yf2{bottom:167.552667pt;}
.yd9{bottom:170.158667pt;}
.y11e{bottom:172.812400pt;}
.y1e{bottom:173.753067pt;}
.y72{bottom:175.999867pt;}
.ydf{bottom:176.000000pt;}
.yf1{bottom:176.000800pt;}
.yde{bottom:179.552000pt;}
.ybd{bottom:180.103200pt;}
.y146{bottom:181.209867pt;}
.y9e{bottom:181.223200pt;}
.y171{bottom:181.556667pt;}
.y71{bottom:187.999867pt;}
.ye9{bottom:188.000000pt;}
.yf0{bottom:188.000800pt;}
.y11d{bottom:189.292267pt;}
.y1d{bottom:190.233067pt;}
.yee{bottom:191.552000pt;}
.ybc{bottom:196.583200pt;}
.y145{bottom:197.689867pt;}
.y9d{bottom:197.703200pt;}
.y170{bottom:198.036667pt;}
.y70{bottom:199.999867pt;}
.ye8{bottom:200.000000pt;}
.yd8{bottom:203.118667pt;}
.yfc{bottom:203.552000pt;}
.y11c{bottom:205.772400pt;}
.y1c{bottom:206.713067pt;}
.ye7{bottom:212.000000pt;}
.ybb{bottom:213.063200pt;}
.y144{bottom:214.169867pt;}
.y9c{bottom:214.183200pt;}
.y16f{bottom:214.516667pt;}
.y6f{bottom:215.551867pt;}
.ye6{bottom:215.552000pt;}
.y11b{bottom:222.252267pt;}
.y1b{bottom:223.193067pt;}
.y6e{bottom:223.999867pt;}
.ye5{bottom:224.000000pt;}
.yed{bottom:227.552000pt;}
.yba{bottom:229.543200pt;}
.y143{bottom:230.649867pt;}
.y9b{bottom:230.663200pt;}
.y16e{bottom:230.996667pt;}
.yd7{bottom:236.078667pt;}
.y11a{bottom:238.732400pt;}
.y6d{bottom:239.551867pt;}
.ye4{bottom:239.552000pt;}
.y1a{bottom:239.673067pt;}
.yb9{bottom:246.023200pt;}
.y142{bottom:247.129867pt;}
.y9a{bottom:247.143200pt;}
.y16d{bottom:247.476667pt;}
.yd6{bottom:252.558667pt;}
.y119{bottom:255.212267pt;}
.y19{bottom:256.153067pt;}
.yb8{bottom:262.503200pt;}
.y6c{bottom:263.212267pt;}
.y41{bottom:263.545867pt;}
.y141{bottom:263.609867pt;}
.y99{bottom:263.623200pt;}
.y16c{bottom:263.956667pt;}
.yd5{bottom:269.038667pt;}
.y118{bottom:271.692400pt;}
.y18{bottom:272.633067pt;}
.yb7{bottom:278.983200pt;}
.y6b{bottom:279.692400pt;}
.y40{bottom:280.025867pt;}
.y140{bottom:280.089867pt;}
.y98{bottom:280.103200pt;}
.y16b{bottom:280.436667pt;}
.yd4{bottom:285.518667pt;}
.y117{bottom:288.172267pt;}
.yb6{bottom:295.463200pt;}
.y17{bottom:295.779733pt;}
.y6a{bottom:296.172267pt;}
.y3f{bottom:296.505867pt;}
.y13f{bottom:296.569867pt;}
.y97{bottom:296.583200pt;}
.y16a{bottom:296.916667pt;}
.yd3{bottom:301.998667pt;}
.y116{bottom:304.652400pt;}
.yb5{bottom:311.943200pt;}
.y69{bottom:312.652400pt;}
.y3e{bottom:312.985867pt;}
.y13e{bottom:313.049867pt;}
.y96{bottom:313.063200pt;}
.y169{bottom:313.396667pt;}
.yd2{bottom:318.478667pt;}
.y115{bottom:321.132267pt;}
.yb4{bottom:328.423200pt;}
.y68{bottom:329.132267pt;}
.y3d{bottom:329.465867pt;}
.y13d{bottom:329.529867pt;}
.y95{bottom:329.543200pt;}
.y16{bottom:329.859733pt;}
.y168{bottom:329.876667pt;}
.yd1{bottom:334.958667pt;}
.y114{bottom:337.612267pt;}
.yb3{bottom:344.903200pt;}
.y67{bottom:345.612267pt;}
.y3c{bottom:345.945867pt;}
.y13c{bottom:346.009867pt;}
.y94{bottom:346.023200pt;}
.y15{bottom:346.339733pt;}
.y167{bottom:346.356667pt;}
.yd0{bottom:351.438667pt;}
.y113{bottom:354.092267pt;}
.yb2{bottom:361.383200pt;}
.y66{bottom:362.092267pt;}
.y3b{bottom:362.425867pt;}
.y13b{bottom:362.489867pt;}
.y93{bottom:362.503200pt;}
.y166{bottom:362.836667pt;}
.ycf{bottom:367.918667pt;}
.y112{bottom:370.572267pt;}
.yb1{bottom:377.863200pt;}
.y65{bottom:378.572267pt;}
.y14{bottom:378.819733pt;}
.y3a{bottom:378.905867pt;}
.y13a{bottom:378.969867pt;}
.y92{bottom:378.983200pt;}
.y165{bottom:379.316667pt;}
.yce{bottom:384.398667pt;}
.y111{bottom:387.052267pt;}
.yb0{bottom:394.343200pt;}
.y13{bottom:394.819733pt;}
.y64{bottom:395.052267pt;}
.y39{bottom:395.385867pt;}
.y139{bottom:395.449867pt;}
.y91{bottom:395.463200pt;}
.y164{bottom:395.796667pt;}
.ycd{bottom:400.878667pt;}
.y110{bottom:403.532267pt;}
.y12{bottom:410.819733pt;}
.yaf{bottom:410.823200pt;}
.y63{bottom:411.532267pt;}
.y38{bottom:411.865867pt;}
.y138{bottom:411.929867pt;}
.y90{bottom:411.943200pt;}
.y163{bottom:412.276667pt;}
.ycc{bottom:417.358667pt;}
.y10f{bottom:420.012267pt;}
.y11{bottom:426.819733pt;}
.yae{bottom:427.303200pt;}
.y62{bottom:428.012267pt;}
.y37{bottom:428.345867pt;}
.y137{bottom:428.409867pt;}
.y8f{bottom:428.423200pt;}
.y162{bottom:428.756667pt;}
.ycb{bottom:433.838667pt;}
.y10e{bottom:436.492400pt;}
.y10{bottom:442.819733pt;}
.yad{bottom:443.783200pt;}
.y61{bottom:444.492400pt;}
.y36{bottom:444.825867pt;}
.y136{bottom:444.889867pt;}
.y8e{bottom:444.903200pt;}
.y161{bottom:445.236800pt;}
.yca{bottom:450.318667pt;}
.y10d{bottom:452.972267pt;}
.yf{bottom:458.819733pt;}
.yac{bottom:460.263200pt;}
.y60{bottom:460.972267pt;}
.y35{bottom:461.305867pt;}
.y135{bottom:461.369867pt;}
.y8d{bottom:461.383200pt;}
.y160{bottom:461.716667pt;}
.y10c{bottom:469.452267pt;}
.yc9{bottom:474.798667pt;}
.ye{bottom:474.819733pt;}
.yab{bottom:476.743200pt;}
.y5f{bottom:477.452267pt;}
.y34{bottom:477.785867pt;}
.y134{bottom:477.849867pt;}
.y8c{bottom:477.863200pt;}
.y15f{bottom:478.196667pt;}
.y10b{bottom:485.932267pt;}
.yd{bottom:490.819733pt;}
.yaa{bottom:493.223200pt;}
.y5e{bottom:493.932267pt;}
.y33{bottom:494.265867pt;}
.y133{bottom:494.329867pt;}
.y8b{bottom:494.343200pt;}
.y15e{bottom:494.676667pt;}
.y10a{bottom:502.412400pt;}
.ya9{bottom:509.703200pt;}
.y5d{bottom:510.412400pt;}
.y32{bottom:510.745867pt;}
.y132{bottom:510.809867pt;}
.y8a{bottom:510.823200pt;}
.y15d{bottom:511.156800pt;}
.yc{bottom:513.486400pt;}
.y109{bottom:518.892400pt;}
.ya8{bottom:526.183200pt;}
.y5c{bottom:526.892400pt;}
.y31{bottom:527.225867pt;}
.y131{bottom:527.289867pt;}
.y89{bottom:527.303200pt;}
.y15c{bottom:527.636667pt;}
.y108{bottom:535.372267pt;}
.ya7{bottom:542.663200pt;}
.y5b{bottom:543.372267pt;}
.y30{bottom:543.705867pt;}
.y130{bottom:543.769867pt;}
.y88{bottom:543.783200pt;}
.y15b{bottom:544.116667pt;}
.y107{bottom:551.852267pt;}
.ya6{bottom:559.143200pt;}
.y5a{bottom:559.852267pt;}
.y2f{bottom:560.185733pt;}
.y12f{bottom:560.249867pt;}
.y87{bottom:560.263200pt;}
.y15a{bottom:560.596667pt;}
.yb{bottom:565.753067pt;}
.y106{bottom:568.332267pt;}
.ya5{bottom:575.623200pt;}
.y59{bottom:576.332267pt;}
.y2e{bottom:576.665867pt;}
.y12e{bottom:576.729867pt;}
.y86{bottom:576.743200pt;}
.y159{bottom:577.076667pt;}
.y105{bottom:584.812400pt;}
.ya{bottom:584.953067pt;}
.y58{bottom:592.812400pt;}
.y2d{bottom:593.145867pt;}
.y12d{bottom:593.209867pt;}
.y85{bottom:593.223200pt;}
.y158{bottom:593.556667pt;}
.y104{bottom:601.292267pt;}
.ya4{bottom:608.583200pt;}
.y57{bottom:609.292267pt;}
.y2c{bottom:609.625867pt;}
.y12c{bottom:609.689867pt;}
.y84{bottom:609.703200pt;}
.y157{bottom:610.036667pt;}
.y9{bottom:616.686400pt;}
.y103{bottom:617.772400pt;}
.y56{bottom:625.772400pt;}
.y2b{bottom:626.105867pt;}
.y12b{bottom:626.169867pt;}
.y83{bottom:626.183200pt;}
.y156{bottom:626.516667pt;}
.y102{bottom:634.252267pt;}
.y8{bottom:639.399333pt;}
.y55{bottom:642.252267pt;}
.y2a{bottom:642.585867pt;}
.y12a{bottom:642.649867pt;}
.y82{bottom:642.663200pt;}
.y155{bottom:642.996667pt;}
.y101{bottom:650.732400pt;}
.y54{bottom:658.732400pt;}
.y29{bottom:659.065867pt;}
.y129{bottom:659.129867pt;}
.y81{bottom:659.143200pt;}
.y154{bottom:659.476667pt;}
.y7{bottom:663.132667pt;}
.y100{bottom:667.212267pt;}
.y53{bottom:675.212267pt;}
.y28{bottom:675.545867pt;}
.y128{bottom:675.609867pt;}
.y80{bottom:675.623200pt;}
.y153{bottom:675.956667pt;}
.yff{bottom:683.692267pt;}
.y52{bottom:691.692267pt;}
.y27{bottom:692.025733pt;}
.y127{bottom:692.089867pt;}
.y7f{bottom:692.103200pt;}
.y152{bottom:692.436667pt;}
.yfe{bottom:700.172400pt;}
.y6{bottom:701.532667pt;}
.y51{bottom:708.172400pt;}
.y26{bottom:708.505867pt;}
.y126{bottom:708.569867pt;}
.y7e{bottom:708.583200pt;}
.y151{bottom:708.916800pt;}
.yfd{bottom:716.652400pt;}
.y125{bottom:725.049867pt;}
.y7d{bottom:725.063200pt;}
.y150{bottom:725.396667pt;}
.y5{bottom:725.532667pt;}
.y50{bottom:741.132400pt;}
.y25{bottom:741.465867pt;}
.y124{bottom:741.529733pt;}
.y7c{bottom:741.543200pt;}
.y14f{bottom:741.876667pt;}
.y4{bottom:773.532667pt;}
.y4f{bottom:794.196000pt;}
.y3{bottom:797.532667pt;}
.y4e{bottom:804.862667pt;}
.y24{bottom:805.800133pt;}
.he{height:17.283521pt;}
.h15{height:23.146167pt;}
.h2{height:25.940104pt;}
.hf{height:29.645833pt;}
.h7{height:32.976562pt;}
.h10{height:33.351562pt;}
.ha{height:36.562500pt;}
.h9{height:36.640625pt;}
.h16{height:37.031250pt;}
.h14{height:37.354167pt;}
.h19{height:37.605729pt;}
.hc{height:37.659375pt;}
.hd{height:37.739844pt;}
.hb{height:37.873958pt;}
.h12{height:38.169010pt;}
.h18{height:39.364401pt;}
.h11{height:40.161458pt;}
.h6{height:40.304688pt;}
.h8{height:40.447917pt;}
.h17{height:42.023438pt;}
.h1a{height:46.331304pt;}
.h13{height:48.093490pt;}
.h5{height:51.296875pt;}
.h4{height:54.770078pt;}
.h3{height:65.953125pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.x8{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.xe{left:72.842667pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.xc{left:91.156933pt;}
.x3{left:94.811467pt;}
.xd{left:99.611600pt;}
.xa{left:173.671333pt;}
.xb{left:179.735867pt;}
.xf{left:448.929067pt;}
.x9{left:481.086533pt;}
}




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