
    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_82358e71f01cb77fb4937548.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_31a49054ee5448836f38144f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_07892cc192e830fcc3adaa0b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0da2942a075c1b4777b99e43.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-1.656000px;}
.ls15{letter-spacing:-1.500000px;}
.ls1c{letter-spacing:-1.482000px;}
.ls1f{letter-spacing:-1.254000px;}
.ls1b{letter-spacing:-1.164000px;}
.ls8{letter-spacing:-0.954000px;}
.ls21{letter-spacing:-0.786000px;}
.lsc{letter-spacing:-0.654000px;}
.ls22{letter-spacing:-0.544800px;}
.ls4{letter-spacing:-0.463800px;}
.ls10{letter-spacing:-0.303000px;}
.ls18{letter-spacing:-0.240600px;}
.ls1a{letter-spacing:-0.228000px;}
.ls2b{letter-spacing:-0.115200px;}
.ls13{letter-spacing:-0.109200px;}
.ls2c{letter-spacing:-0.107400px;}
.ls29{letter-spacing:-0.069600px;}
.lse{letter-spacing:-0.064800px;}
.lsa{letter-spacing:-0.058320px;}
.ls2e{letter-spacing:-0.049680px;}
.ls24{letter-spacing:-0.043920px;}
.ls19{letter-spacing:-0.041040px;}
.ls2f{letter-spacing:-0.032400px;}
.ls3{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.025200px;}
.ls1d{letter-spacing:0.037200px;}
.ls28{letter-spacing:0.038880px;}
.ls20{letter-spacing:0.060600px;}
.ls25{letter-spacing:0.100800px;}
.lsf{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.175200px;}
.ls9{letter-spacing:0.186600px;}
.ls30{letter-spacing:0.209400px;}
.ls12{letter-spacing:0.218400px;}
.ls14{letter-spacing:0.249000px;}
.ls1{letter-spacing:0.269760px;}
.ls2{letter-spacing:0.306000px;}
.ls6{letter-spacing:0.321000px;}
.ls2d{letter-spacing:0.376800px;}
.ls7{letter-spacing:0.417000px;}
.ls27{letter-spacing:0.479520px;}
.lsb{letter-spacing:0.906000px;}
.ls23{letter-spacing:1.026000px;}
.ls26{letter-spacing:6.654240px;}
.ls1e{letter-spacing:42.570720px;}
.ls11{letter-spacing:55.386720px;}
.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;}
}
.ws3{word-spacing:-22.058760px;}
.ws2{word-spacing:-21.962760px;}
.ws1{word-spacing:-14.970240px;}
.ws1e{word-spacing:-14.531760px;}
.ws0{word-spacing:-14.506440px;}
.ws9{word-spacing:-14.411760px;}
.ws5{word-spacing:-14.016240px;}
.ws26{word-spacing:-13.882560px;}
.wse{word-spacing:-13.811760px;}
.ws12{word-spacing:-13.754760px;}
.ws13{word-spacing:-13.724160px;}
.ws29{word-spacing:-13.715160px;}
.ws7{word-spacing:-13.692360px;}
.wsb{word-spacing:-13.680960px;}
.wsd{word-spacing:-13.646160px;}
.ws20{word-spacing:-13.606560px;}
.ws1b{word-spacing:-13.566360px;}
.ws21{word-spacing:-13.544640px;}
.ws23{word-spacing:-13.530960px;}
.wsa{word-spacing:-13.505760px;}
.ws28{word-spacing:-13.473360px;}
.ws16{word-spacing:-13.464720px;}
.ws1f{word-spacing:-13.461840px;}
.ws27{word-spacing:-13.456080px;}
.ws8{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.440960px;}
.ws22{word-spacing:-13.436160px;}
.ws25{word-spacing:-13.398360px;}
.ws11{word-spacing:-13.396560px;}
.ws24{word-spacing:-13.390560px;}
.ws17{word-spacing:-13.277760px;}
.wsf{word-spacing:-13.202760px;}
.ws1d{word-spacing:-12.960960px;}
.ws1c{word-spacing:-12.719760px;}
.ws18{word-spacing:-12.341760px;}
.ws1a{word-spacing:-12.251760px;}
.ws19{word-spacing:-12.023760px;}
.ws14{word-spacing:-12.005760px;}
.ws15{word-spacing:-11.849760px;}
.ws4{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws10{word-spacing:0.000000px;}
._15{margin-left:-4.304160px;}
._2{margin-left:-2.980800px;}
._0{margin-left:-1.684800px;}
._1{width:1.244640px;}
._7{width:2.938080px;}
._f{width:4.389120px;}
._5{width:5.720640px;}
._10{width:6.781440px;}
._3{width:7.855200px;}
._4{width:8.954160px;}
._9{width:10.026240px;}
._13{width:11.141040px;}
._6{width:12.157920px;}
._12{width:15.004800px;}
._b{width:16.351920px;}
._a{width:17.497920px;}
._11{width:18.902400px;}
._14{width:20.110080px;}
._c{width:21.180480px;}
._e{width:24.631200px;}
._d{width:26.140800px;}
._8{width:30.414240px;}
._16{width:45.035280px;}
._17{width:48.497040px;}
.fc1{color:rgb(70,70,70);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:3.960000px;}
.y66{bottom:4.134000px;}
.y69{bottom:4.140000px;}
.y64{bottom:4.320000px;}
.y88{bottom:4.680000px;}
.y84{bottom:4.860000px;}
.y82{bottom:5.580000px;}
.y9f{bottom:12.240000px;}
.y9c{bottom:12.420000px;}
.yb1{bottom:12.780000px;}
.ybf{bottom:14.214000px;}
.yb3{bottom:14.220000px;}
.ybd{bottom:14.400000px;}
.yb6{bottom:14.445000px;}
.y9a{bottom:15.300000px;}
.yba{bottom:15.480000px;}
.yb0{bottom:30.960000px;}
.y6{bottom:61.596000px;}
.yc7{bottom:87.876000px;}
.yc6{bottom:91.296000px;}
.y6a{bottom:93.636000px;}
.ya1{bottom:96.516000px;}
.yc1{bottom:97.596000px;}
.y32{bottom:107.136000px;}
.y68{bottom:109.656000px;}
.yc5{bottom:112.356000px;}
.yc0{bottom:113.616000px;}
.ya0{bottom:124.776000px;}
.y31{bottom:128.196000px;}
.y67{bottom:129.636000px;}
.yc4{bottom:133.416000px;}
.ybe{bottom:143.676000px;}
.y30{bottom:149.256000px;}
.y65{bottom:149.796000px;}
.y9e{bottom:153.030000px;}
.yc3{bottom:154.470000px;}
.y63{bottom:169.770000px;}
.y2f{bottom:170.310000px;}
.ybc{bottom:173.730000px;}
.yc2{bottom:175.530000px;}
.y9d{bottom:181.110000px;}
.y2e{bottom:191.370000px;}
.y62{bottom:196.590000px;}
.ybb{bottom:203.970000px;}
.y9b{bottom:209.370000px;}
.y2d{bottom:212.430000px;}
.y61{bottom:217.650000px;}
.y2c{bottom:233.490000px;}
.yb9{bottom:234.030000px;}
.y99{bottom:237.630000px;}
.y60{bottom:238.710000px;}
.y2b{bottom:254.550000px;}
.y5f{bottom:259.770000px;}
.yb8{bottom:265.350000px;}
.y98{bottom:275.430000px;}
.y2a{bottom:275.610000px;}
.y5e{bottom:280.830000px;}
.yb7{bottom:295.410000px;}
.y97{bottom:296.490000px;}
.y29{bottom:296.670000px;}
.y5d{bottom:301.890000px;}
.y96{bottom:317.550000px;}
.y28{bottom:317.730000px;}
.y5c{bottom:322.950000px;}
.yb5{bottom:325.470000px;}
.y95{bottom:338.655000px;}
.y27{bottom:338.835000px;}
.y5b{bottom:344.055000px;}
.yb4{bottom:355.755000px;}
.y94{bottom:359.715000px;}
.y26{bottom:359.895000px;}
.y5a{bottom:365.115000px;}
.y93{bottom:375.735000px;}
.y25{bottom:380.955000px;}
.yb2{bottom:385.815000px;}
.y59{bottom:386.175000px;}
.y92{bottom:395.535000px;}
.y24{bottom:402.015000px;}
.y58{bottom:407.235000px;}
.y91{bottom:415.695000px;}
.yaf{bottom:415.875000px;}
.y23{bottom:423.075000px;}
.y57{bottom:428.295000px;}
.y90{bottom:435.675000px;}
.y22{bottom:444.135000px;}
.y56{bottom:449.355000px;}
.y8f{bottom:456.375000px;}
.y21{bottom:465.195000px;}
.yae{bottom:469.335000px;}
.y55{bottom:470.415000px;}
.y8e{bottom:476.355000px;}
.y20{bottom:486.255000px;}
.yad{bottom:490.395000px;}
.y54{bottom:491.475000px;}
.y8d{bottom:502.995000px;}
.y1f{bottom:507.315000px;}
.yac{bottom:511.455000px;}
.y53{bottom:512.535000px;}
.y8c{bottom:524.055000px;}
.y1e{bottom:528.375000px;}
.yab{bottom:532.515000px;}
.y52{bottom:533.595000px;}
.y8b{bottom:545.115000px;}
.y1d{bottom:549.435000px;}
.yaa{bottom:553.575000px;}
.y51{bottom:554.655000px;}
.y8a{bottom:566.175000px;}
.y1c{bottom:570.495000px;}
.ya9{bottom:574.635000px;}
.y50{bottom:575.715000px;}
.y89{bottom:582.015000px;}
.y1b{bottom:591.555000px;}
.y4f{bottom:596.805000px;}
.y87{bottom:602.745000px;}
.y1a{bottom:612.645000px;}
.y4e{bottom:617.865000px;}
.y86{bottom:623.265000px;}
.y19{bottom:633.705000px;}
.y4d{bottom:638.925000px;}
.y85{bottom:643.965000px;}
.y18{bottom:657.105000px;}
.y4c{bottom:659.805000px;}
.y83{bottom:664.665000px;}
.y4b{bottom:680.865000px;}
.y81{bottom:685.365000px;}
.y17{bottom:686.985000px;}
.y4a{bottom:701.925000px;}
.y16{bottom:708.045000px;}
.y80{bottom:713.445000px;}
.y49{bottom:722.985000px;}
.y15{bottom:729.105000px;}
.y7f{bottom:734.505000px;}
.y48{bottom:744.045000px;}
.y14{bottom:750.165000px;}
.y7e{bottom:755.565000px;}
.y47{bottom:765.105000px;}
.y13{bottom:771.225000px;}
.y7d{bottom:776.625000px;}
.y46{bottom:786.165000px;}
.y12{bottom:792.285000px;}
.y7c{bottom:792.465000px;}
.y45{bottom:807.225000px;}
.y7b{bottom:812.625000px;}
.y11{bottom:813.345000px;}
.y44{bottom:828.285000px;}
.y7a{bottom:832.785000px;}
.y10{bottom:834.405000px;}
.y43{bottom:849.345000px;}
.y79{bottom:852.765000px;}
.yf{bottom:855.645000px;}
.y42{bottom:870.450000px;}
.y78{bottom:872.970000px;}
.ye{bottom:878.910000px;}
.y41{bottom:891.510000px;}
.y77{bottom:893.130000px;}
.yd{bottom:899.970000px;}
.y40{bottom:912.570000px;}
.y76{bottom:919.770000px;}
.yc{bottom:926.250000px;}
.y3f{bottom:933.630000px;}
.y75{bottom:940.830000px;}
.yb{bottom:942.090000px;}
.y3e{bottom:954.690000px;}
.ya8{bottom:956.130000px;}
.y74{bottom:961.890000px;}
.ya{bottom:968.370000px;}
.y3d{bottom:975.750000px;}
.ya7{bottom:976.110000px;}
.y73{bottom:982.950000px;}
.y9{bottom:984.930000px;}
.ya6{bottom:995.910000px;}
.y3c{bottom:996.810000px;}
.y72{bottom:998.970000px;}
.y8{bottom:1007.250000px;}
.ya5{bottom:1015.890000px;}
.y3b{bottom:1017.870000px;}
.y71{bottom:1018.770000px;}
.y7{bottom:1032.450000px;}
.ya4{bottom:1035.690000px;}
.y70{bottom:1038.570000px;}
.y3a{bottom:1038.930000px;}
.ya3{bottom:1055.670000px;}
.y6f{bottom:1058.370000px;}
.y39{bottom:1059.990000px;}
.y5{bottom:1071.150000px;}
.ya2{bottom:1075.650000px;}
.y6e{bottom:1078.170000px;}
.y38{bottom:1081.050000px;}
.y6d{bottom:1097.970000px;}
.y4{bottom:1100.310000px;}
.y37{bottom:1102.110000px;}
.y6b{bottom:1117.770000px;}
.y36{bottom:1123.170000px;}
.y3{bottom:1129.500000px;}
.y35{bottom:1144.260000px;}
.y2{bottom:1158.660000px;}
.y34{bottom:1165.320000px;}
.y1{bottom:1188.900000px;}
.y33{bottom:1193.220000px;}
.hd{height:18.180000px;}
.hc{height:18.360000px;}
.hb{height:18.396000px;}
.ha{height:18.540000px;}
.h9{height:18.720000px;}
.he{height:18.756000px;}
.h11{height:19.080000px;}
.h10{height:19.260000px;}
.h12{height:19.296000px;}
.hf{height:19.980000px;}
.h14{height:26.640000px;}
.h15{height:26.820000px;}
.h17{height:28.620000px;}
.h18{height:28.656000px;}
.h19{height:28.800000px;}
.h13{height:29.700000px;}
.h7{height:38.671172px;}
.h16{height:45.360000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:100.440000px;}
.w14{width:102.060000px;}
.w13{width:102.096000px;}
.w15{width:114.156000px;}
.wf{width:139.716000px;}
.w12{width:144.036000px;}
.we{width:147.960000px;}
.wd{width:172.470000px;}
.wc{width:211.350000px;}
.wa{width:222.690000px;}
.wb{width:222.870000px;}
.w7{width:227.190000px;}
.w10{width:231.150000px;}
.w11{width:231.330000px;}
.w8{width:232.410000px;}
.w9{width:232.590000px;}
.w4{width:243.930000px;}
.w3{width:243.975000px;}
.w6{width:251.850000px;}
.w5{width:251.895000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:10.440000px;}
.x1{left:53.999987px;}
.x2{left:59.399987px;}
.x6{left:67.140000px;}
.x3{left:79.200000px;}
.x1e{left:80.999987px;}
.xc{left:96.336000px;}
.x15{left:98.316000px;}
.x9{left:104.256000px;}
.x12{left:108.576000px;}
.xf{left:110.916000px;}
.x16{left:162.389987px;}
.x17{left:204.150000px;}
.x18{left:307.695000px;}
.x7{left:320.655000px;}
.x4{left:324.615000px;}
.xd{left:330.375000px;}
.xa{left:332.895000px;}
.x10{left:335.235000px;}
.x1a{left:411.375000px;}
.x13{left:495.285000px;}
.x1b{left:514.905000px;}
.x11{left:559.365000px;}
.xb{left:561.705000px;}
.xe{left:564.225000px;}
.x5{left:569.985000px;}
.x8{left:574.125000px;}
.x1c{left:618.405000px;}
.x14{left:644.865000px;}
.x1d{left:734.190000px;}
.x1f{left:839.309987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-1.472000pt;}
.ls15{letter-spacing:-1.333333pt;}
.ls1c{letter-spacing:-1.317333pt;}
.ls1f{letter-spacing:-1.114667pt;}
.ls1b{letter-spacing:-1.034667pt;}
.ls8{letter-spacing:-0.848000pt;}
.ls21{letter-spacing:-0.698667pt;}
.lsc{letter-spacing:-0.581333pt;}
.ls22{letter-spacing:-0.484267pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls10{letter-spacing:-0.269333pt;}
.ls18{letter-spacing:-0.213867pt;}
.ls1a{letter-spacing:-0.202667pt;}
.ls2b{letter-spacing:-0.102400pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls2c{letter-spacing:-0.095467pt;}
.ls29{letter-spacing:-0.061867pt;}
.lse{letter-spacing:-0.057600pt;}
.lsa{letter-spacing:-0.051840pt;}
.ls2e{letter-spacing:-0.044160pt;}
.ls24{letter-spacing:-0.039040pt;}
.ls19{letter-spacing:-0.036480pt;}
.ls2f{letter-spacing:-0.028800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.022400pt;}
.ls1d{letter-spacing:0.033067pt;}
.ls28{letter-spacing:0.034560pt;}
.ls20{letter-spacing:0.053867pt;}
.ls25{letter-spacing:0.089600pt;}
.lsf{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.155733pt;}
.ls9{letter-spacing:0.165867pt;}
.ls30{letter-spacing:0.186133pt;}
.ls12{letter-spacing:0.194133pt;}
.ls14{letter-spacing:0.221333pt;}
.ls1{letter-spacing:0.239787pt;}
.ls2{letter-spacing:0.272000pt;}
.ls6{letter-spacing:0.285333pt;}
.ls2d{letter-spacing:0.334933pt;}
.ls7{letter-spacing:0.370667pt;}
.ls27{letter-spacing:0.426240pt;}
.lsb{letter-spacing:0.805333pt;}
.ls23{letter-spacing:0.912000pt;}
.ls26{letter-spacing:5.914880pt;}
.ls1e{letter-spacing:37.840640pt;}
.ls11{letter-spacing:49.232640pt;}
.ws3{word-spacing:-19.607787pt;}
.ws2{word-spacing:-19.522453pt;}
.ws1{word-spacing:-13.306880pt;}
.ws1e{word-spacing:-12.917120pt;}
.ws0{word-spacing:-12.894613pt;}
.ws9{word-spacing:-12.810453pt;}
.ws5{word-spacing:-12.458880pt;}
.ws26{word-spacing:-12.340053pt;}
.wse{word-spacing:-12.277120pt;}
.ws12{word-spacing:-12.226453pt;}
.ws13{word-spacing:-12.199253pt;}
.ws29{word-spacing:-12.191253pt;}
.ws7{word-spacing:-12.170987pt;}
.wsb{word-spacing:-12.160853pt;}
.wsd{word-spacing:-12.129920pt;}
.ws20{word-spacing:-12.094720pt;}
.ws1b{word-spacing:-12.058987pt;}
.ws21{word-spacing:-12.039680pt;}
.ws23{word-spacing:-12.027520pt;}
.wsa{word-spacing:-12.005120pt;}
.ws28{word-spacing:-11.976320pt;}
.ws16{word-spacing:-11.968640pt;}
.ws1f{word-spacing:-11.966080pt;}
.ws27{word-spacing:-11.960960pt;}
.ws8{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.947520pt;}
.ws22{word-spacing:-11.943253pt;}
.ws25{word-spacing:-11.909653pt;}
.ws11{word-spacing:-11.908053pt;}
.ws24{word-spacing:-11.902720pt;}
.ws17{word-spacing:-11.802453pt;}
.wsf{word-spacing:-11.735787pt;}
.ws1d{word-spacing:-11.520853pt;}
.ws1c{word-spacing:-11.306453pt;}
.ws18{word-spacing:-10.970453pt;}
.ws1a{word-spacing:-10.890453pt;}
.ws19{word-spacing:-10.687787pt;}
.ws14{word-spacing:-10.671787pt;}
.ws15{word-spacing:-10.533120pt;}
.ws4{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws10{word-spacing:0.000000pt;}
._15{margin-left:-3.825920pt;}
._2{margin-left:-2.649600pt;}
._0{margin-left:-1.497600pt;}
._1{width:1.106347pt;}
._7{width:2.611627pt;}
._f{width:3.901440pt;}
._5{width:5.085013pt;}
._10{width:6.027947pt;}
._3{width:6.982400pt;}
._4{width:7.959253pt;}
._9{width:8.912213pt;}
._13{width:9.903147pt;}
._6{width:10.807040pt;}
._12{width:13.337600pt;}
._b{width:14.535040pt;}
._a{width:15.553707pt;}
._11{width:16.802133pt;}
._14{width:17.875627pt;}
._c{width:18.827093pt;}
._e{width:21.894400pt;}
._d{width:23.236267pt;}
._8{width:27.034880pt;}
._16{width:40.031360pt;}
._17{width:43.108480pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:3.520000pt;}
.y66{bottom:3.674667pt;}
.y69{bottom:3.680000pt;}
.y64{bottom:3.840000pt;}
.y88{bottom:4.160000pt;}
.y84{bottom:4.320000pt;}
.y82{bottom:4.960000pt;}
.y9f{bottom:10.880000pt;}
.y9c{bottom:11.040000pt;}
.yb1{bottom:11.360000pt;}
.ybf{bottom:12.634667pt;}
.yb3{bottom:12.640000pt;}
.ybd{bottom:12.800000pt;}
.yb6{bottom:12.840000pt;}
.y9a{bottom:13.600000pt;}
.yba{bottom:13.760000pt;}
.yb0{bottom:27.520000pt;}
.y6{bottom:54.752000pt;}
.yc7{bottom:78.112000pt;}
.yc6{bottom:81.152000pt;}
.y6a{bottom:83.232000pt;}
.ya1{bottom:85.792000pt;}
.yc1{bottom:86.752000pt;}
.y32{bottom:95.232000pt;}
.y68{bottom:97.472000pt;}
.yc5{bottom:99.872000pt;}
.yc0{bottom:100.992000pt;}
.ya0{bottom:110.912000pt;}
.y31{bottom:113.952000pt;}
.y67{bottom:115.232000pt;}
.yc4{bottom:118.592000pt;}
.ybe{bottom:127.712000pt;}
.y30{bottom:132.672000pt;}
.y65{bottom:133.152000pt;}
.y9e{bottom:136.026667pt;}
.yc3{bottom:137.306667pt;}
.y63{bottom:150.906667pt;}
.y2f{bottom:151.386667pt;}
.ybc{bottom:154.426667pt;}
.yc2{bottom:156.026667pt;}
.y9d{bottom:160.986667pt;}
.y2e{bottom:170.106667pt;}
.y62{bottom:174.746667pt;}
.ybb{bottom:181.306667pt;}
.y9b{bottom:186.106667pt;}
.y2d{bottom:188.826667pt;}
.y61{bottom:193.466667pt;}
.y2c{bottom:207.546667pt;}
.yb9{bottom:208.026667pt;}
.y99{bottom:211.226667pt;}
.y60{bottom:212.186667pt;}
.y2b{bottom:226.266667pt;}
.y5f{bottom:230.906667pt;}
.yb8{bottom:235.866667pt;}
.y98{bottom:244.826667pt;}
.y2a{bottom:244.986667pt;}
.y5e{bottom:249.626667pt;}
.yb7{bottom:262.586667pt;}
.y97{bottom:263.546667pt;}
.y29{bottom:263.706667pt;}
.y5d{bottom:268.346667pt;}
.y96{bottom:282.266667pt;}
.y28{bottom:282.426667pt;}
.y5c{bottom:287.066667pt;}
.yb5{bottom:289.306667pt;}
.y95{bottom:301.026667pt;}
.y27{bottom:301.186667pt;}
.y5b{bottom:305.826667pt;}
.yb4{bottom:316.226667pt;}
.y94{bottom:319.746667pt;}
.y26{bottom:319.906667pt;}
.y5a{bottom:324.546667pt;}
.y93{bottom:333.986667pt;}
.y25{bottom:338.626667pt;}
.yb2{bottom:342.946667pt;}
.y59{bottom:343.266667pt;}
.y92{bottom:351.586667pt;}
.y24{bottom:357.346667pt;}
.y58{bottom:361.986667pt;}
.y91{bottom:369.506667pt;}
.yaf{bottom:369.666667pt;}
.y23{bottom:376.066667pt;}
.y57{bottom:380.706667pt;}
.y90{bottom:387.266667pt;}
.y22{bottom:394.786667pt;}
.y56{bottom:399.426667pt;}
.y8f{bottom:405.666667pt;}
.y21{bottom:413.506667pt;}
.yae{bottom:417.186667pt;}
.y55{bottom:418.146667pt;}
.y8e{bottom:423.426667pt;}
.y20{bottom:432.226667pt;}
.yad{bottom:435.906667pt;}
.y54{bottom:436.866667pt;}
.y8d{bottom:447.106667pt;}
.y1f{bottom:450.946667pt;}
.yac{bottom:454.626667pt;}
.y53{bottom:455.586667pt;}
.y8c{bottom:465.826667pt;}
.y1e{bottom:469.666667pt;}
.yab{bottom:473.346667pt;}
.y52{bottom:474.306667pt;}
.y8b{bottom:484.546667pt;}
.y1d{bottom:488.386667pt;}
.yaa{bottom:492.066667pt;}
.y51{bottom:493.026667pt;}
.y8a{bottom:503.266667pt;}
.y1c{bottom:507.106667pt;}
.ya9{bottom:510.786667pt;}
.y50{bottom:511.746667pt;}
.y89{bottom:517.346667pt;}
.y1b{bottom:525.826667pt;}
.y4f{bottom:530.493333pt;}
.y87{bottom:535.773333pt;}
.y1a{bottom:544.573333pt;}
.y4e{bottom:549.213333pt;}
.y86{bottom:554.013333pt;}
.y19{bottom:563.293333pt;}
.y4d{bottom:567.933333pt;}
.y85{bottom:572.413333pt;}
.y18{bottom:584.093333pt;}
.y4c{bottom:586.493333pt;}
.y83{bottom:590.813333pt;}
.y4b{bottom:605.213333pt;}
.y81{bottom:609.213333pt;}
.y17{bottom:610.653333pt;}
.y4a{bottom:623.933333pt;}
.y16{bottom:629.373333pt;}
.y80{bottom:634.173333pt;}
.y49{bottom:642.653333pt;}
.y15{bottom:648.093333pt;}
.y7f{bottom:652.893333pt;}
.y48{bottom:661.373333pt;}
.y14{bottom:666.813333pt;}
.y7e{bottom:671.613333pt;}
.y47{bottom:680.093333pt;}
.y13{bottom:685.533333pt;}
.y7d{bottom:690.333333pt;}
.y46{bottom:698.813333pt;}
.y12{bottom:704.253333pt;}
.y7c{bottom:704.413333pt;}
.y45{bottom:717.533333pt;}
.y7b{bottom:722.333333pt;}
.y11{bottom:722.973333pt;}
.y44{bottom:736.253333pt;}
.y7a{bottom:740.253333pt;}
.y10{bottom:741.693333pt;}
.y43{bottom:754.973333pt;}
.y79{bottom:758.013333pt;}
.yf{bottom:760.573333pt;}
.y42{bottom:773.733333pt;}
.y78{bottom:775.973333pt;}
.ye{bottom:781.253333pt;}
.y41{bottom:792.453333pt;}
.y77{bottom:793.893333pt;}
.yd{bottom:799.973333pt;}
.y40{bottom:811.173333pt;}
.y76{bottom:817.573333pt;}
.yc{bottom:823.333333pt;}
.y3f{bottom:829.893333pt;}
.y75{bottom:836.293333pt;}
.yb{bottom:837.413333pt;}
.y3e{bottom:848.613333pt;}
.ya8{bottom:849.893333pt;}
.y74{bottom:855.013333pt;}
.ya{bottom:860.773333pt;}
.y3d{bottom:867.333333pt;}
.ya7{bottom:867.653333pt;}
.y73{bottom:873.733333pt;}
.y9{bottom:875.493333pt;}
.ya6{bottom:885.253333pt;}
.y3c{bottom:886.053333pt;}
.y72{bottom:887.973333pt;}
.y8{bottom:895.333333pt;}
.ya5{bottom:903.013333pt;}
.y3b{bottom:904.773333pt;}
.y71{bottom:905.573333pt;}
.y7{bottom:917.733333pt;}
.ya4{bottom:920.613333pt;}
.y70{bottom:923.173333pt;}
.y3a{bottom:923.493333pt;}
.ya3{bottom:938.373333pt;}
.y6f{bottom:940.773333pt;}
.y39{bottom:942.213333pt;}
.y5{bottom:952.133333pt;}
.ya2{bottom:956.133333pt;}
.y6e{bottom:958.373333pt;}
.y38{bottom:960.933333pt;}
.y6d{bottom:975.973333pt;}
.y4{bottom:978.053333pt;}
.y37{bottom:979.653333pt;}
.y6b{bottom:993.573333pt;}
.y36{bottom:998.373333pt;}
.y3{bottom:1004.000000pt;}
.y35{bottom:1017.120000pt;}
.y2{bottom:1029.920000pt;}
.y34{bottom:1035.840000pt;}
.y1{bottom:1056.800000pt;}
.y33{bottom:1060.640000pt;}
.hd{height:16.160000pt;}
.hc{height:16.320000pt;}
.hb{height:16.352000pt;}
.ha{height:16.480000pt;}
.h9{height:16.640000pt;}
.he{height:16.672000pt;}
.h11{height:16.960000pt;}
.h10{height:17.120000pt;}
.h12{height:17.152000pt;}
.hf{height:17.760000pt;}
.h14{height:23.680000pt;}
.h15{height:23.840000pt;}
.h17{height:25.440000pt;}
.h18{height:25.472000pt;}
.h19{height:25.600000pt;}
.h13{height:26.400000pt;}
.h7{height:34.374375pt;}
.h16{height:40.320000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:89.280000pt;}
.w14{width:90.720000pt;}
.w13{width:90.752000pt;}
.w15{width:101.472000pt;}
.wf{width:124.192000pt;}
.w12{width:128.032000pt;}
.we{width:131.520000pt;}
.wd{width:153.306667pt;}
.wc{width:187.866667pt;}
.wa{width:197.946667pt;}
.wb{width:198.106667pt;}
.w7{width:201.946667pt;}
.w10{width:205.466667pt;}
.w11{width:205.626667pt;}
.w8{width:206.586667pt;}
.w9{width:206.746667pt;}
.w4{width:216.826667pt;}
.w3{width:216.866667pt;}
.w6{width:223.866667pt;}
.w5{width:223.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:9.280000pt;}
.x1{left:47.999988pt;}
.x2{left:52.799988pt;}
.x6{left:59.680000pt;}
.x3{left:70.400000pt;}
.x1e{left:71.999988pt;}
.xc{left:85.632000pt;}
.x15{left:87.392000pt;}
.x9{left:92.672000pt;}
.x12{left:96.512000pt;}
.xf{left:98.592000pt;}
.x16{left:144.346655pt;}
.x17{left:181.466667pt;}
.x18{left:273.506667pt;}
.x7{left:285.026667pt;}
.x4{left:288.546667pt;}
.xd{left:293.666667pt;}
.xa{left:295.906667pt;}
.x10{left:297.986667pt;}
.x1a{left:365.666667pt;}
.x13{left:440.253333pt;}
.x1b{left:457.693333pt;}
.x11{left:497.213333pt;}
.xb{left:499.293333pt;}
.xe{left:501.533333pt;}
.x5{left:506.653333pt;}
.x8{left:510.333333pt;}
.x1c{left:549.693333pt;}
.x14{left:573.213333pt;}
.x1d{left:652.613333pt;}
.x1f{left:746.053322pt;}
}




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