
    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_1470c8d24916db7c661b6b6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_60cc14e772947f0efa8f6803.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_a122bbff3625553602a74bff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_20a3e868185b95ceac705226.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_897c8c45a5755be36f222b71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961000;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_64904364833ae0e74e958236.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0d4bd817d3c02c7289775750.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-27.972000px;}
.v8{vertical-align:-23.976000px;}
.v7{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v5{vertical-align:19.980000px;}
.v4{vertical-align:21.978600px;}
.v6{vertical-align:23.976000px;}
.v1{vertical-align:27.972000px;}
.ls8{letter-spacing:-1.998000px;}
.ls7{letter-spacing:-1.553112px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.860676px;}
.lsf{letter-spacing:0.956400px;}
.ls5{letter-spacing:1.054800px;}
.ls9{letter-spacing:1.749000px;}
.ls2{letter-spacing:1.890000px;}
.lsb{letter-spacing:2.046000px;}
.ls4{letter-spacing:2.100000px;}
.lsa{letter-spacing:2.220000px;}
.ls6{letter-spacing:2.310000px;}
.lsc{letter-spacing:2.520000px;}
.ls0{letter-spacing:2.940000px;}
.lse{letter-spacing:3.254100px;}
.lsd{letter-spacing:7.119000px;}
.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;}
}
.ws37{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.390000px;}
.ws13{word-spacing:-13.500000px;}
.ws39{word-spacing:-11.502000px;}
.ws24{word-spacing:-10.494000px;}
.ws11{word-spacing:-9.619500px;}
.ws38{word-spacing:-8.940888px;}
.ws23{word-spacing:-8.745000px;}
.ws0{word-spacing:-7.870500px;}
.wsa5{word-spacing:-6.336000px;}
.wsb0{word-spacing:-4.752000px;}
.ws1b{word-spacing:-4.620000px;}
.wsaf{word-spacing:-3.456000px;}
.ws9b{word-spacing:-3.366000px;}
.ws6e{word-spacing:-3.234000px;}
.wsb4{word-spacing:-3.096000px;}
.ws82{word-spacing:-2.970000px;}
.ws94{word-spacing:-2.904000px;}
.ws69{word-spacing:-2.772000px;}
.wsa6{word-spacing:-2.706000px;}
.ws95{word-spacing:-2.640000px;}
.ws5c{word-spacing:-2.574000px;}
.ws86{word-spacing:-2.508000px;}
.ws3e{word-spacing:-2.448000px;}
.ws16{word-spacing:-2.442000px;}
.wsc{word-spacing:-2.430000px;}
.ws72{word-spacing:-2.376000px;}
.ws67{word-spacing:-2.310000px;}
.ws30{word-spacing:-2.304000px;}
.ws7c{word-spacing:-2.112000px;}
.ws4d{word-spacing:-2.046000px;}
.ws4{word-spacing:-1.890000px;}
.ws60{word-spacing:-1.848000px;}
.ws7d{word-spacing:-1.782000px;}
.ws3c{word-spacing:-1.728000px;}
.ws48{word-spacing:-1.716000px;}
.ws3d{word-spacing:-1.656000px;}
.ws63{word-spacing:-1.620000px;}
.ws5e{word-spacing:-1.584000px;}
.wsa{word-spacing:-1.512000px;}
.ws81{word-spacing:-1.452000px;}
.ws3{word-spacing:-1.428000px;}
.ws71{word-spacing:-1.386000px;}
.ws3a{word-spacing:-1.296000px;}
.ws4f{word-spacing:-1.254000px;}
.ws76{word-spacing:-1.224000px;}
.ws1c{word-spacing:-1.188000px;}
.ws32{word-spacing:-1.152000px;}
.ws47{word-spacing:-1.122000px;}
.ws9d{word-spacing:-1.056000px;}
.ws14{word-spacing:-1.020000px;}
.ws1a{word-spacing:-0.990000px;}
.ws79{word-spacing:-0.924000px;}
.wsf{word-spacing:-0.918000px;}
.ws45{word-spacing:-0.864000px;}
.ws6b{word-spacing:-0.792000px;}
.ws1d{word-spacing:-0.726000px;}
.wsa8{word-spacing:-0.660000px;}
.ws2d{word-spacing:-0.648000px;}
.ws97{word-spacing:-0.528000px;}
.ws5{word-spacing:-0.486000px;}
.ws6f{word-spacing:-0.462000px;}
.ws2e{word-spacing:-0.377784px;}
.ws34{word-spacing:-0.360000px;}
.wsa0{word-spacing:-0.288000px;}
.ws57{word-spacing:-0.264000px;}
.wsaa{word-spacing:-0.198000px;}
.ws93{word-spacing:-0.162000px;}
.wsa9{word-spacing:-0.132000px;}
.ws66{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws17{word-spacing:0.066000px;}
.ws9{word-spacing:0.162000px;}
.ws4c{word-spacing:0.198000px;}
.ws43{word-spacing:0.216000px;}
.ws62{word-spacing:0.240000px;}
.ws10{word-spacing:0.378000px;}
.ws7b{word-spacing:0.396000px;}
.ws1f{word-spacing:0.462000px;}
.ws70{word-spacing:0.594000px;}
.ws50{word-spacing:0.660000px;}
.wsac{word-spacing:0.726000px;}
.ws8d{word-spacing:0.792000px;}
.ws5a{word-spacing:0.810000px;}
.ws92{word-spacing:0.858000px;}
.wsa4{word-spacing:0.864000px;}
.ws33{word-spacing:0.900000px;}
.wsb{word-spacing:0.918000px;}
.ws9c{word-spacing:1.056000px;}
.wsa3{word-spacing:1.080000px;}
.ws98{word-spacing:1.122000px;}
.wsd{word-spacing:1.188000px;}
.ws53{word-spacing:1.254000px;}
.wse{word-spacing:1.296000px;}
.wsb1{word-spacing:1.368000px;}
.ws40{word-spacing:1.440000px;}
.ws5b{word-spacing:1.452000px;}
.ws35{word-spacing:1.560000px;}
.ws42{word-spacing:1.584000px;}
.ws52{word-spacing:1.650000px;}
.ws55{word-spacing:1.716000px;}
.ws4a{word-spacing:1.782000px;}
.ws41{word-spacing:1.800000px;}
.ws26{word-spacing:1.914000px;}
.ws90{word-spacing:1.920000px;}
.ws56{word-spacing:2.046000px;}
.ws59{word-spacing:2.112000px;}
.ws25{word-spacing:2.178000px;}
.ws64{word-spacing:2.220000px;}
.wsa7{word-spacing:2.310000px;}
.ws5d{word-spacing:2.376000px;}
.ws28{word-spacing:2.400000px;}
.ws7{word-spacing:2.430000px;}
.ws73{word-spacing:2.442000px;}
.ws89{word-spacing:2.538000px;}
.ws8c{word-spacing:2.580000px;}
.ws3f{word-spacing:2.592000px;}
.ws1e{word-spacing:2.640000px;}
.ws91{word-spacing:2.904000px;}
.ws18{word-spacing:3.036000px;}
.wsb5{word-spacing:3.096000px;}
.ws44{word-spacing:3.168000px;}
.wsb6{word-spacing:3.234000px;}
.ws88{word-spacing:3.498000px;}
.ws6{word-spacing:3.564000px;}
.ws75{word-spacing:3.630000px;}
.ws68{word-spacing:3.696000px;}
.ws8e{word-spacing:3.840000px;}
.ws84{word-spacing:3.894000px;}
.ws77{word-spacing:4.026000px;}
.ws99{word-spacing:4.158000px;}
.ws85{word-spacing:4.224000px;}
.ws6d{word-spacing:4.290000px;}
.ws8{word-spacing:4.320000px;}
.wsad{word-spacing:4.356000px;}
.ws22{word-spacing:4.488000px;}
.ws31{word-spacing:4.536000px;}
.ws15{word-spacing:4.620000px;}
.wsb7{word-spacing:4.686000px;}
.wsb3{word-spacing:4.818000px;}
.ws9f{word-spacing:4.884000px;}
.wsa2{word-spacing:4.968000px;}
.wsa1{word-spacing:5.112000px;}
.ws87{word-spacing:5.280000px;}
.ws7a{word-spacing:5.412000px;}
.ws65{word-spacing:5.544000px;}
.ws78{word-spacing:5.610000px;}
.wsb2{word-spacing:5.808000px;}
.ws80{word-spacing:5.874000px;}
.ws29{word-spacing:5.940000px;}
.ws6c{word-spacing:6.006000px;}
.ws27{word-spacing:6.060000px;}
.ws4e{word-spacing:6.072000px;}
.ws83{word-spacing:6.270000px;}
.ws3b{word-spacing:6.336000px;}
.ws7e{word-spacing:6.666000px;}
.ws46{word-spacing:6.696000px;}
.ws20{word-spacing:6.732000px;}
.ws8f{word-spacing:6.900000px;}
.ws2a{word-spacing:7.020000px;}
.ws8a{word-spacing:7.182000px;}
.ws19{word-spacing:7.260000px;}
.ws7f{word-spacing:7.392000px;}
.ws5f{word-spacing:7.722000px;}
.ws96{word-spacing:7.788000px;}
.ws21{word-spacing:7.920000px;}
.ws6a{word-spacing:8.052000px;}
.ws58{word-spacing:8.184000px;}
.ws2f{word-spacing:8.208000px;}
.ws8b{word-spacing:8.250000px;}
.ws61{word-spacing:8.316000px;}
.ws49{word-spacing:8.382000px;}
.ws9a{word-spacing:8.448000px;}
.ws54{word-spacing:8.778000px;}
.wsae{word-spacing:8.784000px;}
.ws9e{word-spacing:8.910000px;}
.ws2b{word-spacing:9.360000px;}
.ws74{word-spacing:10.230000px;}
.ws2c{word-spacing:11.448000px;}
.ws4b{word-spacing:13.464000px;}
.wsab{word-spacing:14.652000px;}
.ws51{word-spacing:38.070000px;}
.ws36{word-spacing:65.070000px;}
._8{margin-left:-2057.013600px;}
._16{margin-left:-2041.936800px;}
._11{margin-left:-65.070000px;}
._15{margin-left:-38.070000px;}
._10{margin-left:-9.318744px;}
._19{margin-left:-7.927200px;}
._2{margin-left:-6.882000px;}
._13{margin-left:-5.342400px;}
._5{margin-left:-4.341000px;}
._0{margin-left:-2.740800px;}
._1{margin-left:-1.003200px;}
._4{width:1.242000px;}
._6{width:2.265000px;}
._c{width:3.383400px;}
._3{width:5.140800px;}
._9{width:6.666000px;}
._b{width:7.867200px;}
._a{width:9.200400px;}
._d{width:10.302600px;}
._18{width:11.708400px;}
._12{width:38.070000px;}
._14{width:40.557000px;}
._e{width:65.070000px;}
._f{width:656.880000px;}
._17{width:2104.066800px;}
._7{width:2121.346800px;}
.fc3{color:rgb(4,6,6);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc4{color:rgb(238,37,43);}
.fc0{color:rgb(28,29,30);}
.fs5{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:38.478000px;}
.fsb{font-size:41.976000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:48.972000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:9.000000px;}
.y2{bottom:77.782200px;}
.y24{bottom:81.325500px;}
.y1{bottom:89.782200px;}
.y23{bottom:93.325500px;}
.y49{bottom:139.925250px;}
.y48{bottom:153.425250px;}
.y20{bottom:154.977000px;}
.y47{bottom:166.925250px;}
.y1f{bottom:171.177000px;}
.y46{bottom:180.425250px;}
.y1e{bottom:187.377000px;}
.y62{bottom:193.925250px;}
.y123{bottom:194.031300px;}
.y1d{bottom:203.577000px;}
.y61{bottom:207.425250px;}
.y15d{bottom:210.196350px;}
.y183{bottom:213.237300px;}
.y122{bottom:213.831300px;}
.yac{bottom:220.925250px;}
.y81{bottom:223.779150px;}
.y15c{bottom:231.796350px;}
.y182{bottom:233.037300px;}
.y9b{bottom:233.330100px;}
.y121{bottom:233.631300px;}
.y1c{bottom:241.039500px;}
.y80{bottom:243.579150px;}
.yd1{bottom:249.485100px;}
.y45{bottom:251.735250px;}
.ycb{bottom:252.432600px;}
.y181{bottom:252.837300px;}
.y9a{bottom:253.130100px;}
.y15b{bottom:253.396350px;}
.y120{bottom:253.426950px;}
.y1b{bottom:257.239500px;}
.y7f{bottom:263.379150px;}
.yd0{bottom:269.285100px;}
.y44{bottom:271.535250px;}
.yca{bottom:272.232600px;}
.y180{bottom:272.637300px;}
.y99{bottom:272.930100px;}
.y11f{bottom:273.226950px;}
.y1a{bottom:273.439500px;}
.ye4{bottom:273.755100px;}
.y15a{bottom:274.996350px;}
.y7e{bottom:283.179150px;}
.y104{bottom:284.480100px;}
.ycf{bottom:289.085100px;}
.y19{bottom:289.639500px;}
.y43{bottom:291.335250px;}
.yea{bottom:292.028100px;}
.yc9{bottom:292.032600px;}
.y17f{bottom:292.437300px;}
.y98{bottom:292.730100px;}
.yab{bottom:292.857600px;}
.y11e{bottom:293.026950px;}
.ye3{bottom:293.555100px;}
.y159{bottom:296.596350px;}
.yb4{bottom:299.971350px;}
.y7d{bottom:302.979150px;}
.y103{bottom:304.280100px;}
.y18{bottom:305.839500px;}
.y60{bottom:309.443850px;}
.y42{bottom:311.135250px;}
.ye9{bottom:311.828100px;}
.yc8{bottom:311.832600px;}
.y17e{bottom:312.237300px;}
.y97{bottom:312.530100px;}
.yaa{bottom:312.653100px;}
.y11d{bottom:312.826950px;}
.ye2{bottom:313.355100px;}
.yb3{bottom:314.971350px;}
.y158{bottom:318.196350px;}
.y17{bottom:322.039500px;}
.y102{bottom:324.080100px;}
.y5f{bottom:324.443850px;}
.yb2{bottom:329.971350px;}
.y41{bottom:330.935250px;}
.y140{bottom:331.011450px;}
.ye8{bottom:331.628100px;}
.yc7{bottom:331.632600px;}
.y17d{bottom:332.037300px;}
.y96{bottom:332.330100px;}
.ya9{bottom:332.453100px;}
.y11c{bottom:332.626950px;}
.ye1{bottom:333.155100px;}
.y16{bottom:338.239500px;}
.y5e{bottom:339.443850px;}
.y157{bottom:339.796350px;}
.y101{bottom:343.880100px;}
.yb1{bottom:344.971350px;}
.yce{bottom:345.485250px;}
.y40{bottom:350.735250px;}
.y13f{bottom:350.811450px;}
.ye7{bottom:351.428100px;}
.yc6{bottom:351.432600px;}
.y17c{bottom:351.837300px;}
.y95{bottom:352.130100px;}
.ya8{bottom:352.253100px;}
.y7c{bottom:352.545150px;}
.ye0{bottom:352.955100px;}
.y5d{bottom:354.443850px;}
.yb0{bottom:359.971350px;}
.y156{bottom:361.396350px;}
.y100{bottom:363.680100px;}
.ycd{bottom:366.185100px;}
.y5c{bottom:369.443850px;}
.y3f{bottom:370.535250px;}
.y13e{bottom:370.611450px;}
.yc5{bottom:371.232600px;}
.y7b{bottom:371.520150px;}
.y17b{bottom:371.637300px;}
.y94{bottom:371.930100px;}
.ya7{bottom:372.053100px;}
.ydf{bottom:372.755100px;}
.yaf{bottom:374.971350px;}
.y15{bottom:375.702000px;}
.y11b{bottom:382.192950px;}
.y155{bottom:382.996350px;}
.yff{bottom:383.480100px;}
.yae{bottom:389.971350px;}
.y3e{bottom:390.335250px;}
.y13d{bottom:390.411450px;}
.yc4{bottom:391.032600px;}
.y17a{bottom:391.437300px;}
.y93{bottom:391.730100px;}
.y14{bottom:391.902000px;}
.yde{bottom:392.555100px;}
.ye6{bottom:400.994100px;}
.y11a{bottom:401.167950px;}
.yfe{bottom:403.280100px;}
.y154{bottom:404.596350px;}
.yad{bottom:404.971350px;}
.y13{bottom:408.102000px;}
.y3d{bottom:410.135250px;}
.y13c{bottom:410.211450px;}
.yc3{bottom:410.832600px;}
.y92{bottom:411.530100px;}
.ydd{bottom:412.355100px;}
.y179{bottom:413.037300px;}
.y5b{bottom:414.207600px;}
.ya6{bottom:421.619100px;}
.yfd{bottom:423.080100px;}
.y12{bottom:424.302000px;}
.y153{bottom:426.196350px;}
.ycc{bottom:429.935100px;}
.y3c{bottom:429.935250px;}
.y13b{bottom:430.011450px;}
.yc2{bottom:430.628250px;}
.y7a{bottom:430.695150px;}
.ybc{bottom:431.321100px;}
.y91{bottom:431.330100px;}
.ydc{bottom:432.155100px;}
.y178{bottom:434.637300px;}
.y5a{bottom:435.807600px;}
.y11{bottom:440.502000px;}
.ya5{bottom:440.594100px;}
.y152{bottom:447.796350px;}
.y3b{bottom:449.735100px;}
.y13a{bottom:449.811450px;}
.y119{bottom:449.908950px;}
.yc1{bottom:450.428250px;}
.ybb{bottom:451.121100px;}
.y90{bottom:451.130100px;}
.ydb{bottom:451.955100px;}
.y79{bottom:452.295150px;}
.y177{bottom:456.237300px;}
.y10{bottom:456.702000px;}
.y59{bottom:457.407600px;}
.y151{bottom:469.396350px;}
.y3a{bottom:469.535100px;}
.y139{bottom:469.611450px;}
.y118{bottom:469.708950px;}
.yba{bottom:470.921100px;}
.y8f{bottom:470.930100px;}
.yda{bottom:471.755100px;}
.yfc{bottom:472.643850px;}
.y78{bottom:473.895150px;}
.y176{bottom:477.837300px;}
.y58{bottom:479.007600px;}
.yfb{bottom:487.643850px;}
.y39{bottom:489.335100px;}
.y138{bottom:489.411450px;}
.y117{bottom:489.508950px;}
.yb9{bottom:490.721100px;}
.y8e{bottom:490.730100px;}
.y150{bottom:490.996350px;}
.yd9{bottom:491.555100px;}
.yf{bottom:494.164500px;}
.y77{bottom:495.495150px;}
.y175{bottom:499.437300px;}
.yc0{bottom:499.994250px;}
.y57{bottom:500.607600px;}
.yfa{bottom:502.643850px;}
.y197{bottom:503.719050px;}
.y38{bottom:509.135100px;}
.y137{bottom:509.211450px;}
.y116{bottom:509.308950px;}
.ye{bottom:510.364500px;}
.y8d{bottom:510.521100px;}
.yd8{bottom:511.355100px;}
.y14f{bottom:512.596350px;}
.y76{bottom:517.095150px;}
.yf9{bottom:517.643850px;}
.y174{bottom:519.237300px;}
.y56{bottom:522.207600px;}
.y196{bottom:523.519050px;}
.yd{bottom:526.564500px;}
.ya4{bottom:528.935100px;}
.y37{bottom:528.935250px;}
.y136{bottom:529.011450px;}
.y115{bottom:529.104450px;}
.y8c{bottom:530.321100px;}
.yd7{bottom:531.155100px;}
.yf8{bottom:532.643850px;}
.y14e{bottom:534.196350px;}
.y75{bottom:538.695150px;}
.y173{bottom:539.037300px;}
.yc{bottom:542.764500px;}
.y195{bottom:543.319050px;}
.y55{bottom:543.807600px;}
.y36{bottom:548.735100px;}
.ybf{bottom:548.735250px;}
.y135{bottom:548.811450px;}
.y114{bottom:548.904450px;}
.y8b{bottom:550.121100px;}
.yd6{bottom:550.955100px;}
.y14d{bottom:555.796350px;}
.y172{bottom:558.837300px;}
.yb{bottom:558.964500px;}
.yb8{bottom:560.087100px;}
.y74{bottom:560.295150px;}
.y194{bottom:563.119050px;}
.y54{bottom:565.407600px;}
.y35{bottom:568.535100px;}
.ybe{bottom:568.535250px;}
.y134{bottom:568.611450px;}
.yd5{bottom:570.746100px;}
.ya{bottom:575.164500px;}
.y14c{bottom:577.396350px;}
.yf7{bottom:577.407600px;}
.y171{bottom:578.635050px;}
.y73{bottom:581.895150px;}
.y193{bottom:582.919050px;}
.y53{bottom:587.007600px;}
.y34{bottom:588.335100px;}
.ybd{bottom:588.335250px;}
.y133{bottom:588.411450px;}
.yd4{bottom:590.546100px;}
.y9{bottom:591.364500px;}
.yf6{bottom:597.207600px;}
.y170{bottom:598.435050px;}
.y113{bottom:598.470450px;}
.y14b{bottom:598.994100px;}
.y8a{bottom:599.687100px;}
.y192{bottom:602.719050px;}
.y72{bottom:603.495150px;}
.y33{bottom:608.135100px;}
.ye5{bottom:608.135250px;}
.y132{bottom:608.211450px;}
.y52{bottom:608.607600px;}
.yb7{bottom:608.828100px;}
.yf5{bottom:617.007600px;}
.y16f{bottom:618.235050px;}
.y14a{bottom:618.794100px;}
.y191{bottom:624.319050px;}
.y71{bottom:625.095150px;}
.y32{bottom:627.935100px;}
.ya3{bottom:627.935250px;}
.y131{bottom:628.011450px;}
.yb6{bottom:628.628100px;}
.y51{bottom:630.207600px;}
.yf4{bottom:636.807600px;}
.y8{bottom:637.328250px;}
.y16e{bottom:638.035050px;}
.y149{bottom:638.594100px;}
.yd3{bottom:640.112100px;}
.y190{bottom:645.919050px;}
.y70{bottom:646.695150px;}
.y112{bottom:647.211450px;}
.y31{bottom:647.735100px;}
.ya2{bottom:647.735250px;}
.y130{bottom:647.811450px;}
.y89{bottom:648.428100px;}
.y7{bottom:655.328250px;}
.yf3{bottom:656.607600px;}
.y16d{bottom:657.835050px;}
.y148{bottom:658.394100px;}
.yd2{bottom:659.087100px;}
.y111{bottom:667.011450px;}
.y18f{bottom:667.519050px;}
.y30{bottom:667.535100px;}
.ya1{bottom:667.535250px;}
.y12f{bottom:667.611450px;}
.y88{bottom:668.228100px;}
.y6f{bottom:668.295150px;}
.yf2{bottom:676.407600px;}
.y16c{bottom:677.635050px;}
.y147{bottom:678.194100px;}
.y50{bottom:681.571350px;}
.y110{bottom:686.811450px;}
.y18e{bottom:687.319050px;}
.y2f{bottom:687.335100px;}
.ya0{bottom:687.335250px;}
.y12e{bottom:687.411450px;}
.y87{bottom:688.028100px;}
.y6e{bottom:689.895150px;}
.yf1{bottom:696.207600px;}
.y4f{bottom:696.571350px;}
.y16b{bottom:697.435050px;}
.y146{bottom:697.994100px;}
.y6{bottom:703.092000px;}
.y18d{bottom:707.119050px;}
.y2e{bottom:707.135100px;}
.y9f{bottom:707.135250px;}
.y12d{bottom:707.211450px;}
.y86{bottom:707.828100px;}
.y6d{bottom:711.495150px;}
.y4e{bottom:711.571350px;}
.y162{bottom:714.731250px;}
.y16a{bottom:717.235050px;}
.y145{bottom:717.794100px;}
.y4d{bottom:726.571350px;}
.y18c{bottom:726.919050px;}
.y2d{bottom:726.935100px;}
.y9e{bottom:726.935250px;}
.y12c{bottom:727.011450px;}
.y85{bottom:727.628100px;}
.y5{bottom:728.292000px;}
.y161{bottom:729.731250px;}
.y6c{bottom:733.095150px;}
.y10f{bottom:736.375200px;}
.y169{bottom:737.035050px;}
.yb5{bottom:737.594100px;}
.y4c{bottom:741.571350px;}
.y160{bottom:744.731250px;}
.yf0{bottom:745.771350px;}
.y18b{bottom:746.719050px;}
.y2c{bottom:746.735100px;}
.y9d{bottom:746.735250px;}
.y12b{bottom:746.811450px;}
.y84{bottom:747.428100px;}
.y10e{bottom:751.375200px;}
.y4{bottom:753.492000px;}
.y6b{bottom:754.695150px;}
.y168{bottom:756.835050px;}
.y144{bottom:757.394100px;}
.y15f{bottom:759.731250px;}
.yef{bottom:760.771350px;}
.y10d{bottom:766.375200px;}
.y18a{bottom:766.519050px;}
.y2b{bottom:766.535100px;}
.y9c{bottom:766.535250px;}
.y83{bottom:767.228100px;}
.y15e{bottom:774.731250px;}
.yee{bottom:775.771350px;}
.y6a{bottom:776.295150px;}
.y167{bottom:776.635050px;}
.y143{bottom:777.194100px;}
.y3{bottom:778.692000px;}
.y10c{bottom:781.375200px;}
.y189{bottom:786.319050px;}
.y4b{bottom:786.335100px;}
.y2a{bottom:786.335250px;}
.yed{bottom:790.771350px;}
.y12a{bottom:796.370100px;}
.y10b{bottom:796.375200px;}
.y166{bottom:796.435050px;}
.y142{bottom:796.994100px;}
.y69{bottom:797.895150px;}
.yec{bottom:805.771350px;}
.y188{bottom:806.119050px;}
.y29{bottom:806.135100px;}
.y129{bottom:811.370100px;}
.y10a{bottom:811.375200px;}
.y165{bottom:816.235050px;}
.y82{bottom:816.794100px;}
.y68{bottom:819.495150px;}
.yeb{bottom:820.771350px;}
.y187{bottom:825.919050px;}
.y28{bottom:825.935100px;}
.y128{bottom:826.370100px;}
.y109{bottom:826.375200px;}
.y164{bottom:836.035050px;}
.y67{bottom:841.095150px;}
.y127{bottom:841.370100px;}
.y108{bottom:841.375200px;}
.y186{bottom:845.719050px;}
.y27{bottom:845.735100px;}
.y126{bottom:856.370100px;}
.y107{bottom:856.375200px;}
.y66{bottom:862.695150px;}
.y185{bottom:865.519050px;}
.y26{bottom:865.535100px;}
.y141{bottom:866.360100px;}
.y125{bottom:871.370100px;}
.y106{bottom:871.375200px;}
.y65{bottom:884.295150px;}
.y184{bottom:885.319050px;}
.y25{bottom:885.335100px;}
.y163{bottom:885.601050px;}
.y124{bottom:886.370100px;}
.y105{bottom:886.375200px;}
.y63{bottom:926.814750px;}
.y4a{bottom:928.880100px;}
.y22{bottom:928.894800px;}
.y64{bottom:928.899750px;}
.h7{height:28.656000px;}
.h3{height:42.117188px;}
.h2{height:42.234375px;}
.h14{height:45.181641px;}
.h6{height:47.381836px;}
.ha{height:47.513672px;}
.h5{height:52.646484px;}
.h16{height:52.647084px;}
.hb{height:52.792969px;}
.h8{height:57.911133px;}
.h9{height:57.911733px;}
.h15{height:57.920133px;}
.h12{height:57.928533px;}
.h10{height:57.929133px;}
.hf{height:57.947133px;}
.h11{height:58.072266px;}
.h17{height:58.081266px;}
.he{height:58.620117px;}
.hc{height:63.175781px;}
.hd{height:63.351562px;}
.h13{height:63.949219px;}
.h4{height:74.607422px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.xc{left:46.500000px;}
.x1{left:137.799150px;}
.xf{left:151.905600px;}
.x5{left:153.433500px;}
.x9{left:167.562300px;}
.xe{left:203.613600px;}
.x4{left:208.411500px;}
.x2{left:212.002500px;}
.x7{left:214.191750px;}
.x3{left:219.562500px;}
.x15{left:247.004100px;}
.x17{left:269.894100px;}
.x16{left:271.154100px;}
.x18{left:272.339100px;}
.x12{left:277.004100px;}
.x11{left:286.349100px;}
.x1b{left:304.904100px;}
.x13{left:308.024100px;}
.x14{left:313.334100px;}
.x19{left:314.879100px;}
.x1a{left:316.379100px;}
.x1c{left:321.587850px;}
.x6{left:346.536750px;}
.xa{left:356.123250px;}
.xb{left:360.659250px;}
.x8{left:364.351800px;}
.xd{left:525.567150px;}
.x10{left:529.580850px;}
@media print{
.v2{vertical-align:-24.864000pt;}
.v8{vertical-align:-21.312000pt;}
.v7{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v5{vertical-align:17.760000pt;}
.v4{vertical-align:19.536533pt;}
.v6{vertical-align:21.312000pt;}
.v1{vertical-align:24.864000pt;}
.ls8{letter-spacing:-1.776000pt;}
.ls7{letter-spacing:-1.380544pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.765045pt;}
.lsf{letter-spacing:0.850133pt;}
.ls5{letter-spacing:0.937600pt;}
.ls9{letter-spacing:1.554667pt;}
.ls2{letter-spacing:1.680000pt;}
.lsb{letter-spacing:1.818667pt;}
.ls4{letter-spacing:1.866667pt;}
.lsa{letter-spacing:1.973333pt;}
.ls6{letter-spacing:2.053333pt;}
.lsc{letter-spacing:2.240000pt;}
.ls0{letter-spacing:2.613333pt;}
.lse{letter-spacing:2.892533pt;}
.lsd{letter-spacing:6.328000pt;}
.ws37{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.680000pt;}
.ws13{word-spacing:-12.000000pt;}
.ws39{word-spacing:-10.224000pt;}
.ws24{word-spacing:-9.328000pt;}
.ws11{word-spacing:-8.550667pt;}
.ws38{word-spacing:-7.947456pt;}
.ws23{word-spacing:-7.773333pt;}
.ws0{word-spacing:-6.996000pt;}
.wsa5{word-spacing:-5.632000pt;}
.wsb0{word-spacing:-4.224000pt;}
.ws1b{word-spacing:-4.106667pt;}
.wsaf{word-spacing:-3.072000pt;}
.ws9b{word-spacing:-2.992000pt;}
.ws6e{word-spacing:-2.874667pt;}
.wsb4{word-spacing:-2.752000pt;}
.ws82{word-spacing:-2.640000pt;}
.ws94{word-spacing:-2.581333pt;}
.ws69{word-spacing:-2.464000pt;}
.wsa6{word-spacing:-2.405333pt;}
.ws95{word-spacing:-2.346667pt;}
.ws5c{word-spacing:-2.288000pt;}
.ws86{word-spacing:-2.229333pt;}
.ws3e{word-spacing:-2.176000pt;}
.ws16{word-spacing:-2.170667pt;}
.wsc{word-spacing:-2.160000pt;}
.ws72{word-spacing:-2.112000pt;}
.ws67{word-spacing:-2.053333pt;}
.ws30{word-spacing:-2.048000pt;}
.ws7c{word-spacing:-1.877333pt;}
.ws4d{word-spacing:-1.818667pt;}
.ws4{word-spacing:-1.680000pt;}
.ws60{word-spacing:-1.642667pt;}
.ws7d{word-spacing:-1.584000pt;}
.ws3c{word-spacing:-1.536000pt;}
.ws48{word-spacing:-1.525333pt;}
.ws3d{word-spacing:-1.472000pt;}
.ws63{word-spacing:-1.440000pt;}
.ws5e{word-spacing:-1.408000pt;}
.wsa{word-spacing:-1.344000pt;}
.ws81{word-spacing:-1.290667pt;}
.ws3{word-spacing:-1.269333pt;}
.ws71{word-spacing:-1.232000pt;}
.ws3a{word-spacing:-1.152000pt;}
.ws4f{word-spacing:-1.114667pt;}
.ws76{word-spacing:-1.088000pt;}
.ws1c{word-spacing:-1.056000pt;}
.ws32{word-spacing:-1.024000pt;}
.ws47{word-spacing:-0.997333pt;}
.ws9d{word-spacing:-0.938667pt;}
.ws14{word-spacing:-0.906667pt;}
.ws1a{word-spacing:-0.880000pt;}
.ws79{word-spacing:-0.821333pt;}
.wsf{word-spacing:-0.816000pt;}
.ws45{word-spacing:-0.768000pt;}
.ws6b{word-spacing:-0.704000pt;}
.ws1d{word-spacing:-0.645333pt;}
.wsa8{word-spacing:-0.586667pt;}
.ws2d{word-spacing:-0.576000pt;}
.ws97{word-spacing:-0.469333pt;}
.ws5{word-spacing:-0.432000pt;}
.ws6f{word-spacing:-0.410667pt;}
.ws2e{word-spacing:-0.335808pt;}
.ws34{word-spacing:-0.320000pt;}
.wsa0{word-spacing:-0.256000pt;}
.ws57{word-spacing:-0.234667pt;}
.wsaa{word-spacing:-0.176000pt;}
.ws93{word-spacing:-0.144000pt;}
.wsa9{word-spacing:-0.117333pt;}
.ws66{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws17{word-spacing:0.058667pt;}
.ws9{word-spacing:0.144000pt;}
.ws4c{word-spacing:0.176000pt;}
.ws43{word-spacing:0.192000pt;}
.ws62{word-spacing:0.213333pt;}
.ws10{word-spacing:0.336000pt;}
.ws7b{word-spacing:0.352000pt;}
.ws1f{word-spacing:0.410667pt;}
.ws70{word-spacing:0.528000pt;}
.ws50{word-spacing:0.586667pt;}
.wsac{word-spacing:0.645333pt;}
.ws8d{word-spacing:0.704000pt;}
.ws5a{word-spacing:0.720000pt;}
.ws92{word-spacing:0.762667pt;}
.wsa4{word-spacing:0.768000pt;}
.ws33{word-spacing:0.800000pt;}
.wsb{word-spacing:0.816000pt;}
.ws9c{word-spacing:0.938667pt;}
.wsa3{word-spacing:0.960000pt;}
.ws98{word-spacing:0.997333pt;}
.wsd{word-spacing:1.056000pt;}
.ws53{word-spacing:1.114667pt;}
.wse{word-spacing:1.152000pt;}
.wsb1{word-spacing:1.216000pt;}
.ws40{word-spacing:1.280000pt;}
.ws5b{word-spacing:1.290667pt;}
.ws35{word-spacing:1.386667pt;}
.ws42{word-spacing:1.408000pt;}
.ws52{word-spacing:1.466667pt;}
.ws55{word-spacing:1.525333pt;}
.ws4a{word-spacing:1.584000pt;}
.ws41{word-spacing:1.600000pt;}
.ws26{word-spacing:1.701333pt;}
.ws90{word-spacing:1.706667pt;}
.ws56{word-spacing:1.818667pt;}
.ws59{word-spacing:1.877333pt;}
.ws25{word-spacing:1.936000pt;}
.ws64{word-spacing:1.973333pt;}
.wsa7{word-spacing:2.053333pt;}
.ws5d{word-spacing:2.112000pt;}
.ws28{word-spacing:2.133333pt;}
.ws7{word-spacing:2.160000pt;}
.ws73{word-spacing:2.170667pt;}
.ws89{word-spacing:2.256000pt;}
.ws8c{word-spacing:2.293333pt;}
.ws3f{word-spacing:2.304000pt;}
.ws1e{word-spacing:2.346667pt;}
.ws91{word-spacing:2.581333pt;}
.ws18{word-spacing:2.698667pt;}
.wsb5{word-spacing:2.752000pt;}
.ws44{word-spacing:2.816000pt;}
.wsb6{word-spacing:2.874667pt;}
.ws88{word-spacing:3.109333pt;}
.ws6{word-spacing:3.168000pt;}
.ws75{word-spacing:3.226667pt;}
.ws68{word-spacing:3.285333pt;}
.ws8e{word-spacing:3.413333pt;}
.ws84{word-spacing:3.461333pt;}
.ws77{word-spacing:3.578667pt;}
.ws99{word-spacing:3.696000pt;}
.ws85{word-spacing:3.754667pt;}
.ws6d{word-spacing:3.813333pt;}
.ws8{word-spacing:3.840000pt;}
.wsad{word-spacing:3.872000pt;}
.ws22{word-spacing:3.989333pt;}
.ws31{word-spacing:4.032000pt;}
.ws15{word-spacing:4.106667pt;}
.wsb7{word-spacing:4.165333pt;}
.wsb3{word-spacing:4.282667pt;}
.ws9f{word-spacing:4.341333pt;}
.wsa2{word-spacing:4.416000pt;}
.wsa1{word-spacing:4.544000pt;}
.ws87{word-spacing:4.693333pt;}
.ws7a{word-spacing:4.810667pt;}
.ws65{word-spacing:4.928000pt;}
.ws78{word-spacing:4.986667pt;}
.wsb2{word-spacing:5.162667pt;}
.ws80{word-spacing:5.221333pt;}
.ws29{word-spacing:5.280000pt;}
.ws6c{word-spacing:5.338667pt;}
.ws27{word-spacing:5.386667pt;}
.ws4e{word-spacing:5.397333pt;}
.ws83{word-spacing:5.573333pt;}
.ws3b{word-spacing:5.632000pt;}
.ws7e{word-spacing:5.925333pt;}
.ws46{word-spacing:5.952000pt;}
.ws20{word-spacing:5.984000pt;}
.ws8f{word-spacing:6.133333pt;}
.ws2a{word-spacing:6.240000pt;}
.ws8a{word-spacing:6.384000pt;}
.ws19{word-spacing:6.453333pt;}
.ws7f{word-spacing:6.570667pt;}
.ws5f{word-spacing:6.864000pt;}
.ws96{word-spacing:6.922667pt;}
.ws21{word-spacing:7.040000pt;}
.ws6a{word-spacing:7.157333pt;}
.ws58{word-spacing:7.274667pt;}
.ws2f{word-spacing:7.296000pt;}
.ws8b{word-spacing:7.333333pt;}
.ws61{word-spacing:7.392000pt;}
.ws49{word-spacing:7.450667pt;}
.ws9a{word-spacing:7.509333pt;}
.ws54{word-spacing:7.802667pt;}
.wsae{word-spacing:7.808000pt;}
.ws9e{word-spacing:7.920000pt;}
.ws2b{word-spacing:8.320000pt;}
.ws74{word-spacing:9.093333pt;}
.ws2c{word-spacing:10.176000pt;}
.ws4b{word-spacing:11.968000pt;}
.wsab{word-spacing:13.024000pt;}
.ws51{word-spacing:33.840000pt;}
.ws36{word-spacing:57.840000pt;}
._8{margin-left:-1828.456533pt;}
._16{margin-left:-1815.054933pt;}
._11{margin-left:-57.840000pt;}
._15{margin-left:-33.840000pt;}
._10{margin-left:-8.283328pt;}
._19{margin-left:-7.046400pt;}
._2{margin-left:-6.117333pt;}
._13{margin-left:-4.748800pt;}
._5{margin-left:-3.858667pt;}
._0{margin-left:-2.436267pt;}
._1{margin-left:-0.891733pt;}
._4{width:1.104000pt;}
._6{width:2.013333pt;}
._c{width:3.007467pt;}
._3{width:4.569600pt;}
._9{width:5.925333pt;}
._b{width:6.993067pt;}
._a{width:8.178133pt;}
._d{width:9.157867pt;}
._18{width:10.407467pt;}
._12{width:33.840000pt;}
._14{width:36.050667pt;}
._e{width:57.840000pt;}
._f{width:583.893333pt;}
._17{width:1870.281600pt;}
._7{width:1885.641600pt;}
.fs5{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:34.202667pt;}
.fsb{font-size:37.312000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:43.530667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:8.000000pt;}
.y2{bottom:69.139733pt;}
.y24{bottom:72.289333pt;}
.y1{bottom:79.806400pt;}
.y23{bottom:82.956000pt;}
.y49{bottom:124.378000pt;}
.y48{bottom:136.378000pt;}
.y20{bottom:137.757333pt;}
.y47{bottom:148.378000pt;}
.y1f{bottom:152.157333pt;}
.y46{bottom:160.378000pt;}
.y1e{bottom:166.557333pt;}
.y62{bottom:172.378000pt;}
.y123{bottom:172.472267pt;}
.y1d{bottom:180.957333pt;}
.y61{bottom:184.378000pt;}
.y15d{bottom:186.841200pt;}
.y183{bottom:189.544267pt;}
.y122{bottom:190.072267pt;}
.yac{bottom:196.378000pt;}
.y81{bottom:198.914800pt;}
.y15c{bottom:206.041200pt;}
.y182{bottom:207.144267pt;}
.y9b{bottom:207.404533pt;}
.y121{bottom:207.672267pt;}
.y1c{bottom:214.257333pt;}
.y80{bottom:216.514800pt;}
.yd1{bottom:221.764533pt;}
.y45{bottom:223.764667pt;}
.ycb{bottom:224.384533pt;}
.y181{bottom:224.744267pt;}
.y9a{bottom:225.004533pt;}
.y15b{bottom:225.241200pt;}
.y120{bottom:225.268400pt;}
.y1b{bottom:228.657333pt;}
.y7f{bottom:234.114800pt;}
.yd0{bottom:239.364533pt;}
.y44{bottom:241.364667pt;}
.yca{bottom:241.984533pt;}
.y180{bottom:242.344267pt;}
.y99{bottom:242.604533pt;}
.y11f{bottom:242.868400pt;}
.y1a{bottom:243.057333pt;}
.ye4{bottom:243.337867pt;}
.y15a{bottom:244.441200pt;}
.y7e{bottom:251.714800pt;}
.y104{bottom:252.871200pt;}
.ycf{bottom:256.964533pt;}
.y19{bottom:257.457333pt;}
.y43{bottom:258.964667pt;}
.yea{bottom:259.580533pt;}
.yc9{bottom:259.584533pt;}
.y17f{bottom:259.944267pt;}
.y98{bottom:260.204533pt;}
.yab{bottom:260.317867pt;}
.y11e{bottom:260.468400pt;}
.ye3{bottom:260.937867pt;}
.y159{bottom:263.641200pt;}
.yb4{bottom:266.641200pt;}
.y7d{bottom:269.314800pt;}
.y103{bottom:270.471200pt;}
.y18{bottom:271.857333pt;}
.y60{bottom:275.061200pt;}
.y42{bottom:276.564667pt;}
.ye9{bottom:277.180533pt;}
.yc8{bottom:277.184533pt;}
.y17e{bottom:277.544267pt;}
.y97{bottom:277.804533pt;}
.yaa{bottom:277.913867pt;}
.y11d{bottom:278.068400pt;}
.ye2{bottom:278.537867pt;}
.yb3{bottom:279.974533pt;}
.y158{bottom:282.841200pt;}
.y17{bottom:286.257333pt;}
.y102{bottom:288.071200pt;}
.y5f{bottom:288.394533pt;}
.yb2{bottom:293.307867pt;}
.y41{bottom:294.164667pt;}
.y140{bottom:294.232400pt;}
.ye8{bottom:294.780533pt;}
.yc7{bottom:294.784533pt;}
.y17d{bottom:295.144267pt;}
.y96{bottom:295.404533pt;}
.ya9{bottom:295.513867pt;}
.y11c{bottom:295.668400pt;}
.ye1{bottom:296.137867pt;}
.y16{bottom:300.657333pt;}
.y5e{bottom:301.727867pt;}
.y157{bottom:302.041200pt;}
.y101{bottom:305.671200pt;}
.yb1{bottom:306.641200pt;}
.yce{bottom:307.098000pt;}
.y40{bottom:311.764667pt;}
.y13f{bottom:311.832400pt;}
.ye7{bottom:312.380533pt;}
.yc6{bottom:312.384533pt;}
.y17c{bottom:312.744267pt;}
.y95{bottom:313.004533pt;}
.ya8{bottom:313.113867pt;}
.y7c{bottom:313.373467pt;}
.ye0{bottom:313.737867pt;}
.y5d{bottom:315.061200pt;}
.yb0{bottom:319.974533pt;}
.y156{bottom:321.241200pt;}
.y100{bottom:323.271200pt;}
.ycd{bottom:325.497867pt;}
.y5c{bottom:328.394533pt;}
.y3f{bottom:329.364667pt;}
.y13e{bottom:329.432400pt;}
.yc5{bottom:329.984533pt;}
.y7b{bottom:330.240133pt;}
.y17b{bottom:330.344267pt;}
.y94{bottom:330.604533pt;}
.ya7{bottom:330.713867pt;}
.ydf{bottom:331.337867pt;}
.yaf{bottom:333.307867pt;}
.y15{bottom:333.957333pt;}
.y11b{bottom:339.727067pt;}
.y155{bottom:340.441200pt;}
.yff{bottom:340.871200pt;}
.yae{bottom:346.641200pt;}
.y3e{bottom:346.964667pt;}
.y13d{bottom:347.032400pt;}
.yc4{bottom:347.584533pt;}
.y17a{bottom:347.944267pt;}
.y93{bottom:348.204533pt;}
.y14{bottom:348.357333pt;}
.yde{bottom:348.937867pt;}
.ye6{bottom:356.439200pt;}
.y11a{bottom:356.593733pt;}
.yfe{bottom:358.471200pt;}
.y154{bottom:359.641200pt;}
.yad{bottom:359.974533pt;}
.y13{bottom:362.757333pt;}
.y3d{bottom:364.564667pt;}
.y13c{bottom:364.632400pt;}
.yc3{bottom:365.184533pt;}
.y92{bottom:365.804533pt;}
.ydd{bottom:366.537867pt;}
.y179{bottom:367.144267pt;}
.y5b{bottom:368.184533pt;}
.ya6{bottom:374.772533pt;}
.yfd{bottom:376.071200pt;}
.y12{bottom:377.157333pt;}
.y153{bottom:378.841200pt;}
.ycc{bottom:382.164533pt;}
.y3c{bottom:382.164667pt;}
.y13b{bottom:382.232400pt;}
.yc2{bottom:382.780667pt;}
.y7a{bottom:382.840133pt;}
.ybc{bottom:383.396533pt;}
.y91{bottom:383.404533pt;}
.ydc{bottom:384.137867pt;}
.y178{bottom:386.344267pt;}
.y5a{bottom:387.384533pt;}
.y11{bottom:391.557333pt;}
.ya5{bottom:391.639200pt;}
.y152{bottom:398.041200pt;}
.y3b{bottom:399.764533pt;}
.y13a{bottom:399.832400pt;}
.y119{bottom:399.919067pt;}
.yc1{bottom:400.380667pt;}
.ybb{bottom:400.996533pt;}
.y90{bottom:401.004533pt;}
.ydb{bottom:401.737867pt;}
.y79{bottom:402.040133pt;}
.y177{bottom:405.544267pt;}
.y10{bottom:405.957333pt;}
.y59{bottom:406.584533pt;}
.y151{bottom:417.241200pt;}
.y3a{bottom:417.364533pt;}
.y139{bottom:417.432400pt;}
.y118{bottom:417.519067pt;}
.yba{bottom:418.596533pt;}
.y8f{bottom:418.604533pt;}
.yda{bottom:419.337867pt;}
.yfc{bottom:420.127867pt;}
.y78{bottom:421.240133pt;}
.y176{bottom:424.744267pt;}
.y58{bottom:425.784533pt;}
.yfb{bottom:433.461200pt;}
.y39{bottom:434.964533pt;}
.y138{bottom:435.032400pt;}
.y117{bottom:435.119067pt;}
.yb9{bottom:436.196533pt;}
.y8e{bottom:436.204533pt;}
.y150{bottom:436.441200pt;}
.yd9{bottom:436.937867pt;}
.yf{bottom:439.257333pt;}
.y77{bottom:440.440133pt;}
.y175{bottom:443.944267pt;}
.yc0{bottom:444.439333pt;}
.y57{bottom:444.984533pt;}
.yfa{bottom:446.794533pt;}
.y197{bottom:447.750267pt;}
.y38{bottom:452.564533pt;}
.y137{bottom:452.632400pt;}
.y116{bottom:452.719067pt;}
.ye{bottom:453.657333pt;}
.y8d{bottom:453.796533pt;}
.yd8{bottom:454.537867pt;}
.y14f{bottom:455.641200pt;}
.y76{bottom:459.640133pt;}
.yf9{bottom:460.127867pt;}
.y174{bottom:461.544267pt;}
.y56{bottom:464.184533pt;}
.y196{bottom:465.350267pt;}
.yd{bottom:468.057333pt;}
.ya4{bottom:470.164533pt;}
.y37{bottom:470.164667pt;}
.y136{bottom:470.232400pt;}
.y115{bottom:470.315067pt;}
.y8c{bottom:471.396533pt;}
.yd7{bottom:472.137867pt;}
.yf8{bottom:473.461200pt;}
.y14e{bottom:474.841200pt;}
.y75{bottom:478.840133pt;}
.y173{bottom:479.144267pt;}
.yc{bottom:482.457333pt;}
.y195{bottom:482.950267pt;}
.y55{bottom:483.384533pt;}
.y36{bottom:487.764533pt;}
.ybf{bottom:487.764667pt;}
.y135{bottom:487.832400pt;}
.y114{bottom:487.915067pt;}
.y8b{bottom:488.996533pt;}
.yd6{bottom:489.737867pt;}
.y14d{bottom:494.041200pt;}
.y172{bottom:496.744267pt;}
.yb{bottom:496.857333pt;}
.yb8{bottom:497.855200pt;}
.y74{bottom:498.040133pt;}
.y194{bottom:500.550267pt;}
.y54{bottom:502.584533pt;}
.y35{bottom:505.364533pt;}
.ybe{bottom:505.364667pt;}
.y134{bottom:505.432400pt;}
.yd5{bottom:507.329867pt;}
.ya{bottom:511.257333pt;}
.y14c{bottom:513.241200pt;}
.yf7{bottom:513.251200pt;}
.y171{bottom:514.342267pt;}
.y73{bottom:517.240133pt;}
.y193{bottom:518.150267pt;}
.y53{bottom:521.784533pt;}
.y34{bottom:522.964533pt;}
.ybd{bottom:522.964667pt;}
.y133{bottom:523.032400pt;}
.yd4{bottom:524.929867pt;}
.y9{bottom:525.657333pt;}
.yf6{bottom:530.851200pt;}
.y170{bottom:531.942267pt;}
.y113{bottom:531.973733pt;}
.y14b{bottom:532.439200pt;}
.y8a{bottom:533.055200pt;}
.y192{bottom:535.750267pt;}
.y72{bottom:536.440133pt;}
.y33{bottom:540.564533pt;}
.ye5{bottom:540.564667pt;}
.y132{bottom:540.632400pt;}
.y52{bottom:540.984533pt;}
.yb7{bottom:541.180533pt;}
.yf5{bottom:548.451200pt;}
.y16f{bottom:549.542267pt;}
.y14a{bottom:550.039200pt;}
.y191{bottom:554.950267pt;}
.y71{bottom:555.640133pt;}
.y32{bottom:558.164533pt;}
.ya3{bottom:558.164667pt;}
.y131{bottom:558.232400pt;}
.yb6{bottom:558.780533pt;}
.y51{bottom:560.184533pt;}
.yf4{bottom:566.051200pt;}
.y8{bottom:566.514000pt;}
.y16e{bottom:567.142267pt;}
.y149{bottom:567.639200pt;}
.yd3{bottom:568.988533pt;}
.y190{bottom:574.150267pt;}
.y70{bottom:574.840133pt;}
.y112{bottom:575.299067pt;}
.y31{bottom:575.764533pt;}
.ya2{bottom:575.764667pt;}
.y130{bottom:575.832400pt;}
.y89{bottom:576.380533pt;}
.y7{bottom:582.514000pt;}
.yf3{bottom:583.651200pt;}
.y16d{bottom:584.742267pt;}
.y148{bottom:585.239200pt;}
.yd2{bottom:585.855200pt;}
.y111{bottom:592.899067pt;}
.y18f{bottom:593.350267pt;}
.y30{bottom:593.364533pt;}
.ya1{bottom:593.364667pt;}
.y12f{bottom:593.432400pt;}
.y88{bottom:593.980533pt;}
.y6f{bottom:594.040133pt;}
.yf2{bottom:601.251200pt;}
.y16c{bottom:602.342267pt;}
.y147{bottom:602.839200pt;}
.y50{bottom:605.841200pt;}
.y110{bottom:610.499067pt;}
.y18e{bottom:610.950267pt;}
.y2f{bottom:610.964533pt;}
.ya0{bottom:610.964667pt;}
.y12e{bottom:611.032400pt;}
.y87{bottom:611.580533pt;}
.y6e{bottom:613.240133pt;}
.yf1{bottom:618.851200pt;}
.y4f{bottom:619.174533pt;}
.y16b{bottom:619.942267pt;}
.y146{bottom:620.439200pt;}
.y6{bottom:624.970667pt;}
.y18d{bottom:628.550267pt;}
.y2e{bottom:628.564533pt;}
.y9f{bottom:628.564667pt;}
.y12d{bottom:628.632400pt;}
.y86{bottom:629.180533pt;}
.y6d{bottom:632.440133pt;}
.y4e{bottom:632.507867pt;}
.y162{bottom:635.316667pt;}
.y16a{bottom:637.542267pt;}
.y145{bottom:638.039200pt;}
.y4d{bottom:645.841200pt;}
.y18c{bottom:646.150267pt;}
.y2d{bottom:646.164533pt;}
.y9e{bottom:646.164667pt;}
.y12c{bottom:646.232400pt;}
.y85{bottom:646.780533pt;}
.y5{bottom:647.370667pt;}
.y161{bottom:648.650000pt;}
.y6c{bottom:651.640133pt;}
.y10f{bottom:654.555733pt;}
.y169{bottom:655.142267pt;}
.yb5{bottom:655.639200pt;}
.y4c{bottom:659.174533pt;}
.y160{bottom:661.983333pt;}
.yf0{bottom:662.907867pt;}
.y18b{bottom:663.750267pt;}
.y2c{bottom:663.764533pt;}
.y9d{bottom:663.764667pt;}
.y12b{bottom:663.832400pt;}
.y84{bottom:664.380533pt;}
.y10e{bottom:667.889067pt;}
.y4{bottom:669.770667pt;}
.y6b{bottom:670.840133pt;}
.y168{bottom:672.742267pt;}
.y144{bottom:673.239200pt;}
.y15f{bottom:675.316667pt;}
.yef{bottom:676.241200pt;}
.y10d{bottom:681.222400pt;}
.y18a{bottom:681.350267pt;}
.y2b{bottom:681.364533pt;}
.y9c{bottom:681.364667pt;}
.y83{bottom:681.980533pt;}
.y15e{bottom:688.650000pt;}
.yee{bottom:689.574533pt;}
.y6a{bottom:690.040133pt;}
.y167{bottom:690.342267pt;}
.y143{bottom:690.839200pt;}
.y3{bottom:692.170667pt;}
.y10c{bottom:694.555733pt;}
.y189{bottom:698.950267pt;}
.y4b{bottom:698.964533pt;}
.y2a{bottom:698.964667pt;}
.yed{bottom:702.907867pt;}
.y12a{bottom:707.884533pt;}
.y10b{bottom:707.889067pt;}
.y166{bottom:707.942267pt;}
.y142{bottom:708.439200pt;}
.y69{bottom:709.240133pt;}
.yec{bottom:716.241200pt;}
.y188{bottom:716.550267pt;}
.y29{bottom:716.564533pt;}
.y129{bottom:721.217867pt;}
.y10a{bottom:721.222400pt;}
.y165{bottom:725.542267pt;}
.y82{bottom:726.039200pt;}
.y68{bottom:728.440133pt;}
.yeb{bottom:729.574533pt;}
.y187{bottom:734.150267pt;}
.y28{bottom:734.164533pt;}
.y128{bottom:734.551200pt;}
.y109{bottom:734.555733pt;}
.y164{bottom:743.142267pt;}
.y67{bottom:747.640133pt;}
.y127{bottom:747.884533pt;}
.y108{bottom:747.889067pt;}
.y186{bottom:751.750267pt;}
.y27{bottom:751.764533pt;}
.y126{bottom:761.217867pt;}
.y107{bottom:761.222400pt;}
.y66{bottom:766.840133pt;}
.y185{bottom:769.350267pt;}
.y26{bottom:769.364533pt;}
.y141{bottom:770.097867pt;}
.y125{bottom:774.551200pt;}
.y106{bottom:774.555733pt;}
.y65{bottom:786.040133pt;}
.y184{bottom:786.950267pt;}
.y25{bottom:786.964533pt;}
.y163{bottom:787.200933pt;}
.y124{bottom:787.884533pt;}
.y105{bottom:787.889067pt;}
.y63{bottom:823.835333pt;}
.y4a{bottom:825.671200pt;}
.y22{bottom:825.684267pt;}
.y64{bottom:825.688667pt;}
.h7{height:25.472000pt;}
.h3{height:37.437500pt;}
.h2{height:37.541667pt;}
.h14{height:40.161458pt;}
.h6{height:42.117188pt;}
.ha{height:42.234375pt;}
.h5{height:46.796875pt;}
.h16{height:46.797408pt;}
.hb{height:46.927083pt;}
.h8{height:51.476562pt;}
.h9{height:51.477096pt;}
.h15{height:51.484562pt;}
.h12{height:51.492029pt;}
.h10{height:51.492562pt;}
.hf{height:51.508562pt;}
.h11{height:51.619792pt;}
.h17{height:51.627792pt;}
.he{height:52.106771pt;}
.hc{height:56.156250pt;}
.hd{height:56.312500pt;}
.h13{height:56.843750pt;}
.h4{height:66.317708pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.xc{left:41.333333pt;}
.x1{left:122.488133pt;}
.xf{left:135.027200pt;}
.x5{left:136.385333pt;}
.x9{left:148.944267pt;}
.xe{left:180.989867pt;}
.x4{left:185.254667pt;}
.x2{left:188.446667pt;}
.x7{left:190.392667pt;}
.x3{left:195.166667pt;}
.x15{left:219.559200pt;}
.x17{left:239.905867pt;}
.x16{left:241.025867pt;}
.x18{left:242.079200pt;}
.x12{left:246.225867pt;}
.x11{left:254.532533pt;}
.x1b{left:271.025867pt;}
.x13{left:273.799200pt;}
.x14{left:278.519200pt;}
.x19{left:279.892533pt;}
.x1a{left:281.225867pt;}
.x1c{left:285.855867pt;}
.x6{left:308.032667pt;}
.xa{left:316.554000pt;}
.xb{left:320.586000pt;}
.x8{left:323.868267pt;}
.xd{left:467.170800pt;}
.x10{left:470.738533pt;}
}




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