
    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_fcf6267f7b1e2bce83cadb5a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cdd9d880cf015248d0e636e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.171875;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_8920bc7649a3f663343e62c9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5eb44adf8592f7cae9b8603d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_753c22d82edcccb7f1d5329f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_cae0edef478e8d95b37ff209.woff')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_be63b90a6bab289d6f943b98.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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;}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls5{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.230400px;}
.ls3{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.262200px;}
.lsf{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:31.860000px;}
.lsb{letter-spacing:46.002720px;}
.lsa{letter-spacing:64.026720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws5{word-spacing:-16.865400px;}
.ws8{word-spacing:-16.822200px;}
.ws4{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.479800px;}
.ws3{word-spacing:-14.166000px;}
.ws0{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-1.120320px;}
._3{width:1.109760px;}
._6{width:2.715840px;}
._5{width:3.765600px;}
._4{width:4.860000px;}
._b{width:5.996160px;}
._a{width:7.376160px;}
._9{width:8.784720px;}
._7{width:9.979920px;}
._8{width:11.396880px;}
._11{width:12.728880px;}
._12{width:13.891920px;}
._c{width:16.032960px;}
._1{width:17.072640px;}
._0{width:18.074880px;}
._13{width:19.919040px;}
._e{width:21.001440px;}
._16{width:22.017360px;}
._15{width:23.067360px;}
._1f{width:24.083040px;}
._19{width:25.125360px;}
._d{width:26.353680px;}
._14{width:27.489600px;}
._1a{width:28.749600px;}
._18{width:29.755440px;}
._10{width:30.900960px;}
._f{width:31.966560px;}
._17{width:33.467280px;}
._20{width:47.413440px;}
._1d{width:50.949600px;}
._1b{width:52.272960px;}
._1c{width:54.337920px;}
._1e{width:62.439840px;}
.fc5{color:rgb(31,36,60);}
.fc3{color:transparent;}
.fc2{color:rgb(14,16,26);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:5.760000px;}
.y71{bottom:6.300000px;}
.y4e{bottom:25.560000px;}
.y77{bottom:25.740000px;}
.y7b{bottom:25.785000px;}
.y70{bottom:28.080000px;}
.y52{bottom:45.360000px;}
.y5a{bottom:45.540000px;}
.y75{bottom:45.570000px;}
.y58{bottom:45.585000px;}
.y5{bottom:58.320000px;}
.y51{bottom:65.160000px;}
.y56{bottom:65.340000px;}
.y74{bottom:65.370000px;}
.y7a{bottom:65.385000px;}
.y4{bottom:78.480000px;}
.y3{bottom:98.640000px;}
.y5d{bottom:122.436000px;}
.y82{bottom:125.856000px;}
.yce{bottom:127.476000px;}
.ybc{bottom:129.996000px;}
.yb1{bottom:132.696000px;}
.y4b{bottom:135.216000px;}
.ydb{bottom:137.916000px;}
.y26{bottom:142.956000px;}
.y63{bottom:143.676000px;}
.y5c{bottom:148.356000px;}
.y81{bottom:151.770000px;}
.ycd{bottom:153.390000px;}
.ybb{bottom:155.910000px;}
.yb0{bottom:158.610000px;}
.y4a{bottom:161.130000px;}
.y5b{bottom:163.110000px;}
.yda{bottom:163.650000px;}
.y25{bottom:169.950000px;}
.y62{bottom:170.670000px;}
.y80{bottom:177.690000px;}
.ycc{bottom:179.310000px;}
.yba{bottom:181.830000px;}
.yaf{bottom:184.350000px;}
.y49{bottom:187.050000px;}
.yd9{bottom:189.570000px;}
.y61{bottom:197.490000px;}
.y24{bottom:198.570000px;}
.y7f{bottom:203.610000px;}
.ycb{bottom:205.050000px;}
.yb9{bottom:207.750000px;}
.yae{bottom:210.270000px;}
.y48{bottom:212.790000px;}
.yd8{bottom:215.490000px;}
.y60{bottom:224.490000px;}
.y23{bottom:227.010000px;}
.y7e{bottom:229.350000px;}
.yca{bottom:230.970000px;}
.yb8{bottom:233.490000px;}
.yad{bottom:236.190000px;}
.y47{bottom:238.710000px;}
.yd7{bottom:241.230000px;}
.y59{bottom:243.210000px;}
.y5f{bottom:251.490000px;}
.y7d{bottom:255.270000px;}
.y22{bottom:255.450000px;}
.yc9{bottom:256.890000px;}
.yb7{bottom:259.410000px;}
.yac{bottom:261.930000px;}
.y46{bottom:264.630000px;}
.yd6{bottom:267.150000px;}
.y7c{bottom:270.030000px;}
.y5e{bottom:276.510000px;}
.y21{bottom:282.630000px;}
.yb6{bottom:285.330000px;}
.yab{bottom:287.850000px;}
.y45{bottom:290.550000px;}
.yd5{bottom:293.070000px;}
.y20{bottom:308.550000px;}
.yb5{bottom:312.330000px;}
.yaa{bottom:313.770000px;}
.y44{bottom:316.290000px;}
.yd4{bottom:318.990000px;}
.y57{bottom:323.310000px;}
.y1f{bottom:334.470000px;}
.ya9{bottom:339.690000px;}
.y43{bottom:342.210000px;}
.yd3{bottom:344.730000px;}
.y79{bottom:350.130000px;}
.y1e{bottom:360.390000px;}
.ya8{bottom:365.475000px;}
.y42{bottom:368.175000px;}
.yd2{bottom:370.695000px;}
.y55{bottom:383.655000px;}
.y1d{bottom:386.175000px;}
.ya7{bottom:391.395000px;}
.y41{bottom:394.095000px;}
.yd1{bottom:396.615000px;}
.y1c{bottom:412.095000px;}
.ya6{bottom:417.315000px;}
.y40{bottom:419.835000px;}
.yd0{bottom:422.535000px;}
.y78{bottom:430.275000px;}
.y1b{bottom:438.015000px;}
.ya5{bottom:443.235000px;}
.y8c{bottom:445.755000px;}
.y3f{bottom:446.835000px;}
.ycf{bottom:448.275000px;}
.y54{bottom:463.755000px;}
.y1a{bottom:463.935000px;}
.ya4{bottom:468.975000px;}
.y8b{bottom:471.675000px;}
.y3e{bottom:474.195000px;}
.y19{bottom:489.675000px;}
.ya3{bottom:494.895000px;}
.y8a{bottom:497.415000px;}
.y3d{bottom:500.115000px;}
.y76{bottom:510.375000px;}
.y18{bottom:515.595000px;}
.ya2{bottom:520.815000px;}
.y89{bottom:523.335000px;}
.y3c{bottom:526.035000px;}
.y17{bottom:541.515000px;}
.y53{bottom:543.855000px;}
.ya1{bottom:546.735000px;}
.y88{bottom:549.255000px;}
.y3b{bottom:551.775000px;}
.y16{bottom:567.435000px;}
.ya0{bottom:572.475000px;}
.y87{bottom:575.175000px;}
.y3a{bottom:577.695000px;}
.y73{bottom:590.475000px;}
.y15{bottom:593.175000px;}
.y9f{bottom:598.395000px;}
.y86{bottom:600.915000px;}
.y39{bottom:603.615000px;}
.y14{bottom:619.095000px;}
.y50{bottom:623.985000px;}
.y9e{bottom:624.345000px;}
.yb4{bottom:625.425000px;}
.y85{bottom:626.865000px;}
.y38{bottom:629.565000px;}
.y13{bottom:645.045000px;}
.y9d{bottom:650.265000px;}
.y84{bottom:652.785000px;}
.y37{bottom:655.305000px;}
.y72{bottom:670.605000px;}
.y12{bottom:670.965000px;}
.y9c{bottom:677.265000px;}
.yb3{bottom:678.705000px;}
.y83{bottom:679.785000px;}
.y36{bottom:681.225000px;}
.yc8{bottom:696.705000px;}
.y11{bottom:697.965000px;}
.y4d{bottom:704.085000px;}
.y9b{bottom:704.445000px;}
.y35{bottom:707.145000px;}
.yc7{bottom:722.625000px;}
.y10{bottom:726.405000px;}
.y9a{bottom:730.365000px;}
.y34{bottom:733.065000px;}
.yc6{bottom:748.545000px;}
.y6f{bottom:750.705000px;}
.yf{bottom:756.105000px;}
.y99{bottom:756.285000px;}
.y4c{bottom:757.365000px;}
.y33{bottom:758.805000px;}
.yc5{bottom:774.285000px;}
.y98{bottom:782.205000px;}
.y32{bottom:784.725000px;}
.ye{bottom:785.805000px;}
.yc4{bottom:800.205000px;}
.y97{bottom:807.945000px;}
.y6e{bottom:808.125000px;}
.y31{bottom:810.645000px;}
.yd{bottom:815.685000px;}
.yc3{bottom:827.205000px;}
.y96{bottom:833.865000px;}
.y6d{bottom:835.305000px;}
.y30{bottom:836.385000px;}
.yc{bottom:852.225000px;}
.yc2{bottom:855.645000px;}
.y95{bottom:859.785000px;}
.y6c{bottom:861.225000px;}
.y2f{bottom:862.305000px;}
.yb{bottom:873.825000px;}
.yc1{bottom:883.050000px;}
.y94{bottom:885.750000px;}
.y6b{bottom:887.190000px;}
.y2e{bottom:888.270000px;}
.yc0{bottom:908.970000px;}
.ya{bottom:909.150000px;}
.y93{bottom:911.490000px;}
.y6a{bottom:913.110000px;}
.y2d{bottom:914.190000px;}
.y9{bottom:934.350000px;}
.ybf{bottom:934.890000px;}
.y92{bottom:937.410000px;}
.y69{bottom:938.850000px;}
.y2c{bottom:939.930000px;}
.ybe{bottom:961.890000px;}
.y91{bottom:963.330000px;}
.y68{bottom:964.770000px;}
.y2b{bottom:965.850000px;}
.y8{bottom:970.710000px;}
.y90{bottom:989.250000px;}
.ybd{bottom:990.330000px;}
.y67{bottom:990.690000px;}
.y2a{bottom:991.770000px;}
.y7{bottom:1011.390000px;}
.y8f{bottom:1014.990000px;}
.yb2{bottom:1016.250000px;}
.y66{bottom:1016.610000px;}
.y29{bottom:1017.690000px;}
.y8e{bottom:1040.910000px;}
.y65{bottom:1042.350000px;}
.y28{bottom:1043.430000px;}
.y6{bottom:1058.010000px;}
.y8d{bottom:1067.910000px;}
.y64{bottom:1068.270000px;}
.y27{bottom:1069.350000px;}
.y2{bottom:1087.890000px;}
.y1{bottom:1103.550000px;}
.h6{height:31.829766px;}
.he{height:39.600000px;}
.hf{height:42.164648px;}
.h13{height:43.560000px;}
.hb{height:45.549492px;}
.h9{height:46.736719px;}
.h7{height:50.488594px;}
.h8{height:50.800781px;}
.hd{height:53.573906px;}
.hc{height:59.383125px;}
.h12{height:59.616000px;}
.ha{height:64.546875px;}
.h2{height:65.884219px;}
.h3{height:67.824844px;}
.h5{height:68.340586px;}
.h4{height:76.201172px;}
.h10{height:79.200000px;}
.h11{height:79.380000px;}
.h14{height:79.416000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:60.480000px;}
.w6{width:84.240000px;}
.wc{width:98.280000px;}
.w4{width:105.480000px;}
.wa{width:116.316000px;}
.w9{width:137.520000px;}
.w8{width:137.556000px;}
.wb{width:144.756000px;}
.w3{width:230.610000px;}
.w5{width:275.835000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x11{left:10.440000px;}
.x14{left:28.290000px;}
.x12{left:33.840000px;}
.x1e{left:36.540000px;}
.xf{left:43.200000px;}
.x1f{left:86.795987px;}
.xe{left:100.296000px;}
.x2{left:108.035987px;}
.x6{left:131.795987px;}
.x20{left:148.535987px;}
.xa{left:153.569987px;}
.x8{left:155.369987px;}
.x1a{left:161.490000px;}
.xd{left:168.869987px;}
.x7{left:174.989987px;}
.x19{left:190.829987px;}
.x18{left:204.509987px;}
.x5{left:243.209987px;}
.x4{left:274.034987px;}
.x9{left:278.534987px;}
.x1b{left:299.775000px;}
.x10{left:331.815000px;}
.xb{left:360.254987px;}
.xc{left:361.334987px;}
.x13{left:438.015000px;}
.x1c{left:555.045000px;}
.x17{left:660.389987px;}
.x3{left:694.589987px;}
.x1d{left:700.530000px;}
.x15{left:714.570000px;}
.x1{left:784.949987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.204800pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.233067pt;}
.lsf{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:28.320000pt;}
.lsb{letter-spacing:40.891307pt;}
.lsa{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws5{word-spacing:-14.991467pt;}
.ws8{word-spacing:-14.953067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.232640pt;}
.wsb{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.870933pt;}
.ws3{word-spacing:-12.592000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-0.995840pt;}
._3{width:0.986453pt;}
._6{width:2.414080pt;}
._5{width:3.347200pt;}
._4{width:4.320000pt;}
._b{width:5.329920pt;}
._a{width:6.556587pt;}
._9{width:7.808640pt;}
._7{width:8.871040pt;}
._8{width:10.130560pt;}
._11{width:11.314560pt;}
._12{width:12.348373pt;}
._c{width:14.251520pt;}
._1{width:15.175680pt;}
._0{width:16.066560pt;}
._13{width:17.705813pt;}
._e{width:18.667947pt;}
._16{width:19.570987pt;}
._15{width:20.504320pt;}
._1f{width:21.407147pt;}
._19{width:22.333653pt;}
._d{width:23.425493pt;}
._14{width:24.435200pt;}
._1a{width:25.555200pt;}
._18{width:26.449280pt;}
._10{width:27.467520pt;}
._f{width:28.414720pt;}
._17{width:29.748693pt;}
._20{width:42.145280pt;}
._1d{width:45.288533pt;}
._1b{width:46.464853pt;}
._1c{width:48.300373pt;}
._1e{width:55.502080pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:5.120000pt;}
.y71{bottom:5.600000pt;}
.y4e{bottom:22.720000pt;}
.y77{bottom:22.880000pt;}
.y7b{bottom:22.920000pt;}
.y70{bottom:24.960000pt;}
.y52{bottom:40.320000pt;}
.y5a{bottom:40.480000pt;}
.y75{bottom:40.506667pt;}
.y58{bottom:40.520000pt;}
.y5{bottom:51.840000pt;}
.y51{bottom:57.920000pt;}
.y56{bottom:58.080000pt;}
.y74{bottom:58.106667pt;}
.y7a{bottom:58.120000pt;}
.y4{bottom:69.760000pt;}
.y3{bottom:87.680000pt;}
.y5d{bottom:108.832000pt;}
.y82{bottom:111.872000pt;}
.yce{bottom:113.312000pt;}
.ybc{bottom:115.552000pt;}
.yb1{bottom:117.952000pt;}
.y4b{bottom:120.192000pt;}
.ydb{bottom:122.592000pt;}
.y26{bottom:127.072000pt;}
.y63{bottom:127.712000pt;}
.y5c{bottom:131.872000pt;}
.y81{bottom:134.906667pt;}
.ycd{bottom:136.346667pt;}
.ybb{bottom:138.586667pt;}
.yb0{bottom:140.986667pt;}
.y4a{bottom:143.226667pt;}
.y5b{bottom:144.986667pt;}
.yda{bottom:145.466667pt;}
.y25{bottom:151.066667pt;}
.y62{bottom:151.706667pt;}
.y80{bottom:157.946667pt;}
.ycc{bottom:159.386667pt;}
.yba{bottom:161.626667pt;}
.yaf{bottom:163.866667pt;}
.y49{bottom:166.266667pt;}
.yd9{bottom:168.506667pt;}
.y61{bottom:175.546667pt;}
.y24{bottom:176.506667pt;}
.y7f{bottom:180.986667pt;}
.ycb{bottom:182.266667pt;}
.yb9{bottom:184.666667pt;}
.yae{bottom:186.906667pt;}
.y48{bottom:189.146667pt;}
.yd8{bottom:191.546667pt;}
.y60{bottom:199.546667pt;}
.y23{bottom:201.786667pt;}
.y7e{bottom:203.866667pt;}
.yca{bottom:205.306667pt;}
.yb8{bottom:207.546667pt;}
.yad{bottom:209.946667pt;}
.y47{bottom:212.186667pt;}
.yd7{bottom:214.426667pt;}
.y59{bottom:216.186667pt;}
.y5f{bottom:223.546667pt;}
.y7d{bottom:226.906667pt;}
.y22{bottom:227.066667pt;}
.yc9{bottom:228.346667pt;}
.yb7{bottom:230.586667pt;}
.yac{bottom:232.826667pt;}
.y46{bottom:235.226667pt;}
.yd6{bottom:237.466667pt;}
.y7c{bottom:240.026667pt;}
.y5e{bottom:245.786667pt;}
.y21{bottom:251.226667pt;}
.yb6{bottom:253.626667pt;}
.yab{bottom:255.866667pt;}
.y45{bottom:258.266667pt;}
.yd5{bottom:260.506667pt;}
.y20{bottom:274.266667pt;}
.yb5{bottom:277.626667pt;}
.yaa{bottom:278.906667pt;}
.y44{bottom:281.146667pt;}
.yd4{bottom:283.546667pt;}
.y57{bottom:287.386667pt;}
.y1f{bottom:297.306667pt;}
.ya9{bottom:301.946667pt;}
.y43{bottom:304.186667pt;}
.yd3{bottom:306.426667pt;}
.y79{bottom:311.226667pt;}
.y1e{bottom:320.346667pt;}
.ya8{bottom:324.866667pt;}
.y42{bottom:327.266667pt;}
.yd2{bottom:329.506667pt;}
.y55{bottom:341.026667pt;}
.y1d{bottom:343.266667pt;}
.ya7{bottom:347.906667pt;}
.y41{bottom:350.306667pt;}
.yd1{bottom:352.546667pt;}
.y1c{bottom:366.306667pt;}
.ya6{bottom:370.946667pt;}
.y40{bottom:373.186667pt;}
.yd0{bottom:375.586667pt;}
.y78{bottom:382.466667pt;}
.y1b{bottom:389.346667pt;}
.ya5{bottom:393.986667pt;}
.y8c{bottom:396.226667pt;}
.y3f{bottom:397.186667pt;}
.ycf{bottom:398.466667pt;}
.y54{bottom:412.226667pt;}
.y1a{bottom:412.386667pt;}
.ya4{bottom:416.866667pt;}
.y8b{bottom:419.266667pt;}
.y3e{bottom:421.506667pt;}
.y19{bottom:435.266667pt;}
.ya3{bottom:439.906667pt;}
.y8a{bottom:442.146667pt;}
.y3d{bottom:444.546667pt;}
.y76{bottom:453.666667pt;}
.y18{bottom:458.306667pt;}
.ya2{bottom:462.946667pt;}
.y89{bottom:465.186667pt;}
.y3c{bottom:467.586667pt;}
.y17{bottom:481.346667pt;}
.y53{bottom:483.426667pt;}
.ya1{bottom:485.986667pt;}
.y88{bottom:488.226667pt;}
.y3b{bottom:490.466667pt;}
.y16{bottom:504.386667pt;}
.ya0{bottom:508.866667pt;}
.y87{bottom:511.266667pt;}
.y3a{bottom:513.506667pt;}
.y73{bottom:524.866667pt;}
.y15{bottom:527.266667pt;}
.y9f{bottom:531.906667pt;}
.y86{bottom:534.146667pt;}
.y39{bottom:536.546667pt;}
.y14{bottom:550.306667pt;}
.y50{bottom:554.653333pt;}
.y9e{bottom:554.973333pt;}
.yb4{bottom:555.933333pt;}
.y85{bottom:557.213333pt;}
.y38{bottom:559.613333pt;}
.y13{bottom:573.373333pt;}
.y9d{bottom:578.013333pt;}
.y84{bottom:580.253333pt;}
.y37{bottom:582.493333pt;}
.y72{bottom:596.093333pt;}
.y12{bottom:596.413333pt;}
.y9c{bottom:602.013333pt;}
.yb3{bottom:603.293333pt;}
.y83{bottom:604.253333pt;}
.y36{bottom:605.533333pt;}
.yc8{bottom:619.293333pt;}
.y11{bottom:620.413333pt;}
.y4d{bottom:625.853333pt;}
.y9b{bottom:626.173333pt;}
.y35{bottom:628.573333pt;}
.yc7{bottom:642.333333pt;}
.y10{bottom:645.693333pt;}
.y9a{bottom:649.213333pt;}
.y34{bottom:651.613333pt;}
.yc6{bottom:665.373333pt;}
.y6f{bottom:667.293333pt;}
.yf{bottom:672.093333pt;}
.y99{bottom:672.253333pt;}
.y4c{bottom:673.213333pt;}
.y33{bottom:674.493333pt;}
.yc5{bottom:688.253333pt;}
.y98{bottom:695.293333pt;}
.y32{bottom:697.533333pt;}
.ye{bottom:698.493333pt;}
.yc4{bottom:711.293333pt;}
.y97{bottom:718.173333pt;}
.y6e{bottom:718.333333pt;}
.y31{bottom:720.573333pt;}
.yd{bottom:725.053333pt;}
.yc3{bottom:735.293333pt;}
.y96{bottom:741.213333pt;}
.y6d{bottom:742.493333pt;}
.y30{bottom:743.453333pt;}
.yc{bottom:757.533333pt;}
.yc2{bottom:760.573333pt;}
.y95{bottom:764.253333pt;}
.y6c{bottom:765.533333pt;}
.y2f{bottom:766.493333pt;}
.yb{bottom:776.733333pt;}
.yc1{bottom:784.933333pt;}
.y94{bottom:787.333333pt;}
.y6b{bottom:788.613333pt;}
.y2e{bottom:789.573333pt;}
.yc0{bottom:807.973333pt;}
.ya{bottom:808.133333pt;}
.y93{bottom:810.213333pt;}
.y6a{bottom:811.653333pt;}
.y2d{bottom:812.613333pt;}
.y9{bottom:830.533333pt;}
.ybf{bottom:831.013333pt;}
.y92{bottom:833.253333pt;}
.y69{bottom:834.533333pt;}
.y2c{bottom:835.493333pt;}
.ybe{bottom:855.013333pt;}
.y91{bottom:856.293333pt;}
.y68{bottom:857.573333pt;}
.y2b{bottom:858.533333pt;}
.y8{bottom:862.853333pt;}
.y90{bottom:879.333333pt;}
.ybd{bottom:880.293333pt;}
.y67{bottom:880.613333pt;}
.y2a{bottom:881.573333pt;}
.y7{bottom:899.013333pt;}
.y8f{bottom:902.213333pt;}
.yb2{bottom:903.333333pt;}
.y66{bottom:903.653333pt;}
.y29{bottom:904.613333pt;}
.y8e{bottom:925.253333pt;}
.y65{bottom:926.533333pt;}
.y28{bottom:927.493333pt;}
.y6{bottom:940.453333pt;}
.y8d{bottom:949.253333pt;}
.y64{bottom:949.573333pt;}
.y27{bottom:950.533333pt;}
.y2{bottom:967.013333pt;}
.y1{bottom:980.933333pt;}
.h6{height:28.293125pt;}
.he{height:35.200000pt;}
.hf{height:37.479688pt;}
.h13{height:38.720000pt;}
.hb{height:40.488438pt;}
.h9{height:41.543750pt;}
.h7{height:44.878750pt;}
.h8{height:45.156250pt;}
.hd{height:47.621250pt;}
.hc{height:52.785000pt;}
.h12{height:52.992000pt;}
.ha{height:57.375000pt;}
.h2{height:58.563750pt;}
.h3{height:60.288750pt;}
.h5{height:60.747188pt;}
.h4{height:67.734375pt;}
.h10{height:70.400000pt;}
.h11{height:70.560000pt;}
.h14{height:70.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:53.760000pt;}
.w6{width:74.880000pt;}
.wc{width:87.360000pt;}
.w4{width:93.760000pt;}
.wa{width:103.392000pt;}
.w9{width:122.240000pt;}
.w8{width:122.272000pt;}
.wb{width:128.672000pt;}
.w3{width:204.986667pt;}
.w5{width:245.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x11{left:9.280000pt;}
.x14{left:25.146667pt;}
.x12{left:30.080000pt;}
.x1e{left:32.480000pt;}
.xf{left:38.400000pt;}
.x1f{left:77.151988pt;}
.xe{left:89.152000pt;}
.x2{left:96.031988pt;}
.x6{left:117.151988pt;}
.x20{left:132.031988pt;}
.xa{left:136.506655pt;}
.x8{left:138.106655pt;}
.x1a{left:143.546667pt;}
.xd{left:150.106655pt;}
.x7{left:155.546655pt;}
.x19{left:169.626655pt;}
.x18{left:181.786655pt;}
.x5{left:216.186655pt;}
.x4{left:243.586655pt;}
.x9{left:247.586655pt;}
.x1b{left:266.466667pt;}
.x10{left:294.946667pt;}
.xb{left:320.226655pt;}
.xc{left:321.186655pt;}
.x13{left:389.346667pt;}
.x1c{left:493.373333pt;}
.x17{left:587.013322pt;}
.x3{left:617.413322pt;}
.x1d{left:622.693333pt;}
.x15{left:635.173333pt;}
.x1{left:697.733322pt;}
}




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