
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_f9eb3d73cb95fce13dffca5c.woff')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_08456f38a8f6926518b5cd29.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_29990e4ddd85797d5b556111.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_7fd015a1db84fa50d45b8b5a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_50f62f349310ffe481d8c13a.woff')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_7163797fd4ea395456c37db3.woff')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;}
.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:15.120000px;}
.ls18{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls11{letter-spacing:-0.125400px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.057000px;}
.ls10{letter-spacing:-0.049680px;}
.lsf{letter-spacing:-0.014760px;}
.ls12{letter-spacing:-0.009000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.041760px;}
.lsc{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.396600px;}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.342800px;}
.ws10{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.217400px;}
.wsa{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.176720px;}
.wsc{word-spacing:-13.101000px;}
.wsf{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._b{margin-left:-3.386278px;}
._3{margin-left:-2.344800px;}
._0{margin-left:-1.110000px;}
._1{width:1.783080px;}
._9{width:3.426600px;}
._c{width:4.749600px;}
._e{width:6.506989px;}
._5{width:7.829404px;}
._4{width:8.837400px;}
._d{width:10.220400px;}
._a{width:11.867401px;}
._2{width:14.368800px;}
._11{width:15.853806px;}
._6{width:16.953600px;}
._7{width:18.927963px;}
._8{width:20.871237px;}
._f{width:22.845600px;}
._10{width:24.408720px;}
._16{width:31.736520px;}
._1d{width:35.079840px;}
._14{width:38.597040px;}
._17{width:42.324480px;}
._19{width:47.314440px;}
._1b{width:73.647000px;}
._1c{width:74.667120px;}
._13{width:96.372360px;}
._12{width:193.826880px;}
._1a{width:220.790520px;}
._15{width:259.898760px;}
._18{width:321.364920px;}
._1e{width:753.298200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y90{bottom:7.830000px;}
.y8d{bottom:7.920000px;}
.ybb{bottom:25.380000px;}
.yb7{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd9{bottom:116.670000px;}
.y93{bottom:122.520000px;}
.ybd{bottom:125.580000px;}
.yd8{bottom:134.310000px;}
.y69{bottom:137.460000px;}
.y27{bottom:141.420000px;}
.y92{bottom:149.790000px;}
.yd7{bottom:151.860000px;}
.y57{bottom:155.100000px;}
.y26{bottom:159.060000px;}
.yd6{bottom:169.410000px;}
.ybc{bottom:170.580000px;}
.y56{bottom:172.650000px;}
.y91{bottom:177.150000px;}
.y55{bottom:190.290000px;}
.y25{bottom:194.610000px;}
.y8f{bottom:204.510000px;}
.yd5{bottom:205.050000px;}
.y54{bottom:207.840000px;}
.y24{bottom:212.160000px;}
.yba{bottom:215.490000px;}
.yd4{bottom:222.600000px;}
.y23{bottom:229.800000px;}
.y8e{bottom:231.780000px;}
.y77{bottom:237.630000px;}
.yd3{bottom:240.240000px;}
.y53{bottom:243.390000px;}
.y22{bottom:247.350000px;}
.yd2{bottom:257.790000px;}
.y8c{bottom:259.140000px;}
.yb9{bottom:260.400000px;}
.y52{bottom:261.030000px;}
.y101{bottom:261.390000px;}
.y21{bottom:264.990000px;}
.yd1{bottom:275.340000px;}
.y51{bottom:278.580000px;}
.y100{bottom:279.030000px;}
.y76{bottom:285.870000px;}
.y50{bottom:296.130000px;}
.yff{bottom:296.580000px;}
.y20{bottom:300.540000px;}
.y75{bottom:303.510000px;}
.yb8{bottom:305.310000px;}
.y8b{bottom:307.830000px;}
.yd0{bottom:310.980000px;}
.y4f{bottom:313.770000px;}
.yfe{bottom:314.130000px;}
.y1f{bottom:318.090000px;}
.y74{bottom:321.060000px;}
.ycf{bottom:328.530000px;}
.y4e{bottom:331.320000px;}
.y1e{bottom:335.730000px;}
.y73{bottom:338.700000px;}
.yfd{bottom:340.770000px;}
.y8a{bottom:343.470000px;}
.y68{bottom:343.560000px;}
.yce{bottom:346.170000px;}
.yb6{bottom:350.220000px;}
.y1d{bottom:353.280000px;}
.y72{bottom:356.250000px;}
.yfc{bottom:358.320000px;}
.y89{bottom:361.020000px;}
.ycd{bottom:363.720000px;}
.y4d{bottom:366.960000px;}
.y1c{bottom:370.920000px;}
.y71{bottom:373.800000px;}
.yfb{bottom:375.960000px;}
.y88{bottom:378.660000px;}
.ycc{bottom:381.270000px;}
.y4c{bottom:384.510000px;}
.y1b{bottom:388.470000px;}
.y67{bottom:391.800000px;}
.y87{bottom:396.210000px;}
.ycb{bottom:398.910000px;}
.y4b{bottom:402.060000px;}
.yfa{bottom:402.510000px;}
.y1a{bottom:406.020000px;}
.y66{bottom:409.440000px;}
.y86{bottom:413.760000px;}
.yb5{bottom:416.550000px;}
.y4a{bottom:419.700000px;}
.yf9{bottom:420.060000px;}
.y65{bottom:426.990000px;}
.yca{bottom:434.460000px;}
.y19{bottom:435.810000px;}
.y49{bottom:437.250000px;}
.yf8{bottom:437.700000px;}
.y64{bottom:444.630000px;}
.y85{bottom:449.400000px;}
.yc9{bottom:452.010000px;}
.yb4{bottom:452.100000px;}
.y48{bottom:454.890000px;}
.y63{bottom:462.180000px;}
.yf7{bottom:464.250000px;}
.y84{bottom:466.950000px;}
.yb3{bottom:469.650000px;}
.y70{bottom:479.760000px;}
.yf6{bottom:481.920000px;}
.y18{bottom:484.170000px;}
.y83{bottom:484.530000px;}
.y47{bottom:484.710000px;}
.yc8{bottom:487.230000px;}
.yb2{bottom:487.320000px;}
.y62{bottom:497.760000px;}
.yf5{bottom:499.470000px;}
.y17{bottom:502.080000px;}
.y82{bottom:502.170000px;}
.yb1{bottom:504.870000px;}
.y61{bottom:515.400000px;}
.yf4{bottom:517.020000px;}
.y81{bottom:519.720000px;}
.yc7{bottom:522.420000px;}
.yb0{bottom:522.510000px;}
.y46{bottom:532.950000px;}
.y16{bottom:539.070000px;}
.yaf{bottom:540.060000px;}
.yf3{bottom:543.660000px;}
.y45{bottom:550.590000px;}
.y80{bottom:555.360000px;}
.y15{bottom:556.710000px;}
.yc6{bottom:557.970000px;}
.yf2{bottom:561.210000px;}
.y44{bottom:568.140000px;}
.y7f{bottom:572.910000px;}
.y14{bottom:574.260000px;}
.yae{bottom:575.610000px;}
.y43{bottom:585.690000px;}
.yf1{bottom:587.850000px;}
.yc5{bottom:590.190000px;}
.y7e{bottom:590.460000px;}
.y13{bottom:591.810000px;}
.yad{bottom:593.250000px;}
.y42{bottom:603.330000px;}
.y60{bottom:603.690000px;}
.yf0{bottom:605.400000px;}
.y7d{bottom:608.100000px;}
.y12{bottom:609.450000px;}
.yac{bottom:610.800000px;}
.y5f{bottom:621.330000px;}
.y7c{bottom:625.650000px;}
.y11{bottom:627.000000px;}
.yab{bottom:628.350000px;}
.yef{bottom:631.950000px;}
.y41{bottom:638.880000px;}
.y10{bottom:644.640000px;}
.yaa{bottom:645.990000px;}
.yee{bottom:649.590000px;}
.y40{bottom:656.520000px;}
.y7b{bottom:661.290000px;}
.yf{bottom:662.190000px;}
.ya9{bottom:663.540000px;}
.yed{bottom:667.140000px;}
.y3f{bottom:674.070000px;}
.ye{bottom:679.740000px;}
.y3e{bottom:691.620000px;}
.y7a{bottom:693.510000px;}
.yec{bottom:693.780000px;}
.yd{bottom:697.380000px;}
.ya8{bottom:699.180000px;}
.y3d{bottom:709.260000px;}
.y5e{bottom:709.620000px;}
.yeb{bottom:711.330000px;}
.yc{bottom:714.930000px;}
.ya7{bottom:716.730000px;}
.y5d{bottom:727.260000px;}
.yb{bottom:732.570000px;}
.ya6{bottom:734.280000px;}
.yea{bottom:737.880000px;}
.y3c{bottom:744.810000px;}
.ya{bottom:750.120000px;}
.ya5{bottom:751.920000px;}
.ye9{bottom:755.520000px;}
.y3b{bottom:762.450000px;}
.ya4{bottom:769.470000px;}
.y9{bottom:779.910000px;}
.y3a{bottom:780.000000px;}
.ye8{bottom:785.310000px;}
.ya3{bottom:787.110000px;}
.y39{bottom:797.550000px;}
.y38{bottom:815.190000px;}
.y5c{bottom:815.550000px;}
.ya2{bottom:822.660000px;}
.y6f{bottom:827.340000px;}
.y8{bottom:828.240000px;}
.y5b{bottom:833.190000px;}
.ye7{bottom:833.550000px;}
.ya1{bottom:840.210000px;}
.y37{bottom:850.740000px;}
.ye6{bottom:851.190000px;}
.ya0{bottom:857.850000px;}
.y7{bottom:863.790000px;}
.y36{bottom:868.290000px;}
.ye5{bottom:868.740000px;}
.y9f{bottom:875.400000px;}
.y6e{bottom:875.670000px;}
.y35{bottom:885.930000px;}
.ye4{bottom:886.290000px;}
.y9e{bottom:893.040000px;}
.y6d{bottom:893.220000px;}
.y6{bottom:899.610000px;}
.y34{bottom:903.480000px;}
.ye3{bottom:903.930000px;}
.y9d{bottom:910.590000px;}
.y6c{bottom:910.860000px;}
.y5a{bottom:915.720000px;}
.ye2{bottom:921.480000px;}
.y6b{bottom:928.410000px;}
.y33{bottom:933.270000px;}
.y5{bottom:935.610000px;}
.ye1{bottom:939.120000px;}
.y6a{bottom:945.960000px;}
.y9c{bottom:946.140000px;}
.ye0{bottom:956.670000px;}
.y9b{bottom:963.780000px;}
.y59{bottom:963.960000px;}
.y4{bottom:971.700000px;}
.ydf{bottom:974.220000px;}
.y9a{bottom:981.330000px;}
.y32{bottom:981.600000px;}
.yde{bottom:991.860000px;}
.y99{bottom:998.970000px;}
.y31{bottom:999.150000px;}
.ydd{bottom:1009.410000px;}
.yc4{bottom:1009.890000px;}
.y3{bottom:1009.980000px;}
.y98{bottom:1016.550000px;}
.y30{bottom:1016.820000px;}
.ydc{bottom:1027.080000px;}
.yc3{bottom:1027.440000px;}
.y97{bottom:1034.100000px;}
.y2f{bottom:1034.370000px;}
.ydb{bottom:1044.630000px;}
.yc2{bottom:1045.080000px;}
.y96{bottom:1051.740000px;}
.y2e{bottom:1051.920000px;}
.y79{bottom:1052.370000px;}
.yc1{bottom:1062.630000px;}
.y2d{bottom:1069.560000px;}
.y78{bottom:1069.920000px;}
.yda{bottom:1074.420000px;}
.yc0{bottom:1080.180000px;}
.y95{bottom:1081.530000px;}
.y58{bottom:1087.560000px;}
.ybf{bottom:1097.820000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y94{bottom:1127.160000px;}
.ybe{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.100000px;}
.hb{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.hd{height:61.793886px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:132.660000px;}
.w4{width:153.210000px;}
.w5{width:156.600000px;}
.w7{width:156.810000px;}
.w9{width:172.920000px;}
.wa{width:179.010000px;}
.w8{width:244.710000px;}
.w3{width:290.460000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:79.020000px;}
.x10{left:111.239987px;}
.xf{left:181.469987px;}
.x5{left:200.729987px;}
.x2{left:202.799987px;}
.xb{left:226.290000px;}
.x8{left:370.200000px;}
.xc{left:471.810000px;}
.x9{left:524.130000px;}
.xd{left:645.450000px;}
.xa{left:681.540000px;}
.xe{left:732.389987px;}
.x4{left:733.559987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls11{letter-spacing:-0.111467pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls10{letter-spacing:-0.044160pt;}
.lsf{letter-spacing:-0.013120pt;}
.ls12{letter-spacing:-0.008000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.037120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls17{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.352533pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.860267pt;}
.ws10{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.748800pt;}
.wsa{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.712640pt;}
.wsc{word-spacing:-11.645333pt;}
.wsf{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._b{margin-left:-3.010025pt;}
._3{margin-left:-2.084267pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.584960pt;}
._9{width:3.045866pt;}
._c{width:4.221867pt;}
._e{width:5.783990pt;}
._5{width:6.959470pt;}
._4{width:7.855466pt;}
._d{width:9.084800pt;}
._a{width:10.548801pt;}
._2{width:12.772267pt;}
._11{width:14.092272pt;}
._6{width:15.069866pt;}
._7{width:16.824856pt;}
._8{width:18.552210pt;}
._f{width:20.307200pt;}
._10{width:21.696640pt;}
._16{width:28.210240pt;}
._1d{width:31.182080pt;}
._14{width:34.308480pt;}
._17{width:37.621760pt;}
._19{width:42.057280pt;}
._1b{width:65.464000pt;}
._1c{width:66.370773pt;}
._13{width:85.664320pt;}
._12{width:172.290560pt;}
._1a{width:196.258240pt;}
._15{width:231.021120pt;}
._18{width:285.657707pt;}
._1e{width:669.598400pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:6.960000pt;}
.y8d{bottom:7.040000pt;}
.ybb{bottom:22.560000pt;}
.yb7{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd9{bottom:103.706667pt;}
.y93{bottom:108.906667pt;}
.ybd{bottom:111.626667pt;}
.yd8{bottom:119.386667pt;}
.y69{bottom:122.186667pt;}
.y27{bottom:125.706667pt;}
.y92{bottom:133.146667pt;}
.yd7{bottom:134.986667pt;}
.y57{bottom:137.866667pt;}
.y26{bottom:141.386667pt;}
.yd6{bottom:150.586667pt;}
.ybc{bottom:151.626667pt;}
.y56{bottom:153.466667pt;}
.y91{bottom:157.466667pt;}
.y55{bottom:169.146667pt;}
.y25{bottom:172.986667pt;}
.y8f{bottom:181.786667pt;}
.yd5{bottom:182.266667pt;}
.y54{bottom:184.746667pt;}
.y24{bottom:188.586667pt;}
.yba{bottom:191.546667pt;}
.yd4{bottom:197.866667pt;}
.y23{bottom:204.266667pt;}
.y8e{bottom:206.026667pt;}
.y77{bottom:211.226667pt;}
.yd3{bottom:213.546667pt;}
.y53{bottom:216.346667pt;}
.y22{bottom:219.866667pt;}
.yd2{bottom:229.146667pt;}
.y8c{bottom:230.346667pt;}
.yb9{bottom:231.466667pt;}
.y52{bottom:232.026667pt;}
.y101{bottom:232.346667pt;}
.y21{bottom:235.546667pt;}
.yd1{bottom:244.746667pt;}
.y51{bottom:247.626667pt;}
.y100{bottom:248.026667pt;}
.y76{bottom:254.106667pt;}
.y50{bottom:263.226667pt;}
.yff{bottom:263.626667pt;}
.y20{bottom:267.146667pt;}
.y75{bottom:269.786667pt;}
.yb8{bottom:271.386667pt;}
.y8b{bottom:273.626667pt;}
.yd0{bottom:276.426667pt;}
.y4f{bottom:278.906667pt;}
.yfe{bottom:279.226667pt;}
.y1f{bottom:282.746667pt;}
.y74{bottom:285.386667pt;}
.ycf{bottom:292.026667pt;}
.y4e{bottom:294.506667pt;}
.y1e{bottom:298.426667pt;}
.y73{bottom:301.066667pt;}
.yfd{bottom:302.906667pt;}
.y8a{bottom:305.306667pt;}
.y68{bottom:305.386667pt;}
.yce{bottom:307.706667pt;}
.yb6{bottom:311.306667pt;}
.y1d{bottom:314.026667pt;}
.y72{bottom:316.666667pt;}
.yfc{bottom:318.506667pt;}
.y89{bottom:320.906667pt;}
.ycd{bottom:323.306667pt;}
.y4d{bottom:326.186667pt;}
.y1c{bottom:329.706667pt;}
.y71{bottom:332.266667pt;}
.yfb{bottom:334.186667pt;}
.y88{bottom:336.586667pt;}
.ycc{bottom:338.906667pt;}
.y4c{bottom:341.786667pt;}
.y1b{bottom:345.306667pt;}
.y67{bottom:348.266667pt;}
.y87{bottom:352.186667pt;}
.ycb{bottom:354.586667pt;}
.y4b{bottom:357.386667pt;}
.yfa{bottom:357.786667pt;}
.y1a{bottom:360.906667pt;}
.y66{bottom:363.946667pt;}
.y86{bottom:367.786667pt;}
.yb5{bottom:370.266667pt;}
.y4a{bottom:373.066667pt;}
.yf9{bottom:373.386667pt;}
.y65{bottom:379.546667pt;}
.yca{bottom:386.186667pt;}
.y19{bottom:387.386667pt;}
.y49{bottom:388.666667pt;}
.yf8{bottom:389.066667pt;}
.y64{bottom:395.226667pt;}
.y85{bottom:399.466667pt;}
.yc9{bottom:401.786667pt;}
.yb4{bottom:401.866667pt;}
.y48{bottom:404.346667pt;}
.y63{bottom:410.826667pt;}
.yf7{bottom:412.666667pt;}
.y84{bottom:415.066667pt;}
.yb3{bottom:417.466667pt;}
.y70{bottom:426.453333pt;}
.yf6{bottom:428.373333pt;}
.y18{bottom:430.373333pt;}
.y83{bottom:430.693333pt;}
.y47{bottom:430.853333pt;}
.yc8{bottom:433.093333pt;}
.yb2{bottom:433.173333pt;}
.y62{bottom:442.453333pt;}
.yf5{bottom:443.973333pt;}
.y17{bottom:446.293333pt;}
.y82{bottom:446.373333pt;}
.yb1{bottom:448.773333pt;}
.y61{bottom:458.133333pt;}
.yf4{bottom:459.573333pt;}
.y81{bottom:461.973333pt;}
.yc7{bottom:464.373333pt;}
.yb0{bottom:464.453333pt;}
.y46{bottom:473.733333pt;}
.y16{bottom:479.173333pt;}
.yaf{bottom:480.053333pt;}
.yf3{bottom:483.253333pt;}
.y45{bottom:489.413333pt;}
.y80{bottom:493.653333pt;}
.y15{bottom:494.853333pt;}
.yc6{bottom:495.973333pt;}
.yf2{bottom:498.853333pt;}
.y44{bottom:505.013333pt;}
.y7f{bottom:509.253333pt;}
.y14{bottom:510.453333pt;}
.yae{bottom:511.653333pt;}
.y43{bottom:520.613333pt;}
.yf1{bottom:522.533333pt;}
.yc5{bottom:524.613333pt;}
.y7e{bottom:524.853333pt;}
.y13{bottom:526.053333pt;}
.yad{bottom:527.333333pt;}
.y42{bottom:536.293333pt;}
.y60{bottom:536.613333pt;}
.yf0{bottom:538.133333pt;}
.y7d{bottom:540.533333pt;}
.y12{bottom:541.733333pt;}
.yac{bottom:542.933333pt;}
.y5f{bottom:552.293333pt;}
.y7c{bottom:556.133333pt;}
.y11{bottom:557.333333pt;}
.yab{bottom:558.533333pt;}
.yef{bottom:561.733333pt;}
.y41{bottom:567.893333pt;}
.y10{bottom:573.013333pt;}
.yaa{bottom:574.213333pt;}
.yee{bottom:577.413333pt;}
.y40{bottom:583.573333pt;}
.y7b{bottom:587.813333pt;}
.yf{bottom:588.613333pt;}
.ya9{bottom:589.813333pt;}
.yed{bottom:593.013333pt;}
.y3f{bottom:599.173333pt;}
.ye{bottom:604.213333pt;}
.y3e{bottom:614.773333pt;}
.y7a{bottom:616.453333pt;}
.yec{bottom:616.693333pt;}
.yd{bottom:619.893333pt;}
.ya8{bottom:621.493333pt;}
.y3d{bottom:630.453333pt;}
.y5e{bottom:630.773333pt;}
.yeb{bottom:632.293333pt;}
.yc{bottom:635.493333pt;}
.ya7{bottom:637.093333pt;}
.y5d{bottom:646.453333pt;}
.yb{bottom:651.173333pt;}
.ya6{bottom:652.693333pt;}
.yea{bottom:655.893333pt;}
.y3c{bottom:662.053333pt;}
.ya{bottom:666.773333pt;}
.ya5{bottom:668.373333pt;}
.ye9{bottom:671.573333pt;}
.y3b{bottom:677.733333pt;}
.ya4{bottom:683.973333pt;}
.y9{bottom:693.253333pt;}
.y3a{bottom:693.333333pt;}
.ye8{bottom:698.053333pt;}
.ya3{bottom:699.653333pt;}
.y39{bottom:708.933333pt;}
.y38{bottom:724.613333pt;}
.y5c{bottom:724.933333pt;}
.ya2{bottom:731.253333pt;}
.y6f{bottom:735.413333pt;}
.y8{bottom:736.213333pt;}
.y5b{bottom:740.613333pt;}
.ye7{bottom:740.933333pt;}
.ya1{bottom:746.853333pt;}
.y37{bottom:756.213333pt;}
.ye6{bottom:756.613333pt;}
.ya0{bottom:762.533333pt;}
.y7{bottom:767.813333pt;}
.y36{bottom:771.813333pt;}
.ye5{bottom:772.213333pt;}
.y9f{bottom:778.133333pt;}
.y6e{bottom:778.373333pt;}
.y35{bottom:787.493333pt;}
.ye4{bottom:787.813333pt;}
.y9e{bottom:793.813333pt;}
.y6d{bottom:793.973333pt;}
.y6{bottom:799.653333pt;}
.y34{bottom:803.093333pt;}
.ye3{bottom:803.493333pt;}
.y9d{bottom:809.413333pt;}
.y6c{bottom:809.653333pt;}
.y5a{bottom:813.973333pt;}
.ye2{bottom:819.093333pt;}
.y6b{bottom:825.253333pt;}
.y33{bottom:829.573333pt;}
.y5{bottom:831.653333pt;}
.ye1{bottom:834.773333pt;}
.y6a{bottom:840.853333pt;}
.y9c{bottom:841.013333pt;}
.ye0{bottom:850.373333pt;}
.y9b{bottom:856.693333pt;}
.y59{bottom:856.853333pt;}
.y4{bottom:863.733333pt;}
.ydf{bottom:865.973333pt;}
.y9a{bottom:872.293333pt;}
.y32{bottom:872.533333pt;}
.yde{bottom:881.653333pt;}
.y99{bottom:887.973333pt;}
.y31{bottom:888.133333pt;}
.ydd{bottom:897.253333pt;}
.yc4{bottom:897.680000pt;}
.y3{bottom:897.760000pt;}
.y98{bottom:903.600000pt;}
.y30{bottom:903.840000pt;}
.ydc{bottom:912.960000pt;}
.yc3{bottom:913.280000pt;}
.y97{bottom:919.200000pt;}
.y2f{bottom:919.440000pt;}
.ydb{bottom:928.560000pt;}
.yc2{bottom:928.960000pt;}
.y96{bottom:934.880000pt;}
.y2e{bottom:935.040000pt;}
.y79{bottom:935.440000pt;}
.yc1{bottom:944.560000pt;}
.y2d{bottom:950.720000pt;}
.y78{bottom:951.040000pt;}
.yda{bottom:955.040000pt;}
.yc0{bottom:960.160000pt;}
.y95{bottom:961.360000pt;}
.y58{bottom:966.720000pt;}
.ybf{bottom:975.840000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y94{bottom:1001.920000pt;}
.ybe{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.200000pt;}
.hb{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.hd{height:54.927899pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:117.920000pt;}
.w4{width:136.186667pt;}
.w5{width:139.200000pt;}
.w7{width:139.386667pt;}
.w9{width:153.706667pt;}
.wa{width:159.120000pt;}
.w8{width:217.520000pt;}
.w3{width:258.186667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:70.240000pt;}
.x10{left:98.879988pt;}
.xf{left:161.306655pt;}
.x5{left:178.426655pt;}
.x2{left:180.266655pt;}
.xb{left:201.146667pt;}
.x8{left:329.066667pt;}
.xc{left:419.386667pt;}
.x9{left:465.893333pt;}
.xd{left:573.733333pt;}
.xa{left:605.813333pt;}
.xe{left:651.013322pt;}
.x4{left:652.053322pt;}
.x3{left:704.053322pt;}
}




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