
    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_b7b12755d7517e9c4bb66dad.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_743cf657097248196ac94a9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_29ac7fe2d56f3f8ab369d951.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_2653edbbea4875381a3defd3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_f46b79aa8b5806343e7d5b80.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d85f33cd02193d5ff380d351.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_04c251bdb29283eb9bed9c4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_571c467c17f3703a2ff61aff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_f714315b51e85b424790d276.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.123047;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_d49baf38fe8f916890678f96.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:45.000000px;}
.v4{vertical-align:54.000000px;}
.v2{vertical-align:63.000000px;}
.lsc{letter-spacing:-3.270000px;}
.ls21{letter-spacing:-2.250000px;}
.ls5{letter-spacing:-1.818000px;}
.ls26{letter-spacing:-1.230000px;}
.ls16{letter-spacing:-1.128000px;}
.ls7{letter-spacing:-0.876000px;}
.ls4{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.225000px;}
.ls25{letter-spacing:0.375000px;}
.ls6{letter-spacing:1.128000px;}
.ls13{letter-spacing:1.150500px;}
.ls27{letter-spacing:1.233000px;}
.ls22{letter-spacing:1.524000px;}
.ls3{letter-spacing:1.525500px;}
.ls1c{letter-spacing:1.645500px;}
.ls18{letter-spacing:1.705500px;}
.ls1f{letter-spacing:2.142000px;}
.ls15{letter-spacing:2.220000px;}
.lsb{letter-spacing:2.250000px;}
.ls23{letter-spacing:2.370000px;}
.ls1d{letter-spacing:2.400000px;}
.lsd{letter-spacing:2.430000px;}
.ls20{letter-spacing:3.375000px;}
.lse{letter-spacing:5.373000px;}
.ls11{letter-spacing:5.589000px;}
.ls0{letter-spacing:7.875000px;}
.ls1b{letter-spacing:12.435000px;}
.ls12{letter-spacing:12.555000px;}
.ls2{letter-spacing:16.815000px;}
.ls9{letter-spacing:16.875000px;}
.lsa{letter-spacing:16.995000px;}
.ls1e{letter-spacing:21.375000px;}
.lsf{letter-spacing:22.914000px;}
.ls1a{letter-spacing:25.875000px;}
.ls14{letter-spacing:26.055000px;}
.ls8{letter-spacing:34.860000px;}
.ls1{letter-spacing:44.025000px;}
.ls10{letter-spacing:64.474500px;}
.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;}
}
.ws6{word-spacing:-88.969500px;}
.ws4{word-spacing:-59.449500px;}
.ws5{word-spacing:-21.375000px;}
.ws0{word-spacing:-19.594500px;}
.ws2{word-spacing:-19.125000px;}
.ws8{word-spacing:-17.895000px;}
.ws7{word-spacing:-16.875000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.767850px;}
._2c{margin-left:-88.969500px;}
._3{margin-left:-7.879800px;}
._b{margin-left:-6.016350px;}
._5{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._8{width:3.094050px;}
._4{width:4.188000px;}
._d{width:5.366100px;}
._25{width:6.661950px;}
._c{width:8.008650px;}
._10{width:9.473850px;}
._11{width:10.529700px;}
._16{width:11.928750px;}
._6{width:12.978600px;}
._22{width:14.815200px;}
._f{width:16.279200px;}
._a{width:17.351550px;}
._e{width:20.727600px;}
._9{width:21.963450px;}
._1a{width:23.140500px;}
._7{width:25.403400px;}
._1b{width:26.587650px;}
._2b{width:28.244700px;}
._1f{width:29.413500px;}
._1c{width:31.266450px;}
._15{width:34.324650px;}
._14{width:35.488350px;}
._19{width:38.857650px;}
._18{width:40.227150px;}
._12{width:43.516350px;}
._13{width:44.631000px;}
._2e{width:48.060150px;}
._17{width:49.141950px;}
._2d{width:51.268800px;}
._2f{width:52.420050px;}
._1d{width:53.520000px;}
._29{width:57.146250px;}
._1e{width:58.250550px;}
._24{width:62.344950px;}
._23{width:66.625950px;}
._30{width:71.417700px;}
._2a{width:75.388050px;}
._20{width:79.322400px;}
._21{width:80.659950px;}
._26{width:107.716050px;}
._28{width:110.970450px;}
._27{width:112.396800px;}
.fc2{color:rgb(0,120,215);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:54.000000px;}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs7{font-size:94.500000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y5{bottom:14.662500px;}
.y3{bottom:32.662500px;}
.y4{bottom:61.912500px;}
.y61{bottom:112.575000px;}
.yad{bottom:118.237500px;}
.y4b{bottom:121.612500px;}
.y9b{bottom:123.862500px;}
.y96{bottom:126.112500px;}
.y3d{bottom:127.237500px;}
.y2d{bottom:130.612500px;}
.y60{bottom:138.487500px;}
.yac{bottom:144.112500px;}
.y9c{bottom:146.362500px;}
.y4a{bottom:147.487500px;}
.y80{bottom:148.612500px;}
.y9a{bottom:149.737500px;}
.y3c{bottom:151.995000px;}
.y98{bottom:153.105000px;}
.y2c{bottom:156.480000px;}
.y5f{bottom:164.400000px;}
.yab{bottom:170.025000px;}
.y99{bottom:171.150000px;}
.y49{bottom:173.400000px;}
.y7f{bottom:174.525000px;}
.y3b{bottom:177.900000px;}
.y2b{bottom:182.400000px;}
.y5e{bottom:190.275000px;}
.yaa{bottom:195.900000px;}
.y48{bottom:199.320000px;}
.y7e{bottom:200.445000px;}
.y3a{bottom:203.820000px;}
.y2a{bottom:208.320000px;}
.y5d{bottom:216.195000px;}
.ya9{bottom:221.820000px;}
.y47{bottom:225.195000px;}
.y7d{bottom:226.320000px;}
.y39{bottom:229.695000px;}
.y29{bottom:234.195000px;}
.y5c{bottom:242.100000px;}
.ya8{bottom:247.725000px;}
.y46{bottom:251.100000px;}
.y38{bottom:255.600000px;}
.y28{bottom:260.100000px;}
.y5b{bottom:267.975000px;}
.ya7{bottom:273.600000px;}
.y45{bottom:275.850000px;}
.y7c{bottom:276.975000px;}
.y37{bottom:281.475000px;}
.y27{bottom:286.005000px;}
.y5a{bottom:293.880000px;}
.ya6{bottom:299.505000px;}
.y44{bottom:301.770000px;}
.y7b{bottom:302.880000px;}
.y36{bottom:307.380000px;}
.y26{bottom:311.895000px;}
.y59{bottom:319.755000px;}
.ya5{bottom:325.425000px;}
.y43{bottom:327.675000px;}
.y7a{bottom:328.800000px;}
.y35{bottom:333.300000px;}
.y25{bottom:336.675000px;}
.y58{bottom:345.675000px;}
.ya4{bottom:350.175000px;}
.y42{bottom:353.550000px;}
.y79{bottom:354.675000px;}
.y34{bottom:359.175000px;}
.y24{bottom:362.550000px;}
.y57{bottom:371.580000px;}
.ya3{bottom:376.095000px;}
.y41{bottom:379.470000px;}
.y78{bottom:380.580000px;}
.y33{bottom:385.080000px;}
.y23{bottom:388.455000px;}
.y56{bottom:397.455000px;}
.ya2{bottom:401.955000px;}
.y40{bottom:405.330000px;}
.y77{bottom:406.470000px;}
.y32{bottom:411.000000px;}
.y22{bottom:414.375000px;}
.y55{bottom:423.375000px;}
.ya1{bottom:427.875000px;}
.y3f{bottom:431.250000px;}
.y76{bottom:432.375000px;}
.y31{bottom:436.875000px;}
.y21{bottom:440.250000px;}
.y54{bottom:448.125000px;}
.y3e{bottom:452.670000px;}
.ya0{bottom:453.795000px;}
.y75{bottom:458.280000px;}
.y95{bottom:461.655000px;}
.y30{bottom:462.795000px;}
.y20{bottom:466.170000px;}
.y53{bottom:474.045000px;}
.y9f{bottom:479.670000px;}
.y74{bottom:484.170000px;}
.y2f{bottom:487.545000px;}
.y97{bottom:488.655000px;}
.y1f{bottom:492.075000px;}
.y52{bottom:499.950000px;}
.y9e{bottom:505.575000px;}
.y2e{bottom:510.075000px;}
.y94{bottom:513.450000px;}
.y1e{bottom:517.950000px;}
.y51{bottom:525.825000px;}
.y9d{bottom:526.950000px;}
.y73{bottom:535.995000px;}
.y93{bottom:539.370000px;}
.y1d{bottom:543.870000px;}
.y50{bottom:551.730000px;}
.y72{bottom:561.855000px;}
.y92{bottom:565.230000px;}
.y1c{bottom:569.745000px;}
.y4f{bottom:577.650000px;}
.y71{bottom:586.650000px;}
.y91{bottom:591.150000px;}
.y1b{bottom:595.650000px;}
.y4e{bottom:603.525000px;}
.y70{bottom:612.525000px;}
.y90{bottom:617.070000px;}
.y1a{bottom:621.570000px;}
.y4d{bottom:623.820000px;}
.y4c{bottom:637.320000px;}
.y6f{bottom:638.445000px;}
.y8f{bottom:642.945000px;}
.y19{bottom:646.320000px;}
.y6e{bottom:664.350000px;}
.y8e{bottom:668.850000px;}
.y18{bottom:672.225000px;}
.y6d{bottom:690.225000px;}
.y8d{bottom:694.725000px;}
.y17{bottom:698.100000px;}
.y6c{bottom:716.145000px;}
.y8c{bottom:720.630000px;}
.y16{bottom:724.005000px;}
.y6b{bottom:742.005000px;}
.y8b{bottom:746.550000px;}
.y15{bottom:749.925000px;}
.y6a{bottom:767.925000px;}
.yae{bottom:771.300000px;}
.y8a{bottom:772.425000px;}
.y14{bottom:775.800000px;}
.y69{bottom:793.830000px;}
.y89{bottom:797.205000px;}
.y13{bottom:801.705000px;}
.y68{bottom:819.705000px;}
.y88{bottom:823.080000px;}
.y12{bottom:827.625000px;}
.y67{bottom:845.625000px;}
.y87{bottom:849.000000px;}
.y11{bottom:853.500000px;}
.y66{bottom:871.545000px;}
.y86{bottom:874.920000px;}
.y10{bottom:879.420000px;}
.y65{bottom:897.420000px;}
.y85{bottom:900.795000px;}
.yf{bottom:905.295000px;}
.y64{bottom:922.200000px;}
.y84{bottom:926.700000px;}
.ye{bottom:931.200000px;}
.y63{bottom:948.075000px;}
.y83{bottom:952.620000px;}
.yd{bottom:957.120000px;}
.y62{bottom:977.370000px;}
.y82{bottom:978.495000px;}
.yc{bottom:981.870000px;}
.y81{bottom:1003.275000px;}
.yb{bottom:1007.775000px;}
.ya{bottom:1033.650000px;}
.y9{bottom:1059.570000px;}
.y8{bottom:1085.475000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h5{height:40.537500px;}
.hc{height:53.415527px;}
.h7{height:53.975830px;}
.ha{height:63.052734px;}
.h3{height:68.027344px;}
.h9{height:75.043213px;}
.hb{height:75.080566px;}
.h8{height:77.097656px;}
.hf{height:78.629945px;}
.h2{height:86.319141px;}
.h10{height:92.746582px;}
.h4{height:95.389453px;}
.h6{height:121.485791px;}
.hd{height:127.472168px;}
.he{height:129.080566px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:75.487500px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:6.750000px;}
.x1{left:108.149987px;}
.x13{left:127.274987px;}
.xe{left:129.524987px;}
.x5{left:157.679987px;}
.x4{left:172.349987px;}
.xa{left:234.299987px;}
.xc{left:252.344987px;}
.xb{left:254.594987px;}
.x9{left:318.794987px;}
.x8{left:323.279987px;}
.xd{left:343.574987px;}
.x15{left:345.824987px;}
.x6{left:399.899987px;}
.x11{left:404.399987px;}
.x12{left:448.319987px;}
.x7{left:457.319987px;}
.xf{left:758.099987px;}
.x2{left:802.005000px;}
.x14{left:830.174987px;}
.x10{left:832.424987px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:40.000000pt;}
.v4{vertical-align:48.000000pt;}
.v2{vertical-align:56.000000pt;}
.lsc{letter-spacing:-2.906667pt;}
.ls21{letter-spacing:-2.000000pt;}
.ls5{letter-spacing:-1.616000pt;}
.ls26{letter-spacing:-1.093333pt;}
.ls16{letter-spacing:-1.002667pt;}
.ls7{letter-spacing:-0.778667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.200000pt;}
.ls25{letter-spacing:0.333333pt;}
.ls6{letter-spacing:1.002667pt;}
.ls13{letter-spacing:1.022667pt;}
.ls27{letter-spacing:1.096000pt;}
.ls22{letter-spacing:1.354667pt;}
.ls3{letter-spacing:1.356000pt;}
.ls1c{letter-spacing:1.462667pt;}
.ls18{letter-spacing:1.516000pt;}
.ls1f{letter-spacing:1.904000pt;}
.ls15{letter-spacing:1.973333pt;}
.lsb{letter-spacing:2.000000pt;}
.ls23{letter-spacing:2.106667pt;}
.ls1d{letter-spacing:2.133333pt;}
.lsd{letter-spacing:2.160000pt;}
.ls20{letter-spacing:3.000000pt;}
.lse{letter-spacing:4.776000pt;}
.ls11{letter-spacing:4.968000pt;}
.ls0{letter-spacing:7.000000pt;}
.ls1b{letter-spacing:11.053333pt;}
.ls12{letter-spacing:11.160000pt;}
.ls2{letter-spacing:14.946667pt;}
.ls9{letter-spacing:15.000000pt;}
.lsa{letter-spacing:15.106667pt;}
.ls1e{letter-spacing:19.000000pt;}
.lsf{letter-spacing:20.368000pt;}
.ls1a{letter-spacing:23.000000pt;}
.ls14{letter-spacing:23.160000pt;}
.ls8{letter-spacing:30.986667pt;}
.ls1{letter-spacing:39.133333pt;}
.ls10{letter-spacing:57.310667pt;}
.ws6{word-spacing:-79.084000pt;}
.ws4{word-spacing:-52.844000pt;}
.ws5{word-spacing:-19.000000pt;}
.ws0{word-spacing:-17.417333pt;}
.ws2{word-spacing:-17.000000pt;}
.ws8{word-spacing:-15.906667pt;}
.ws7{word-spacing:-15.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.682533pt;}
._2c{margin-left:-79.084000pt;}
._3{margin-left:-7.004267pt;}
._b{margin-left:-5.347867pt;}
._5{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._8{width:2.750267pt;}
._4{width:3.722667pt;}
._d{width:4.769867pt;}
._25{width:5.921733pt;}
._c{width:7.118800pt;}
._10{width:8.421200pt;}
._11{width:9.359733pt;}
._16{width:10.603333pt;}
._6{width:11.536533pt;}
._22{width:13.169067pt;}
._f{width:14.470400pt;}
._a{width:15.423600pt;}
._e{width:18.424533pt;}
._9{width:19.523067pt;}
._1a{width:20.569333pt;}
._7{width:22.580800pt;}
._1b{width:23.633467pt;}
._2b{width:25.106400pt;}
._1f{width:26.145333pt;}
._1c{width:27.792400pt;}
._15{width:30.510800pt;}
._14{width:31.545200pt;}
._19{width:34.540133pt;}
._18{width:35.757467pt;}
._12{width:38.681200pt;}
._13{width:39.672000pt;}
._2e{width:42.720133pt;}
._17{width:43.681733pt;}
._2d{width:45.572267pt;}
._2f{width:46.595600pt;}
._1d{width:47.573333pt;}
._29{width:50.796667pt;}
._1e{width:51.778267pt;}
._24{width:55.417733pt;}
._23{width:59.223067pt;}
._30{width:63.482400pt;}
._2a{width:67.011600pt;}
._20{width:70.508800pt;}
._21{width:71.697733pt;}
._26{width:95.747600pt;}
._28{width:98.640400pt;}
._27{width:99.908267pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs7{font-size:84.000000pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:13.033333pt;}
.y3{bottom:29.033333pt;}
.y4{bottom:55.033333pt;}
.y61{bottom:100.066667pt;}
.yad{bottom:105.100000pt;}
.y4b{bottom:108.100000pt;}
.y9b{bottom:110.100000pt;}
.y96{bottom:112.100000pt;}
.y3d{bottom:113.100000pt;}
.y2d{bottom:116.100000pt;}
.y60{bottom:123.100000pt;}
.yac{bottom:128.100000pt;}
.y9c{bottom:130.100000pt;}
.y4a{bottom:131.100000pt;}
.y80{bottom:132.100000pt;}
.y9a{bottom:133.100000pt;}
.y3c{bottom:135.106667pt;}
.y98{bottom:136.093333pt;}
.y2c{bottom:139.093333pt;}
.y5f{bottom:146.133333pt;}
.yab{bottom:151.133333pt;}
.y99{bottom:152.133333pt;}
.y49{bottom:154.133333pt;}
.y7f{bottom:155.133333pt;}
.y3b{bottom:158.133333pt;}
.y2b{bottom:162.133333pt;}
.y5e{bottom:169.133333pt;}
.yaa{bottom:174.133333pt;}
.y48{bottom:177.173333pt;}
.y7e{bottom:178.173333pt;}
.y3a{bottom:181.173333pt;}
.y2a{bottom:185.173333pt;}
.y5d{bottom:192.173333pt;}
.ya9{bottom:197.173333pt;}
.y47{bottom:200.173333pt;}
.y7d{bottom:201.173333pt;}
.y39{bottom:204.173333pt;}
.y29{bottom:208.173333pt;}
.y5c{bottom:215.200000pt;}
.ya8{bottom:220.200000pt;}
.y46{bottom:223.200000pt;}
.y38{bottom:227.200000pt;}
.y28{bottom:231.200000pt;}
.y5b{bottom:238.200000pt;}
.ya7{bottom:243.200000pt;}
.y45{bottom:245.200000pt;}
.y7c{bottom:246.200000pt;}
.y37{bottom:250.200000pt;}
.y27{bottom:254.226667pt;}
.y5a{bottom:261.226667pt;}
.ya6{bottom:266.226667pt;}
.y44{bottom:268.240000pt;}
.y7b{bottom:269.226667pt;}
.y36{bottom:273.226667pt;}
.y26{bottom:277.240000pt;}
.y59{bottom:284.226667pt;}
.ya5{bottom:289.266667pt;}
.y43{bottom:291.266667pt;}
.y7a{bottom:292.266667pt;}
.y35{bottom:296.266667pt;}
.y25{bottom:299.266667pt;}
.y58{bottom:307.266667pt;}
.ya4{bottom:311.266667pt;}
.y42{bottom:314.266667pt;}
.y79{bottom:315.266667pt;}
.y34{bottom:319.266667pt;}
.y24{bottom:322.266667pt;}
.y57{bottom:330.293333pt;}
.ya3{bottom:334.306667pt;}
.y41{bottom:337.306667pt;}
.y78{bottom:338.293333pt;}
.y33{bottom:342.293333pt;}
.y23{bottom:345.293333pt;}
.y56{bottom:353.293333pt;}
.ya2{bottom:357.293333pt;}
.y40{bottom:360.293333pt;}
.y77{bottom:361.306667pt;}
.y32{bottom:365.333333pt;}
.y22{bottom:368.333333pt;}
.y55{bottom:376.333333pt;}
.ya1{bottom:380.333333pt;}
.y3f{bottom:383.333333pt;}
.y76{bottom:384.333333pt;}
.y31{bottom:388.333333pt;}
.y21{bottom:391.333333pt;}
.y54{bottom:398.333333pt;}
.y3e{bottom:402.373333pt;}
.ya0{bottom:403.373333pt;}
.y75{bottom:407.360000pt;}
.y95{bottom:410.360000pt;}
.y30{bottom:411.373333pt;}
.y20{bottom:414.373333pt;}
.y53{bottom:421.373333pt;}
.y9f{bottom:426.373333pt;}
.y74{bottom:430.373333pt;}
.y2f{bottom:433.373333pt;}
.y97{bottom:434.360000pt;}
.y1f{bottom:437.400000pt;}
.y52{bottom:444.400000pt;}
.y9e{bottom:449.400000pt;}
.y2e{bottom:453.400000pt;}
.y94{bottom:456.400000pt;}
.y1e{bottom:460.400000pt;}
.y51{bottom:467.400000pt;}
.y9d{bottom:468.400000pt;}
.y73{bottom:476.440000pt;}
.y93{bottom:479.440000pt;}
.y1d{bottom:483.440000pt;}
.y50{bottom:490.426667pt;}
.y72{bottom:499.426667pt;}
.y92{bottom:502.426667pt;}
.y1c{bottom:506.440000pt;}
.y4f{bottom:513.466667pt;}
.y71{bottom:521.466667pt;}
.y91{bottom:525.466667pt;}
.y1b{bottom:529.466667pt;}
.y4e{bottom:536.466667pt;}
.y70{bottom:544.466667pt;}
.y90{bottom:548.506667pt;}
.y1a{bottom:552.506667pt;}
.y4d{bottom:554.506667pt;}
.y4c{bottom:566.506667pt;}
.y6f{bottom:567.506667pt;}
.y8f{bottom:571.506667pt;}
.y19{bottom:574.506667pt;}
.y6e{bottom:590.533333pt;}
.y8e{bottom:594.533333pt;}
.y18{bottom:597.533333pt;}
.y6d{bottom:613.533333pt;}
.y8d{bottom:617.533333pt;}
.y17{bottom:620.533333pt;}
.y6c{bottom:636.573333pt;}
.y8c{bottom:640.560000pt;}
.y16{bottom:643.560000pt;}
.y6b{bottom:659.560000pt;}
.y8b{bottom:663.600000pt;}
.y15{bottom:666.600000pt;}
.y6a{bottom:682.600000pt;}
.yae{bottom:685.600000pt;}
.y8a{bottom:686.600000pt;}
.y14{bottom:689.600000pt;}
.y69{bottom:705.626667pt;}
.y89{bottom:708.626667pt;}
.y13{bottom:712.626667pt;}
.y68{bottom:728.626667pt;}
.y88{bottom:731.626667pt;}
.y12{bottom:735.666667pt;}
.y67{bottom:751.666667pt;}
.y87{bottom:754.666667pt;}
.y11{bottom:758.666667pt;}
.y66{bottom:774.706667pt;}
.y86{bottom:777.706667pt;}
.y10{bottom:781.706667pt;}
.y65{bottom:797.706667pt;}
.y85{bottom:800.706667pt;}
.yf{bottom:804.706667pt;}
.y64{bottom:819.733333pt;}
.y84{bottom:823.733333pt;}
.ye{bottom:827.733333pt;}
.y63{bottom:842.733333pt;}
.y83{bottom:846.773333pt;}
.yd{bottom:850.773333pt;}
.y62{bottom:868.773333pt;}
.y82{bottom:869.773333pt;}
.yc{bottom:872.773333pt;}
.y81{bottom:891.800000pt;}
.yb{bottom:895.800000pt;}
.ya{bottom:918.800000pt;}
.y9{bottom:941.840000pt;}
.y8{bottom:964.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h5{height:36.033333pt;}
.hc{height:47.480469pt;}
.h7{height:47.978516pt;}
.ha{height:56.046875pt;}
.h3{height:60.468750pt;}
.h9{height:66.705078pt;}
.hb{height:66.738281pt;}
.h8{height:68.531250pt;}
.hf{height:69.893285pt;}
.h2{height:76.728125pt;}
.h10{height:82.441406pt;}
.h4{height:84.790625pt;}
.h6{height:107.987370pt;}
.hd{height:113.308594pt;}
.he{height:114.738281pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:67.100000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.000000pt;}
.x1{left:96.133322pt;}
.x13{left:113.133322pt;}
.xe{left:115.133322pt;}
.x5{left:140.159988pt;}
.x4{left:153.199988pt;}
.xa{left:208.266655pt;}
.xc{left:224.306655pt;}
.xb{left:226.306655pt;}
.x9{left:283.373322pt;}
.x8{left:287.359988pt;}
.xd{left:305.399988pt;}
.x15{left:307.399988pt;}
.x6{left:355.466655pt;}
.x11{left:359.466655pt;}
.x12{left:398.506655pt;}
.x7{left:406.506655pt;}
.xf{left:673.866655pt;}
.x2{left:712.893333pt;}
.x14{left:737.933322pt;}
.x10{left:739.933322pt;}
}




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