
    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_a53ae22f1d025555e6d05216.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_492ebbc02b1d498bf7858491.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.913000;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_24a9790aa931d3dfa7c8f1e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_c9dde006be0315cedf348e3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_bfcc47a9ade13729898471c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_05c6f4f6db1b55cb13e0357a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_b8628d756b7efd87d41e3a9f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.683000;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:ff8;src:url('chunks/assets/font_43ad5522b9a86d2e5406d670.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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:ff9;src:url('chunks/assets/font_e23a54b89db52522366d157d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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:ffa;src:url('chunks/assets/font_1986f8a03715c13266ed65d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.199000;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:ffb;src:url('chunks/assets/font_c5c6dbffc58ea3cb322fbcc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.429000;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:ffc;src:url('chunks/assets/font_7fec4f9ed8a29bec8193b001.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.674000;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;}
.m2{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);}
.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;}
.v1{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.673717px;}
.ls3{letter-spacing:2.989409px;}
.ls1{letter-spacing:17.693578px;}
.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;}
}
.ws32{word-spacing:-16.605662px;}
.ws36{word-spacing:-13.061657px;}
.ws13{word-spacing:-6.682912px;}
.ws26{word-spacing:-1.721537px;}
.ws27{word-spacing:-1.482435px;}
.ws4{word-spacing:-0.059776px;}
.ws30{word-spacing:0.000000px;}
.ws22{word-spacing:0.191282px;}
.ws2f{word-spacing:0.669487px;}
.ws14{word-spacing:0.968365px;}
.wsd{word-spacing:1.087916px;}
.ws3e{word-spacing:1.147692px;}
.ws37{word-spacing:1.267243px;}
.ws34{word-spacing:1.506345px;}
.wsb{word-spacing:1.625896px;}
.ws1d{word-spacing:2.044326px;}
.ws2c{word-spacing:2.104101px;}
.ws44{word-spacing:2.283428px;}
.ws12{word-spacing:2.343204px;}
.ws3d{word-spacing:2.402979px;}
.ws25{word-spacing:2.522530px;}
.wsc{word-spacing:2.582306px;}
.ws24{word-spacing:3.060511px;}
.ws2b{word-spacing:3.239838px;}
.ws5{word-spacing:3.299613px;}
.ws6{word-spacing:3.359389px;}
.ws38{word-spacing:3.478940px;}
.ws1e{word-spacing:3.718042px;}
.ws1a{word-spacing:3.777818px;}
.ws39{word-spacing:3.897369px;}
.ws19{word-spacing:4.016920px;}
.ws11{word-spacing:4.315798px;}
.ws2e{word-spacing:4.435350px;}
.ws1{word-spacing:4.483200px;}
.ws15{word-spacing:4.614676px;}
.wsf{word-spacing:4.674452px;}
.ws28{word-spacing:4.734228px;}
.ws0{word-spacing:5.379825px;}
.ws1f{word-spacing:5.451535px;}
.ws23{word-spacing:5.511310px;}
.ws31{word-spacing:5.989515px;}
.ws10{word-spacing:6.109066px;}
.ws3b{word-spacing:6.168842px;}
.ws1c{word-spacing:6.407944px;}
.ws2d{word-spacing:6.587271px;}
.ws18{word-spacing:6.826374px;}
.ws29{word-spacing:7.483905px;}
.ws3c{word-spacing:8.201212px;}
.ws16{word-spacing:8.260988px;}
.ws3a{word-spacing:8.380539px;}
.ws2{word-spacing:8.414070px;}
.wsa{word-spacing:9.038071px;}
.wse{word-spacing:9.217398px;}
.ws41{word-spacing:9.576051px;}
.ws17{word-spacing:9.635827px;}
.ws21{word-spacing:9.755378px;}
.ws20{word-spacing:10.173807px;}
.ws43{word-spacing:11.727973px;}
.ws2a{word-spacing:13.222363px;}
.ws40{word-spacing:15.254733px;}
.ws45{word-spacing:20.383480px;}
.ws3f{word-spacing:20.687208px;}
.ws42{word-spacing:21.339889px;}
.ws7{word-spacing:22.894055px;}
.ws3{word-spacing:23.312640px;}
.ws1b{word-spacing:26.540366px;}
.ws9{word-spacing:69.937725px;}
.ws8{word-spacing:150.827365px;}
.ws33{word-spacing:1269.696151px;}
.ws35{word-spacing:1328.671172px;}
._24{margin-left:-3400.070628px;}
._26{margin-left:-2948.467409px;}
._28{margin-left:-2496.864189px;}
._31{margin-left:-2246.968173px;}
._2a{margin-left:-2045.260970px;}
._30{margin-left:-1608.709169px;}
._2c{margin-left:-1593.657751px;}
._2d{margin-left:-1142.054532px;}
._2f{margin-left:-970.450164px;}
._2e{margin-left:-332.191159px;}
._16{margin-left:-31.501741px;}
._13{margin-left:-8.091257px;}
._3{margin-left:-6.312346px;}
._4{margin-left:-4.232141px;}
._0{margin-left:-2.668393px;}
._5{margin-left:-1.434624px;}
._11{width:1.613941px;}
._1{width:2.668393px;}
._18{width:9.982525px;}
._20{width:16.199197px;}
._10{width:19.247753px;}
._d{width:20.959727px;}
._23{width:24.089596px;}
._1b{width:25.323355px;}
._e{width:26.659918px;}
._1a{width:27.855430px;}
._22{width:30.332569px;}
._15{width:31.480232px;}
._1e{width:33.354785px;}
._14{width:34.849175px;}
._2{width:36.310326px;}
._1c{width:37.398007px;}
._21{width:39.050225px;}
._17{width:41.364715px;}
._1f{width:42.935648px;}
._f{width:44.212435px;}
._19{width:45.788129px;}
._1d{width:47.043397px;}
._32{width:51.913844px;}
._12{width:96.836850px;}
._a{width:121.773865px;}
._8{width:139.621853px;}
._9{width:145.434207px;}
._c{width:150.829703px;}
._6{width:188.193181px;}
._2b{width:1793.336047px;}
._7{width:1829.681015px;}
._b{width:2129.876480px;}
._29{width:2244.939267px;}
._27{width:2696.542486px;}
._25{width:3148.145705px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,255,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:21.697104px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:43.379035px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y4e{bottom:-178.549717px;}
.y5b{bottom:-149.194142px;}
.y66{bottom:-87.152563px;}
.y65{bottom:-80.651018px;}
.y58{bottom:-69.411767px;}
.y0{bottom:0.000000px;}
.y55{bottom:10.370609px;}
.y68{bottom:20.369484px;}
.y67{bottom:26.871029px;}
.y44{bottom:42.519000px;}
.y61{bottom:49.042283px;}
.y60{bottom:55.543828px;}
.y52{bottom:90.152984px;}
.y62{bottom:112.893218px;}
.y43{bottom:138.024000px;}
.y63{bottom:148.731372px;}
.y11{bottom:150.588000px;}
.y42{bottom:155.956500px;}
.y5e{bottom:163.737271px;}
.y51{bottom:169.935360px;}
.y5d{bottom:170.238816px;}
.y50{bottom:170.272955px;}
.y41{bottom:173.889000px;}
.y10{bottom:178.084500px;}
.y40{bottom:191.821500px;}
.yf{bottom:205.417500px;}
.y3f{bottom:209.754000px;}
.y64{bottom:226.810601px;}
.y3e{bottom:227.686500px;}
.ye{bottom:234.747000px;}
.y3d{bottom:245.620500px;}
.y54{bottom:249.717736px;}
.y53{bottom:250.055330px;}
.yd{bottom:262.245000px;}
.y3c{bottom:263.553000px;}
.y5c{bottom:268.304416px;}
.y7d{bottom:274.953000px;}
.y4c{bottom:278.755500px;}
.y3b{bottom:281.485500px;}
.y7c{bottom:281.989500px;}
.yc{bottom:289.741500px;}
.y48{bottom:291.534000px;}
.y4b{bottom:296.688000px;}
.y3a{bottom:299.418000px;}
.y7b{bottom:299.922000px;}
.y47{bottom:309.466500px;}
.yb{bottom:317.238000px;}
.y39{bottom:317.350500px;}
.y7a{bottom:317.854500px;}
.y4a{bottom:328.443000px;}
.y57{bottom:329.500111px;}
.y56{bottom:329.837706px;}
.y38{bottom:335.283000px;}
.y46{bottom:341.223000px;}
.ya{bottom:344.571000px;}
.y79{bottom:347.743500px;}
.y37{bottom:353.217000px;}
.y7e{bottom:360.117000px;}
.y78{bottom:365.676000px;}
.y36{bottom:371.149500px;}
.y77{bottom:383.608500px;}
.y5f{bottom:385.286704px;}
.y35{bottom:389.082000px;}
.y34{bottom:407.014500px;}
.y5a{bottom:409.282487px;}
.y59{bottom:409.620082px;}
.y76{bottom:416.340000px;}
.y33{bottom:424.947000px;}
.y4f{bottom:438.975656px;}
.y32{bottom:442.881000px;}
.y31{bottom:460.813500px;}
.y75{bottom:465.759000px;}
.y30{bottom:478.746000px;}
.y74{bottom:483.691500px;}
.y2f{bottom:496.678500px;}
.y73{bottom:501.624000px;}
.y2e{bottom:514.611000px;}
.y72{bottom:519.556500px;}
.y2d{bottom:532.543500px;}
.y71{bottom:537.490500px;}
.y9{bottom:549.075000px;}
.y2c{bottom:550.477500px;}
.y70{bottom:555.423000px;}
.y2b{bottom:568.410000px;}
.y6f{bottom:573.355500px;}
.y2a{bottom:586.342500px;}
.y8{bottom:587.380500px;}
.y6e{bottom:591.288000px;}
.y29{bottom:604.275000px;}
.y6d{bottom:609.220500px;}
.y28{bottom:622.207500px;}
.y6c{bottom:627.153000px;}
.y27{bottom:640.140000px;}
.y26{bottom:658.074000px;}
.y6b{bottom:659.884500px;}
.y49{bottom:671.202000px;}
.y7{bottom:675.912000px;}
.y25{bottom:676.006500px;}
.y45{bottom:688.641000px;}
.y24{bottom:693.939000px;}
.y6{bottom:700.818000px;}
.y6a{bottom:709.303500px;}
.y23{bottom:711.871500px;}
.y22{bottom:729.804000px;}
.y5{bottom:737.679000px;}
.y21{bottom:747.736500px;}
.y69{bottom:759.516000px;}
.y20{bottom:765.670500px;}
.y1f{bottom:783.603000px;}
.y4d{bottom:787.012500px;}
.y4{bottom:790.482000px;}
.y1e{bottom:801.535500px;}
.y3{bottom:815.388000px;}
.y1d{bottom:819.468000px;}
.y1c{bottom:837.400500px;}
.y1b{bottom:855.334500px;}
.y2{bottom:856.951500px;}
.y1a{bottom:873.267000px;}
.y19{bottom:891.199500px;}
.y1{bottom:893.415000px;}
.y18{bottom:909.132000px;}
.y17{bottom:927.064500px;}
.y16{bottom:959.796000px;}
.y15{bottom:1009.215000px;}
.y14{bottom:1027.147500px;}
.y13{bottom:1045.080000px;}
.y12{bottom:1077.811500px;}
.ha{height:20.894311px;}
.h8{height:35.865450px;}
.h6{height:41.544042px;}
.hb{height:41.774011px;}
.h7{height:44.831700px;}
.hc{height:49.892047px;}
.h3{height:50.211840px;}
.h4{height:51.000883px;}
.h5{height:51.216077px;}
.h2{height:60.254040px;}
.h9{height:305.739506px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:340.151417px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x28{left:-20.794322px;}
.x27{left:-2.784209px;}
.x0{left:0.000000px;}
.x25{left:53.666194px;}
.x12{left:106.299000px;}
.x23{left:110.116596px;}
.xe{left:128.971500px;}
.xc{left:133.434000px;}
.xd{left:134.887500px;}
.x11{left:136.236000px;}
.x10{left:140.388000px;}
.xb{left:145.576500px;}
.x8{left:160.014000px;}
.x21{left:166.566998px;}
.x2{left:185.244000px;}
.x1f{left:223.017401px;}
.x7{left:229.264500px;}
.x1{left:255.076500px;}
.x15{left:271.330500px;}
.x16{left:276.378000px;}
.x1d{left:279.467803px;}
.x5{left:282.763500px;}
.x3{left:286.609500px;}
.x4{left:303.607500px;}
.x31{left:316.257000px;}
.x32{left:320.823000px;}
.x2c{left:322.888564px;}
.x1b{left:335.918206px;}
.x30{left:351.561362px;}
.x2f{left:358.730510px;}
.x6{left:369.531000px;}
.x9{left:376.344000px;}
.xf{left:383.160000px;}
.x19{left:392.368608px;}
.x13{left:430.267500px;}
.x14{left:438.340500px;}
.xa{left:439.518000px;}
.x18{left:448.815217px;}
.x1a{left:505.265620px;}
.x2d{left:523.598155px;}
.x2b{left:530.767303px;}
.x2e{left:537.936451px;}
.x1c{left:561.716022px;}
.x1e{left:618.166424px;}
.x20{left:674.616827px;}
.x2a{left:716.285129px;}
.x22{left:731.067229px;}
.x24{left:787.517632px;}
.x17{left:840.364494px;}
.x26{left:843.968034px;}
.x29{left:858.374608px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.487748pt;}
.ls3{letter-spacing:2.657253pt;}
.ls1{letter-spacing:15.727625pt;}
.ws32{word-spacing:-14.760588pt;}
.ws36{word-spacing:-11.610361pt;}
.ws13{word-spacing:-5.940366pt;}
.ws26{word-spacing:-1.530255pt;}
.ws27{word-spacing:-1.317720pt;}
.ws4{word-spacing:-0.053134pt;}
.ws30{word-spacing:0.000000pt;}
.ws22{word-spacing:0.170028pt;}
.ws2f{word-spacing:0.595099pt;}
.ws14{word-spacing:0.860769pt;}
.wsd{word-spacing:0.967036pt;}
.ws3e{word-spacing:1.020170pt;}
.ws37{word-spacing:1.126438pt;}
.ws34{word-spacing:1.338973pt;}
.wsb{word-spacing:1.445241pt;}
.ws1d{word-spacing:1.817178pt;}
.ws2c{word-spacing:1.870312pt;}
.ws44{word-spacing:2.029714pt;}
.ws12{word-spacing:2.082848pt;}
.ws3d{word-spacing:2.135981pt;}
.ws25{word-spacing:2.242249pt;}
.wsc{word-spacing:2.295383pt;}
.ws24{word-spacing:2.720454pt;}
.ws2b{word-spacing:2.879856pt;}
.ws5{word-spacing:2.932989pt;}
.ws6{word-spacing:2.986123pt;}
.ws38{word-spacing:3.092391pt;}
.ws1e{word-spacing:3.304927pt;}
.ws1a{word-spacing:3.358060pt;}
.ws39{word-spacing:3.464328pt;}
.ws19{word-spacing:3.570596pt;}
.ws11{word-spacing:3.836265pt;}
.ws2e{word-spacing:3.942533pt;}
.ws1{word-spacing:3.985067pt;}
.ws15{word-spacing:4.101935pt;}
.wsf{word-spacing:4.155068pt;}
.ws28{word-spacing:4.208202pt;}
.ws0{word-spacing:4.782067pt;}
.ws1f{word-spacing:4.845809pt;}
.ws23{word-spacing:4.898943pt;}
.ws31{word-spacing:5.324013pt;}
.ws10{word-spacing:5.430281pt;}
.ws3b{word-spacing:5.483415pt;}
.ws1c{word-spacing:5.695951pt;}
.ws2d{word-spacing:5.855352pt;}
.ws18{word-spacing:6.067888pt;}
.ws29{word-spacing:6.652360pt;}
.ws3c{word-spacing:7.289967pt;}
.ws16{word-spacing:7.343100pt;}
.ws3a{word-spacing:7.449368pt;}
.ws2{word-spacing:7.479173pt;}
.wsa{word-spacing:8.033841pt;}
.wse{word-spacing:8.193242pt;}
.ws41{word-spacing:8.512045pt;}
.ws17{word-spacing:8.565179pt;}
.ws21{word-spacing:8.671447pt;}
.ws20{word-spacing:9.043384pt;}
.ws43{word-spacing:10.424865pt;}
.ws2a{word-spacing:11.753211pt;}
.ws40{word-spacing:13.559763pt;}
.ws45{word-spacing:18.118649pt;}
.ws3f{word-spacing:18.388629pt;}
.ws42{word-spacing:18.968790pt;}
.ws7{word-spacing:20.350271pt;}
.ws3{word-spacing:20.722347pt;}
.ws1b{word-spacing:23.591437pt;}
.ws9{word-spacing:62.166867pt;}
.ws8{word-spacing:134.068769pt;}
.ws33{word-spacing:1128.618801pt;}
.ws35{word-spacing:1181.041041pt;}
._24{margin-left:-3022.285002pt;}
._26{margin-left:-2620.859919pt;}
._28{margin-left:-2219.434835pt;}
._31{margin-left:-1997.305043pt;}
._2a{margin-left:-1818.009751pt;}
._30{margin-left:-1429.963705pt;}
._2c{margin-left:-1416.584668pt;}
._2d{margin-left:-1015.159584pt;}
._2f{margin-left:-862.622368pt;}
._2e{margin-left:-295.281030pt;}
._16{margin-left:-28.001548pt;}
._13{margin-left:-7.192228pt;}
._3{margin-left:-5.610974pt;}
._4{margin-left:-3.761903pt;}
._0{margin-left:-2.371905pt;}
._5{margin-left:-1.275221pt;}
._11{width:1.434614pt;}
._1{width:2.371905pt;}
._18{width:8.873356pt;}
._20{width:14.399286pt;}
._10{width:17.109114pt;}
._d{width:18.630868pt;}
._23{width:21.412974pt;}
._1b{width:22.509649pt;}
._e{width:23.697705pt;}
._1a{width:24.760382pt;}
._22{width:26.962284pt;}
._15{width:27.982429pt;}
._1e{width:29.648698pt;}
._14{width:30.977044pt;}
._2{width:32.275845pt;}
._1c{width:33.242673pt;}
._21{width:34.711311pt;}
._17{width:36.768636pt;}
._1f{width:38.165021pt;}
._f{width:39.299942pt;}
._19{width:40.700559pt;}
._1d{width:41.816353pt;}
._32{width:46.145639pt;}
._12{width:86.077200pt;}
._a{width:108.243436pt;}
._8{width:124.108314pt;}
._9{width:129.274851pt;}
._c{width:134.070847pt;}
._6{width:167.282827pt;}
._2b{width:1594.076487pt;}
._7{width:1626.383125pt;}
._b{width:1893.223538pt;}
._29{width:1995.501570pt;}
._27{width:2396.926654pt;}
._25{width:2798.351738pt;}
.fs4{font-size:19.286315pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:38.559142pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y4e{bottom:-158.710860pt;}
.y5b{bottom:-132.617015pt;}
.y66{bottom:-77.468945pt;}
.y65{bottom:-71.689794pt;}
.y58{bottom:-61.699348pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:9.218319pt;}
.y68{bottom:18.106208pt;}
.y67{bottom:23.885359pt;}
.y44{bottom:37.794667pt;}
.y61{bottom:43.593140pt;}
.y60{bottom:49.372291pt;}
.y52{bottom:80.135986pt;}
.y62{bottom:100.349527pt;}
.y43{bottom:122.688000pt;}
.y63{bottom:132.205664pt;}
.y11{bottom:133.856000pt;}
.y42{bottom:138.628000pt;}
.y5e{bottom:145.544241pt;}
.y51{bottom:151.053653pt;}
.y5d{bottom:151.323392pt;}
.y50{bottom:151.353738pt;}
.y41{bottom:154.568000pt;}
.y10{bottom:158.297333pt;}
.y40{bottom:170.508000pt;}
.yf{bottom:182.593333pt;}
.y3f{bottom:186.448000pt;}
.y64{bottom:201.609423pt;}
.y3e{bottom:202.388000pt;}
.ye{bottom:208.664000pt;}
.y3d{bottom:218.329333pt;}
.y54{bottom:221.971321pt;}
.y53{bottom:222.271405pt;}
.yd{bottom:233.106667pt;}
.y3c{bottom:234.269333pt;}
.y5c{bottom:238.492814pt;}
.y7d{bottom:244.402667pt;}
.y4c{bottom:247.782667pt;}
.y3b{bottom:250.209333pt;}
.y7c{bottom:250.657333pt;}
.yc{bottom:257.548000pt;}
.y48{bottom:259.141333pt;}
.y4b{bottom:263.722667pt;}
.y3a{bottom:266.149333pt;}
.y7b{bottom:266.597333pt;}
.y47{bottom:275.081333pt;}
.yb{bottom:281.989333pt;}
.y39{bottom:282.089333pt;}
.y7a{bottom:282.537333pt;}
.y4a{bottom:291.949333pt;}
.y57{bottom:292.888988pt;}
.y56{bottom:293.189072pt;}
.y38{bottom:298.029333pt;}
.y46{bottom:303.309333pt;}
.ya{bottom:306.285333pt;}
.y79{bottom:309.105333pt;}
.y37{bottom:313.970667pt;}
.y7e{bottom:320.104000pt;}
.y78{bottom:325.045333pt;}
.y36{bottom:329.910667pt;}
.y77{bottom:340.985333pt;}
.y5f{bottom:342.477070pt;}
.y35{bottom:345.850667pt;}
.y34{bottom:361.790667pt;}
.y5a{bottom:363.806655pt;}
.y59{bottom:364.106739pt;}
.y76{bottom:370.080000pt;}
.y33{bottom:377.730667pt;}
.y4f{bottom:390.200583pt;}
.y32{bottom:393.672000pt;}
.y31{bottom:409.612000pt;}
.y75{bottom:414.008000pt;}
.y30{bottom:425.552000pt;}
.y74{bottom:429.948000pt;}
.y2f{bottom:441.492000pt;}
.y73{bottom:445.888000pt;}
.y2e{bottom:457.432000pt;}
.y72{bottom:461.828000pt;}
.y2d{bottom:473.372000pt;}
.y71{bottom:477.769333pt;}
.y9{bottom:488.066667pt;}
.y2c{bottom:489.313333pt;}
.y70{bottom:493.709333pt;}
.y2b{bottom:505.253333pt;}
.y6f{bottom:509.649333pt;}
.y2a{bottom:521.193333pt;}
.y8{bottom:522.116000pt;}
.y6e{bottom:525.589333pt;}
.y29{bottom:537.133333pt;}
.y6d{bottom:541.529333pt;}
.y28{bottom:553.073333pt;}
.y6c{bottom:557.469333pt;}
.y27{bottom:569.013333pt;}
.y26{bottom:584.954667pt;}
.y6b{bottom:586.564000pt;}
.y49{bottom:596.624000pt;}
.y7{bottom:600.810667pt;}
.y25{bottom:600.894667pt;}
.y45{bottom:612.125333pt;}
.y24{bottom:616.834667pt;}
.y6{bottom:622.949333pt;}
.y6a{bottom:630.492000pt;}
.y23{bottom:632.774667pt;}
.y22{bottom:648.714667pt;}
.y5{bottom:655.714667pt;}
.y21{bottom:664.654667pt;}
.y69{bottom:675.125333pt;}
.y20{bottom:680.596000pt;}
.y1f{bottom:696.536000pt;}
.y4d{bottom:699.566667pt;}
.y4{bottom:702.650667pt;}
.y1e{bottom:712.476000pt;}
.y3{bottom:724.789333pt;}
.y1d{bottom:728.416000pt;}
.y1c{bottom:744.356000pt;}
.y1b{bottom:760.297333pt;}
.y2{bottom:761.734667pt;}
.y1a{bottom:776.237333pt;}
.y19{bottom:792.177333pt;}
.y1{bottom:794.146667pt;}
.y18{bottom:808.117333pt;}
.y17{bottom:824.057333pt;}
.y16{bottom:853.152000pt;}
.y15{bottom:897.080000pt;}
.y14{bottom:913.020000pt;}
.y13{bottom:928.960000pt;}
.y12{bottom:958.054667pt;}
.ha{height:18.572721pt;}
.h8{height:31.880400pt;}
.h6{height:36.928037pt;}
.hb{height:37.132454pt;}
.h7{height:39.850400pt;}
.hc{height:44.348486pt;}
.h3{height:44.632747pt;}
.h4{height:45.334118pt;}
.h5{height:45.525402pt;}
.h2{height:53.559147pt;}
.h9{height:271.768450pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:302.356815pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x28{left:-18.483842pt;}
.x27{left:-2.474852pt;}
.x0{left:0.000000pt;}
.x25{left:47.703283pt;}
.x12{left:94.488000pt;}
.x23{left:97.881419pt;}
.xe{left:114.641333pt;}
.xc{left:118.608000pt;}
.xd{left:119.900000pt;}
.x11{left:121.098667pt;}
.x10{left:124.789333pt;}
.xb{left:129.401333pt;}
.x8{left:142.234667pt;}
.x21{left:148.059554pt;}
.x2{left:164.661333pt;}
.x1f{left:198.237690pt;}
.x7{left:203.790667pt;}
.x1{left:226.734667pt;}
.x15{left:241.182667pt;}
.x16{left:245.669333pt;}
.x1d{left:248.415825pt;}
.x5{left:251.345333pt;}
.x3{left:254.764000pt;}
.x4{left:269.873333pt;}
.x31{left:281.117333pt;}
.x32{left:285.176000pt;}
.x2c{left:287.012057pt;}
.x1b{left:298.593961pt;}
.x30{left:312.498989pt;}
.x2f{left:318.871565pt;}
.x6{left:328.472000pt;}
.x9{left:334.528000pt;}
.xf{left:340.586667pt;}
.x19{left:348.772096pt;}
.x13{left:382.460000pt;}
.x14{left:389.636000pt;}
.xa{left:390.682667pt;}
.x18{left:398.946860pt;}
.x1a{left:449.124995pt;}
.x2d{left:465.420582pt;}
.x2b{left:471.793158pt;}
.x2e{left:478.165734pt;}
.x1c{left:499.303131pt;}
.x1e{left:549.481266pt;}
.x20{left:599.659402pt;}
.x2a{left:636.697892pt;}
.x22{left:649.837537pt;}
.x24{left:700.015673pt;}
.x17{left:746.990661pt;}
.x26{left:750.193808pt;}
.x29{left:762.999651pt;}
}




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