
    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_60fde99d1eb6d04bfc09e237.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_4ff05c360cadad4e3c76bff6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_2189858c0807b1226aa6c9bb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e9eb3d6c98324a6170f8cc96.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_845e25be66b5a4de7548a671.woff')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_280d38cb5a38166ca085ad63.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_0556cd38b00e95b50a09f03f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2b1ef0831bbc486fbe9ce29e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls17{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.720000px;}
.ls5{letter-spacing:5.040000px;}
.ls7{letter-spacing:12.840000px;}
.ls1{letter-spacing:13.140000px;}
.ls0{letter-spacing:14.580000px;}
.ls13{letter-spacing:18.144000px;}
.lsd{letter-spacing:21.221280px;}
.ls14{letter-spacing:21.744000px;}
.ls12{letter-spacing:31.080000px;}
.ls1c{letter-spacing:33.984000px;}
.ls19{letter-spacing:37.584000px;}
.ls1a{letter-spacing:41.184000px;}
.ls1b{letter-spacing:45.504000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-30.840000px;}
.wsd{word-spacing:-21.420000px;}
.ws14{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.432000px;}
.ws11{word-spacing:-18.216000px;}
.wsf{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.496000px;}
.ws12{word-spacing:-17.064000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.ws7{word-spacing:-9.720000px;}
.ws1{word-spacing:-5.256000px;}
.ws0{word-spacing:-4.824000px;}
.wsa{word-spacing:0.000000px;}
._30{margin-left:-7.404000px;}
._31{margin-left:-6.120000px;}
._16{margin-left:-5.112000px;}
._10{margin-left:-3.876000px;}
._e{margin-left:-2.688000px;}
._4{margin-left:-1.656000px;}
._3{width:1.080000px;}
._8{width:2.475600px;}
._9{width:3.479280px;}
._b{width:4.534560px;}
._a{width:5.712720px;}
._14{width:6.741120px;}
._13{width:7.920000px;}
._f{width:9.648000px;}
._0{width:11.232000px;}
._2{width:12.828000px;}
._1{width:14.052000px;}
._12{width:15.228000px;}
._15{width:16.380000px;}
._1f{width:19.008000px;}
._17{width:20.016000px;}
._18{width:21.384000px;}
._20{width:23.040000px;}
._24{width:24.120000px;}
._19{width:25.920000px;}
._c{width:27.072000px;}
._d{width:28.440000px;}
._21{width:29.520000px;}
._2e{width:30.600000px;}
._1d{width:32.472000px;}
._1e{width:33.624000px;}
._2f{width:34.632000px;}
._1a{width:38.088000px;}
._1b{width:39.312000px;}
._27{width:43.344000px;}
._2d{width:45.300000px;}
._2c{width:46.584000px;}
._25{width:63.072000px;}
._26{width:64.344000px;}
._22{width:72.576000px;}
._23{width:73.656000px;}
._2b{width:127.184400px;}
._6{width:393.290400px;}
._5{width:394.368000px;}
._29{width:474.456000px;}
._11{width:510.456000px;}
._7{width:695.820000px;}
._28{width:846.156000px;}
._2a{width:1332.096000px;}
._1c{width:1368.096000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:55.980000px;}
.y78{bottom:117.576000px;}
.y8d{bottom:117.756000px;}
.y8c{bottom:119.916000px;}
.y10a{bottom:128.196000px;}
.y51{bottom:129.096000px;}
.ya7{bottom:141.696000px;}
.y77{bottom:144.576000px;}
.y8b{bottom:146.916000px;}
.y109{bottom:155.010000px;}
.y50{bottom:156.090000px;}
.y2b{bottom:164.910000px;}
.yae{bottom:165.630000px;}
.ya6{bottom:168.510000px;}
.y76{bottom:171.390000px;}
.y8a{bottom:173.730000px;}
.yf6{bottom:173.910000px;}
.y108{bottom:182.010000px;}
.y4f{bottom:182.910000px;}
.yad{bottom:184.530000px;}
.y2a{bottom:188.850000px;}
.ybb{bottom:192.810000px;}
.yc8{bottom:194.790000px;}
.ya5{bottom:195.510000px;}
.y75{bottom:198.390000px;}
.y89{bottom:200.730000px;}
.yc2{bottom:207.930000px;}
.yac{bottom:208.470000px;}
.y107{bottom:208.830000px;}
.y29{bottom:209.730000px;}
.y4e{bottom:209.910000px;}
.yc7{bottom:213.870000px;}
.ye8{bottom:214.410000px;}
.yba{bottom:216.750000px;}
.yd3{bottom:217.110000px;}
.ya4{bottom:222.330000px;}
.y74{bottom:225.210000px;}
.yc1{bottom:227.010000px;}
.y88{bottom:227.550000px;}
.yf5{bottom:227.730000px;}
.yb5{bottom:228.090000px;}
.y28{bottom:230.430000px;}
.ye7{bottom:233.310000px;}
.y106{bottom:235.830000px;}
.yd2{bottom:236.190000px;}
.y4d{bottom:236.730000px;}
.yc6{bottom:237.810000px;}
.yda{bottom:241.410000px;}
.yb4{bottom:247.170000px;}
.ya3{bottom:249.150000px;}
.yc0{bottom:250.950000px;}
.y27{bottom:251.130000px;}
.y73{bottom:252.210000px;}
.y87{bottom:254.550000px;}
.ye6{bottom:257.250000px;}
.yd1{bottom:260.130000px;}
.yd9{bottom:260.310000px;}
.y105{bottom:262.650000px;}
.y4c{bottom:263.730000px;}
.yb3{bottom:271.110000px;}
.y26{bottom:271.830000px;}
.ya2{bottom:276.150000px;}
.y72{bottom:279.030000px;}
.ye1{bottom:279.750000px;}
.y86{bottom:281.370000px;}
.yf4{bottom:281.550000px;}
.yd8{bottom:284.250000px;}
.y104{bottom:289.650000px;}
.y4b{bottom:290.550000px;}
.y25{bottom:292.530000px;}
.ye0{bottom:298.650000px;}
.ya1{bottom:302.970000px;}
.y71{bottom:305.850000px;}
.y85{bottom:308.370000px;}
.y24{bottom:313.230000px;}
.y103{bottom:316.470000px;}
.y4a{bottom:317.550000px;}
.ydf{bottom:322.590000px;}
.ya0{bottom:329.970000px;}
.y70{bottom:332.850000px;}
.y23{bottom:333.930000px;}
.y84{bottom:335.190000px;}
.yf3{bottom:335.370000px;}
.y102{bottom:343.470000px;}
.y49{bottom:344.370000px;}
.y22{bottom:354.630000px;}
.y9f{bottom:356.790000px;}
.y6f{bottom:359.670000px;}
.y83{bottom:362.190000px;}
.y101{bottom:370.335000px;}
.y48{bottom:371.415000px;}
.y21{bottom:378.435000px;}
.y9e{bottom:383.835000px;}
.y6e{bottom:386.715000px;}
.y82{bottom:389.055000px;}
.yf2{bottom:389.235000px;}
.y100{bottom:397.335000px;}
.y47{bottom:398.235000px;}
.y20{bottom:402.375000px;}
.y9d{bottom:410.655000px;}
.y6d{bottom:413.535000px;}
.y81{bottom:416.055000px;}
.y1f{bottom:423.255000px;}
.yff{bottom:424.155000px;}
.y46{bottom:425.235000px;}
.y9c{bottom:437.655000px;}
.y6c{bottom:440.535000px;}
.y80{bottom:442.875000px;}
.y1e{bottom:443.955000px;}
.yfe{bottom:451.155000px;}
.y45{bottom:452.055000px;}
.yf1{bottom:454.575000px;}
.y9b{bottom:464.475000px;}
.y1d{bottom:464.655000px;}
.y6b{bottom:467.355000px;}
.y7f{bottom:469.875000px;}
.yfd{bottom:477.975000px;}
.y44{bottom:479.055000px;}
.y1c{bottom:485.355000px;}
.y9a{bottom:491.475000px;}
.y6a{bottom:494.355000px;}
.y7e{bottom:496.695000px;}
.yf0{bottom:499.755000px;}
.yfc{bottom:504.975000px;}
.y43{bottom:505.875000px;}
.y1b{bottom:506.055000px;}
.y99{bottom:518.295000px;}
.y69{bottom:521.175000px;}
.y7d{bottom:523.695000px;}
.yef{bottom:526.575000px;}
.yfb{bottom:531.795000px;}
.y42{bottom:532.875000px;}
.y98{bottom:545.295000px;}
.y68{bottom:548.175000px;}
.y7c{bottom:550.515000px;}
.yee{bottom:553.575000px;}
.yfa{bottom:558.795000px;}
.y41{bottom:559.695000px;}
.y1a{bottom:571.035000px;}
.y97{bottom:572.115000px;}
.y67{bottom:574.995000px;}
.y7b{bottom:577.515000px;}
.yed{bottom:580.395000px;}
.yf9{bottom:585.615000px;}
.y40{bottom:586.695000px;}
.y19{bottom:588.315000px;}
.y96{bottom:599.115000px;}
.yab{bottom:599.295000px;}
.y66{bottom:601.995000px;}
.y7a{bottom:604.335000px;}
.yec{bottom:607.395000px;}
.y18{bottom:610.815000px;}
.y3f{bottom:613.515000px;}
.yf8{bottom:615.135000px;}
.y95{bottom:625.965000px;}
.yaa{bottom:627.585000px;}
.y17{bottom:627.945000px;}
.y65{bottom:628.845000px;}
.y116{bottom:631.365000px;}
.yeb{bottom:634.245000px;}
.yf7{bottom:639.105000px;}
.y3e{bottom:640.545000px;}
.y16{bottom:645.225000px;}
.ya9{bottom:646.665000px;}
.ycc{bottom:649.185000px;}
.y94{bottom:652.965000px;}
.yb9{bottom:655.125000px;}
.y64{bottom:655.845000px;}
.yd7{bottom:658.185000px;}
.yea{bottom:661.245000px;}
.y15{bottom:662.505000px;}
.y3d{bottom:667.365000px;}
.y79{bottom:670.425000px;}
.ya8{bottom:670.605000px;}
.y14{bottom:674.565000px;}
.ycb{bottom:677.085000px;}
.y93{bottom:679.785000px;}
.y63{bottom:682.665000px;}
.yd0{bottom:682.845000px;}
.yb8{bottom:683.025000px;}
.yc5{bottom:683.925000px;}
.y115{bottom:685.185000px;}
.yd6{bottom:686.085000px;}
.ybf{bottom:687.345000px;}
.ye5{bottom:688.965000px;}
.ye9{bottom:690.585000px;}
.y3c{bottom:694.365000px;}
.yca{bottom:696.165000px;}
.y13{bottom:697.065000px;}
.yb7{bottom:701.925000px;}
.yc4{bottom:702.825000px;}
.yd5{bottom:705.165000px;}
.yb2{bottom:705.345000px;}
.y92{bottom:706.785000px;}
.y12{bottom:708.945000px;}
.y62{bottom:709.665000px;}
.ycf{bottom:710.925000px;}
.y114{bottom:712.005000px;}
.ybe{bottom:715.425000px;}
.ye4{bottom:716.865000px;}
.yc9{bottom:720.105000px;}
.y3b{bottom:721.185000px;}
.yb6{bottom:726.045000px;}
.yc3{bottom:726.945000px;}
.yd4{bottom:729.105000px;}
.yce{bottom:729.825000px;}
.y11{bottom:731.445000px;}
.yb1{bottom:733.425000px;}
.y91{bottom:733.605000px;}
.ybd{bottom:734.325000px;}
.ye3{bottom:735.765000px;}
.y61{bottom:736.485000px;}
.y113{bottom:739.005000px;}
.yde{bottom:740.805000px;}
.y10{bottom:743.505000px;}
.y3a{bottom:748.185000px;}
.yb0{bottom:752.325000px;}
.ycd{bottom:753.945000px;}
.ybc{bottom:758.445000px;}
.ye2{bottom:759.885000px;}
.y90{bottom:760.605000px;}
.y60{bottom:763.485000px;}
.y112{bottom:765.825000px;}
.yf{bottom:766.005000px;}
.ydd{bottom:768.705000px;}
.y39{bottom:775.005000px;}
.yaf{bottom:776.445000px;}
.ye{bottom:783.285000px;}
.y8f{bottom:787.425000px;}
.ydc{bottom:787.605000px;}
.y5f{bottom:790.305000px;}
.y111{bottom:792.825000px;}
.yd{bottom:795.345000px;}
.y38{bottom:802.005000px;}
.ydb{bottom:811.725000px;}
.y5e{bottom:817.305000px;}
.yc{bottom:817.665000px;}
.y110{bottom:819.645000px;}
.y8e{bottom:825.945000px;}
.y37{bottom:828.825000px;}
.y117{bottom:831.885000px;}
.yb{bottom:834.945000px;}
.y5d{bottom:844.125000px;}
.y10f{bottom:846.645000px;}
.y36{bottom:855.825000px;}
.ya{bottom:856.725000px;}
.y5c{bottom:871.125000px;}
.y10e{bottom:873.465000px;}
.y9{bottom:877.425000px;}
.y35{bottom:882.690000px;}
.y5b{bottom:897.990000px;}
.y8{bottom:898.170000px;}
.y10d{bottom:900.330000px;}
.y34{bottom:909.690000px;}
.y5a{bottom:924.990000px;}
.y10c{bottom:927.330000px;}
.y33{bottom:936.510000px;}
.y59{bottom:951.810000px;}
.y32{bottom:963.330000px;}
.y58{bottom:978.810000px;}
.y31{bottom:990.330000px;}
.y10b{bottom:993.390000px;}
.y7{bottom:1000.050000px;}
.y57{bottom:1005.630000px;}
.y30{bottom:1017.150000px;}
.y6{bottom:1024.350000px;}
.y56{bottom:1032.630000px;}
.y2f{bottom:1044.150000px;}
.y55{bottom:1059.450000px;}
.y2e{bottom:1070.970000px;}
.y54{bottom:1086.450000px;}
.y53{bottom:1113.270000px;}
.y4{bottom:1129.290000px;}
.y2d{bottom:1137.210000px;}
.y52{bottom:1140.270000px;}
.y3{bottom:1152.000000px;}
.y2{bottom:1172.880000px;}
.y2c{bottom:1193.400000px;}
.y1{bottom:1193.580000px;}
.h7{height:34.855313px;}
.h3{height:43.246406px;}
.hc{height:44.893125px;}
.ha{height:51.539062px;}
.h8{height:53.573906px;}
.h4{height:57.092344px;}
.hb{height:59.383125px;}
.h9{height:60.300703px;}
.h2{height:64.546875px;}
.h5{height:70.606406px;}
.h6{height:70.786406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.235987px;}
.x1{left:107.855987px;}
.x6{left:120.815987px;}
.x10{left:124.415987px;}
.xc{left:129.635987px;}
.xd{left:131.255987px;}
.xb{left:133.955987px;}
.x5{left:139.175987px;}
.x8{left:159.869987px;}
.x4{left:168.689987px;}
.x11{left:171.209987px;}
.xf{left:174.629987px;}
.x3{left:178.589987px;}
.x14{left:186.329987px;}
.x9{left:191.549987px;}
.x12{left:285.554987px;}
.x7{left:318.854987px;}
.xe{left:349.994987px;}
.xa{left:351.614987px;}
.x13{left:371.054987px;}
.x16{left:446.474987px;}
.x19{left:778.829987px;}
.x1a{left:781.349987px;}
.x15{left:783.869987px;}
.x18{left:785.129987px;}
.x1b{left:786.569987px;}
.x17{left:788.189987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls5{letter-spacing:4.480000pt;}
.ls7{letter-spacing:11.413333pt;}
.ls1{letter-spacing:11.680000pt;}
.ls0{letter-spacing:12.960000pt;}
.ls13{letter-spacing:16.128000pt;}
.lsd{letter-spacing:18.863360pt;}
.ls14{letter-spacing:19.328000pt;}
.ls12{letter-spacing:27.626667pt;}
.ls1c{letter-spacing:30.208000pt;}
.ls19{letter-spacing:33.408000pt;}
.ls1a{letter-spacing:36.608000pt;}
.ls1b{letter-spacing:40.448000pt;}
.ws2{word-spacing:-27.413333pt;}
.wsd{word-spacing:-19.040000pt;}
.ws14{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws11{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.552000pt;}
.ws12{word-spacing:-15.168000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.ws7{word-spacing:-8.640000pt;}
.ws1{word-spacing:-4.672000pt;}
.ws0{word-spacing:-4.288000pt;}
.wsa{word-spacing:0.000000pt;}
._30{margin-left:-6.581333pt;}
._31{margin-left:-5.440000pt;}
._16{margin-left:-4.544000pt;}
._10{margin-left:-3.445333pt;}
._e{margin-left:-2.389333pt;}
._4{margin-left:-1.472000pt;}
._3{width:0.960000pt;}
._8{width:2.200533pt;}
._9{width:3.092693pt;}
._b{width:4.030720pt;}
._a{width:5.077973pt;}
._14{width:5.992107pt;}
._13{width:7.040000pt;}
._f{width:8.576000pt;}
._0{width:9.984000pt;}
._2{width:11.402667pt;}
._1{width:12.490667pt;}
._12{width:13.536000pt;}
._15{width:14.560000pt;}
._1f{width:16.896000pt;}
._17{width:17.792000pt;}
._18{width:19.008000pt;}
._20{width:20.480000pt;}
._24{width:21.440000pt;}
._19{width:23.040000pt;}
._c{width:24.064000pt;}
._d{width:25.280000pt;}
._21{width:26.240000pt;}
._2e{width:27.200000pt;}
._1d{width:28.864000pt;}
._1e{width:29.888000pt;}
._2f{width:30.784000pt;}
._1a{width:33.856000pt;}
._1b{width:34.944000pt;}
._27{width:38.528000pt;}
._2d{width:40.266667pt;}
._2c{width:41.408000pt;}
._25{width:56.064000pt;}
._26{width:57.194667pt;}
._22{width:64.512000pt;}
._23{width:65.472000pt;}
._2b{width:113.052800pt;}
._6{width:349.591467pt;}
._5{width:350.549333pt;}
._29{width:421.738667pt;}
._11{width:453.738667pt;}
._7{width:618.506667pt;}
._28{width:752.138667pt;}
._2a{width:1184.085333pt;}
._1c{width:1216.085333pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:49.760000pt;}
.y78{bottom:104.512000pt;}
.y8d{bottom:104.672000pt;}
.y8c{bottom:106.592000pt;}
.y10a{bottom:113.952000pt;}
.y51{bottom:114.752000pt;}
.ya7{bottom:125.952000pt;}
.y77{bottom:128.512000pt;}
.y8b{bottom:130.592000pt;}
.y109{bottom:137.786667pt;}
.y50{bottom:138.746667pt;}
.y2b{bottom:146.586667pt;}
.yae{bottom:147.226667pt;}
.ya6{bottom:149.786667pt;}
.y76{bottom:152.346667pt;}
.y8a{bottom:154.426667pt;}
.yf6{bottom:154.586667pt;}
.y108{bottom:161.786667pt;}
.y4f{bottom:162.586667pt;}
.yad{bottom:164.026667pt;}
.y2a{bottom:167.866667pt;}
.ybb{bottom:171.386667pt;}
.yc8{bottom:173.146667pt;}
.ya5{bottom:173.786667pt;}
.y75{bottom:176.346667pt;}
.y89{bottom:178.426667pt;}
.yc2{bottom:184.826667pt;}
.yac{bottom:185.306667pt;}
.y107{bottom:185.626667pt;}
.y29{bottom:186.426667pt;}
.y4e{bottom:186.586667pt;}
.yc7{bottom:190.106667pt;}
.ye8{bottom:190.586667pt;}
.yba{bottom:192.666667pt;}
.yd3{bottom:192.986667pt;}
.ya4{bottom:197.626667pt;}
.y74{bottom:200.186667pt;}
.yc1{bottom:201.786667pt;}
.y88{bottom:202.266667pt;}
.yf5{bottom:202.426667pt;}
.yb5{bottom:202.746667pt;}
.y28{bottom:204.826667pt;}
.ye7{bottom:207.386667pt;}
.y106{bottom:209.626667pt;}
.yd2{bottom:209.946667pt;}
.y4d{bottom:210.426667pt;}
.yc6{bottom:211.386667pt;}
.yda{bottom:214.586667pt;}
.yb4{bottom:219.706667pt;}
.ya3{bottom:221.466667pt;}
.yc0{bottom:223.066667pt;}
.y27{bottom:223.226667pt;}
.y73{bottom:224.186667pt;}
.y87{bottom:226.266667pt;}
.ye6{bottom:228.666667pt;}
.yd1{bottom:231.226667pt;}
.yd9{bottom:231.386667pt;}
.y105{bottom:233.466667pt;}
.y4c{bottom:234.426667pt;}
.yb3{bottom:240.986667pt;}
.y26{bottom:241.626667pt;}
.ya2{bottom:245.466667pt;}
.y72{bottom:248.026667pt;}
.ye1{bottom:248.666667pt;}
.y86{bottom:250.106667pt;}
.yf4{bottom:250.266667pt;}
.yd8{bottom:252.666667pt;}
.y104{bottom:257.466667pt;}
.y4b{bottom:258.266667pt;}
.y25{bottom:260.026667pt;}
.ye0{bottom:265.466667pt;}
.ya1{bottom:269.306667pt;}
.y71{bottom:271.866667pt;}
.y85{bottom:274.106667pt;}
.y24{bottom:278.426667pt;}
.y103{bottom:281.306667pt;}
.y4a{bottom:282.266667pt;}
.ydf{bottom:286.746667pt;}
.ya0{bottom:293.306667pt;}
.y70{bottom:295.866667pt;}
.y23{bottom:296.826667pt;}
.y84{bottom:297.946667pt;}
.yf3{bottom:298.106667pt;}
.y102{bottom:305.306667pt;}
.y49{bottom:306.106667pt;}
.y22{bottom:315.226667pt;}
.y9f{bottom:317.146667pt;}
.y6f{bottom:319.706667pt;}
.y83{bottom:321.946667pt;}
.y101{bottom:329.186667pt;}
.y48{bottom:330.146667pt;}
.y21{bottom:336.386667pt;}
.y9e{bottom:341.186667pt;}
.y6e{bottom:343.746667pt;}
.y82{bottom:345.826667pt;}
.yf2{bottom:345.986667pt;}
.y100{bottom:353.186667pt;}
.y47{bottom:353.986667pt;}
.y20{bottom:357.666667pt;}
.y9d{bottom:365.026667pt;}
.y6d{bottom:367.586667pt;}
.y81{bottom:369.826667pt;}
.y1f{bottom:376.226667pt;}
.yff{bottom:377.026667pt;}
.y46{bottom:377.986667pt;}
.y9c{bottom:389.026667pt;}
.y6c{bottom:391.586667pt;}
.y80{bottom:393.666667pt;}
.y1e{bottom:394.626667pt;}
.yfe{bottom:401.026667pt;}
.y45{bottom:401.826667pt;}
.yf1{bottom:404.066667pt;}
.y9b{bottom:412.866667pt;}
.y1d{bottom:413.026667pt;}
.y6b{bottom:415.426667pt;}
.y7f{bottom:417.666667pt;}
.yfd{bottom:424.866667pt;}
.y44{bottom:425.826667pt;}
.y1c{bottom:431.426667pt;}
.y9a{bottom:436.866667pt;}
.y6a{bottom:439.426667pt;}
.y7e{bottom:441.506667pt;}
.yf0{bottom:444.226667pt;}
.yfc{bottom:448.866667pt;}
.y43{bottom:449.666667pt;}
.y1b{bottom:449.826667pt;}
.y99{bottom:460.706667pt;}
.y69{bottom:463.266667pt;}
.y7d{bottom:465.506667pt;}
.yef{bottom:468.066667pt;}
.yfb{bottom:472.706667pt;}
.y42{bottom:473.666667pt;}
.y98{bottom:484.706667pt;}
.y68{bottom:487.266667pt;}
.y7c{bottom:489.346667pt;}
.yee{bottom:492.066667pt;}
.yfa{bottom:496.706667pt;}
.y41{bottom:497.506667pt;}
.y1a{bottom:507.586667pt;}
.y97{bottom:508.546667pt;}
.y67{bottom:511.106667pt;}
.y7b{bottom:513.346667pt;}
.yed{bottom:515.906667pt;}
.yf9{bottom:520.546667pt;}
.y40{bottom:521.506667pt;}
.y19{bottom:522.946667pt;}
.y96{bottom:532.546667pt;}
.yab{bottom:532.706667pt;}
.y66{bottom:535.106667pt;}
.y7a{bottom:537.186667pt;}
.yec{bottom:539.906667pt;}
.y18{bottom:542.946667pt;}
.y3f{bottom:545.346667pt;}
.yf8{bottom:546.786667pt;}
.y95{bottom:556.413333pt;}
.yaa{bottom:557.853333pt;}
.y17{bottom:558.173333pt;}
.y65{bottom:558.973333pt;}
.y116{bottom:561.213333pt;}
.yeb{bottom:563.773333pt;}
.yf7{bottom:568.093333pt;}
.y3e{bottom:569.373333pt;}
.y16{bottom:573.533333pt;}
.ya9{bottom:574.813333pt;}
.ycc{bottom:577.053333pt;}
.y94{bottom:580.413333pt;}
.yb9{bottom:582.333333pt;}
.y64{bottom:582.973333pt;}
.yd7{bottom:585.053333pt;}
.yea{bottom:587.773333pt;}
.y15{bottom:588.893333pt;}
.y3d{bottom:593.213333pt;}
.y79{bottom:595.933333pt;}
.ya8{bottom:596.093333pt;}
.y14{bottom:599.613333pt;}
.ycb{bottom:601.853333pt;}
.y93{bottom:604.253333pt;}
.y63{bottom:606.813333pt;}
.yd0{bottom:606.973333pt;}
.yb8{bottom:607.133333pt;}
.yc5{bottom:607.933333pt;}
.y115{bottom:609.053333pt;}
.yd6{bottom:609.853333pt;}
.ybf{bottom:610.973333pt;}
.ye5{bottom:612.413333pt;}
.ye9{bottom:613.853333pt;}
.y3c{bottom:617.213333pt;}
.yca{bottom:618.813333pt;}
.y13{bottom:619.613333pt;}
.yb7{bottom:623.933333pt;}
.yc4{bottom:624.733333pt;}
.yd5{bottom:626.813333pt;}
.yb2{bottom:626.973333pt;}
.y92{bottom:628.253333pt;}
.y12{bottom:630.173333pt;}
.y62{bottom:630.813333pt;}
.ycf{bottom:631.933333pt;}
.y114{bottom:632.893333pt;}
.ybe{bottom:635.933333pt;}
.ye4{bottom:637.213333pt;}
.yc9{bottom:640.093333pt;}
.y3b{bottom:641.053333pt;}
.yb6{bottom:645.373333pt;}
.yc3{bottom:646.173333pt;}
.yd4{bottom:648.093333pt;}
.yce{bottom:648.733333pt;}
.y11{bottom:650.173333pt;}
.yb1{bottom:651.933333pt;}
.y91{bottom:652.093333pt;}
.ybd{bottom:652.733333pt;}
.ye3{bottom:654.013333pt;}
.y61{bottom:654.653333pt;}
.y113{bottom:656.893333pt;}
.yde{bottom:658.493333pt;}
.y10{bottom:660.893333pt;}
.y3a{bottom:665.053333pt;}
.yb0{bottom:668.733333pt;}
.ycd{bottom:670.173333pt;}
.ybc{bottom:674.173333pt;}
.ye2{bottom:675.453333pt;}
.y90{bottom:676.093333pt;}
.y60{bottom:678.653333pt;}
.y112{bottom:680.733333pt;}
.yf{bottom:680.893333pt;}
.ydd{bottom:683.293333pt;}
.y39{bottom:688.893333pt;}
.yaf{bottom:690.173333pt;}
.ye{bottom:696.253333pt;}
.y8f{bottom:699.933333pt;}
.ydc{bottom:700.093333pt;}
.y5f{bottom:702.493333pt;}
.y111{bottom:704.733333pt;}
.yd{bottom:706.973333pt;}
.y38{bottom:712.893333pt;}
.ydb{bottom:721.533333pt;}
.y5e{bottom:726.493333pt;}
.yc{bottom:726.813333pt;}
.y110{bottom:728.573333pt;}
.y8e{bottom:734.173333pt;}
.y37{bottom:736.733333pt;}
.y117{bottom:739.453333pt;}
.yb{bottom:742.173333pt;}
.y5d{bottom:750.333333pt;}
.y10f{bottom:752.573333pt;}
.y36{bottom:760.733333pt;}
.ya{bottom:761.533333pt;}
.y5c{bottom:774.333333pt;}
.y10e{bottom:776.413333pt;}
.y9{bottom:779.933333pt;}
.y35{bottom:784.613333pt;}
.y5b{bottom:798.213333pt;}
.y8{bottom:798.373333pt;}
.y10d{bottom:800.293333pt;}
.y34{bottom:808.613333pt;}
.y5a{bottom:822.213333pt;}
.y10c{bottom:824.293333pt;}
.y33{bottom:832.453333pt;}
.y59{bottom:846.053333pt;}
.y32{bottom:856.293333pt;}
.y58{bottom:870.053333pt;}
.y31{bottom:880.293333pt;}
.y10b{bottom:883.013333pt;}
.y7{bottom:888.933333pt;}
.y57{bottom:893.893333pt;}
.y30{bottom:904.133333pt;}
.y6{bottom:910.533333pt;}
.y56{bottom:917.893333pt;}
.y2f{bottom:928.133333pt;}
.y55{bottom:941.733333pt;}
.y2e{bottom:951.973333pt;}
.y54{bottom:965.733333pt;}
.y53{bottom:989.573333pt;}
.y4{bottom:1003.813333pt;}
.y2d{bottom:1010.853333pt;}
.y52{bottom:1013.573333pt;}
.y3{bottom:1024.000000pt;}
.y2{bottom:1042.560000pt;}
.y2c{bottom:1060.800000pt;}
.y1{bottom:1060.960000pt;}
.h7{height:30.982500pt;}
.h3{height:38.441250pt;}
.hc{height:39.905000pt;}
.ha{height:45.812500pt;}
.h8{height:47.621250pt;}
.h4{height:50.748750pt;}
.hb{height:52.785000pt;}
.h9{height:53.600625pt;}
.h2{height:57.375000pt;}
.h5{height:62.761250pt;}
.h6{height:62.921250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.431988pt;}
.x1{left:95.871988pt;}
.x6{left:107.391988pt;}
.x10{left:110.591988pt;}
.xc{left:115.231988pt;}
.xd{left:116.671988pt;}
.xb{left:119.071988pt;}
.x5{left:123.711988pt;}
.x8{left:142.106655pt;}
.x4{left:149.946655pt;}
.x11{left:152.186655pt;}
.xf{left:155.226655pt;}
.x3{left:158.746655pt;}
.x14{left:165.626655pt;}
.x9{left:170.266655pt;}
.x12{left:253.826655pt;}
.x7{left:283.426655pt;}
.xe{left:311.106655pt;}
.xa{left:312.546655pt;}
.x13{left:329.826655pt;}
.x16{left:396.866655pt;}
.x19{left:692.293322pt;}
.x1a{left:694.533322pt;}
.x15{left:696.773322pt;}
.x18{left:697.893322pt;}
.x1b{left:699.173322pt;}
.x17{left:700.613322pt;}
}




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