
    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_8165282cf4de2b0e7f0eed61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_05f36564305ffe7629425e0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_d01eb4e38f8452c0f3ace792.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_24715e81d5862aceb280c128.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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;}
.lsd{letter-spacing:-0.477792px;}
.lsc{letter-spacing:-0.459648px;}
.lsb{letter-spacing:-0.417312px;}
.lsa{letter-spacing:-0.381024px;}
.ls0{letter-spacing:-0.338688px;}
.ls2{letter-spacing:-0.320544px;}
.ls5{letter-spacing:-0.302400px;}
.ls6{letter-spacing:-0.260064px;}
.ls7{letter-spacing:-0.241920px;}
.ls8{letter-spacing:-0.223776px;}
.lse{letter-spacing:-0.181440px;}
.ls9{letter-spacing:-0.175392px;}
.ls4{letter-spacing:-0.157248px;}
.ls3{letter-spacing:-0.145152px;}
.ls1{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.974848px;}
.ws4{word-spacing:-14.962752px;}
.wsb{word-spacing:-14.944608px;}
.wse{word-spacing:-14.938560px;}
.ws9{word-spacing:-14.896224px;}
.ws7{word-spacing:-14.878080px;}
.wsc{word-spacing:-14.859936px;}
.ws5{word-spacing:-14.817600px;}
.ws2{word-spacing:-14.799456px;}
.ws0{word-spacing:-14.781312px;}
.ws6{word-spacing:-14.738976px;}
.wsa{word-spacing:-14.660352px;}
.wsd{word-spacing:-14.642208px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-10.981440px;}
._1{margin-left:-1.028160px;}
._0{width:1.007568px;}
._2{width:848.880000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.420000px;}
.y1e{bottom:3.540000px;}
.y35{bottom:3.600000px;}
.y6d{bottom:3.720000px;}
.y78{bottom:3.780000px;}
.y84{bottom:3.840000px;}
.y92{bottom:3.900000px;}
.y7e{bottom:3.960000px;}
.y73{bottom:4.020000px;}
.y45{bottom:4.080000px;}
.y4c{bottom:4.140000px;}
.y67{bottom:4.200000px;}
.y52{bottom:4.320000px;}
.y24{bottom:4.380000px;}
.y8{bottom:4.440000px;}
.ye{bottom:4.500000px;}
.y14{bottom:4.560000px;}
.y1a{bottom:4.620000px;}
.y58{bottom:4.680000px;}
.y65{bottom:4.740000px;}
.y3f{bottom:4.800000px;}
.y8b{bottom:4.860000px;}
.y96{bottom:6.900000px;}
.y99{bottom:8.340000px;}
.y4{bottom:10.140000px;}
.y2f{bottom:11.700000px;}
.y2b{bottom:12.060000px;}
.y20{bottom:12.180000px;}
.y37{bottom:12.240000px;}
.y6b{bottom:12.360000px;}
.y82{bottom:12.480000px;}
.y90{bottom:12.540000px;}
.y7c{bottom:12.600000px;}
.y71{bottom:12.660000px;}
.ya{bottom:12.720000px;}
.y4a{bottom:12.780000px;}
.y8d{bottom:12.840000px;}
.y22{bottom:13.020000px;}
.y40{bottom:13.080000px;}
.y10{bottom:13.140000px;}
.y16{bottom:13.200000px;}
.y7a{bottom:13.260000px;}
.y86{bottom:13.320000px;}
.y3e{bottom:13.440000px;}
.y89{bottom:13.500000px;}
.y97{bottom:15.540000px;}
.y61{bottom:19.080000px;}
.y29{bottom:20.700000px;}
.y1c{bottom:20.820000px;}
.y33{bottom:20.880000px;}
.y6c{bottom:21.000000px;}
.y76{bottom:21.060000px;}
.y83{bottom:21.120000px;}
.y91{bottom:21.180000px;}
.y7d{bottom:21.240000px;}
.y72{bottom:21.300000px;}
.y44{bottom:21.360000px;}
.y48{bottom:21.420000px;}
.y8e{bottom:21.480000px;}
.y51{bottom:21.600000px;}
.y23{bottom:21.660000px;}
.y6{bottom:21.720000px;}
.yc{bottom:21.780000px;}
.y12{bottom:21.840000px;}
.y18{bottom:21.900000px;}
.y57{bottom:21.960000px;}
.y64{bottom:22.020000px;}
.y3d{bottom:22.080000px;}
.y8a{bottom:22.140000px;}
.y95{bottom:24.180000px;}
.y62{bottom:27.720000px;}
.y2a{bottom:28.980000px;}
.y2e{bottom:29.340000px;}
.y1f{bottom:29.460000px;}
.y36{bottom:29.520000px;}
.y42{bottom:30.000000px;}
.y49{bottom:30.060000px;}
.y4e{bottom:30.240000px;}
.y39{bottom:30.300000px;}
.y9{bottom:30.360000px;}
.yf{bottom:30.420000px;}
.y15{bottom:30.480000px;}
.y5a{bottom:30.600000px;}
.ya9{bottom:30.720000px;}
.y60{bottom:36.360000px;}
.y2c{bottom:37.620000px;}
.y1d{bottom:37.740000px;}
.y9d{bottom:37.980000px;}
.y31{bottom:38.100000px;}
.y34{bottom:38.160000px;}
.y77{bottom:38.340000px;}
.y7{bottom:38.640000px;}
.y4b{bottom:38.700000px;}
.y50{bottom:38.880000px;}
.y3b{bottom:38.940000px;}
.y26{bottom:39.000000px;}
.yd{bottom:39.060000px;}
.y13{bottom:39.120000px;}
.y19{bottom:39.180000px;}
.y54{bottom:39.240000px;}
.ya5{bottom:39.360000px;}
.y46{bottom:47.280000px;}
.y59{bottom:47.880000px;}
.ya8{bottom:48.000000px;}
.y9f{bottom:55.440000px;}
.y43{bottom:55.920000px;}
.y4f{bottom:56.160000px;}
.y3a{bottom:56.220000px;}
.ya1{bottom:56.280000px;}
.y56{bottom:56.520000px;}
.ya7{bottom:64.920000px;}
.y55{bottom:73.440000px;}
.ya4{bottom:73.560000px;}
.ya6{bottom:82.200000px;}
.ya3{bottom:90.840000px;}
.ya2{bottom:108.120000px;}
.y8f{bottom:118.500000px;}
.y47{bottom:121.500000px;}
.y8c{bottom:156.000000px;}
.y41{bottom:177.000000px;}
.y88{bottom:193.500000px;}
.y87{bottom:232.500000px;}
.y3c{bottom:249.000000px;}
.y85{bottom:270.000000px;}
.y38{bottom:304.500000px;}
.y81{bottom:309.000000px;}
.y80{bottom:346.500000px;}
.y32{bottom:378.000000px;}
.y7f{bottom:384.000000px;}
.y7b{bottom:423.000000px;}
.y30{bottom:433.500000px;}
.y79{bottom:460.500000px;}
.yab{bottom:463.320000px;}
.y28{bottom:490.500000px;}
.y75{bottom:499.500000px;}
.yaa{bottom:501.480000px;}
.yc7{bottom:507.600000px;}
.yc6{bottom:527.400000px;}
.ya0{bottom:537.000000px;}
.y27{bottom:544.500000px;}
.yc5{bottom:544.680000px;}
.y74{bottom:555.000000px;}
.yc4{bottom:561.960000px;}
.yc3{bottom:579.240000px;}
.y70{bottom:592.500000px;}
.yc2{bottom:596.520000px;}
.y25{bottom:600.000000px;}
.yc1{bottom:613.800000px;}
.y6f{bottom:630.000000px;}
.yc0{bottom:631.080000px;}
.ybf{bottom:648.360000px;}
.y6e{bottom:651.000000px;}
.y21{bottom:655.500000px;}
.ybe{bottom:665.640000px;}
.y9e{bottom:666.000000px;}
.ybd{bottom:682.920000px;}
.y6a{bottom:690.000000px;}
.y1b{bottom:694.500000px;}
.ybc{bottom:700.200000px;}
.ybb{bottom:717.120000px;}
.y69{bottom:727.500000px;}
.yba{bottom:734.400000px;}
.y9c{bottom:742.500000px;}
.y17{bottom:748.500000px;}
.yb9{bottom:751.680000px;}
.y68{bottom:766.500000px;}
.yb8{bottom:768.960000px;}
.yb7{bottom:786.240000px;}
.y9b{bottom:796.500000px;}
.yb6{bottom:803.520000px;}
.y11{bottom:804.000000px;}
.y5d{bottom:804.600000px;}
.yb5{bottom:820.800000px;}
.y66{bottom:825.000000px;}
.yb4{bottom:838.080000px;}
.y5c{bottom:842.760000px;}
.y9a{bottom:852.000000px;}
.yb3{bottom:855.360000px;}
.yb{bottom:859.500000px;}
.y63{bottom:862.500000px;}
.yb2{bottom:872.640000px;}
.y5b{bottom:880.920000px;}
.yb1{bottom:889.920000px;}
.yb0{bottom:906.840000px;}
.y98{bottom:907.500000px;}
.y5{bottom:915.000000px;}
.y53{bottom:918.000000px;}
.yaf{bottom:924.120000px;}
.y94{bottom:925.500000px;}
.yae{bottom:941.400000px;}
.yad{bottom:958.680000px;}
.y3{bottom:970.500000px;}
.yac{bottom:975.960000px;}
.y93{bottom:993.240000px;}
.y4d{bottom:1008.000000px;}
.y5f{bottom:1010.520000px;}
.y2{bottom:1027.800000px;}
.y5e{bottom:1065.600000px;}
.y1{bottom:1065.960000px;}
.hd{height:16.500000px;}
.ha{height:19.500000px;}
.h2{height:31.500000px;}
.h6{height:36.000000px;}
.hb{height:37.500000px;}
.h1{height:40.989375px;}
.hc{height:42.000000px;}
.h3{height:42.022969px;}
.hf{height:47.988281px;}
.h5{height:52.500000px;}
.h4{height:54.000000px;}
.h9{height:66.000000px;}
.h7{height:70.500000px;}
.h8{height:88.500000px;}
.he{height:123.000000px;}
.h0{height:1188.000000px;}
.w1{width:61.500000px;}
.w8{width:67.500000px;}
.w6{width:120.000000px;}
.w2{width:136.500000px;}
.wa{width:147.000000px;}
.w7{width:180.000000px;}
.w4{width:217.500000px;}
.wb{width:237.000000px;}
.w9{width:306.000000px;}
.w3{width:339.000000px;}
.w5{width:352.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:3.719964px;}
.x7{left:4.799928px;}
.x2{left:7.200072px;}
.x4{left:8.400144px;}
.x1{left:108.000000px;}
.x3{left:168.000000px;}
.xb{left:174.000000px;}
.x5{left:303.000000px;}
.xc{left:478.500000px;}
.x9{left:519.000000px;}
.xd{left:624.000000px;}
.xa{left:637.500000px;}
.x6{left:640.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.424704pt;}
.lsc{letter-spacing:-0.408576pt;}
.lsb{letter-spacing:-0.370944pt;}
.lsa{letter-spacing:-0.338688pt;}
.ls0{letter-spacing:-0.301056pt;}
.ls2{letter-spacing:-0.284928pt;}
.ls5{letter-spacing:-0.268800pt;}
.ls6{letter-spacing:-0.231168pt;}
.ls7{letter-spacing:-0.215040pt;}
.ls8{letter-spacing:-0.198912pt;}
.lse{letter-spacing:-0.161280pt;}
.ls9{letter-spacing:-0.155904pt;}
.ls4{letter-spacing:-0.139776pt;}
.ls3{letter-spacing:-0.129024pt;}
.ls1{letter-spacing:0.000000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.310976pt;}
.ws4{word-spacing:-13.300224pt;}
.wsb{word-spacing:-13.284096pt;}
.wse{word-spacing:-13.278720pt;}
.ws9{word-spacing:-13.241088pt;}
.ws7{word-spacing:-13.224960pt;}
.wsc{word-spacing:-13.208832pt;}
.ws5{word-spacing:-13.171200pt;}
.ws2{word-spacing:-13.155072pt;}
.ws0{word-spacing:-13.138944pt;}
.ws6{word-spacing:-13.101312pt;}
.wsa{word-spacing:-13.031424pt;}
.wsd{word-spacing:-13.015296pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-9.761280pt;}
._1{margin-left:-0.913920pt;}
._0{width:0.895616pt;}
._2{width:754.560000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:3.040000pt;}
.y1e{bottom:3.146667pt;}
.y35{bottom:3.200000pt;}
.y6d{bottom:3.306667pt;}
.y78{bottom:3.360000pt;}
.y84{bottom:3.413333pt;}
.y92{bottom:3.466667pt;}
.y7e{bottom:3.520000pt;}
.y73{bottom:3.573333pt;}
.y45{bottom:3.626667pt;}
.y4c{bottom:3.680000pt;}
.y67{bottom:3.733333pt;}
.y52{bottom:3.840000pt;}
.y24{bottom:3.893333pt;}
.y8{bottom:3.946667pt;}
.ye{bottom:4.000000pt;}
.y14{bottom:4.053333pt;}
.y1a{bottom:4.106667pt;}
.y58{bottom:4.160000pt;}
.y65{bottom:4.213333pt;}
.y3f{bottom:4.266667pt;}
.y8b{bottom:4.320000pt;}
.y96{bottom:6.133333pt;}
.y99{bottom:7.413333pt;}
.y4{bottom:9.013333pt;}
.y2f{bottom:10.400000pt;}
.y2b{bottom:10.720000pt;}
.y20{bottom:10.826667pt;}
.y37{bottom:10.880000pt;}
.y6b{bottom:10.986667pt;}
.y82{bottom:11.093333pt;}
.y90{bottom:11.146667pt;}
.y7c{bottom:11.200000pt;}
.y71{bottom:11.253333pt;}
.ya{bottom:11.306667pt;}
.y4a{bottom:11.360000pt;}
.y8d{bottom:11.413333pt;}
.y22{bottom:11.573333pt;}
.y40{bottom:11.626667pt;}
.y10{bottom:11.680000pt;}
.y16{bottom:11.733333pt;}
.y7a{bottom:11.786667pt;}
.y86{bottom:11.840000pt;}
.y3e{bottom:11.946667pt;}
.y89{bottom:12.000000pt;}
.y97{bottom:13.813333pt;}
.y61{bottom:16.960000pt;}
.y29{bottom:18.400000pt;}
.y1c{bottom:18.506667pt;}
.y33{bottom:18.560000pt;}
.y6c{bottom:18.666667pt;}
.y76{bottom:18.720000pt;}
.y83{bottom:18.773333pt;}
.y91{bottom:18.826667pt;}
.y7d{bottom:18.880000pt;}
.y72{bottom:18.933333pt;}
.y44{bottom:18.986667pt;}
.y48{bottom:19.040000pt;}
.y8e{bottom:19.093333pt;}
.y51{bottom:19.200000pt;}
.y23{bottom:19.253333pt;}
.y6{bottom:19.306667pt;}
.yc{bottom:19.360000pt;}
.y12{bottom:19.413333pt;}
.y18{bottom:19.466667pt;}
.y57{bottom:19.520000pt;}
.y64{bottom:19.573333pt;}
.y3d{bottom:19.626667pt;}
.y8a{bottom:19.680000pt;}
.y95{bottom:21.493333pt;}
.y62{bottom:24.640000pt;}
.y2a{bottom:25.760000pt;}
.y2e{bottom:26.080000pt;}
.y1f{bottom:26.186667pt;}
.y36{bottom:26.240000pt;}
.y42{bottom:26.666667pt;}
.y49{bottom:26.720000pt;}
.y4e{bottom:26.880000pt;}
.y39{bottom:26.933333pt;}
.y9{bottom:26.986667pt;}
.yf{bottom:27.040000pt;}
.y15{bottom:27.093333pt;}
.y5a{bottom:27.200000pt;}
.ya9{bottom:27.306667pt;}
.y60{bottom:32.320000pt;}
.y2c{bottom:33.440000pt;}
.y1d{bottom:33.546667pt;}
.y9d{bottom:33.760000pt;}
.y31{bottom:33.866667pt;}
.y34{bottom:33.920000pt;}
.y77{bottom:34.080000pt;}
.y7{bottom:34.346667pt;}
.y4b{bottom:34.400000pt;}
.y50{bottom:34.560000pt;}
.y3b{bottom:34.613333pt;}
.y26{bottom:34.666667pt;}
.yd{bottom:34.720000pt;}
.y13{bottom:34.773333pt;}
.y19{bottom:34.826667pt;}
.y54{bottom:34.880000pt;}
.ya5{bottom:34.986667pt;}
.y46{bottom:42.026667pt;}
.y59{bottom:42.560000pt;}
.ya8{bottom:42.666667pt;}
.y9f{bottom:49.280000pt;}
.y43{bottom:49.706667pt;}
.y4f{bottom:49.920000pt;}
.y3a{bottom:49.973333pt;}
.ya1{bottom:50.026667pt;}
.y56{bottom:50.240000pt;}
.ya7{bottom:57.706667pt;}
.y55{bottom:65.280000pt;}
.ya4{bottom:65.386667pt;}
.ya6{bottom:73.066667pt;}
.ya3{bottom:80.746667pt;}
.ya2{bottom:96.106667pt;}
.y8f{bottom:105.333333pt;}
.y47{bottom:108.000000pt;}
.y8c{bottom:138.666667pt;}
.y41{bottom:157.333333pt;}
.y88{bottom:172.000000pt;}
.y87{bottom:206.666667pt;}
.y3c{bottom:221.333333pt;}
.y85{bottom:240.000000pt;}
.y38{bottom:270.666667pt;}
.y81{bottom:274.666667pt;}
.y80{bottom:308.000000pt;}
.y32{bottom:336.000000pt;}
.y7f{bottom:341.333333pt;}
.y7b{bottom:376.000000pt;}
.y30{bottom:385.333333pt;}
.y79{bottom:409.333333pt;}
.yab{bottom:411.840000pt;}
.y28{bottom:436.000000pt;}
.y75{bottom:444.000000pt;}
.yaa{bottom:445.760000pt;}
.yc7{bottom:451.200000pt;}
.yc6{bottom:468.800000pt;}
.ya0{bottom:477.333333pt;}
.y27{bottom:484.000000pt;}
.yc5{bottom:484.160000pt;}
.y74{bottom:493.333333pt;}
.yc4{bottom:499.520000pt;}
.yc3{bottom:514.880000pt;}
.y70{bottom:526.666667pt;}
.yc2{bottom:530.240000pt;}
.y25{bottom:533.333333pt;}
.yc1{bottom:545.600000pt;}
.y6f{bottom:560.000000pt;}
.yc0{bottom:560.960000pt;}
.ybf{bottom:576.320000pt;}
.y6e{bottom:578.666667pt;}
.y21{bottom:582.666667pt;}
.ybe{bottom:591.680000pt;}
.y9e{bottom:592.000000pt;}
.ybd{bottom:607.040000pt;}
.y6a{bottom:613.333333pt;}
.y1b{bottom:617.333333pt;}
.ybc{bottom:622.400000pt;}
.ybb{bottom:637.440000pt;}
.y69{bottom:646.666667pt;}
.yba{bottom:652.800000pt;}
.y9c{bottom:660.000000pt;}
.y17{bottom:665.333333pt;}
.yb9{bottom:668.160000pt;}
.y68{bottom:681.333333pt;}
.yb8{bottom:683.520000pt;}
.yb7{bottom:698.880000pt;}
.y9b{bottom:708.000000pt;}
.yb6{bottom:714.240000pt;}
.y11{bottom:714.666667pt;}
.y5d{bottom:715.200000pt;}
.yb5{bottom:729.600000pt;}
.y66{bottom:733.333333pt;}
.yb4{bottom:744.960000pt;}
.y5c{bottom:749.120000pt;}
.y9a{bottom:757.333333pt;}
.yb3{bottom:760.320000pt;}
.yb{bottom:764.000000pt;}
.y63{bottom:766.666667pt;}
.yb2{bottom:775.680000pt;}
.y5b{bottom:783.040000pt;}
.yb1{bottom:791.040000pt;}
.yb0{bottom:806.080000pt;}
.y98{bottom:806.666667pt;}
.y5{bottom:813.333333pt;}
.y53{bottom:816.000000pt;}
.yaf{bottom:821.440000pt;}
.y94{bottom:822.666667pt;}
.yae{bottom:836.800000pt;}
.yad{bottom:852.160000pt;}
.y3{bottom:862.666667pt;}
.yac{bottom:867.520000pt;}
.y93{bottom:882.880000pt;}
.y4d{bottom:896.000000pt;}
.y5f{bottom:898.240000pt;}
.y2{bottom:913.600000pt;}
.y5e{bottom:947.200000pt;}
.y1{bottom:947.520000pt;}
.hd{height:14.666667pt;}
.ha{height:17.333333pt;}
.h2{height:28.000000pt;}
.h6{height:32.000000pt;}
.hb{height:33.333333pt;}
.h1{height:36.435000pt;}
.hc{height:37.333333pt;}
.h3{height:37.353750pt;}
.hf{height:42.656250pt;}
.h5{height:46.666667pt;}
.h4{height:48.000000pt;}
.h9{height:58.666667pt;}
.h7{height:62.666667pt;}
.h8{height:78.666667pt;}
.he{height:109.333333pt;}
.h0{height:1056.000000pt;}
.w1{width:54.666667pt;}
.w8{width:60.000000pt;}
.w6{width:106.666667pt;}
.w2{width:121.333333pt;}
.wa{width:130.666667pt;}
.w7{width:160.000000pt;}
.w4{width:193.333333pt;}
.wb{width:210.666667pt;}
.w9{width:272.000000pt;}
.w3{width:301.333333pt;}
.w5{width:313.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:3.306635pt;}
.x7{left:4.266603pt;}
.x2{left:6.400064pt;}
.x4{left:7.466795pt;}
.x1{left:96.000000pt;}
.x3{left:149.333333pt;}
.xb{left:154.666667pt;}
.x5{left:269.333333pt;}
.xc{left:425.333333pt;}
.x9{left:461.333333pt;}
.xd{left:554.666667pt;}
.xa{left:566.666667pt;}
.x6{left:569.333333pt;}
}




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