
    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_baf59c2bee98551c65309a66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dc62af5ec4bbcad7c7c5aa08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fa7b423a9c80d6e0e866719b.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_7318aedf63ffd6c21b6bb35e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1261abc918e59eea3c9214cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_f8cffe756555c72891e40388.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_c5841009b95f1286877f3f92.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_deca1633a6e69727b298fd4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d79e5d52faf4ce9720352876.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls7{letter-spacing:-0.774000px;}
.lsf{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.272400px;}
.lsa{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.058320px;}
.lsb{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.156000px;}
.ls3{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.180000px;}
.lse{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.720000px;}
.lsd{letter-spacing:2.340000px;}
.ls12{letter-spacing:11.466720px;}
.ls11{letter-spacing:41.850720px;}
.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;}
}
.ws0{word-spacing:-23.940000px;}
.ws1{word-spacing:-23.921280px;}
.ws3{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.120000px;}
.wsc{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.wsa{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2912.842080px;}
._2{margin-left:-1386.118080px;}
._5{margin-left:-1021.930560px;}
._4{margin-left:-989.539200px;}
._6{margin-left:-512.988480px;}
._3{margin-left:-8.213760px;}
._7{margin-left:-5.950080px;}
._11{margin-left:-4.460880px;}
._8{margin-left:-3.337440px;}
._0{margin-left:-1.347840px;}
._9{width:1.265520px;}
._e{width:2.621280px;}
._c{width:3.717360px;}
._10{width:4.735440px;}
._d{width:6.633360px;}
._13{width:8.366400px;}
._b{width:10.218960px;}
._a{width:11.523120px;}
._14{width:12.549600px;}
._f{width:13.565520px;}
._12{width:104.358240px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:5.760000px;}
.yf{bottom:6.300000px;}
.y28{bottom:18.180000px;}
.y1c{bottom:34.560000px;}
.y27{bottom:39.960000px;}
.y1b{bottom:54.360000px;}
.y6{bottom:60.156000px;}
.y26{bottom:61.740000px;}
.y7{bottom:66.096000px;}
.y1a{bottom:74.340000px;}
.y25{bottom:83.520000px;}
.y46{bottom:92.736000px;}
.y7c{bottom:93.636000px;}
.y19{bottom:94.140000px;}
.y7b{bottom:98.856000px;}
.y24{bottom:105.480000px;}
.y45{bottom:112.536000px;}
.y18{bottom:113.940000px;}
.yb0{bottom:114.696000px;}
.y44{bottom:117.756000px;}
.yaf{bottom:119.916000px;}
.y23{bottom:127.260000px;}
.yd4{bottom:133.596000px;}
.y17{bottom:133.740000px;}
.y7a{bottom:135.756000px;}
.yae{bottom:140.976000px;}
.ye1{bottom:142.776000px;}
.y43{bottom:144.396000px;}
.y22{bottom:149.040000px;}
.y16{bottom:153.540000px;}
.y79{bottom:155.550000px;}
.yad{bottom:156.810000px;}
.yac{bottom:162.030000px;}
.ye0{bottom:162.750000px;}
.y42{bottom:164.190000px;}
.y21{bottom:170.820000px;}
.y15{bottom:173.520000px;}
.yd3{bottom:173.550000px;}
.y78{bottom:175.350000px;}
.yab{bottom:177.870000px;}
.ydf{bottom:182.550000px;}
.yaa{bottom:183.090000px;}
.y41{bottom:184.170000px;}
.yd2{bottom:193.350000px;}
.y14{bottom:193.365000px;}
.ya9{bottom:198.930000px;}
.yde{bottom:202.350000px;}
.y77{bottom:204.150000px;}
.y40{bottom:204.870000px;}
.y20{bottom:207.765000px;}
.y3f{bottom:210.090000px;}
.yd1{bottom:213.150000px;}
.y13{bottom:213.165000px;}
.ya8{bottom:219.990000px;}
.ydd{bottom:222.150000px;}
.y3e{bottom:223.770000px;}
.y76{bottom:223.950000px;}
.y1f{bottom:229.545000px;}
.yd0{bottom:232.950000px;}
.y12{bottom:232.965000px;}
.ya7{bottom:241.050000px;}
.ydc{bottom:241.950000px;}
.y75{bottom:243.930000px;}
.ya6{bottom:246.270000px;}
.y1e{bottom:251.325000px;}
.y11{bottom:252.765000px;}
.y3d{bottom:255.270000px;}
.ycf{bottom:261.930000px;}
.ya5{bottom:262.110000px;}
.y74{bottom:263.730000px;}
.ya4{bottom:267.330000px;}
.y3c{bottom:275.295000px;}
.ya3{bottom:281.055000px;}
.ycd{bottom:281.775000px;}
.y73{bottom:283.575000px;}
.yce{bottom:286.995000px;}
.y3b{bottom:295.095000px;}
.ycc{bottom:301.575000px;}
.y72{bottom:303.375000px;}
.y3a{bottom:314.895000px;}
.ycb{bottom:321.375000px;}
.y71{bottom:323.175000px;}
.ya1{bottom:332.175000px;}
.y39{bottom:334.695000px;}
.ya2{bottom:337.395000px;}
.yca{bottom:341.175000px;}
.y70{bottom:343.155000px;}
.ya0{bottom:352.155000px;}
.y38{bottom:354.495000px;}
.yc9{bottom:361.155000px;}
.y6f{bottom:362.955000px;}
.y9f{bottom:371.955000px;}
.y37{bottom:374.475000px;}
.yc8{bottom:380.955000px;}
.y6e{bottom:382.755000px;}
.y9d{bottom:391.755000px;}
.y36{bottom:394.275000px;}
.y9e{bottom:396.975000px;}
.yc7{bottom:400.755000px;}
.y6d{bottom:402.555000px;}
.y9c{bottom:411.555000px;}
.y35{bottom:414.075000px;}
.yc6{bottom:420.555000px;}
.y6c{bottom:422.355000px;}
.y9b{bottom:431.355000px;}
.y33{bottom:433.875000px;}
.y34{bottom:439.095000px;}
.yc5{bottom:440.355000px;}
.y6b{bottom:451.335000px;}
.y32{bottom:453.675000px;}
.ydb{bottom:460.335000px;}
.yc4{bottom:469.335000px;}
.y6a{bottom:471.135000px;}
.y31{bottom:473.655000px;}
.yda{bottom:480.135000px;}
.yc3{bottom:489.135000px;}
.y69{bottom:490.935000px;}
.y30{bottom:493.455000px;}
.yd9{bottom:499.935000px;}
.yc2{bottom:508.935000px;}
.y68{bottom:510.735000px;}
.y2f{bottom:513.255000px;}
.y9a{bottom:519.735000px;}
.yc1{bottom:528.735000px;}
.y67{bottom:530.535000px;}
.y2e{bottom:533.055000px;}
.y99{bottom:539.535000px;}
.yc0{bottom:548.535000px;}
.y66{bottom:550.515000px;}
.y2d{bottom:552.855000px;}
.y98{bottom:559.545000px;}
.ybf{bottom:568.545000px;}
.y65{bottom:570.345000px;}
.y2c{bottom:572.865000px;}
.y96{bottom:579.345000px;}
.y97{bottom:584.565000px;}
.ybe{bottom:588.345000px;}
.y64{bottom:590.145000px;}
.y2b{bottom:592.665000px;}
.y95{bottom:599.145000px;}
.ybc{bottom:608.145000px;}
.y63{bottom:609.945000px;}
.y2a{bottom:612.465000px;}
.ybd{bottom:613.365000px;}
.y93{bottom:618.945000px;}
.y94{bottom:624.165000px;}
.ybb{bottom:627.945000px;}
.y62{bottom:629.745000px;}
.y29{bottom:632.265000px;}
.y92{bottom:638.745000px;}
.yba{bottom:647.745000px;}
.y10{bottom:648.645000px;}
.y61{bottom:649.725000px;}
.y91{bottom:658.725000px;}
.yb9{bottom:667.725000px;}
.y60{bottom:669.525000px;}
.y90{bottom:678.525000px;}
.yb8{bottom:687.525000px;}
.y5f{bottom:689.325000px;}
.y8f{bottom:698.325000px;}
.yb7{bottom:707.325000px;}
.y5e{bottom:718.125000px;}
.yb6{bottom:727.125000px;}
.y5d{bottom:737.925000px;}
.y8e{bottom:746.925000px;}
.y5c{bottom:757.725000px;}
.y8d{bottom:766.725000px;}
.yd8{bottom:775.725000px;}
.y5b{bottom:777.705000px;}
.y8c{bottom:786.705000px;}
.yb5{bottom:795.705000px;}
.y5a{bottom:797.505000px;}
.y8b{bottom:806.505000px;}
.yb4{bottom:815.505000px;}
.y59{bottom:817.305000px;}
.y8a{bottom:826.305000px;}
.yb3{bottom:835.305000px;}
.y58{bottom:837.105000px;}
.ye7{bottom:842.910000px;}
.y89{bottom:846.150000px;}
.yb2{bottom:855.150000px;}
.ye6{bottom:864.150000px;}
.y57{bottom:865.950000px;}
.y87{bottom:874.950000px;}
.y88{bottom:880.170000px;}
.ye5{bottom:883.950000px;}
.y56{bottom:885.930000px;}
.y86{bottom:894.930000px;}
.yd7{bottom:900.150000px;}
.ye4{bottom:903.930000px;}
.y55{bottom:905.730000px;}
.y85{bottom:914.730000px;}
.ye{bottom:917.790000px;}
.ye3{bottom:923.730000px;}
.y54{bottom:925.530000px;}
.y83{bottom:934.530000px;}
.y84{bottom:939.750000px;}
.ye2{bottom:943.530000px;}
.yd{bottom:947.670000px;}
.y53{bottom:954.330000px;}
.yd6{bottom:963.330000px;}
.yc{bottom:972.690000px;}
.y52{bottom:974.130000px;}
.yd5{bottom:983.130000px;}
.ya{bottom:987.810000px;}
.yb{bottom:993.750000px;}
.y51{bottom:994.110000px;}
.yb1{bottom:1003.110000px;}
.y9{bottom:1009.050000px;}
.y50{bottom:1013.910000px;}
.y81{bottom:1022.910000px;}
.y82{bottom:1028.130000px;}
.y8{bottom:1032.630000px;}
.y4f{bottom:1033.710000px;}
.y80{bottom:1042.710000px;}
.y4e{bottom:1053.510000px;}
.y7f{bottom:1062.510000px;}
.y5{bottom:1070.970000px;}
.y4d{bottom:1073.310000px;}
.y7e{bottom:1082.310000px;}
.y4{bottom:1100.130000px;}
.y4b{bottom:1102.290000px;}
.y4c{bottom:1107.510000px;}
.y4a{bottom:1122.120000px;}
.y3{bottom:1129.320000px;}
.y49{bottom:1141.920000px;}
.y7d{bottom:1147.140000px;}
.y2{bottom:1158.660000px;}
.y48{bottom:1161.720000px;}
.y1{bottom:1189.260000px;}
.y47{bottom:1193.400000px;}
.h9{height:21.780000px;}
.h8{height:27.147656px;}
.h5{height:29.464453px;}
.hd{height:38.671172px;}
.hb{height:41.726953px;}
.h7{height:42.164648px;}
.h12{height:43.506914px;}
.hf{height:43.681992px;}
.h3{height:46.251562px;}
.h4{height:46.736719px;}
.h10{height:49.299609px;}
.h2{height:59.436914px;}
.he{height:59.439023px;}
.h11{height:59.551172px;}
.hc{height:65.884219px;}
.h6{height:67.565039px;}
.ha{height:266.790000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:169.950000px;}
.w4{width:625.605000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x6{left:48.780000px;}
.x1{left:54.179987px;}
.xb{left:58.859987px;}
.x1c{left:63.719987px;}
.x22{left:80.999987px;}
.x23{left:108.035987px;}
.x20{left:143.675973px;}
.x17{left:152.309973px;}
.x21{left:153.389987px;}
.x18{left:157.169987px;}
.xd{left:227.369973px;}
.xe{left:232.229987px;}
.xa{left:270.029987px;}
.x1f{left:279.929987px;}
.x19{left:301.574973px;}
.x4{left:311.114973px;}
.x5{left:316.334987px;}
.x1a{left:362.414973px;}
.x1b{left:372.134987px;}
.x11{left:382.754973px;}
.x12{left:387.614987px;}
.x1d{left:472.574973px;}
.x1e{left:482.294987px;}
.x15{left:484.994973px;}
.x16{left:489.854987px;}
.xf{left:593.564973px;}
.x10{left:598.424987px;}
.x8{left:674.385000px;}
.x13{left:791.789973px;}
.x14{left:796.649987px;}
.xc{left:828.869973px;}
.x2{left:833.009973px;}
.x9{left:834.269973px;}
.x3{left:838.229987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls7{letter-spacing:-0.688000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.242133pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.051840pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.138667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.640000pt;}
.lsd{letter-spacing:2.080000pt;}
.ls12{letter-spacing:10.192640pt;}
.ls11{letter-spacing:37.200640pt;}
.ws0{word-spacing:-21.280000pt;}
.ws1{word-spacing:-21.263360pt;}
.ws3{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-2589.192960pt;}
._2{margin-left:-1232.104960pt;}
._5{margin-left:-908.382720pt;}
._4{margin-left:-879.590400pt;}
._6{margin-left:-455.989760pt;}
._3{margin-left:-7.301120pt;}
._7{margin-left:-5.288960pt;}
._11{margin-left:-3.965227pt;}
._8{margin-left:-2.966613pt;}
._0{margin-left:-1.198080pt;}
._9{width:1.124907pt;}
._e{width:2.330027pt;}
._c{width:3.304320pt;}
._10{width:4.209280pt;}
._d{width:5.896320pt;}
._13{width:7.436800pt;}
._b{width:9.083520pt;}
._a{width:10.242773pt;}
._14{width:11.155200pt;}
._f{width:12.058240pt;}
._12{width:92.762880pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:5.120000pt;}
.yf{bottom:5.600000pt;}
.y28{bottom:16.160000pt;}
.y1c{bottom:30.720000pt;}
.y27{bottom:35.520000pt;}
.y1b{bottom:48.320000pt;}
.y6{bottom:53.472000pt;}
.y26{bottom:54.880000pt;}
.y7{bottom:58.752000pt;}
.y1a{bottom:66.080000pt;}
.y25{bottom:74.240000pt;}
.y46{bottom:82.432000pt;}
.y7c{bottom:83.232000pt;}
.y19{bottom:83.680000pt;}
.y7b{bottom:87.872000pt;}
.y24{bottom:93.760000pt;}
.y45{bottom:100.032000pt;}
.y18{bottom:101.280000pt;}
.yb0{bottom:101.952000pt;}
.y44{bottom:104.672000pt;}
.yaf{bottom:106.592000pt;}
.y23{bottom:113.120000pt;}
.yd4{bottom:118.752000pt;}
.y17{bottom:118.880000pt;}
.y7a{bottom:120.672000pt;}
.yae{bottom:125.312000pt;}
.ye1{bottom:126.912000pt;}
.y43{bottom:128.352000pt;}
.y22{bottom:132.480000pt;}
.y16{bottom:136.480000pt;}
.y79{bottom:138.266667pt;}
.yad{bottom:139.386667pt;}
.yac{bottom:144.026667pt;}
.ye0{bottom:144.666667pt;}
.y42{bottom:145.946667pt;}
.y21{bottom:151.840000pt;}
.y15{bottom:154.240000pt;}
.yd3{bottom:154.266667pt;}
.y78{bottom:155.866667pt;}
.yab{bottom:158.106667pt;}
.ydf{bottom:162.266667pt;}
.yaa{bottom:162.746667pt;}
.y41{bottom:163.706667pt;}
.yd2{bottom:171.866667pt;}
.y14{bottom:171.880000pt;}
.ya9{bottom:176.826667pt;}
.yde{bottom:179.866667pt;}
.y77{bottom:181.466667pt;}
.y40{bottom:182.106667pt;}
.y20{bottom:184.680000pt;}
.y3f{bottom:186.746667pt;}
.yd1{bottom:189.466667pt;}
.y13{bottom:189.480000pt;}
.ya8{bottom:195.546667pt;}
.ydd{bottom:197.466667pt;}
.y3e{bottom:198.906667pt;}
.y76{bottom:199.066667pt;}
.y1f{bottom:204.040000pt;}
.yd0{bottom:207.066667pt;}
.y12{bottom:207.080000pt;}
.ya7{bottom:214.266667pt;}
.ydc{bottom:215.066667pt;}
.y75{bottom:216.826667pt;}
.ya6{bottom:218.906667pt;}
.y1e{bottom:223.400000pt;}
.y11{bottom:224.680000pt;}
.y3d{bottom:226.906667pt;}
.ycf{bottom:232.826667pt;}
.ya5{bottom:232.986667pt;}
.y74{bottom:234.426667pt;}
.ya4{bottom:237.626667pt;}
.y3c{bottom:244.706667pt;}
.ya3{bottom:249.826667pt;}
.ycd{bottom:250.466667pt;}
.y73{bottom:252.066667pt;}
.yce{bottom:255.106667pt;}
.y3b{bottom:262.306667pt;}
.ycc{bottom:268.066667pt;}
.y72{bottom:269.666667pt;}
.y3a{bottom:279.906667pt;}
.ycb{bottom:285.666667pt;}
.y71{bottom:287.266667pt;}
.ya1{bottom:295.266667pt;}
.y39{bottom:297.506667pt;}
.ya2{bottom:299.906667pt;}
.yca{bottom:303.266667pt;}
.y70{bottom:305.026667pt;}
.ya0{bottom:313.026667pt;}
.y38{bottom:315.106667pt;}
.yc9{bottom:321.026667pt;}
.y6f{bottom:322.626667pt;}
.y9f{bottom:330.626667pt;}
.y37{bottom:332.866667pt;}
.yc8{bottom:338.626667pt;}
.y6e{bottom:340.226667pt;}
.y9d{bottom:348.226667pt;}
.y36{bottom:350.466667pt;}
.y9e{bottom:352.866667pt;}
.yc7{bottom:356.226667pt;}
.y6d{bottom:357.826667pt;}
.y9c{bottom:365.826667pt;}
.y35{bottom:368.066667pt;}
.yc6{bottom:373.826667pt;}
.y6c{bottom:375.426667pt;}
.y9b{bottom:383.426667pt;}
.y33{bottom:385.666667pt;}
.y34{bottom:390.306667pt;}
.yc5{bottom:391.426667pt;}
.y6b{bottom:401.186667pt;}
.y32{bottom:403.266667pt;}
.ydb{bottom:409.186667pt;}
.yc4{bottom:417.186667pt;}
.y6a{bottom:418.786667pt;}
.y31{bottom:421.026667pt;}
.yda{bottom:426.786667pt;}
.yc3{bottom:434.786667pt;}
.y69{bottom:436.386667pt;}
.y30{bottom:438.626667pt;}
.yd9{bottom:444.386667pt;}
.yc2{bottom:452.386667pt;}
.y68{bottom:453.986667pt;}
.y2f{bottom:456.226667pt;}
.y9a{bottom:461.986667pt;}
.yc1{bottom:469.986667pt;}
.y67{bottom:471.586667pt;}
.y2e{bottom:473.826667pt;}
.y99{bottom:479.586667pt;}
.yc0{bottom:487.586667pt;}
.y66{bottom:489.346667pt;}
.y2d{bottom:491.426667pt;}
.y98{bottom:497.373333pt;}
.ybf{bottom:505.373333pt;}
.y65{bottom:506.973333pt;}
.y2c{bottom:509.213333pt;}
.y96{bottom:514.973333pt;}
.y97{bottom:519.613333pt;}
.ybe{bottom:522.973333pt;}
.y64{bottom:524.573333pt;}
.y2b{bottom:526.813333pt;}
.y95{bottom:532.573333pt;}
.ybc{bottom:540.573333pt;}
.y63{bottom:542.173333pt;}
.y2a{bottom:544.413333pt;}
.ybd{bottom:545.213333pt;}
.y93{bottom:550.173333pt;}
.y94{bottom:554.813333pt;}
.ybb{bottom:558.173333pt;}
.y62{bottom:559.773333pt;}
.y29{bottom:562.013333pt;}
.y92{bottom:567.773333pt;}
.yba{bottom:575.773333pt;}
.y10{bottom:576.573333pt;}
.y61{bottom:577.533333pt;}
.y91{bottom:585.533333pt;}
.yb9{bottom:593.533333pt;}
.y60{bottom:595.133333pt;}
.y90{bottom:603.133333pt;}
.yb8{bottom:611.133333pt;}
.y5f{bottom:612.733333pt;}
.y8f{bottom:620.733333pt;}
.yb7{bottom:628.733333pt;}
.y5e{bottom:638.333333pt;}
.yb6{bottom:646.333333pt;}
.y5d{bottom:655.933333pt;}
.y8e{bottom:663.933333pt;}
.y5c{bottom:673.533333pt;}
.y8d{bottom:681.533333pt;}
.yd8{bottom:689.533333pt;}
.y5b{bottom:691.293333pt;}
.y8c{bottom:699.293333pt;}
.yb5{bottom:707.293333pt;}
.y5a{bottom:708.893333pt;}
.y8b{bottom:716.893333pt;}
.yb4{bottom:724.893333pt;}
.y59{bottom:726.493333pt;}
.y8a{bottom:734.493333pt;}
.yb3{bottom:742.493333pt;}
.y58{bottom:744.093333pt;}
.ye7{bottom:749.253333pt;}
.y89{bottom:752.133333pt;}
.yb2{bottom:760.133333pt;}
.ye6{bottom:768.133333pt;}
.y57{bottom:769.733333pt;}
.y87{bottom:777.733333pt;}
.y88{bottom:782.373333pt;}
.ye5{bottom:785.733333pt;}
.y56{bottom:787.493333pt;}
.y86{bottom:795.493333pt;}
.yd7{bottom:800.133333pt;}
.ye4{bottom:803.493333pt;}
.y55{bottom:805.093333pt;}
.y85{bottom:813.093333pt;}
.ye{bottom:815.813333pt;}
.ye3{bottom:821.093333pt;}
.y54{bottom:822.693333pt;}
.y83{bottom:830.693333pt;}
.y84{bottom:835.333333pt;}
.ye2{bottom:838.693333pt;}
.yd{bottom:842.373333pt;}
.y53{bottom:848.293333pt;}
.yd6{bottom:856.293333pt;}
.yc{bottom:864.613333pt;}
.y52{bottom:865.893333pt;}
.yd5{bottom:873.893333pt;}
.ya{bottom:878.053333pt;}
.yb{bottom:883.333333pt;}
.y51{bottom:883.653333pt;}
.yb1{bottom:891.653333pt;}
.y9{bottom:896.933333pt;}
.y50{bottom:901.253333pt;}
.y81{bottom:909.253333pt;}
.y82{bottom:913.893333pt;}
.y8{bottom:917.893333pt;}
.y4f{bottom:918.853333pt;}
.y80{bottom:926.853333pt;}
.y4e{bottom:936.453333pt;}
.y7f{bottom:944.453333pt;}
.y5{bottom:951.973333pt;}
.y4d{bottom:954.053333pt;}
.y7e{bottom:962.053333pt;}
.y4{bottom:977.893333pt;}
.y4b{bottom:979.813333pt;}
.y4c{bottom:984.453333pt;}
.y4a{bottom:997.440000pt;}
.y3{bottom:1003.840000pt;}
.y49{bottom:1015.040000pt;}
.y7d{bottom:1019.680000pt;}
.y2{bottom:1029.920000pt;}
.y48{bottom:1032.640000pt;}
.y1{bottom:1057.120000pt;}
.y47{bottom:1060.800000pt;}
.h9{height:19.360000pt;}
.h8{height:24.131250pt;}
.h5{height:26.190625pt;}
.hd{height:34.374375pt;}
.hb{height:37.090625pt;}
.h7{height:37.479688pt;}
.h12{height:38.672812pt;}
.hf{height:38.828437pt;}
.h3{height:41.112500pt;}
.h4{height:41.543750pt;}
.h10{height:43.821875pt;}
.h2{height:52.832812pt;}
.he{height:52.834688pt;}
.h11{height:52.934375pt;}
.hc{height:58.563750pt;}
.h6{height:60.057813pt;}
.ha{height:237.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:151.066667pt;}
.w4{width:556.093333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x6{left:43.360000pt;}
.x1{left:48.159988pt;}
.xb{left:52.319988pt;}
.x1c{left:56.639988pt;}
.x22{left:71.999988pt;}
.x23{left:96.031988pt;}
.x20{left:127.711976pt;}
.x17{left:135.386643pt;}
.x21{left:136.346655pt;}
.x18{left:139.706655pt;}
.xd{left:202.106643pt;}
.xe{left:206.426655pt;}
.xa{left:240.026655pt;}
.x1f{left:248.826655pt;}
.x19{left:268.066643pt;}
.x4{left:276.546643pt;}
.x5{left:281.186655pt;}
.x1a{left:322.146643pt;}
.x1b{left:330.786655pt;}
.x11{left:340.226643pt;}
.x12{left:344.546655pt;}
.x1d{left:420.066643pt;}
.x1e{left:428.706655pt;}
.x15{left:431.106643pt;}
.x16{left:435.426655pt;}
.xf{left:527.613310pt;}
.x10{left:531.933322pt;}
.x8{left:599.453333pt;}
.x13{left:703.813310pt;}
.x14{left:708.133322pt;}
.xc{left:736.773310pt;}
.x2{left:740.453310pt;}
.x9{left:741.573310pt;}
.x3{left:745.093322pt;}
}




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