
    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_4a1046e81cc1762ae8f654d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090820;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_57c6284e893886cc149623de.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999512;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_dd93db1f64bed19c65b14a0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999512;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_72eedad4ee4390b137a5ff9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914551;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_fa6bbb1e87f6853c2dbf58e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_8471e79bce16113096b7c099.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:43.200000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.354000px;}
.ls9{letter-spacing:-0.271200px;}
.ls14{letter-spacing:-0.266400px;}
.ls3{letter-spacing:-0.252000px;}
.ls17{letter-spacing:-0.214200px;}
.lsc{letter-spacing:-0.165600px;}
.ls16{letter-spacing:-0.120000px;}
.lsb{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005748px;}
.lsa{letter-spacing:0.038160px;}
.ls7{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.124800px;}
.ls10{letter-spacing:0.190200px;}
.ls19{letter-spacing:0.289200px;}
.ls0{letter-spacing:0.379200px;}
.ls1d{letter-spacing:0.657747px;}
.ls4{letter-spacing:9.703872px;}
.ls6{letter-spacing:9.799920px;}
.ls11{letter-spacing:17.964000px;}
.ls15{letter-spacing:18.000000px;}
.lsd{letter-spacing:18.180000px;}
.lse{letter-spacing:26.223840px;}
.lsf{letter-spacing:26.319600px;}
.ls12{letter-spacing:27.000000px;}
.ls1c{letter-spacing:28.040400px;}
.ls8{letter-spacing:30.178080px;}
.ls2{letter-spacing:33.811920px;}
.ls1a{letter-spacing:48.371760px;}
.ls1b{letter-spacing:58.184640px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(3,10,24),0 0.015em rgb(3,10,24),0.015em 0 rgb(3,10,24),0 -0.015em  rgb(3,10,24);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(3,10,24);text-shadow:none;}
}
.ws0{word-spacing:-48.475200px;}
.ws6{word-spacing:-48.060000px;}
.ws18{word-spacing:-44.208200px;}
.ws15{word-spacing:-39.096000px;}
.wsd{word-spacing:-36.036000px;}
.ws16{word-spacing:-30.096000px;}
.ws8{word-spacing:-30.060000px;}
.ws2{word-spacing:-23.940000px;}
.ws14{word-spacing:-22.236914px;}
.ws4{word-spacing:-22.198967px;}
.wse{word-spacing:-21.096000px;}
.ws5{word-spacing:-21.060000px;}
.wsf{word-spacing:-20.793600px;}
.ws10{word-spacing:-18.000000px;}
.ws1a{word-spacing:-5.230320px;}
.ws1{word-spacing:-1.788240px;}
.wsa{word-spacing:-0.446400px;}
.ws3{word-spacing:0.000000px;}
.ws11{word-spacing:0.137280px;}
.ws7{word-spacing:0.138288px;}
.ws12{word-spacing:0.266400px;}
.ws13{word-spacing:0.314640px;}
.ws9{word-spacing:0.815760px;}
.ws17{word-spacing:56.824043px;}
.ws19{word-spacing:123.732000px;}
.wsc{word-spacing:1232.568000px;}
.wsb{word-spacing:1391.616000px;}
._14{margin-left:-6.558960px;}
._4{margin-left:-2.210400px;}
._1{margin-left:-1.110328px;}
._0{width:1.345680px;}
._3{width:2.422533px;}
._2{width:3.532861px;}
._15{width:19.856160px;}
._f{width:25.711707px;}
._e{width:28.452000px;}
._13{width:324.942960px;}
._12{width:331.015680px;}
._b{width:476.321904px;}
._11{width:485.968080px;}
._a{width:497.132640px;}
._6{width:538.583040px;}
._10{width:545.453520px;}
._c{width:588.190320px;}
._d{width:637.727040px;}
._7{width:732.839040px;}
._8{width:740.326320px;}
._5{width:770.074320px;}
._9{width:1344.168000px;}
.fc3{color:transparent;}
.fc4{color:rgb(14,132,77);}
.fc2{color:rgb(151,177,223);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(3,10,24);}
.fsb{font-size:36.000000px;}
.fse{font-size:59.760000px;}
.fsd{font-size:59.904000px;}
.fs6{font-size:69.822393px;}
.fsf{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fs14{font-size:75.893905px;}
.fs8{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fs9{font-size:88.795869px;}
.fs15{font-size:88.947657px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:95.904000px;}
.fs2{font-size:100.938894px;}
.fs13{font-size:108.000000px;}
.fs1b{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs7{font-size:144.000000px;}
.fs12{font-size:144.144000px;}
.fs16{font-size:156.240000px;}
.fs17{font-size:156.384000px;}
.fs11{font-size:167.760000px;}
.fs19{font-size:167.904000px;}
.fs1a{font-size:176.832798px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fs18{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:22.248000px;}
.y17{bottom:23.760000px;}
.y54{bottom:26.172000px;}
.y85{bottom:44.100000px;}
.y21{bottom:52.272000px;}
.y53{bottom:58.572000px;}
.y74{bottom:66.024000px;}
.y34{bottom:69.660000px;}
.y16{bottom:73.332000px;}
.y88{bottom:76.968000px;}
.y6e{bottom:78.156000px;}
.y86{bottom:80.712000px;}
.y81{bottom:80.745000px;}
.y5a{bottom:80.790000px;}
.y57{bottom:80.820000px;}
.y63{bottom:80.850000px;}
.y61{bottom:80.895000px;}
.y26{bottom:81.108000px;}
.y90{bottom:85.680000px;}
.y73{bottom:88.344000px;}
.y6{bottom:89.748000px;}
.y38{bottom:89.928000px;}
.y52{bottom:91.008000px;}
.y83{bottom:91.800000px;}
.y25{bottom:99.108000px;}
.y6d{bottom:99.756000px;}
.y15{bottom:102.168000px;}
.y33{bottom:103.356000px;}
.y4d{bottom:104.112000px;}
.y68{bottom:107.460000px;}
.y72{bottom:113.544000px;}
.y37{bottom:115.164000px;}
.y24{bottom:117.108000px;}
.y5{bottom:118.584000px;}
.y6c{bottom:121.356000px;}
.y51{bottom:123.408000px;}
.y20{bottom:124.308000px;}
.y87{bottom:124.812000px;}
.y32{bottom:124.956000px;}
.y4c{bottom:125.712000px;}
.y14{bottom:130.968000px;}
.y23{bottom:135.144000px;}
.y98{bottom:136.764000px;}
.y71{bottom:138.780000px;}
.y8f{bottom:139.212000px;}
.y80{bottom:139.680000px;}
.y36{bottom:140.364000px;}
.y6b{bottom:142.776000px;}
.y42{bottom:143.892000px;}
.y4b{bottom:147.348000px;}
.y4{bottom:153.330000px;}
.y79{bottom:153.720000px;}
.y50{bottom:155.805000px;}
.y7c{bottom:156.420000px;}
.y66{bottom:156.450000px;}
.y31{bottom:158.430000px;}
.y1f{bottom:160.305000px;}
.y22{bottom:161.250000px;}
.y13{bottom:165.705000px;}
.y6a{bottom:167.475000px;}
.y64{bottom:168.660000px;}
.y97{bottom:169.170000px;}
.y70{bottom:169.200000px;}
.y35{bottom:170.790000px;}
.y84{bottom:172.620000px;}
.y41{bottom:176.295000px;}
.y30{bottom:180.030000px;}
.y7a{bottom:181.620000px;}
.y65{bottom:181.650000px;}
.y7e{bottom:187.380000px;}
.y4f{bottom:188.205000px;}
.y69{bottom:195.660000px;}
.y8e{bottom:196.710000px;}
.y96{bottom:201.570000px;}
.y40{bottom:208.695000px;}
.y2f{bottom:213.735000px;}
.y82{bottom:220.425000px;}
.y8d{bottom:229.110000px;}
.y1e{bottom:232.350000px;}
.y95{bottom:234.000000px;}
.y3f{bottom:241.125000px;}
.y78{bottom:241.920000px;}
.y2e{bottom:247.650000px;}
.y47{bottom:248.730000px;}
.y7{bottom:248.835000px;}
.y67{bottom:256.860000px;}
.y94{bottom:267.120000px;}
.y7f{bottom:268.230000px;}
.y1d{bottom:268.350000px;}
.y3e{bottom:273.525000px;}
.y46{bottom:277.530000px;}
.y2d{bottom:281.520000px;}
.y8c{bottom:282.630000px;}
.y77{bottom:296.460000px;}
.y12{bottom:301.680000px;}
.y62{bottom:305.460000px;}
.y3d{bottom:305.925000px;}
.y93{bottom:306.180000px;}
.y45{bottom:306.330000px;}
.y7d{bottom:310.140000px;}
.y5c{bottom:312.120000px;}
.y2c{bottom:315.435000px;}
.y11{bottom:326.880000px;}
.y4a{bottom:333.000000px;}
.y44{bottom:335.160000px;}
.y7b{bottom:335.340000px;}
.y3c{bottom:338.325000px;}
.y76{bottom:338.400000px;}
.y1c{bottom:340.380000px;}
.y60{bottom:341.460000px;}
.y59{bottom:348.120000px;}
.y2b{bottom:349.305000px;}
.y8b{bottom:351.870000px;}
.y10{bottom:352.080000px;}
.y49{bottom:354.600000px;}
.y92{bottom:356.610000px;}
.y3b{bottom:370.770000px;}
.y48{bottom:376.230000px;}
.y1b{bottom:376.380000px;}
.yf{bottom:377.310000px;}
.y3{bottom:377.610000px;}
.y2a{bottom:383.220000px;}
.y56{bottom:384.120000px;}
.y5d{bottom:392.910000px;}
.ye{bottom:402.510000px;}
.y3a{bottom:403.170000px;}
.y8a{bottom:405.360000px;}
.y2{bottom:412.125000px;}
.y29{bottom:417.090000px;}
.yd{bottom:427.710000px;}
.y5b{bottom:428.910000px;}
.y1a{bottom:448.380000px;}
.y28{bottom:451.005000px;}
.yc{bottom:452.910000px;}
.y5f{bottom:458.355000px;}
.y58{bottom:464.940000px;}
.y75{bottom:469.365000px;}
.y1{bottom:469.770000px;}
.yb{bottom:478.110000px;}
.y91{bottom:479.445000px;}
.y19{bottom:484.410000px;}
.y89{bottom:490.470000px;}
.y27{bottom:491.370000px;}
.y39{bottom:494.640000px;}
.y43{bottom:501.555000px;}
.y6f{bottom:501.585000px;}
.ya{bottom:503.310000px;}
.y55{bottom:504.435000px;}
.y4e{bottom:506.370000px;}
.y5e{bottom:528.450000px;}
.y9{bottom:532.770000px;}
.y18{bottom:536.370000px;}
.hc{height:27.298828px;}
.h10{height:50.976914px;}
.hf{height:51.099750px;}
.h7{height:53.219119px;}
.h1d{height:57.846868px;}
.h11{height:61.417969px;}
.h12{height:61.540805px;}
.h9{height:64.208320px;}
.hb{height:64.318078px;}
.ha{height:67.680836px;}
.h1f{height:67.796529px;}
.h15{height:71.859023px;}
.h16{height:71.981859px;}
.h3{height:76.936334px;}
.h5{height:81.685898px;}
.h4{height:81.808734px;}
.h19{height:82.318359px;}
.h27{height:82.428117px;}
.he{height:91.647773px;}
.hd{height:91.757531px;}
.h18{height:92.126953px;}
.h6{height:102.568008px;}
.h1c{height:102.690844px;}
.h13{height:104.617969px;}
.h8{height:122.835938px;}
.h17{height:122.958773px;}
.h26{height:127.867852px;}
.h24{height:127.977609px;}
.h21{height:133.276992px;}
.h22{height:133.399828px;}
.h25{height:134.783202px;}
.h14{height:143.103867px;}
.h2{height:163.985977px;}
.h1{height:164.108812px;}
.h20{height:172.800000px;}
.h1e{height:176.400000px;}
.h1a{height:176.580000px;}
.h23{height:184.253906px;}
.h1b{height:352.980000px;}
.h0{height:607.500000px;}
.w4{width:112.860000px;}
.w3{width:197.820000px;}
.w2{width:225.360000px;}
.w5{width:873.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x15{left:10.980000px;}
.x3{left:27.071984px;}
.xa{left:32.111984px;}
.x4{left:34.415984px;}
.xb{left:37.835984px;}
.x9{left:43.199984px;}
.xe{left:48.131984px;}
.xd{left:53.135984px;}
.x1{left:54.323984px;}
.x8{left:64.799984px;}
.xf{left:70.631984px;}
.x12{left:76.031984px;}
.x13{left:98.531984px;}
.x28{left:111.275984px;}
.x25{left:116.855984px;}
.x2d{left:125.675984px;}
.x29{left:129.095984px;}
.x1b{left:139.607984px;}
.x2a{left:140.939984px;}
.xc{left:161.384984px;}
.x2b{left:167.939984px;}
.x22{left:177.300000px;}
.x14{left:202.140000px;}
.x24{left:233.384984px;}
.x1c{left:268.920000px;}
.x23{left:279.464984px;}
.x20{left:313.229984px;}
.x2c{left:356.834984px;}
.x16{left:427.320000px;}
.x26{left:429.989984px;}
.x1d{left:466.740000px;}
.x19{left:469.619984px;}
.x27{left:579.599984px;}
.x21{left:620.204984px;}
.x1f{left:626.504984px;}
.x5{left:642.419984px;}
.x7{left:649.904984px;}
.x17{left:652.500000px;}
.x2{left:664.769984px;}
.x1a{left:694.799984px;}
.x18{left:750.089984px;}
.x10{left:760.214984px;}
.x11{left:762.839984px;}
.x6{left:778.319984px;}
.x1e{left:862.380000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.400000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.314667pt;}
.ls9{letter-spacing:-0.241067pt;}
.ls14{letter-spacing:-0.236800pt;}
.ls3{letter-spacing:-0.224000pt;}
.ls17{letter-spacing:-0.190400pt;}
.lsc{letter-spacing:-0.147200pt;}
.ls16{letter-spacing:-0.106667pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.005109pt;}
.lsa{letter-spacing:0.033920pt;}
.ls7{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.110933pt;}
.ls10{letter-spacing:0.169067pt;}
.ls19{letter-spacing:0.257067pt;}
.ls0{letter-spacing:0.337067pt;}
.ls1d{letter-spacing:0.584664pt;}
.ls4{letter-spacing:8.625664pt;}
.ls6{letter-spacing:8.711040pt;}
.ls11{letter-spacing:15.968000pt;}
.ls15{letter-spacing:16.000000pt;}
.lsd{letter-spacing:16.160000pt;}
.lse{letter-spacing:23.310080pt;}
.lsf{letter-spacing:23.395200pt;}
.ls12{letter-spacing:24.000000pt;}
.ls1c{letter-spacing:24.924800pt;}
.ls8{letter-spacing:26.824960pt;}
.ls2{letter-spacing:30.055040pt;}
.ls1a{letter-spacing:42.997120pt;}
.ls1b{letter-spacing:51.719680pt;}
.ws0{word-spacing:-43.089067pt;}
.ws6{word-spacing:-42.720000pt;}
.ws18{word-spacing:-39.296177pt;}
.ws15{word-spacing:-34.752000pt;}
.wsd{word-spacing:-32.032000pt;}
.ws16{word-spacing:-26.752000pt;}
.ws8{word-spacing:-26.720000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws14{word-spacing:-19.766146pt;}
.ws4{word-spacing:-19.732415pt;}
.wse{word-spacing:-18.752000pt;}
.ws5{word-spacing:-18.720000pt;}
.wsf{word-spacing:-18.483200pt;}
.ws10{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-4.649173pt;}
.ws1{word-spacing:-1.589547pt;}
.wsa{word-spacing:-0.396800pt;}
.ws3{word-spacing:0.000000pt;}
.ws11{word-spacing:0.122027pt;}
.ws7{word-spacing:0.122923pt;}
.ws12{word-spacing:0.236800pt;}
.ws13{word-spacing:0.279680pt;}
.ws9{word-spacing:0.725120pt;}
.ws17{word-spacing:50.510261pt;}
.ws19{word-spacing:109.984000pt;}
.wsc{word-spacing:1095.616000pt;}
.wsb{word-spacing:1236.992000pt;}
._14{margin-left:-5.830187pt;}
._4{margin-left:-1.964800pt;}
._1{margin-left:-0.986958pt;}
._0{width:1.196160pt;}
._3{width:2.153363pt;}
._2{width:3.140321pt;}
._15{width:17.649920pt;}
._f{width:22.854850pt;}
._e{width:25.290667pt;}
._13{width:288.838187pt;}
._12{width:294.236160pt;}
._b{width:423.397248pt;}
._11{width:431.971627pt;}
._a{width:441.895680pt;}
._6{width:478.740480pt;}
._10{width:484.847573pt;}
._c{width:522.835840pt;}
._d{width:566.868480pt;}
._7{width:651.412480pt;}
._8{width:658.067840pt;}
._5{width:684.510507pt;}
._9{width:1194.816000pt;}
.fsb{font-size:32.000000pt;}
.fse{font-size:53.120000pt;}
.fsd{font-size:53.248000pt;}
.fs6{font-size:62.064349pt;}
.fsf{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fs14{font-size:67.461249pt;}
.fs8{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fs9{font-size:78.929661pt;}
.fs15{font-size:79.064584pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:85.248000pt;}
.fs2{font-size:89.723461pt;}
.fs13{font-size:96.000000pt;}
.fs1b{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs7{font-size:128.000000pt;}
.fs12{font-size:128.128000pt;}
.fs16{font-size:138.880000pt;}
.fs17{font-size:139.008000pt;}
.fs11{font-size:149.120000pt;}
.fs19{font-size:149.248000pt;}
.fs1a{font-size:157.184710pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fs18{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:19.776000pt;}
.y17{bottom:21.120000pt;}
.y54{bottom:23.264000pt;}
.y85{bottom:39.200000pt;}
.y21{bottom:46.464000pt;}
.y53{bottom:52.064000pt;}
.y74{bottom:58.688000pt;}
.y34{bottom:61.920000pt;}
.y16{bottom:65.184000pt;}
.y88{bottom:68.416000pt;}
.y6e{bottom:69.472000pt;}
.y86{bottom:71.744000pt;}
.y81{bottom:71.773333pt;}
.y5a{bottom:71.813333pt;}
.y57{bottom:71.840000pt;}
.y63{bottom:71.866667pt;}
.y61{bottom:71.906667pt;}
.y26{bottom:72.096000pt;}
.y90{bottom:76.160000pt;}
.y73{bottom:78.528000pt;}
.y6{bottom:79.776000pt;}
.y38{bottom:79.936000pt;}
.y52{bottom:80.896000pt;}
.y83{bottom:81.600000pt;}
.y25{bottom:88.096000pt;}
.y6d{bottom:88.672000pt;}
.y15{bottom:90.816000pt;}
.y33{bottom:91.872000pt;}
.y4d{bottom:92.544000pt;}
.y68{bottom:95.520000pt;}
.y72{bottom:100.928000pt;}
.y37{bottom:102.368000pt;}
.y24{bottom:104.096000pt;}
.y5{bottom:105.408000pt;}
.y6c{bottom:107.872000pt;}
.y51{bottom:109.696000pt;}
.y20{bottom:110.496000pt;}
.y87{bottom:110.944000pt;}
.y32{bottom:111.072000pt;}
.y4c{bottom:111.744000pt;}
.y14{bottom:116.416000pt;}
.y23{bottom:120.128000pt;}
.y98{bottom:121.568000pt;}
.y71{bottom:123.360000pt;}
.y8f{bottom:123.744000pt;}
.y80{bottom:124.160000pt;}
.y36{bottom:124.768000pt;}
.y6b{bottom:126.912000pt;}
.y42{bottom:127.904000pt;}
.y4b{bottom:130.976000pt;}
.y4{bottom:136.293333pt;}
.y79{bottom:136.640000pt;}
.y50{bottom:138.493333pt;}
.y7c{bottom:139.040000pt;}
.y66{bottom:139.066667pt;}
.y31{bottom:140.826667pt;}
.y1f{bottom:142.493333pt;}
.y22{bottom:143.333333pt;}
.y13{bottom:147.293333pt;}
.y6a{bottom:148.866667pt;}
.y64{bottom:149.920000pt;}
.y97{bottom:150.373333pt;}
.y70{bottom:150.400000pt;}
.y35{bottom:151.813333pt;}
.y84{bottom:153.440000pt;}
.y41{bottom:156.706667pt;}
.y30{bottom:160.026667pt;}
.y7a{bottom:161.440000pt;}
.y65{bottom:161.466667pt;}
.y7e{bottom:166.560000pt;}
.y4f{bottom:167.293333pt;}
.y69{bottom:173.920000pt;}
.y8e{bottom:174.853333pt;}
.y96{bottom:179.173333pt;}
.y40{bottom:185.506667pt;}
.y2f{bottom:189.986667pt;}
.y82{bottom:195.933333pt;}
.y8d{bottom:203.653333pt;}
.y1e{bottom:206.533333pt;}
.y95{bottom:208.000000pt;}
.y3f{bottom:214.333333pt;}
.y78{bottom:215.040000pt;}
.y2e{bottom:220.133333pt;}
.y47{bottom:221.093333pt;}
.y7{bottom:221.186667pt;}
.y67{bottom:228.320000pt;}
.y94{bottom:237.440000pt;}
.y7f{bottom:238.426667pt;}
.y1d{bottom:238.533333pt;}
.y3e{bottom:243.133333pt;}
.y46{bottom:246.693333pt;}
.y2d{bottom:250.240000pt;}
.y8c{bottom:251.226667pt;}
.y77{bottom:263.520000pt;}
.y12{bottom:268.160000pt;}
.y62{bottom:271.520000pt;}
.y3d{bottom:271.933333pt;}
.y93{bottom:272.160000pt;}
.y45{bottom:272.293333pt;}
.y7d{bottom:275.680000pt;}
.y5c{bottom:277.440000pt;}
.y2c{bottom:280.386667pt;}
.y11{bottom:290.560000pt;}
.y4a{bottom:296.000000pt;}
.y44{bottom:297.920000pt;}
.y7b{bottom:298.080000pt;}
.y3c{bottom:300.733333pt;}
.y76{bottom:300.800000pt;}
.y1c{bottom:302.560000pt;}
.y60{bottom:303.520000pt;}
.y59{bottom:309.440000pt;}
.y2b{bottom:310.493333pt;}
.y8b{bottom:312.773333pt;}
.y10{bottom:312.960000pt;}
.y49{bottom:315.200000pt;}
.y92{bottom:316.986667pt;}
.y3b{bottom:329.573333pt;}
.y48{bottom:334.426667pt;}
.y1b{bottom:334.560000pt;}
.yf{bottom:335.386667pt;}
.y3{bottom:335.653333pt;}
.y2a{bottom:340.640000pt;}
.y56{bottom:341.440000pt;}
.y5d{bottom:349.253333pt;}
.ye{bottom:357.786667pt;}
.y3a{bottom:358.373333pt;}
.y8a{bottom:360.320000pt;}
.y2{bottom:366.333333pt;}
.y29{bottom:370.746667pt;}
.yd{bottom:380.186667pt;}
.y5b{bottom:381.253333pt;}
.y1a{bottom:398.560000pt;}
.y28{bottom:400.893333pt;}
.yc{bottom:402.586667pt;}
.y5f{bottom:407.426667pt;}
.y58{bottom:413.280000pt;}
.y75{bottom:417.213333pt;}
.y1{bottom:417.573333pt;}
.yb{bottom:424.986667pt;}
.y91{bottom:426.173333pt;}
.y19{bottom:430.586667pt;}
.y89{bottom:435.973333pt;}
.y27{bottom:436.773333pt;}
.y39{bottom:439.680000pt;}
.y43{bottom:445.826667pt;}
.y6f{bottom:445.853333pt;}
.ya{bottom:447.386667pt;}
.y55{bottom:448.386667pt;}
.y4e{bottom:450.106667pt;}
.y5e{bottom:469.733333pt;}
.y9{bottom:473.573333pt;}
.y18{bottom:476.773333pt;}
.hc{height:24.265625pt;}
.h10{height:45.312813pt;}
.hf{height:45.422000pt;}
.h7{height:47.305883pt;}
.h1d{height:51.419438pt;}
.h11{height:54.593750pt;}
.h12{height:54.702937pt;}
.h9{height:57.074062pt;}
.hb{height:57.171625pt;}
.ha{height:60.160743pt;}
.h1f{height:60.263582pt;}
.h15{height:63.874687pt;}
.h16{height:63.983875pt;}
.h3{height:68.387853pt;}
.h5{height:72.609687pt;}
.h4{height:72.718875pt;}
.h19{height:73.171875pt;}
.h27{height:73.269437pt;}
.he{height:81.464687pt;}
.hd{height:81.562250pt;}
.h18{height:81.890625pt;}
.h6{height:91.171562pt;}
.h1c{height:91.280750pt;}
.h13{height:92.993750pt;}
.h8{height:109.187500pt;}
.h17{height:109.296687pt;}
.h26{height:113.660312pt;}
.h24{height:113.757875pt;}
.h21{height:118.468438pt;}
.h22{height:118.577625pt;}
.h25{height:119.807291pt;}
.h14{height:127.203437pt;}
.h2{height:145.765312pt;}
.h1{height:145.874500pt;}
.h20{height:153.600000pt;}
.h1e{height:156.800000pt;}
.h1a{height:156.960000pt;}
.h23{height:163.781250pt;}
.h1b{height:313.760000pt;}
.h0{height:540.000000pt;}
.w4{width:100.320000pt;}
.w3{width:175.840000pt;}
.w2{width:200.320000pt;}
.w5{width:776.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.760000pt;}
.x3{left:24.063986pt;}
.xa{left:28.543986pt;}
.x4{left:30.591986pt;}
.xb{left:33.631986pt;}
.x9{left:38.399986pt;}
.xe{left:42.783986pt;}
.xd{left:47.231986pt;}
.x1{left:48.287986pt;}
.x8{left:57.599986pt;}
.xf{left:62.783986pt;}
.x12{left:67.583986pt;}
.x13{left:87.583986pt;}
.x28{left:98.911986pt;}
.x25{left:103.871986pt;}
.x2d{left:111.711986pt;}
.x29{left:114.751986pt;}
.x1b{left:124.095986pt;}
.x2a{left:125.279986pt;}
.xc{left:143.453319pt;}
.x2b{left:149.279986pt;}
.x22{left:157.600000pt;}
.x14{left:179.680000pt;}
.x24{left:207.453319pt;}
.x1c{left:239.040000pt;}
.x23{left:248.413319pt;}
.x20{left:278.426652pt;}
.x2c{left:317.186652pt;}
.x16{left:379.840000pt;}
.x26{left:382.213319pt;}
.x1d{left:414.880000pt;}
.x19{left:417.439986pt;}
.x27{left:515.199986pt;}
.x21{left:551.293319pt;}
.x1f{left:556.893319pt;}
.x5{left:571.039986pt;}
.x7{left:577.693319pt;}
.x17{left:580.000000pt;}
.x2{left:590.906652pt;}
.x1a{left:617.599986pt;}
.x18{left:666.746652pt;}
.x10{left:675.746652pt;}
.x11{left:678.079986pt;}
.x6{left:691.839986pt;}
.x1e{left:766.560000pt;}
}




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