
    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_a838bb22964823db4b7b83af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_4dbdc0886fbd7eea3ed8e6e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_8fc9ddedac3aed6d1402c49a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_070b3df09a0a18920f1023ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_13e8503c490cab69050fd920.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_82106fb661f07bf8d58bac65.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.851562;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_91e9a4ebe82d8c94ab2e5bf3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-68.400000px;}
.v6{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v4{vertical-align:-30.240000px;}
.v5{vertical-align:-23.760000px;}
.v7{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.v8{vertical-align:33.096000px;}
.ls12{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls10{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.027360px;}
.ls14{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lse{letter-spacing:0.028080px;}
.ls15{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.720000px;}
.ls18{letter-spacing:2.988000px;}
.ls4{letter-spacing:4.500000px;}
.ls5{letter-spacing:14.580000px;}
.ls17{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls7{letter-spacing:1367.340000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws3{word-spacing:-13.999200px;}
.ws4{word-spacing:-13.860000px;}
.wse{word-spacing:-13.680000px;}
.ws10{word-spacing:-13.626000px;}
.ws12{word-spacing:-13.608000px;}
.ws13{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.wsd{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.960000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._6{width:3.089760px;}
._7{width:4.733760px;}
._8{width:5.844720px;}
._4{width:7.290000px;}
._5{width:8.310000px;}
._d{width:9.774000px;}
._b{width:11.177760px;}
._c{width:12.301200px;}
._9{width:14.538000px;}
._a{width:15.719280px;}
._11{width:16.902000px;}
._12{width:17.976240px;}
._13{width:19.926000px;}
._10{width:21.750000px;}
._f{width:23.112000px;}
._e{width:1155.737760px;}
._14{width:1403.351760px;}
._3{width:1574.460000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:25.200000px;}
.y60{bottom:27.450000px;}
.yba{bottom:30.840000px;}
.yef{bottom:31.965000px;}
.y9e{bottom:35.340000px;}
.y83{bottom:43.215000px;}
.y1{bottom:45.375000px;}
.y40{bottom:54.060000px;}
.y5{bottom:57.966000px;}
.y111{bottom:62.145000px;}
.yd1{bottom:69.996000px;}
.yee{bottom:70.929000px;}
.y5f{bottom:73.515000px;}
.yb9{bottom:73.530000px;}
.y4{bottom:76.896000px;}
.yed{bottom:83.385000px;}
.yd0{bottom:85.506000px;}
.yb8{bottom:89.010000px;}
.y5e{bottom:89.535000px;}
.y3{bottom:90.405000px;}
.y9d{bottom:92.985000px;}
.yd8{bottom:94.500000px;}
.ycf{bottom:100.986000px;}
.y3d{bottom:101.550000px;}
.y5d{bottom:101.775000px;}
.yb7{bottom:104.670000px;}
.yd7{bottom:106.920000px;}
.y9c{bottom:108.645000px;}
.yce{bottom:116.646000px;}
.y3c{bottom:117.030000px;}
.yb6{bottom:120.150000px;}
.y9b{bottom:124.125000px;}
.y82{bottom:127.365000px;}
.ycd{bottom:132.306000px;}
.y3b{bottom:132.510000px;}
.yb5{bottom:135.630000px;}
.y9a{bottom:139.605000px;}
.y81{bottom:142.845000px;}
.ycc{bottom:147.786000px;}
.y3a{bottom:147.990000px;}
.yb4{bottom:151.290000px;}
.y99{bottom:155.085000px;}
.y80{bottom:158.325000px;}
.ycb{bottom:160.200000px;}
.y39{bottom:163.650000px;}
.yb3{bottom:166.410000px;}
.y2{bottom:168.075000px;}
.y98{bottom:170.745000px;}
.y7f{bottom:173.985000px;}
.y38{bottom:179.130000px;}
.yb2{bottom:182.430000px;}
.y97{bottom:186.225000px;}
.y7e{bottom:189.465000px;}
.y37{bottom:194.610000px;}
.yb1{bottom:194.850000px;}
.y96{bottom:201.705000px;}
.y7d{bottom:204.945000px;}
.y36{bottom:210.090000px;}
.y95{bottom:217.185000px;}
.y7c{bottom:220.425000px;}
.y35{bottom:225.750000px;}
.y94{bottom:232.845000px;}
.y7b{bottom:236.085000px;}
.y34{bottom:241.230000px;}
.y93{bottom:248.325000px;}
.y7a{bottom:251.565000px;}
.y33{bottom:256.890000px;}
.y92{bottom:263.805000px;}
.y79{bottom:267.045000px;}
.y32{bottom:272.190000px;}
.y91{bottom:279.465000px;}
.y78{bottom:282.705000px;}
.y31{bottom:288.030000px;}
.y90{bottom:294.945000px;}
.y77{bottom:298.185000px;}
.y30{bottom:303.510000px;}
.y8f{bottom:310.425000px;}
.y76{bottom:313.665000px;}
.y2f{bottom:319.170000px;}
.y8e{bottom:325.905000px;}
.y75{bottom:329.145000px;}
.yec{bottom:334.185000px;}
.y2e{bottom:334.650000px;}
.y8d{bottom:341.610000px;}
.y74{bottom:344.850000px;}
.yeb{bottom:349.710000px;}
.y2d{bottom:350.175000px;}
.y8c{bottom:357.090000px;}
.y73{bottom:360.330000px;}
.yea{bottom:365.370000px;}
.y2c{bottom:365.655000px;}
.y8b{bottom:372.570000px;}
.y72{bottom:375.990000px;}
.ye9{bottom:380.850000px;}
.y2b{bottom:381.315000px;}
.y8a{bottom:388.230000px;}
.y71{bottom:391.470000px;}
.ye8{bottom:396.510000px;}
.y2a{bottom:396.795000px;}
.y89{bottom:403.350000px;}
.y70{bottom:406.950000px;}
.ye7{bottom:411.990000px;}
.y29{bottom:412.095000px;}
.y88{bottom:419.370000px;}
.y5c{bottom:420.975000px;}
.y6f{bottom:422.430000px;}
.ye6{bottom:427.650000px;}
.y28{bottom:427.755000px;}
.y87{bottom:431.610000px;}
.y6e{bottom:438.090000px;}
.y5b{bottom:439.155000px;}
.ye5{bottom:439.890000px;}
.y27{bottom:443.235000px;}
.y5a{bottom:451.575000px;}
.y6d{bottom:453.570000px;}
.y6c{bottom:469.050000px;}
.y26{bottom:474.195000px;}
.yca{bottom:482.850000px;}
.y6b{bottom:484.530000px;}
.y25{bottom:492.375000px;}
.yc9{bottom:498.870000px;}
.y6a{bottom:500.010000px;}
.yc8{bottom:514.170000px;}
.y69{bottom:515.670000px;}
.yd6{bottom:519.870000px;}
.y24{bottom:521.355000px;}
.yc7{bottom:530.010000px;}
.y68{bottom:531.150000px;}
.yd5{bottom:535.350000px;}
.y23{bottom:539.715000px;}
.yc6{bottom:542.430000px;}
.yd4{bottom:547.770000px;}
.y22{bottom:555.195000px;}
.y67{bottom:562.110000px;}
.y21{bottom:570.675000px;}
.y66{bottom:577.590000px;}
.yb0{bottom:578.250000px;}
.y20{bottom:586.335000px;}
.y65{bottom:593.250000px;}
.yaf{bottom:593.730000px;}
.y1f{bottom:608.685000px;}
.y64{bottom:608.940000px;}
.yae{bottom:609.420000px;}
.y1e{bottom:624.345000px;}
.y63{bottom:624.780000px;}
.yad{bottom:624.900000px;}
.yac{bottom:640.380000px;}
.y62{bottom:640.440000px;}
.y110{bottom:644.895000px;}
.y1d{bottom:646.845000px;}
.y61{bottom:652.860000px;}
.yab{bottom:655.860000px;}
.y10f{bottom:660.375000px;}
.y1c{bottom:662.325000px;}
.yaa{bottom:671.520000px;}
.y10e{bottom:676.035000px;}
.y1b{bottom:677.805000px;}
.ya9{bottom:687.000000px;}
.y10d{bottom:691.695000px;}
.y1a{bottom:693.465000px;}
.ye4{bottom:695.190000px;}
.ya8{bottom:702.480000px;}
.y10c{bottom:707.175000px;}
.ye3{bottom:710.850000px;}
.y19{bottom:715.605000px;}
.ya7{bottom:717.960000px;}
.y10b{bottom:722.835000px;}
.ye2{bottom:726.330000px;}
.ya6{bottom:733.620000px;}
.y10a{bottom:738.495000px;}
.ye1{bottom:741.810000px;}
.y18{bottom:742.425000px;}
.ya5{bottom:749.100000px;}
.y109{bottom:753.975000px;}
.ye0{bottom:757.290000px;}
.y17{bottom:757.905000px;}
.ya4{bottom:764.580000px;}
.y108{bottom:769.635000px;}
.ydf{bottom:772.950000px;}
.y16{bottom:773.385000px;}
.ya3{bottom:780.240000px;}
.y107{bottom:785.295000px;}
.y59{bottom:785.625000px;}
.yde{bottom:788.430000px;}
.y86{bottom:789.060000px;}
.ya2{bottom:795.540000px;}
.y106{bottom:800.775000px;}
.y58{bottom:801.285000px;}
.ydd{bottom:803.910000px;}
.y85{bottom:804.720000px;}
.y15{bottom:808.125000px;}
.ya1{bottom:811.020000px;}
.y105{bottom:816.435000px;}
.y57{bottom:816.765000px;}
.y84{bottom:816.960000px;}
.ydc{bottom:820.290000px;}
.ya0{bottom:827.040000px;}
.y14{bottom:829.545000px;}
.y104{bottom:832.095000px;}
.y56{bottom:832.245000px;}
.ydb{bottom:837.210000px;}
.y9f{bottom:839.460000px;}
.y103{bottom:847.575000px;}
.y55{bottom:847.725000px;}
.yda{bottom:852.690000px;}
.y13{bottom:858.345000px;}
.y54{bottom:863.205000px;}
.y102{bottom:863.235000px;}
.yd9{bottom:865.110000px;}
.y53{bottom:878.910000px;}
.y101{bottom:878.940000px;}
.y12{bottom:893.310000px;}
.y100{bottom:894.060000px;}
.y52{bottom:894.390000px;}
.yff{bottom:909.720000px;}
.y51{bottom:909.870000px;}
.yc5{bottom:910.230000px;}
.y50{bottom:925.530000px;}
.yc4{bottom:925.710000px;}
.y11{bottom:932.370000px;}
.y4f{bottom:941.010000px;}
.yc3{bottom:941.190000px;}
.yfe{bottom:941.220000px;}
.y4e{bottom:956.490000px;}
.y10{bottom:956.670000px;}
.yfd{bottom:956.700000px;}
.yc2{bottom:956.850000px;}
.y4d{bottom:972.150000px;}
.yfc{bottom:972.180000px;}
.yc1{bottom:972.330000px;}
.y4c{bottom:987.630000px;}
.yc0{bottom:987.810000px;}
.yfb{bottom:987.840000px;}
.y4b{bottom:1003.110000px;}
.ybf{bottom:1003.290000px;}
.yfa{bottom:1003.320000px;}
.yd3{bottom:1003.470000px;}
.yf{bottom:1016.070000px;}
.y4a{bottom:1018.590000px;}
.yf9{bottom:1018.800000px;}
.ybe{bottom:1018.950000px;}
.yc{bottom:1034.070000px;}
.y49{bottom:1034.250000px;}
.yf8{bottom:1034.280000px;}
.ybd{bottom:1034.430000px;}
.ye{bottom:1039.290000px;}
.y48{bottom:1049.550000px;}
.ybc{bottom:1049.910000px;}
.yf7{bottom:1049.940000px;}
.yb{bottom:1057.290000px;}
.y47{bottom:1065.030000px;}
.yf6{bottom:1065.420000px;}
.ybb{bottom:1065.570000px;}
.yd{bottom:1071.330000px;}
.yf5{bottom:1080.900000px;}
.y46{bottom:1081.050000px;}
.ya{bottom:1086.630000px;}
.yf4{bottom:1096.380000px;}
.y45{bottom:1096.530000px;}
.y9{bottom:1105.710000px;}
.y44{bottom:1112.010000px;}
.yf3{bottom:1112.040000px;}
.y8{bottom:1122.990000px;}
.yf2{bottom:1127.520000px;}
.y43{bottom:1127.670000px;}
.y7{bottom:1140.300000px;}
.yf1{bottom:1142.850000px;}
.y42{bottom:1143.180000px;}
.y6{bottom:1158.300000px;}
.yf0{bottom:1158.510000px;}
.y41{bottom:1158.660000px;}
.y3f{bottom:1175.160000px;}
.y3e{bottom:1193.700000px;}
.hc{height:35.314453px;}
.h15{height:37.520508px;}
.hf{height:38.158594px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hb{height:52.971680px;}
.h11{height:52.998047px;}
.hd{height:54.421875px;}
.h16{height:55.503491px;}
.h7{height:55.796836px;}
.h13{height:55.824609px;}
.h8{height:58.621992px;}
.h12{height:59.068031px;}
.h14{height:59.092031px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x5{left:30.075000px;}
.xe{left:46.725000px;}
.x23{left:47.781000px;}
.x10{left:50.034000px;}
.xb{left:52.770000px;}
.x2f{left:74.460000px;}
.x30{left:101.400000px;}
.x2a{left:217.050000px;}
.x22{left:220.566000px;}
.x1d{left:223.485000px;}
.x1b{left:226.845000px;}
.x13{left:227.970000px;}
.x18{left:233.745000px;}
.x15{left:235.785000px;}
.x8{left:244.170000px;}
.x6{left:270.300000px;}
.x7{left:290.610000px;}
.xc{left:312.915000px;}
.xd{left:356.505000px;}
.x19{left:374.805000px;}
.x2e{left:403.395000px;}
.x20{left:407.820000px;}
.xf{left:412.284000px;}
.x1e{left:429.750000px;}
.x27{left:433.200000px;}
.x24{left:438.750000px;}
.x1{left:445.200000px;}
.x11{left:448.914000px;}
.x16{left:461.250000px;}
.x4{left:465.675000px;}
.x9{left:478.965000px;}
.xa{left:506.580000px;}
.x2d{left:618.195000px;}
.x14{left:639.285000px;}
.x12{left:640.620000px;}
.x2b{left:668.595000px;}
.x1f{left:676.695000px;}
.x26{left:677.709000px;}
.x17{left:702.345000px;}
.x1a{left:703.395000px;}
.x2c{left:707.310000px;}
.x25{left:714.984000px;}
.x1c{left:720.435000px;}
.x28{left:727.215000px;}
.x21{left:728.616000px;}
.x29{left:780.150000px;}
.x2{left:976.050000px;}
.x3{left:1125.075000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v6{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v4{vertical-align:-26.880000pt;}
.v5{vertical-align:-21.120000pt;}
.v7{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.v8{vertical-align:29.418667pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.024320pt;}
.ls14{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.024960pt;}
.ls15{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls18{letter-spacing:2.656000pt;}
.ls4{letter-spacing:4.000000pt;}
.ls5{letter-spacing:12.960000pt;}
.ls17{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls7{letter-spacing:1215.413333pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws3{word-spacing:-12.443733pt;}
.ws4{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.160000pt;}
.ws10{word-spacing:-12.112000pt;}
.ws12{word-spacing:-12.096000pt;}
.ws13{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.wsd{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.520000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._6{width:2.746453pt;}
._7{width:4.207787pt;}
._8{width:5.195307pt;}
._4{width:6.480000pt;}
._5{width:7.386667pt;}
._d{width:8.688000pt;}
._b{width:9.935787pt;}
._c{width:10.934400pt;}
._9{width:12.922667pt;}
._a{width:13.972693pt;}
._11{width:15.024000pt;}
._12{width:15.978880pt;}
._13{width:17.712000pt;}
._10{width:19.333333pt;}
._f{width:20.544000pt;}
._e{width:1027.322453pt;}
._14{width:1247.423787pt;}
._3{width:1399.520000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:22.400000pt;}
.y60{bottom:24.400000pt;}
.yba{bottom:27.413333pt;}
.yef{bottom:28.413333pt;}
.y9e{bottom:31.413333pt;}
.y83{bottom:38.413333pt;}
.y1{bottom:40.333333pt;}
.y40{bottom:48.053333pt;}
.y5{bottom:51.525333pt;}
.y111{bottom:55.240000pt;}
.yd1{bottom:62.218667pt;}
.yee{bottom:63.048000pt;}
.y5f{bottom:65.346667pt;}
.yb9{bottom:65.360000pt;}
.y4{bottom:68.352000pt;}
.yed{bottom:74.120000pt;}
.yd0{bottom:76.005333pt;}
.yb8{bottom:79.120000pt;}
.y5e{bottom:79.586667pt;}
.y3{bottom:80.360000pt;}
.y9d{bottom:82.653333pt;}
.yd8{bottom:84.000000pt;}
.ycf{bottom:89.765333pt;}
.y3d{bottom:90.266667pt;}
.y5d{bottom:90.466667pt;}
.yb7{bottom:93.040000pt;}
.yd7{bottom:95.040000pt;}
.y9c{bottom:96.573333pt;}
.yce{bottom:103.685333pt;}
.y3c{bottom:104.026667pt;}
.yb6{bottom:106.800000pt;}
.y9b{bottom:110.333333pt;}
.y82{bottom:113.213333pt;}
.ycd{bottom:117.605333pt;}
.y3b{bottom:117.786667pt;}
.yb5{bottom:120.560000pt;}
.y9a{bottom:124.093333pt;}
.y81{bottom:126.973333pt;}
.ycc{bottom:131.365333pt;}
.y3a{bottom:131.546667pt;}
.yb4{bottom:134.480000pt;}
.y99{bottom:137.853333pt;}
.y80{bottom:140.733333pt;}
.ycb{bottom:142.400000pt;}
.y39{bottom:145.466667pt;}
.yb3{bottom:147.920000pt;}
.y2{bottom:149.400000pt;}
.y98{bottom:151.773333pt;}
.y7f{bottom:154.653333pt;}
.y38{bottom:159.226667pt;}
.yb2{bottom:162.160000pt;}
.y97{bottom:165.533333pt;}
.y7e{bottom:168.413333pt;}
.y37{bottom:172.986667pt;}
.yb1{bottom:173.200000pt;}
.y96{bottom:179.293333pt;}
.y7d{bottom:182.173333pt;}
.y36{bottom:186.746667pt;}
.y95{bottom:193.053333pt;}
.y7c{bottom:195.933333pt;}
.y35{bottom:200.666667pt;}
.y94{bottom:206.973333pt;}
.y7b{bottom:209.853333pt;}
.y34{bottom:214.426667pt;}
.y93{bottom:220.733333pt;}
.y7a{bottom:223.613333pt;}
.y33{bottom:228.346667pt;}
.y92{bottom:234.493333pt;}
.y79{bottom:237.373333pt;}
.y32{bottom:241.946667pt;}
.y91{bottom:248.413333pt;}
.y78{bottom:251.293333pt;}
.y31{bottom:256.026667pt;}
.y90{bottom:262.173333pt;}
.y77{bottom:265.053333pt;}
.y30{bottom:269.786667pt;}
.y8f{bottom:275.933333pt;}
.y76{bottom:278.813333pt;}
.y2f{bottom:283.706667pt;}
.y8e{bottom:289.693333pt;}
.y75{bottom:292.573333pt;}
.yec{bottom:297.053333pt;}
.y2e{bottom:297.466667pt;}
.y8d{bottom:303.653333pt;}
.y74{bottom:306.533333pt;}
.yeb{bottom:310.853333pt;}
.y2d{bottom:311.266667pt;}
.y8c{bottom:317.413333pt;}
.y73{bottom:320.293333pt;}
.yea{bottom:324.773333pt;}
.y2c{bottom:325.026667pt;}
.y8b{bottom:331.173333pt;}
.y72{bottom:334.213333pt;}
.ye9{bottom:338.533333pt;}
.y2b{bottom:338.946667pt;}
.y8a{bottom:345.093333pt;}
.y71{bottom:347.973333pt;}
.ye8{bottom:352.453333pt;}
.y2a{bottom:352.706667pt;}
.y89{bottom:358.533333pt;}
.y70{bottom:361.733333pt;}
.ye7{bottom:366.213333pt;}
.y29{bottom:366.306667pt;}
.y88{bottom:372.773333pt;}
.y5c{bottom:374.200000pt;}
.y6f{bottom:375.493333pt;}
.ye6{bottom:380.133333pt;}
.y28{bottom:380.226667pt;}
.y87{bottom:383.653333pt;}
.y6e{bottom:389.413333pt;}
.y5b{bottom:390.360000pt;}
.ye5{bottom:391.013333pt;}
.y27{bottom:393.986667pt;}
.y5a{bottom:401.400000pt;}
.y6d{bottom:403.173333pt;}
.y6c{bottom:416.933333pt;}
.y26{bottom:421.506667pt;}
.yca{bottom:429.200000pt;}
.y6b{bottom:430.693333pt;}
.y25{bottom:437.666667pt;}
.yc9{bottom:443.440000pt;}
.y6a{bottom:444.453333pt;}
.yc8{bottom:457.040000pt;}
.y69{bottom:458.373333pt;}
.yd6{bottom:462.106667pt;}
.y24{bottom:463.426667pt;}
.yc7{bottom:471.120000pt;}
.y68{bottom:472.133333pt;}
.yd5{bottom:475.866667pt;}
.y23{bottom:479.746667pt;}
.yc6{bottom:482.160000pt;}
.yd4{bottom:486.906667pt;}
.y22{bottom:493.506667pt;}
.y67{bottom:499.653333pt;}
.y21{bottom:507.266667pt;}
.y66{bottom:513.413333pt;}
.yb0{bottom:514.000000pt;}
.y20{bottom:521.186667pt;}
.y65{bottom:527.333333pt;}
.yaf{bottom:527.760000pt;}
.y1f{bottom:541.053333pt;}
.y64{bottom:541.280000pt;}
.yae{bottom:541.706667pt;}
.y1e{bottom:554.973333pt;}
.y63{bottom:555.360000pt;}
.yad{bottom:555.466667pt;}
.yac{bottom:569.226667pt;}
.y62{bottom:569.280000pt;}
.y110{bottom:573.240000pt;}
.y1d{bottom:574.973333pt;}
.y61{bottom:580.320000pt;}
.yab{bottom:582.986667pt;}
.y10f{bottom:587.000000pt;}
.y1c{bottom:588.733333pt;}
.yaa{bottom:596.906667pt;}
.y10e{bottom:600.920000pt;}
.y1b{bottom:602.493333pt;}
.ya9{bottom:610.666667pt;}
.y10d{bottom:614.840000pt;}
.y1a{bottom:616.413333pt;}
.ye4{bottom:617.946667pt;}
.ya8{bottom:624.426667pt;}
.y10c{bottom:628.600000pt;}
.ye3{bottom:631.866667pt;}
.y19{bottom:636.093333pt;}
.ya7{bottom:638.186667pt;}
.y10b{bottom:642.520000pt;}
.ye2{bottom:645.626667pt;}
.ya6{bottom:652.106667pt;}
.y10a{bottom:656.440000pt;}
.ye1{bottom:659.386667pt;}
.y18{bottom:659.933333pt;}
.ya5{bottom:665.866667pt;}
.y109{bottom:670.200000pt;}
.ye0{bottom:673.146667pt;}
.y17{bottom:673.693333pt;}
.ya4{bottom:679.626667pt;}
.y108{bottom:684.120000pt;}
.ydf{bottom:687.066667pt;}
.y16{bottom:687.453333pt;}
.ya3{bottom:693.546667pt;}
.y107{bottom:698.040000pt;}
.y59{bottom:698.333333pt;}
.yde{bottom:700.826667pt;}
.y86{bottom:701.386667pt;}
.ya2{bottom:707.146667pt;}
.y106{bottom:711.800000pt;}
.y58{bottom:712.253333pt;}
.ydd{bottom:714.586667pt;}
.y85{bottom:715.306667pt;}
.y15{bottom:718.333333pt;}
.ya1{bottom:720.906667pt;}
.y105{bottom:725.720000pt;}
.y57{bottom:726.013333pt;}
.y84{bottom:726.186667pt;}
.ydc{bottom:729.146667pt;}
.ya0{bottom:735.146667pt;}
.y14{bottom:737.373333pt;}
.y104{bottom:739.640000pt;}
.y56{bottom:739.773333pt;}
.ydb{bottom:744.186667pt;}
.y9f{bottom:746.186667pt;}
.y103{bottom:753.400000pt;}
.y55{bottom:753.533333pt;}
.yda{bottom:757.946667pt;}
.y13{bottom:762.973333pt;}
.y54{bottom:767.293333pt;}
.y102{bottom:767.320000pt;}
.yd9{bottom:768.986667pt;}
.y53{bottom:781.253333pt;}
.y101{bottom:781.280000pt;}
.y12{bottom:794.053333pt;}
.y100{bottom:794.720000pt;}
.y52{bottom:795.013333pt;}
.yff{bottom:808.640000pt;}
.y51{bottom:808.773333pt;}
.yc5{bottom:809.093333pt;}
.y50{bottom:822.693333pt;}
.yc4{bottom:822.853333pt;}
.y11{bottom:828.773333pt;}
.y4f{bottom:836.453333pt;}
.yc3{bottom:836.613333pt;}
.yfe{bottom:836.640000pt;}
.y4e{bottom:850.213333pt;}
.y10{bottom:850.373333pt;}
.yfd{bottom:850.400000pt;}
.yc2{bottom:850.533333pt;}
.y4d{bottom:864.133333pt;}
.yfc{bottom:864.160000pt;}
.yc1{bottom:864.293333pt;}
.y4c{bottom:877.893333pt;}
.yc0{bottom:878.053333pt;}
.yfb{bottom:878.080000pt;}
.y4b{bottom:891.653333pt;}
.ybf{bottom:891.813333pt;}
.yfa{bottom:891.840000pt;}
.yd3{bottom:891.973333pt;}
.yf{bottom:903.173333pt;}
.y4a{bottom:905.413333pt;}
.yf9{bottom:905.600000pt;}
.ybe{bottom:905.733333pt;}
.yc{bottom:919.173333pt;}
.y49{bottom:919.333333pt;}
.yf8{bottom:919.360000pt;}
.ybd{bottom:919.493333pt;}
.ye{bottom:923.813333pt;}
.y48{bottom:932.933333pt;}
.ybc{bottom:933.253333pt;}
.yf7{bottom:933.280000pt;}
.yb{bottom:939.813333pt;}
.y47{bottom:946.693333pt;}
.yf6{bottom:947.040000pt;}
.ybb{bottom:947.173333pt;}
.yd{bottom:952.293333pt;}
.yf5{bottom:960.800000pt;}
.y46{bottom:960.933333pt;}
.ya{bottom:965.893333pt;}
.yf4{bottom:974.560000pt;}
.y45{bottom:974.693333pt;}
.y9{bottom:982.853333pt;}
.y44{bottom:988.453333pt;}
.yf3{bottom:988.480000pt;}
.y8{bottom:998.213333pt;}
.yf2{bottom:1002.240000pt;}
.y43{bottom:1002.373333pt;}
.y7{bottom:1013.600000pt;}
.yf1{bottom:1015.866667pt;}
.y42{bottom:1016.160000pt;}
.y6{bottom:1029.600000pt;}
.yf0{bottom:1029.786667pt;}
.y41{bottom:1029.920000pt;}
.y3f{bottom:1044.586667pt;}
.y3e{bottom:1061.066667pt;}
.hc{height:31.390625pt;}
.h15{height:33.351562pt;}
.hf{height:33.918750pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hb{height:47.085938pt;}
.h11{height:47.109375pt;}
.hd{height:48.375000pt;}
.h16{height:49.336436pt;}
.h7{height:49.597187pt;}
.h13{height:49.621875pt;}
.h8{height:52.108438pt;}
.h12{height:52.504917pt;}
.h14{height:52.526250pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x5{left:26.733333pt;}
.xe{left:41.533333pt;}
.x23{left:42.472000pt;}
.x10{left:44.474667pt;}
.xb{left:46.906667pt;}
.x2f{left:66.186667pt;}
.x30{left:90.133333pt;}
.x2a{left:192.933333pt;}
.x22{left:196.058667pt;}
.x1d{left:198.653333pt;}
.x1b{left:201.640000pt;}
.x13{left:202.640000pt;}
.x18{left:207.773333pt;}
.x15{left:209.586667pt;}
.x8{left:217.040000pt;}
.x6{left:240.266667pt;}
.x7{left:258.320000pt;}
.xc{left:278.146667pt;}
.xd{left:316.893333pt;}
.x19{left:333.160000pt;}
.x2e{left:358.573333pt;}
.x20{left:362.506667pt;}
.xf{left:366.474667pt;}
.x1e{left:382.000000pt;}
.x27{left:385.066667pt;}
.x24{left:390.000000pt;}
.x1{left:395.733333pt;}
.x11{left:399.034667pt;}
.x16{left:410.000000pt;}
.x4{left:413.933333pt;}
.x9{left:425.746667pt;}
.xa{left:450.293333pt;}
.x2d{left:549.506667pt;}
.x14{left:568.253333pt;}
.x12{left:569.440000pt;}
.x2b{left:594.306667pt;}
.x1f{left:601.506667pt;}
.x26{left:602.408000pt;}
.x17{left:624.306667pt;}
.x1a{left:625.240000pt;}
.x2c{left:628.720000pt;}
.x25{left:635.541333pt;}
.x1c{left:640.386667pt;}
.x28{left:646.413333pt;}
.x21{left:647.658667pt;}
.x29{left:693.466667pt;}
.x2{left:867.600000pt;}
.x3{left:1000.066667pt;}
}




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