
    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_70c2c6eb9f70b2b9498e4882.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;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_73b734abb716fd01b8c257b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976000;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_94f983a34d1c418cd5beb2e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_8c7e9d84de4482e209c97870.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_06c42f8bd8c01377ec764808.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.189257px;}
.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.414713px;}
.ws0{word-spacing:0.000000px;}
._1f{margin-left:-12.966075px;}
._0{margin-left:-1.424465px;}
._1{width:1.256980px;}
._7{width:2.395926px;}
._c{width:4.159707px;}
._5{width:5.228966px;}
._6{width:6.276018px;}
._f{width:7.463930px;}
._a{width:9.062125px;}
._8{width:10.227539px;}
._9{width:11.373149px;}
._e{width:13.351285px;}
._13{width:14.524405px;}
._2{width:15.633436px;}
._3{width:16.666349px;}
._4{width:19.824283px;}
._b{width:21.256250px;}
._14{width:22.587523px;}
._16{width:23.946340px;}
._15{width:24.999040px;}
._12{width:26.047599px;}
._d{width:27.651326px;}
._10{width:29.402327px;}
._11{width:30.741130px;}
._1b{width:32.564984px;}
._1d{width:33.914335px;}
._18{width:35.362171px;}
._17{width:36.591570px;}
._1c{width:37.640800px;}
._21{width:38.802252px;}
._19{width:39.939566px;}
._1a{width:41.005484px;}
._1e{width:44.792591px;}
._20{width:45.801555px;}
._23{width:47.973056px;}
._22{width:49.149989px;}
._24{width:60.212699px;}
._25{width:61.337570px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs2{font-size:41.759983px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.000277px;}
.y1{bottom:74.280270px;}
.ya6{bottom:110.460256px;}
.y102{bottom:115.139954px;}
.y32{bottom:115.859954px;}
.y9a{bottom:116.939953px;}
.ya9{bottom:118.020253px;}
.ya8{bottom:128.460249px;}
.ya5{bottom:128.820248px;}
.ye0{bottom:128.999948px;}
.y66{bottom:132.959947px;}
.y101{bottom:134.039946px;}
.y99{bottom:135.839946px;}
.ya4{bottom:136.380245px;}
.y31{bottom:137.639945px;}
.ya3{bottom:147.179941px;}
.ydf{bottom:147.899941px;}
.y65{bottom:152.039939px;}
.y100{bottom:153.119939px;}
.y98{bottom:154.739938px;}
.y109{bottom:154.919938px;}
.y30{bottom:159.599936px;}
.ya2{bottom:165.359934px;}
.yde{bottom:166.799933px;}
.y64{bottom:170.939932px;}
.yff{bottom:172.019931px;}
.ya1{bottom:172.919931px;}
.y97{bottom:173.819930px;}
.y2f{bottom:181.379927px;}
.ya0{bottom:183.359927px;}
.ydd{bottom:185.879926px;}
.y63{bottom:189.839924px;}
.yfe{bottom:191.099924px;}
.y96{bottom:192.719923px;}
.y2e{bottom:203.159919px;}
.ydc{bottom:204.779918px;}
.y62{bottom:208.919916px;}
.yfd{bottom:209.999916px;}
.y95{bottom:211.799915px;}
.y108{bottom:211.979915px;}
.ydb{bottom:223.859910px;}
.y2d{bottom:224.939910px;}
.y61{bottom:227.819909px;}
.yfc{bottom:228.899908px;}
.y94{bottom:230.699908px;}
.y107{bottom:230.879908px;}
.yda{bottom:242.759903px;}
.y2c{bottom:246.899901px;}
.yfb{bottom:247.979901px;}
.y93{bottom:249.599900px;}
.yd9{bottom:261.659895px;}
.y60{bottom:265.799894px;}
.yfa{bottom:266.879893px;}
.y2b{bottom:268.679893px;}
.yd8{bottom:280.739888px;}
.y5f{bottom:284.699886px;}
.yf9{bottom:285.959886px;}
.y92{bottom:287.579885px;}
.yac{bottom:287.759885px;}
.y2a{bottom:290.459884px;}
.yd7{bottom:299.639880px;}
.y5e{bottom:303.779878px;}
.yf8{bottom:304.859878px;}
.y91{bottom:306.659877px;}
.yab{bottom:306.839877px;}
.y29{bottom:312.239875px;}
.yd6{bottom:318.719873px;}
.y5d{bottom:322.679871px;}
.yf7{bottom:323.759870px;}
.y90{bottom:325.559870px;}
.y28{bottom:334.019866px;}
.yd5{bottom:337.619865px;}
.y5c{bottom:341.759863px;}
.yf6{bottom:342.839863px;}
.y8f{bottom:344.459862px;}
.y27{bottom:355.979858px;}
.yd4{bottom:356.699857px;}
.y5b{bottom:360.659856px;}
.yf5{bottom:361.739855px;}
.y8e{bottom:363.539855px;}
.y9f{bottom:371.099852px;}
.yd3{bottom:375.599850px;}
.y26{bottom:377.759849px;}
.y5a{bottom:379.559848px;}
.yf4{bottom:380.819848px;}
.y8d{bottom:382.439847px;}
.y106{bottom:382.619847px;}
.y9e{bottom:389.999844px;}
.yd2{bottom:394.499842px;}
.y59{bottom:398.639841px;}
.y25{bottom:399.539840px;}
.yf3{bottom:399.719840px;}
.y8c{bottom:401.519839px;}
.y105{bottom:401.699839px;}
.yd1{bottom:413.579835px;}
.y58{bottom:417.539833px;}
.yf2{bottom:418.799832px;}
.y8b{bottom:420.419832px;}
.y9d{bottom:420.599832px;}
.y24{bottom:421.319831px;}
.yd0{bottom:432.479827px;}
.y57{bottom:436.619825px;}
.yf1{bottom:437.699825px;}
.y8a{bottom:439.319824px;}
.y23{bottom:443.279823px;}
.yaa{bottom:446.879821px;}
.ycf{bottom:451.559819px;}
.y56{bottom:455.519818px;}
.yf0{bottom:456.599817px;}
.y89{bottom:458.399817px;}
.y22{bottom:465.059814px;}
.yce{bottom:470.459812px;}
.y55{bottom:474.599810px;}
.yef{bottom:475.679810px;}
.y88{bottom:477.299809px;}
.y21{bottom:486.839805px;}
.ycd{bottom:489.359804px;}
.y54{bottom:493.679803px;}
.yee{bottom:494.579802px;}
.y87{bottom:496.379801px;}
.ycc{bottom:508.439797px;}
.y20{bottom:508.619797px;}
.y53{bottom:512.399795px;}
.yed{bottom:513.659795px;}
.y86{bottom:515.279794px;}
.ya7{bottom:522.839791px;}
.ycb{bottom:527.339789px;}
.y1f{bottom:530.399788px;}
.y52{bottom:531.479787px;}
.yec{bottom:532.559787px;}
.y85{bottom:534.359786px;}
.yca{bottom:546.419781px;}
.y51{bottom:550.379780px;}
.yeb{bottom:551.459779px;}
.y1e{bottom:552.359779px;}
.y84{bottom:553.259779px;}
.yc9{bottom:565.319774px;}
.y50{bottom:569.459772px;}
.yea{bottom:570.179772px;}
.y83{bottom:572.159771px;}
.y1d{bottom:574.139770px;}
.yc8{bottom:584.219766px;}
.ye9{bottom:587.459765px;}
.y4f{bottom:588.359765px;}
.y82{bottom:591.239764px;}
.y1c{bottom:595.919762px;}
.yc7{bottom:603.299759px;}
.ye8{bottom:604.739758px;}
.y4e{bottom:607.259757px;}
.y81{bottom:610.139756px;}
.y1b{bottom:617.699753px;}
.ye7{bottom:622.019751px;}
.yc6{bottom:622.199751px;}
.y4d{bottom:626.339749px;}
.y80{bottom:629.219748px;}
.ye6{bottom:639.119744px;}
.y1a{bottom:639.659744px;}
.yc5{bottom:641.279743px;}
.y4c{bottom:645.239742px;}
.y7f{bottom:648.119741px;}
.y103{bottom:648.299741px;}
.ye5{bottom:656.399737px;}
.yc4{bottom:660.179736px;}
.y19{bottom:661.439735px;}
.y4b{bottom:664.319734px;}
.y7e{bottom:667.019733px;}
.ye4{bottom:673.679731px;}
.yc3{bottom:679.079728px;}
.y18{bottom:683.219727px;}
.y7d{bottom:686.099726px;}
.ye3{bottom:690.959724px;}
.yc2{bottom:698.159721px;}
.y4a{bottom:702.119719px;}
.y17{bottom:704.999718px;}
.ye2{bottom:708.239717px;}
.yc1{bottom:717.059713px;}
.y49{bottom:721.199712px;}
.y7c{bottom:724.079710px;}
.ye1{bottom:725.519710px;}
.y16{bottom:726.779709px;}
.yc0{bottom:736.139706px;}
.y48{bottom:740.099704px;}
.y7b{bottom:742.979703px;}
.y15{bottom:748.739701px;}
.ybf{bottom:755.039698px;}
.y47{bottom:759.179696px;}
.y7a{bottom:761.879695px;}
.y14{bottom:770.519692px;}
.ybe{bottom:774.119690px;}
.y46{bottom:778.079689px;}
.y79{bottom:780.959688px;}
.y9c{bottom:781.139688px;}
.y13{bottom:792.299683px;}
.ybd{bottom:793.019683px;}
.y45{bottom:796.979681px;}
.y78{bottom:799.859680px;}
.y9b{bottom:800.039680px;}
.ybc{bottom:811.919675px;}
.y12{bottom:814.079674px;}
.y44{bottom:816.059674px;}
.y77{bottom:818.939672px;}
.ybb{bottom:830.999668px;}
.y43{bottom:834.959666px;}
.y11{bottom:836.039666px;}
.y76{bottom:837.839665px;}
.yba{bottom:849.899660px;}
.y42{bottom:854.039658px;}
.y75{bottom:856.739657px;}
.y10{bottom:857.819657px;}
.yb9{bottom:868.979652px;}
.y41{bottom:872.939651px;}
.y74{bottom:875.819650px;}
.yf{bottom:879.599648px;}
.yb8{bottom:887.879645px;}
.y40{bottom:891.839643px;}
.y73{bottom:894.719642px;}
.ye{bottom:901.379639px;}
.yb7{bottom:906.779637px;}
.y3f{bottom:910.919636px;}
.y72{bottom:913.799634px;}
.yd{bottom:923.159631px;}
.yb6{bottom:925.859630px;}
.y3e{bottom:929.819628px;}
.y71{bottom:932.699627px;}
.yb5{bottom:944.759622px;}
.yc{bottom:945.119622px;}
.y3d{bottom:948.899620px;}
.y70{bottom:951.779619px;}
.yb4{bottom:963.839614px;}
.yb{bottom:966.899613px;}
.y3c{bottom:967.799613px;}
.y6f{bottom:970.679612px;}
.yb3{bottom:982.379607px;}
.y3b{bottom:986.879605px;}
.ya{bottom:988.679605px;}
.y6e{bottom:989.579604px;}
.yb2{bottom:999.659600px;}
.y3a{bottom:1005.779598px;}
.y6d{bottom:1008.659597px;}
.y9{bottom:1010.459596px;}
.yb1{bottom:1016.939593px;}
.y39{bottom:1024.679590px;}
.y6c{bottom:1027.559589px;}
.y8{bottom:1032.239587px;}
.yb0{bottom:1034.219586px;}
.y38{bottom:1043.759582px;}
.y6b{bottom:1046.639581px;}
.yaf{bottom:1051.499579px;}
.y7{bottom:1054.199578px;}
.y37{bottom:1062.659575px;}
.y6a{bottom:1065.539574px;}
.y104{bottom:1065.719574px;}
.yae{bottom:1068.779572px;}
.y6{bottom:1075.979570px;}
.y36{bottom:1081.739567px;}
.y69{bottom:1084.439566px;}
.yad{bottom:1085.879566px;}
.y5{bottom:1097.759561px;}
.y35{bottom:1100.639560px;}
.y68{bottom:1103.519559px;}
.y34{bottom:1119.539552px;}
.y4{bottom:1119.719552px;}
.y67{bottom:1122.419551px;}
.y33{bottom:1141.499543px;}
.y3{bottom:1141.679543px;}
.h5{height:27.907020px;}
.h4{height:30.985908px;}
.h1{height:41.114864px;}
.h6{height:42.894123px;}
.h8{height:44.341902px;}
.h3{height:49.150060px;}
.h2{height:50.143660px;}
.h7{height:51.679667px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.619978px;}
.x7{left:132.479947px;}
.xf{left:170.099932px;}
.x9{left:180.719955px;}
.x10{left:223.019948px;}
.x3{left:312.839875px;}
.x4{left:318.599873px;}
.x8{left:439.019824px;}
.x1{left:442.619823px;}
.xc{left:466.199814px;}
.xd{left:471.959811px;}
.xe{left:515.699794px;}
.x5{left:521.279791px;}
.x6{left:527.039789px;}
.xa{left:630.539748px;}
.xb{left:636.299745px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.168228pt;}
.ws1{word-spacing:-16.368633pt;}
.ws0{word-spacing:0.000000pt;}
._1f{margin-left:-11.525400pt;}
._0{margin-left:-1.266191pt;}
._1{width:1.117316pt;}
._7{width:2.129712pt;}
._c{width:3.697517pt;}
._5{width:4.647970pt;}
._6{width:5.578683pt;}
._f{width:6.634605pt;}
._a{width:8.055222pt;}
._8{width:9.091146pt;}
._9{width:10.109466pt;}
._e{width:11.867809pt;}
._13{width:12.910583pt;}
._2{width:13.896387pt;}
._3{width:14.814533pt;}
._4{width:17.621585pt;}
._b{width:18.894444pt;}
._14{width:20.077798pt;}
._16{width:21.285636pt;}
._15{width:22.221368pt;}
._12{width:23.153422pt;}
._d{width:24.578956pt;}
._10{width:26.135402pt;}
._11{width:27.325449pt;}
._1b{width:28.946653pt;}
._1d{width:30.146076pt;}
._18{width:31.433041pt;}
._17{width:32.525840pt;}
._1c{width:33.458489pt;}
._21{width:34.490890pt;}
._19{width:35.501836pt;}
._1a{width:36.449319pt;}
._1e{width:39.815637pt;}
._20{width:40.712493pt;}
._23{width:42.642716pt;}
._22{width:43.688880pt;}
._24{width:53.522399pt;}
._25{width:54.522285pt;}
.fs3{font-size:34.559986pt;}
.fs2{font-size:37.119985pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.666913pt;}
.y1{bottom:66.026907pt;}
.ya6{bottom:98.186894pt;}
.y102{bottom:102.346626pt;}
.y32{bottom:102.986625pt;}
.y9a{bottom:103.946625pt;}
.ya9{bottom:104.906891pt;}
.ya8{bottom:114.186888pt;}
.ya5{bottom:114.506888pt;}
.ye0{bottom:114.666621pt;}
.y66{bottom:118.186619pt;}
.y101{bottom:119.146619pt;}
.y99{bottom:120.746618pt;}
.ya4{bottom:121.226885pt;}
.y31{bottom:122.346618pt;}
.ya3{bottom:130.826614pt;}
.ydf{bottom:131.466614pt;}
.y65{bottom:135.146613pt;}
.y100{bottom:136.106612pt;}
.y98{bottom:137.546612pt;}
.y109{bottom:137.706612pt;}
.y30{bottom:141.866610pt;}
.ya2{bottom:146.986608pt;}
.yde{bottom:148.266607pt;}
.y64{bottom:151.946606pt;}
.yff{bottom:152.906606pt;}
.ya1{bottom:153.706605pt;}
.y97{bottom:154.506605pt;}
.y2f{bottom:161.226602pt;}
.ya0{bottom:162.986601pt;}
.ydd{bottom:165.226601pt;}
.y63{bottom:168.746599pt;}
.yfe{bottom:169.866599pt;}
.y96{bottom:171.306598pt;}
.y2e{bottom:180.586594pt;}
.ydc{bottom:182.026594pt;}
.y62{bottom:185.706592pt;}
.yfd{bottom:186.666592pt;}
.y95{bottom:188.266591pt;}
.y108{bottom:188.426591pt;}
.ydb{bottom:198.986587pt;}
.y2d{bottom:199.946587pt;}
.y61{bottom:202.506586pt;}
.yfc{bottom:203.466585pt;}
.y94{bottom:205.066585pt;}
.y107{bottom:205.226585pt;}
.yda{bottom:215.786580pt;}
.y2c{bottom:219.466579pt;}
.yfb{bottom:220.426578pt;}
.y93{bottom:221.866578pt;}
.yd9{bottom:232.586574pt;}
.y60{bottom:236.266572pt;}
.yfa{bottom:237.226572pt;}
.y2b{bottom:238.826571pt;}
.yd8{bottom:249.546567pt;}
.y5f{bottom:253.066565pt;}
.yf9{bottom:254.186565pt;}
.y92{bottom:255.626564pt;}
.yac{bottom:255.786564pt;}
.y2a{bottom:258.186563pt;}
.yd7{bottom:266.346560pt;}
.y5e{bottom:270.026559pt;}
.yf8{bottom:270.986558pt;}
.y91{bottom:272.586558pt;}
.yab{bottom:272.746558pt;}
.y29{bottom:277.546556pt;}
.yd6{bottom:283.306553pt;}
.y5d{bottom:286.826552pt;}
.yf7{bottom:287.786552pt;}
.y90{bottom:289.386551pt;}
.y28{bottom:296.906548pt;}
.yd5{bottom:300.106547pt;}
.y5c{bottom:303.786545pt;}
.yf6{bottom:304.746545pt;}
.y8f{bottom:306.186544pt;}
.y27{bottom:316.426540pt;}
.yd4{bottom:317.066540pt;}
.y5b{bottom:320.586538pt;}
.yf5{bottom:321.546538pt;}
.y8e{bottom:323.146537pt;}
.y9f{bottom:329.866535pt;}
.yd3{bottom:333.866533pt;}
.y26{bottom:335.786532pt;}
.y5a{bottom:337.386532pt;}
.yf4{bottom:338.506531pt;}
.y8d{bottom:339.946531pt;}
.y106{bottom:340.106531pt;}
.y9e{bottom:346.666528pt;}
.yd2{bottom:350.666526pt;}
.y59{bottom:354.346525pt;}
.y25{bottom:355.146525pt;}
.yf3{bottom:355.306525pt;}
.y8c{bottom:356.906524pt;}
.y105{bottom:357.066524pt;}
.yd1{bottom:367.626520pt;}
.y58{bottom:371.146518pt;}
.yf2{bottom:372.266518pt;}
.y8b{bottom:373.706517pt;}
.y9d{bottom:373.866517pt;}
.y24{bottom:374.506517pt;}
.yd0{bottom:384.426513pt;}
.y57{bottom:388.106511pt;}
.yf1{bottom:389.066511pt;}
.y8a{bottom:390.506510pt;}
.y23{bottom:394.026509pt;}
.yaa{bottom:397.226508pt;}
.ycf{bottom:401.386506pt;}
.y56{bottom:404.906505pt;}
.yf0{bottom:405.866504pt;}
.y89{bottom:407.466504pt;}
.y22{bottom:413.386501pt;}
.yce{bottom:418.186499pt;}
.y55{bottom:421.866498pt;}
.yef{bottom:422.826498pt;}
.y88{bottom:424.266497pt;}
.y21{bottom:432.746494pt;}
.ycd{bottom:434.986493pt;}
.y54{bottom:438.826491pt;}
.yee{bottom:439.626491pt;}
.y87{bottom:441.226490pt;}
.ycc{bottom:451.946486pt;}
.y20{bottom:452.106486pt;}
.y53{bottom:455.466484pt;}
.yed{bottom:456.586484pt;}
.y86{bottom:458.026483pt;}
.ya7{bottom:464.746481pt;}
.ycb{bottom:468.746479pt;}
.y1f{bottom:471.466478pt;}
.y52{bottom:472.426478pt;}
.yec{bottom:473.386477pt;}
.y85{bottom:474.986477pt;}
.yca{bottom:485.706472pt;}
.y51{bottom:489.226471pt;}
.yeb{bottom:490.186471pt;}
.y1e{bottom:490.986470pt;}
.y84{bottom:491.786470pt;}
.yc9{bottom:502.506466pt;}
.y50{bottom:506.186464pt;}
.yea{bottom:506.826464pt;}
.y83{bottom:508.586463pt;}
.y1d{bottom:510.346463pt;}
.yc8{bottom:519.306459pt;}
.ye9{bottom:522.186458pt;}
.y4f{bottom:522.986457pt;}
.y82{bottom:525.546456pt;}
.y1c{bottom:529.706455pt;}
.yc7{bottom:536.266452pt;}
.ye8{bottom:537.546452pt;}
.y4e{bottom:539.786451pt;}
.y81{bottom:542.346450pt;}
.y1b{bottom:549.066447pt;}
.ye7{bottom:552.906446pt;}
.yc6{bottom:553.066445pt;}
.y4d{bottom:556.746444pt;}
.y80{bottom:559.306443pt;}
.ye6{bottom:568.106439pt;}
.y1a{bottom:568.586439pt;}
.yc5{bottom:570.026439pt;}
.y4c{bottom:573.546437pt;}
.y7f{bottom:576.106436pt;}
.y103{bottom:576.266436pt;}
.ye5{bottom:583.466433pt;}
.yc4{bottom:586.826432pt;}
.y19{bottom:587.946431pt;}
.y4b{bottom:590.506430pt;}
.y7e{bottom:592.906430pt;}
.ye4{bottom:598.826427pt;}
.yc3{bottom:603.626425pt;}
.y18{bottom:607.306424pt;}
.y7d{bottom:609.866423pt;}
.ye3{bottom:614.186421pt;}
.yc2{bottom:620.586418pt;}
.y4a{bottom:624.106417pt;}
.y17{bottom:626.666416pt;}
.ye2{bottom:629.546415pt;}
.yc1{bottom:637.386412pt;}
.y49{bottom:641.066410pt;}
.y7c{bottom:643.626409pt;}
.ye1{bottom:644.906409pt;}
.y16{bottom:646.026408pt;}
.yc0{bottom:654.346405pt;}
.y48{bottom:657.866404pt;}
.y7b{bottom:660.426402pt;}
.y15{bottom:665.546400pt;}
.ybf{bottom:671.146398pt;}
.y47{bottom:674.826397pt;}
.y7a{bottom:677.226396pt;}
.y14{bottom:684.906393pt;}
.ybe{bottom:688.106391pt;}
.y46{bottom:691.626390pt;}
.y79{bottom:694.186389pt;}
.y9c{bottom:694.346389pt;}
.y13{bottom:704.266385pt;}
.ybd{bottom:704.906385pt;}
.y45{bottom:708.426383pt;}
.y78{bottom:710.986382pt;}
.y9b{bottom:711.146382pt;}
.ybc{bottom:721.706378pt;}
.y12{bottom:723.626377pt;}
.y44{bottom:725.386377pt;}
.y77{bottom:727.946375pt;}
.ybb{bottom:738.666371pt;}
.y43{bottom:742.186370pt;}
.y11{bottom:743.146369pt;}
.y76{bottom:744.746369pt;}
.yba{bottom:755.466364pt;}
.y42{bottom:759.146363pt;}
.y75{bottom:761.546362pt;}
.y10{bottom:762.506362pt;}
.yb9{bottom:772.426358pt;}
.y41{bottom:775.946356pt;}
.y74{bottom:778.506355pt;}
.yf{bottom:781.866354pt;}
.yb8{bottom:789.226351pt;}
.y40{bottom:792.746350pt;}
.y73{bottom:795.306349pt;}
.ye{bottom:801.226346pt;}
.yb7{bottom:806.026344pt;}
.y3f{bottom:809.706343pt;}
.y72{bottom:812.266342pt;}
.yd{bottom:820.586338pt;}
.yb6{bottom:822.986337pt;}
.y3e{bottom:826.506336pt;}
.y71{bottom:829.066335pt;}
.yb5{bottom:839.786331pt;}
.yc{bottom:840.106331pt;}
.y3d{bottom:843.466329pt;}
.y70{bottom:846.026328pt;}
.yb4{bottom:856.746324pt;}
.yb{bottom:859.466323pt;}
.y3c{bottom:860.266323pt;}
.y6f{bottom:862.826322pt;}
.yb3{bottom:873.226317pt;}
.y3b{bottom:877.226316pt;}
.ya{bottom:878.826315pt;}
.y6e{bottom:879.626315pt;}
.yb2{bottom:888.586311pt;}
.y3a{bottom:894.026309pt;}
.y6d{bottom:896.586308pt;}
.y9{bottom:898.186307pt;}
.yb1{bottom:903.946305pt;}
.y39{bottom:910.826302pt;}
.y6c{bottom:913.386301pt;}
.y8{bottom:917.546300pt;}
.yb0{bottom:919.306299pt;}
.y38{bottom:927.786296pt;}
.y6b{bottom:930.346295pt;}
.yaf{bottom:934.666293pt;}
.y7{bottom:937.066292pt;}
.y37{bottom:944.586289pt;}
.y6a{bottom:947.146288pt;}
.y104{bottom:947.306288pt;}
.yae{bottom:950.026287pt;}
.y6{bottom:956.426284pt;}
.y36{bottom:961.546282pt;}
.y69{bottom:963.946281pt;}
.yad{bottom:965.226281pt;}
.y5{bottom:975.786276pt;}
.y35{bottom:978.346275pt;}
.y68{bottom:980.906274pt;}
.y34{bottom:995.146269pt;}
.y4{bottom:995.306269pt;}
.y67{bottom:997.706268pt;}
.y33{bottom:1014.666261pt;}
.y3{bottom:1014.826261pt;}
.h5{height:24.806240pt;}
.h4{height:27.543029pt;}
.h1{height:36.546545pt;}
.h6{height:38.128110pt;}
.h8{height:39.415024pt;}
.h3{height:43.688943pt;}
.h2{height:44.572142pt;}
.h7{height:45.937482pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.439980pt;}
.x7{left:117.759953pt;}
.xf{left:151.199940pt;}
.x9{left:160.639960pt;}
.x10{left:198.239954pt;}
.x3{left:278.079889pt;}
.x4{left:283.199887pt;}
.x8{left:390.239844pt;}
.x1{left:393.439843pt;}
.xc{left:414.399834pt;}
.xd{left:419.519832pt;}
.xe{left:458.399817pt;}
.x5{left:463.359815pt;}
.x6{left:468.479813pt;}
.xa{left:560.479776pt;}
.xb{left:565.599774pt;}
}




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