
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6db8a5f26219cd0a9b7d6f6a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_df19907a6f8026bddf001185.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_d9805cc8b2f3784e9b301648.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_060ea7c47c01c4848c31cb74.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8614b8aeb3f2ecca3706139f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_04d576dd6a3af1f304cd1f0d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5f51e8efd387cfdd9cc18e69.woff')format("woff");}.ff8{font-family:ff8;line-height:1.208008;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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.444600px;}
.lsa{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.078000px;}
.ls10{letter-spacing:-0.038880px;}
.lsf{letter-spacing:-0.018360px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.ls4{letter-spacing:0.060480px;}
.ls3{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.127200px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:10.533600px;}
.ls14{letter-spacing:48.446640px;}
.ls12{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.353600px;}
.ws4{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.208040px;}
.wsb{word-spacing:-13.187520px;}
.wsc{word-spacing:-13.148400px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._a{margin-left:-3.701280px;}
._9{margin-left:-2.404800px;}
._0{margin-left:-1.110000px;}
._3{width:1.132452px;}
._4{width:2.132535px;}
._8{width:3.295608px;}
._6{width:4.295999px;}
._5{width:5.651400px;}
._7{width:6.852598px;}
._1{width:7.968600px;}
._2{width:9.072960px;}
._b{width:10.145628px;}
._e{width:11.441183px;}
._f{width:15.330600px;}
._10{width:16.412760px;}
._13{width:17.586708px;}
._20{width:18.757440px;}
._c{width:20.200320px;}
._d{width:21.293160px;}
._22{width:22.304520px;}
._23{width:23.496240px;}
._1d{width:25.791480px;}
._1e{width:27.010440px;}
._1b{width:28.076040px;}
._1c{width:29.158200px;}
._1a{width:31.202280px;}
._19{width:32.284440px;}
._1f{width:38.957760px;}
._11{width:65.290320px;}
._12{width:66.603720px;}
._18{width:69.338400px;}
._17{width:70.400520px;}
._16{width:116.735400px;}
._14{width:144.227880px;}
._15{width:145.268040px;}
._21{width:170.748000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y50{bottom:7.830000px;}
.y5f{bottom:7.860000px;}
.y4d{bottom:7.920000px;}
.y55{bottom:26.550000px;}
.y53{bottom:26.640000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y128{bottom:116.130000px;}
.y86{bottom:116.850000px;}
.yae{bottom:117.750000px;}
.y127{bottom:133.680000px;}
.y85{bottom:134.400000px;}
.y101{bottom:134.580000px;}
.yad{bottom:135.390000px;}
.y5a{bottom:136.830000px;}
.y122{bottom:142.680000px;}
.yd9{bottom:143.130000px;}
.y84{bottom:151.950000px;}
.y100{bottom:152.130000px;}
.y59{bottom:154.380000px;}
.y28{bottom:159.240000px;}
.y121{bottom:160.320000px;}
.yd8{bottom:160.680000px;}
.yac{bottom:161.940000px;}
.y58{bottom:171.930000px;}
.y27{bottom:176.790000px;}
.y120{bottom:177.870000px;}
.yd7{bottom:178.320000px;}
.yff{bottom:178.680000px;}
.yab{bottom:179.490000px;}
.y83{bottom:187.590000px;}
.y57{bottom:189.570000px;}
.y26{bottom:194.340000px;}
.yfe{bottom:196.320000px;}
.y11f{bottom:204.510000px;}
.yd6{bottom:204.870000px;}
.y82{bottom:205.140000px;}
.yaa{bottom:206.130000px;}
.y56{bottom:207.120000px;}
.y25{bottom:211.980000px;}
.yfd{bottom:213.870000px;}
.y11e{bottom:222.060000px;}
.yd5{bottom:222.510000px;}
.y81{bottom:222.690000px;}
.ya9{bottom:223.680000px;}
.y24{bottom:229.530000px;}
.y11d{bottom:239.610000px;}
.yd4{bottom:240.060000px;}
.y54{bottom:240.150000px;}
.y80{bottom:240.330000px;}
.yfc{bottom:240.510000px;}
.y23{bottom:247.170000px;}
.ya8{bottom:250.320000px;}
.yd3{bottom:257.610000px;}
.y7f{bottom:257.880000px;}
.yfb{bottom:258.060000px;}
.y22{bottom:264.720000px;}
.y11c{bottom:266.250000px;}
.y52{bottom:267.420000px;}
.ya7{bottom:267.870000px;}
.y7e{bottom:275.520000px;}
.yfa{bottom:275.610000px;}
.y21{bottom:282.270000px;}
.y11b{bottom:283.800000px;}
.yd2{bottom:284.250000px;}
.y7d{bottom:293.070000px;}
.y51{bottom:294.780000px;}
.y20{bottom:299.910000px;}
.yd1{bottom:301.800000px;}
.yf9{bottom:302.250000px;}
.y11a{bottom:310.440000px;}
.y7c{bottom:310.620000px;}
.y1f{bottom:317.460000px;}
.yd0{bottom:319.440000px;}
.yf8{bottom:319.800000px;}
.y4f{bottom:322.140000px;}
.y126{bottom:327.990000px;}
.y7b{bottom:328.260000px;}
.y1e{bottom:335.100000px;}
.ycf{bottom:336.990000px;}
.ya6{bottom:343.020000px;}
.yf7{bottom:346.440000px;}
.y4e{bottom:349.410000px;}
.y1d{bottom:352.650000px;}
.y119{bottom:354.540000px;}
.ya5{bottom:360.660000px;}
.yce{bottom:363.540000px;}
.y7a{bottom:363.810000px;}
.yf6{bottom:363.990000px;}
.y1c{bottom:370.200000px;}
.y125{bottom:372.180000px;}
.y4c{bottom:376.770000px;}
.ycd{bottom:381.180000px;}
.y79{bottom:381.450000px;}
.ya4{bottom:387.570000px;}
.y1b{bottom:387.840000px;}
.yf5{bottom:390.540000px;}
.ycc{bottom:398.730000px;}
.y78{bottom:399.000000px;}
.yf4{bottom:408.180000px;}
.y1a{bottom:414.750000px;}
.y118{bottom:416.370000px;}
.y77{bottom:416.550000px;}
.ya3{bottom:424.560000px;}
.ycb{bottom:425.370000px;}
.y4b{bottom:425.460000px;}
.yf3{bottom:434.730000px;}
.yca{bottom:442.920000px;}
.ya2{bottom:451.470000px;}
.y76{bottom:452.190000px;}
.yf2{bottom:452.370000px;}
.y117{bottom:460.470000px;}
.y4a{bottom:461.100000px;}
.y19{bottom:463.350000px;}
.yc9{bottom:469.470000px;}
.y75{bottom:469.740000px;}
.yf1{bottom:469.950000px;}
.y116{bottom:478.140000px;}
.y49{bottom:478.680000px;}
.yc8{bottom:487.140000px;}
.y74{bottom:487.410000px;}
.ya1{bottom:488.850000px;}
.yf0{bottom:496.500000px;}
.y18{bottom:500.370000px;}
.y115{bottom:504.690000px;}
.y73{bottom:504.960000px;}
.y48{bottom:505.590000px;}
.yc7{bottom:513.690000px;}
.yef{bottom:514.140000px;}
.y17{bottom:517.920000px;}
.y114{bottom:522.330000px;}
.y72{bottom:522.510000px;}
.yc6{bottom:531.330000px;}
.yee{bottom:531.690000px;}
.y16{bottom:535.560000px;}
.ya0{bottom:537.090000px;}
.y113{bottom:539.880000px;}
.y71{bottom:540.150000px;}
.yc5{bottom:548.880000px;}
.y15{bottom:553.110000px;}
.y47{bottom:553.830000px;}
.y9f{bottom:554.730000px;}
.y70{bottom:557.700000px;}
.yed{bottom:558.330000px;}
.y112{bottom:566.430000px;}
.y14{bottom:570.750000px;}
.y46{bottom:571.470000px;}
.y9e{bottom:572.280000px;}
.yc4{bottom:575.430000px;}
.yec{bottom:575.880000px;}
.y111{bottom:584.070000px;}
.y6f{bottom:584.610000px;}
.y13{bottom:588.300000px;}
.y45{bottom:589.020000px;}
.y9d{bottom:589.830000px;}
.yc3{bottom:593.070000px;}
.yeb{bottom:593.430000px;}
.y110{bottom:601.620000px;}
.y12{bottom:605.850000px;}
.y9c{bottom:607.470000px;}
.y124{bottom:610.620000px;}
.yc2{bottom:619.620000px;}
.yea{bottom:620.070000px;}
.y11{bottom:623.490000px;}
.y44{bottom:624.660000px;}
.y9b{bottom:625.020000px;}
.y10f{bottom:628.260000px;}
.y6e{bottom:632.940000px;}
.yc1{bottom:637.260000px;}
.ye9{bottom:637.620000px;}
.y10{bottom:641.040000px;}
.y43{bottom:642.210000px;}
.y10e{bottom:645.810000px;}
.y6d{bottom:650.490000px;}
.y9a{bottom:651.930000px;}
.yc0{bottom:654.810000px;}
.ye8{bottom:655.260000px;}
.yf{bottom:658.680000px;}
.y42{bottom:659.760000px;}
.y6c{bottom:668.040000px;}
.y10d{bottom:672.360000px;}
.ye{bottom:676.230000px;}
.y41{bottom:677.400000px;}
.ybf{bottom:681.360000px;}
.ye7{bottom:681.810000px;}
.y6b{bottom:685.680000px;}
.y10c{bottom:690.000000px;}
.y40{bottom:694.950000px;}
.ybe{bottom:699.000000px;}
.ye6{bottom:699.360000px;}
.y99{bottom:700.260000px;}
.yd{bottom:703.140000px;}
.y6a{bottom:703.230000px;}
.y3f{bottom:712.590000px;}
.y10b{bottom:716.550000px;}
.ye5{bottom:717.000000px;}
.y98{bottom:717.810000px;}
.ybd{bottom:725.550000px;}
.y3e{bottom:730.140000px;}
.y10a{bottom:734.190000px;}
.y97{bottom:735.360000px;}
.y69{bottom:736.170000px;}
.ybc{bottom:743.190000px;}
.ye4{bottom:743.550000px;}
.y3d{bottom:747.690000px;}
.yc{bottom:751.380000px;}
.y109{bottom:751.740000px;}
.y96{bottom:753.000000px;}
.ybb{bottom:760.740000px;}
.ye3{bottom:761.190000px;}
.y68{bottom:763.530000px;}
.y95{bottom:770.550000px;}
.y3c{bottom:774.600000px;}
.y108{bottom:778.290000px;}
.ye2{bottom:778.740000px;}
.yb{bottom:787.200000px;}
.yba{bottom:787.290000px;}
.y94{bottom:788.190000px;}
.y67{bottom:790.890000px;}
.y107{bottom:795.930000px;}
.yb9{bottom:804.930000px;}
.ye1{bottom:805.290000px;}
.y66{bottom:818.250000px;}
.y106{bottom:822.480000px;}
.y3b{bottom:822.930000px;}
.ya{bottom:823.200000px;}
.y93{bottom:823.740000px;}
.yb8{bottom:831.480000px;}
.y105{bottom:840.030000px;}
.y3a{bottom:840.480000px;}
.y92{bottom:841.290000px;}
.y65{bottom:845.520000px;}
.yb7{bottom:849.030000px;}
.y39{bottom:858.030000px;}
.y91{bottom:858.930000px;}
.y9{bottom:862.980000px;}
.y104{bottom:866.670000px;}
.ye0{bottom:867.030000px;}
.y64{bottom:872.880000px;}
.y38{bottom:875.670000px;}
.y90{bottom:876.480000px;}
.y8{bottom:880.980000px;}
.y103{bottom:884.220000px;}
.ydf{bottom:884.670000px;}
.y37{bottom:893.220000px;}
.y8f{bottom:894.030000px;}
.y7{bottom:898.980000px;}
.y63{bottom:900.240000px;}
.yde{bottom:902.220000px;}
.yb6{bottom:910.860000px;}
.y8e{bottom:911.670000px;}
.y6{bottom:916.980000px;}
.ydd{bottom:919.860000px;}
.y62{bottom:927.600000px;}
.y102{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y8d{bottom:929.220000px;}
.yb5{bottom:937.410000px;}
.y35{bottom:946.410000px;}
.y8c{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y61{bottom:954.870000px;}
.yb4{bottom:954.960000px;}
.y34{bottom:963.960000px;}
.y8b{bottom:964.410000px;}
.yb3{bottom:972.600000px;}
.y33{bottom:981.600000px;}
.y8a{bottom:981.960000px;}
.y60{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y123{bottom:990.150000px;}
.y32{bottom:999.150000px;}
.y89{bottom:999.600000px;}
.ydc{bottom:1008.150000px;}
.y5e{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y88{bottom:1017.180000px;}
.ydb{bottom:1025.820000px;}
.yb2{bottom:1034.370000px;}
.y87{bottom:1034.820000px;}
.y5d{bottom:1036.890000px;}
.yda{bottom:1043.370000px;}
.y30{bottom:1052.370000px;}
.yb1{bottom:1060.920000px;}
.y5c{bottom:1064.250000px;}
.y2f{bottom:1069.920000px;}
.yb0{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y5b{bottom:1091.610000px;}
.yaf{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.550000px;}
.he{height:26.580000px;}
.hb{height:26.640000px;}
.h2{height:32.566289px;}
.h6{height:35.782383px;}
.h3{height:44.538574px;}
.hc{height:50.902383px;}
.h9{height:55.779258px;}
.h7{height:59.503535px;}
.hf{height:61.793886px;}
.h5{height:65.204473px;}
.ha{height:68.582109px;}
.h8{height:74.004654px;}
.h4{height:83.019902px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:67.950000px;}
.w6{width:71.010000px;}
.w7{width:71.040000px;}
.wb{width:71.640000px;}
.w4{width:71.730000px;}
.wc{width:71.760000px;}
.w9{width:71.910000px;}
.w5{width:73.260000px;}
.w8{width:79.380000px;}
.wa{width:86.850000px;}
.wd{width:87.660000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x12{left:111.419987px;}
.x4{left:191.280000px;}
.x2{left:202.799987px;}
.xc{left:209.550000px;}
.x6{left:259.950000px;}
.xd{left:297.210000px;}
.x7{left:332.400000px;}
.xe{left:369.570000px;}
.x8{left:406.380000px;}
.xf{left:443.550000px;}
.x9{left:478.200000px;}
.x10{left:516.030000px;}
.xa{left:549.960000px;}
.x11{left:596.130000px;}
.xb{left:630.060000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.395200pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.069333pt;}
.ls10{letter-spacing:-0.034560pt;}
.lsf{letter-spacing:-0.016320pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.ls4{letter-spacing:0.053760pt;}
.ls3{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.113067pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:9.363200pt;}
.ls14{letter-spacing:43.063680pt;}
.ls12{letter-spacing:72.503680pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.869867pt;}
.ws4{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.740480pt;}
.wsb{word-spacing:-11.722240pt;}
.wsc{word-spacing:-11.687467pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._a{margin-left:-3.290026pt;}
._9{margin-left:-2.137600pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.006624pt;}
._4{width:1.895587pt;}
._8{width:2.929429pt;}
._6{width:3.818666pt;}
._5{width:5.023467pt;}
._7{width:6.091198pt;}
._1{width:7.083200pt;}
._2{width:8.064853pt;}
._b{width:9.018336pt;}
._e{width:10.169941pt;}
._f{width:13.627200pt;}
._10{width:14.589120pt;}
._13{width:15.632630pt;}
._20{width:16.673280pt;}
._c{width:17.955840pt;}
._d{width:18.927253pt;}
._22{width:19.826240pt;}
._23{width:20.885547pt;}
._1d{width:22.925760pt;}
._1e{width:24.009280pt;}
._1b{width:24.956480pt;}
._1c{width:25.918400pt;}
._1a{width:27.735360pt;}
._19{width:28.697280pt;}
._1f{width:34.629120pt;}
._11{width:58.035840pt;}
._12{width:59.203307pt;}
._18{width:61.634133pt;}
._17{width:62.578240pt;}
._16{width:103.764800pt;}
._14{width:128.202560pt;}
._15{width:129.127147pt;}
._21{width:151.776000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:6.960000pt;}
.y5f{bottom:6.986667pt;}
.y4d{bottom:7.040000pt;}
.y55{bottom:23.600000pt;}
.y53{bottom:23.680000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y128{bottom:103.226667pt;}
.y86{bottom:103.866667pt;}
.yae{bottom:104.666667pt;}
.y127{bottom:118.826667pt;}
.y85{bottom:119.466667pt;}
.y101{bottom:119.626667pt;}
.yad{bottom:120.346667pt;}
.y5a{bottom:121.626667pt;}
.y122{bottom:126.826667pt;}
.yd9{bottom:127.226667pt;}
.y84{bottom:135.066667pt;}
.y100{bottom:135.226667pt;}
.y59{bottom:137.226667pt;}
.y28{bottom:141.546667pt;}
.y121{bottom:142.506667pt;}
.yd8{bottom:142.826667pt;}
.yac{bottom:143.946667pt;}
.y58{bottom:152.826667pt;}
.y27{bottom:157.146667pt;}
.y120{bottom:158.106667pt;}
.yd7{bottom:158.506667pt;}
.yff{bottom:158.826667pt;}
.yab{bottom:159.546667pt;}
.y83{bottom:166.746667pt;}
.y57{bottom:168.506667pt;}
.y26{bottom:172.746667pt;}
.yfe{bottom:174.506667pt;}
.y11f{bottom:181.786667pt;}
.yd6{bottom:182.106667pt;}
.y82{bottom:182.346667pt;}
.yaa{bottom:183.226667pt;}
.y56{bottom:184.106667pt;}
.y25{bottom:188.426667pt;}
.yfd{bottom:190.106667pt;}
.y11e{bottom:197.386667pt;}
.yd5{bottom:197.786667pt;}
.y81{bottom:197.946667pt;}
.ya9{bottom:198.826667pt;}
.y24{bottom:204.026667pt;}
.y11d{bottom:212.986667pt;}
.yd4{bottom:213.386667pt;}
.y54{bottom:213.466667pt;}
.y80{bottom:213.626667pt;}
.yfc{bottom:213.786667pt;}
.y23{bottom:219.706667pt;}
.ya8{bottom:222.506667pt;}
.yd3{bottom:228.986667pt;}
.y7f{bottom:229.226667pt;}
.yfb{bottom:229.386667pt;}
.y22{bottom:235.306667pt;}
.y11c{bottom:236.666667pt;}
.y52{bottom:237.706667pt;}
.ya7{bottom:238.106667pt;}
.y7e{bottom:244.906667pt;}
.yfa{bottom:244.986667pt;}
.y21{bottom:250.906667pt;}
.y11b{bottom:252.266667pt;}
.yd2{bottom:252.666667pt;}
.y7d{bottom:260.506667pt;}
.y51{bottom:262.026667pt;}
.y20{bottom:266.586667pt;}
.yd1{bottom:268.266667pt;}
.yf9{bottom:268.666667pt;}
.y11a{bottom:275.946667pt;}
.y7c{bottom:276.106667pt;}
.y1f{bottom:282.186667pt;}
.yd0{bottom:283.946667pt;}
.yf8{bottom:284.266667pt;}
.y4f{bottom:286.346667pt;}
.y126{bottom:291.546667pt;}
.y7b{bottom:291.786667pt;}
.y1e{bottom:297.866667pt;}
.ycf{bottom:299.546667pt;}
.ya6{bottom:304.906667pt;}
.yf7{bottom:307.946667pt;}
.y4e{bottom:310.586667pt;}
.y1d{bottom:313.466667pt;}
.y119{bottom:315.146667pt;}
.ya5{bottom:320.586667pt;}
.yce{bottom:323.146667pt;}
.y7a{bottom:323.386667pt;}
.yf6{bottom:323.546667pt;}
.y1c{bottom:329.066667pt;}
.y125{bottom:330.826667pt;}
.y4c{bottom:334.906667pt;}
.ycd{bottom:338.826667pt;}
.y79{bottom:339.066667pt;}
.ya4{bottom:344.506667pt;}
.y1b{bottom:344.746667pt;}
.yf5{bottom:347.146667pt;}
.ycc{bottom:354.426667pt;}
.y78{bottom:354.666667pt;}
.yf4{bottom:362.826667pt;}
.y1a{bottom:368.666667pt;}
.y118{bottom:370.106667pt;}
.y77{bottom:370.266667pt;}
.ya3{bottom:377.386667pt;}
.ycb{bottom:378.106667pt;}
.y4b{bottom:378.186667pt;}
.yf3{bottom:386.426667pt;}
.yca{bottom:393.706667pt;}
.ya2{bottom:401.306667pt;}
.y76{bottom:401.946667pt;}
.yf2{bottom:402.106667pt;}
.y117{bottom:409.306667pt;}
.y4a{bottom:409.866667pt;}
.y19{bottom:411.866667pt;}
.yc9{bottom:417.306667pt;}
.y75{bottom:417.546667pt;}
.yf1{bottom:417.733333pt;}
.y116{bottom:425.013333pt;}
.y49{bottom:425.493333pt;}
.yc8{bottom:433.013333pt;}
.y74{bottom:433.253333pt;}
.ya1{bottom:434.533333pt;}
.yf0{bottom:441.333333pt;}
.y18{bottom:444.773333pt;}
.y115{bottom:448.613333pt;}
.y73{bottom:448.853333pt;}
.y48{bottom:449.413333pt;}
.yc7{bottom:456.613333pt;}
.yef{bottom:457.013333pt;}
.y17{bottom:460.373333pt;}
.y114{bottom:464.293333pt;}
.y72{bottom:464.453333pt;}
.yc6{bottom:472.293333pt;}
.yee{bottom:472.613333pt;}
.y16{bottom:476.053333pt;}
.ya0{bottom:477.413333pt;}
.y113{bottom:479.893333pt;}
.y71{bottom:480.133333pt;}
.yc5{bottom:487.893333pt;}
.y15{bottom:491.653333pt;}
.y47{bottom:492.293333pt;}
.y9f{bottom:493.093333pt;}
.y70{bottom:495.733333pt;}
.yed{bottom:496.293333pt;}
.y112{bottom:503.493333pt;}
.y14{bottom:507.333333pt;}
.y46{bottom:507.973333pt;}
.y9e{bottom:508.693333pt;}
.yc4{bottom:511.493333pt;}
.yec{bottom:511.893333pt;}
.y111{bottom:519.173333pt;}
.y6f{bottom:519.653333pt;}
.y13{bottom:522.933333pt;}
.y45{bottom:523.573333pt;}
.y9d{bottom:524.293333pt;}
.yc3{bottom:527.173333pt;}
.yeb{bottom:527.493333pt;}
.y110{bottom:534.773333pt;}
.y12{bottom:538.533333pt;}
.y9c{bottom:539.973333pt;}
.y124{bottom:542.773333pt;}
.yc2{bottom:550.773333pt;}
.yea{bottom:551.173333pt;}
.y11{bottom:554.213333pt;}
.y44{bottom:555.253333pt;}
.y9b{bottom:555.573333pt;}
.y10f{bottom:558.453333pt;}
.y6e{bottom:562.613333pt;}
.yc1{bottom:566.453333pt;}
.ye9{bottom:566.773333pt;}
.y10{bottom:569.813333pt;}
.y43{bottom:570.853333pt;}
.y10e{bottom:574.053333pt;}
.y6d{bottom:578.213333pt;}
.y9a{bottom:579.493333pt;}
.yc0{bottom:582.053333pt;}
.ye8{bottom:582.453333pt;}
.yf{bottom:585.493333pt;}
.y42{bottom:586.453333pt;}
.y6c{bottom:593.813333pt;}
.y10d{bottom:597.653333pt;}
.ye{bottom:601.093333pt;}
.y41{bottom:602.133333pt;}
.ybf{bottom:605.653333pt;}
.ye7{bottom:606.053333pt;}
.y6b{bottom:609.493333pt;}
.y10c{bottom:613.333333pt;}
.y40{bottom:617.733333pt;}
.ybe{bottom:621.333333pt;}
.ye6{bottom:621.653333pt;}
.y99{bottom:622.453333pt;}
.yd{bottom:625.013333pt;}
.y6a{bottom:625.093333pt;}
.y3f{bottom:633.413333pt;}
.y10b{bottom:636.933333pt;}
.ye5{bottom:637.333333pt;}
.y98{bottom:638.053333pt;}
.ybd{bottom:644.933333pt;}
.y3e{bottom:649.013333pt;}
.y10a{bottom:652.613333pt;}
.y97{bottom:653.653333pt;}
.y69{bottom:654.373333pt;}
.ybc{bottom:660.613333pt;}
.ye4{bottom:660.933333pt;}
.y3d{bottom:664.613333pt;}
.yc{bottom:667.893333pt;}
.y109{bottom:668.213333pt;}
.y96{bottom:669.333333pt;}
.ybb{bottom:676.213333pt;}
.ye3{bottom:676.613333pt;}
.y68{bottom:678.693333pt;}
.y95{bottom:684.933333pt;}
.y3c{bottom:688.533333pt;}
.y108{bottom:691.813333pt;}
.ye2{bottom:692.213333pt;}
.yb{bottom:699.733333pt;}
.yba{bottom:699.813333pt;}
.y94{bottom:700.613333pt;}
.y67{bottom:703.013333pt;}
.y107{bottom:707.493333pt;}
.yb9{bottom:715.493333pt;}
.ye1{bottom:715.813333pt;}
.y66{bottom:727.333333pt;}
.y106{bottom:731.093333pt;}
.y3b{bottom:731.493333pt;}
.ya{bottom:731.733333pt;}
.y93{bottom:732.213333pt;}
.yb8{bottom:739.093333pt;}
.y105{bottom:746.693333pt;}
.y3a{bottom:747.093333pt;}
.y92{bottom:747.813333pt;}
.y65{bottom:751.573333pt;}
.yb7{bottom:754.693333pt;}
.y39{bottom:762.693333pt;}
.y91{bottom:763.493333pt;}
.y9{bottom:767.093333pt;}
.y104{bottom:770.373333pt;}
.ye0{bottom:770.693333pt;}
.y64{bottom:775.893333pt;}
.y38{bottom:778.373333pt;}
.y90{bottom:779.093333pt;}
.y8{bottom:783.093333pt;}
.y103{bottom:785.973333pt;}
.ydf{bottom:786.373333pt;}
.y37{bottom:793.973333pt;}
.y8f{bottom:794.693333pt;}
.y7{bottom:799.093333pt;}
.y63{bottom:800.213333pt;}
.yde{bottom:801.973333pt;}
.yb6{bottom:809.653333pt;}
.y8e{bottom:810.373333pt;}
.y6{bottom:815.093333pt;}
.ydd{bottom:817.653333pt;}
.y62{bottom:824.533333pt;}
.y102{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y8d{bottom:825.973333pt;}
.yb5{bottom:833.253333pt;}
.y35{bottom:841.253333pt;}
.y8c{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y61{bottom:848.773333pt;}
.yb4{bottom:848.853333pt;}
.y34{bottom:856.853333pt;}
.y8b{bottom:857.253333pt;}
.yb3{bottom:864.533333pt;}
.y33{bottom:872.533333pt;}
.y8a{bottom:872.853333pt;}
.y60{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y123{bottom:880.133333pt;}
.y32{bottom:888.133333pt;}
.y89{bottom:888.533333pt;}
.ydc{bottom:896.133333pt;}
.y5e{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y88{bottom:904.160000pt;}
.ydb{bottom:911.840000pt;}
.yb2{bottom:919.440000pt;}
.y87{bottom:919.840000pt;}
.y5d{bottom:921.680000pt;}
.yda{bottom:927.440000pt;}
.y30{bottom:935.440000pt;}
.yb1{bottom:943.040000pt;}
.y5c{bottom:946.000000pt;}
.y2f{bottom:951.040000pt;}
.yb0{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y5b{bottom:970.320000pt;}
.yaf{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.he{height:23.626667pt;}
.hb{height:23.680000pt;}
.h2{height:28.947812pt;}
.h6{height:31.806563pt;}
.h3{height:39.589844pt;}
.hc{height:45.246562pt;}
.h9{height:49.581562pt;}
.h7{height:52.892031pt;}
.hf{height:54.927899pt;}
.h5{height:57.959531pt;}
.ha{height:60.961875pt;}
.h8{height:65.781915pt;}
.h4{height:73.795469pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:60.400000pt;}
.w6{width:63.120000pt;}
.w7{width:63.146667pt;}
.wb{width:63.680000pt;}
.w4{width:63.760000pt;}
.wc{width:63.786667pt;}
.w9{width:63.920000pt;}
.w5{width:65.120000pt;}
.w8{width:70.560000pt;}
.wa{width:77.200000pt;}
.wd{width:77.920000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x12{left:99.039988pt;}
.x4{left:170.026667pt;}
.x2{left:180.266655pt;}
.xc{left:186.266667pt;}
.x6{left:231.066667pt;}
.xd{left:264.186667pt;}
.x7{left:295.466667pt;}
.xe{left:328.506667pt;}
.x8{left:361.226667pt;}
.xf{left:394.266667pt;}
.x9{left:425.066667pt;}
.x10{left:458.693333pt;}
.xa{left:488.853333pt;}
.x11{left:529.893333pt;}
.xb{left:560.053333pt;}
.x3{left:704.053322pt;}
}




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