
    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_79845fde6cd51faeeb29ee14.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_68cc70449fb429fdfea6e4de.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.754395;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_55043f964e750ee00ce5e564.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_1369433358d9060669e224ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_a1e6c26c9d722481b1de55d6.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{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;}
}
.ws0{word-spacing:-90.179964px;}
.ws2{word-spacing:-16.559993px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-2.061634px;}
._1{margin-left:-1.006496px;}
._3{width:1.609764px;}
._0{width:3.189526px;}
._e{width:4.770328px;}
._2{width:5.829574px;}
._5{width:7.587753px;}
._4{width:8.812070px;}
._8{width:10.037466px;}
._d{width:11.254175px;}
._f{width:12.707630px;}
._10{width:13.752179px;}
._6{width:15.098711px;}
._12{width:17.613293px;}
._11{width:18.760381px;}
._7{width:20.165152px;}
._b{width:21.280732px;}
._a{width:22.362510px;}
._13{width:23.636592px;}
._14{width:25.190293px;}
._1d{width:26.266205px;}
._1c{width:27.573097px;}
._16{width:30.444908px;}
._15{width:31.727115px;}
._19{width:33.305952px;}
._1b{width:36.197780px;}
._1a{width:37.531778px;}
._1e{width:59.360106px;}
._18{width:195.966987px;}
._c{width:1804.685278px;}
._9{width:1883.933246px;}
.fc3{color:rgb(153,153,153);}
.fc2{color:rgb(192,192,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:53.999978px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:77.759969px;}
.fs1{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y3{bottom:75.900270px;}
.y2{bottom:114.060254px;}
.ya1{bottom:133.860246px;}
.y38{bottom:138.179945px;}
.ybc{bottom:146.280241px;}
.y68{bottom:152.399939px;}
.y9c{bottom:152.760239px;}
.y37{bottom:157.079937px;}
.ybb{bottom:165.180234px;}
.y67{bottom:171.299931px;}
.y9b{bottom:171.840231px;}
.y36{bottom:176.159930px;}
.yba{bottom:184.080226px;}
.y66{bottom:190.379924px;}
.y9a{bottom:190.740224px;}
.y35{bottom:195.059922px;}
.y65{bottom:209.279916px;}
.y99{bottom:209.820216px;}
.yb9{bottom:210.720216px;}
.y34{bottom:213.959914px;}
.y64{bottom:228.359909px;}
.y98{bottom:228.720209px;}
.yb8{bottom:229.620208px;}
.y33{bottom:233.039907px;}
.y63{bottom:247.259901px;}
.y97{bottom:247.620201px;}
.yb7{bottom:248.520201px;}
.y32{bottom:251.939899px;}
.y62{bottom:266.339893px;}
.y96{bottom:266.700193px;}
.y31{bottom:271.019892px;}
.yb6{bottom:275.160190px;}
.y61{bottom:285.239886px;}
.y95{bottom:285.600186px;}
.y30{bottom:289.919884px;}
.yb5{bottom:294.060182px;}
.y60{bottom:304.139878px;}
.y94{bottom:304.680178px;}
.y2f{bottom:308.819876px;}
.yb4{bottom:312.960175px;}
.ye1{bottom:320.160172px;}
.y5f{bottom:323.219871px;}
.y93{bottom:323.580171px;}
.y2e{bottom:327.899869px;}
.ye0{bottom:339.060164px;}
.yb3{bottom:339.420164px;}
.y5e{bottom:342.119863px;}
.y92{bottom:342.660163px;}
.y2d{bottom:346.799861px;}
.ydf{bottom:358.140157px;}
.yb2{bottom:358.500157px;}
.y5d{bottom:361.199856px;}
.y91{bottom:361.560155px;}
.y2c{bottom:365.879854px;}
.yde{bottom:377.040149px;}
.yb1{bottom:377.400149px;}
.y5c{bottom:380.099848px;}
.y90{bottom:380.460148px;}
.y2b{bottom:384.779846px;}
.ydd{bottom:396.120142px;}
.y5b{bottom:398.999840px;}
.y8f{bottom:399.180140px;}
.ya0{bottom:399.540140px;}
.y2a{bottom:403.859838px;}
.yb0{bottom:403.860138px;}
.ydc{bottom:415.020134px;}
.y5a{bottom:418.079833px;}
.y8e{bottom:418.440133px;}
.y29{bottom:422.759831px;}
.yaf{bottom:430.320128px;}
.ydb{bottom:433.920126px;}
.y59{bottom:436.979825px;}
.y8d{bottom:437.520125px;}
.y28{bottom:441.659823px;}
.yae{bottom:449.400120px;}
.yda{bottom:453.360119px;}
.y58{bottom:456.059818px;}
.y8c{bottom:456.420117px;}
.y27{bottom:460.739816px;}
.yad{bottom:468.300113px;}
.yd9{bottom:472.260111px;}
.y57{bottom:474.959810px;}
.y8b{bottom:475.320110px;}
.y26{bottom:479.639808px;}
.yd8{bottom:491.340103px;}
.y56{bottom:493.859802px;}
.y8a{bottom:494.400102px;}
.yac{bottom:494.760102px;}
.y25{bottom:498.719801px;}
.yd7{bottom:510.240096px;}
.y55{bottom:512.939795px;}
.y89{bottom:513.300095px;}
.yab{bottom:513.660095px;}
.y24{bottom:517.619793px;}
.yd6{bottom:529.320088px;}
.y54{bottom:531.839787px;}
.y88{bottom:532.380087px;}
.y23{bottom:536.519785px;}
.yaa{bottom:540.300084px;}
.yd5{bottom:548.220081px;}
.y53{bottom:550.919780px;}
.y9f{bottom:550.920080px;}
.y87{bottom:551.280079px;}
.y22{bottom:555.239778px;}
.ya9{bottom:559.200076px;}
.yd4{bottom:567.120073px;}
.y52{bottom:569.819772px;}
.y86{bottom:570.180072px;}
.y21{bottom:574.139770px;}
.ya8{bottom:585.660066px;}
.yd3{bottom:586.200066px;}
.y51{bottom:588.719765px;}
.y85{bottom:589.260064px;}
.y20{bottom:593.579763px;}
.ya7{bottom:604.560058px;}
.yd2{bottom:605.100058px;}
.y50{bottom:607.799757px;}
.y84{bottom:608.160057px;}
.y1f{bottom:612.479755px;}
.yd1{bottom:624.000050px;}
.y4f{bottom:626.699749px;}
.y83{bottom:627.240049px;}
.ya6{bottom:631.200048px;}
.y1e{bottom:631.379747px;}
.y4e{bottom:645.779742px;}
.y82{bottom:646.140042px;}
.ya5{bottom:650.100040px;}
.y1d{bottom:650.459740px;}
.yd0{bottom:650.640040px;}
.y4d{bottom:664.679734px;}
.y81{bottom:665.040034px;}
.ya4{bottom:669.000032px;}
.y1c{bottom:669.359732px;}
.ycf{bottom:669.540032px;}
.y4c{bottom:683.579727px;}
.y80{bottom:684.120026px;}
.y1b{bottom:688.439725px;}
.ya3{bottom:695.640022px;}
.yce{bottom:696.000022px;}
.y4b{bottom:702.659719px;}
.y7f{bottom:703.020019px;}
.y1a{bottom:707.339717px;}
.ya2{bottom:714.540014px;}
.ycd{bottom:715.080014px;}
.y4a{bottom:721.559711px;}
.y7e{bottom:722.100011px;}
.y19{bottom:725.879710px;}
.ycc{bottom:733.980006px;}
.y49{bottom:740.639704px;}
.y9e{bottom:740.640004px;}
.y7d{bottom:741.000004px;}
.y18{bottom:744.959702px;}
.y48{bottom:759.539696px;}
.y9d{bottom:759.719996px;}
.y7c{bottom:760.079996px;}
.ycb{bottom:760.439996px;}
.y17{bottom:763.859694px;}
.y47{bottom:778.619689px;}
.y7b{bottom:778.979988px;}
.yca{bottom:779.339988px;}
.y16{bottom:782.939687px;}
.y46{bottom:797.519681px;}
.y7a{bottom:797.879981px;}
.y15{bottom:801.839679px;}
.yc9{bottom:805.799978px;}
.y45{bottom:816.419673px;}
.y79{bottom:816.959973px;}
.y14{bottom:821.099672px;}
.yc8{bottom:824.879970px;}
.y44{bottom:835.499666px;}
.y78{bottom:835.859966px;}
.y13{bottom:841.979663px;}
.yc7{bottom:851.339959px;}
.y43{bottom:854.399658px;}
.y77{bottom:854.939958px;}
.y12{bottom:857.639657px;}
.yc6{bottom:870.239952px;}
.y11{bottom:873.479651px;}
.y76{bottom:873.839950px;}
.yc5{bottom:889.319944px;}
.y10{bottom:892.019643px;}
.y42{bottom:892.379643px;}
.y75{bottom:892.739943px;}
.yf{bottom:907.499637px;}
.yc4{bottom:908.219937px;}
.y41{bottom:911.279635px;}
.y74{bottom:911.819935px;}
.ye{bottom:923.519631px;}
.yc3{bottom:927.119929px;}
.y40{bottom:930.359628px;}
.y73{bottom:930.719928px;}
.yd{bottom:942.779623px;}
.y3f{bottom:949.259620px;}
.y72{bottom:949.799920px;}
.yc2{bottom:953.759918px;}
.yc{bottom:962.039615px;}
.y3e{bottom:968.339613px;}
.y71{bottom:968.699913px;}
.yc1{bottom:972.659911px;}
.yb{bottom:984.359606px;}
.y3d{bottom:987.239605px;}
.y70{bottom:987.599905px;}
.yc0{bottom:999.119900px;}
.y3c{bottom:1006.139598px;}
.ya{bottom:1006.679597px;}
.y6f{bottom:1006.679897px;}
.ybf{bottom:1018.199893px;}
.y3b{bottom:1025.219590px;}
.y9{bottom:1025.579590px;}
.y6e{bottom:1025.579890px;}
.ybe{bottom:1037.099885px;}
.y8{bottom:1044.659582px;}
.y6d{bottom:1044.659882px;}
.ybd{bottom:1055.999878px;}
.y3a{bottom:1062.659575px;}
.y7{bottom:1063.559575px;}
.y6c{bottom:1063.559875px;}
.y6{bottom:1082.459567px;}
.y6b{bottom:1082.459867px;}
.y39{bottom:1100.819560px;}
.y5{bottom:1101.539559px;}
.y6a{bottom:1101.539859px;}
.y4{bottom:1120.439552px;}
.y69{bottom:1120.439852px;}
.y1{bottom:1166.339533px;}
.h1{height:44.149201px;}
.h6{height:45.345919px;}
.h7{height:47.381817px;}
.h4{height:53.232166px;}
.h3{height:58.121696px;}
.h5{height:68.229816px;}
.h2{height:88.536058px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:127.620692px;}
.x6{left:180.720255px;}
.x1{left:438.299825px;}
.x2{left:734.759706px;}
.x4{left:778.139689px;}
.x3{left:785.339686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-80.159968pt;}
.ws2{word-spacing:-14.719994pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-1.832563pt;}
._1{margin-left:-0.894663pt;}
._3{width:1.430902pt;}
._0{width:2.835134pt;}
._e{width:4.240292pt;}
._2{width:5.181843pt;}
._5{width:6.744669pt;}
._4{width:7.832951pt;}
._8{width:8.922192pt;}
._d{width:10.003711pt;}
._f{width:11.295671pt;}
._10{width:12.224160pt;}
._6{width:13.421077pt;}
._12{width:15.656260pt;}
._11{width:16.675894pt;}
._7{width:17.924579pt;}
._b{width:18.916207pt;}
._a{width:19.877787pt;}
._13{width:21.010304pt;}
._14{width:22.391371pt;}
._1d{width:23.347738pt;}
._1c{width:24.509420pt;}
._16{width:27.062140pt;}
._15{width:28.201880pt;}
._19{width:29.605291pt;}
._1b{width:32.175804pt;}
._1a{width:33.361580pt;}
._1e{width:52.764538pt;}
._18{width:174.192878pt;}
._c{width:1604.164692pt;}
._9{width:1674.607330pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:69.119972pt;}
.fs1{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:67.466906pt;}
.y2{bottom:101.386893pt;}
.ya1{bottom:118.986886pt;}
.y38{bottom:122.826618pt;}
.ybc{bottom:130.026881pt;}
.y68{bottom:135.466612pt;}
.y9c{bottom:135.786879pt;}
.y37{bottom:139.626611pt;}
.ybb{bottom:146.826875pt;}
.y67{bottom:152.266606pt;}
.y9b{bottom:152.746872pt;}
.y36{bottom:156.586604pt;}
.yba{bottom:163.626868pt;}
.y66{bottom:169.226599pt;}
.y9a{bottom:169.546866pt;}
.y35{bottom:173.386597pt;}
.y65{bottom:186.026592pt;}
.y99{bottom:186.506859pt;}
.yb9{bottom:187.306858pt;}
.y34{bottom:190.186591pt;}
.y64{bottom:202.986585pt;}
.y98{bottom:203.306852pt;}
.yb8{bottom:204.106852pt;}
.y33{bottom:207.146584pt;}
.y63{bottom:219.786579pt;}
.y97{bottom:220.106845pt;}
.yb7{bottom:220.906845pt;}
.y32{bottom:223.946577pt;}
.y62{bottom:236.746572pt;}
.y96{bottom:237.066839pt;}
.y31{bottom:240.906570pt;}
.yb6{bottom:244.586835pt;}
.y61{bottom:253.546565pt;}
.y95{bottom:253.866832pt;}
.y30{bottom:257.706564pt;}
.yb5{bottom:261.386829pt;}
.y60{bottom:270.346559pt;}
.y94{bottom:270.826825pt;}
.y2f{bottom:274.506557pt;}
.yb4{bottom:278.186822pt;}
.ye1{bottom:284.586819pt;}
.y5f{bottom:287.306552pt;}
.y93{bottom:287.626818pt;}
.y2e{bottom:291.466550pt;}
.ye0{bottom:301.386813pt;}
.yb3{bottom:301.706813pt;}
.y5e{bottom:304.106545pt;}
.y92{bottom:304.586811pt;}
.y2d{bottom:308.266543pt;}
.ydf{bottom:318.346806pt;}
.yb2{bottom:318.666806pt;}
.y5d{bottom:321.066538pt;}
.y91{bottom:321.386805pt;}
.y2c{bottom:325.226537pt;}
.yde{bottom:335.146799pt;}
.yb1{bottom:335.466799pt;}
.y5c{bottom:337.866532pt;}
.y90{bottom:338.186798pt;}
.y2b{bottom:342.026530pt;}
.ydd{bottom:352.106792pt;}
.y5b{bottom:354.666525pt;}
.y8f{bottom:354.826791pt;}
.ya0{bottom:355.146791pt;}
.y2a{bottom:358.986523pt;}
.yb0{bottom:358.986790pt;}
.ydc{bottom:368.906786pt;}
.y5a{bottom:371.626518pt;}
.y8e{bottom:371.946785pt;}
.y29{bottom:375.786516pt;}
.yaf{bottom:382.506780pt;}
.ydb{bottom:385.706779pt;}
.y59{bottom:388.426511pt;}
.y8d{bottom:388.906778pt;}
.y28{bottom:392.586510pt;}
.yae{bottom:399.466774pt;}
.yda{bottom:402.986772pt;}
.y58{bottom:405.386505pt;}
.y8c{bottom:405.706771pt;}
.y27{bottom:409.546503pt;}
.yad{bottom:416.266767pt;}
.yd9{bottom:419.786765pt;}
.y57{bottom:422.186498pt;}
.y8b{bottom:422.506764pt;}
.y26{bottom:426.346496pt;}
.yd8{bottom:436.746759pt;}
.y56{bottom:438.986491pt;}
.y8a{bottom:439.466758pt;}
.yac{bottom:439.786757pt;}
.y25{bottom:443.306489pt;}
.yd7{bottom:453.546752pt;}
.y55{bottom:455.946484pt;}
.y89{bottom:456.266751pt;}
.yab{bottom:456.586751pt;}
.y24{bottom:460.106483pt;}
.yd6{bottom:470.506745pt;}
.y54{bottom:472.746478pt;}
.y88{bottom:473.226744pt;}
.y23{bottom:476.906476pt;}
.yaa{bottom:480.266741pt;}
.yd5{bottom:487.306738pt;}
.y53{bottom:489.706471pt;}
.y9f{bottom:489.706737pt;}
.y87{bottom:490.026737pt;}
.y22{bottom:493.546469pt;}
.ya9{bottom:497.066735pt;}
.yd4{bottom:504.106732pt;}
.y52{bottom:506.506464pt;}
.y86{bottom:506.826731pt;}
.y21{bottom:510.346463pt;}
.ya8{bottom:520.586725pt;}
.yd3{bottom:521.066725pt;}
.y51{bottom:523.306457pt;}
.y85{bottom:523.786724pt;}
.y20{bottom:527.626456pt;}
.ya7{bottom:537.386718pt;}
.yd2{bottom:537.866718pt;}
.y50{bottom:540.266451pt;}
.y84{bottom:540.586717pt;}
.y1f{bottom:544.426449pt;}
.yd1{bottom:554.666711pt;}
.y4f{bottom:557.066444pt;}
.y83{bottom:557.546710pt;}
.ya6{bottom:561.066709pt;}
.y1e{bottom:561.226442pt;}
.y4e{bottom:574.026437pt;}
.y82{bottom:574.346704pt;}
.ya5{bottom:577.866702pt;}
.y1d{bottom:578.186435pt;}
.yd0{bottom:578.346702pt;}
.y4d{bottom:590.826430pt;}
.y81{bottom:591.146697pt;}
.ya4{bottom:594.666695pt;}
.y1c{bottom:594.986429pt;}
.ycf{bottom:595.146695pt;}
.y4c{bottom:607.626424pt;}
.y80{bottom:608.106690pt;}
.y1b{bottom:611.946422pt;}
.ya3{bottom:618.346686pt;}
.yce{bottom:618.666686pt;}
.y4b{bottom:624.586417pt;}
.y7f{bottom:624.906683pt;}
.y1a{bottom:628.746415pt;}
.ya2{bottom:635.146679pt;}
.ycd{bottom:635.626679pt;}
.y4a{bottom:641.386410pt;}
.y7e{bottom:641.866677pt;}
.y19{bottom:645.226409pt;}
.ycc{bottom:652.426672pt;}
.y49{bottom:658.346403pt;}
.y9e{bottom:658.346670pt;}
.y7d{bottom:658.666670pt;}
.y18{bottom:662.186402pt;}
.y48{bottom:675.146397pt;}
.y9d{bottom:675.306663pt;}
.y7c{bottom:675.626663pt;}
.ycb{bottom:675.946663pt;}
.y17{bottom:678.986395pt;}
.y47{bottom:692.106390pt;}
.y7b{bottom:692.426656pt;}
.yca{bottom:692.746656pt;}
.y16{bottom:695.946388pt;}
.y46{bottom:708.906383pt;}
.y7a{bottom:709.226650pt;}
.y15{bottom:712.746382pt;}
.yc9{bottom:716.266647pt;}
.y45{bottom:725.706376pt;}
.y79{bottom:726.186643pt;}
.y14{bottom:729.866375pt;}
.yc8{bottom:733.226640pt;}
.y44{bottom:742.666370pt;}
.y78{bottom:742.986636pt;}
.y13{bottom:748.426367pt;}
.yc7{bottom:756.746631pt;}
.y43{bottom:759.466363pt;}
.y77{bottom:759.946629pt;}
.y12{bottom:762.346362pt;}
.yc6{bottom:773.546624pt;}
.y11{bottom:776.426356pt;}
.y76{bottom:776.746623pt;}
.yc5{bottom:790.506617pt;}
.y10{bottom:792.906350pt;}
.y42{bottom:793.226349pt;}
.y75{bottom:793.546616pt;}
.yf{bottom:806.666344pt;}
.yc4{bottom:807.306610pt;}
.y41{bottom:810.026343pt;}
.y74{bottom:810.506609pt;}
.ye{bottom:820.906338pt;}
.yc3{bottom:824.106604pt;}
.y40{bottom:826.986336pt;}
.y73{bottom:827.306602pt;}
.yd{bottom:838.026331pt;}
.y3f{bottom:843.786329pt;}
.y72{bottom:844.266596pt;}
.yc2{bottom:847.786594pt;}
.yc{bottom:855.146325pt;}
.y3e{bottom:860.746322pt;}
.y71{bottom:861.066589pt;}
.yc1{bottom:864.586587pt;}
.yb{bottom:874.986317pt;}
.y3d{bottom:877.546316pt;}
.y70{bottom:877.866582pt;}
.yc0{bottom:888.106578pt;}
.y3c{bottom:894.346309pt;}
.ya{bottom:894.826309pt;}
.y6f{bottom:894.826575pt;}
.ybf{bottom:905.066571pt;}
.y3b{bottom:911.306302pt;}
.y9{bottom:911.626302pt;}
.y6e{bottom:911.626569pt;}
.ybe{bottom:921.866565pt;}
.y8{bottom:928.586295pt;}
.y6d{bottom:928.586562pt;}
.ybd{bottom:938.666558pt;}
.y3a{bottom:944.586289pt;}
.y7{bottom:945.386289pt;}
.y6c{bottom:945.386555pt;}
.y6{bottom:962.186282pt;}
.y6b{bottom:962.186548pt;}
.y39{bottom:978.506275pt;}
.y5{bottom:979.146275pt;}
.y6a{bottom:979.146542pt;}
.y4{bottom:995.946268pt;}
.y69{bottom:995.946535pt;}
.y1{bottom:1036.746252pt;}
.h1{height:39.243734pt;}
.h6{height:40.307484pt;}
.h7{height:42.117171pt;}
.h4{height:47.317481pt;}
.h3{height:51.663729pt;}
.h5{height:60.648726pt;}
.h2{height:78.698719pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:113.440615pt;}
.x6{left:160.640226pt;}
.x1{left:389.599844pt;}
.x2{left:653.119739pt;}
.x4{left:691.679723pt;}
.x3{left:698.079721pt;}
}




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