
    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_92ababc0441915f9466c2b4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_94331637d229401f2a4c3d3b.woff2')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_5bf1cff0dba53ff10f2d9d39.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_95092fb24b47dfe70ba24ead.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_04b582836bcb3a0051e54862.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_9c08997c99a6e3e8d242245c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_674ab7b45ecc3bcf6722276a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e7a0e9056cfb04562c9e72e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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:-75.600000px;}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.414600px;}
.ls2{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.305280px;}
.ls9{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.360000px;}
.ls6{letter-spacing:7.920000px;}
.ls8{letter-spacing:120.960000px;}
.ls3{letter-spacing:523.620000px;}
.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;}
}
.ws0{word-spacing:-18.305520px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-5.121120px;}
._c{margin-left:-3.525840px;}
._8{margin-left:-2.235840px;}
._2{margin-left:-1.034880px;}
._6{width:1.069440px;}
._1{width:2.092320px;}
._b{width:3.192480px;}
._9{width:4.482000px;}
._18{width:5.484960px;}
._a{width:6.492240px;}
._7{width:7.608480px;}
._5{width:8.784720px;}
._4{width:9.840240px;}
._e{width:10.851360px;}
._11{width:11.856000px;}
._d{width:13.574880px;}
._12{width:15.525120px;}
._f{width:17.792640px;}
._10{width:19.696320px;}
._17{width:21.767040px;}
._14{width:24.632400px;}
._15{width:27.224640px;}
._16{width:28.533120px;}
._3{width:136.776000px;}
._0{width:1346.016000px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(14,16,26);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:3.600000px;}
.y8e{bottom:20.700000px;}
.y8a{bottom:20.880000px;}
.y87{bottom:21.600000px;}
.y8d{bottom:38.010000px;}
.y89{bottom:38.160000px;}
.y95{bottom:38.700000px;}
.y86{bottom:38.880000px;}
.y92{bottom:55.980000px;}
.y85{bottom:56.160000px;}
.y5{bottom:57.636000px;}
.y4{bottom:76.536000px;}
.y88{bottom:108.216000px;}
.y81{bottom:115.236000px;}
.y6d{bottom:116.136000px;}
.y37{bottom:119.016000px;}
.y80{bottom:134.136000px;}
.y6c{bottom:135.216000px;}
.y36{bottom:138.096000px;}
.y7f{bottom:153.210000px;}
.y6b{bottom:154.110000px;}
.y35{bottom:156.990000px;}
.y7e{bottom:172.110000px;}
.y6a{bottom:173.190000px;}
.y34{bottom:175.890000px;}
.y84{bottom:177.870000px;}
.y7d{bottom:191.190000px;}
.y69{bottom:192.090000px;}
.y33{bottom:194.970000px;}
.y7c{bottom:210.090000px;}
.y68{bottom:210.990000px;}
.y32{bottom:213.870000px;}
.y7b{bottom:228.990000px;}
.y67{bottom:230.070000px;}
.y31{bottom:232.950000px;}
.y7a{bottom:248.070000px;}
.y66{bottom:248.970000px;}
.y30{bottom:251.850000px;}
.y79{bottom:266.970000px;}
.y65{bottom:268.050000px;}
.y83{bottom:269.310000px;}
.y2f{bottom:270.930000px;}
.y78{bottom:286.095000px;}
.y64{bottom:286.995000px;}
.y2e{bottom:289.875000px;}
.y77{bottom:304.995000px;}
.y63{bottom:305.895000px;}
.y2d{bottom:308.775000px;}
.y76{bottom:323.895000px;}
.y62{bottom:324.975000px;}
.y2c{bottom:327.855000px;}
.y75{bottom:342.975000px;}
.y61{bottom:343.875000px;}
.y2b{bottom:346.755000px;}
.y74{bottom:361.875000px;}
.y60{bottom:362.955000px;}
.y2a{bottom:365.835000px;}
.y73{bottom:380.955000px;}
.y5f{bottom:381.855000px;}
.y29{bottom:384.735000px;}
.y72{bottom:399.855000px;}
.y5e{bottom:400.935000px;}
.y28{bottom:403.635000px;}
.y71{bottom:418.935000px;}
.y5d{bottom:419.835000px;}
.y27{bottom:422.715000px;}
.y70{bottom:437.835000px;}
.y5c{bottom:438.735000px;}
.y26{bottom:441.615000px;}
.y6f{bottom:456.735000px;}
.y5b{bottom:457.455000px;}
.y25{bottom:460.695000px;}
.y6e{bottom:475.815000px;}
.y24{bottom:479.595000px;}
.y5a{bottom:494.715000px;}
.y23{bottom:498.495000px;}
.y9a{bottom:509.655000px;}
.y59{bottom:513.795000px;}
.y22{bottom:517.575000px;}
.y99{bottom:526.935000px;}
.y58{bottom:532.695000px;}
.y21{bottom:536.475000px;}
.y98{bottom:544.215000px;}
.y57{bottom:551.595000px;}
.y20{bottom:555.555000px;}
.y97{bottom:561.345000px;}
.y56{bottom:570.705000px;}
.y1f{bottom:574.485000px;}
.y82{bottom:589.245000px;}
.y55{bottom:589.605000px;}
.y96{bottom:593.025000px;}
.y1e{bottom:593.385000px;}
.y54{bottom:608.685000px;}
.y1d{bottom:612.465000px;}
.y53{bottom:627.585000px;}
.y1c{bottom:631.365000px;}
.y52{bottom:646.485000px;}
.y1b{bottom:650.085000px;}
.y51{bottom:665.565000px;}
.y94{bottom:680.865000px;}
.y50{bottom:684.465000px;}
.y1a{bottom:686.985000px;}
.y4f{bottom:703.545000px;}
.y19{bottom:704.265000px;}
.y4e{bottom:722.445000px;}
.y18{bottom:739.365000px;}
.y4d{bottom:741.345000px;}
.y17{bottom:756.645000px;}
.y4c{bottom:760.425000px;}
.y93{bottom:768.525000px;}
.y16{bottom:773.925000px;}
.y4b{bottom:779.325000px;}
.y15{bottom:791.205000px;}
.y4a{bottom:798.405000px;}
.y14{bottom:808.485000px;}
.y49{bottom:817.305000px;}
.y13{bottom:825.585000px;}
.y48{bottom:836.205000px;}
.y12{bottom:842.910000px;}
.y47{bottom:855.330000px;}
.y91{bottom:856.410000px;}
.y11{bottom:860.190000px;}
.y46{bottom:874.230000px;}
.y10{bottom:877.470000px;}
.y45{bottom:893.310000px;}
.yf{bottom:894.750000px;}
.ye{bottom:912.030000px;}
.y44{bottom:912.210000px;}
.yd{bottom:929.130000px;}
.y43{bottom:931.290000px;}
.y90{bottom:944.070000px;}
.yc{bottom:946.410000px;}
.y42{bottom:950.190000px;}
.y41{bottom:969.090000px;}
.yb{bottom:981.330000px;}
.y40{bottom:988.170000px;}
.y3f{bottom:1007.070000px;}
.y8f{bottom:1014.630000px;}
.ya{bottom:1018.410000px;}
.y3e{bottom:1026.150000px;}
.y9{bottom:1037.310000px;}
.y3d{bottom:1045.050000px;}
.y8{bottom:1056.390000px;}
.y3c{bottom:1063.950000px;}
.y7{bottom:1078.350000px;}
.y3b{bottom:1083.030000px;}
.y8c{bottom:1085.190000px;}
.y3a{bottom:1101.930000px;}
.y6{bottom:1120.110000px;}
.y39{bottom:1121.010000px;}
.y38{bottom:1139.940000px;}
.y3{bottom:1160.460000px;}
.y2{bottom:1177.560000px;}
.y1{bottom:1194.840000px;}
.h7{height:41.726953px;}
.ha{height:46.251562px;}
.h8{height:58.651172px;}
.h2{height:60.226875px;}
.h5{height:64.978594px;}
.h6{height:65.010937px;}
.h9{height:66.757500px;}
.h3{height:69.086250px;}
.hc{height:69.660000px;}
.hd{height:69.696000px;}
.he{height:70.560000px;}
.h4{height:70.628906px;}
.hf{height:87.660000px;}
.hb{height:87.840000px;}
.h10{height:87.876000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:191.010000px;}
.w4{width:485.355000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x1{left:108.035987px;}
.x8{left:150.509987px;}
.x3{left:184.529987px;}
.x9{left:243.029987px;}
.xa{left:285.554987px;}
.xc{left:299.055000px;}
.x7{left:303.734987px;}
.x6{left:321.374987px;}
.x5{left:376.094987px;}
.x2{left:432.794987px;}
.x4{left:467.714987px;}
@media print{
.v2{vertical-align:-67.200000pt;}
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.368533pt;}
.ls2{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.271360pt;}
.ls9{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls6{letter-spacing:7.040000pt;}
.ls8{letter-spacing:107.520000pt;}
.ls3{letter-spacing:465.440000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-4.552107pt;}
._c{margin-left:-3.134080pt;}
._8{margin-left:-1.987413pt;}
._2{margin-left:-0.919893pt;}
._6{width:0.950613pt;}
._1{width:1.859840pt;}
._b{width:2.837760pt;}
._9{width:3.984000pt;}
._18{width:4.875520pt;}
._a{width:5.770880pt;}
._7{width:6.763093pt;}
._5{width:7.808640pt;}
._4{width:8.746880pt;}
._e{width:9.645653pt;}
._11{width:10.538667pt;}
._d{width:12.066560pt;}
._12{width:13.800107pt;}
._f{width:15.815680pt;}
._10{width:17.507840pt;}
._17{width:19.348480pt;}
._14{width:21.895467pt;}
._15{width:24.199680pt;}
._16{width:25.362773pt;}
._3{width:121.578667pt;}
._0{width:1196.458667pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:3.200000pt;}
.y8e{bottom:18.400000pt;}
.y8a{bottom:18.560000pt;}
.y87{bottom:19.200000pt;}
.y8d{bottom:33.786667pt;}
.y89{bottom:33.920000pt;}
.y95{bottom:34.400000pt;}
.y86{bottom:34.560000pt;}
.y92{bottom:49.760000pt;}
.y85{bottom:49.920000pt;}
.y5{bottom:51.232000pt;}
.y4{bottom:68.032000pt;}
.y88{bottom:96.192000pt;}
.y81{bottom:102.432000pt;}
.y6d{bottom:103.232000pt;}
.y37{bottom:105.792000pt;}
.y80{bottom:119.232000pt;}
.y6c{bottom:120.192000pt;}
.y36{bottom:122.752000pt;}
.y7f{bottom:136.186667pt;}
.y6b{bottom:136.986667pt;}
.y35{bottom:139.546667pt;}
.y7e{bottom:152.986667pt;}
.y6a{bottom:153.946667pt;}
.y34{bottom:156.346667pt;}
.y84{bottom:158.106667pt;}
.y7d{bottom:169.946667pt;}
.y69{bottom:170.746667pt;}
.y33{bottom:173.306667pt;}
.y7c{bottom:186.746667pt;}
.y68{bottom:187.546667pt;}
.y32{bottom:190.106667pt;}
.y7b{bottom:203.546667pt;}
.y67{bottom:204.506667pt;}
.y31{bottom:207.066667pt;}
.y7a{bottom:220.506667pt;}
.y66{bottom:221.306667pt;}
.y30{bottom:223.866667pt;}
.y79{bottom:237.306667pt;}
.y65{bottom:238.266667pt;}
.y83{bottom:239.386667pt;}
.y2f{bottom:240.826667pt;}
.y78{bottom:254.306667pt;}
.y64{bottom:255.106667pt;}
.y2e{bottom:257.666667pt;}
.y77{bottom:271.106667pt;}
.y63{bottom:271.906667pt;}
.y2d{bottom:274.466667pt;}
.y76{bottom:287.906667pt;}
.y62{bottom:288.866667pt;}
.y2c{bottom:291.426667pt;}
.y75{bottom:304.866667pt;}
.y61{bottom:305.666667pt;}
.y2b{bottom:308.226667pt;}
.y74{bottom:321.666667pt;}
.y60{bottom:322.626667pt;}
.y2a{bottom:325.186667pt;}
.y73{bottom:338.626667pt;}
.y5f{bottom:339.426667pt;}
.y29{bottom:341.986667pt;}
.y72{bottom:355.426667pt;}
.y5e{bottom:356.386667pt;}
.y28{bottom:358.786667pt;}
.y71{bottom:372.386667pt;}
.y5d{bottom:373.186667pt;}
.y27{bottom:375.746667pt;}
.y70{bottom:389.186667pt;}
.y5c{bottom:389.986667pt;}
.y26{bottom:392.546667pt;}
.y6f{bottom:405.986667pt;}
.y5b{bottom:406.626667pt;}
.y25{bottom:409.506667pt;}
.y6e{bottom:422.946667pt;}
.y24{bottom:426.306667pt;}
.y5a{bottom:439.746667pt;}
.y23{bottom:443.106667pt;}
.y9a{bottom:453.026667pt;}
.y59{bottom:456.706667pt;}
.y22{bottom:460.066667pt;}
.y99{bottom:468.386667pt;}
.y58{bottom:473.506667pt;}
.y21{bottom:476.866667pt;}
.y98{bottom:483.746667pt;}
.y57{bottom:490.306667pt;}
.y20{bottom:493.826667pt;}
.y97{bottom:498.973333pt;}
.y56{bottom:507.293333pt;}
.y1f{bottom:510.653333pt;}
.y82{bottom:523.773333pt;}
.y55{bottom:524.093333pt;}
.y96{bottom:527.133333pt;}
.y1e{bottom:527.453333pt;}
.y54{bottom:541.053333pt;}
.y1d{bottom:544.413333pt;}
.y53{bottom:557.853333pt;}
.y1c{bottom:561.213333pt;}
.y52{bottom:574.653333pt;}
.y1b{bottom:577.853333pt;}
.y51{bottom:591.613333pt;}
.y94{bottom:605.213333pt;}
.y50{bottom:608.413333pt;}
.y1a{bottom:610.653333pt;}
.y4f{bottom:625.373333pt;}
.y19{bottom:626.013333pt;}
.y4e{bottom:642.173333pt;}
.y18{bottom:657.213333pt;}
.y4d{bottom:658.973333pt;}
.y17{bottom:672.573333pt;}
.y4c{bottom:675.933333pt;}
.y93{bottom:683.133333pt;}
.y16{bottom:687.933333pt;}
.y4b{bottom:692.733333pt;}
.y15{bottom:703.293333pt;}
.y4a{bottom:709.693333pt;}
.y14{bottom:718.653333pt;}
.y49{bottom:726.493333pt;}
.y13{bottom:733.853333pt;}
.y48{bottom:743.293333pt;}
.y12{bottom:749.253333pt;}
.y47{bottom:760.293333pt;}
.y91{bottom:761.253333pt;}
.y11{bottom:764.613333pt;}
.y46{bottom:777.093333pt;}
.y10{bottom:779.973333pt;}
.y45{bottom:794.053333pt;}
.yf{bottom:795.333333pt;}
.ye{bottom:810.693333pt;}
.y44{bottom:810.853333pt;}
.yd{bottom:825.893333pt;}
.y43{bottom:827.813333pt;}
.y90{bottom:839.173333pt;}
.yc{bottom:841.253333pt;}
.y42{bottom:844.613333pt;}
.y41{bottom:861.413333pt;}
.yb{bottom:872.293333pt;}
.y40{bottom:878.373333pt;}
.y3f{bottom:895.173333pt;}
.y8f{bottom:901.893333pt;}
.ya{bottom:905.253333pt;}
.y3e{bottom:912.133333pt;}
.y9{bottom:922.053333pt;}
.y3d{bottom:928.933333pt;}
.y8{bottom:939.013333pt;}
.y3c{bottom:945.733333pt;}
.y7{bottom:958.533333pt;}
.y3b{bottom:962.693333pt;}
.y8c{bottom:964.613333pt;}
.y3a{bottom:979.493333pt;}
.y6{bottom:995.653333pt;}
.y39{bottom:996.453333pt;}
.y38{bottom:1013.280000pt;}
.y3{bottom:1031.520000pt;}
.y2{bottom:1046.720000pt;}
.y1{bottom:1062.080000pt;}
.h7{height:37.090625pt;}
.ha{height:41.112500pt;}
.h8{height:52.134375pt;}
.h2{height:53.535000pt;}
.h5{height:57.758750pt;}
.h6{height:57.787500pt;}
.h9{height:59.340000pt;}
.h3{height:61.410000pt;}
.hc{height:61.920000pt;}
.hd{height:61.952000pt;}
.he{height:62.720000pt;}
.h4{height:62.781250pt;}
.hf{height:77.920000pt;}
.hb{height:78.080000pt;}
.h10{height:78.112000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:169.786667pt;}
.w4{width:431.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x1{left:96.031988pt;}
.x8{left:133.786655pt;}
.x3{left:164.026655pt;}
.x9{left:216.026655pt;}
.xa{left:253.826655pt;}
.xc{left:265.826667pt;}
.x7{left:269.986655pt;}
.x6{left:285.666655pt;}
.x5{left:334.306655pt;}
.x2{left:384.706655pt;}
.x4{left:415.746655pt;}
}




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