
    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_223500e29857fb84d8025e42.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b0dae8a6452ed83c298e1006.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_05dd5fe3ae37ded5d1423c39.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ec77c0369ff42b921c3ce4d0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_95e02c0c268975c6114b8ddd.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_043d20ad7aa4886096af1843.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_34c523e58ba71768be0b9470.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_609942142f4240793fc3e4dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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(0.254175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:6.426720px;}
.ls8{letter-spacing:21.744000px;}
.ls0{letter-spacing:46.944000px;}
.ls6{letter-spacing:618.060000px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws7{word-spacing:-18.036000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-2.302320px;}
._1{margin-left:-1.008000px;}
._0{width:1.020000px;}
._2{width:2.478000px;}
._5{width:3.696000px;}
._7{width:4.823040px;}
._8{width:6.781440px;}
._e{width:7.895520px;}
._6{width:9.008640px;}
._9{width:10.929600px;}
._a{width:12.514080px;}
._b{width:13.860240px;}
._20{width:14.997360px;}
._d{width:16.493760px;}
._18{width:18.091200px;}
._16{width:19.422000px;}
._17{width:21.155040px;}
._c{width:22.649040px;}
._f{width:23.904000px;}
._10{width:25.099200px;}
._3{width:26.959680px;}
._4{width:28.059360px;}
._11{width:29.401920px;}
._27{width:31.076880px;}
._22{width:32.921280px;}
._23{width:34.590000px;}
._1d{width:36.313920px;}
._1c{width:37.608240px;}
._26{width:42.009120px;}
._15{width:43.206480px;}
._14{width:44.513040px;}
._25{width:46.566720px;}
._24{width:47.825280px;}
._13{width:48.875520px;}
._12{width:49.899600px;}
._1f{width:52.660800px;}
._1e{width:54.168240px;}
._1a{width:56.648400px;}
._1b{width:57.668400px;}
._21{width:75.447360px;}
.fc1{color:transparent;}
.fc2{color:rgb(140,140,140);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs2{font-size:108.000000px;}
.y3{bottom:-10.944000px;}
.yc2{bottom:-6.405000px;}
.yc5{bottom:-6.225000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.356000px;}
.y53{bottom:4.716000px;}
.y2{bottom:7.056000px;}
.y50{bottom:8.136000px;}
.ybf{bottom:13.605000px;}
.yc1{bottom:14.295000px;}
.yc4{bottom:14.505000px;}
.y52{bottom:52.740000px;}
.y4f{bottom:57.240000px;}
.y6{bottom:58.356000px;}
.y51{bottom:61.236000px;}
.y7{bottom:80.280000px;}
.y1{bottom:84.060000px;}
.ybd{bottom:101.196000px;}
.y8b{bottom:104.796000px;}
.ybc{bottom:123.156000px;}
.y8a{bottom:124.596000px;}
.y89{bottom:144.396000px;}
.ybb{bottom:144.936000px;}
.y88{bottom:164.190000px;}
.yba{bottom:166.710000px;}
.y87{bottom:184.170000px;}
.y4e{bottom:188.490000px;}
.yf4{bottom:193.890000px;}
.y36{bottom:201.270000px;}
.y86{bottom:203.970000px;}
.y4d{bottom:208.470000px;}
.yb9{bottom:210.450000px;}
.yf3{bottom:213.690000px;}
.y35{bottom:221.070000px;}
.y85{bottom:223.770000px;}
.y4c{bottom:228.270000px;}
.yb8{bottom:232.230000px;}
.yf2{bottom:233.670000px;}
.y34{bottom:240.870000px;}
.y84{bottom:243.570000px;}
.y4b{bottom:248.070000px;}
.yf1{bottom:253.470000px;}
.yb7{bottom:254.010000px;}
.y33{bottom:260.670000px;}
.y83{bottom:263.370000px;}
.y4a{bottom:267.870000px;}
.yf0{bottom:273.270000px;}
.yb6{bottom:275.790000px;}
.y32{bottom:280.650000px;}
.y82{bottom:283.350000px;}
.y49{bottom:287.715000px;}
.yef{bottom:293.115000px;}
.yb5{bottom:297.615000px;}
.y31{bottom:300.495000px;}
.y81{bottom:303.195000px;}
.y48{bottom:307.695000px;}
.yee{bottom:312.915000px;}
.yb4{bottom:319.575000px;}
.y30{bottom:320.295000px;}
.y80{bottom:322.995000px;}
.y47{bottom:327.495000px;}
.yed{bottom:332.895000px;}
.y2f{bottom:340.095000px;}
.yb3{bottom:341.355000px;}
.y7f{bottom:342.795000px;}
.y46{bottom:347.295000px;}
.yec{bottom:352.695000px;}
.y2e{bottom:359.895000px;}
.y7e{bottom:362.595000px;}
.yb2{bottom:363.135000px;}
.y45{bottom:367.095000px;}
.yeb{bottom:372.495000px;}
.y2d{bottom:379.875000px;}
.y7d{bottom:382.575000px;}
.yb1{bottom:384.915000px;}
.y44{bottom:386.895000px;}
.yea{bottom:392.295000px;}
.y2c{bottom:399.675000px;}
.y7c{bottom:402.375000px;}
.y43{bottom:406.875000px;}
.ye9{bottom:412.095000px;}
.y2b{bottom:419.475000px;}
.y7b{bottom:422.175000px;}
.y42{bottom:424.155000px;}
.yb0{bottom:428.655000px;}
.ye8{bottom:432.075000px;}
.y2a{bottom:439.275000px;}
.y41{bottom:441.075000px;}
.y7a{bottom:441.975000px;}
.yaf{bottom:450.435000px;}
.ye7{bottom:451.875000px;}
.y29{bottom:459.075000px;}
.y79{bottom:459.435000px;}
.y40{bottom:462.315000px;}
.yae{bottom:472.215000px;}
.ye6{bottom:472.935000px;}
.y78{bottom:476.715000px;}
.y28{bottom:479.055000px;}
.y3f{bottom:485.355000px;}
.y77{bottom:493.635000px;}
.yad{bottom:493.995000px;}
.ye5{bottom:497.235000px;}
.y27{bottom:498.855000px;}
.y3e{bottom:505.155000px;}
.yac{bottom:515.955000px;}
.y26{bottom:518.655000px;}
.ye4{bottom:520.995000px;}
.y3d{bottom:525.135000px;}
.y76{bottom:528.375000px;}
.yab{bottom:537.735000px;}
.y25{bottom:538.455000px;}
.ye3{bottom:542.775000px;}
.y3c{bottom:544.935000px;}
.y75{bottom:545.655000px;}
.yc0{bottom:556.380000px;}
.y24{bottom:558.255000px;}
.yaa{bottom:559.515000px;}
.y74{bottom:562.935000px;}
.ye2{bottom:564.555000px;}
.y3b{bottom:564.735000px;}
.yc3{bottom:566.820000px;}
.y23{bottom:578.265000px;}
.y73{bottom:580.245000px;}
.y3a{bottom:584.565000px;}
.ye1{bottom:586.365000px;}
.ya9{bottom:595.185000px;}
.y72{bottom:597.525000px;}
.y22{bottom:598.065000px;}
.y39{bottom:604.365000px;}
.ye0{bottom:608.325000px;}
.y71{bottom:614.625000px;}
.ya8{bottom:616.425000px;}
.y21{bottom:618.585000px;}
.y38{bottom:624.345000px;}
.ydf{bottom:630.105000px;}
.y70{bottom:631.905000px;}
.ya7{bottom:639.465000px;}
.y20{bottom:640.905000px;}
.y37{bottom:644.145000px;}
.y6f{bottom:649.185000px;}
.yde{bottom:651.885000px;}
.ya6{bottom:659.265000px;}
.ybe{bottom:660.420000px;}
.y1f{bottom:665.205000px;}
.y6e{bottom:666.465000px;}
.ydd{bottom:673.665000px;}
.ya5{bottom:679.065000px;}
.y6d{bottom:683.745000px;}
.y1e{bottom:688.425000px;}
.ydc{bottom:695.445000px;}
.ya4{bottom:698.865000px;}
.y6c{bottom:701.025000px;}
.y1d{bottom:710.385000px;}
.ydb{bottom:717.405000px;}
.ya3{bottom:718.845000px;}
.y6b{bottom:720.645000px;}
.y1c{bottom:732.165000px;}
.ya2{bottom:738.645000px;}
.yda{bottom:739.185000px;}
.y6a{bottom:740.445000px;}
.y1b{bottom:753.945000px;}
.ya1{bottom:758.445000px;}
.y69{bottom:760.245000px;}
.yd9{bottom:760.965000px;}
.y1a{bottom:775.905000px;}
.ya0{bottom:778.245000px;}
.y68{bottom:780.045000px;}
.yd8{bottom:782.745000px;}
.y19{bottom:797.685000px;}
.y9f{bottom:798.045000px;}
.y67{bottom:800.025000px;}
.yd7{bottom:804.705000px;}
.y9e{bottom:818.025000px;}
.y18{bottom:819.465000px;}
.y66{bottom:819.825000px;}
.yd6{bottom:826.485000px;}
.y9d{bottom:837.825000px;}
.y65{bottom:839.625000px;}
.y17{bottom:841.245000px;}
.yd5{bottom:848.310000px;}
.y9c{bottom:857.670000px;}
.y64{bottom:859.470000px;}
.y16{bottom:863.070000px;}
.yd4{bottom:870.090000px;}
.y9b{bottom:877.470000px;}
.y63{bottom:879.270000px;}
.y15{bottom:885.030000px;}
.yd3{bottom:891.870000px;}
.y9a{bottom:897.270000px;}
.y62{bottom:899.250000px;}
.y14{bottom:906.810000px;}
.yd2{bottom:913.830000px;}
.y99{bottom:917.070000px;}
.y61{bottom:919.050000px;}
.y13{bottom:928.590000px;}
.yd1{bottom:935.610000px;}
.y98{bottom:937.050000px;}
.y60{bottom:938.850000px;}
.y12{bottom:950.370000px;}
.y97{bottom:956.850000px;}
.yd0{bottom:957.390000px;}
.y5f{bottom:958.650000px;}
.y11{bottom:972.330000px;}
.y96{bottom:976.650000px;}
.y5e{bottom:978.450000px;}
.ycf{bottom:979.170000px;}
.y10{bottom:993.030000px;}
.y95{bottom:996.450000px;}
.y5d{bottom:998.430000px;}
.yce{bottom:1001.130000px;}
.yf{bottom:1013.370000px;}
.y94{bottom:1016.250000px;}
.y5c{bottom:1018.230000px;}
.ycd{bottom:1022.910000px;}
.ye{bottom:1035.870000px;}
.y93{bottom:1036.230000px;}
.y5b{bottom:1038.030000px;}
.ycc{bottom:1044.690000px;}
.yd{bottom:1052.250000px;}
.y92{bottom:1056.030000px;}
.y5a{bottom:1057.830000px;}
.ycb{bottom:1066.470000px;}
.yc{bottom:1070.790000px;}
.y91{bottom:1075.830000px;}
.y59{bottom:1077.630000px;}
.yb{bottom:1088.070000px;}
.yca{bottom:1088.250000px;}
.y90{bottom:1095.630000px;}
.y58{bottom:1097.610000px;}
.yc9{bottom:1110.210000px;}
.ya{bottom:1113.990000px;}
.y8f{bottom:1115.430000px;}
.y57{bottom:1117.410000px;}
.yc8{bottom:1132.020000px;}
.y8e{bottom:1135.440000px;}
.y56{bottom:1137.240000px;}
.y9{bottom:1150.380000px;}
.yc7{bottom:1153.800000px;}
.y8d{bottom:1156.500000px;}
.y55{bottom:1157.040000px;}
.yc6{bottom:1175.580000px;}
.y8c{bottom:1176.660000px;}
.y54{bottom:1176.840000px;}
.y5{bottom:1179.720000px;}
.y4{bottom:1197.540000px;}
.h5{height:21.420000px;}
.h2{height:21.600000px;}
.h10{height:22.500000px;}
.h13{height:30.600000px;}
.h14{height:30.780000px;}
.he{height:41.726953px;}
.h12{height:46.251562px;}
.h3{height:52.998047px;}
.h11{height:56.320312px;}
.hc{height:57.324375px;}
.h9{height:58.651172px;}
.hf{height:60.226875px;}
.hb{height:60.960938px;}
.h16{height:62.327813px;}
.ha{height:65.010937px;}
.h8{height:66.757500px;}
.h4{height:70.664062px;}
.h15{height:70.805391px;}
.hd{height:74.953125px;}
.h6{height:91.441406px;}
.h7{height:112.429688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:41.760000px;}
.w5{width:42.840000px;}
.w7{width:65.160000px;}
.w8{width:66.780000px;}
.w6{width:71.640000px;}
.w2{width:769.500000px;}
.w4{width:770.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:1.440000px;}
.x6{left:7.530000px;}
.x12{left:10.656000px;}
.xe{left:50.220000px;}
.x1{left:59.040000px;}
.x4{left:60.840000px;}
.x7{left:88.740000px;}
.x11{left:114.840000px;}
.x13{left:117.540000px;}
.xc{left:168.690000px;}
.x15{left:181.110000px;}
.xb{left:268.050000px;}
.x14{left:284.400000px;}
.x8{left:332.715000px;}
.x2{left:345.675000px;}
.x9{left:386.715000px;}
.xa{left:446.475000px;}
.xd{left:456.195000px;}
.x3{left:582.765000px;}
.x5{left:743.400000px;}
.x10{left:755.460000px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:5.712640pt;}
.ls8{letter-spacing:19.328000pt;}
.ls0{letter-spacing:41.728000pt;}
.ls6{letter-spacing:549.386667pt;}
.ws1{word-spacing:-58.880000pt;}
.ws7{word-spacing:-16.032000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-2.046507pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.906667pt;}
._2{width:2.202667pt;}
._5{width:3.285333pt;}
._7{width:4.287147pt;}
._8{width:6.027947pt;}
._e{width:7.018240pt;}
._6{width:8.007680pt;}
._9{width:9.715200pt;}
._a{width:11.123627pt;}
._b{width:12.320213pt;}
._20{width:13.330987pt;}
._d{width:14.661120pt;}
._18{width:16.081067pt;}
._16{width:17.264000pt;}
._17{width:18.804480pt;}
._c{width:20.132480pt;}
._f{width:21.248000pt;}
._10{width:22.310400pt;}
._3{width:23.964160pt;}
._4{width:24.941653pt;}
._11{width:26.135040pt;}
._27{width:27.623893pt;}
._22{width:29.263360pt;}
._23{width:30.746667pt;}
._1d{width:32.279040pt;}
._1c{width:33.429547pt;}
._26{width:37.341440pt;}
._15{width:38.405760pt;}
._14{width:39.567147pt;}
._25{width:41.392640pt;}
._24{width:42.511360pt;}
._13{width:43.444907pt;}
._12{width:44.355200pt;}
._1f{width:46.809600pt;}
._1e{width:48.149547pt;}
._1a{width:50.354133pt;}
._1b{width:51.260800pt;}
._21{width:67.064320pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs2{font-size:96.000000pt;}
.y3{bottom:-9.728000pt;}
.yc2{bottom:-5.693333pt;}
.yc5{bottom:-5.533333pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.872000pt;}
.y53{bottom:4.192000pt;}
.y2{bottom:6.272000pt;}
.y50{bottom:7.232000pt;}
.ybf{bottom:12.093333pt;}
.yc1{bottom:12.706667pt;}
.yc4{bottom:12.893333pt;}
.y52{bottom:46.880000pt;}
.y4f{bottom:50.880000pt;}
.y6{bottom:51.872000pt;}
.y51{bottom:54.432000pt;}
.y7{bottom:71.360000pt;}
.y1{bottom:74.720000pt;}
.ybd{bottom:89.952000pt;}
.y8b{bottom:93.152000pt;}
.ybc{bottom:109.472000pt;}
.y8a{bottom:110.752000pt;}
.y89{bottom:128.352000pt;}
.ybb{bottom:128.832000pt;}
.y88{bottom:145.946667pt;}
.yba{bottom:148.186667pt;}
.y87{bottom:163.706667pt;}
.y4e{bottom:167.546667pt;}
.yf4{bottom:172.346667pt;}
.y36{bottom:178.906667pt;}
.y86{bottom:181.306667pt;}
.y4d{bottom:185.306667pt;}
.yb9{bottom:187.066667pt;}
.yf3{bottom:189.946667pt;}
.y35{bottom:196.506667pt;}
.y85{bottom:198.906667pt;}
.y4c{bottom:202.906667pt;}
.yb8{bottom:206.426667pt;}
.yf2{bottom:207.706667pt;}
.y34{bottom:214.106667pt;}
.y84{bottom:216.506667pt;}
.y4b{bottom:220.506667pt;}
.yf1{bottom:225.306667pt;}
.yb7{bottom:225.786667pt;}
.y33{bottom:231.706667pt;}
.y83{bottom:234.106667pt;}
.y4a{bottom:238.106667pt;}
.yf0{bottom:242.906667pt;}
.yb6{bottom:245.146667pt;}
.y32{bottom:249.466667pt;}
.y82{bottom:251.866667pt;}
.y49{bottom:255.746667pt;}
.yef{bottom:260.546667pt;}
.yb5{bottom:264.546667pt;}
.y31{bottom:267.106667pt;}
.y81{bottom:269.506667pt;}
.y48{bottom:273.506667pt;}
.yee{bottom:278.146667pt;}
.yb4{bottom:284.066667pt;}
.y30{bottom:284.706667pt;}
.y80{bottom:287.106667pt;}
.y47{bottom:291.106667pt;}
.yed{bottom:295.906667pt;}
.y2f{bottom:302.306667pt;}
.yb3{bottom:303.426667pt;}
.y7f{bottom:304.706667pt;}
.y46{bottom:308.706667pt;}
.yec{bottom:313.506667pt;}
.y2e{bottom:319.906667pt;}
.y7e{bottom:322.306667pt;}
.yb2{bottom:322.786667pt;}
.y45{bottom:326.306667pt;}
.yeb{bottom:331.106667pt;}
.y2d{bottom:337.666667pt;}
.y7d{bottom:340.066667pt;}
.yb1{bottom:342.146667pt;}
.y44{bottom:343.906667pt;}
.yea{bottom:348.706667pt;}
.y2c{bottom:355.266667pt;}
.y7c{bottom:357.666667pt;}
.y43{bottom:361.666667pt;}
.ye9{bottom:366.306667pt;}
.y2b{bottom:372.866667pt;}
.y7b{bottom:375.266667pt;}
.y42{bottom:377.026667pt;}
.yb0{bottom:381.026667pt;}
.ye8{bottom:384.066667pt;}
.y2a{bottom:390.466667pt;}
.y41{bottom:392.066667pt;}
.y7a{bottom:392.866667pt;}
.yaf{bottom:400.386667pt;}
.ye7{bottom:401.666667pt;}
.y29{bottom:408.066667pt;}
.y79{bottom:408.386667pt;}
.y40{bottom:410.946667pt;}
.yae{bottom:419.746667pt;}
.ye6{bottom:420.386667pt;}
.y78{bottom:423.746667pt;}
.y28{bottom:425.826667pt;}
.y3f{bottom:431.426667pt;}
.y77{bottom:438.786667pt;}
.yad{bottom:439.106667pt;}
.ye5{bottom:441.986667pt;}
.y27{bottom:443.426667pt;}
.y3e{bottom:449.026667pt;}
.yac{bottom:458.626667pt;}
.y26{bottom:461.026667pt;}
.ye4{bottom:463.106667pt;}
.y3d{bottom:466.786667pt;}
.y76{bottom:469.666667pt;}
.yab{bottom:477.986667pt;}
.y25{bottom:478.626667pt;}
.ye3{bottom:482.466667pt;}
.y3c{bottom:484.386667pt;}
.y75{bottom:485.026667pt;}
.yc0{bottom:494.560000pt;}
.y24{bottom:496.226667pt;}
.yaa{bottom:497.346667pt;}
.y74{bottom:500.386667pt;}
.ye2{bottom:501.826667pt;}
.y3b{bottom:501.986667pt;}
.yc3{bottom:503.840000pt;}
.y23{bottom:514.013333pt;}
.y73{bottom:515.773333pt;}
.y3a{bottom:519.613333pt;}
.ye1{bottom:521.213333pt;}
.ya9{bottom:529.053333pt;}
.y72{bottom:531.133333pt;}
.y22{bottom:531.613333pt;}
.y39{bottom:537.213333pt;}
.ye0{bottom:540.733333pt;}
.y71{bottom:546.333333pt;}
.ya8{bottom:547.933333pt;}
.y21{bottom:549.853333pt;}
.y38{bottom:554.973333pt;}
.ydf{bottom:560.093333pt;}
.y70{bottom:561.693333pt;}
.ya7{bottom:568.413333pt;}
.y20{bottom:569.693333pt;}
.y37{bottom:572.573333pt;}
.y6f{bottom:577.053333pt;}
.yde{bottom:579.453333pt;}
.ya6{bottom:586.013333pt;}
.ybe{bottom:587.040000pt;}
.y1f{bottom:591.293333pt;}
.y6e{bottom:592.413333pt;}
.ydd{bottom:598.813333pt;}
.ya5{bottom:603.613333pt;}
.y6d{bottom:607.773333pt;}
.y1e{bottom:611.933333pt;}
.ydc{bottom:618.173333pt;}
.ya4{bottom:621.213333pt;}
.y6c{bottom:623.133333pt;}
.y1d{bottom:631.453333pt;}
.ydb{bottom:637.693333pt;}
.ya3{bottom:638.973333pt;}
.y6b{bottom:640.573333pt;}
.y1c{bottom:650.813333pt;}
.ya2{bottom:656.573333pt;}
.yda{bottom:657.053333pt;}
.y6a{bottom:658.173333pt;}
.y1b{bottom:670.173333pt;}
.ya1{bottom:674.173333pt;}
.y69{bottom:675.773333pt;}
.yd9{bottom:676.413333pt;}
.y1a{bottom:689.693333pt;}
.ya0{bottom:691.773333pt;}
.y68{bottom:693.373333pt;}
.yd8{bottom:695.773333pt;}
.y19{bottom:709.053333pt;}
.y9f{bottom:709.373333pt;}
.y67{bottom:711.133333pt;}
.yd7{bottom:715.293333pt;}
.y9e{bottom:727.133333pt;}
.y18{bottom:728.413333pt;}
.y66{bottom:728.733333pt;}
.yd6{bottom:734.653333pt;}
.y9d{bottom:744.733333pt;}
.y65{bottom:746.333333pt;}
.y17{bottom:747.773333pt;}
.yd5{bottom:754.053333pt;}
.y9c{bottom:762.373333pt;}
.y64{bottom:763.973333pt;}
.y16{bottom:767.173333pt;}
.yd4{bottom:773.413333pt;}
.y9b{bottom:779.973333pt;}
.y63{bottom:781.573333pt;}
.y15{bottom:786.693333pt;}
.yd3{bottom:792.773333pt;}
.y9a{bottom:797.573333pt;}
.y62{bottom:799.333333pt;}
.y14{bottom:806.053333pt;}
.yd2{bottom:812.293333pt;}
.y99{bottom:815.173333pt;}
.y61{bottom:816.933333pt;}
.y13{bottom:825.413333pt;}
.yd1{bottom:831.653333pt;}
.y98{bottom:832.933333pt;}
.y60{bottom:834.533333pt;}
.y12{bottom:844.773333pt;}
.y97{bottom:850.533333pt;}
.yd0{bottom:851.013333pt;}
.y5f{bottom:852.133333pt;}
.y11{bottom:864.293333pt;}
.y96{bottom:868.133333pt;}
.y5e{bottom:869.733333pt;}
.ycf{bottom:870.373333pt;}
.y10{bottom:882.693333pt;}
.y95{bottom:885.733333pt;}
.y5d{bottom:887.493333pt;}
.yce{bottom:889.893333pt;}
.yf{bottom:900.773333pt;}
.y94{bottom:903.333333pt;}
.y5c{bottom:905.093333pt;}
.ycd{bottom:909.253333pt;}
.ye{bottom:920.773333pt;}
.y93{bottom:921.093333pt;}
.y5b{bottom:922.693333pt;}
.ycc{bottom:928.613333pt;}
.yd{bottom:935.333333pt;}
.y92{bottom:938.693333pt;}
.y5a{bottom:940.293333pt;}
.ycb{bottom:947.973333pt;}
.yc{bottom:951.813333pt;}
.y91{bottom:956.293333pt;}
.y59{bottom:957.893333pt;}
.yb{bottom:967.173333pt;}
.yca{bottom:967.333333pt;}
.y90{bottom:973.893333pt;}
.y58{bottom:975.653333pt;}
.yc9{bottom:986.853333pt;}
.ya{bottom:990.213333pt;}
.y8f{bottom:991.493333pt;}
.y57{bottom:993.253333pt;}
.yc8{bottom:1006.240000pt;}
.y8e{bottom:1009.280000pt;}
.y56{bottom:1010.880000pt;}
.y9{bottom:1022.560000pt;}
.yc7{bottom:1025.600000pt;}
.y8d{bottom:1028.000000pt;}
.y55{bottom:1028.480000pt;}
.yc6{bottom:1044.960000pt;}
.y8c{bottom:1045.920000pt;}
.y54{bottom:1046.080000pt;}
.y5{bottom:1048.640000pt;}
.y4{bottom:1064.480000pt;}
.h5{height:19.040000pt;}
.h2{height:19.200000pt;}
.h10{height:20.000000pt;}
.h13{height:27.200000pt;}
.h14{height:27.360000pt;}
.he{height:37.090625pt;}
.h12{height:41.112500pt;}
.h3{height:47.109375pt;}
.h11{height:50.062500pt;}
.hc{height:50.955000pt;}
.h9{height:52.134375pt;}
.hf{height:53.535000pt;}
.hb{height:54.187500pt;}
.h16{height:55.402500pt;}
.ha{height:57.787500pt;}
.h8{height:59.340000pt;}
.h4{height:62.812500pt;}
.h15{height:62.938125pt;}
.hd{height:66.625000pt;}
.h6{height:81.281250pt;}
.h7{height:99.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:37.120000pt;}
.w5{width:38.080000pt;}
.w7{width:57.920000pt;}
.w8{width:59.360000pt;}
.w6{width:63.680000pt;}
.w2{width:684.000000pt;}
.w4{width:684.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:1.280000pt;}
.x6{left:6.693333pt;}
.x12{left:9.472000pt;}
.xe{left:44.640000pt;}
.x1{left:52.480000pt;}
.x4{left:54.080000pt;}
.x7{left:78.880000pt;}
.x11{left:102.080000pt;}
.x13{left:104.480000pt;}
.xc{left:149.946667pt;}
.x15{left:160.986667pt;}
.xb{left:238.266667pt;}
.x14{left:252.800000pt;}
.x8{left:295.746667pt;}
.x2{left:307.266667pt;}
.x9{left:343.746667pt;}
.xa{left:396.866667pt;}
.xd{left:405.506667pt;}
.x3{left:518.013333pt;}
.x5{left:660.800000pt;}
.x10{left:671.520000pt;}
}




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