
    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_bfce5b37a8097e4dc3e8c621.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0a1138e77a00bcc69a3bc673.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_79de4fc788450b352264f47e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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);}
.v2{vertical-align:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws2{word-spacing:-8.138672px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-7.980475px;}
._1{margin-left:-6.265662px;}
._6{margin-left:-5.027343px;}
._0{margin-left:-3.497488px;}
._2{margin-left:-1.300780px;}
._5{width:4.500003px;}
._4{width:9.000002px;}
._3{width:13.500000px;}
._c{width:22.500000px;}
._9{width:26.385336px;}
._a{width:27.614664px;}
._b{width:30.885336px;}
._8{width:32.114663px;}
._7{width:36.000000px;}
._f{width:63.000000px;}
._d{width:198.000000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y60{bottom:17.016358px;}
.y2b{bottom:17.016724px;}
.yc0{bottom:17.017090px;}
.yf0{bottom:37.157959px;}
.y5f{bottom:37.158326px;}
.y2a{bottom:37.158418px;}
.ybe{bottom:112.424930px;}
.yef{bottom:112.425284px;}
.y28{bottom:116.232793px;}
.y90{bottom:117.944819px;}
.y5d{bottom:125.706670px;}
.yee{bottom:134.761958px;}
.ybd{bottom:134.761962px;}
.y8f{bottom:140.281487px;}
.y5c{bottom:146.404912px;}
.ybc{bottom:157.098636px;}
.yed{bottom:157.098637px;}
.y8e{bottom:162.618530px;}
.y5b{bottom:167.103154px;}
.ybb{bottom:179.435299px;}
.yec{bottom:179.435302px;}
.y27{bottom:181.186334px;}
.y8d{bottom:184.955202px;}
.y5a{bottom:187.801405px;}
.yeb{bottom:201.771967px;}
.yba{bottom:201.772342px;}
.y26{bottom:201.884577px;}
.y8c{bottom:207.292236px;}
.y59{bottom:208.499643px;}
.y25{bottom:222.582819px;}
.yea{bottom:224.109367px;}
.yb9{bottom:224.109374px;}
.y58{bottom:229.197700px;}
.y8b{bottom:229.628899px;}
.y24{bottom:243.281062px;}
.ye9{bottom:246.446037px;}
.yb8{bottom:246.446048px;}
.y57{bottom:249.895942px;}
.y8a{bottom:251.965942px;}
.y23{bottom:263.979303px;}
.ye8{bottom:268.782711px;}
.yb7{bottom:268.782719px;}
.y56{bottom:270.594183px;}
.y89{bottom:274.302614px;}
.y22{bottom:284.677546px;}
.yb6{bottom:291.119740px;}
.ye7{bottom:291.119752px;}
.y55{bottom:291.292424px;}
.y88{bottom:296.639648px;}
.y21{bottom:305.375788px;}
.y54{bottom:311.990667px;}
.ye6{bottom:313.456781px;}
.yb5{bottom:313.456784px;}
.y87{bottom:318.976317px;}
.y20{bottom:326.074030px;}
.y53{bottom:332.688909px;}
.ye5{bottom:335.793449px;}
.yb4{bottom:335.793457px;}
.y86{bottom:341.313351px;}
.y1f{bottom:346.772272px;}
.y52{bottom:353.387152px;}
.ye4{bottom:358.130122px;}
.yb3{bottom:358.130129px;}
.y85{bottom:363.650014px;}
.y1e{bottom:367.470518px;}
.y51{bottom:374.085393px;}
.yb2{bottom:380.467157px;}
.ye3{bottom:380.467160px;}
.y84{bottom:385.987057px;}
.y1d{bottom:388.168762px;}
.y50{bottom:394.783636px;}
.ye2{bottom:402.804192px;}
.yb1{bottom:402.804200px;}
.y83{bottom:408.323729px;}
.y4f{bottom:415.481878px;}
.y1c{bottom:422.505623px;}
.ye1{bottom:425.140866px;}
.yb0{bottom:425.140872px;}
.y82{bottom:430.660762px;}
.y4e{bottom:436.180120px;}
.ye0{bottom:447.477529px;}
.yaf{bottom:447.477537px;}
.y81{bottom:452.997434px;}
.y1b{bottom:456.842378px;}
.y4d{bottom:456.878362px;}
.ydf{bottom:469.814572px;}
.yae{bottom:469.814947px;}
.y80{bottom:475.334480px;}
.y4c{bottom:477.576607px;}
.y1a{bottom:479.179222px;}
.yde{bottom:492.151604px;}
.yad{bottom:492.151612px;}
.y7f{bottom:497.671145px;}
.y4b{bottom:498.274848px;}
.y19{bottom:501.516082px;}
.ydd{bottom:514.488277px;}
.yac{bottom:514.488644px;}
.y4a{bottom:518.973091px;}
.y7e{bottom:520.008177px;}
.y18{bottom:523.852942px;}
.ydc{bottom:536.824956px;}
.yab{bottom:536.825318px;}
.y49{bottom:539.671333px;}
.y7d{bottom:542.344851px;}
.y17{bottom:546.189794px;}
.ydb{bottom:559.161997px;}
.yaa{bottom:559.162357px;}
.y48{bottom:560.369575px;}
.y7c{bottom:564.681892px;}
.y16{bottom:568.526647px;}
.y47{bottom:581.067818px;}
.ya9{bottom:581.499022px;}
.yda{bottom:581.499026px;}
.y7b{bottom:587.018557px;}
.y15{bottom:590.863499px;}
.y46{bottom:601.766047px;}
.yd9{bottom:603.835694px;}
.ya8{bottom:603.836054px;}
.y7a{bottom:609.355589px;}
.y14{bottom:613.200352px;}
.y45{bottom:622.464288px;}
.yd8{bottom:626.172367px;}
.ya7{bottom:626.172728px;}
.y79{bottom:631.692262px;}
.y13{bottom:635.537204px;}
.y44{bottom:643.162531px;}
.yd7{bottom:648.509397px;}
.ya6{bottom:648.509759px;}
.y78{bottom:654.029292px;}
.y12{bottom:657.874057px;}
.y43{bottom:663.860773px;}
.ya5{bottom:670.846427px;}
.yd6{bottom:670.846431px;}
.y77{bottom:676.365966px;}
.y11{bottom:680.210909px;}
.y42{bottom:684.559015px;}
.yd5{bottom:693.183094px;}
.ya4{bottom:693.183470px;}
.y76{bottom:698.703007px;}
.y10{bottom:702.547766px;}
.y41{bottom:705.257258px;}
.yd4{bottom:715.519771px;}
.ya3{bottom:715.520142px;}
.y75{bottom:721.039672px;}
.yf{bottom:724.884620px;}
.y40{bottom:725.955498px;}
.yd3{bottom:737.856809px;}
.ya2{bottom:737.857176px;}
.y74{bottom:743.376704px;}
.y3f{bottom:746.653741px;}
.ye{bottom:747.221472px;}
.ya1{bottom:760.193839px;}
.yd2{bottom:760.193842px;}
.yff{bottom:765.585941px;}
.y73{bottom:765.713377px;}
.y3e{bottom:767.351983px;}
.yd{bottom:769.558326px;}
.yd1{bottom:782.530520px;}
.ya0{bottom:782.530882px;}
.y3d{bottom:788.050225px;}
.y72{bottom:788.050418px;}
.yfe{bottom:789.084967px;}
.yc{bottom:791.895178px;}
.yd0{bottom:804.867192px;}
.y9f{bottom:804.867554px;}
.y3c{bottom:808.748468px;}
.y71{bottom:808.748663px;}
.yfd{bottom:809.783198px;}
.yb{bottom:814.232032px;}
.ycf{bottom:827.204226px;}
.y9e{bottom:827.204588px;}
.y3b{bottom:829.446716px;}
.y70{bottom:829.446892px;}
.yfc{bottom:830.481442px;}
.ya{bottom:836.568884px;}
.y9d{bottom:849.541257px;}
.yce{bottom:849.541267px;}
.y3a{bottom:850.144959px;}
.y6f{bottom:850.145138px;}
.yfb{bottom:851.179688px;}
.y9{bottom:858.905737px;}
.y39{bottom:870.843201px;}
.y6e{bottom:870.843384px;}
.ycd{bottom:871.877932px;}
.y9c{bottom:871.878291px;}
.y8{bottom:881.242612px;}
.y38{bottom:891.541444px;}
.y6d{bottom:891.541627px;}
.yfa{bottom:894.214598px;}
.ycc{bottom:894.214604px;}
.y9b{bottom:894.214954px;}
.y7{bottom:903.579457px;}
.y37{bottom:912.239685px;}
.y6c{bottom:912.239868px;}
.yf9{bottom:916.551272px;}
.ycb{bottom:916.551637px;}
.y9a{bottom:916.551997px;}
.y6{bottom:925.916317px;}
.y36{bottom:932.937928px;}
.y6b{bottom:932.938111px;}
.y99{bottom:938.888669px;}
.yf8{bottom:938.888676px;}
.yca{bottom:938.888683px;}
.y35{bottom:953.636170px;}
.y6a{bottom:953.636353px;}
.y5{bottom:961.175220px;}
.yf7{bottom:961.225337px;}
.yc9{bottom:961.225338px;}
.y98{bottom:961.225703px;}
.y34{bottom:974.334412px;}
.y69{bottom:974.334595px;}
.yf6{bottom:983.562005px;}
.yc8{bottom:983.562012px;}
.y97{bottom:983.562372px;}
.y4{bottom:987.234881px;}
.y33{bottom:995.032655px;}
.y68{bottom:995.032838px;}
.yc7{bottom:1005.899053px;}
.y96{bottom:1005.899414px;}
.yf5{bottom:1005.899425px;}
.y32{bottom:1015.730895px;}
.y67{bottom:1015.731078px;}
.y3{bottom:1025.294540px;}
.yf4{bottom:1028.236080px;}
.yc6{bottom:1028.236082px;}
.y95{bottom:1028.236087px;}
.y31{bottom:1036.429138px;}
.y66{bottom:1036.429321px;}
.y1{bottom:1044.900009px;}
.yc5{bottom:1050.572750px;}
.yf3{bottom:1050.572754px;}
.y94{bottom:1050.573120px;}
.y30{bottom:1057.127380px;}
.y65{bottom:1057.127563px;}
.yf2{bottom:1072.909417px;}
.yc4{bottom:1072.909424px;}
.y93{bottom:1072.909783px;}
.y2f{bottom:1077.825622px;}
.y64{bottom:1077.825805px;}
.yf1{bottom:1095.246094px;}
.yc3{bottom:1095.246460px;}
.y92{bottom:1095.246826px;}
.y2e{bottom:1098.523864px;}
.y63{bottom:1098.524048px;}
.yc2{bottom:1117.583492px;}
.y91{bottom:1117.583498px;}
.y2d{bottom:1119.222106px;}
.y62{bottom:1119.222289px;}
.yc1{bottom:1139.920165px;}
.y2c{bottom:1139.920349px;}
.y61{bottom:1139.920531px;}
.ybf{bottom:1156.724853px;}
.y29{bottom:1156.725036px;}
.y5e{bottom:1156.725219px;}
.h7{height:29.619139px;}
.h2{height:43.989259px;}
.h4{height:63.949219px;}
.h6{height:64.546875px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.h9{height:106.274781px;}
.h8{height:106.274964px;}
.ha{height:106.275147px;}
.h1{height:218.099991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:127.575005px;}
.x3{left:171.770136px;}
.x8{left:180.450005px;}
.x6{left:181.575005px;}
.x4{left:186.188893px;}
.x5{left:330.199373px;}
.x7{left:446.456716px;}
.x1{left:593.831716px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws2{word-spacing:-7.234375pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-7.093756pt;}
._1{margin-left:-5.569477pt;}
._6{margin-left:-4.468750pt;}
._0{margin-left:-3.108878pt;}
._2{margin-left:-1.156249pt;}
._5{width:4.000003pt;}
._4{width:8.000002pt;}
._3{width:12.000000pt;}
._c{width:20.000000pt;}
._9{width:23.453632pt;}
._a{width:24.546368pt;}
._b{width:27.453632pt;}
._8{width:28.546367pt;}
._7{width:32.000000pt;}
._f{width:56.000000pt;}
._d{width:176.000000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y60{bottom:15.125651pt;}
.y2b{bottom:15.125977pt;}
.yc0{bottom:15.126302pt;}
.yf0{bottom:33.029297pt;}
.y5f{bottom:33.029623pt;}
.y2a{bottom:33.029705pt;}
.ybe{bottom:99.933271pt;}
.yef{bottom:99.933586pt;}
.y28{bottom:103.318039pt;}
.y90{bottom:104.839839pt;}
.y5d{bottom:111.739262pt;}
.yee{bottom:119.788407pt;}
.ybd{bottom:119.788411pt;}
.y8f{bottom:124.694655pt;}
.y5c{bottom:130.137699pt;}
.ybc{bottom:139.643232pt;}
.yed{bottom:139.643233pt;}
.y8e{bottom:144.549804pt;}
.y5b{bottom:148.536137pt;}
.ybb{bottom:159.498044pt;}
.yec{bottom:159.498047pt;}
.y27{bottom:161.054519pt;}
.y8d{bottom:164.404624pt;}
.y5a{bottom:166.934582pt;}
.yeb{bottom:179.352860pt;}
.yba{bottom:179.353193pt;}
.y26{bottom:179.452957pt;}
.y8c{bottom:184.259765pt;}
.y59{bottom:185.333016pt;}
.y25{bottom:197.851394pt;}
.yea{bottom:199.208327pt;}
.yb9{bottom:199.208333pt;}
.y58{bottom:203.731289pt;}
.y8b{bottom:204.114577pt;}
.y24{bottom:216.249832pt;}
.ye9{bottom:219.063144pt;}
.yb8{bottom:219.063153pt;}
.y57{bottom:222.129727pt;}
.y8a{bottom:223.969726pt;}
.y23{bottom:234.648269pt;}
.ye8{bottom:238.917965pt;}
.yb7{bottom:238.917973pt;}
.y56{bottom:240.528162pt;}
.y89{bottom:243.824546pt;}
.y22{bottom:253.046707pt;}
.yb6{bottom:258.773102pt;}
.ye7{bottom:258.773113pt;}
.y55{bottom:258.926599pt;}
.y88{bottom:263.679687pt;}
.y21{bottom:271.445144pt;}
.y54{bottom:277.325037pt;}
.ye6{bottom:278.628250pt;}
.yb5{bottom:278.628252pt;}
.y87{bottom:283.534504pt;}
.y20{bottom:289.843582pt;}
.y53{bottom:295.723474pt;}
.ye5{bottom:298.483066pt;}
.yb4{bottom:298.483072pt;}
.y86{bottom:303.389645pt;}
.y1f{bottom:308.242020pt;}
.y52{bottom:314.121912pt;}
.ye4{bottom:318.337887pt;}
.yb3{bottom:318.337893pt;}
.y85{bottom:323.244457pt;}
.y1e{bottom:326.640460pt;}
.y51{bottom:332.520349pt;}
.yb2{bottom:338.193029pt;}
.ye3{bottom:338.193031pt;}
.y84{bottom:343.099606pt;}
.y1d{bottom:345.038900pt;}
.y50{bottom:350.918787pt;}
.ye2{bottom:358.048171pt;}
.yb1{bottom:358.048178pt;}
.y83{bottom:362.954426pt;}
.y4f{bottom:369.317224pt;}
.y1c{bottom:375.560553pt;}
.ye1{bottom:377.902992pt;}
.yb0{bottom:377.902998pt;}
.y82{bottom:382.809567pt;}
.y4e{bottom:387.715662pt;}
.ye0{bottom:397.757804pt;}
.yaf{bottom:397.757811pt;}
.y81{bottom:402.664386pt;}
.y1b{bottom:406.082113pt;}
.y4d{bottom:406.114100pt;}
.ydf{bottom:417.612953pt;}
.yae{bottom:417.613287pt;}
.y80{bottom:422.519538pt;}
.y4c{bottom:424.512539pt;}
.y1a{bottom:425.937087pt;}
.yde{bottom:437.468093pt;}
.yad{bottom:437.468100pt;}
.y7f{bottom:442.374351pt;}
.y4b{bottom:442.910976pt;}
.y19{bottom:445.792073pt;}
.ydd{bottom:457.322913pt;}
.yac{bottom:457.323239pt;}
.y4a{bottom:461.309414pt;}
.y7e{bottom:462.229491pt;}
.y18{bottom:465.647059pt;}
.ydc{bottom:477.177738pt;}
.yab{bottom:477.178060pt;}
.y49{bottom:479.707851pt;}
.y7d{bottom:482.084312pt;}
.y17{bottom:485.502039pt;}
.ydb{bottom:497.032886pt;}
.yaa{bottom:497.033207pt;}
.y48{bottom:498.106289pt;}
.y7c{bottom:501.939460pt;}
.y16{bottom:505.357019pt;}
.y47{bottom:516.504727pt;}
.ya9{bottom:516.888020pt;}
.yda{bottom:516.888023pt;}
.y7b{bottom:521.794273pt;}
.y15{bottom:525.211999pt;}
.y46{bottom:534.903153pt;}
.yd9{bottom:536.742839pt;}
.ya8{bottom:536.743160pt;}
.y7a{bottom:541.649413pt;}
.y14{bottom:545.066979pt;}
.y45{bottom:553.301589pt;}
.yd8{bottom:556.597660pt;}
.ya7{bottom:556.597980pt;}
.y79{bottom:561.504233pt;}
.y13{bottom:564.921959pt;}
.y44{bottom:571.700028pt;}
.yd7{bottom:576.452797pt;}
.ya6{bottom:576.453119pt;}
.y78{bottom:581.359371pt;}
.y12{bottom:584.776939pt;}
.y43{bottom:590.098464pt;}
.ya5{bottom:596.307935pt;}
.yd6{bottom:596.307938pt;}
.y77{bottom:601.214192pt;}
.y11{bottom:604.631919pt;}
.y42{bottom:608.496903pt;}
.yd5{bottom:616.162750pt;}
.ya4{bottom:616.163084pt;}
.y76{bottom:621.069340pt;}
.y10{bottom:624.486903pt;}
.y41{bottom:626.895340pt;}
.yd4{bottom:636.017574pt;}
.ya3{bottom:636.017904pt;}
.y75{bottom:640.924153pt;}
.yf{bottom:644.341884pt;}
.y40{bottom:645.293776pt;}
.yd3{bottom:655.872719pt;}
.ya2{bottom:655.873045pt;}
.y74{bottom:660.779293pt;}
.y3f{bottom:663.692214pt;}
.ye{bottom:664.196864pt;}
.ya1{bottom:675.727857pt;}
.yd2{bottom:675.727860pt;}
.yff{bottom:680.520836pt;}
.y73{bottom:680.634113pt;}
.y3e{bottom:682.090651pt;}
.yd{bottom:684.051845pt;}
.yd1{bottom:695.582684pt;}
.ya0{bottom:695.583006pt;}
.y3d{bottom:700.489089pt;}
.y72{bottom:700.489260pt;}
.yfe{bottom:701.408860pt;}
.yc{bottom:703.906825pt;}
.yd0{bottom:715.437504pt;}
.y9f{bottom:715.437826pt;}
.y3c{bottom:718.887527pt;}
.y71{bottom:718.887700pt;}
.yfd{bottom:719.807287pt;}
.yb{bottom:723.761806pt;}
.ycf{bottom:735.292645pt;}
.y9e{bottom:735.292967pt;}
.y3b{bottom:737.285970pt;}
.y70{bottom:737.286127pt;}
.yfc{bottom:738.205727pt;}
.ya{bottom:743.616786pt;}
.y9d{bottom:755.147784pt;}
.yce{bottom:755.147793pt;}
.y3a{bottom:755.684408pt;}
.y6f{bottom:755.684567pt;}
.yfb{bottom:756.604167pt;}
.y9{bottom:763.471767pt;}
.y39{bottom:774.082845pt;}
.y6e{bottom:774.083008pt;}
.ycd{bottom:775.002606pt;}
.y9c{bottom:775.002925pt;}
.y8{bottom:783.326767pt;}
.y38{bottom:792.481283pt;}
.y6d{bottom:792.481446pt;}
.yfa{bottom:794.857420pt;}
.ycc{bottom:794.857426pt;}
.y9b{bottom:794.857737pt;}
.y7{bottom:803.181740pt;}
.y37{bottom:810.879720pt;}
.y6c{bottom:810.879883pt;}
.yf9{bottom:814.712242pt;}
.ycb{bottom:814.712567pt;}
.y9a{bottom:814.712886pt;}
.y6{bottom:823.036727pt;}
.y36{bottom:829.278158pt;}
.y6b{bottom:829.278321pt;}
.y99{bottom:834.567706pt;}
.yf8{bottom:834.567712pt;}
.yca{bottom:834.567718pt;}
.y35{bottom:847.676595pt;}
.y6a{bottom:847.676758pt;}
.y5{bottom:854.377973pt;}
.yf7{bottom:854.422522pt;}
.yc9{bottom:854.422523pt;}
.y98{bottom:854.422847pt;}
.y34{bottom:866.075033pt;}
.y69{bottom:866.075196pt;}
.yf6{bottom:874.277338pt;}
.yc8{bottom:874.277344pt;}
.y97{bottom:874.277664pt;}
.y4{bottom:877.542116pt;}
.y33{bottom:884.473471pt;}
.y68{bottom:884.473633pt;}
.yc7{bottom:894.132492pt;}
.y96{bottom:894.132813pt;}
.yf5{bottom:894.132822pt;}
.y32{bottom:902.871907pt;}
.y67{bottom:902.872069pt;}
.y3{bottom:911.372924pt;}
.yf4{bottom:913.987627pt;}
.yc6{bottom:913.987629pt;}
.y95{bottom:913.987633pt;}
.y31{bottom:921.270345pt;}
.y66{bottom:921.270508pt;}
.y1{bottom:928.800008pt;}
.yc5{bottom:933.842445pt;}
.yf3{bottom:933.842448pt;}
.y94{bottom:933.842773pt;}
.y30{bottom:939.668782pt;}
.y65{bottom:939.668945pt;}
.yf2{bottom:953.697260pt;}
.yc4{bottom:953.697265pt;}
.y93{bottom:953.697585pt;}
.y2f{bottom:958.067220pt;}
.y64{bottom:958.067383pt;}
.yf1{bottom:973.552084pt;}
.yc3{bottom:973.552409pt;}
.y92{bottom:973.552734pt;}
.y2e{bottom:976.465657pt;}
.y63{bottom:976.465820pt;}
.yc2{bottom:993.407549pt;}
.y91{bottom:993.407554pt;}
.y2d{bottom:994.864094pt;}
.y62{bottom:994.864257pt;}
.yc1{bottom:1013.262369pt;}
.y2c{bottom:1013.262532pt;}
.y61{bottom:1013.262695pt;}
.ybf{bottom:1028.199869pt;}
.y29{bottom:1028.200032pt;}
.y5e{bottom:1028.200195pt;}
.h7{height:26.328124pt;}
.h2{height:39.101563pt;}
.h4{height:56.843750pt;}
.h6{height:57.375000pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.h9{height:94.466472pt;}
.h8{height:94.466635pt;}
.ha{height:94.466797pt;}
.h1{height:193.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:113.400004pt;}
.x3{left:152.684565pt;}
.x8{left:160.400004pt;}
.x6{left:161.400004pt;}
.x4{left:165.501238pt;}
.x5{left:293.510554pt;}
.x7{left:396.850414pt;}
.x1{left:527.850414pt;}
}




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