
    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_a9f64d9a6ce2f66a05a31a9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_70f3037c8adcf96c73e0bd63.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_b573b48ce3a7e2ebc2f8c135.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115723;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_66cde66a3158556c32100673.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_8fb89eff8c0242ea1b0427aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_e2a8084714b878523abce2c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_01c8b8757b9732daf7777697.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_374f5fa593f3b7b2bd112fcc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_f1eedfe582b6f3742ec85ed2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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:ffa;src:url('chunks/assets/font_65b1d5a85f13ffa5602a4d02.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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:ffb;src:url('chunks/assets/font_bd10e4bb6dca5cfbc40289f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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:ffc;src:url('chunks/assets/font_3d8bac440d1617edc752fda7.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.ls1b{letter-spacing:-0.852000px;}
.lsd{letter-spacing:-0.504000px;}
.ls1a{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.411600px;}
.ls14{letter-spacing:-0.322800px;}
.ls10{letter-spacing:-0.247200px;}
.lsf{letter-spacing:-0.241200px;}
.ls13{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.193200px;}
.ls3{letter-spacing:-0.178800px;}
.ls1c{letter-spacing:-0.132600px;}
.ls4{letter-spacing:-0.089400px;}
.ls11{letter-spacing:-0.064200px;}
.ls12{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.045360px;}
.ls9{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.126000px;}
.lse{letter-spacing:0.132000px;}
.ls16{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.150000px;}
.ls8{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.269400px;}
.ls19{letter-spacing:0.331200px;}
.ls5{letter-spacing:0.380400px;}
.lsa{letter-spacing:0.607680px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.613280px;}
.wsf{word-spacing:-14.970240px;}
.ws10{word-spacing:-14.777040px;}
.ws9{word-spacing:-14.508000px;}
.ws11{word-spacing:-14.506440px;}
.ws1{word-spacing:-13.680120px;}
.wsa{word-spacing:-13.637760px;}
.wsb{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.456080px;}
.wse{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.441560px;}
.ws0{word-spacing:-13.410720px;}
.wsc{word-spacing:-13.258560px;}
.ws3{word-spacing:-11.609280px;}
.ws4{word-spacing:-11.430480px;}
.ws8{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
._23{margin-left:-4.718400px;}
._b{margin-left:-3.461280px;}
._6{margin-left:-2.215920px;}
._0{margin-left:-1.013520px;}
._2{width:1.484400px;}
._5{width:2.507760px;}
._7{width:4.493760px;}
._11{width:5.961600px;}
._13{width:7.015680px;}
._24{width:8.019840px;}
._8{width:9.023760px;}
._12{width:10.240080px;}
._9{width:11.593440px;}
._14{width:13.410000px;}
._a{width:15.358320px;}
._c{width:16.393440px;}
._21{width:17.951040px;}
._19{width:19.474560px;}
._1b{width:20.554800px;}
._1a{width:21.587520px;}
._1f{width:22.775760px;}
._18{width:23.868000px;}
._15{width:25.568640px;}
._16{width:26.993280px;}
._1c{width:30.072960px;}
._1e{width:31.748880px;}
._1d{width:33.384960px;}
._22{width:35.078640px;}
._20{width:47.520000px;}
._10{width:58.758000px;}
._f{width:59.797920px;}
._4{width:89.688000px;}
._2a{width:131.552640px;}
._2b{width:132.598560px;}
._25{width:148.840320px;}
._26{width:149.902080px;}
._28{width:165.997440px;}
._29{width:167.349600px;}
._27{width:169.441920px;}
._d{width:465.780000px;}
._17{width:615.357120px;}
._3{width:732.625440px;}
._e{width:743.268000px;}
._1{width:1012.227840px;}
.fc2{color:rgb(0,105,153);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y30{bottom:34.560000px;}
.y4{bottom:34.920000px;}
.y57{bottom:35.280000px;}
.y2f{bottom:50.400000px;}
.y3{bottom:52.200000px;}
.y56{bottom:54.000000px;}
.ycd{bottom:124.596000px;}
.y55{bottom:135.216000px;}
.y2d{bottom:138.096000px;}
.ya6{bottom:138.816000px;}
.yf0{bottom:143.496000px;}
.ycc{bottom:147.816000px;}
.y54{bottom:158.430000px;}
.y2c{bottom:165.090000px;}
.yef{bottom:166.710000px;}
.ya5{bottom:169.590000px;}
.ycb{bottom:180.030000px;}
.y53{bottom:181.470000px;}
.y7e{bottom:182.910000px;}
.yee{bottom:189.930000px;}
.ya4{bottom:192.810000px;}
.y2b{bottom:201.090000px;}
.y10d{bottom:201.810000px;}
.yca{bottom:203.070000px;}
.y52{bottom:204.690000px;}
.yed{bottom:212.970000px;}
.y7d{bottom:213.870000px;}
.ya3{bottom:216.030000px;}
.y10c{bottom:217.470000px;}
.y2a{bottom:219.090000px;}
.yc9{bottom:226.290000px;}
.y10b{bottom:232.950000px;}
.yec{bottom:236.190000px;}
.y29{bottom:237.090000px;}
.ya2{bottom:239.070000px;}
.y51{bottom:247.710000px;}
.y10a{bottom:248.430000px;}
.yc8{bottom:249.510000px;}
.y28{bottom:255.090000px;}
.yeb{bottom:259.410000px;}
.y7c{bottom:260.130000px;}
.ya1{bottom:262.290000px;}
.y109{bottom:263.910000px;}
.yc7{bottom:272.730000px;}
.y27{bottom:273.090000px;}
.yea{bottom:282.450000px;}
.ya0{bottom:285.510000px;}
.y26{bottom:291.090000px;}
.y7b{bottom:292.350000px;}
.y50{bottom:293.070000px;}
.yc6{bottom:295.770000px;}
.y108{bottom:297.750000px;}
.ye9{bottom:305.670000px;}
.y9f{bottom:308.730000px;}
.y25{bottom:309.090000px;}
.y107{bottom:311.790000px;}
.y7a{bottom:315.570000px;}
.y4f{bottom:316.290000px;}
.yc5{bottom:318.990000px;}
.y24{bottom:327.090000px;}
.ye8{bottom:328.890000px;}
.y9e{bottom:331.770000px;}
.y79{bottom:338.655000px;}
.y4e{bottom:339.375000px;}
.yc4{bottom:342.255000px;}
.y23{bottom:345.135000px;}
.ye7{bottom:351.975000px;}
.y106{bottom:352.515000px;}
.y9d{bottom:355.035000px;}
.y78{bottom:361.875000px;}
.y4d{bottom:362.595000px;}
.y22{bottom:363.135000px;}
.y105{bottom:374.115000px;}
.yc3{bottom:374.295000px;}
.ye6{bottom:375.195000px;}
.y9c{bottom:378.255000px;}
.y77{bottom:385.095000px;}
.y21{bottom:390.135000px;}
.y4c{bottom:394.815000px;}
.y104{bottom:397.335000px;}
.yc2{bottom:397.515000px;}
.ye5{bottom:398.415000px;}
.y9b{bottom:401.295000px;}
.y76{bottom:408.315000px;}
.y4b{bottom:417.855000px;}
.y103{bottom:420.375000px;}
.yc1{bottom:420.735000px;}
.ye4{bottom:421.455000px;}
.y9a{bottom:424.515000px;}
.y20{bottom:426.135000px;}
.y75{bottom:440.355000px;}
.y4a{bottom:441.075000px;}
.y102{bottom:443.595000px;}
.ye3{bottom:444.675000px;}
.y1f{bottom:453.135000px;}
.y99{bottom:456.735000px;}
.y74{bottom:463.575000px;}
.yc0{bottom:463.755000px;}
.y49{bottom:464.295000px;}
.y101{bottom:466.815000px;}
.ye2{bottom:467.895000px;}
.y98{bottom:479.775000px;}
.y73{bottom:486.795000px;}
.y48{bottom:487.335000px;}
.y1e{bottom:489.135000px;}
.y100{bottom:489.855000px;}
.ye1{bottom:490.935000px;}
.y97{bottom:502.995000px;}
.y1d{bottom:507.135000px;}
.ybf{bottom:508.935000px;}
.y72{bottom:509.835000px;}
.y47{bottom:510.555000px;}
.yff{bottom:513.075000px;}
.ye0{bottom:514.155000px;}
.y1c{bottom:525.135000px;}
.y96{bottom:526.215000px;}
.ybe{bottom:532.155000px;}
.y71{bottom:533.055000px;}
.yfe{bottom:536.295000px;}
.ydf{bottom:537.375000px;}
.y46{bottom:542.775000px;}
.y1b{bottom:543.135000px;}
.y95{bottom:549.255000px;}
.ybd{bottom:555.375000px;}
.yfd{bottom:559.335000px;}
.yde{bottom:560.595000px;}
.y1a{bottom:561.135000px;}
.y70{bottom:565.275000px;}
.y45{bottom:565.815000px;}
.y94{bottom:572.475000px;}
.y19{bottom:579.135000px;}
.yfc{bottom:582.555000px;}
.ybc{bottom:587.595000px;}
.y6f{bottom:588.315000px;}
.y44{bottom:589.035000px;}
.y93{bottom:595.695000px;}
.y18{bottom:597.135000px;}
.ydd{bottom:603.645000px;}
.yfb{bottom:605.805000px;}
.ybb{bottom:610.665000px;}
.y6e{bottom:611.565000px;}
.y43{bottom:612.285000px;}
.y17{bottom:615.165000px;}
.y92{bottom:618.765000px;}
.yfa{bottom:628.845000px;}
.y16{bottom:633.165000px;}
.yba{bottom:633.885000px;}
.y6d{bottom:634.785000px;}
.y42{bottom:635.325000px;}
.y91{bottom:641.985000px;}
.ydc{bottom:648.825000px;}
.y15{bottom:651.165000px;}
.yf9{bottom:651.705000px;}
.yb9{bottom:657.105000px;}
.y6c{bottom:657.825000px;}
.y41{bottom:658.545000px;}
.y90{bottom:665.205000px;}
.ydb{bottom:672.045000px;}
.yf8{bottom:675.825000px;}
.yb8{bottom:680.145000px;}
.y6b{bottom:681.045000px;}
.y14{bottom:687.165000px;}
.yda{bottom:695.265000px;}
.y8f{bottom:697.245000px;}
.yf7{bottom:699.045000px;}
.y40{bottom:701.565000px;}
.yb7{bottom:703.365000px;}
.y6a{bottom:713.265000px;}
.yd9{bottom:718.305000px;}
.y8e{bottom:720.465000px;}
.yf6{bottom:722.265000px;}
.yb6{bottom:726.585000px;}
.y13{bottom:735.585000px;}
.y69{bottom:736.305000px;}
.yd8{bottom:741.525000px;}
.y8d{bottom:743.685000px;}
.yf5{bottom:745.305000px;}
.y3f{bottom:746.925000px;}
.y12{bottom:752.865000px;}
.yb5{bottom:758.625000px;}
.y68{bottom:759.525000px;}
.y8c{bottom:766.725000px;}
.yf4{bottom:768.525000px;}
.y11{bottom:770.145000px;}
.yd7{bottom:773.745000px;}
.yb4{bottom:781.845000px;}
.y67{bottom:782.745000px;}
.yf3{bottom:791.745000px;}
.y3e{bottom:793.185000px;}
.yd6{bottom:796.785000px;}
.y10{bottom:798.945000px;}
.yb3{bottom:805.065000px;}
.y66{bottom:805.785000px;}
.yf2{bottom:814.785000px;}
.y3d{bottom:816.405000px;}
.yf{bottom:818.745000px;}
.yd5{bottom:820.005000px;}
.y8b{bottom:822.165000px;}
.yb2{bottom:828.105000px;}
.y65{bottom:829.005000px;}
.yf1{bottom:838.005000px;}
.y3c{bottom:839.625000px;}
.y8a{bottom:845.385000px;}
.ye{bottom:848.805000px;}
.yb1{bottom:851.325000px;}
.yd4{bottom:852.225000px;}
.y64{bottom:861.225000px;}
.y3b{bottom:862.665000px;}
.y89{bottom:868.425000px;}
.yb0{bottom:874.590000px;}
.yd3{bottom:875.310000px;}
.y63{bottom:884.310000px;}
.y3a{bottom:885.930000px;}
.yd{bottom:886.110000px;}
.y88{bottom:891.690000px;}
.yaf{bottom:897.630000px;}
.yd2{bottom:898.530000px;}
.yc{bottom:905.910000px;}
.y62{bottom:907.530000px;}
.y39{bottom:909.150000px;}
.y87{bottom:914.910000px;}
.yd1{bottom:921.750000px;}
.yae{bottom:929.850000px;}
.y61{bottom:930.750000px;}
.y38{bottom:932.190000px;}
.yb{bottom:935.790000px;}
.y86{bottom:937.950000px;}
.yd0{bottom:944.970000px;}
.yad{bottom:953.070000px;}
.y60{bottom:953.970000px;}
.ya{bottom:966.570000px;}
.ycf{bottom:968.010000px;}
.y85{bottom:970.170000px;}
.y37{bottom:975.390000px;}
.yac{bottom:976.110000px;}
.y5f{bottom:977.010000px;}
.yce{bottom:991.230000px;}
.y9{bottom:993.030000px;}
.y84{bottom:993.390000px;}
.yab{bottom:999.330000px;}
.y5e{bottom:1000.230000px;}
.y83{bottom:1016.430000px;}
.y8{bottom:1016.790000px;}
.y36{bottom:1020.030000px;}
.yaa{bottom:1022.550000px;}
.y5d{bottom:1023.450000px;}
.y82{bottom:1039.650000px;}
.ya9{bottom:1045.590000px;}
.y5c{bottom:1046.490000px;}
.y7{bottom:1058.190000px;}
.y35{bottom:1059.630000px;}
.y81{bottom:1062.870000px;}
.ya8{bottom:1068.810000px;}
.y5b{bottom:1069.710000px;}
.y34{bottom:1077.990000px;}
.y6{bottom:1087.890000px;}
.ya7{bottom:1092.030000px;}
.y5a{bottom:1092.930000px;}
.y33{bottom:1096.170000px;}
.y80{bottom:1105.890000px;}
.y32{bottom:1113.810000px;}
.y59{bottom:1115.970000px;}
.y31{bottom:1131.090000px;}
.y7f{bottom:1135.050000px;}
.y58{bottom:1139.220000px;}
.y5{bottom:1140.840000px;}
.y2{bottom:1181.520000px;}
.y2e{bottom:1197.180000px;}
.y1{bottom:1198.440000px;}
.h2{height:43.646836px;}
.ha{height:48.410156px;}
.hf{height:48.858398px;}
.h3{height:53.573906px;}
.h8{height:54.069961px;}
.h9{height:56.900391px;}
.hd{height:59.383125px;}
.hc{height:63.070312px;}
.h7{height:64.546875px;}
.h5{height:65.144531px;}
.hb{height:65.179688px;}
.he{height:65.884219px;}
.h6{height:76.219102px;}
.h4{height:76.260234px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.415987px;}
.xf{left:109.655987px;}
.x13{left:112.535987px;}
.x12{left:113.975987px;}
.x1{left:138.275987px;}
.x6{left:140.255987px;}
.x4{left:173.549987px;}
.x14{left:183.629987px;}
.x5{left:250.949987px;}
.xd{left:338.294987px;}
.x9{left:352.154987px;}
.xb{left:358.454987px;}
.xc{left:360.074987px;}
.x7{left:365.474987px;}
.xe{left:381.494987px;}
.xa{left:408.674987px;}
.x2{left:445.394987px;}
.x8{left:462.494987px;}
.x11{left:506.264987px;}
.x10{left:635.864987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.757333pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls1a{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.365867pt;}
.ls14{letter-spacing:-0.286933pt;}
.ls10{letter-spacing:-0.219733pt;}
.lsf{letter-spacing:-0.214400pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.171733pt;}
.ls3{letter-spacing:-0.158933pt;}
.ls1c{letter-spacing:-0.117867pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls11{letter-spacing:-0.057067pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.040320pt;}
.ls9{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.112000pt;}
.lse{letter-spacing:0.117333pt;}
.ls16{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.133333pt;}
.ls8{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.239467pt;}
.ls19{letter-spacing:0.294400pt;}
.ls5{letter-spacing:0.338133pt;}
.lsa{letter-spacing:0.540160pt;}
.ws12{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.767360pt;}
.wsf{word-spacing:-13.306880pt;}
.ws10{word-spacing:-13.135147pt;}
.ws9{word-spacing:-12.896000pt;}
.ws11{word-spacing:-12.894613pt;}
.ws1{word-spacing:-12.160107pt;}
.wsa{word-spacing:-12.122453pt;}
.wsb{word-spacing:-12.005120pt;}
.ws2{word-spacing:-11.960960pt;}
.wse{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.948053pt;}
.ws0{word-spacing:-11.920640pt;}
.wsc{word-spacing:-11.785387pt;}
.ws3{word-spacing:-10.319360pt;}
.ws4{word-spacing:-10.160427pt;}
.ws8{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
._23{margin-left:-4.194133pt;}
._b{margin-left:-3.076693pt;}
._6{margin-left:-1.969707pt;}
._0{margin-left:-0.900907pt;}
._2{width:1.319467pt;}
._5{width:2.229120pt;}
._7{width:3.994453pt;}
._11{width:5.299200pt;}
._13{width:6.236160pt;}
._24{width:7.128747pt;}
._8{width:8.021120pt;}
._12{width:9.102293pt;}
._9{width:10.305280pt;}
._14{width:11.920000pt;}
._a{width:13.651840pt;}
._c{width:14.571947pt;}
._21{width:15.956480pt;}
._19{width:17.310720pt;}
._1b{width:18.270933pt;}
._1a{width:19.188907pt;}
._1f{width:20.245120pt;}
._18{width:21.216000pt;}
._15{width:22.727680pt;}
._16{width:23.994027pt;}
._1c{width:26.731520pt;}
._1e{width:28.221227pt;}
._1d{width:29.675520pt;}
._22{width:31.181013pt;}
._20{width:42.240000pt;}
._10{width:52.229333pt;}
._f{width:53.153707pt;}
._4{width:79.722667pt;}
._2a{width:116.935680pt;}
._2b{width:117.865387pt;}
._25{width:132.302507pt;}
._26{width:133.246293pt;}
._28{width:147.553280pt;}
._29{width:148.755200pt;}
._27{width:150.615040pt;}
._d{width:414.026667pt;}
._17{width:546.984107pt;}
._3{width:651.222613pt;}
._e{width:660.682667pt;}
._1{width:899.758080pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:30.720000pt;}
.y4{bottom:31.040000pt;}
.y57{bottom:31.360000pt;}
.y2f{bottom:44.800000pt;}
.y3{bottom:46.400000pt;}
.y56{bottom:48.000000pt;}
.ycd{bottom:110.752000pt;}
.y55{bottom:120.192000pt;}
.y2d{bottom:122.752000pt;}
.ya6{bottom:123.392000pt;}
.yf0{bottom:127.552000pt;}
.ycc{bottom:131.392000pt;}
.y54{bottom:140.826667pt;}
.y2c{bottom:146.746667pt;}
.yef{bottom:148.186667pt;}
.ya5{bottom:150.746667pt;}
.ycb{bottom:160.026667pt;}
.y53{bottom:161.306667pt;}
.y7e{bottom:162.586667pt;}
.yee{bottom:168.826667pt;}
.ya4{bottom:171.386667pt;}
.y2b{bottom:178.746667pt;}
.y10d{bottom:179.386667pt;}
.yca{bottom:180.506667pt;}
.y52{bottom:181.946667pt;}
.yed{bottom:189.306667pt;}
.y7d{bottom:190.106667pt;}
.ya3{bottom:192.026667pt;}
.y10c{bottom:193.306667pt;}
.y2a{bottom:194.746667pt;}
.yc9{bottom:201.146667pt;}
.y10b{bottom:207.066667pt;}
.yec{bottom:209.946667pt;}
.y29{bottom:210.746667pt;}
.ya2{bottom:212.506667pt;}
.y51{bottom:220.186667pt;}
.y10a{bottom:220.826667pt;}
.yc8{bottom:221.786667pt;}
.y28{bottom:226.746667pt;}
.yeb{bottom:230.586667pt;}
.y7c{bottom:231.226667pt;}
.ya1{bottom:233.146667pt;}
.y109{bottom:234.586667pt;}
.yc7{bottom:242.426667pt;}
.y27{bottom:242.746667pt;}
.yea{bottom:251.066667pt;}
.ya0{bottom:253.786667pt;}
.y26{bottom:258.746667pt;}
.y7b{bottom:259.866667pt;}
.y50{bottom:260.506667pt;}
.yc6{bottom:262.906667pt;}
.y108{bottom:264.666667pt;}
.ye9{bottom:271.706667pt;}
.y9f{bottom:274.426667pt;}
.y25{bottom:274.746667pt;}
.y107{bottom:277.146667pt;}
.y7a{bottom:280.506667pt;}
.y4f{bottom:281.146667pt;}
.yc5{bottom:283.546667pt;}
.y24{bottom:290.746667pt;}
.ye8{bottom:292.346667pt;}
.y9e{bottom:294.906667pt;}
.y79{bottom:301.026667pt;}
.y4e{bottom:301.666667pt;}
.yc4{bottom:304.226667pt;}
.y23{bottom:306.786667pt;}
.ye7{bottom:312.866667pt;}
.y106{bottom:313.346667pt;}
.y9d{bottom:315.586667pt;}
.y78{bottom:321.666667pt;}
.y4d{bottom:322.306667pt;}
.y22{bottom:322.786667pt;}
.y105{bottom:332.546667pt;}
.yc3{bottom:332.706667pt;}
.ye6{bottom:333.506667pt;}
.y9c{bottom:336.226667pt;}
.y77{bottom:342.306667pt;}
.y21{bottom:346.786667pt;}
.y4c{bottom:350.946667pt;}
.y104{bottom:353.186667pt;}
.yc2{bottom:353.346667pt;}
.ye5{bottom:354.146667pt;}
.y9b{bottom:356.706667pt;}
.y76{bottom:362.946667pt;}
.y4b{bottom:371.426667pt;}
.y103{bottom:373.666667pt;}
.yc1{bottom:373.986667pt;}
.ye4{bottom:374.626667pt;}
.y9a{bottom:377.346667pt;}
.y20{bottom:378.786667pt;}
.y75{bottom:391.426667pt;}
.y4a{bottom:392.066667pt;}
.y102{bottom:394.306667pt;}
.ye3{bottom:395.266667pt;}
.y1f{bottom:402.786667pt;}
.y99{bottom:405.986667pt;}
.y74{bottom:412.066667pt;}
.yc0{bottom:412.226667pt;}
.y49{bottom:412.706667pt;}
.y101{bottom:414.946667pt;}
.ye2{bottom:415.906667pt;}
.y98{bottom:426.466667pt;}
.y73{bottom:432.706667pt;}
.y48{bottom:433.186667pt;}
.y1e{bottom:434.786667pt;}
.y100{bottom:435.426667pt;}
.ye1{bottom:436.386667pt;}
.y97{bottom:447.106667pt;}
.y1d{bottom:450.786667pt;}
.ybf{bottom:452.386667pt;}
.y72{bottom:453.186667pt;}
.y47{bottom:453.826667pt;}
.yff{bottom:456.066667pt;}
.ye0{bottom:457.026667pt;}
.y1c{bottom:466.786667pt;}
.y96{bottom:467.746667pt;}
.ybe{bottom:473.026667pt;}
.y71{bottom:473.826667pt;}
.yfe{bottom:476.706667pt;}
.ydf{bottom:477.666667pt;}
.y46{bottom:482.466667pt;}
.y1b{bottom:482.786667pt;}
.y95{bottom:488.226667pt;}
.ybd{bottom:493.666667pt;}
.yfd{bottom:497.186667pt;}
.yde{bottom:498.306667pt;}
.y1a{bottom:498.786667pt;}
.y70{bottom:502.466667pt;}
.y45{bottom:502.946667pt;}
.y94{bottom:508.866667pt;}
.y19{bottom:514.786667pt;}
.yfc{bottom:517.826667pt;}
.ybc{bottom:522.306667pt;}
.y6f{bottom:522.946667pt;}
.y44{bottom:523.586667pt;}
.y93{bottom:529.506667pt;}
.y18{bottom:530.786667pt;}
.ydd{bottom:536.573333pt;}
.yfb{bottom:538.493333pt;}
.ybb{bottom:542.813333pt;}
.y6e{bottom:543.613333pt;}
.y43{bottom:544.253333pt;}
.y17{bottom:546.813333pt;}
.y92{bottom:550.013333pt;}
.yfa{bottom:558.973333pt;}
.y16{bottom:562.813333pt;}
.yba{bottom:563.453333pt;}
.y6d{bottom:564.253333pt;}
.y42{bottom:564.733333pt;}
.y91{bottom:570.653333pt;}
.ydc{bottom:576.733333pt;}
.y15{bottom:578.813333pt;}
.yf9{bottom:579.293333pt;}
.yb9{bottom:584.093333pt;}
.y6c{bottom:584.733333pt;}
.y41{bottom:585.373333pt;}
.y90{bottom:591.293333pt;}
.ydb{bottom:597.373333pt;}
.yf8{bottom:600.733333pt;}
.yb8{bottom:604.573333pt;}
.y6b{bottom:605.373333pt;}
.y14{bottom:610.813333pt;}
.yda{bottom:618.013333pt;}
.y8f{bottom:619.773333pt;}
.yf7{bottom:621.373333pt;}
.y40{bottom:623.613333pt;}
.yb7{bottom:625.213333pt;}
.y6a{bottom:634.013333pt;}
.yd9{bottom:638.493333pt;}
.y8e{bottom:640.413333pt;}
.yf6{bottom:642.013333pt;}
.yb6{bottom:645.853333pt;}
.y13{bottom:653.853333pt;}
.y69{bottom:654.493333pt;}
.yd8{bottom:659.133333pt;}
.y8d{bottom:661.053333pt;}
.yf5{bottom:662.493333pt;}
.y3f{bottom:663.933333pt;}
.y12{bottom:669.213333pt;}
.yb5{bottom:674.333333pt;}
.y68{bottom:675.133333pt;}
.y8c{bottom:681.533333pt;}
.yf4{bottom:683.133333pt;}
.y11{bottom:684.573333pt;}
.yd7{bottom:687.773333pt;}
.yb4{bottom:694.973333pt;}
.y67{bottom:695.773333pt;}
.yf3{bottom:703.773333pt;}
.y3e{bottom:705.053333pt;}
.yd6{bottom:708.253333pt;}
.y10{bottom:710.173333pt;}
.yb3{bottom:715.613333pt;}
.y66{bottom:716.253333pt;}
.yf2{bottom:724.253333pt;}
.y3d{bottom:725.693333pt;}
.yf{bottom:727.773333pt;}
.yd5{bottom:728.893333pt;}
.y8b{bottom:730.813333pt;}
.yb2{bottom:736.093333pt;}
.y65{bottom:736.893333pt;}
.yf1{bottom:744.893333pt;}
.y3c{bottom:746.333333pt;}
.y8a{bottom:751.453333pt;}
.ye{bottom:754.493333pt;}
.yb1{bottom:756.733333pt;}
.yd4{bottom:757.533333pt;}
.y64{bottom:765.533333pt;}
.y3b{bottom:766.813333pt;}
.y89{bottom:771.933333pt;}
.yb0{bottom:777.413333pt;}
.yd3{bottom:778.053333pt;}
.y63{bottom:786.053333pt;}
.y3a{bottom:787.493333pt;}
.yd{bottom:787.653333pt;}
.y88{bottom:792.613333pt;}
.yaf{bottom:797.893333pt;}
.yd2{bottom:798.693333pt;}
.yc{bottom:805.253333pt;}
.y62{bottom:806.693333pt;}
.y39{bottom:808.133333pt;}
.y87{bottom:813.253333pt;}
.yd1{bottom:819.333333pt;}
.yae{bottom:826.533333pt;}
.y61{bottom:827.333333pt;}
.y38{bottom:828.613333pt;}
.yb{bottom:831.813333pt;}
.y86{bottom:833.733333pt;}
.yd0{bottom:839.973333pt;}
.yad{bottom:847.173333pt;}
.y60{bottom:847.973333pt;}
.ya{bottom:859.173333pt;}
.ycf{bottom:860.453333pt;}
.y85{bottom:862.373333pt;}
.y37{bottom:867.013333pt;}
.yac{bottom:867.653333pt;}
.y5f{bottom:868.453333pt;}
.yce{bottom:881.093333pt;}
.y9{bottom:882.693333pt;}
.y84{bottom:883.013333pt;}
.yab{bottom:888.293333pt;}
.y5e{bottom:889.093333pt;}
.y83{bottom:903.493333pt;}
.y8{bottom:903.813333pt;}
.y36{bottom:906.693333pt;}
.yaa{bottom:908.933333pt;}
.y5d{bottom:909.733333pt;}
.y82{bottom:924.133333pt;}
.ya9{bottom:929.413333pt;}
.y5c{bottom:930.213333pt;}
.y7{bottom:940.613333pt;}
.y35{bottom:941.893333pt;}
.y81{bottom:944.773333pt;}
.ya8{bottom:950.053333pt;}
.y5b{bottom:950.853333pt;}
.y34{bottom:958.213333pt;}
.y6{bottom:967.013333pt;}
.ya7{bottom:970.693333pt;}
.y5a{bottom:971.493333pt;}
.y33{bottom:974.373333pt;}
.y80{bottom:983.013333pt;}
.y32{bottom:990.053333pt;}
.y59{bottom:991.973333pt;}
.y31{bottom:1005.413333pt;}
.y7f{bottom:1008.933333pt;}
.y58{bottom:1012.640000pt;}
.y5{bottom:1014.080000pt;}
.y2{bottom:1050.240000pt;}
.y2e{bottom:1064.160000pt;}
.y1{bottom:1065.280000pt;}
.h2{height:38.797187pt;}
.ha{height:43.031250pt;}
.hf{height:43.429688pt;}
.h3{height:47.621250pt;}
.h8{height:48.062188pt;}
.h9{height:50.578125pt;}
.hd{height:52.785000pt;}
.hc{height:56.062500pt;}
.h7{height:57.375000pt;}
.h5{height:57.906250pt;}
.hb{height:57.937500pt;}
.he{height:58.563750pt;}
.h6{height:67.750312pt;}
.h4{height:67.786875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.591988pt;}
.xf{left:97.471988pt;}
.x13{left:100.031988pt;}
.x12{left:101.311988pt;}
.x1{left:122.911988pt;}
.x6{left:124.671988pt;}
.x4{left:154.266655pt;}
.x14{left:163.226655pt;}
.x5{left:223.066655pt;}
.xd{left:300.706655pt;}
.x9{left:313.026655pt;}
.xb{left:318.626655pt;}
.xc{left:320.066655pt;}
.x7{left:324.866655pt;}
.xe{left:339.106655pt;}
.xa{left:363.266655pt;}
.x2{left:395.906655pt;}
.x8{left:411.106655pt;}
.x11{left:450.013322pt;}
.x10{left:565.213322pt;}
}




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