
    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_2b73fa4f333b828ace281ca3.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_9750083e3f8e08bfdfd80a0d.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_56c7cc4bbdc9406a20919fc4.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_a5acad51c96d50a5798b14c4.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_cf5b54b838ee9f69dcdff9c4.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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-2.160000px;}
.ls2{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:2.106000px;}
.lsa{letter-spacing:2.340000px;}
.ls1a{letter-spacing:2.419920px;}
.ls1d{letter-spacing:2.826000px;}
.ls18{letter-spacing:2.880000px;}
.ls1f{letter-spacing:11.466720px;}
.lsf{letter-spacing:12.420000px;}
.ls1e{letter-spacing:41.850720px;}
.ls17{letter-spacing:106.716000px;}
.ls16{letter-spacing:124.020000px;}
.ls10{letter-spacing:167.220000px;}
.ls11{letter-spacing:174.420000px;}
.ls12{letter-spacing:180.156000px;}
.lse{letter-spacing:180.180000px;}
.ls19{letter-spacing:184.476000px;}
.ls13{letter-spacing:189.516000px;}
.ls1c{letter-spacing:198.156000px;}
.ls14{letter-spacing:231.996000px;}
.ls15{letter-spacing:264.540000px;}
.ls1b{letter-spacing:417.180000px;}
.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:-18.000000px;}
.wsc{word-spacing:-17.766000px;}
.wsb{word-spacing:-17.046000px;}
.ws4{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.328000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{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;}
._1b{margin-left:-13.582320px;}
._1a{margin-left:-10.613280px;}
._3{margin-left:-8.213760px;}
._7{margin-left:-5.760000px;}
._16{margin-left:-4.721040px;}
._f{margin-left:-3.590400px;}
._8{margin-left:-2.410080px;}
._0{margin-left:-1.347840px;}
._a{width:1.259760px;}
._9{width:2.489760px;}
._b{width:3.645360px;}
._e{width:5.194320px;}
._10{width:6.991920px;}
._12{width:8.127360px;}
._11{width:9.189120px;}
._d{width:10.512960px;}
._c{width:11.533680px;}
._13{width:12.583440px;}
._14{width:13.598640px;}
._17{width:16.184160px;}
._19{width:19.474320px;}
._1c{width:48.593040px;}
._18{width:106.364880px;}
._1d{width:201.036000px;}
._15{width:281.844000px;}
._1e{width:1293.600000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y21{bottom:5.940000px;}
.ye{bottom:6.480000px;}
.y31{bottom:17.280000px;}
.y20{bottom:34.740000px;}
.y30{bottom:39.240000px;}
.y1f{bottom:54.570000px;}
.y6{bottom:60.696000px;}
.y2f{bottom:61.050000px;}
.y1e{bottom:74.370000px;}
.y2e{bottom:82.830000px;}
.ybe{bottom:83.376000px;}
.y46{bottom:84.636000px;}
.y87{bottom:92.376000px;}
.y1d{bottom:94.170000px;}
.yb6{bottom:94.176000px;}
.y7c{bottom:101.376000px;}
.ybd{bottom:103.176000px;}
.y45{bottom:104.436000px;}
.y2d{bottom:104.610000px;}
.yee{bottom:104.976000px;}
.y86{bottom:112.176000px;}
.yb5{bottom:113.976000px;}
.y1c{bottom:114.150000px;}
.y7b{bottom:121.176000px;}
.ybc{bottom:122.976000px;}
.y44{bottom:124.236000px;}
.yed{bottom:124.776000px;}
.y2c{bottom:126.390000px;}
.y85{bottom:131.976000px;}
.yb4{bottom:133.776000px;}
.y1b{bottom:133.950000px;}
.y7a{bottom:140.976000px;}
.ybb{bottom:142.776000px;}
.y43{bottom:144.216000px;}
.yec{bottom:144.756000px;}
.y2b{bottom:148.350000px;}
.y84{bottom:151.770000px;}
.y1a{bottom:153.750000px;}
.y79{bottom:160.770000px;}
.yba{bottom:162.750000px;}
.yeb{bottom:164.550000px;}
.y2a{bottom:170.130000px;}
.y83{bottom:171.750000px;}
.y42{bottom:173.010000px;}
.y19{bottom:173.550000px;}
.y78{bottom:180.750000px;}
.yb3{bottom:182.550000px;}
.yea{bottom:184.350000px;}
.yfc{bottom:189.750000px;}
.y82{bottom:191.550000px;}
.y29{bottom:191.910000px;}
.y41{bottom:192.810000px;}
.y18{bottom:193.350000px;}
.y77{bottom:200.550000px;}
.yb2{bottom:202.350000px;}
.ye9{bottom:204.150000px;}
.yfb{bottom:209.550000px;}
.y81{bottom:211.350000px;}
.y40{bottom:212.610000px;}
.y17{bottom:213.330000px;}
.y28{bottom:213.690000px;}
.y76{bottom:220.350000px;}
.yb1{bottom:222.150000px;}
.ye8{bottom:223.950000px;}
.yfa{bottom:229.350000px;}
.y80{bottom:231.150000px;}
.y3f{bottom:232.410000px;}
.y16{bottom:233.130000px;}
.y27{bottom:235.650000px;}
.y75{bottom:240.150000px;}
.ye7{bottom:243.930000px;}
.yf9{bottom:249.150000px;}
.y7f{bottom:250.950000px;}
.y3e{bottom:252.210000px;}
.y15{bottom:252.930000px;}
.y26{bottom:257.430000px;}
.y74{bottom:259.950000px;}
.ye6{bottom:263.730000px;}
.yf8{bottom:268.950000px;}
.yb0{bottom:270.930000px;}
.y3d{bottom:272.190000px;}
.y14{bottom:272.730000px;}
.y25{bottom:279.210000px;}
.y73{bottom:279.975000px;}
.ye5{bottom:283.575000px;}
.yf7{bottom:288.975000px;}
.yaf{bottom:290.775000px;}
.y3c{bottom:292.035000px;}
.y13{bottom:292.530000px;}
.y72{bottom:299.775000px;}
.ye4{bottom:303.375000px;}
.yf6{bottom:308.775000px;}
.yae{bottom:310.575000px;}
.y3b{bottom:311.835000px;}
.y12{bottom:312.510000px;}
.y24{bottom:316.110000px;}
.y71{bottom:319.575000px;}
.ye3{bottom:323.175000px;}
.yf5{bottom:328.575000px;}
.yad{bottom:330.375000px;}
.y3a{bottom:331.635000px;}
.y11{bottom:332.355000px;}
.y23{bottom:337.935000px;}
.y70{bottom:339.375000px;}
.ye2{bottom:343.155000px;}
.yf4{bottom:348.375000px;}
.yac{bottom:350.175000px;}
.y39{bottom:351.435000px;}
.y10{bottom:352.155000px;}
.y6f{bottom:359.175000px;}
.y22{bottom:359.715000px;}
.ye1{bottom:362.955000px;}
.yf3{bottom:368.175000px;}
.yab{bottom:370.155000px;}
.y38{bottom:371.415000px;}
.y6e{bottom:379.155000px;}
.ye0{bottom:382.755000px;}
.yf2{bottom:388.155000px;}
.yaa{bottom:389.955000px;}
.y37{bottom:391.215000px;}
.y6d{bottom:398.955000px;}
.ydf{bottom:402.555000px;}
.yf1{bottom:407.955000px;}
.ya9{bottom:409.755000px;}
.y36{bottom:411.015000px;}
.y6c{bottom:418.755000px;}
.yde{bottom:422.355000px;}
.y7e{bottom:427.755000px;}
.ya8{bottom:429.555000px;}
.y35{bottom:430.815000px;}
.y6b{bottom:438.555000px;}
.y7d{bottom:447.555000px;}
.ya7{bottom:449.355000px;}
.y34{bottom:450.615000px;}
.ydd{bottom:451.335000px;}
.yf0{bottom:458.355000px;}
.y6a{bottom:467.355000px;}
.ya6{bottom:469.335000px;}
.y33{bottom:470.595000px;}
.ydc{bottom:471.135000px;}
.yef{bottom:478.335000px;}
.y69{bottom:487.335000px;}
.ya5{bottom:489.135000px;}
.y32{bottom:490.395000px;}
.yb9{bottom:498.135000px;}
.ydb{bottom:499.935000px;}
.yf{bottom:506.595000px;}
.y68{bottom:507.135000px;}
.ya4{bottom:508.935000px;}
.yb8{bottom:517.935000px;}
.yda{bottom:519.735000px;}
.y67{bottom:526.935000px;}
.ya3{bottom:528.735000px;}
.yb7{bottom:537.735000px;}
.yd9{bottom:539.535000px;}
.y66{bottom:546.735000px;}
.ya2{bottom:557.565000px;}
.yd8{bottom:559.545000px;}
.y65{bottom:566.565000px;}
.ya1{bottom:577.545000px;}
.yd7{bottom:579.345000px;}
.y64{bottom:586.545000px;}
.ya0{bottom:597.345000px;}
.yd6{bottom:599.145000px;}
.y63{bottom:606.345000px;}
.y9f{bottom:617.145000px;}
.yd5{bottom:618.945000px;}
.y62{bottom:626.145000px;}
.y9e{bottom:636.945000px;}
.yd4{bottom:638.745000px;}
.y61{bottom:645.945000px;}
.y9d{bottom:656.745000px;}
.yd3{bottom:658.725000px;}
.y60{bottom:665.745000px;}
.y9c{bottom:676.725000px;}
.yd2{bottom:678.525000px;}
.y5f{bottom:685.725000px;}
.y9b{bottom:696.525000px;}
.yd1{bottom:698.325000px;}
.y5e{bottom:705.525000px;}
.y9a{bottom:716.325000px;}
.yd0{bottom:718.125000px;}
.y5d{bottom:725.325000px;}
.y99{bottom:736.125000px;}
.ycf{bottom:737.925000px;}
.y5c{bottom:745.125000px;}
.y98{bottom:755.925000px;}
.yce{bottom:757.725000px;}
.y5b{bottom:764.925000px;}
.y97{bottom:775.725000px;}
.ycd{bottom:777.705000px;}
.y5a{bottom:784.725000px;}
.y96{bottom:795.705000px;}
.ycc{bottom:797.505000px;}
.y59{bottom:804.705000px;}
.y95{bottom:815.505000px;}
.ycb{bottom:817.305000px;}
.y58{bottom:824.505000px;}
.y94{bottom:835.305000px;}
.yca{bottom:837.105000px;}
.y57{bottom:844.350000px;}
.y93{bottom:855.150000px;}
.yc9{bottom:856.950000px;}
.y56{bottom:864.150000px;}
.y92{bottom:874.950000px;}
.yc8{bottom:876.930000px;}
.yd{bottom:883.950000px;}
.y91{bottom:894.930000px;}
.yc7{bottom:896.730000px;}
.y55{bottom:903.930000px;}
.yc{bottom:913.830000px;}
.y90{bottom:914.730000px;}
.yc6{bottom:916.530000px;}
.y54{bottom:923.730000px;}
.y8f{bottom:934.530000px;}
.yc5{bottom:936.330000px;}
.yb{bottom:939.030000px;}
.y53{bottom:943.530000px;}
.ya{bottom:954.150000px;}
.y8e{bottom:954.330000px;}
.yc4{bottom:956.130000px;}
.y52{bottom:963.330000px;}
.y8d{bottom:974.130000px;}
.y9{bottom:975.930000px;}
.yc3{bottom:976.110000px;}
.y51{bottom:983.130000px;}
.y8c{bottom:994.110000px;}
.y8{bottom:1000.770000px;}
.y50{bottom:1003.110000px;}
.yc2{bottom:1004.910000px;}
.y8b{bottom:1013.910000px;}
.y4f{bottom:1022.910000px;}
.yc1{bottom:1024.710000px;}
.y7{bottom:1032.630000px;}
.y8a{bottom:1033.710000px;}
.y4e{bottom:1042.710000px;}
.yc0{bottom:1044.510000px;}
.y89{bottom:1053.510000px;}
.y4d{bottom:1062.510000px;}
.y5{bottom:1070.970000px;}
.y88{bottom:1073.310000px;}
.y4c{bottom:1082.310000px;}
.ybf{bottom:1093.290000px;}
.y4{bottom:1100.130000px;}
.y4b{bottom:1102.290000px;}
.y4a{bottom:1122.120000px;}
.y3{bottom:1129.320000px;}
.y49{bottom:1141.920000px;}
.y2{bottom:1158.660000px;}
.y48{bottom:1161.720000px;}
.y1{bottom:1189.260000px;}
.y47{bottom:1193.400000px;}
.ha{height:21.960000px;}
.h8{height:27.147656px;}
.h9{height:41.726953px;}
.hc{height:42.164648px;}
.hd{height:43.506914px;}
.h3{height:46.251562px;}
.h6{height:46.736719px;}
.h4{height:50.800781px;}
.h7{height:53.224453px;}
.h2{height:59.436914px;}
.h5{height:67.565039px;}
.hb{height:375.195000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:169.950000px;}
.w3{width:625.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x5{left:-54.000013px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x2{left:48.780000px;}
.x1{left:54.179987px;}
.x9{left:80.999987px;}
.x6{left:108.035987px;}
.x8{left:162.029987px;}
.x7{left:213.509987px;}
.x4{left:674.385000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-1.920000pt;}
.ls2{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:1.872000pt;}
.lsa{letter-spacing:2.080000pt;}
.ls1a{letter-spacing:2.151040pt;}
.ls1d{letter-spacing:2.512000pt;}
.ls18{letter-spacing:2.560000pt;}
.ls1f{letter-spacing:10.192640pt;}
.lsf{letter-spacing:11.040000pt;}
.ls1e{letter-spacing:37.200640pt;}
.ls17{letter-spacing:94.858667pt;}
.ls16{letter-spacing:110.240000pt;}
.ls10{letter-spacing:148.640000pt;}
.ls11{letter-spacing:155.040000pt;}
.ls12{letter-spacing:160.138667pt;}
.lse{letter-spacing:160.160000pt;}
.ls19{letter-spacing:163.978667pt;}
.ls13{letter-spacing:168.458667pt;}
.ls1c{letter-spacing:176.138667pt;}
.ls14{letter-spacing:206.218667pt;}
.ls15{letter-spacing:235.146667pt;}
.ls1b{letter-spacing:370.826667pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.792000pt;}
.wsb{word-spacing:-15.152000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.736000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{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;}
._1b{margin-left:-12.073173pt;}
._1a{margin-left:-9.434027pt;}
._3{margin-left:-7.301120pt;}
._7{margin-left:-5.120000pt;}
._16{margin-left:-4.196480pt;}
._f{margin-left:-3.191467pt;}
._8{margin-left:-2.142293pt;}
._0{margin-left:-1.198080pt;}
._a{width:1.119787pt;}
._9{width:2.213120pt;}
._b{width:3.240320pt;}
._e{width:4.617173pt;}
._10{width:6.215040pt;}
._12{width:7.224320pt;}
._11{width:8.168107pt;}
._d{width:9.344853pt;}
._c{width:10.252160pt;}
._13{width:11.185280pt;}
._14{width:12.087680pt;}
._17{width:14.385920pt;}
._19{width:17.310507pt;}
._1c{width:43.193813pt;}
._18{width:94.546560pt;}
._1d{width:178.698667pt;}
._15{width:250.528000pt;}
._1e{width:1149.866667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:5.280000pt;}
.ye{bottom:5.760000pt;}
.y31{bottom:15.360000pt;}
.y20{bottom:30.880000pt;}
.y30{bottom:34.880000pt;}
.y1f{bottom:48.506667pt;}
.y6{bottom:53.952000pt;}
.y2f{bottom:54.266667pt;}
.y1e{bottom:66.106667pt;}
.y2e{bottom:73.626667pt;}
.ybe{bottom:74.112000pt;}
.y46{bottom:75.232000pt;}
.y87{bottom:82.112000pt;}
.y1d{bottom:83.706667pt;}
.yb6{bottom:83.712000pt;}
.y7c{bottom:90.112000pt;}
.ybd{bottom:91.712000pt;}
.y45{bottom:92.832000pt;}
.y2d{bottom:92.986667pt;}
.yee{bottom:93.312000pt;}
.y86{bottom:99.712000pt;}
.yb5{bottom:101.312000pt;}
.y1c{bottom:101.466667pt;}
.y7b{bottom:107.712000pt;}
.ybc{bottom:109.312000pt;}
.y44{bottom:110.432000pt;}
.yed{bottom:110.912000pt;}
.y2c{bottom:112.346667pt;}
.y85{bottom:117.312000pt;}
.yb4{bottom:118.912000pt;}
.y1b{bottom:119.066667pt;}
.y7a{bottom:125.312000pt;}
.ybb{bottom:126.912000pt;}
.y43{bottom:128.192000pt;}
.yec{bottom:128.672000pt;}
.y2b{bottom:131.866667pt;}
.y84{bottom:134.906667pt;}
.y1a{bottom:136.666667pt;}
.y79{bottom:142.906667pt;}
.yba{bottom:144.666667pt;}
.yeb{bottom:146.266667pt;}
.y2a{bottom:151.226667pt;}
.y83{bottom:152.666667pt;}
.y42{bottom:153.786667pt;}
.y19{bottom:154.266667pt;}
.y78{bottom:160.666667pt;}
.yb3{bottom:162.266667pt;}
.yea{bottom:163.866667pt;}
.yfc{bottom:168.666667pt;}
.y82{bottom:170.266667pt;}
.y29{bottom:170.586667pt;}
.y41{bottom:171.386667pt;}
.y18{bottom:171.866667pt;}
.y77{bottom:178.266667pt;}
.yb2{bottom:179.866667pt;}
.ye9{bottom:181.466667pt;}
.yfb{bottom:186.266667pt;}
.y81{bottom:187.866667pt;}
.y40{bottom:188.986667pt;}
.y17{bottom:189.626667pt;}
.y28{bottom:189.946667pt;}
.y76{bottom:195.866667pt;}
.yb1{bottom:197.466667pt;}
.ye8{bottom:199.066667pt;}
.yfa{bottom:203.866667pt;}
.y80{bottom:205.466667pt;}
.y3f{bottom:206.586667pt;}
.y16{bottom:207.226667pt;}
.y27{bottom:209.466667pt;}
.y75{bottom:213.466667pt;}
.ye7{bottom:216.826667pt;}
.yf9{bottom:221.466667pt;}
.y7f{bottom:223.066667pt;}
.y3e{bottom:224.186667pt;}
.y15{bottom:224.826667pt;}
.y26{bottom:228.826667pt;}
.y74{bottom:231.066667pt;}
.ye6{bottom:234.426667pt;}
.yf8{bottom:239.066667pt;}
.yb0{bottom:240.826667pt;}
.y3d{bottom:241.946667pt;}
.y14{bottom:242.426667pt;}
.y25{bottom:248.186667pt;}
.y73{bottom:248.866667pt;}
.ye5{bottom:252.066667pt;}
.yf7{bottom:256.866667pt;}
.yaf{bottom:258.466667pt;}
.y3c{bottom:259.586667pt;}
.y13{bottom:260.026667pt;}
.y72{bottom:266.466667pt;}
.ye4{bottom:269.666667pt;}
.yf6{bottom:274.466667pt;}
.yae{bottom:276.066667pt;}
.y3b{bottom:277.186667pt;}
.y12{bottom:277.786667pt;}
.y24{bottom:280.986667pt;}
.y71{bottom:284.066667pt;}
.ye3{bottom:287.266667pt;}
.yf5{bottom:292.066667pt;}
.yad{bottom:293.666667pt;}
.y3a{bottom:294.786667pt;}
.y11{bottom:295.426667pt;}
.y23{bottom:300.386667pt;}
.y70{bottom:301.666667pt;}
.ye2{bottom:305.026667pt;}
.yf4{bottom:309.666667pt;}
.yac{bottom:311.266667pt;}
.y39{bottom:312.386667pt;}
.y10{bottom:313.026667pt;}
.y6f{bottom:319.266667pt;}
.y22{bottom:319.746667pt;}
.ye1{bottom:322.626667pt;}
.yf3{bottom:327.266667pt;}
.yab{bottom:329.026667pt;}
.y38{bottom:330.146667pt;}
.y6e{bottom:337.026667pt;}
.ye0{bottom:340.226667pt;}
.yf2{bottom:345.026667pt;}
.yaa{bottom:346.626667pt;}
.y37{bottom:347.746667pt;}
.y6d{bottom:354.626667pt;}
.ydf{bottom:357.826667pt;}
.yf1{bottom:362.626667pt;}
.ya9{bottom:364.226667pt;}
.y36{bottom:365.346667pt;}
.y6c{bottom:372.226667pt;}
.yde{bottom:375.426667pt;}
.y7e{bottom:380.226667pt;}
.ya8{bottom:381.826667pt;}
.y35{bottom:382.946667pt;}
.y6b{bottom:389.826667pt;}
.y7d{bottom:397.826667pt;}
.ya7{bottom:399.426667pt;}
.y34{bottom:400.546667pt;}
.ydd{bottom:401.186667pt;}
.yf0{bottom:407.426667pt;}
.y6a{bottom:415.426667pt;}
.ya6{bottom:417.186667pt;}
.y33{bottom:418.306667pt;}
.ydc{bottom:418.786667pt;}
.yef{bottom:425.186667pt;}
.y69{bottom:433.186667pt;}
.ya5{bottom:434.786667pt;}
.y32{bottom:435.906667pt;}
.yb9{bottom:442.786667pt;}
.ydb{bottom:444.386667pt;}
.yf{bottom:450.306667pt;}
.y68{bottom:450.786667pt;}
.ya4{bottom:452.386667pt;}
.yb8{bottom:460.386667pt;}
.yda{bottom:461.986667pt;}
.y67{bottom:468.386667pt;}
.ya3{bottom:469.986667pt;}
.yb7{bottom:477.986667pt;}
.yd9{bottom:479.586667pt;}
.y66{bottom:485.986667pt;}
.ya2{bottom:495.613333pt;}
.yd8{bottom:497.373333pt;}
.y65{bottom:503.613333pt;}
.ya1{bottom:513.373333pt;}
.yd7{bottom:514.973333pt;}
.y64{bottom:521.373333pt;}
.ya0{bottom:530.973333pt;}
.yd6{bottom:532.573333pt;}
.y63{bottom:538.973333pt;}
.y9f{bottom:548.573333pt;}
.yd5{bottom:550.173333pt;}
.y62{bottom:556.573333pt;}
.y9e{bottom:566.173333pt;}
.yd4{bottom:567.773333pt;}
.y61{bottom:574.173333pt;}
.y9d{bottom:583.773333pt;}
.yd3{bottom:585.533333pt;}
.y60{bottom:591.773333pt;}
.y9c{bottom:601.533333pt;}
.yd2{bottom:603.133333pt;}
.y5f{bottom:609.533333pt;}
.y9b{bottom:619.133333pt;}
.yd1{bottom:620.733333pt;}
.y5e{bottom:627.133333pt;}
.y9a{bottom:636.733333pt;}
.yd0{bottom:638.333333pt;}
.y5d{bottom:644.733333pt;}
.y99{bottom:654.333333pt;}
.ycf{bottom:655.933333pt;}
.y5c{bottom:662.333333pt;}
.y98{bottom:671.933333pt;}
.yce{bottom:673.533333pt;}
.y5b{bottom:679.933333pt;}
.y97{bottom:689.533333pt;}
.ycd{bottom:691.293333pt;}
.y5a{bottom:697.533333pt;}
.y96{bottom:707.293333pt;}
.ycc{bottom:708.893333pt;}
.y59{bottom:715.293333pt;}
.y95{bottom:724.893333pt;}
.ycb{bottom:726.493333pt;}
.y58{bottom:732.893333pt;}
.y94{bottom:742.493333pt;}
.yca{bottom:744.093333pt;}
.y57{bottom:750.533333pt;}
.y93{bottom:760.133333pt;}
.yc9{bottom:761.733333pt;}
.y56{bottom:768.133333pt;}
.y92{bottom:777.733333pt;}
.yc8{bottom:779.493333pt;}
.yd{bottom:785.733333pt;}
.y91{bottom:795.493333pt;}
.yc7{bottom:797.093333pt;}
.y55{bottom:803.493333pt;}
.yc{bottom:812.293333pt;}
.y90{bottom:813.093333pt;}
.yc6{bottom:814.693333pt;}
.y54{bottom:821.093333pt;}
.y8f{bottom:830.693333pt;}
.yc5{bottom:832.293333pt;}
.yb{bottom:834.693333pt;}
.y53{bottom:838.693333pt;}
.ya{bottom:848.133333pt;}
.y8e{bottom:848.293333pt;}
.yc4{bottom:849.893333pt;}
.y52{bottom:856.293333pt;}
.y8d{bottom:865.893333pt;}
.y9{bottom:867.493333pt;}
.yc3{bottom:867.653333pt;}
.y51{bottom:873.893333pt;}
.y8c{bottom:883.653333pt;}
.y8{bottom:889.573333pt;}
.y50{bottom:891.653333pt;}
.yc2{bottom:893.253333pt;}
.y8b{bottom:901.253333pt;}
.y4f{bottom:909.253333pt;}
.yc1{bottom:910.853333pt;}
.y7{bottom:917.893333pt;}
.y8a{bottom:918.853333pt;}
.y4e{bottom:926.853333pt;}
.yc0{bottom:928.453333pt;}
.y89{bottom:936.453333pt;}
.y4d{bottom:944.453333pt;}
.y5{bottom:951.973333pt;}
.y88{bottom:954.053333pt;}
.y4c{bottom:962.053333pt;}
.ybf{bottom:971.813333pt;}
.y4{bottom:977.893333pt;}
.y4b{bottom:979.813333pt;}
.y4a{bottom:997.440000pt;}
.y3{bottom:1003.840000pt;}
.y49{bottom:1015.040000pt;}
.y2{bottom:1029.920000pt;}
.y48{bottom:1032.640000pt;}
.y1{bottom:1057.120000pt;}
.y47{bottom:1060.800000pt;}
.ha{height:19.520000pt;}
.h8{height:24.131250pt;}
.h9{height:37.090625pt;}
.hc{height:37.479688pt;}
.hd{height:38.672812pt;}
.h3{height:41.112500pt;}
.h6{height:41.543750pt;}
.h4{height:45.156250pt;}
.h7{height:47.310625pt;}
.h2{height:52.832812pt;}
.h5{height:60.057813pt;}
.hb{height:333.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:151.066667pt;}
.w3{width:556.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x5{left:-48.000012pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x2{left:43.360000pt;}
.x1{left:48.159988pt;}
.x9{left:71.999988pt;}
.x6{left:96.031988pt;}
.x8{left:144.026655pt;}
.x7{left:189.786655pt;}
.x4{left:599.453333pt;}
}




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