
    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_1078ac5959bfdf3503750712.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_933d4cd9a412be77baa0c45c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_e96a6d52807cdf38266b9403.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_2278da555c036618c8a80c24.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_da567c75c00ca4fb159d36d9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7482d0af358345f229c8c567.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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);}
.v1{vertical-align:-191.520000px;}
.v2{vertical-align:-108.720000px;}
.v3{vertical-align:-93.600000px;}
.v4{vertical-align:-82.920000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.296000px;}
.ls17{letter-spacing:-0.936000px;}
.ls20{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.233400px;}
.ls13{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.134400px;}
.lsb{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.468000px;}
.lsf{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.666720px;}
.ls21{letter-spacing:0.864000px;}
.lsd{letter-spacing:3.024000px;}
.ls1d{letter-spacing:3.720000px;}
.lsa{letter-spacing:3.744000px;}
.ls1e{letter-spacing:4.464000px;}
.ls1a{letter-spacing:5.184000px;}
.ls1c{letter-spacing:13.104000px;}
.ls12{letter-spacing:22.464000px;}
.ls23{letter-spacing:31.104000px;}
.lsc{letter-spacing:32.544000px;}
.ls24{letter-spacing:44.784000px;}
.ls25{letter-spacing:331.320000px;}
.ls0{letter-spacing:628.104000px;}
.ls4{letter-spacing:922.764000px;}
.ls1{letter-spacing:1090.398720px;}
.ls3{letter-spacing:1190.604000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.wsf{word-spacing:-59.760000px;}
.ws2{word-spacing:-45.603240px;}
.ws0{word-spacing:-44.964000px;}
.ws1{word-spacing:-40.032000px;}
.ws8{word-spacing:-20.520000px;}
.ws3{word-spacing:-20.304000px;}
.wsd{word-spacing:-20.232000px;}
.ws9{word-spacing:-20.160000px;}
.ws6{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.872000px;}
.wsb{word-spacing:-19.800000px;}
.wsa{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.512000px;}
.ws7{word-spacing:-19.296000px;}
.ws12{word-spacing:-19.152000px;}
.wse{word-spacing:-15.226440px;}
.ws11{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-5.280000px;}
._5{margin-left:-3.960000px;}
._d{margin-left:-2.894880px;}
._1{margin-left:-1.314720px;}
._0{width:1.022880px;}
._11{width:2.025120px;}
._3{width:3.144000px;}
._2{width:4.176000px;}
._4{width:5.184000px;}
._14{width:6.900000px;}
._13{width:8.568000px;}
._12{width:9.792000px;}
._8{width:11.016000px;}
._19{width:12.240000px;}
._6{width:13.752000px;}
._7{width:14.862720px;}
._24{width:15.879840px;}
._1a{width:16.974240px;}
._a{width:18.162720px;}
._9{width:21.294240px;}
._1b{width:22.752000px;}
._20{width:24.171840px;}
._e{width:25.272000px;}
._10{width:26.832000px;}
._22{width:28.089120px;}
._23{width:29.219040px;}
._1f{width:30.816000px;}
._f{width:32.268000px;}
._1e{width:33.360000px;}
._1d{width:34.704000px;}
._1c{width:35.856000px;}
._21{width:37.029120px;}
._28{width:38.088000px;}
._27{width:39.240000px;}
._2f{width:40.536000px;}
._b{width:41.688000px;}
._c{width:42.924000px;}
._2a{width:44.424000px;}
._29{width:47.088000px;}
._2c{width:48.168000px;}
._2b{width:49.176000px;}
._3d{width:51.606240px;}
._25{width:54.864000px;}
._2e{width:56.232000px;}
._2d{width:57.672000px;}
._18{width:58.950720px;}
._17{width:60.600000px;}
._26{width:63.360000px;}
._35{width:68.688000px;}
._30{width:94.536000px;}
._32{width:97.848000px;}
._31{width:99.432000px;}
._3b{width:114.408000px;}
._33{width:140.328000px;}
._3c{width:189.864000px;}
._36{width:191.280000px;}
._15{width:196.128000px;}
._3e{width:238.320000px;}
._39{width:296.154720px;}
._38{width:297.504000px;}
._34{width:520.992000px;}
._37{width:620.064000px;}
._3a{width:908.580000px;}
.fc3{color:rgb(31,73,125);}
.fc2{color:rgb(79,128,188);}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(54,94,144);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs7{font-size:120.240000px;}
.fs5{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:162.000000px;}
.fs3{font-size:164.880000px;}
.y0{bottom:0.000000px;}
.y14{bottom:5.220000px;}
.y15{bottom:72.180000px;}
.y13{bottom:73.440000px;}
.y3d{bottom:77.220000px;}
.y3c{bottom:97.380000px;}
.y37{bottom:115.200000px;}
.ybe{bottom:117.720000px;}
.y5e{bottom:123.660000px;}
.ye3{bottom:130.680000px;}
.yd5{bottom:139.680000px;}
.ya8{bottom:140.760000px;}
.yf6{bottom:141.120000px;}
.y97{bottom:142.020000px;}
.ya2{bottom:143.820000px;}
.y7e{bottom:144.360000px;}
.y36{bottom:146.160000px;}
.ybd{bottom:148.860000px;}
.y5d{bottom:154.830000px;}
.ye2{bottom:161.850000px;}
.yd4{bottom:170.670000px;}
.ya7{bottom:171.930000px;}
.y12{bottom:172.290000px;}
.y96{bottom:173.010000px;}
.ya1{bottom:174.810000px;}
.y7d{bottom:175.530000px;}
.y35{bottom:177.330000px;}
.ybc{bottom:179.850000px;}
.y5c{bottom:185.790000px;}
.ye1{bottom:192.810000px;}
.y11{bottom:196.230000px;}
.yd3{bottom:201.630000px;}
.ya6{bottom:202.890000px;}
.yf5{bottom:203.250000px;}
.y95{bottom:204.150000px;}
.ya0{bottom:205.950000px;}
.y7c{bottom:206.490000px;}
.y34{bottom:208.290000px;}
.ybb{bottom:210.990000px;}
.y5b{bottom:216.930000px;}
.ye0{bottom:223.950000px;}
.ya5{bottom:233.850000px;}
.yf4{bottom:234.390000px;}
.y94{bottom:235.110000px;}
.y9f{bottom:236.910000px;}
.y7b{bottom:237.630000px;}
.y33{bottom:239.430000px;}
.yba{bottom:241.950000px;}
.y5a{bottom:247.890000px;}
.y10{bottom:252.390000px;}
.ydf{bottom:254.910000px;}
.yf3{bottom:265.350000px;}
.y93{bottom:266.250000px;}
.y9e{bottom:268.050000px;}
.y7a{bottom:268.590000px;}
.y32{bottom:270.390000px;}
.yb9{bottom:273.090000px;}
.yf{bottom:276.870000px;}
.y59{bottom:279.030000px;}
.yde{bottom:286.050000px;}
.yf2{bottom:296.490000px;}
.y92{bottom:297.210000px;}
.y9d{bottom:299.010000px;}
.y79{bottom:299.730000px;}
.y31{bottom:301.350000px;}
.yb8{bottom:304.050000px;}
.y58{bottom:309.990000px;}
.ydd{bottom:317.010000px;}
.y3b{bottom:322.050000px;}
.yf1{bottom:327.450000px;}
.y91{bottom:328.350000px;}
.y9c{bottom:330.150000px;}
.y78{bottom:330.690000px;}
.y30{bottom:332.490000px;}
.yb7{bottom:335.190000px;}
.ye{bottom:339.870000px;}
.y57{bottom:341.130000px;}
.y3a{bottom:342.750000px;}
.ydc{bottom:347.970000px;}
.yf0{bottom:358.590000px;}
.y90{bottom:359.310000px;}
.ya4{bottom:360.570000px;}
.y9b{bottom:361.110000px;}
.y77{bottom:361.830000px;}
.y2f{bottom:363.450000px;}
.yb6{bottom:366.150000px;}
.yd{bottom:372.090000px;}
.ydb{bottom:379.110000px;}
.y39{bottom:384.150000px;}
.yef{bottom:389.550000px;}
.y8f{bottom:390.450000px;}
.ya3{bottom:391.530000px;}
.y9a{bottom:392.250000px;}
.y76{bottom:392.790000px;}
.y2e{bottom:394.590000px;}
.yb5{bottom:397.290000px;}
.y56{bottom:403.275000px;}
.y38{bottom:404.895000px;}
.yda{bottom:410.115000px;}
.yc{bottom:419.655000px;}
.yee{bottom:420.735000px;}
.y99{bottom:420.915000px;}
.y8e{bottom:421.455000px;}
.yd2{bottom:422.715000px;}
.y75{bottom:423.975000px;}
.y2d{bottom:425.595000px;}
.yb4{bottom:428.295000px;}
.y55{bottom:434.235000px;}
.yd9{bottom:441.255000px;}
.y98{bottom:445.395000px;}
.yed{bottom:451.695000px;}
.y8d{bottom:452.595000px;}
.y74{bottom:454.935000px;}
.y2c{bottom:456.735000px;}
.yb3{bottom:459.435000px;}
.y54{bottom:465.375000px;}
.yb{bottom:466.995000px;}
.yd8{bottom:470.055000px;}
.yec{bottom:482.655000px;}
.y8c{bottom:483.555000px;}
.ye4{bottom:485.895000px;}
.y73{bottom:486.075000px;}
.y2b{bottom:487.695000px;}
.yb2{bottom:490.395000px;}
.yd7{bottom:494.355000px;}
.y53{bottom:496.335000px;}
.ya{bottom:509.475000px;}
.yeb{bottom:513.795000px;}
.yd1{bottom:514.695000px;}
.y8b{bottom:515.955000px;}
.y72{bottom:517.035000px;}
.y2a{bottom:518.835000px;}
.yb1{bottom:521.535000px;}
.y52{bottom:527.475000px;}
.y9{bottom:533.955000px;}
.yea{bottom:544.755000px;}
.yd0{bottom:545.655000px;}
.y8a{bottom:546.915000px;}
.y71{bottom:548.175000px;}
.y29{bottom:549.795000px;}
.yb0{bottom:552.495000px;}
.y51{bottom:558.435000px;}
.y8{bottom:575.355000px;}
.ye9{bottom:575.895000px;}
.ycf{bottom:576.795000px;}
.y89{bottom:578.055000px;}
.y70{bottom:579.135000px;}
.y28{bottom:580.935000px;}
.yaf{bottom:583.635000px;}
.y50{bottom:589.575000px;}
.ye8{bottom:606.855000px;}
.yce{bottom:607.755000px;}
.y88{bottom:609.015000px;}
.y6f{bottom:610.275000px;}
.y27{bottom:611.895000px;}
.yae{bottom:614.595000px;}
.y7{bottom:616.755000px;}
.y4f{bottom:620.535000px;}
.ye7{bottom:637.995000px;}
.ycd{bottom:638.895000px;}
.y87{bottom:639.975000px;}
.y6e{bottom:641.235000px;}
.y26{bottom:643.035000px;}
.yad{bottom:645.735000px;}
.y4e{bottom:651.705000px;}
.y6{bottom:659.265000px;}
.ye6{bottom:666.825000px;}
.ycc{bottom:669.885000px;}
.y86{bottom:671.145000px;}
.y6d{bottom:672.405000px;}
.y25{bottom:674.025000px;}
.yac{bottom:676.725000px;}
.y4d{bottom:682.665000px;}
.ye5{bottom:691.845000px;}
.ycb{bottom:701.025000px;}
.y85{bottom:702.105000px;}
.y6c{bottom:703.365000px;}
.y24{bottom:705.165000px;}
.yab{bottom:707.865000px;}
.y4c{bottom:713.805000px;}
.yca{bottom:731.985000px;}
.y84{bottom:733.245000px;}
.y6b{bottom:734.505000px;}
.y23{bottom:736.125000px;}
.yaa{bottom:736.485000px;}
.y4b{bottom:744.765000px;}
.y5{bottom:753.765000px;}
.yd6{bottom:760.785000px;}
.ya9{bottom:760.965000px;}
.yc9{bottom:763.125000px;}
.y83{bottom:764.205000px;}
.y6a{bottom:765.465000px;}
.y22{bottom:767.265000px;}
.y4a{bottom:775.905000px;}
.yc8{bottom:794.085000px;}
.y82{bottom:795.345000px;}
.y69{bottom:796.605000px;}
.y21{bottom:798.225000px;}
.y49{bottom:806.865000px;}
.yc7{bottom:825.225000px;}
.y81{bottom:826.305000px;}
.y68{bottom:827.565000px;}
.y20{bottom:829.365000px;}
.y4{bottom:833.145000px;}
.y48{bottom:838.005000px;}
.y3{bottom:853.845000px;}
.yc6{bottom:856.185000px;}
.y80{bottom:857.445000px;}
.y67{bottom:858.705000px;}
.y1f{bottom:860.325000px;}
.y47{bottom:868.965000px;}
.yc5{bottom:887.145000px;}
.y7f{bottom:888.405000px;}
.y66{bottom:889.665000px;}
.y1e{bottom:891.465000px;}
.y2{bottom:895.650000px;}
.y46{bottom:900.150000px;}
.y1{bottom:912.570000px;}
.yc4{bottom:919.590000px;}
.y65{bottom:920.850000px;}
.y1d{bottom:922.470000px;}
.y45{bottom:931.110000px;}
.yc3{bottom:950.550000px;}
.y64{bottom:951.810000px;}
.y1c{bottom:953.610000px;}
.y44{bottom:962.250000px;}
.yc2{bottom:981.690000px;}
.y63{bottom:982.950000px;}
.y1b{bottom:984.570000px;}
.y43{bottom:993.210000px;}
.yc1{bottom:1012.650000px;}
.y62{bottom:1013.910000px;}
.y1a{bottom:1015.710000px;}
.y42{bottom:1024.350000px;}
.yc0{bottom:1043.790000px;}
.y61{bottom:1045.050000px;}
.y19{bottom:1046.670000px;}
.y41{bottom:1055.310000px;}
.ybf{bottom:1074.750000px;}
.y60{bottom:1076.010000px;}
.y18{bottom:1077.810000px;}
.y40{bottom:1086.450000px;}
.y5f{bottom:1107.150000px;}
.y17{bottom:1108.770000px;}
.y3f{bottom:1117.410000px;}
.y3e{bottom:1138.110000px;}
.y16{bottom:1139.940000px;}
.h9{height:21.060000px;}
.hd{height:47.980898px;}
.hb{height:59.439023px;}
.he{height:62.327813px;}
.hf{height:64.546875px;}
.hc{height:65.884219px;}
.ha{height:71.613281px;}
.h2{height:75.093750px;}
.h6{height:99.874688px;}
.h8{height:125.406562px;}
.h7{height:137.421562px;}
.h4{height:150.187500px;}
.h3{height:168.960938px;}
.h5{height:171.964687px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:27.000000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:4.500000px;}
.x2{left:80.999987px;}
.x11{left:108.035987px;}
.xf{left:127.655987px;}
.x9{left:134.675987px;}
.xa{left:142.775987px;}
.x13{left:162.029987px;}
.x5{left:186.509987px;}
.x3{left:189.029987px;}
.x17{left:216.029987px;}
.x4{left:220.529987px;}
.x8{left:224.489987px;}
.xb{left:243.749987px;}
.xc{left:283.169987px;}
.x6{left:359.534987px;}
.xd{left:432.615000px;}
.x12{left:437.834987px;}
.x10{left:442.154987px;}
.x7{left:446.294987px;}
.x1{left:558.284987px;}
.x16{left:681.809987px;}
.x15{left:753.809987px;}
.x18{left:778.649987px;}
.x14{left:864.179987px;}
@media print{
.v1{vertical-align:-170.240000pt;}
.v2{vertical-align:-96.640000pt;}
.v3{vertical-align:-83.200000pt;}
.v4{vertical-align:-73.706667pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-1.152000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls20{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.207467pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.119467pt;}
.lsb{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.416000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.592640pt;}
.ls21{letter-spacing:0.768000pt;}
.lsd{letter-spacing:2.688000pt;}
.ls1d{letter-spacing:3.306667pt;}
.lsa{letter-spacing:3.328000pt;}
.ls1e{letter-spacing:3.968000pt;}
.ls1a{letter-spacing:4.608000pt;}
.ls1c{letter-spacing:11.648000pt;}
.ls12{letter-spacing:19.968000pt;}
.ls23{letter-spacing:27.648000pt;}
.lsc{letter-spacing:28.928000pt;}
.ls24{letter-spacing:39.808000pt;}
.ls25{letter-spacing:294.506667pt;}
.ls0{letter-spacing:558.314667pt;}
.ls4{letter-spacing:820.234667pt;}
.ls1{letter-spacing:969.243307pt;}
.ls3{letter-spacing:1058.314667pt;}
.wsc{word-spacing:-64.000000pt;}
.wsf{word-spacing:-53.120000pt;}
.ws2{word-spacing:-40.536213pt;}
.ws0{word-spacing:-39.968000pt;}
.ws1{word-spacing:-35.584000pt;}
.ws8{word-spacing:-18.240000pt;}
.ws3{word-spacing:-18.048000pt;}
.wsd{word-spacing:-17.984000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.664000pt;}
.wsb{word-spacing:-17.600000pt;}
.wsa{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.344000pt;}
.ws7{word-spacing:-17.152000pt;}
.ws12{word-spacing:-17.024000pt;}
.wse{word-spacing:-13.534613pt;}
.ws11{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-4.693333pt;}
._5{margin-left:-3.520000pt;}
._d{margin-left:-2.573227pt;}
._1{margin-left:-1.168640pt;}
._0{width:0.909227pt;}
._11{width:1.800107pt;}
._3{width:2.794667pt;}
._2{width:3.712000pt;}
._4{width:4.608000pt;}
._14{width:6.133333pt;}
._13{width:7.616000pt;}
._12{width:8.704000pt;}
._8{width:9.792000pt;}
._19{width:10.880000pt;}
._6{width:12.224000pt;}
._7{width:13.211307pt;}
._24{width:14.115413pt;}
._1a{width:15.088213pt;}
._a{width:16.144640pt;}
._9{width:18.928213pt;}
._1b{width:20.224000pt;}
._20{width:21.486080pt;}
._e{width:22.464000pt;}
._10{width:23.850667pt;}
._22{width:24.968107pt;}
._23{width:25.972480pt;}
._1f{width:27.392000pt;}
._f{width:28.682667pt;}
._1e{width:29.653333pt;}
._1d{width:30.848000pt;}
._1c{width:31.872000pt;}
._21{width:32.914773pt;}
._28{width:33.856000pt;}
._27{width:34.880000pt;}
._2f{width:36.032000pt;}
._b{width:37.056000pt;}
._c{width:38.154667pt;}
._2a{width:39.488000pt;}
._29{width:41.856000pt;}
._2c{width:42.816000pt;}
._2b{width:43.712000pt;}
._3d{width:45.872213pt;}
._25{width:48.768000pt;}
._2e{width:49.984000pt;}
._2d{width:51.264000pt;}
._18{width:52.400640pt;}
._17{width:53.866667pt;}
._26{width:56.320000pt;}
._35{width:61.056000pt;}
._30{width:84.032000pt;}
._32{width:86.976000pt;}
._31{width:88.384000pt;}
._3b{width:101.696000pt;}
._33{width:124.736000pt;}
._3c{width:168.768000pt;}
._36{width:170.026667pt;}
._15{width:174.336000pt;}
._3e{width:211.840000pt;}
._39{width:263.248640pt;}
._38{width:264.448000pt;}
._34{width:463.104000pt;}
._37{width:551.168000pt;}
._3a{width:807.626667pt;}
.fsa{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs7{font-size:106.880000pt;}
.fs5{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:144.000000pt;}
.fs3{font-size:146.560000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:4.640000pt;}
.y15{bottom:64.160000pt;}
.y13{bottom:65.280000pt;}
.y3d{bottom:68.640000pt;}
.y3c{bottom:86.560000pt;}
.y37{bottom:102.400000pt;}
.ybe{bottom:104.640000pt;}
.y5e{bottom:109.920000pt;}
.ye3{bottom:116.160000pt;}
.yd5{bottom:124.160000pt;}
.ya8{bottom:125.120000pt;}
.yf6{bottom:125.440000pt;}
.y97{bottom:126.240000pt;}
.ya2{bottom:127.840000pt;}
.y7e{bottom:128.320000pt;}
.y36{bottom:129.920000pt;}
.ybd{bottom:132.320000pt;}
.y5d{bottom:137.626667pt;}
.ye2{bottom:143.866667pt;}
.yd4{bottom:151.706667pt;}
.ya7{bottom:152.826667pt;}
.y12{bottom:153.146667pt;}
.y96{bottom:153.786667pt;}
.ya1{bottom:155.386667pt;}
.y7d{bottom:156.026667pt;}
.y35{bottom:157.626667pt;}
.ybc{bottom:159.866667pt;}
.y5c{bottom:165.146667pt;}
.ye1{bottom:171.386667pt;}
.y11{bottom:174.426667pt;}
.yd3{bottom:179.226667pt;}
.ya6{bottom:180.346667pt;}
.yf5{bottom:180.666667pt;}
.y95{bottom:181.466667pt;}
.ya0{bottom:183.066667pt;}
.y7c{bottom:183.546667pt;}
.y34{bottom:185.146667pt;}
.ybb{bottom:187.546667pt;}
.y5b{bottom:192.826667pt;}
.ye0{bottom:199.066667pt;}
.ya5{bottom:207.866667pt;}
.yf4{bottom:208.346667pt;}
.y94{bottom:208.986667pt;}
.y9f{bottom:210.586667pt;}
.y7b{bottom:211.226667pt;}
.y33{bottom:212.826667pt;}
.yba{bottom:215.066667pt;}
.y5a{bottom:220.346667pt;}
.y10{bottom:224.346667pt;}
.ydf{bottom:226.586667pt;}
.yf3{bottom:235.866667pt;}
.y93{bottom:236.666667pt;}
.y9e{bottom:238.266667pt;}
.y7a{bottom:238.746667pt;}
.y32{bottom:240.346667pt;}
.yb9{bottom:242.746667pt;}
.yf{bottom:246.106667pt;}
.y59{bottom:248.026667pt;}
.yde{bottom:254.266667pt;}
.yf2{bottom:263.546667pt;}
.y92{bottom:264.186667pt;}
.y9d{bottom:265.786667pt;}
.y79{bottom:266.426667pt;}
.y31{bottom:267.866667pt;}
.yb8{bottom:270.266667pt;}
.y58{bottom:275.546667pt;}
.ydd{bottom:281.786667pt;}
.y3b{bottom:286.266667pt;}
.yf1{bottom:291.066667pt;}
.y91{bottom:291.866667pt;}
.y9c{bottom:293.466667pt;}
.y78{bottom:293.946667pt;}
.y30{bottom:295.546667pt;}
.yb7{bottom:297.946667pt;}
.ye{bottom:302.106667pt;}
.y57{bottom:303.226667pt;}
.y3a{bottom:304.666667pt;}
.ydc{bottom:309.306667pt;}
.yf0{bottom:318.746667pt;}
.y90{bottom:319.386667pt;}
.ya4{bottom:320.506667pt;}
.y9b{bottom:320.986667pt;}
.y77{bottom:321.626667pt;}
.y2f{bottom:323.066667pt;}
.yb6{bottom:325.466667pt;}
.yd{bottom:330.746667pt;}
.ydb{bottom:336.986667pt;}
.y39{bottom:341.466667pt;}
.yef{bottom:346.266667pt;}
.y8f{bottom:347.066667pt;}
.ya3{bottom:348.026667pt;}
.y9a{bottom:348.666667pt;}
.y76{bottom:349.146667pt;}
.y2e{bottom:350.746667pt;}
.yb5{bottom:353.146667pt;}
.y56{bottom:358.466667pt;}
.y38{bottom:359.906667pt;}
.yda{bottom:364.546667pt;}
.yc{bottom:373.026667pt;}
.yee{bottom:373.986667pt;}
.y99{bottom:374.146667pt;}
.y8e{bottom:374.626667pt;}
.yd2{bottom:375.746667pt;}
.y75{bottom:376.866667pt;}
.y2d{bottom:378.306667pt;}
.yb4{bottom:380.706667pt;}
.y55{bottom:385.986667pt;}
.yd9{bottom:392.226667pt;}
.y98{bottom:395.906667pt;}
.yed{bottom:401.506667pt;}
.y8d{bottom:402.306667pt;}
.y74{bottom:404.386667pt;}
.y2c{bottom:405.986667pt;}
.yb3{bottom:408.386667pt;}
.y54{bottom:413.666667pt;}
.yb{bottom:415.106667pt;}
.yd8{bottom:417.826667pt;}
.yec{bottom:429.026667pt;}
.y8c{bottom:429.826667pt;}
.ye4{bottom:431.906667pt;}
.y73{bottom:432.066667pt;}
.y2b{bottom:433.506667pt;}
.yb2{bottom:435.906667pt;}
.yd7{bottom:439.426667pt;}
.y53{bottom:441.186667pt;}
.ya{bottom:452.866667pt;}
.yeb{bottom:456.706667pt;}
.yd1{bottom:457.506667pt;}
.y8b{bottom:458.626667pt;}
.y72{bottom:459.586667pt;}
.y2a{bottom:461.186667pt;}
.yb1{bottom:463.586667pt;}
.y52{bottom:468.866667pt;}
.y9{bottom:474.626667pt;}
.yea{bottom:484.226667pt;}
.yd0{bottom:485.026667pt;}
.y8a{bottom:486.146667pt;}
.y71{bottom:487.266667pt;}
.y29{bottom:488.706667pt;}
.yb0{bottom:491.106667pt;}
.y51{bottom:496.386667pt;}
.y8{bottom:511.426667pt;}
.ye9{bottom:511.906667pt;}
.ycf{bottom:512.706667pt;}
.y89{bottom:513.826667pt;}
.y70{bottom:514.786667pt;}
.y28{bottom:516.386667pt;}
.yaf{bottom:518.786667pt;}
.y50{bottom:524.066667pt;}
.ye8{bottom:539.426667pt;}
.yce{bottom:540.226667pt;}
.y88{bottom:541.346667pt;}
.y6f{bottom:542.466667pt;}
.y27{bottom:543.906667pt;}
.yae{bottom:546.306667pt;}
.y7{bottom:548.226667pt;}
.y4f{bottom:551.586667pt;}
.ye7{bottom:567.106667pt;}
.ycd{bottom:567.906667pt;}
.y87{bottom:568.866667pt;}
.y6e{bottom:569.986667pt;}
.y26{bottom:571.586667pt;}
.yad{bottom:573.986667pt;}
.y4e{bottom:579.293333pt;}
.y6{bottom:586.013333pt;}
.ye6{bottom:592.733333pt;}
.ycc{bottom:595.453333pt;}
.y86{bottom:596.573333pt;}
.y6d{bottom:597.693333pt;}
.y25{bottom:599.133333pt;}
.yac{bottom:601.533333pt;}
.y4d{bottom:606.813333pt;}
.ye5{bottom:614.973333pt;}
.ycb{bottom:623.133333pt;}
.y85{bottom:624.093333pt;}
.y6c{bottom:625.213333pt;}
.y24{bottom:626.813333pt;}
.yab{bottom:629.213333pt;}
.y4c{bottom:634.493333pt;}
.yca{bottom:650.653333pt;}
.y84{bottom:651.773333pt;}
.y6b{bottom:652.893333pt;}
.y23{bottom:654.333333pt;}
.yaa{bottom:654.653333pt;}
.y4b{bottom:662.013333pt;}
.y5{bottom:670.013333pt;}
.yd6{bottom:676.253333pt;}
.ya9{bottom:676.413333pt;}
.yc9{bottom:678.333333pt;}
.y83{bottom:679.293333pt;}
.y6a{bottom:680.413333pt;}
.y22{bottom:682.013333pt;}
.y4a{bottom:689.693333pt;}
.yc8{bottom:705.853333pt;}
.y82{bottom:706.973333pt;}
.y69{bottom:708.093333pt;}
.y21{bottom:709.533333pt;}
.y49{bottom:717.213333pt;}
.yc7{bottom:733.533333pt;}
.y81{bottom:734.493333pt;}
.y68{bottom:735.613333pt;}
.y20{bottom:737.213333pt;}
.y4{bottom:740.573333pt;}
.y48{bottom:744.893333pt;}
.y3{bottom:758.973333pt;}
.yc6{bottom:761.053333pt;}
.y80{bottom:762.173333pt;}
.y67{bottom:763.293333pt;}
.y1f{bottom:764.733333pt;}
.y47{bottom:772.413333pt;}
.yc5{bottom:788.573333pt;}
.y7f{bottom:789.693333pt;}
.y66{bottom:790.813333pt;}
.y1e{bottom:792.413333pt;}
.y2{bottom:796.133333pt;}
.y46{bottom:800.133333pt;}
.y1{bottom:811.173333pt;}
.yc4{bottom:817.413333pt;}
.y65{bottom:818.533333pt;}
.y1d{bottom:819.973333pt;}
.y45{bottom:827.653333pt;}
.yc3{bottom:844.933333pt;}
.y64{bottom:846.053333pt;}
.y1c{bottom:847.653333pt;}
.y44{bottom:855.333333pt;}
.yc2{bottom:872.613333pt;}
.y63{bottom:873.733333pt;}
.y1b{bottom:875.173333pt;}
.y43{bottom:882.853333pt;}
.yc1{bottom:900.133333pt;}
.y62{bottom:901.253333pt;}
.y1a{bottom:902.853333pt;}
.y42{bottom:910.533333pt;}
.yc0{bottom:927.813333pt;}
.y61{bottom:928.933333pt;}
.y19{bottom:930.373333pt;}
.y41{bottom:938.053333pt;}
.ybf{bottom:955.333333pt;}
.y60{bottom:956.453333pt;}
.y18{bottom:958.053333pt;}
.y40{bottom:965.733333pt;}
.y5f{bottom:984.133333pt;}
.y17{bottom:985.573333pt;}
.y3f{bottom:993.253333pt;}
.y3e{bottom:1011.653333pt;}
.y16{bottom:1013.280000pt;}
.h9{height:18.720000pt;}
.hd{height:42.649687pt;}
.hb{height:52.834688pt;}
.he{height:55.402500pt;}
.hf{height:57.375000pt;}
.hc{height:58.563750pt;}
.ha{height:63.656250pt;}
.h2{height:66.750000pt;}
.h6{height:88.777500pt;}
.h8{height:111.472500pt;}
.h7{height:122.152500pt;}
.h4{height:133.500000pt;}
.h3{height:150.187500pt;}
.h5{height:152.857500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:24.000000pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:4.000000pt;}
.x2{left:71.999988pt;}
.x11{left:96.031988pt;}
.xf{left:113.471988pt;}
.x9{left:119.711988pt;}
.xa{left:126.911988pt;}
.x13{left:144.026655pt;}
.x5{left:165.786655pt;}
.x3{left:168.026655pt;}
.x17{left:192.026655pt;}
.x4{left:196.026655pt;}
.x8{left:199.546655pt;}
.xb{left:216.666655pt;}
.xc{left:251.706655pt;}
.x6{left:319.586655pt;}
.xd{left:384.546667pt;}
.x12{left:389.186655pt;}
.x10{left:393.026655pt;}
.x7{left:396.706655pt;}
.x1{left:496.253322pt;}
.x16{left:606.053322pt;}
.x15{left:670.053322pt;}
.x18{left:692.133322pt;}
.x14{left:768.159988pt;}
}




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