
    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_c91fed923dd826025182e819.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_ec9be89211e86b2a012362cc.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1f65e8977d63444f4d6faf00.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_32e60fd3b52cde9d1a947482.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3f2e300c6e42734d454b3494.woff')format("woff");}.ff5{font-family:ff5;line-height:0.389000;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_8ceca9e17c33ebcf7d0f9871.woff')format("woff");}.ff6{font-family:ff6;line-height:0.691000;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_72e3a64d363bd68019a31b65.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_b4a314b300a216cd508be768.woff')format("woff");}.ff8{font-family:ff8;line-height:0.851000;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;}
.ls0{letter-spacing:32.727300px;}
.ls2{letter-spacing:32.729973px;}
.ls3{letter-spacing:32.731595px;}
.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;}
}
.ws5{word-spacing:-26.899125px;}
.wse{word-spacing:-20.906199px;}
.ws1c{word-spacing:-18.183288px;}
.wsf{word-spacing:-3.652367px;}
.ws1a{word-spacing:-2.343275px;}
.ws4{word-spacing:-0.071731px;}
.wsc{word-spacing:0.000000px;}
.ws12{word-spacing:0.536728px;}
.ws19{word-spacing:2.827639px;}
.ws2d{word-spacing:3.482185px;}
.ws7{word-spacing:3.613094px;}
.ws9{word-spacing:3.678549px;}
.ws6{word-spacing:4.162913px;}
.ws11{word-spacing:4.483200px;}
.ws1f{word-spacing:5.358341px;}
.ws15{word-spacing:5.361641px;}
.ws2c{word-spacing:5.362219px;}
.ws16{word-spacing:5.362795px;}
.ws32{word-spacing:5.364904px;}
.ws21{word-spacing:5.365477px;}
.ws30{word-spacing:5.367685px;}
.ws14{word-spacing:5.368183px;}
.ws24{word-spacing:5.368642px;}
.ws23{word-spacing:5.370904px;}
.ws33{word-spacing:5.370967px;}
.ws13{word-spacing:5.371345px;}
.ws31{word-spacing:5.371930px;}
.ws2b{word-spacing:5.372479px;}
.ws27{word-spacing:5.373097px;}
.ws20{word-spacing:5.374242px;}
.ws2f{word-spacing:5.374255px;}
.ws26{word-spacing:5.374836px;}
.ws2a{word-spacing:5.376336px;}
.ws2e{word-spacing:5.378112px;}
.wsd{word-spacing:5.379825px;}
.ws22{word-spacing:5.398642px;}
.ws10{word-spacing:6.179036px;}
.ws0{word-spacing:7.748437px;}
.ws1b{word-spacing:9.111280px;}
.wsa{word-spacing:10.944009px;}
.ws1e{word-spacing:13.449600px;}
.ws29{word-spacing:22.529654px;}
.ws28{word-spacing:22.531844px;}
.ws34{word-spacing:22.532894px;}
.ws25{word-spacing:22.535084px;}
.ws1d{word-spacing:22.535654px;}
.ws2{word-spacing:23.312640px;}
.ws1{word-spacing:27.975090px;}
.ws3{word-spacing:31.131341px;}
.ws18{word-spacing:31.318514px;}
.ws17{word-spacing:31.322414px;}
.ws8{word-spacing:48.384040px;}
.wsb{word-spacing:48.449495px;}
._c{margin-left:-32.727300px;}
._15{margin-left:-8.091257px;}
._2{margin-left:-6.972253px;}
._4{margin-left:-5.881958px;}
._1{margin-left:-3.843225px;}
._3{margin-left:-1.936742px;}
._20{width:1.000591px;}
._7{width:2.094547px;}
._0{width:3.843225px;}
._e{width:18.327288px;}
._1e{width:21.895159px;}
._19{width:23.288861px;}
._1c{width:25.296704px;}
._b{width:28.463795px;}
._d{width:30.296524px;}
._1f{width:31.382190px;}
._12{width:34.167301px;}
._13{width:36.327303px;}
._10{width:52.167316px;}
._11{width:56.683684px;}
._5{width:60.545505px;}
._1a{width:63.168133px;}
._a{width:66.894601px;}
._1d{width:80.697600px;}
._14{width:96.836850px;}
._17{width:348.930053px;}
._1b{width:451.935957px;}
._18{width:509.392005px;}
._16{width:567.247326px;}
._f{width:912.344774px;}
._8{width:1003.877200px;}
._9{width:1305.622906px;}
._6{width:1478.364766px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y18{bottom:194.469000px;}
.y7e{bottom:251.406000px;}
.y2f{bottom:270.600000px;}
.y7d{bottom:271.729500px;}
.y4b{bottom:276.966000px;}
.y61{bottom:281.848500px;}
.y7c{bottom:292.054500px;}
.y2e{bottom:296.901000px;}
.y60{bottom:302.172000px;}
.y4a{bottom:303.267000px;}
.y7b{bottom:312.378000px;}
.yb1{bottom:313.248000px;}
.y5f{bottom:322.495500px;}
.y97{bottom:322.903500px;}
.y2d{bottom:323.203500px;}
.y7a{bottom:332.701500px;}
.y49{bottom:337.041000px;}
.y5e{bottom:342.819000px;}
.y96{bottom:343.227000px;}
.yb0{bottom:346.378500px;}
.y2c{bottom:349.504500px;}
.y79{bottom:353.025000px;}
.y17{bottom:357.348000px;}
.y48{bottom:367.933500px;}
.yaf{bottom:372.037500px;}
.y2b{bottom:375.805500px;}
.y16{bottom:377.673000px;}
.y5d{bottom:384.337500px;}
.y95{bottom:384.745500px;}
.y78{bottom:394.543500px;}
.yae{bottom:397.695000px;}
.y15{bottom:397.996500px;}
.y2a{bottom:409.579500px;}
.y47{bottom:411.751500px;}
.y5c{bottom:418.111500px;}
.y14{bottom:418.320000px;}
.yad{bottom:423.352500px;}
.y77{bottom:426.400500px;}
.y94{bottom:430.624500px;}
.y13{bottom:438.643500px;}
.y29{bottom:440.470500px;}
.y5b{bottom:444.412500px;}
.yac{bottom:449.011500px;}
.y76{bottom:450.786000px;}
.y93{bottom:450.948000px;}
.y12{bottom:458.967000px;}
.y46{bottom:462.114000px;}
.y92{bottom:471.271500px;}
.yab{bottom:474.669000px;}
.y5a{bottom:478.186500px;}
.y11{bottom:479.290500px;}
.y45{bottom:482.437500px;}
.y75{bottom:482.643000px;}
.y28{bottom:484.290000px;}
.y91{bottom:491.596500px;}
.y10{bottom:499.615500px;}
.yaa{bottom:500.328000px;}
.y44{bottom:502.762500px;}
.y59{bottom:509.077500px;}
.y90{bottom:511.920000px;}
.y74{bottom:513.534000px;}
.yf{bottom:519.939000px;}
.y27{bottom:520.818000px;}
.y43{bottom:523.086000px;}
.ya9{bottom:525.985500px;}
.y8f{bottom:532.243500px;}
.ye{bottom:540.262500px;}
.y42{bottom:543.409500px;}
.ya8{bottom:551.643000px;}
.y8e{bottom:552.567000px;}
.y58{bottom:552.897000px;}
.yd{bottom:560.586000px;}
.y41{bottom:563.733000px;}
.y73{bottom:568.555500px;}
.yb7{bottom:570.499500px;}
.y26{bottom:572.376000px;}
.ya7{bottom:577.302000px;}
.y40{bottom:584.056500px;}
.y72{bottom:588.879000px;}
.y57{bottom:589.425000px;}
.yb6{bottom:590.824500px;}
.y8d{bottom:594.085500px;}
.yc{bottom:597.274500px;}
.ya6{bottom:602.959500px;}
.y25{bottom:606.150000px;}
.y71{bottom:609.204000px;}
.yb5{bottom:611.148000px;}
.y8c{bottom:614.409000px;}
.yb{bottom:617.598000px;}
.y3f{bottom:625.575000px;}
.ya5{bottom:628.618500px;}
.y70{bottom:629.527500px;}
.yb4{bottom:631.471500px;}
.ya{bottom:637.921500px;}
.y24{bottom:639.924000px;}
.y8b{bottom:648.183000px;}
.y6f{bottom:649.851000px;}
.yb3{bottom:651.795000px;}
.y56{bottom:653.089500px;}
.ya4{bottom:654.276000px;}
.y9{bottom:658.245000px;}
.y3e{bottom:659.349000px;}
.y55{bottom:673.413000px;}
.y23{bottom:673.696500px;}
.y8a{bottom:674.484000px;}
.y3d{bottom:685.650000px;}
.ya3{bottom:687.406500px;}
.y6e{bottom:691.369500px;}
.yb2{bottom:693.313500px;}
.y54{bottom:693.736500px;}
.y8{bottom:694.932000px;}
.y89{bottom:700.786500px;}
.y22{bottom:707.470500px;}
.y3c{bottom:711.951000px;}
.y53{bottom:714.060000px;}
.ya2{bottom:718.297500px;}
.y6d{bottom:723.226500px;}
.y88{bottom:727.087500px;}
.y7{bottom:731.620500px;}
.y52{bottom:734.385000px;}
.y3b{bottom:738.253500px;}
.y21{bottom:741.243000px;}
.y6c{bottom:747.612000px;}
.y87{bottom:753.388500px;}
.y51{bottom:754.708500px;}
.y3a{bottom:764.554500px;}
.y6{bottom:768.307500px;}
.ya1{bottom:773.919000px;}
.y50{bottom:775.032000px;}
.y20{bottom:777.771000px;}
.y6b{bottom:779.469000px;}
.y86{bottom:779.689500px;}
.ya0{bottom:794.242500px;}
.y4f{bottom:795.355500px;}
.y39{bottom:798.328500px;}
.y85{bottom:805.992000px;}
.y6a{bottom:810.360000px;}
.y38{bottom:829.219500px;}
.y5{bottom:835.318500px;}
.y9f{bottom:835.762500px;}
.y4e{bottom:836.874000px;}
.y84{bottom:839.764500px;}
.y4d{bottom:857.199000px;}
.y4{bottom:862.516500px;}
.y69{bottom:865.381500px;}
.y9e{bottom:868.891500px;}
.y1f{bottom:869.788500px;}
.y83{bottom:870.657000px;}
.y37{bottom:873.039000px;}
.y68{bottom:885.705000px;}
.y9d{bottom:894.550500px;}
.y1e{bottom:896.208000px;}
.y4c{bottom:903.076500px;}
.y67{bottom:906.030000px;}
.y3{bottom:916.912500px;}
.y9c{bottom:920.208000px;}
.y1d{bottom:922.629000px;}
.y36{bottom:923.401500px;}
.y66{bottom:926.353500px;}
.y82{bottom:926.581500px;}
.y35{bottom:943.725000px;}
.y9b{bottom:945.865500px;}
.y81{bottom:946.905000px;}
.y1c{bottom:949.050000px;}
.y34{bottom:964.048500px;}
.y65{bottom:967.872000px;}
.y2{bottom:971.308500px;}
.y9a{bottom:971.524500px;}
.y1b{bottom:976.321500px;}
.y33{bottom:984.372000px;}
.y80{bottom:988.423500px;}
.y99{bottom:997.182000px;}
.y64{bottom:999.729000px;}
.y32{bottom:1004.695500px;}
.y1{bottom:1016.775000px;}
.y1a{bottom:1021.324500px;}
.y7f{bottom:1022.197500px;}
.y98{bottom:1022.841000px;}
.y63{bottom:1024.113000px;}
.y31{bottom:1025.020500px;}
.y30{bottom:1045.344000px;}
.y62{bottom:1055.970000px;}
.y19{bottom:1086.862500px;}
.h7{height:37.240199px;}
.h6{height:41.484266px;}
.h5{height:49.090950px;}
.h4{height:53.798400px;}
.h3{height:64.557900px;}
.h2{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:122.457000px;}
.xa{left:129.928500px;}
.x7{left:147.001500px;}
.xd{left:163.366500px;}
.x9{left:173.002500px;}
.xb{left:178.714500px;}
.xc{left:186.751500px;}
.x4{left:196.933500px;}
.x1{left:304.258500px;}
.x5{left:331.714500px;}
.x3{left:346.425000px;}
.x2{left:390.861000px;}
.x8{left:442.366500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:29.090933pt;}
.ls2{letter-spacing:29.093309pt;}
.ls3{letter-spacing:29.094751pt;}
.ws5{word-spacing:-23.910333pt;}
.wse{word-spacing:-18.583288pt;}
.ws1c{word-spacing:-16.162923pt;}
.wsf{word-spacing:-3.246548pt;}
.ws1a{word-spacing:-2.082911pt;}
.ws4{word-spacing:-0.063761pt;}
.wsc{word-spacing:0.000000pt;}
.ws12{word-spacing:0.477091pt;}
.ws19{word-spacing:2.513457pt;}
.ws2d{word-spacing:3.095275pt;}
.ws7{word-spacing:3.211639pt;}
.ws9{word-spacing:3.269821pt;}
.ws6{word-spacing:3.700367pt;}
.ws11{word-spacing:3.985067pt;}
.ws1f{word-spacing:4.762970pt;}
.ws15{word-spacing:4.765903pt;}
.ws2c{word-spacing:4.766417pt;}
.ws16{word-spacing:4.766929pt;}
.ws32{word-spacing:4.768804pt;}
.ws21{word-spacing:4.769313pt;}
.ws30{word-spacing:4.771275pt;}
.ws14{word-spacing:4.771718pt;}
.ws24{word-spacing:4.772126pt;}
.ws23{word-spacing:4.774137pt;}
.ws33{word-spacing:4.774193pt;}
.ws13{word-spacing:4.774529pt;}
.ws31{word-spacing:4.775048pt;}
.ws2b{word-spacing:4.775537pt;}
.ws27{word-spacing:4.776086pt;}
.ws20{word-spacing:4.777104pt;}
.ws2f{word-spacing:4.777115pt;}
.ws26{word-spacing:4.777632pt;}
.ws2a{word-spacing:4.778965pt;}
.ws2e{word-spacing:4.780544pt;}
.wsd{word-spacing:4.782067pt;}
.ws22{word-spacing:4.798793pt;}
.ws10{word-spacing:5.492476pt;}
.ws0{word-spacing:6.887500pt;}
.ws1b{word-spacing:8.098916pt;}
.wsa{word-spacing:9.728008pt;}
.ws1e{word-spacing:11.955200pt;}
.ws29{word-spacing:20.026359pt;}
.ws28{word-spacing:20.028306pt;}
.ws34{word-spacing:20.029239pt;}
.ws25{word-spacing:20.031186pt;}
.ws1d{word-spacing:20.031693pt;}
.ws2{word-spacing:20.722347pt;}
.ws1{word-spacing:24.866747pt;}
.ws3{word-spacing:27.672303pt;}
.ws18{word-spacing:27.838679pt;}
.ws17{word-spacing:27.842146pt;}
.ws8{word-spacing:43.008036pt;}
.wsb{word-spacing:43.066218pt;}
._c{margin-left:-29.090933pt;}
._15{margin-left:-7.192228pt;}
._2{margin-left:-6.197558pt;}
._4{margin-left:-5.228407pt;}
._1{margin-left:-3.416200pt;}
._3{margin-left:-1.721549pt;}
._20{width:0.889414pt;}
._7{width:1.861820pt;}
._0{width:3.416200pt;}
._e{width:16.290923pt;}
._1e{width:19.462364pt;}
._19{width:20.701209pt;}
._1c{width:22.485959pt;}
._b{width:25.301151pt;}
._d{width:26.930244pt;}
._1f{width:27.895280pt;}
._12{width:30.370934pt;}
._13{width:32.290936pt;}
._10{width:46.370948pt;}
._11{width:50.385497pt;}
._5{width:53.818227pt;}
._1a{width:56.149451pt;}
._a{width:59.461868pt;}
._1d{width:71.731200pt;}
._14{width:86.077200pt;}
._17{width:310.160047pt;}
._1b{width:401.720851pt;}
._18{width:452.792894pt;}
._16{width:504.219846pt;}
._f{width:810.973132pt;}
._8{width:892.335289pt;}
._9{width:1160.553694pt;}
._6{width:1314.102014pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:172.861333pt;}
.y7e{bottom:223.472000pt;}
.y2f{bottom:240.533333pt;}
.y7d{bottom:241.537333pt;}
.y4b{bottom:246.192000pt;}
.y61{bottom:250.532000pt;}
.y7c{bottom:259.604000pt;}
.y2e{bottom:263.912000pt;}
.y60{bottom:268.597333pt;}
.y4a{bottom:269.570667pt;}
.y7b{bottom:277.669333pt;}
.yb1{bottom:278.442667pt;}
.y5f{bottom:286.662667pt;}
.y97{bottom:287.025333pt;}
.y2d{bottom:287.292000pt;}
.y7a{bottom:295.734667pt;}
.y49{bottom:299.592000pt;}
.y5e{bottom:304.728000pt;}
.y96{bottom:305.090667pt;}
.yb0{bottom:307.892000pt;}
.y2c{bottom:310.670667pt;}
.y79{bottom:313.800000pt;}
.y17{bottom:317.642667pt;}
.y48{bottom:327.052000pt;}
.yaf{bottom:330.700000pt;}
.y2b{bottom:334.049333pt;}
.y16{bottom:335.709333pt;}
.y5d{bottom:341.633333pt;}
.y95{bottom:341.996000pt;}
.y78{bottom:350.705333pt;}
.yae{bottom:353.506667pt;}
.y15{bottom:353.774667pt;}
.y2a{bottom:364.070667pt;}
.y47{bottom:366.001333pt;}
.y5c{bottom:371.654667pt;}
.y14{bottom:371.840000pt;}
.yad{bottom:376.313333pt;}
.y77{bottom:379.022667pt;}
.y94{bottom:382.777333pt;}
.y13{bottom:389.905333pt;}
.y29{bottom:391.529333pt;}
.y5b{bottom:395.033333pt;}
.yac{bottom:399.121333pt;}
.y76{bottom:400.698667pt;}
.y93{bottom:400.842667pt;}
.y12{bottom:407.970667pt;}
.y46{bottom:410.768000pt;}
.y92{bottom:418.908000pt;}
.yab{bottom:421.928000pt;}
.y5a{bottom:425.054667pt;}
.y11{bottom:426.036000pt;}
.y45{bottom:428.833333pt;}
.y75{bottom:429.016000pt;}
.y28{bottom:430.480000pt;}
.y91{bottom:436.974667pt;}
.y10{bottom:444.102667pt;}
.yaa{bottom:444.736000pt;}
.y44{bottom:446.900000pt;}
.y59{bottom:452.513333pt;}
.y90{bottom:455.040000pt;}
.y74{bottom:456.474667pt;}
.yf{bottom:462.168000pt;}
.y27{bottom:462.949333pt;}
.y43{bottom:464.965333pt;}
.ya9{bottom:467.542667pt;}
.y8f{bottom:473.105333pt;}
.ye{bottom:480.233333pt;}
.y42{bottom:483.030667pt;}
.ya8{bottom:490.349333pt;}
.y8e{bottom:491.170667pt;}
.y58{bottom:491.464000pt;}
.yd{bottom:498.298667pt;}
.y41{bottom:501.096000pt;}
.y73{bottom:505.382667pt;}
.yb7{bottom:507.110667pt;}
.y26{bottom:508.778667pt;}
.ya7{bottom:513.157333pt;}
.y40{bottom:519.161333pt;}
.y72{bottom:523.448000pt;}
.y57{bottom:523.933333pt;}
.yb6{bottom:525.177333pt;}
.y8d{bottom:528.076000pt;}
.yc{bottom:530.910667pt;}
.ya6{bottom:535.964000pt;}
.y25{bottom:538.800000pt;}
.y71{bottom:541.514667pt;}
.yb5{bottom:543.242667pt;}
.y8c{bottom:546.141333pt;}
.yb{bottom:548.976000pt;}
.y3f{bottom:556.066667pt;}
.ya5{bottom:558.772000pt;}
.y70{bottom:559.580000pt;}
.yb4{bottom:561.308000pt;}
.ya{bottom:567.041333pt;}
.y24{bottom:568.821333pt;}
.y8b{bottom:576.162667pt;}
.y6f{bottom:577.645333pt;}
.yb3{bottom:579.373333pt;}
.y56{bottom:580.524000pt;}
.ya4{bottom:581.578667pt;}
.y9{bottom:585.106667pt;}
.y3e{bottom:586.088000pt;}
.y55{bottom:598.589333pt;}
.y23{bottom:598.841333pt;}
.y8a{bottom:599.541333pt;}
.y3d{bottom:609.466667pt;}
.ya3{bottom:611.028000pt;}
.y6e{bottom:614.550667pt;}
.yb2{bottom:616.278667pt;}
.y54{bottom:616.654667pt;}
.y8{bottom:617.717333pt;}
.y89{bottom:622.921333pt;}
.y22{bottom:628.862667pt;}
.y3c{bottom:632.845333pt;}
.y53{bottom:634.720000pt;}
.ya2{bottom:638.486667pt;}
.y6d{bottom:642.868000pt;}
.y88{bottom:646.300000pt;}
.y7{bottom:650.329333pt;}
.y52{bottom:652.786667pt;}
.y3b{bottom:656.225333pt;}
.y21{bottom:658.882667pt;}
.y6c{bottom:664.544000pt;}
.y87{bottom:669.678667pt;}
.y51{bottom:670.852000pt;}
.y3a{bottom:679.604000pt;}
.y6{bottom:682.940000pt;}
.ya1{bottom:687.928000pt;}
.y50{bottom:688.917333pt;}
.y20{bottom:691.352000pt;}
.y6b{bottom:692.861333pt;}
.y86{bottom:693.057333pt;}
.ya0{bottom:705.993333pt;}
.y4f{bottom:706.982667pt;}
.y39{bottom:709.625333pt;}
.y85{bottom:716.437333pt;}
.y6a{bottom:720.320000pt;}
.y38{bottom:737.084000pt;}
.y5{bottom:742.505333pt;}
.y9f{bottom:742.900000pt;}
.y4e{bottom:743.888000pt;}
.y84{bottom:746.457333pt;}
.y4d{bottom:761.954667pt;}
.y4{bottom:766.681333pt;}
.y69{bottom:769.228000pt;}
.y9e{bottom:772.348000pt;}
.y1f{bottom:773.145333pt;}
.y83{bottom:773.917333pt;}
.y37{bottom:776.034667pt;}
.y68{bottom:787.293333pt;}
.y9d{bottom:795.156000pt;}
.y1e{bottom:796.629333pt;}
.y4c{bottom:802.734667pt;}
.y67{bottom:805.360000pt;}
.y3{bottom:815.033333pt;}
.y9c{bottom:817.962667pt;}
.y1d{bottom:820.114667pt;}
.y36{bottom:820.801333pt;}
.y66{bottom:823.425333pt;}
.y82{bottom:823.628000pt;}
.y35{bottom:838.866667pt;}
.y9b{bottom:840.769333pt;}
.y81{bottom:841.693333pt;}
.y1c{bottom:843.600000pt;}
.y34{bottom:856.932000pt;}
.y65{bottom:860.330667pt;}
.y2{bottom:863.385333pt;}
.y9a{bottom:863.577333pt;}
.y1b{bottom:867.841333pt;}
.y33{bottom:874.997333pt;}
.y80{bottom:878.598667pt;}
.y99{bottom:886.384000pt;}
.y64{bottom:888.648000pt;}
.y32{bottom:893.062667pt;}
.y1{bottom:903.800000pt;}
.y1a{bottom:907.844000pt;}
.y7f{bottom:908.620000pt;}
.y98{bottom:909.192000pt;}
.y63{bottom:910.322667pt;}
.y31{bottom:911.129333pt;}
.y30{bottom:929.194667pt;}
.y62{bottom:938.640000pt;}
.y19{bottom:966.100000pt;}
.h7{height:33.102399pt;}
.h6{height:36.874903pt;}
.h5{height:43.636400pt;}
.h4{height:47.820800pt;}
.h3{height:57.384800pt;}
.h2{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:108.850667pt;}
.xa{left:115.492000pt;}
.x7{left:130.668000pt;}
.xd{left:145.214667pt;}
.x9{left:153.780000pt;}
.xb{left:158.857333pt;}
.xc{left:166.001333pt;}
.x4{left:175.052000pt;}
.x1{left:270.452000pt;}
.x5{left:294.857333pt;}
.x3{left:307.933333pt;}
.x2{left:347.432000pt;}
.x8{left:393.214667pt;}
}




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