
    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_402dcc951d2a325271761c97.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930176;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_2f0a86f1fde672eb9769420c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.950195;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_8bbc352a26373e6f16d51766.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_179e1ed8343aea3eca070f62.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_b0b17f60d768e36ad75cfe77.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936035;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_1b2c574ae5bfe989b84b91f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936523;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_60dd4a262b7dc0ccc86043c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_fa41fb1600bc127603a3333a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.755371;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_53ddf88b74c0aefd41f0aff7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.755371;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_1bd65a2e48446881394af884.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925293;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_c3b7187eed45d9349858adb6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936523;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_c0345171064c4620154edc4d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.753418;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_6225040aa77843a5600b4c0e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.755371;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_9690c56eb8ee7a7aea748317.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.936035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.100000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.595400px;}
.ls6{letter-spacing:-3.312000px;}
.ls2{letter-spacing:-2.604000px;}
.ls7{letter-spacing:-2.016000px;}
.ls9{letter-spacing:-1.620000px;}
.ls26{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.320000px;}
.ls1d{letter-spacing:-1.296000px;}
.ls1c{letter-spacing:-1.134000px;}
.ls5{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-1.026000px;}
.lsf{letter-spacing:-0.972000px;}
.ls1f{letter-spacing:-0.864000px;}
.ls24{letter-spacing:-0.780000px;}
.ls14{letter-spacing:-0.756000px;}
.ls2a{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.702000px;}
.ls23{letter-spacing:-0.660000px;}
.ls21{letter-spacing:-0.600000px;}
.ls1a{letter-spacing:-0.594000px;}
.lse{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.486000px;}
.ls22{letter-spacing:-0.480000px;}
.ls2d{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.378000px;}
.ls2e{letter-spacing:-0.360000px;}
.ls32{letter-spacing:-0.324000px;}
.ls33{letter-spacing:-0.300000px;}
.ls1e{letter-spacing:-0.270000px;}
.ls1{letter-spacing:-0.252000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.162000px;}
.ls31{letter-spacing:-0.120000px;}
.ls2b{letter-spacing:-0.060000px;}
.lsd{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.006000px;}
.ls17{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.162000px;}
.ls16{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.525000px;}
.ls30{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.648000px;}
.ls11{letter-spacing:0.756000px;}
.ls35{letter-spacing:0.780000px;}
.ls34{letter-spacing:0.840000px;}
.ls28{letter-spacing:2.335800px;}
.ls29{letter-spacing:2.431200px;}
.ls18{letter-spacing:4.961400px;}
.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;}
}
.ws2{word-spacing:-126.144000px;}
.ws3{word-spacing:-88.300800px;}
.ws26{word-spacing:-23.100000px;}
.ws4{word-spacing:-20.748000px;}
.ws0{word-spacing:-19.656000px;}
.ws5{word-spacing:-18.576000px;}
.wsa{word-spacing:-18.000000px;}
.ws53{word-spacing:-17.220000px;}
.ws56{word-spacing:-17.040000px;}
.ws2b{word-spacing:-16.680000px;}
.ws2d{word-spacing:-16.500000px;}
.ws7d{word-spacing:-16.440000px;}
.ws6{word-spacing:-16.344000px;}
.ws2a{word-spacing:-16.200000px;}
.ws7e{word-spacing:-16.140000px;}
.ws29{word-spacing:-16.080000px;}
.ws2c{word-spacing:-15.900000px;}
.wse{word-spacing:-15.444000px;}
.wsb{word-spacing:-15.360000px;}
.wsd{word-spacing:-15.336000px;}
.ws11{word-spacing:-15.228000px;}
.ws12{word-spacing:-15.066000px;}
.ws10{word-spacing:-14.958000px;}
.ws27{word-spacing:-14.904000px;}
.wsad{word-spacing:-14.850000px;}
.wsc{word-spacing:-14.310000px;}
.wsf{word-spacing:-14.256000px;}
.ws91{word-spacing:-14.148000px;}
.ws28{word-spacing:-13.986000px;}
.ws1{word-spacing:-13.759200px;}
.ws54{word-spacing:-12.054000px;}
.ws78{word-spacing:-4.320000px;}
.ws48{word-spacing:-4.200000px;}
.ws3c{word-spacing:-4.140000px;}
.ws51{word-spacing:-4.020000px;}
.ws17{word-spacing:-3.780000px;}
.ws1a{word-spacing:-3.726000px;}
.wsa0{word-spacing:-3.660000px;}
.ws5a{word-spacing:-3.600000px;}
.ws42{word-spacing:-3.540000px;}
.ws3f{word-spacing:-3.360000px;}
.ws98{word-spacing:-3.300000px;}
.ws6a{word-spacing:-3.240000px;}
.ws44{word-spacing:-3.180000px;}
.ws50{word-spacing:-3.000000px;}
.ws9a{word-spacing:-2.940000px;}
.ws35{word-spacing:-2.916000px;}
.ws3e{word-spacing:-2.880000px;}
.ws49{word-spacing:-2.820000px;}
.ws74{word-spacing:-2.700000px;}
.wsb2{word-spacing:-2.646000px;}
.wsa2{word-spacing:-2.520000px;}
.ws18{word-spacing:-2.484000px;}
.ws47{word-spacing:-2.460000px;}
.ws5f{word-spacing:-2.400000px;}
.ws5c{word-spacing:-2.340000px;}
.ws8d{word-spacing:-2.280000px;}
.wsae{word-spacing:-2.268000px;}
.ws5b{word-spacing:-2.160000px;}
.ws99{word-spacing:-2.100000px;}
.ws1e{word-spacing:-2.052000px;}
.ws9f{word-spacing:-2.040000px;}
.ws4b{word-spacing:-1.980000px;}
.ws80{word-spacing:-1.920000px;}
.wsb3{word-spacing:-1.782000px;}
.wsab{word-spacing:-1.740000px;}
.ws25{word-spacing:-1.728000px;}
.ws71{word-spacing:-1.680000px;}
.ws84{word-spacing:-1.560000px;}
.ws40{word-spacing:-1.500000px;}
.ws90{word-spacing:-1.440000px;}
.ws76{word-spacing:-1.380000px;}
.ws79{word-spacing:-1.320000px;}
.ws62{word-spacing:-1.260000px;}
.ws45{word-spacing:-1.200000px;}
.ws64{word-spacing:-1.140000px;}
.wsaf{word-spacing:-1.134000px;}
.ws68{word-spacing:-0.960000px;}
.wsb0{word-spacing:-0.918000px;}
.wsb1{word-spacing:-0.864000px;}
.ws3d{word-spacing:-0.840000px;}
.ws96{word-spacing:-0.780000px;}
.ws20{word-spacing:-0.756000px;}
.wsa3{word-spacing:-0.720000px;}
.ws61{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.648000px;}
.ws85{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.432000px;}
.ws5d{word-spacing:-0.300000px;}
.ws9e{word-spacing:-0.120000px;}
.ws55{word-spacing:-0.060000px;}
.ws72{word-spacing:-0.042000px;}
.ws7{word-spacing:0.000000px;}
.ws70{word-spacing:0.120000px;}
.ws2e{word-spacing:0.162000px;}
.ws59{word-spacing:0.180000px;}
.ws3a{word-spacing:0.216000px;}
.ws82{word-spacing:0.240000px;}
.ws8{word-spacing:0.252000px;}
.ws95{word-spacing:0.324000px;}
.ws75{word-spacing:0.360000px;}
.ws43{word-spacing:0.480000px;}
.ws1f{word-spacing:0.540000px;}
.ws94{word-spacing:0.594000px;}
.ws3b{word-spacing:0.600000px;}
.ws22{word-spacing:0.702000px;}
.ws7b{word-spacing:0.720000px;}
.ws52{word-spacing:0.780000px;}
.ws86{word-spacing:0.840000px;}
.ws39{word-spacing:0.864000px;}
.ws9b{word-spacing:0.900000px;}
.ws6b{word-spacing:0.960000px;}
.ws1b{word-spacing:0.972000px;}
.ws58{word-spacing:1.080000px;}
.ws4f{word-spacing:1.320000px;}
.ws37{word-spacing:1.404000px;}
.wsa5{word-spacing:1.440000px;}
.ws19{word-spacing:1.458000px;}
.wsa4{word-spacing:1.500000px;}
.ws77{word-spacing:1.560000px;}
.ws14{word-spacing:1.620000px;}
.ws67{word-spacing:1.800000px;}
.ws65{word-spacing:1.980000px;}
.ws38{word-spacing:1.998000px;}
.ws97{word-spacing:2.040000px;}
.ws1c{word-spacing:2.214000px;}
.ws8c{word-spacing:2.340000px;}
.ws9{word-spacing:2.352000px;}
.ws36{word-spacing:2.484000px;}
.ws66{word-spacing:2.520000px;}
.ws8a{word-spacing:2.580000px;}
.ws6c{word-spacing:2.640000px;}
.ws69{word-spacing:2.700000px;}
.ws73{word-spacing:2.760000px;}
.wsa6{word-spacing:2.880000px;}
.ws8b{word-spacing:3.000000px;}
.ws15{word-spacing:3.132000px;}
.ws88{word-spacing:3.360000px;}
.ws16{word-spacing:3.402000px;}
.ws89{word-spacing:3.420000px;}
.ws1d{word-spacing:3.564000px;}
.ws4d{word-spacing:3.600000px;}
.ws6e{word-spacing:3.660000px;}
.ws93{word-spacing:3.780000px;}
.ws4e{word-spacing:3.840000px;}
.wsaa{word-spacing:4.020000px;}
.wsa9{word-spacing:4.140000px;}
.ws41{word-spacing:4.320000px;}
.wsa1{word-spacing:4.440000px;}
.ws63{word-spacing:4.500000px;}
.ws7a{word-spacing:4.560000px;}
.ws9c{word-spacing:4.680000px;}
.ws24{word-spacing:4.698000px;}
.ws6f{word-spacing:4.860000px;}
.ws34{word-spacing:4.968000px;}
.ws4a{word-spacing:4.980000px;}
.ws46{word-spacing:5.040000px;}
.ws5e{word-spacing:5.160000px;}
.ws57{word-spacing:5.220000px;}
.ws32{word-spacing:5.238000px;}
.ws8e{word-spacing:5.280000px;}
.ws2f{word-spacing:5.454000px;}
.ws6d{word-spacing:5.520000px;}
.ws87{word-spacing:5.700000px;}
.ws81{word-spacing:5.760000px;}
.ws33{word-spacing:5.832000px;}
.ws7c{word-spacing:5.940000px;}
.ws30{word-spacing:6.102000px;}
.wsa8{word-spacing:6.300000px;}
.ws8f{word-spacing:6.360000px;}
.ws31{word-spacing:6.426000px;}
.wsa7{word-spacing:6.480000px;}
.ws7f{word-spacing:6.960000px;}
.ws9d{word-spacing:7.260000px;}
.ws23{word-spacing:7.506000px;}
.ws83{word-spacing:7.680000px;}
.ws60{word-spacing:7.980000px;}
.ws4c{word-spacing:8.340000px;}
.ws92{word-spacing:8.580000px;}
.wsac{word-spacing:8.640000px;}
._e{margin-left:-2806.892400px;}
._1{margin-left:-16.698000px;}
._8{margin-left:-6.151800px;}
._4{margin-left:-4.968000px;}
._6{margin-left:-3.261600px;}
._0{margin-left:-1.862400px;}
._5{width:1.596000px;}
._7{width:2.697000px;}
._a{width:3.758400px;}
._9{width:5.292000px;}
._f{width:6.345000px;}
._d{width:7.560000px;}
._10{width:8.787600px;}
._3{width:22.399800px;}
._2{width:89.856000px;}
._c{width:1433.583600px;}
._b{width:1855.412400px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:42.000000px;}
.fs1{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs3{font-size:302.400000px;}
.fs2{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:65.599200px;}
.y73{bottom:108.000000px;}
.y163{bottom:124.200000px;}
.ya4{bottom:126.034650px;}
.yd6{bottom:126.048900px;}
.y72{bottom:126.055800px;}
.y12f{bottom:126.090600px;}
.y105{bottom:126.156150px;}
.y161{bottom:136.891050px;}
.y162{bottom:140.400000px;}
.ya3{bottom:144.069450px;}
.y71{bottom:144.111600px;}
.y104{bottom:144.312450px;}
.yd5{bottom:151.597800px;}
.y12e{bottom:153.181200px;}
.y160{bottom:154.891050px;}
.y164{bottom:156.600000px;}
.y45{bottom:157.000650px;}
.ya2{bottom:162.104250px;}
.y70{bottom:162.167400px;}
.y103{bottom:162.468600px;}
.yd4{bottom:169.646700px;}
.ya1{bottom:180.138900px;}
.y6f{bottom:180.223200px;}
.y102{bottom:180.624600px;}
.y44{bottom:182.200650px;}
.ya0{bottom:198.173700px;}
.y6e{bottom:198.279000px;}
.y43{bottom:198.400650px;}
.y101{bottom:207.780900px;}
.y15f{bottom:208.891050px;}
.y12d{bottom:210.871800px;}
.y42{bottom:214.600650px;}
.yd3{bottom:214.695600px;}
.y9f{bottom:216.208350px;}
.y6d{bottom:216.334800px;}
.y100{bottom:225.937050px;}
.y15e{bottom:226.891050px;}
.y12c{bottom:228.962550px;}
.y41{bottom:230.800650px;}
.yd2{bottom:232.744500px;}
.y9e{bottom:234.243000px;}
.y6c{bottom:234.390600px;}
.yff{bottom:244.093200px;}
.y15d{bottom:244.891050px;}
.y12b{bottom:247.053000px;}
.yd1{bottom:250.793400px;}
.y9d{bottom:252.277800px;}
.y6b{bottom:252.446400px;}
.y40{bottom:256.000650px;}
.yfe{bottom:262.249350px;}
.y15c{bottom:262.891050px;}
.y12a{bottom:265.143750px;}
.yd0{bottom:268.842300px;}
.y9c{bottom:270.312600px;}
.y6a{bottom:270.502200px;}
.y3f{bottom:272.200650px;}
.yfd{bottom:280.405650px;}
.y15b{bottom:280.891050px;}
.y129{bottom:283.234350px;}
.y3e{bottom:288.400650px;}
.y69{bottom:288.558000px;}
.ycf{bottom:294.391350px;}
.y9b{bottom:297.347250px;}
.yfc{bottom:298.561800px;}
.y15a{bottom:298.891050px;}
.y128{bottom:301.324950px;}
.y3d{bottom:304.600650px;}
.y68{bottom:306.613800px;}
.y9a{bottom:315.382050px;}
.y159{bottom:316.891050px;}
.y127{bottom:319.415550px;}
.yce{bottom:319.940250px;}
.y3c{bottom:320.800650px;}
.y67{bottom:324.669600px;}
.yfb{bottom:325.717950px;}
.y99{bottom:333.416700px;}
.y158{bottom:334.891050px;}
.ycd{bottom:337.989000px;}
.yfa{bottom:342.074100px;}
.y66{bottom:342.725400px;}
.y3b{bottom:346.000650px;}
.y126{bottom:346.506150px;}
.y98{bottom:351.451500px;}
.y157{bottom:352.891050px;}
.ycc{bottom:356.037900px;}
.y3a{bottom:362.200650px;}
.y65{bottom:366.781200px;}
.yf9{bottom:367.430250px;}
.y97{bottom:369.486150px;}
.y156{bottom:370.891050px;}
.ycb{bottom:374.086950px;}
.y39{bottom:378.400650px;}
.yf8{bottom:385.586400px;}
.y96{bottom:387.520950px;}
.y155{bottom:388.891050px;}
.yca{bottom:392.135850px;}
.y38{bottom:394.600650px;}
.y125{bottom:404.196750px;}
.y95{bottom:405.555750px;}
.y154{bottom:406.891050px;}
.y37{bottom:410.800650px;}
.yc9{bottom:417.684750px;}
.y64{bottom:418.437000px;}
.y124{bottom:422.287350px;}
.y94{bottom:423.590400px;}
.y153{bottom:424.891050px;}
.y36{bottom:427.000650px;}
.yf7{bottom:430.742700px;}
.yc8{bottom:435.733650px;}
.y63{bottom:436.492800px;}
.y93{bottom:441.625050px;}
.y152{bottom:442.891050px;}
.y35{bottom:443.200650px;}
.yf6{bottom:448.898850px;}
.y123{bottom:449.377950px;}
.yc7{bottom:453.782550px;}
.y62{bottom:454.548600px;}
.y34{bottom:459.400650px;}
.y92{bottom:459.659850px;}
.y151{bottom:460.891050px;}
.yf5{bottom:467.055000px;}
.y122{bottom:467.468700px;}
.yc6{bottom:471.831450px;}
.y61{bottom:472.604400px;}
.y33{bottom:475.600650px;}
.y91{bottom:477.694500px;}
.y150{bottom:478.891050px;}
.y121{bottom:485.559150px;}
.yc5{bottom:489.880350px;}
.y60{bottom:490.660200px;}
.y32{bottom:491.800650px;}
.yf4{bottom:494.211150px;}
.y14f{bottom:496.891050px;}
.y120{bottom:503.649900px;}
.y90{bottom:504.729300px;}
.yc4{bottom:507.929250px;}
.y31{bottom:508.000650px;}
.y5f{bottom:508.716000px;}
.yf3{bottom:512.367300px;}
.y14e{bottom:514.891050px;}
.y11f{bottom:521.740500px;}
.y8f{bottom:522.764100px;}
.y30{bottom:524.200650px;}
.yc3{bottom:525.978150px;}
.y5e{bottom:526.771800px;}
.yf2{bottom:530.523450px;}
.y14d{bottom:532.891050px;}
.y11e{bottom:539.831100px;}
.yc2{bottom:544.027050px;}
.y5d{bottom:544.827600px;}
.y14c{bottom:550.891050px;}
.yf1{bottom:557.679750px;}
.y11d{bottom:557.921700px;}
.y2f{bottom:558.400650px;}
.yc1{bottom:562.075950px;}
.y5c{bottom:562.883400px;}
.y8e{bottom:567.798750px;}
.y14b{bottom:568.891050px;}
.y2e{bottom:574.600650px;}
.yf0{bottom:575.835900px;}
.yc0{bottom:580.124850px;}
.y5b{bottom:580.939200px;}
.y11c{bottom:585.012300px;}
.y8d{bottom:585.833550px;}
.y14a{bottom:586.891050px;}
.y2d{bottom:590.800650px;}
.yef{bottom:593.992050px;}
.ybf{bottom:598.173750px;}
.y5a{bottom:598.995000px;}
.y11b{bottom:603.102900px;}
.y8c{bottom:603.868200px;}
.y149{bottom:604.891050px;}
.y2c{bottom:607.000650px;}
.yee{bottom:612.148200px;}
.ybe{bottom:616.222650px;}
.y59{bottom:617.050800px;}
.y11a{bottom:621.193500px;}
.y8b{bottom:621.903000px;}
.y148{bottom:622.891050px;}
.y2b{bottom:623.200650px;}
.yed{bottom:630.304350px;}
.ybd{bottom:634.271550px;}
.y58{bottom:635.106600px;}
.yb{bottom:637.855200px;}
.y119{bottom:639.284250px;}
.y8a{bottom:639.937650px;}
.y147{bottom:640.891050px;}
.yec{bottom:648.460650px;}
.ybc{bottom:652.320450px;}
.y57{bottom:653.162400px;}
.y118{bottom:657.374700px;}
.y2a{bottom:657.400650px;}
.y89{bottom:657.972450px;}
.y146{bottom:658.891050px;}
.yeb{bottom:666.616800px;}
.ybb{bottom:670.369350px;}
.y56{bottom:671.218200px;}
.y29{bottom:673.600650px;}
.y117{bottom:675.465450px;}
.y88{bottom:676.007100px;}
.y145{bottom:676.891050px;}
.ya{bottom:681.955050px;}
.yea{bottom:684.772950px;}
.yba{bottom:688.418400px;}
.y55{bottom:689.273850px;}
.y28{bottom:689.800650px;}
.y116{bottom:693.556050px;}
.y87{bottom:694.041900px;}
.y144{bottom:694.891050px;}
.y9{bottom:698.155050px;}
.ye9{bottom:702.929100px;}
.y27{bottom:706.000650px;}
.yb9{bottom:706.467150px;}
.y115{bottom:711.646650px;}
.y86{bottom:712.076550px;}
.y143{bottom:712.891050px;}
.y54{bottom:713.329800px;}
.y8{bottom:714.355200px;}
.ye8{bottom:721.085250px;}
.y26{bottom:722.200650px;}
.yb8{bottom:724.516050px;}
.y114{bottom:729.737250px;}
.y85{bottom:730.111350px;}
.y7{bottom:730.555050px;}
.y142{bottom:730.891050px;}
.y25{bottom:738.400650px;}
.ye7{bottom:739.241400px;}
.yb7{bottom:742.565100px;}
.y84{bottom:748.146000px;}
.y141{bottom:748.891050px;}
.y24{bottom:754.600650px;}
.y113{bottom:756.827850px;}
.ye6{bottom:757.397700px;}
.yb6{bottom:760.614000px;}
.y53{bottom:764.985600px;}
.y83{bottom:766.180800px;}
.y140{bottom:766.891050px;}
.y23{bottom:770.800650px;}
.y112{bottom:773.118600px;}
.ye5{bottom:775.553850px;}
.y6{bottom:779.155200px;}
.y82{bottom:784.215600px;}
.y13f{bottom:784.891050px;}
.yb5{bottom:786.162900px;}
.y22{bottom:787.000650px;}
.y111{bottom:789.409050px;}
.y52{bottom:790.241250px;}
.ye4{bottom:793.710000px;}
.y81{bottom:802.250250px;}
.y13e{bottom:802.891050px;}
.y21{bottom:803.200650px;}
.yb4{bottom:804.211800px;}
.y5{bottom:804.355200px;}
.y110{bottom:805.699650px;}
.y51{bottom:806.497050px;}
.ye3{bottom:811.866150px;}
.y20{bottom:819.400650px;}
.y80{bottom:820.284900px;}
.y13d{bottom:820.891050px;}
.yb3{bottom:822.260700px;}
.y50{bottom:822.753000px;}
.y4{bottom:829.555050px;}
.ye2{bottom:830.022450px;}
.y10f{bottom:830.990250px;}
.y1f{bottom:835.600650px;}
.y7f{bottom:838.319700px;}
.y13c{bottom:838.891050px;}
.y4f{bottom:839.008650px;}
.yb2{bottom:840.309600px;}
.ye1{bottom:848.178600px;}
.y10e{bottom:849.081000px;}
.y1e{bottom:851.800800px;}
.y7e{bottom:856.354500px;}
.y13b{bottom:856.891050px;}
.yb1{bottom:858.358500px;}
.ye0{bottom:866.334750px;}
.y4e{bottom:873.264450px;}
.y7d{bottom:874.389150px;}
.y13a{bottom:874.891050px;}
.yb0{bottom:876.407400px;}
.ydf{bottom:884.490900px;}
.y1d{bottom:886.000800px;}
.yc{bottom:890.950500px;}
.y7c{bottom:892.423950px;}
.y139{bottom:892.891050px;}
.y10d{bottom:894.171600px;}
.yaf{bottom:894.456300px;}
.yde{bottom:902.647050px;}
.y1c{bottom:904.000800px;}
.y4d{bottom:907.520250px;}
.y7b{bottom:910.458600px;}
.y138{bottom:910.891050px;}
.y10c{bottom:912.262200px;}
.yae{bottom:912.505200px;}
.ydd{bottom:920.803200px;}
.y1b{bottom:922.000800px;}
.y4c{bottom:923.776050px;}
.y7a{bottom:928.493250px;}
.y137{bottom:928.891050px;}
.y10b{bottom:930.352800px;}
.yad{bottom:930.554100px;}
.y10{bottom:932.274900px;}
.ydc{bottom:938.959500px;}
.y1a{bottom:940.000800px;}
.y4b{bottom:940.031850px;}
.y79{bottom:946.528050px;}
.y136{bottom:946.891050px;}
.y10a{bottom:948.443400px;}
.yac{bottom:948.603000px;}
.yf{bottom:953.874900px;}
.y4a{bottom:956.287650px;}
.ydb{bottom:957.115650px;}
.y19{bottom:958.000800px;}
.y78{bottom:964.562850px;}
.y135{bottom:964.891050px;}
.y3{bottom:965.365350px;}
.y109{bottom:966.534000px;}
.yab{bottom:966.651900px;}
.y49{bottom:972.543450px;}
.ye{bottom:975.474900px;}
.y77{bottom:982.597500px;}
.y134{bottom:982.891050px;}
.yda{bottom:984.271800px;}
.yaa{bottom:984.700800px;}
.y108{bottom:993.624600px;}
.y18{bottom:994.000800px;}
.yd{bottom:1000.354500px;}
.y133{bottom:1000.891050px;}
.yd9{bottom:1002.427950px;}
.ya9{bottom:1002.749700px;}
.y76{bottom:1009.632300px;}
.y107{bottom:1011.715200px;}
.y17{bottom:1013.200800px;}
.y132{bottom:1018.891050px;}
.yd8{bottom:1020.584100px;}
.ya8{bottom:1020.798750px;}
.y48{bottom:1021.199250px;}
.y16{bottom:1034.800800px;}
.y131{bottom:1036.891050px;}
.yd7{bottom:1038.740250px;}
.y106{bottom:1038.805800px;}
.ya7{bottom:1038.847650px;}
.y11{bottom:1044.019500px;}
.y47{bottom:1046.455050px;}
.y75{bottom:1054.666950px;}
.y130{bottom:1054.891050px;}
.y2{bottom:1055.365350px;}
.y15{bottom:1056.400800px;}
.ya6{bottom:1056.896550px;}
.y12{bottom:1065.847650px;}
.y14{bottom:1078.000800px;}
.y13{bottom:1087.675800px;}
.y74{bottom:1097.389200px;}
.ya5{bottom:1098.064200px;}
.y46{bottom:1105.653150px;}
.h9{height:40.025391px;}
.h5{height:40.104492px;}
.hd{height:42.714844px;}
.h7{height:44.472656px;}
.h8{height:44.560547px;}
.hc{height:47.460938px;}
.ha{height:48.919922px;}
.hb{height:53.367188px;}
.h1{height:53.437500px;}
.h4{height:53.472656px;}
.h3{height:62.384766px;}
.h6{height:80.050781px;}
.h2{height:319.781250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.xc{left:-281.940000px;}
.x0{left:0.000000px;}
.xd{left:108.000000px;}
.x2{left:109.725000px;}
.xe{left:130.500000px;}
.x11{left:135.000000px;}
.x4{left:163.828200px;}
.x1{left:227.728800px;}
.xf{left:233.850000px;}
.x3{left:253.206600px;}
.x8{left:265.037550px;}
.xa{left:329.915250px;}
.x5{left:337.978200px;}
.x9{left:359.688600px;}
.x7{left:374.958900px;}
.x6{left:395.001300px;}
.xb{left:427.992150px;}
.x10{left:514.812600px;}
@media print{
.v2{vertical-align:-4.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.418133pt;}
.ls6{letter-spacing:-2.944000pt;}
.ls2{letter-spacing:-2.314667pt;}
.ls7{letter-spacing:-1.792000pt;}
.ls9{letter-spacing:-1.440000pt;}
.ls26{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-1.173333pt;}
.ls1d{letter-spacing:-1.152000pt;}
.ls1c{letter-spacing:-1.008000pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.912000pt;}
.lsf{letter-spacing:-0.864000pt;}
.ls1f{letter-spacing:-0.768000pt;}
.ls24{letter-spacing:-0.693333pt;}
.ls14{letter-spacing:-0.672000pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.624000pt;}
.ls23{letter-spacing:-0.586667pt;}
.ls21{letter-spacing:-0.533333pt;}
.ls1a{letter-spacing:-0.528000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.432000pt;}
.ls22{letter-spacing:-0.426667pt;}
.ls2d{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls32{letter-spacing:-0.288000pt;}
.ls33{letter-spacing:-0.266667pt;}
.ls1e{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:-0.224000pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.144000pt;}
.ls31{letter-spacing:-0.106667pt;}
.ls2b{letter-spacing:-0.053333pt;}
.lsd{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.005333pt;}
.ls17{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.144000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.466667pt;}
.ls30{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.576000pt;}
.ls11{letter-spacing:0.672000pt;}
.ls35{letter-spacing:0.693333pt;}
.ls34{letter-spacing:0.746667pt;}
.ls28{letter-spacing:2.076267pt;}
.ls29{letter-spacing:2.161067pt;}
.ls18{letter-spacing:4.410133pt;}
.ws2{word-spacing:-112.128000pt;}
.ws3{word-spacing:-78.489600pt;}
.ws26{word-spacing:-20.533333pt;}
.ws4{word-spacing:-18.442667pt;}
.ws0{word-spacing:-17.472000pt;}
.ws5{word-spacing:-16.512000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws53{word-spacing:-15.306667pt;}
.ws56{word-spacing:-15.146667pt;}
.ws2b{word-spacing:-14.826667pt;}
.ws2d{word-spacing:-14.666667pt;}
.ws7d{word-spacing:-14.613333pt;}
.ws6{word-spacing:-14.528000pt;}
.ws2a{word-spacing:-14.400000pt;}
.ws7e{word-spacing:-14.346667pt;}
.ws29{word-spacing:-14.293333pt;}
.ws2c{word-spacing:-14.133333pt;}
.wse{word-spacing:-13.728000pt;}
.wsb{word-spacing:-13.653333pt;}
.wsd{word-spacing:-13.632000pt;}
.ws11{word-spacing:-13.536000pt;}
.ws12{word-spacing:-13.392000pt;}
.ws10{word-spacing:-13.296000pt;}
.ws27{word-spacing:-13.248000pt;}
.wsad{word-spacing:-13.200000pt;}
.wsc{word-spacing:-12.720000pt;}
.wsf{word-spacing:-12.672000pt;}
.ws91{word-spacing:-12.576000pt;}
.ws28{word-spacing:-12.432000pt;}
.ws1{word-spacing:-12.230400pt;}
.ws54{word-spacing:-10.714667pt;}
.ws78{word-spacing:-3.840000pt;}
.ws48{word-spacing:-3.733333pt;}
.ws3c{word-spacing:-3.680000pt;}
.ws51{word-spacing:-3.573333pt;}
.ws17{word-spacing:-3.360000pt;}
.ws1a{word-spacing:-3.312000pt;}
.wsa0{word-spacing:-3.253333pt;}
.ws5a{word-spacing:-3.200000pt;}
.ws42{word-spacing:-3.146667pt;}
.ws3f{word-spacing:-2.986667pt;}
.ws98{word-spacing:-2.933333pt;}
.ws6a{word-spacing:-2.880000pt;}
.ws44{word-spacing:-2.826667pt;}
.ws50{word-spacing:-2.666667pt;}
.ws9a{word-spacing:-2.613333pt;}
.ws35{word-spacing:-2.592000pt;}
.ws3e{word-spacing:-2.560000pt;}
.ws49{word-spacing:-2.506667pt;}
.ws74{word-spacing:-2.400000pt;}
.wsb2{word-spacing:-2.352000pt;}
.wsa2{word-spacing:-2.240000pt;}
.ws18{word-spacing:-2.208000pt;}
.ws47{word-spacing:-2.186667pt;}
.ws5f{word-spacing:-2.133333pt;}
.ws5c{word-spacing:-2.080000pt;}
.ws8d{word-spacing:-2.026667pt;}
.wsae{word-spacing:-2.016000pt;}
.ws5b{word-spacing:-1.920000pt;}
.ws99{word-spacing:-1.866667pt;}
.ws1e{word-spacing:-1.824000pt;}
.ws9f{word-spacing:-1.813333pt;}
.ws4b{word-spacing:-1.760000pt;}
.ws80{word-spacing:-1.706667pt;}
.wsb3{word-spacing:-1.584000pt;}
.wsab{word-spacing:-1.546667pt;}
.ws25{word-spacing:-1.536000pt;}
.ws71{word-spacing:-1.493333pt;}
.ws84{word-spacing:-1.386667pt;}
.ws40{word-spacing:-1.333333pt;}
.ws90{word-spacing:-1.280000pt;}
.ws76{word-spacing:-1.226667pt;}
.ws79{word-spacing:-1.173333pt;}
.ws62{word-spacing:-1.120000pt;}
.ws45{word-spacing:-1.066667pt;}
.ws64{word-spacing:-1.013333pt;}
.wsaf{word-spacing:-1.008000pt;}
.ws68{word-spacing:-0.853333pt;}
.wsb0{word-spacing:-0.816000pt;}
.wsb1{word-spacing:-0.768000pt;}
.ws3d{word-spacing:-0.746667pt;}
.ws96{word-spacing:-0.693333pt;}
.ws20{word-spacing:-0.672000pt;}
.wsa3{word-spacing:-0.640000pt;}
.ws61{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.576000pt;}
.ws85{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.384000pt;}
.ws5d{word-spacing:-0.266667pt;}
.ws9e{word-spacing:-0.106667pt;}
.ws55{word-spacing:-0.053333pt;}
.ws72{word-spacing:-0.037333pt;}
.ws7{word-spacing:0.000000pt;}
.ws70{word-spacing:0.106667pt;}
.ws2e{word-spacing:0.144000pt;}
.ws59{word-spacing:0.160000pt;}
.ws3a{word-spacing:0.192000pt;}
.ws82{word-spacing:0.213333pt;}
.ws8{word-spacing:0.224000pt;}
.ws95{word-spacing:0.288000pt;}
.ws75{word-spacing:0.320000pt;}
.ws43{word-spacing:0.426667pt;}
.ws1f{word-spacing:0.480000pt;}
.ws94{word-spacing:0.528000pt;}
.ws3b{word-spacing:0.533333pt;}
.ws22{word-spacing:0.624000pt;}
.ws7b{word-spacing:0.640000pt;}
.ws52{word-spacing:0.693333pt;}
.ws86{word-spacing:0.746667pt;}
.ws39{word-spacing:0.768000pt;}
.ws9b{word-spacing:0.800000pt;}
.ws6b{word-spacing:0.853333pt;}
.ws1b{word-spacing:0.864000pt;}
.ws58{word-spacing:0.960000pt;}
.ws4f{word-spacing:1.173333pt;}
.ws37{word-spacing:1.248000pt;}
.wsa5{word-spacing:1.280000pt;}
.ws19{word-spacing:1.296000pt;}
.wsa4{word-spacing:1.333333pt;}
.ws77{word-spacing:1.386667pt;}
.ws14{word-spacing:1.440000pt;}
.ws67{word-spacing:1.600000pt;}
.ws65{word-spacing:1.760000pt;}
.ws38{word-spacing:1.776000pt;}
.ws97{word-spacing:1.813333pt;}
.ws1c{word-spacing:1.968000pt;}
.ws8c{word-spacing:2.080000pt;}
.ws9{word-spacing:2.090667pt;}
.ws36{word-spacing:2.208000pt;}
.ws66{word-spacing:2.240000pt;}
.ws8a{word-spacing:2.293333pt;}
.ws6c{word-spacing:2.346667pt;}
.ws69{word-spacing:2.400000pt;}
.ws73{word-spacing:2.453333pt;}
.wsa6{word-spacing:2.560000pt;}
.ws8b{word-spacing:2.666667pt;}
.ws15{word-spacing:2.784000pt;}
.ws88{word-spacing:2.986667pt;}
.ws16{word-spacing:3.024000pt;}
.ws89{word-spacing:3.040000pt;}
.ws1d{word-spacing:3.168000pt;}
.ws4d{word-spacing:3.200000pt;}
.ws6e{word-spacing:3.253333pt;}
.ws93{word-spacing:3.360000pt;}
.ws4e{word-spacing:3.413333pt;}
.wsaa{word-spacing:3.573333pt;}
.wsa9{word-spacing:3.680000pt;}
.ws41{word-spacing:3.840000pt;}
.wsa1{word-spacing:3.946667pt;}
.ws63{word-spacing:4.000000pt;}
.ws7a{word-spacing:4.053333pt;}
.ws9c{word-spacing:4.160000pt;}
.ws24{word-spacing:4.176000pt;}
.ws6f{word-spacing:4.320000pt;}
.ws34{word-spacing:4.416000pt;}
.ws4a{word-spacing:4.426667pt;}
.ws46{word-spacing:4.480000pt;}
.ws5e{word-spacing:4.586667pt;}
.ws57{word-spacing:4.640000pt;}
.ws32{word-spacing:4.656000pt;}
.ws8e{word-spacing:4.693333pt;}
.ws2f{word-spacing:4.848000pt;}
.ws6d{word-spacing:4.906667pt;}
.ws87{word-spacing:5.066667pt;}
.ws81{word-spacing:5.120000pt;}
.ws33{word-spacing:5.184000pt;}
.ws7c{word-spacing:5.280000pt;}
.ws30{word-spacing:5.424000pt;}
.wsa8{word-spacing:5.600000pt;}
.ws8f{word-spacing:5.653333pt;}
.ws31{word-spacing:5.712000pt;}
.wsa7{word-spacing:5.760000pt;}
.ws7f{word-spacing:6.186667pt;}
.ws9d{word-spacing:6.453333pt;}
.ws23{word-spacing:6.672000pt;}
.ws83{word-spacing:6.826667pt;}
.ws60{word-spacing:7.093333pt;}
.ws4c{word-spacing:7.413333pt;}
.ws92{word-spacing:7.626667pt;}
.wsac{word-spacing:7.680000pt;}
._e{margin-left:-2495.015467pt;}
._1{margin-left:-14.842667pt;}
._8{margin-left:-5.468267pt;}
._4{margin-left:-4.416000pt;}
._6{margin-left:-2.899200pt;}
._0{margin-left:-1.655467pt;}
._5{width:1.418667pt;}
._7{width:2.397333pt;}
._a{width:3.340800pt;}
._9{width:4.704000pt;}
._f{width:5.640000pt;}
._d{width:6.720000pt;}
._10{width:7.811200pt;}
._3{width:19.910933pt;}
._2{width:79.872000pt;}
._c{width:1274.296533pt;}
._b{width:1649.255467pt;}
.fs9{font-size:37.333333pt;}
.fs1{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs3{font-size:268.800000pt;}
.fs2{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:58.310400pt;}
.y73{bottom:96.000000pt;}
.y163{bottom:110.400000pt;}
.ya4{bottom:112.030800pt;}
.yd6{bottom:112.043467pt;}
.y72{bottom:112.049600pt;}
.y12f{bottom:112.080533pt;}
.y105{bottom:112.138800pt;}
.y161{bottom:121.680933pt;}
.y162{bottom:124.800000pt;}
.ya3{bottom:128.061733pt;}
.y71{bottom:128.099200pt;}
.y104{bottom:128.277733pt;}
.yd5{bottom:134.753600pt;}
.y12e{bottom:136.161067pt;}
.y160{bottom:137.680933pt;}
.y164{bottom:139.200000pt;}
.y45{bottom:139.556133pt;}
.ya2{bottom:144.092667pt;}
.y70{bottom:144.148800pt;}
.y103{bottom:144.416533pt;}
.yd4{bottom:150.797067pt;}
.ya1{bottom:160.123467pt;}
.y6f{bottom:160.198400pt;}
.y102{bottom:160.555200pt;}
.y44{bottom:161.956133pt;}
.ya0{bottom:176.154400pt;}
.y6e{bottom:176.248000pt;}
.y43{bottom:176.356133pt;}
.y101{bottom:184.694133pt;}
.y15f{bottom:185.680933pt;}
.y12d{bottom:187.441600pt;}
.y42{bottom:190.756133pt;}
.yd3{bottom:190.840533pt;}
.y9f{bottom:192.185200pt;}
.y6d{bottom:192.297600pt;}
.y100{bottom:200.832933pt;}
.y15e{bottom:201.680933pt;}
.y12c{bottom:203.522267pt;}
.y41{bottom:205.156133pt;}
.yd2{bottom:206.884000pt;}
.y9e{bottom:208.216000pt;}
.y6c{bottom:208.347200pt;}
.yff{bottom:216.971733pt;}
.y15d{bottom:217.680933pt;}
.y12b{bottom:219.602667pt;}
.yd1{bottom:222.927467pt;}
.y9d{bottom:224.246933pt;}
.y6b{bottom:224.396800pt;}
.y40{bottom:227.556133pt;}
.yfe{bottom:233.110533pt;}
.y15c{bottom:233.680933pt;}
.y12a{bottom:235.683333pt;}
.yd0{bottom:238.970933pt;}
.y9c{bottom:240.277867pt;}
.y6a{bottom:240.446400pt;}
.y3f{bottom:241.956133pt;}
.yfd{bottom:249.249467pt;}
.y15b{bottom:249.680933pt;}
.y129{bottom:251.763867pt;}
.y3e{bottom:256.356133pt;}
.y69{bottom:256.496000pt;}
.ycf{bottom:261.681200pt;}
.y9b{bottom:264.308667pt;}
.yfc{bottom:265.388267pt;}
.y15a{bottom:265.680933pt;}
.y128{bottom:267.844400pt;}
.y3d{bottom:270.756133pt;}
.y68{bottom:272.545600pt;}
.y9a{bottom:280.339600pt;}
.y159{bottom:281.680933pt;}
.y127{bottom:283.924933pt;}
.yce{bottom:284.391333pt;}
.y3c{bottom:285.156133pt;}
.y67{bottom:288.595200pt;}
.yfb{bottom:289.527067pt;}
.y99{bottom:296.370400pt;}
.y158{bottom:297.680933pt;}
.ycd{bottom:300.434667pt;}
.yfa{bottom:304.065867pt;}
.y66{bottom:304.644800pt;}
.y3b{bottom:307.556133pt;}
.y126{bottom:308.005467pt;}
.y98{bottom:312.401333pt;}
.y157{bottom:313.680933pt;}
.ycc{bottom:316.478133pt;}
.y3a{bottom:321.956133pt;}
.y65{bottom:326.027733pt;}
.yf9{bottom:326.604667pt;}
.y97{bottom:328.432133pt;}
.y156{bottom:329.680933pt;}
.ycb{bottom:332.521733pt;}
.y39{bottom:336.356133pt;}
.yf8{bottom:342.743467pt;}
.y96{bottom:344.463067pt;}
.y155{bottom:345.680933pt;}
.yca{bottom:348.565200pt;}
.y38{bottom:350.756133pt;}
.y125{bottom:359.286000pt;}
.y95{bottom:360.494000pt;}
.y154{bottom:361.680933pt;}
.y37{bottom:365.156133pt;}
.yc9{bottom:371.275333pt;}
.y64{bottom:371.944000pt;}
.y124{bottom:375.366533pt;}
.y94{bottom:376.524800pt;}
.y153{bottom:377.680933pt;}
.y36{bottom:379.556133pt;}
.yf7{bottom:382.882400pt;}
.yc8{bottom:387.318800pt;}
.y63{bottom:387.993600pt;}
.y93{bottom:392.555600pt;}
.y152{bottom:393.680933pt;}
.y35{bottom:393.956133pt;}
.yf6{bottom:399.021200pt;}
.y123{bottom:399.447067pt;}
.yc7{bottom:403.362267pt;}
.y62{bottom:404.043200pt;}
.y34{bottom:408.356133pt;}
.y92{bottom:408.586533pt;}
.y151{bottom:409.680933pt;}
.yf5{bottom:415.160000pt;}
.y122{bottom:415.527733pt;}
.yc6{bottom:419.405733pt;}
.y61{bottom:420.092800pt;}
.y33{bottom:422.756133pt;}
.y91{bottom:424.617333pt;}
.y150{bottom:425.680933pt;}
.y121{bottom:431.608133pt;}
.yc5{bottom:435.449200pt;}
.y60{bottom:436.142400pt;}
.y32{bottom:437.156133pt;}
.yf4{bottom:439.298800pt;}
.y14f{bottom:441.680933pt;}
.y120{bottom:447.688800pt;}
.y90{bottom:448.648267pt;}
.yc4{bottom:451.492667pt;}
.y31{bottom:451.556133pt;}
.y5f{bottom:452.192000pt;}
.yf3{bottom:455.437600pt;}
.y14e{bottom:457.680933pt;}
.y11f{bottom:463.769333pt;}
.y8f{bottom:464.679200pt;}
.y30{bottom:465.956133pt;}
.yc3{bottom:467.536133pt;}
.y5e{bottom:468.241600pt;}
.yf2{bottom:471.576400pt;}
.y14d{bottom:473.680933pt;}
.y11e{bottom:479.849867pt;}
.yc2{bottom:483.579600pt;}
.y5d{bottom:484.291200pt;}
.y14c{bottom:489.680933pt;}
.yf1{bottom:495.715333pt;}
.y11d{bottom:495.930400pt;}
.y2f{bottom:496.356133pt;}
.yc1{bottom:499.623067pt;}
.y5c{bottom:500.340800pt;}
.y8e{bottom:504.710000pt;}
.y14b{bottom:505.680933pt;}
.y2e{bottom:510.756133pt;}
.yf0{bottom:511.854133pt;}
.yc0{bottom:515.666533pt;}
.y5b{bottom:516.390400pt;}
.y11c{bottom:520.010933pt;}
.y8d{bottom:520.740933pt;}
.y14a{bottom:521.680933pt;}
.y2d{bottom:525.156133pt;}
.yef{bottom:527.992933pt;}
.ybf{bottom:531.710000pt;}
.y5a{bottom:532.440000pt;}
.y11b{bottom:536.091467pt;}
.y8c{bottom:536.771733pt;}
.y149{bottom:537.680933pt;}
.y2c{bottom:539.556133pt;}
.yee{bottom:544.131733pt;}
.ybe{bottom:547.753467pt;}
.y59{bottom:548.489600pt;}
.y11a{bottom:552.172000pt;}
.y8b{bottom:552.802667pt;}
.y148{bottom:553.680933pt;}
.y2b{bottom:553.956133pt;}
.yed{bottom:560.270533pt;}
.ybd{bottom:563.796933pt;}
.y58{bottom:564.539200pt;}
.yb{bottom:566.982400pt;}
.y119{bottom:568.252667pt;}
.y8a{bottom:568.833467pt;}
.y147{bottom:569.680933pt;}
.yec{bottom:576.409467pt;}
.ybc{bottom:579.840400pt;}
.y57{bottom:580.588800pt;}
.y118{bottom:584.333067pt;}
.y2a{bottom:584.356133pt;}
.y89{bottom:584.864400pt;}
.y146{bottom:585.680933pt;}
.yeb{bottom:592.548267pt;}
.ybb{bottom:595.883867pt;}
.y56{bottom:596.638400pt;}
.y29{bottom:598.756133pt;}
.y117{bottom:600.413733pt;}
.y88{bottom:600.895200pt;}
.y145{bottom:601.680933pt;}
.ya{bottom:606.182267pt;}
.yea{bottom:608.687067pt;}
.yba{bottom:611.927467pt;}
.y55{bottom:612.687867pt;}
.y28{bottom:613.156133pt;}
.y116{bottom:616.494267pt;}
.y87{bottom:616.926133pt;}
.y144{bottom:617.680933pt;}
.y9{bottom:620.582267pt;}
.ye9{bottom:624.825867pt;}
.y27{bottom:627.556133pt;}
.yb9{bottom:627.970800pt;}
.y115{bottom:632.574800pt;}
.y86{bottom:632.956933pt;}
.y143{bottom:633.680933pt;}
.y54{bottom:634.070933pt;}
.y8{bottom:634.982400pt;}
.ye8{bottom:640.964667pt;}
.y26{bottom:641.956133pt;}
.yb8{bottom:644.014267pt;}
.y114{bottom:648.655333pt;}
.y85{bottom:648.987867pt;}
.y7{bottom:649.382267pt;}
.y142{bottom:649.680933pt;}
.y25{bottom:656.356133pt;}
.ye7{bottom:657.103467pt;}
.yb7{bottom:660.057867pt;}
.y84{bottom:665.018667pt;}
.y141{bottom:665.680933pt;}
.y24{bottom:670.756133pt;}
.y113{bottom:672.735867pt;}
.ye6{bottom:673.242400pt;}
.yb6{bottom:676.101333pt;}
.y53{bottom:679.987200pt;}
.y83{bottom:681.049600pt;}
.y140{bottom:681.680933pt;}
.y23{bottom:685.156133pt;}
.y112{bottom:687.216533pt;}
.ye5{bottom:689.381200pt;}
.y6{bottom:692.582400pt;}
.y82{bottom:697.080533pt;}
.y13f{bottom:697.680933pt;}
.yb5{bottom:698.811467pt;}
.y22{bottom:699.556133pt;}
.y111{bottom:701.696933pt;}
.y52{bottom:702.436667pt;}
.ye4{bottom:705.520000pt;}
.y81{bottom:713.111333pt;}
.y13e{bottom:713.680933pt;}
.y21{bottom:713.956133pt;}
.yb4{bottom:714.854933pt;}
.y5{bottom:714.982400pt;}
.y110{bottom:716.177467pt;}
.y51{bottom:716.886267pt;}
.ye3{bottom:721.658800pt;}
.y20{bottom:728.356133pt;}
.y80{bottom:729.142133pt;}
.y13d{bottom:729.680933pt;}
.yb3{bottom:730.898400pt;}
.y50{bottom:731.336000pt;}
.y4{bottom:737.382267pt;}
.ye2{bottom:737.797733pt;}
.y10f{bottom:738.658000pt;}
.y1f{bottom:742.756133pt;}
.y7f{bottom:745.173067pt;}
.y13c{bottom:745.680933pt;}
.y4f{bottom:745.785467pt;}
.yb2{bottom:746.941867pt;}
.ye1{bottom:753.936533pt;}
.y10e{bottom:754.738667pt;}
.y1e{bottom:757.156267pt;}
.y7e{bottom:761.204000pt;}
.y13b{bottom:761.680933pt;}
.yb1{bottom:762.985333pt;}
.ye0{bottom:770.075333pt;}
.y4e{bottom:776.235067pt;}
.y7d{bottom:777.234800pt;}
.y13a{bottom:777.680933pt;}
.yb0{bottom:779.028800pt;}
.ydf{bottom:786.214133pt;}
.y1d{bottom:787.556267pt;}
.yc{bottom:791.956000pt;}
.y7c{bottom:793.265733pt;}
.y139{bottom:793.680933pt;}
.y10d{bottom:794.819200pt;}
.yaf{bottom:795.072267pt;}
.yde{bottom:802.352933pt;}
.y1c{bottom:803.556267pt;}
.y4d{bottom:806.684667pt;}
.y7b{bottom:809.296533pt;}
.y138{bottom:809.680933pt;}
.y10c{bottom:810.899733pt;}
.yae{bottom:811.115733pt;}
.ydd{bottom:818.491733pt;}
.y1b{bottom:819.556267pt;}
.y4c{bottom:821.134267pt;}
.y7a{bottom:825.327333pt;}
.y137{bottom:825.680933pt;}
.y10b{bottom:826.980267pt;}
.yad{bottom:827.159200pt;}
.y10{bottom:828.688800pt;}
.ydc{bottom:834.630667pt;}
.y1a{bottom:835.556267pt;}
.y4b{bottom:835.583867pt;}
.y79{bottom:841.358267pt;}
.y136{bottom:841.680933pt;}
.y10a{bottom:843.060800pt;}
.yac{bottom:843.202667pt;}
.yf{bottom:847.888800pt;}
.y4a{bottom:850.033467pt;}
.ydb{bottom:850.769467pt;}
.y19{bottom:851.556267pt;}
.y78{bottom:857.389200pt;}
.y135{bottom:857.680933pt;}
.y3{bottom:858.102533pt;}
.y109{bottom:859.141333pt;}
.yab{bottom:859.246133pt;}
.y49{bottom:864.483067pt;}
.ye{bottom:867.088800pt;}
.y77{bottom:873.420000pt;}
.y134{bottom:873.680933pt;}
.yda{bottom:874.908267pt;}
.yaa{bottom:875.289600pt;}
.y108{bottom:883.221867pt;}
.y18{bottom:883.556267pt;}
.yd{bottom:889.204000pt;}
.y133{bottom:889.680933pt;}
.yd9{bottom:891.047067pt;}
.ya9{bottom:891.333067pt;}
.y76{bottom:897.450933pt;}
.y107{bottom:899.302400pt;}
.y17{bottom:900.622933pt;}
.y132{bottom:905.680933pt;}
.yd8{bottom:907.185867pt;}
.ya8{bottom:907.376667pt;}
.y48{bottom:907.732667pt;}
.y16{bottom:919.822933pt;}
.y131{bottom:921.680933pt;}
.yd7{bottom:923.324667pt;}
.y106{bottom:923.382933pt;}
.ya7{bottom:923.420133pt;}
.y11{bottom:928.017333pt;}
.y47{bottom:930.182267pt;}
.y75{bottom:937.481733pt;}
.y130{bottom:937.680933pt;}
.y2{bottom:938.102533pt;}
.y15{bottom:939.022933pt;}
.ya6{bottom:939.463600pt;}
.y12{bottom:947.420133pt;}
.y14{bottom:958.222933pt;}
.y13{bottom:966.822933pt;}
.y74{bottom:975.457067pt;}
.ya5{bottom:976.057067pt;}
.y46{bottom:982.802800pt;}
.h9{height:35.578125pt;}
.h5{height:35.648438pt;}
.hd{height:37.968750pt;}
.h7{height:39.531250pt;}
.h8{height:39.609375pt;}
.hc{height:42.187500pt;}
.ha{height:43.484375pt;}
.hb{height:47.437500pt;}
.h1{height:47.500000pt;}
.h4{height:47.531250pt;}
.h3{height:55.453125pt;}
.h6{height:71.156250pt;}
.h2{height:284.250000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.xc{left:-250.613333pt;}
.x0{left:0.000000pt;}
.xd{left:96.000000pt;}
.x2{left:97.533333pt;}
.xe{left:116.000000pt;}
.x11{left:120.000000pt;}
.x4{left:145.625067pt;}
.x1{left:202.425600pt;}
.xf{left:207.866667pt;}
.x3{left:225.072533pt;}
.x8{left:235.588933pt;}
.xa{left:293.258000pt;}
.x5{left:300.425067pt;}
.x9{left:319.723200pt;}
.x7{left:333.296800pt;}
.x6{left:351.112267pt;}
.xb{left:380.437467pt;}
.x10{left:457.611200pt;}
}




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