
    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_afead3f261773c56b01bd128.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_25212a46bc409e7a1a2cd8c8.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_6c662745e74e0719f28eae5c.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_1d28c3dfd528d4255786dab1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3a9cc2d9c0200c8a7d40ca45.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_5b814d2681c307ac22b70b48.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_cf5b54b838ee9f69dcdff9c4.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_07747afeca250e0430aa4a65.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls7{letter-spacing:11.466720px;}
.ls5{letter-spacing:41.706720px;}
.ls2{letter-spacing:636.840000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws1{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-8.007840px;}
._5{margin-left:-6.633840px;}
._9{margin-left:-5.040000px;}
._8{margin-left:-3.835680px;}
._a{margin-left:-2.610480px;}
._1{margin-left:-1.430160px;}
._3{width:1.257600px;}
._2{width:2.592960px;}
._7{width:4.500000px;}
._14{width:5.508960px;}
._c{width:6.511200px;}
._b{width:7.948080px;}
._10{width:9.558960px;}
._e{width:10.588560px;}
._d{width:11.829840px;}
._f{width:12.839520px;}
._13{width:13.861680px;}
._1b{width:16.189680px;}
._12{width:17.566800px;}
._11{width:18.824400px;}
._17{width:20.016960px;}
._18{width:21.385200px;}
._19{width:23.363520px;}
._1a{width:24.621120px;}
._1d{width:26.055360px;}
._1e{width:27.392640px;}
._16{width:28.923840px;}
._15{width:29.939760px;}
._1c{width:31.015440px;}
._24{width:36.211920px;}
._1f{width:45.673200px;}
._20{width:47.137680px;}
._29{width:58.261920px;}
._28{width:64.899360px;}
._27{width:86.393040px;}
._26{width:90.784080px;}
._25{width:91.910880px;}
._6{width:136.122000px;}
._22{width:286.495200px;}
._21{width:291.480720px;}
._23{width:292.722000px;}
._4{width:746.796000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:3.240000px;}
.ya1{bottom:11.880000px;}
.yaf{bottom:20.340000px;}
.y9f{bottom:20.520000px;}
.yf8{bottom:20.565000px;}
.ya6{bottom:28.980000px;}
.ya3{bottom:29.160000px;}
.ya9{bottom:29.205000px;}
.yb{bottom:37.080000px;}
.ya7{bottom:37.620000px;}
.ya4{bottom:37.800000px;}
.yb1{bottom:37.830000px;}
.yaa{bottom:37.845000px;}
.ya{bottom:57.060000px;}
.y9{bottom:72.576000px;}
.y41{bottom:111.276000px;}
.yf1{bottom:114.336000px;}
.y78{bottom:115.776000px;}
.y106{bottom:119.376000px;}
.y9d{bottom:123.156000px;}
.yec{bottom:126.216000px;}
.y40{bottom:128.556000px;}
.y77{bottom:133.056000px;}
.yca{bottom:136.656000px;}
.y9c{bottom:140.436000px;}
.yeb{bottom:143.496000px;}
.y3f{bottom:145.656000px;}
.y76{bottom:150.150000px;}
.yf0{bottom:152.130000px;}
.yc9{bottom:153.930000px;}
.y9b{bottom:157.710000px;}
.yea{bottom:160.590000px;}
.y3e{bottom:162.930000px;}
.y75{bottom:167.430000px;}
.yc8{bottom:171.210000px;}
.y9a{bottom:174.990000px;}
.ye9{bottom:177.870000px;}
.y3d{bottom:180.210000px;}
.y74{bottom:184.710000px;}
.yc7{bottom:188.490000px;}
.yef{bottom:190.110000px;}
.y99{bottom:192.090000px;}
.ye8{bottom:195.150000px;}
.y3c{bottom:197.490000px;}
.y73{bottom:201.990000px;}
.yc6{bottom:205.770000px;}
.y98{bottom:209.370000px;}
.ye7{bottom:212.430000px;}
.y3b{bottom:214.770000px;}
.y72{bottom:219.270000px;}
.yc5{bottom:222.870000px;}
.y97{bottom:226.650000px;}
.yee{bottom:227.910000px;}
.ye6{bottom:229.710000px;}
.y3a{bottom:231.870000px;}
.y71{bottom:236.370000px;}
.yc4{bottom:240.150000px;}
.y96{bottom:243.930000px;}
.ye5{bottom:246.990000px;}
.y39{bottom:249.150000px;}
.y70{bottom:253.650000px;}
.yc3{bottom:257.430000px;}
.y95{bottom:261.210000px;}
.ye4{bottom:264.090000px;}
.yed{bottom:265.890000px;}
.y38{bottom:266.430000px;}
.y6f{bottom:270.930000px;}
.yc2{bottom:274.710000px;}
.y107{bottom:278.130000px;}
.y94{bottom:278.490000px;}
.ye3{bottom:281.370000px;}
.y37{bottom:283.710000px;}
.y6e{bottom:288.210000px;}
.yc1{bottom:291.990000px;}
.y93{bottom:295.590000px;}
.ye2{bottom:298.650000px;}
.y36{bottom:300.990000px;}
.y6d{bottom:305.490000px;}
.yc0{bottom:309.270000px;}
.y92{bottom:312.870000px;}
.ye1{bottom:315.930000px;}
.y35{bottom:318.270000px;}
.y6c{bottom:322.770000px;}
.ybf{bottom:326.370000px;}
.y91{bottom:330.150000px;}
.ye0{bottom:333.210000px;}
.y34{bottom:335.370000px;}
.y6b{bottom:339.915000px;}
.ybe{bottom:343.695000px;}
.y90{bottom:347.475000px;}
.ydf{bottom:350.535000px;}
.y33{bottom:352.695000px;}
.y6a{bottom:357.195000px;}
.ybd{bottom:360.975000px;}
.y8f{bottom:364.755000px;}
.yde{bottom:367.635000px;}
.y32{bottom:369.975000px;}
.y69{bottom:374.475000px;}
.ybc{bottom:378.255000px;}
.y8e{bottom:382.035000px;}
.ydd{bottom:384.915000px;}
.y31{bottom:387.255000px;}
.y68{bottom:391.755000px;}
.ybb{bottom:395.535000px;}
.y8d{bottom:399.135000px;}
.ydc{bottom:402.195000px;}
.y30{bottom:404.535000px;}
.y67{bottom:409.035000px;}
.yba{bottom:412.815000px;}
.y8c{bottom:416.415000px;}
.ydb{bottom:419.475000px;}
.y2f{bottom:423.975000px;}
.y66{bottom:426.315000px;}
.yb9{bottom:429.915000px;}
.y8b{bottom:433.695000px;}
.yda{bottom:436.755000px;}
.y2e{bottom:441.255000px;}
.y65{bottom:443.415000px;}
.yb8{bottom:447.195000px;}
.y8a{bottom:450.975000px;}
.yd9{bottom:454.035000px;}
.y2d{bottom:458.535000px;}
.y64{bottom:460.695000px;}
.yb7{bottom:464.475000px;}
.y89{bottom:468.255000px;}
.yd8{bottom:471.135000px;}
.y2c{bottom:475.815000px;}
.y63{bottom:477.975000px;}
.yb6{bottom:481.755000px;}
.y88{bottom:485.535000px;}
.yd7{bottom:488.415000px;}
.y2b{bottom:492.915000px;}
.y62{bottom:495.255000px;}
.yb5{bottom:499.035000px;}
.y87{bottom:502.635000px;}
.yd6{bottom:505.695000px;}
.y2a{bottom:510.195000px;}
.y61{bottom:512.535000px;}
.yb4{bottom:516.135000px;}
.y86{bottom:519.915000px;}
.yd5{bottom:522.975000px;}
.y29{bottom:527.475000px;}
.y60{bottom:529.635000px;}
.yb3{bottom:533.415000px;}
.y85{bottom:537.195000px;}
.yd4{bottom:540.255000px;}
.y28{bottom:544.755000px;}
.y5f{bottom:546.915000px;}
.yb2{bottom:550.695000px;}
.y84{bottom:554.475000px;}
.yd3{bottom:557.355000px;}
.y27{bottom:562.035000px;}
.y5e{bottom:564.195000px;}
.yb0{bottom:566.535000px;}
.y105{bottom:567.975000px;}
.y83{bottom:571.755000px;}
.yd2{bottom:574.635000px;}
.y26{bottom:579.135000px;}
.y5d{bottom:581.475000px;}
.y104{bottom:585.255000px;}
.y82{bottom:588.855000px;}
.yd1{bottom:591.915000px;}
.y25{bottom:596.415000px;}
.y5c{bottom:598.755000px;}
.y103{bottom:602.535000px;}
.y81{bottom:606.165000px;}
.yd0{bottom:609.225000px;}
.y24{bottom:613.725000px;}
.y5b{bottom:616.065000px;}
.y102{bottom:619.665000px;}
.yae{bottom:621.825000px;}
.y80{bottom:623.445000px;}
.ycf{bottom:626.505000px;}
.y23{bottom:631.005000px;}
.y5a{bottom:633.165000px;}
.y101{bottom:636.945000px;}
.y7f{bottom:640.725000px;}
.yce{bottom:643.785000px;}
.y22{bottom:648.285000px;}
.y59{bottom:650.445000px;}
.y100{bottom:654.225000px;}
.y7e{bottom:658.005000px;}
.ycd{bottom:660.885000px;}
.y21{bottom:665.565000px;}
.y58{bottom:667.725000px;}
.yff{bottom:671.505000px;}
.y7d{bottom:675.285000px;}
.yad{bottom:676.905000px;}
.ycc{bottom:678.165000px;}
.y20{bottom:682.665000px;}
.y57{bottom:685.005000px;}
.yfe{bottom:688.785000px;}
.ycb{bottom:692.205000px;}
.y7c{bottom:692.385000px;}
.y1f{bottom:699.945000px;}
.y56{bottom:702.285000px;}
.yfd{bottom:706.065000px;}
.y7b{bottom:709.665000px;}
.y1e{bottom:717.225000px;}
.y55{bottom:719.565000px;}
.yfc{bottom:723.165000px;}
.y7a{bottom:726.945000px;}
.yac{bottom:731.985000px;}
.y1d{bottom:734.505000px;}
.y54{bottom:736.665000px;}
.yfb{bottom:739.185000px;}
.y79{bottom:740.985000px;}
.y1c{bottom:751.785000px;}
.y53{bottom:753.945000px;}
.y1b{bottom:769.065000px;}
.y52{bottom:771.225000px;}
.yfa{bottom:776.985000px;}
.y1a{bottom:786.165000px;}
.yab{bottom:787.065000px;}
.y51{bottom:788.505000px;}
.y19{bottom:803.445000px;}
.y50{bottom:805.785000px;}
.yf9{bottom:814.785000px;}
.y18{bottom:820.725000px;}
.y4f{bottom:823.065000px;}
.y17{bottom:838.005000px;}
.y4e{bottom:840.165000px;}
.ya8{bottom:842.145000px;}
.yf7{bottom:852.765000px;}
.y16{bottom:855.285000px;}
.y4d{bottom:857.445000px;}
.y15{bottom:872.430000px;}
.y4c{bottom:874.770000px;}
.y14{bottom:889.710000px;}
.yf6{bottom:890.610000px;}
.y4b{bottom:892.050000px;}
.ya5{bottom:897.450000px;}
.y13{bottom:909.150000px;}
.y4a{bottom:909.330000px;}
.y49{bottom:926.430000px;}
.yf5{bottom:928.590000px;}
.y12{bottom:932.910000px;}
.y48{bottom:943.710000px;}
.y11{bottom:951.810000px;}
.ya2{bottom:952.530000px;}
.y47{bottom:960.990000px;}
.y10{bottom:964.950000px;}
.yf4{bottom:966.390000px;}
.y46{bottom:978.270000px;}
.yf{bottom:983.850000px;}
.y45{bottom:995.550000px;}
.ye{bottom:1003.110000px;}
.yf3{bottom:1004.190000px;}
.y9e{bottom:1007.610000px;}
.y44{bottom:1012.830000px;}
.yd{bottom:1023.810000px;}
.y43{bottom:1029.930000px;}
.yf2{bottom:1042.170000px;}
.yc{bottom:1044.510000px;}
.y42{bottom:1047.210000px;}
.y8{bottom:1066.110000px;}
.y7{bottom:1086.090000px;}
.y6{bottom:1101.930000px;}
.y5{bottom:1119.930000px;}
.y4{bottom:1136.670000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h10{height:17.280000px;}
.ha{height:29.158594px;}
.h11{height:34.380000px;}
.h12{height:34.416000px;}
.hc{height:34.560000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hb{height:43.302656px;}
.h13{height:43.506914px;}
.h14{height:43.681992px;}
.h8{height:46.736719px;}
.h3{height:50.273438px;}
.h4{height:50.800781px;}
.hd{height:51.660000px;}
.hf{height:51.840000px;}
.he{height:51.876000px;}
.h9{height:53.224453px;}
.h7{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:128.700000px;}
.w3{width:129.240000px;}
.w5{width:169.590000px;}
.w6{width:170.490000px;}
.w4{width:203.070000px;}
.w9{width:248.430000px;}
.w8{width:296.355000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:2.160000px;}
.x33{left:3.420000px;}
.x24{left:5.220000px;}
.x1a{left:7.020000px;}
.x21{left:9.540000px;}
.x2e{left:11.700000px;}
.x20{left:13.320000px;}
.x28{left:15.120000px;}
.x1e{left:16.920000px;}
.x1d{left:18.720000px;}
.x2b{left:20.880000px;}
.x2f{left:22.320000px;}
.x17{left:23.790000px;}
.x32{left:25.230000px;}
.x1c{left:26.460000px;}
.x29{left:28.260000px;}
.x2d{left:30.270000px;}
.x13{left:31.500000px;}
.x39{left:33.300000px;}
.x1f{left:35.280000px;}
.x2a{left:36.390000px;}
.x3c{left:38.700000px;}
.x31{left:39.810000px;}
.x25{left:41.985000px;}
.x30{left:43.605000px;}
.x22{left:45.570000px;}
.x18{left:47.190000px;}
.x26{left:50.970000px;}
.x3d{left:54.540000px;}
.x23{left:56.745000px;}
.x2c{left:58.905000px;}
.x1b{left:62.145000px;}
.x15{left:64.485000px;}
.x40{left:70.380000px;}
.x42{left:73.620000px;}
.x3e{left:82.125000px;}
.x43{left:88.200000px;}
.x3a{left:89.325000px;}
.x45{left:90.720000px;}
.x4b{left:93.960000px;}
.x48{left:96.840000px;}
.x3b{left:97.965000px;}
.x41{left:99.945000px;}
.x44{left:101.925000px;}
.x46{left:104.760000px;}
.x1{left:108.035987px;}
.x47{left:112.725000px;}
.x4a{left:117.765000px;}
.x3f{left:120.645000px;}
.x2{left:124.955987px;}
.x49{left:127.305000px;}
.x7{left:133.955987px;}
.x51{left:135.035987px;}
.x8{left:139.175987px;}
.x4{left:158.429987px;}
.x11{left:162.929987px;}
.x36{left:164.369987px;}
.x4e{left:174.269987px;}
.xd{left:200.189987px;}
.x37{left:202.169987px;}
.xf{left:212.969987px;}
.xb{left:214.229987px;}
.x12{left:225.209987px;}
.x14{left:239.070000px;}
.x4c{left:247.889987px;}
.x35{left:252.569987px;}
.xc{left:281.054987px;}
.x9{left:375.554987px;}
.xe{left:378.974987px;}
.x4f{left:388.154987px;}
.x6{left:396.434987px;}
.x50{left:400.214987px;}
.x5{left:412.274987px;}
.x16{left:443.235000px;}
.xa{left:446.474987px;}
.x3{left:519.764987px;}
.x38{left:535.965000px;}
.x19{left:613.905000px;}
.x10{left:730.409987px;}
.x4d{left:772.169987px;}
.x34{left:785.309987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls7{letter-spacing:10.192640pt;}
.ls5{letter-spacing:37.072640pt;}
.ls2{letter-spacing:566.080000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws1{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-7.118080pt;}
._5{margin-left:-5.896747pt;}
._9{margin-left:-4.480000pt;}
._8{margin-left:-3.409493pt;}
._a{margin-left:-2.320427pt;}
._1{margin-left:-1.271253pt;}
._3{width:1.117867pt;}
._2{width:2.304853pt;}
._7{width:4.000000pt;}
._14{width:4.896853pt;}
._c{width:5.787733pt;}
._b{width:7.064960pt;}
._10{width:8.496853pt;}
._e{width:9.412053pt;}
._d{width:10.515413pt;}
._f{width:11.412907pt;}
._13{width:12.321493pt;}
._1b{width:14.390827pt;}
._12{width:15.614933pt;}
._11{width:16.732800pt;}
._17{width:17.792853pt;}
._18{width:19.009067pt;}
._19{width:20.767573pt;}
._1a{width:21.885440pt;}
._1d{width:23.160320pt;}
._1e{width:24.349013pt;}
._16{width:25.710080pt;}
._15{width:26.613120pt;}
._1c{width:27.569280pt;}
._24{width:32.188373pt;}
._1f{width:40.598400pt;}
._20{width:41.900160pt;}
._29{width:51.788373pt;}
._28{width:57.688320pt;}
._27{width:76.793813pt;}
._26{width:80.696960pt;}
._25{width:81.698560pt;}
._6{width:120.997333pt;}
._22{width:254.662400pt;}
._21{width:259.093973pt;}
._23{width:260.197333pt;}
._4{width:663.818667pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:2.880000pt;}
.ya1{bottom:10.560000pt;}
.yaf{bottom:18.080000pt;}
.y9f{bottom:18.240000pt;}
.yf8{bottom:18.280000pt;}
.ya6{bottom:25.760000pt;}
.ya3{bottom:25.920000pt;}
.ya9{bottom:25.960000pt;}
.yb{bottom:32.960000pt;}
.ya7{bottom:33.440000pt;}
.ya4{bottom:33.600000pt;}
.yb1{bottom:33.626667pt;}
.yaa{bottom:33.640000pt;}
.ya{bottom:50.720000pt;}
.y9{bottom:64.512000pt;}
.y41{bottom:98.912000pt;}
.yf1{bottom:101.632000pt;}
.y78{bottom:102.912000pt;}
.y106{bottom:106.112000pt;}
.y9d{bottom:109.472000pt;}
.yec{bottom:112.192000pt;}
.y40{bottom:114.272000pt;}
.y77{bottom:118.272000pt;}
.yca{bottom:121.472000pt;}
.y9c{bottom:124.832000pt;}
.yeb{bottom:127.552000pt;}
.y3f{bottom:129.472000pt;}
.y76{bottom:133.466667pt;}
.yf0{bottom:135.226667pt;}
.yc9{bottom:136.826667pt;}
.y9b{bottom:140.186667pt;}
.yea{bottom:142.746667pt;}
.y3e{bottom:144.826667pt;}
.y75{bottom:148.826667pt;}
.yc8{bottom:152.186667pt;}
.y9a{bottom:155.546667pt;}
.ye9{bottom:158.106667pt;}
.y3d{bottom:160.186667pt;}
.y74{bottom:164.186667pt;}
.yc7{bottom:167.546667pt;}
.yef{bottom:168.986667pt;}
.y99{bottom:170.746667pt;}
.ye8{bottom:173.466667pt;}
.y3c{bottom:175.546667pt;}
.y73{bottom:179.546667pt;}
.yc6{bottom:182.906667pt;}
.y98{bottom:186.106667pt;}
.ye7{bottom:188.826667pt;}
.y3b{bottom:190.906667pt;}
.y72{bottom:194.906667pt;}
.yc5{bottom:198.106667pt;}
.y97{bottom:201.466667pt;}
.yee{bottom:202.586667pt;}
.ye6{bottom:204.186667pt;}
.y3a{bottom:206.106667pt;}
.y71{bottom:210.106667pt;}
.yc4{bottom:213.466667pt;}
.y96{bottom:216.826667pt;}
.ye5{bottom:219.546667pt;}
.y39{bottom:221.466667pt;}
.y70{bottom:225.466667pt;}
.yc3{bottom:228.826667pt;}
.y95{bottom:232.186667pt;}
.ye4{bottom:234.746667pt;}
.yed{bottom:236.346667pt;}
.y38{bottom:236.826667pt;}
.y6f{bottom:240.826667pt;}
.yc2{bottom:244.186667pt;}
.y107{bottom:247.226667pt;}
.y94{bottom:247.546667pt;}
.ye3{bottom:250.106667pt;}
.y37{bottom:252.186667pt;}
.y6e{bottom:256.186667pt;}
.yc1{bottom:259.546667pt;}
.y93{bottom:262.746667pt;}
.ye2{bottom:265.466667pt;}
.y36{bottom:267.546667pt;}
.y6d{bottom:271.546667pt;}
.yc0{bottom:274.906667pt;}
.y92{bottom:278.106667pt;}
.ye1{bottom:280.826667pt;}
.y35{bottom:282.906667pt;}
.y6c{bottom:286.906667pt;}
.ybf{bottom:290.106667pt;}
.y91{bottom:293.466667pt;}
.ye0{bottom:296.186667pt;}
.y34{bottom:298.106667pt;}
.y6b{bottom:302.146667pt;}
.ybe{bottom:305.506667pt;}
.y90{bottom:308.866667pt;}
.ydf{bottom:311.586667pt;}
.y33{bottom:313.506667pt;}
.y6a{bottom:317.506667pt;}
.ybd{bottom:320.866667pt;}
.y8f{bottom:324.226667pt;}
.yde{bottom:326.786667pt;}
.y32{bottom:328.866667pt;}
.y69{bottom:332.866667pt;}
.ybc{bottom:336.226667pt;}
.y8e{bottom:339.586667pt;}
.ydd{bottom:342.146667pt;}
.y31{bottom:344.226667pt;}
.y68{bottom:348.226667pt;}
.ybb{bottom:351.586667pt;}
.y8d{bottom:354.786667pt;}
.ydc{bottom:357.506667pt;}
.y30{bottom:359.586667pt;}
.y67{bottom:363.586667pt;}
.yba{bottom:366.946667pt;}
.y8c{bottom:370.146667pt;}
.ydb{bottom:372.866667pt;}
.y2f{bottom:376.866667pt;}
.y66{bottom:378.946667pt;}
.yb9{bottom:382.146667pt;}
.y8b{bottom:385.506667pt;}
.yda{bottom:388.226667pt;}
.y2e{bottom:392.226667pt;}
.y65{bottom:394.146667pt;}
.yb8{bottom:397.506667pt;}
.y8a{bottom:400.866667pt;}
.yd9{bottom:403.586667pt;}
.y2d{bottom:407.586667pt;}
.y64{bottom:409.506667pt;}
.yb7{bottom:412.866667pt;}
.y89{bottom:416.226667pt;}
.yd8{bottom:418.786667pt;}
.y2c{bottom:422.946667pt;}
.y63{bottom:424.866667pt;}
.yb6{bottom:428.226667pt;}
.y88{bottom:431.586667pt;}
.yd7{bottom:434.146667pt;}
.y2b{bottom:438.146667pt;}
.y62{bottom:440.226667pt;}
.yb5{bottom:443.586667pt;}
.y87{bottom:446.786667pt;}
.yd6{bottom:449.506667pt;}
.y2a{bottom:453.506667pt;}
.y61{bottom:455.586667pt;}
.yb4{bottom:458.786667pt;}
.y86{bottom:462.146667pt;}
.yd5{bottom:464.866667pt;}
.y29{bottom:468.866667pt;}
.y60{bottom:470.786667pt;}
.yb3{bottom:474.146667pt;}
.y85{bottom:477.506667pt;}
.yd4{bottom:480.226667pt;}
.y28{bottom:484.226667pt;}
.y5f{bottom:486.146667pt;}
.yb2{bottom:489.506667pt;}
.y84{bottom:492.866667pt;}
.yd3{bottom:495.426667pt;}
.y27{bottom:499.586667pt;}
.y5e{bottom:501.506667pt;}
.yb0{bottom:503.586667pt;}
.y105{bottom:504.866667pt;}
.y83{bottom:508.226667pt;}
.yd2{bottom:510.786667pt;}
.y26{bottom:514.786667pt;}
.y5d{bottom:516.866667pt;}
.y104{bottom:520.226667pt;}
.y82{bottom:523.426667pt;}
.yd1{bottom:526.146667pt;}
.y25{bottom:530.146667pt;}
.y5c{bottom:532.226667pt;}
.y103{bottom:535.586667pt;}
.y81{bottom:538.813333pt;}
.yd0{bottom:541.533333pt;}
.y24{bottom:545.533333pt;}
.y5b{bottom:547.613333pt;}
.y102{bottom:550.813333pt;}
.yae{bottom:552.733333pt;}
.y80{bottom:554.173333pt;}
.ycf{bottom:556.893333pt;}
.y23{bottom:560.893333pt;}
.y5a{bottom:562.813333pt;}
.y101{bottom:566.173333pt;}
.y7f{bottom:569.533333pt;}
.yce{bottom:572.253333pt;}
.y22{bottom:576.253333pt;}
.y59{bottom:578.173333pt;}
.y100{bottom:581.533333pt;}
.y7e{bottom:584.893333pt;}
.ycd{bottom:587.453333pt;}
.y21{bottom:591.613333pt;}
.y58{bottom:593.533333pt;}
.yff{bottom:596.893333pt;}
.y7d{bottom:600.253333pt;}
.yad{bottom:601.693333pt;}
.ycc{bottom:602.813333pt;}
.y20{bottom:606.813333pt;}
.y57{bottom:608.893333pt;}
.yfe{bottom:612.253333pt;}
.ycb{bottom:615.293333pt;}
.y7c{bottom:615.453333pt;}
.y1f{bottom:622.173333pt;}
.y56{bottom:624.253333pt;}
.yfd{bottom:627.613333pt;}
.y7b{bottom:630.813333pt;}
.y1e{bottom:637.533333pt;}
.y55{bottom:639.613333pt;}
.yfc{bottom:642.813333pt;}
.y7a{bottom:646.173333pt;}
.yac{bottom:650.653333pt;}
.y1d{bottom:652.893333pt;}
.y54{bottom:654.813333pt;}
.yfb{bottom:657.053333pt;}
.y79{bottom:658.653333pt;}
.y1c{bottom:668.253333pt;}
.y53{bottom:670.173333pt;}
.y1b{bottom:683.613333pt;}
.y52{bottom:685.533333pt;}
.yfa{bottom:690.653333pt;}
.y1a{bottom:698.813333pt;}
.yab{bottom:699.613333pt;}
.y51{bottom:700.893333pt;}
.y19{bottom:714.173333pt;}
.y50{bottom:716.253333pt;}
.yf9{bottom:724.253333pt;}
.y18{bottom:729.533333pt;}
.y4f{bottom:731.613333pt;}
.y17{bottom:744.893333pt;}
.y4e{bottom:746.813333pt;}
.ya8{bottom:748.573333pt;}
.yf7{bottom:758.013333pt;}
.y16{bottom:760.253333pt;}
.y4d{bottom:762.173333pt;}
.y15{bottom:775.493333pt;}
.y4c{bottom:777.573333pt;}
.y14{bottom:790.853333pt;}
.yf6{bottom:791.653333pt;}
.y4b{bottom:792.933333pt;}
.ya5{bottom:797.733333pt;}
.y13{bottom:808.133333pt;}
.y4a{bottom:808.293333pt;}
.y49{bottom:823.493333pt;}
.yf5{bottom:825.413333pt;}
.y12{bottom:829.253333pt;}
.y48{bottom:838.853333pt;}
.y11{bottom:846.053333pt;}
.ya2{bottom:846.693333pt;}
.y47{bottom:854.213333pt;}
.y10{bottom:857.733333pt;}
.yf4{bottom:859.013333pt;}
.y46{bottom:869.573333pt;}
.yf{bottom:874.533333pt;}
.y45{bottom:884.933333pt;}
.ye{bottom:891.653333pt;}
.yf3{bottom:892.613333pt;}
.y9e{bottom:895.653333pt;}
.y44{bottom:900.293333pt;}
.yd{bottom:910.053333pt;}
.y43{bottom:915.493333pt;}
.yf2{bottom:926.373333pt;}
.yc{bottom:928.453333pt;}
.y42{bottom:930.853333pt;}
.y8{bottom:947.653333pt;}
.y7{bottom:965.413333pt;}
.y6{bottom:979.493333pt;}
.y5{bottom:995.493333pt;}
.y4{bottom:1010.373333pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h10{height:15.360000pt;}
.ha{height:25.918750pt;}
.h11{height:30.560000pt;}
.h12{height:30.592000pt;}
.hc{height:30.720000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hb{height:38.491250pt;}
.h13{height:38.672812pt;}
.h14{height:38.828437pt;}
.h8{height:41.543750pt;}
.h3{height:44.687500pt;}
.h4{height:45.156250pt;}
.hd{height:45.920000pt;}
.hf{height:46.080000pt;}
.he{height:46.112000pt;}
.h9{height:47.310625pt;}
.h7{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:114.400000pt;}
.w3{width:114.880000pt;}
.w5{width:150.746667pt;}
.w6{width:151.546667pt;}
.w4{width:180.506667pt;}
.w9{width:220.826667pt;}
.w8{width:263.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:1.920000pt;}
.x33{left:3.040000pt;}
.x24{left:4.640000pt;}
.x1a{left:6.240000pt;}
.x21{left:8.480000pt;}
.x2e{left:10.400000pt;}
.x20{left:11.840000pt;}
.x28{left:13.440000pt;}
.x1e{left:15.040000pt;}
.x1d{left:16.640000pt;}
.x2b{left:18.560000pt;}
.x2f{left:19.840000pt;}
.x17{left:21.146667pt;}
.x32{left:22.426667pt;}
.x1c{left:23.520000pt;}
.x29{left:25.120000pt;}
.x2d{left:26.906667pt;}
.x13{left:28.000000pt;}
.x39{left:29.600000pt;}
.x1f{left:31.360000pt;}
.x2a{left:32.346667pt;}
.x3c{left:34.400000pt;}
.x31{left:35.386667pt;}
.x25{left:37.320000pt;}
.x30{left:38.760000pt;}
.x22{left:40.506667pt;}
.x18{left:41.946667pt;}
.x26{left:45.306667pt;}
.x3d{left:48.480000pt;}
.x23{left:50.440000pt;}
.x2c{left:52.360000pt;}
.x1b{left:55.240000pt;}
.x15{left:57.320000pt;}
.x40{left:62.560000pt;}
.x42{left:65.440000pt;}
.x3e{left:73.000000pt;}
.x43{left:78.400000pt;}
.x3a{left:79.400000pt;}
.x45{left:80.640000pt;}
.x4b{left:83.520000pt;}
.x48{left:86.080000pt;}
.x3b{left:87.080000pt;}
.x41{left:88.840000pt;}
.x44{left:90.600000pt;}
.x46{left:93.120000pt;}
.x1{left:96.031988pt;}
.x47{left:100.200000pt;}
.x4a{left:104.680000pt;}
.x3f{left:107.240000pt;}
.x2{left:111.071988pt;}
.x49{left:113.160000pt;}
.x7{left:119.071988pt;}
.x51{left:120.031988pt;}
.x8{left:123.711988pt;}
.x4{left:140.826655pt;}
.x11{left:144.826655pt;}
.x36{left:146.106655pt;}
.x4e{left:154.906655pt;}
.xd{left:177.946655pt;}
.x37{left:179.706655pt;}
.xf{left:189.306655pt;}
.xb{left:190.426655pt;}
.x12{left:200.186655pt;}
.x14{left:212.506667pt;}
.x4c{left:220.346655pt;}
.x35{left:224.506655pt;}
.xc{left:249.826655pt;}
.x9{left:333.826655pt;}
.xe{left:336.866655pt;}
.x4f{left:345.026655pt;}
.x6{left:352.386655pt;}
.x50{left:355.746655pt;}
.x5{left:366.466655pt;}
.x16{left:393.986667pt;}
.xa{left:396.866655pt;}
.x3{left:462.013322pt;}
.x38{left:476.413333pt;}
.x19{left:545.693333pt;}
.x10{left:649.253322pt;}
.x4d{left:686.373322pt;}
.x34{left:698.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; }
  