
    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_2f8cb7fc8cc0dfb9c70bd36c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_d4b98da6c8b2c8bcf4f43320.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.863770;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_34ed5418512e814ee47e3a5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885742;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_c3069dd5b4089ddedad39a19.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a94736539ae0f7f662e6abe2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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:ff7;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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.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);}
.m3{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.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:81.359967px;}
.v1{vertical-align:82.799967px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.021282px;}
.ls2{letter-spacing:24.650330px;}
.ls3{letter-spacing:60.671376px;}
.ls1{letter-spacing:754.295353px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-17.999993px;}
.ws0{word-spacing:0.000000px;}
._14{margin-left:-2.139990px;}
._1{margin-left:-1.082896px;}
._0{width:1.077885px;}
._5{width:2.140035px;}
._6{width:3.371846px;}
._7{width:4.455233px;}
._2{width:6.364996px;}
._3{width:7.471628px;}
._15{width:9.085825px;}
._13{width:10.161354px;}
._22{width:11.394641px;}
._25{width:13.578321px;}
._26{width:14.610711px;}
._4{width:16.059621px;}
._12{width:19.281374px;}
._10{width:21.152152px;}
._11{width:22.378157px;}
._f{width:24.335037px;}
._16{width:25.661321px;}
._17{width:26.911928px;}
._18{width:27.948900px;}
._19{width:28.996527px;}
._1a{width:30.065433px;}
._1b{width:31.232446px;}
._21{width:72.725089px;}
._9{width:74.431664px;}
._23{width:98.765368px;}
._27{width:193.805202px;}
._e{width:231.238294px;}
._8{width:251.047908px;}
._1e{width:259.818459px;}
._1d{width:286.392942px;}
._a{width:299.178269px;}
._1c{width:338.379093px;}
._1f{width:404.736670px;}
._c{width:595.801922px;}
._b{width:597.242641px;}
._20{width:627.305545px;}
._24{width:707.561717px;}
._d{width:784.553289px;}
.fc2{color:rgb(74,68,42);}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.fs1{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y74{bottom:3.958981px;}
.ya{bottom:4.499307px;}
.ye{bottom:4.499691px;}
.y10{bottom:4.499699px;}
.y12{bottom:4.500008px;}
.y4{bottom:4.500016px;}
.y3{bottom:106.680240px;}
.y70{bottom:113.339955px;}
.y11{bottom:126.660240px;}
.y99{bottom:130.619948px;}
.y57{bottom:134.400246px;}
.yf{bottom:146.820240px;}
.yca{bottom:152.759939px;}
.ye2{bottom:153.119939px;}
.y55{bottom:158.699937px;}
.y6f{bottom:159.419936px;}
.yd{bottom:166.980240px;}
.y98{bottom:176.519929px;}
.y54{bottom:179.399928px;}
.yc{bottom:191.639923px;}
.yc9{bottom:198.479921px;}
.ye1{bottom:199.199920px;}
.y53{bottom:200.099920px;}
.y56{bottom:200.459920px;}
.y6e{bottom:205.499918px;}
.y2d{bottom:208.199917px;}
.yb{bottom:211.799915px;}
.y51{bottom:221.519911px;}
.y97{bottom:222.599911px;}
.y9{bottom:227.460600px;}
.y2c{bottom:239.339904px;}
.y50{bottom:242.219903px;}
.ye0{bottom:245.279902px;}
.y6d{bottom:251.939899px;}
.y8{bottom:253.019899px;}
.y4f{bottom:262.919895px;}
.y52{bottom:263.279895px;}
.y96{bottom:268.679893px;}
.y7{bottom:278.759888px;}
.y6c{bottom:282.899887px;}
.y4d{bottom:284.339886px;}
.y2b{bottom:285.419886px;}
.ydf{bottom:291.179884px;}
.yc5{bottom:297.659881px;}
.yc8{bottom:298.019881px;}
.y95{bottom:299.819880px;}
.y4c{bottom:305.039878px;}
.y6{bottom:306.659877px;}
.y6b{bottom:314.039874px;}
.y2a{bottom:316.379873px;}
.yc4{bottom:318.359873px;}
.yc7{bottom:318.719873px;}
.yde{bottom:322.319871px;}
.y4b{bottom:325.739870px;}
.y4e{bottom:326.099870px;}
.y94{bottom:330.779868px;}
.yc3{bottom:339.059864px;}
.yc6{bottom:339.419864px;}
.y6a{bottom:344.999862px;}
.y49{bottom:347.159861px;}
.y5{bottom:348.959860px;}
.y93{bottom:361.919855px;}
.y29{bottom:362.459855px;}
.y48{bottom:367.859853px;}
.ydd{bottom:368.399853px;}
.yc2{bottom:378.659849px;}
.y69{bottom:383.519847px;}
.y47{bottom:388.559845px;}
.y4a{bottom:388.919844px;}
.y92{bottom:392.879843px;}
.y28{bottom:393.419843px;}
.ybd{bottom:398.999840px;}
.yc1{bottom:399.539840px;}
.y68{bottom:408.539837px;}
.y45{bottom:410.159836px;}
.ydc{bottom:414.479834px;}
.ybc{bottom:419.879832px;}
.yc0{bottom:420.239832px;}
.y91{bottom:424.019830px;}
.y27{bottom:424.559830px;}
.y44{bottom:430.859828px;}
.ybb{bottom:440.579824px;}
.ybf{bottom:440.939824px;}
.ydb{bottom:445.439822px;}
.y43{bottom:451.559819px;}
.y46{bottom:451.919819px;}
.y90{bottom:454.979818px;}
.y67{bottom:459.839816px;}
.y26{bottom:470.639812px;}
.y41{bottom:472.979811px;}
.yda{bottom:476.579809px;}
.yba{bottom:479.279808px;}
.ybe{bottom:479.639808px;}
.y8f{bottom:485.939806px;}
.y40{bottom:493.679803px;}
.y66{bottom:510.959796px;}
.y3f{bottom:514.379794px;}
.y42{bottom:514.739794px;}
.y25{bottom:516.539793px;}
.yd9{bottom:522.479791px;}
.y8e{bottom:525.719790px;}
.yb9{bottom:529.679788px;}
.yb5{bottom:531.839787px;}
.y3e{bottom:535.799786px;}
.y24{bottom:548.399781px;}
.yb8{bottom:550.379780px;}
.yb4{bottom:552.719779px;}
.yd8{bottom:553.619779px;}
.y3d{bottom:556.499777px;}
.y65{bottom:562.979775px;}
.y8d{bottom:568.559773px;}
.yb7{bottom:571.079772px;}
.y23{bottom:579.539768px;}
.yd7{bottom:584.579766px;}
.yb3{bottom:591.239764px;}
.yb6{bottom:591.419763px;}
.y3c{bottom:595.919762px;}
.y8c{bottom:610.319756px;}
.y22{bottom:611.219756px;}
.y64{bottom:614.099754px;}
.yb2{bottom:628.859748px;}
.yd6{bottom:630.659748px;}
.yad{bottom:631.019748px;}
.y3b{bottom:642.179743px;}
.y21{bottom:643.079743px;}
.yb1{bottom:649.559740px;}
.yac{bottom:651.899739px;}
.y8b{bottom:656.399737px;}
.yd5{bottom:661.799735px;}
.y63{bottom:666.119734px;}
.yb0{bottom:670.259732px;}
.yab{bottom:672.599731px;}
.y20{bottom:674.939730px;}
.y8a{bottom:687.539725px;}
.y3a{bottom:688.259725px;}
.yaf{bottom:690.959724px;}
.y1f{bottom:706.619717px;}
.yd4{bottom:707.699717px;}
.yaa{bottom:711.119716px;}
.yae{bottom:711.659715px;}
.y62{bottom:717.419713px;}
.y89{bottom:718.499713px;}
.y39{bottom:719.399712px;}
.y1e{bottom:737.759705px;}
.yd3{bottom:738.839704px;}
.y38{bottom:750.359700px;}
.ya6{bottom:750.719700px;}
.y88{bottom:757.019697px;}
.y1d{bottom:768.719693px;}
.y61{bottom:769.259692px;}
.ya9{bottom:769.439692px;}
.yd2{bottom:769.799692px;}
.y37{bottom:781.499687px;}
.ya5{bottom:789.599684px;}
.ya8{bottom:790.139684px;}
.y87{bottom:795.719682px;}
.y1c{bottom:799.859680px;}
.ya4{bottom:810.479676px;}
.ya7{bottom:810.839676px;}
.yd1{bottom:815.879674px;}
.y86{bottom:817.319673px;}
.y83{bottom:817.679673px;}
.y60{bottom:818.759672px;}
.y36{bottom:819.839672px;}
.y85{bottom:838.019665px;}
.y82{bottom:838.379665px;}
.y1b{bottom:838.919664px;}
.y35{bottom:845.039662px;}
.yd0{bottom:847.019661px;}
.ya3{bottom:848.999660px;}
.y84{bottom:858.719657px;}
.y81{bottom:859.079656px;}
.y5f{bottom:865.199654px;}
.ycf{bottom:877.979649px;}
.y7d{bottom:880.679648px;}
.y1a{bottom:885.359646px;}
.ya2{bottom:888.599645px;}
.y34{bottom:893.999642px;}
.y80{bottom:901.019640px;}
.y7c{bottom:901.379639px;}
.ya0{bottom:909.299636px;}
.ya1{bottom:909.839636px;}
.y5e{bottom:911.279635px;}
.y7f{bottom:921.719631px;}
.y7b{bottom:922.079631px;}
.yce{bottom:924.059630px;}
.y9f{bottom:930.179628px;}
.y19{bottom:930.539628px;}
.y33{bottom:940.079624px;}
.y7e{bottom:942.239623px;}
.y5d{bottom:942.419623px;}
.y7a{bottom:942.599623px;}
.ycd{bottom:955.019618px;}
.y18{bottom:961.679615px;}
.y79{bottom:963.839614px;}
.y9e{bottom:968.699613px;}
.y5c{bottom:973.379611px;}
.y78{bottom:984.539606px;}
.y77{bottom:984.899606px;}
.y32{bottom:986.159606px;}
.y17{bottom:992.639603px;}
.y5b{bottom:1004.519598px;}
.y76{bottom:1005.239598px;}
.y9d{bottom:1008.299597px;}
.ycc{bottom:1017.119593px;}
.y16{bottom:1023.779590px;}
.y75{bottom:1026.659589px;}
.y31{bottom:1032.239587px;}
.y5a{bottom:1035.479586px;}
.y73{bottom:1043.400600px;}
.y9c{bottom:1047.179581px;}
.y72{bottom:1047.359581px;}
.ye3{bottom:1047.899581px;}
.ycb{bottom:1048.259581px;}
.y15{bottom:1054.739578px;}
.y59{bottom:1066.439573px;}
.y30{bottom:1078.319569px;}
.y9b{bottom:1093.979562px;}
.y71{bottom:1094.339562px;}
.y14{bottom:1094.519562px;}
.y58{bottom:1097.579561px;}
.y2{bottom:1102.979559px;}
.y2f{bottom:1109.279556px;}
.y13{bottom:1137.359545px;}
.y9a{bottom:1140.059544px;}
.y2e{bottom:1140.419544px;}
.y1{bottom:1141.139544px;}
.h2{height:19.980000px;}
.hb{height:20.520000px;}
.h1{height:45.345919px;}
.h3{height:45.410607px;}
.h6{height:57.668180px;}
.h5{height:57.750446px;}
.h9{height:70.664034px;}
.h8{height:72.562471px;}
.hd{height:75.093720px;}
.h7{height:84.898091px;}
.h4{height:126.421824px;}
.hc{height:153.922438px;}
.ha{height:155.362438px;}
.h0{height:1263.000000px;}
.w5{width:3.780000px;}
.w1{width:8.280000px;}
.w3{width:9.900000px;}
.w4{width:57.780000px;}
.w6{width:182.340000px;}
.w2{width:369.900000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2c{left:93.059963px;}
.x2d{left:120.059913px;}
.x1{left:127.619949px;}
.xb{left:131.399947px;}
.x2{left:139.139944px;}
.x1a{left:144.719942px;}
.x2f{left:147.059898px;}
.x19{left:174.599930px;}
.x11{left:180.719928px;}
.x29{left:184.139926px;}
.x6{left:185.400000px;}
.x7{left:189.180000px;}
.x13{left:190.979924px;}
.x26{left:192.779882px;}
.x16{left:199.079920px;}
.x2a{left:207.179917px;}
.xc{left:211.139916px;}
.x4{left:218.699913px;}
.x25{left:227.519909px;}
.x14{left:231.479898px;}
.x3{left:232.559895px;}
.x17{left:242.639903px;}
.x1f{left:246.059902px;}
.x18{left:260.099896px;}
.x20{left:276.839889px;}
.xd{left:281.339887px;}
.x31{left:289.799884px;}
.x12{left:304.201231px;}
.x21{left:326.880000px;}
.x2e{left:337.679409px;}
.x22{left:349.199860px;}
.x23{left:355.139858px;}
.x1b{left:362.519946px;}
.x9{left:365.579854px;}
.x8{left:371.520000px;}
.x30{left:391.679090px;}
.x10{left:401.039840px;}
.xe{left:434.699826px;}
.x27{left:443.520257px;}
.x15{left:451.799795px;}
.x1e{left:473.039811px;}
.x5{left:497.520000px;}
.x2b{left:510.119796px;}
.x1c{left:524.699860px;}
.x24{left:626.759749px;}
.xf{left:635.219746px;}
.xa{left:653.579739px;}
.x28{left:659.700049px;}
.x1d{left:686.699876px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:72.319971pt;}
.v1{vertical-align:73.599971pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018917pt;}
.ls2{letter-spacing:21.911405pt;}
.ls3{letter-spacing:53.930112pt;}
.ls1{letter-spacing:670.484758pt;}
.ws1{word-spacing:-15.999994pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-1.902214pt;}
._1{margin-left:-0.962574pt;}
._0{width:0.958120pt;}
._5{width:1.902253pt;}
._6{width:2.997196pt;}
._7{width:3.960208pt;}
._2{width:5.657775pt;}
._3{width:6.641447pt;}
._15{width:8.076289pt;}
._13{width:9.032315pt;}
._22{width:10.128569pt;}
._25{width:12.069619pt;}
._26{width:12.987299pt;}
._4{width:14.275219pt;}
._12{width:17.138999pt;}
._10{width:18.801912pt;}
._11{width:19.891695pt;}
._f{width:21.631144pt;}
._16{width:22.810063pt;}
._17{width:23.921713pt;}
._18{width:24.843467pt;}
._19{width:25.774690pt;}
._1a{width:26.724829pt;}
._1b{width:27.762174pt;}
._21{width:64.644523pt;}
._9{width:66.161479pt;}
._23{width:87.791439pt;}
._27{width:172.271291pt;}
._e{width:205.545150pt;}
._8{width:223.153696pt;}
._1e{width:230.949742pt;}
._1d{width:254.571504pt;}
._a{width:265.936239pt;}
._1c{width:300.781416pt;}
._1f{width:359.765929pt;}
._c{width:529.601708pt;}
._b{width:530.882348pt;}
._20{width:557.604929pt;}
._24{width:628.943748pt;}
._d{width:697.380702pt;}
.fs0{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.fs1{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:3.519094pt;}
.ya{bottom:3.999384pt;}
.ye{bottom:3.999726pt;}
.y10{bottom:3.999733pt;}
.y12{bottom:4.000007pt;}
.y4{bottom:4.000014pt;}
.y3{bottom:94.826880pt;}
.y70{bottom:100.746626pt;}
.y11{bottom:112.586880pt;}
.y99{bottom:116.106620pt;}
.y57{bottom:119.466886pt;}
.yf{bottom:130.506880pt;}
.yca{bottom:135.786612pt;}
.ye2{bottom:136.106612pt;}
.y55{bottom:141.066610pt;}
.y6f{bottom:141.706610pt;}
.yd{bottom:148.426880pt;}
.y98{bottom:156.906604pt;}
.y54{bottom:159.466603pt;}
.yc{bottom:170.346599pt;}
.yc9{bottom:176.426596pt;}
.ye1{bottom:177.066596pt;}
.y53{bottom:177.866596pt;}
.y56{bottom:178.186595pt;}
.y6e{bottom:182.666594pt;}
.y2d{bottom:185.066593pt;}
.yb{bottom:188.266591pt;}
.y51{bottom:196.906588pt;}
.y97{bottom:197.866588pt;}
.y9{bottom:202.187200pt;}
.y2c{bottom:212.746582pt;}
.y50{bottom:215.306581pt;}
.ye0{bottom:218.026579pt;}
.y6d{bottom:223.946577pt;}
.y8{bottom:224.906577pt;}
.y4f{bottom:233.706573pt;}
.y52{bottom:234.026573pt;}
.y96{bottom:238.826571pt;}
.y7{bottom:247.786568pt;}
.y6c{bottom:251.466566pt;}
.y4d{bottom:252.746566pt;}
.y2b{bottom:253.706565pt;}
.ydf{bottom:258.826563pt;}
.yc5{bottom:264.586561pt;}
.yc8{bottom:264.906561pt;}
.y95{bottom:266.506560pt;}
.y4c{bottom:271.146558pt;}
.y6{bottom:272.586558pt;}
.y6b{bottom:279.146555pt;}
.y2a{bottom:281.226554pt;}
.yc4{bottom:282.986553pt;}
.yc7{bottom:283.306553pt;}
.yde{bottom:286.506552pt;}
.y4b{bottom:289.546551pt;}
.y4e{bottom:289.866551pt;}
.y94{bottom:294.026549pt;}
.yc3{bottom:301.386546pt;}
.yc6{bottom:301.706546pt;}
.y6a{bottom:306.666544pt;}
.y49{bottom:308.586543pt;}
.y5{bottom:310.186543pt;}
.y93{bottom:321.706538pt;}
.y29{bottom:322.186538pt;}
.y48{bottom:326.986536pt;}
.ydd{bottom:327.466536pt;}
.yc2{bottom:336.586532pt;}
.y69{bottom:340.906530pt;}
.y47{bottom:345.386529pt;}
.y4a{bottom:345.706528pt;}
.y92{bottom:349.226527pt;}
.y28{bottom:349.706527pt;}
.ybd{bottom:354.666525pt;}
.yc1{bottom:355.146525pt;}
.y68{bottom:363.146521pt;}
.y45{bottom:364.586521pt;}
.ydc{bottom:368.426519pt;}
.ybc{bottom:373.226517pt;}
.yc0{bottom:373.546517pt;}
.y91{bottom:376.906516pt;}
.y27{bottom:377.386516pt;}
.y44{bottom:382.986513pt;}
.ybb{bottom:391.626510pt;}
.ybf{bottom:391.946510pt;}
.ydb{bottom:395.946508pt;}
.y43{bottom:401.386506pt;}
.y46{bottom:401.706506pt;}
.y90{bottom:404.426505pt;}
.y67{bottom:408.746503pt;}
.y26{bottom:418.346499pt;}
.y41{bottom:420.426498pt;}
.yda{bottom:423.626497pt;}
.yba{bottom:426.026496pt;}
.ybe{bottom:426.346496pt;}
.y8f{bottom:431.946494pt;}
.y40{bottom:438.826491pt;}
.y66{bottom:454.186485pt;}
.y3f{bottom:457.226484pt;}
.y42{bottom:457.546484pt;}
.y25{bottom:459.146483pt;}
.yd9{bottom:464.426481pt;}
.y8e{bottom:467.306480pt;}
.yb9{bottom:470.826478pt;}
.yb5{bottom:472.746478pt;}
.y3e{bottom:476.266476pt;}
.y24{bottom:487.466472pt;}
.yb8{bottom:489.226471pt;}
.yb4{bottom:491.306470pt;}
.yd8{bottom:492.106470pt;}
.y3d{bottom:494.666469pt;}
.y65{bottom:500.426466pt;}
.y8d{bottom:505.386465pt;}
.yb7{bottom:507.626464pt;}
.y23{bottom:515.146461pt;}
.yd7{bottom:519.626459pt;}
.yb3{bottom:525.546456pt;}
.yb6{bottom:525.706456pt;}
.y3c{bottom:529.706455pt;}
.y8c{bottom:542.506450pt;}
.y22{bottom:543.306449pt;}
.y64{bottom:545.866448pt;}
.yb2{bottom:558.986443pt;}
.yd6{bottom:560.586442pt;}
.yad{bottom:560.906442pt;}
.y3b{bottom:570.826438pt;}
.y21{bottom:571.626438pt;}
.yb1{bottom:577.386436pt;}
.yac{bottom:579.466435pt;}
.y8b{bottom:583.466433pt;}
.yd5{bottom:588.266431pt;}
.y63{bottom:592.106430pt;}
.yb0{bottom:595.786428pt;}
.yab{bottom:597.866428pt;}
.y20{bottom:599.946427pt;}
.y8a{bottom:611.146422pt;}
.y3a{bottom:611.786422pt;}
.yaf{bottom:614.186421pt;}
.y1f{bottom:628.106415pt;}
.yd4{bottom:629.066415pt;}
.yaa{bottom:632.106414pt;}
.yae{bottom:632.586414pt;}
.y62{bottom:637.706412pt;}
.y89{bottom:638.666411pt;}
.y39{bottom:639.466411pt;}
.y1e{bottom:655.786404pt;}
.yd3{bottom:656.746404pt;}
.y38{bottom:666.986400pt;}
.ya6{bottom:667.306400pt;}
.y88{bottom:672.906398pt;}
.y1d{bottom:683.306393pt;}
.y61{bottom:683.786393pt;}
.ya9{bottom:683.946393pt;}
.yd2{bottom:684.266393pt;}
.y37{bottom:694.666389pt;}
.ya5{bottom:701.866386pt;}
.ya8{bottom:702.346386pt;}
.y87{bottom:707.306384pt;}
.y1c{bottom:710.986382pt;}
.ya4{bottom:720.426378pt;}
.ya7{bottom:720.746378pt;}
.yd1{bottom:725.226377pt;}
.y86{bottom:726.506376pt;}
.y83{bottom:726.826376pt;}
.y60{bottom:727.786376pt;}
.y36{bottom:728.746375pt;}
.y85{bottom:744.906369pt;}
.y82{bottom:745.226369pt;}
.y1b{bottom:745.706368pt;}
.y35{bottom:751.146366pt;}
.yd0{bottom:752.906366pt;}
.ya3{bottom:754.666365pt;}
.y84{bottom:763.306361pt;}
.y81{bottom:763.626361pt;}
.y5f{bottom:769.066359pt;}
.ycf{bottom:780.426354pt;}
.y7d{bottom:782.826354pt;}
.y1a{bottom:786.986352pt;}
.ya2{bottom:789.866351pt;}
.y34{bottom:794.666349pt;}
.y80{bottom:800.906346pt;}
.y7c{bottom:801.226346pt;}
.ya0{bottom:808.266343pt;}
.ya1{bottom:808.746343pt;}
.y5e{bottom:810.026343pt;}
.y7f{bottom:819.306339pt;}
.y7b{bottom:819.626339pt;}
.yce{bottom:821.386338pt;}
.y9f{bottom:826.826336pt;}
.y19{bottom:827.146336pt;}
.y33{bottom:835.626332pt;}
.y7e{bottom:837.546332pt;}
.y5d{bottom:837.706332pt;}
.y7a{bottom:837.866332pt;}
.ycd{bottom:848.906327pt;}
.y18{bottom:854.826325pt;}
.y79{bottom:856.746324pt;}
.y9e{bottom:861.066322pt;}
.y5c{bottom:865.226321pt;}
.y78{bottom:875.146317pt;}
.y77{bottom:875.466316pt;}
.y32{bottom:876.586316pt;}
.y17{bottom:882.346314pt;}
.y5b{bottom:892.906310pt;}
.y76{bottom:893.546309pt;}
.y9d{bottom:896.266308pt;}
.ycc{bottom:904.106305pt;}
.y16{bottom:910.026303pt;}
.y75{bottom:912.586302pt;}
.y31{bottom:917.546300pt;}
.y5a{bottom:920.426298pt;}
.y73{bottom:927.467200pt;}
.y9c{bottom:930.826294pt;}
.y72{bottom:930.986294pt;}
.ye3{bottom:931.466294pt;}
.ycb{bottom:931.786294pt;}
.y15{bottom:937.546292pt;}
.y59{bottom:947.946287pt;}
.y30{bottom:958.506283pt;}
.y9b{bottom:972.426278pt;}
.y71{bottom:972.746278pt;}
.y14{bottom:972.906278pt;}
.y58{bottom:975.626276pt;}
.y2{bottom:980.426274pt;}
.y2f{bottom:986.026272pt;}
.y13{bottom:1010.986262pt;}
.y9a{bottom:1013.386261pt;}
.y2e{bottom:1013.706261pt;}
.y1{bottom:1014.346261pt;}
.h2{height:17.760000pt;}
.hb{height:18.240000pt;}
.h1{height:40.307484pt;}
.h3{height:40.364984pt;}
.h6{height:51.260604pt;}
.h5{height:51.333729pt;}
.h9{height:62.812475pt;}
.h8{height:64.499974pt;}
.hd{height:66.749973pt;}
.h7{height:75.464970pt;}
.h4{height:112.374955pt;}
.hc{height:136.819945pt;}
.ha{height:138.099945pt;}
.h0{height:1122.666667pt;}
.w5{width:3.360000pt;}
.w1{width:7.360000pt;}
.w3{width:8.800000pt;}
.w4{width:51.360000pt;}
.w6{width:162.080000pt;}
.w2{width:328.800000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2c{left:82.719967pt;}
.x2d{left:106.719922pt;}
.x1{left:113.439955pt;}
.xb{left:116.799953pt;}
.x2{left:123.679951pt;}
.x1a{left:128.639949pt;}
.x2f{left:130.719910pt;}
.x19{left:155.199938pt;}
.x11{left:160.639936pt;}
.x29{left:163.679935pt;}
.x6{left:164.800000pt;}
.x7{left:168.160000pt;}
.x13{left:169.759932pt;}
.x26{left:171.359895pt;}
.x16{left:176.959929pt;}
.x2a{left:184.159926pt;}
.xc{left:187.679925pt;}
.x4{left:194.399922pt;}
.x25{left:202.239919pt;}
.x14{left:205.759910pt;}
.x3{left:206.719907pt;}
.x17{left:215.679914pt;}
.x1f{left:218.719913pt;}
.x18{left:231.199908pt;}
.x20{left:246.079902pt;}
.xd{left:250.079900pt;}
.x31{left:257.599897pt;}
.x12{left:270.401094pt;}
.x21{left:290.560000pt;}
.x2e{left:300.159475pt;}
.x22{left:310.399876pt;}
.x23{left:315.679874pt;}
.x1b{left:322.239952pt;}
.x9{left:324.959870pt;}
.x8{left:330.240000pt;}
.x30{left:348.159191pt;}
.x10{left:356.479857pt;}
.xe{left:386.399845pt;}
.x27{left:394.240229pt;}
.x15{left:401.599818pt;}
.x1e{left:420.479832pt;}
.x5{left:442.240000pt;}
.x2b{left:453.439819pt;}
.x1c{left:466.399876pt;}
.x24{left:557.119777pt;}
.xf{left:564.639774pt;}
.xa{left:580.959768pt;}
.x28{left:586.400044pt;}
.x1d{left:610.399890pt;}
}




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