
    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_5f000f96f76f2a95608c4350.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_55c5e92048ec73bf9d4e416c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_816a8225c154dbddd79b8a52.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c4e52199ba647e52c9e12f22.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_c436e4381caebd752ad9bb3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_93154f472d4e1084edb0a8b4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7eb24b28b32e80366509b4e9.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2506236db6fa29e910c04b34.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_46183919c424b01acda02e17.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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;}
.lsc{letter-spacing:-0.472200px;}
.ls12{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.075000px;}
.ls17{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.132600px;}
.lsa{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.198000px;}
.ls15{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.247800px;}
.ls11{letter-spacing:0.756000px;}
.ls18{letter-spacing:0.918000px;}
.ls14{letter-spacing:5.076000px;}
.ls2{letter-spacing:5.189760px;}
.ls13{letter-spacing:7.956000px;}
.ls3{letter-spacing:8.069760px;}
.lsf{letter-spacing:12.996000px;}
.ls10{letter-spacing:15.156000px;}
.ls8{letter-spacing:54.144000px;}
.ls7{letter-spacing:54.702720px;}
.ls9{letter-spacing:59.345280px;}
.ls6{letter-spacing:64.421280px;}
.ls0{letter-spacing:252.293760px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(68,114,196),0 0.015em rgb(68,114,196),0.015em 0 rgb(68,114,196),0 -0.015em  rgb(68,114,196);}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(68,114,196);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-66.240000px;}
.ws3{word-spacing:-19.038240px;}
.ws4{word-spacing:-17.573760px;}
.ws5{word-spacing:-16.272000px;}
.ws1{word-spacing:-15.102840px;}
.ws0{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.895240px;}
.ws8{word-spacing:-12.204000px;}
.ws9{word-spacing:-11.916000px;}
.ws2{word-spacing:0.000000px;}
._e{margin-left:-12.301920px;}
._8{margin-left:-4.606560px;}
._5{margin-left:-3.019680px;}
._0{margin-left:-1.097280px;}
._9{width:1.244880px;}
._12{width:2.627520px;}
._11{width:3.706560px;}
._10{width:5.166720px;}
._14{width:6.557760px;}
._7{width:7.884720px;}
._6{width:8.891280px;}
._13{width:10.863360px;}
._c{width:12.831840px;}
._16{width:13.944720px;}
._17{width:15.755280px;}
._15{width:22.124160px;}
._a{width:83.350080px;}
._b{width:99.145920px;}
._d{width:115.109760px;}
._2{width:314.639520px;}
._3{width:521.399520px;}
._4{width:540.179520px;}
._1{width:570.395520px;}
._f{width:849.329760px;}
.fc6{color:rgb(30,78,121);}
.fc5{color:rgb(68,114,196);}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc8{color:rgb(5,98,193);}
.fc1{color:rgb(46,116,181);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:3.240000px;}
.yaf{bottom:3.420000px;}
.y8f{bottom:3.600000px;}
.ydb{bottom:3.645000px;}
.y91{bottom:3.780000px;}
.yb7{bottom:4.320000px;}
.y51{bottom:4.860000px;}
.y6f{bottom:5.034000px;}
.y57{bottom:5.040000px;}
.y65{bottom:5.085000px;}
.y9c{bottom:11.880000px;}
.yd9{bottom:11.925000px;}
.ya2{bottom:12.054000px;}
.y98{bottom:12.060000px;}
.yba{bottom:12.090000px;}
.y55{bottom:13.860000px;}
.y5c{bottom:14.040000px;}
.ya3{bottom:20.154000px;}
.y9d{bottom:20.160000px;}
.yda{bottom:20.205000px;}
.y94{bottom:20.340000px;}
.ybb{bottom:20.370000px;}
.y6e{bottom:22.674000px;}
.y56{bottom:22.680000px;}
.y5a{bottom:22.860000px;}
.ya9{bottom:36.540000px;}
.y95{bottom:36.720000px;}
.y4{bottom:39.990000px;}
.y7{bottom:53.280000px;}
.y3{bottom:60.150000px;}
.y2{bottom:80.310000px;}
.y6{bottom:117.936000px;}
.ya1{bottom:142.056000px;}
.y3e{bottom:147.996000px;}
.y6d{bottom:148.716000px;}
.ycd{bottom:159.330000px;}
.y3d{bottom:169.770000px;}
.ya0{bottom:175.890000px;}
.ycc{bottom:176.430000px;}
.y6c{bottom:185.070000px;}
.y3c{bottom:191.550000px;}
.y9f{bottom:192.990000px;}
.ycb{bottom:193.710000px;}
.y9e{bottom:210.270000px;}
.yca{bottom:210.990000px;}
.y3b{bottom:216.930000px;}
.y6b{bottom:221.250000px;}
.y9b{bottom:227.550000px;}
.yc9{bottom:228.090000px;}
.y6a{bottom:239.790000px;}
.yc7{bottom:245.370000px;}
.y69{bottom:258.330000px;}
.y9a{bottom:261.210000px;}
.yc6{bottom:261.750000px;}
.y3a{bottom:263.370000px;}
.y68{bottom:276.870000px;}
.y99{bottom:278.490000px;}
.yc5{bottom:278.850000px;}
.y39{bottom:285.150000px;}
.y67{bottom:295.410000px;}
.y97{bottom:295.590000px;}
.yc4{bottom:296.130000px;}
.y38{bottom:306.930000px;}
.yc3{bottom:313.410000px;}
.y66{bottom:313.950000px;}
.y37{bottom:328.530000px;}
.y96{bottom:329.430000px;}
.y64{bottom:332.490000px;}
.y93{bottom:346.575000px;}
.yc2{bottom:347.115000px;}
.y63{bottom:351.075000px;}
.y36{bottom:351.255000px;}
.y35{bottom:373.035000px;}
.yc1{bottom:380.775000px;}
.y62{bottom:387.435000px;}
.y34{bottom:394.815000px;}
.y92{bottom:396.795000px;}
.yc0{bottom:398.055000px;}
.y61{bottom:405.975000px;}
.y90{bottom:414.075000px;}
.ybf{bottom:415.335000px;}
.y33{bottom:416.595000px;}
.y60{bottom:424.515000px;}
.y8e{bottom:431.355000px;}
.y32{bottom:438.195000px;}
.y5f{bottom:443.055000px;}
.y8d{bottom:454.755000px;}
.y31{bottom:461.775000px;}
.ybe{bottom:465.375000px;}
.y8c{bottom:477.435000px;}
.y5e{bottom:479.415000px;}
.y30{bottom:489.495000px;}
.y5d{bottom:497.955000px;}
.y8b{bottom:505.155000px;}
.y2f{bottom:511.275000px;}
.ybd{bottom:515.595000px;}
.y8a{bottom:521.535000px;}
.y2e{bottom:533.055000px;}
.y5b{bottom:534.135000px;}
.y89{bottom:539.895000px;}
.y2d{bottom:554.835000px;}
.y88{bottom:558.435000px;}
.ybc{bottom:565.815000px;}
.y59{bottom:570.495000px;}
.y17{bottom:575.715000px;}
.y2c{bottom:576.435000px;}
.y87{bottom:594.795000px;}
.y16{bottom:597.495000px;}
.y2b{bottom:598.215000px;}
.yb9{bottom:599.475000px;}
.y58{bottom:606.885000px;}
.y86{bottom:613.365000px;}
.y15{bottom:619.305000px;}
.y2a{bottom:620.025000px;}
.y54{bottom:625.425000px;}
.y85{bottom:631.905000px;}
.yb8{bottom:633.345000px;}
.y14{bottom:641.085000px;}
.y29{bottom:641.805000px;}
.y84{bottom:650.445000px;}
.y53{bottom:661.785000px;}
.y28{bottom:663.945000px;}
.y83{bottom:668.985000px;}
.y13{bottom:670.245000px;}
.y52{bottom:680.325000px;}
.yb6{bottom:684.285000px;}
.ye5{bottom:687.345000px;}
.y82{bottom:687.525000px;}
.y50{bottom:698.865000px;}
.y27{bottom:699.225000px;}
.y12{bottom:699.405000px;}
.yb5{bottom:702.825000px;}
.y81{bottom:706.065000px;}
.ye4{bottom:715.245000px;}
.yb4{bottom:719.925000px;}
.y26{bottom:720.825000px;}
.y4f{bottom:723.525000px;}
.y80{bottom:724.605000px;}
.y11{bottom:728.745000px;}
.ye3{bottom:731.445000px;}
.yb3{bottom:737.205000px;}
.y25{bottom:743.145000px;}
.y4e{bottom:745.305000px;}
.ye2{bottom:748.725000px;}
.y10{bottom:757.905000px;}
.y7f{bottom:761.685000px;}
.ye1{bottom:765.825000px;}
.y4d{bottom:767.085000px;}
.y24{bottom:778.425000px;}
.y7e{bottom:780.225000px;}
.ye0{bottom:783.105000px;}
.yf{bottom:787.245000px;}
.yb2{bottom:787.425000px;}
.y4c{bottom:788.865000px;}
.y7d{bottom:798.765000px;}
.ydf{bottom:800.385000px;}
.y23{bottom:800.925000px;}
.yb1{bottom:804.705000px;}
.y4b{bottom:810.465000px;}
.ye{bottom:816.405000px;}
.y7c{bottom:817.305000px;}
.yde{bottom:817.485000px;}
.yb0{bottom:821.805000px;}
.y22{bottom:828.825000px;}
.y4a{bottom:832.245000px;}
.ydd{bottom:834.765000px;}
.y7b{bottom:835.845000px;}
.yae{bottom:839.085000px;}
.yd{bottom:845.565000px;}
.y21{bottom:850.605000px;}
.ydc{bottom:852.045000px;}
.y49{bottom:854.025000px;}
.y7a{bottom:854.385000px;}
.yad{bottom:856.365000px;}
.yd8{bottom:869.325000px;}
.y20{bottom:872.250000px;}
.y79{bottom:872.970000px;}
.yac{bottom:873.510000px;}
.yc{bottom:874.950000px;}
.y48{bottom:875.850000px;}
.yab{bottom:890.790000px;}
.y1f{bottom:894.030000px;}
.y47{bottom:897.450000px;}
.yb{bottom:899.430000px;}
.yd7{bottom:903.030000px;}
.yaa{bottom:908.070000px;}
.y78{bottom:909.330000px;}
.y1e{bottom:915.810000px;}
.y46{bottom:919.230000px;}
.yd6{bottom:920.310000px;}
.ya8{bottom:925.350000px;}
.yd5{bottom:937.410000px;}
.y1d{bottom:937.590000px;}
.y45{bottom:941.010000px;}
.y77{bottom:945.510000px;}
.ya{bottom:951.450000px;}
.yd4{bottom:955.950000px;}
.y1c{bottom:959.190000px;}
.y44{bottom:962.790000px;}
.y76{bottom:964.050000px;}
.yd3{bottom:973.230000px;}
.ya7{bottom:975.390000px;}
.y1b{bottom:980.970000px;}
.y75{bottom:982.590000px;}
.y43{bottom:984.390000px;}
.yd2{bottom:990.510000px;}
.y74{bottom:1001.130000px;}
.y9{bottom:1002.750000px;}
.y42{bottom:1007.070000px;}
.yd1{bottom:1007.610000px;}
.y73{bottom:1019.670000px;}
.y1a{bottom:1024.530000px;}
.yd0{bottom:1024.890000px;}
.ya6{bottom:1025.610000px;}
.y41{bottom:1034.970000px;}
.y72{bottom:1038.210000px;}
.ycf{bottom:1042.170000px;}
.ya5{bottom:1042.890000px;}
.y19{bottom:1046.130000px;}
.y8{bottom:1054.050000px;}
.y40{bottom:1056.570000px;}
.y71{bottom:1056.750000px;}
.yce{bottom:1059.450000px;}
.y18{bottom:1071.510000px;}
.y70{bottom:1075.290000px;}
.ya4{bottom:1076.550000px;}
.y3f{bottom:1078.350000px;}
.y5{bottom:1098.510000px;}
.y1{bottom:1113.990000px;}
.h1e{height:15.480000px;}
.h13{height:16.380000px;}
.h17{height:16.416000px;}
.h14{height:16.560000px;}
.hb{height:17.640000px;}
.hf{height:17.820000px;}
.h12{height:17.856000px;}
.h19{height:32.940000px;}
.h1d{height:32.976000px;}
.h18{height:33.120000px;}
.h1c{height:33.156000px;}
.hd{height:35.460000px;}
.h11{height:35.640000px;}
.h10{height:35.676000px;}
.h1a{height:49.320000px;}
.h16{height:49.500000px;}
.h15{height:52.998047px;}
.he{height:53.709961px;}
.hc{height:55.291992px;}
.h1b{height:56.214844px;}
.h3{height:65.884219px;}
.h4{height:67.824844px;}
.ha{height:68.084282px;}
.h1f{height:74.039062px;}
.h9{height:74.953125px;}
.h8{height:80.949375px;}
.h7{height:87.695156px;}
.h6{height:91.177734px;}
.h2{height:95.796000px;}
.h5{height:166.858945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:180.030000px;}
.w2{width:214.455000px;}
.w8{width:286.095000px;}
.w9{width:434.955000px;}
.w3{width:507.855000px;}
.w6{width:540.645000px;}
.w7{width:721.410000px;}
.wa{width:721.770000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:3.996000px;}
.x44{left:7.056000px;}
.x28{left:9.036000px;}
.x26{left:11.376000px;}
.x25{left:13.176000px;}
.x43{left:17.496000px;}
.x27{left:25.056000px;}
.x17{left:29.736000px;}
.x20{left:31.356000px;}
.x16{left:34.596000px;}
.x1d{left:39.096000px;}
.x1f{left:41.076000px;}
.x22{left:45.576000px;}
.xd{left:47.196000px;}
.x11{left:48.456000px;}
.x3e{left:51.156000px;}
.x14{left:52.596000px;}
.x21{left:55.296000px;}
.x15{left:56.556000px;}
.x2f{left:59.436000px;}
.x2b{left:60.516000px;}
.x13{left:61.956000px;}
.x2c{left:67.170000px;}
.x12{left:68.430000px;}
.x1b{left:69.690000px;}
.x19{left:71.850000px;}
.x3b{left:72.930000px;}
.x8{left:74.339987px;}
.x24{left:77.430000px;}
.x36{left:78.690000px;}
.x3a{left:81.570000px;}
.x37{left:83.010000px;}
.x1{left:84.960000px;}
.x45{left:86.070000px;}
.x35{left:89.130000px;}
.x3d{left:92.190000px;}
.x33{left:93.450000px;}
.x4c{left:95.250000px;}
.x40{left:97.050000px;}
.x30{left:100.290000px;}
.x9{left:101.555987px;}
.x39{left:102.990000px;}
.x4{left:105.120000px;}
.x42{left:106.410000px;}
.x47{left:107.670000px;}
.x48{left:108.750000px;}
.x3c{left:110.370000px;}
.xb{left:111.995987px;}
.x41{left:113.070000px;}
.x3f{left:115.230000px;}
.xa{left:117.935987px;}
.x4a{left:120.270000px;}
.x34{left:121.350000px;}
.x49{left:122.610000px;}
.x38{left:124.770000px;}
.x5{left:131.220000px;}
.xc{left:138.995987px;}
.x32{left:189.390000px;}
.x2{left:206.175000px;}
.xf{left:242.355000px;}
.x1c{left:262.155000px;}
.xe{left:266.610000px;}
.x2a{left:269.535000px;}
.x46{left:276.915000px;}
.x2e{left:285.915000px;}
.x1e{left:288.615000px;}
.x18{left:296.355000px;}
.x3{left:299.415000px;}
.x29{left:303.735000px;}
.x10{left:311.115000px;}
.x4b{left:319.395000px;}
.x2d{left:320.475000px;}
.x23{left:333.075000px;}
.x6{left:358.095000px;}
.x31{left:372.675000px;}
.x7{left:799.709987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.419733pt;}
.ls12{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.066667pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.117867pt;}
.lsa{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.176000pt;}
.ls15{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.220267pt;}
.ls11{letter-spacing:0.672000pt;}
.ls18{letter-spacing:0.816000pt;}
.ls14{letter-spacing:4.512000pt;}
.ls2{letter-spacing:4.613120pt;}
.ls13{letter-spacing:7.072000pt;}
.ls3{letter-spacing:7.173120pt;}
.lsf{letter-spacing:11.552000pt;}
.ls10{letter-spacing:13.472000pt;}
.ls8{letter-spacing:48.128000pt;}
.ls7{letter-spacing:48.624640pt;}
.ls9{letter-spacing:52.751360pt;}
.ls6{letter-spacing:57.263360pt;}
.ls0{letter-spacing:224.261120pt;}
.ws7{word-spacing:-58.880000pt;}
.ws3{word-spacing:-16.922880pt;}
.ws4{word-spacing:-15.621120pt;}
.ws5{word-spacing:-14.464000pt;}
.ws1{word-spacing:-13.424747pt;}
.ws0{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.240213pt;}
.ws8{word-spacing:-10.848000pt;}
.ws9{word-spacing:-10.592000pt;}
.ws2{word-spacing:0.000000pt;}
._e{margin-left:-10.935040pt;}
._8{margin-left:-4.094720pt;}
._5{margin-left:-2.684160pt;}
._0{margin-left:-0.975360pt;}
._9{width:1.106560pt;}
._12{width:2.335573pt;}
._11{width:3.294720pt;}
._10{width:4.592640pt;}
._14{width:5.829120pt;}
._7{width:7.008640pt;}
._6{width:7.903360pt;}
._13{width:9.656320pt;}
._c{width:11.406080pt;}
._16{width:12.395307pt;}
._17{width:14.004693pt;}
._15{width:19.665920pt;}
._a{width:74.088960pt;}
._b{width:88.129707pt;}
._d{width:102.319787pt;}
._2{width:279.679573pt;}
._3{width:463.466240pt;}
._4{width:480.159573pt;}
._1{width:507.018240pt;}
._f{width:754.959787pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:2.880000pt;}
.yaf{bottom:3.040000pt;}
.y8f{bottom:3.200000pt;}
.ydb{bottom:3.240000pt;}
.y91{bottom:3.360000pt;}
.yb7{bottom:3.840000pt;}
.y51{bottom:4.320000pt;}
.y6f{bottom:4.474667pt;}
.y57{bottom:4.480000pt;}
.y65{bottom:4.520000pt;}
.y9c{bottom:10.560000pt;}
.yd9{bottom:10.600000pt;}
.ya2{bottom:10.714667pt;}
.y98{bottom:10.720000pt;}
.yba{bottom:10.746667pt;}
.y55{bottom:12.320000pt;}
.y5c{bottom:12.480000pt;}
.ya3{bottom:17.914667pt;}
.y9d{bottom:17.920000pt;}
.yda{bottom:17.960000pt;}
.y94{bottom:18.080000pt;}
.ybb{bottom:18.106667pt;}
.y6e{bottom:20.154667pt;}
.y56{bottom:20.160000pt;}
.y5a{bottom:20.320000pt;}
.ya9{bottom:32.480000pt;}
.y95{bottom:32.640000pt;}
.y4{bottom:35.546667pt;}
.y7{bottom:47.360000pt;}
.y3{bottom:53.466667pt;}
.y2{bottom:71.386667pt;}
.y6{bottom:104.832000pt;}
.ya1{bottom:126.272000pt;}
.y3e{bottom:131.552000pt;}
.y6d{bottom:132.192000pt;}
.ycd{bottom:141.626667pt;}
.y3d{bottom:150.906667pt;}
.ya0{bottom:156.346667pt;}
.ycc{bottom:156.826667pt;}
.y6c{bottom:164.506667pt;}
.y3c{bottom:170.266667pt;}
.y9f{bottom:171.546667pt;}
.ycb{bottom:172.186667pt;}
.y9e{bottom:186.906667pt;}
.yca{bottom:187.546667pt;}
.y3b{bottom:192.826667pt;}
.y6b{bottom:196.666667pt;}
.y9b{bottom:202.266667pt;}
.yc9{bottom:202.746667pt;}
.y6a{bottom:213.146667pt;}
.yc7{bottom:218.106667pt;}
.y69{bottom:229.626667pt;}
.y9a{bottom:232.186667pt;}
.yc6{bottom:232.666667pt;}
.y3a{bottom:234.106667pt;}
.y68{bottom:246.106667pt;}
.y99{bottom:247.546667pt;}
.yc5{bottom:247.866667pt;}
.y39{bottom:253.466667pt;}
.y67{bottom:262.586667pt;}
.y97{bottom:262.746667pt;}
.yc4{bottom:263.226667pt;}
.y38{bottom:272.826667pt;}
.yc3{bottom:278.586667pt;}
.y66{bottom:279.066667pt;}
.y37{bottom:292.026667pt;}
.y96{bottom:292.826667pt;}
.y64{bottom:295.546667pt;}
.y93{bottom:308.066667pt;}
.yc2{bottom:308.546667pt;}
.y63{bottom:312.066667pt;}
.y36{bottom:312.226667pt;}
.y35{bottom:331.586667pt;}
.yc1{bottom:338.466667pt;}
.y62{bottom:344.386667pt;}
.y34{bottom:350.946667pt;}
.y92{bottom:352.706667pt;}
.yc0{bottom:353.826667pt;}
.y61{bottom:360.866667pt;}
.y90{bottom:368.066667pt;}
.ybf{bottom:369.186667pt;}
.y33{bottom:370.306667pt;}
.y60{bottom:377.346667pt;}
.y8e{bottom:383.426667pt;}
.y32{bottom:389.506667pt;}
.y5f{bottom:393.826667pt;}
.y8d{bottom:404.226667pt;}
.y31{bottom:410.466667pt;}
.ybe{bottom:413.666667pt;}
.y8c{bottom:424.386667pt;}
.y5e{bottom:426.146667pt;}
.y30{bottom:435.106667pt;}
.y5d{bottom:442.626667pt;}
.y8b{bottom:449.026667pt;}
.y2f{bottom:454.466667pt;}
.ybd{bottom:458.306667pt;}
.y8a{bottom:463.586667pt;}
.y2e{bottom:473.826667pt;}
.y5b{bottom:474.786667pt;}
.y89{bottom:479.906667pt;}
.y2d{bottom:493.186667pt;}
.y88{bottom:496.386667pt;}
.ybc{bottom:502.946667pt;}
.y59{bottom:507.106667pt;}
.y17{bottom:511.746667pt;}
.y2c{bottom:512.386667pt;}
.y87{bottom:528.706667pt;}
.y16{bottom:531.106667pt;}
.y2b{bottom:531.746667pt;}
.yb9{bottom:532.866667pt;}
.y58{bottom:539.453333pt;}
.y86{bottom:545.213333pt;}
.y15{bottom:550.493333pt;}
.y2a{bottom:551.133333pt;}
.y54{bottom:555.933333pt;}
.y85{bottom:561.693333pt;}
.yb8{bottom:562.973333pt;}
.y14{bottom:569.853333pt;}
.y29{bottom:570.493333pt;}
.y84{bottom:578.173333pt;}
.y53{bottom:588.253333pt;}
.y28{bottom:590.173333pt;}
.y83{bottom:594.653333pt;}
.y13{bottom:595.773333pt;}
.y52{bottom:604.733333pt;}
.yb6{bottom:608.253333pt;}
.ye5{bottom:610.973333pt;}
.y82{bottom:611.133333pt;}
.y50{bottom:621.213333pt;}
.y27{bottom:621.533333pt;}
.y12{bottom:621.693333pt;}
.yb5{bottom:624.733333pt;}
.y81{bottom:627.613333pt;}
.ye4{bottom:635.773333pt;}
.yb4{bottom:639.933333pt;}
.y26{bottom:640.733333pt;}
.y4f{bottom:643.133333pt;}
.y80{bottom:644.093333pt;}
.y11{bottom:647.773333pt;}
.ye3{bottom:650.173333pt;}
.yb3{bottom:655.293333pt;}
.y25{bottom:660.573333pt;}
.y4e{bottom:662.493333pt;}
.ye2{bottom:665.533333pt;}
.y10{bottom:673.693333pt;}
.y7f{bottom:677.053333pt;}
.ye1{bottom:680.733333pt;}
.y4d{bottom:681.853333pt;}
.y24{bottom:691.933333pt;}
.y7e{bottom:693.533333pt;}
.ye0{bottom:696.093333pt;}
.yf{bottom:699.773333pt;}
.yb2{bottom:699.933333pt;}
.y4c{bottom:701.213333pt;}
.y7d{bottom:710.013333pt;}
.ydf{bottom:711.453333pt;}
.y23{bottom:711.933333pt;}
.yb1{bottom:715.293333pt;}
.y4b{bottom:720.413333pt;}
.ye{bottom:725.693333pt;}
.y7c{bottom:726.493333pt;}
.yde{bottom:726.653333pt;}
.yb0{bottom:730.493333pt;}
.y22{bottom:736.733333pt;}
.y4a{bottom:739.773333pt;}
.ydd{bottom:742.013333pt;}
.y7b{bottom:742.973333pt;}
.yae{bottom:745.853333pt;}
.yd{bottom:751.613333pt;}
.y21{bottom:756.093333pt;}
.ydc{bottom:757.373333pt;}
.y49{bottom:759.133333pt;}
.y7a{bottom:759.453333pt;}
.yad{bottom:761.213333pt;}
.yd8{bottom:772.733333pt;}
.y20{bottom:775.333333pt;}
.y79{bottom:775.973333pt;}
.yac{bottom:776.453333pt;}
.yc{bottom:777.733333pt;}
.y48{bottom:778.533333pt;}
.yab{bottom:791.813333pt;}
.y1f{bottom:794.693333pt;}
.y47{bottom:797.733333pt;}
.yb{bottom:799.493333pt;}
.yd7{bottom:802.693333pt;}
.yaa{bottom:807.173333pt;}
.y78{bottom:808.293333pt;}
.y1e{bottom:814.053333pt;}
.y46{bottom:817.093333pt;}
.yd6{bottom:818.053333pt;}
.ya8{bottom:822.533333pt;}
.yd5{bottom:833.253333pt;}
.y1d{bottom:833.413333pt;}
.y45{bottom:836.453333pt;}
.y77{bottom:840.453333pt;}
.ya{bottom:845.733333pt;}
.yd4{bottom:849.733333pt;}
.y1c{bottom:852.613333pt;}
.y44{bottom:855.813333pt;}
.y76{bottom:856.933333pt;}
.yd3{bottom:865.093333pt;}
.ya7{bottom:867.013333pt;}
.y1b{bottom:871.973333pt;}
.y75{bottom:873.413333pt;}
.y43{bottom:875.013333pt;}
.yd2{bottom:880.453333pt;}
.y74{bottom:889.893333pt;}
.y9{bottom:891.333333pt;}
.y42{bottom:895.173333pt;}
.yd1{bottom:895.653333pt;}
.y73{bottom:906.373333pt;}
.y1a{bottom:910.693333pt;}
.yd0{bottom:911.013333pt;}
.ya6{bottom:911.653333pt;}
.y41{bottom:919.973333pt;}
.y72{bottom:922.853333pt;}
.ycf{bottom:926.373333pt;}
.ya5{bottom:927.013333pt;}
.y19{bottom:929.893333pt;}
.y8{bottom:936.933333pt;}
.y40{bottom:939.173333pt;}
.y71{bottom:939.333333pt;}
.yce{bottom:941.733333pt;}
.y18{bottom:952.453333pt;}
.y70{bottom:955.813333pt;}
.ya4{bottom:956.933333pt;}
.y3f{bottom:958.533333pt;}
.y5{bottom:976.453333pt;}
.y1{bottom:990.213333pt;}
.h1e{height:13.760000pt;}
.h13{height:14.560000pt;}
.h17{height:14.592000pt;}
.h14{height:14.720000pt;}
.hb{height:15.680000pt;}
.hf{height:15.840000pt;}
.h12{height:15.872000pt;}
.h19{height:29.280000pt;}
.h1d{height:29.312000pt;}
.h18{height:29.440000pt;}
.h1c{height:29.472000pt;}
.hd{height:31.520000pt;}
.h11{height:31.680000pt;}
.h10{height:31.712000pt;}
.h1a{height:43.840000pt;}
.h16{height:44.000000pt;}
.h15{height:47.109375pt;}
.he{height:47.742188pt;}
.hc{height:49.148438pt;}
.h1b{height:49.968750pt;}
.h3{height:58.563750pt;}
.h4{height:60.288750pt;}
.ha{height:60.519362pt;}
.h1f{height:65.812500pt;}
.h9{height:66.625000pt;}
.h8{height:71.955000pt;}
.h7{height:77.951250pt;}
.h6{height:81.046875pt;}
.h2{height:85.152000pt;}
.h5{height:148.319063pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:160.026667pt;}
.w2{width:190.626667pt;}
.w8{width:254.306667pt;}
.w9{width:386.626667pt;}
.w3{width:451.426667pt;}
.w6{width:480.573333pt;}
.w7{width:641.253333pt;}
.wa{width:641.573333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.552000pt;}
.x44{left:6.272000pt;}
.x28{left:8.032000pt;}
.x26{left:10.112000pt;}
.x25{left:11.712000pt;}
.x43{left:15.552000pt;}
.x27{left:22.272000pt;}
.x17{left:26.432000pt;}
.x20{left:27.872000pt;}
.x16{left:30.752000pt;}
.x1d{left:34.752000pt;}
.x1f{left:36.512000pt;}
.x22{left:40.512000pt;}
.xd{left:41.952000pt;}
.x11{left:43.072000pt;}
.x3e{left:45.472000pt;}
.x14{left:46.752000pt;}
.x21{left:49.152000pt;}
.x15{left:50.272000pt;}
.x2f{left:52.832000pt;}
.x2b{left:53.792000pt;}
.x13{left:55.072000pt;}
.x2c{left:59.706667pt;}
.x12{left:60.826667pt;}
.x1b{left:61.946667pt;}
.x19{left:63.866667pt;}
.x3b{left:64.826667pt;}
.x8{left:66.079988pt;}
.x24{left:68.826667pt;}
.x36{left:69.946667pt;}
.x3a{left:72.506667pt;}
.x37{left:73.786667pt;}
.x1{left:75.520000pt;}
.x45{left:76.506667pt;}
.x35{left:79.226667pt;}
.x3d{left:81.946667pt;}
.x33{left:83.066667pt;}
.x4c{left:84.666667pt;}
.x40{left:86.266667pt;}
.x30{left:89.146667pt;}
.x9{left:90.271988pt;}
.x39{left:91.546667pt;}
.x4{left:93.440000pt;}
.x42{left:94.586667pt;}
.x47{left:95.706667pt;}
.x48{left:96.666667pt;}
.x3c{left:98.106667pt;}
.xb{left:99.551988pt;}
.x41{left:100.506667pt;}
.x3f{left:102.426667pt;}
.xa{left:104.831988pt;}
.x4a{left:106.906667pt;}
.x34{left:107.866667pt;}
.x49{left:108.986667pt;}
.x38{left:110.906667pt;}
.x5{left:116.640000pt;}
.xc{left:123.551988pt;}
.x32{left:168.346667pt;}
.x2{left:183.266667pt;}
.xf{left:215.426667pt;}
.x1c{left:233.026667pt;}
.xe{left:236.986667pt;}
.x2a{left:239.586667pt;}
.x46{left:246.146667pt;}
.x2e{left:254.146667pt;}
.x1e{left:256.546667pt;}
.x18{left:263.426667pt;}
.x3{left:266.146667pt;}
.x29{left:269.986667pt;}
.x10{left:276.546667pt;}
.x4b{left:283.906667pt;}
.x2d{left:284.866667pt;}
.x23{left:296.066667pt;}
.x6{left:318.306667pt;}
.x31{left:331.266667pt;}
.x7{left:710.853322pt;}
}




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