
    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_ccca6773230b9693d9ac49eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e9eb9ed805b4ab5461ccf190.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_a0b25721f6eef7ef346672c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2b1e027407079836f94c2ccf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m4{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls3{letter-spacing:-0.786000px;}
.ls1{letter-spacing:-0.242400px;}
.ls4{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.117600px;}
.ls9{letter-spacing:-0.029340px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.117600px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.333600px;}
.ls7{letter-spacing:0.344273px;}
.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;}
}
.ws2{word-spacing:-20.855760px;}
.ws1{word-spacing:-16.605600px;}
.ws6{word-spacing:-16.416000px;}
.ws4{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.242660px;}
.ws5{word-spacing:-16.128000px;}
.ws0{word-spacing:-16.029600px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-14.100000px;}
._8{margin-left:-7.944000px;}
._6{margin-left:-5.640000px;}
._4{margin-left:-4.362480px;}
._5{margin-left:-3.262080px;}
._9{margin-left:-2.187360px;}
._3{margin-left:-1.053360px;}
._0{width:1.275795px;}
._b{width:2.364616px;}
._a{width:4.176000px;}
._f{width:6.056821px;}
._c{width:7.484205px;}
._18{width:9.164205px;}
._16{width:10.552411px;}
._2{width:11.787795px;}
._1{width:12.800673px;}
._e{width:13.943360px;}
._15{width:15.121872px;}
._d{width:17.712000px;}
._17{width:18.812205px;}
._13{width:19.840411px;}
._14{width:21.147795px;}
._19{width:22.392000px;}
._11{width:24.900616px;}
._10{width:25.920000px;}
._12{width:27.967301px;}
._1a{width:31.596616px;}
._1c{width:48.413026px;}
._1b{width:49.464000px;}
.fc5{color:rgb(238,0,0);}
.fc3{color:transparent;}
.fc4{color:rgb(35,41,86);}
.fc1{color:rgb(14,70,96);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.480000px;}
.y5{bottom:7.740000px;}
.y4{bottom:33.300000px;}
.y3{bottom:62.280000px;}
.y7{bottom:121.500000px;}
.y8f{bottom:140.400000px;}
.y56{bottom:164.340000px;}
.ya5{bottom:172.800000px;}
.y77{bottom:176.760000px;}
.y29{bottom:178.380000px;}
.y8e{bottom:180.900000px;}
.y55{bottom:189.540000px;}
.y8d{bottom:206.280000px;}
.ya4{bottom:213.300000px;}
.y54{bottom:214.740000px;}
.y28{bottom:215.640000px;}
.y76{bottom:217.260000px;}
.y8c{bottom:231.480000px;}
.y53{bottom:240.150000px;}
.ya3{bottom:254.010000px;}
.y27{bottom:255.090000px;}
.y8b{bottom:256.710000px;}
.y75{bottom:257.970000px;}
.y52{bottom:265.350000px;}
.ya2{bottom:279.210000px;}
.y8a{bottom:282.090000px;}
.y2d{bottom:288.510000px;}
.y51{bottom:290.730000px;}
.y26{bottom:294.690000px;}
.y74{bottom:298.470000px;}
.ya1{bottom:304.410000px;}
.y89{bottom:307.290000px;}
.y2c{bottom:328.500000px;}
.ya0{bottom:329.790000px;}
.y50{bottom:331.230000px;}
.y88{bottom:332.490000px;}
.y25{bottom:334.110000px;}
.y73{bottom:338.970000px;}
.y9f{bottom:354.990000px;}
.y4f{bottom:356.430000px;}
.y2b{bottom:357.840000px;}
.y87{bottom:357.870000px;}
.y24{bottom:373.710000px;}
.y72{bottom:379.650000px;}
.y9e{bottom:380.370000px;}
.y4e{bottom:381.810000px;}
.y86{bottom:383.070000px;}
.y4d{bottom:407.010000px;}
.y85{bottom:408.450000px;}
.y23{bottom:413.130000px;}
.y71{bottom:420.150000px;}
.y9d{bottom:420.870000px;}
.y4c{bottom:432.210000px;}
.y84{bottom:433.650000px;}
.y9c{bottom:446.070000px;}
.y22{bottom:452.730000px;}
.y4b{bottom:457.590000px;}
.y70{bottom:460.650000px;}
.y9b{bottom:471.495000px;}
.y83{bottom:474.195000px;}
.y21{bottom:492.375000px;}
.y9a{bottom:496.695000px;}
.y4a{bottom:498.135000px;}
.y82{bottom:499.575000px;}
.y6f{bottom:501.375000px;}
.y99{bottom:521.895000px;}
.y49{bottom:523.515000px;}
.y81{bottom:524.775000px;}
.y20{bottom:531.795000px;}
.y6e{bottom:541.875000px;}
.y98{bottom:547.275000px;}
.y48{bottom:548.715000px;}
.y80{bottom:549.975000px;}
.y1f{bottom:571.395000px;}
.y97{bottom:572.475000px;}
.y47{bottom:573.915000px;}
.y7f{bottom:575.355000px;}
.y6d{bottom:582.555000px;}
.y96{bottom:597.855000px;}
.y46{bottom:599.295000px;}
.y7e{bottom:600.555000px;}
.y1e{bottom:614.235000px;}
.y6c{bottom:623.055000px;}
.y45{bottom:624.495000px;}
.y7d{bottom:641.235000px;}
.y1d{bottom:642.315000px;}
.y6b{bottom:648.255000px;}
.y44{bottom:649.875000px;}
.y7c{bottom:666.435000px;}
.y1c{bottom:670.215000px;}
.y6a{bottom:673.635000px;}
.y43{bottom:675.075000px;}
.y1b{bottom:695.595000px;}
.y69{bottom:698.865000px;}
.y7b{bottom:703.725000px;}
.y42{bottom:712.365000px;}
.y95{bottom:714.165000px;}
.y1a{bottom:723.705000px;}
.y68{bottom:724.065000px;}
.y94{bottom:739.365000px;}
.y7a{bottom:740.985000px;}
.y19{bottom:749.085000px;}
.y67{bottom:749.445000px;}
.y41{bottom:749.625000px;}
.y93{bottom:764.745000px;}
.y79{bottom:766.185000px;}
.y40{bottom:774.825000px;}
.y18{bottom:775.185000px;}
.y66{bottom:789.945000px;}
.y17{bottom:803.265000px;}
.y78{bottom:803.445000px;}
.y3f{bottom:812.085000px;}
.y65{bottom:815.325000px;}
.y16{bottom:833.325000px;}
.y3e{bottom:837.465000px;}
.y64{bottom:840.525000px;}
.y15{bottom:860.865000px;}
.y2a{bottom:862.740000px;}
.y63{bottom:865.725000px;}
.y3d{bottom:874.725000px;}
.y14{bottom:888.405000px;}
.y62{bottom:891.105000px;}
.y3c{bottom:900.105000px;}
.y13{bottom:916.125000px;}
.y61{bottom:931.650000px;}
.y3b{bottom:937.410000px;}
.y12{bottom:943.710000px;}
.y60{bottom:957.030000px;}
.y3a{bottom:962.610000px;}
.y11{bottom:971.250000px;}
.y31{bottom:978.450000px;}
.y5f{bottom:982.230000px;}
.y10{bottom:998.970000px;}
.y39{bottom:999.870000px;}
.y5e{bottom:1007.430000px;}
.y30{bottom:1019.670000px;}
.y38{bottom:1025.070000px;}
.yf{bottom:1026.510000px;}
.y5d{bottom:1032.810000px;}
.ye{bottom:1054.050000px;}
.y5c{bottom:1058.010000px;}
.y2f{bottom:1060.170000px;}
.y37{bottom:1062.330000px;}
.yd{bottom:1081.770000px;}
.y92{bottom:1083.210000px;}
.y36{bottom:1087.710000px;}
.y2e{bottom:1088.070000px;}
.y5b{bottom:1098.510000px;}
.y91{bottom:1108.590000px;}
.yc{bottom:1109.310000px;}
.y5a{bottom:1123.890000px;}
.y35{bottom:1124.970000px;}
.y90{bottom:1133.790000px;}
.yb{bottom:1136.850000px;}
.y59{bottom:1149.090000px;}
.y34{bottom:1162.080000px;}
.ya{bottom:1164.600000px;}
.y58{bottom:1174.500000px;}
.y9{bottom:1192.140000px;}
.y33{bottom:1193.580000px;}
.y57{bottom:1199.700000px;}
.y8{bottom:1219.680000px;}
.y32{bottom:1224.900000px;}
.y1{bottom:1239.660000px;}
.y6{bottom:1262.160000px;}
.h2{height:23.400000px;}
.h4{height:50.400000px;}
.h5{height:59.439023px;}
.h6{height:66.489609px;}
.h3{height:71.613281px;}
.ha{height:73.722656px;}
.h9{height:83.787539px;}
.h7{height:95.245664px;}
.h8{height:380.520000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:20.160000px;}
.w3{width:145.656000px;}
.w5{width:892.980000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x5{left:1.440000px;}
.x2{left:4.500000px;}
.x3{left:13.320000px;}
.x1{left:49.500000px;}
.x7{left:53.999987px;}
.x8{left:71.999987px;}
.x6{left:125.865000px;}
.xf{left:128.195987px;}
.x15{left:131.255987px;}
.xc{left:134.135987px;}
.x13{left:135.935987px;}
.x11{left:172.829987px;}
.xd{left:174.629987px;}
.x10{left:178.769987px;}
.xe{left:194.609987px;}
.x12{left:315.434987px;}
.xb{left:322.274987px;}
.x14{left:350.174987px;}
.xa{left:359.354987px;}
.x9{left:415.334987px;}
.x4{left:566.025000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.698667pt;}
.ls1{letter-spacing:-0.215467pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.104533pt;}
.ls9{letter-spacing:-0.026080pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.104533pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.296533pt;}
.ls7{letter-spacing:0.306021pt;}
.ws2{word-spacing:-18.538453pt;}
.ws1{word-spacing:-14.760533pt;}
.ws6{word-spacing:-14.592000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.437920pt;}
.ws5{word-spacing:-14.336000pt;}
.ws0{word-spacing:-14.248533pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-12.533333pt;}
._8{margin-left:-7.061333pt;}
._6{margin-left:-5.013333pt;}
._4{margin-left:-3.877760pt;}
._5{margin-left:-2.899627pt;}
._9{margin-left:-1.944320pt;}
._3{margin-left:-0.936320pt;}
._0{width:1.134040pt;}
._b{width:2.101881pt;}
._a{width:3.712000pt;}
._f{width:5.383841pt;}
._c{width:6.652627pt;}
._18{width:8.145960pt;}
._16{width:9.379921pt;}
._2{width:10.478040pt;}
._1{width:11.378376pt;}
._e{width:12.394098pt;}
._15{width:13.441664pt;}
._d{width:15.744000pt;}
._17{width:16.721960pt;}
._13{width:17.635921pt;}
._14{width:18.798040pt;}
._19{width:19.904000pt;}
._11{width:22.133881pt;}
._10{width:23.040000pt;}
._12{width:24.859823pt;}
._1a{width:28.085881pt;}
._1c{width:43.033801pt;}
._1b{width:43.968000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.760000pt;}
.y5{bottom:6.880000pt;}
.y4{bottom:29.600000pt;}
.y3{bottom:55.360000pt;}
.y7{bottom:108.000000pt;}
.y8f{bottom:124.800000pt;}
.y56{bottom:146.080000pt;}
.ya5{bottom:153.600000pt;}
.y77{bottom:157.120000pt;}
.y29{bottom:158.560000pt;}
.y8e{bottom:160.800000pt;}
.y55{bottom:168.480000pt;}
.y8d{bottom:183.360000pt;}
.ya4{bottom:189.600000pt;}
.y54{bottom:190.880000pt;}
.y28{bottom:191.680000pt;}
.y76{bottom:193.120000pt;}
.y8c{bottom:205.760000pt;}
.y53{bottom:213.466667pt;}
.ya3{bottom:225.786667pt;}
.y27{bottom:226.746667pt;}
.y8b{bottom:228.186667pt;}
.y75{bottom:229.306667pt;}
.y52{bottom:235.866667pt;}
.ya2{bottom:248.186667pt;}
.y8a{bottom:250.746667pt;}
.y2d{bottom:256.453333pt;}
.y51{bottom:258.426667pt;}
.y26{bottom:261.946667pt;}
.y74{bottom:265.306667pt;}
.ya1{bottom:270.586667pt;}
.y89{bottom:273.146667pt;}
.y2c{bottom:292.000000pt;}
.ya0{bottom:293.146667pt;}
.y50{bottom:294.426667pt;}
.y88{bottom:295.546667pt;}
.y25{bottom:296.986667pt;}
.y73{bottom:301.306667pt;}
.y9f{bottom:315.546667pt;}
.y4f{bottom:316.826667pt;}
.y2b{bottom:318.080000pt;}
.y87{bottom:318.106667pt;}
.y24{bottom:332.186667pt;}
.y72{bottom:337.466667pt;}
.y9e{bottom:338.106667pt;}
.y4e{bottom:339.386667pt;}
.y86{bottom:340.506667pt;}
.y4d{bottom:361.786667pt;}
.y85{bottom:363.066667pt;}
.y23{bottom:367.226667pt;}
.y71{bottom:373.466667pt;}
.y9d{bottom:374.106667pt;}
.y4c{bottom:384.186667pt;}
.y84{bottom:385.466667pt;}
.y9c{bottom:396.506667pt;}
.y22{bottom:402.426667pt;}
.y4b{bottom:406.746667pt;}
.y70{bottom:409.466667pt;}
.y9b{bottom:419.106667pt;}
.y83{bottom:421.506667pt;}
.y21{bottom:437.666667pt;}
.y9a{bottom:441.506667pt;}
.y4a{bottom:442.786667pt;}
.y82{bottom:444.066667pt;}
.y6f{bottom:445.666667pt;}
.y99{bottom:463.906667pt;}
.y49{bottom:465.346667pt;}
.y81{bottom:466.466667pt;}
.y20{bottom:472.706667pt;}
.y6e{bottom:481.666667pt;}
.y98{bottom:486.466667pt;}
.y48{bottom:487.746667pt;}
.y80{bottom:488.866667pt;}
.y1f{bottom:507.906667pt;}
.y97{bottom:508.866667pt;}
.y47{bottom:510.146667pt;}
.y7f{bottom:511.426667pt;}
.y6d{bottom:517.826667pt;}
.y96{bottom:531.426667pt;}
.y46{bottom:532.706667pt;}
.y7e{bottom:533.826667pt;}
.y1e{bottom:545.986667pt;}
.y6c{bottom:553.826667pt;}
.y45{bottom:555.106667pt;}
.y7d{bottom:569.986667pt;}
.y1d{bottom:570.946667pt;}
.y6b{bottom:576.226667pt;}
.y44{bottom:577.666667pt;}
.y7c{bottom:592.386667pt;}
.y1c{bottom:595.746667pt;}
.y6a{bottom:598.786667pt;}
.y43{bottom:600.066667pt;}
.y1b{bottom:618.306667pt;}
.y69{bottom:621.213333pt;}
.y7b{bottom:625.533333pt;}
.y42{bottom:633.213333pt;}
.y95{bottom:634.813333pt;}
.y1a{bottom:643.293333pt;}
.y68{bottom:643.613333pt;}
.y94{bottom:657.213333pt;}
.y7a{bottom:658.653333pt;}
.y19{bottom:665.853333pt;}
.y67{bottom:666.173333pt;}
.y41{bottom:666.333333pt;}
.y93{bottom:679.773333pt;}
.y79{bottom:681.053333pt;}
.y40{bottom:688.733333pt;}
.y18{bottom:689.053333pt;}
.y66{bottom:702.173333pt;}
.y17{bottom:714.013333pt;}
.y78{bottom:714.173333pt;}
.y3f{bottom:721.853333pt;}
.y65{bottom:724.733333pt;}
.y16{bottom:740.733333pt;}
.y3e{bottom:744.413333pt;}
.y64{bottom:747.133333pt;}
.y15{bottom:765.213333pt;}
.y2a{bottom:766.880000pt;}
.y63{bottom:769.533333pt;}
.y3d{bottom:777.533333pt;}
.y14{bottom:789.693333pt;}
.y62{bottom:792.093333pt;}
.y3c{bottom:800.093333pt;}
.y13{bottom:814.333333pt;}
.y61{bottom:828.133333pt;}
.y3b{bottom:833.253333pt;}
.y12{bottom:838.853333pt;}
.y60{bottom:850.693333pt;}
.y3a{bottom:855.653333pt;}
.y11{bottom:863.333333pt;}
.y31{bottom:869.733333pt;}
.y5f{bottom:873.093333pt;}
.y10{bottom:887.973333pt;}
.y39{bottom:888.773333pt;}
.y5e{bottom:895.493333pt;}
.y30{bottom:906.373333pt;}
.y38{bottom:911.173333pt;}
.yf{bottom:912.453333pt;}
.y5d{bottom:918.053333pt;}
.ye{bottom:936.933333pt;}
.y5c{bottom:940.453333pt;}
.y2f{bottom:942.373333pt;}
.y37{bottom:944.293333pt;}
.yd{bottom:961.573333pt;}
.y92{bottom:962.853333pt;}
.y36{bottom:966.853333pt;}
.y2e{bottom:967.173333pt;}
.y5b{bottom:976.453333pt;}
.y91{bottom:985.413333pt;}
.yc{bottom:986.053333pt;}
.y5a{bottom:999.013333pt;}
.y35{bottom:999.973333pt;}
.y90{bottom:1007.813333pt;}
.yb{bottom:1010.533333pt;}
.y59{bottom:1021.413333pt;}
.y34{bottom:1032.960000pt;}
.ya{bottom:1035.200000pt;}
.y58{bottom:1044.000000pt;}
.y9{bottom:1059.680000pt;}
.y33{bottom:1060.960000pt;}
.y57{bottom:1066.400000pt;}
.y8{bottom:1084.160000pt;}
.y32{bottom:1088.800000pt;}
.y1{bottom:1101.920000pt;}
.y6{bottom:1121.920000pt;}
.h2{height:20.800000pt;}
.h4{height:44.800000pt;}
.h5{height:52.834688pt;}
.h6{height:59.101875pt;}
.h3{height:63.656250pt;}
.ha{height:65.531250pt;}
.h9{height:74.477812pt;}
.h7{height:84.662813pt;}
.h8{height:338.240000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:17.920000pt;}
.w3{width:129.472000pt;}
.w5{width:793.760000pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x5{left:1.280000pt;}
.x2{left:4.000000pt;}
.x3{left:11.840000pt;}
.x1{left:44.000000pt;}
.x7{left:47.999988pt;}
.x8{left:63.999988pt;}
.x6{left:111.880000pt;}
.xf{left:113.951988pt;}
.x15{left:116.671988pt;}
.xc{left:119.231988pt;}
.x13{left:120.831988pt;}
.x11{left:153.626655pt;}
.xd{left:155.226655pt;}
.x10{left:158.906655pt;}
.xe{left:172.986655pt;}
.x12{left:280.386655pt;}
.xb{left:286.466655pt;}
.x14{left:311.266655pt;}
.xa{left:319.426655pt;}
.x9{left:369.186655pt;}
.x4{left:503.133333pt;}
}




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