
    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_e1daf4ab64feadf20adf6c97.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_f135fa05cd030320d171766d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000048;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_5b39d952dedb4e41adcd4fec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_7d5e2fd7ec504df637c27671.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.730000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-2.160000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:12.063600px;}
.ls0{letter-spacing:13.352400px;}
.ls3{letter-spacing:14.845800px;}
.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;}
}
.ws7{word-spacing:-18.000000px;}
.ws1{word-spacing:-13.500000px;}
.wsd{word-spacing:-11.250000px;}
.ws5{word-spacing:-10.125000px;}
.ws8{word-spacing:0.000000px;}
.wsa{word-spacing:0.162000px;}
.wsc{word-spacing:1.196640px;}
.ws6{word-spacing:1.938720px;}
.ws2{word-spacing:2.265495px;}
.ws0{word-spacing:2.269605px;}
.ws9{word-spacing:2.964600px;}
.ws3{word-spacing:3.227250px;}
.ws4{word-spacing:4.715850px;}
.wsb{word-spacing:4.722450px;}
._a{margin-left:-15.984000px;}
._5{margin-left:-6.277080px;}
._4{margin-left:-4.226040px;}
._1{margin-left:-3.139080px;}
._0{margin-left:-1.197720px;}
._2{width:1.350000px;}
._3{width:2.388420px;}
._7{width:3.828600px;}
._b{width:4.926480px;}
._c{width:6.587940px;}
._d{width:8.917020px;}
._e{width:10.677960px;}
._8{width:14.794920px;}
._6{width:16.178400px;}
._9{width:42.938880px;}
.fc1{color:rgb(38,65,154);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:40.500000px;}
.fs4{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:101.581890px;}
.y113{bottom:101.582955px;}
.y80{bottom:102.492975px;}
.yb1{bottom:102.493245px;}
.y4c{bottom:108.792600px;}
.y26{bottom:108.799575px;}
.y112{bottom:117.980055px;}
.ye0{bottom:118.039740px;}
.y7f{bottom:118.871175px;}
.yb0{bottom:119.231490px;}
.y25{bottom:125.006325px;}
.y4b{bottom:125.421900px;}
.y111{bottom:134.377155px;}
.ydf{bottom:134.496240px;}
.y7e{bottom:135.249375px;}
.yaf{bottom:135.969870px;}
.y24{bottom:141.213075px;}
.y4a{bottom:142.051200px;}
.y110{bottom:150.774255px;}
.yde{bottom:150.952740px;}
.y7d{bottom:151.627575px;}
.yae{bottom:152.708115px;}
.y23{bottom:157.419825px;}
.y49{bottom:158.680500px;}
.y10f{bottom:167.171355px;}
.ydd{bottom:167.710290px;}
.y7c{bottom:168.005775px;}
.y4d{bottom:168.656250px;}
.yad{bottom:169.446630px;}
.y22{bottom:173.626575px;}
.y48{bottom:175.303695px;}
.y10e{bottom:183.568455px;}
.y7b{bottom:184.383975px;}
.ydc{bottom:184.467840px;}
.yac{bottom:186.185010px;}
.y21{bottom:189.833325px;}
.y47{bottom:191.932995px;}
.y10d{bottom:199.965555px;}
.y7a{bottom:200.762175px;}
.ydb{bottom:201.225390px;}
.yab{bottom:202.923525px;}
.y20{bottom:206.040075px;}
.y46{bottom:208.562295px;}
.y10c{bottom:216.362655px;}
.y79{bottom:217.140375px;}
.yda{bottom:217.982940px;}
.yaa{bottom:219.661770px;}
.y1f{bottom:222.246825px;}
.y45{bottom:225.191595px;}
.y10b{bottom:232.759755px;}
.y78{bottom:233.518575px;}
.yd9{bottom:234.740490px;}
.ya9{bottom:236.400285px;}
.y1e{bottom:238.453575px;}
.y44{bottom:241.820895px;}
.y10a{bottom:249.156855px;}
.y77{bottom:249.896775px;}
.yd8{bottom:251.498040px;}
.ya8{bottom:253.138530px;}
.y1d{bottom:254.660325px;}
.y43{bottom:258.450195px;}
.y109{bottom:265.553955px;}
.y76{bottom:266.274975px;}
.yd7{bottom:268.255590px;}
.ya7{bottom:269.876775px;}
.y1c{bottom:270.867075px;}
.y42{bottom:275.079495px;}
.y108{bottom:281.951055px;}
.y75{bottom:282.653175px;}
.yd6{bottom:285.013140px;}
.ya6{bottom:286.615155px;}
.y1b{bottom:287.073825px;}
.y41{bottom:291.708795px;}
.y107{bottom:298.348155px;}
.y74{bottom:299.031375px;}
.yd5{bottom:301.770690px;}
.y1a{bottom:303.280575px;}
.ya5{bottom:303.353535px;}
.y40{bottom:308.338095px;}
.y106{bottom:314.745255px;}
.y73{bottom:315.409575px;}
.yd4{bottom:318.528240px;}
.y19{bottom:319.487325px;}
.ya4{bottom:320.092050px;}
.y3f{bottom:324.967395px;}
.y105{bottom:331.142355px;}
.y72{bottom:331.787775px;}
.yd3{bottom:335.285790px;}
.y18{bottom:335.694075px;}
.ya3{bottom:336.830430px;}
.y3e{bottom:341.596695px;}
.y104{bottom:347.539455px;}
.y71{bottom:348.165975px;}
.y17{bottom:351.900825px;}
.yd2{bottom:352.043340px;}
.ya2{bottom:353.568675px;}
.y3d{bottom:358.225995px;}
.y103{bottom:363.936555px;}
.y70{bottom:364.544175px;}
.y16{bottom:368.107575px;}
.yd1{bottom:368.800890px;}
.ya1{bottom:370.307055px;}
.y3c{bottom:374.855295px;}
.y102{bottom:380.333655px;}
.y6f{bottom:380.922375px;}
.y15{bottom:384.314325px;}
.yd0{bottom:385.558440px;}
.ya0{bottom:387.045570px;}
.y3b{bottom:391.484595px;}
.y101{bottom:396.723615px;}
.y6e{bottom:397.300710px;}
.y14{bottom:400.521345px;}
.ycf{bottom:402.315585px;}
.y9f{bottom:403.783950px;}
.y3a{bottom:408.113355px;}
.y100{bottom:413.120445px;}
.y6d{bottom:413.679045px;}
.y13{bottom:416.728365px;}
.yce{bottom:419.072730px;}
.y9e{bottom:420.522330px;}
.y39{bottom:424.742250px;}
.yff{bottom:429.517275px;}
.y6c{bottom:430.057515px;}
.y12{bottom:432.935385px;}
.ycd{bottom:435.830010px;}
.y9d{bottom:437.260710px;}
.y38{bottom:441.371145px;}
.yfe{bottom:445.914240px;}
.y6b{bottom:446.435850px;}
.y11{bottom:449.142405px;}
.ycc{bottom:452.587155px;}
.y9c{bottom:453.999090px;}
.y37{bottom:457.999905px;}
.yfd{bottom:462.310935px;}
.y6a{bottom:462.814320px;}
.y10{bottom:465.349290px;}
.ycb{bottom:469.344300px;}
.y9b{bottom:470.737470px;}
.y36{bottom:474.628935px;}
.yfc{bottom:478.707765px;}
.y69{bottom:479.192655px;}
.yf{bottom:481.556310px;}
.yca{bottom:486.101580px;}
.y9a{bottom:487.475985px;}
.y35{bottom:491.257695px;}
.yfb{bottom:495.104595px;}
.y68{bottom:495.571125px;}
.ye{bottom:497.763330px;}
.yc9{bottom:502.858725px;}
.y99{bottom:504.214230px;}
.y34{bottom:507.886455px;}
.yfa{bottom:511.501425px;}
.y67{bottom:511.949460px;}
.yd{bottom:513.970350px;}
.yc8{bottom:519.615870px;}
.y98{bottom:520.952610px;}
.y33{bottom:524.515350px;}
.yf9{bottom:527.898255px;}
.y66{bottom:528.327930px;}
.yc{bottom:530.177370px;}
.yc7{bottom:536.373150px;}
.y97{bottom:537.690990px;}
.y32{bottom:541.144110px;}
.yf8{bottom:544.295085px;}
.y65{bottom:544.706265px;}
.yb{bottom:546.384390px;}
.yc6{bottom:553.130295px;}
.y96{bottom:554.429370px;}
.y31{bottom:557.773005px;}
.yf7{bottom:560.691915px;}
.y64{bottom:561.084600px;}
.ya{bottom:562.591410px;}
.yc5{bottom:569.887575px;}
.y95{bottom:571.167885px;}
.y30{bottom:574.401900px;}
.yf6{bottom:577.088745px;}
.y63{bottom:577.463070px;}
.y9{bottom:578.798430px;}
.yc4{bottom:586.644720px;}
.y94{bottom:587.906265px;}
.y2f{bottom:591.035910px;}
.yf5{bottom:593.485575px;}
.y62{bottom:593.841405px;}
.y8{bottom:595.005315px;}
.yc3{bottom:603.401865px;}
.y93{bottom:604.644645px;}
.y2e{bottom:607.664670px;}
.yf4{bottom:609.882405px;}
.y61{bottom:610.219875px;}
.y7{bottom:611.212335px;}
.yc2{bottom:620.159010px;}
.y92{bottom:621.383025px;}
.y2d{bottom:624.293565px;}
.yf3{bottom:626.279235px;}
.y60{bottom:626.598210px;}
.y6{bottom:627.419355px;}
.yc1{bottom:636.916290px;}
.y91{bottom:638.121540px;}
.y2c{bottom:640.922460px;}
.yf2{bottom:642.676065px;}
.y5f{bottom:642.976680px;}
.y5{bottom:643.626375px;}
.yc0{bottom:653.673435px;}
.y90{bottom:654.859920px;}
.y2b{bottom:657.551355px;}
.yf1{bottom:659.072895px;}
.y5e{bottom:659.355015px;}
.y4{bottom:659.833395px;}
.ybf{bottom:670.430580px;}
.y8f{bottom:671.598300px;}
.y2a{bottom:674.180115px;}
.yf0{bottom:675.469725px;}
.y5d{bottom:675.733485px;}
.ybe{bottom:687.187860px;}
.y8e{bottom:688.336545px;}
.y29{bottom:690.808875px;}
.y3{bottom:691.047555px;}
.yef{bottom:691.866555px;}
.y5c{bottom:692.111820px;}
.ybd{bottom:703.945005px;}
.y8d{bottom:705.074925px;}
.y28{bottom:707.437770px;}
.y2{bottom:707.554410px;}
.yee{bottom:708.263385px;}
.y5b{bottom:708.490155px;}
.ybc{bottom:720.702150px;}
.y8c{bottom:721.813440px;}
.y1{bottom:724.061400px;}
.y27{bottom:724.066665px;}
.yed{bottom:724.660215px;}
.y5a{bottom:724.868625px;}
.y126{bottom:735.220050px;}
.y11c{bottom:735.800010px;}
.ybb{bottom:737.459430px;}
.y8b{bottom:738.551820px;}
.yec{bottom:741.057045px;}
.y59{bottom:741.246960px;}
.y125{bottom:751.826100px;}
.yba{bottom:754.216575px;}
.y11b{bottom:754.953270px;}
.y8a{bottom:755.290200px;}
.yeb{bottom:757.453875px;}
.y58{bottom:757.625430px;}
.y124{bottom:768.432300px;}
.yb9{bottom:770.973720px;}
.y89{bottom:772.028580px;}
.yea{bottom:773.850705px;}
.y57{bottom:774.003660px;}
.y11a{bottom:774.106800px;}
.y123{bottom:785.038425px;}
.yb8{bottom:787.730865px;}
.y88{bottom:788.766825px;}
.ye9{bottom:790.247400px;}
.y56{bottom:790.382130px;}
.y119{bottom:793.260330px;}
.yb7{bottom:804.488010px;}
.y87{bottom:805.505340px;}
.ye8{bottom:806.644230px;}
.y55{bottom:806.760600px;}
.y118{bottom:812.413725px;}
.y122{bottom:818.250585px;}
.yb6{bottom:821.245155px;}
.y86{bottom:822.243720px;}
.ye7{bottom:823.041060px;}
.y54{bottom:823.139070px;}
.y117{bottom:831.567255px;}
.y121{bottom:835.606590px;}
.yb5{bottom:838.002435px;}
.y85{bottom:838.981965px;}
.ye6{bottom:839.437890px;}
.y53{bottom:839.517540px;}
.y116{bottom:850.720785px;}
.y120{bottom:852.962730px;}
.yb4{bottom:854.759580px;}
.y84{bottom:855.720210px;}
.ye5{bottom:855.834720px;}
.y52{bottom:855.896010px;}
.y115{bottom:868.824150px;}
.y11f{bottom:870.318870px;}
.yb3{bottom:871.516725px;}
.y83{bottom:872.158620px;}
.ye4{bottom:872.231415px;}
.y51{bottom:872.274345px;}
.y114{bottom:886.927650px;}
.y11e{bottom:887.674875px;}
.yb2{bottom:888.274005px;}
.y82{bottom:888.597030px;}
.ye3{bottom:888.628245px;}
.y50{bottom:888.652680px;}
.y4e{bottom:901.814400px;}
.ye2{bottom:905.025075px;}
.y11d{bottom:905.031015px;}
.y4f{bottom:905.031150px;}
.y81{bottom:905.035440px;}
.h9{height:37.845000px;}
.h8{height:40.368000px;}
.h4{height:43.632000px;}
.h2{height:45.414000px;}
.h6{height:45.414960px;}
.h3{height:45.438420px;}
.h7{height:45.440940px;}
.h5{height:60.552000px;}
.h1{height:999.000000px;}
.h0{height:999.213045px;}
.w1{width:701.250000px;}
.w0{width:701.575515px;}
.x0{left:0.000000px;}
.xb{left:55.960200px;}
.x1{left:73.782750px;}
.x2{left:99.294000px;}
.x8{left:107.798565px;}
.x7{left:133.311000px;}
.x6{left:272.859600px;}
.x4{left:346.476300px;}
.x3{left:371.987925px;}
.x9{left:380.482035px;}
.xf{left:392.765100px;}
.xa{left:405.993120px;}
.xc{left:434.009235px;}
.xe{left:456.164250px;}
.xd{left:490.407600px;}
.x5{left:652.857450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.920000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:10.723200pt;}
.ls0{letter-spacing:11.868800pt;}
.ls3{letter-spacing:13.196267pt;}
.ws7{word-spacing:-16.000000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsd{word-spacing:-10.000000pt;}
.ws5{word-spacing:-9.000000pt;}
.ws8{word-spacing:0.000000pt;}
.wsa{word-spacing:0.144000pt;}
.wsc{word-spacing:1.063680pt;}
.ws6{word-spacing:1.723307pt;}
.ws2{word-spacing:2.013773pt;}
.ws0{word-spacing:2.017427pt;}
.ws9{word-spacing:2.635200pt;}
.ws3{word-spacing:2.868667pt;}
.ws4{word-spacing:4.191867pt;}
.wsb{word-spacing:4.197733pt;}
._a{margin-left:-14.208000pt;}
._5{margin-left:-5.579627pt;}
._4{margin-left:-3.756480pt;}
._1{margin-left:-2.790293pt;}
._0{margin-left:-1.064640pt;}
._2{width:1.200000pt;}
._3{width:2.123040pt;}
._7{width:3.403200pt;}
._b{width:4.379093pt;}
._c{width:5.855947pt;}
._d{width:7.926240pt;}
._e{width:9.491520pt;}
._8{width:13.151040pt;}
._6{width:14.380800pt;}
._9{width:38.167893pt;}
.fs1{font-size:36.000000pt;}
.fs4{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:90.295013pt;}
.y113{bottom:90.295960pt;}
.y80{bottom:91.104867pt;}
.yb1{bottom:91.105107pt;}
.y4c{bottom:96.704533pt;}
.y26{bottom:96.710733pt;}
.y112{bottom:104.871160pt;}
.ye0{bottom:104.924213pt;}
.y7f{bottom:105.663267pt;}
.yb0{bottom:105.983547pt;}
.y25{bottom:111.116733pt;}
.y4b{bottom:111.486133pt;}
.y111{bottom:119.446360pt;}
.ydf{bottom:119.552213pt;}
.y7e{bottom:120.221667pt;}
.yaf{bottom:120.862107pt;}
.y24{bottom:125.522733pt;}
.y4a{bottom:126.267733pt;}
.y110{bottom:134.021560pt;}
.yde{bottom:134.180213pt;}
.y7d{bottom:134.780067pt;}
.yae{bottom:135.740547pt;}
.y23{bottom:139.928733pt;}
.y49{bottom:141.049333pt;}
.y10f{bottom:148.596760pt;}
.ydd{bottom:149.075813pt;}
.y7c{bottom:149.338467pt;}
.y4d{bottom:149.916667pt;}
.yad{bottom:150.619227pt;}
.y22{bottom:154.334733pt;}
.y48{bottom:155.825507pt;}
.y10e{bottom:163.171960pt;}
.y7b{bottom:163.896867pt;}
.ydc{bottom:163.971413pt;}
.yac{bottom:165.497787pt;}
.y21{bottom:168.740733pt;}
.y47{bottom:170.607107pt;}
.y10d{bottom:177.747160pt;}
.y7a{bottom:178.455267pt;}
.ydb{bottom:178.867013pt;}
.yab{bottom:180.376467pt;}
.y20{bottom:183.146733pt;}
.y46{bottom:185.388707pt;}
.y10c{bottom:192.322360pt;}
.y79{bottom:193.013667pt;}
.yda{bottom:193.762613pt;}
.yaa{bottom:195.254907pt;}
.y1f{bottom:197.552733pt;}
.y45{bottom:200.170307pt;}
.y10b{bottom:206.897560pt;}
.y78{bottom:207.572067pt;}
.yd9{bottom:208.658213pt;}
.ya9{bottom:210.133587pt;}
.y1e{bottom:211.958733pt;}
.y44{bottom:214.951907pt;}
.y10a{bottom:221.472760pt;}
.y77{bottom:222.130467pt;}
.yd8{bottom:223.553813pt;}
.ya8{bottom:225.012027pt;}
.y1d{bottom:226.364733pt;}
.y43{bottom:229.733507pt;}
.y109{bottom:236.047960pt;}
.y76{bottom:236.688867pt;}
.yd7{bottom:238.449413pt;}
.ya7{bottom:239.890467pt;}
.y1c{bottom:240.770733pt;}
.y42{bottom:244.515107pt;}
.y108{bottom:250.623160pt;}
.y75{bottom:251.247267pt;}
.yd6{bottom:253.345013pt;}
.ya6{bottom:254.769027pt;}
.y1b{bottom:255.176733pt;}
.y41{bottom:259.296707pt;}
.y107{bottom:265.198360pt;}
.y74{bottom:265.805667pt;}
.yd5{bottom:268.240613pt;}
.y1a{bottom:269.582733pt;}
.ya5{bottom:269.647587pt;}
.y40{bottom:274.078307pt;}
.y106{bottom:279.773560pt;}
.y73{bottom:280.364067pt;}
.yd4{bottom:283.136213pt;}
.y19{bottom:283.988733pt;}
.ya4{bottom:284.526267pt;}
.y3f{bottom:288.859907pt;}
.y105{bottom:294.348760pt;}
.y72{bottom:294.922467pt;}
.yd3{bottom:298.031813pt;}
.y18{bottom:298.394733pt;}
.ya3{bottom:299.404827pt;}
.y3e{bottom:303.641507pt;}
.y104{bottom:308.923960pt;}
.y71{bottom:309.480867pt;}
.y17{bottom:312.800733pt;}
.yd2{bottom:312.927413pt;}
.ya2{bottom:314.283267pt;}
.y3d{bottom:318.423107pt;}
.y103{bottom:323.499160pt;}
.y70{bottom:324.039267pt;}
.y16{bottom:327.206733pt;}
.yd1{bottom:327.823013pt;}
.ya1{bottom:329.161827pt;}
.y3c{bottom:333.204707pt;}
.y102{bottom:338.074360pt;}
.y6f{bottom:338.597667pt;}
.y15{bottom:341.612733pt;}
.yd0{bottom:342.718613pt;}
.ya0{bottom:344.040507pt;}
.y3b{bottom:347.986307pt;}
.y101{bottom:352.643213pt;}
.y6e{bottom:353.156187pt;}
.y14{bottom:356.018973pt;}
.ycf{bottom:357.613853pt;}
.y9f{bottom:358.919067pt;}
.y3a{bottom:362.767427pt;}
.y100{bottom:367.218173pt;}
.y6d{bottom:367.714707pt;}
.y13{bottom:370.425213pt;}
.yce{bottom:372.509093pt;}
.y9e{bottom:373.797627pt;}
.y39{bottom:377.548667pt;}
.yff{bottom:381.793133pt;}
.y6c{bottom:382.273347pt;}
.y12{bottom:384.831453pt;}
.ycd{bottom:387.404453pt;}
.y9d{bottom:388.676187pt;}
.y38{bottom:392.329907pt;}
.yfe{bottom:396.368213pt;}
.y6b{bottom:396.831867pt;}
.y11{bottom:399.237693pt;}
.ycc{bottom:402.299693pt;}
.y9c{bottom:403.554747pt;}
.y37{bottom:407.111027pt;}
.yfd{bottom:410.943053pt;}
.y6a{bottom:411.390507pt;}
.y10{bottom:413.643813pt;}
.ycb{bottom:417.194933pt;}
.y9b{bottom:418.433307pt;}
.y36{bottom:421.892387pt;}
.yfc{bottom:425.518013pt;}
.y69{bottom:425.949027pt;}
.yf{bottom:428.050053pt;}
.yca{bottom:432.090293pt;}
.y9a{bottom:433.311987pt;}
.y35{bottom:436.673507pt;}
.yfb{bottom:440.092973pt;}
.y68{bottom:440.507667pt;}
.ye{bottom:442.456293pt;}
.yc9{bottom:446.985533pt;}
.y99{bottom:448.190427pt;}
.y34{bottom:451.454627pt;}
.yfa{bottom:454.667933pt;}
.y67{bottom:455.066187pt;}
.yd{bottom:456.862533pt;}
.yc8{bottom:461.880773pt;}
.y98{bottom:463.068987pt;}
.y33{bottom:466.235867pt;}
.yf9{bottom:469.242893pt;}
.y66{bottom:469.624827pt;}
.yc{bottom:471.268773pt;}
.yc7{bottom:476.776133pt;}
.y97{bottom:477.947547pt;}
.y32{bottom:481.016987pt;}
.yf8{bottom:483.817853pt;}
.y65{bottom:484.183347pt;}
.yb{bottom:485.675013pt;}
.yc6{bottom:491.671373pt;}
.y96{bottom:492.826107pt;}
.y31{bottom:495.798227pt;}
.yf7{bottom:498.392813pt;}
.y64{bottom:498.741867pt;}
.ya{bottom:500.081253pt;}
.yc5{bottom:506.566733pt;}
.y95{bottom:507.704787pt;}
.y30{bottom:510.579467pt;}
.yf6{bottom:512.967773pt;}
.y63{bottom:513.300507pt;}
.y9{bottom:514.487493pt;}
.yc4{bottom:521.461973pt;}
.y94{bottom:522.583347pt;}
.y2f{bottom:525.365253pt;}
.yf5{bottom:527.542733pt;}
.y62{bottom:527.859027pt;}
.y8{bottom:528.893613pt;}
.yc3{bottom:536.357213pt;}
.y93{bottom:537.461907pt;}
.y2e{bottom:540.146373pt;}
.yf4{bottom:542.117693pt;}
.y61{bottom:542.417667pt;}
.y7{bottom:543.299853pt;}
.yc2{bottom:551.252453pt;}
.y92{bottom:552.340467pt;}
.y2d{bottom:554.927613pt;}
.yf3{bottom:556.692653pt;}
.y60{bottom:556.976187pt;}
.y6{bottom:557.706093pt;}
.yc1{bottom:566.147813pt;}
.y91{bottom:567.219147pt;}
.y2c{bottom:569.708853pt;}
.yf2{bottom:571.267613pt;}
.y5f{bottom:571.534827pt;}
.y5{bottom:572.112333pt;}
.yc0{bottom:581.043053pt;}
.y90{bottom:582.097707pt;}
.y2b{bottom:584.490093pt;}
.yf1{bottom:585.842573pt;}
.y5e{bottom:586.093347pt;}
.y4{bottom:586.518573pt;}
.ybf{bottom:595.938293pt;}
.y8f{bottom:596.976267pt;}
.y2a{bottom:599.271213pt;}
.yf0{bottom:600.417533pt;}
.y5d{bottom:600.651987pt;}
.ybe{bottom:610.833653pt;}
.y8e{bottom:611.854707pt;}
.y29{bottom:614.052333pt;}
.y3{bottom:614.264493pt;}
.yef{bottom:614.992493pt;}
.y5c{bottom:615.210507pt;}
.ybd{bottom:625.728893pt;}
.y8d{bottom:626.733267pt;}
.y28{bottom:628.833573pt;}
.y2{bottom:628.937253pt;}
.yee{bottom:629.567453pt;}
.y5b{bottom:629.769027pt;}
.ybc{bottom:640.624133pt;}
.y8c{bottom:641.611947pt;}
.y1{bottom:643.610133pt;}
.y27{bottom:643.614813pt;}
.yed{bottom:644.142413pt;}
.y5a{bottom:644.327667pt;}
.y126{bottom:653.528933pt;}
.y11c{bottom:654.044453pt;}
.ybb{bottom:655.519493pt;}
.y8b{bottom:656.490507pt;}
.yec{bottom:658.717373pt;}
.y59{bottom:658.886187pt;}
.y125{bottom:668.289867pt;}
.yba{bottom:670.414733pt;}
.y11b{bottom:671.069573pt;}
.y8a{bottom:671.369067pt;}
.yeb{bottom:673.292333pt;}
.y58{bottom:673.444827pt;}
.y124{bottom:683.050933pt;}
.yb9{bottom:685.309973pt;}
.y89{bottom:686.247627pt;}
.yea{bottom:687.867293pt;}
.y57{bottom:688.003253pt;}
.y11a{bottom:688.094933pt;}
.y123{bottom:697.811933pt;}
.yb8{bottom:700.205213pt;}
.y88{bottom:701.126067pt;}
.ye9{bottom:702.442133pt;}
.y56{bottom:702.561893pt;}
.y119{bottom:705.120293pt;}
.yb7{bottom:715.100453pt;}
.y87{bottom:716.004747pt;}
.ye8{bottom:717.017093pt;}
.y55{bottom:717.120533pt;}
.y118{bottom:722.145533pt;}
.y122{bottom:727.333853pt;}
.yb6{bottom:729.995693pt;}
.y86{bottom:730.883307pt;}
.ye7{bottom:731.592053pt;}
.y54{bottom:731.679173pt;}
.y117{bottom:739.170893pt;}
.y121{bottom:742.761413pt;}
.yb5{bottom:744.891053pt;}
.y85{bottom:745.761747pt;}
.ye6{bottom:746.167013pt;}
.y53{bottom:746.237813pt;}
.y116{bottom:756.196253pt;}
.y120{bottom:758.189093pt;}
.yb4{bottom:759.786293pt;}
.y84{bottom:760.640187pt;}
.ye5{bottom:760.741973pt;}
.y52{bottom:760.796453pt;}
.y115{bottom:772.288133pt;}
.y11f{bottom:773.616773pt;}
.yb3{bottom:774.681533pt;}
.y83{bottom:775.252107pt;}
.ye4{bottom:775.316813pt;}
.y51{bottom:775.354973pt;}
.y114{bottom:788.380133pt;}
.y11e{bottom:789.044333pt;}
.yb2{bottom:789.576893pt;}
.y82{bottom:789.864027pt;}
.ye3{bottom:789.891773pt;}
.y50{bottom:789.913493pt;}
.y4e{bottom:801.612800pt;}
.ye2{bottom:804.466733pt;}
.y11d{bottom:804.472013pt;}
.y4f{bottom:804.472133pt;}
.y81{bottom:804.475947pt;}
.h9{height:33.640000pt;}
.h8{height:35.882667pt;}
.h4{height:38.784000pt;}
.h2{height:40.368000pt;}
.h6{height:40.368853pt;}
.h3{height:40.389707pt;}
.h7{height:40.391947pt;}
.h5{height:53.824000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189373pt;}
.w1{width:623.333333pt;}
.w0{width:623.622680pt;}
.x0{left:0.000000pt;}
.xb{left:49.742400pt;}
.x1{left:65.584667pt;}
.x2{left:88.261333pt;}
.x8{left:95.820947pt;}
.x7{left:118.498667pt;}
.x6{left:242.541867pt;}
.x4{left:307.978933pt;}
.x3{left:330.655933pt;}
.x9{left:338.206253pt;}
.xf{left:349.124533pt;}
.xa{left:360.882773pt;}
.xc{left:385.785987pt;}
.xe{left:405.479333pt;}
.xd{left:435.917867pt;}
.x5{left:580.317733pt;}
}




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