
    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_47fe90f9fcda346123244fc5.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_4c85d5737fb9ea8884bd06d5.woff2')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_a4ee9bd64778f683cd04aab0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_501a68f5b31ae2771897e935.woff2')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_03a1a327ebad222c6385cae1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_bc356e6d8bc3eb543e5d9a36.woff2')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_87368eb7507a85f2d6b9a803.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,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);}
.m3{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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-1.176000px;}
.lsd{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.666000px;}
.lsc{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.206400px;}
.ls15{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.ls19{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.460200px;}
.lse{letter-spacing:0.513600px;}
.ls1a{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.666000px;}
.ls9{letter-spacing:0.828000px;}
.ls8{letter-spacing:1.080000px;}
.ls13{letter-spacing:10.746720px;}
.ls12{letter-spacing:11.466720px;}
.ls11{letter-spacing:41.130720px;}
.ls10{letter-spacing:41.850720px;}
.lsf{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-24.300000px;}
.ws0{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.020000px;}
.ws9{word-spacing:-15.768000px;}
.wsa{word-spacing:-15.606000px;}
.ws16{word-spacing:-15.552000px;}
.ws14{word-spacing:-15.453600px;}
.ws18{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.384000px;}
.ws7{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.146400px;}
.ws19{word-spacing:-15.093600px;}
.ws5{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.479800px;}
.ws12{word-spacing:-14.274000px;}
.wse{word-spacing:-13.860000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._2{margin-left:-2539.120320px;}
._3{margin-left:-1446.671520px;}
._5{margin-left:-1441.504320px;}
._4{margin-left:-994.312800px;}
._6{margin-left:-575.331360px;}
._7{margin-left:-8.036160px;}
._8{margin-left:-4.364400px;}
._d{margin-left:-2.868000px;}
._1{margin-left:-1.627920px;}
._0{width:1.244880px;}
._c{width:2.547840px;}
._e{width:4.233840px;}
._f{width:5.318640px;}
._10{width:6.454080px;}
._11{width:7.529760px;}
._14{width:9.262800px;}
._12{width:10.936080px;}
._13{width:12.375360px;}
._16{width:13.512480px;}
._9{width:16.949520px;}
._18{width:17.978160px;}
._15{width:19.879680px;}
._1d{width:21.649440px;}
._1a{width:23.626560px;}
._19{width:24.672000px;}
._1f{width:26.171040px;}
._1c{width:27.480000px;}
._17{width:28.560720px;}
._1b{width:29.564640px;}
._1e{width:30.701520px;}
._a{width:31.852560px;}
._b{width:33.337440px;}
.fc4{color:rgb(0,0,4);}
.fc3{color:rgb(36,72,95);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:3.780000px;}
.y8f{bottom:5.760000px;}
.y91{bottom:6.120000px;}
.y75{bottom:10.080000px;}
.y77{bottom:10.260000px;}
.ya2{bottom:10.434000px;}
.y79{bottom:10.440000px;}
.y90{bottom:10.620000px;}
.y97{bottom:10.665000px;}
.yd6{bottom:11.196000px;}
.y8d{bottom:18.720000px;}
.y89{bottom:20.880000px;}
.yd5{bottom:30.996000px;}
.yd2{bottom:34.770000px;}
.ya0{bottom:35.814000px;}
.y8c{bottom:35.820000px;}
.y9d{bottom:36.000000px;}
.y95{bottom:36.045000px;}
.yd4{bottom:50.790000px;}
.y6{bottom:61.020000px;}
.yd3{bottom:70.590000px;}
.ya5{bottom:92.880000px;}
.y6b{bottom:94.680000px;}
.ycb{bottom:96.480000px;}
.y33{bottom:97.560000px;}
.ya4{bottom:112.680000px;}
.y6a{bottom:114.480000px;}
.yca{bottom:116.280000px;}
.yd1{bottom:116.820000px;}
.y32{bottom:117.360000px;}
.ya3{bottom:132.516000px;}
.y69{bottom:134.316000px;}
.yc9{bottom:136.116000px;}
.y31{bottom:137.196000px;}
.y9f{bottom:147.816000px;}
.y68{bottom:154.110000px;}
.yc8{bottom:155.910000px;}
.y30{bottom:156.990000px;}
.ya1{bottom:173.190000px;}
.y67{bottom:173.910000px;}
.yc7{bottom:175.890000px;}
.y2f{bottom:176.790000px;}
.y66{bottom:193.890000px;}
.yc6{bottom:195.690000px;}
.y2e{bottom:196.590000px;}
.y9c{bottom:198.570000px;}
.y65{bottom:213.330000px;}
.ycf{bottom:213.690000px;}
.yc5{bottom:215.490000px;}
.y2d{bottom:216.570000px;}
.y9e{bottom:224.130000px;}
.y64{bottom:233.130000px;}
.yce{bottom:233.490000px;}
.yc4{bottom:235.290000px;}
.y2c{bottom:236.370000px;}
.y9a{bottom:249.510000px;}
.y63{bottom:253.290000px;}
.yc3{bottom:255.090000px;}
.y2b{bottom:256.170000px;}
.y62{bottom:273.090000px;}
.y9b{bottom:274.890000px;}
.yc2{bottom:275.070000px;}
.y2a{bottom:275.970000px;}
.y61{bottom:293.070000px;}
.yc1{bottom:294.870000px;}
.y29{bottom:295.770000px;}
.y98{bottom:300.270000px;}
.y60{bottom:312.870000px;}
.yc0{bottom:314.670000px;}
.y28{bottom:315.750000px;}
.y99{bottom:325.830000px;}
.y5f{bottom:332.670000px;}
.ybf{bottom:334.470000px;}
.y27{bottom:335.550000px;}
.y94{bottom:351.210000px;}
.y5e{bottom:352.470000px;}
.ybe{bottom:354.270000px;}
.y26{bottom:355.350000px;}
.y5d{bottom:372.270000px;}
.ybd{bottom:374.250000px;}
.y25{bottom:375.150000px;}
.y96{bottom:376.590000px;}
.y5c{bottom:392.295000px;}
.ybc{bottom:394.095000px;}
.y24{bottom:394.995000px;}
.y92{bottom:402.195000px;}
.y5b{bottom:412.095000px;}
.ybb{bottom:413.895000px;}
.y23{bottom:414.975000px;}
.y93{bottom:427.575000px;}
.y5a{bottom:431.895000px;}
.yba{bottom:433.695000px;}
.y22{bottom:434.775000px;}
.y59{bottom:451.695000px;}
.y8b{bottom:452.955000px;}
.yb9{bottom:453.495000px;}
.y21{bottom:454.575000px;}
.y58{bottom:471.135000px;}
.ycd{bottom:471.495000px;}
.yb8{bottom:473.475000px;}
.y20{bottom:474.375000px;}
.y8e{bottom:478.515000px;}
.y57{bottom:491.475000px;}
.yb7{bottom:493.275000px;}
.y1f{bottom:493.815000px;}
.y88{bottom:503.895000px;}
.y56{bottom:511.275000px;}
.yb6{bottom:513.075000px;}
.y1e{bottom:514.155000px;}
.y55{bottom:531.075000px;}
.yb5{bottom:532.875000px;}
.y1d{bottom:536.115000px;}
.y87{bottom:544.575000px;}
.y54{bottom:550.875000px;}
.yb4{bottom:552.675000px;}
.y86{bottom:564.375000px;}
.y1c{bottom:565.095000px;}
.y53{bottom:570.675000px;}
.yb3{bottom:572.655000px;}
.y85{bottom:584.175000px;}
.y1b{bottom:584.895000px;}
.y52{bottom:590.655000px;}
.yb2{bottom:592.455000px;}
.y84{bottom:603.975000px;}
.y1a{bottom:604.695000px;}
.y51{bottom:610.455000px;}
.yb1{bottom:612.255000px;}
.y83{bottom:623.775000px;}
.y19{bottom:624.495000px;}
.y50{bottom:630.255000px;}
.yb0{bottom:631.695000px;}
.y82{bottom:643.785000px;}
.y18{bottom:644.325000px;}
.ycc{bottom:649.725000px;}
.y4f{bottom:650.085000px;}
.yaf{bottom:660.885000px;}
.y81{bottom:663.225000px;}
.y17{bottom:664.305000px;}
.y4e{bottom:669.885000px;}
.yae{bottom:680.865000px;}
.y16{bottom:684.105000px;}
.y4d{bottom:689.865000px;}
.y80{bottom:692.385000px;}
.yad{bottom:700.665000px;}
.y15{bottom:703.905000px;}
.y4c{bottom:709.665000px;}
.y7f{bottom:712.185000px;}
.yac{bottom:720.465000px;}
.y14{bottom:723.705000px;}
.y4b{bottom:729.465000px;}
.y7e{bottom:731.985000px;}
.yab{bottom:740.265000px;}
.y13{bottom:743.505000px;}
.y4a{bottom:749.265000px;}
.y7d{bottom:751.965000px;}
.yaa{bottom:760.065000px;}
.y12{bottom:763.485000px;}
.y49{bottom:769.065000px;}
.y7c{bottom:771.765000px;}
.ya9{bottom:780.045000px;}
.y11{bottom:783.285000px;}
.y7b{bottom:786.885000px;}
.y48{bottom:789.045000px;}
.ya8{bottom:799.485000px;}
.y10{bottom:803.085000px;}
.yd0{bottom:808.485000px;}
.y47{bottom:808.845000px;}
.y7a{bottom:812.625000px;}
.yf{bottom:822.885000px;}
.y46{bottom:828.645000px;}
.y78{bottom:837.825000px;}
.ye{bottom:842.865000px;}
.y45{bottom:848.445000px;}
.y76{bottom:863.385000px;}
.yd{bottom:864.825000px;}
.y44{bottom:868.245000px;}
.y43{bottom:888.270000px;}
.y74{bottom:888.990000px;}
.yc{bottom:889.890000px;}
.yb{bottom:904.830000px;}
.y42{bottom:908.070000px;}
.y73{bottom:918.870000px;}
.ya{bottom:926.070000px;}
.y41{bottom:927.870000px;}
.y72{bottom:938.670000px;}
.y40{bottom:947.670000px;}
.y9{bottom:949.470000px;}
.y71{bottom:958.470000px;}
.ya7{bottom:967.110000px;}
.y3f{bottom:967.470000px;}
.y70{bottom:978.450000px;}
.y8{bottom:981.150000px;}
.ya6{bottom:987.090000px;}
.y3e{bottom:987.450000px;}
.y6f{bottom:998.250000px;}
.y3d{bottom:1007.250000px;}
.y7{bottom:1013.010000px;}
.y6e{bottom:1018.050000px;}
.y3c{bottom:1027.050000px;}
.y6d{bottom:1037.850000px;}
.y3b{bottom:1046.850000px;}
.y5{bottom:1051.890000px;}
.y6c{bottom:1057.290000px;}
.y3a{bottom:1066.650000px;}
.y4{bottom:1082.670000px;}
.y39{bottom:1086.630000px;}
.y38{bottom:1106.430000px;}
.y3{bottom:1113.450000px;}
.y37{bottom:1126.230000px;}
.y2{bottom:1144.080000px;}
.y36{bottom:1146.060000px;}
.y35{bottom:1173.420000px;}
.y1{bottom:1177.740000px;}
.y34{bottom:1193.580000px;}
.h18{height:2.826563px;}
.ha{height:23.760000px;}
.h11{height:23.940000px;}
.hb{height:23.976000px;}
.hc{height:24.120000px;}
.h13{height:24.156000px;}
.he{height:34.380000px;}
.h6{height:38.158594px;}
.h16{height:41.726953px;}
.hf{height:49.320000px;}
.h14{height:49.500000px;}
.h12{height:49.536000px;}
.hd{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.h15{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.h10{height:76.651172px;}
.h17{height:84.276000px;}
.h2{height:96.508125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:64.800000px;}
.wa{width:65.160000px;}
.wb{width:66.276000px;}
.w3{width:71.640000px;}
.w9{width:89.676000px;}
.w7{width:95.076000px;}
.w5{width:108.540000px;}
.w4{width:109.116000px;}
.w6{width:158.790000px;}
.wc{width:210.855000px;}
.wd{width:580.965000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x5{left:52.739987px;}
.x1{left:54.179987px;}
.x2{left:63.359987px;}
.x6{left:67.859987px;}
.x15{left:69.479987px;}
.x14{left:72.719987px;}
.x7{left:74.339987px;}
.x3{left:75.419987px;}
.x4{left:80.999987px;}
.xa{left:86.435987px;}
.x13{left:91.835987px;}
.x16{left:96.515987px;}
.x12{left:129.275987px;}
.xb{left:131.256000px;}
.x17{left:191.370000px;}
.xc{left:239.790000px;}
.x18{left:264.855000px;}
.x8{left:331.815000px;}
.xd{left:398.595000px;}
.x9{left:403.455000px;}
.xe{left:495.105000px;}
.xf{left:562.065000px;}
.x10{left:653.190000px;}
.x11{left:719.790000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-1.045333pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.592000pt;}
.lsc{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls19{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.409067pt;}
.lse{letter-spacing:0.456533pt;}
.ls1a{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls8{letter-spacing:0.960000pt;}
.ls13{letter-spacing:9.552640pt;}
.ls12{letter-spacing:10.192640pt;}
.ls11{letter-spacing:36.560640pt;}
.ls10{letter-spacing:37.200640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws2{word-spacing:-21.600000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.240000pt;}
.ws9{word-spacing:-14.016000pt;}
.wsa{word-spacing:-13.872000pt;}
.ws16{word-spacing:-13.824000pt;}
.ws14{word-spacing:-13.736533pt;}
.ws18{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.674667pt;}
.ws7{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.463467pt;}
.ws19{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.870933pt;}
.ws12{word-spacing:-12.688000pt;}
.wse{word-spacing:-12.320000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._2{margin-left:-2256.995840pt;}
._3{margin-left:-1285.930240pt;}
._5{margin-left:-1281.337173pt;}
._4{margin-left:-883.833600pt;}
._6{margin-left:-511.405653pt;}
._7{margin-left:-7.143253pt;}
._8{margin-left:-3.879467pt;}
._d{margin-left:-2.549333pt;}
._1{margin-left:-1.447040pt;}
._0{width:1.106560pt;}
._c{width:2.264747pt;}
._e{width:3.763413pt;}
._f{width:4.727680pt;}
._10{width:5.736960pt;}
._11{width:6.693120pt;}
._14{width:8.233600pt;}
._12{width:9.720960pt;}
._13{width:11.000320pt;}
._16{width:12.011093pt;}
._9{width:15.066240pt;}
._18{width:15.980587pt;}
._15{width:17.670827pt;}
._1d{width:19.243947pt;}
._1a{width:21.001387pt;}
._19{width:21.930667pt;}
._1f{width:23.263147pt;}
._1c{width:24.426667pt;}
._17{width:25.387307pt;}
._1b{width:26.279680pt;}
._1e{width:27.290240pt;}
._a{width:28.313387pt;}
._b{width:29.633280pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:3.360000pt;}
.y8f{bottom:5.120000pt;}
.y91{bottom:5.440000pt;}
.y75{bottom:8.960000pt;}
.y77{bottom:9.120000pt;}
.ya2{bottom:9.274667pt;}
.y79{bottom:9.280000pt;}
.y90{bottom:9.440000pt;}
.y97{bottom:9.480000pt;}
.yd6{bottom:9.952000pt;}
.y8d{bottom:16.640000pt;}
.y89{bottom:18.560000pt;}
.yd5{bottom:27.552000pt;}
.yd2{bottom:30.906667pt;}
.ya0{bottom:31.834667pt;}
.y8c{bottom:31.840000pt;}
.y9d{bottom:32.000000pt;}
.y95{bottom:32.040000pt;}
.yd4{bottom:45.146667pt;}
.y6{bottom:54.240000pt;}
.yd3{bottom:62.746667pt;}
.ya5{bottom:82.560000pt;}
.y6b{bottom:84.160000pt;}
.ycb{bottom:85.760000pt;}
.y33{bottom:86.720000pt;}
.ya4{bottom:100.160000pt;}
.y6a{bottom:101.760000pt;}
.yca{bottom:103.360000pt;}
.yd1{bottom:103.840000pt;}
.y32{bottom:104.320000pt;}
.ya3{bottom:117.792000pt;}
.y69{bottom:119.392000pt;}
.yc9{bottom:120.992000pt;}
.y31{bottom:121.952000pt;}
.y9f{bottom:131.392000pt;}
.y68{bottom:136.986667pt;}
.yc8{bottom:138.586667pt;}
.y30{bottom:139.546667pt;}
.ya1{bottom:153.946667pt;}
.y67{bottom:154.586667pt;}
.yc7{bottom:156.346667pt;}
.y2f{bottom:157.146667pt;}
.y66{bottom:172.346667pt;}
.yc6{bottom:173.946667pt;}
.y2e{bottom:174.746667pt;}
.y9c{bottom:176.506667pt;}
.y65{bottom:189.626667pt;}
.ycf{bottom:189.946667pt;}
.yc5{bottom:191.546667pt;}
.y2d{bottom:192.506667pt;}
.y9e{bottom:199.226667pt;}
.y64{bottom:207.226667pt;}
.yce{bottom:207.546667pt;}
.yc4{bottom:209.146667pt;}
.y2c{bottom:210.106667pt;}
.y9a{bottom:221.786667pt;}
.y63{bottom:225.146667pt;}
.yc3{bottom:226.746667pt;}
.y2b{bottom:227.706667pt;}
.y62{bottom:242.746667pt;}
.y9b{bottom:244.346667pt;}
.yc2{bottom:244.506667pt;}
.y2a{bottom:245.306667pt;}
.y61{bottom:260.506667pt;}
.yc1{bottom:262.106667pt;}
.y29{bottom:262.906667pt;}
.y98{bottom:266.906667pt;}
.y60{bottom:278.106667pt;}
.yc0{bottom:279.706667pt;}
.y28{bottom:280.666667pt;}
.y99{bottom:289.626667pt;}
.y5f{bottom:295.706667pt;}
.ybf{bottom:297.306667pt;}
.y27{bottom:298.266667pt;}
.y94{bottom:312.186667pt;}
.y5e{bottom:313.306667pt;}
.ybe{bottom:314.906667pt;}
.y26{bottom:315.866667pt;}
.y5d{bottom:330.906667pt;}
.ybd{bottom:332.666667pt;}
.y25{bottom:333.466667pt;}
.y96{bottom:334.746667pt;}
.y5c{bottom:348.706667pt;}
.ybc{bottom:350.306667pt;}
.y24{bottom:351.106667pt;}
.y92{bottom:357.506667pt;}
.y5b{bottom:366.306667pt;}
.ybb{bottom:367.906667pt;}
.y23{bottom:368.866667pt;}
.y93{bottom:380.066667pt;}
.y5a{bottom:383.906667pt;}
.yba{bottom:385.506667pt;}
.y22{bottom:386.466667pt;}
.y59{bottom:401.506667pt;}
.y8b{bottom:402.626667pt;}
.yb9{bottom:403.106667pt;}
.y21{bottom:404.066667pt;}
.y58{bottom:418.786667pt;}
.ycd{bottom:419.106667pt;}
.yb8{bottom:420.866667pt;}
.y20{bottom:421.666667pt;}
.y8e{bottom:425.346667pt;}
.y57{bottom:436.866667pt;}
.yb7{bottom:438.466667pt;}
.y1f{bottom:438.946667pt;}
.y88{bottom:447.906667pt;}
.y56{bottom:454.466667pt;}
.yb6{bottom:456.066667pt;}
.y1e{bottom:457.026667pt;}
.y55{bottom:472.066667pt;}
.yb5{bottom:473.666667pt;}
.y1d{bottom:476.546667pt;}
.y87{bottom:484.066667pt;}
.y54{bottom:489.666667pt;}
.yb4{bottom:491.266667pt;}
.y86{bottom:501.666667pt;}
.y1c{bottom:502.306667pt;}
.y53{bottom:507.266667pt;}
.yb3{bottom:509.026667pt;}
.y85{bottom:519.266667pt;}
.y1b{bottom:519.906667pt;}
.y52{bottom:525.026667pt;}
.yb2{bottom:526.626667pt;}
.y84{bottom:536.866667pt;}
.y1a{bottom:537.506667pt;}
.y51{bottom:542.626667pt;}
.yb1{bottom:544.226667pt;}
.y83{bottom:554.466667pt;}
.y19{bottom:555.106667pt;}
.y50{bottom:560.226667pt;}
.yb0{bottom:561.506667pt;}
.y82{bottom:572.253333pt;}
.y18{bottom:572.733333pt;}
.ycc{bottom:577.533333pt;}
.y4f{bottom:577.853333pt;}
.yaf{bottom:587.453333pt;}
.y81{bottom:589.533333pt;}
.y17{bottom:590.493333pt;}
.y4e{bottom:595.453333pt;}
.yae{bottom:605.213333pt;}
.y16{bottom:608.093333pt;}
.y4d{bottom:613.213333pt;}
.y80{bottom:615.453333pt;}
.yad{bottom:622.813333pt;}
.y15{bottom:625.693333pt;}
.y4c{bottom:630.813333pt;}
.y7f{bottom:633.053333pt;}
.yac{bottom:640.413333pt;}
.y14{bottom:643.293333pt;}
.y4b{bottom:648.413333pt;}
.y7e{bottom:650.653333pt;}
.yab{bottom:658.013333pt;}
.y13{bottom:660.893333pt;}
.y4a{bottom:666.013333pt;}
.y7d{bottom:668.413333pt;}
.yaa{bottom:675.613333pt;}
.y12{bottom:678.653333pt;}
.y49{bottom:683.613333pt;}
.y7c{bottom:686.013333pt;}
.ya9{bottom:693.373333pt;}
.y11{bottom:696.253333pt;}
.y7b{bottom:699.453333pt;}
.y48{bottom:701.373333pt;}
.ya8{bottom:710.653333pt;}
.y10{bottom:713.853333pt;}
.yd0{bottom:718.653333pt;}
.y47{bottom:718.973333pt;}
.y7a{bottom:722.333333pt;}
.yf{bottom:731.453333pt;}
.y46{bottom:736.573333pt;}
.y78{bottom:744.733333pt;}
.ye{bottom:749.213333pt;}
.y45{bottom:754.173333pt;}
.y76{bottom:767.453333pt;}
.yd{bottom:768.733333pt;}
.y44{bottom:771.773333pt;}
.y43{bottom:789.573333pt;}
.y74{bottom:790.213333pt;}
.yc{bottom:791.013333pt;}
.yb{bottom:804.293333pt;}
.y42{bottom:807.173333pt;}
.y73{bottom:816.773333pt;}
.ya{bottom:823.173333pt;}
.y41{bottom:824.773333pt;}
.y72{bottom:834.373333pt;}
.y40{bottom:842.373333pt;}
.y9{bottom:843.973333pt;}
.y71{bottom:851.973333pt;}
.ya7{bottom:859.653333pt;}
.y3f{bottom:859.973333pt;}
.y70{bottom:869.733333pt;}
.y8{bottom:872.133333pt;}
.ya6{bottom:877.413333pt;}
.y3e{bottom:877.733333pt;}
.y6f{bottom:887.333333pt;}
.y3d{bottom:895.333333pt;}
.y7{bottom:900.453333pt;}
.y6e{bottom:904.933333pt;}
.y3c{bottom:912.933333pt;}
.y6d{bottom:922.533333pt;}
.y3b{bottom:930.533333pt;}
.y5{bottom:935.013333pt;}
.y6c{bottom:939.813333pt;}
.y3a{bottom:948.133333pt;}
.y4{bottom:962.373333pt;}
.y39{bottom:965.893333pt;}
.y38{bottom:983.493333pt;}
.y3{bottom:989.733333pt;}
.y37{bottom:1001.093333pt;}
.y2{bottom:1016.960000pt;}
.y36{bottom:1018.720000pt;}
.y35{bottom:1043.040000pt;}
.y1{bottom:1046.880000pt;}
.y34{bottom:1060.960000pt;}
.h18{height:2.512500pt;}
.ha{height:21.120000pt;}
.h11{height:21.280000pt;}
.hb{height:21.312000pt;}
.hc{height:21.440000pt;}
.h13{height:21.472000pt;}
.he{height:30.560000pt;}
.h6{height:33.918750pt;}
.h16{height:37.090625pt;}
.hf{height:43.840000pt;}
.h14{height:44.000000pt;}
.h12{height:44.032000pt;}
.hd{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.h15{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.h10{height:68.134375pt;}
.h17{height:74.912000pt;}
.h2{height:85.785000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:57.600000pt;}
.wa{width:57.920000pt;}
.wb{width:58.912000pt;}
.w3{width:63.680000pt;}
.w9{width:79.712000pt;}
.w7{width:84.512000pt;}
.w5{width:96.480000pt;}
.w4{width:96.992000pt;}
.w6{width:141.146667pt;}
.wc{width:187.426667pt;}
.wd{width:516.413333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x5{left:46.879988pt;}
.x1{left:48.159988pt;}
.x2{left:56.319988pt;}
.x6{left:60.319988pt;}
.x15{left:61.759988pt;}
.x14{left:64.639988pt;}
.x7{left:66.079988pt;}
.x3{left:67.039988pt;}
.x4{left:71.999988pt;}
.xa{left:76.831988pt;}
.x13{left:81.631988pt;}
.x16{left:85.791988pt;}
.x12{left:114.911988pt;}
.xb{left:116.672000pt;}
.x17{left:170.106667pt;}
.xc{left:213.146667pt;}
.x18{left:235.426667pt;}
.x8{left:294.946667pt;}
.xd{left:354.306667pt;}
.x9{left:358.626667pt;}
.xe{left:440.093333pt;}
.xf{left:499.613333pt;}
.x10{left:580.613333pt;}
.x11{left:639.813333pt;}
}




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