
    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_edefde7de3e50d1476c252aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.053000;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_2e0bf65fb7b4736048ab33e1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.053000;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_842db5ac5983f8fbd9d00d8f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.882000;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_d0c939880cc2a6e9bb674464.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997559;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_4edf77f1f31acb9848883d94.woff')format("woff");}.ff5{font-family:ff5;line-height:1.051000;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_5683d01d908d65ba577f032c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_edefde7de3e50d1476c252aa.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053000;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;}
.m4{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242718,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.236000px;}
.lsb{letter-spacing:-1.112400px;}
.lsa{letter-spacing:-0.988800px;}
.lsc{letter-spacing:-0.858000px;}
.lsd{letter-spacing:-0.726000px;}
.ls9{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.462000px;}
.ls7{letter-spacing:-0.264000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.840000px;}
.ls6{letter-spacing:0.865200px;}
.ls1{letter-spacing:0.960000px;}
.ls5{letter-spacing:1.643880px;}
.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;}
}
.ws2c{word-spacing:-14.982000px;}
.ws0{word-spacing:-14.850000px;}
.ws1{word-spacing:-14.652000px;}
.ws2{word-spacing:-10.800000px;}
.ws2b{word-spacing:-10.289700px;}
.ws2f{word-spacing:-5.412000px;}
.ws31{word-spacing:-4.488000px;}
.ws1f{word-spacing:-2.772000px;}
.ws20{word-spacing:-2.574000px;}
.ws38{word-spacing:-2.442000px;}
.ws22{word-spacing:-2.376000px;}
.ws49{word-spacing:-1.914000px;}
.ws45{word-spacing:-1.848000px;}
.ws36{word-spacing:-1.782000px;}
.ws6{word-spacing:-1.643880px;}
.ws19{word-spacing:-1.254000px;}
.ws7{word-spacing:-0.865200px;}
.ws5{word-spacing:-0.840000px;}
.ws17{word-spacing:-0.264000px;}
.ws3{word-spacing:0.000000px;}
.ws4f{word-spacing:0.396000px;}
.ws4d{word-spacing:0.462000px;}
.ws1a{word-spacing:0.660000px;}
.ws1c{word-spacing:0.726000px;}
.ws37{word-spacing:0.858000px;}
.ws8{word-spacing:1.056000px;}
.ws2d{word-spacing:1.112400px;}
.ws4{word-spacing:1.236000px;}
.ws11{word-spacing:1.254000px;}
.ws33{word-spacing:1.320000px;}
.wsd{word-spacing:1.584000px;}
.ws21{word-spacing:1.650000px;}
.ws1b{word-spacing:1.848000px;}
.ws15{word-spacing:2.310000px;}
.ws35{word-spacing:2.442000px;}
.ws44{word-spacing:2.574000px;}
.ws3e{word-spacing:2.640000px;}
.ws39{word-spacing:3.168000px;}
.ws30{word-spacing:3.366000px;}
.ws2a{word-spacing:3.432000px;}
.ws3b{word-spacing:3.696000px;}
.ws47{word-spacing:3.828000px;}
.ws4c{word-spacing:4.422000px;}
.ws46{word-spacing:4.554000px;}
.ws41{word-spacing:4.686000px;}
.ws2e{word-spacing:4.830000px;}
.wsa{word-spacing:5.214000px;}
.ws12{word-spacing:5.346000px;}
.ws32{word-spacing:5.412000px;}
.ws3a{word-spacing:5.610000px;}
.ws13{word-spacing:5.940000px;}
.wsc{word-spacing:6.006000px;}
.ws9{word-spacing:6.204000px;}
.wsb{word-spacing:6.600000px;}
.ws10{word-spacing:6.996000px;}
.ws4b{word-spacing:7.260000px;}
.ws24{word-spacing:7.722000px;}
.ws4e{word-spacing:7.854000px;}
.ws34{word-spacing:8.052000px;}
.ws51{word-spacing:8.448000px;}
.wsf{word-spacing:8.514000px;}
.ws42{word-spacing:9.240000px;}
.ws1d{word-spacing:9.438000px;}
.ws26{word-spacing:9.636000px;}
.ws3c{word-spacing:10.032000px;}
.ws3d{word-spacing:10.098000px;}
.ws23{word-spacing:10.164000px;}
.ws1e{word-spacing:10.296000px;}
.ws43{word-spacing:11.286000px;}
.ws50{word-spacing:11.418000px;}
.ws25{word-spacing:12.210000px;}
.ws40{word-spacing:12.804000px;}
.ws14{word-spacing:13.200000px;}
.ws18{word-spacing:13.860000px;}
.wse{word-spacing:15.180000px;}
.ws28{word-spacing:16.566000px;}
.ws27{word-spacing:17.028000px;}
.ws29{word-spacing:19.536000px;}
.ws4a{word-spacing:19.998000px;}
.ws3f{word-spacing:22.638000px;}
.ws16{word-spacing:22.770000px;}
.ws52{word-spacing:24.948000px;}
.ws48{word-spacing:28.710000px;}
._8{margin-left:-9.205800px;}
._5{margin-left:-7.014600px;}
._4{margin-left:-5.847600px;}
._3{margin-left:-4.487400px;}
._0{margin-left:-2.484000px;}
._2{margin-left:-1.482600px;}
._1{width:1.236000px;}
._6{width:5.940000px;}
._7{width:23.113800px;}
.fc1{color:rgb(229,25,55);}
.fc3{color:rgb(31,31,31);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:43.260000px;}
.fs5{font-size:48.000000px;}
.fsb{font-size:49.440000px;}
.fsc{font-size:55.620000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:61.800000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:67.500000px;}
.fsa{font-size:90.000000px;}
.fs2{font-size:138.000000px;}
.fs9{font-size:1500.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:35.597400px;}
.y1{bottom:36.842400px;}
.y50{bottom:198.968250px;}
.yad{bottom:202.393350px;}
.y4f{bottom:219.972750px;}
.yac{bottom:221.896350px;}
.yab{bottom:260.902350px;}
.yaa{bottom:281.906850px;}
.y4e{bottom:282.969750px;}
.ya9{bottom:302.911350px;}
.y4d{bottom:303.974250px;}
.ya8{bottom:323.915850px;}
.y4c{bottom:324.978750px;}
.y32{bottom:340.650480px;}
.ya7{bottom:344.920350px;}
.y4b{bottom:345.983250px;}
.y31{bottom:354.147600px;}
.ya6{bottom:365.924850px;}
.y4a{bottom:366.987750px;}
.y30{bottom:367.639500px;}
.y8e{bottom:369.431550px;}
.y2f{bottom:381.142500px;}
.y8d{bottom:382.031550px;}
.ya5{bottom:386.929350px;}
.y49{bottom:387.992250px;}
.y8c{bottom:400.683450px;}
.ya4{bottom:407.933850px;}
.y48{bottom:408.996750px;}
.y2e{bottom:411.655500px;}
.y2d{bottom:424.255500px;}
.y8b{bottom:425.283450px;}
.ya3{bottom:428.938350px;}
.y47{bottom:430.001250px;}
.y8a{bottom:437.883450px;}
.y2c{bottom:438.655500px;}
.ya2{bottom:449.942850px;}
.y89{bottom:450.483450px;}
.y46{bottom:451.005750px;}
.y88{bottom:469.135500px;}
.ya1{bottom:470.947350px;}
.y45{bottom:472.010250px;}
.y2b{bottom:473.663250px;}
.y2a{bottom:487.163250px;}
.ya0{bottom:491.951850px;}
.y44{bottom:493.014750px;}
.y87{bottom:498.887400px;}
.y29{bottom:510.067200px;}
.y86{bottom:510.639450px;}
.y9f{bottom:512.956350px;}
.y43{bottom:514.019250px;}
.y28{bottom:522.667200px;}
.y85{bottom:529.291350px;}
.y9e{bottom:533.960850px;}
.y42{bottom:535.023750px;}
.y27{bottom:545.571150px;}
.y9d{bottom:554.965350px;}
.y41{bottom:556.028250px;}
.y26{bottom:559.071150px;}
.y84{bottom:564.195300px;}
.y9c{bottom:575.969850px;}
.y40{bottom:577.032750px;}
.y83{bottom:577.447200px;}
.y25{bottom:577.723200px;}
.y82{bottom:596.099250px;}
.y9b{bottom:596.974350px;}
.y3f{bottom:598.037250px;}
.y24{bottom:612.731100px;}
.y9a{bottom:617.978850px;}
.y3e{bottom:619.041750px;}
.y81{bottom:622.499250px;}
.y23{bottom:627.130950px;}
.y80{bottom:635.099250px;}
.y99{bottom:638.983350px;}
.y3d{bottom:640.046250px;}
.y7f{bottom:649.499250px;}
.y22{bottom:650.035050px;}
.y98{bottom:659.987850px;}
.y3c{bottom:661.050750px;}
.y21{bottom:662.635050px;}
.y7e{bottom:674.099250px;}
.y97{bottom:680.992350px;}
.y3b{bottom:682.055250px;}
.y20{bottom:685.538850px;}
.y7d{bottom:686.699250px;}
.y1f{bottom:699.938850px;}
.y7c{bottom:701.099250px;}
.y96{bottom:701.996850px;}
.y3a{bottom:703.059750px;}
.y1e{bottom:722.842800px;}
.y95{bottom:723.001350px;}
.y39{bottom:724.064250px;}
.y7b{bottom:727.499250px;}
.y1d{bottom:737.242800px;}
.y7a{bottom:740.099250px;}
.y94{bottom:744.005850px;}
.y38{bottom:745.068750px;}
.y79{bottom:758.751150px;}
.y1c{bottom:760.146750px;}
.y93{bottom:765.010350px;}
.y37{bottom:766.073250px;}
.y1b{bottom:772.746900px;}
.y78{bottom:783.351150px;}
.y92{bottom:786.014850px;}
.y36{bottom:787.077750px;}
.y1a{bottom:795.650700px;}
.y77{bottom:795.951300px;}
.y91{bottom:807.019350px;}
.y35{bottom:808.082250px;}
.y19{bottom:808.250700px;}
.y76{bottom:814.603200px;}
.y90{bottom:828.023850px;}
.y34{bottom:829.086750px;}
.y75{bottom:830.855100px;}
.y18{bottom:835.406550px;}
.y17{bottom:848.006700px;}
.y8f{bottom:849.028350px;}
.y33{bottom:850.091250px;}
.y74{bottom:857.855100px;}
.y73{bottom:870.455100px;}
.y16{bottom:870.910650px;}
.y5d{bottom:870.970950px;}
.yba{bottom:871.263300px;}
.yae{bottom:872.398500px;}
.y51{bottom:878.484150px;}
.y15{bottom:883.510500px;}
.y72{bottom:889.107000px;}
.y5c{bottom:891.975450px;}
.yb9{bottom:892.267800px;}
.y14{bottom:906.414600px;}
.y5b{bottom:912.979950px;}
.yb8{bottom:913.272300px;}
.y71{bottom:915.507150px;}
.y13{bottom:919.014450px;}
.y70{bottom:928.107000px;}
.y5a{bottom:933.984450px;}
.yb7{bottom:934.276800px;}
.y12{bottom:941.918400px;}
.y6f{bottom:946.759050px;}
.y59{bottom:954.988950px;}
.yb6{bottom:955.281300px;}
.y11{bottom:956.318550px;}
.y6e{bottom:971.514900px;}
.y58{bottom:975.993450px;}
.yb5{bottom:976.285800px;}
.y10{bottom:979.222350px;}
.y6d{bottom:984.114900px;}
.yf{bottom:993.622350px;}
.y57{bottom:996.997950px;}
.yb4{bottom:997.290300px;}
.y6c{bottom:1002.766800px;}
.ye{bottom:1016.526300px;}
.y56{bottom:1018.002450px;}
.yb3{bottom:1018.294800px;}
.y6b{bottom:1027.522800px;}
.yd{bottom:1030.926300px;}
.y55{bottom:1039.006950px;}
.yb2{bottom:1039.299300px;}
.y6a{bottom:1040.122800px;}
.yc{bottom:1045.326300px;}
.yb{bottom:1045.327200px;}
.y69{bottom:1054.522800px;}
.y54{bottom:1060.011450px;}
.yb1{bottom:1060.303800px;}
.y68{bottom:1080.027300px;}
.ya{bottom:1080.334200px;}
.y53{bottom:1081.015950px;}
.yb0{bottom:1081.308300px;}
.y9{bottom:1092.934200px;}
.y67{bottom:1094.422800px;}
.y52{bottom:1102.020450px;}
.yaf{bottom:1102.312800px;}
.y66{bottom:1107.022800px;}
.y8{bottom:1111.586100px;}
.y65{bottom:1119.622800px;}
.y64{bottom:1132.222800px;}
.y7{bottom:1142.447100px;}
.y63{bottom:1144.822800px;}
.y6{bottom:1154.444100px;}
.y62{bottom:1157.422800px;}
.y5{bottom:1166.441100px;}
.y61{bottom:1170.022800px;}
.y4{bottom:1178.438100px;}
.y60{bottom:1186.873140px;}
.y3{bottom:1194.191850px;}
.y5e{bottom:1194.936000px;}
.y5f{bottom:1198.874700px;}
.h5{height:28.072266px;}
.h8{height:32.750977px;}
.h9{height:33.733506px;}
.h7{height:37.429688px;}
.hd{height:41.430720px;}
.he{height:46.609560px;}
.h3{height:50.280000px;}
.h6{height:51.788400px;}
.ha{height:52.404000px;}
.h2{height:56.565000px;}
.hc{height:67.500000px;}
.h4{height:103.500000px;}
.hb{height:1191.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:14.988150px;}
.xf{left:16.334850px;}
.x19{left:31.282050px;}
.x11{left:32.560800px;}
.xd{left:34.407300px;}
.x13{left:36.557550px;}
.x17{left:38.384850px;}
.x4{left:43.350450px;}
.x9{left:48.592050px;}
.x16{left:51.343200px;}
.x14{left:54.682800px;}
.xe{left:58.402200px;}
.x10{left:60.835050px;}
.xb{left:62.413050px;}
.xc{left:65.149500px;}
.xa{left:66.277050px;}
.x3{left:68.046600px;}
.x18{left:70.345500px;}
.x6{left:71.520450px;}
.x12{left:74.099850px;}
.x7{left:76.623450px;}
.x15{left:80.348850px;}
.x1b{left:82.126800px;}
.x1a{left:85.045200px;}
.x5{left:87.324450px;}
.x3f{left:90.750600px;}
.x1d{left:92.940150px;}
.x8{left:101.087100px;}
.x42{left:195.637800px;}
.x2{left:243.956700px;}
.x24{left:246.614250px;}
.x22{left:280.629900px;}
.x1e{left:284.881950px;}
.x1{left:293.385750px;}
.x1f{left:306.100950px;}
.x23{left:395.746050px;}
.x41{left:466.307100px;}
.x40{left:485.397600px;}
.x25{left:538.511850px;}
.x43{left:605.673600px;}
.x26{left:628.795350px;}
.x3e{left:678.614100px;}
.x21{left:681.657450px;}
.x2b{left:692.524500px;}
.x2e{left:700.431000px;}
.x34{left:704.209800px;}
.x28{left:707.374950px;}
.x35{left:708.577800px;}
.x2c{left:710.878500px;}
.x3d{left:712.163400px;}
.x32{left:714.536550px;}
.x3a{left:719.805150px;}
.x30{left:723.090000px;}
.x3b{left:725.934450px;}
.x2a{left:727.825500px;}
.x29{left:732.109500px;}
.x37{left:737.645100px;}
.x38{left:742.320600px;}
.x39{left:743.662200px;}
.x2f{left:747.723000px;}
.x3c{left:748.750800px;}
.x27{left:752.626950px;}
.x31{left:755.572800px;}
.x33{left:756.592050px;}
.x20{left:758.217450px;}
.x36{left:760.608000px;}
.x2d{left:763.210500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.098667pt;}
.lsb{letter-spacing:-0.988800pt;}
.lsa{letter-spacing:-0.878933pt;}
.lsc{letter-spacing:-0.762667pt;}
.lsd{letter-spacing:-0.645333pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.410667pt;}
.ls7{letter-spacing:-0.234667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.746667pt;}
.ls6{letter-spacing:0.769067pt;}
.ls1{letter-spacing:0.853333pt;}
.ls5{letter-spacing:1.461227pt;}
.ws2c{word-spacing:-13.317333pt;}
.ws0{word-spacing:-13.200000pt;}
.ws1{word-spacing:-13.024000pt;}
.ws2{word-spacing:-9.600000pt;}
.ws2b{word-spacing:-9.146400pt;}
.ws2f{word-spacing:-4.810667pt;}
.ws31{word-spacing:-3.989333pt;}
.ws1f{word-spacing:-2.464000pt;}
.ws20{word-spacing:-2.288000pt;}
.ws38{word-spacing:-2.170667pt;}
.ws22{word-spacing:-2.112000pt;}
.ws49{word-spacing:-1.701333pt;}
.ws45{word-spacing:-1.642667pt;}
.ws36{word-spacing:-1.584000pt;}
.ws6{word-spacing:-1.461227pt;}
.ws19{word-spacing:-1.114667pt;}
.ws7{word-spacing:-0.769067pt;}
.ws5{word-spacing:-0.746667pt;}
.ws17{word-spacing:-0.234667pt;}
.ws3{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.352000pt;}
.ws4d{word-spacing:0.410667pt;}
.ws1a{word-spacing:0.586667pt;}
.ws1c{word-spacing:0.645333pt;}
.ws37{word-spacing:0.762667pt;}
.ws8{word-spacing:0.938667pt;}
.ws2d{word-spacing:0.988800pt;}
.ws4{word-spacing:1.098667pt;}
.ws11{word-spacing:1.114667pt;}
.ws33{word-spacing:1.173333pt;}
.wsd{word-spacing:1.408000pt;}
.ws21{word-spacing:1.466667pt;}
.ws1b{word-spacing:1.642667pt;}
.ws15{word-spacing:2.053333pt;}
.ws35{word-spacing:2.170667pt;}
.ws44{word-spacing:2.288000pt;}
.ws3e{word-spacing:2.346667pt;}
.ws39{word-spacing:2.816000pt;}
.ws30{word-spacing:2.992000pt;}
.ws2a{word-spacing:3.050667pt;}
.ws3b{word-spacing:3.285333pt;}
.ws47{word-spacing:3.402667pt;}
.ws4c{word-spacing:3.930667pt;}
.ws46{word-spacing:4.048000pt;}
.ws41{word-spacing:4.165333pt;}
.ws2e{word-spacing:4.293333pt;}
.wsa{word-spacing:4.634667pt;}
.ws12{word-spacing:4.752000pt;}
.ws32{word-spacing:4.810667pt;}
.ws3a{word-spacing:4.986667pt;}
.ws13{word-spacing:5.280000pt;}
.wsc{word-spacing:5.338667pt;}
.ws9{word-spacing:5.514667pt;}
.wsb{word-spacing:5.866667pt;}
.ws10{word-spacing:6.218667pt;}
.ws4b{word-spacing:6.453333pt;}
.ws24{word-spacing:6.864000pt;}
.ws4e{word-spacing:6.981333pt;}
.ws34{word-spacing:7.157333pt;}
.ws51{word-spacing:7.509333pt;}
.wsf{word-spacing:7.568000pt;}
.ws42{word-spacing:8.213333pt;}
.ws1d{word-spacing:8.389333pt;}
.ws26{word-spacing:8.565333pt;}
.ws3c{word-spacing:8.917333pt;}
.ws3d{word-spacing:8.976000pt;}
.ws23{word-spacing:9.034667pt;}
.ws1e{word-spacing:9.152000pt;}
.ws43{word-spacing:10.032000pt;}
.ws50{word-spacing:10.149333pt;}
.ws25{word-spacing:10.853333pt;}
.ws40{word-spacing:11.381333pt;}
.ws14{word-spacing:11.733333pt;}
.ws18{word-spacing:12.320000pt;}
.wse{word-spacing:13.493333pt;}
.ws28{word-spacing:14.725333pt;}
.ws27{word-spacing:15.136000pt;}
.ws29{word-spacing:17.365333pt;}
.ws4a{word-spacing:17.776000pt;}
.ws3f{word-spacing:20.122667pt;}
.ws16{word-spacing:20.240000pt;}
.ws52{word-spacing:22.176000pt;}
.ws48{word-spacing:25.520000pt;}
._8{margin-left:-8.182933pt;}
._5{margin-left:-6.235200pt;}
._4{margin-left:-5.197867pt;}
._3{margin-left:-3.988800pt;}
._0{margin-left:-2.208000pt;}
._2{margin-left:-1.317867pt;}
._1{width:1.098667pt;}
._6{width:5.280000pt;}
._7{width:20.545600pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:38.453333pt;}
.fs5{font-size:42.666667pt;}
.fsb{font-size:43.946667pt;}
.fsc{font-size:49.440000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:54.933333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:60.000000pt;}
.fsa{font-size:80.000000pt;}
.fs2{font-size:122.666667pt;}
.fs9{font-size:1333.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:31.642133pt;}
.y1{bottom:32.748800pt;}
.y50{bottom:176.860667pt;}
.yad{bottom:179.905200pt;}
.y4f{bottom:195.531333pt;}
.yac{bottom:197.241200pt;}
.yab{bottom:231.913200pt;}
.yaa{bottom:250.583867pt;}
.y4e{bottom:251.528667pt;}
.ya9{bottom:269.254533pt;}
.y4d{bottom:270.199333pt;}
.ya8{bottom:287.925200pt;}
.y4c{bottom:288.870000pt;}
.y32{bottom:302.800427pt;}
.ya7{bottom:306.595867pt;}
.y4b{bottom:307.540667pt;}
.y31{bottom:314.797867pt;}
.ya6{bottom:325.266533pt;}
.y4a{bottom:326.211333pt;}
.y30{bottom:326.790667pt;}
.y8e{bottom:328.383600pt;}
.y2f{bottom:338.793333pt;}
.y8d{bottom:339.583600pt;}
.ya5{bottom:343.937200pt;}
.y49{bottom:344.882000pt;}
.y8c{bottom:356.163067pt;}
.ya4{bottom:362.607867pt;}
.y48{bottom:363.552667pt;}
.y2e{bottom:365.916000pt;}
.y2d{bottom:377.116000pt;}
.y8b{bottom:378.029733pt;}
.ya3{bottom:381.278533pt;}
.y47{bottom:382.223333pt;}
.y8a{bottom:389.229733pt;}
.y2c{bottom:389.916000pt;}
.ya2{bottom:399.949200pt;}
.y89{bottom:400.429733pt;}
.y46{bottom:400.894000pt;}
.y88{bottom:417.009333pt;}
.ya1{bottom:418.619867pt;}
.y45{bottom:419.564667pt;}
.y2b{bottom:421.034000pt;}
.y2a{bottom:433.034000pt;}
.ya0{bottom:437.290533pt;}
.y44{bottom:438.235333pt;}
.y87{bottom:443.455467pt;}
.y29{bottom:453.393067pt;}
.y86{bottom:453.901733pt;}
.y9f{bottom:455.961200pt;}
.y43{bottom:456.906000pt;}
.y28{bottom:464.593067pt;}
.y85{bottom:470.481200pt;}
.y9e{bottom:474.631867pt;}
.y42{bottom:475.576667pt;}
.y27{bottom:484.952133pt;}
.y9d{bottom:493.302533pt;}
.y41{bottom:494.247333pt;}
.y26{bottom:496.952133pt;}
.y84{bottom:501.506933pt;}
.y9c{bottom:511.973200pt;}
.y40{bottom:512.918000pt;}
.y83{bottom:513.286400pt;}
.y25{bottom:513.531733pt;}
.y82{bottom:529.866000pt;}
.y9b{bottom:530.643867pt;}
.y3f{bottom:531.588667pt;}
.y24{bottom:544.649867pt;}
.y9a{bottom:549.314533pt;}
.y3e{bottom:550.259333pt;}
.y81{bottom:553.332667pt;}
.y23{bottom:557.449733pt;}
.y80{bottom:564.532667pt;}
.y99{bottom:567.985200pt;}
.y3d{bottom:568.930000pt;}
.y7f{bottom:577.332667pt;}
.y22{bottom:577.808933pt;}
.y98{bottom:586.655867pt;}
.y3c{bottom:587.600667pt;}
.y21{bottom:589.008933pt;}
.y7e{bottom:599.199333pt;}
.y97{bottom:605.326533pt;}
.y3b{bottom:606.271333pt;}
.y20{bottom:609.367867pt;}
.y7d{bottom:610.399333pt;}
.y1f{bottom:622.167867pt;}
.y7c{bottom:623.199333pt;}
.y96{bottom:623.997200pt;}
.y3a{bottom:624.942000pt;}
.y1e{bottom:642.526933pt;}
.y95{bottom:642.667867pt;}
.y39{bottom:643.612667pt;}
.y7b{bottom:646.666000pt;}
.y1d{bottom:655.326933pt;}
.y7a{bottom:657.866000pt;}
.y94{bottom:661.338533pt;}
.y38{bottom:662.283333pt;}
.y79{bottom:674.445467pt;}
.y1c{bottom:675.686000pt;}
.y93{bottom:680.009200pt;}
.y37{bottom:680.954000pt;}
.y1b{bottom:686.886133pt;}
.y78{bottom:696.312133pt;}
.y92{bottom:698.679867pt;}
.y36{bottom:699.624667pt;}
.y1a{bottom:707.245067pt;}
.y77{bottom:707.512267pt;}
.y91{bottom:717.350533pt;}
.y35{bottom:718.295333pt;}
.y19{bottom:718.445067pt;}
.y76{bottom:724.091733pt;}
.y90{bottom:736.021200pt;}
.y34{bottom:736.966000pt;}
.y75{bottom:738.537867pt;}
.y18{bottom:742.583600pt;}
.y17{bottom:753.783733pt;}
.y8f{bottom:754.691867pt;}
.y33{bottom:755.636667pt;}
.y74{bottom:762.537867pt;}
.y73{bottom:773.737867pt;}
.y16{bottom:774.142800pt;}
.y5d{bottom:774.196400pt;}
.yba{bottom:774.456267pt;}
.yae{bottom:775.465333pt;}
.y51{bottom:780.874800pt;}
.y15{bottom:785.342667pt;}
.y72{bottom:790.317333pt;}
.y5c{bottom:792.867067pt;}
.yb9{bottom:793.126933pt;}
.y14{bottom:805.701867pt;}
.y5b{bottom:811.537733pt;}
.yb8{bottom:811.797600pt;}
.y71{bottom:813.784133pt;}
.y13{bottom:816.901733pt;}
.y70{bottom:824.984000pt;}
.y5a{bottom:830.208400pt;}
.yb7{bottom:830.468267pt;}
.y12{bottom:837.260800pt;}
.y6f{bottom:841.563600pt;}
.y59{bottom:848.879067pt;}
.yb6{bottom:849.138933pt;}
.y11{bottom:850.060933pt;}
.y6e{bottom:863.568800pt;}
.y58{bottom:867.549733pt;}
.yb5{bottom:867.809600pt;}
.y10{bottom:870.419867pt;}
.y6d{bottom:874.768800pt;}
.yf{bottom:883.219867pt;}
.y57{bottom:886.220400pt;}
.yb4{bottom:886.480267pt;}
.y6c{bottom:891.348267pt;}
.ye{bottom:903.578933pt;}
.y56{bottom:904.891067pt;}
.yb3{bottom:905.150933pt;}
.y6b{bottom:913.353600pt;}
.yd{bottom:916.378933pt;}
.y55{bottom:923.561733pt;}
.yb2{bottom:923.821600pt;}
.y6a{bottom:924.553600pt;}
.yc{bottom:929.178933pt;}
.yb{bottom:929.179733pt;}
.y69{bottom:937.353600pt;}
.y54{bottom:942.232400pt;}
.yb1{bottom:942.492267pt;}
.y68{bottom:960.024267pt;}
.ya{bottom:960.297067pt;}
.y53{bottom:960.903067pt;}
.yb0{bottom:961.162933pt;}
.y9{bottom:971.497067pt;}
.y67{bottom:972.820267pt;}
.y52{bottom:979.573733pt;}
.yaf{bottom:979.833600pt;}
.y66{bottom:984.020267pt;}
.y8{bottom:988.076533pt;}
.y65{bottom:995.220267pt;}
.y64{bottom:1006.420267pt;}
.y7{bottom:1015.508533pt;}
.y63{bottom:1017.620267pt;}
.y6{bottom:1026.172533pt;}
.y62{bottom:1028.820267pt;}
.y5{bottom:1036.836533pt;}
.y61{bottom:1040.020267pt;}
.y4{bottom:1047.500533pt;}
.y60{bottom:1054.998347pt;}
.y3{bottom:1061.503867pt;}
.y5e{bottom:1062.165333pt;}
.y5f{bottom:1065.666400pt;}
.h5{height:24.953125pt;}
.h8{height:29.111979pt;}
.h9{height:29.985339pt;}
.h7{height:33.270833pt;}
.hd{height:36.827307pt;}
.he{height:41.430720pt;}
.h3{height:44.693333pt;}
.h6{height:46.034133pt;}
.ha{height:46.581333pt;}
.h2{height:50.280000pt;}
.hc{height:60.000000pt;}
.h4{height:92.000000pt;}
.hb{height:1058.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:13.322800pt;}
.xf{left:14.519867pt;}
.x19{left:27.806267pt;}
.x11{left:28.942933pt;}
.xd{left:30.584267pt;}
.x13{left:32.495600pt;}
.x17{left:34.119867pt;}
.x4{left:38.533733pt;}
.x9{left:43.192933pt;}
.x16{left:45.638400pt;}
.x14{left:48.606933pt;}
.xe{left:51.913067pt;}
.x10{left:54.075600pt;}
.xb{left:55.478267pt;}
.xc{left:57.910667pt;}
.xa{left:58.912933pt;}
.x3{left:60.485867pt;}
.x18{left:62.529333pt;}
.x6{left:63.573733pt;}
.x12{left:65.866533pt;}
.x7{left:68.109733pt;}
.x15{left:71.421200pt;}
.x1b{left:73.001600pt;}
.x1a{left:75.595733pt;}
.x5{left:77.621733pt;}
.x3f{left:80.667200pt;}
.x1d{left:82.613467pt;}
.x8{left:89.855200pt;}
.x42{left:173.900267pt;}
.x2{left:216.850400pt;}
.x24{left:219.212667pt;}
.x22{left:249.448800pt;}
.x1e{left:253.228400pt;}
.x1{left:260.787333pt;}
.x1f{left:272.089733pt;}
.x23{left:351.774267pt;}
.x41{left:414.495200pt;}
.x40{left:431.464533pt;}
.x25{left:478.677200pt;}
.x43{left:538.376533pt;}
.x26{left:558.929200pt;}
.x3e{left:603.212533pt;}
.x21{left:605.917733pt;}
.x2b{left:615.577333pt;}
.x2e{left:622.605333pt;}
.x34{left:625.964267pt;}
.x28{left:628.777733pt;}
.x35{left:629.846933pt;}
.x2c{left:631.892000pt;}
.x3d{left:633.034133pt;}
.x32{left:635.143600pt;}
.x3a{left:639.826800pt;}
.x30{left:642.746667pt;}
.x3b{left:645.275067pt;}
.x2a{left:646.956000pt;}
.x29{left:650.764000pt;}
.x37{left:655.684533pt;}
.x38{left:659.840533pt;}
.x39{left:661.033067pt;}
.x2f{left:664.642667pt;}
.x3c{left:665.556267pt;}
.x27{left:669.001733pt;}
.x31{left:671.620267pt;}
.x33{left:672.526267pt;}
.x20{left:673.971067pt;}
.x36{left:676.096000pt;}
.x2d{left:678.409333pt;}
}




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