
    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_3cedc5c909f0dec677084388.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a321f10f72714329ab5ef97b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_9a96c889a413cfa8da21ac5b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.851000;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_ee6dd4e9784a009009732941.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_f2481a6141606a0ee55c3e70.woff')format("woff");}.ff5{font-family:ff5;line-height:1.045000;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_72b1cc3d102541a71044d541.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_9e5c7ad9fd7fdc4f340e12e0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.070312;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_4517faef342d608f72414680.woff')format("woff");}.ff8{font-family:ff8;line-height:0.947266;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:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls71{letter-spacing:-11.820000px;}
.ls64{letter-spacing:-8.136000px;}
.ls4e{letter-spacing:-7.992000px;}
.ls39{letter-spacing:-7.632000px;}
.ls3c{letter-spacing:-7.560000px;}
.ls2c{letter-spacing:-7.488000px;}
.ls57{letter-spacing:-7.416000px;}
.ls49{letter-spacing:-7.344000px;}
.ls4a{letter-spacing:-7.272000px;}
.ls2e{letter-spacing:-7.200000px;}
.ls44{letter-spacing:-7.056000px;}
.ls4f{letter-spacing:-6.984000px;}
.ls51{letter-spacing:-6.696000px;}
.ls4b{letter-spacing:-6.552000px;}
.ls60{letter-spacing:-5.832000px;}
.ls63{letter-spacing:-3.168000px;}
.ls2d{letter-spacing:-3.024000px;}
.ls1c{letter-spacing:-2.808000px;}
.ls62{letter-spacing:-2.376000px;}
.ls38{letter-spacing:-2.160000px;}
.ls12{letter-spacing:-2.016000px;}
.ls25{letter-spacing:-1.872000px;}
.ls45{letter-spacing:-1.800000px;}
.ls3b{letter-spacing:-1.584000px;}
.ls3a{letter-spacing:-1.440000px;}
.ls5f{letter-spacing:-1.152000px;}
.ls3d{letter-spacing:-1.080000px;}
.ls5e{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.864000px;}
.ls58{letter-spacing:-0.792000px;}
.ls37{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.648000px;}
.ls70{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.576000px;}
.ls24{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.300000px;}
.ls48{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.072000px;}
.lsc{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls6e{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.185400px;}
.ls1b{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.288000px;}
.ls6b{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.576000px;}
.ls28{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.792000px;}
.ls36{letter-spacing:0.864000px;}
.ls41{letter-spacing:0.936000px;}
.ls46{letter-spacing:1.008000px;}
.ls47{letter-spacing:1.080000px;}
.ls56{letter-spacing:1.152000px;}
.ls5d{letter-spacing:1.224000px;}
.ls29{letter-spacing:1.248000px;}
.ls61{letter-spacing:1.368000px;}
.ls59{letter-spacing:1.440000px;}
.ls52{letter-spacing:1.656000px;}
.ls65{letter-spacing:2.016000px;}
.ls26{letter-spacing:2.160000px;}
.ls32{letter-spacing:2.520000px;}
.ls54{letter-spacing:2.664000px;}
.ls33{letter-spacing:3.456000px;}
.ls6f{letter-spacing:3.660000px;}
.ls42{letter-spacing:3.744000px;}
.ls6d{letter-spacing:3.960000px;}
.ls6c{letter-spacing:4.080000px;}
.ls35{letter-spacing:4.176000px;}
.ls1{letter-spacing:4.320000px;}
.ls3f{letter-spacing:4.536000px;}
.ls6a{letter-spacing:4.752000px;}
.ls3e{letter-spacing:4.824000px;}
.ls40{letter-spacing:4.896000px;}
.ls43{letter-spacing:5.112000px;}
.ls55{letter-spacing:5.688000px;}
.ls31{letter-spacing:5.904000px;}
.ls5a{letter-spacing:5.976000px;}
.ls5b{letter-spacing:6.048000px;}
.ls14{letter-spacing:6.192000px;}
.ls1f{letter-spacing:6.336000px;}
.ls69{letter-spacing:6.552000px;}
.ls27{letter-spacing:6.624000px;}
.ls2f{letter-spacing:6.696000px;}
.lsb{letter-spacing:6.768000px;}
.ls34{letter-spacing:7.272000px;}
.ls53{letter-spacing:8.400000px;}
.ls2{letter-spacing:8.460000px;}
.ls6{letter-spacing:8.928000px;}
.ls4c{letter-spacing:9.000000px;}
.ls30{letter-spacing:9.072000px;}
.ls16{letter-spacing:9.144000px;}
.ls19{letter-spacing:9.216000px;}
.ls50{letter-spacing:9.288000px;}
.ls4d{letter-spacing:9.360000px;}
.lsa{letter-spacing:9.432000px;}
.ls7{letter-spacing:9.504000px;}
.ls9{letter-spacing:9.576000px;}
.ls68{letter-spacing:10.152000px;}
.ls66{letter-spacing:10.656000px;}
.ls0{letter-spacing:10.740000px;}
.ls67{letter-spacing:10.944000px;}
.ls5c{letter-spacing:11.880000px;}
.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;}
}
.ws3b{word-spacing:-52.848000px;}
.ws6d{word-spacing:-49.752000px;}
.ws48{word-spacing:-49.464000px;}
.ws46{word-spacing:-49.392000px;}
.ws47{word-spacing:-49.320000px;}
.ws6{word-spacing:-49.248000px;}
.ws2c{word-spacing:-49.176000px;}
.ws38{word-spacing:-49.104000px;}
.ws4a{word-spacing:-49.032000px;}
.ws44{word-spacing:-48.960000px;}
.ws45{word-spacing:-48.888000px;}
.ws18{word-spacing:-48.816000px;}
.ws23{word-spacing:-48.744000px;}
.ws17{word-spacing:-48.672000px;}
.ws5{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.ws3a{word-spacing:-48.456000px;}
.ws36{word-spacing:-48.384000px;}
.ws2b{word-spacing:-48.312000px;}
.ws49{word-spacing:-48.240000px;}
.ws29{word-spacing:-48.168000px;}
.ws35{word-spacing:-48.096000px;}
.ws69{word-spacing:-48.024000px;}
.ws22{word-spacing:-47.952000px;}
.ws37{word-spacing:-47.880000px;}
.ws5c{word-spacing:-47.808000px;}
.ws76{word-spacing:-47.736000px;}
.ws79{word-spacing:-47.664000px;}
.ws6a{word-spacing:-47.592000px;}
.ws6b{word-spacing:-47.520000px;}
.ws3c{word-spacing:-47.448000px;}
.ws39{word-spacing:-47.088000px;}
.ws75{word-spacing:-46.152000px;}
.ws7f{word-spacing:-40.740000px;}
.ws16{word-spacing:-40.440000px;}
.ws6c{word-spacing:-36.720000px;}
.ws7{word-spacing:-32.352000px;}
.ws66{word-spacing:-29.736000px;}
.ws2{word-spacing:-25.320000px;}
.ws5d{word-spacing:-25.260000px;}
.ws7a{word-spacing:-21.096000px;}
.ws65{word-spacing:-20.520000px;}
.ws68{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.ws51{word-spacing:-20.088000px;}
.ws67{word-spacing:-19.872000px;}
.ws21{word-spacing:-19.800000px;}
.ws74{word-spacing:-19.728000px;}
.ws52{word-spacing:-17.784000px;}
.ws2a{word-spacing:-17.424000px;}
.ws3{word-spacing:-14.162400px;}
.ws7d{word-spacing:-13.488000px;}
.ws64{word-spacing:-8.460000px;}
.ws63{word-spacing:-8.400000px;}
.ws7e{word-spacing:-4.752000px;}
.ws61{word-spacing:-1.656000px;}
.ws62{word-spacing:-1.440000px;}
.ws73{word-spacing:-1.368000px;}
.ws71{word-spacing:-1.224000px;}
.ws5e{word-spacing:-1.152000px;}
.ws4e{word-spacing:-1.080000px;}
.ws4c{word-spacing:-1.008000px;}
.ws4d{word-spacing:-0.936000px;}
.ws42{word-spacing:-0.864000px;}
.wse{word-spacing:-0.792000px;}
.ws14{word-spacing:-0.720000px;}
.ws33{word-spacing:-0.648000px;}
.ws1e{word-spacing:-0.576000px;}
.ws11{word-spacing:-0.504000px;}
.ws27{word-spacing:-0.480000px;}
.ws24{word-spacing:-0.432000px;}
.ws1a{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.336000px;}
.ws82{word-spacing:-0.300000px;}
.ws1b{word-spacing:-0.288000px;}
.ws20{word-spacing:-0.240000px;}
.ws19{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.144000px;}
.wsc{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.ws2e{word-spacing:0.072000px;}
.ws25{word-spacing:0.144000px;}
.ws30{word-spacing:0.216000px;}
.ws50{word-spacing:0.288000px;}
.wsb{word-spacing:0.300000px;}
.ws1f{word-spacing:0.360000px;}
.ws2d{word-spacing:0.432000px;}
.ws26{word-spacing:0.504000px;}
.ws12{word-spacing:0.576000px;}
.ws83{word-spacing:0.600000px;}
.wsd{word-spacing:0.648000px;}
.ws3d{word-spacing:0.720000px;}
.ws60{word-spacing:0.792000px;}
.wsf{word-spacing:0.864000px;}
.ws10{word-spacing:0.936000px;}
.ws6f{word-spacing:1.008000px;}
.ws6e{word-spacing:1.080000px;}
.ws70{word-spacing:1.152000px;}
.ws80{word-spacing:1.392000px;}
.ws40{word-spacing:1.440000px;}
.ws41{word-spacing:1.584000px;}
.ws9{word-spacing:1.800000px;}
.ws28{word-spacing:1.872000px;}
.ws15{word-spacing:2.016000px;}
.ws3e{word-spacing:2.160000px;}
.ws1d{word-spacing:2.808000px;}
.ws32{word-spacing:3.024000px;}
.ws77{word-spacing:3.168000px;}
.ws81{word-spacing:3.360000px;}
.ws7c{word-spacing:4.392000px;}
.ws7b{word-spacing:4.464000px;}
.ws5b{word-spacing:5.040000px;}
.ws72{word-spacing:5.832000px;}
.ws2f{word-spacing:6.048000px;}
.ws1c{word-spacing:6.264000px;}
.ws55{word-spacing:6.552000px;}
.ws5a{word-spacing:6.696000px;}
.ws59{word-spacing:6.984000px;}
.ws4b{word-spacing:7.056000px;}
.ws34{word-spacing:7.200000px;}
.ws54{word-spacing:7.272000px;}
.ws53{word-spacing:7.344000px;}
.ws5f{word-spacing:7.416000px;}
.ws31{word-spacing:7.488000px;}
.ws43{word-spacing:7.560000px;}
.ws3f{word-spacing:7.632000px;}
.ws56{word-spacing:7.992000px;}
.ws78{word-spacing:8.136000px;}
.ws0{word-spacing:8.400000px;}
.ws57{word-spacing:9.576000px;}
.ws58{word-spacing:9.864000px;}
.ws4f{word-spacing:10.152000px;}
.ws84{word-spacing:11.820000px;}
._0{margin-left:-940.440000px;}
._13{margin-left:-20.028000px;}
._12{margin-left:-17.784000px;}
._11{margin-left:-15.744000px;}
._e{margin-left:-12.204000px;}
._18{margin-left:-10.548000px;}
._10{margin-left:-8.640000px;}
._f{margin-left:-7.200000px;}
._1{margin-left:-5.940000px;}
._a{margin-left:-4.596000px;}
._6{margin-left:-3.000000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._b{width:2.868000px;}
._4{width:4.200000px;}
._9{width:6.168000px;}
._5{width:8.160000px;}
._7{width:9.720000px;}
._8{width:11.136000px;}
._16{width:12.720000px;}
._15{width:14.172000px;}
._14{width:15.276000px;}
._c{width:31.646100px;}
._17{width:45.216000px;}
._d{width:201.540000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.257850px;}
.y6b{bottom:93.260700px;}
.y12b{bottom:93.263700px;}
.y20{bottom:138.257850px;}
.y44{bottom:138.258150px;}
.y8e{bottom:138.260700px;}
.ye2{bottom:139.181550px;}
.yd6{bottom:139.367850px;}
.y12a{bottom:140.574150px;}
.y158{bottom:141.857700px;}
.y101{bottom:142.465050px;}
.y1f{bottom:153.257850px;}
.y8d{bottom:153.260700px;}
.y129{bottom:155.574150px;}
.y6a{bottom:157.465350px;}
.y43{bottom:157.465650px;}
.y157{bottom:160.757700px;}
.ydc{bottom:160.757850px;}
.yb2{bottom:160.760700px;}
.ye1{bottom:162.275550px;}
.yd5{bottom:162.461850px;}
.y1e{bottom:168.257850px;}
.y128{bottom:170.574150px;}
.y8c{bottom:172.468200px;}
.y69{bottom:175.757850px;}
.y156{bottom:179.657700px;}
.ydb{bottom:183.257850px;}
.yb1{bottom:183.260700px;}
.ye0{bottom:185.369550px;}
.y100{bottom:185.537700px;}
.yd4{bottom:185.555850px;}
.y127{bottom:185.574150px;}
.y1d{bottom:187.465350px;}
.y68{bottom:190.757850px;}
.y42{bottom:198.078000px;}
.y155{bottom:198.557700px;}
.y126{bottom:200.574150px;}
.y67{bottom:205.757850px;}
.yb0{bottom:205.760700px;}
.ydf{bottom:208.463550px;}
.yff{bottom:208.631700px;}
.yd3{bottom:208.649850px;}
.y125{bottom:215.574150px;}
.y154{bottom:217.457700px;}
.y8b{bottom:218.330700px;}
.y66{bottom:220.757850px;}
.y41{bottom:220.884000px;}
.yda{bottom:228.257850px;}
.yaf{bottom:228.260700px;}
.y124{bottom:230.574150px;}
.y1c{bottom:230.960250px;}
.yde{bottom:231.557550px;}
.yfe{bottom:231.725700px;}
.yd2{bottom:231.743850px;}
.y65{bottom:235.757850px;}
.y153{bottom:236.357700px;}
.y8a{bottom:241.136700px;}
.y40{bottom:243.690000px;}
.y123{bottom:245.574150px;}
.y64{bottom:250.757850px;}
.yae{bottom:250.760700px;}
.y1b{bottom:253.316250px;}
.ydd{bottom:254.657550px;}
.yfd{bottom:254.819700px;}
.yd1{bottom:254.837850px;}
.y152{bottom:255.257700px;}
.y122{bottom:260.574150px;}
.y17c{bottom:262.013700px;}
.y89{bottom:263.942700px;}
.y63{bottom:265.757850px;}
.y3f{bottom:266.496000px;}
.yd9{bottom:273.257850px;}
.yad{bottom:273.260700px;}
.y151{bottom:274.157700px;}
.y121{bottom:275.574150px;}
.y1a{bottom:275.672250px;}
.yfc{bottom:277.913700px;}
.yd0{bottom:277.931850px;}
.y62{bottom:280.757850px;}
.y17b{bottom:280.763700px;}
.y88{bottom:286.748700px;}
.y3e{bottom:289.302000px;}
.y120{bottom:290.574150px;}
.y150{bottom:293.057700px;}
.yd8{bottom:295.757850px;}
.yac{bottom:295.760700px;}
.y19{bottom:298.028250px;}
.y17a{bottom:299.513700px;}
.y61{bottom:299.965350px;}
.yfb{bottom:301.007700px;}
.ycf{bottom:301.025850px;}
.y11f{bottom:305.574150px;}
.y87{bottom:309.554700px;}
.y14f{bottom:311.957700px;}
.y3d{bottom:312.108000px;}
.yd7{bottom:318.257850px;}
.yab{bottom:318.260700px;}
.y179{bottom:318.263700px;}
.y18{bottom:320.384250px;}
.y11e{bottom:320.574150px;}
.yfa{bottom:324.101700px;}
.yce{bottom:324.119850px;}
.y14e{bottom:330.857700px;}
.y86{bottom:332.264700px;}
.y3c{bottom:334.914000px;}
.y11d{bottom:335.574150px;}
.y60{bottom:340.757850px;}
.yaa{bottom:340.760700px;}
.y17{bottom:342.740250px;}
.yf9{bottom:347.195700px;}
.ycd{bottom:347.213850px;}
.y178{bottom:348.263700px;}
.y14d{bottom:349.757700px;}
.y85{bottom:355.070700px;}
.y11c{bottom:356.958150px;}
.y3b{bottom:357.720000px;}
.y5f{bottom:363.257850px;}
.ya9{bottom:363.260700px;}
.y16{bottom:365.096250px;}
.y14c{bottom:368.657700px;}
.yf8{bottom:370.289700px;}
.ycc{bottom:370.307850px;}
.y84{bottom:377.876700px;}
.y3a{bottom:380.526000px;}
.y5e{bottom:385.757850px;}
.ya8{bottom:385.760700px;}
.y15{bottom:387.452250px;}
.y14b{bottom:387.557700px;}
.y177{bottom:389.513700px;}
.yf7{bottom:393.383700px;}
.ycb{bottom:393.401850px;}
.y83{bottom:400.682700px;}
.y11b{bottom:401.207850px;}
.y39{bottom:403.332000px;}
.y14a{bottom:406.457700px;}
.y5d{bottom:408.257850px;}
.ya7{bottom:408.260700px;}
.y176{bottom:408.263700px;}
.y14{bottom:409.808250px;}
.yf6{bottom:416.477700px;}
.yca{bottom:416.495850px;}
.y11a{bottom:423.113850px;}
.y82{bottom:423.488700px;}
.y149{bottom:425.357700px;}
.y38{bottom:426.138000px;}
.y175{bottom:427.013700px;}
.y5c{bottom:430.757850px;}
.ya6{bottom:430.760700px;}
.y13{bottom:432.164250px;}
.yf5{bottom:439.571700px;}
.yc9{bottom:439.589850px;}
.y148{bottom:444.257700px;}
.y119{bottom:445.019850px;}
.y174{bottom:445.763700px;}
.y81{bottom:446.294700px;}
.y37{bottom:448.944000px;}
.y5b{bottom:453.257850px;}
.ya5{bottom:453.260700px;}
.y12{bottom:454.520250px;}
.yf4{bottom:462.665700px;}
.yc8{bottom:462.683850px;}
.y147{bottom:463.157700px;}
.y173{bottom:464.513700px;}
.y118{bottom:466.925850px;}
.y80{bottom:469.100700px;}
.y36{bottom:471.750000px;}
.y5a{bottom:475.757850px;}
.ya4{bottom:475.760700px;}
.y11{bottom:476.822250px;}
.y146{bottom:482.057700px;}
.y172{bottom:483.263700px;}
.yf3{bottom:485.759700px;}
.yc7{bottom:485.777850px;}
.y117{bottom:488.831850px;}
.y7f{bottom:491.906700px;}
.y35{bottom:494.556000px;}
.y59{bottom:498.257850px;}
.ya3{bottom:498.260700px;}
.y10{bottom:499.178250px;}
.y145{bottom:500.957700px;}
.y171{bottom:502.013700px;}
.yf2{bottom:508.853700px;}
.yc6{bottom:508.871850px;}
.y116{bottom:510.737850px;}
.y7e{bottom:514.712700px;}
.y34{bottom:517.362000px;}
.y144{bottom:519.857700px;}
.y58{bottom:520.757850px;}
.ya2{bottom:520.760700px;}
.y170{bottom:520.763700px;}
.yf{bottom:521.534250px;}
.yf1{bottom:531.947700px;}
.yc5{bottom:531.965850px;}
.y115{bottom:532.643850px;}
.y7d{bottom:537.518700px;}
.y143{bottom:538.757700px;}
.y16f{bottom:539.513700px;}
.y33{bottom:540.168000px;}
.y57{bottom:543.257850px;}
.ya1{bottom:543.260700px;}
.ye{bottom:543.890250px;}
.y114{bottom:554.549850px;}
.yf0{bottom:555.041700px;}
.yc4{bottom:555.059850px;}
.y142{bottom:557.657700px;}
.y16e{bottom:558.263700px;}
.y7c{bottom:560.324700px;}
.y32{bottom:562.974000px;}
.y56{bottom:565.757850px;}
.ya0{bottom:565.760700px;}
.yd{bottom:566.246250px;}
.y113{bottom:576.455850px;}
.y141{bottom:576.557700px;}
.y16d{bottom:577.013700px;}
.yef{bottom:578.135700px;}
.yc3{bottom:578.153850px;}
.y7b{bottom:583.130700px;}
.y31{bottom:585.780000px;}
.y55{bottom:588.257850px;}
.y9f{bottom:588.260700px;}
.yc{bottom:588.602250px;}
.y140{bottom:595.457700px;}
.y16c{bottom:595.763700px;}
.y112{bottom:598.361850px;}
.yee{bottom:601.229700px;}
.yc2{bottom:601.247850px;}
.y7a{bottom:605.936700px;}
.y30{bottom:608.424000px;}
.y54{bottom:610.757850px;}
.y9e{bottom:610.760700px;}
.yb{bottom:610.958250px;}
.y16b{bottom:614.513700px;}
.y111{bottom:620.267850px;}
.y13f{bottom:620.723700px;}
.yed{bottom:624.323700px;}
.yc1{bottom:624.341850px;}
.y79{bottom:628.742700px;}
.y2f{bottom:631.068000px;}
.y53{bottom:633.257850px;}
.y9d{bottom:633.260700px;}
.y16a{bottom:633.263700px;}
.ya{bottom:633.314250px;}
.y110{bottom:642.173850px;}
.yec{bottom:647.417700px;}
.yc0{bottom:647.435850px;}
.y78{bottom:651.548700px;}
.y169{bottom:652.013700px;}
.y2e{bottom:653.712000px;}
.y9{bottom:655.670250px;}
.y52{bottom:655.757850px;}
.y9c{bottom:655.760700px;}
.y10f{bottom:664.079850px;}
.y13e{bottom:666.179700px;}
.yeb{bottom:670.511700px;}
.ybf{bottom:670.529850px;}
.y168{bottom:670.763700px;}
.y77{bottom:674.354700px;}
.y2d{bottom:676.356000px;}
.y8{bottom:678.026250px;}
.y51{bottom:678.257850px;}
.y9b{bottom:678.260700px;}
.y13d{bottom:681.479700px;}
.y10e{bottom:685.985850px;}
.y167{bottom:689.513700px;}
.yea{bottom:693.605700px;}
.ybe{bottom:693.623850px;}
.y13c{bottom:696.779700px;}
.y76{bottom:697.160700px;}
.y2c{bottom:699.000000px;}
.y7{bottom:700.376400px;}
.y50{bottom:700.757850px;}
.y9a{bottom:700.760700px;}
.y10d{bottom:707.891850px;}
.y166{bottom:708.263700px;}
.y13b{bottom:712.079700px;}
.ye9{bottom:716.699700px;}
.ybd{bottom:716.717850px;}
.y75{bottom:719.960700px;}
.y2b{bottom:721.644000px;}
.y4f{bottom:723.257850px;}
.y99{bottom:723.260700px;}
.y165{bottom:727.013700px;}
.y13a{bottom:727.379700px;}
.y10c{bottom:729.797850px;}
.ye8{bottom:739.793700px;}
.ybc{bottom:739.811850px;}
.y139{bottom:742.679700px;}
.y2a{bottom:744.288000px;}
.y6{bottom:745.226400px;}
.y4e{bottom:745.757850px;}
.y98{bottom:745.760700px;}
.y164{bottom:745.763700px;}
.y10b{bottom:751.703850px;}
.y138{bottom:757.979700px;}
.ye7{bottom:762.887700px;}
.ybb{bottom:762.905850px;}
.y5{bottom:763.976400px;}
.y163{bottom:764.513700px;}
.y74{bottom:765.512700px;}
.y29{bottom:766.932000px;}
.y4d{bottom:768.257850px;}
.y97{bottom:768.260700px;}
.y137{bottom:773.279700px;}
.y10a{bottom:773.609850px;}
.y162{bottom:783.263700px;}
.ye6{bottom:785.981700px;}
.yba{bottom:785.999850px;}
.y73{bottom:788.318700px;}
.y136{bottom:788.579700px;}
.y28{bottom:789.576000px;}
.y4c{bottom:790.757850px;}
.y96{bottom:790.760700px;}
.y109{bottom:795.515850px;}
.y161{bottom:802.013700px;}
.y135{bottom:803.879700px;}
.y4{bottom:806.112150px;}
.ye5{bottom:809.075700px;}
.yb9{bottom:809.093850px;}
.y72{bottom:811.124700px;}
.y27{bottom:812.220000px;}
.y4b{bottom:813.257850px;}
.y95{bottom:813.260700px;}
.y108{bottom:817.421850px;}
.y134{bottom:819.179700px;}
.y160{bottom:820.763700px;}
.y3{bottom:828.612150px;}
.ye4{bottom:832.169700px;}
.yb8{bottom:832.187850px;}
.y71{bottom:833.930700px;}
.y133{bottom:834.479700px;}
.y26{bottom:834.864000px;}
.y4a{bottom:835.757850px;}
.y94{bottom:835.760700px;}
.y107{bottom:839.327850px;}
.y15f{bottom:839.513700px;}
.y132{bottom:849.779700px;}
.ye3{bottom:855.263700px;}
.yb7{bottom:855.281850px;}
.y70{bottom:856.736700px;}
.y25{bottom:857.531850px;}
.y49{bottom:858.257850px;}
.y93{bottom:858.260700px;}
.y15e{bottom:858.263700px;}
.y106{bottom:861.233850px;}
.y131{bottom:865.079700px;}
.y15d{bottom:877.013700px;}
.yb6{bottom:878.375850px;}
.y6f{bottom:879.542700px;}
.y24{bottom:880.175850px;}
.y130{bottom:880.379700px;}
.y48{bottom:880.757850px;}
.y92{bottom:880.760700px;}
.y105{bottom:883.139850px;}
.y12f{bottom:895.679700px;}
.y2{bottom:895.757850px;}
.y15c{bottom:895.763700px;}
.yb5{bottom:901.469850px;}
.y6e{bottom:902.348700px;}
.y23{bottom:902.819850px;}
.y47{bottom:903.257850px;}
.y91{bottom:903.260700px;}
.y104{bottom:905.045850px;}
.y12e{bottom:910.979700px;}
.y15b{bottom:914.513700px;}
.yb4{bottom:924.563850px;}
.y6d{bottom:925.154700px;}
.y22{bottom:925.463850px;}
.y46{bottom:925.757850px;}
.y90{bottom:925.760700px;}
.y12d{bottom:926.279700px;}
.y103{bottom:926.951850px;}
.y15a{bottom:933.263700px;}
.yb3{bottom:947.657850px;}
.y6c{bottom:947.960700px;}
.y12c{bottom:947.963700px;}
.y21{bottom:948.107850px;}
.y45{bottom:948.257850px;}
.y8f{bottom:948.260700px;}
.y102{bottom:948.857850px;}
.y159{bottom:952.013700px;}
.h7{height:24.630908px;}
.ha{height:30.313623px;}
.he{height:39.888000px;}
.h8{height:40.757812px;}
.hd{height:41.396484px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h5{height:61.136719px;}
.hc{height:61.137319px;}
.h6{height:61.352719px;}
.h9{height:66.555703px;}
.hb{height:66.939703px;}
.h3{height:101.894531px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x4{left:88.759800px;}
.x5{left:103.635300px;}
.x2{left:112.500000px;}
.x3{left:127.381800px;}
.x6{left:180.575550px;}
.x1{left:635.390550px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls71{letter-spacing:-10.506667pt;}
.ls64{letter-spacing:-7.232000pt;}
.ls4e{letter-spacing:-7.104000pt;}
.ls39{letter-spacing:-6.784000pt;}
.ls3c{letter-spacing:-6.720000pt;}
.ls2c{letter-spacing:-6.656000pt;}
.ls57{letter-spacing:-6.592000pt;}
.ls49{letter-spacing:-6.528000pt;}
.ls4a{letter-spacing:-6.464000pt;}
.ls2e{letter-spacing:-6.400000pt;}
.ls44{letter-spacing:-6.272000pt;}
.ls4f{letter-spacing:-6.208000pt;}
.ls51{letter-spacing:-5.952000pt;}
.ls4b{letter-spacing:-5.824000pt;}
.ls60{letter-spacing:-5.184000pt;}
.ls63{letter-spacing:-2.816000pt;}
.ls2d{letter-spacing:-2.688000pt;}
.ls1c{letter-spacing:-2.496000pt;}
.ls62{letter-spacing:-2.112000pt;}
.ls38{letter-spacing:-1.920000pt;}
.ls12{letter-spacing:-1.792000pt;}
.ls25{letter-spacing:-1.664000pt;}
.ls45{letter-spacing:-1.600000pt;}
.ls3b{letter-spacing:-1.408000pt;}
.ls3a{letter-spacing:-1.280000pt;}
.ls5f{letter-spacing:-1.024000pt;}
.ls3d{letter-spacing:-0.960000pt;}
.ls5e{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.768000pt;}
.ls58{letter-spacing:-0.704000pt;}
.ls37{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.576000pt;}
.ls70{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls48{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls6e{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.164800pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.256000pt;}
.ls6b{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.512000pt;}
.ls28{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.704000pt;}
.ls36{letter-spacing:0.768000pt;}
.ls41{letter-spacing:0.832000pt;}
.ls46{letter-spacing:0.896000pt;}
.ls47{letter-spacing:0.960000pt;}
.ls56{letter-spacing:1.024000pt;}
.ls5d{letter-spacing:1.088000pt;}
.ls29{letter-spacing:1.109333pt;}
.ls61{letter-spacing:1.216000pt;}
.ls59{letter-spacing:1.280000pt;}
.ls52{letter-spacing:1.472000pt;}
.ls65{letter-spacing:1.792000pt;}
.ls26{letter-spacing:1.920000pt;}
.ls32{letter-spacing:2.240000pt;}
.ls54{letter-spacing:2.368000pt;}
.ls33{letter-spacing:3.072000pt;}
.ls6f{letter-spacing:3.253333pt;}
.ls42{letter-spacing:3.328000pt;}
.ls6d{letter-spacing:3.520000pt;}
.ls6c{letter-spacing:3.626667pt;}
.ls35{letter-spacing:3.712000pt;}
.ls1{letter-spacing:3.840000pt;}
.ls3f{letter-spacing:4.032000pt;}
.ls6a{letter-spacing:4.224000pt;}
.ls3e{letter-spacing:4.288000pt;}
.ls40{letter-spacing:4.352000pt;}
.ls43{letter-spacing:4.544000pt;}
.ls55{letter-spacing:5.056000pt;}
.ls31{letter-spacing:5.248000pt;}
.ls5a{letter-spacing:5.312000pt;}
.ls5b{letter-spacing:5.376000pt;}
.ls14{letter-spacing:5.504000pt;}
.ls1f{letter-spacing:5.632000pt;}
.ls69{letter-spacing:5.824000pt;}
.ls27{letter-spacing:5.888000pt;}
.ls2f{letter-spacing:5.952000pt;}
.lsb{letter-spacing:6.016000pt;}
.ls34{letter-spacing:6.464000pt;}
.ls53{letter-spacing:7.466667pt;}
.ls2{letter-spacing:7.520000pt;}
.ls6{letter-spacing:7.936000pt;}
.ls4c{letter-spacing:8.000000pt;}
.ls30{letter-spacing:8.064000pt;}
.ls16{letter-spacing:8.128000pt;}
.ls19{letter-spacing:8.192000pt;}
.ls50{letter-spacing:8.256000pt;}
.ls4d{letter-spacing:8.320000pt;}
.lsa{letter-spacing:8.384000pt;}
.ls7{letter-spacing:8.448000pt;}
.ls9{letter-spacing:8.512000pt;}
.ls68{letter-spacing:9.024000pt;}
.ls66{letter-spacing:9.472000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls67{letter-spacing:9.728000pt;}
.ls5c{letter-spacing:10.560000pt;}
.ws3b{word-spacing:-46.976000pt;}
.ws6d{word-spacing:-44.224000pt;}
.ws48{word-spacing:-43.968000pt;}
.ws46{word-spacing:-43.904000pt;}
.ws47{word-spacing:-43.840000pt;}
.ws6{word-spacing:-43.776000pt;}
.ws2c{word-spacing:-43.712000pt;}
.ws38{word-spacing:-43.648000pt;}
.ws4a{word-spacing:-43.584000pt;}
.ws44{word-spacing:-43.520000pt;}
.ws45{word-spacing:-43.456000pt;}
.ws18{word-spacing:-43.392000pt;}
.ws23{word-spacing:-43.328000pt;}
.ws17{word-spacing:-43.264000pt;}
.ws5{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws3a{word-spacing:-43.072000pt;}
.ws36{word-spacing:-43.008000pt;}
.ws2b{word-spacing:-42.944000pt;}
.ws49{word-spacing:-42.880000pt;}
.ws29{word-spacing:-42.816000pt;}
.ws35{word-spacing:-42.752000pt;}
.ws69{word-spacing:-42.688000pt;}
.ws22{word-spacing:-42.624000pt;}
.ws37{word-spacing:-42.560000pt;}
.ws5c{word-spacing:-42.496000pt;}
.ws76{word-spacing:-42.432000pt;}
.ws79{word-spacing:-42.368000pt;}
.ws6a{word-spacing:-42.304000pt;}
.ws6b{word-spacing:-42.240000pt;}
.ws3c{word-spacing:-42.176000pt;}
.ws39{word-spacing:-41.856000pt;}
.ws75{word-spacing:-41.024000pt;}
.ws7f{word-spacing:-36.213333pt;}
.ws16{word-spacing:-35.946667pt;}
.ws6c{word-spacing:-32.640000pt;}
.ws7{word-spacing:-28.757333pt;}
.ws66{word-spacing:-26.432000pt;}
.ws2{word-spacing:-22.506667pt;}
.ws5d{word-spacing:-22.453333pt;}
.ws7a{word-spacing:-18.752000pt;}
.ws65{word-spacing:-18.240000pt;}
.ws68{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws51{word-spacing:-17.856000pt;}
.ws67{word-spacing:-17.664000pt;}
.ws21{word-spacing:-17.600000pt;}
.ws74{word-spacing:-17.536000pt;}
.ws52{word-spacing:-15.808000pt;}
.ws2a{word-spacing:-15.488000pt;}
.ws3{word-spacing:-12.588800pt;}
.ws7d{word-spacing:-11.989333pt;}
.ws64{word-spacing:-7.520000pt;}
.ws63{word-spacing:-7.466667pt;}
.ws7e{word-spacing:-4.224000pt;}
.ws61{word-spacing:-1.472000pt;}
.ws62{word-spacing:-1.280000pt;}
.ws73{word-spacing:-1.216000pt;}
.ws71{word-spacing:-1.088000pt;}
.ws5e{word-spacing:-1.024000pt;}
.ws4e{word-spacing:-0.960000pt;}
.ws4c{word-spacing:-0.896000pt;}
.ws4d{word-spacing:-0.832000pt;}
.ws42{word-spacing:-0.768000pt;}
.wse{word-spacing:-0.704000pt;}
.ws14{word-spacing:-0.640000pt;}
.ws33{word-spacing:-0.576000pt;}
.ws1e{word-spacing:-0.512000pt;}
.ws11{word-spacing:-0.448000pt;}
.ws27{word-spacing:-0.426667pt;}
.ws24{word-spacing:-0.384000pt;}
.ws1a{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.298667pt;}
.ws82{word-spacing:-0.266667pt;}
.ws1b{word-spacing:-0.256000pt;}
.ws20{word-spacing:-0.213333pt;}
.ws19{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.128000pt;}
.wsc{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.064000pt;}
.ws25{word-spacing:0.128000pt;}
.ws30{word-spacing:0.192000pt;}
.ws50{word-spacing:0.256000pt;}
.wsb{word-spacing:0.266667pt;}
.ws1f{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.384000pt;}
.ws26{word-spacing:0.448000pt;}
.ws12{word-spacing:0.512000pt;}
.ws83{word-spacing:0.533333pt;}
.wsd{word-spacing:0.576000pt;}
.ws3d{word-spacing:0.640000pt;}
.ws60{word-spacing:0.704000pt;}
.wsf{word-spacing:0.768000pt;}
.ws10{word-spacing:0.832000pt;}
.ws6f{word-spacing:0.896000pt;}
.ws6e{word-spacing:0.960000pt;}
.ws70{word-spacing:1.024000pt;}
.ws80{word-spacing:1.237333pt;}
.ws40{word-spacing:1.280000pt;}
.ws41{word-spacing:1.408000pt;}
.ws9{word-spacing:1.600000pt;}
.ws28{word-spacing:1.664000pt;}
.ws15{word-spacing:1.792000pt;}
.ws3e{word-spacing:1.920000pt;}
.ws1d{word-spacing:2.496000pt;}
.ws32{word-spacing:2.688000pt;}
.ws77{word-spacing:2.816000pt;}
.ws81{word-spacing:2.986667pt;}
.ws7c{word-spacing:3.904000pt;}
.ws7b{word-spacing:3.968000pt;}
.ws5b{word-spacing:4.480000pt;}
.ws72{word-spacing:5.184000pt;}
.ws2f{word-spacing:5.376000pt;}
.ws1c{word-spacing:5.568000pt;}
.ws55{word-spacing:5.824000pt;}
.ws5a{word-spacing:5.952000pt;}
.ws59{word-spacing:6.208000pt;}
.ws4b{word-spacing:6.272000pt;}
.ws34{word-spacing:6.400000pt;}
.ws54{word-spacing:6.464000pt;}
.ws53{word-spacing:6.528000pt;}
.ws5f{word-spacing:6.592000pt;}
.ws31{word-spacing:6.656000pt;}
.ws43{word-spacing:6.720000pt;}
.ws3f{word-spacing:6.784000pt;}
.ws56{word-spacing:7.104000pt;}
.ws78{word-spacing:7.232000pt;}
.ws0{word-spacing:7.466667pt;}
.ws57{word-spacing:8.512000pt;}
.ws58{word-spacing:8.768000pt;}
.ws4f{word-spacing:9.024000pt;}
.ws84{word-spacing:10.506667pt;}
._0{margin-left:-835.946667pt;}
._13{margin-left:-17.802667pt;}
._12{margin-left:-15.808000pt;}
._11{margin-left:-13.994667pt;}
._e{margin-left:-10.848000pt;}
._18{margin-left:-9.376000pt;}
._10{margin-left:-7.680000pt;}
._f{margin-left:-6.400000pt;}
._1{margin-left:-5.280000pt;}
._a{margin-left:-4.085333pt;}
._6{margin-left:-2.666667pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._b{width:2.549333pt;}
._4{width:3.733333pt;}
._9{width:5.482667pt;}
._5{width:7.253333pt;}
._7{width:8.640000pt;}
._8{width:9.898667pt;}
._16{width:11.306667pt;}
._15{width:12.597333pt;}
._14{width:13.578667pt;}
._c{width:28.129867pt;}
._17{width:40.192000pt;}
._d{width:179.146667pt;}
.fs5{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:82.895867pt;}
.y6b{bottom:82.898400pt;}
.y12b{bottom:82.901067pt;}
.y20{bottom:122.895867pt;}
.y44{bottom:122.896133pt;}
.y8e{bottom:122.898400pt;}
.ye2{bottom:123.716933pt;}
.yd6{bottom:123.882533pt;}
.y12a{bottom:124.954800pt;}
.y158{bottom:126.095733pt;}
.y101{bottom:126.635600pt;}
.y1f{bottom:136.229200pt;}
.y8d{bottom:136.231733pt;}
.y129{bottom:138.288133pt;}
.y6a{bottom:139.969200pt;}
.y43{bottom:139.969467pt;}
.y157{bottom:142.895733pt;}
.ydc{bottom:142.895867pt;}
.yb2{bottom:142.898400pt;}
.ye1{bottom:144.244933pt;}
.yd5{bottom:144.410533pt;}
.y1e{bottom:149.562533pt;}
.y128{bottom:151.621467pt;}
.y8c{bottom:153.305067pt;}
.y69{bottom:156.229200pt;}
.y156{bottom:159.695733pt;}
.ydb{bottom:162.895867pt;}
.yb1{bottom:162.898400pt;}
.ye0{bottom:164.772933pt;}
.y100{bottom:164.922400pt;}
.yd4{bottom:164.938533pt;}
.y127{bottom:164.954800pt;}
.y1d{bottom:166.635867pt;}
.y68{bottom:169.562533pt;}
.y42{bottom:176.069333pt;}
.y155{bottom:176.495733pt;}
.y126{bottom:178.288133pt;}
.y67{bottom:182.895867pt;}
.yb0{bottom:182.898400pt;}
.ydf{bottom:185.300933pt;}
.yff{bottom:185.450400pt;}
.yd3{bottom:185.466533pt;}
.y125{bottom:191.621467pt;}
.y154{bottom:193.295733pt;}
.y8b{bottom:194.071733pt;}
.y66{bottom:196.229200pt;}
.y41{bottom:196.341333pt;}
.yda{bottom:202.895867pt;}
.yaf{bottom:202.898400pt;}
.y124{bottom:204.954800pt;}
.y1c{bottom:205.298000pt;}
.yde{bottom:205.828933pt;}
.yfe{bottom:205.978400pt;}
.yd2{bottom:205.994533pt;}
.y65{bottom:209.562533pt;}
.y153{bottom:210.095733pt;}
.y8a{bottom:214.343733pt;}
.y40{bottom:216.613333pt;}
.y123{bottom:218.288133pt;}
.y64{bottom:222.895867pt;}
.yae{bottom:222.898400pt;}
.y1b{bottom:225.170000pt;}
.ydd{bottom:226.362267pt;}
.yfd{bottom:226.506400pt;}
.yd1{bottom:226.522533pt;}
.y152{bottom:226.895733pt;}
.y122{bottom:231.621467pt;}
.y17c{bottom:232.901067pt;}
.y89{bottom:234.615733pt;}
.y63{bottom:236.229200pt;}
.y3f{bottom:236.885333pt;}
.yd9{bottom:242.895867pt;}
.yad{bottom:242.898400pt;}
.y151{bottom:243.695733pt;}
.y121{bottom:244.954800pt;}
.y1a{bottom:245.042000pt;}
.yfc{bottom:247.034400pt;}
.yd0{bottom:247.050533pt;}
.y62{bottom:249.562533pt;}
.y17b{bottom:249.567733pt;}
.y88{bottom:254.887733pt;}
.y3e{bottom:257.157333pt;}
.y120{bottom:258.288133pt;}
.y150{bottom:260.495733pt;}
.yd8{bottom:262.895867pt;}
.yac{bottom:262.898400pt;}
.y19{bottom:264.914000pt;}
.y17a{bottom:266.234400pt;}
.y61{bottom:266.635867pt;}
.yfb{bottom:267.562400pt;}
.ycf{bottom:267.578533pt;}
.y11f{bottom:271.621467pt;}
.y87{bottom:275.159733pt;}
.y14f{bottom:277.295733pt;}
.y3d{bottom:277.429333pt;}
.yd7{bottom:282.895867pt;}
.yab{bottom:282.898400pt;}
.y179{bottom:282.901067pt;}
.y18{bottom:284.786000pt;}
.y11e{bottom:284.954800pt;}
.yfa{bottom:288.090400pt;}
.yce{bottom:288.106533pt;}
.y14e{bottom:294.095733pt;}
.y86{bottom:295.346400pt;}
.y3c{bottom:297.701333pt;}
.y11d{bottom:298.288133pt;}
.y60{bottom:302.895867pt;}
.yaa{bottom:302.898400pt;}
.y17{bottom:304.658000pt;}
.yf9{bottom:308.618400pt;}
.ycd{bottom:308.634533pt;}
.y178{bottom:309.567733pt;}
.y14d{bottom:310.895733pt;}
.y85{bottom:315.618400pt;}
.y11c{bottom:317.296133pt;}
.y3b{bottom:317.973333pt;}
.y5f{bottom:322.895867pt;}
.ya9{bottom:322.898400pt;}
.y16{bottom:324.530000pt;}
.y14c{bottom:327.695733pt;}
.yf8{bottom:329.146400pt;}
.ycc{bottom:329.162533pt;}
.y84{bottom:335.890400pt;}
.y3a{bottom:338.245333pt;}
.y5e{bottom:342.895867pt;}
.ya8{bottom:342.898400pt;}
.y15{bottom:344.402000pt;}
.y14b{bottom:344.495733pt;}
.y177{bottom:346.234400pt;}
.yf7{bottom:349.674400pt;}
.ycb{bottom:349.690533pt;}
.y83{bottom:356.162400pt;}
.y11b{bottom:356.629200pt;}
.y39{bottom:358.517333pt;}
.y14a{bottom:361.295733pt;}
.y5d{bottom:362.895867pt;}
.ya7{bottom:362.898400pt;}
.y176{bottom:362.901067pt;}
.y14{bottom:364.274000pt;}
.yf6{bottom:370.202400pt;}
.yca{bottom:370.218533pt;}
.y11a{bottom:376.101200pt;}
.y82{bottom:376.434400pt;}
.y149{bottom:378.095733pt;}
.y38{bottom:378.789333pt;}
.y175{bottom:379.567733pt;}
.y5c{bottom:382.895867pt;}
.ya6{bottom:382.898400pt;}
.y13{bottom:384.146000pt;}
.yf5{bottom:390.730400pt;}
.yc9{bottom:390.746533pt;}
.y148{bottom:394.895733pt;}
.y119{bottom:395.573200pt;}
.y174{bottom:396.234400pt;}
.y81{bottom:396.706400pt;}
.y37{bottom:399.061333pt;}
.y5b{bottom:402.895867pt;}
.ya5{bottom:402.898400pt;}
.y12{bottom:404.018000pt;}
.yf4{bottom:411.258400pt;}
.yc8{bottom:411.274533pt;}
.y147{bottom:411.695733pt;}
.y173{bottom:412.901067pt;}
.y118{bottom:415.045200pt;}
.y80{bottom:416.978400pt;}
.y36{bottom:419.333333pt;}
.y5a{bottom:422.895867pt;}
.ya4{bottom:422.898400pt;}
.y11{bottom:423.842000pt;}
.y146{bottom:428.495733pt;}
.y172{bottom:429.567733pt;}
.yf3{bottom:431.786400pt;}
.yc7{bottom:431.802533pt;}
.y117{bottom:434.517200pt;}
.y7f{bottom:437.250400pt;}
.y35{bottom:439.605333pt;}
.y59{bottom:442.895867pt;}
.ya3{bottom:442.898400pt;}
.y10{bottom:443.714000pt;}
.y145{bottom:445.295733pt;}
.y171{bottom:446.234400pt;}
.yf2{bottom:452.314400pt;}
.yc6{bottom:452.330533pt;}
.y116{bottom:453.989200pt;}
.y7e{bottom:457.522400pt;}
.y34{bottom:459.877333pt;}
.y144{bottom:462.095733pt;}
.y58{bottom:462.895867pt;}
.ya2{bottom:462.898400pt;}
.y170{bottom:462.901067pt;}
.yf{bottom:463.586000pt;}
.yf1{bottom:472.842400pt;}
.yc5{bottom:472.858533pt;}
.y115{bottom:473.461200pt;}
.y7d{bottom:477.794400pt;}
.y143{bottom:478.895733pt;}
.y16f{bottom:479.567733pt;}
.y33{bottom:480.149333pt;}
.y57{bottom:482.895867pt;}
.ya1{bottom:482.898400pt;}
.ye{bottom:483.458000pt;}
.y114{bottom:492.933200pt;}
.yf0{bottom:493.370400pt;}
.yc4{bottom:493.386533pt;}
.y142{bottom:495.695733pt;}
.y16e{bottom:496.234400pt;}
.y7c{bottom:498.066400pt;}
.y32{bottom:500.421333pt;}
.y56{bottom:502.895867pt;}
.ya0{bottom:502.898400pt;}
.yd{bottom:503.330000pt;}
.y113{bottom:512.405200pt;}
.y141{bottom:512.495733pt;}
.y16d{bottom:512.901067pt;}
.yef{bottom:513.898400pt;}
.yc3{bottom:513.914533pt;}
.y7b{bottom:518.338400pt;}
.y31{bottom:520.693333pt;}
.y55{bottom:522.895867pt;}
.y9f{bottom:522.898400pt;}
.yc{bottom:523.202000pt;}
.y140{bottom:529.295733pt;}
.y16c{bottom:529.567733pt;}
.y112{bottom:531.877200pt;}
.yee{bottom:534.426400pt;}
.yc2{bottom:534.442533pt;}
.y7a{bottom:538.610400pt;}
.y30{bottom:540.821333pt;}
.y54{bottom:542.895867pt;}
.y9e{bottom:542.898400pt;}
.yb{bottom:543.074000pt;}
.y16b{bottom:546.234400pt;}
.y111{bottom:551.349200pt;}
.y13f{bottom:551.754400pt;}
.yed{bottom:554.954400pt;}
.yc1{bottom:554.970533pt;}
.y79{bottom:558.882400pt;}
.y2f{bottom:560.949333pt;}
.y53{bottom:562.895867pt;}
.y9d{bottom:562.898400pt;}
.y16a{bottom:562.901067pt;}
.ya{bottom:562.946000pt;}
.y110{bottom:570.821200pt;}
.yec{bottom:575.482400pt;}
.yc0{bottom:575.498533pt;}
.y78{bottom:579.154400pt;}
.y169{bottom:579.567733pt;}
.y2e{bottom:581.077333pt;}
.y9{bottom:582.818000pt;}
.y52{bottom:582.895867pt;}
.y9c{bottom:582.898400pt;}
.y10f{bottom:590.293200pt;}
.y13e{bottom:592.159733pt;}
.yeb{bottom:596.010400pt;}
.ybf{bottom:596.026533pt;}
.y168{bottom:596.234400pt;}
.y77{bottom:599.426400pt;}
.y2d{bottom:601.205333pt;}
.y8{bottom:602.690000pt;}
.y51{bottom:602.895867pt;}
.y9b{bottom:602.898400pt;}
.y13d{bottom:605.759733pt;}
.y10e{bottom:609.765200pt;}
.y167{bottom:612.901067pt;}
.yea{bottom:616.538400pt;}
.ybe{bottom:616.554533pt;}
.y13c{bottom:619.359733pt;}
.y76{bottom:619.698400pt;}
.y2c{bottom:621.333333pt;}
.y7{bottom:622.556800pt;}
.y50{bottom:622.895867pt;}
.y9a{bottom:622.898400pt;}
.y10d{bottom:629.237200pt;}
.y166{bottom:629.567733pt;}
.y13b{bottom:632.959733pt;}
.ye9{bottom:637.066400pt;}
.ybd{bottom:637.082533pt;}
.y75{bottom:639.965067pt;}
.y2b{bottom:641.461333pt;}
.y4f{bottom:642.895867pt;}
.y99{bottom:642.898400pt;}
.y165{bottom:646.234400pt;}
.y13a{bottom:646.559733pt;}
.y10c{bottom:648.709200pt;}
.ye8{bottom:657.594400pt;}
.ybc{bottom:657.610533pt;}
.y139{bottom:660.159733pt;}
.y2a{bottom:661.589333pt;}
.y6{bottom:662.423467pt;}
.y4e{bottom:662.895867pt;}
.y98{bottom:662.898400pt;}
.y164{bottom:662.901067pt;}
.y10b{bottom:668.181200pt;}
.y138{bottom:673.759733pt;}
.ye7{bottom:678.122400pt;}
.ybb{bottom:678.138533pt;}
.y5{bottom:679.090133pt;}
.y163{bottom:679.567733pt;}
.y74{bottom:680.455733pt;}
.y29{bottom:681.717333pt;}
.y4d{bottom:682.895867pt;}
.y97{bottom:682.898400pt;}
.y137{bottom:687.359733pt;}
.y10a{bottom:687.653200pt;}
.y162{bottom:696.234400pt;}
.ye6{bottom:698.650400pt;}
.yba{bottom:698.666533pt;}
.y73{bottom:700.727733pt;}
.y136{bottom:700.959733pt;}
.y28{bottom:701.845333pt;}
.y4c{bottom:702.895867pt;}
.y96{bottom:702.898400pt;}
.y109{bottom:707.125200pt;}
.y161{bottom:712.901067pt;}
.y135{bottom:714.559733pt;}
.y4{bottom:716.544133pt;}
.ye5{bottom:719.178400pt;}
.yb9{bottom:719.194533pt;}
.y72{bottom:720.999733pt;}
.y27{bottom:721.973333pt;}
.y4b{bottom:722.895867pt;}
.y95{bottom:722.898400pt;}
.y108{bottom:726.597200pt;}
.y134{bottom:728.159733pt;}
.y160{bottom:729.567733pt;}
.y3{bottom:736.544133pt;}
.ye4{bottom:739.706400pt;}
.yb8{bottom:739.722533pt;}
.y71{bottom:741.271733pt;}
.y133{bottom:741.759733pt;}
.y26{bottom:742.101333pt;}
.y4a{bottom:742.895867pt;}
.y94{bottom:742.898400pt;}
.y107{bottom:746.069200pt;}
.y15f{bottom:746.234400pt;}
.y132{bottom:755.359733pt;}
.ye3{bottom:760.234400pt;}
.yb7{bottom:760.250533pt;}
.y70{bottom:761.543733pt;}
.y25{bottom:762.250533pt;}
.y49{bottom:762.895867pt;}
.y93{bottom:762.898400pt;}
.y15e{bottom:762.901067pt;}
.y106{bottom:765.541200pt;}
.y131{bottom:768.959733pt;}
.y15d{bottom:779.567733pt;}
.yb6{bottom:780.778533pt;}
.y6f{bottom:781.815733pt;}
.y24{bottom:782.378533pt;}
.y130{bottom:782.559733pt;}
.y48{bottom:782.895867pt;}
.y92{bottom:782.898400pt;}
.y105{bottom:785.013200pt;}
.y12f{bottom:796.159733pt;}
.y2{bottom:796.229200pt;}
.y15c{bottom:796.234400pt;}
.yb5{bottom:801.306533pt;}
.y6e{bottom:802.087733pt;}
.y23{bottom:802.506533pt;}
.y47{bottom:802.895867pt;}
.y91{bottom:802.898400pt;}
.y104{bottom:804.485200pt;}
.y12e{bottom:809.759733pt;}
.y15b{bottom:812.901067pt;}
.yb4{bottom:821.834533pt;}
.y6d{bottom:822.359733pt;}
.y22{bottom:822.634533pt;}
.y46{bottom:822.895867pt;}
.y90{bottom:822.898400pt;}
.y12d{bottom:823.359733pt;}
.y103{bottom:823.957200pt;}
.y15a{bottom:829.567733pt;}
.yb3{bottom:842.362533pt;}
.y6c{bottom:842.631733pt;}
.y12c{bottom:842.634400pt;}
.y21{bottom:842.762533pt;}
.y45{bottom:842.895867pt;}
.y8f{bottom:842.898400pt;}
.y102{bottom:843.429200pt;}
.y159{bottom:846.234400pt;}
.h7{height:21.894141pt;}
.ha{height:26.945443pt;}
.he{height:35.456000pt;}
.h8{height:36.229167pt;}
.hd{height:36.796875pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h5{height:54.343750pt;}
.hc{height:54.344283pt;}
.h6{height:54.535750pt;}
.h9{height:59.160625pt;}
.hb{height:59.501958pt;}
.h3{height:90.572917pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x4{left:78.897600pt;}
.x5{left:92.120267pt;}
.x2{left:100.000000pt;}
.x3{left:113.228267pt;}
.x6{left:160.511600pt;}
.x1{left:564.791600pt;}
}




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