
    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_818d1fdd768def8518d94ba1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_a1bbdb159177e406bf437193.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_5b91a234670d87165f2ef38c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_9e48ff898713dd91371c54d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_f080fffdb0de28d6d485207b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966797;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_558308f6744a298aa37f4bd4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_98f7d53b339a7016f9b239f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_9e0764d8e2d5f513da8008e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_42511d6d86b8a5e0198cb430.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.961914;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);}
.v1{vertical-align:-84.240000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.339600px;}
.lsd{letter-spacing:-0.306600px;}
.ls14{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.109200px;}
.ls4{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.288000px;}
.lse{letter-spacing:0.380400px;}
.lsc{letter-spacing:0.413400px;}
.ls15{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.666000px;}
.ls7{letter-spacing:1.584000px;}
.ls10{letter-spacing:3.024000px;}
.ls11{letter-spacing:151.920000px;}
.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;}
}
.ws1{word-spacing:-26.658720px;}
.wsb{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.872000px;}
.wsc{word-spacing:-18.305520px;}
.wse{word-spacing:-17.225280px;}
.ws7{word-spacing:-17.026680px;}
.ws9{word-spacing:-16.993680px;}
.ws2{word-spacing:-16.613280px;}
.ws3{word-spacing:-16.506480px;}
.ws8{word-spacing:-16.306680px;}
.wsa{word-spacing:-16.273680px;}
.ws0{word-spacing:-15.228000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-5.064000px;}
._6{margin-left:-3.649680px;}
._3{margin-left:-2.256480px;}
._1{margin-left:-1.170000px;}
._0{width:1.080000px;}
._2{width:2.351040px;}
._5{width:3.570000px;}
._f{width:5.130000px;}
._e{width:6.264000px;}
._a{width:7.589520px;}
._d{width:8.660880px;}
._12{width:9.843120px;}
._7{width:11.593440px;}
._c{width:12.784320px;}
._9{width:14.039280px;}
._8{width:15.238800px;}
._14{width:16.434000px;}
._13{width:17.712000px;}
._1c{width:18.936000px;}
._18{width:21.024000px;}
._10{width:23.144400px;}
._b{width:24.237360px;}
._4{width:25.931520px;}
._1f{width:27.828480px;}
._19{width:29.826000px;}
._17{width:31.176000px;}
._16{width:32.184000px;}
._15{width:33.912000px;}
._26{width:34.992000px;}
._23{width:36.360000px;}
._24{width:37.440000px;}
._25{width:38.664000px;}
._1e{width:40.560480px;}
._1d{width:41.616000px;}
._1a{width:43.848000px;}
._1b{width:44.946000px;}
._22{width:46.134000px;}
._27{width:49.176000px;}
._28{width:56.232000px;}
._29{width:57.246000px;}
._21{width:59.718000px;}
._20{width:60.840000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yce{bottom:-12.780000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.980000px;}
.ycd{bottom:7.200000px;}
.ya3{bottom:19.080000px;}
.ycc{bottom:26.100000px;}
.ya2{bottom:39.600000px;}
.y3{bottom:53.280000px;}
.y2{bottom:57.600000px;}
.ya1{bottom:58.500000px;}
.yb1{bottom:58.680000px;}
.y1{bottom:76.680000px;}
.y6b{bottom:109.656000px;}
.y5c{bottom:109.836000px;}
.ye0{bottom:122.616000px;}
.yca{bottom:124.596000px;}
.y11a{bottom:124.776000px;}
.y6a{bottom:126.936000px;}
.y5b{bottom:127.116000px;}
.y69{bottom:131.436000px;}
.y5a{bottom:131.616000px;}
.y5e{bottom:135.756000px;}
.y33{bottom:138.636000px;}
.ydf{bottom:139.896000px;}
.y119{bottom:142.056000px;}
.y68{bottom:144.036000px;}
.y59{bottom:145.296000px;}
.yc9{bottom:151.590000px;}
.yde{bottom:156.810000px;}
.y118{bottom:159.330000px;}
.y67{bottom:161.310000px;}
.y5d{bottom:162.750000px;}
.y32{bottom:165.630000px;}
.y66{bottom:165.810000px;}
.ydd{bottom:174.090000px;}
.y117{bottom:176.790000px;}
.y65{bottom:178.590000px;}
.y8f{bottom:183.090000px;}
.y58{bottom:189.750000px;}
.ydc{bottom:191.370000px;}
.y31{bottom:192.630000px;}
.y116{bottom:193.890000px;}
.y64{bottom:195.870000px;}
.y63{bottom:200.370000px;}
.yc8{bottom:205.590000px;}
.ydb{bottom:208.650000px;}
.y115{bottom:211.170000px;}
.y8e{bottom:213.150000px;}
.y62{bottom:214.230000px;}
.y57{bottom:216.750000px;}
.y8d{bottom:217.650000px;}
.y30{bottom:219.630000px;}
.yda{bottom:225.930000px;}
.y114{bottom:228.270000px;}
.y8c{bottom:231.510000px;}
.yc7{bottom:232.590000px;}
.yd9{bottom:243.210000px;}
.y56{bottom:243.750000px;}
.y9f{bottom:244.650000px;}
.y113{bottom:245.550000px;}
.y2f{bottom:246.630000px;}
.yaf{bottom:249.330000px;}
.yc6{bottom:259.590000px;}
.yd8{bottom:260.310000px;}
.y112{bottom:263.010000px;}
.y8b{bottom:268.050000px;}
.y55{bottom:270.750000px;}
.y9e{bottom:271.650000px;}
.y2e{bottom:273.630000px;}
.y61{bottom:276.690000px;}
.yd7{bottom:277.590000px;}
.yae{bottom:279.030000px;}
.y111{bottom:280.110000px;}
.yc5{bottom:286.590000px;}
.yd6{bottom:294.870000px;}
.y8a{bottom:295.050000px;}
.y110{bottom:297.570000px;}
.y54{bottom:297.750000px;}
.y9d{bottom:298.650000px;}
.yad{bottom:308.730000px;}
.y2d{bottom:309.450000px;}
.yd5{bottom:312.150000px;}
.yc4{bottom:313.590000px;}
.y10f{bottom:314.670000px;}
.y89{bottom:322.050000px;}
.y53{bottom:324.750000px;}
.y9c{bottom:325.650000px;}
.y2c{bottom:326.190000px;}
.yd4{bottom:329.430000px;}
.yac{bottom:330.330000px;}
.y10e{bottom:331.950000px;}
.yc3{bottom:340.590000px;}
.yd3{bottom:346.710000px;}
.y88{bottom:349.050000px;}
.y10d{bottom:349.230000px;}
.y52{bottom:351.750000px;}
.y9b{bottom:352.650000px;}
.y2b{bottom:353.190000px;}
.yab{bottom:357.375000px;}
.yd2{bottom:363.855000px;}
.y10c{bottom:366.375000px;}
.yc2{bottom:367.635000px;}
.y2a{bottom:372.855000px;}
.y87{bottom:376.095000px;}
.y51{bottom:378.795000px;}
.y9a{bottom:379.695000px;}
.yd1{bottom:381.315000px;}
.y10b{bottom:383.655000px;}
.yaa{bottom:384.375000px;}
.y29{bottom:390.135000px;}
.yc1{bottom:394.635000px;}
.y10a{bottom:400.935000px;}
.y86{bottom:403.095000px;}
.y50{bottom:405.795000px;}
.y99{bottom:406.695000px;}
.y28{bottom:407.235000px;}
.yd0{bottom:408.495000px;}
.y109{bottom:418.215000px;}
.ya9{bottom:419.475000px;}
.yb0{bottom:421.455000px;}
.yc0{bottom:421.635000px;}
.y27{bottom:424.515000px;}
.y85{bottom:430.095000px;}
.y4f{bottom:432.795000px;}
.y98{bottom:433.695000px;}
.y108{bottom:435.495000px;}
.ycf{bottom:438.195000px;}
.y26{bottom:441.795000px;}
.ya0{bottom:447.375000px;}
.ybf{bottom:448.635000px;}
.ya8{bottom:449.175000px;}
.y107{bottom:452.595000px;}
.y84{bottom:457.095000px;}
.y25{bottom:459.255000px;}
.y97{bottom:459.435000px;}
.y4e{bottom:459.795000px;}
.y106{bottom:470.055000px;}
.ybe{bottom:475.635000px;}
.y24{bottom:476.535000px;}
.ya7{bottom:478.875000px;}
.y96{bottom:480.135000px;}
.y83{bottom:484.095000px;}
.y4d{bottom:486.795000px;}
.y105{bottom:487.155000px;}
.y23{bottom:493.635000px;}
.ybd{bottom:502.635000px;}
.y104{bottom:504.435000px;}
.ya6{bottom:508.575000px;}
.y22{bottom:510.735000px;}
.y81{bottom:511.095000px;}
.y4c{bottom:513.795000px;}
.y82{bottom:517.035000px;}
.y60{bottom:519.735000px;}
.y103{bottom:521.715000px;}
.y95{bottom:521.895000px;}
.y21{bottom:528.015000px;}
.ybc{bottom:529.635000px;}
.y80{bottom:538.095000px;}
.ya5{bottom:538.275000px;}
.y102{bottom:538.815000px;}
.y4b{bottom:540.795000px;}
.y94{bottom:542.595000px;}
.y20{bottom:545.295000px;}
.ya4{bottom:554.655000px;}
.y101{bottom:556.095000px;}
.ybb{bottom:556.635000px;}
.y93{bottom:558.795000px;}
.y1f{bottom:562.575000px;}
.y7f{bottom:565.095000px;}
.y4a{bottom:567.795000px;}
.y100{bottom:573.555000px;}
.y1e{bottom:579.855000px;}
.yba{bottom:583.635000px;}
.yff{bottom:590.655000px;}
.y7e{bottom:592.095000px;}
.y49{bottom:594.795000px;}
.y1d{bottom:597.135000px;}
.yfe{bottom:607.935000px;}
.yb9{bottom:610.635000px;}
.y1c{bottom:614.415000px;}
.y7d{bottom:619.125000px;}
.y48{bottom:621.825000px;}
.yfd{bottom:625.245000px;}
.y1b{bottom:631.545000px;}
.yb8{bottom:637.665000px;}
.yfc{bottom:642.345000px;}
.y7c{bottom:646.125000px;}
.y47{bottom:648.825000px;}
.y1a{bottom:649.005000px;}
.yfb{bottom:659.805000px;}
.yb7{bottom:664.665000px;}
.y19{bottom:666.105000px;}
.y7b{bottom:673.125000px;}
.y46{bottom:675.825000px;}
.yfa{bottom:676.905000px;}
.y18{bottom:683.385000px;}
.yb6{bottom:691.665000px;}
.yf9{bottom:694.185000px;}
.y7a{bottom:700.125000px;}
.y17{bottom:700.665000px;}
.y45{bottom:702.825000px;}
.yf8{bottom:711.645000px;}
.y16{bottom:717.765000px;}
.yb5{bottom:718.665000px;}
.y79{bottom:727.125000px;}
.yf7{bottom:728.565000px;}
.y44{bottom:729.825000px;}
.ycb{bottom:734.145000px;}
.y15{bottom:735.045000px;}
.yb4{bottom:745.665000px;}
.yf6{bottom:746.025000px;}
.y14{bottom:752.325000px;}
.y78{bottom:754.125000px;}
.y42{bottom:756.825000px;}
.y43{bottom:762.765000px;}
.yf5{bottom:763.125000px;}
.y13{bottom:769.605000px;}
.yb3{bottom:772.665000px;}
.yf4{bottom:780.585000px;}
.y77{bottom:781.125000px;}
.y41{bottom:783.825000px;}
.y12{bottom:787.065000px;}
.yb2{bottom:794.265000px;}
.yf3{bottom:797.865000px;}
.y11{bottom:804.165000px;}
.y75{bottom:808.125000px;}
.y40{bottom:810.825000px;}
.y76{bottom:814.065000px;}
.yf2{bottom:814.785000px;}
.y10{bottom:817.845000px;}
.y92{bottom:828.825000px;}
.yf1{bottom:832.065000px;}
.y74{bottom:835.125000px;}
.y3f{bottom:837.825000px;}
.yf{bottom:844.845000px;}
.y91{bottom:849.525000px;}
.y73{bottom:862.125000px;}
.y3e{bottom:864.825000px;}
.ye{bottom:866.625000px;}
.y90{bottom:870.225000px;}
.y5f{bottom:870.765000px;}
.yf0{bottom:883.950000px;}
.y72{bottom:889.170000px;}
.y3d{bottom:891.870000px;}
.yd{bottom:894.210000px;}
.yef{bottom:901.230000px;}
.y71{bottom:916.170000px;}
.y121{bottom:918.330000px;}
.yee{bottom:918.510000px;}
.y3c{bottom:918.870000px;}
.yc{bottom:921.750000px;}
.yed{bottom:935.610000px;}
.y120{bottom:935.790000px;}
.y70{bottom:943.170000px;}
.y3b{bottom:945.870000px;}
.yb{bottom:949.470000px;}
.y11f{bottom:952.890000px;}
.yec{bottom:953.070000px;}
.y6f{bottom:970.170000px;}
.yeb{bottom:970.350000px;}
.y3a{bottom:972.870000px;}
.ya{bottom:977.010000px;}
.yea{bottom:987.450000px;}
.y11e{bottom:987.630000px;}
.y6e{bottom:997.170000px;}
.y39{bottom:999.870000px;}
.y9{bottom:1003.830000px;}
.ye9{bottom:1004.730000px;}
.ye8{bottom:1022.010000px;}
.y6d{bottom:1024.170000px;}
.y38{bottom:1026.870000px;}
.y8{bottom:1027.950000px;}
.ye7{bottom:1039.110000px;}
.y7{bottom:1052.250000px;}
.y37{bottom:1053.870000px;}
.ye6{bottom:1056.390000px;}
.y11d{bottom:1056.570000px;}
.y6c{bottom:1059.270000px;}
.y11c{bottom:1073.670000px;}
.ye5{bottom:1073.850000px;}
.y6{bottom:1076.370000px;}
.y36{bottom:1080.870000px;}
.ye4{bottom:1090.950000px;}
.y5{bottom:1095.810000px;}
.y35{bottom:1107.870000px;}
.ye3{bottom:1108.230000px;}
.ye2{bottom:1125.510000px;}
.y34{bottom:1134.900000px;}
.y11b{bottom:1142.640000px;}
.ye1{bottom:1142.820000px;}
.h3{height:14.580000px;}
.hc{height:40.550625px;}
.h11{height:41.400000px;}
.hb{height:50.312812px;}
.h9{height:53.603086px;}
.hd{height:54.140625px;}
.h8{height:62.327813px;}
.ha{height:64.582031px;}
.hf{height:69.086250px;}
.he{height:73.800000px;}
.h10{height:73.980000px;}
.h2{height:74.004654px;}
.h4{height:75.093750px;}
.h5{height:87.695156px;}
.h6{height:87.859687px;}
.h7{height:99.874688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:48.276000px;}
.w5{width:470.595000px;}
.w6{width:504.465000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:10.800000px;}
.x18{left:53.280000px;}
.x5{left:106.415987px;}
.xb{left:111.815987px;}
.x7{left:148.895987px;}
.x17{left:161.310000px;}
.x1b{left:170.310000px;}
.x1{left:174.269987px;}
.x10{left:205.409973px;}
.x11{left:212.069987px;}
.x2{left:281.594987px;}
.xa{left:322.454987px;}
.x8{left:328.394973px;}
.x9{left:335.054987px;}
.x14{left:342.434973px;}
.x15{left:349.094987px;}
.x4{left:362.954987px;}
.x3{left:430.455000px;}
.x12{left:433.154973px;}
.x13{left:439.814987px;}
.xc{left:473.864973px;}
.xd{left:480.524987px;}
.xe{left:542.804973px;}
.xf{left:549.464987px;}
.x1a{left:725.189987px;}
.x16{left:732.029987px;}
.x1c{left:737.609987px;}
.x6{left:786.749987px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.301867pt;}
.lsd{letter-spacing:-0.272533pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.338133pt;}
.lsc{letter-spacing:0.367467pt;}
.ls15{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.592000pt;}
.ls7{letter-spacing:1.408000pt;}
.ls10{letter-spacing:2.688000pt;}
.ls11{letter-spacing:135.040000pt;}
.ws1{word-spacing:-23.696640pt;}
.wsb{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.664000pt;}
.wsc{word-spacing:-16.271573pt;}
.wse{word-spacing:-15.311360pt;}
.ws7{word-spacing:-15.134827pt;}
.ws9{word-spacing:-15.105493pt;}
.ws2{word-spacing:-14.767360pt;}
.ws3{word-spacing:-14.672427pt;}
.ws8{word-spacing:-14.494827pt;}
.wsa{word-spacing:-14.465493pt;}
.ws0{word-spacing:-13.536000pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-4.501333pt;}
._6{margin-left:-3.244160pt;}
._3{margin-left:-2.005760pt;}
._1{margin-left:-1.040000pt;}
._0{width:0.960000pt;}
._2{width:2.089813pt;}
._5{width:3.173333pt;}
._f{width:4.560000pt;}
._e{width:5.568000pt;}
._a{width:6.746240pt;}
._d{width:7.698560pt;}
._12{width:8.749440pt;}
._7{width:10.305280pt;}
._c{width:11.363840pt;}
._9{width:12.479360pt;}
._8{width:13.545600pt;}
._14{width:14.608000pt;}
._13{width:15.744000pt;}
._1c{width:16.832000pt;}
._18{width:18.688000pt;}
._10{width:20.572800pt;}
._b{width:21.544320pt;}
._4{width:23.050240pt;}
._1f{width:24.736427pt;}
._19{width:26.512000pt;}
._17{width:27.712000pt;}
._16{width:28.608000pt;}
._15{width:30.144000pt;}
._26{width:31.104000pt;}
._23{width:32.320000pt;}
._24{width:33.280000pt;}
._25{width:34.368000pt;}
._1e{width:36.053760pt;}
._1d{width:36.992000pt;}
._1a{width:38.976000pt;}
._1b{width:39.952000pt;}
._22{width:41.008000pt;}
._27{width:43.712000pt;}
._28{width:49.984000pt;}
._29{width:50.885333pt;}
._21{width:53.082667pt;}
._20{width:54.080000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yce{bottom:-11.360000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.760000pt;}
.ycd{bottom:6.400000pt;}
.ya3{bottom:16.960000pt;}
.ycc{bottom:23.200000pt;}
.ya2{bottom:35.200000pt;}
.y3{bottom:47.360000pt;}
.y2{bottom:51.200000pt;}
.ya1{bottom:52.000000pt;}
.yb1{bottom:52.160000pt;}
.y1{bottom:68.160000pt;}
.y6b{bottom:97.472000pt;}
.y5c{bottom:97.632000pt;}
.ye0{bottom:108.992000pt;}
.yca{bottom:110.752000pt;}
.y11a{bottom:110.912000pt;}
.y6a{bottom:112.832000pt;}
.y5b{bottom:112.992000pt;}
.y69{bottom:116.832000pt;}
.y5a{bottom:116.992000pt;}
.y5e{bottom:120.672000pt;}
.y33{bottom:123.232000pt;}
.ydf{bottom:124.352000pt;}
.y119{bottom:126.272000pt;}
.y68{bottom:128.032000pt;}
.y59{bottom:129.152000pt;}
.yc9{bottom:134.746667pt;}
.yde{bottom:139.386667pt;}
.y118{bottom:141.626667pt;}
.y67{bottom:143.386667pt;}
.y5d{bottom:144.666667pt;}
.y32{bottom:147.226667pt;}
.y66{bottom:147.386667pt;}
.ydd{bottom:154.746667pt;}
.y117{bottom:157.146667pt;}
.y65{bottom:158.746667pt;}
.y8f{bottom:162.746667pt;}
.y58{bottom:168.666667pt;}
.ydc{bottom:170.106667pt;}
.y31{bottom:171.226667pt;}
.y116{bottom:172.346667pt;}
.y64{bottom:174.106667pt;}
.y63{bottom:178.106667pt;}
.yc8{bottom:182.746667pt;}
.ydb{bottom:185.466667pt;}
.y115{bottom:187.706667pt;}
.y8e{bottom:189.466667pt;}
.y62{bottom:190.426667pt;}
.y57{bottom:192.666667pt;}
.y8d{bottom:193.466667pt;}
.y30{bottom:195.226667pt;}
.yda{bottom:200.826667pt;}
.y114{bottom:202.906667pt;}
.y8c{bottom:205.786667pt;}
.yc7{bottom:206.746667pt;}
.yd9{bottom:216.186667pt;}
.y56{bottom:216.666667pt;}
.y9f{bottom:217.466667pt;}
.y113{bottom:218.266667pt;}
.y2f{bottom:219.226667pt;}
.yaf{bottom:221.626667pt;}
.yc6{bottom:230.746667pt;}
.yd8{bottom:231.386667pt;}
.y112{bottom:233.786667pt;}
.y8b{bottom:238.266667pt;}
.y55{bottom:240.666667pt;}
.y9e{bottom:241.466667pt;}
.y2e{bottom:243.226667pt;}
.y61{bottom:245.946667pt;}
.yd7{bottom:246.746667pt;}
.yae{bottom:248.026667pt;}
.y111{bottom:248.986667pt;}
.yc5{bottom:254.746667pt;}
.yd6{bottom:262.106667pt;}
.y8a{bottom:262.266667pt;}
.y110{bottom:264.506667pt;}
.y54{bottom:264.666667pt;}
.y9d{bottom:265.466667pt;}
.yad{bottom:274.426667pt;}
.y2d{bottom:275.066667pt;}
.yd5{bottom:277.466667pt;}
.yc4{bottom:278.746667pt;}
.y10f{bottom:279.706667pt;}
.y89{bottom:286.266667pt;}
.y53{bottom:288.666667pt;}
.y9c{bottom:289.466667pt;}
.y2c{bottom:289.946667pt;}
.yd4{bottom:292.826667pt;}
.yac{bottom:293.626667pt;}
.y10e{bottom:295.066667pt;}
.yc3{bottom:302.746667pt;}
.yd3{bottom:308.186667pt;}
.y88{bottom:310.266667pt;}
.y10d{bottom:310.426667pt;}
.y52{bottom:312.666667pt;}
.y9b{bottom:313.466667pt;}
.y2b{bottom:313.946667pt;}
.yab{bottom:317.666667pt;}
.yd2{bottom:323.426667pt;}
.y10c{bottom:325.666667pt;}
.yc2{bottom:326.786667pt;}
.y2a{bottom:331.426667pt;}
.y87{bottom:334.306667pt;}
.y51{bottom:336.706667pt;}
.y9a{bottom:337.506667pt;}
.yd1{bottom:338.946667pt;}
.y10b{bottom:341.026667pt;}
.yaa{bottom:341.666667pt;}
.y29{bottom:346.786667pt;}
.yc1{bottom:350.786667pt;}
.y10a{bottom:356.386667pt;}
.y86{bottom:358.306667pt;}
.y50{bottom:360.706667pt;}
.y99{bottom:361.506667pt;}
.y28{bottom:361.986667pt;}
.yd0{bottom:363.106667pt;}
.y109{bottom:371.746667pt;}
.ya9{bottom:372.866667pt;}
.yb0{bottom:374.626667pt;}
.yc0{bottom:374.786667pt;}
.y27{bottom:377.346667pt;}
.y85{bottom:382.306667pt;}
.y4f{bottom:384.706667pt;}
.y98{bottom:385.506667pt;}
.y108{bottom:387.106667pt;}
.ycf{bottom:389.506667pt;}
.y26{bottom:392.706667pt;}
.ya0{bottom:397.666667pt;}
.ybf{bottom:398.786667pt;}
.ya8{bottom:399.266667pt;}
.y107{bottom:402.306667pt;}
.y84{bottom:406.306667pt;}
.y25{bottom:408.226667pt;}
.y97{bottom:408.386667pt;}
.y4e{bottom:408.706667pt;}
.y106{bottom:417.826667pt;}
.ybe{bottom:422.786667pt;}
.y24{bottom:423.586667pt;}
.ya7{bottom:425.666667pt;}
.y96{bottom:426.786667pt;}
.y83{bottom:430.306667pt;}
.y4d{bottom:432.706667pt;}
.y105{bottom:433.026667pt;}
.y23{bottom:438.786667pt;}
.ybd{bottom:446.786667pt;}
.y104{bottom:448.386667pt;}
.ya6{bottom:452.066667pt;}
.y22{bottom:453.986667pt;}
.y81{bottom:454.306667pt;}
.y4c{bottom:456.706667pt;}
.y82{bottom:459.586667pt;}
.y60{bottom:461.986667pt;}
.y103{bottom:463.746667pt;}
.y95{bottom:463.906667pt;}
.y21{bottom:469.346667pt;}
.ybc{bottom:470.786667pt;}
.y80{bottom:478.306667pt;}
.ya5{bottom:478.466667pt;}
.y102{bottom:478.946667pt;}
.y4b{bottom:480.706667pt;}
.y94{bottom:482.306667pt;}
.y20{bottom:484.706667pt;}
.ya4{bottom:493.026667pt;}
.y101{bottom:494.306667pt;}
.ybb{bottom:494.786667pt;}
.y93{bottom:496.706667pt;}
.y1f{bottom:500.066667pt;}
.y7f{bottom:502.306667pt;}
.y4a{bottom:504.706667pt;}
.y100{bottom:509.826667pt;}
.y1e{bottom:515.426667pt;}
.yba{bottom:518.786667pt;}
.yff{bottom:525.026667pt;}
.y7e{bottom:526.306667pt;}
.y49{bottom:528.706667pt;}
.y1d{bottom:530.786667pt;}
.yfe{bottom:540.386667pt;}
.yb9{bottom:542.786667pt;}
.y1c{bottom:546.146667pt;}
.y7d{bottom:550.333333pt;}
.y48{bottom:552.733333pt;}
.yfd{bottom:555.773333pt;}
.y1b{bottom:561.373333pt;}
.yb8{bottom:566.813333pt;}
.yfc{bottom:570.973333pt;}
.y7c{bottom:574.333333pt;}
.y47{bottom:576.733333pt;}
.y1a{bottom:576.893333pt;}
.yfb{bottom:586.493333pt;}
.yb7{bottom:590.813333pt;}
.y19{bottom:592.093333pt;}
.y7b{bottom:598.333333pt;}
.y46{bottom:600.733333pt;}
.yfa{bottom:601.693333pt;}
.y18{bottom:607.453333pt;}
.yb6{bottom:614.813333pt;}
.yf9{bottom:617.053333pt;}
.y7a{bottom:622.333333pt;}
.y17{bottom:622.813333pt;}
.y45{bottom:624.733333pt;}
.yf8{bottom:632.573333pt;}
.y16{bottom:638.013333pt;}
.yb5{bottom:638.813333pt;}
.y79{bottom:646.333333pt;}
.yf7{bottom:647.613333pt;}
.y44{bottom:648.733333pt;}
.ycb{bottom:652.573333pt;}
.y15{bottom:653.373333pt;}
.yb4{bottom:662.813333pt;}
.yf6{bottom:663.133333pt;}
.y14{bottom:668.733333pt;}
.y78{bottom:670.333333pt;}
.y42{bottom:672.733333pt;}
.y43{bottom:678.013333pt;}
.yf5{bottom:678.333333pt;}
.y13{bottom:684.093333pt;}
.yb3{bottom:686.813333pt;}
.yf4{bottom:693.853333pt;}
.y77{bottom:694.333333pt;}
.y41{bottom:696.733333pt;}
.y12{bottom:699.613333pt;}
.yb2{bottom:706.013333pt;}
.yf3{bottom:709.213333pt;}
.y11{bottom:714.813333pt;}
.y75{bottom:718.333333pt;}
.y40{bottom:720.733333pt;}
.y76{bottom:723.613333pt;}
.yf2{bottom:724.253333pt;}
.y10{bottom:726.973333pt;}
.y92{bottom:736.733333pt;}
.yf1{bottom:739.613333pt;}
.y74{bottom:742.333333pt;}
.y3f{bottom:744.733333pt;}
.yf{bottom:750.973333pt;}
.y91{bottom:755.133333pt;}
.y73{bottom:766.333333pt;}
.y3e{bottom:768.733333pt;}
.ye{bottom:770.333333pt;}
.y90{bottom:773.533333pt;}
.y5f{bottom:774.013333pt;}
.yf0{bottom:785.733333pt;}
.y72{bottom:790.373333pt;}
.y3d{bottom:792.773333pt;}
.yd{bottom:794.853333pt;}
.yef{bottom:801.093333pt;}
.y71{bottom:814.373333pt;}
.y121{bottom:816.293333pt;}
.yee{bottom:816.453333pt;}
.y3c{bottom:816.773333pt;}
.yc{bottom:819.333333pt;}
.yed{bottom:831.653333pt;}
.y120{bottom:831.813333pt;}
.y70{bottom:838.373333pt;}
.y3b{bottom:840.773333pt;}
.yb{bottom:843.973333pt;}
.y11f{bottom:847.013333pt;}
.yec{bottom:847.173333pt;}
.y6f{bottom:862.373333pt;}
.yeb{bottom:862.533333pt;}
.y3a{bottom:864.773333pt;}
.ya{bottom:868.453333pt;}
.yea{bottom:877.733333pt;}
.y11e{bottom:877.893333pt;}
.y6e{bottom:886.373333pt;}
.y39{bottom:888.773333pt;}
.y9{bottom:892.293333pt;}
.ye9{bottom:893.093333pt;}
.ye8{bottom:908.453333pt;}
.y6d{bottom:910.373333pt;}
.y38{bottom:912.773333pt;}
.y8{bottom:913.733333pt;}
.ye7{bottom:923.653333pt;}
.y7{bottom:935.333333pt;}
.y37{bottom:936.773333pt;}
.ye6{bottom:939.013333pt;}
.y11d{bottom:939.173333pt;}
.y6c{bottom:941.573333pt;}
.y11c{bottom:954.373333pt;}
.ye5{bottom:954.533333pt;}
.y6{bottom:956.773333pt;}
.y36{bottom:960.773333pt;}
.ye4{bottom:969.733333pt;}
.y5{bottom:974.053333pt;}
.y35{bottom:984.773333pt;}
.ye3{bottom:985.093333pt;}
.ye2{bottom:1000.453333pt;}
.y34{bottom:1008.800000pt;}
.y11b{bottom:1015.680000pt;}
.ye1{bottom:1015.840000pt;}
.h3{height:12.960000pt;}
.hc{height:36.045000pt;}
.h11{height:36.800000pt;}
.hb{height:44.722500pt;}
.h9{height:47.647188pt;}
.hd{height:48.125000pt;}
.h8{height:55.402500pt;}
.ha{height:57.406250pt;}
.hf{height:61.410000pt;}
.he{height:65.600000pt;}
.h10{height:65.760000pt;}
.h2{height:65.781915pt;}
.h4{height:66.750000pt;}
.h5{height:77.951250pt;}
.h6{height:78.097500pt;}
.h7{height:88.777500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:42.912000pt;}
.w5{width:418.306667pt;}
.w6{width:448.413333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:9.600000pt;}
.x18{left:47.360000pt;}
.x5{left:94.591988pt;}
.xb{left:99.391988pt;}
.x7{left:132.351988pt;}
.x17{left:143.386667pt;}
.x1b{left:151.386667pt;}
.x1{left:154.906655pt;}
.x10{left:182.586643pt;}
.x11{left:188.506655pt;}
.x2{left:250.306655pt;}
.xa{left:286.626655pt;}
.x8{left:291.906643pt;}
.x9{left:297.826655pt;}
.x14{left:304.386643pt;}
.x15{left:310.306655pt;}
.x4{left:322.626655pt;}
.x3{left:382.626667pt;}
.x12{left:385.026643pt;}
.x13{left:390.946655pt;}
.xc{left:421.213310pt;}
.xd{left:427.133322pt;}
.xe{left:482.493310pt;}
.xf{left:488.413322pt;}
.x1a{left:644.613322pt;}
.x16{left:650.693322pt;}
.x1c{left:655.653322pt;}
.x6{left:699.333322pt;}
}




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