
    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_2d8032a3be06adf4e4534815.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.985000;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_344a69803cf7c5702b4cca6a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_ac3c5b6c64d1a367ecddce48.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_0a1689c8f19981b7912475ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024000;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_ea328101ac1873ba7104d11a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_328c1ce9701721c04210d36a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.076000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:107.966436px;}
.ls3{letter-spacing:108.000408px;}
.ls1{letter-spacing:108.000417px;}
.ls4{letter-spacing:108.000431px;}
.ls2{letter-spacing:108.000453px;}
.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;}
}
.ws2{word-spacing:-79.200003px;}
.ws3{word-spacing:-71.280002px;}
.ws1{word-spacing:-52.800000px;}
.ws6{word-spacing:-47.520002px;}
.ws4{word-spacing:-42.767998px;}
.wsa{word-spacing:-28.836001px;}
.ws7{word-spacing:-25.080001px;}
.ws8{word-spacing:-23.760001px;}
.ws9{word-spacing:-21.515999px;}
.ws5{word-spacing:-21.120001px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-9.828000px;}
._7{margin-left:-8.640001px;}
._6{margin-left:-7.560000px;}
._2{margin-left:-5.280000px;}
._4{margin-left:-3.670380px;}
._1{margin-left:-2.520000px;}
._0{margin-left:-1.344000px;}
._3{width:107.966894px;}
.fc3{color:rgb(0,128,128);}
.fc2{color:rgb(255,191,105);}
.fc1{color:rgb(64,224,208);}
.fc6{color:rgb(38,38,38);}
.fc5{color:rgb(136,136,136);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:72.000002px;}
.fsa{font-size:74.400001px;}
.fse{font-size:90.000003px;}
.fs6{font-size:91.800012px;}
.fs0{font-size:96.000006px;}
.fsd{font-size:97.799997px;}
.fs9{font-size:99.000003px;}
.fs3{font-size:99.899999px;}
.fsf{font-size:102.000000px;}
.fsc{font-size:108.000003px;}
.fsb{font-size:114.000007px;}
.fs10{font-size:167.999999px;}
.fs8{font-size:194.399993px;}
.fs2{font-size:216.000007px;}
.fs5{font-size:240.000002px;}
.fs7{font-size:324.000010px;}
.fs1{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.yd{bottom:44.826096px;}
.y9b{bottom:48.201096px;}
.y98{bottom:61.012236px;}
.y7c{bottom:67.573472px;}
.y52{bottom:91.728135px;}
.y97{bottom:92.480726px;}
.y85{bottom:101.593406px;}
.y7b{bottom:101.593462px;}
.ya9{bottom:112.843766px;}
.y8d{bottom:112.933429px;}
.y51{bottom:120.645135px;}
.y96{bottom:123.949238px;}
.y84{bottom:135.613430px;}
.y7a{bottom:135.613486px;}
.y2c{bottom:145.739161px;}
.y50{bottom:149.562136px;}
.y1f{bottom:149.687911px;}
.y8c{bottom:150.193441px;}
.y95{bottom:155.417739px;}
.y44{bottom:156.054658px;}
.y59{bottom:156.954815px;}
.ya8{bottom:161.584753px;}
.y70{bottom:162.898314px;}
.y83{bottom:169.633442px;}
.y79{bottom:169.633498px;}
.yc{bottom:170.044157px;}
.y4f{bottom:178.479137px;}
.y2b{bottom:179.894151px;}
.y43{bottom:182.217670px;}
.yc0{bottom:182.527697px;}
.y94{bottom:186.886240px;}
.y8b{bottom:187.453431px;}
.y1e{bottom:193.850654px;}
.ycf{bottom:197.858332px;}
.yb{bottom:198.515658px;}
.y82{bottom:203.653443px;}
.y78{bottom:203.653499px;}
.y62{bottom:203.661206px;}
.ycb{bottom:203.767597px;}
.yb4{bottom:203.767619px;}
.y6f{bottom:206.962316px;}
.y4e{bottom:207.396127px;}
.y58{bottom:208.074524px;}
.ya7{bottom:210.325740px;}
.y42{bottom:223.380679px;}
.ya{bottom:226.987159px;}
.y6e{bottom:228.994316px;}
.y2a{bottom:229.049149px;}
.y93{bottom:233.354738px;}
.y16{bottom:233.369273px;}
.y1d{bottom:238.013374px;}
.y61{bottom:238.126707px;}
.y8a{bottom:239.713429px;}
.ya6{bottom:244.066741px;}
.ybf{bottom:245.887666px;}
.y41{bottom:249.543680px;}
.y6d{bottom:251.026317px;}
.y4d{bottom:251.313113px;}
.y81{bottom:252.673452px;}
.y77{bottom:252.673508px;}
.yce{bottom:253.118000px;}
.y9{bottom:255.458660px;}
.y36{bottom:259.012816px;}
.y57{bottom:259.194245px;}
.yca{bottom:261.367610px;}
.yb3{bottom:261.367632px;}
.y29{bottom:263.204150px;}
.y15{bottom:267.834774px;}
.y60{bottom:272.592208px;}
.y40{bottom:275.706669px;}
.ya5{bottom:277.807764px;}
.y92{bottom:279.823236px;}
.y4c{bottom:280.230110px;}
.y1c{bottom:282.176094px;}
.y35{bottom:287.812828px;}
.y89{bottom:291.973405px;}
.y6c{bottom:295.090319px;}
.y28{bottom:297.359151px;}
.y8{bottom:298.930157px;}
.y80{bottom:301.693433px;}
.y76{bottom:301.693489px;}
.y3f{bottom:301.869670px;}
.y14{bottom:302.300264px;}
.ycd{bottom:308.377673px;}
.y4b{bottom:309.147104px;}
.ybe{bottom:309.607668px;}
.y56{bottom:310.313954px;}
.y91{bottom:311.291737px;}
.ya4{bottom:311.548765px;}
.y34{bottom:316.612829px;}
.y6b{bottom:317.122342px;}
.yc9{bottom:318.967646px;}
.yb2{bottom:318.967668px;}
.y5f{bottom:322.057694px;}
.y1b{bottom:326.338815px;}
.y7{bottom:327.401653px;}
.y3e{bottom:328.032671px;}
.y88{bottom:329.233406px;}
.y27{bottom:331.514152px;}
.y7f{bottom:335.713429px;}
.y75{bottom:335.713485px;}
.ybd{bottom:336.607669px;}
.y13{bottom:336.765760px;}
.y4a{bottom:338.064105px;}
.y6a{bottom:339.154342px;}
.y90{bottom:342.760226px;}
.yc8{bottom:347.767658px;}
.yb1{bottom:347.767680px;}
.yd7{bottom:353.657832px;}
.y6{bottom:355.873148px;}
.y5e{bottom:356.523191px;}
.ya3{bottom:360.289741px;}
.y69{bottom:361.186343px;}
.y55{bottom:361.433663px;}
.ybc{bottom:363.607669px;}
.y87{bottom:366.493400px;}
.y49{bottom:366.981104px;}
.y3d{bottom:369.195680px;}
.y7e{bottom:369.733430px;}
.y74{bottom:369.733486px;}
.y1a{bottom:370.501535px;}
.y12{bottom:371.231255px;}
.ycc{bottom:372.284648px;}
.y33{bottom:374.212854px;}
.y8f{bottom:374.228719px;}
.yc7{bottom:376.567659px;}
.yb0{bottom:376.567681px;}
.y26{bottom:380.669161px;}
.y5{bottom:384.344651px;}
.yd6{bottom:390.917826px;}
.y5d{bottom:390.988685px;}
.ya2{bottom:394.030730px;}
.y3c{bottom:395.358674px;}
.y48{bottom:395.898104px;}
.y32{bottom:403.012843px;}
.y86{bottom:403.753398px;}
.y7d{bottom:403.753432px;}
.y73{bottom:403.753488px;}
.y68{bottom:405.250345px;}
.y11{bottom:405.696747px;}
.y8e{bottom:405.697219px;}
.y54{bottom:412.553372px;}
.y4{bottom:412.816151px;}
.y19{bottom:414.664260px;}
.y25{bottom:414.824167px;}
.ybb{bottom:417.607671px;}
.yd1{bottom:418.571987px;}
.y3b{bottom:421.521681px;}
.y5c{bottom:425.454177px;}
.y67{bottom:427.282345px;}
.ya1{bottom:427.771720px;}
.yd5{bottom:428.177824px;}
.y31{bottom:431.812835px;}
.yc6{bottom:434.167672px;}
.yaf{bottom:434.167694px;}
.y47{bottom:434.783384px;}
.yba{bottom:444.607672px;}
.y3a{bottom:447.684681px;}
.y24{bottom:448.979165px;}
.y66{bottom:449.314344px;}
.y18{bottom:457.628164px;}
.y1{bottom:457.628276px;}
.y10{bottom:458.900573px;}
.y53{bottom:459.034392px;}
.y30{bottom:460.612834px;}
.yc5{bottom:462.967684px;}
.yae{bottom:462.967706px;}
.y5b{bottom:466.283385px;}
.yd4{bottom:471.373245px;}
.yb9{bottom:471.607673px;}
.yd0{bottom:474.299978px;}
.y46{bottom:476.278482px;}
.ya0{bottom:476.512707px;}
.y23{bottom:489.592767px;}
.y65{bottom:491.407336px;}
.yc4{bottom:491.767696px;}
.yad{bottom:491.767719px;}
.yb8{bottom:498.607674px;}
.y39{bottom:498.886664px;}
.y3{bottom:502.772857px;}
.yf{bottom:507.788867px;}
.y9a{bottom:507.788889px;}
.y9f{bottom:510.253708px;}
.y17{bottom:510.548857px;}
.y72{bottom:513.610483px;}
.y2f{bottom:514.687513px;}
.yd3{bottom:520.252573px;}
.yc3{bottom:520.567686px;}
.yac{bottom:520.567708px;}
.yb7{bottom:525.607675px;}
.y22{bottom:529.921420px;}
.y38{bottom:534.617631px;}
.y64{bottom:541.111395px;}
.y45{bottom:542.374484px;}
.y9e{bottom:543.994703px;}
.yc2{bottom:549.367678px;}
.yab{bottom:549.367700px;}
.yb6{bottom:552.607679px;}
.y2e{bottom:558.656339px;}
.ye{bottom:567.404874px;}
.y2{bottom:568.868848px;}
.y5a{bottom:573.874485px;}
.y99{bottom:573.884880px;}
.y9d{bottom:577.735701px;}
.yc1{bottom:578.167676px;}
.yaa{bottom:578.167699px;}
.yb5{bottom:579.607678px;}
.y21{bottom:582.409416px;}
.yd2{bottom:586.348575px;}
.y37{bottom:594.104039px;}
.y71{bottom:601.090486px;}
.y2d{bottom:618.142747px;}
.y63{bottom:628.591386px;}
.y20{bottom:641.895812px;}
.y9c{bottom:713.656755px;}
.h5{height:47.988283px;}
.hc{height:55.800001px;}
.he{height:65.361608px;}
.h18{height:67.500002px;}
.h17{height:68.352004px;}
.hd{height:68.850009px;}
.h16{height:69.633598px;}
.h8{height:70.135209px;}
.h13{height:71.128799px;}
.h1{height:72.000005px;}
.h10{height:73.344005px;}
.h15{height:73.349998px;}
.hb{height:74.250002px;}
.h4{height:74.924999px;}
.h19{height:76.500000px;}
.h12{height:76.896002px;}
.h11{height:81.000003px;}
.h1a{height:82.512003px;}
.hf{height:85.500005px;}
.h1b{height:126.000000px;}
.ha{height:145.799995px;}
.h7{height:153.792005px;}
.h3{height:162.000005px;}
.h6{height:170.880001px;}
.h14{height:192.240001px;}
.h9{height:230.688007px;}
.h2{height:256.320008px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1{left:61.312442px;}
.x1b{left:70.510102px;}
.xc{left:74.575631px;}
.xa{left:90.412386px;}
.x8{left:95.654376px;}
.x7{left:118.318622px;}
.xd{left:127.352367px;}
.x6{left:169.763135px;}
.x9{left:191.453649px;}
.x5{left:389.168169px;}
.x4{left:423.287586px;}
.xb{left:430.304538px;}
.x45{left:447.677621px;}
.x3{left:516.805475px;}
.x1c{left:537.064001px;}
.x31{left:541.961747px;}
.x44{left:551.438680px;}
.x47{left:581.940952px;}
.x48{left:605.678975px;}
.x49{left:618.783536px;}
.x46{left:650.383513px;}
.x4a{left:656.549042px;}
.x15{left:694.408106px;}
.x12{left:719.084086px;}
.x17{left:738.364338px;}
.x2e{left:743.450135px;}
.x4e{left:749.410978px;}
.x5d{left:752.158723px;}
.x2b{left:757.303140px;}
.x34{left:762.337694px;}
.x2c{left:764.217077px;}
.x35{left:771.841622px;}
.x2d{left:774.176630px;}
.x1e{left:775.625970px;}
.x41{left:779.129867px;}
.x3c{left:784.477652px;}
.x20{left:785.971659px;}
.x2a{left:789.003642px;}
.x4c{left:792.418435px;}
.x38{left:799.921306px;}
.x21{left:802.832103px;}
.x3f{left:804.538173px;}
.x24{left:805.905183px;}
.x57{left:811.218229px;}
.x1a{left:812.862285px;}
.x33{left:814.069500px;}
.x54{left:820.454195px;}
.x27{left:821.825610px;}
.x5b{left:827.055386px;}
.x25{left:829.968473px;}
.x55{left:835.305925px;}
.x18{left:837.785389px;}
.x26{left:840.451898px;}
.x16{left:841.894069px;}
.x56{left:843.068385px;}
.x3d{left:844.309366px;}
.x1f{left:848.457848px;}
.x2f{left:850.432257px;}
.x40{left:853.462079px;}
.x58{left:856.971583px;}
.x22{left:861.992105px;}
.x42{left:866.017119px;}
.x5e{left:867.664445px;}
.x14{left:868.797399px;}
.x23{left:874.769619px;}
.xe{left:883.527070px;}
.x19{left:887.582785px;}
.x32{left:890.828804px;}
.x3a{left:899.577951px;}
.x50{left:912.155722px;}
.x5f{left:914.131154px;}
.xf{left:917.791713px;}
.x43{left:922.095873px;}
.x5a{left:934.470705px;}
.x5c{left:947.582130px;}
.x13{left:954.754501px;}
.x1d{left:959.666521px;}
.x28{left:985.084344px;}
.x30{left:994.605917px;}
.x53{left:1011.889472px;}
.x29{left:1024.593524px;}
.x51{left:1027.755303px;}
.x4f{left:1037.352217px;}
.x4d{left:1038.674846px;}
.x39{left:1045.134787px;}
.x3b{left:1047.240866px;}
.x10{left:1088.279900px;}
.x52{left:1097.216585px;}
.x3e{left:1101.294631px;}
.x37{left:1115.064621px;}
.x36{left:1122.624598px;}
.x4b{left:1130.331299px;}
.x11{left:1153.263434px;}
.x59{left:1386.386313px;}
.x2{left:1392.134359px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:95.970165pt;}
.ls3{letter-spacing:96.000363pt;}
.ls1{letter-spacing:96.000371pt;}
.ls4{letter-spacing:96.000383pt;}
.ls2{letter-spacing:96.000403pt;}
.ws2{word-spacing:-70.400002pt;}
.ws3{word-spacing:-63.360002pt;}
.ws1{word-spacing:-46.933334pt;}
.ws6{word-spacing:-42.240001pt;}
.ws4{word-spacing:-38.015999pt;}
.wsa{word-spacing:-25.632001pt;}
.ws7{word-spacing:-22.293335pt;}
.ws8{word-spacing:-21.120001pt;}
.ws9{word-spacing:-19.125333pt;}
.ws5{word-spacing:-18.773335pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-8.736000pt;}
._7{margin-left:-7.680000pt;}
._6{margin-left:-6.720000pt;}
._2{margin-left:-4.693333pt;}
._4{margin-left:-3.262560pt;}
._1{margin-left:-2.240000pt;}
._0{margin-left:-1.194667pt;}
._3{width:95.970573pt;}
.fs4{font-size:64.000002pt;}
.fsa{font-size:66.133334pt;}
.fse{font-size:80.000003pt;}
.fs6{font-size:81.600011pt;}
.fs0{font-size:85.333339pt;}
.fsd{font-size:86.933331pt;}
.fs9{font-size:88.000003pt;}
.fs3{font-size:88.799999pt;}
.fsf{font-size:90.666667pt;}
.fsc{font-size:96.000003pt;}
.fsb{font-size:101.333339pt;}
.fs10{font-size:149.333333pt;}
.fs8{font-size:172.799994pt;}
.fs2{font-size:192.000006pt;}
.fs5{font-size:213.333335pt;}
.fs7{font-size:288.000009pt;}
.fs1{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:39.845418pt;}
.y9b{bottom:42.845418pt;}
.y98{bottom:54.233099pt;}
.y7c{bottom:60.065309pt;}
.y52{bottom:81.536120pt;}
.y97{bottom:82.205090pt;}
.y85{bottom:90.305250pt;}
.y7b{bottom:90.305300pt;}
.ya9{bottom:100.305570pt;}
.y8d{bottom:100.385270pt;}
.y51{bottom:107.240120pt;}
.y96{bottom:110.177100pt;}
.y84{bottom:120.545271pt;}
.y7a{bottom:120.545321pt;}
.y2c{bottom:129.545921pt;}
.y50{bottom:132.944121pt;}
.y1f{bottom:133.055921pt;}
.y8c{bottom:133.505281pt;}
.y95{bottom:138.149101pt;}
.y44{bottom:138.715251pt;}
.y59{bottom:139.515391pt;}
.ya8{bottom:143.630892pt;}
.y70{bottom:144.798502pt;}
.y83{bottom:150.785282pt;}
.y79{bottom:150.785332pt;}
.yc{bottom:151.150362pt;}
.y4f{bottom:158.648122pt;}
.y2b{bottom:159.905912pt;}
.y43{bottom:161.971262pt;}
.yc0{bottom:162.246842pt;}
.y94{bottom:166.121102pt;}
.y8b{bottom:166.625272pt;}
.y1e{bottom:172.311692pt;}
.ycf{bottom:175.874073pt;}
.yb{bottom:176.458363pt;}
.y82{bottom:181.025283pt;}
.y78{bottom:181.025333pt;}
.y62{bottom:181.032183pt;}
.ycb{bottom:181.126753pt;}
.yb4{bottom:181.126773pt;}
.y6f{bottom:183.966503pt;}
.y4e{bottom:184.352113pt;}
.y58{bottom:184.955133pt;}
.ya7{bottom:186.956213pt;}
.y42{bottom:198.560603pt;}
.ya{bottom:201.766363pt;}
.y6e{bottom:203.550503pt;}
.y2a{bottom:203.599243pt;}
.y93{bottom:207.426434pt;}
.y16{bottom:207.439354pt;}
.y1d{bottom:211.567444pt;}
.y61{bottom:211.668184pt;}
.y8a{bottom:213.078604pt;}
.ya6{bottom:216.948214pt;}
.ybf{bottom:218.566814pt;}
.y41{bottom:221.816604pt;}
.y6d{bottom:223.134504pt;}
.y4d{bottom:223.389434pt;}
.y81{bottom:224.598624pt;}
.y77{bottom:224.598674pt;}
.yce{bottom:224.993778pt;}
.y9{bottom:227.074364pt;}
.y36{bottom:230.233614pt;}
.y57{bottom:230.394884pt;}
.yca{bottom:232.326764pt;}
.yb3{bottom:232.326784pt;}
.y29{bottom:233.959244pt;}
.y15{bottom:238.075355pt;}
.y60{bottom:242.304185pt;}
.y40{bottom:245.072595pt;}
.ya5{bottom:246.940235pt;}
.y92{bottom:248.731765pt;}
.y4c{bottom:249.093431pt;}
.y1c{bottom:250.823195pt;}
.y35{bottom:255.833625pt;}
.y89{bottom:259.531915pt;}
.y6c{bottom:262.302505pt;}
.y28{bottom:264.319245pt;}
.y8{bottom:265.715695pt;}
.y80{bottom:268.171941pt;}
.y76{bottom:268.171991pt;}
.y3f{bottom:268.328596pt;}
.y14{bottom:268.711346pt;}
.ycd{bottom:274.113487pt;}
.y4b{bottom:274.797426pt;}
.ybe{bottom:275.206816pt;}
.y56{bottom:275.834626pt;}
.y91{bottom:276.703766pt;}
.ya4{bottom:276.932236pt;}
.y34{bottom:281.433626pt;}
.y6b{bottom:281.886526pt;}
.yc9{bottom:283.526796pt;}
.yb2{bottom:283.526816pt;}
.y5f{bottom:286.273506pt;}
.y1b{bottom:290.078946pt;}
.y7{bottom:291.023691pt;}
.y3e{bottom:291.584596pt;}
.y88{bottom:292.651916pt;}
.y27{bottom:294.679246pt;}
.y7f{bottom:298.411937pt;}
.y75{bottom:298.411987pt;}
.ybd{bottom:299.206817pt;}
.y13{bottom:299.347343pt;}
.y4a{bottom:300.501427pt;}
.y6a{bottom:301.470527pt;}
.y90{bottom:304.675757pt;}
.yc8{bottom:309.126807pt;}
.yb1{bottom:309.126827pt;}
.yd7{bottom:314.362517pt;}
.y6{bottom:316.331687pt;}
.y5e{bottom:316.909503pt;}
.ya3{bottom:320.257547pt;}
.y69{bottom:321.054527pt;}
.y55{bottom:321.274367pt;}
.ybc{bottom:323.206817pt;}
.y87{bottom:325.771911pt;}
.y49{bottom:326.205425pt;}
.y3d{bottom:328.173937pt;}
.y7e{bottom:328.651937pt;}
.y74{bottom:328.651987pt;}
.y1a{bottom:329.334697pt;}
.y12{bottom:329.983338pt;}
.ycc{bottom:330.919688pt;}
.y33{bottom:332.633648pt;}
.y8f{bottom:332.647751pt;}
.yc7{bottom:334.726808pt;}
.yb0{bottom:334.726828pt;}
.y26{bottom:338.372588pt;}
.y5{bottom:341.639690pt;}
.yd6{bottom:347.482512pt;}
.y5d{bottom:347.545498pt;}
.ya2{bottom:350.249538pt;}
.y3c{bottom:351.429932pt;}
.y48{bottom:351.909426pt;}
.y32{bottom:358.233638pt;}
.y86{bottom:358.891909pt;}
.y7d{bottom:358.891939pt;}
.y73{bottom:358.891989pt;}
.y68{bottom:360.222528pt;}
.y11{bottom:360.619330pt;}
.y8e{bottom:360.619750pt;}
.y54{bottom:366.714109pt;}
.y4{bottom:366.947690pt;}
.y19{bottom:368.590454pt;}
.y25{bottom:368.732593pt;}
.ybb{bottom:371.206819pt;}
.yd1{bottom:372.063989pt;}
.y3b{bottom:374.685939pt;}
.y5c{bottom:378.181491pt;}
.y67{bottom:379.806529pt;}
.ya1{bottom:380.241529pt;}
.yd5{bottom:380.602510pt;}
.y31{bottom:383.833631pt;}
.yc6{bottom:385.926819pt;}
.yaf{bottom:385.926839pt;}
.y47{bottom:386.474119pt;}
.yba{bottom:395.206820pt;}
.y3a{bottom:397.941939pt;}
.y24{bottom:399.092591pt;}
.y66{bottom:399.390528pt;}
.y18{bottom:406.780590pt;}
.y1{bottom:406.780690pt;}
.y10{bottom:407.911620pt;}
.y53{bottom:408.030571pt;}
.y30{bottom:409.433630pt;}
.yc5{bottom:411.526830pt;}
.yae{bottom:411.526850pt;}
.y5b{bottom:414.474120pt;}
.yd4{bottom:418.998440pt;}
.yb9{bottom:419.206820pt;}
.yd0{bottom:421.599980pt;}
.y46{bottom:423.358651pt;}
.ya0{bottom:423.566851pt;}
.y23{bottom:435.193571pt;}
.y65{bottom:436.806521pt;}
.yc4{bottom:437.126841pt;}
.yad{bottom:437.126861pt;}
.yb8{bottom:443.206821pt;}
.y39{bottom:443.454812pt;}
.y3{bottom:446.909206pt;}
.yf{bottom:451.367881pt;}
.y9a{bottom:451.367901pt;}
.y9f{bottom:453.558851pt;}
.y17{bottom:453.821206pt;}
.y72{bottom:456.542652pt;}
.y2f{bottom:457.500012pt;}
.yd3{bottom:462.446732pt;}
.yc3{bottom:462.726832pt;}
.yac{bottom:462.726852pt;}
.yb7{bottom:467.206822pt;}
.y22{bottom:471.041262pt;}
.y38{bottom:475.215672pt;}
.y64{bottom:480.987906pt;}
.y45{bottom:482.110652pt;}
.y9e{bottom:483.550847pt;}
.yc2{bottom:488.326825pt;}
.yab{bottom:488.326845pt;}
.yb6{bottom:491.206826pt;}
.y2e{bottom:496.583413pt;}
.ye{bottom:504.359888pt;}
.y2{bottom:505.661198pt;}
.y5a{bottom:510.110653pt;}
.y99{bottom:510.119893pt;}
.y9d{bottom:513.542845pt;}
.yc1{bottom:513.926823pt;}
.yaa{bottom:513.926843pt;}
.yb5{bottom:515.206824pt;}
.y21{bottom:517.697259pt;}
.yd2{bottom:521.198734pt;}
.y37{bottom:528.092479pt;}
.y71{bottom:534.302654pt;}
.y2d{bottom:549.460220pt;}
.y63{bottom:558.747899pt;}
.y20{bottom:570.574055pt;}
.y9c{bottom:634.361560pt;}
.h5{height:42.656251pt;}
.hc{height:49.600001pt;}
.he{height:58.099208pt;}
.h18{height:60.000002pt;}
.h17{height:60.757337pt;}
.hd{height:61.200008pt;}
.h16{height:61.896532pt;}
.h8{height:62.342408pt;}
.h13{height:63.225599pt;}
.h1{height:64.000004pt;}
.h10{height:65.194671pt;}
.h15{height:65.199998pt;}
.hb{height:66.000002pt;}
.h4{height:66.599999pt;}
.h19{height:68.000000pt;}
.h12{height:68.352002pt;}
.h11{height:72.000002pt;}
.h1a{height:73.344002pt;}
.hf{height:76.000004pt;}
.h1b{height:112.000000pt;}
.ha{height:129.599995pt;}
.h7{height:136.704004pt;}
.h3{height:144.000005pt;}
.h6{height:151.893334pt;}
.h14{height:170.880001pt;}
.h9{height:205.056007pt;}
.h2{height:227.840007pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1{left:54.499949pt;}
.x1b{left:62.675646pt;}
.xc{left:66.289450pt;}
.xa{left:80.366566pt;}
.x8{left:85.026112pt;}
.x7{left:105.172108pt;}
.xd{left:113.202104pt;}
.x6{left:150.900565pt;}
.x9{left:170.181021pt;}
.x5{left:345.927261pt;}
.x4{left:376.255632pt;}
.xb{left:382.492922pt;}
.x45{left:397.935663pt;}
.x3{left:459.382645pt;}
.x1c{left:477.390223pt;}
.x31{left:481.743775pt;}
.x44{left:490.167716pt;}
.x47{left:517.280847pt;}
.x48{left:538.381311pt;}
.x49{left:550.029810pt;}
.x46{left:578.118678pt;}
.x4a{left:583.599149pt;}
.x15{left:617.251650pt;}
.x12{left:639.185854pt;}
.x17{left:656.323856pt;}
.x2e{left:660.844564pt;}
.x4e{left:666.143091pt;}
.x5d{left:668.585531pt;}
.x2b{left:673.158347pt;}
.x34{left:677.633506pt;}
.x2c{left:679.304069pt;}
.x35{left:686.081442pt;}
.x2d{left:688.157004pt;}
.x1e{left:689.445307pt;}
.x41{left:692.559882pt;}
.x3c{left:697.313468pt;}
.x20{left:698.641474pt;}
.x2a{left:701.336570pt;}
.x4c{left:704.371943pt;}
.x38{left:711.041161pt;}
.x21{left:713.628536pt;}
.x3f{left:715.145043pt;}
.x24{left:716.360163pt;}
.x57{left:721.082870pt;}
.x1a{left:722.544253pt;}
.x33{left:723.617333pt;}
.x54{left:729.292617pt;}
.x27{left:730.511653pt;}
.x5b{left:735.160344pt;}
.x25{left:737.749754pt;}
.x55{left:742.494156pt;}
.x18{left:744.698124pt;}
.x26{left:747.068354pt;}
.x16{left:748.350284pt;}
.x56{left:749.394120pt;}
.x3d{left:750.497214pt;}
.x1f{left:754.184754pt;}
.x2f{left:755.939784pt;}
.x40{left:758.632959pt;}
.x58{left:761.752518pt;}
.x22{left:766.215205pt;}
.x42{left:769.792995pt;}
.x5e{left:771.257285pt;}
.x14{left:772.264355pt;}
.x23{left:777.572995pt;}
.xe{left:785.357395pt;}
.x19{left:788.962475pt;}
.x32{left:791.847825pt;}
.x3a{left:799.624846pt;}
.x50{left:810.805086pt;}
.x5f{left:812.561026pt;}
.xf{left:815.814856pt;}
.x43{left:819.640776pt;}
.x5a{left:830.640627pt;}
.x5c{left:842.295227pt;}
.x13{left:848.670667pt;}
.x1d{left:853.036907pt;}
.x28{left:875.630528pt;}
.x30{left:884.094148pt;}
.x53{left:899.457309pt;}
.x29{left:910.749799pt;}
.x51{left:913.560269pt;}
.x4f{left:922.090860pt;}
.x4d{left:923.266530pt;}
.x39{left:929.008700pt;}
.x3b{left:930.880770pt;}
.x10{left:967.359911pt;}
.x52{left:975.303631pt;}
.x3e{left:978.928561pt;}
.x37{left:991.168552pt;}
.x36{left:997.888532pt;}
.x4b{left:1004.738932pt;}
.x11{left:1025.123053pt;}
.x59{left:1232.343389pt;}
.x2{left:1237.452764pt;}
}




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