
    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_f694e664450d731096608734.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.994141;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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974121;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_e87965fe1eb84ab0d4481ff2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010254;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_f034214017a3107f2c5ef734.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_c23611e6bc4d7d94e780f8e0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_23be60a395f80d62b1fa9a28.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls4{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.013200px;}
.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;}
}
.ws3{word-spacing:-30.000000px;}
.ws0{word-spacing:-22.500000px;}
.ws8{word-spacing:-16.513200px;}
.ws1{word-spacing:-16.506600px;}
.ws5{word-spacing:-16.500000px;}
.wsb{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws7{word-spacing:-0.026400px;}
.ws6{word-spacing:-0.012000px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:4.276245px;}
.wsd{word-spacing:4.280512px;}
.ws9{word-spacing:7.551600px;}
.wsa{word-spacing:10.917600px;}
._0{margin-left:-9.120000px;}
._1a{margin-left:-3.993000px;}
._5{margin-left:-2.607000px;}
._a{margin-left:-1.326600px;}
._6{width:1.234200px;}
._4{width:2.237400px;}
._e{width:3.517800px;}
._15{width:4.633200px;}
._14{width:6.045600px;}
._7{width:7.397400px;}
._1{width:9.188400px;}
._8{width:10.824000px;}
._11{width:12.738000px;}
._f{width:14.553000px;}
._1f{width:16.086000px;}
._d{width:17.668200px;}
._c{width:19.357800px;}
._2{width:20.380800px;}
._19{width:22.704000px;}
._3{width:23.878800px;}
._9{width:25.555200px;}
._17{width:27.304200px;}
._1e{width:28.331400px;}
._18{width:29.475600px;}
._b{width:30.597600px;}
._13{width:32.386200px;}
._16{width:34.531200px;}
._10{width:37.415400px;}
._1c{width:40.147800px;}
._1d{width:42.457800px;}
._12{width:46.959000px;}
._1b{width:50.292000px;}
.fc4{color:transparent;}
.fc2{color:rgb(32,94,158);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:42.857160px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:120.000000px;}
.fs1{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:44.125350px;}
.y1{bottom:56.834700px;}
.y7c{bottom:60.295200px;}
.y1e{bottom:60.325350px;}
.yf6{bottom:115.894800px;}
.y4e{bottom:117.227100px;}
.yba{bottom:117.751650px;}
.y7b{bottom:121.606650px;}
.yf5{bottom:135.694800px;}
.y4d{bottom:137.027100px;}
.yb9{bottom:137.551650px;}
.y7a{bottom:141.406650px;}
.yf4{bottom:155.494500px;}
.y4c{bottom:156.826500px;}
.yb8{bottom:157.351500px;}
.y79{bottom:161.206500px;}
.yf3{bottom:175.294500px;}
.y4b{bottom:176.626500px;}
.yb7{bottom:177.151500px;}
.y78{bottom:181.006500px;}
.y98{bottom:191.223000px;}
.y10b{bottom:194.626500px;}
.yf2{bottom:195.094500px;}
.yb6{bottom:196.951500px;}
.y77{bottom:200.806500px;}
.y4a{bottom:209.182500px;}
.y97{bottom:211.023000px;}
.y10a{bottom:212.626500px;}
.yb5{bottom:216.751500px;}
.y76{bottom:220.606500px;}
.yf1{bottom:227.650500px;}
.y49{bottom:228.982500px;}
.y109{bottom:230.626500px;}
.y96{bottom:230.823000px;}
.yb4{bottom:236.551500px;}
.y75{bottom:240.406500px;}
.yf0{bottom:247.450500px;}
.y108{bottom:248.626500px;}
.y95{bottom:250.623000px;}
.yb3{bottom:256.351500px;}
.yef{bottom:267.250500px;}
.y94{bottom:270.423000px;}
.y74{bottom:272.962500px;}
.yb2{bottom:276.151500px;}
.y107{bottom:279.382500px;}
.y93{bottom:290.223000px;}
.y73{bottom:292.762500px;}
.y48{bottom:294.094500px;}
.yb1{bottom:295.951500px;}
.y92{bottom:310.023000px;}
.y72{bottom:312.562500px;}
.y47{bottom:313.894500px;}
.yb0{bottom:315.751500px;}
.y91{bottom:329.823000px;}
.y71{bottom:332.362500px;}
.y46{bottom:333.694500px;}
.yaf{bottom:335.551500px;}
.y106{bottom:342.694500px;}
.y90{bottom:349.623000px;}
.y70{bottom:352.162500px;}
.y45{bottom:353.494500px;}
.yae{bottom:355.351500px;}
.y105{bottom:360.694500px;}
.y8f{bottom:369.423000px;}
.y6f{bottom:371.962500px;}
.y44{bottom:373.294500px;}
.yad{bottom:375.151500px;}
.y104{bottom:378.694500px;}
.y8e{bottom:389.223000px;}
.y6e{bottom:391.762500px;}
.y43{bottom:393.094500px;}
.yac{bottom:394.951500px;}
.y103{bottom:396.694500px;}
.y8d{bottom:409.023000px;}
.y6d{bottom:411.562500px;}
.y42{bottom:412.894500px;}
.y102{bottom:414.694500px;}
.yab{bottom:414.751500px;}
.y8c{bottom:428.823000px;}
.y6c{bottom:431.362500px;}
.y41{bottom:432.694500px;}
.yaa{bottom:434.551500px;}
.ydf{bottom:437.050500px;}
.y8b{bottom:448.623000px;}
.y101{bottom:450.694500px;}
.ye6{bottom:451.138500px;}
.y6b{bottom:451.162500px;}
.y40{bottom:452.494500px;}
.ya9{bottom:454.351500px;}
.yde{bottom:456.850500px;}
.y8a{bottom:468.423000px;}
.y100{bottom:468.694500px;}
.ye5{bottom:470.938500px;}
.y6a{bottom:470.962500px;}
.y3f{bottom:472.294500px;}
.ya8{bottom:474.151500px;}
.ydd{bottom:476.650500px;}
.yff{bottom:486.694500px;}
.ye4{bottom:490.738500px;}
.y69{bottom:490.762500px;}
.y3e{bottom:492.094500px;}
.ya7{bottom:493.951500px;}
.ydc{bottom:496.450500px;}
.y89{bottom:500.979000px;}
.yfe{bottom:504.694500px;}
.ye3{bottom:510.538500px;}
.y68{bottom:510.562500px;}
.y3d{bottom:511.894500px;}
.ya6{bottom:513.751500px;}
.ydb{bottom:516.250500px;}
.y88{bottom:520.779000px;}
.yfd{bottom:522.694500px;}
.ye2{bottom:530.338500px;}
.y67{bottom:530.362500px;}
.y3c{bottom:531.694500px;}
.ya5{bottom:533.551500px;}
.yda{bottom:536.050500px;}
.y14{bottom:536.470500px;}
.y87{bottom:540.579000px;}
.yfc{bottom:540.694500px;}
.y66{bottom:550.162500px;}
.y3b{bottom:551.494500px;}
.ya4{bottom:553.351500px;}
.yd9{bottom:555.850500px;}
.y13{bottom:556.270500px;}
.yfb{bottom:558.694500px;}
.y86{bottom:560.379000px;}
.y65{bottom:569.962500px;}
.ya3{bottom:573.151500px;}
.yd8{bottom:575.650500px;}
.y1d{bottom:576.070500px;}
.yfa{bottom:576.694500px;}
.y85{bottom:580.179000px;}
.y3a{bottom:584.050500px;}
.y12{bottom:588.826500px;}
.y64{bottom:589.762500px;}
.ya2{bottom:592.951500px;}
.yf9{bottom:594.694500px;}
.yd7{bottom:595.450500px;}
.y1c{bottom:595.870500px;}
.y84{bottom:599.979000px;}
.y39{bottom:603.850500px;}
.y11{bottom:608.626500px;}
.y63{bottom:609.562500px;}
.ya1{bottom:612.751500px;}
.yd6{bottom:615.250500px;}
.y1b{bottom:615.670500px;}
.y83{bottom:619.779000px;}
.y38{bottom:623.650500px;}
.yf8{bottom:625.450500px;}
.y10{bottom:628.426500px;}
.y62{bottom:629.362500px;}
.ya0{bottom:632.551500px;}
.yd5{bottom:635.050500px;}
.y1a{bottom:635.470500px;}
.y82{bottom:639.579000px;}
.y37{bottom:643.450500px;}
.yf{bottom:648.226500px;}
.y61{bottom:649.162500px;}
.y9f{bottom:652.351500px;}
.yd4{bottom:654.850500px;}
.y19{bottom:655.270500px;}
.y36{bottom:663.250500px;}
.ye{bottom:668.026500px;}
.y60{bottom:668.962500px;}
.y9e{bottom:672.151500px;}
.yd3{bottom:674.650500px;}
.y18{bottom:675.070500px;}
.yd{bottom:687.826500px;}
.y5f{bottom:688.762500px;}
.yd2{bottom:694.450500px;}
.y17{bottom:694.870500px;}
.yee{bottom:701.518500px;}
.y81{bottom:704.691000px;}
.y9d{bottom:704.707500px;}
.yc{bottom:707.626500px;}
.y5e{bottom:708.562500px;}
.yd1{bottom:714.250500px;}
.y16{bottom:714.670500px;}
.yed{bottom:721.318500px;}
.y80{bottom:724.491000px;}
.y9c{bottom:724.507500px;}
.yb{bottom:727.426500px;}
.y35{bottom:728.362500px;}
.yd0{bottom:734.050500px;}
.y15{bottom:734.470500px;}
.y5d{bottom:741.118500px;}
.y7f{bottom:744.291000px;}
.y9b{bottom:744.307500px;}
.ya{bottom:747.226500px;}
.y34{bottom:748.162500px;}
.ycf{bottom:753.850500px;}
.y5c{bottom:760.918500px;}
.y7e{bottom:764.091000px;}
.y9a{bottom:764.107500px;}
.y9{bottom:767.026500px;}
.y33{bottom:767.962500px;}
.yce{bottom:773.650500px;}
.y5b{bottom:780.718500px;}
.y7d{bottom:783.891000px;}
.y99{bottom:783.907500px;}
.y8{bottom:786.826500px;}
.y32{bottom:787.762500px;}
.ycd{bottom:793.450500px;}
.y5a{bottom:800.518500px;}
.yec{bottom:806.230500px;}
.y7{bottom:806.626500px;}
.y31{bottom:807.562500px;}
.ycc{bottom:813.250500px;}
.y59{bottom:820.318500px;}
.yeb{bottom:826.030500px;}
.y6{bottom:826.426500px;}
.y30{bottom:827.362500px;}
.ycb{bottom:833.050500px;}
.y58{bottom:840.118500px;}
.yea{bottom:845.830500px;}
.y5{bottom:846.226500px;}
.y2f{bottom:847.162500px;}
.yca{bottom:852.850500px;}
.y57{bottom:859.918500px;}
.ye9{bottom:865.630500px;}
.y4{bottom:866.026500px;}
.y2e{bottom:866.962500px;}
.yc9{bottom:872.650500px;}
.ye8{bottom:885.430500px;}
.y2d{bottom:886.762500px;}
.yc8{bottom:892.450500px;}
.ye7{bottom:905.230500px;}
.y2c{bottom:906.562500px;}
.yc7{bottom:912.250500px;}
.y56{bottom:925.030500px;}
.y2b{bottom:926.362500px;}
.yc6{bottom:932.050500px;}
.y55{bottom:944.830500px;}
.yf7{bottom:946.162500px;}
.yc5{bottom:951.850500px;}
.y2a{bottom:958.918500px;}
.y54{bottom:964.630500px;}
.yc4{bottom:971.650500px;}
.y29{bottom:978.718500px;}
.y53{bottom:984.430500px;}
.y21{bottom:985.635000px;}
.yc3{bottom:991.450500px;}
.y28{bottom:998.518500px;}
.y52{bottom:1004.230500px;}
.yc2{bottom:1011.250500px;}
.y27{bottom:1018.318500px;}
.ye1{bottom:1024.006500px;}
.y51{bottom:1024.030500px;}
.y20{bottom:1028.835000px;}
.yc1{bottom:1031.050500px;}
.ye0{bottom:1043.806500px;}
.y50{bottom:1043.830500px;}
.yc0{bottom:1063.606500px;}
.y4f{bottom:1063.630500px;}
.ybf{bottom:1083.406500px;}
.y26{bottom:1083.430500px;}
.y3{bottom:1100.785500px;}
.ybe{bottom:1103.206500px;}
.y25{bottom:1103.230500px;}
.ybd{bottom:1123.006500px;}
.y24{bottom:1123.030500px;}
.ybc{bottom:1142.806500px;}
.y23{bottom:1142.830500px;}
.y2{bottom:1159.671000px;}
.ybb{bottom:1204.654500px;}
.y22{bottom:1204.695000px;}
.h8{height:39.313477px;}
.h7{height:39.366211px;}
.hc{height:43.681641px;}
.hb{height:43.740234px;}
.h6{height:48.049805px;}
.h3{height:48.114258px;}
.ha{height:52.417969px;}
.h5{height:65.610352px;}
.h9{height:87.480469px;}
.h4{height:171.000000px;}
.h2{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:44.645700px;}
.xa{left:46.771650px;}
.x5{left:108.000000px;}
.x2{left:127.657350px;}
.x4{left:129.259800px;}
.x3{left:131.834700px;}
.x9{left:337.755000px;}
.x6{left:467.716500px;}
.x7{left:488.976000px;}
.xc{left:777.016500px;}
.x1{left:833.893500px;}
.x8{left:836.019000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls4{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.011733pt;}
.ws3{word-spacing:-26.666667pt;}
.ws0{word-spacing:-20.000000pt;}
.ws8{word-spacing:-14.678400pt;}
.ws1{word-spacing:-14.672533pt;}
.ws5{word-spacing:-14.666667pt;}
.wsb{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws7{word-spacing:-0.023467pt;}
.ws6{word-spacing:-0.010667pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:3.801107pt;}
.wsd{word-spacing:3.804899pt;}
.ws9{word-spacing:6.712533pt;}
.wsa{word-spacing:9.704533pt;}
._0{margin-left:-8.106667pt;}
._1a{margin-left:-3.549333pt;}
._5{margin-left:-2.317333pt;}
._a{margin-left:-1.179200pt;}
._6{width:1.097067pt;}
._4{width:1.988800pt;}
._e{width:3.126933pt;}
._15{width:4.118400pt;}
._14{width:5.373867pt;}
._7{width:6.575467pt;}
._1{width:8.167467pt;}
._8{width:9.621333pt;}
._11{width:11.322667pt;}
._f{width:12.936000pt;}
._1f{width:14.298667pt;}
._d{width:15.705067pt;}
._c{width:17.206933pt;}
._2{width:18.116267pt;}
._19{width:20.181333pt;}
._3{width:21.225600pt;}
._9{width:22.715733pt;}
._17{width:24.270400pt;}
._1e{width:25.183467pt;}
._18{width:26.200533pt;}
._b{width:27.197867pt;}
._13{width:28.787733pt;}
._16{width:30.694400pt;}
._10{width:33.258133pt;}
._1c{width:35.686933pt;}
._1d{width:37.740267pt;}
._12{width:41.741333pt;}
._1b{width:44.704000pt;}
.fs7{font-size:38.095253pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:106.666667pt;}
.fs1{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:39.222533pt;}
.y1{bottom:50.519733pt;}
.y7c{bottom:53.595733pt;}
.y1e{bottom:53.622533pt;}
.yf6{bottom:103.017600pt;}
.y4e{bottom:104.201867pt;}
.yba{bottom:104.668133pt;}
.y7b{bottom:108.094800pt;}
.yf5{bottom:120.617600pt;}
.y4d{bottom:121.801867pt;}
.yb9{bottom:122.268133pt;}
.y7a{bottom:125.694800pt;}
.yf4{bottom:138.217333pt;}
.y4c{bottom:139.401333pt;}
.yb8{bottom:139.868000pt;}
.y79{bottom:143.294667pt;}
.yf3{bottom:155.817333pt;}
.y4b{bottom:157.001333pt;}
.yb7{bottom:157.468000pt;}
.y78{bottom:160.894667pt;}
.y98{bottom:169.976000pt;}
.y10b{bottom:173.001333pt;}
.yf2{bottom:173.417333pt;}
.yb6{bottom:175.068000pt;}
.y77{bottom:178.494667pt;}
.y4a{bottom:185.940000pt;}
.y97{bottom:187.576000pt;}
.y10a{bottom:189.001333pt;}
.yb5{bottom:192.668000pt;}
.y76{bottom:196.094667pt;}
.yf1{bottom:202.356000pt;}
.y49{bottom:203.540000pt;}
.y109{bottom:205.001333pt;}
.y96{bottom:205.176000pt;}
.yb4{bottom:210.268000pt;}
.y75{bottom:213.694667pt;}
.yf0{bottom:219.956000pt;}
.y108{bottom:221.001333pt;}
.y95{bottom:222.776000pt;}
.yb3{bottom:227.868000pt;}
.yef{bottom:237.556000pt;}
.y94{bottom:240.376000pt;}
.y74{bottom:242.633333pt;}
.yb2{bottom:245.468000pt;}
.y107{bottom:248.340000pt;}
.y93{bottom:257.976000pt;}
.y73{bottom:260.233333pt;}
.y48{bottom:261.417333pt;}
.yb1{bottom:263.068000pt;}
.y92{bottom:275.576000pt;}
.y72{bottom:277.833333pt;}
.y47{bottom:279.017333pt;}
.yb0{bottom:280.668000pt;}
.y91{bottom:293.176000pt;}
.y71{bottom:295.433333pt;}
.y46{bottom:296.617333pt;}
.yaf{bottom:298.268000pt;}
.y106{bottom:304.617333pt;}
.y90{bottom:310.776000pt;}
.y70{bottom:313.033333pt;}
.y45{bottom:314.217333pt;}
.yae{bottom:315.868000pt;}
.y105{bottom:320.617333pt;}
.y8f{bottom:328.376000pt;}
.y6f{bottom:330.633333pt;}
.y44{bottom:331.817333pt;}
.yad{bottom:333.468000pt;}
.y104{bottom:336.617333pt;}
.y8e{bottom:345.976000pt;}
.y6e{bottom:348.233333pt;}
.y43{bottom:349.417333pt;}
.yac{bottom:351.068000pt;}
.y103{bottom:352.617333pt;}
.y8d{bottom:363.576000pt;}
.y6d{bottom:365.833333pt;}
.y42{bottom:367.017333pt;}
.y102{bottom:368.617333pt;}
.yab{bottom:368.668000pt;}
.y8c{bottom:381.176000pt;}
.y6c{bottom:383.433333pt;}
.y41{bottom:384.617333pt;}
.yaa{bottom:386.268000pt;}
.ydf{bottom:388.489333pt;}
.y8b{bottom:398.776000pt;}
.y101{bottom:400.617333pt;}
.ye6{bottom:401.012000pt;}
.y6b{bottom:401.033333pt;}
.y40{bottom:402.217333pt;}
.ya9{bottom:403.868000pt;}
.yde{bottom:406.089333pt;}
.y8a{bottom:416.376000pt;}
.y100{bottom:416.617333pt;}
.ye5{bottom:418.612000pt;}
.y6a{bottom:418.633333pt;}
.y3f{bottom:419.817333pt;}
.ya8{bottom:421.468000pt;}
.ydd{bottom:423.689333pt;}
.yff{bottom:432.617333pt;}
.ye4{bottom:436.212000pt;}
.y69{bottom:436.233333pt;}
.y3e{bottom:437.417333pt;}
.ya7{bottom:439.068000pt;}
.ydc{bottom:441.289333pt;}
.y89{bottom:445.314667pt;}
.yfe{bottom:448.617333pt;}
.ye3{bottom:453.812000pt;}
.y68{bottom:453.833333pt;}
.y3d{bottom:455.017333pt;}
.ya6{bottom:456.668000pt;}
.ydb{bottom:458.889333pt;}
.y88{bottom:462.914667pt;}
.yfd{bottom:464.617333pt;}
.ye2{bottom:471.412000pt;}
.y67{bottom:471.433333pt;}
.y3c{bottom:472.617333pt;}
.ya5{bottom:474.268000pt;}
.yda{bottom:476.489333pt;}
.y14{bottom:476.862667pt;}
.y87{bottom:480.514667pt;}
.yfc{bottom:480.617333pt;}
.y66{bottom:489.033333pt;}
.y3b{bottom:490.217333pt;}
.ya4{bottom:491.868000pt;}
.yd9{bottom:494.089333pt;}
.y13{bottom:494.462667pt;}
.yfb{bottom:496.617333pt;}
.y86{bottom:498.114667pt;}
.y65{bottom:506.633333pt;}
.ya3{bottom:509.468000pt;}
.yd8{bottom:511.689333pt;}
.y1d{bottom:512.062667pt;}
.yfa{bottom:512.617333pt;}
.y85{bottom:515.714667pt;}
.y3a{bottom:519.156000pt;}
.y12{bottom:523.401333pt;}
.y64{bottom:524.233333pt;}
.ya2{bottom:527.068000pt;}
.yf9{bottom:528.617333pt;}
.yd7{bottom:529.289333pt;}
.y1c{bottom:529.662667pt;}
.y84{bottom:533.314667pt;}
.y39{bottom:536.756000pt;}
.y11{bottom:541.001333pt;}
.y63{bottom:541.833333pt;}
.ya1{bottom:544.668000pt;}
.yd6{bottom:546.889333pt;}
.y1b{bottom:547.262667pt;}
.y83{bottom:550.914667pt;}
.y38{bottom:554.356000pt;}
.yf8{bottom:555.956000pt;}
.y10{bottom:558.601333pt;}
.y62{bottom:559.433333pt;}
.ya0{bottom:562.268000pt;}
.yd5{bottom:564.489333pt;}
.y1a{bottom:564.862667pt;}
.y82{bottom:568.514667pt;}
.y37{bottom:571.956000pt;}
.yf{bottom:576.201333pt;}
.y61{bottom:577.033333pt;}
.y9f{bottom:579.868000pt;}
.yd4{bottom:582.089333pt;}
.y19{bottom:582.462667pt;}
.y36{bottom:589.556000pt;}
.ye{bottom:593.801333pt;}
.y60{bottom:594.633333pt;}
.y9e{bottom:597.468000pt;}
.yd3{bottom:599.689333pt;}
.y18{bottom:600.062667pt;}
.yd{bottom:611.401333pt;}
.y5f{bottom:612.233333pt;}
.yd2{bottom:617.289333pt;}
.y17{bottom:617.662667pt;}
.yee{bottom:623.572000pt;}
.y81{bottom:626.392000pt;}
.y9d{bottom:626.406667pt;}
.yc{bottom:629.001333pt;}
.y5e{bottom:629.833333pt;}
.yd1{bottom:634.889333pt;}
.y16{bottom:635.262667pt;}
.yed{bottom:641.172000pt;}
.y80{bottom:643.992000pt;}
.y9c{bottom:644.006667pt;}
.yb{bottom:646.601333pt;}
.y35{bottom:647.433333pt;}
.yd0{bottom:652.489333pt;}
.y15{bottom:652.862667pt;}
.y5d{bottom:658.772000pt;}
.y7f{bottom:661.592000pt;}
.y9b{bottom:661.606667pt;}
.ya{bottom:664.201333pt;}
.y34{bottom:665.033333pt;}
.ycf{bottom:670.089333pt;}
.y5c{bottom:676.372000pt;}
.y7e{bottom:679.192000pt;}
.y9a{bottom:679.206667pt;}
.y9{bottom:681.801333pt;}
.y33{bottom:682.633333pt;}
.yce{bottom:687.689333pt;}
.y5b{bottom:693.972000pt;}
.y7d{bottom:696.792000pt;}
.y99{bottom:696.806667pt;}
.y8{bottom:699.401333pt;}
.y32{bottom:700.233333pt;}
.ycd{bottom:705.289333pt;}
.y5a{bottom:711.572000pt;}
.yec{bottom:716.649333pt;}
.y7{bottom:717.001333pt;}
.y31{bottom:717.833333pt;}
.ycc{bottom:722.889333pt;}
.y59{bottom:729.172000pt;}
.yeb{bottom:734.249333pt;}
.y6{bottom:734.601333pt;}
.y30{bottom:735.433333pt;}
.ycb{bottom:740.489333pt;}
.y58{bottom:746.772000pt;}
.yea{bottom:751.849333pt;}
.y5{bottom:752.201333pt;}
.y2f{bottom:753.033333pt;}
.yca{bottom:758.089333pt;}
.y57{bottom:764.372000pt;}
.ye9{bottom:769.449333pt;}
.y4{bottom:769.801333pt;}
.y2e{bottom:770.633333pt;}
.yc9{bottom:775.689333pt;}
.ye8{bottom:787.049333pt;}
.y2d{bottom:788.233333pt;}
.yc8{bottom:793.289333pt;}
.ye7{bottom:804.649333pt;}
.y2c{bottom:805.833333pt;}
.yc7{bottom:810.889333pt;}
.y56{bottom:822.249333pt;}
.y2b{bottom:823.433333pt;}
.yc6{bottom:828.489333pt;}
.y55{bottom:839.849333pt;}
.yf7{bottom:841.033333pt;}
.yc5{bottom:846.089333pt;}
.y2a{bottom:852.372000pt;}
.y54{bottom:857.449333pt;}
.yc4{bottom:863.689333pt;}
.y29{bottom:869.972000pt;}
.y53{bottom:875.049333pt;}
.y21{bottom:876.120000pt;}
.yc3{bottom:881.289333pt;}
.y28{bottom:887.572000pt;}
.y52{bottom:892.649333pt;}
.yc2{bottom:898.889333pt;}
.y27{bottom:905.172000pt;}
.ye1{bottom:910.228000pt;}
.y51{bottom:910.249333pt;}
.y20{bottom:914.520000pt;}
.yc1{bottom:916.489333pt;}
.ye0{bottom:927.828000pt;}
.y50{bottom:927.849333pt;}
.yc0{bottom:945.428000pt;}
.y4f{bottom:945.449333pt;}
.ybf{bottom:963.028000pt;}
.y26{bottom:963.049333pt;}
.y3{bottom:978.476000pt;}
.ybe{bottom:980.628000pt;}
.y25{bottom:980.649333pt;}
.ybd{bottom:998.228000pt;}
.y24{bottom:998.249333pt;}
.ybc{bottom:1015.828000pt;}
.y23{bottom:1015.849333pt;}
.y2{bottom:1030.818667pt;}
.ybb{bottom:1070.804000pt;}
.y22{bottom:1070.840000pt;}
.h8{height:34.945312pt;}
.h7{height:34.992188pt;}
.hc{height:38.828125pt;}
.hb{height:38.880208pt;}
.h6{height:42.710938pt;}
.h3{height:42.768229pt;}
.ha{height:46.593750pt;}
.h5{height:58.320312pt;}
.h9{height:77.760417pt;}
.h4{height:152.000000pt;}
.h2{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:39.685067pt;}
.xa{left:41.574800pt;}
.x5{left:96.000000pt;}
.x2{left:113.473200pt;}
.x4{left:114.897600pt;}
.x3{left:117.186400pt;}
.x9{left:300.226667pt;}
.x6{left:415.748000pt;}
.x7{left:434.645333pt;}
.xc{left:690.681333pt;}
.x1{left:741.238667pt;}
.x8{left:743.128000pt;}
}




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