
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0e0a5a6d528d97814b77a4d9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_72f7f83ab727ca30dd0453f6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_68f1a41b0ee08f5d301b05bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_6011d27b26438485cddcb197.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_e50f8abcf383e1cf5aee7e28.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5a6660cb313a1268948b42e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_09b7c27b8c7868d4246b4e63.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.160000px;}
.ls25{letter-spacing:-1.260000px;}
.ls12{letter-spacing:-0.942000px;}
.ls17{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.496200px;}
.ls2d{letter-spacing:-0.450600px;}
.ls1f{letter-spacing:-0.414600px;}
.lsd{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.269400px;}
.ls2c{letter-spacing:-0.223800px;}
.ls30{letter-spacing:-0.152400px;}
.ls2f{letter-spacing:-0.109200px;}
.ls6{letter-spacing:-0.034560px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls20{letter-spacing:0.045360px;}
.ls1a{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.223800px;}
.ls1d{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.900000px;}
.ls28{letter-spacing:1.440000px;}
.ls10{letter-spacing:1.620000px;}
.ls15{letter-spacing:2.340000px;}
.ls4{letter-spacing:2.880000px;}
.ls11{letter-spacing:3.060000px;}
.lsf{letter-spacing:3.780000px;}
.lsa{letter-spacing:5.220000px;}
.ls29{letter-spacing:6.660000px;}
.ls14{letter-spacing:8.100000px;}
.lsc{letter-spacing:9.540000px;}
.ls21{letter-spacing:10.260000px;}
.ls23{letter-spacing:10.800000px;}
.ls3{letter-spacing:11.700000px;}
.ls24{letter-spacing:12.420000px;}
.ls22{letter-spacing:13.680000px;}
.ls1e{letter-spacing:16.865280px;}
.ls13{letter-spacing:18.720000px;}
.lse{letter-spacing:20.160000px;}
.ls18{letter-spacing:20.465280px;}
.ls16{letter-spacing:20.880000px;}
.ls26{letter-spacing:26.945280px;}
.ls2b{letter-spacing:39.881280px;}
.ls27{letter-spacing:52.740000px;}
.ls19{letter-spacing:60.065280px;}
.ls1b{letter-spacing:63.665280px;}
.ls1c{letter-spacing:71.585280px;}
.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;}
}
.ws9{word-spacing:-16.822200px;}
.ws8{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.450800px;}
.ws10{word-spacing:-16.407600px;}
.ws11{word-spacing:-16.145400px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.500000px;}
.wsc{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.283800px;}
.wsa{word-spacing:-12.105360px;}
.ws2{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.836200px;}
.wsb{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.wse{word-spacing:-11.609400px;}
.ws3{word-spacing:-11.563800px;}
.ws6{word-spacing:0.000000px;}
._24{margin-left:-12.960000px;}
._17{margin-left:-4.311360px;}
._15{margin-left:-2.908800px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._7{width:2.571360px;}
._6{width:3.645360px;}
._5{width:5.019840px;}
._1d{width:6.028560px;}
._9{width:7.111440px;}
._8{width:8.964000px;}
._16{width:10.260000px;}
._2{width:11.407440px;}
._14{width:12.798960px;}
._13{width:14.241600px;}
._19{width:15.300000px;}
._a{width:16.314480px;}
._1a{width:18.031680px;}
._12{width:19.342080px;}
._c{width:21.039120px;}
._b{width:22.469760px;}
._18{width:23.703120px;}
._e{width:25.099200px;}
._d{width:26.413920px;}
._1c{width:27.616800px;}
._22{width:28.928640px;}
._23{width:30.801600px;}
._1f{width:32.656320px;}
._4{width:38.844000px;}
._3{width:39.979440px;}
._1e{width:41.878080px;}
._25{width:43.319520px;}
._26{width:44.425200px;}
._20{width:45.639360px;}
._21{width:46.978560px;}
._28{width:51.905520px;}
._27{width:52.967520px;}
._2b{width:69.419520px;}
._1b{width:86.639040px;}
._10{width:88.830000px;}
._2a{width:90.166560px;}
._2c{width:106.315200px;}
._2d{width:107.355360px;}
._f{width:170.370000px;}
._2e{width:182.557440px;}
._29{width:199.416000px;}
._11{width:261.343680px;}
.fc3{color:rgb(204,41,54);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y29{bottom:3.240000px;}
.y3{bottom:6.480000px;}
.y35{bottom:9.720000px;}
.y36{bottom:11.340000px;}
.y28{bottom:20.520000px;}
.y6{bottom:25.380000px;}
.y9{bottom:28.830000px;}
.y27{bottom:37.650000px;}
.y5{bottom:42.690000px;}
.y8{bottom:46.110000px;}
.y26{bottom:54.930000px;}
.yb{bottom:55.620000px;}
.y4{bottom:60.690000px;}
.y7{bottom:63.390000px;}
.y25{bottom:72.210000px;}
.y24{bottom:89.490000px;}
.y23{bottom:106.770000px;}
.y50{bottom:110.376000px;}
.y97{bottom:114.876000px;}
.y22{bottom:124.050000px;}
.y4f{bottom:124.236000px;}
.y4e{bottom:128.736000px;}
.yac{bottom:130.716000px;}
.y4d{bottom:137.916000px;}
.y96{bottom:139.896000px;}
.y21{bottom:141.150000px;}
.y84{bottom:142.416000px;}
.y4c{bottom:151.770000px;}
.yab{bottom:152.490000px;}
.y99{bottom:153.750000px;}
.y4b{bottom:156.270000px;}
.y20{bottom:158.430000px;}
.y4a{bottom:165.630000px;}
.y49{bottom:170.130000px;}
.y95{bottom:174.270000px;}
.y1f{bottom:175.710000px;}
.y83{bottom:179.310000px;}
.y48{bottom:181.290000px;}
.y8c{bottom:183.810000px;}
.y1e{bottom:192.990000px;}
.y82{bottom:193.170000px;}
.y9e{bottom:195.150000px;}
.y94{bottom:196.050000px;}
.y81{bottom:197.670000px;}
.y80{bottom:207.030000px;}
.y91{bottom:209.010000px;}
.y1d{bottom:210.270000px;}
.y8b{bottom:211.530000px;}
.y93{bottom:217.830000px;}
.y47{bottom:218.730000px;}
.y7f{bottom:220.710000px;}
.y8a{bottom:222.690000px;}
.y7e{bottom:225.210000px;}
.y1c{bottom:227.550000px;}
.y7d{bottom:234.570000px;}
.ya9{bottom:239.070000px;}
.y90{bottom:239.790000px;}
.y45{bottom:240.510000px;}
.y32{bottom:242.670000px;}
.y1b{bottom:244.650000px;}
.y46{bottom:246.450000px;}
.y7c{bottom:248.430000px;}
.y7b{bottom:252.930000px;}
.y31{bottom:258.150000px;}
.y8f{bottom:261.570000px;}
.y1a{bottom:261.930000px;}
.ya8{bottom:262.110000px;}
.y44{bottom:262.290000px;}
.y7a{bottom:264.090000px;}
.ya7{bottom:266.610000px;}
.yaa{bottom:267.510000px;}
.y30{bottom:273.810000px;}
.ya6{bottom:277.950000px;}
.y19{bottom:279.210000px;}
.y89{bottom:283.350000px;}
.y42{bottom:284.250000px;}
.y2f{bottom:289.290000px;}
.y43{bottom:290.190000px;}
.y18{bottom:296.490000px;}
.y2e{bottom:304.815000px;}
.y79{bottom:305.130000px;}
.y41{bottom:306.030000px;}
.y9a{bottom:311.070000px;}
.y17{bottom:313.815000px;}
.y2d{bottom:320.295000px;}
.y78{bottom:327.090000px;}
.y3f{bottom:327.810000px;}
.y16{bottom:331.095000px;}
.ya1{bottom:333.030000px;}
.y40{bottom:333.750000px;}
.y2c{bottom:335.775000px;}
.y15{bottom:348.195000px;}
.y76{bottom:348.915000px;}
.y3e{bottom:349.635000px;}
.y2b{bottom:351.435000px;}
.y77{bottom:354.855000px;}
.y14{bottom:365.475000px;}
.y2a{bottom:366.915000px;}
.y75{bottom:370.695000px;}
.y3d{bottom:371.415000px;}
.y8e{bottom:376.635000px;}
.y74{bottom:392.475000px;}
.y3c{bottom:393.375000px;}
.y88{bottom:398.415000px;}
.y73{bottom:414.255000px;}
.y3b{bottom:415.155000px;}
.y72{bottom:436.215000px;}
.y3a{bottom:436.935000px;}
.ya3{bottom:442.155000px;}
.y71{bottom:457.995000px;}
.y39{bottom:458.715000px;}
.ya5{bottom:463.935000px;}
.y70{bottom:479.775000px;}
.y38{bottom:480.675000px;}
.y37{bottom:496.155000px;}
.y6f{bottom:501.555000px;}
.y34{bottom:518.295000px;}
.y6e{bottom:523.515000px;}
.y92{bottom:529.455000px;}
.y6d{bottom:545.295000px;}
.ya0{bottom:551.235000px;}
.y33{bottom:553.395000px;}
.y6c{bottom:567.075000px;}
.y13{bottom:568.695000px;}
.ya4{bottom:573.015000px;}
.y6b{bottom:588.855000px;}
.y9d{bottom:594.795000px;}
.y6a{bottom:610.665000px;}
.y69{bottom:632.625000px;}
.y87{bottom:638.565000px;}
.y68{bottom:654.405000px;}
.y66{bottom:676.185000px;}
.y67{bottom:682.125000px;}
.y65{bottom:697.965000px;}
.y63{bottom:719.745000px;}
.y64{bottom:725.685000px;}
.y62{bottom:741.705000px;}
.y9c{bottom:747.645000px;}
.y61{bottom:763.485000px;}
.y60{bottom:785.265000px;}
.y9f{bottom:791.205000px;}
.y5e{bottom:807.045000px;}
.y5f{bottom:812.985000px;}
.y5d{bottom:829.005000px;}
.y9b{bottom:834.945000px;}
.y5c{bottom:850.785000px;}
.y5b{bottom:872.610000px;}
.y86{bottom:878.550000px;}
.y5a{bottom:894.390000px;}
.y8d{bottom:900.330000px;}
.y59{bottom:916.170000px;}
.y98{bottom:922.110000px;}
.y58{bottom:938.130000px;}
.ya2{bottom:944.070000px;}
.y12{bottom:951.810000px;}
.y57{bottom:959.910000px;}
.y11{bottom:970.350000px;}
.y56{bottom:981.690000px;}
.y10{bottom:987.630000px;}
.y55{bottom:1003.470000px;}
.yf{bottom:1005.270000px;}
.ye{bottom:1024.350000px;}
.y54{bottom:1025.430000px;}
.yd{bottom:1043.790000px;}
.y52{bottom:1047.210000px;}
.y53{bottom:1053.150000px;}
.yc{bottom:1066.110000px;}
.y51{bottom:1068.990000px;}
.y85{bottom:1074.930000px;}
.ya{bottom:1088.970000px;}
.y2{bottom:1109.130000px;}
.y1{bottom:1194.120000px;}
.h13{height:21.114844px;}
.h12{height:29.158594px;}
.hf{height:31.320000px;}
.h10{height:33.683203px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h14{height:39.760312px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.hb{height:46.251562px;}
.ha{height:46.736719px;}
.h8{height:47.980898px;}
.h15{height:48.224531px;}
.h7{height:49.255313px;}
.h5{height:50.800781px;}
.h16{height:53.755312px;}
.h11{height:54.596250px;}
.h9{height:63.104063px;}
.h2{height:65.884219px;}
.h3{height:77.436000px;}
.hc{height:379.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:72.000000px;}
.w5{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w4{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x12{left:29.700000px;}
.x7{left:44.640000px;}
.x3{left:69.294000px;}
.x8{left:85.725000px;}
.x2{left:99.936000px;}
.x1{left:108.035987px;}
.x15{left:113.255987px;}
.xb{left:118.295987px;}
.x1d{left:122.435987px;}
.x2e{left:126.215987px;}
.x40{left:129.275987px;}
.x9{left:132.345000px;}
.x6c{left:135.035987px;}
.x39{left:140.075987px;}
.x2d{left:155.009973px;}
.x66{left:159.869973px;}
.x14{left:162.029987px;}
.x28{left:163.289973px;}
.x68{left:164.369973px;}
.xc{left:165.629987px;}
.x29{left:168.509987px;}
.x67{left:170.309987px;}
.x4{left:171.930000px;}
.x2c{left:173.729987px;}
.x69{left:174.809987px;}
.x20{left:179.669973px;}
.x31{left:181.469973px;}
.x21{left:184.889987px;}
.x32{left:191.909987px;}
.x16{left:193.529973px;}
.x17{left:198.749987px;}
.x6b{left:204.689987px;}
.x4e{left:216.029987px;}
.x24{left:234.029973px;}
.x53{left:236.009973px;}
.x25{left:239.249987px;}
.x54{left:246.449987px;}
.x18{left:247.709973px;}
.x19{left:252.929987px;}
.x2f{left:262.469987px;}
.x45{left:285.374973px;}
.x46{left:295.814987px;}
.x1c{left:324.074987px;}
.x61{left:326.054973px;}
.xf{left:328.034987px;}
.x10{left:333.974987px;}
.x57{left:335.594973px;}
.x3b{left:338.834987px;}
.x3e{left:342.254973px;}
.x58{left:346.034987px;}
.x59{left:349.454973px;}
.x3f{left:352.694987px;}
.x5a{left:359.894987px;}
.x22{left:361.154973px;}
.x23{left:366.374987px;}
.xe{left:377.894987px;}
.x6a{left:389.054987px;}
.x13{left:391.575000px;}
.x4f{left:394.274973px;}
.x4c{left:402.194973px;}
.x50{left:404.714987px;}
.x2a{left:408.674973px;}
.x4d{left:412.634987px;}
.x47{left:415.514973px;}
.x2b{left:419.114987px;}
.x64{left:424.334973px;}
.x48{left:425.954987px;}
.x4b{left:428.834987px;}
.x65{left:434.774987px;}
.x5b{left:439.274973px;}
.xd{left:446.654987px;}
.x5c{left:449.714987px;}
.x1e{left:467.384973px;}
.x55{left:471.524973px;}
.x1f{left:472.604987px;}
.x56{left:481.964987px;}
.xa{left:500.144987px;}
.x41{left:502.304973px;}
.x42{left:512.744987px;}
.x33{left:521.564973px;}
.x34{left:532.004987px;}
.x11{left:567.105000px;}
.x62{left:579.344973px;}
.x63{left:589.784987px;}
.x37{left:593.924973px;}
.x6{left:599.865000px;}
.x38{left:604.364987px;}
.x3c{left:640.544973px;}
.x43{left:644.144973px;}
.x51{left:645.584973px;}
.x3d{left:650.984987px;}
.x44{left:654.584987px;}
.x52{left:656.069987px;}
.x5f{left:662.009973px;}
.x5d{left:666.149973px;}
.x60{left:672.449987px;}
.x5e{left:676.589987px;}
.x35{left:691.529973px;}
.x36{left:701.969987px;}
.x30{left:704.669973px;}
.x1a{left:710.429973px;}
.x1b{left:715.649987px;}
.x49{left:750.389973px;}
.x4a{left:760.829987px;}
.x3a{left:774.689973px;}
.x26{left:779.909973px;}
.x27{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.920000pt;}
.ls25{letter-spacing:-1.120000pt;}
.ls12{letter-spacing:-0.837333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.441067pt;}
.ls2d{letter-spacing:-0.400533pt;}
.ls1f{letter-spacing:-0.368533pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.239467pt;}
.ls2c{letter-spacing:-0.198933pt;}
.ls30{letter-spacing:-0.135467pt;}
.ls2f{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:-0.030720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls20{letter-spacing:0.040320pt;}
.ls1a{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.198933pt;}
.ls1d{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls28{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls15{letter-spacing:2.080000pt;}
.ls4{letter-spacing:2.560000pt;}
.ls11{letter-spacing:2.720000pt;}
.lsf{letter-spacing:3.360000pt;}
.lsa{letter-spacing:4.640000pt;}
.ls29{letter-spacing:5.920000pt;}
.ls14{letter-spacing:7.200000pt;}
.lsc{letter-spacing:8.480000pt;}
.ls21{letter-spacing:9.120000pt;}
.ls23{letter-spacing:9.600000pt;}
.ls3{letter-spacing:10.400000pt;}
.ls24{letter-spacing:11.040000pt;}
.ls22{letter-spacing:12.160000pt;}
.ls1e{letter-spacing:14.991360pt;}
.ls13{letter-spacing:16.640000pt;}
.lse{letter-spacing:17.920000pt;}
.ls18{letter-spacing:18.191360pt;}
.ls16{letter-spacing:18.560000pt;}
.ls26{letter-spacing:23.951360pt;}
.ls2b{letter-spacing:35.450027pt;}
.ls27{letter-spacing:46.880000pt;}
.ls19{letter-spacing:53.391360pt;}
.ls1b{letter-spacing:56.591360pt;}
.ls1c{letter-spacing:63.631360pt;}
.ws9{word-spacing:-14.953067pt;}
.ws8{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.622933pt;}
.ws10{word-spacing:-14.584533pt;}
.ws11{word-spacing:-14.351467pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.918933pt;}
.wsa{word-spacing:-10.760320pt;}
.ws2{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.521067pt;}
.wsb{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.wse{word-spacing:-10.319467pt;}
.ws3{word-spacing:-10.278933pt;}
.ws6{word-spacing:0.000000pt;}
._24{margin-left:-11.520000pt;}
._17{margin-left:-3.832320pt;}
._15{margin-left:-2.585600pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._7{width:2.285653pt;}
._6{width:3.240320pt;}
._5{width:4.462080pt;}
._1d{width:5.358720pt;}
._9{width:6.321280pt;}
._8{width:7.968000pt;}
._16{width:9.120000pt;}
._2{width:10.139947pt;}
._14{width:11.376853pt;}
._13{width:12.659200pt;}
._19{width:13.600000pt;}
._a{width:14.501760pt;}
._1a{width:16.028160pt;}
._12{width:17.192960pt;}
._c{width:18.701440pt;}
._b{width:19.973120pt;}
._18{width:21.069440pt;}
._e{width:22.310400pt;}
._d{width:23.479040pt;}
._1c{width:24.548267pt;}
._22{width:25.714347pt;}
._23{width:27.379200pt;}
._1f{width:29.027840pt;}
._4{width:34.528000pt;}
._3{width:35.537280pt;}
._1e{width:37.224960pt;}
._25{width:38.506240pt;}
._26{width:39.489067pt;}
._20{width:40.568320pt;}
._21{width:41.758720pt;}
._28{width:46.138240pt;}
._27{width:47.082240pt;}
._2b{width:61.706240pt;}
._1b{width:77.012480pt;}
._10{width:78.960000pt;}
._2a{width:80.148053pt;}
._2c{width:94.502400pt;}
._2d{width:95.426987pt;}
._f{width:151.440000pt;}
._2e{width:162.273280pt;}
._29{width:177.258667pt;}
._11{width:232.305493pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:2.880000pt;}
.y3{bottom:5.760000pt;}
.y35{bottom:8.640000pt;}
.y36{bottom:10.080000pt;}
.y28{bottom:18.240000pt;}
.y6{bottom:22.560000pt;}
.y9{bottom:25.626667pt;}
.y27{bottom:33.466667pt;}
.y5{bottom:37.946667pt;}
.y8{bottom:40.986667pt;}
.y26{bottom:48.826667pt;}
.yb{bottom:49.440000pt;}
.y4{bottom:53.946667pt;}
.y7{bottom:56.346667pt;}
.y25{bottom:64.186667pt;}
.y24{bottom:79.546667pt;}
.y23{bottom:94.906667pt;}
.y50{bottom:98.112000pt;}
.y97{bottom:102.112000pt;}
.y22{bottom:110.266667pt;}
.y4f{bottom:110.432000pt;}
.y4e{bottom:114.432000pt;}
.yac{bottom:116.192000pt;}
.y4d{bottom:122.592000pt;}
.y96{bottom:124.352000pt;}
.y21{bottom:125.466667pt;}
.y84{bottom:126.592000pt;}
.y4c{bottom:134.906667pt;}
.yab{bottom:135.546667pt;}
.y99{bottom:136.666667pt;}
.y4b{bottom:138.906667pt;}
.y20{bottom:140.826667pt;}
.y4a{bottom:147.226667pt;}
.y49{bottom:151.226667pt;}
.y95{bottom:154.906667pt;}
.y1f{bottom:156.186667pt;}
.y83{bottom:159.386667pt;}
.y48{bottom:161.146667pt;}
.y8c{bottom:163.386667pt;}
.y1e{bottom:171.546667pt;}
.y82{bottom:171.706667pt;}
.y9e{bottom:173.466667pt;}
.y94{bottom:174.266667pt;}
.y81{bottom:175.706667pt;}
.y80{bottom:184.026667pt;}
.y91{bottom:185.786667pt;}
.y1d{bottom:186.906667pt;}
.y8b{bottom:188.026667pt;}
.y93{bottom:193.626667pt;}
.y47{bottom:194.426667pt;}
.y7f{bottom:196.186667pt;}
.y8a{bottom:197.946667pt;}
.y7e{bottom:200.186667pt;}
.y1c{bottom:202.266667pt;}
.y7d{bottom:208.506667pt;}
.ya9{bottom:212.506667pt;}
.y90{bottom:213.146667pt;}
.y45{bottom:213.786667pt;}
.y32{bottom:215.706667pt;}
.y1b{bottom:217.466667pt;}
.y46{bottom:219.066667pt;}
.y7c{bottom:220.826667pt;}
.y7b{bottom:224.826667pt;}
.y31{bottom:229.466667pt;}
.y8f{bottom:232.506667pt;}
.y1a{bottom:232.826667pt;}
.ya8{bottom:232.986667pt;}
.y44{bottom:233.146667pt;}
.y7a{bottom:234.746667pt;}
.ya7{bottom:236.986667pt;}
.yaa{bottom:237.786667pt;}
.y30{bottom:243.386667pt;}
.ya6{bottom:247.066667pt;}
.y19{bottom:248.186667pt;}
.y89{bottom:251.866667pt;}
.y42{bottom:252.666667pt;}
.y2f{bottom:257.146667pt;}
.y43{bottom:257.946667pt;}
.y18{bottom:263.546667pt;}
.y2e{bottom:270.946667pt;}
.y79{bottom:271.226667pt;}
.y41{bottom:272.026667pt;}
.y9a{bottom:276.506667pt;}
.y17{bottom:278.946667pt;}
.y2d{bottom:284.706667pt;}
.y78{bottom:290.746667pt;}
.y3f{bottom:291.386667pt;}
.y16{bottom:294.306667pt;}
.ya1{bottom:296.026667pt;}
.y40{bottom:296.666667pt;}
.y2c{bottom:298.466667pt;}
.y15{bottom:309.506667pt;}
.y76{bottom:310.146667pt;}
.y3e{bottom:310.786667pt;}
.y2b{bottom:312.386667pt;}
.y77{bottom:315.426667pt;}
.y14{bottom:324.866667pt;}
.y2a{bottom:326.146667pt;}
.y75{bottom:329.506667pt;}
.y3d{bottom:330.146667pt;}
.y8e{bottom:334.786667pt;}
.y74{bottom:348.866667pt;}
.y3c{bottom:349.666667pt;}
.y88{bottom:354.146667pt;}
.y73{bottom:368.226667pt;}
.y3b{bottom:369.026667pt;}
.y72{bottom:387.746667pt;}
.y3a{bottom:388.386667pt;}
.ya3{bottom:393.026667pt;}
.y71{bottom:407.106667pt;}
.y39{bottom:407.746667pt;}
.ya5{bottom:412.386667pt;}
.y70{bottom:426.466667pt;}
.y38{bottom:427.266667pt;}
.y37{bottom:441.026667pt;}
.y6f{bottom:445.826667pt;}
.y34{bottom:460.706667pt;}
.y6e{bottom:465.346667pt;}
.y92{bottom:470.626667pt;}
.y6d{bottom:484.706667pt;}
.ya0{bottom:489.986667pt;}
.y33{bottom:491.906667pt;}
.y6c{bottom:504.066667pt;}
.y13{bottom:505.506667pt;}
.ya4{bottom:509.346667pt;}
.y6b{bottom:523.426667pt;}
.y9d{bottom:528.706667pt;}
.y6a{bottom:542.813333pt;}
.y69{bottom:562.333333pt;}
.y87{bottom:567.613333pt;}
.y68{bottom:581.693333pt;}
.y66{bottom:601.053333pt;}
.y67{bottom:606.333333pt;}
.y65{bottom:620.413333pt;}
.y63{bottom:639.773333pt;}
.y64{bottom:645.053333pt;}
.y62{bottom:659.293333pt;}
.y9c{bottom:664.573333pt;}
.y61{bottom:678.653333pt;}
.y60{bottom:698.013333pt;}
.y9f{bottom:703.293333pt;}
.y5e{bottom:717.373333pt;}
.y5f{bottom:722.653333pt;}
.y5d{bottom:736.893333pt;}
.y9b{bottom:742.173333pt;}
.y5c{bottom:756.253333pt;}
.y5b{bottom:775.653333pt;}
.y86{bottom:780.933333pt;}
.y5a{bottom:795.013333pt;}
.y8d{bottom:800.293333pt;}
.y59{bottom:814.373333pt;}
.y98{bottom:819.653333pt;}
.y58{bottom:833.893333pt;}
.ya2{bottom:839.173333pt;}
.y12{bottom:846.053333pt;}
.y57{bottom:853.253333pt;}
.y11{bottom:862.533333pt;}
.y56{bottom:872.613333pt;}
.y10{bottom:877.893333pt;}
.y55{bottom:891.973333pt;}
.yf{bottom:893.573333pt;}
.ye{bottom:910.533333pt;}
.y54{bottom:911.493333pt;}
.yd{bottom:927.813333pt;}
.y52{bottom:930.853333pt;}
.y53{bottom:936.133333pt;}
.yc{bottom:947.653333pt;}
.y51{bottom:950.213333pt;}
.y85{bottom:955.493333pt;}
.ya{bottom:967.973333pt;}
.y2{bottom:985.893333pt;}
.y1{bottom:1061.440000pt;}
.h13{height:18.768750pt;}
.h12{height:25.918750pt;}
.hf{height:27.840000pt;}
.h10{height:29.940625pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h14{height:35.342500pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.hb{height:41.112500pt;}
.ha{height:41.543750pt;}
.h8{height:42.649687pt;}
.h15{height:42.866250pt;}
.h7{height:43.782500pt;}
.h5{height:45.156250pt;}
.h16{height:47.782500pt;}
.h11{height:48.530000pt;}
.h9{height:56.092500pt;}
.h2{height:58.563750pt;}
.h3{height:68.832000pt;}
.hc{height:337.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.000000pt;}
.w5{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w4{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x12{left:26.400000pt;}
.x7{left:39.680000pt;}
.x3{left:61.594667pt;}
.x8{left:76.200000pt;}
.x2{left:88.832000pt;}
.x1{left:96.031988pt;}
.x15{left:100.671988pt;}
.xb{left:105.151988pt;}
.x1d{left:108.831988pt;}
.x2e{left:112.191988pt;}
.x40{left:114.911988pt;}
.x9{left:117.640000pt;}
.x6c{left:120.031988pt;}
.x39{left:124.511988pt;}
.x2d{left:137.786643pt;}
.x66{left:142.106643pt;}
.x14{left:144.026655pt;}
.x28{left:145.146643pt;}
.x68{left:146.106643pt;}
.xc{left:147.226655pt;}
.x29{left:149.786655pt;}
.x67{left:151.386655pt;}
.x4{left:152.826667pt;}
.x2c{left:154.426655pt;}
.x69{left:155.386655pt;}
.x20{left:159.706643pt;}
.x31{left:161.306643pt;}
.x21{left:164.346655pt;}
.x32{left:170.586655pt;}
.x16{left:172.026643pt;}
.x17{left:176.666655pt;}
.x6b{left:181.946655pt;}
.x4e{left:192.026655pt;}
.x24{left:208.026643pt;}
.x53{left:209.786643pt;}
.x25{left:212.666655pt;}
.x54{left:219.066655pt;}
.x18{left:220.186643pt;}
.x19{left:224.826655pt;}
.x2f{left:233.306655pt;}
.x45{left:253.666643pt;}
.x46{left:262.946655pt;}
.x1c{left:288.066655pt;}
.x61{left:289.826643pt;}
.xf{left:291.586655pt;}
.x10{left:296.866655pt;}
.x57{left:298.306643pt;}
.x3b{left:301.186655pt;}
.x3e{left:304.226643pt;}
.x58{left:307.586655pt;}
.x59{left:310.626643pt;}
.x3f{left:313.506655pt;}
.x5a{left:319.906655pt;}
.x22{left:321.026643pt;}
.x23{left:325.666655pt;}
.xe{left:335.906655pt;}
.x6a{left:345.826655pt;}
.x13{left:348.066667pt;}
.x4f{left:350.466643pt;}
.x4c{left:357.506643pt;}
.x50{left:359.746655pt;}
.x2a{left:363.266643pt;}
.x4d{left:366.786655pt;}
.x47{left:369.346643pt;}
.x2b{left:372.546655pt;}
.x64{left:377.186643pt;}
.x48{left:378.626655pt;}
.x4b{left:381.186655pt;}
.x65{left:386.466655pt;}
.x5b{left:390.466643pt;}
.xd{left:397.026655pt;}
.x5c{left:399.746655pt;}
.x1e{left:415.453310pt;}
.x55{left:419.133310pt;}
.x1f{left:420.093322pt;}
.x56{left:428.413322pt;}
.xa{left:444.573322pt;}
.x41{left:446.493310pt;}
.x42{left:455.773322pt;}
.x33{left:463.613310pt;}
.x34{left:472.893322pt;}
.x11{left:504.093333pt;}
.x62{left:514.973310pt;}
.x63{left:524.253322pt;}
.x37{left:527.933310pt;}
.x6{left:533.213333pt;}
.x38{left:537.213322pt;}
.x3c{left:569.373310pt;}
.x43{left:572.573310pt;}
.x51{left:573.853310pt;}
.x3d{left:578.653322pt;}
.x44{left:581.853322pt;}
.x52{left:583.173322pt;}
.x5f{left:588.453310pt;}
.x5d{left:592.133310pt;}
.x60{left:597.733322pt;}
.x5e{left:601.413322pt;}
.x35{left:614.693310pt;}
.x36{left:623.973322pt;}
.x30{left:626.373310pt;}
.x1a{left:631.493310pt;}
.x1b{left:636.133322pt;}
.x49{left:667.013310pt;}
.x4a{left:676.293322pt;}
.x3a{left:688.613310pt;}
.x26{left:693.253310pt;}
.x27{left:697.893322pt;}
}




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