
    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_99f271d3ffe3a31afa15d4df.woff')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_ebfbcfc873cd83b6186872ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_54f5e880d99b5704f9049222.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_529aca805d20a590c70bfae1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_bd46f1c48656981be871868f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_2b6d933e833e6ea0079c51c3.woff')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_0b3de635c210525718fd3441.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_50521d7aa30d2d366f72f90c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.296000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.060000px;}
.ls4{letter-spacing:1.200000px;}
.ls5{letter-spacing:6.660000px;}
.ls1{letter-spacing:63.900000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-60.000000px;}
.ws0{word-spacing:-21.000000px;}
.ws3{word-spacing:-19.704000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-2.152800px;}
._1{margin-left:-1.074000px;}
._0{width:1.008000px;}
._3{width:2.997600px;}
._1c{width:4.473600px;}
._1d{width:5.716800px;}
._23{width:7.464000px;}
._25{width:8.952000px;}
._11{width:10.080000px;}
._30{width:11.136000px;}
._10{width:12.148800px;}
._1e{width:13.272000px;}
._22{width:15.133200px;}
._9{width:16.432800px;}
._20{width:17.569200px;}
._21{width:18.784800px;}
._1f{width:19.942800px;}
._15{width:22.687200px;}
._24{width:23.731200px;}
._29{width:24.748800px;}
._13{width:26.512800px;}
._12{width:27.940800px;}
._2a{width:29.116800px;}
._31{width:30.240000px;}
._2b{width:32.316000px;}
._4{width:34.356000px;}
._5{width:35.835600px;}
._d{width:36.897600px;}
._c{width:37.905600px;}
._14{width:41.097600px;}
._a{width:42.906000px;}
._b{width:44.086800px;}
._f{width:45.121200px;}
._e{width:46.168800px;}
._7{width:47.646000px;}
._6{width:48.741600px;}
._8{width:50.116800px;}
._1b{width:51.381600px;}
._26{width:54.820800px;}
._27{width:58.414800px;}
._2e{width:74.392800px;}
._1a{width:78.420000px;}
._18{width:90.184800px;}
._19{width:91.339200px;}
._16{width:97.240800px;}
._17{width:98.301600px;}
._2f{width:122.856000px;}
._28{width:126.150000px;}
._2c{width:156.858000px;}
._2d{width:220.044000px;}
.fc1{color:transparent;}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs1{font-size:81.600000px;}
.fs0{font-size:84.000000px;}
.y59{bottom:-17.100000px;}
.y0{bottom:0.000000px;}
.y5{bottom:13.237500px;}
.y31{bottom:16.515000px;}
.y30{bottom:17.100000px;}
.y56{bottom:17.107500px;}
.y47{bottom:17.385000px;}
.y39{bottom:17.400000px;}
.y4{bottom:30.600000px;}
.y46{bottom:35.385000px;}
.y2f{bottom:52.815000px;}
.y3f{bottom:53.400000px;}
.y55{bottom:53.437500px;}
.y43{bottom:53.685000px;}
.y4b{bottom:53.700000px;}
.y38{bottom:53.737500px;}
.y45{bottom:71.730000px;}
.y3{bottom:79.837500px;}
.y3e{bottom:89.700000px;}
.y4a{bottom:89.730000px;}
.y37{bottom:89.737500px;}
.y42{bottom:90.030000px;}
.y44{bottom:108.030000px;}
.y5a{bottom:117.937500px;}
.y32{bottom:122.137500px;}
.y54{bottom:125.737500px;}
.y41{bottom:126.030000px;}
.y36{bottom:126.037500px;}
.y3d{bottom:126.045000px;}
.y58{bottom:140.737500px;}
.y21{bottom:141.037500px;}
.y4d{bottom:149.137500px;}
.y53{bottom:162.037500px;}
.y3c{bottom:162.330000px;}
.y35{bottom:162.337500px;}
.y49{bottom:162.345000px;}
.y2c{bottom:176.775000px;}
.y20{bottom:177.375000px;}
.y57{bottom:180.337500px;}
.y34{bottom:198.337500px;}
.y3b{bottom:198.345000px;}
.y52{bottom:198.367500px;}
.y1f{bottom:213.375000px;}
.y33{bottom:234.682500px;}
.y1e{bottom:249.675000px;}
.y51{bottom:270.682500px;}
.y1d{bottom:285.975000px;}
.y50{bottom:306.982500px;}
.y2b{bottom:321.375000px;}
.y1c{bottom:321.975000px;}
.y4f{bottom:343.267500px;}
.y1b{bottom:357.705000px;}
.y2a{bottom:358.305000px;}
.y2e{bottom:376.605000px;}
.y4e{bottom:379.612500px;}
.y1a{bottom:394.605000px;}
.y19{bottom:430.920000px;}
.y18{bottom:466.905000px;}
.y17{bottom:503.205000px;}
.y5e{bottom:538.950000px;}
.y16{bottom:539.550000px;}
.y4c{bottom:572.850000px;}
.y15{bottom:575.850000px;}
.y48{bottom:592.350000px;}
.y14{bottom:611.850000px;}
.y2d{bottom:647.550000px;}
.y13{bottom:648.150000px;}
.y5d{bottom:683.880000px;}
.y12{bottom:684.480000px;}
.y11{bottom:720.780000px;}
.y10{bottom:756.780000px;}
.y40{bottom:774.195000px;}
.y29{bottom:792.480000px;}
.yf{bottom:793.080000px;}
.y5c{bottom:828.795000px;}
.ye{bottom:829.380000px;}
.y5b{bottom:865.125000px;}
.yd{bottom:865.725000px;}
.yc{bottom:901.125000px;}
.y28{bottom:901.725000px;}
.y3a{bottom:920.025000px;}
.yb{bottom:937.425000px;}
.y27{bottom:938.025000px;}
.ya{bottom:973.725000px;}
.y26{bottom:974.325000px;}
.y9{bottom:1010.025000px;}
.y25{bottom:1010.625000px;}
.y8{bottom:1046.070000px;}
.y24{bottom:1046.670000px;}
.y7{bottom:1082.355000px;}
.y23{bottom:1082.955000px;}
.y6{bottom:1118.670000px;}
.y22{bottom:1119.255000px;}
.y2{bottom:1187.100000px;}
.y1{bottom:1211.100000px;}
.hf{height:3.900000px;}
.h4{height:45.300000px;}
.h6{height:58.898438px;}
.he{height:61.670545px;}
.h5{height:68.947266px;}
.h8{height:72.300000px;}
.h3{height:79.980469px;}
.h7{height:82.441406px;}
.h2{height:84.656250px;}
.hb{height:144.937500px;}
.hc{height:181.230000px;}
.ha{height:217.245000px;}
.h9{height:253.575000px;}
.hd{height:398.505000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w8{width:2.700000px;}
.w9{width:3.000000px;}
.w2{width:45.600000px;}
.w5{width:148.237500px;}
.w4{width:162.075000px;}
.w3{width:165.945000px;}
.w6{width:222.075000px;}
.w7{width:689.025000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.785000px;}
.x19{left:9.000000px;}
.x17{left:10.500000px;}
.x1f{left:12.300000px;}
.x24{left:13.500000px;}
.x22{left:15.900000px;}
.x1b{left:18.300000px;}
.x1d{left:20.700000px;}
.x28{left:21.885000px;}
.x26{left:23.700000px;}
.x20{left:24.945000px;}
.x25{left:27.600000px;}
.x2a{left:29.100000px;}
.x12{left:31.500000px;}
.x23{left:33.000000px;}
.x18{left:34.792500px;}
.xc{left:36.592500px;}
.x10{left:39.045000px;}
.x27{left:40.800000px;}
.x1c{left:43.200000px;}
.xf{left:44.430000px;}
.x15{left:48.000000px;}
.x2b{left:49.237500px;}
.x29{left:52.485000px;}
.x2c{left:54.037500px;}
.x21{left:58.245000px;}
.x13{left:74.100000px;}
.x1a{left:81.045000px;}
.xd{left:82.837500px;}
.x16{left:111.030000px;}
.xb{left:120.037500px;}
.x3{left:127.537500px;}
.x1{left:139.537500px;}
.x31{left:159.630000px;}
.x6{left:168.645000px;}
.xa{left:180.675000px;}
.x5{left:186.075000px;}
.x30{left:233.775000px;}
.xe{left:286.575000px;}
.x9{left:334.320000px;}
.x8{left:341.520000px;}
.x32{left:407.505000px;}
.x2{left:414.105000px;}
.x11{left:449.250000px;}
.x7{left:478.350000px;}
.x14{left:598.095000px;}
.x2d{left:818.070000px;}
.x2e{left:822.870000px;}
.x2f{left:827.670000px;}
.x4{left:838.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.152000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls4{letter-spacing:1.066667pt;}
.ls5{letter-spacing:5.920000pt;}
.ls1{letter-spacing:56.800000pt;}
.ws2{word-spacing:-53.333333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws3{word-spacing:-17.514667pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-1.913600pt;}
._1{margin-left:-0.954667pt;}
._0{width:0.896000pt;}
._3{width:2.664533pt;}
._1c{width:3.976533pt;}
._1d{width:5.081600pt;}
._23{width:6.634667pt;}
._25{width:7.957333pt;}
._11{width:8.960000pt;}
._30{width:9.898667pt;}
._10{width:10.798933pt;}
._1e{width:11.797333pt;}
._22{width:13.451733pt;}
._9{width:14.606933pt;}
._20{width:15.617067pt;}
._21{width:16.697600pt;}
._1f{width:17.726933pt;}
._15{width:20.166400pt;}
._24{width:21.094400pt;}
._29{width:21.998933pt;}
._13{width:23.566933pt;}
._12{width:24.836267pt;}
._2a{width:25.881600pt;}
._31{width:26.880000pt;}
._2b{width:28.725333pt;}
._4{width:30.538667pt;}
._5{width:31.853867pt;}
._d{width:32.797867pt;}
._c{width:33.693867pt;}
._14{width:36.531200pt;}
._a{width:38.138667pt;}
._b{width:39.188267pt;}
._f{width:40.107733pt;}
._e{width:41.038933pt;}
._7{width:42.352000pt;}
._6{width:43.325867pt;}
._8{width:44.548267pt;}
._1b{width:45.672533pt;}
._26{width:48.729600pt;}
._27{width:51.924267pt;}
._2e{width:66.126933pt;}
._1a{width:69.706667pt;}
._18{width:80.164267pt;}
._19{width:81.190400pt;}
._16{width:86.436267pt;}
._17{width:87.379200pt;}
._2f{width:109.205333pt;}
._28{width:112.133333pt;}
._2c{width:139.429333pt;}
._2d{width:195.594667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:72.533333pt;}
.fs0{font-size:74.666667pt;}
.y59{bottom:-15.200000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:11.766667pt;}
.y31{bottom:14.680000pt;}
.y30{bottom:15.200000pt;}
.y56{bottom:15.206667pt;}
.y47{bottom:15.453333pt;}
.y39{bottom:15.466667pt;}
.y4{bottom:27.200000pt;}
.y46{bottom:31.453333pt;}
.y2f{bottom:46.946667pt;}
.y3f{bottom:47.466667pt;}
.y55{bottom:47.500000pt;}
.y43{bottom:47.720000pt;}
.y4b{bottom:47.733333pt;}
.y38{bottom:47.766667pt;}
.y45{bottom:63.760000pt;}
.y3{bottom:70.966667pt;}
.y3e{bottom:79.733333pt;}
.y4a{bottom:79.760000pt;}
.y37{bottom:79.766667pt;}
.y42{bottom:80.026667pt;}
.y44{bottom:96.026667pt;}
.y5a{bottom:104.833333pt;}
.y32{bottom:108.566667pt;}
.y54{bottom:111.766667pt;}
.y41{bottom:112.026667pt;}
.y36{bottom:112.033333pt;}
.y3d{bottom:112.040000pt;}
.y58{bottom:125.100000pt;}
.y21{bottom:125.366667pt;}
.y4d{bottom:132.566667pt;}
.y53{bottom:144.033333pt;}
.y3c{bottom:144.293333pt;}
.y35{bottom:144.300000pt;}
.y49{bottom:144.306667pt;}
.y2c{bottom:157.133333pt;}
.y20{bottom:157.666667pt;}
.y57{bottom:160.300000pt;}
.y34{bottom:176.300000pt;}
.y3b{bottom:176.306667pt;}
.y52{bottom:176.326667pt;}
.y1f{bottom:189.666667pt;}
.y33{bottom:208.606667pt;}
.y1e{bottom:221.933333pt;}
.y51{bottom:240.606667pt;}
.y1d{bottom:254.200000pt;}
.y50{bottom:272.873333pt;}
.y2b{bottom:285.666667pt;}
.y1c{bottom:286.200000pt;}
.y4f{bottom:305.126667pt;}
.y1b{bottom:317.960000pt;}
.y2a{bottom:318.493333pt;}
.y2e{bottom:334.760000pt;}
.y4e{bottom:337.433333pt;}
.y1a{bottom:350.760000pt;}
.y19{bottom:383.040000pt;}
.y18{bottom:415.026667pt;}
.y17{bottom:447.293333pt;}
.y5e{bottom:479.066667pt;}
.y16{bottom:479.600000pt;}
.y4c{bottom:509.200000pt;}
.y15{bottom:511.866667pt;}
.y48{bottom:526.533333pt;}
.y14{bottom:543.866667pt;}
.y2d{bottom:575.600000pt;}
.y13{bottom:576.133333pt;}
.y5d{bottom:607.893333pt;}
.y12{bottom:608.426667pt;}
.y11{bottom:640.693333pt;}
.y10{bottom:672.693333pt;}
.y40{bottom:688.173333pt;}
.y29{bottom:704.426667pt;}
.yf{bottom:704.960000pt;}
.y5c{bottom:736.706667pt;}
.ye{bottom:737.226667pt;}
.y5b{bottom:769.000000pt;}
.yd{bottom:769.533333pt;}
.yc{bottom:801.000000pt;}
.y28{bottom:801.533333pt;}
.y3a{bottom:817.800000pt;}
.yb{bottom:833.266667pt;}
.y27{bottom:833.800000pt;}
.ya{bottom:865.533333pt;}
.y26{bottom:866.066667pt;}
.y9{bottom:897.800000pt;}
.y25{bottom:898.333333pt;}
.y8{bottom:929.840000pt;}
.y24{bottom:930.373333pt;}
.y7{bottom:962.093333pt;}
.y23{bottom:962.626667pt;}
.y6{bottom:994.373333pt;}
.y22{bottom:994.893333pt;}
.y2{bottom:1055.200000pt;}
.y1{bottom:1076.533333pt;}
.hf{height:3.466667pt;}
.h4{height:40.266667pt;}
.h6{height:52.354167pt;}
.he{height:54.818262pt;}
.h5{height:61.286458pt;}
.h8{height:64.266667pt;}
.h3{height:71.093750pt;}
.h7{height:73.281250pt;}
.h2{height:75.250000pt;}
.hb{height:128.833333pt;}
.hc{height:161.093333pt;}
.ha{height:193.106667pt;}
.h9{height:225.400000pt;}
.hd{height:354.226667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w8{width:2.400000pt;}
.w9{width:2.666667pt;}
.w2{width:40.533333pt;}
.w5{width:131.766667pt;}
.w4{width:144.066667pt;}
.w3{width:147.506667pt;}
.w6{width:197.400000pt;}
.w7{width:612.466667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.920000pt;}
.x19{left:8.000000pt;}
.x17{left:9.333333pt;}
.x1f{left:10.933333pt;}
.x24{left:12.000000pt;}
.x22{left:14.133333pt;}
.x1b{left:16.266667pt;}
.x1d{left:18.400000pt;}
.x28{left:19.453333pt;}
.x26{left:21.066667pt;}
.x20{left:22.173333pt;}
.x25{left:24.533333pt;}
.x2a{left:25.866667pt;}
.x12{left:28.000000pt;}
.x23{left:29.333333pt;}
.x18{left:30.926667pt;}
.xc{left:32.526667pt;}
.x10{left:34.706667pt;}
.x27{left:36.266667pt;}
.x1c{left:38.400000pt;}
.xf{left:39.493333pt;}
.x15{left:42.666667pt;}
.x2b{left:43.766667pt;}
.x29{left:46.653333pt;}
.x2c{left:48.033333pt;}
.x21{left:51.773333pt;}
.x13{left:65.866667pt;}
.x1a{left:72.040000pt;}
.xd{left:73.633333pt;}
.x16{left:98.693333pt;}
.xb{left:106.700000pt;}
.x3{left:113.366667pt;}
.x1{left:124.033333pt;}
.x31{left:141.893333pt;}
.x6{left:149.906667pt;}
.xa{left:160.600000pt;}
.x5{left:165.400000pt;}
.x30{left:207.800000pt;}
.xe{left:254.733333pt;}
.x9{left:297.173333pt;}
.x8{left:303.573333pt;}
.x32{left:362.226667pt;}
.x2{left:368.093333pt;}
.x11{left:399.333333pt;}
.x7{left:425.200000pt;}
.x14{left:531.640000pt;}
.x2d{left:727.173333pt;}
.x2e{left:731.440000pt;}
.x2f{left:735.706667pt;}
.x4{left:745.066667pt;}
}




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