
    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_c05a80b9642d11a97a19ab40.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d75f84f32dd911fa7e05bc47.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9441da7ffbc5a267c6717232.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a278ce72f3c1eefaa0535e23.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228572,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,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);}
.m3{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;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.409200px;}
.ls8{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.259800px;}
.ls3{letter-spacing:-0.208200px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls11{letter-spacing:0.165600px;}
.ls7{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.360000px;}
.ls6{letter-spacing:3.780000px;}
.ls10{letter-spacing:16.506720px;}
.lsa{letter-spacing:31.860000px;}
.lse{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.637760px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1110.513600px;}
._6{margin-left:-406.080000px;}
._22{margin-left:-4.178160px;}
._e{margin-left:-3.079680px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._9{width:2.509920px;}
._8{width:3.764880px;}
._20{width:4.922400px;}
._7{width:5.944320px;}
._b{width:7.445280px;}
._a{width:8.724960px;}
._d{width:10.713360px;}
._c{width:11.892240px;}
._11{width:13.773600px;}
._1a{width:16.434000px;}
._17{width:17.438400px;}
._16{width:18.585360px;}
._13{width:20.437920px;}
._12{width:21.692880px;}
._f{width:22.737600px;}
._10{width:23.755680px;}
._1c{width:24.917760px;}
._23{width:26.980560px;}
._19{width:28.442880px;}
._18{width:29.640960px;}
._1d{width:31.374000px;}
._21{width:32.896800px;}
._15{width:34.242480px;}
._14{width:35.557200px;}
._1b{width:36.943920px;}
._3e{width:38.471040px;}
._25{width:39.781440px;}
._26{width:40.803840px;}
._27{width:42.385680px;}
._24{width:43.414560px;}
._3c{width:45.147600px;}
._41{width:46.612080px;}
._3b{width:48.526560px;}
._35{width:53.186400px;}
._2a{width:54.828720px;}
._1f{width:58.988160px;}
._1e{width:60.596640px;}
._45{width:61.907760px;}
._3a{width:63.524880px;}
._46{width:69.290640px;}
._2d{width:76.641120px;}
._2e{width:80.855280px;}
._34{width:83.274480px;}
._3d{width:84.529440px;}
._2c{width:95.613600px;}
._38{width:103.473360px;}
._2b{width:105.933360px;}
._36{width:109.062000px;}
._39{width:111.660480px;}
._31{width:113.333760px;}
._42{width:121.432320px;}
._40{width:122.806800px;}
._3f{width:124.061760px;}
._43{width:146.770560px;}
._44{width:159.499440px;}
._30{width:162.217440px;}
._33{width:165.205440px;}
._2f{width:169.419600px;}
._28{width:175.245120px;}
._29{width:214.925760px;}
._37{width:241.459200px;}
._32{width:293.211360px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs2{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y77{bottom:5.760000px;}
.y86{bottom:5.790000px;}
.y7c{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.y3c{bottom:6.480000px;}
.y8{bottom:11.520000px;}
.y3d{bottom:11.700000px;}
.y76{bottom:25.560000px;}
.y85{bottom:25.590000px;}
.y7b{bottom:25.740000px;}
.y3e{bottom:35.820000px;}
.ybe{bottom:39.060000px;}
.y9{bottom:39.780000px;}
.y8c{bottom:45.360000px;}
.y7f{bottom:45.540000px;}
.y3b{bottom:51.120000px;}
.y6{bottom:55.440000px;}
.ycb{bottom:65.160000px;}
.yc4{bottom:65.340000px;}
.ybc{bottom:82.080000px;}
.y9f{bottom:83.160000px;}
.yc3{bottom:85.140000px;}
.yca{bottom:85.170000px;}
.y38{bottom:85.500000px;}
.ycc{bottom:91.080000px;}
.y74{bottom:93.600000px;}
.yb3{bottom:94.860000px;}
.ybb{bottom:102.060000px;}
.y9e{bottom:102.960000px;}
.yd1{bottom:104.940000px;}
.yc9{bottom:104.970000px;}
.yc2{bottom:105.120000px;}
.y37{bottom:105.480000px;}
.yfa{bottom:108.900000px;}
.y73{bottom:113.400000px;}
.yb2{bottom:114.660000px;}
.yba{bottom:121.860000px;}
.y9d{bottom:122.760000px;}
.yd0{bottom:124.740000px;}
.yc8{bottom:124.770000px;}
.yc1{bottom:124.920000px;}
.y36{bottom:125.280000px;}
.yf9{bottom:128.700000px;}
.yc5{bottom:130.860000px;}
.y72{bottom:133.200000px;}
.yb1{bottom:134.460000px;}
.yb9{bottom:141.660000px;}
.y9c{bottom:142.560000px;}
.ycf{bottom:144.540000px;}
.yc7{bottom:144.570000px;}
.y35{bottom:145.080000px;}
.yf8{bottom:148.680000px;}
.y71{bottom:153.180000px;}
.yb0{bottom:154.440000px;}
.yb8{bottom:161.460000px;}
.y9b{bottom:162.360000px;}
.yc6{bottom:164.370000px;}
.y34{bottom:164.880000px;}
.yf7{bottom:168.480000px;}
.y70{bottom:172.980000px;}
.yaf{bottom:174.240000px;}
.yb7{bottom:178.200000px;}
.y9a{bottom:182.340000px;}
.y33{bottom:184.680000px;}
.yf6{bottom:188.280000px;}
.y6f{bottom:192.780000px;}
.yae{bottom:194.040000px;}
.y99{bottom:202.140000px;}
.y32{bottom:204.660000px;}
.yf5{bottom:208.080000px;}
.y6e{bottom:212.610000px;}
.yad{bottom:213.870000px;}
.y98{bottom:221.970000px;}
.y31{bottom:224.490000px;}
.yf4{bottom:227.910000px;}
.y6d{bottom:232.410000px;}
.yac{bottom:233.670000px;}
.y97{bottom:241.770000px;}
.y30{bottom:244.290000px;}
.yf3{bottom:247.890000px;}
.y6c{bottom:252.390000px;}
.yab{bottom:253.650000px;}
.y96{bottom:261.570000px;}
.y2f{bottom:264.090000px;}
.yf2{bottom:267.690000px;}
.y6b{bottom:272.190000px;}
.yaa{bottom:273.450000px;}
.y95{bottom:281.550000px;}
.y2e{bottom:283.890000px;}
.yf1{bottom:287.490000px;}
.y6a{bottom:291.990000px;}
.ya9{bottom:293.250000px;}
.y94{bottom:301.350000px;}
.y2d{bottom:303.870000px;}
.yf0{bottom:307.290000px;}
.yc0{bottom:309.270000px;}
.y69{bottom:311.790000px;}
.ya8{bottom:313.050000px;}
.y93{bottom:321.150000px;}
.y2c{bottom:323.670000px;}
.yef{bottom:327.090000px;}
.y68{bottom:331.590000px;}
.ya7{bottom:332.850000px;}
.y92{bottom:340.950000px;}
.y2b{bottom:343.470000px;}
.yee{bottom:347.070000px;}
.y67{bottom:351.570000px;}
.ya6{bottom:352.830000px;}
.y91{bottom:360.750000px;}
.y2a{bottom:363.270000px;}
.yed{bottom:366.870000px;}
.y66{bottom:371.370000px;}
.ya5{bottom:372.630000px;}
.y90{bottom:380.730000px;}
.y29{bottom:383.070000px;}
.yec{bottom:386.670000px;}
.yb6{bottom:390.990000px;}
.y65{bottom:391.170000px;}
.ya4{bottom:392.430000px;}
.y8f{bottom:400.530000px;}
.y28{bottom:403.050000px;}
.yeb{bottom:406.470000px;}
.yb5{bottom:410.790000px;}
.y64{bottom:410.970000px;}
.ya3{bottom:412.230000px;}
.y8e{bottom:416.730000px;}
.y27{bottom:422.850000px;}
.yea{bottom:426.270000px;}
.yb4{bottom:427.350000px;}
.y63{bottom:430.770000px;}
.ya2{bottom:432.030000px;}
.y26{bottom:442.650000px;}
.ye9{bottom:446.295000px;}
.ybd{bottom:448.995000px;}
.y62{bottom:450.795000px;}
.ya1{bottom:452.055000px;}
.ybf{bottom:452.415000px;}
.y8d{bottom:456.555000px;}
.y25{bottom:462.495000px;}
.ye8{bottom:466.095000px;}
.ya0{bottom:468.615000px;}
.y61{bottom:470.595000px;}
.y8b{bottom:476.355000px;}
.y24{bottom:482.295000px;}
.ye7{bottom:485.895000px;}
.y60{bottom:490.395000px;}
.y23{bottom:502.275000px;}
.ye6{bottom:505.695000px;}
.y5f{bottom:510.195000px;}
.y22{bottom:522.075000px;}
.ye5{bottom:525.495000px;}
.y5e{bottom:529.995000px;}
.y8a{bottom:535.755000px;}
.y21{bottom:541.875000px;}
.ye4{bottom:545.475000px;}
.y5d{bottom:549.975000px;}
.y20{bottom:561.675000px;}
.ye3{bottom:565.275000px;}
.y5c{bottom:569.775000px;}
.y89{bottom:575.535000px;}
.y1f{bottom:581.475000px;}
.ye2{bottom:585.075000px;}
.y5b{bottom:589.575000px;}
.y1e{bottom:601.455000px;}
.ye1{bottom:604.875000px;}
.y5a{bottom:609.375000px;}
.y88{bottom:615.135000px;}
.y1d{bottom:621.255000px;}
.ye0{bottom:624.675000px;}
.y59{bottom:629.175000px;}
.y87{bottom:634.935000px;}
.y1c{bottom:641.055000px;}
.ydf{bottom:644.655000px;}
.y58{bottom:649.155000px;}
.y1b{bottom:660.855000px;}
.yde{bottom:664.455000px;}
.y57{bottom:668.955000px;}
.y84{bottom:675.435000px;}
.y1a{bottom:680.655000px;}
.ydd{bottom:684.285000px;}
.y56{bottom:688.785000px;}
.y19{bottom:702.825000px;}
.ydc{bottom:704.085000px;}
.y55{bottom:708.585000px;}
.y18{bottom:722.625000px;}
.y83{bottom:723.165000px;}
.ydb{bottom:723.885000px;}
.y54{bottom:728.385000px;}
.y17{bottom:742.425000px;}
.y82{bottom:742.965000px;}
.yda{bottom:743.865000px;}
.y53{bottom:748.365000px;}
.y81{bottom:759.345000px;}
.y16{bottom:762.405000px;}
.yd9{bottom:763.665000px;}
.y52{bottom:768.165000px;}
.y15{bottom:782.205000px;}
.yd8{bottom:783.465000px;}
.y51{bottom:787.965000px;}
.y80{bottom:798.945000px;}
.y14{bottom:802.005000px;}
.yd7{bottom:803.265000px;}
.y50{bottom:807.765000px;}
.y7e{bottom:818.745000px;}
.y13{bottom:821.805000px;}
.yd6{bottom:823.065000px;}
.y4f{bottom:827.565000px;}
.y12{bottom:841.605000px;}
.yd5{bottom:843.045000px;}
.y4e{bottom:847.545000px;}
.y11{bottom:861.585000px;}
.yd4{bottom:862.845000px;}
.y4d{bottom:867.345000px;}
.y7d{bottom:878.325000px;}
.y10{bottom:881.385000px;}
.yd3{bottom:882.645000px;}
.y4c{bottom:887.145000px;}
.yd2{bottom:902.445000px;}
.y4b{bottom:906.945000px;}
.yf{bottom:908.745000px;}
.y7a{bottom:917.970000px;}
.yce{bottom:918.870000px;}
.y4a{bottom:926.790000px;}
.ye{bottom:928.590000px;}
.y49{bottom:946.770000px;}
.yd{bottom:949.110000px;}
.y79{bottom:957.750000px;}
.y48{bottom:966.570000px;}
.yc{bottom:970.350000px;}
.y78{bottom:977.550000px;}
.y47{bottom:986.370000px;}
.yb{bottom:993.750000px;}
.y46{bottom:1006.170000px;}
.y75{bottom:1018.050000px;}
.ya{bottom:1025.430000px;}
.y45{bottom:1025.970000px;}
.y44{bottom:1045.770000px;}
.y5{bottom:1054.230000px;}
.y43{bottom:1065.750000px;}
.ycd{bottom:1077.450000px;}
.y42{bottom:1085.550000px;}
.y4{bottom:1088.070000px;}
.y41{bottom:1105.350000px;}
.y3{bottom:1119.030000px;}
.y40{bottom:1125.150000px;}
.y3f{bottom:1144.950000px;}
.y2{bottom:1149.810000px;}
.y3a{bottom:1173.060000px;}
.y1{bottom:1181.880000px;}
.y39{bottom:1193.580000px;}
.h16{height:2.010938px;}
.hf{height:19.800000px;}
.h5{height:21.780000px;}
.hd{height:21.960000px;}
.h6{height:27.432422px;}
.he{height:39.600000px;}
.h11{height:39.636000px;}
.h10{height:39.780000px;}
.h14{height:39.816000px;}
.hb{height:41.726953px;}
.h9{height:42.164648px;}
.hc{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h15{height:53.100000px;}
.ha{height:53.224453px;}
.h2{height:54.864844px;}
.h13{height:59.400000px;}
.h12{height:59.580000px;}
.h7{height:65.884219px;}
.h8{height:67.565039px;}
.h19{height:79.416000px;}
.h17{height:138.996000px;}
.h1a{height:158.580000px;}
.h18{height:178.410000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w9{width:23.940000px;}
.wd{width:23.976000px;}
.w7{width:50.436000px;}
.w5{width:50.976000px;}
.w3{width:55.296000px;}
.wc{width:156.270000px;}
.wa{width:166.350000px;}
.wb{width:186.870000px;}
.w8{width:332.175000px;}
.w6{width:337.395000px;}
.w4{width:720.150000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x23{left:1.080000px;}
.x3{left:8.100000px;}
.x17{left:25.200000px;}
.x16{left:42.840000px;}
.x18{left:45.720000px;}
.x1{left:54.179987px;}
.x28{left:55.439987px;}
.x2{left:62.100000px;}
.xd{left:63.719987px;}
.x1a{left:64.799987px;}
.xf{left:69.119987px;}
.xb{left:73.439987px;}
.xe{left:76.535987px;}
.x26{left:77.976000px;}
.x12{left:81.395987px;}
.x20{left:86.075987px;}
.x7{left:93.815987px;}
.x19{left:96.156000px;}
.x22{left:103.535987px;}
.x2b{left:108.035987px;}
.x4{left:118.296000px;}
.x8{left:161.669987px;}
.x27{left:264.855000px;}
.x6{left:336.129000px;}
.xc{left:352.694987px;}
.xa{left:397.514987px;}
.x13{left:409.424987px;}
.x21{left:412.484987px;}
.x1f{left:419.684987px;}
.x5{left:442.689000px;}
.x9{left:446.684987px;}
.x11{left:472.424987px;}
.x1b{left:483.224987px;}
.x10{left:487.544987px;}
.x14{left:492.944987px;}
.x15{left:494.924987px;}
.x24{left:496.365000px;}
.x29{left:499.424987px;}
.x1d{left:506.264987px;}
.x2a{left:526.424987px;}
.x1e{left:623.489987px;}
.x25{left:683.250000px;}
.x1c{left:856.979987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.363733pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls11{letter-spacing:0.147200pt;}
.ls7{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.320000pt;}
.ls6{letter-spacing:3.360000pt;}
.ls10{letter-spacing:14.672640pt;}
.lsa{letter-spacing:28.320000pt;}
.lse{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.789120pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-987.123200pt;}
._6{margin-left:-360.960000pt;}
._22{margin-left:-3.713920pt;}
._e{margin-left:-2.737493pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._9{width:2.231040pt;}
._8{width:3.346560pt;}
._20{width:4.375467pt;}
._7{width:5.283840pt;}
._b{width:6.618027pt;}
._a{width:7.755520pt;}
._d{width:9.522987pt;}
._c{width:10.570880pt;}
._11{width:12.243200pt;}
._1a{width:14.608000pt;}
._17{width:15.500800pt;}
._16{width:16.520320pt;}
._13{width:18.167040pt;}
._12{width:19.282560pt;}
._f{width:20.211200pt;}
._10{width:21.116160pt;}
._1c{width:22.149120pt;}
._23{width:23.982720pt;}
._19{width:25.282560pt;}
._18{width:26.347520pt;}
._1d{width:27.888000pt;}
._21{width:29.241600pt;}
._15{width:30.437760pt;}
._14{width:31.606400pt;}
._1b{width:32.839040pt;}
._3e{width:34.196480pt;}
._25{width:35.361280pt;}
._26{width:36.270080pt;}
._27{width:37.676160pt;}
._24{width:38.590720pt;}
._3c{width:40.131200pt;}
._41{width:41.432960pt;}
._3b{width:43.134720pt;}
._35{width:47.276800pt;}
._2a{width:48.736640pt;}
._1f{width:52.433920pt;}
._1e{width:53.863680pt;}
._45{width:55.029120pt;}
._3a{width:56.466560pt;}
._46{width:61.591680pt;}
._2d{width:68.125440pt;}
._2e{width:71.871360pt;}
._34{width:74.021760pt;}
._3d{width:75.137280pt;}
._2c{width:84.989867pt;}
._38{width:91.976320pt;}
._2b{width:94.162987pt;}
._36{width:96.944000pt;}
._39{width:99.253760pt;}
._31{width:100.741120pt;}
._42{width:107.939840pt;}
._40{width:109.161600pt;}
._3f{width:110.277120pt;}
._43{width:130.462720pt;}
._44{width:141.777280pt;}
._30{width:144.193280pt;}
._33{width:146.849280pt;}
._2f{width:150.595200pt;}
._28{width:155.773440pt;}
._29{width:191.045120pt;}
._37{width:214.630400pt;}
._32{width:260.632320pt;}
.fs6{font-size:2.560000pt;}
.fs2{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:5.120000pt;}
.y86{bottom:5.146667pt;}
.y7c{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.y3c{bottom:5.760000pt;}
.y8{bottom:10.240000pt;}
.y3d{bottom:10.400000pt;}
.y76{bottom:22.720000pt;}
.y85{bottom:22.746667pt;}
.y7b{bottom:22.880000pt;}
.y3e{bottom:31.840000pt;}
.ybe{bottom:34.720000pt;}
.y9{bottom:35.360000pt;}
.y8c{bottom:40.320000pt;}
.y7f{bottom:40.480000pt;}
.y3b{bottom:45.440000pt;}
.y6{bottom:49.280000pt;}
.ycb{bottom:57.920000pt;}
.yc4{bottom:58.080000pt;}
.ybc{bottom:72.960000pt;}
.y9f{bottom:73.920000pt;}
.yc3{bottom:75.680000pt;}
.yca{bottom:75.706667pt;}
.y38{bottom:76.000000pt;}
.ycc{bottom:80.960000pt;}
.y74{bottom:83.200000pt;}
.yb3{bottom:84.320000pt;}
.ybb{bottom:90.720000pt;}
.y9e{bottom:91.520000pt;}
.yd1{bottom:93.280000pt;}
.yc9{bottom:93.306667pt;}
.yc2{bottom:93.440000pt;}
.y37{bottom:93.760000pt;}
.yfa{bottom:96.800000pt;}
.y73{bottom:100.800000pt;}
.yb2{bottom:101.920000pt;}
.yba{bottom:108.320000pt;}
.y9d{bottom:109.120000pt;}
.yd0{bottom:110.880000pt;}
.yc8{bottom:110.906667pt;}
.yc1{bottom:111.040000pt;}
.y36{bottom:111.360000pt;}
.yf9{bottom:114.400000pt;}
.yc5{bottom:116.320000pt;}
.y72{bottom:118.400000pt;}
.yb1{bottom:119.520000pt;}
.yb9{bottom:125.920000pt;}
.y9c{bottom:126.720000pt;}
.ycf{bottom:128.480000pt;}
.yc7{bottom:128.506667pt;}
.y35{bottom:128.960000pt;}
.yf8{bottom:132.160000pt;}
.y71{bottom:136.160000pt;}
.yb0{bottom:137.280000pt;}
.yb8{bottom:143.520000pt;}
.y9b{bottom:144.320000pt;}
.yc6{bottom:146.106667pt;}
.y34{bottom:146.560000pt;}
.yf7{bottom:149.760000pt;}
.y70{bottom:153.760000pt;}
.yaf{bottom:154.880000pt;}
.yb7{bottom:158.400000pt;}
.y9a{bottom:162.080000pt;}
.y33{bottom:164.160000pt;}
.yf6{bottom:167.360000pt;}
.y6f{bottom:171.360000pt;}
.yae{bottom:172.480000pt;}
.y99{bottom:179.680000pt;}
.y32{bottom:181.920000pt;}
.yf5{bottom:184.960000pt;}
.y6e{bottom:188.986667pt;}
.yad{bottom:190.106667pt;}
.y98{bottom:197.306667pt;}
.y31{bottom:199.546667pt;}
.yf4{bottom:202.586667pt;}
.y6d{bottom:206.586667pt;}
.yac{bottom:207.706667pt;}
.y97{bottom:214.906667pt;}
.y30{bottom:217.146667pt;}
.yf3{bottom:220.346667pt;}
.y6c{bottom:224.346667pt;}
.yab{bottom:225.466667pt;}
.y96{bottom:232.506667pt;}
.y2f{bottom:234.746667pt;}
.yf2{bottom:237.946667pt;}
.y6b{bottom:241.946667pt;}
.yaa{bottom:243.066667pt;}
.y95{bottom:250.266667pt;}
.y2e{bottom:252.346667pt;}
.yf1{bottom:255.546667pt;}
.y6a{bottom:259.546667pt;}
.ya9{bottom:260.666667pt;}
.y94{bottom:267.866667pt;}
.y2d{bottom:270.106667pt;}
.yf0{bottom:273.146667pt;}
.yc0{bottom:274.906667pt;}
.y69{bottom:277.146667pt;}
.ya8{bottom:278.266667pt;}
.y93{bottom:285.466667pt;}
.y2c{bottom:287.706667pt;}
.yef{bottom:290.746667pt;}
.y68{bottom:294.746667pt;}
.ya7{bottom:295.866667pt;}
.y92{bottom:303.066667pt;}
.y2b{bottom:305.306667pt;}
.yee{bottom:308.506667pt;}
.y67{bottom:312.506667pt;}
.ya6{bottom:313.626667pt;}
.y91{bottom:320.666667pt;}
.y2a{bottom:322.906667pt;}
.yed{bottom:326.106667pt;}
.y66{bottom:330.106667pt;}
.ya5{bottom:331.226667pt;}
.y90{bottom:338.426667pt;}
.y29{bottom:340.506667pt;}
.yec{bottom:343.706667pt;}
.yb6{bottom:347.546667pt;}
.y65{bottom:347.706667pt;}
.ya4{bottom:348.826667pt;}
.y8f{bottom:356.026667pt;}
.y28{bottom:358.266667pt;}
.yeb{bottom:361.306667pt;}
.yb5{bottom:365.146667pt;}
.y64{bottom:365.306667pt;}
.ya3{bottom:366.426667pt;}
.y8e{bottom:370.426667pt;}
.y27{bottom:375.866667pt;}
.yea{bottom:378.906667pt;}
.yb4{bottom:379.866667pt;}
.y63{bottom:382.906667pt;}
.ya2{bottom:384.026667pt;}
.y26{bottom:393.466667pt;}
.ye9{bottom:396.706667pt;}
.ybd{bottom:399.106667pt;}
.y62{bottom:400.706667pt;}
.ya1{bottom:401.826667pt;}
.ybf{bottom:402.146667pt;}
.y8d{bottom:405.826667pt;}
.y25{bottom:411.106667pt;}
.ye8{bottom:414.306667pt;}
.ya0{bottom:416.546667pt;}
.y61{bottom:418.306667pt;}
.y8b{bottom:423.426667pt;}
.y24{bottom:428.706667pt;}
.ye7{bottom:431.906667pt;}
.y60{bottom:435.906667pt;}
.y23{bottom:446.466667pt;}
.ye6{bottom:449.506667pt;}
.y5f{bottom:453.506667pt;}
.y22{bottom:464.066667pt;}
.ye5{bottom:467.106667pt;}
.y5e{bottom:471.106667pt;}
.y8a{bottom:476.226667pt;}
.y21{bottom:481.666667pt;}
.ye4{bottom:484.866667pt;}
.y5d{bottom:488.866667pt;}
.y20{bottom:499.266667pt;}
.ye3{bottom:502.466667pt;}
.y5c{bottom:506.466667pt;}
.y89{bottom:511.586667pt;}
.y1f{bottom:516.866667pt;}
.ye2{bottom:520.066667pt;}
.y5b{bottom:524.066667pt;}
.y1e{bottom:534.626667pt;}
.ye1{bottom:537.666667pt;}
.y5a{bottom:541.666667pt;}
.y88{bottom:546.786667pt;}
.y1d{bottom:552.226667pt;}
.ye0{bottom:555.266667pt;}
.y59{bottom:559.266667pt;}
.y87{bottom:564.386667pt;}
.y1c{bottom:569.826667pt;}
.ydf{bottom:573.026667pt;}
.y58{bottom:577.026667pt;}
.y1b{bottom:587.426667pt;}
.yde{bottom:590.626667pt;}
.y57{bottom:594.626667pt;}
.y84{bottom:600.386667pt;}
.y1a{bottom:605.026667pt;}
.ydd{bottom:608.253333pt;}
.y56{bottom:612.253333pt;}
.y19{bottom:624.733333pt;}
.ydc{bottom:625.853333pt;}
.y55{bottom:629.853333pt;}
.y18{bottom:642.333333pt;}
.y83{bottom:642.813333pt;}
.ydb{bottom:643.453333pt;}
.y54{bottom:647.453333pt;}
.y17{bottom:659.933333pt;}
.y82{bottom:660.413333pt;}
.yda{bottom:661.213333pt;}
.y53{bottom:665.213333pt;}
.y81{bottom:674.973333pt;}
.y16{bottom:677.693333pt;}
.yd9{bottom:678.813333pt;}
.y52{bottom:682.813333pt;}
.y15{bottom:695.293333pt;}
.yd8{bottom:696.413333pt;}
.y51{bottom:700.413333pt;}
.y80{bottom:710.173333pt;}
.y14{bottom:712.893333pt;}
.yd7{bottom:714.013333pt;}
.y50{bottom:718.013333pt;}
.y7e{bottom:727.773333pt;}
.y13{bottom:730.493333pt;}
.yd6{bottom:731.613333pt;}
.y4f{bottom:735.613333pt;}
.y12{bottom:748.093333pt;}
.yd5{bottom:749.373333pt;}
.y4e{bottom:753.373333pt;}
.y11{bottom:765.853333pt;}
.yd4{bottom:766.973333pt;}
.y4d{bottom:770.973333pt;}
.y7d{bottom:780.733333pt;}
.y10{bottom:783.453333pt;}
.yd3{bottom:784.573333pt;}
.y4c{bottom:788.573333pt;}
.yd2{bottom:802.173333pt;}
.y4b{bottom:806.173333pt;}
.yf{bottom:807.773333pt;}
.y7a{bottom:815.973333pt;}
.yce{bottom:816.773333pt;}
.y4a{bottom:823.813333pt;}
.ye{bottom:825.413333pt;}
.y49{bottom:841.573333pt;}
.yd{bottom:843.653333pt;}
.y79{bottom:851.333333pt;}
.y48{bottom:859.173333pt;}
.yc{bottom:862.533333pt;}
.y78{bottom:868.933333pt;}
.y47{bottom:876.773333pt;}
.yb{bottom:883.333333pt;}
.y46{bottom:894.373333pt;}
.y75{bottom:904.933333pt;}
.ya{bottom:911.493333pt;}
.y45{bottom:911.973333pt;}
.y44{bottom:929.573333pt;}
.y5{bottom:937.093333pt;}
.y43{bottom:947.333333pt;}
.ycd{bottom:957.733333pt;}
.y42{bottom:964.933333pt;}
.y4{bottom:967.173333pt;}
.y41{bottom:982.533333pt;}
.y3{bottom:994.693333pt;}
.y40{bottom:1000.133333pt;}
.y3f{bottom:1017.733333pt;}
.y2{bottom:1022.053333pt;}
.y3a{bottom:1042.720000pt;}
.y1{bottom:1050.560000pt;}
.y39{bottom:1060.960000pt;}
.h16{height:1.787500pt;}
.hf{height:17.600000pt;}
.h5{height:19.360000pt;}
.hd{height:19.520000pt;}
.h6{height:24.384375pt;}
.he{height:35.200000pt;}
.h11{height:35.232000pt;}
.h10{height:35.360000pt;}
.h14{height:35.392000pt;}
.hb{height:37.090625pt;}
.h9{height:37.479688pt;}
.hc{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h15{height:47.200000pt;}
.ha{height:47.310625pt;}
.h2{height:48.768750pt;}
.h13{height:52.800000pt;}
.h12{height:52.960000pt;}
.h7{height:58.563750pt;}
.h8{height:60.057813pt;}
.h19{height:70.592000pt;}
.h17{height:123.552000pt;}
.h1a{height:140.960000pt;}
.h18{height:158.586667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w9{width:21.280000pt;}
.wd{width:21.312000pt;}
.w7{width:44.832000pt;}
.w5{width:45.312000pt;}
.w3{width:49.152000pt;}
.wc{width:138.906667pt;}
.wa{width:147.866667pt;}
.wb{width:166.106667pt;}
.w8{width:295.266667pt;}
.w6{width:299.906667pt;}
.w4{width:640.133333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x23{left:0.960000pt;}
.x3{left:7.200000pt;}
.x17{left:22.400000pt;}
.x16{left:38.080000pt;}
.x18{left:40.640000pt;}
.x1{left:48.159988pt;}
.x28{left:49.279988pt;}
.x2{left:55.200000pt;}
.xd{left:56.639988pt;}
.x1a{left:57.599988pt;}
.xf{left:61.439988pt;}
.xb{left:65.279988pt;}
.xe{left:68.031988pt;}
.x26{left:69.312000pt;}
.x12{left:72.351988pt;}
.x20{left:76.511988pt;}
.x7{left:83.391988pt;}
.x19{left:85.472000pt;}
.x22{left:92.031988pt;}
.x2b{left:96.031988pt;}
.x4{left:105.152000pt;}
.x8{left:143.706655pt;}
.x27{left:235.426667pt;}
.x6{left:298.781333pt;}
.xc{left:313.506655pt;}
.xa{left:353.346655pt;}
.x13{left:363.933321pt;}
.x21{left:366.653321pt;}
.x1f{left:373.053321pt;}
.x5{left:393.501333pt;}
.x9{left:397.053321pt;}
.x11{left:419.933321pt;}
.x1b{left:429.533321pt;}
.x10{left:433.373321pt;}
.x14{left:438.173321pt;}
.x15{left:439.933321pt;}
.x24{left:441.213333pt;}
.x29{left:443.933321pt;}
.x1d{left:450.013321pt;}
.x2a{left:467.933321pt;}
.x1e{left:554.213322pt;}
.x25{left:607.333333pt;}
.x1c{left:761.759988pt;}
}




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