
    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_8f3422049a0501b0fd4a7c1f.woff')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_95c96707d715095144d6b1a8.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dc81cf37214e8bdefd4fa977.woff')format("woff");}.ff3{font-family:ff3;line-height:0.690918;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_a8a7bbb92c4097044bfd91e5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_9aa8d4e72f033924a669cd66.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_95473310b2d77c0a7eea5de4.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v1{vertical-align:-82.080000px;}
.v3{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.152400px;}
.ls11{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.109200px;}
.ls10{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.828000px;}
.ls18{letter-spacing:1.026000px;}
.ls5{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.800000px;}
.lsa{letter-spacing:2.880000px;}
.lsb{letter-spacing:55.025280px;}
.ls7{letter-spacing:61.505280px;}
.ls3{letter-spacing:375.096000px;}
.ls12{letter-spacing:785.160000px;}
.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;}
}
.wsf{word-spacing:-17.586000px;}
.wse{word-spacing:-17.388000px;}
.ws3{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.822200px;}
.ws1{word-spacing:-16.740000px;}
.ws9{word-spacing:-16.712400px;}
.wsa{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.407600px;}
.ws11{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.948000px;}
.ws7{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.wsb{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-5.091840px;}
._d{margin-left:-3.789120px;}
._c{margin-left:-2.569920px;}
._2{margin-left:-1.006560px;}
._0{width:1.015920px;}
._1{width:2.097840px;}
._3{width:3.284640px;}
._4{width:4.336800px;}
._6{width:5.344560px;}
._9{width:6.359040px;}
._a{width:7.386480px;}
._13{width:8.457360px;}
._7{width:9.519480px;}
._8{width:10.541400px;}
._11{width:11.660880px;}
._5{width:12.850560px;}
._b{width:13.910400px;}
._17{width:15.019920px;}
._12{width:17.951040px;}
._10{width:18.987840px;}
._f{width:20.160000px;}
._16{width:21.540960px;}
._15{width:22.654080px;}
._1f{width:25.504320px;}
._1a{width:26.562240px;}
._1b{width:27.853440px;}
._1e{width:31.861440px;}
._19{width:107.780160px;}
._1c{width:217.664640px;}
._1d{width:219.121920px;}
._18{width:979.294080px;}
._14{width:1277.580000px;}
.fc3{color:rgb(146,208,80);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs2{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.360000px;}
.y3{bottom:3.240000px;}
.y6{bottom:5.040000px;}
.y7e{bottom:7.200000px;}
.y7b{bottom:7.380000px;}
.y2{bottom:20.520000px;}
.y8{bottom:55.800000px;}
.y5{bottom:64.116000px;}
.ya3{bottom:110.376000px;}
.y6d{bottom:119.556000px;}
.ye5{bottom:122.796000px;}
.y39{bottom:125.676000px;}
.ya2{bottom:136.836000px;}
.y10f{bottom:137.016000px;}
.yc0{bottom:141.876000px;}
.y6c{bottom:142.416000px;}
.y38{bottom:144.576000px;}
.ye4{bottom:145.476000px;}
.y10e{bottom:156.090000px;}
.ybf{bottom:160.950000px;}
.y37{bottom:163.650000px;}
.y6b{bottom:165.090000px;}
.ye3{bottom:168.330000px;}
.y89{bottom:173.190000px;}
.y10d{bottom:174.990000px;}
.ybe{bottom:179.850000px;}
.y36{bottom:182.550000px;}
.y6a{bottom:187.950000px;}
.ye2{bottom:191.010000px;}
.y10c{bottom:193.890000px;}
.y88{bottom:195.870000px;}
.ybd{bottom:198.930000px;}
.y35{bottom:201.630000px;}
.y69{bottom:210.630000px;}
.y10b{bottom:212.970000px;}
.ye1{bottom:213.870000px;}
.ybc{bottom:217.830000px;}
.y87{bottom:218.730000px;}
.y34{bottom:220.530000px;}
.y68{bottom:229.890000px;}
.y10a{bottom:231.870000px;}
.ye0{bottom:232.950000px;}
.ybb{bottom:236.730000px;}
.y33{bottom:239.430000px;}
.y86{bottom:241.410000px;}
.y67{bottom:248.790000px;}
.y109{bottom:250.950000px;}
.yba{bottom:255.270000px;}
.ydf{bottom:255.630000px;}
.y32{bottom:258.510000px;}
.y85{bottom:264.270000px;}
.y66{bottom:267.690000px;}
.y108{bottom:269.850000px;}
.yb9{bottom:272.550000px;}
.y31{bottom:277.410000px;}
.yde{bottom:278.310000px;}
.y113{bottom:284.970000px;}
.y65{bottom:286.770000px;}
.y84{bottom:286.950000px;}
.y107{bottom:288.750000px;}
.yb8{bottom:295.590000px;}
.y30{bottom:296.490000px;}
.ydd{bottom:301.170000px;}
.y112{bottom:304.050000px;}
.y64{bottom:305.670000px;}
.y106{bottom:307.830000px;}
.y83{bottom:309.810000px;}
.y2f{bottom:315.390000px;}
.y111{bottom:322.950000px;}
.ydc{bottom:323.850000px;}
.y63{bottom:324.750000px;}
.y105{bottom:326.730000px;}
.y82{bottom:332.535000px;}
.y2e{bottom:334.335000px;}
.y110{bottom:342.075000px;}
.y62{bottom:343.335000px;}
.y104{bottom:345.855000px;}
.ydb{bottom:346.755000px;}
.y2d{bottom:353.415000px;}
.y81{bottom:355.395000px;}
.y61{bottom:360.975000px;}
.y103{bottom:364.755000px;}
.yda{bottom:369.435000px;}
.y2c{bottom:375.915000px;}
.y80{bottom:378.075000px;}
.y60{bottom:379.875000px;}
.y102{bottom:383.655000px;}
.yd9{bottom:392.295000px;}
.y2b{bottom:398.775000px;}
.y5f{bottom:398.955000px;}
.y7f{bottom:400.935000px;}
.y101{bottom:402.735000px;}
.yd8{bottom:414.975000px;}
.y7d{bottom:417.135000px;}
.y5e{bottom:417.855000px;}
.y2a{bottom:421.455000px;}
.y100{bottom:421.635000px;}
.y5d{bottom:436.935000px;}
.ya1{bottom:437.475000px;}
.yd7{bottom:437.835000px;}
.y7c{bottom:440.535000px;}
.yff{bottom:440.715000px;}
.y29{bottom:444.315000px;}
.y5c{bottom:455.835000px;}
.yd6{bottom:456.915000px;}
.yfe{bottom:459.615000px;}
.ya0{bottom:460.335000px;}
.y7a{bottom:464.115000px;}
.y28{bottom:466.995000px;}
.y5b{bottom:474.735000px;}
.yd5{bottom:475.995000px;}
.yfd{bottom:478.515000px;}
.y9f{bottom:483.015000px;}
.y27{bottom:489.855000px;}
.y5a{bottom:493.815000px;}
.yd4{bottom:494.895000px;}
.yfc{bottom:497.595000px;}
.y79{bottom:500.115000px;}
.y9e{bottom:505.875000px;}
.y26{bottom:512.535000px;}
.y59{bottom:512.715000px;}
.yd3{bottom:513.795000px;}
.yfb{bottom:516.495000px;}
.y9d{bottom:528.555000px;}
.y58{bottom:531.795000px;}
.y78{bottom:531.975000px;}
.yd2{bottom:532.875000px;}
.y25{bottom:535.395000px;}
.yfa{bottom:535.575000px;}
.y57{bottom:550.695000px;}
.y9c{bottom:551.415000px;}
.yd1{bottom:551.775000px;}
.yf9{bottom:554.475000px;}
.y77{bottom:554.655000px;}
.y24{bottom:558.075000px;}
.y56{bottom:569.595000px;}
.yd0{bottom:570.855000px;}
.yf8{bottom:573.555000px;}
.y9b{bottom:574.095000px;}
.y76{bottom:577.515000px;}
.y23{bottom:580.935000px;}
.y55{bottom:588.675000px;}
.ycf{bottom:589.755000px;}
.yf7{bottom:592.455000px;}
.y75{bottom:596.265000px;}
.y9a{bottom:596.985000px;}
.y22{bottom:603.645000px;}
.y54{bottom:607.605000px;}
.yce{bottom:608.685000px;}
.yf6{bottom:611.385000px;}
.y74{bottom:613.365000px;}
.y99{bottom:619.665000px;}
.y21{bottom:626.505000px;}
.y53{bottom:626.685000px;}
.ycd{bottom:627.765000px;}
.yf5{bottom:630.465000px;}
.y73{bottom:630.645000px;}
.yb7{bottom:641.805000px;}
.y98{bottom:642.525000px;}
.y52{bottom:645.585000px;}
.ycc{bottom:646.665000px;}
.y20{bottom:649.185000px;}
.yf4{bottom:649.365000px;}
.y72{bottom:657.105000px;}
.yb6{bottom:660.705000px;}
.y51{bottom:664.485000px;}
.y97{bottom:665.205000px;}
.ycb{bottom:665.745000px;}
.yf3{bottom:668.445000px;}
.y1f{bottom:672.045000px;}
.yb5{bottom:679.785000px;}
.y50{bottom:683.565000px;}
.yca{bottom:684.645000px;}
.yf2{bottom:687.345000px;}
.y96{bottom:688.065000px;}
.y1e{bottom:694.725000px;}
.yb4{bottom:698.685000px;}
.y4f{bottom:702.465000px;}
.yc9{bottom:703.545000px;}
.yf1{bottom:706.245000px;}
.y95{bottom:710.745000px;}
.y1d{bottom:717.585000px;}
.yb3{bottom:717.765000px;}
.y4e{bottom:721.545000px;}
.yc8{bottom:722.625000px;}
.yf0{bottom:725.325000px;}
.y94{bottom:733.605000px;}
.yb2{bottom:736.665000px;}
.y1c{bottom:740.265000px;}
.y4d{bottom:740.445000px;}
.yc7{bottom:741.525000px;}
.yef{bottom:744.225000px;}
.yb1{bottom:755.565000px;}
.y93{bottom:756.285000px;}
.y1b{bottom:759.525000px;}
.yc6{bottom:760.605000px;}
.yee{bottom:763.305000px;}
.yb0{bottom:774.645000px;}
.y1a{bottom:778.425000px;}
.y92{bottom:779.145000px;}
.yc5{bottom:779.505000px;}
.yed{bottom:782.205000px;}
.yaf{bottom:793.545000px;}
.y19{bottom:797.325000px;}
.yc4{bottom:798.405000px;}
.yec{bottom:801.105000px;}
.y91{bottom:801.825000px;}
.yae{bottom:812.625000px;}
.y18{bottom:816.405000px;}
.yc3{bottom:816.945000px;}
.yeb{bottom:820.185000px;}
.y90{bottom:824.685000px;}
.yad{bottom:831.525000px;}
.yc2{bottom:834.225000px;}
.y17{bottom:834.945000px;}
.y4c{bottom:835.305000px;}
.yea{bottom:839.085000px;}
.y8f{bottom:843.765000px;}
.yac{bottom:850.425000px;}
.y16{bottom:852.225000px;}
.y4b{bottom:854.385000px;}
.yc1{bottom:857.265000px;}
.ye9{bottom:858.165000px;}
.y8e{bottom:862.890000px;}
.y15{bottom:869.370000px;}
.yab{bottom:869.550000px;}
.y4a{bottom:873.330000px;}
.ye8{bottom:877.110000px;}
.y8d{bottom:881.790000px;}
.y14{bottom:886.650000px;}
.yaa{bottom:892.050000px;}
.y49{bottom:892.230000px;}
.ye7{bottom:896.010000px;}
.y8c{bottom:900.330000px;}
.y13{bottom:903.930000px;}
.y48{bottom:911.310000px;}
.ya9{bottom:914.910000px;}
.ye6{bottom:915.090000px;}
.y8b{bottom:917.610000px;}
.y12{bottom:921.210000px;}
.y47{bottom:930.210000px;}
.ya8{bottom:937.590000px;}
.y11{bottom:938.490000px;}
.y8a{bottom:943.890000px;}
.y46{bottom:949.290000px;}
.y10{bottom:956.490000px;}
.ya7{bottom:960.450000px;}
.y45{bottom:968.190000px;}
.ya6{bottom:983.130000px;}
.y44{bottom:987.090000px;}
.yf{bottom:997.530000px;}
.ya5{bottom:1005.990000px;}
.y43{bottom:1006.170000px;}
.ye{bottom:1016.430000px;}
.y42{bottom:1025.070000px;}
.ya4{bottom:1028.670000px;}
.yd{bottom:1035.690000px;}
.y41{bottom:1044.150000px;}
.y71{bottom:1051.530000px;}
.yc{bottom:1056.390000px;}
.y40{bottom:1063.050000px;}
.y70{bottom:1074.210000px;}
.yb{bottom:1077.090000px;}
.y3f{bottom:1081.950000px;}
.y6f{bottom:1097.070000px;}
.ya{bottom:1097.790000px;}
.y3e{bottom:1101.030000px;}
.y9{bottom:1118.490000px;}
.y6e{bottom:1119.750000px;}
.y3d{bottom:1119.930000px;}
.y4{bottom:1151.640000px;}
.y3c{bottom:1156.140000px;}
.y1{bottom:1166.400000px;}
.y3b{bottom:1170.900000px;}
.y3a{bottom:1192.140000px;}
.h6{height:5.653125px;}
.hd{height:17.280000px;}
.h5{height:19.080000px;}
.hf{height:22.680000px;}
.he{height:22.860000px;}
.h7{height:35.332031px;}
.h2{height:42.480000px;}
.h4{height:58.651172px;}
.h10{height:59.383125px;}
.h3{height:60.226875px;}
.h9{height:65.010937px;}
.hb{height:66.757500px;}
.hc{height:68.956875px;}
.ha{height:70.664062px;}
.h8{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:158.220000px;}
.wb{width:169.050000px;}
.wa{width:169.200000px;}
.wc{width:169.230000px;}
.w5{width:323.310000px;}
.w8{width:340.230000px;}
.w9{width:340.275000px;}
.w6{width:357.195000px;}
.w3{width:543.705000px;}
.w7{width:680.505000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x4{left:31.005000px;}
.x1{left:95.616000px;}
.x6{left:106.415987px;}
.x21{left:113.075987px;}
.x1c{left:123.695987px;}
.x11{left:127.655987px;}
.x1f{left:130.715987px;}
.xd{left:134.855987px;}
.x23{left:138.275987px;}
.x2{left:149.934000px;}
.x14{left:156.774000px;}
.x24{left:160.409987px;}
.x19{left:167.969987px;}
.x10{left:175.709987px;}
.xe{left:201.089987px;}
.x12{left:208.649987px;}
.x3{left:253.830000px;}
.x13{left:265.889987px;}
.x1a{left:277.050000px;}
.x22{left:289.154987px;}
.x5{left:295.275000px;}
.x15{left:324.615000px;}
.x16{left:332.175000px;}
.xf{left:336.494987px;}
.x1d{left:337.574987px;}
.x9{left:341.355000px;}
.xa{left:348.915000px;}
.x18{left:402.914987px;}
.xb{left:404.894987px;}
.x8{left:429.735000px;}
.xc{left:446.654987px;}
.x17{left:571.424987px;}
.x1b{left:616.785000px;}
.x1e{left:714.569987px;}
.x20{left:790.529987px;}
@media print{
.v1{vertical-align:-72.960000pt;}
.v3{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.135467pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.097067pt;}
.ls10{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.736000pt;}
.ls18{letter-spacing:0.912000pt;}
.ls5{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.600000pt;}
.lsa{letter-spacing:2.560000pt;}
.lsb{letter-spacing:48.911360pt;}
.ls7{letter-spacing:54.671360pt;}
.ls3{letter-spacing:333.418667pt;}
.ls12{letter-spacing:697.920000pt;}
.wsf{word-spacing:-15.632000pt;}
.wse{word-spacing:-15.456000pt;}
.ws3{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.953067pt;}
.ws1{word-spacing:-14.880000pt;}
.ws9{word-spacing:-14.855467pt;}
.wsa{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.584533pt;}
.ws11{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.313067pt;}
.ws8{word-spacing:-14.176000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.wsb{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-4.526080pt;}
._d{margin-left:-3.368107pt;}
._c{margin-left:-2.284373pt;}
._2{margin-left:-0.894720pt;}
._0{width:0.903040pt;}
._1{width:1.864747pt;}
._3{width:2.919680pt;}
._4{width:3.854933pt;}
._6{width:4.750720pt;}
._9{width:5.652480pt;}
._a{width:6.565760pt;}
._13{width:7.517653pt;}
._7{width:8.461760pt;}
._8{width:9.370133pt;}
._11{width:10.365227pt;}
._5{width:11.422720pt;}
._b{width:12.364800pt;}
._17{width:13.351040pt;}
._12{width:15.956480pt;}
._10{width:16.878080pt;}
._f{width:17.920000pt;}
._16{width:19.147520pt;}
._15{width:20.136960pt;}
._1f{width:22.670507pt;}
._1a{width:23.610880pt;}
._1b{width:24.758613pt;}
._1e{width:28.321280pt;}
._19{width:95.804587pt;}
._1c{width:193.479680pt;}
._1d{width:194.775040pt;}
._18{width:870.483627pt;}
._14{width:1135.626667pt;}
.fs1{font-size:5.120000pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.320000pt;}
.y3{bottom:2.880000pt;}
.y6{bottom:4.480000pt;}
.y7e{bottom:6.400000pt;}
.y7b{bottom:6.560000pt;}
.y2{bottom:18.240000pt;}
.y8{bottom:49.600000pt;}
.y5{bottom:56.992000pt;}
.ya3{bottom:98.112000pt;}
.y6d{bottom:106.272000pt;}
.ye5{bottom:109.152000pt;}
.y39{bottom:111.712000pt;}
.ya2{bottom:121.632000pt;}
.y10f{bottom:121.792000pt;}
.yc0{bottom:126.112000pt;}
.y6c{bottom:126.592000pt;}
.y38{bottom:128.512000pt;}
.ye4{bottom:129.312000pt;}
.y10e{bottom:138.746667pt;}
.ybf{bottom:143.066667pt;}
.y37{bottom:145.466667pt;}
.y6b{bottom:146.746667pt;}
.ye3{bottom:149.626667pt;}
.y89{bottom:153.946667pt;}
.y10d{bottom:155.546667pt;}
.ybe{bottom:159.866667pt;}
.y36{bottom:162.266667pt;}
.y6a{bottom:167.066667pt;}
.ye2{bottom:169.786667pt;}
.y10c{bottom:172.346667pt;}
.y88{bottom:174.106667pt;}
.ybd{bottom:176.826667pt;}
.y35{bottom:179.226667pt;}
.y69{bottom:187.226667pt;}
.y10b{bottom:189.306667pt;}
.ye1{bottom:190.106667pt;}
.ybc{bottom:193.626667pt;}
.y87{bottom:194.426667pt;}
.y34{bottom:196.026667pt;}
.y68{bottom:204.346667pt;}
.y10a{bottom:206.106667pt;}
.ye0{bottom:207.066667pt;}
.ybb{bottom:210.426667pt;}
.y33{bottom:212.826667pt;}
.y86{bottom:214.586667pt;}
.y67{bottom:221.146667pt;}
.y109{bottom:223.066667pt;}
.yba{bottom:226.906667pt;}
.ydf{bottom:227.226667pt;}
.y32{bottom:229.786667pt;}
.y85{bottom:234.906667pt;}
.y66{bottom:237.946667pt;}
.y108{bottom:239.866667pt;}
.yb9{bottom:242.266667pt;}
.y31{bottom:246.586667pt;}
.yde{bottom:247.386667pt;}
.y113{bottom:253.306667pt;}
.y65{bottom:254.906667pt;}
.y84{bottom:255.066667pt;}
.y107{bottom:256.666667pt;}
.yb8{bottom:262.746667pt;}
.y30{bottom:263.546667pt;}
.ydd{bottom:267.706667pt;}
.y112{bottom:270.266667pt;}
.y64{bottom:271.706667pt;}
.y106{bottom:273.626667pt;}
.y83{bottom:275.386667pt;}
.y2f{bottom:280.346667pt;}
.y111{bottom:287.066667pt;}
.ydc{bottom:287.866667pt;}
.y63{bottom:288.666667pt;}
.y105{bottom:290.426667pt;}
.y82{bottom:295.586667pt;}
.y2e{bottom:297.186667pt;}
.y110{bottom:304.066667pt;}
.y62{bottom:305.186667pt;}
.y104{bottom:307.426667pt;}
.ydb{bottom:308.226667pt;}
.y2d{bottom:314.146667pt;}
.y81{bottom:315.906667pt;}
.y61{bottom:320.866667pt;}
.y103{bottom:324.226667pt;}
.yda{bottom:328.386667pt;}
.y2c{bottom:334.146667pt;}
.y80{bottom:336.066667pt;}
.y60{bottom:337.666667pt;}
.y102{bottom:341.026667pt;}
.yd9{bottom:348.706667pt;}
.y2b{bottom:354.466667pt;}
.y5f{bottom:354.626667pt;}
.y7f{bottom:356.386667pt;}
.y101{bottom:357.986667pt;}
.yd8{bottom:368.866667pt;}
.y7d{bottom:370.786667pt;}
.y5e{bottom:371.426667pt;}
.y2a{bottom:374.626667pt;}
.y100{bottom:374.786667pt;}
.y5d{bottom:388.386667pt;}
.ya1{bottom:388.866667pt;}
.yd7{bottom:389.186667pt;}
.y7c{bottom:391.586667pt;}
.yff{bottom:391.746667pt;}
.y29{bottom:394.946667pt;}
.y5c{bottom:405.186667pt;}
.yd6{bottom:406.146667pt;}
.yfe{bottom:408.546667pt;}
.ya0{bottom:409.186667pt;}
.y7a{bottom:412.546667pt;}
.y28{bottom:415.106667pt;}
.y5b{bottom:421.986667pt;}
.yd5{bottom:423.106667pt;}
.yfd{bottom:425.346667pt;}
.y9f{bottom:429.346667pt;}
.y27{bottom:435.426667pt;}
.y5a{bottom:438.946667pt;}
.yd4{bottom:439.906667pt;}
.yfc{bottom:442.306667pt;}
.y79{bottom:444.546667pt;}
.y9e{bottom:449.666667pt;}
.y26{bottom:455.586667pt;}
.y59{bottom:455.746667pt;}
.yd3{bottom:456.706667pt;}
.yfb{bottom:459.106667pt;}
.y9d{bottom:469.826667pt;}
.y58{bottom:472.706667pt;}
.y78{bottom:472.866667pt;}
.yd2{bottom:473.666667pt;}
.y25{bottom:475.906667pt;}
.yfa{bottom:476.066667pt;}
.y57{bottom:489.506667pt;}
.y9c{bottom:490.146667pt;}
.yd1{bottom:490.466667pt;}
.yf9{bottom:492.866667pt;}
.y77{bottom:493.026667pt;}
.y24{bottom:496.066667pt;}
.y56{bottom:506.306667pt;}
.yd0{bottom:507.426667pt;}
.yf8{bottom:509.826667pt;}
.y9b{bottom:510.306667pt;}
.y76{bottom:513.346667pt;}
.y23{bottom:516.386667pt;}
.y55{bottom:523.266667pt;}
.ycf{bottom:524.226667pt;}
.yf7{bottom:526.626667pt;}
.y75{bottom:530.013333pt;}
.y9a{bottom:530.653333pt;}
.y22{bottom:536.573333pt;}
.y54{bottom:540.093333pt;}
.yce{bottom:541.053333pt;}
.yf6{bottom:543.453333pt;}
.y74{bottom:545.213333pt;}
.y99{bottom:550.813333pt;}
.y21{bottom:556.893333pt;}
.y53{bottom:557.053333pt;}
.ycd{bottom:558.013333pt;}
.yf5{bottom:560.413333pt;}
.y73{bottom:560.573333pt;}
.yb7{bottom:570.493333pt;}
.y98{bottom:571.133333pt;}
.y52{bottom:573.853333pt;}
.ycc{bottom:574.813333pt;}
.y20{bottom:577.053333pt;}
.yf4{bottom:577.213333pt;}
.y72{bottom:584.093333pt;}
.yb6{bottom:587.293333pt;}
.y51{bottom:590.653333pt;}
.y97{bottom:591.293333pt;}
.ycb{bottom:591.773333pt;}
.yf3{bottom:594.173333pt;}
.y1f{bottom:597.373333pt;}
.yb5{bottom:604.253333pt;}
.y50{bottom:607.613333pt;}
.yca{bottom:608.573333pt;}
.yf2{bottom:610.973333pt;}
.y96{bottom:611.613333pt;}
.y1e{bottom:617.533333pt;}
.yb4{bottom:621.053333pt;}
.y4f{bottom:624.413333pt;}
.yc9{bottom:625.373333pt;}
.yf1{bottom:627.773333pt;}
.y95{bottom:631.773333pt;}
.y1d{bottom:637.853333pt;}
.yb3{bottom:638.013333pt;}
.y4e{bottom:641.373333pt;}
.yc8{bottom:642.333333pt;}
.yf0{bottom:644.733333pt;}
.y94{bottom:652.093333pt;}
.yb2{bottom:654.813333pt;}
.y1c{bottom:658.013333pt;}
.y4d{bottom:658.173333pt;}
.yc7{bottom:659.133333pt;}
.yef{bottom:661.533333pt;}
.yb1{bottom:671.613333pt;}
.y93{bottom:672.253333pt;}
.y1b{bottom:675.133333pt;}
.yc6{bottom:676.093333pt;}
.yee{bottom:678.493333pt;}
.yb0{bottom:688.573333pt;}
.y1a{bottom:691.933333pt;}
.y92{bottom:692.573333pt;}
.yc5{bottom:692.893333pt;}
.yed{bottom:695.293333pt;}
.yaf{bottom:705.373333pt;}
.y19{bottom:708.733333pt;}
.yc4{bottom:709.693333pt;}
.yec{bottom:712.093333pt;}
.y91{bottom:712.733333pt;}
.yae{bottom:722.333333pt;}
.y18{bottom:725.693333pt;}
.yc3{bottom:726.173333pt;}
.yeb{bottom:729.053333pt;}
.y90{bottom:733.053333pt;}
.yad{bottom:739.133333pt;}
.yc2{bottom:741.533333pt;}
.y17{bottom:742.173333pt;}
.y4c{bottom:742.493333pt;}
.yea{bottom:745.853333pt;}
.y8f{bottom:750.013333pt;}
.yac{bottom:755.933333pt;}
.y16{bottom:757.533333pt;}
.y4b{bottom:759.453333pt;}
.yc1{bottom:762.013333pt;}
.ye9{bottom:762.813333pt;}
.y8e{bottom:767.013333pt;}
.y15{bottom:772.773333pt;}
.yab{bottom:772.933333pt;}
.y4a{bottom:776.293333pt;}
.ye8{bottom:779.653333pt;}
.y8d{bottom:783.813333pt;}
.y14{bottom:788.133333pt;}
.yaa{bottom:792.933333pt;}
.y49{bottom:793.093333pt;}
.ye7{bottom:796.453333pt;}
.y8c{bottom:800.293333pt;}
.y13{bottom:803.493333pt;}
.y48{bottom:810.053333pt;}
.ya9{bottom:813.253333pt;}
.ye6{bottom:813.413333pt;}
.y8b{bottom:815.653333pt;}
.y12{bottom:818.853333pt;}
.y47{bottom:826.853333pt;}
.ya8{bottom:833.413333pt;}
.y11{bottom:834.213333pt;}
.y8a{bottom:839.013333pt;}
.y46{bottom:843.813333pt;}
.y10{bottom:850.213333pt;}
.ya7{bottom:853.733333pt;}
.y45{bottom:860.613333pt;}
.ya6{bottom:873.893333pt;}
.y44{bottom:877.413333pt;}
.yf{bottom:886.693333pt;}
.ya5{bottom:894.213333pt;}
.y43{bottom:894.373333pt;}
.ye{bottom:903.493333pt;}
.y42{bottom:911.173333pt;}
.ya4{bottom:914.373333pt;}
.yd{bottom:920.613333pt;}
.y41{bottom:928.133333pt;}
.y71{bottom:934.693333pt;}
.yc{bottom:939.013333pt;}
.y40{bottom:944.933333pt;}
.y70{bottom:954.853333pt;}
.yb{bottom:957.413333pt;}
.y3f{bottom:961.733333pt;}
.y6f{bottom:975.173333pt;}
.ya{bottom:975.813333pt;}
.y3e{bottom:978.693333pt;}
.y9{bottom:994.213333pt;}
.y6e{bottom:995.333333pt;}
.y3d{bottom:995.493333pt;}
.y4{bottom:1023.680000pt;}
.y3c{bottom:1027.680000pt;}
.y1{bottom:1036.800000pt;}
.y3b{bottom:1040.800000pt;}
.y3a{bottom:1059.680000pt;}
.h6{height:5.025000pt;}
.hd{height:15.360000pt;}
.h5{height:16.960000pt;}
.hf{height:20.160000pt;}
.he{height:20.320000pt;}
.h7{height:31.406250pt;}
.h2{height:37.760000pt;}
.h4{height:52.134375pt;}
.h10{height:52.785000pt;}
.h3{height:53.535000pt;}
.h9{height:57.787500pt;}
.hb{height:59.340000pt;}
.hc{height:61.295000pt;}
.ha{height:62.812500pt;}
.h8{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:140.640000pt;}
.wb{width:150.266667pt;}
.wa{width:150.400000pt;}
.wc{width:150.426667pt;}
.w5{width:287.386667pt;}
.w8{width:302.426667pt;}
.w9{width:302.466667pt;}
.w6{width:317.506667pt;}
.w3{width:483.293333pt;}
.w7{width:604.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x4{left:27.560000pt;}
.x1{left:84.992000pt;}
.x6{left:94.591988pt;}
.x21{left:100.511988pt;}
.x1c{left:109.951988pt;}
.x11{left:113.471988pt;}
.x1f{left:116.191988pt;}
.xd{left:119.871988pt;}
.x23{left:122.911988pt;}
.x2{left:133.274667pt;}
.x14{left:139.354667pt;}
.x24{left:142.586655pt;}
.x19{left:149.306655pt;}
.x10{left:156.186655pt;}
.xe{left:178.746655pt;}
.x12{left:185.466655pt;}
.x3{left:225.626667pt;}
.x13{left:236.346655pt;}
.x1a{left:246.266667pt;}
.x22{left:257.026655pt;}
.x5{left:262.466667pt;}
.x15{left:288.546667pt;}
.x16{left:295.266667pt;}
.xf{left:299.106655pt;}
.x1d{left:300.066655pt;}
.x9{left:303.426667pt;}
.xa{left:310.146667pt;}
.x18{left:358.146655pt;}
.xb{left:359.906655pt;}
.x8{left:381.986667pt;}
.xc{left:397.026655pt;}
.x17{left:507.933322pt;}
.x1b{left:548.253333pt;}
.x1e{left:635.173322pt;}
.x20{left:702.693322pt;}
}




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