
    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_75291af963c710525188a266.woff2')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_7e7ea251382db45ef59a61df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e135a4bcdec5421e27c1a579.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0afa188413de1e1913765d09.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_c88ea8ac270d848e4c740f06.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_ba67bb0749dfd7d24239346c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_0498fef4051d784567606721.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012960px;}
.lsd{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173280px;}
.ls6{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls19{letter-spacing:3.780000px;}
.ls18{letter-spacing:46.026720px;}
.ls10{letter-spacing:91.530720px;}
.lsa{letter-spacing:95.130720px;}
.ls7{letter-spacing:98.730720px;}
.ls14{letter-spacing:201.204000px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws12{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wse{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.166000px;}
.ws1{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.732960px;}
.ws4{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._13{margin-left:-8.426880px;}
._15{margin-left:-6.866400px;}
._14{margin-left:-5.349120px;}
._11{margin-left:-3.870240px;}
._17{margin-left:-2.702160px;}
._0{margin-left:-1.080000px;}
._12{width:1.022400px;}
._1{width:2.220000px;}
._16{width:3.221520px;}
._19{width:4.363920px;}
._18{width:5.510880px;}
._1a{width:6.842880px;}
._1c{width:8.071920px;}
._1b{width:9.767520px;}
._6{width:10.800000px;}
._1d{width:12.489840px;}
._1e{width:13.857840px;}
._21{width:17.589120px;}
._f{width:18.948000px;}
._22{width:20.192400px;}
._23{width:27.177840px;}
._1f{width:32.987520px;}
._20{width:36.061440px;}
._7{width:76.284960px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:5.760000px;}
.y88{bottom:5.805000px;}
.ye{bottom:5.940000px;}
.yad{bottom:10.620000px;}
.ya5{bottom:10.800000px;}
.y6{bottom:12.420000px;}
.yc7{bottom:16.065000px;}
.y8{bottom:18.180000px;}
.yc{bottom:34.560000px;}
.y5{bottom:40.320000px;}
.yb{bottom:55.080000px;}
.y4{bottom:68.400000px;}
.yd{bottom:71.820000px;}
.ya{bottom:75.420000px;}
.y3{bottom:96.330000px;}
.y69{bottom:96.480000px;}
.y3b{bottom:97.560000px;}
.y97{bottom:101.700000px;}
.yc5{bottom:109.260000px;}
.yf6{bottom:110.160000px;}
.yf3{bottom:114.480000px;}
.y68{bottom:116.460000px;}
.y3a{bottom:117.360000px;}
.y96{bottom:121.500000px;}
.y2{bottom:125.670000px;}
.yc4{bottom:129.240000px;}
.yf5{bottom:130.140000px;}
.yf2{bottom:134.460000px;}
.y67{bottom:136.260000px;}
.y39{bottom:137.160000px;}
.y95{bottom:141.300000px;}
.yc3{bottom:149.040000px;}
.yf4{bottom:150.120000px;}
.y66{bottom:156.090000px;}
.y38{bottom:157.170000px;}
.y94{bottom:161.130000px;}
.yc2{bottom:168.870000px;}
.yf1{bottom:172.290000px;}
.y65{bottom:175.890000px;}
.y37{bottom:176.970000px;}
.y93{bottom:181.110000px;}
.yc1{bottom:188.670000px;}
.yf0{bottom:192.090000px;}
.y64{bottom:195.690000px;}
.y36{bottom:196.770000px;}
.y92{bottom:201.630000px;}
.yc0{bottom:208.470000px;}
.yef{bottom:211.890000px;}
.y63{bottom:215.670000px;}
.y35{bottom:216.570000px;}
.y91{bottom:221.430000px;}
.ybf{bottom:228.450000px;}
.yee{bottom:231.690000px;}
.y34{bottom:236.370000px;}
.y90{bottom:241.230000px;}
.y62{bottom:244.470000px;}
.ybe{bottom:248.250000px;}
.yed{bottom:251.670000px;}
.y33{bottom:256.350000px;}
.y8f{bottom:261.210000px;}
.y61{bottom:264.270000px;}
.ybd{bottom:268.050000px;}
.yec{bottom:271.470000px;}
.y32{bottom:276.150000px;}
.y8e{bottom:281.010000px;}
.y60{bottom:284.070000px;}
.ybc{bottom:287.850000px;}
.yeb{bottom:291.270000px;}
.ycd{bottom:294.690000px;}
.y31{bottom:295.950000px;}
.y8d{bottom:300.810000px;}
.y5f{bottom:303.870000px;}
.ybb{bottom:307.650000px;}
.yea{bottom:311.070000px;}
.ycc{bottom:315.390000px;}
.y30{bottom:315.750000px;}
.y8c{bottom:320.610000px;}
.y5e{bottom:323.850000px;}
.yba{bottom:327.630000px;}
.ye9{bottom:330.870000px;}
.ycb{bottom:335.190000px;}
.y2f{bottom:335.550000px;}
.y8b{bottom:340.410000px;}
.y5d{bottom:343.650000px;}
.yb9{bottom:347.430000px;}
.ye8{bottom:350.850000px;}
.yca{bottom:354.990000px;}
.y2e{bottom:355.530000px;}
.y8a{bottom:360.390000px;}
.y5c{bottom:363.450000px;}
.yb8{bottom:367.230000px;}
.ye7{bottom:370.650000px;}
.yc9{bottom:374.790000px;}
.y2d{bottom:375.330000px;}
.y89{bottom:380.190000px;}
.y5b{bottom:383.250000px;}
.yb7{bottom:387.030000px;}
.ye6{bottom:390.450000px;}
.y2c{bottom:395.130000px;}
.yc6{bottom:395.490000px;}
.y87{bottom:399.990000px;}
.yb6{bottom:406.875000px;}
.ye5{bottom:410.295000px;}
.y5a{bottom:412.095000px;}
.y2b{bottom:414.975000px;}
.yc8{bottom:416.055000px;}
.y86{bottom:419.835000px;}
.ye4{bottom:430.095000px;}
.y59{bottom:432.075000px;}
.y2a{bottom:434.775000px;}
.y85{bottom:439.635000px;}
.yb5{bottom:446.655000px;}
.ye3{bottom:450.075000px;}
.y58{bottom:451.875000px;}
.y29{bottom:454.755000px;}
.y84{bottom:459.615000px;}
.yb4{bottom:466.455000px;}
.ye2{bottom:469.875000px;}
.y57{bottom:471.675000px;}
.y28{bottom:474.555000px;}
.y83{bottom:479.415000px;}
.yb3{bottom:486.255000px;}
.ye1{bottom:489.675000px;}
.y56{bottom:491.475000px;}
.y27{bottom:494.355000px;}
.y82{bottom:499.215000px;}
.yb2{bottom:506.055000px;}
.ye0{bottom:509.475000px;}
.y55{bottom:511.275000px;}
.y26{bottom:514.155000px;}
.y81{bottom:519.015000px;}
.yb1{bottom:526.035000px;}
.ydf{bottom:529.275000px;}
.y54{bottom:531.255000px;}
.y25{bottom:533.955000px;}
.y80{bottom:539.715000px;}
.yb0{bottom:545.835000px;}
.yde{bottom:549.255000px;}
.y53{bottom:551.055000px;}
.y24{bottom:553.935000px;}
.y7f{bottom:559.515000px;}
.yaf{bottom:560.595000px;}
.ydd{bottom:569.055000px;}
.y52{bottom:570.855000px;}
.y23{bottom:573.735000px;}
.y7e{bottom:579.315000px;}
.yae{bottom:581.115000px;}
.ydc{bottom:588.855000px;}
.y51{bottom:590.655000px;}
.y22{bottom:593.535000px;}
.y7d{bottom:599.115000px;}
.yac{bottom:601.095000px;}
.ydb{bottom:608.655000px;}
.y50{bottom:610.455000px;}
.y21{bottom:613.335000px;}
.y7c{bottom:619.815000px;}
.yab{bottom:626.655000px;}
.yda{bottom:628.455000px;}
.y4f{bottom:630.435000px;}
.y20{bottom:633.135000px;}
.y7b{bottom:639.615000px;}
.yd9{bottom:648.435000px;}
.y4e{bottom:650.265000px;}
.yaa{bottom:652.965000px;}
.y1f{bottom:653.145000px;}
.y7a{bottom:659.445000px;}
.yd8{bottom:668.265000px;}
.ya9{bottom:672.765000px;}
.y1e{bottom:672.945000px;}
.y4d{bottom:679.065000px;}
.y79{bottom:679.965000px;}
.ya8{bottom:687.705000px;}
.yd7{bottom:688.065000px;}
.y1d{bottom:692.745000px;}
.y4c{bottom:698.865000px;}
.y78{bottom:699.945000px;}
.yd6{bottom:707.865000px;}
.ya7{bottom:708.225000px;}
.y1c{bottom:712.545000px;}
.y4b{bottom:718.665000px;}
.y77{bottom:719.745000px;}
.yd5{bottom:727.665000px;}
.ya6{bottom:728.025000px;}
.y1b{bottom:732.345000px;}
.y4a{bottom:738.645000px;}
.y76{bottom:739.545000px;}
.yd4{bottom:747.645000px;}
.y1a{bottom:752.325000px;}
.ya4{bottom:752.865000px;}
.y49{bottom:758.445000px;}
.y75{bottom:760.065000px;}
.yd3{bottom:767.445000px;}
.y19{bottom:772.125000px;}
.y48{bottom:778.245000px;}
.ya3{bottom:778.425000px;}
.y74{bottom:779.865000px;}
.yd2{bottom:787.245000px;}
.y18{bottom:797.145000px;}
.y47{bottom:798.045000px;}
.y73{bottom:799.845000px;}
.ya2{bottom:804.885000px;}
.yd1{bottom:807.045000px;}
.y17{bottom:816.945000px;}
.y46{bottom:817.845000px;}
.y72{bottom:819.645000px;}
.ya1{bottom:824.685000px;}
.yd0{bottom:826.845000px;}
.y16{bottom:831.525000px;}
.y45{bottom:837.825000px;}
.y71{bottom:839.445000px;}
.ya0{bottom:844.485000px;}
.ycf{bottom:846.825000px;}
.y15{bottom:856.725000px;}
.y44{bottom:857.625000px;}
.y70{bottom:859.245000px;}
.y9f{bottom:864.285000px;}
.yce{bottom:866.625000px;}
.y14{bottom:876.525000px;}
.y6f{bottom:879.045000px;}
.y9e{bottom:884.265000px;}
.y43{bottom:886.425000px;}
.y13{bottom:891.645000px;}
.y6e{bottom:899.070000px;}
.y9d{bottom:904.110000px;}
.y42{bottom:906.270000px;}
.y12{bottom:910.770000px;}
.y6d{bottom:918.870000px;}
.y9c{bottom:923.910000px;}
.y41{bottom:926.070000px;}
.y11{bottom:935.610000px;}
.y6b{bottom:938.670000px;}
.y9b{bottom:943.710000px;}
.y40{bottom:946.050000px;}
.y9a{bottom:958.470000px;}
.y6a{bottom:959.190000px;}
.y3f{bottom:965.850000px;}
.y10{bottom:967.290000px;}
.y99{bottom:979.170000px;}
.y3e{bottom:985.650000px;}
.yf{bottom:998.970000px;}
.y3d{bottom:1005.450000px;}
.y98{bottom:1018.770000px;}
.y3c{bottom:1025.250000px;}
.y9{bottom:1044.150000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.082656px;}
.h14{height:19.800000px;}
.h16{height:19.836000px;}
.h13{height:19.980000px;}
.h15{height:20.016000px;}
.hb{height:21.420000px;}
.h18{height:24.660000px;}
.h17{height:24.840000px;}
.he{height:28.115859px;}
.h7{height:33.480000px;}
.h19{height:40.356000px;}
.h1a{height:41.493516px;}
.h10{height:42.164648px;}
.hf{height:43.215117px;}
.h1b{height:43.506914px;}
.h4{height:46.736719px;}
.hc{height:47.901094px;}
.h11{height:48.496641px;}
.h12{height:48.995859px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.ha{height:65.884219px;}
.hd{height:67.565039px;}
.h8{height:71.613281px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w7{width:43.740000px;}
.w17{width:55.836000px;}
.w19{width:57.960000px;}
.w16{width:58.860000px;}
.w1a{width:58.896000px;}
.w18{width:59.040000px;}
.w15{width:62.460000px;}
.wd{width:74.376000px;}
.wa{width:79.956000px;}
.w11{width:80.640000px;}
.w8{width:80.676000px;}
.we{width:81.180000px;}
.wb{width:82.080000px;}
.w13{width:114.876000px;}
.w14{width:116.856000px;}
.wf{width:119.196000px;}
.w9{width:121.140000px;}
.w12{width:121.320000px;}
.wc{width:127.620000px;}
.w3{width:137.556000px;}
.w6{width:297.075000px;}
.w10{width:353.055000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.xe{left:68.399987px;}
.xd{left:81.179987px;}
.x6{left:89.675987px;}
.xb{left:94.715987px;}
.xf{left:96.515987px;}
.x1f{left:108.035987px;}
.x9{left:114.335987px;}
.x4{left:118.470000px;}
.xa{left:166.709987px;}
.x17{left:169.590000px;}
.x10{left:235.830000px;}
.x18{left:288.795000px;}
.x13{left:304.995000px;}
.x1c{left:351.255000px;}
.xc{left:389.774987px;}
.x7{left:393.194987px;}
.x1a{left:410.115000px;}
.x14{left:426.135000px;}
.x16{left:432.615000px;}
.x8{left:446.504987px;}
.x1d{left:465.945000px;}
.x15{left:506.085000px;}
.x1b{left:524.985000px;}
.x11{left:532.905000px;}
.x12{left:576.645000px;}
.x1e{left:582.945000px;}
.x19{left:641.850000px;}
.x3{left:702.510000px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011520pt;}
.lsd{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154027pt;}
.ls6{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls19{letter-spacing:3.360000pt;}
.ls18{letter-spacing:40.912640pt;}
.ls10{letter-spacing:81.360640pt;}
.lsa{letter-spacing:84.560640pt;}
.ls7{letter-spacing:87.760640pt;}
.ls14{letter-spacing:178.848000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.592000pt;}
.ws1{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.651520pt;}
.ws4{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._13{margin-left:-7.490560pt;}
._15{margin-left:-6.103467pt;}
._14{margin-left:-4.754773pt;}
._11{margin-left:-3.440213pt;}
._17{margin-left:-2.401920pt;}
._0{margin-left:-0.960000pt;}
._12{width:0.908800pt;}
._1{width:1.973333pt;}
._16{width:2.863573pt;}
._19{width:3.879040pt;}
._18{width:4.898560pt;}
._1a{width:6.082560pt;}
._1c{width:7.175040pt;}
._1b{width:8.682240pt;}
._6{width:9.600000pt;}
._1d{width:11.102080pt;}
._1e{width:12.318080pt;}
._21{width:15.634773pt;}
._f{width:16.842667pt;}
._22{width:17.948800pt;}
._23{width:24.158080pt;}
._1f{width:29.322240pt;}
._20{width:32.054613pt;}
._7{width:67.808853pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:5.120000pt;}
.y88{bottom:5.160000pt;}
.ye{bottom:5.280000pt;}
.yad{bottom:9.440000pt;}
.ya5{bottom:9.600000pt;}
.y6{bottom:11.040000pt;}
.yc7{bottom:14.280000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:30.720000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:48.960000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:63.840000pt;}
.ya{bottom:67.040000pt;}
.y3{bottom:85.626667pt;}
.y69{bottom:85.760000pt;}
.y3b{bottom:86.720000pt;}
.y97{bottom:90.400000pt;}
.yc5{bottom:97.120000pt;}
.yf6{bottom:97.920000pt;}
.yf3{bottom:101.760000pt;}
.y68{bottom:103.520000pt;}
.y3a{bottom:104.320000pt;}
.y96{bottom:108.000000pt;}
.y2{bottom:111.706667pt;}
.yc4{bottom:114.880000pt;}
.yf5{bottom:115.680000pt;}
.yf2{bottom:119.520000pt;}
.y67{bottom:121.120000pt;}
.y39{bottom:121.920000pt;}
.y95{bottom:125.600000pt;}
.yc3{bottom:132.480000pt;}
.yf4{bottom:133.440000pt;}
.y66{bottom:138.746667pt;}
.y38{bottom:139.706667pt;}
.y94{bottom:143.226667pt;}
.yc2{bottom:150.106667pt;}
.yf1{bottom:153.146667pt;}
.y65{bottom:156.346667pt;}
.y37{bottom:157.306667pt;}
.y93{bottom:160.986667pt;}
.yc1{bottom:167.706667pt;}
.yf0{bottom:170.746667pt;}
.y64{bottom:173.946667pt;}
.y36{bottom:174.906667pt;}
.y92{bottom:179.226667pt;}
.yc0{bottom:185.306667pt;}
.yef{bottom:188.346667pt;}
.y63{bottom:191.706667pt;}
.y35{bottom:192.506667pt;}
.y91{bottom:196.826667pt;}
.ybf{bottom:203.066667pt;}
.yee{bottom:205.946667pt;}
.y34{bottom:210.106667pt;}
.y90{bottom:214.426667pt;}
.y62{bottom:217.306667pt;}
.ybe{bottom:220.666667pt;}
.yed{bottom:223.706667pt;}
.y33{bottom:227.866667pt;}
.y8f{bottom:232.186667pt;}
.y61{bottom:234.906667pt;}
.ybd{bottom:238.266667pt;}
.yec{bottom:241.306667pt;}
.y32{bottom:245.466667pt;}
.y8e{bottom:249.786667pt;}
.y60{bottom:252.506667pt;}
.ybc{bottom:255.866667pt;}
.yeb{bottom:258.906667pt;}
.ycd{bottom:261.946667pt;}
.y31{bottom:263.066667pt;}
.y8d{bottom:267.386667pt;}
.y5f{bottom:270.106667pt;}
.ybb{bottom:273.466667pt;}
.yea{bottom:276.506667pt;}
.ycc{bottom:280.346667pt;}
.y30{bottom:280.666667pt;}
.y8c{bottom:284.986667pt;}
.y5e{bottom:287.866667pt;}
.yba{bottom:291.226667pt;}
.ye9{bottom:294.106667pt;}
.ycb{bottom:297.946667pt;}
.y2f{bottom:298.266667pt;}
.y8b{bottom:302.586667pt;}
.y5d{bottom:305.466667pt;}
.yb9{bottom:308.826667pt;}
.ye8{bottom:311.866667pt;}
.yca{bottom:315.546667pt;}
.y2e{bottom:316.026667pt;}
.y8a{bottom:320.346667pt;}
.y5c{bottom:323.066667pt;}
.yb8{bottom:326.426667pt;}
.ye7{bottom:329.466667pt;}
.yc9{bottom:333.146667pt;}
.y2d{bottom:333.626667pt;}
.y89{bottom:337.946667pt;}
.y5b{bottom:340.666667pt;}
.yb7{bottom:344.026667pt;}
.ye6{bottom:347.066667pt;}
.y2c{bottom:351.226667pt;}
.yc6{bottom:351.546667pt;}
.y87{bottom:355.546667pt;}
.yb6{bottom:361.666667pt;}
.ye5{bottom:364.706667pt;}
.y5a{bottom:366.306667pt;}
.y2b{bottom:368.866667pt;}
.yc8{bottom:369.826667pt;}
.y86{bottom:373.186667pt;}
.ye4{bottom:382.306667pt;}
.y59{bottom:384.066667pt;}
.y2a{bottom:386.466667pt;}
.y85{bottom:390.786667pt;}
.yb5{bottom:397.026667pt;}
.ye3{bottom:400.066667pt;}
.y58{bottom:401.666667pt;}
.y29{bottom:404.226667pt;}
.y84{bottom:408.546667pt;}
.yb4{bottom:414.626667pt;}
.ye2{bottom:417.666667pt;}
.y57{bottom:419.266667pt;}
.y28{bottom:421.826667pt;}
.y83{bottom:426.146667pt;}
.yb3{bottom:432.226667pt;}
.ye1{bottom:435.266667pt;}
.y56{bottom:436.866667pt;}
.y27{bottom:439.426667pt;}
.y82{bottom:443.746667pt;}
.yb2{bottom:449.826667pt;}
.ye0{bottom:452.866667pt;}
.y55{bottom:454.466667pt;}
.y26{bottom:457.026667pt;}
.y81{bottom:461.346667pt;}
.yb1{bottom:467.586667pt;}
.ydf{bottom:470.466667pt;}
.y54{bottom:472.226667pt;}
.y25{bottom:474.626667pt;}
.y80{bottom:479.746667pt;}
.yb0{bottom:485.186667pt;}
.yde{bottom:488.226667pt;}
.y53{bottom:489.826667pt;}
.y24{bottom:492.386667pt;}
.y7f{bottom:497.346667pt;}
.yaf{bottom:498.306667pt;}
.ydd{bottom:505.826667pt;}
.y52{bottom:507.426667pt;}
.y23{bottom:509.986667pt;}
.y7e{bottom:514.946667pt;}
.yae{bottom:516.546667pt;}
.ydc{bottom:523.426667pt;}
.y51{bottom:525.026667pt;}
.y22{bottom:527.586667pt;}
.y7d{bottom:532.546667pt;}
.yac{bottom:534.306667pt;}
.ydb{bottom:541.026667pt;}
.y50{bottom:542.626667pt;}
.y21{bottom:545.186667pt;}
.y7c{bottom:550.946667pt;}
.yab{bottom:557.026667pt;}
.yda{bottom:558.626667pt;}
.y4f{bottom:560.386667pt;}
.y20{bottom:562.786667pt;}
.y7b{bottom:568.546667pt;}
.yd9{bottom:576.386667pt;}
.y4e{bottom:578.013333pt;}
.yaa{bottom:580.413333pt;}
.y1f{bottom:580.573333pt;}
.y7a{bottom:586.173333pt;}
.yd8{bottom:594.013333pt;}
.ya9{bottom:598.013333pt;}
.y1e{bottom:598.173333pt;}
.y4d{bottom:603.613333pt;}
.y79{bottom:604.413333pt;}
.ya8{bottom:611.293333pt;}
.yd7{bottom:611.613333pt;}
.y1d{bottom:615.773333pt;}
.y4c{bottom:621.213333pt;}
.y78{bottom:622.173333pt;}
.yd6{bottom:629.213333pt;}
.ya7{bottom:629.533333pt;}
.y1c{bottom:633.373333pt;}
.y4b{bottom:638.813333pt;}
.y77{bottom:639.773333pt;}
.yd5{bottom:646.813333pt;}
.ya6{bottom:647.133333pt;}
.y1b{bottom:650.973333pt;}
.y4a{bottom:656.573333pt;}
.y76{bottom:657.373333pt;}
.yd4{bottom:664.573333pt;}
.y1a{bottom:668.733333pt;}
.ya4{bottom:669.213333pt;}
.y49{bottom:674.173333pt;}
.y75{bottom:675.613333pt;}
.yd3{bottom:682.173333pt;}
.y19{bottom:686.333333pt;}
.y48{bottom:691.773333pt;}
.ya3{bottom:691.933333pt;}
.y74{bottom:693.213333pt;}
.yd2{bottom:699.773333pt;}
.y18{bottom:708.573333pt;}
.y47{bottom:709.373333pt;}
.y73{bottom:710.973333pt;}
.ya2{bottom:715.453333pt;}
.yd1{bottom:717.373333pt;}
.y17{bottom:726.173333pt;}
.y46{bottom:726.973333pt;}
.y72{bottom:728.573333pt;}
.ya1{bottom:733.053333pt;}
.yd0{bottom:734.973333pt;}
.y16{bottom:739.133333pt;}
.y45{bottom:744.733333pt;}
.y71{bottom:746.173333pt;}
.ya0{bottom:750.653333pt;}
.ycf{bottom:752.733333pt;}
.y15{bottom:761.533333pt;}
.y44{bottom:762.333333pt;}
.y70{bottom:763.773333pt;}
.y9f{bottom:768.253333pt;}
.yce{bottom:770.333333pt;}
.y14{bottom:779.133333pt;}
.y6f{bottom:781.373333pt;}
.y9e{bottom:786.013333pt;}
.y43{bottom:787.933333pt;}
.y13{bottom:792.573333pt;}
.y6e{bottom:799.173333pt;}
.y9d{bottom:803.653333pt;}
.y42{bottom:805.573333pt;}
.y12{bottom:809.573333pt;}
.y6d{bottom:816.773333pt;}
.y9c{bottom:821.253333pt;}
.y41{bottom:823.173333pt;}
.y11{bottom:831.653333pt;}
.y6b{bottom:834.373333pt;}
.y9b{bottom:838.853333pt;}
.y40{bottom:840.933333pt;}
.y9a{bottom:851.973333pt;}
.y6a{bottom:852.613333pt;}
.y3f{bottom:858.533333pt;}
.y10{bottom:859.813333pt;}
.y99{bottom:870.373333pt;}
.y3e{bottom:876.133333pt;}
.yf{bottom:887.973333pt;}
.y3d{bottom:893.733333pt;}
.y98{bottom:905.573333pt;}
.y3c{bottom:911.333333pt;}
.y9{bottom:928.133333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.851250pt;}
.h14{height:17.600000pt;}
.h16{height:17.632000pt;}
.h13{height:17.760000pt;}
.h15{height:17.792000pt;}
.hb{height:19.040000pt;}
.h18{height:21.920000pt;}
.h17{height:22.080000pt;}
.he{height:24.991875pt;}
.h7{height:29.760000pt;}
.h19{height:35.872000pt;}
.h1a{height:36.883125pt;}
.h10{height:37.479688pt;}
.hf{height:38.413438pt;}
.h1b{height:38.672812pt;}
.h4{height:41.543750pt;}
.hc{height:42.578750pt;}
.h11{height:43.108125pt;}
.h12{height:43.551875pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.ha{height:58.563750pt;}
.hd{height:60.057813pt;}
.h8{height:63.656250pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w7{width:38.880000pt;}
.w17{width:49.632000pt;}
.w19{width:51.520000pt;}
.w16{width:52.320000pt;}
.w1a{width:52.352000pt;}
.w18{width:52.480000pt;}
.w15{width:55.520000pt;}
.wd{width:66.112000pt;}
.wa{width:71.072000pt;}
.w11{width:71.680000pt;}
.w8{width:71.712000pt;}
.we{width:72.160000pt;}
.wb{width:72.960000pt;}
.w13{width:102.112000pt;}
.w14{width:103.872000pt;}
.wf{width:105.952000pt;}
.w9{width:107.680000pt;}
.w12{width:107.840000pt;}
.wc{width:113.440000pt;}
.w3{width:122.272000pt;}
.w6{width:264.066667pt;}
.w10{width:313.826667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.xe{left:60.799988pt;}
.xd{left:72.159988pt;}
.x6{left:79.711988pt;}
.xb{left:84.191988pt;}
.xf{left:85.791988pt;}
.x1f{left:96.031988pt;}
.x9{left:101.631988pt;}
.x4{left:105.306667pt;}
.xa{left:148.186655pt;}
.x17{left:150.746667pt;}
.x10{left:209.626667pt;}
.x18{left:256.706667pt;}
.x13{left:271.106667pt;}
.x1c{left:312.226667pt;}
.xc{left:346.466655pt;}
.x7{left:349.506655pt;}
.x1a{left:364.546667pt;}
.x14{left:378.786667pt;}
.x16{left:384.546667pt;}
.x8{left:396.893322pt;}
.x1d{left:414.173333pt;}
.x15{left:449.853333pt;}
.x1b{left:466.653333pt;}
.x11{left:473.693333pt;}
.x12{left:512.573333pt;}
.x1e{left:518.173333pt;}
.x19{left:570.533333pt;}
.x3{left:624.453333pt;}
.x5{left:737.120000pt;}
}




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