
    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_be9780eb2c1470d1b8d649c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_96bbf1a8ffcc46ce0ca059d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.758789;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c799d9ac763d6bfbd9fb4427.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984027;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_f06dc904f82ffd894203762e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.859000;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_7f15c5baa658ac83877d169e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978000;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_47e9cada4359748447ed38d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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);}
.v7{vertical-align:-124.740000px;}
.v2{vertical-align:-90.000000px;}
.v3{vertical-align:-57.600000px;}
.v5{vertical-align:-54.000000px;}
.v6{vertical-align:-21.180000px;}
.v9{vertical-align:-5.940000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:45.180000px;}
.v4{vertical-align:54.000000px;}
.v1{vertical-align:90.000000px;}
.ls16{letter-spacing:-20.160000px;}
.ls19{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.280200px;}
.lsd{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.023040px;}
.lsc{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.023040px;}
.ls14{letter-spacing:0.054720px;}
.ls6{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.280200px;}
.ls1b{letter-spacing:0.325200px;}
.lse{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.504000px;}
.ls3{letter-spacing:52.560000px;}
.ls2{letter-spacing:57.402000px;}
.lsb{letter-spacing:59.760000px;}
.ls7{letter-spacing:60.120000px;}
.lsa{letter-spacing:60.480000px;}
.ls9{letter-spacing:61.200000px;}
.ls1{letter-spacing:104.940000px;}
.ls8{letter-spacing:133.842000px;}
.ls0{letter-spacing:133.866000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-83.466720px;}
.wse{word-spacing:-75.627360px;}
.ws3b{word-spacing:-73.458720px;}
.wsb{word-spacing:-55.644480px;}
.ws2a{word-spacing:-50.400000px;}
.ws3c{word-spacing:-50.080032px;}
.ws2c{word-spacing:-50.040000px;}
.ws3d{word-spacing:-49.860000px;}
.ws41{word-spacing:-49.320000px;}
.ws4a{word-spacing:-39.888000px;}
.wsc{word-spacing:-33.426720px;}
.ws27{word-spacing:-31.625280px;}
.ws21{word-spacing:-2.761920px;}
.ws24{word-spacing:-2.748240px;}
.ws1c{word-spacing:-2.478240px;}
.ws20{word-spacing:-2.410800px;}
.ws23{word-spacing:-2.215440px;}
.ws22{word-spacing:-2.200680px;}
.ws48{word-spacing:-1.980000px;}
.ws1a{word-spacing:-1.827360px;}
.ws4{word-spacing:-1.800000px;}
.ws26{word-spacing:-1.774080px;}
.ws1d{word-spacing:-1.680720px;}
.ws3a{word-spacing:-1.620000px;}
.ws7{word-spacing:-1.440000px;}
.ws38{word-spacing:-1.316160px;}
.ws8{word-spacing:-1.260000px;}
.ws1b{word-spacing:-0.960480px;}
.ws1f{word-spacing:-0.880560px;}
.ws3e{word-spacing:-0.870720px;}
.ws25{word-spacing:-0.840480px;}
.ws39{word-spacing:-0.780000px;}
.ws5{word-spacing:-0.720000px;}
.ws1e{word-spacing:-0.666720px;}
.ws9{word-spacing:-0.540000px;}
.ws3{word-spacing:-0.360000px;}
.ws47{word-spacing:-0.180000px;}
.ws55{word-spacing:0.000000px;}
.ws6{word-spacing:0.180000px;}
.ws4d{word-spacing:1.080000px;}
.ws4f{word-spacing:3.060000px;}
.ws35{word-spacing:9.180000px;}
.ws33{word-spacing:9.360000px;}
.ws31{word-spacing:9.720000px;}
.ws42{word-spacing:10.440000px;}
.wsd{word-spacing:10.606080px;}
.ws3f{word-spacing:10.620000px;}
.ws32{word-spacing:10.800000px;}
.wsf{word-spacing:10.978560px;}
.ws44{word-spacing:11.160000px;}
.ws40{word-spacing:11.340000px;}
.ws43{word-spacing:12.420000px;}
.ws14{word-spacing:14.492880px;}
.ws15{word-spacing:14.546160px;}
.ws17{word-spacing:14.666400px;}
.ws19{word-spacing:15.187680px;}
.ws13{word-spacing:15.215040px;}
.ws18{word-spacing:15.426000px;}
.ws28{word-spacing:16.200000px;}
.ws16{word-spacing:16.315920px;}
.ws10{word-spacing:20.986560px;}
.ws12{word-spacing:21.548160px;}
.ws11{word-spacing:22.547160px;}
.ws36{word-spacing:24.120000px;}
.ws2{word-spacing:24.480000px;}
.ws37{word-spacing:24.660000px;}
.ws0{word-spacing:25.560000px;}
.ws1{word-spacing:25.920000px;}
.ws45{word-spacing:27.000000px;}
.ws2b{word-spacing:28.260000px;}
.ws29{word-spacing:29.160000px;}
.ws30{word-spacing:35.820000px;}
.ws2e{word-spacing:48.744000px;}
.ws2d{word-spacing:48.960000px;}
.ws2f{word-spacing:49.140000px;}
.ws34{word-spacing:50.760000px;}
.ws4e{word-spacing:58.680000px;}
.ws46{word-spacing:59.220000px;}
.ws4c{word-spacing:71.460000px;}
.ws54{word-spacing:220.483920px;}
.ws52{word-spacing:263.700000px;}
.ws50{word-spacing:263.820000px;}
.ws51{word-spacing:263.880000px;}
.ws53{word-spacing:288.000000px;}
.ws49{word-spacing:2999.557440px;}
.ws4b{word-spacing:3240.865440px;}
._8{margin-left:-22.286880px;}
._1d{margin-left:-19.860000px;}
._a{margin-left:-18.729600px;}
._4{margin-left:-16.560000px;}
._1f{margin-left:-14.452560px;}
._c{margin-left:-12.389760px;}
._12{margin-left:-10.378080px;}
._7{margin-left:-7.776000px;}
._20{margin-left:-6.375600px;}
._6{margin-left:-5.104080px;}
._9{margin-left:-4.024080px;}
._1{margin-left:-2.880000px;}
._0{margin-left:-1.440000px;}
._3{width:1.260000px;}
._11{width:2.766240px;}
._1e{width:31.191840px;}
._f{width:32.888160px;}
._10{width:33.895200px;}
._b{width:45.079920px;}
._23{width:47.479680px;}
._e{width:49.064400px;}
._5{width:50.220000px;}
._1b{width:51.826800px;}
._d{width:55.425360px;}
._22{width:59.580000px;}
._19{width:61.204080px;}
._13{width:67.324080px;}
._1a{width:72.480000px;}
._2{width:75.540000px;}
._14{width:77.940000px;}
._16{width:79.560000px;}
._15{width:80.760000px;}
._18{width:87.188160px;}
._17{width:100.346400px;}
._24{width:108.064080px;}
._1c{width:156.060000px;}
._26{width:1478.214480px;}
._25{width:1503.377040px;}
._21{width:1640.048880px;}
.fc1{color:rgb(23,156,125);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fs9{font-size:113.760000px;}
.fs8{font-size:120.240000px;}
.fs6{font-size:128.160000px;}
.fsc{font-size:144.000000px;}
.fs1{font-size:162.000000px;}
.fsf{font-size:167.760000px;}
.fs0{font-size:180.000000px;}
.fsb{font-size:180.144000px;}
.fs7{font-size:192.240000px;}
.fs5{font-size:200.160000px;}
.fse{font-size:216.000000px;}
.fsa{font-size:264.240000px;}
.fs2{font-size:300.240000px;}
.fs3{font-size:432.000000px;}
.fs4{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:63.828000px;}
.y1e{bottom:98.028000px;}
.y17{bottom:102.852000px;}
.y1d{bottom:150.225000px;}
.y16{bottom:174.855000px;}
.y1c{bottom:184.425000px;}
.y42{bottom:185.295000px;}
.y3a{bottom:185.325000px;}
.y3f{bottom:185.370000px;}
.y15{bottom:210.855000px;}
.y1b{bottom:218.625000px;}
.y14{bottom:246.855000px;}
.y1a{bottom:252.825000px;}
.y13{bottom:282.855000px;}
.y19{bottom:287.025000px;}
.y12{bottom:318.855000px;}
.y18{bottom:321.225000px;}
.y37{bottom:371.595000px;}
.y4a{bottom:383.220000px;}
.y33{bottom:401.145000px;}
.y49{bottom:426.420000px;}
.y36{bottom:433.695000px;}
.y32{bottom:437.145000px;}
.y31{bottom:473.145000px;}
.y30{bottom:509.145000px;}
.y2f{bottom:545.145000px;}
.y2e{bottom:581.145000px;}
.y2d{bottom:617.145000px;}
.y2c{bottom:689.325000px;}
.y67{bottom:756.180000px;}
.y60{bottom:816.480000px;}
.y62{bottom:818.070000px;}
.y61{bottom:818.310000px;}
.y63{bottom:819.975000px;}
.y64{bottom:824.760000px;}
.y65{bottom:1115.895000px;}
.y66{bottom:1118.310000px;}
.y5c{bottom:1127.595000px;}
.y48{bottom:1132.890000px;}
.y47{bottom:1204.125000px;}
.y52{bottom:1302.195000px;}
.y51{bottom:1365.195000px;}
.y73{bottom:1404.210000px;}
.y50{bottom:1428.195000px;}
.y70{bottom:1444.530000px;}
.y72{bottom:1455.150000px;}
.y4f{bottom:1491.195000px;}
.y6f{bottom:1507.575000px;}
.y4e{bottom:1554.195000px;}
.y6e{bottom:1570.575000px;}
.y4d{bottom:1617.195000px;}
.y6d{bottom:1633.575000px;}
.y4c{bottom:1680.195000px;}
.y44{bottom:1690.920000px;}
.y6c{bottom:1696.575000px;}
.y6b{bottom:1759.575000px;}
.y4b{bottom:1765.980000px;}
.y41{bottom:1766.160000px;}
.y6a{bottom:1822.575000px;}
.y3e{bottom:1824.120000px;}
.y35{bottom:1836.180000px;}
.y45{bottom:1876.245000px;}
.y69{bottom:1885.575000px;}
.y39{bottom:1923.300000px;}
.y68{bottom:1948.575000px;}
.y43{bottom:1951.485000px;}
.y40{bottom:2009.520000px;}
.y71{bottom:2022.735000px;}
.y3d{bottom:2077.635000px;}
.y3b{bottom:2108.625000px;}
.y5e{bottom:2109.780000px;}
.y3c{bottom:2139.735000px;}
.y5d{bottom:2160.720000px;}
.y38{bottom:2238.840000px;}
.y34{bottom:2333.010000px;}
.y46{bottom:2403.750000px;}
.y2b{bottom:2461.035000px;}
.y2a{bottom:2587.035000px;}
.y5f{bottom:2683.515000px;}
.y29{bottom:2713.065000px;}
.y55{bottom:2759.010000px;}
.y28{bottom:2839.065000px;}
.y5b{bottom:2856.525000px;}
.y5a{bottom:2899.725000px;}
.y59{bottom:2942.925000px;}
.y27{bottom:2965.065000px;}
.y7{bottom:2976.765000px;}
.y58{bottom:2986.125000px;}
.y57{bottom:3029.325000px;}
.y6{bottom:3039.765000px;}
.y56{bottom:3072.525000px;}
.y26{bottom:3075.870000px;}
.y5{bottom:3102.765000px;}
.y25{bottom:3156.870000px;}
.y4{bottom:3165.765000px;}
.y24{bottom:3237.870000px;}
.y3{bottom:3291.765000px;}
.y23{bottom:3318.870000px;}
.y22{bottom:3399.870000px;}
.y2{bottom:3422.265000px;}
.y21{bottom:3480.870000px;}
.y1{bottom:3503.310000px;}
.y20{bottom:3561.870000px;}
.y54{bottom:3573.390000px;}
.y53{bottom:3646.545000px;}
.y8{bottom:3649.890000px;}
.y11{bottom:3962.595000px;}
.y10{bottom:4029.195000px;}
.yf{bottom:4095.795000px;}
.ye{bottom:4162.395000px;}
.yd{bottom:4279.785000px;}
.yc{bottom:4399.845000px;}
.yb{bottom:4593.165000px;}
.ya{bottom:4746.345000px;}
.y9{bottom:4908.345000px;}
.h15{height:64.190880px;}
.h11{height:72.969120px;}
.ha{height:85.320000px;}
.h9{height:86.685120px;}
.h8{height:91.622880px;}
.h7{height:97.657920px;}
.h10{height:109.728000px;}
.h13{height:127.833120px;}
.h2{height:137.160000px;}
.he{height:137.269728px;}
.hb{height:145.622880px;}
.h12{height:164.592000px;}
.h14{height:173.013120px;}
.hc{height:201.350880px;}
.h3{height:228.782880px;}
.h6{height:242.521920px;}
.h4{height:329.184000px;}
.hf{height:406.080000px;}
.h5{height:432.000000px;}
.hd{height:840.780000px;}
.h0{height:5081.040000px;}
.h1{height:5081.250000px;}
.w3{width:448.380000px;}
.w2{width:3601.439946px;}
.w0{width:3601.440000px;}
.w1{width:3601.500000px;}
.x0{left:0.000000px;}
.x9{left:8.136000px;}
.x12{left:81.683946px;}
.x15{left:84.455946px;}
.x16{left:88.775946px;}
.x4{left:90.899946px;}
.x14{left:93.023946px;}
.xc{left:115.770000px;}
.x17{left:152.489946px;}
.xb{left:192.449946px;}
.x13{left:362.804946px;}
.x5{left:451.409946px;}
.xd{left:645.734946px;}
.x11{left:669.134946px;}
.xa{left:718.634946px;}
.xe{left:788.144946px;}
.x10{left:793.004946px;}
.xf{left:811.904946px;}
.x8{left:904.064946px;}
.x7{left:1820.084946px;}
.x20{left:1840.319946px;}
.x1e{left:1864.544946px;}
.x1{left:1870.124946px;}
.x21{left:1872.539946px;}
.x18{left:1874.984946px;}
.x3{left:1882.904946px;}
.x22{left:1936.259946px;}
.x2{left:1938.164946px;}
.x1f{left:2285.789946px;}
.x1d{left:2293.739946px;}
.x19{left:2711.984946px;}
.x1c{left:2716.529946px;}
.x23{left:2768.324946px;}
.x6{left:2790.749946px;}
.x1b{left:3138.584946px;}
.x1a{left:3370.889946px;}
@media print{
.v7{vertical-align:-110.880000pt;}
.v2{vertical-align:-80.000000pt;}
.v3{vertical-align:-51.200000pt;}
.v5{vertical-align:-48.000000pt;}
.v6{vertical-align:-18.826667pt;}
.v9{vertical-align:-5.280000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:40.160000pt;}
.v4{vertical-align:48.000000pt;}
.v1{vertical-align:80.000000pt;}
.ls16{letter-spacing:-17.920000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.249067pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.020480pt;}
.lsc{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.020480pt;}
.ls14{letter-spacing:0.048640pt;}
.ls6{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.249067pt;}
.ls1b{letter-spacing:0.289067pt;}
.lse{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls3{letter-spacing:46.720000pt;}
.ls2{letter-spacing:51.024000pt;}
.lsb{letter-spacing:53.120000pt;}
.ls7{letter-spacing:53.440000pt;}
.lsa{letter-spacing:53.760000pt;}
.ls9{letter-spacing:54.400000pt;}
.ls1{letter-spacing:93.280000pt;}
.ls8{letter-spacing:118.970667pt;}
.ls0{letter-spacing:118.992000pt;}
.wsa{word-spacing:-74.192640pt;}
.wse{word-spacing:-67.224320pt;}
.ws3b{word-spacing:-65.296640pt;}
.wsb{word-spacing:-49.461760pt;}
.ws2a{word-spacing:-44.800000pt;}
.ws3c{word-spacing:-44.515584pt;}
.ws2c{word-spacing:-44.480000pt;}
.ws3d{word-spacing:-44.320000pt;}
.ws41{word-spacing:-43.840000pt;}
.ws4a{word-spacing:-35.456000pt;}
.wsc{word-spacing:-29.712640pt;}
.ws27{word-spacing:-28.111360pt;}
.ws21{word-spacing:-2.455040pt;}
.ws24{word-spacing:-2.442880pt;}
.ws1c{word-spacing:-2.202880pt;}
.ws20{word-spacing:-2.142933pt;}
.ws23{word-spacing:-1.969280pt;}
.ws22{word-spacing:-1.956160pt;}
.ws48{word-spacing:-1.760000pt;}
.ws1a{word-spacing:-1.624320pt;}
.ws4{word-spacing:-1.600000pt;}
.ws26{word-spacing:-1.576960pt;}
.ws1d{word-spacing:-1.493973pt;}
.ws3a{word-spacing:-1.440000pt;}
.ws7{word-spacing:-1.280000pt;}
.ws38{word-spacing:-1.169920pt;}
.ws8{word-spacing:-1.120000pt;}
.ws1b{word-spacing:-0.853760pt;}
.ws1f{word-spacing:-0.782720pt;}
.ws3e{word-spacing:-0.773973pt;}
.ws25{word-spacing:-0.747093pt;}
.ws39{word-spacing:-0.693333pt;}
.ws5{word-spacing:-0.640000pt;}
.ws1e{word-spacing:-0.592640pt;}
.ws9{word-spacing:-0.480000pt;}
.ws3{word-spacing:-0.320000pt;}
.ws47{word-spacing:-0.160000pt;}
.ws55{word-spacing:0.000000pt;}
.ws6{word-spacing:0.160000pt;}
.ws4d{word-spacing:0.960000pt;}
.ws4f{word-spacing:2.720000pt;}
.ws35{word-spacing:8.160000pt;}
.ws33{word-spacing:8.320000pt;}
.ws31{word-spacing:8.640000pt;}
.ws42{word-spacing:9.280000pt;}
.wsd{word-spacing:9.427627pt;}
.ws3f{word-spacing:9.440000pt;}
.ws32{word-spacing:9.600000pt;}
.wsf{word-spacing:9.758720pt;}
.ws44{word-spacing:9.920000pt;}
.ws40{word-spacing:10.080000pt;}
.ws43{word-spacing:11.040000pt;}
.ws14{word-spacing:12.882560pt;}
.ws15{word-spacing:12.929920pt;}
.ws17{word-spacing:13.036800pt;}
.ws19{word-spacing:13.500160pt;}
.ws13{word-spacing:13.524480pt;}
.ws18{word-spacing:13.712000pt;}
.ws28{word-spacing:14.400000pt;}
.ws16{word-spacing:14.503040pt;}
.ws10{word-spacing:18.654720pt;}
.ws12{word-spacing:19.153920pt;}
.ws11{word-spacing:20.041920pt;}
.ws36{word-spacing:21.440000pt;}
.ws2{word-spacing:21.760000pt;}
.ws37{word-spacing:21.920000pt;}
.ws0{word-spacing:22.720000pt;}
.ws1{word-spacing:23.040000pt;}
.ws45{word-spacing:24.000000pt;}
.ws2b{word-spacing:25.120000pt;}
.ws29{word-spacing:25.920000pt;}
.ws30{word-spacing:31.840000pt;}
.ws2e{word-spacing:43.328000pt;}
.ws2d{word-spacing:43.520000pt;}
.ws2f{word-spacing:43.680000pt;}
.ws34{word-spacing:45.120000pt;}
.ws4e{word-spacing:52.160000pt;}
.ws46{word-spacing:52.640000pt;}
.ws4c{word-spacing:63.520000pt;}
.ws54{word-spacing:195.985707pt;}
.ws52{word-spacing:234.400000pt;}
.ws50{word-spacing:234.506667pt;}
.ws51{word-spacing:234.560000pt;}
.ws53{word-spacing:256.000000pt;}
.ws49{word-spacing:2666.273280pt;}
.ws4b{word-spacing:2880.769280pt;}
._8{margin-left:-19.810560pt;}
._1d{margin-left:-17.653333pt;}
._a{margin-left:-16.648533pt;}
._4{margin-left:-14.720000pt;}
._1f{margin-left:-12.846720pt;}
._c{margin-left:-11.013120pt;}
._12{margin-left:-9.224960pt;}
._7{margin-left:-6.912000pt;}
._20{margin-left:-5.667200pt;}
._6{margin-left:-4.536960pt;}
._9{margin-left:-3.576960pt;}
._1{margin-left:-2.560000pt;}
._0{margin-left:-1.280000pt;}
._3{width:1.120000pt;}
._11{width:2.458880pt;}
._1e{width:27.726080pt;}
._f{width:29.233920pt;}
._10{width:30.129067pt;}
._b{width:40.071040pt;}
._23{width:42.204160pt;}
._e{width:43.612800pt;}
._5{width:44.640000pt;}
._1b{width:46.068267pt;}
._d{width:49.266987pt;}
._22{width:52.960000pt;}
._19{width:54.403627pt;}
._13{width:59.843627pt;}
._1a{width:64.426667pt;}
._2{width:67.146667pt;}
._14{width:69.280000pt;}
._16{width:70.720000pt;}
._15{width:71.786667pt;}
._18{width:77.500587pt;}
._17{width:89.196800pt;}
._24{width:96.056960pt;}
._1c{width:138.720000pt;}
._26{width:1313.968427pt;}
._25{width:1336.335147pt;}
._21{width:1457.821227pt;}
.fs10{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fs9{font-size:101.120000pt;}
.fs8{font-size:106.880000pt;}
.fs6{font-size:113.920000pt;}
.fsc{font-size:128.000000pt;}
.fs1{font-size:144.000000pt;}
.fsf{font-size:149.120000pt;}
.fs0{font-size:160.000000pt;}
.fsb{font-size:160.128000pt;}
.fs7{font-size:170.880000pt;}
.fs5{font-size:177.920000pt;}
.fse{font-size:192.000000pt;}
.fsa{font-size:234.880000pt;}
.fs2{font-size:266.880000pt;}
.fs3{font-size:384.000000pt;}
.fs4{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:56.736000pt;}
.y1e{bottom:87.136000pt;}
.y17{bottom:91.424000pt;}
.y1d{bottom:133.533333pt;}
.y16{bottom:155.426667pt;}
.y1c{bottom:163.933333pt;}
.y42{bottom:164.706667pt;}
.y3a{bottom:164.733333pt;}
.y3f{bottom:164.773333pt;}
.y15{bottom:187.426667pt;}
.y1b{bottom:194.333333pt;}
.y14{bottom:219.426667pt;}
.y1a{bottom:224.733333pt;}
.y13{bottom:251.426667pt;}
.y19{bottom:255.133333pt;}
.y12{bottom:283.426667pt;}
.y18{bottom:285.533333pt;}
.y37{bottom:330.306667pt;}
.y4a{bottom:340.640000pt;}
.y33{bottom:356.573333pt;}
.y49{bottom:379.040000pt;}
.y36{bottom:385.506667pt;}
.y32{bottom:388.573333pt;}
.y31{bottom:420.573333pt;}
.y30{bottom:452.573333pt;}
.y2f{bottom:484.573333pt;}
.y2e{bottom:516.573333pt;}
.y2d{bottom:548.573333pt;}
.y2c{bottom:612.733333pt;}
.y67{bottom:672.160000pt;}
.y60{bottom:725.760000pt;}
.y62{bottom:727.173333pt;}
.y61{bottom:727.386667pt;}
.y63{bottom:728.866667pt;}
.y64{bottom:733.120000pt;}
.y65{bottom:991.906667pt;}
.y66{bottom:994.053333pt;}
.y5c{bottom:1002.306667pt;}
.y48{bottom:1007.013333pt;}
.y47{bottom:1070.333333pt;}
.y52{bottom:1157.506667pt;}
.y51{bottom:1213.506667pt;}
.y73{bottom:1248.186667pt;}
.y50{bottom:1269.506667pt;}
.y70{bottom:1284.026667pt;}
.y72{bottom:1293.466667pt;}
.y4f{bottom:1325.506667pt;}
.y6f{bottom:1340.066667pt;}
.y4e{bottom:1381.506667pt;}
.y6e{bottom:1396.066667pt;}
.y4d{bottom:1437.506667pt;}
.y6d{bottom:1452.066667pt;}
.y4c{bottom:1493.506667pt;}
.y44{bottom:1503.040000pt;}
.y6c{bottom:1508.066667pt;}
.y6b{bottom:1564.066667pt;}
.y4b{bottom:1569.760000pt;}
.y41{bottom:1569.920000pt;}
.y6a{bottom:1620.066667pt;}
.y3e{bottom:1621.440000pt;}
.y35{bottom:1632.160000pt;}
.y45{bottom:1667.773333pt;}
.y69{bottom:1676.066667pt;}
.y39{bottom:1709.600000pt;}
.y68{bottom:1732.066667pt;}
.y43{bottom:1734.653333pt;}
.y40{bottom:1786.240000pt;}
.y71{bottom:1797.986667pt;}
.y3d{bottom:1846.786667pt;}
.y3b{bottom:1874.333333pt;}
.y5e{bottom:1875.360000pt;}
.y3c{bottom:1901.986667pt;}
.y5d{bottom:1920.640000pt;}
.y38{bottom:1990.080000pt;}
.y34{bottom:2073.786667pt;}
.y46{bottom:2136.666667pt;}
.y2b{bottom:2187.586667pt;}
.y2a{bottom:2299.586667pt;}
.y5f{bottom:2385.346667pt;}
.y29{bottom:2411.613333pt;}
.y55{bottom:2452.453333pt;}
.y28{bottom:2523.613333pt;}
.y5b{bottom:2539.133333pt;}
.y5a{bottom:2577.533333pt;}
.y59{bottom:2615.933333pt;}
.y27{bottom:2635.613333pt;}
.y7{bottom:2646.013333pt;}
.y58{bottom:2654.333333pt;}
.y57{bottom:2692.733333pt;}
.y6{bottom:2702.013333pt;}
.y56{bottom:2731.133333pt;}
.y26{bottom:2734.106667pt;}
.y5{bottom:2758.013333pt;}
.y25{bottom:2806.106667pt;}
.y4{bottom:2814.013333pt;}
.y24{bottom:2878.106667pt;}
.y3{bottom:2926.013333pt;}
.y23{bottom:2950.106667pt;}
.y22{bottom:3022.106667pt;}
.y2{bottom:3042.013333pt;}
.y21{bottom:3094.106667pt;}
.y1{bottom:3114.053333pt;}
.y20{bottom:3166.106667pt;}
.y54{bottom:3176.346667pt;}
.y53{bottom:3241.373333pt;}
.y8{bottom:3244.346667pt;}
.y11{bottom:3522.306667pt;}
.y10{bottom:3581.506667pt;}
.yf{bottom:3640.706667pt;}
.ye{bottom:3699.906667pt;}
.yd{bottom:3804.253333pt;}
.yc{bottom:3910.973333pt;}
.yb{bottom:4082.813333pt;}
.ya{bottom:4218.973333pt;}
.y9{bottom:4362.973333pt;}
.h15{height:57.058560pt;}
.h11{height:64.861440pt;}
.ha{height:75.840000pt;}
.h9{height:77.053440pt;}
.h8{height:81.442560pt;}
.h7{height:86.807040pt;}
.h10{height:97.536000pt;}
.h13{height:113.629440pt;}
.h2{height:121.920000pt;}
.he{height:122.017536pt;}
.hb{height:129.442560pt;}
.h12{height:146.304000pt;}
.h14{height:153.789440pt;}
.hc{height:178.978560pt;}
.h3{height:203.362560pt;}
.h6{height:215.575040pt;}
.h4{height:292.608000pt;}
.hf{height:360.960000pt;}
.h5{height:384.000000pt;}
.hd{height:747.360000pt;}
.h0{height:4516.480000pt;}
.h1{height:4516.666667pt;}
.w3{width:398.560000pt;}
.w2{width:3201.279952pt;}
.w0{width:3201.280000pt;}
.w1{width:3201.333333pt;}
.x0{left:0.000000pt;}
.x9{left:7.232000pt;}
.x12{left:72.607952pt;}
.x15{left:75.071952pt;}
.x16{left:78.911952pt;}
.x4{left:80.799952pt;}
.x14{left:82.687952pt;}
.xc{left:102.906667pt;}
.x17{left:135.546619pt;}
.xb{left:171.066619pt;}
.x13{left:322.493286pt;}
.x5{left:401.253286pt;}
.xd{left:573.986619pt;}
.x11{left:594.786619pt;}
.xa{left:638.786619pt;}
.xe{left:700.573286pt;}
.x10{left:704.893286pt;}
.xf{left:721.693286pt;}
.x8{left:803.613286pt;}
.x7{left:1617.853286pt;}
.x20{left:1635.839952pt;}
.x1e{left:1657.373286pt;}
.x1{left:1662.333286pt;}
.x21{left:1664.479952pt;}
.x18{left:1666.653286pt;}
.x3{left:1673.693286pt;}
.x22{left:1721.119952pt;}
.x2{left:1722.813286pt;}
.x1f{left:2031.813286pt;}
.x1d{left:2038.879952pt;}
.x19{left:2410.653286pt;}
.x1c{left:2414.693286pt;}
.x23{left:2460.733286pt;}
.x6{left:2480.666619pt;}
.x1b{left:2789.853286pt;}
.x1a{left:2996.346619pt;}
}




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