
    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_05261e573aa1e5030fafd3d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_4f03814d5ba36a43d697d9b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_73589bae73fb4c9c1a06db44.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_500e1b1c504882bfc1df9e4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897461;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_20ee42e178470cf993aea13d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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:23.760000px;}
.ls11{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.109440px;}
.ls5{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.480000px;}
.ls9{letter-spacing:2.340000px;}
.lse{letter-spacing:3.780000px;}
.lsb{letter-spacing:4.500000px;}
.ls0{letter-spacing:5.916000px;}
.lsd{letter-spacing:7.380000px;}
.lsc{letter-spacing:11.700000px;}
.ls8{letter-spacing:19.620000px;}
.lsa{letter-spacing:22.986720px;}
.ls7{letter-spacing:40.986720px;}
.lsf{letter-spacing:46.026720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1166.086080px;}
._1c{margin-left:-1164.586080px;}
._15{margin-left:-4.063680px;}
._12{margin-left:-2.233920px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._6{width:3.118560px;}
._9{width:4.905360px;}
._8{width:6.334560px;}
._7{width:7.624080px;}
._a{width:9.561600px;}
._2d{width:10.600320px;}
._c{width:11.630400px;}
._b{width:13.505760px;}
._1b{width:16.140720px;}
._f{width:17.183040px;}
._e{width:18.884160px;}
._2b{width:20.005440px;}
._19{width:21.251760px;}
._18{width:22.529520px;}
._d{width:23.642160px;}
._1a{width:25.278480px;}
._20{width:26.294400px;}
._24{width:27.609120px;}
._30{width:29.071680px;}
._1d{width:30.247200px;}
._16{width:31.291440px;}
._17{width:32.771280px;}
._23{width:34.159920px;}
._11{width:35.796240px;}
._10{width:36.812160px;}
._14{width:37.887840px;}
._13{width:39.023280px;}
._33{width:40.360800px;}
._28{width:41.450640px;}
._29{width:42.847920px;}
._31{width:44.071440px;}
._2f{width:45.992400px;}
._32{width:47.927520px;}
._1e{width:49.757280px;}
._1f{width:51.752160px;}
._2a{width:54.202320px;}
._2c{width:55.912560px;}
._26{width:59.700240px;}
._25{width:60.895440px;}
._34{width:64.757040px;}
._21{width:66.549840px;}
._27{width:68.544720px;}
._2e{width:73.541760px;}
._22{width:106.887840px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(55,65,81);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.yce{bottom:-12.420000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.940000px;}
.ycd{bottom:7.560000px;}
.y9{bottom:11.160000px;}
.y8{bottom:11.880000px;}
.ya{bottom:36.000000px;}
.y6{bottom:52.740000px;}
.y9d{bottom:81.180000px;}
.y117{bottom:82.620000px;}
.y70{bottom:84.420000px;}
.yec{bottom:85.140000px;}
.y39{bottom:88.380000px;}
.yb0{bottom:91.260000px;}
.y10d{bottom:91.620000px;}
.y9c{bottom:100.980000px;}
.y116{bottom:102.420000px;}
.y6f{bottom:104.220000px;}
.yeb{bottom:104.940000px;}
.y38{bottom:108.180000px;}
.yaf{bottom:111.060000px;}
.y10c{bottom:111.420000px;}
.ycb{bottom:116.820000px;}
.y9b{bottom:120.960000px;}
.y115{bottom:122.220000px;}
.y6e{bottom:124.200000px;}
.yea{bottom:124.740000px;}
.y37{bottom:127.980000px;}
.yae{bottom:131.040000px;}
.y10b{bottom:131.220000px;}
.yca{bottom:136.800000px;}
.y9a{bottom:140.760000px;}
.y114{bottom:142.200000px;}
.y6d{bottom:144.000000px;}
.ye9{bottom:144.720000px;}
.y36{bottom:147.960000px;}
.yad{bottom:150.840000px;}
.y10a{bottom:151.200000px;}
.yc9{bottom:156.630000px;}
.y99{bottom:160.590000px;}
.y113{bottom:162.030000px;}
.y6c{bottom:163.830000px;}
.ye8{bottom:164.550000px;}
.y35{bottom:167.790000px;}
.yac{bottom:170.670000px;}
.y109{bottom:171.030000px;}
.yc8{bottom:176.430000px;}
.y98{bottom:180.390000px;}
.y112{bottom:181.830000px;}
.y6b{bottom:183.630000px;}
.ye7{bottom:184.350000px;}
.y34{bottom:187.590000px;}
.yab{bottom:190.470000px;}
.y108{bottom:190.830000px;}
.yc7{bottom:196.230000px;}
.y97{bottom:200.190000px;}
.y111{bottom:201.630000px;}
.y6a{bottom:203.430000px;}
.ye6{bottom:204.150000px;}
.y33{bottom:207.390000px;}
.yaa{bottom:210.270000px;}
.y107{bottom:210.630000px;}
.yc6{bottom:216.030000px;}
.y96{bottom:220.170000px;}
.y110{bottom:221.430000px;}
.y69{bottom:223.410000px;}
.ye5{bottom:223.950000px;}
.y32{bottom:227.190000px;}
.ya9{bottom:230.250000px;}
.y106{bottom:230.430000px;}
.yc5{bottom:236.010000px;}
.y10f{bottom:241.410000px;}
.ye4{bottom:243.930000px;}
.y31{bottom:247.170000px;}
.y95{bottom:248.970000px;}
.y105{bottom:250.410000px;}
.ya8{bottom:251.130000px;}
.y68{bottom:252.210000px;}
.yc4{bottom:255.810000px;}
.y10e{bottom:261.210000px;}
.ycc{bottom:261.930000px;}
.ye3{bottom:263.730000px;}
.y30{bottom:266.970000px;}
.y94{bottom:268.770000px;}
.y104{bottom:270.210000px;}
.ya7{bottom:270.930000px;}
.y67{bottom:272.010000px;}
.yc3{bottom:275.610000px;}
.y120{bottom:281.010000px;}
.ye2{bottom:283.530000px;}
.y2f{bottom:286.770000px;}
.y93{bottom:288.570000px;}
.y103{bottom:290.010000px;}
.ya6{bottom:290.730000px;}
.y66{bottom:291.810000px;}
.yc2{bottom:295.410000px;}
.y11f{bottom:300.810000px;}
.ye1{bottom:303.330000px;}
.y2e{bottom:306.570000px;}
.y92{bottom:308.370000px;}
.y102{bottom:309.810000px;}
.ya5{bottom:310.530000px;}
.y65{bottom:311.610000px;}
.yc1{bottom:315.210000px;}
.y11e{bottom:320.610000px;}
.ye0{bottom:323.130000px;}
.y2d{bottom:326.370000px;}
.y91{bottom:328.350000px;}
.y101{bottom:329.610000px;}
.y64{bottom:331.590000px;}
.yc0{bottom:335.190000px;}
.y11d{bottom:340.590000px;}
.ydf{bottom:343.110000px;}
.y2c{bottom:346.350000px;}
.y90{bottom:348.150000px;}
.y100{bottom:349.590000px;}
.y63{bottom:351.390000px;}
.ybf{bottom:354.990000px;}
.y11c{bottom:360.390000px;}
.yde{bottom:362.910000px;}
.y2b{bottom:366.150000px;}
.y8f{bottom:367.950000px;}
.yff{bottom:369.390000px;}
.y62{bottom:371.190000px;}
.ybe{bottom:374.790000px;}
.y11b{bottom:380.190000px;}
.ydd{bottom:382.710000px;}
.y2a{bottom:385.950000px;}
.y8e{bottom:387.750000px;}
.yfe{bottom:389.190000px;}
.y61{bottom:390.990000px;}
.ybd{bottom:394.590000px;}
.y11a{bottom:399.990000px;}
.ydc{bottom:402.555000px;}
.y29{bottom:405.795000px;}
.y8d{bottom:407.595000px;}
.yfd{bottom:409.035000px;}
.y60{bottom:410.835000px;}
.ybc{bottom:414.435000px;}
.y119{bottom:419.835000px;}
.ydb{bottom:422.355000px;}
.y28{bottom:425.595000px;}
.y8c{bottom:428.655000px;}
.yfc{bottom:428.835000px;}
.y5f{bottom:430.815000px;}
.ybb{bottom:434.415000px;}
.y118{bottom:439.815000px;}
.yda{bottom:442.335000px;}
.y27{bottom:445.575000px;}
.y8b{bottom:448.455000px;}
.yfb{bottom:448.815000px;}
.y5e{bottom:450.615000px;}
.yba{bottom:454.215000px;}
.ya4{bottom:459.615000px;}
.yd9{bottom:462.135000px;}
.y26{bottom:465.375000px;}
.y8a{bottom:468.255000px;}
.yfa{bottom:468.615000px;}
.y5d{bottom:470.415000px;}
.yb9{bottom:474.015000px;}
.ya3{bottom:479.415000px;}
.yd8{bottom:481.935000px;}
.y25{bottom:485.175000px;}
.y89{bottom:488.055000px;}
.yf9{bottom:488.415000px;}
.y5c{bottom:490.215000px;}
.yb8{bottom:493.815000px;}
.ya2{bottom:499.215000px;}
.yd7{bottom:501.735000px;}
.y24{bottom:504.975000px;}
.y88{bottom:507.855000px;}
.yf8{bottom:508.215000px;}
.y5b{bottom:510.015000px;}
.yb7{bottom:513.615000px;}
.ya1{bottom:519.015000px;}
.yd6{bottom:521.535000px;}
.y23{bottom:524.775000px;}
.y87{bottom:527.835000px;}
.yf7{bottom:528.015000px;}
.yb6{bottom:533.595000px;}
.y5a{bottom:538.995000px;}
.yd5{bottom:541.515000px;}
.y22{bottom:544.755000px;}
.y86{bottom:547.635000px;}
.yf6{bottom:547.995000px;}
.yb5{bottom:553.395000px;}
.y59{bottom:558.795000px;}
.yd4{bottom:561.315000px;}
.y21{bottom:564.555000px;}
.yf5{bottom:567.795000px;}
.y85{bottom:568.515000px;}
.yb4{bottom:573.195000px;}
.y58{bottom:578.595000px;}
.yd3{bottom:581.115000px;}
.y20{bottom:584.355000px;}
.yf4{bottom:587.595000px;}
.y84{bottom:588.315000px;}
.yb3{bottom:592.995000px;}
.y57{bottom:598.395000px;}
.yd2{bottom:600.915000px;}
.y1f{bottom:604.155000px;}
.yf3{bottom:607.395000px;}
.y83{bottom:608.115000px;}
.y56{bottom:618.195000px;}
.yb2{bottom:618.735000px;}
.yd1{bottom:620.715000px;}
.y1e{bottom:626.295000px;}
.yf2{bottom:627.195000px;}
.y82{bottom:628.095000px;}
.y55{bottom:638.175000px;}
.yd0{bottom:640.695000px;}
.y1d{bottom:646.095000px;}
.yf1{bottom:647.175000px;}
.y81{bottom:647.895000px;}
.y54{bottom:658.005000px;}
.ycf{bottom:660.525000px;}
.y1c{bottom:665.925000px;}
.yf0{bottom:667.005000px;}
.y80{bottom:667.725000px;}
.y53{bottom:677.805000px;}
.y1b{bottom:685.905000px;}
.yef{bottom:686.805000px;}
.y7f{bottom:688.605000px;}
.y52{bottom:697.605000px;}
.y1a{bottom:705.705000px;}
.yee{bottom:706.605000px;}
.y7e{bottom:708.405000px;}
.y51{bottom:717.405000px;}
.y19{bottom:725.505000px;}
.yed{bottom:726.405000px;}
.y7d{bottom:728.385000px;}
.y50{bottom:737.385000px;}
.y18{bottom:745.305000px;}
.ya0{bottom:746.385000px;}
.y7c{bottom:748.185000px;}
.y4f{bottom:757.185000px;}
.y17{bottom:765.105000px;}
.y9f{bottom:766.185000px;}
.yb1{bottom:774.105000px;}
.y4e{bottom:776.985000px;}
.y16{bottom:785.085000px;}
.y9e{bottom:785.985000px;}
.y7b{bottom:796.785000px;}
.y15{bottom:804.885000px;}
.y4d{bottom:805.785000px;}
.y7a{bottom:816.585000px;}
.y14{bottom:824.685000px;}
.y4c{bottom:825.585000px;}
.y79{bottom:836.565000px;}
.y13{bottom:844.485000px;}
.y4b{bottom:845.565000px;}
.y78{bottom:856.365000px;}
.y12{bottom:864.285000px;}
.y4a{bottom:865.365000px;}
.y77{bottom:876.165000px;}
.y11{bottom:884.265000px;}
.y49{bottom:885.165000px;}
.y76{bottom:895.965000px;}
.y48{bottom:905.010000px;}
.y10{bottom:906.630000px;}
.y75{bottom:915.810000px;}
.y47{bottom:924.810000px;}
.yf{bottom:931.830000px;}
.y74{bottom:935.790000px;}
.y46{bottom:944.790000px;}
.ye{bottom:946.950000px;}
.y73{bottom:955.590000px;}
.y45{bottom:964.590000px;}
.yd{bottom:968.190000px;}
.y72{bottom:975.390000px;}
.y44{bottom:984.390000px;}
.yc{bottom:991.590000px;}
.y71{bottom:995.190000px;}
.y43{bottom:1004.190000px;}
.yb{bottom:1023.450000px;}
.y42{bottom:1023.990000px;}
.y41{bottom:1043.970000px;}
.y5{bottom:1051.530000px;}
.y40{bottom:1063.770000px;}
.y4{bottom:1082.850000px;}
.y3f{bottom:1083.570000px;}
.y3e{bottom:1103.370000px;}
.y3{bottom:1113.630000px;}
.y3d{bottom:1123.170000px;}
.y3c{bottom:1143.150000px;}
.y2{bottom:1144.590000px;}
.y3b{bottom:1172.520000px;}
.y1{bottom:1178.460000px;}
.y3a{bottom:1194.300000px;}
.h5{height:21.420000px;}
.hf{height:21.600000px;}
.hb{height:27.147656px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.h4{height:41.726953px;}
.h9{height:42.164648px;}
.he{height:43.506914px;}
.hc{height:46.251562px;}
.h3{height:46.736719px;}
.h8{height:50.273438px;}
.ha{height:53.224453px;}
.hd{height:59.439023px;}
.h2{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.816000px;}
.w5{width:316.335000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x17{left:12.060000px;}
.x1{left:54.179987px;}
.x11{left:57.779987px;}
.x2{left:62.100000px;}
.x9{left:70.739987px;}
.x14{left:75.239987px;}
.x1d{left:80.999987px;}
.xe{left:96.515987px;}
.xd{left:102.635987px;}
.x1c{left:108.035987px;}
.x4{left:120.636000px;}
.x18{left:158.085000px;}
.xa{left:184.709987px;}
.x8{left:337.749000px;}
.x7{left:342.789000px;}
.xc{left:347.834987px;}
.x19{left:397.874987px;}
.x6{left:413.529000px;}
.x12{left:419.474987px;}
.x5{left:427.029000px;}
.xb{left:446.504987px;}
.x10{left:473.144987px;}
.x13{left:494.384987px;}
.x1a{left:500.144987px;}
.x16{left:502.665000px;}
.xf{left:515.624987px;}
.x1b{left:527.144987px;}
.x15{left:811.979987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.097280pt;}
.ls5{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls9{letter-spacing:2.080000pt;}
.lse{letter-spacing:3.360000pt;}
.lsb{letter-spacing:4.000000pt;}
.ls0{letter-spacing:5.258667pt;}
.lsd{letter-spacing:6.560000pt;}
.lsc{letter-spacing:10.400000pt;}
.ls8{letter-spacing:17.440000pt;}
.lsa{letter-spacing:20.432640pt;}
.ls7{letter-spacing:36.432640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1036.520960pt;}
._1c{margin-left:-1035.187627pt;}
._15{margin-left:-3.612160pt;}
._12{margin-left:-1.985707pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._6{width:2.772053pt;}
._9{width:4.360320pt;}
._8{width:5.630720pt;}
._7{width:6.776960pt;}
._a{width:8.499200pt;}
._2d{width:9.422507pt;}
._c{width:10.338133pt;}
._b{width:12.005120pt;}
._1b{width:14.347307pt;}
._f{width:15.273813pt;}
._e{width:16.785920pt;}
._2b{width:17.782613pt;}
._19{width:18.890453pt;}
._18{width:20.026240pt;}
._d{width:21.015253pt;}
._1a{width:22.469760pt;}
._20{width:23.372800pt;}
._24{width:24.541440pt;}
._30{width:25.841493pt;}
._1d{width:26.886400pt;}
._16{width:27.814613pt;}
._17{width:29.130027pt;}
._23{width:30.364373pt;}
._11{width:31.818880pt;}
._10{width:32.721920pt;}
._14{width:33.678080pt;}
._13{width:34.687360pt;}
._33{width:35.876267pt;}
._28{width:36.845013pt;}
._29{width:38.087040pt;}
._31{width:39.174613pt;}
._2f{width:40.882133pt;}
._32{width:42.602240pt;}
._1e{width:44.228693pt;}
._1f{width:46.001920pt;}
._2a{width:48.179840pt;}
._2c{width:49.700053pt;}
._26{width:53.066880pt;}
._25{width:54.129280pt;}
._34{width:57.561813pt;}
._21{width:59.155413pt;}
._27{width:60.928640pt;}
._2e{width:65.370453pt;}
._22{width:95.011413pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.yce{bottom:-11.040000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.280000pt;}
.ycd{bottom:6.720000pt;}
.y9{bottom:9.920000pt;}
.y8{bottom:10.560000pt;}
.ya{bottom:32.000000pt;}
.y6{bottom:46.880000pt;}
.y9d{bottom:72.160000pt;}
.y117{bottom:73.440000pt;}
.y70{bottom:75.040000pt;}
.yec{bottom:75.680000pt;}
.y39{bottom:78.560000pt;}
.yb0{bottom:81.120000pt;}
.y10d{bottom:81.440000pt;}
.y9c{bottom:89.760000pt;}
.y116{bottom:91.040000pt;}
.y6f{bottom:92.640000pt;}
.yeb{bottom:93.280000pt;}
.y38{bottom:96.160000pt;}
.yaf{bottom:98.720000pt;}
.y10c{bottom:99.040000pt;}
.ycb{bottom:103.840000pt;}
.y9b{bottom:107.520000pt;}
.y115{bottom:108.640000pt;}
.y6e{bottom:110.400000pt;}
.yea{bottom:110.880000pt;}
.y37{bottom:113.760000pt;}
.yae{bottom:116.480000pt;}
.y10b{bottom:116.640000pt;}
.yca{bottom:121.600000pt;}
.y9a{bottom:125.120000pt;}
.y114{bottom:126.400000pt;}
.y6d{bottom:128.000000pt;}
.ye9{bottom:128.640000pt;}
.y36{bottom:131.520000pt;}
.yad{bottom:134.080000pt;}
.y10a{bottom:134.400000pt;}
.yc9{bottom:139.226667pt;}
.y99{bottom:142.746667pt;}
.y113{bottom:144.026667pt;}
.y6c{bottom:145.626667pt;}
.ye8{bottom:146.266667pt;}
.y35{bottom:149.146667pt;}
.yac{bottom:151.706667pt;}
.y109{bottom:152.026667pt;}
.yc8{bottom:156.826667pt;}
.y98{bottom:160.346667pt;}
.y112{bottom:161.626667pt;}
.y6b{bottom:163.226667pt;}
.ye7{bottom:163.866667pt;}
.y34{bottom:166.746667pt;}
.yab{bottom:169.306667pt;}
.y108{bottom:169.626667pt;}
.yc7{bottom:174.426667pt;}
.y97{bottom:177.946667pt;}
.y111{bottom:179.226667pt;}
.y6a{bottom:180.826667pt;}
.ye6{bottom:181.466667pt;}
.y33{bottom:184.346667pt;}
.yaa{bottom:186.906667pt;}
.y107{bottom:187.226667pt;}
.yc6{bottom:192.026667pt;}
.y96{bottom:195.706667pt;}
.y110{bottom:196.826667pt;}
.y69{bottom:198.586667pt;}
.ye5{bottom:199.066667pt;}
.y32{bottom:201.946667pt;}
.ya9{bottom:204.666667pt;}
.y106{bottom:204.826667pt;}
.yc5{bottom:209.786667pt;}
.y10f{bottom:214.586667pt;}
.ye4{bottom:216.826667pt;}
.y31{bottom:219.706667pt;}
.y95{bottom:221.306667pt;}
.y105{bottom:222.586667pt;}
.ya8{bottom:223.226667pt;}
.y68{bottom:224.186667pt;}
.yc4{bottom:227.386667pt;}
.y10e{bottom:232.186667pt;}
.ycc{bottom:232.826667pt;}
.ye3{bottom:234.426667pt;}
.y30{bottom:237.306667pt;}
.y94{bottom:238.906667pt;}
.y104{bottom:240.186667pt;}
.ya7{bottom:240.826667pt;}
.y67{bottom:241.786667pt;}
.yc3{bottom:244.986667pt;}
.y120{bottom:249.786667pt;}
.ye2{bottom:252.026667pt;}
.y2f{bottom:254.906667pt;}
.y93{bottom:256.506667pt;}
.y103{bottom:257.786667pt;}
.ya6{bottom:258.426667pt;}
.y66{bottom:259.386667pt;}
.yc2{bottom:262.586667pt;}
.y11f{bottom:267.386667pt;}
.ye1{bottom:269.626667pt;}
.y2e{bottom:272.506667pt;}
.y92{bottom:274.106667pt;}
.y102{bottom:275.386667pt;}
.ya5{bottom:276.026667pt;}
.y65{bottom:276.986667pt;}
.yc1{bottom:280.186667pt;}
.y11e{bottom:284.986667pt;}
.ye0{bottom:287.226667pt;}
.y2d{bottom:290.106667pt;}
.y91{bottom:291.866667pt;}
.y101{bottom:292.986667pt;}
.y64{bottom:294.746667pt;}
.yc0{bottom:297.946667pt;}
.y11d{bottom:302.746667pt;}
.ydf{bottom:304.986667pt;}
.y2c{bottom:307.866667pt;}
.y90{bottom:309.466667pt;}
.y100{bottom:310.746667pt;}
.y63{bottom:312.346667pt;}
.ybf{bottom:315.546667pt;}
.y11c{bottom:320.346667pt;}
.yde{bottom:322.586667pt;}
.y2b{bottom:325.466667pt;}
.y8f{bottom:327.066667pt;}
.yff{bottom:328.346667pt;}
.y62{bottom:329.946667pt;}
.ybe{bottom:333.146667pt;}
.y11b{bottom:337.946667pt;}
.ydd{bottom:340.186667pt;}
.y2a{bottom:343.066667pt;}
.y8e{bottom:344.666667pt;}
.yfe{bottom:345.946667pt;}
.y61{bottom:347.546667pt;}
.ybd{bottom:350.746667pt;}
.y11a{bottom:355.546667pt;}
.ydc{bottom:357.826667pt;}
.y29{bottom:360.706667pt;}
.y8d{bottom:362.306667pt;}
.yfd{bottom:363.586667pt;}
.y60{bottom:365.186667pt;}
.ybc{bottom:368.386667pt;}
.y119{bottom:373.186667pt;}
.ydb{bottom:375.426667pt;}
.y28{bottom:378.306667pt;}
.y8c{bottom:381.026667pt;}
.yfc{bottom:381.186667pt;}
.y5f{bottom:382.946667pt;}
.ybb{bottom:386.146667pt;}
.y118{bottom:390.946667pt;}
.yda{bottom:393.186667pt;}
.y27{bottom:396.066667pt;}
.y8b{bottom:398.626667pt;}
.yfb{bottom:398.946667pt;}
.y5e{bottom:400.546667pt;}
.yba{bottom:403.746667pt;}
.ya4{bottom:408.546667pt;}
.yd9{bottom:410.786667pt;}
.y26{bottom:413.666667pt;}
.y8a{bottom:416.226667pt;}
.yfa{bottom:416.546667pt;}
.y5d{bottom:418.146667pt;}
.yb9{bottom:421.346667pt;}
.ya3{bottom:426.146667pt;}
.yd8{bottom:428.386667pt;}
.y25{bottom:431.266667pt;}
.y89{bottom:433.826667pt;}
.yf9{bottom:434.146667pt;}
.y5c{bottom:435.746667pt;}
.yb8{bottom:438.946667pt;}
.ya2{bottom:443.746667pt;}
.yd7{bottom:445.986667pt;}
.y24{bottom:448.866667pt;}
.y88{bottom:451.426667pt;}
.yf8{bottom:451.746667pt;}
.y5b{bottom:453.346667pt;}
.yb7{bottom:456.546667pt;}
.ya1{bottom:461.346667pt;}
.yd6{bottom:463.586667pt;}
.y23{bottom:466.466667pt;}
.y87{bottom:469.186667pt;}
.yf7{bottom:469.346667pt;}
.yb6{bottom:474.306667pt;}
.y5a{bottom:479.106667pt;}
.yd5{bottom:481.346667pt;}
.y22{bottom:484.226667pt;}
.y86{bottom:486.786667pt;}
.yf6{bottom:487.106667pt;}
.yb5{bottom:491.906667pt;}
.y59{bottom:496.706667pt;}
.yd4{bottom:498.946667pt;}
.y21{bottom:501.826667pt;}
.yf5{bottom:504.706667pt;}
.y85{bottom:505.346667pt;}
.yb4{bottom:509.506667pt;}
.y58{bottom:514.306667pt;}
.yd3{bottom:516.546667pt;}
.y20{bottom:519.426667pt;}
.yf4{bottom:522.306667pt;}
.y84{bottom:522.946667pt;}
.yb3{bottom:527.106667pt;}
.y57{bottom:531.906667pt;}
.yd2{bottom:534.146667pt;}
.y1f{bottom:537.026667pt;}
.yf3{bottom:539.906667pt;}
.y83{bottom:540.546667pt;}
.y56{bottom:549.506667pt;}
.yb2{bottom:549.986667pt;}
.yd1{bottom:551.746667pt;}
.y1e{bottom:556.706667pt;}
.yf2{bottom:557.506667pt;}
.y82{bottom:558.306667pt;}
.y55{bottom:567.266667pt;}
.yd0{bottom:569.506667pt;}
.y1d{bottom:574.306667pt;}
.yf1{bottom:575.266667pt;}
.y81{bottom:575.906667pt;}
.y54{bottom:584.893333pt;}
.ycf{bottom:587.133333pt;}
.y1c{bottom:591.933333pt;}
.yf0{bottom:592.893333pt;}
.y80{bottom:593.533333pt;}
.y53{bottom:602.493333pt;}
.y1b{bottom:609.693333pt;}
.yef{bottom:610.493333pt;}
.y7f{bottom:612.093333pt;}
.y52{bottom:620.093333pt;}
.y1a{bottom:627.293333pt;}
.yee{bottom:628.093333pt;}
.y7e{bottom:629.693333pt;}
.y51{bottom:637.693333pt;}
.y19{bottom:644.893333pt;}
.yed{bottom:645.693333pt;}
.y7d{bottom:647.453333pt;}
.y50{bottom:655.453333pt;}
.y18{bottom:662.493333pt;}
.ya0{bottom:663.453333pt;}
.y7c{bottom:665.053333pt;}
.y4f{bottom:673.053333pt;}
.y17{bottom:680.093333pt;}
.y9f{bottom:681.053333pt;}
.yb1{bottom:688.093333pt;}
.y4e{bottom:690.653333pt;}
.y16{bottom:697.853333pt;}
.y9e{bottom:698.653333pt;}
.y7b{bottom:708.253333pt;}
.y15{bottom:715.453333pt;}
.y4d{bottom:716.253333pt;}
.y7a{bottom:725.853333pt;}
.y14{bottom:733.053333pt;}
.y4c{bottom:733.853333pt;}
.y79{bottom:743.613333pt;}
.y13{bottom:750.653333pt;}
.y4b{bottom:751.613333pt;}
.y78{bottom:761.213333pt;}
.y12{bottom:768.253333pt;}
.y4a{bottom:769.213333pt;}
.y77{bottom:778.813333pt;}
.y11{bottom:786.013333pt;}
.y49{bottom:786.813333pt;}
.y76{bottom:796.413333pt;}
.y48{bottom:804.453333pt;}
.y10{bottom:805.893333pt;}
.y75{bottom:814.053333pt;}
.y47{bottom:822.053333pt;}
.yf{bottom:828.293333pt;}
.y74{bottom:831.813333pt;}
.y46{bottom:839.813333pt;}
.ye{bottom:841.733333pt;}
.y73{bottom:849.413333pt;}
.y45{bottom:857.413333pt;}
.yd{bottom:860.613333pt;}
.y72{bottom:867.013333pt;}
.y44{bottom:875.013333pt;}
.yc{bottom:881.413333pt;}
.y71{bottom:884.613333pt;}
.y43{bottom:892.613333pt;}
.yb{bottom:909.733333pt;}
.y42{bottom:910.213333pt;}
.y41{bottom:927.973333pt;}
.y5{bottom:934.693333pt;}
.y40{bottom:945.573333pt;}
.y4{bottom:962.533333pt;}
.y3f{bottom:963.173333pt;}
.y3e{bottom:980.773333pt;}
.y3{bottom:989.893333pt;}
.y3d{bottom:998.373333pt;}
.y3c{bottom:1016.133333pt;}
.y2{bottom:1017.413333pt;}
.y3b{bottom:1042.240000pt;}
.y1{bottom:1047.520000pt;}
.y3a{bottom:1061.600000pt;}
.h5{height:19.040000pt;}
.hf{height:19.200000pt;}
.hb{height:24.131250pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.h4{height:37.090625pt;}
.h9{height:37.479688pt;}
.he{height:38.672812pt;}
.hc{height:41.112500pt;}
.h3{height:41.543750pt;}
.h8{height:44.687500pt;}
.ha{height:47.310625pt;}
.hd{height:52.834688pt;}
.h2{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:51.392000pt;}
.w5{width:281.186667pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x17{left:10.720000pt;}
.x1{left:48.159988pt;}
.x11{left:51.359988pt;}
.x2{left:55.200000pt;}
.x9{left:62.879988pt;}
.x14{left:66.879988pt;}
.x1d{left:71.999988pt;}
.xe{left:85.791988pt;}
.xd{left:91.231988pt;}
.x1c{left:96.031988pt;}
.x4{left:107.232000pt;}
.x18{left:140.520000pt;}
.xa{left:164.186655pt;}
.x8{left:300.221333pt;}
.x7{left:304.701333pt;}
.xc{left:309.186655pt;}
.x19{left:353.666655pt;}
.x6{left:367.581333pt;}
.x12{left:372.866655pt;}
.x5{left:379.581333pt;}
.xb{left:396.893322pt;}
.x10{left:420.573322pt;}
.x13{left:439.453322pt;}
.x1a{left:444.573322pt;}
.x16{left:446.813333pt;}
.xf{left:458.333322pt;}
.x1b{left:468.573322pt;}
.x15{left:721.759988pt;}
}




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