
    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_ee318c4ba7373898d98521b3.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_c89896e0cb244221a456ff3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_3a0f5df46706e32417c14558.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918457;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_b7e53c01f74482afcd41e8ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926000;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_0049252aa8213fa3e43b1c5b.woff2')format("woff");}.ff5{font-family:ff5;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;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.529200px;}
.ls2{letter-spacing:0.539460px;}
.ls4{letter-spacing:0.799200px;}
.ls0{letter-spacing:14.017200px;}
.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;}
}
.wsf{word-spacing:-18.000000px;}
.ws1{word-spacing:-13.500000px;}
.wsc{word-spacing:-12.000000px;}
.ws2c{word-spacing:-11.250000px;}
.ws0{word-spacing:-10.125000px;}
.ws1d{word-spacing:-3.816180px;}
.ws3{word-spacing:-3.622860px;}
.ws15{word-spacing:-3.301020px;}
.ws14{word-spacing:-2.666520px;}
.ws1e{word-spacing:-2.400300px;}
.ws19{word-spacing:-2.292300px;}
.ws2{word-spacing:-2.205900px;}
.ws12{word-spacing:-2.106540px;}
.ws24{word-spacing:-1.973700px;}
.wsa{word-spacing:-1.971000px;}
.ws9{word-spacing:-1.969920px;}
.ws22{word-spacing:-1.744740px;}
.ws1b{word-spacing:-1.504980px;}
.ws1c{word-spacing:-1.499040px;}
.ws17{word-spacing:-1.485000px;}
.ws13{word-spacing:-1.472160px;}
.ws6{word-spacing:-1.447200px;}
.ws11{word-spacing:-1.256040px;}
.ws25{word-spacing:-0.880200px;}
.wsb{word-spacing:-0.869400px;}
.ws4{word-spacing:-0.233280px;}
.ws10{word-spacing:0.000000px;}
.ws18{word-spacing:0.110700px;}
.ws20{word-spacing:0.118800px;}
.ws16{word-spacing:0.448200px;}
.ws21{word-spacing:0.564300px;}
.ws1f{word-spacing:0.680400px;}
.ws29{word-spacing:0.788400px;}
.ws7{word-spacing:0.842400px;}
.ws5{word-spacing:0.995760px;}
.ws26{word-spacing:1.134000px;}
.ws27{word-spacing:1.139400px;}
.ws1a{word-spacing:1.185840px;}
.ws2b{word-spacing:1.196640px;}
.ws2a{word-spacing:1.441800px;}
.wse{word-spacing:1.593000px;}
.wsd{word-spacing:1.927800px;}
.ws28{word-spacing:3.067200px;}
.ws8{word-spacing:4.718895px;}
.ws23{word-spacing:5.280660px;}
._b{margin-left:-15.984000px;}
._8{margin-left:-7.342920px;}
._c{margin-left:-6.040080px;}
._4{margin-left:-4.099500px;}
._5{margin-left:-2.959560px;}
._0{margin-left:-1.301400px;}
._3{width:1.286280px;}
._2{width:2.882340px;}
._6{width:4.311000px;}
._1{width:6.259140px;}
._9{width:7.692120px;}
._7{width:9.471060px;}
._d{width:11.199600px;}
._e{width:16.046940px;}
._f{width:17.748720px;}
._a{width:43.277760px;}
.fc1{color:rgb(38,65,154);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:40.500000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:43.919250px;}
.y4e{bottom:54.419250px;}
.y112{bottom:101.580000px;}
.ye1{bottom:101.584455px;}
.y7f{bottom:102.483975px;}
.yb0{bottom:102.488010px;}
.y25{bottom:108.786345px;}
.y4b{bottom:108.793200px;}
.y111{bottom:118.318650px;}
.ye0{bottom:118.323105px;}
.yaf{bottom:119.057775px;}
.y7e{bottom:119.604675px;}
.y24{bottom:125.415645px;}
.y4a{bottom:125.422500px;}
.y110{bottom:135.057300px;}
.ydf{bottom:135.061755px;}
.yae{bottom:135.627135px;}
.y7d{bottom:136.724025px;}
.y23{bottom:142.044945px;}
.y49{bottom:142.051800px;}
.y10f{bottom:151.795950px;}
.yde{bottom:151.800405px;}
.yad{bottom:152.196900px;}
.y7c{bottom:153.844725px;}
.y22{bottom:158.674245px;}
.y48{bottom:158.674335px;}
.y10e{bottom:168.534600px;}
.ydd{bottom:168.539055px;}
.yac{bottom:168.766530px;}
.y7b{bottom:170.965425px;}
.y21{bottom:175.303545px;}
.y47{bottom:175.303635px;}
.y10d{bottom:185.273250px;}
.ydc{bottom:185.277705px;}
.yab{bottom:185.336160px;}
.y7a{bottom:188.084775px;}
.y20{bottom:191.932845px;}
.y46{bottom:191.932935px;}
.yaa{bottom:201.905790px;}
.y10c{bottom:202.011900px;}
.ydb{bottom:202.016355px;}
.y79{bottom:205.205475px;}
.y1f{bottom:208.562145px;}
.y45{bottom:208.562235px;}
.ya9{bottom:218.475420px;}
.y10b{bottom:218.750550px;}
.yda{bottom:218.755005px;}
.y78{bottom:222.326175px;}
.y1e{bottom:225.191445px;}
.y44{bottom:225.191535px;}
.ya8{bottom:235.045050px;}
.y10a{bottom:235.489200px;}
.yd9{bottom:235.493655px;}
.y77{bottom:239.446875px;}
.y1d{bottom:241.820745px;}
.y43{bottom:241.820835px;}
.ya7{bottom:251.614680px;}
.y109{bottom:252.227850px;}
.yd8{bottom:252.232305px;}
.y76{bottom:256.567575px;}
.y1c{bottom:258.450045px;}
.y42{bottom:258.450135px;}
.yb1{bottom:266.354250px;}
.y4c{bottom:266.354400px;}
.ya6{bottom:268.184310px;}
.y108{bottom:268.966500px;}
.yd7{bottom:268.970955px;}
.y75{bottom:273.686925px;}
.y1b{bottom:275.079345px;}
.y41{bottom:275.079435px;}
.ya5{bottom:284.754075px;}
.y107{bottom:285.705150px;}
.yd6{bottom:285.709605px;}
.y74{bottom:290.807625px;}
.y1a{bottom:291.708645px;}
.y40{bottom:291.708735px;}
.ya4{bottom:301.323705px;}
.y106{bottom:302.443800px;}
.yd5{bottom:302.448255px;}
.y73{bottom:307.928325px;}
.y19{bottom:308.337945px;}
.y3f{bottom:308.338035px;}
.ya3{bottom:317.893335px;}
.y105{bottom:319.182450px;}
.yd4{bottom:319.186905px;}
.y18{bottom:324.967245px;}
.y3e{bottom:324.967335px;}
.y72{bottom:325.049025px;}
.ya2{bottom:334.462965px;}
.y104{bottom:335.921100px;}
.yd3{bottom:335.925555px;}
.y17{bottom:341.596545px;}
.y3d{bottom:341.596635px;}
.y71{bottom:342.168375px;}
.ya1{bottom:351.032730px;}
.y103{bottom:352.659750px;}
.yd2{bottom:352.664205px;}
.y16{bottom:358.225845px;}
.y3c{bottom:358.225935px;}
.y70{bottom:359.289075px;}
.ya0{bottom:367.602360px;}
.y102{bottom:369.398400px;}
.yd1{bottom:369.402855px;}
.y15{bottom:374.855145px;}
.y3b{bottom:374.855235px;}
.y6f{bottom:376.409775px;}
.y9f{bottom:384.172125px;}
.y101{bottom:386.137050px;}
.yd0{bottom:386.141505px;}
.y14{bottom:391.484445px;}
.y3a{bottom:391.484535px;}
.y6e{bottom:393.529800px;}
.y9e{bottom:400.741755px;}
.y100{bottom:402.875295px;}
.ycf{bottom:402.879750px;}
.y13{bottom:408.113205px;}
.y39{bottom:408.113295px;}
.y6d{bottom:410.649825px;}
.y9d{bottom:417.311385px;}
.yff{bottom:419.613675px;}
.yce{bottom:419.618130px;}
.y12{bottom:424.742100px;}
.y38{bottom:424.742190px;}
.y6c{bottom:427.769850px;}
.y9c{bottom:433.881150px;}
.yfe{bottom:436.352055px;}
.ycd{bottom:436.356510px;}
.y11{bottom:441.370995px;}
.y37{bottom:441.371085px;}
.y6b{bottom:444.889875px;}
.y9b{bottom:450.450780px;}
.yfd{bottom:453.090435px;}
.ycc{bottom:453.094890px;}
.y10{bottom:457.999755px;}
.y36{bottom:457.999845px;}
.y6a{bottom:462.009900px;}
.y9a{bottom:467.020410px;}
.yfc{bottom:469.828815px;}
.ycb{bottom:469.833270px;}
.yf{bottom:474.628785px;}
.y35{bottom:474.628875px;}
.y69{bottom:479.130060px;}
.y99{bottom:483.590040px;}
.yfb{bottom:486.567330px;}
.yca{bottom:486.571785px;}
.ye{bottom:491.257545px;}
.y34{bottom:491.257635px;}
.y68{bottom:496.249950px;}
.y98{bottom:500.159805px;}
.yfa{bottom:503.305710px;}
.yc9{bottom:503.310165px;}
.yd{bottom:507.886305px;}
.y33{bottom:507.886395px;}
.y67{bottom:513.369975px;}
.y97{bottom:517.029405px;}
.yf9{bottom:520.043955px;}
.yc8{bottom:520.048410px;}
.yc{bottom:524.515200px;}
.y32{bottom:524.515290px;}
.y66{bottom:530.490000px;}
.y96{bottom:533.899140px;}
.yf8{bottom:536.782335px;}
.yc7{bottom:536.786790px;}
.yb{bottom:541.143960px;}
.y31{bottom:541.144050px;}
.y65{bottom:547.610160px;}
.y95{bottom:550.768740px;}
.yf7{bottom:553.520850px;}
.yc6{bottom:553.525305px;}
.ya{bottom:557.772855px;}
.y30{bottom:557.772945px;}
.y64{bottom:564.730050px;}
.y94{bottom:567.638340px;}
.yf6{bottom:570.259230px;}
.yc5{bottom:570.263685px;}
.y9{bottom:574.401750px;}
.y2f{bottom:574.401840px;}
.y63{bottom:581.850075px;}
.y93{bottom:584.507940px;}
.yf5{bottom:586.997610px;}
.yc4{bottom:587.002065px;}
.y8{bottom:591.030645px;}
.y2e{bottom:591.030735px;}
.y62{bottom:598.970100px;}
.y92{bottom:601.377675px;}
.yf4{bottom:603.735990px;}
.yc3{bottom:603.740445px;}
.y7{bottom:607.659405px;}
.y2d{bottom:607.659495px;}
.y61{bottom:616.090125px;}
.y91{bottom:618.247275px;}
.yf3{bottom:620.474370px;}
.yc2{bottom:620.478825px;}
.y6{bottom:624.288300px;}
.y2c{bottom:624.288390px;}
.y60{bottom:633.210285px;}
.y90{bottom:635.116875px;}
.yf2{bottom:637.212885px;}
.yc1{bottom:637.217340px;}
.y5{bottom:640.917195px;}
.y2b{bottom:640.917285px;}
.y5f{bottom:650.330175px;}
.y8f{bottom:651.986475px;}
.yf1{bottom:653.951265px;}
.yc0{bottom:653.955720px;}
.y4{bottom:657.546090px;}
.y2a{bottom:657.546180px;}
.y5e{bottom:667.450320px;}
.y8e{bottom:668.856210px;}
.yf0{bottom:670.689645px;}
.ybf{bottom:670.694100px;}
.y29{bottom:674.174940px;}
.y5d{bottom:684.570480px;}
.y8d{bottom:685.725810px;}
.yef{bottom:687.428025px;}
.ybe{bottom:687.432480px;}
.y28{bottom:690.795645px;}
.y3{bottom:690.803610px;}
.y5c{bottom:701.690505px;}
.y8c{bottom:702.595410px;}
.yee{bottom:704.166270px;}
.ybd{bottom:704.170725px;}
.y27{bottom:707.424540px;}
.y2{bottom:707.432505px;}
.y5b{bottom:718.810395px;}
.y8b{bottom:719.465145px;}
.yed{bottom:720.904785px;}
.ybc{bottom:720.909240px;}
.y26{bottom:724.053435px;}
.y1{bottom:724.061400px;}
.y5a{bottom:735.930555px;}
.y8a{bottom:736.334745px;}
.yec{bottom:737.643165px;}
.ybb{bottom:737.647620px;}
.y59{bottom:753.050580px;}
.y89{bottom:753.204345px;}
.yeb{bottom:754.381545px;}
.yba{bottom:754.386000px;}
.y88{bottom:770.074080px;}
.y58{bottom:770.170740px;}
.yea{bottom:771.119925px;}
.yb9{bottom:771.124380px;}
.y87{bottom:786.943680px;}
.y57{bottom:787.290630px;}
.ye9{bottom:787.858170px;}
.yb8{bottom:787.862625px;}
.y86{bottom:803.813280px;}
.y56{bottom:804.110820px;}
.ye8{bottom:804.596685px;}
.yb7{bottom:804.601140px;}
.y11e{bottom:814.400400px;}
.y117{bottom:814.980345px;}
.y85{bottom:820.682880px;}
.y55{bottom:820.930875px;}
.ye7{bottom:821.334930px;}
.yb6{bottom:821.339385px;}
.y11d{bottom:829.505550px;}
.y116{bottom:832.990425px;}
.y84{bottom:837.552615px;}
.y54{bottom:837.750930px;}
.ye6{bottom:838.073310px;}
.yb5{bottom:838.077765px;}
.y11c{bottom:844.610850px;}
.y115{bottom:851.000640px;}
.y83{bottom:854.422215px;}
.y53{bottom:854.570850px;}
.ye5{bottom:854.811555px;}
.yb4{bottom:854.816010px;}
.y11b{bottom:859.715700px;}
.y114{bottom:869.010855px;}
.y82{bottom:871.291815px;}
.y52{bottom:871.390905px;}
.ye4{bottom:871.549935px;}
.yb3{bottom:871.554390px;}
.y11a{bottom:874.820910px;}
.y113{bottom:887.020935px;}
.y81{bottom:888.161550px;}
.y51{bottom:888.211095px;}
.ye3{bottom:888.288450px;}
.yb2{bottom:888.292905px;}
.y119{bottom:889.926150px;}
.y4d{bottom:901.814400px;}
.ye2{bottom:905.026695px;}
.y80{bottom:905.026980px;}
.y118{bottom:905.031015px;}
.y50{bottom:905.031150px;}
.h7{height:35.322000px;}
.ha{height:37.845261px;}
.h9{height:40.368000px;}
.h5{height:43.632000px;}
.h2{height:45.414000px;}
.h8{height:45.430680px;}
.h4{height:45.441060px;}
.h3{height:45.446220px;}
.h6{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.295545px;}
.x7{left:107.799150px;}
.x8{left:133.309695px;}
.x6{left:272.859600px;}
.x3{left:346.484055px;}
.x4{left:372.046425px;}
.x9{left:380.487255px;}
.x11{left:392.765100px;}
.xa{left:406.060515px;}
.xe{left:440.118450px;}
.x10{left:456.164250px;}
.xf{left:504.636000px;}
.xc{left:521.886405px;}
.xd{left:574.350990px;}
.x5{left:652.857450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.470400pt;}
.ls2{letter-spacing:0.479520pt;}
.ls4{letter-spacing:0.710400pt;}
.ls0{letter-spacing:12.459733pt;}
.wsf{word-spacing:-16.000000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsc{word-spacing:-10.666667pt;}
.ws2c{word-spacing:-10.000000pt;}
.ws0{word-spacing:-9.000000pt;}
.ws1d{word-spacing:-3.392160pt;}
.ws3{word-spacing:-3.220320pt;}
.ws15{word-spacing:-2.934240pt;}
.ws14{word-spacing:-2.370240pt;}
.ws1e{word-spacing:-2.133600pt;}
.ws19{word-spacing:-2.037600pt;}
.ws2{word-spacing:-1.960800pt;}
.ws12{word-spacing:-1.872480pt;}
.ws24{word-spacing:-1.754400pt;}
.wsa{word-spacing:-1.752000pt;}
.ws9{word-spacing:-1.751040pt;}
.ws22{word-spacing:-1.550880pt;}
.ws1b{word-spacing:-1.337760pt;}
.ws1c{word-spacing:-1.332480pt;}
.ws17{word-spacing:-1.320000pt;}
.ws13{word-spacing:-1.308587pt;}
.ws6{word-spacing:-1.286400pt;}
.ws11{word-spacing:-1.116480pt;}
.ws25{word-spacing:-0.782400pt;}
.wsb{word-spacing:-0.772800pt;}
.ws4{word-spacing:-0.207360pt;}
.ws10{word-spacing:0.000000pt;}
.ws18{word-spacing:0.098400pt;}
.ws20{word-spacing:0.105600pt;}
.ws16{word-spacing:0.398400pt;}
.ws21{word-spacing:0.501600pt;}
.ws1f{word-spacing:0.604800pt;}
.ws29{word-spacing:0.700800pt;}
.ws7{word-spacing:0.748800pt;}
.ws5{word-spacing:0.885120pt;}
.ws26{word-spacing:1.008000pt;}
.ws27{word-spacing:1.012800pt;}
.ws1a{word-spacing:1.054080pt;}
.ws2b{word-spacing:1.063680pt;}
.ws2a{word-spacing:1.281600pt;}
.wse{word-spacing:1.416000pt;}
.wsd{word-spacing:1.713600pt;}
.ws28{word-spacing:2.726400pt;}
.ws8{word-spacing:4.194573pt;}
.ws23{word-spacing:4.693920pt;}
._b{margin-left:-14.208000pt;}
._8{margin-left:-6.527040pt;}
._c{margin-left:-5.368960pt;}
._4{margin-left:-3.644000pt;}
._5{margin-left:-2.630720pt;}
._0{margin-left:-1.156800pt;}
._3{width:1.143360pt;}
._2{width:2.562080pt;}
._6{width:3.832000pt;}
._1{width:5.563680pt;}
._9{width:6.837440pt;}
._7{width:8.418720pt;}
._d{width:9.955200pt;}
._e{width:14.263947pt;}
._f{width:15.776640pt;}
._a{width:38.469120pt;}
.fs1{font-size:36.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:39.039333pt;}
.y4e{bottom:48.372667pt;}
.y112{bottom:90.293333pt;}
.ye1{bottom:90.297293pt;}
.y7f{bottom:91.096867pt;}
.yb0{bottom:91.100453pt;}
.y25{bottom:96.698973pt;}
.y4b{bottom:96.705067pt;}
.y111{bottom:105.172133pt;}
.ye0{bottom:105.176093pt;}
.yaf{bottom:105.829133pt;}
.y7e{bottom:106.315267pt;}
.y24{bottom:111.480573pt;}
.y4a{bottom:111.486667pt;}
.y110{bottom:120.050933pt;}
.ydf{bottom:120.054893pt;}
.yae{bottom:120.557453pt;}
.y7d{bottom:121.532467pt;}
.y23{bottom:126.262173pt;}
.y49{bottom:126.268267pt;}
.y10f{bottom:134.929733pt;}
.yde{bottom:134.933693pt;}
.yad{bottom:135.286133pt;}
.y7c{bottom:136.750867pt;}
.y22{bottom:141.043773pt;}
.y48{bottom:141.043853pt;}
.y10e{bottom:149.808533pt;}
.ydd{bottom:149.812493pt;}
.yac{bottom:150.014693pt;}
.y7b{bottom:151.969267pt;}
.y21{bottom:155.825373pt;}
.y47{bottom:155.825453pt;}
.y10d{bottom:164.687333pt;}
.ydc{bottom:164.691293pt;}
.yab{bottom:164.743253pt;}
.y7a{bottom:167.186467pt;}
.y20{bottom:170.606973pt;}
.y46{bottom:170.607053pt;}
.yaa{bottom:179.471813pt;}
.y10c{bottom:179.566133pt;}
.ydb{bottom:179.570093pt;}
.y79{bottom:182.404867pt;}
.y1f{bottom:185.388573pt;}
.y45{bottom:185.388653pt;}
.ya9{bottom:194.200373pt;}
.y10b{bottom:194.444933pt;}
.yda{bottom:194.448893pt;}
.y78{bottom:197.623267pt;}
.y1e{bottom:200.170173pt;}
.y44{bottom:200.170253pt;}
.ya8{bottom:208.928933pt;}
.y10a{bottom:209.323733pt;}
.yd9{bottom:209.327693pt;}
.y77{bottom:212.841667pt;}
.y1d{bottom:214.951773pt;}
.y43{bottom:214.951853pt;}
.ya7{bottom:223.657493pt;}
.y109{bottom:224.202533pt;}
.yd8{bottom:224.206493pt;}
.y76{bottom:228.060067pt;}
.y1c{bottom:229.733373pt;}
.y42{bottom:229.733453pt;}
.yb1{bottom:236.759333pt;}
.y4c{bottom:236.759467pt;}
.ya6{bottom:238.386053pt;}
.y108{bottom:239.081333pt;}
.yd7{bottom:239.085293pt;}
.y75{bottom:243.277267pt;}
.y1b{bottom:244.514973pt;}
.y41{bottom:244.515053pt;}
.ya5{bottom:253.114733pt;}
.y107{bottom:253.960133pt;}
.yd6{bottom:253.964093pt;}
.y74{bottom:258.495667pt;}
.y1a{bottom:259.296573pt;}
.y40{bottom:259.296653pt;}
.ya4{bottom:267.843293pt;}
.y106{bottom:268.838933pt;}
.yd5{bottom:268.842893pt;}
.y73{bottom:273.714067pt;}
.y19{bottom:274.078173pt;}
.y3f{bottom:274.078253pt;}
.ya3{bottom:282.571853pt;}
.y105{bottom:283.717733pt;}
.yd4{bottom:283.721693pt;}
.y18{bottom:288.859773pt;}
.y3e{bottom:288.859853pt;}
.y72{bottom:288.932467pt;}
.ya2{bottom:297.300413pt;}
.y104{bottom:298.596533pt;}
.yd3{bottom:298.600493pt;}
.y17{bottom:303.641373pt;}
.y3d{bottom:303.641453pt;}
.y71{bottom:304.149667pt;}
.ya1{bottom:312.029093pt;}
.y103{bottom:313.475333pt;}
.yd2{bottom:313.479293pt;}
.y16{bottom:318.422973pt;}
.y3c{bottom:318.423053pt;}
.y70{bottom:319.368067pt;}
.ya0{bottom:326.757653pt;}
.y102{bottom:328.354133pt;}
.yd1{bottom:328.358093pt;}
.y15{bottom:333.204573pt;}
.y3b{bottom:333.204653pt;}
.y6f{bottom:334.586467pt;}
.y9f{bottom:341.486333pt;}
.y101{bottom:343.232933pt;}
.yd0{bottom:343.236893pt;}
.y14{bottom:347.986173pt;}
.y3a{bottom:347.986253pt;}
.y6e{bottom:349.804267pt;}
.y9e{bottom:356.214893pt;}
.y100{bottom:358.111373pt;}
.ycf{bottom:358.115333pt;}
.y13{bottom:362.767293pt;}
.y39{bottom:362.767373pt;}
.y6d{bottom:365.022067pt;}
.y9d{bottom:370.943453pt;}
.yff{bottom:372.989933pt;}
.yce{bottom:372.993893pt;}
.y12{bottom:377.548533pt;}
.y38{bottom:377.548613pt;}
.y6c{bottom:380.239867pt;}
.y9c{bottom:385.672133pt;}
.yfe{bottom:387.868493pt;}
.ycd{bottom:387.872453pt;}
.y11{bottom:392.329773pt;}
.y37{bottom:392.329853pt;}
.y6b{bottom:395.457667pt;}
.y9b{bottom:400.400693pt;}
.yfd{bottom:402.747053pt;}
.ycc{bottom:402.751013pt;}
.y10{bottom:407.110893pt;}
.y36{bottom:407.110973pt;}
.y6a{bottom:410.675467pt;}
.y9a{bottom:415.129253pt;}
.yfc{bottom:417.625613pt;}
.ycb{bottom:417.629573pt;}
.yf{bottom:421.892253pt;}
.y35{bottom:421.892333pt;}
.y69{bottom:425.893387pt;}
.y99{bottom:429.857813pt;}
.yfb{bottom:432.504293pt;}
.yca{bottom:432.508253pt;}
.ye{bottom:436.673373pt;}
.y34{bottom:436.673453pt;}
.y68{bottom:441.111067pt;}
.y98{bottom:444.586493pt;}
.yfa{bottom:447.382853pt;}
.yc9{bottom:447.386813pt;}
.yd{bottom:451.454493pt;}
.y33{bottom:451.454573pt;}
.y67{bottom:456.328867pt;}
.y97{bottom:459.581693pt;}
.yf9{bottom:462.261293pt;}
.yc8{bottom:462.265253pt;}
.yc{bottom:466.235733pt;}
.y32{bottom:466.235813pt;}
.y66{bottom:471.546667pt;}
.y96{bottom:474.577013pt;}
.yf8{bottom:477.139853pt;}
.yc7{bottom:477.143813pt;}
.yb{bottom:481.016853pt;}
.y31{bottom:481.016933pt;}
.y65{bottom:486.764587pt;}
.y95{bottom:489.572213pt;}
.yf7{bottom:492.018533pt;}
.yc6{bottom:492.022493pt;}
.ya{bottom:495.798093pt;}
.y30{bottom:495.798173pt;}
.y64{bottom:501.982267pt;}
.y94{bottom:504.567413pt;}
.yf6{bottom:506.897093pt;}
.yc5{bottom:506.901053pt;}
.y9{bottom:510.579333pt;}
.y2f{bottom:510.579413pt;}
.y63{bottom:517.200067pt;}
.y93{bottom:519.562613pt;}
.yf5{bottom:521.775653pt;}
.yc4{bottom:521.779613pt;}
.y8{bottom:525.360573pt;}
.y2e{bottom:525.360653pt;}
.y62{bottom:532.417867pt;}
.y92{bottom:534.557933pt;}
.yf4{bottom:536.654213pt;}
.yc3{bottom:536.658173pt;}
.y7{bottom:540.141693pt;}
.y2d{bottom:540.141773pt;}
.y61{bottom:547.635667pt;}
.y91{bottom:549.553133pt;}
.yf3{bottom:551.532773pt;}
.yc2{bottom:551.536733pt;}
.y6{bottom:554.922933pt;}
.y2c{bottom:554.923013pt;}
.y60{bottom:562.853587pt;}
.y90{bottom:564.548333pt;}
.yf2{bottom:566.411453pt;}
.yc1{bottom:566.415413pt;}
.y5{bottom:569.704173pt;}
.y2b{bottom:569.704253pt;}
.y5f{bottom:578.071267pt;}
.y8f{bottom:579.543533pt;}
.yf1{bottom:581.290013pt;}
.yc0{bottom:581.293973pt;}
.y4{bottom:584.485413pt;}
.y2a{bottom:584.485493pt;}
.y5e{bottom:593.289173pt;}
.y8e{bottom:594.538853pt;}
.yf0{bottom:596.168573pt;}
.ybf{bottom:596.172533pt;}
.y29{bottom:599.266613pt;}
.y5d{bottom:608.507093pt;}
.y8d{bottom:609.534053pt;}
.yef{bottom:611.047133pt;}
.ybe{bottom:611.051093pt;}
.y28{bottom:614.040573pt;}
.y3{bottom:614.047653pt;}
.y5c{bottom:623.724893pt;}
.y8c{bottom:624.529253pt;}
.yee{bottom:625.925573pt;}
.ybd{bottom:625.929533pt;}
.y27{bottom:628.821813pt;}
.y2{bottom:628.828893pt;}
.y5b{bottom:638.942573pt;}
.y8b{bottom:639.524573pt;}
.yed{bottom:640.804253pt;}
.ybc{bottom:640.808213pt;}
.y26{bottom:643.603053pt;}
.y1{bottom:643.610133pt;}
.y5a{bottom:654.160493pt;}
.y8a{bottom:654.519773pt;}
.yec{bottom:655.682813pt;}
.ybb{bottom:655.686773pt;}
.y59{bottom:669.378293pt;}
.y89{bottom:669.514973pt;}
.yeb{bottom:670.561373pt;}
.yba{bottom:670.565333pt;}
.y88{bottom:684.510293pt;}
.y58{bottom:684.596213pt;}
.yea{bottom:685.439933pt;}
.yb9{bottom:685.443893pt;}
.y87{bottom:699.505493pt;}
.y57{bottom:699.813893pt;}
.ye9{bottom:700.318373pt;}
.yb8{bottom:700.322333pt;}
.y86{bottom:714.500693pt;}
.y56{bottom:714.765173pt;}
.ye8{bottom:715.197053pt;}
.yb7{bottom:715.201013pt;}
.y11e{bottom:723.911467pt;}
.y117{bottom:724.426973pt;}
.y85{bottom:729.495893pt;}
.y55{bottom:729.716333pt;}
.ye7{bottom:730.075493pt;}
.yb6{bottom:730.079453pt;}
.y11d{bottom:737.338267pt;}
.y116{bottom:740.435933pt;}
.y84{bottom:744.491213pt;}
.y54{bottom:744.667493pt;}
.ye6{bottom:744.954053pt;}
.yb5{bottom:744.958013pt;}
.y11c{bottom:750.765200pt;}
.y115{bottom:756.445013pt;}
.y83{bottom:759.486413pt;}
.y53{bottom:759.618533pt;}
.ye5{bottom:759.832493pt;}
.yb4{bottom:759.836453pt;}
.y11b{bottom:764.191733pt;}
.y114{bottom:772.454093pt;}
.y82{bottom:774.481613pt;}
.y52{bottom:774.569693pt;}
.ye4{bottom:774.711053pt;}
.yb3{bottom:774.715013pt;}
.y11a{bottom:777.618587pt;}
.y113{bottom:788.463053pt;}
.y81{bottom:789.476933pt;}
.y51{bottom:789.520973pt;}
.ye3{bottom:789.589733pt;}
.yb2{bottom:789.593693pt;}
.y119{bottom:791.045467pt;}
.y4d{bottom:801.612800pt;}
.ye2{bottom:804.468173pt;}
.y80{bottom:804.468427pt;}
.y118{bottom:804.472013pt;}
.y50{bottom:804.472133pt;}
.h7{height:31.397333pt;}
.ha{height:33.640232pt;}
.h9{height:35.882667pt;}
.h5{height:38.784000pt;}
.h2{height:40.368000pt;}
.h8{height:40.382827pt;}
.h4{height:40.392053pt;}
.h3{height:40.396640pt;}
.h6{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.262707pt;}
.x7{left:95.821467pt;}
.x8{left:118.497507pt;}
.x6{left:242.541867pt;}
.x3{left:307.985827pt;}
.x4{left:330.707933pt;}
.x9{left:338.210893pt;}
.x11{left:349.124533pt;}
.xa{left:360.942680pt;}
.xe{left:391.216400pt;}
.x10{left:405.479333pt;}
.xf{left:448.565333pt;}
.xc{left:463.899027pt;}
.xd{left:510.534213pt;}
.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; }
  