
    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_23e9abb76dec62df0c8cb57b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_41b98492aa42d47968342753.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_3d130e0c832480fce5de765d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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;}
.m5{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);}
.m3{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);}
.m2{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);}
.m0{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);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.010620px;}
.ls0{letter-spacing:0.010641px;}
.ls4{letter-spacing:0.021238px;}
.ls5{letter-spacing:0.021282px;}
.ls1{letter-spacing:0.189300px;}
.ls3{letter-spacing:9.555056px;}
.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;}
}
.ws6{word-spacing:-18.021275px;}
.ws0{word-spacing:-17.999993px;}
.ws1{word-spacing:-16.559993px;}
.ws2{word-spacing:-14.939994px;}
.ws4{word-spacing:-12.059995px;}
.ws5{word-spacing:-9.719996px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-2.421149px;}
._1{margin-left:-1.419566px;}
._0{width:1.505540px;}
._3{width:3.433185px;}
._2{width:4.443029px;}
._4{width:6.053022px;}
._9{width:7.434549px;}
._8{width:8.959187px;}
._7{width:10.102600px;}
._11{width:11.329042px;}
._f{width:12.868972px;}
._12{width:13.879940px;}
._10{width:15.008464px;}
._17{width:16.729239px;}
._e{width:19.473506px;}
._1a{width:20.550729px;}
._14{width:21.711906px;}
._a{width:22.819817px;}
._b{width:24.405899px;}
._d{width:25.459165px;}
._1b{width:26.730805px;}
._18{width:27.876883px;}
._19{width:29.580646px;}
._5{width:31.167197px;}
._6{width:32.309395px;}
._c{width:33.407937px;}
._1d{width:34.459852px;}
._1e{width:35.481815px;}
._15{width:39.720114px;}
._16{width:40.803170px;}
._1c{width:41.843052px;}
._1f{width:43.106629px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs3{font-size:41.759983px;}
.fs1{font-size:48.239981px;}
.fs5{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.720277px;}
.y4e{bottom:110.099956px;}
.y2d{bottom:110.100256px;}
.y7a{bottom:115.860254px;}
.yd8{bottom:116.940253px;}
.y64{bottom:126.119950px;}
.y4d{bottom:127.379949px;}
.y2c{bottom:127.380249px;}
.yd7{bottom:128.099949px;}
.y2b{bottom:134.220246px;}
.yb4{bottom:141.599943px;}
.y2a{bottom:144.659942px;}
.y9a{bottom:144.660242px;}
.yc8{bottom:145.379942px;}
.y79{bottom:146.820241px;}
.y99{bottom:151.499939px;}
.y63{bottom:157.259937px;}
.yd4{bottom:159.779936px;}
.y29{bottom:161.939935px;}
.y98{bottom:162.659935px;}
.ye9{bottom:167.520233px;}
.y28{bottom:168.779932px;}
.yb3{bottom:172.739931px;}
.yd6{bottom:177.959929px;}
.y78{bottom:177.960229px;}
.y27{bottom:179.219928px;}
.ybb{bottom:179.939928px;}
.y62{bottom:188.219925px;}
.yd3{bottom:190.739924px;}
.y26{bottom:196.499921px;}
.y97{bottom:198.659921px;}
.ye8{bottom:198.660221px;}
.yb2{bottom:203.699919px;}
.yba{bottom:208.919916px;}
.y77{bottom:208.920216px;}
.y25{bottom:213.599915px;}
.y61{bottom:219.359912px;}
.yd2{bottom:221.879911px;}
.y96{bottom:229.619908px;}
.ye7{bottom:229.620208px;}
.y24{bottom:230.879908px;}
.yb1{bottom:234.839906px;}
.y23{bottom:237.719905px;}
.yb9{bottom:240.059904px;}
.y76{bottom:240.060204px;}
.y4c{bottom:248.159901px;}
.y22{bottom:248.879900px;}
.y60{bottom:250.319900px;}
.yd1{bottom:252.839899px;}
.y4b{bottom:254.999898px;}
.y95{bottom:260.579896px;}
.ye6{bottom:260.580196px;}
.y4a{bottom:265.439894px;}
.yb0{bottom:265.799894px;}
.yb8{bottom:271.019892px;}
.y75{bottom:271.020192px;}
.yc6{bottom:272.279891px;}
.y5f{bottom:281.279887px;}
.y49{bottom:282.719887px;}
.yc5{bottom:283.439887px;}
.yd0{bottom:283.979886px;}
.y94{bottom:291.719883px;}
.ye5{bottom:291.720183px;}
.yaf{bottom:296.939881px;}
.y48{bottom:299.819880px;}
.yb7{bottom:301.979879px;}
.y74{bottom:301.980179px;}
.y47{bottom:306.659877px;}
.y5e{bottom:312.419875px;}
.ycf{bottom:314.939874px;}
.y46{bottom:317.819873px;}
.y20{bottom:322.679871px;}
.ye4{bottom:322.680171px;}
.yae{bottom:327.899869px;}
.y21{bottom:330.959868px;}
.yb6{bottom:333.119867px;}
.y73{bottom:333.120167px;}
.y5d{bottom:343.379863px;}
.yce{bottom:346.079862px;}
.y1f{bottom:353.819858px;}
.ye3{bottom:353.820158px;}
.yad{bottom:359.039856px;}
.y45{bottom:364.079854px;}
.y72{bottom:364.080154px;}
.y5c{bottom:374.519850px;}
.ycd{bottom:377.039849px;}
.yc4{bottom:382.799847px;}
.y1e{bottom:384.779846px;}
.ye2{bottom:384.780146px;}
.yac{bottom:389.999844px;}
.y44{bottom:395.219842px;}
.y71{bottom:395.220142px;}
.y5b{bottom:405.479838px;}
.ycc{bottom:408.179837px;}
.y1d{bottom:415.919834px;}
.ye1{bottom:415.920134px;}
.yab{bottom:419.879832px;}
.y42{bottom:426.179830px;}
.y70{bottom:426.180130px;}
.y43{bottom:434.459826px;}
.y5a{bottom:436.619825px;}
.ycb{bottom:439.139824px;}
.y1b{bottom:445.799822px;}
.y93{bottom:446.879821px;}
.ye0{bottom:446.880121px;}
.yaa{bottom:448.319821px;}
.y1c{bottom:453.359819px;}
.y41{bottom:457.319817px;}
.y6f{bottom:457.320117px;}
.y59{bottom:467.579813px;}
.yca{bottom:470.279812px;}
.y1a{bottom:474.239810px;}
.ya9{bottom:476.939809px;}
.y92{bottom:478.019809px;}
.ydf{bottom:478.020109px;}
.y40{bottom:488.279805px;}
.y6e{bottom:488.280105px;}
.yd5{bottom:496.559801px;}
.y58{bottom:498.719801px;}
.yc9{bottom:501.239800px;}
.y19{bottom:502.679799px;}
.ya8{bottom:505.379798px;}
.y91{bottom:508.979796px;}
.yde{bottom:508.980096px;}
.y3f{bottom:519.419792px;}
.y6d{bottom:519.420092px;}
.y57{bottom:529.679788px;}
.y18{bottom:531.119788px;}
.ya7{bottom:534.899786px;}
.y90{bottom:540.119784px;}
.ydd{bottom:540.120084px;}
.y3e{bottom:550.379780px;}
.y6c{bottom:550.380080px;}
.y17{bottom:559.559776px;}
.y56{bottom:560.819776px;}
.ya6{bottom:566.039774px;}
.yc3{bottom:569.099772px;}
.y8f{bottom:571.079772px;}
.ydc{bottom:571.080072px;}
.y3d{bottom:581.519767px;}
.y6b{bottom:581.520067px;}
.y16{bottom:588.179765px;}
.y55{bottom:591.779763px;}
.ya5{bottom:596.999761px;}
.y8e{bottom:602.219759px;}
.ydb{bottom:602.220059px;}
.y3b{bottom:612.479755px;}
.y6a{bottom:612.480055px;}
.y15{bottom:616.619753px;}
.y3c{bottom:620.759752px;}
.y54{bottom:622.919751px;}
.yda{bottom:623.100051px;}
.ya4{bottom:628.139749px;}
.y8d{bottom:632.099747px;}
.yd9{bottom:643.440043px;}
.y3a{bottom:643.619743px;}
.y69{bottom:643.620043px;}
.y14{bottom:645.059742px;}
.y53{bottom:653.879738px;}
.ya3{bottom:659.099736px;}
.y8c{bottom:660.539736px;}
.y13{bottom:674.579730px;}
.y68{bottom:674.580030px;}
.y52{bottom:683.759726px;}
.yc2{bottom:685.019726px;}
.y8b{bottom:688.979724px;}
.ya2{bottom:690.239724px;}
.y12{bottom:705.719718px;}
.y67{bottom:705.720018px;}
.y51{bottom:712.379715px;}
.yc1{bottom:715.979714px;}
.y8a{bottom:718.679713px;}
.ya1{bottom:721.199712px;}
.y11{bottom:736.679705px;}
.y66{bottom:736.680005px;}
.y50{bottom:740.819704px;}
.yc0{bottom:747.119701px;}
.y89{bottom:749.639700px;}
.ya0{bottom:751.079700px;}
.y10{bottom:767.819693px;}
.y65{bottom:767.819993px;}
.yea{bottom:767.999993px;}
.y4f{bottom:769.259692px;}
.ybf{bottom:776.999689px;}
.y9f{bottom:779.519688px;}
.y88{bottom:780.779688px;}
.yf{bottom:798.779680px;}
.yd{bottom:798.779980px;}
.ybe{bottom:805.439678px;}
.ye{bottom:807.059677px;}
.y9e{bottom:807.959677px;}
.y87{bottom:811.739675px;}
.y39{bottom:829.919668px;}
.yc{bottom:829.919968px;}
.ybd{bottom:833.879666px;}
.y9d{bottom:836.399665px;}
.y86{bottom:842.879663px;}
.y38{bottom:860.879656px;}
.yb{bottom:860.879956px;}
.ybc{bottom:862.319655px;}
.y9c{bottom:865.019654px;}
.yb5{bottom:869.159652px;}
.y85{bottom:873.839650px;}
.y37{bottom:892.019643px;}
.ya{bottom:892.019943px;}
.y9b{bottom:893.459643px;}
.y83{bottom:904.979638px;}
.y84{bottom:913.259635px;}
.y36{bottom:922.979631px;}
.y9{bottom:922.979931px;}
.y82{bottom:935.939626px;}
.y35{bottom:954.119618px;}
.y8{bottom:954.119918px;}
.yc7{bottom:962.399615px;}
.y81{bottom:967.079613px;}
.y34{bottom:985.079606px;}
.y7{bottom:985.079906px;}
.y80{bottom:998.039601px;}
.y33{bottom:1016.219594px;}
.y6{bottom:1016.219894px;}
.y7f{bottom:1027.919589px;}
.y32{bottom:1047.179581px;}
.y5{bottom:1047.179881px;}
.y7e{bottom:1056.359577px;}
.y31{bottom:1078.319569px;}
.y4{bottom:1078.319869px;}
.y7d{bottom:1084.799566px;}
.y30{bottom:1109.279556px;}
.y3{bottom:1109.279856px;}
.y7c{bottom:1113.239555px;}
.y2f{bottom:1140.419544px;}
.y2{bottom:1140.419844px;}
.y7b{bottom:1141.859543px;}
.y2e{bottom:1148.699541px;}
.h5{height:38.158578px;}
.h4{height:40.985140px;}
.h2{height:47.344903px;}
.h6{height:58.651148px;}
.h3{height:65.010911px;}
.h8{height:66.757473px;}
.h1{height:70.664034px;}
.h9{height:70.665234px;}
.h7{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xb{left:132.479947px;}
.x1f{left:137.339945px;}
.x6{left:168.120205px;}
.x2{left:180.719930px;}
.x22{left:198.539921px;}
.x23{left:210.779916px;}
.x5{left:221.219912px;}
.x26{left:223.739911px;}
.x7{left:241.019904px;}
.x8{left:246.239902px;}
.x1a{left:295.919882px;}
.x20{left:325.439870px;}
.x21{left:337.679865px;}
.xe{left:349.019860px;}
.xf{left:355.139858px;}
.x16{left:403.559839px;}
.x27{left:405.536570px;}
.x17{left:409.679836px;}
.x1d{left:447.119821px;}
.x1e{left:459.359816px;}
.xc{left:467.459813px;}
.xd{left:473.579811px;}
.x3{left:481.319807px;}
.x4{left:487.439805px;}
.x9{left:528.479789px;}
.xa{left:534.599786px;}
.x1b{left:541.979783px;}
.x1c{left:554.219778px;}
.x13{left:570.419772px;}
.x14{left:576.539769px;}
.x12{left:578.339769px;}
.x18{left:592.019763px;}
.x19{left:598.139761px;}
.x15{left:635.579746px;}
.x24{left:753.119699px;}
.x10{left:754.919698px;}
.x11{left:761.039696px;}
.x25{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.009440pt;}
.ls0{letter-spacing:0.009459pt;}
.ls4{letter-spacing:0.018878pt;}
.ls5{letter-spacing:0.018917pt;}
.ls1{letter-spacing:0.168267pt;}
.ls3{letter-spacing:8.493383pt;}
.ws6{word-spacing:-16.018911pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:-14.719994pt;}
.ws2{word-spacing:-13.279995pt;}
.ws4{word-spacing:-10.719996pt;}
.ws5{word-spacing:-8.639997pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-2.152132pt;}
._1{margin-left:-1.261836pt;}
._0{width:1.338258pt;}
._3{width:3.051720pt;}
._2{width:3.949359pt;}
._4{width:5.380464pt;}
._9{width:6.608488pt;}
._8{width:7.963721pt;}
._7{width:8.980089pt;}
._11{width:10.070260pt;}
._f{width:11.439086pt;}
._12{width:12.337724pt;}
._10{width:13.340857pt;}
._17{width:14.870434pt;}
._e{width:17.309783pt;}
._1a{width:18.267314pt;}
._14{width:19.299472pt;}
._a{width:20.284282pt;}
._b{width:21.694132pt;}
._d{width:22.630369pt;}
._1b{width:23.760716pt;}
._18{width:24.779452pt;}
._19{width:26.293908pt;}
._5{width:27.704175pt;}
._6{width:28.719462pt;}
._c{width:29.695944pt;}
._1d{width:30.630979pt;}
._1e{width:31.539392pt;}
._15{width:35.306768pt;}
._16{width:36.269484pt;}
._1c{width:37.193824pt;}
._1f{width:38.317003pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:37.119985pt;}
.fs1{font-size:42.879983pt;}
.fs5{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.306913pt;}
.y4e{bottom:97.866628pt;}
.y2d{bottom:97.866894pt;}
.y7a{bottom:102.986892pt;}
.yd8{bottom:103.946892pt;}
.y64{bottom:112.106622pt;}
.y4d{bottom:113.226621pt;}
.y2c{bottom:113.226888pt;}
.yd7{bottom:113.866621pt;}
.y2b{bottom:119.306886pt;}
.yb4{bottom:125.866616pt;}
.y2a{bottom:128.586615pt;}
.y9a{bottom:128.586882pt;}
.yc8{bottom:129.226615pt;}
.y79{bottom:130.506881pt;}
.y99{bottom:134.666613pt;}
.y63{bottom:139.786611pt;}
.yd4{bottom:142.026610pt;}
.y29{bottom:143.946609pt;}
.y98{bottom:144.586609pt;}
.ye9{bottom:148.906874pt;}
.y28{bottom:150.026607pt;}
.yb3{bottom:153.546605pt;}
.yd6{bottom:158.186603pt;}
.y78{bottom:158.186870pt;}
.y27{bottom:159.306603pt;}
.ybb{bottom:159.946603pt;}
.y62{bottom:167.306600pt;}
.yd3{bottom:169.546599pt;}
.y26{bottom:174.666597pt;}
.y97{bottom:176.586596pt;}
.ye8{bottom:176.586863pt;}
.yb2{bottom:181.066594pt;}
.yba{bottom:185.706592pt;}
.y77{bottom:185.706859pt;}
.y25{bottom:189.866591pt;}
.y61{bottom:194.986589pt;}
.yd2{bottom:197.226588pt;}
.y96{bottom:204.106585pt;}
.ye7{bottom:204.106852pt;}
.y24{bottom:205.226585pt;}
.yb1{bottom:208.746583pt;}
.y23{bottom:211.306582pt;}
.yb9{bottom:213.386581pt;}
.y76{bottom:213.386848pt;}
.y4c{bottom:220.586578pt;}
.y22{bottom:221.226578pt;}
.y60{bottom:222.506578pt;}
.yd1{bottom:224.746577pt;}
.y4b{bottom:226.666576pt;}
.y95{bottom:231.626574pt;}
.ye6{bottom:231.626841pt;}
.y4a{bottom:235.946572pt;}
.yb0{bottom:236.266572pt;}
.yb8{bottom:240.906570pt;}
.y75{bottom:240.906837pt;}
.yc6{bottom:242.026570pt;}
.y5f{bottom:250.026567pt;}
.y49{bottom:251.306566pt;}
.yc5{bottom:251.946566pt;}
.yd0{bottom:252.426566pt;}
.y94{bottom:259.306563pt;}
.ye5{bottom:259.306830pt;}
.yaf{bottom:263.946561pt;}
.y48{bottom:266.506560pt;}
.yb7{bottom:268.426559pt;}
.y74{bottom:268.426826pt;}
.y47{bottom:272.586558pt;}
.y5e{bottom:277.706556pt;}
.ycf{bottom:279.946555pt;}
.y46{bottom:282.506554pt;}
.y20{bottom:286.826552pt;}
.ye4{bottom:286.826819pt;}
.yae{bottom:291.466550pt;}
.y21{bottom:294.186549pt;}
.yb6{bottom:296.106548pt;}
.y73{bottom:296.106815pt;}
.y5d{bottom:305.226545pt;}
.yce{bottom:307.626544pt;}
.y1f{bottom:314.506541pt;}
.ye3{bottom:314.506808pt;}
.yad{bottom:319.146539pt;}
.y45{bottom:323.626537pt;}
.y72{bottom:323.626804pt;}
.y5c{bottom:332.906534pt;}
.ycd{bottom:335.146533pt;}
.yc4{bottom:340.266531pt;}
.y1e{bottom:342.026530pt;}
.ye2{bottom:342.026797pt;}
.yac{bottom:346.666528pt;}
.y44{bottom:351.306526pt;}
.y71{bottom:351.306793pt;}
.y5b{bottom:360.426522pt;}
.ycc{bottom:362.826522pt;}
.y1d{bottom:369.706519pt;}
.ye1{bottom:369.706785pt;}
.yab{bottom:373.226517pt;}
.y42{bottom:378.826515pt;}
.y70{bottom:378.826782pt;}
.y43{bottom:386.186512pt;}
.y5a{bottom:388.106511pt;}
.ycb{bottom:390.346511pt;}
.y1b{bottom:396.266508pt;}
.y93{bottom:397.226508pt;}
.ye0{bottom:397.226774pt;}
.yaa{bottom:398.506507pt;}
.y1c{bottom:402.986505pt;}
.y41{bottom:406.506504pt;}
.y6f{bottom:406.506771pt;}
.y59{bottom:415.626500pt;}
.yca{bottom:418.026499pt;}
.y1a{bottom:421.546498pt;}
.ya9{bottom:423.946497pt;}
.y92{bottom:424.906497pt;}
.ydf{bottom:424.906763pt;}
.y40{bottom:434.026493pt;}
.y6e{bottom:434.026760pt;}
.yd5{bottom:441.386490pt;}
.y58{bottom:443.306489pt;}
.yc9{bottom:445.546488pt;}
.y19{bottom:446.826488pt;}
.ya8{bottom:449.226487pt;}
.y91{bottom:452.426486pt;}
.yde{bottom:452.426752pt;}
.y3f{bottom:461.706482pt;}
.y6d{bottom:461.706749pt;}
.y57{bottom:470.826478pt;}
.y18{bottom:472.106478pt;}
.ya7{bottom:475.466476pt;}
.y90{bottom:480.106475pt;}
.ydd{bottom:480.106741pt;}
.y3e{bottom:489.226471pt;}
.y6c{bottom:489.226738pt;}
.y17{bottom:497.386468pt;}
.y56{bottom:498.506467pt;}
.ya6{bottom:503.146465pt;}
.yc3{bottom:505.866464pt;}
.y8f{bottom:507.626464pt;}
.ydc{bottom:507.626730pt;}
.y3d{bottom:516.906460pt;}
.y6b{bottom:516.906727pt;}
.y16{bottom:522.826458pt;}
.y55{bottom:526.026456pt;}
.ya5{bottom:530.666454pt;}
.y8e{bottom:535.306453pt;}
.ydb{bottom:535.306719pt;}
.y3b{bottom:544.426449pt;}
.y6a{bottom:544.426716pt;}
.y15{bottom:548.106447pt;}
.y3c{bottom:551.786446pt;}
.y54{bottom:553.706445pt;}
.yda{bottom:553.866712pt;}
.ya4{bottom:558.346443pt;}
.y8d{bottom:561.866442pt;}
.yd9{bottom:571.946705pt;}
.y3a{bottom:572.106438pt;}
.y69{bottom:572.106704pt;}
.y14{bottom:573.386437pt;}
.y53{bottom:581.226434pt;}
.ya3{bottom:585.866432pt;}
.y8c{bottom:587.146432pt;}
.y13{bottom:599.626427pt;}
.y68{bottom:599.626693pt;}
.y52{bottom:607.786424pt;}
.yc2{bottom:608.906423pt;}
.y8b{bottom:612.426422pt;}
.ya2{bottom:613.546421pt;}
.y12{bottom:627.306416pt;}
.y67{bottom:627.306682pt;}
.y51{bottom:633.226413pt;}
.yc1{bottom:636.426412pt;}
.y8a{bottom:638.826411pt;}
.ya1{bottom:641.066410pt;}
.y11{bottom:654.826405pt;}
.y66{bottom:654.826671pt;}
.y50{bottom:658.506403pt;}
.yc0{bottom:664.106401pt;}
.y89{bottom:666.346400pt;}
.ya0{bottom:667.626400pt;}
.y10{bottom:682.506394pt;}
.y65{bottom:682.506660pt;}
.yea{bottom:682.666660pt;}
.y4f{bottom:683.786393pt;}
.ybf{bottom:690.666390pt;}
.y9f{bottom:692.906390pt;}
.y88{bottom:694.026389pt;}
.yf{bottom:710.026383pt;}
.yd{bottom:710.026649pt;}
.ybe{bottom:715.946380pt;}
.ye{bottom:717.386380pt;}
.y9e{bottom:718.186379pt;}
.y87{bottom:721.546378pt;}
.y39{bottom:737.706372pt;}
.yc{bottom:737.706638pt;}
.ybd{bottom:741.226370pt;}
.y9d{bottom:743.466369pt;}
.y86{bottom:749.226367pt;}
.y38{bottom:765.226361pt;}
.yb{bottom:765.226627pt;}
.ybc{bottom:766.506360pt;}
.y9c{bottom:768.906359pt;}
.yb5{bottom:772.586358pt;}
.y85{bottom:776.746356pt;}
.y37{bottom:792.906350pt;}
.ya{bottom:792.906616pt;}
.y9b{bottom:794.186349pt;}
.y83{bottom:804.426345pt;}
.y84{bottom:811.786342pt;}
.y36{bottom:820.426338pt;}
.y9{bottom:820.426605pt;}
.y82{bottom:831.946334pt;}
.y35{bottom:848.106327pt;}
.y8{bottom:848.106594pt;}
.yc7{bottom:855.466324pt;}
.y81{bottom:859.626323pt;}
.y34{bottom:875.626316pt;}
.y7{bottom:875.626583pt;}
.y80{bottom:887.146312pt;}
.y33{bottom:903.306305pt;}
.y6{bottom:903.306572pt;}
.y7f{bottom:913.706301pt;}
.y32{bottom:930.826294pt;}
.y5{bottom:930.826561pt;}
.y7e{bottom:938.986291pt;}
.y31{bottom:958.506283pt;}
.y4{bottom:958.506550pt;}
.y7d{bottom:964.266281pt;}
.y30{bottom:986.026272pt;}
.y3{bottom:986.026539pt;}
.y7c{bottom:989.546271pt;}
.y2f{bottom:1013.706261pt;}
.y2{bottom:1013.706528pt;}
.y7b{bottom:1014.986261pt;}
.y2e{bottom:1021.066258pt;}
.h5{height:33.918736pt;}
.h4{height:36.431235pt;}
.h2{height:42.084358pt;}
.h6{height:52.134354pt;}
.h3{height:57.787477pt;}
.h8{height:59.339976pt;}
.h1{height:62.812475pt;}
.h9{height:62.813542pt;}
.h7{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xb{left:117.759953pt;}
.x1f{left:122.079951pt;}
.x6{left:149.440183pt;}
.x2{left:160.639938pt;}
.x22{left:176.479929pt;}
.x23{left:187.359925pt;}
.x5{left:196.639921pt;}
.x26{left:198.879920pt;}
.x7{left:214.239914pt;}
.x8{left:218.879912pt;}
.x1a{left:263.039895pt;}
.x20{left:289.279884pt;}
.x21{left:300.159880pt;}
.xe{left:310.239876pt;}
.xf{left:315.679874pt;}
.x16{left:358.719857pt;}
.x27{left:360.476951pt;}
.x17{left:364.159854pt;}
.x1d{left:397.439841pt;}
.x1e{left:408.319837pt;}
.xc{left:415.519834pt;}
.xd{left:420.959832pt;}
.x3{left:427.839829pt;}
.x4{left:433.279827pt;}
.x9{left:469.759812pt;}
.xa{left:475.199810pt;}
.x1b{left:481.759807pt;}
.x1c{left:492.639803pt;}
.x13{left:507.039797pt;}
.x14{left:512.479795pt;}
.x12{left:514.079794pt;}
.x18{left:526.239790pt;}
.x19{left:531.679787pt;}
.x15{left:564.959774pt;}
.x24{left:669.439732pt;}
.x10{left:671.039732pt;}
.x11{left:676.479729pt;}
.x25{left:680.319728pt;}
}




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