
    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_309c6b0409231d866d4ff16c.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_0b4716b48728432bf67b4e76.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7c264f53687814b7eae9155f.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_bd50d41ca15704075b0b8318.woff')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_b3f760b4eb4a455b156c5561.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_da00100aa1c5837154b8cc03.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_de6c6cbbbaadb7cd099709cc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3833a81e97e751f0d184e55f.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.720000px;}
.ls2{letter-spacing:54.840000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-18.792000px;}
._8{margin-left:-10.152000px;}
._9{margin-left:-7.128000px;}
._7{margin-left:-5.832000px;}
._6{margin-left:-4.752000px;}
._5{margin-left:-3.672000px;}
._4{margin-left:-2.376000px;}
._b{margin-left:-1.260000px;}
._c{width:1.080000px;}
._d{width:2.304000px;}
._1{width:3.315312px;}
._0{width:4.324320px;}
._2{width:6.054048px;}
._3{width:7.921344px;}
._15{width:8.997312px;}
._14{width:11.532000px;}
._13{width:12.672000px;}
._12{width:13.824000px;}
._11{width:14.988000px;}
._10{width:16.884000px;}
._e{width:21.456000px;}
._f{width:22.752000px;}
._16{width:23.904000px;}
.fc4{color:rgb(238,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(157,34,70);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:144.144000px;}
.fs3{font-size:216.000000px;}
.y53{bottom:-65.805000px;}
.y0{bottom:0.000000px;}
.y52{bottom:0.075000px;}
.y3{bottom:3.240000px;}
.y8c{bottom:3.960000px;}
.y55{bottom:8.280000px;}
.y56{bottom:18.720000px;}
.y2{bottom:52.920000px;}
.y1{bottom:56.340000px;}
.y54{bottom:60.120000px;}
.y51{bottom:65.985000px;}
.ye7{bottom:100.476000px;}
.y8a{bottom:102.996000px;}
.y4b{bottom:105.336000px;}
.ye6{bottom:115.236000px;}
.y4a{bottom:119.916000px;}
.yb4{bottom:122.616000px;}
.y89{bottom:123.696000px;}
.ye5{bottom:129.816000px;}
.y50{bottom:131.865000px;}
.y49{bottom:134.496000px;}
.yb3{bottom:143.316000px;}
.y88{bottom:144.396000px;}
.y48{bottom:149.256000px;}
.ye4{bottom:159.150000px;}
.y47{bottom:163.830000px;}
.yb2{bottom:164.010000px;}
.y87{bottom:164.910000px;}
.ye3{bottom:173.730000px;}
.y46{bottom:178.410000px;}
.yb1{bottom:184.710000px;}
.y86{bottom:185.610000px;}
.ye2{bottom:188.310000px;}
.y45{bottom:193.170000px;}
.y4f{bottom:197.925000px;}
.ye1{bottom:203.070000px;}
.yb0{bottom:205.410000px;}
.y85{bottom:206.310000px;}
.y44{bottom:207.750000px;}
.ye0{bottom:217.650000px;}
.y43{bottom:222.510000px;}
.yaf{bottom:226.110000px;}
.y84{bottom:227.010000px;}
.ydf{bottom:232.410000px;}
.y58{bottom:233.100000px;}
.y42{bottom:237.090000px;}
.yae{bottom:246.810000px;}
.yde{bottom:246.990000px;}
.y83{bottom:247.710000px;}
.y41{bottom:251.670000px;}
.y4e{bottom:259.125000px;}
.ydd{bottom:261.570000px;}
.y40{bottom:266.430000px;}
.yad{bottom:267.510000px;}
.y82{bottom:268.410000px;}
.ydc{bottom:276.330000px;}
.y3f{bottom:281.010000px;}
.yac{bottom:288.210000px;}
.y81{bottom:289.110000px;}
.ydb{bottom:290.910000px;}
.y3e{bottom:295.770000px;}
.y4d{bottom:303.090000px;}
.yda{bottom:305.490000px;}
.yab{bottom:308.910000px;}
.y80{bottom:309.810000px;}
.y3d{bottom:310.350000px;}
.yd9{bottom:320.250000px;}
.y3c{bottom:324.930000px;}
.yaa{bottom:329.610000px;}
.y7f{bottom:330.510000px;}
.yd8{bottom:334.830000px;}
.y3b{bottom:339.735000px;}
.yd7{bottom:349.635000px;}
.ya9{bottom:350.355000px;}
.y7e{bottom:351.255000px;}
.y3a{bottom:354.315000px;}
.yd6{bottom:364.215000px;}
.y39{bottom:368.895000px;}
.ya8{bottom:371.055000px;}
.y7d{bottom:371.955000px;}
.yd5{bottom:378.795000px;}
.y38{bottom:383.655000px;}
.ya7{bottom:391.755000px;}
.y7c{bottom:392.655000px;}
.yd4{bottom:393.555000px;}
.y37{bottom:398.235000px;}
.yd3{bottom:408.135000px;}
.ya6{bottom:412.455000px;}
.y36{bottom:412.995000px;}
.y7b{bottom:413.355000px;}
.yd2{bottom:422.895000px;}
.y35{bottom:427.575000px;}
.ya5{bottom:433.155000px;}
.y7a{bottom:434.055000px;}
.yd1{bottom:437.475000px;}
.y34{bottom:442.155000px;}
.yd0{bottom:452.055000px;}
.ya4{bottom:453.855000px;}
.y79{bottom:454.755000px;}
.y33{bottom:456.915000px;}
.ycf{bottom:466.815000px;}
.y32{bottom:471.495000px;}
.ya3{bottom:474.555000px;}
.y78{bottom:475.455000px;}
.yce{bottom:481.395000px;}
.y31{bottom:486.075000px;}
.ya2{bottom:495.255000px;}
.ycd{bottom:495.975000px;}
.y77{bottom:496.155000px;}
.y30{bottom:500.835000px;}
.ycc{bottom:510.735000px;}
.y2f{bottom:515.415000px;}
.ya1{bottom:515.955000px;}
.y76{bottom:516.855000px;}
.ycb{bottom:525.315000px;}
.y2e{bottom:530.175000px;}
.ya0{bottom:536.655000px;}
.y75{bottom:537.555000px;}
.yca{bottom:540.075000px;}
.y2d{bottom:544.755000px;}
.yc9{bottom:554.655000px;}
.y9f{bottom:557.355000px;}
.y74{bottom:558.255000px;}
.y2c{bottom:559.335000px;}
.yc8{bottom:569.235000px;}
.y2b{bottom:574.095000px;}
.y9e{bottom:578.055000px;}
.y73{bottom:578.955000px;}
.yc7{bottom:583.995000px;}
.y2a{bottom:588.675000px;}
.yc6{bottom:598.575000px;}
.y9d{bottom:598.755000px;}
.y4c{bottom:599.580000px;}
.y72{bottom:599.655000px;}
.y29{bottom:603.435000px;}
.yc5{bottom:613.185000px;}
.y28{bottom:618.045000px;}
.y9c{bottom:619.485000px;}
.y71{bottom:620.385000px;}
.yc4{bottom:627.945000px;}
.y27{bottom:632.625000px;}
.y9b{bottom:640.185000px;}
.y70{bottom:641.085000px;}
.yc3{bottom:643.245000px;}
.y26{bottom:647.385000px;}
.y9a{bottom:660.885000px;}
.y6f{bottom:661.785000px;}
.y25{bottom:661.965000px;}
.yc2{bottom:663.945000px;}
.y24{bottom:676.545000px;}
.y99{bottom:681.585000px;}
.y6e{bottom:682.485000px;}
.yc1{bottom:684.645000px;}
.y23{bottom:691.305000px;}
.y98{bottom:702.285000px;}
.y6d{bottom:703.185000px;}
.yc0{bottom:705.345000px;}
.y22{bottom:705.885000px;}
.y21{bottom:720.645000px;}
.y97{bottom:722.985000px;}
.y6c{bottom:723.885000px;}
.ybf{bottom:726.045000px;}
.y20{bottom:735.225000px;}
.y96{bottom:743.685000px;}
.y6b{bottom:744.585000px;}
.ybe{bottom:746.745000px;}
.y1f{bottom:749.805000px;}
.y95{bottom:764.385000px;}
.y1e{bottom:764.565000px;}
.y6a{bottom:765.285000px;}
.ybd{bottom:767.445000px;}
.y1d{bottom:779.145000px;}
.y94{bottom:785.085000px;}
.y69{bottom:785.985000px;}
.ybc{bottom:788.145000px;}
.y1c{bottom:793.725000px;}
.y93{bottom:805.785000px;}
.y68{bottom:806.685000px;}
.y1b{bottom:808.485000px;}
.ybb{bottom:808.845000px;}
.y1a{bottom:823.065000px;}
.y92{bottom:826.485000px;}
.yba{bottom:829.545000px;}
.y19{bottom:837.825000px;}
.y67{bottom:841.065000px;}
.y91{bottom:847.185000px;}
.yb9{bottom:850.245000px;}
.y18{bottom:852.405000px;}
.y66{bottom:863.385000px;}
.y17{bottom:866.985000px;}
.y90{bottom:867.885000px;}
.yb8{bottom:870.945000px;}
.y16{bottom:881.790000px;}
.y65{bottom:885.570000px;}
.y8f{bottom:888.630000px;}
.yb7{bottom:891.690000px;}
.y15{bottom:896.370000px;}
.y8e{bottom:906.090000px;}
.y64{bottom:909.330000px;}
.y14{bottom:910.950000px;}
.yb6{bottom:912.390000px;}
.y13{bottom:925.710000px;}
.y8d{bottom:927.510000px;}
.y63{bottom:931.650000px;}
.yb5{bottom:933.090000px;}
.y12{bottom:940.290000px;}
.y8b{bottom:949.110000px;}
.y62{bottom:953.790000px;}
.y11{bottom:955.050000px;}
.y10{bottom:969.630000px;}
.y61{bottom:974.490000px;}
.yf{bottom:984.210000px;}
.y60{bottom:995.190000px;}
.ye{bottom:998.970000px;}
.y57{bottom:1006.560000px;}
.yd{bottom:1013.550000px;}
.y5f{bottom:1015.890000px;}
.yc{bottom:1028.310000px;}
.y5e{bottom:1036.590000px;}
.yb{bottom:1042.890000px;}
.y5d{bottom:1057.290000px;}
.ya{bottom:1057.470000px;}
.y9{bottom:1072.230000px;}
.y5c{bottom:1077.990000px;}
.y8{bottom:1086.810000px;}
.y5b{bottom:1098.690000px;}
.y7{bottom:1101.390000px;}
.y6{bottom:1116.150000px;}
.y5a{bottom:1119.390000px;}
.y5{bottom:1130.730000px;}
.y59{bottom:1140.120000px;}
.y4{bottom:1145.520000px;}
.h3{height:14.580000px;}
.he{height:20.700000px;}
.h2{height:47.980898px;}
.hc{height:50.273438px;}
.hb{height:50.800781px;}
.hd{height:52.417969px;}
.hf{height:54.878906px;}
.h9{height:89.640000px;}
.h8{height:107.419922px;}
.h6{height:143.226562px;}
.h5{height:143.369789px;}
.h7{height:214.839844px;}
.ha{height:244.440000px;}
.h4{height:337.320000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:6.120000px;}
.w7{width:225.570000px;}
.w8{width:225.750000px;}
.w6{width:233.280000px;}
.w5{width:666.540000px;}
.w9{width:678.525000px;}
.w4{width:683.280000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:10.836000px;}
.x6{left:17.496000px;}
.x7{left:36.036000px;}
.x17{left:53.994000px;}
.x12{left:78.834000px;}
.x16{left:85.365000px;}
.x14{left:102.240000px;}
.x1{left:106.235987px;}
.x3{left:111.060000px;}
.xe{left:136.835987px;}
.x5{left:145.470000px;}
.xf{left:163.829987px;}
.x9{left:211.169987px;}
.xa{left:232.590000px;}
.x18{left:296.319000px;}
.x13{left:333.435000px;}
.x8{left:341.745000px;}
.x1b{left:356.294987px;}
.x10{left:364.934987px;}
.x1c{left:379.694987px;}
.x11{left:380.954987px;}
.x1a{left:385.994987px;}
.xc{left:397.154987px;}
.x1d{left:404.354987px;}
.x19{left:406.694987px;}
.x2{left:443.265000px;}
.xd{left:446.324987px;}
.x15{left:559.905000px;}
.xb{left:659.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls2{letter-spacing:48.746667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-16.704000pt;}
._8{margin-left:-9.024000pt;}
._9{margin-left:-6.336000pt;}
._7{margin-left:-5.184000pt;}
._6{margin-left:-4.224000pt;}
._5{margin-left:-3.264000pt;}
._4{margin-left:-2.112000pt;}
._b{margin-left:-1.120000pt;}
._c{width:0.960000pt;}
._d{width:2.048000pt;}
._1{width:2.946944pt;}
._0{width:3.843840pt;}
._2{width:5.381376pt;}
._3{width:7.041195pt;}
._15{width:7.997611pt;}
._14{width:10.250667pt;}
._13{width:11.264000pt;}
._12{width:12.288000pt;}
._11{width:13.322667pt;}
._10{width:15.008000pt;}
._e{width:19.072000pt;}
._f{width:20.224000pt;}
._16{width:21.248000pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:128.128000pt;}
.fs3{font-size:192.000000pt;}
.y53{bottom:-58.493333pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:0.066667pt;}
.y3{bottom:2.880000pt;}
.y8c{bottom:3.520000pt;}
.y55{bottom:7.360000pt;}
.y56{bottom:16.640000pt;}
.y2{bottom:47.040000pt;}
.y1{bottom:50.080000pt;}
.y54{bottom:53.440000pt;}
.y51{bottom:58.653333pt;}
.ye7{bottom:89.312000pt;}
.y8a{bottom:91.552000pt;}
.y4b{bottom:93.632000pt;}
.ye6{bottom:102.432000pt;}
.y4a{bottom:106.592000pt;}
.yb4{bottom:108.992000pt;}
.y89{bottom:109.952000pt;}
.ye5{bottom:115.392000pt;}
.y50{bottom:117.213333pt;}
.y49{bottom:119.552000pt;}
.yb3{bottom:127.392000pt;}
.y88{bottom:128.352000pt;}
.y48{bottom:132.672000pt;}
.ye4{bottom:141.466667pt;}
.y47{bottom:145.626667pt;}
.yb2{bottom:145.786667pt;}
.y87{bottom:146.586667pt;}
.ye3{bottom:154.426667pt;}
.y46{bottom:158.586667pt;}
.yb1{bottom:164.186667pt;}
.y86{bottom:164.986667pt;}
.ye2{bottom:167.386667pt;}
.y45{bottom:171.706667pt;}
.y4f{bottom:175.933333pt;}
.ye1{bottom:180.506667pt;}
.yb0{bottom:182.586667pt;}
.y85{bottom:183.386667pt;}
.y44{bottom:184.666667pt;}
.ye0{bottom:193.466667pt;}
.y43{bottom:197.786667pt;}
.yaf{bottom:200.986667pt;}
.y84{bottom:201.786667pt;}
.ydf{bottom:206.586667pt;}
.y58{bottom:207.200000pt;}
.y42{bottom:210.746667pt;}
.yae{bottom:219.386667pt;}
.yde{bottom:219.546667pt;}
.y83{bottom:220.186667pt;}
.y41{bottom:223.706667pt;}
.y4e{bottom:230.333333pt;}
.ydd{bottom:232.506667pt;}
.y40{bottom:236.826667pt;}
.yad{bottom:237.786667pt;}
.y82{bottom:238.586667pt;}
.ydc{bottom:245.626667pt;}
.y3f{bottom:249.786667pt;}
.yac{bottom:256.186667pt;}
.y81{bottom:256.986667pt;}
.ydb{bottom:258.586667pt;}
.y3e{bottom:262.906667pt;}
.y4d{bottom:269.413333pt;}
.yda{bottom:271.546667pt;}
.yab{bottom:274.586667pt;}
.y80{bottom:275.386667pt;}
.y3d{bottom:275.866667pt;}
.yd9{bottom:284.666667pt;}
.y3c{bottom:288.826667pt;}
.yaa{bottom:292.986667pt;}
.y7f{bottom:293.786667pt;}
.yd8{bottom:297.626667pt;}
.y3b{bottom:301.986667pt;}
.yd7{bottom:310.786667pt;}
.ya9{bottom:311.426667pt;}
.y7e{bottom:312.226667pt;}
.y3a{bottom:314.946667pt;}
.yd6{bottom:323.746667pt;}
.y39{bottom:327.906667pt;}
.ya8{bottom:329.826667pt;}
.y7d{bottom:330.626667pt;}
.yd5{bottom:336.706667pt;}
.y38{bottom:341.026667pt;}
.ya7{bottom:348.226667pt;}
.y7c{bottom:349.026667pt;}
.yd4{bottom:349.826667pt;}
.y37{bottom:353.986667pt;}
.yd3{bottom:362.786667pt;}
.ya6{bottom:366.626667pt;}
.y36{bottom:367.106667pt;}
.y7b{bottom:367.426667pt;}
.yd2{bottom:375.906667pt;}
.y35{bottom:380.066667pt;}
.ya5{bottom:385.026667pt;}
.y7a{bottom:385.826667pt;}
.yd1{bottom:388.866667pt;}
.y34{bottom:393.026667pt;}
.yd0{bottom:401.826667pt;}
.ya4{bottom:403.426667pt;}
.y79{bottom:404.226667pt;}
.y33{bottom:406.146667pt;}
.ycf{bottom:414.946667pt;}
.y32{bottom:419.106667pt;}
.ya3{bottom:421.826667pt;}
.y78{bottom:422.626667pt;}
.yce{bottom:427.906667pt;}
.y31{bottom:432.066667pt;}
.ya2{bottom:440.226667pt;}
.ycd{bottom:440.866667pt;}
.y77{bottom:441.026667pt;}
.y30{bottom:445.186667pt;}
.ycc{bottom:453.986667pt;}
.y2f{bottom:458.146667pt;}
.ya1{bottom:458.626667pt;}
.y76{bottom:459.426667pt;}
.ycb{bottom:466.946667pt;}
.y2e{bottom:471.266667pt;}
.ya0{bottom:477.026667pt;}
.y75{bottom:477.826667pt;}
.yca{bottom:480.066667pt;}
.y2d{bottom:484.226667pt;}
.yc9{bottom:493.026667pt;}
.y9f{bottom:495.426667pt;}
.y74{bottom:496.226667pt;}
.y2c{bottom:497.186667pt;}
.yc8{bottom:505.986667pt;}
.y2b{bottom:510.306667pt;}
.y9e{bottom:513.826667pt;}
.y73{bottom:514.626667pt;}
.yc7{bottom:519.106667pt;}
.y2a{bottom:523.266667pt;}
.yc6{bottom:532.066667pt;}
.y9d{bottom:532.226667pt;}
.y4c{bottom:532.960000pt;}
.y72{bottom:533.026667pt;}
.y29{bottom:536.386667pt;}
.yc5{bottom:545.053333pt;}
.y28{bottom:549.373333pt;}
.y9c{bottom:550.653333pt;}
.y71{bottom:551.453333pt;}
.yc4{bottom:558.173333pt;}
.y27{bottom:562.333333pt;}
.y9b{bottom:569.053333pt;}
.y70{bottom:569.853333pt;}
.yc3{bottom:571.773333pt;}
.y26{bottom:575.453333pt;}
.y9a{bottom:587.453333pt;}
.y6f{bottom:588.253333pt;}
.y25{bottom:588.413333pt;}
.yc2{bottom:590.173333pt;}
.y24{bottom:601.373333pt;}
.y99{bottom:605.853333pt;}
.y6e{bottom:606.653333pt;}
.yc1{bottom:608.573333pt;}
.y23{bottom:614.493333pt;}
.y98{bottom:624.253333pt;}
.y6d{bottom:625.053333pt;}
.yc0{bottom:626.973333pt;}
.y22{bottom:627.453333pt;}
.y21{bottom:640.573333pt;}
.y97{bottom:642.653333pt;}
.y6c{bottom:643.453333pt;}
.ybf{bottom:645.373333pt;}
.y20{bottom:653.533333pt;}
.y96{bottom:661.053333pt;}
.y6b{bottom:661.853333pt;}
.ybe{bottom:663.773333pt;}
.y1f{bottom:666.493333pt;}
.y95{bottom:679.453333pt;}
.y1e{bottom:679.613333pt;}
.y6a{bottom:680.253333pt;}
.ybd{bottom:682.173333pt;}
.y1d{bottom:692.573333pt;}
.y94{bottom:697.853333pt;}
.y69{bottom:698.653333pt;}
.ybc{bottom:700.573333pt;}
.y1c{bottom:705.533333pt;}
.y93{bottom:716.253333pt;}
.y68{bottom:717.053333pt;}
.y1b{bottom:718.653333pt;}
.ybb{bottom:718.973333pt;}
.y1a{bottom:731.613333pt;}
.y92{bottom:734.653333pt;}
.yba{bottom:737.373333pt;}
.y19{bottom:744.733333pt;}
.y67{bottom:747.613333pt;}
.y91{bottom:753.053333pt;}
.yb9{bottom:755.773333pt;}
.y18{bottom:757.693333pt;}
.y66{bottom:767.453333pt;}
.y17{bottom:770.653333pt;}
.y90{bottom:771.453333pt;}
.yb8{bottom:774.173333pt;}
.y16{bottom:783.813333pt;}
.y65{bottom:787.173333pt;}
.y8f{bottom:789.893333pt;}
.yb7{bottom:792.613333pt;}
.y15{bottom:796.773333pt;}
.y8e{bottom:805.413333pt;}
.y64{bottom:808.293333pt;}
.y14{bottom:809.733333pt;}
.yb6{bottom:811.013333pt;}
.y13{bottom:822.853333pt;}
.y8d{bottom:824.453333pt;}
.y63{bottom:828.133333pt;}
.yb5{bottom:829.413333pt;}
.y12{bottom:835.813333pt;}
.y8b{bottom:843.653333pt;}
.y62{bottom:847.813333pt;}
.y11{bottom:848.933333pt;}
.y10{bottom:861.893333pt;}
.y61{bottom:866.213333pt;}
.yf{bottom:874.853333pt;}
.y60{bottom:884.613333pt;}
.ye{bottom:887.973333pt;}
.y57{bottom:894.720000pt;}
.yd{bottom:900.933333pt;}
.y5f{bottom:903.013333pt;}
.yc{bottom:914.053333pt;}
.y5e{bottom:921.413333pt;}
.yb{bottom:927.013333pt;}
.y5d{bottom:939.813333pt;}
.ya{bottom:939.973333pt;}
.y9{bottom:953.093333pt;}
.y5c{bottom:958.213333pt;}
.y8{bottom:966.053333pt;}
.y5b{bottom:976.613333pt;}
.y7{bottom:979.013333pt;}
.y6{bottom:992.133333pt;}
.y5a{bottom:995.013333pt;}
.y5{bottom:1005.093333pt;}
.y59{bottom:1013.440000pt;}
.y4{bottom:1018.240000pt;}
.h3{height:12.960000pt;}
.he{height:18.400000pt;}
.h2{height:42.649687pt;}
.hc{height:44.687500pt;}
.hb{height:45.156250pt;}
.hd{height:46.593750pt;}
.hf{height:48.781250pt;}
.h9{height:79.680000pt;}
.h8{height:95.484375pt;}
.h6{height:127.312500pt;}
.h5{height:127.439813pt;}
.h7{height:190.968750pt;}
.ha{height:217.280000pt;}
.h4{height:299.840000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:5.440000pt;}
.w7{width:200.506667pt;}
.w8{width:200.666667pt;}
.w6{width:207.360000pt;}
.w5{width:592.480000pt;}
.w9{width:603.133333pt;}
.w4{width:607.360000pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:9.632000pt;}
.x6{left:15.552000pt;}
.x7{left:32.032000pt;}
.x17{left:47.994667pt;}
.x12{left:70.074667pt;}
.x16{left:75.880000pt;}
.x14{left:90.880000pt;}
.x1{left:94.431988pt;}
.x3{left:98.720000pt;}
.xe{left:121.631988pt;}
.x5{left:129.306667pt;}
.xf{left:145.626655pt;}
.x9{left:187.706655pt;}
.xa{left:206.746667pt;}
.x18{left:263.394667pt;}
.x13{left:296.386667pt;}
.x8{left:303.773333pt;}
.x1b{left:316.706655pt;}
.x10{left:324.386655pt;}
.x1c{left:337.506655pt;}
.x11{left:338.626655pt;}
.x1a{left:343.106655pt;}
.xc{left:353.026655pt;}
.x1d{left:359.426655pt;}
.x19{left:361.506655pt;}
.x2{left:394.013333pt;}
.xd{left:396.733322pt;}
.x15{left:497.693333pt;}
.xb{left:585.920000pt;}
}




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