
    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_311e1bbe445feb97d47f36c6.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_1f7d167d12e02a16b09d92a1.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_33a10ff7bbd6aea825934a41.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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_6ba6a6abb19328000f9eb113.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_1bd5a400fd51f4f5bcc8933c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_471be447cd19f336138e8f08.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_eebedd66f7856d68b65e54c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740234;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:ffb;src:url('chunks/assets/font_351e1f451dbfa9cd8cd051ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls24{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.292200px;}
.ls17{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls20{letter-spacing:0.306600px;}
.lsb{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.480000px;}
.ls1e{letter-spacing:2.340000px;}
.ls11{letter-spacing:3.060000px;}
.ls3{letter-spacing:5.940000px;}
.ls9{letter-spacing:7.866720px;}
.ls15{letter-spacing:9.540000px;}
.lsd{letter-spacing:10.980000px;}
.ls10{letter-spacing:11.466720px;}
.ls16{letter-spacing:11.700000px;}
.ls14{letter-spacing:13.140000px;}
.ls1d{letter-spacing:14.580000px;}
.lsc{letter-spacing:15.066720px;}
.ls25{letter-spacing:16.506720px;}
.ls1c{letter-spacing:24.426720px;}
.ls0{letter-spacing:31.626720px;}
.ls1b{letter-spacing:36.900000px;}
.ls1f{letter-spacing:38.340000px;}
.ls23{letter-spacing:46.026720px;}
.ls13{letter-spacing:61.146720px;}
.lsf{letter-spacing:61.290720px;}
.ls12{letter-spacing:64.026720px;}
.lse{letter-spacing:64.170720px;}
.lsa{letter-spacing:65.466720px;}
.ls22{letter-spacing:65.610720px;}
.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:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.ws4{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.wse{word-spacing:-9.437760px;}
.ws7{word-spacing:0.000000px;}
.wsf{word-spacing:56.626560px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1165.366080px;}
._25{margin-left:-15.225840px;}
._28{margin-left:-11.546640px;}
._a{margin-left:-3.249840px;}
._b{margin-left:-2.217840px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._6{width:2.883120px;}
._d{width:3.961440px;}
._c{width:5.907600px;}
._9{width:7.001520px;}
._8{width:8.035200px;}
._7{width:9.471120px;}
._15{width:10.751760px;}
._11{width:12.250800px;}
._16{width:13.795920px;}
._14{width:16.673040px;}
._e{width:18.406080px;}
._10{width:19.780560px;}
._f{width:21.035520px;}
._1e{width:22.649040px;}
._1d{width:23.664960px;}
._2d{width:24.672240px;}
._22{width:25.696800px;}
._1f{width:27.646080px;}
._23{width:28.675440px;}
._20{width:29.760480px;}
._2c{width:30.932880px;}
._18{width:32.031360px;}
._17{width:33.286320px;}
._13{width:34.518480px;}
._12{width:35.915760px;}
._19{width:37.566240px;}
._1a{width:39.239520px;}
._1b{width:40.278240px;}
._1c{width:41.512320px;}
._27{width:43.050000px;}
._24{width:44.677680px;}
._26{width:46.553040px;}
._21{width:49.091280px;}
._2a{width:63.308640px;}
._29{width:64.338720px;}
._2b{width:71.386800px;}
.fc4{color:rgb(11,87,208);}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:50.400000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.y9{bottom:10.980000px;}
.y8{bottom:11.700000px;}
.yd4{bottom:16.530000px;}
.ya{bottom:36.720000px;}
.ycb{bottom:43.890000px;}
.y6{bottom:52.380000px;}
.ycc{bottom:72.360000px;}
.y3a{bottom:79.920000px;}
.yc9{bottom:81.180000px;}
.y72{bottom:84.780000px;}
.ya0{bottom:86.580000px;}
.ye2{bottom:95.580000px;}
.yb8{bottom:97.380000px;}
.y39{bottom:99.720000px;}
.ycd{bottom:100.830000px;}
.y71{bottom:104.580000px;}
.y9a{bottom:106.380000px;}
.yc7{bottom:113.580000px;}
.ye1{bottom:115.380000px;}
.yb7{bottom:117.180000px;}
.y38{bottom:119.520000px;}
.y70{bottom:124.380000px;}
.y99{bottom:126.180000px;}
.yce{bottom:129.315000px;}
.yc6{bottom:133.380000px;}
.yca{bottom:134.430000px;}
.ye0{bottom:135.180000px;}
.yb6{bottom:137.160000px;}
.y37{bottom:139.500000px;}
.y6f{bottom:144.180000px;}
.y98{bottom:146.160000px;}
.yc5{bottom:153.210000px;}
.ydf{bottom:155.190000px;}
.yb5{bottom:156.990000px;}
.ycf{bottom:157.785000px;}
.y36{bottom:159.330000px;}
.y6e{bottom:164.190000px;}
.y97{bottom:165.990000px;}
.yc4{bottom:173.190000px;}
.yde{bottom:174.990000px;}
.yb4{bottom:176.790000px;}
.y35{bottom:179.130000px;}
.y6d{bottom:183.990000px;}
.y96{bottom:185.790000px;}
.yd0{bottom:186.270000px;}
.yc3{bottom:192.990000px;}
.ydd{bottom:194.790000px;}
.yb3{bottom:196.590000px;}
.y34{bottom:198.930000px;}
.y6c{bottom:203.790000px;}
.y95{bottom:205.590000px;}
.yc2{bottom:212.790000px;}
.ydc{bottom:214.590000px;}
.yd1{bottom:214.740000px;}
.yb2{bottom:216.390000px;}
.y33{bottom:218.730000px;}
.y6b{bottom:223.590000px;}
.y94{bottom:225.390000px;}
.yc1{bottom:232.590000px;}
.ydb{bottom:234.390000px;}
.yb1{bottom:236.370000px;}
.y32{bottom:238.710000px;}
.yd2{bottom:243.255000px;}
.y6a{bottom:243.390000px;}
.y93{bottom:245.370000px;}
.yc0{bottom:252.390000px;}
.yda{bottom:254.370000px;}
.yb0{bottom:256.170000px;}
.y31{bottom:258.510000px;}
.y69{bottom:263.370000px;}
.y92{bottom:265.170000px;}
.yd3{bottom:268.410000px;}
.ybf{bottom:272.370000px;}
.yd9{bottom:274.170000px;}
.yaf{bottom:275.970000px;}
.y30{bottom:278.310000px;}
.y68{bottom:283.170000px;}
.y91{bottom:284.970000px;}
.ybe{bottom:292.170000px;}
.y9f{bottom:293.970000px;}
.yae{bottom:295.770000px;}
.y2f{bottom:298.110000px;}
.y67{bottom:302.970000px;}
.y90{bottom:304.770000px;}
.ybd{bottom:311.970000px;}
.y9e{bottom:313.770000px;}
.y2e{bottom:317.910000px;}
.y66{bottom:322.770000px;}
.y8f{bottom:324.570000px;}
.ybc{bottom:331.770000px;}
.y9d{bottom:333.570000px;}
.y2d{bottom:337.890000px;}
.y65{bottom:342.570000px;}
.y8e{bottom:344.550000px;}
.ybb{bottom:351.570000px;}
.y9c{bottom:353.550000px;}
.y2c{bottom:357.690000px;}
.y64{bottom:362.550000px;}
.yad{bottom:364.350000px;}
.yba{bottom:371.550000px;}
.y8d{bottom:373.350000px;}
.y2b{bottom:377.490000px;}
.y63{bottom:382.350000px;}
.yac{bottom:384.150000px;}
.yb9{bottom:391.350000px;}
.y8c{bottom:393.150000px;}
.y2a{bottom:397.290000px;}
.y62{bottom:402.195000px;}
.yab{bottom:403.995000px;}
.y9b{bottom:411.195000px;}
.y8b{bottom:412.995000px;}
.y29{bottom:417.135000px;}
.yaa{bottom:423.795000px;}
.y61{bottom:430.995000px;}
.y8a{bottom:432.795000px;}
.y28{bottom:437.115000px;}
.ya9{bottom:443.775000px;}
.y60{bottom:450.795000px;}
.y89{bottom:452.775000px;}
.y27{bottom:456.915000px;}
.ya8{bottom:463.575000px;}
.y5f{bottom:470.775000px;}
.y88{bottom:472.575000px;}
.y26{bottom:476.715000px;}
.ya7{bottom:483.375000px;}
.y5e{bottom:490.575000px;}
.y87{bottom:492.375000px;}
.y25{bottom:496.515000px;}
.ya6{bottom:503.175000px;}
.y5d{bottom:510.375000px;}
.y86{bottom:512.175000px;}
.y24{bottom:516.315000px;}
.y5c{bottom:530.175000px;}
.y85{bottom:531.975000px;}
.y23{bottom:536.295000px;}
.y5b{bottom:549.975000px;}
.yc8{bottom:550.800000px;}
.y84{bottom:551.955000px;}
.y22{bottom:556.095000px;}
.y5a{bottom:569.955000px;}
.y83{bottom:571.755000px;}
.y21{bottom:575.895000px;}
.y59{bottom:589.755000px;}
.y82{bottom:591.555000px;}
.y20{bottom:595.695000px;}
.y58{bottom:609.555000px;}
.ya5{bottom:611.355000px;}
.y1f{bottom:615.495000px;}
.y81{bottom:620.355000px;}
.y57{bottom:629.355000px;}
.ya4{bottom:631.155000px;}
.y1e{bottom:635.475000px;}
.y80{bottom:640.155000px;}
.y56{bottom:649.185000px;}
.ya3{bottom:651.165000px;}
.y1d{bottom:655.305000px;}
.y7f{bottom:660.165000px;}
.y55{bottom:669.165000px;}
.ya2{bottom:670.965000px;}
.y1c{bottom:675.105000px;}
.y7e{bottom:679.965000px;}
.y54{bottom:688.965000px;}
.yd8{bottom:690.765000px;}
.y1b{bottom:694.905000px;}
.y7d{bottom:699.765000px;}
.y53{bottom:708.765000px;}
.yd7{bottom:710.565000px;}
.y1a{bottom:717.045000px;}
.y7c{bottom:719.565000px;}
.y52{bottom:728.565000px;}
.yd6{bottom:730.365000px;}
.y19{bottom:736.845000px;}
.y7b{bottom:739.365000px;}
.y51{bottom:748.365000px;}
.y18{bottom:756.645000px;}
.y7a{bottom:759.345000px;}
.y50{bottom:768.345000px;}
.y17{bottom:776.625000px;}
.y79{bottom:779.145000px;}
.y4f{bottom:788.145000px;}
.y16{bottom:796.425000px;}
.y78{bottom:798.945000px;}
.y4e{bottom:807.945000px;}
.y15{bottom:816.225000px;}
.y77{bottom:818.745000px;}
.y4d{bottom:827.745000px;}
.y14{bottom:836.025000px;}
.y76{bottom:838.545000px;}
.y4c{bottom:847.545000px;}
.y13{bottom:855.825000px;}
.y75{bottom:858.525000px;}
.y4b{bottom:867.525000px;}
.y12{bottom:875.805000px;}
.y74{bottom:878.325000px;}
.y4a{bottom:887.325000px;}
.y11{bottom:895.425000px;}
.y73{bottom:898.170000px;}
.y49{bottom:907.170000px;}
.y10{bottom:917.610000px;}
.ya1{bottom:917.970000px;}
.y48{bottom:926.970000px;}
.yf{bottom:937.590000px;}
.yd5{bottom:937.770000px;}
.y47{bottom:946.770000px;}
.ye{bottom:962.610000px;}
.y46{bottom:966.750000px;}
.yd{bottom:977.730000px;}
.y45{bottom:986.550000px;}
.yc{bottom:998.970000px;}
.y44{bottom:1006.350000px;}
.yb{bottom:1022.550000px;}
.y43{bottom:1026.150000px;}
.y42{bottom:1045.950000px;}
.y5{bottom:1050.630000px;}
.y41{bottom:1065.930000px;}
.y4{bottom:1081.950000px;}
.y40{bottom:1085.730000px;}
.y3f{bottom:1105.530000px;}
.y3{bottom:1112.730000px;}
.y3e{bottom:1125.330000px;}
.y2{bottom:1143.690000px;}
.y3d{bottom:1145.130000px;}
.y3c{bottom:1165.140000px;}
.y1{bottom:1177.560000px;}
.y3b{bottom:1194.480000px;}
.h5{height:21.240000px;}
.hb{height:27.147656px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.h4{height:41.726953px;}
.h9{height:42.164648px;}
.h11{height:42.759141px;}
.hc{height:43.506914px;}
.h3{height:46.736719px;}
.hf{height:48.496641px;}
.hd{height:49.255313px;}
.h12{height:51.605859px;}
.ha{height:53.224453px;}
.he{height:59.439023px;}
.h8{height:65.884219px;}
.h2{height:67.565039px;}
.h10{height:291.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.816000px;}
.w5{width:361.440000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1e{left:9.975000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x14{left:70.199987px;}
.xe{left:75.599987px;}
.xb{left:76.859987px;}
.x21{left:86.435987px;}
.x9{left:94.535987px;}
.x24{left:102.275987px;}
.x11{left:108.035987px;}
.x1f{left:112.170000px;}
.x4{left:120.636000px;}
.x18{left:130.535987px;}
.x1c{left:134.535000px;}
.xd{left:142.055987px;}
.x20{left:153.255000px;}
.xf{left:163.649987px;}
.x13{left:209.189987px;}
.x1d{left:217.440000px;}
.x10{left:236.909987px;}
.x8{left:243.399000px;}
.x7{left:248.439000px;}
.xc{left:282.674987px;}
.x6{left:413.709000px;}
.x5{left:427.029000px;}
.xa{left:446.504987px;}
.x12{left:473.144987px;}
.x1b{left:486.540000px;}
.x15{left:489.344987px;}
.x16{left:494.744987px;}
.x17{left:505.544987px;}
.x23{left:521.384987px;}
.x22{left:527.144987px;}
.x19{left:552.704987px;}
.x1a{left:656.069987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.259733pt;}
.ls17{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls20{letter-spacing:0.272533pt;}
.lsb{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls11{letter-spacing:2.720000pt;}
.ls3{letter-spacing:5.280000pt;}
.ls9{letter-spacing:6.992640pt;}
.ls15{letter-spacing:8.480000pt;}
.lsd{letter-spacing:9.760000pt;}
.ls10{letter-spacing:10.192640pt;}
.ls16{letter-spacing:10.400000pt;}
.ls14{letter-spacing:11.680000pt;}
.ls1d{letter-spacing:12.960000pt;}
.lsc{letter-spacing:13.392640pt;}
.ls25{letter-spacing:14.672640pt;}
.ls1c{letter-spacing:21.712640pt;}
.ls0{letter-spacing:28.112640pt;}
.ls1b{letter-spacing:32.800000pt;}
.ls1f{letter-spacing:34.080000pt;}
.ls23{letter-spacing:40.912640pt;}
.ls13{letter-spacing:54.352640pt;}
.lsf{letter-spacing:54.480640pt;}
.ls12{letter-spacing:56.912640pt;}
.lse{letter-spacing:57.040640pt;}
.lsa{letter-spacing:58.192640pt;}
.ls22{letter-spacing:58.320640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.ws4{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws3{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.389120pt;}
.ws7{word-spacing:0.000000pt;}
.wsf{word-spacing:50.334720pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1035.880960pt;}
._25{margin-left:-13.534080pt;}
._28{margin-left:-10.263680pt;}
._a{margin-left:-2.888747pt;}
._b{margin-left:-1.971413pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._6{width:2.562773pt;}
._d{width:3.521280pt;}
._c{width:5.251200pt;}
._9{width:6.223573pt;}
._8{width:7.142400pt;}
._7{width:8.418773pt;}
._15{width:9.557120pt;}
._11{width:10.889600pt;}
._16{width:12.263040pt;}
._14{width:14.820480pt;}
._e{width:16.360960pt;}
._10{width:17.582720pt;}
._f{width:18.698240pt;}
._1e{width:20.132480pt;}
._1d{width:21.035520pt;}
._2d{width:21.930880pt;}
._22{width:22.841600pt;}
._1f{width:24.574293pt;}
._23{width:25.489280pt;}
._20{width:26.453760pt;}
._2c{width:27.495893pt;}
._18{width:28.472320pt;}
._17{width:29.587840pt;}
._13{width:30.683093pt;}
._12{width:31.925120pt;}
._19{width:33.392213pt;}
._1a{width:34.879573pt;}
._1b{width:35.802880pt;}
._1c{width:36.899840pt;}
._27{width:38.266667pt;}
._24{width:39.713493pt;}
._26{width:41.380480pt;}
._21{width:43.636693pt;}
._2a{width:56.274347pt;}
._29{width:57.189973pt;}
._2b{width:63.454933pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:44.800000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.y9{bottom:9.760000pt;}
.y8{bottom:10.400000pt;}
.yd4{bottom:14.693333pt;}
.ya{bottom:32.640000pt;}
.ycb{bottom:39.013333pt;}
.y6{bottom:46.560000pt;}
.ycc{bottom:64.320000pt;}
.y3a{bottom:71.040000pt;}
.yc9{bottom:72.160000pt;}
.y72{bottom:75.360000pt;}
.ya0{bottom:76.960000pt;}
.ye2{bottom:84.960000pt;}
.yb8{bottom:86.560000pt;}
.y39{bottom:88.640000pt;}
.ycd{bottom:89.626667pt;}
.y71{bottom:92.960000pt;}
.y9a{bottom:94.560000pt;}
.yc7{bottom:100.960000pt;}
.ye1{bottom:102.560000pt;}
.yb7{bottom:104.160000pt;}
.y38{bottom:106.240000pt;}
.y70{bottom:110.560000pt;}
.y99{bottom:112.160000pt;}
.yce{bottom:114.946667pt;}
.yc6{bottom:118.560000pt;}
.yca{bottom:119.493333pt;}
.ye0{bottom:120.160000pt;}
.yb6{bottom:121.920000pt;}
.y37{bottom:124.000000pt;}
.y6f{bottom:128.160000pt;}
.y98{bottom:129.920000pt;}
.yc5{bottom:136.186667pt;}
.ydf{bottom:137.946667pt;}
.yb5{bottom:139.546667pt;}
.ycf{bottom:140.253333pt;}
.y36{bottom:141.626667pt;}
.y6e{bottom:145.946667pt;}
.y97{bottom:147.546667pt;}
.yc4{bottom:153.946667pt;}
.yde{bottom:155.546667pt;}
.yb4{bottom:157.146667pt;}
.y35{bottom:159.226667pt;}
.y6d{bottom:163.546667pt;}
.y96{bottom:165.146667pt;}
.yd0{bottom:165.573333pt;}
.yc3{bottom:171.546667pt;}
.ydd{bottom:173.146667pt;}
.yb3{bottom:174.746667pt;}
.y34{bottom:176.826667pt;}
.y6c{bottom:181.146667pt;}
.y95{bottom:182.746667pt;}
.yc2{bottom:189.146667pt;}
.ydc{bottom:190.746667pt;}
.yd1{bottom:190.880000pt;}
.yb2{bottom:192.346667pt;}
.y33{bottom:194.426667pt;}
.y6b{bottom:198.746667pt;}
.y94{bottom:200.346667pt;}
.yc1{bottom:206.746667pt;}
.ydb{bottom:208.346667pt;}
.yb1{bottom:210.106667pt;}
.y32{bottom:212.186667pt;}
.yd2{bottom:216.226667pt;}
.y6a{bottom:216.346667pt;}
.y93{bottom:218.106667pt;}
.yc0{bottom:224.346667pt;}
.yda{bottom:226.106667pt;}
.yb0{bottom:227.706667pt;}
.y31{bottom:229.786667pt;}
.y69{bottom:234.106667pt;}
.y92{bottom:235.706667pt;}
.yd3{bottom:238.586667pt;}
.ybf{bottom:242.106667pt;}
.yd9{bottom:243.706667pt;}
.yaf{bottom:245.306667pt;}
.y30{bottom:247.386667pt;}
.y68{bottom:251.706667pt;}
.y91{bottom:253.306667pt;}
.ybe{bottom:259.706667pt;}
.y9f{bottom:261.306667pt;}
.yae{bottom:262.906667pt;}
.y2f{bottom:264.986667pt;}
.y67{bottom:269.306667pt;}
.y90{bottom:270.906667pt;}
.ybd{bottom:277.306667pt;}
.y9e{bottom:278.906667pt;}
.y2e{bottom:282.586667pt;}
.y66{bottom:286.906667pt;}
.y8f{bottom:288.506667pt;}
.ybc{bottom:294.906667pt;}
.y9d{bottom:296.506667pt;}
.y2d{bottom:300.346667pt;}
.y65{bottom:304.506667pt;}
.y8e{bottom:306.266667pt;}
.ybb{bottom:312.506667pt;}
.y9c{bottom:314.266667pt;}
.y2c{bottom:317.946667pt;}
.y64{bottom:322.266667pt;}
.yad{bottom:323.866667pt;}
.yba{bottom:330.266667pt;}
.y8d{bottom:331.866667pt;}
.y2b{bottom:335.546667pt;}
.y63{bottom:339.866667pt;}
.yac{bottom:341.466667pt;}
.yb9{bottom:347.866667pt;}
.y8c{bottom:349.466667pt;}
.y2a{bottom:353.146667pt;}
.y62{bottom:357.506667pt;}
.yab{bottom:359.106667pt;}
.y9b{bottom:365.506667pt;}
.y8b{bottom:367.106667pt;}
.y29{bottom:370.786667pt;}
.yaa{bottom:376.706667pt;}
.y61{bottom:383.106667pt;}
.y8a{bottom:384.706667pt;}
.y28{bottom:388.546667pt;}
.ya9{bottom:394.466667pt;}
.y60{bottom:400.706667pt;}
.y89{bottom:402.466667pt;}
.y27{bottom:406.146667pt;}
.ya8{bottom:412.066667pt;}
.y5f{bottom:418.466667pt;}
.y88{bottom:420.066667pt;}
.y26{bottom:423.746667pt;}
.ya7{bottom:429.666667pt;}
.y5e{bottom:436.066667pt;}
.y87{bottom:437.666667pt;}
.y25{bottom:441.346667pt;}
.ya6{bottom:447.266667pt;}
.y5d{bottom:453.666667pt;}
.y86{bottom:455.266667pt;}
.y24{bottom:458.946667pt;}
.y5c{bottom:471.266667pt;}
.y85{bottom:472.866667pt;}
.y23{bottom:476.706667pt;}
.y5b{bottom:488.866667pt;}
.yc8{bottom:489.600000pt;}
.y84{bottom:490.626667pt;}
.y22{bottom:494.306667pt;}
.y5a{bottom:506.626667pt;}
.y83{bottom:508.226667pt;}
.y21{bottom:511.906667pt;}
.y59{bottom:524.226667pt;}
.y82{bottom:525.826667pt;}
.y20{bottom:529.506667pt;}
.y58{bottom:541.826667pt;}
.ya5{bottom:543.426667pt;}
.y1f{bottom:547.106667pt;}
.y81{bottom:551.426667pt;}
.y57{bottom:559.426667pt;}
.ya4{bottom:561.026667pt;}
.y1e{bottom:564.866667pt;}
.y80{bottom:569.026667pt;}
.y56{bottom:577.053333pt;}
.ya3{bottom:578.813333pt;}
.y1d{bottom:582.493333pt;}
.y7f{bottom:586.813333pt;}
.y55{bottom:594.813333pt;}
.ya2{bottom:596.413333pt;}
.y1c{bottom:600.093333pt;}
.y7e{bottom:604.413333pt;}
.y54{bottom:612.413333pt;}
.yd8{bottom:614.013333pt;}
.y1b{bottom:617.693333pt;}
.y7d{bottom:622.013333pt;}
.y53{bottom:630.013333pt;}
.yd7{bottom:631.613333pt;}
.y1a{bottom:637.373333pt;}
.y7c{bottom:639.613333pt;}
.y52{bottom:647.613333pt;}
.yd6{bottom:649.213333pt;}
.y19{bottom:654.973333pt;}
.y7b{bottom:657.213333pt;}
.y51{bottom:665.213333pt;}
.y18{bottom:672.573333pt;}
.y7a{bottom:674.973333pt;}
.y50{bottom:682.973333pt;}
.y17{bottom:690.333333pt;}
.y79{bottom:692.573333pt;}
.y4f{bottom:700.573333pt;}
.y16{bottom:707.933333pt;}
.y78{bottom:710.173333pt;}
.y4e{bottom:718.173333pt;}
.y15{bottom:725.533333pt;}
.y77{bottom:727.773333pt;}
.y4d{bottom:735.773333pt;}
.y14{bottom:743.133333pt;}
.y76{bottom:745.373333pt;}
.y4c{bottom:753.373333pt;}
.y13{bottom:760.733333pt;}
.y75{bottom:763.133333pt;}
.y4b{bottom:771.133333pt;}
.y12{bottom:778.493333pt;}
.y74{bottom:780.733333pt;}
.y4a{bottom:788.733333pt;}
.y11{bottom:795.933333pt;}
.y73{bottom:798.373333pt;}
.y49{bottom:806.373333pt;}
.y10{bottom:815.653333pt;}
.ya1{bottom:815.973333pt;}
.y48{bottom:823.973333pt;}
.yf{bottom:833.413333pt;}
.yd5{bottom:833.573333pt;}
.y47{bottom:841.573333pt;}
.ye{bottom:855.653333pt;}
.y46{bottom:859.333333pt;}
.yd{bottom:869.093333pt;}
.y45{bottom:876.933333pt;}
.yc{bottom:887.973333pt;}
.y44{bottom:894.533333pt;}
.yb{bottom:908.933333pt;}
.y43{bottom:912.133333pt;}
.y42{bottom:929.733333pt;}
.y5{bottom:933.893333pt;}
.y41{bottom:947.493333pt;}
.y4{bottom:961.733333pt;}
.y40{bottom:965.093333pt;}
.y3f{bottom:982.693333pt;}
.y3{bottom:989.093333pt;}
.y3e{bottom:1000.293333pt;}
.y2{bottom:1016.613333pt;}
.y3d{bottom:1017.893333pt;}
.y3c{bottom:1035.680000pt;}
.y1{bottom:1046.720000pt;}
.y3b{bottom:1061.760000pt;}
.h5{height:18.880000pt;}
.hb{height:24.131250pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.h4{height:37.090625pt;}
.h9{height:37.479688pt;}
.h11{height:38.008125pt;}
.hc{height:38.672812pt;}
.h3{height:41.543750pt;}
.hf{height:43.108125pt;}
.hd{height:43.782500pt;}
.h12{height:45.871875pt;}
.ha{height:47.310625pt;}
.he{height:52.834688pt;}
.h8{height:58.563750pt;}
.h2{height:60.057813pt;}
.h10{height:259.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:51.392000pt;}
.w5{width:321.280000pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1e{left:8.866667pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x14{left:62.399988pt;}
.xe{left:67.199988pt;}
.xb{left:68.319988pt;}
.x21{left:76.831988pt;}
.x9{left:84.031988pt;}
.x24{left:90.911988pt;}
.x11{left:96.031988pt;}
.x1f{left:99.706667pt;}
.x4{left:107.232000pt;}
.x18{left:116.031988pt;}
.x1c{left:119.586667pt;}
.xd{left:126.271988pt;}
.x20{left:136.226667pt;}
.xf{left:145.466655pt;}
.x13{left:185.946655pt;}
.x1d{left:193.280000pt;}
.x10{left:210.586655pt;}
.x8{left:216.354667pt;}
.x7{left:220.834667pt;}
.xc{left:251.266655pt;}
.x6{left:367.741333pt;}
.x5{left:379.581333pt;}
.xa{left:396.893322pt;}
.x12{left:420.573322pt;}
.x1b{left:432.480000pt;}
.x15{left:434.973322pt;}
.x16{left:439.773322pt;}
.x17{left:449.373322pt;}
.x23{left:463.453322pt;}
.x22{left:468.573322pt;}
.x19{left:491.293322pt;}
.x1a{left:583.173322pt;}
}




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