
    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_1c1d169981905d91612f9cff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_049e4f1b9f8ce8b43bbbbbbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_97e196fb1ce8e766b1b6810d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_ec3be0f8506292cfddabb6d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923340;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_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_fa18d10db2de97dd17061403.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8a8bc94f34cedc2fb46f6761.woff2')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_82b29aa3118a0cbe2bb5ad62.woff2')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;}
.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;}
.v1{vertical-align:9.300000px;}
.v2{vertical-align:45.150000px;}
.ls13{letter-spacing:-2.328000px;}
.ls15{letter-spacing:-2.250000px;}
.ls1a{letter-spacing:-2.178000px;}
.ls20{letter-spacing:-2.100000px;}
.ls1f{letter-spacing:-2.070000px;}
.ls11{letter-spacing:-1.860000px;}
.ls16{letter-spacing:-1.710000px;}
.ls1b{letter-spacing:-1.338000px;}
.ls21{letter-spacing:-1.284000px;}
.ls14{letter-spacing:-1.218000px;}
.ls12{letter-spacing:-1.134000px;}
.ls1d{letter-spacing:-0.480600px;}
.ls1e{letter-spacing:-0.330600px;}
.ls10{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.165000px;}
.ls17{letter-spacing:0.207000px;}
.ls19{letter-spacing:0.357000px;}
.ls1c{letter-spacing:0.840000px;}
.ls2{letter-spacing:4.905000px;}
.ls5{letter-spacing:33.525000px;}
.ls4{letter-spacing:87.165000px;}
.lsa{letter-spacing:94.222500px;}
.ls9{letter-spacing:94.275000px;}
.ls1{letter-spacing:94.372500px;}
.ls3{letter-spacing:94.425000px;}
.ls6{letter-spacing:127.372500px;}
.ls0{letter-spacing:130.215000px;}
.ls7{letter-spacing:141.772500px;}
.ls8{letter-spacing:141.825000px;}
.lsf{letter-spacing:148.222500px;}
.lse{letter-spacing:148.275000px;}
.lsb{letter-spacing:148.372500px;}
.lsc{letter-spacing:390.427500px;}
.lsd{letter-spacing:538.177500px;}
.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:-59.662500px;}
.wsa{word-spacing:-48.732000px;}
.ws3{word-spacing:-48.582000px;}
.ws5{word-spacing:-48.577500px;}
.ws0{word-spacing:-48.412500px;}
.ws1{word-spacing:-48.375000px;}
.ws12{word-spacing:-48.081900px;}
.ws10{word-spacing:-47.931900px;}
.ws17{word-spacing:-47.091000px;}
.wsc{word-spacing:-47.074500px;}
.ws16{word-spacing:-46.275000px;}
.wsb{word-spacing:-46.234500px;}
.ws7{word-spacing:-46.125000px;}
.wsd{word-spacing:-46.084500px;}
.ws14{word-spacing:-39.412500px;}
.ws13{word-spacing:-39.375000px;}
.wse{word-spacing:-36.000000px;}
.wsf{word-spacing:-24.502500px;}
.ws6{word-spacing:-2.289000px;}
.ws4{word-spacing:-1.998750px;}
.ws18{word-spacing:0.000000px;}
.ws11{word-spacing:28.561050px;}
.ws9{word-spacing:31.623000px;}
.ws8{word-spacing:92.689500px;}
.ws15{word-spacing:363.352500px;}
._e{margin-left:-22.482750px;}
._c{margin-left:-19.156500px;}
._d{margin-left:-16.469550px;}
._2c{margin-left:-14.706000px;}
._23{margin-left:-13.115550px;}
._5{margin-left:-11.803500px;}
._7{margin-left:-10.457100px;}
._f{margin-left:-7.630350px;}
._40{margin-left:-6.615000px;}
._4{margin-left:-5.008950px;}
._1{margin-left:-3.676500px;}
._2{margin-left:-2.128500px;}
._8{margin-left:-1.018500px;}
._0{width:1.161000px;}
._3{width:3.096000px;}
._9{width:4.390500px;}
._11{width:5.491950px;}
._6{width:7.537800px;}
._41{width:9.821700px;}
._24{width:11.520450px;}
._a{width:13.204500px;}
._2f{width:14.371500px;}
._3c{width:15.474300px;}
._3b{width:16.677750px;}
._3d{width:22.537500px;}
._27{width:24.222300px;}
._28{width:25.349100px;}
._2e{width:26.463900px;}
._2d{width:29.077350px;}
._22{width:30.105150px;}
._21{width:31.602750px;}
._32{width:32.608500px;}
._1c{width:33.609000px;}
._46{width:39.514500px;}
._37{width:40.554000px;}
._1e{width:41.595000px;}
._1d{width:42.856500px;}
._29{width:44.173800px;}
._42{width:45.652950px;}
._15{width:46.771800px;}
._49{width:49.973700px;}
._10{width:57.261600px;}
._2b{width:58.854000px;}
._2a{width:60.333000px;}
._50{width:65.465100px;}
._4f{width:67.119450px;}
._31{width:72.192900px;}
._33{width:74.266500px;}
._1b{width:87.141000px;}
._1a{width:88.176000px;}
._20{width:89.884500px;}
._1f{width:91.531500px;}
._3f{width:97.044450px;}
._26{width:98.918100px;}
._25{width:99.988500px;}
._35{width:110.524350px;}
._4e{width:111.837000px;}
._4a{width:120.013950px;}
._34{width:121.773000px;}
._47{width:139.475400px;}
._3e{width:143.532000px;}
._b{width:145.841700px;}
._13{width:147.498000px;}
._12{width:148.708500px;}
._36{width:159.342600px;}
._4b{width:167.961600px;}
._4c{width:170.281500px;}
._38{width:174.162900px;}
._39{width:175.463850px;}
._48{width:184.357050px;}
._43{width:194.604300px;}
._14{width:197.850900px;}
._19{width:215.337000px;}
._3a{width:223.790700px;}
._4d{width:243.000000px;}
._45{width:244.298250px;}
._44{width:246.520200px;}
._18{width:263.501250px;}
._17{width:267.955500px;}
._16{width:313.281450px;}
._30{width:9533.711250px;}
.fc1{color:rgb(51,51,204);}
.fc2{color:rgb(16,27,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:94.650000px;}
.fs6{font-size:144.000000px;}
.fs8{font-size:157.500000px;}
.fs9{font-size:157.650000px;}
.fs0{font-size:193.500000px;}
.fs1{font-size:193.650000px;}
.fs5{font-size:216.000000px;}
.fs3{font-size:238.500000px;}
.fs4{font-size:238.650000px;}
.fs2{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y76{bottom:11.250000px;}
.y39{bottom:21.150000px;}
.y75{bottom:74.250000px;}
.y78{bottom:83.662500px;}
.y87{bottom:115.500000px;}
.y29{bottom:123.375000px;}
.y73{bottom:137.250000px;}
.y77{bottom:146.362500px;}
.y63{bottom:149.445000px;}
.y60{bottom:149.820000px;}
.y57{bottom:149.850000px;}
.y4d{bottom:149.895000px;}
.y44{bottom:149.925000px;}
.y28{bottom:181.920000px;}
.y72{bottom:196.995000px;}
.y74{bottom:197.280000px;}
.y66{bottom:197.295000px;}
.y69{bottom:197.550000px;}
.y6b{bottom:197.850000px;}
.y6d{bottom:198.105000px;}
.y71{bottom:200.250000px;}
.y37{bottom:226.455000px;}
.y27{bottom:239.295000px;}
.y70{bottom:262.125000px;}
.y36{bottom:283.830000px;}
.y26{bottom:296.700000px;}
.y6f{bottom:325.125000px;}
.y35{bottom:341.250000px;}
.y25{bottom:354.075000px;}
.y6e{bottom:388.125000px;}
.y24{bottom:411.495000px;}
.y6c{bottom:450.000000px;}
.y34{bottom:457.170000px;}
.y23{bottom:469.980000px;}
.y6a{bottom:513.000000px;}
.y33{bottom:514.545000px;}
.y22{bottom:527.400000px;}
.y68{bottom:576.000000px;}
.y32{bottom:629.325000px;}
.y14{bottom:629.445000px;}
.y65{bottom:639.000000px;}
.y31{bottom:687.855000px;}
.y30{bottom:742.905000px;}
.y2f{bottom:800.280000px;}
.y67{bottom:836.295000px;}
.y85{bottom:841.380000px;}
.y2e{bottom:857.700000px;}
.y62{bottom:892.125000px;}
.y2d{bottom:915.075000px;}
.y38{bottom:940.020000px;}
.y84{bottom:954.480000px;}
.y5f{bottom:967.500000px;}
.y2c{bottom:972.495000px;}
.y83{bottom:1011.855000px;}
.y2b{bottom:1030.980000px;}
.y5d{bottom:1031.625000px;}
.y61{bottom:1041.570000px;}
.y82{bottom:1070.400000px;}
.y2a{bottom:1088.400000px;}
.y5c{bottom:1095.750000px;}
.y5e{bottom:1117.320000px;}
.y81{bottom:1127.775000px;}
.y5b{bottom:1159.875000px;}
.y15{bottom:1183.320000px;}
.y5a{bottom:1224.000000px;}
.y80{bottom:1242.570000px;}
.y59{bottom:1288.125000px;}
.y41{bottom:1299.780000px;}
.y7f{bottom:1299.975000px;}
.y58{bottom:1352.250000px;}
.y40{bottom:1357.155000px;}
.y7e{bottom:1358.475000px;}
.y3f{bottom:1414.575000px;}
.y7d{bottom:1415.895000px;}
.y56{bottom:1416.375000px;}
.y3e{bottom:1471.950000px;}
.y3d{bottom:1529.355000px;}
.y7c{bottom:1530.675000px;}
.y54{bottom:1544.625000px;}
.y3c{bottom:1587.855000px;}
.y7b{bottom:1588.050000px;}
.y52{bottom:1608.750000px;}
.y55{bottom:1630.395000px;}
.y3b{bottom:1645.275000px;}
.y7a{bottom:1646.580000px;}
.y53{bottom:1694.520000px;}
.y79{bottom:1703.955000px;}
.y4f{bottom:1737.000000px;}
.y3a{bottom:1742.625000px;}
.y51{bottom:1758.645000px;}
.y4e{bottom:1801.125000px;}
.y86{bottom:1808.325000px;}
.y50{bottom:1822.770000px;}
.y4c{bottom:1865.250000px;}
.y21{bottom:1867.920000px;}
.yb{bottom:1899.975000px;}
.y20{bottom:1925.295000px;}
.ya{bottom:1957.395000px;}
.y1f{bottom:1982.700000px;}
.y4a{bottom:1993.500000px;}
.y9{bottom:2014.770000px;}
.y1e{bottom:2040.075000px;}
.y49{bottom:2057.625000px;}
.y8{bottom:2072.175000px;}
.y4b{bottom:2079.300000px;}
.y1d{bottom:2097.480000px;}
.y7{bottom:2130.675000px;}
.y1c{bottom:2156.025000px;}
.y47{bottom:2185.875000px;}
.y6{bottom:2188.095000px;}
.y1b{bottom:2213.400000px;}
.y5{bottom:2245.470000px;}
.y46{bottom:2250.000000px;}
.y1a{bottom:2270.820000px;}
.y48{bottom:2271.675000px;}
.y4{bottom:2302.875000px;}
.y19{bottom:2328.195000px;}
.y3{bottom:2360.250000px;}
.y43{bottom:2378.250000px;}
.y18{bottom:2385.600000px;}
.y2{bottom:2418.795000px;}
.y17{bottom:2444.100000px;}
.y45{bottom:2464.050000px;}
.y1{bottom:2476.170000px;}
.y16{bottom:2501.520000px;}
.y42{bottom:2528.175000px;}
.y13{bottom:2605.605000px;}
.y64{bottom:2606.025000px;}
.y12{bottom:2712.330000px;}
.y11{bottom:2769.750000px;}
.y10{bottom:2827.125000px;}
.yf{bottom:2885.670000px;}
.ye{bottom:2943.045000px;}
.yd{bottom:3001.575000px;}
.yc{bottom:3082.575000px;}
.hd{height:111.126709px;}
.hf{height:111.232544px;}
.ha{height:112.116724px;}
.hb{height:113.049316px;}
.he{height:113.156982px;}
.h1{height:138.889160px;}
.h2{height:138.996826px;}
.h7{height:140.873291px;}
.h6{height:140.982495px;}
.h8{height:148.189160px;}
.h9{height:152.402344px;}
.h5{height:168.383423px;}
.h4{height:181.318066px;}
.h3{height:258.398438px;}
.h13{height:326.250000px;}
.hc{height:328.500000px;}
.h12{height:389.250000px;}
.h10{height:439.875000px;}
.h11{height:441.000000px;}
.h0{height:3240.000000px;}
.w6{width:128.250000px;}
.w7{width:140.625000px;}
.w5{width:142.875000px;}
.w8{width:164.250000px;}
.w2{width:282.375000px;}
.w4{width:628.875000px;}
.w9{width:897.750000px;}
.w3{width:907.875000px;}
.w1{width:4103.999939px;}
.w0{width:4104.000000px;}
.x0{left:0.000000px;}
.x36{left:8.670000px;}
.x17{left:16.574939px;}
.xe{left:19.612439px;}
.x12{left:26.137439px;}
.x10{left:40.649939px;}
.x33{left:42.975000px;}
.xf{left:60.149939px;}
.x19{left:73.649939px;}
.x13{left:78.524939px;}
.x11{left:89.437439px;}
.x1f{left:98.325000px;}
.x2e{left:99.750000px;}
.x3{left:108.337439px;}
.x25{left:119.250000px;}
.x22{left:127.575000px;}
.x27{left:137.325000px;}
.x24{left:178.005000px;}
.x1c{left:179.520000px;}
.x31{left:199.005000px;}
.x2f{left:355.350000px;}
.x18{left:363.719939px;}
.xc{left:372.944939px;}
.xa{left:448.874939px;}
.xb{left:481.919939px;}
.x2d{left:649.800000px;}
.x26{left:650.955000px;}
.x2a{left:710.400000px;}
.x21{left:731.280000px;}
.x2b{left:734.400000px;}
.x30{left:739.920000px;}
.x23{left:774.645000px;}
.x2c{left:781.200000px;}
.x20{left:785.325000px;}
.x1e{left:820.020000px;}
.x29{left:830.700000px;}
.x35{left:1305.000000px;}
.x1d{left:1332.000000px;}
.x1a{left:1359.449939px;}
.x3c{left:1380.794939px;}
.x34{left:1487.204939px;}
.x32{left:1598.579939px;}
.x8{left:1655.324939px;}
.x7{left:1691.294939px;}
.x16{left:1703.174939px;}
.x5{left:1791.149939px;}
.x9{left:1796.924939px;}
.x6{left:1878.899939px;}
.x38{left:1932.750000px;}
.x37{left:1991.249939px;}
.x4{left:1995.704939px;}
.x39{left:2074.500000px;}
.x28{left:2086.724939px;}
.x3a{left:2201.625000px;}
.x1b{left:2238.750000px;}
.x3b{left:2341.125000px;}
.x1{left:2659.994939px;}
.x3d{left:2663.549939px;}
.x15{left:2675.549939px;}
.x2{left:2709.479939px;}
.x14{left:2716.049939px;}
.x3e{left:2717.549939px;}
.x41{left:2987.204939px;}
.xd{left:3136.379939px;}
.x40{left:3162.404939px;}
.x3f{left:3240.329939px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:8.266667pt;}
.v2{vertical-align:40.133333pt;}
.ls13{letter-spacing:-2.069333pt;}
.ls15{letter-spacing:-2.000000pt;}
.ls1a{letter-spacing:-1.936000pt;}
.ls20{letter-spacing:-1.866667pt;}
.ls1f{letter-spacing:-1.840000pt;}
.ls11{letter-spacing:-1.653333pt;}
.ls16{letter-spacing:-1.520000pt;}
.ls1b{letter-spacing:-1.189333pt;}
.ls21{letter-spacing:-1.141333pt;}
.ls14{letter-spacing:-1.082667pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls1d{letter-spacing:-0.427200pt;}
.ls1e{letter-spacing:-0.293867pt;}
.ls10{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.146667pt;}
.ls17{letter-spacing:0.184000pt;}
.ls19{letter-spacing:0.317333pt;}
.ls1c{letter-spacing:0.746667pt;}
.ls2{letter-spacing:4.360000pt;}
.ls5{letter-spacing:29.800000pt;}
.ls4{letter-spacing:77.480000pt;}
.lsa{letter-spacing:83.753333pt;}
.ls9{letter-spacing:83.800000pt;}
.ls1{letter-spacing:83.886667pt;}
.ls3{letter-spacing:83.933333pt;}
.ls6{letter-spacing:113.220000pt;}
.ls0{letter-spacing:115.746667pt;}
.ls7{letter-spacing:126.020000pt;}
.ls8{letter-spacing:126.066667pt;}
.lsf{letter-spacing:131.753333pt;}
.lse{letter-spacing:131.800000pt;}
.lsb{letter-spacing:131.886667pt;}
.lsc{letter-spacing:347.046667pt;}
.lsd{letter-spacing:478.380000pt;}
.ws2{word-spacing:-53.033333pt;}
.wsa{word-spacing:-43.317333pt;}
.ws3{word-spacing:-43.184000pt;}
.ws5{word-spacing:-43.180000pt;}
.ws0{word-spacing:-43.033333pt;}
.ws1{word-spacing:-43.000000pt;}
.ws12{word-spacing:-42.739467pt;}
.ws10{word-spacing:-42.606133pt;}
.ws17{word-spacing:-41.858667pt;}
.wsc{word-spacing:-41.844000pt;}
.ws16{word-spacing:-41.133333pt;}
.wsb{word-spacing:-41.097333pt;}
.ws7{word-spacing:-41.000000pt;}
.wsd{word-spacing:-40.964000pt;}
.ws14{word-spacing:-35.033333pt;}
.ws13{word-spacing:-35.000000pt;}
.wse{word-spacing:-32.000000pt;}
.wsf{word-spacing:-21.780000pt;}
.ws6{word-spacing:-2.034667pt;}
.ws4{word-spacing:-1.776667pt;}
.ws18{word-spacing:0.000000pt;}
.ws11{word-spacing:25.387600pt;}
.ws9{word-spacing:28.109333pt;}
.ws8{word-spacing:82.390667pt;}
.ws15{word-spacing:322.980000pt;}
._e{margin-left:-19.984667pt;}
._c{margin-left:-17.028000pt;}
._d{margin-left:-14.639600pt;}
._2c{margin-left:-13.072000pt;}
._23{margin-left:-11.658267pt;}
._5{margin-left:-10.492000pt;}
._7{margin-left:-9.295200pt;}
._f{margin-left:-6.782533pt;}
._40{margin-left:-5.880000pt;}
._4{margin-left:-4.452400pt;}
._1{margin-left:-3.268000pt;}
._2{margin-left:-1.892000pt;}
._8{margin-left:-0.905333pt;}
._0{width:1.032000pt;}
._3{width:2.752000pt;}
._9{width:3.902667pt;}
._11{width:4.881733pt;}
._6{width:6.700267pt;}
._41{width:8.730400pt;}
._24{width:10.240400pt;}
._a{width:11.737333pt;}
._2f{width:12.774667pt;}
._3c{width:13.754933pt;}
._3b{width:14.824667pt;}
._3d{width:20.033333pt;}
._27{width:21.530933pt;}
._28{width:22.532533pt;}
._2e{width:23.523467pt;}
._2d{width:25.846533pt;}
._22{width:26.760133pt;}
._21{width:28.091333pt;}
._32{width:28.985333pt;}
._1c{width:29.874667pt;}
._46{width:35.124000pt;}
._37{width:36.048000pt;}
._1e{width:36.973333pt;}
._1d{width:38.094667pt;}
._29{width:39.265600pt;}
._42{width:40.580400pt;}
._15{width:41.574933pt;}
._49{width:44.421067pt;}
._10{width:50.899200pt;}
._2b{width:52.314667pt;}
._2a{width:53.629333pt;}
._50{width:58.191200pt;}
._4f{width:59.661733pt;}
._31{width:64.171467pt;}
._33{width:66.014667pt;}
._1b{width:77.458667pt;}
._1a{width:78.378667pt;}
._20{width:79.897333pt;}
._1f{width:81.361333pt;}
._3f{width:86.261733pt;}
._26{width:87.927200pt;}
._25{width:88.878667pt;}
._35{width:98.243867pt;}
._4e{width:99.410667pt;}
._4a{width:106.679067pt;}
._34{width:108.242667pt;}
._47{width:123.978133pt;}
._3e{width:127.584000pt;}
._b{width:129.637067pt;}
._13{width:131.109333pt;}
._12{width:132.185333pt;}
._36{width:141.637867pt;}
._4b{width:149.299200pt;}
._4c{width:151.361333pt;}
._38{width:154.811467pt;}
._39{width:155.967867pt;}
._48{width:163.872933pt;}
._43{width:172.981600pt;}
._14{width:175.867467pt;}
._19{width:191.410667pt;}
._3a{width:198.925067pt;}
._4d{width:216.000000pt;}
._45{width:217.154000pt;}
._44{width:219.129067pt;}
._18{width:234.223333pt;}
._17{width:238.182667pt;}
._16{width:278.472400pt;}
._30{width:8474.410000pt;}
.fs7{font-size:84.133333pt;}
.fs6{font-size:128.000000pt;}
.fs8{font-size:140.000000pt;}
.fs9{font-size:140.133333pt;}
.fs0{font-size:172.000000pt;}
.fs1{font-size:172.133333pt;}
.fs5{font-size:192.000000pt;}
.fs3{font-size:212.000000pt;}
.fs4{font-size:212.133333pt;}
.fs2{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:10.000000pt;}
.y39{bottom:18.800000pt;}
.y75{bottom:66.000000pt;}
.y78{bottom:74.366667pt;}
.y87{bottom:102.666667pt;}
.y29{bottom:109.666667pt;}
.y73{bottom:122.000000pt;}
.y77{bottom:130.100000pt;}
.y63{bottom:132.840000pt;}
.y60{bottom:133.173333pt;}
.y57{bottom:133.200000pt;}
.y4d{bottom:133.240000pt;}
.y44{bottom:133.266667pt;}
.y28{bottom:161.706667pt;}
.y72{bottom:175.106667pt;}
.y74{bottom:175.360000pt;}
.y66{bottom:175.373333pt;}
.y69{bottom:175.600000pt;}
.y6b{bottom:175.866667pt;}
.y6d{bottom:176.093333pt;}
.y71{bottom:178.000000pt;}
.y37{bottom:201.293333pt;}
.y27{bottom:212.706667pt;}
.y70{bottom:233.000000pt;}
.y36{bottom:252.293333pt;}
.y26{bottom:263.733333pt;}
.y6f{bottom:289.000000pt;}
.y35{bottom:303.333333pt;}
.y25{bottom:314.733333pt;}
.y6e{bottom:345.000000pt;}
.y24{bottom:365.773333pt;}
.y6c{bottom:400.000000pt;}
.y34{bottom:406.373333pt;}
.y23{bottom:417.760000pt;}
.y6a{bottom:456.000000pt;}
.y33{bottom:457.373333pt;}
.y22{bottom:468.800000pt;}
.y68{bottom:512.000000pt;}
.y32{bottom:559.400000pt;}
.y14{bottom:559.506667pt;}
.y65{bottom:568.000000pt;}
.y31{bottom:611.426667pt;}
.y30{bottom:660.360000pt;}
.y2f{bottom:711.360000pt;}
.y67{bottom:743.373333pt;}
.y85{bottom:747.893333pt;}
.y2e{bottom:762.400000pt;}
.y62{bottom:793.000000pt;}
.y2d{bottom:813.400000pt;}
.y38{bottom:835.573333pt;}
.y84{bottom:848.426667pt;}
.y5f{bottom:860.000000pt;}
.y2c{bottom:864.440000pt;}
.y83{bottom:899.426667pt;}
.y2b{bottom:916.426667pt;}
.y5d{bottom:917.000000pt;}
.y61{bottom:925.840000pt;}
.y82{bottom:951.466667pt;}
.y2a{bottom:967.466667pt;}
.y5c{bottom:974.000000pt;}
.y5e{bottom:993.173333pt;}
.y81{bottom:1002.466667pt;}
.y5b{bottom:1031.000000pt;}
.y15{bottom:1051.840000pt;}
.y5a{bottom:1088.000000pt;}
.y80{bottom:1104.506667pt;}
.y59{bottom:1145.000000pt;}
.y41{bottom:1155.360000pt;}
.y7f{bottom:1155.533333pt;}
.y58{bottom:1202.000000pt;}
.y40{bottom:1206.360000pt;}
.y7e{bottom:1207.533333pt;}
.y3f{bottom:1257.400000pt;}
.y7d{bottom:1258.573333pt;}
.y56{bottom:1259.000000pt;}
.y3e{bottom:1308.400000pt;}
.y3d{bottom:1359.426667pt;}
.y7c{bottom:1360.600000pt;}
.y54{bottom:1373.000000pt;}
.y3c{bottom:1411.426667pt;}
.y7b{bottom:1411.600000pt;}
.y52{bottom:1430.000000pt;}
.y55{bottom:1449.240000pt;}
.y3b{bottom:1462.466667pt;}
.y7a{bottom:1463.626667pt;}
.y53{bottom:1506.240000pt;}
.y79{bottom:1514.626667pt;}
.y4f{bottom:1544.000000pt;}
.y3a{bottom:1549.000000pt;}
.y51{bottom:1563.240000pt;}
.y4e{bottom:1601.000000pt;}
.y86{bottom:1607.400000pt;}
.y50{bottom:1620.240000pt;}
.y4c{bottom:1658.000000pt;}
.y21{bottom:1660.373333pt;}
.yb{bottom:1688.866667pt;}
.y20{bottom:1711.373333pt;}
.ya{bottom:1739.906667pt;}
.y1f{bottom:1762.400000pt;}
.y4a{bottom:1772.000000pt;}
.y9{bottom:1790.906667pt;}
.y1e{bottom:1813.400000pt;}
.y49{bottom:1829.000000pt;}
.y8{bottom:1841.933333pt;}
.y4b{bottom:1848.266667pt;}
.y1d{bottom:1864.426667pt;}
.y7{bottom:1893.933333pt;}
.y1c{bottom:1916.466667pt;}
.y47{bottom:1943.000000pt;}
.y6{bottom:1944.973333pt;}
.y1b{bottom:1967.466667pt;}
.y5{bottom:1995.973333pt;}
.y46{bottom:2000.000000pt;}
.y1a{bottom:2018.506667pt;}
.y48{bottom:2019.266667pt;}
.y4{bottom:2047.000000pt;}
.y19{bottom:2069.506667pt;}
.y3{bottom:2098.000000pt;}
.y43{bottom:2114.000000pt;}
.y18{bottom:2120.533333pt;}
.y2{bottom:2150.040000pt;}
.y17{bottom:2172.533333pt;}
.y45{bottom:2190.266667pt;}
.y1{bottom:2201.040000pt;}
.y16{bottom:2223.573333pt;}
.y42{bottom:2247.266667pt;}
.y13{bottom:2316.093333pt;}
.y64{bottom:2316.466667pt;}
.y12{bottom:2410.960000pt;}
.y11{bottom:2462.000000pt;}
.y10{bottom:2513.000000pt;}
.yf{bottom:2565.040000pt;}
.ye{bottom:2616.040000pt;}
.yd{bottom:2668.066667pt;}
.yc{bottom:2740.066667pt;}
.hd{height:98.779297pt;}
.hf{height:98.873372pt;}
.ha{height:99.659310pt;}
.hb{height:100.488281pt;}
.he{height:100.583984pt;}
.h1{height:123.457031pt;}
.h2{height:123.552734pt;}
.h7{height:125.220703pt;}
.h6{height:125.317773pt;}
.h8{height:131.723698pt;}
.h9{height:135.468750pt;}
.h5{height:149.674154pt;}
.h4{height:161.171615pt;}
.h3{height:229.687500pt;}
.h13{height:290.000000pt;}
.hc{height:292.000000pt;}
.h12{height:346.000000pt;}
.h10{height:391.000000pt;}
.h11{height:392.000000pt;}
.h0{height:2880.000000pt;}
.w6{width:114.000000pt;}
.w7{width:125.000000pt;}
.w5{width:127.000000pt;}
.w8{width:146.000000pt;}
.w2{width:251.000000pt;}
.w4{width:559.000000pt;}
.w9{width:798.000000pt;}
.w3{width:807.000000pt;}
.w1{width:3647.999946pt;}
.w0{width:3648.000000pt;}
.x0{left:0.000000pt;}
.x36{left:7.706667pt;}
.x17{left:14.733279pt;}
.xe{left:17.433279pt;}
.x12{left:23.233279pt;}
.x10{left:36.133279pt;}
.x33{left:38.200000pt;}
.xf{left:53.466612pt;}
.x19{left:65.466612pt;}
.x13{left:69.799946pt;}
.x11{left:79.499946pt;}
.x1f{left:87.400000pt;}
.x2e{left:88.666667pt;}
.x3{left:96.299946pt;}
.x25{left:106.000000pt;}
.x22{left:113.400000pt;}
.x27{left:122.066667pt;}
.x24{left:158.226667pt;}
.x1c{left:159.573333pt;}
.x31{left:176.893333pt;}
.x2f{left:315.866667pt;}
.x18{left:323.306612pt;}
.xc{left:331.506612pt;}
.xa{left:398.999946pt;}
.xb{left:428.373279pt;}
.x2d{left:577.600000pt;}
.x26{left:578.626667pt;}
.x2a{left:631.466667pt;}
.x21{left:650.026667pt;}
.x2b{left:652.800000pt;}
.x30{left:657.706667pt;}
.x23{left:688.573333pt;}
.x2c{left:694.400000pt;}
.x20{left:698.066667pt;}
.x1e{left:728.906667pt;}
.x29{left:738.400000pt;}
.x35{left:1160.000000pt;}
.x1d{left:1184.000000pt;}
.x1a{left:1208.399946pt;}
.x3c{left:1227.373279pt;}
.x34{left:1321.959946pt;}
.x32{left:1420.959946pt;}
.x8{left:1471.399946pt;}
.x7{left:1503.373279pt;}
.x16{left:1513.933279pt;}
.x5{left:1592.133279pt;}
.x9{left:1597.266612pt;}
.x6{left:1670.133279pt;}
.x38{left:1718.000000pt;}
.x37{left:1769.999946pt;}
.x4{left:1773.959946pt;}
.x39{left:1844.000000pt;}
.x28{left:1854.866612pt;}
.x3a{left:1957.000000pt;}
.x1b{left:1990.000000pt;}
.x3b{left:2081.000000pt;}
.x1{left:2364.439946pt;}
.x3d{left:2367.599946pt;}
.x15{left:2378.266612pt;}
.x2{left:2408.426612pt;}
.x14{left:2414.266612pt;}
.x3e{left:2415.599946pt;}
.x41{left:2655.293279pt;}
.xd{left:2787.893279pt;}
.x40{left:2811.026612pt;}
.x3f{left:2880.293279pt;}
}




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