
    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_bd440f506dc6e18bbff25e42.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_dd4c0340174fd532408aa618.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_61cbff7ca89ccf03d261daa5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_3d4d445ed03c6082ffe3fb62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_bfbe6c3834ffd48fee6856e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_723ee631f79b815e84d2ce05.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.722240px;}
.ls10{letter-spacing:-1.192320px;}
.ls11{letter-spacing:-1.126080px;}
.ls14{letter-spacing:-0.993600px;}
.lse{letter-spacing:-0.728640px;}
.ls12{letter-spacing:-0.596160px;}
.ls25{letter-spacing:-0.397440px;}
.ls8{letter-spacing:-0.331200px;}
.lsb{letter-spacing:-0.264960px;}
.lsd{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.132480px;}
.lsc{letter-spacing:-0.108000px;}
.ls9{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.119520px;}
.lsf{letter-spacing:0.132480px;}
.ls3{letter-spacing:0.145800px;}
.ls6{letter-spacing:0.262080px;}
.ls4{letter-spacing:0.264960px;}
.ls13{letter-spacing:0.331200px;}
.ls24{letter-spacing:0.358560px;}
.ls2{letter-spacing:0.378000px;}
.ls28{letter-spacing:0.417312px;}
.ls0{letter-spacing:1.722240px;}
.ls16{letter-spacing:2.060064px;}
.ls15{letter-spacing:2.185920px;}
.ls1d{letter-spacing:4.279104px;}
.ls29{letter-spacing:4.981248px;}
.ls1e{letter-spacing:5.756256px;}
.ls20{letter-spacing:5.762880px;}
.ls27{letter-spacing:6.431904px;}
.ls17{letter-spacing:9.333216px;}
.ls19{letter-spacing:11.525760px;}
.ls18{letter-spacing:11.539008px;}
.ls1{letter-spacing:35.478000px;}
.ls1f{letter-spacing:39.876480px;}
.ls1c{letter-spacing:41.726160px;}
.ls1b{letter-spacing:44.594640px;}
.ls21{letter-spacing:50.011200px;}
.ls22{letter-spacing:59.345280px;}
.ls1a{letter-spacing:59.351040px;}
.ls7{letter-spacing:67.265280px;}
.ls5{letter-spacing:136.382400px;}
.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;}
}
.ws18{word-spacing:-66.240000px;}
.ws1c{word-spacing:-39.744000px;}
.ws0{word-spacing:-18.083520px;}
.ws2a{word-spacing:-16.891200px;}
.ws3{word-spacing:-16.692480px;}
.ws1{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.162560px;}
.ws5{word-spacing:-15.963840px;}
.ws1d{word-spacing:-15.831360px;}
.ws6{word-spacing:-15.566400px;}
.ws4{word-spacing:-15.433920px;}
.ws2{word-spacing:-15.367680px;}
.ws1a{word-spacing:-15.298560px;}
.ws19{word-spacing:-15.059520px;}
.ws2e{word-spacing:-3.709440px;}
.ws11{word-spacing:-3.576960px;}
.ws3a{word-spacing:-2.980800px;}
.ws3e{word-spacing:-2.848320px;}
.ws3b{word-spacing:-2.318400px;}
.ws39{word-spacing:-2.185920px;}
.ws3f{word-spacing:-2.119680px;}
.wsf{word-spacing:-0.918000px;}
.ws27{word-spacing:-0.861120px;}
.ws9{word-spacing:-0.728640px;}
.ws16{word-spacing:-0.331200px;}
.ws28{word-spacing:-0.264960px;}
.ws13{word-spacing:-0.132480px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:0.270000px;}
.ws7{word-spacing:0.331200px;}
.ws10{word-spacing:0.378000px;}
.ws17{word-spacing:0.596160px;}
.ws12{word-spacing:0.728640px;}
.ws40{word-spacing:1.126080px;}
.ws2f{word-spacing:1.324800px;}
.wsc{word-spacing:2.053440px;}
.wsb{word-spacing:2.119680px;}
.ws1e{word-spacing:2.185920px;}
.ws2d{word-spacing:2.782080px;}
.ws35{word-spacing:2.914560px;}
.ws36{word-spacing:3.444480px;}
.wsa{word-spacing:4.173120px;}
.ws23{word-spacing:4.901760px;}
.ws26{word-spacing:5.166720px;}
.ws22{word-spacing:5.630400px;}
.ws25{word-spacing:5.762880px;}
.ws30{word-spacing:6.359040px;}
.ws41{word-spacing:6.491520px;}
.ws37{word-spacing:7.087680px;}
.ws1f{word-spacing:9.207360px;}
.ws24{word-spacing:9.339840px;}
.ws20{word-spacing:9.936000px;}
.ws33{word-spacing:10.068480px;}
.ws15{word-spacing:10.797120px;}
.ws21{word-spacing:11.393280px;}
.ws14{word-spacing:12.850560px;}
.ws2b{word-spacing:17.884800px;}
.ws2c{word-spacing:18.613440px;}
.ws34{word-spacing:20.733120px;}
.ws31{word-spacing:20.865600px;}
.ws29{word-spacing:21.461760px;}
.ws32{word-spacing:21.594240px;}
.ws3d{word-spacing:22.919040px;}
.ws3c{word-spacing:23.051520px;}
.ws38{word-spacing:27.224640px;}
.wsd{word-spacing:35.586000px;}
._6{margin-left:-2.225664px;}
._1{margin-left:-1.145952px;}
._0{width:1.020096px;}
._2{width:2.424384px;}
._5{width:4.173120px;}
._7{width:20.706624px;}
._3{width:195.871680px;}
._4{width:847.408320px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:33.120000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y30{bottom:2.880000px;}
.ye{bottom:3.960000px;}
.y9{bottom:4.140000px;}
.y1a{bottom:23.040000px;}
.ya3{bottom:32.040000px;}
.y2e{bottom:36.540000px;}
.y60{bottom:43.200000px;}
.y2f{bottom:46.620000px;}
.yc{bottom:50.580000px;}
.ya2{bottom:51.120000px;}
.y3f{bottom:62.640000px;}
.y62{bottom:66.780000px;}
.y5d{bottom:82.260000px;}
.y61{bottom:86.760000px;}
.ya5{bottom:91.260000px;}
.y17{bottom:97.920000px;}
.y5f{bottom:105.840000px;}
.y63{bottom:115.920000px;}
.y5e{bottom:125.820000px;}
.ya4{bottom:129.060000px;}
.y5c{bottom:144.900000px;}
.y5b{bottom:165.074400px;}
.ya1{bottom:167.060880px;}
.y9a{bottom:183.960000px;}
.y5a{bottom:185.227920px;}
.ya0{bottom:185.955840px;}
.y99{bottom:202.860000px;}
.y9f{bottom:205.032960px;}
.y59{bottom:214.390080px;}
.y9e{bottom:223.927920px;}
.y58{bottom:242.293680px;}
.y9d{bottom:242.822880px;}
.y9c{bottom:261.900000px;}
.y57{bottom:270.379440px;}
.y9b{bottom:280.800000px;}
.y56{bottom:289.274400px;}
.y27{bottom:307.442880px;}
.y55{bottom:317.178000px;}
.y98{bottom:318.785040px;}
.y26{bottom:326.520000px;}
.y91{bottom:335.700000px;}
.y97{bottom:337.680000px;}
.y54{bottom:345.263760px;}
.y25{bottom:351.180000px;}
.y90{bottom:354.600000px;}
.y96{bottom:356.760000px;}
.y53{bottom:373.167360px;}
.y8e{bottom:373.680000px;}
.y95{bottom:375.672960px;}
.y24{bottom:379.800000px;}
.y94{bottom:394.750080px;}
.y52{bottom:401.253120px;}
.y23{bottom:408.600000px;}
.y93{bottom:413.645040px;}
.y51{bottom:421.406640px;}
.y8a{bottom:430.560000px;}
.y92{bottom:432.540000px;}
.y22{bottom:441.360000px;}
.y50{bottom:450.386640px;}
.y21{bottom:466.020000px;}
.y8f{bottom:470.520000px;}
.y4f{bottom:478.472400px;}
.y8d{bottom:489.600000px;}
.y20{bottom:494.820000px;}
.y4e{bottom:506.376000px;}
.y8c{bottom:508.500000px;}
.y1f{bottom:523.440000px;}
.y84{bottom:525.420000px;}
.y8b{bottom:527.400000px;}
.y4d{bottom:534.461760px;}
.y89{bottom:546.487920px;}
.y1e{bottom:552.240000px;}
.y4c{bottom:554.615280px;}
.y88{bottom:565.382880px;}
.y4b{bottom:573.510240px;}
.y1d{bottom:580.860000px;}
.y87{bottom:584.460000px;}
.y4a{bottom:592.587360px;}
.y7f{bottom:601.380000px;}
.y86{bottom:603.360000px;}
.y1c{bottom:609.660000px;}
.y49{bottom:612.740880px;}
.y7d{bottom:620.280000px;}
.y85{bottom:622.440000px;}
.y48{bottom:632.894400px;}
.y83{bottom:641.340000px;}
.y1b{bottom:642.420000px;}
.y47{bottom:653.047920px;}
.y82{bottom:660.240000px;}
.y16{bottom:667.080000px;}
.y46{bottom:673.035840px;}
.y79{bottom:677.160000px;}
.y81{bottom:679.325040px;}
.y45{bottom:692.112960px;}
.y77{bottom:696.240000px;}
.y80{bottom:698.220000px;}
.y44{bottom:711.007920px;}
.y7e{bottom:717.300000px;}
.y19{bottom:718.020000px;}
.y14{bottom:722.882880px;}
.y40{bottom:724.320000px;}
.y43{bottom:730.085040px;}
.y75{bottom:734.040000px;}
.y7c{bottom:736.200000px;}
.y13{bottom:741.960000px;}
.y18{bottom:746.100000px;}
.y42{bottom:748.980000px;}
.y7b{bottom:755.100000px;}
.y41{bottom:767.880000px;}
.y7a{bottom:774.180000px;}
.y3e{bottom:786.960000px;}
.y15{bottom:789.660000px;}
.y78{bottom:793.080000px;}
.y3d{bottom:810.900000px;}
.y70{bottom:811.260000px;}
.y12{bottom:818.460000px;}
.y76{bottom:831.060000px;}
.y3c{bottom:833.945040px;}
.y74{bottom:849.960000px;}
.y11{bottom:851.220000px;}
.y3b{bottom:852.840000px;}
.y73{bottom:869.042880px;}
.y3a{bottom:880.740000px;}
.y10{bottom:881.280000px;}
.y6c{bottom:887.220000px;}
.y72{bottom:888.120000px;}
.y39{bottom:899.820000px;}
.y71{bottom:908.100000px;}
.yf{bottom:911.700000px;}
.y6f{bottom:927.180000px;}
.y38{bottom:927.722880px;}
.y69{bottom:934.380000px;}
.yb{bottom:936.360000px;}
.y37{bottom:955.808640px;}
.y6e{bottom:956.340000px;}
.yd{bottom:968.040000px;}
.y66{bottom:973.440000px;}
.y6d{bottom:984.240000px;}
.y36{bottom:984.970800px;}
.ya{bottom:986.940000px;}
.y64{bottom:993.420000px;}
.y6b{bottom:1003.140000px;}
.y8{bottom:1011.960000px;}
.y35{bottom:1014.132960px;}
.y6a{bottom:1031.220000px;}
.y34{bottom:1033.027920px;}
.y7{bottom:1044.714240px;}
.y68{bottom:1050.300000px;}
.y33{bottom:1051.922880px;}
.y67{bottom:1070.280000px;}
.y32{bottom:1071.000000px;}
.y6{bottom:1072.800000px;}
.y65{bottom:1089.360000px;}
.y31{bottom:1095.660000px;}
.y5{bottom:1100.703600px;}
.y2d{bottom:1126.620000px;}
.y2c{bottom:1138.680000px;}
.y4{bottom:1139.586480px;}
.y2b{bottom:1157.775120px;}
.y3{bottom:1158.481440px;}
.y2a{bottom:1176.670080px;}
.y2{bottom:1189.614240px;}
.y29{bottom:1195.565040px;}
.y28{bottom:1214.460000px;}
.y1{bottom:1217.700000px;}
.hc{height:13.860000px;}
.h8{height:27.898500px;}
.ha{height:27.900000px;}
.h4{height:28.080000px;}
.hb{height:35.332031px;}
.h10{height:44.149219px;}
.hd{height:50.312812px;}
.h7{height:54.421875px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:69.086250px;}
.h6{height:74.880000px;}
.h9{height:121.860000px;}
.he{height:284.040000px;}
.hf{height:748.260000px;}
.h11{height:1008.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:6.838500px;}
.w8{width:95.398500px;}
.w5{width:116.640000px;}
.wc{width:201.060000px;}
.w7{width:211.860000px;}
.w9{width:223.020000px;}
.w6{width:296.818500px;}
.wb{width:307.440000px;}
.w4{width:361.260000px;}
.wa{width:499.500000px;}
.w3{width:723.240000px;}
.w2{width:723.960000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x9{left:35.640000px;}
.x17{left:43.200000px;}
.x20{left:45.540000px;}
.x19{left:53.820000px;}
.x13{left:62.640000px;}
.x10{left:85.140000px;}
.x21{left:86.940000px;}
.x1f{left:100.980000px;}
.x1b{left:108.360000px;}
.x2{left:115.560000px;}
.x4{left:124.200000px;}
.x1{left:127.620000px;}
.x1c{left:147.060000px;}
.x6{left:151.200000px;}
.x1e{left:155.880000px;}
.x12{left:164.010240px;}
.x1a{left:171.900000px;}
.x7{left:178.207920px;}
.x18{left:183.960000px;}
.x14{left:204.291360px;}
.xb{left:233.100000px;}
.x15{left:258.310080px;}
.x23{left:284.580000px;}
.xe{left:339.300000px;}
.x16{left:397.440000px;}
.x1d{left:408.960000px;}
.x22{left:436.140000px;}
.x8{left:477.540000px;}
.xa{left:513.180000px;}
.xc{left:530.640000px;}
.xf{left:541.440000px;}
.x5{left:583.920000px;}
.xd{left:743.400000px;}
.x11{left:801.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.530880pt;}
.ls10{letter-spacing:-1.059840pt;}
.ls11{letter-spacing:-1.000960pt;}
.ls14{letter-spacing:-0.883200pt;}
.lse{letter-spacing:-0.647680pt;}
.ls12{letter-spacing:-0.529920pt;}
.ls25{letter-spacing:-0.353280pt;}
.ls8{letter-spacing:-0.294400pt;}
.lsb{letter-spacing:-0.235520pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.117760pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.106240pt;}
.lsf{letter-spacing:0.117760pt;}
.ls3{letter-spacing:0.129600pt;}
.ls6{letter-spacing:0.232960pt;}
.ls4{letter-spacing:0.235520pt;}
.ls13{letter-spacing:0.294400pt;}
.ls24{letter-spacing:0.318720pt;}
.ls2{letter-spacing:0.336000pt;}
.ls28{letter-spacing:0.370944pt;}
.ls0{letter-spacing:1.530880pt;}
.ls16{letter-spacing:1.831168pt;}
.ls15{letter-spacing:1.943040pt;}
.ls1d{letter-spacing:3.803648pt;}
.ls29{letter-spacing:4.427776pt;}
.ls1e{letter-spacing:5.116672pt;}
.ls20{letter-spacing:5.122560pt;}
.ls27{letter-spacing:5.717248pt;}
.ls17{letter-spacing:8.296192pt;}
.ls19{letter-spacing:10.245120pt;}
.ls18{letter-spacing:10.256896pt;}
.ls1{letter-spacing:31.536000pt;}
.ls1f{letter-spacing:35.445760pt;}
.ls1c{letter-spacing:37.089920pt;}
.ls1b{letter-spacing:39.639680pt;}
.ls21{letter-spacing:44.454400pt;}
.ls22{letter-spacing:52.751360pt;}
.ls1a{letter-spacing:52.756480pt;}
.ls7{letter-spacing:59.791360pt;}
.ls5{letter-spacing:121.228800pt;}
.ws18{word-spacing:-58.880000pt;}
.ws1c{word-spacing:-35.328000pt;}
.ws0{word-spacing:-16.074240pt;}
.ws2a{word-spacing:-15.014400pt;}
.ws3{word-spacing:-14.837760pt;}
.ws1{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.366720pt;}
.ws5{word-spacing:-14.190080pt;}
.ws1d{word-spacing:-14.072320pt;}
.ws6{word-spacing:-13.836800pt;}
.ws4{word-spacing:-13.719040pt;}
.ws2{word-spacing:-13.660160pt;}
.ws1a{word-spacing:-13.598720pt;}
.ws19{word-spacing:-13.386240pt;}
.ws2e{word-spacing:-3.297280pt;}
.ws11{word-spacing:-3.179520pt;}
.ws3a{word-spacing:-2.649600pt;}
.ws3e{word-spacing:-2.531840pt;}
.ws3b{word-spacing:-2.060800pt;}
.ws39{word-spacing:-1.943040pt;}
.ws3f{word-spacing:-1.884160pt;}
.wsf{word-spacing:-0.816000pt;}
.ws27{word-spacing:-0.765440pt;}
.ws9{word-spacing:-0.647680pt;}
.ws16{word-spacing:-0.294400pt;}
.ws28{word-spacing:-0.235520pt;}
.ws13{word-spacing:-0.117760pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:0.240000pt;}
.ws7{word-spacing:0.294400pt;}
.ws10{word-spacing:0.336000pt;}
.ws17{word-spacing:0.529920pt;}
.ws12{word-spacing:0.647680pt;}
.ws40{word-spacing:1.000960pt;}
.ws2f{word-spacing:1.177600pt;}
.wsc{word-spacing:1.825280pt;}
.wsb{word-spacing:1.884160pt;}
.ws1e{word-spacing:1.943040pt;}
.ws2d{word-spacing:2.472960pt;}
.ws35{word-spacing:2.590720pt;}
.ws36{word-spacing:3.061760pt;}
.wsa{word-spacing:3.709440pt;}
.ws23{word-spacing:4.357120pt;}
.ws26{word-spacing:4.592640pt;}
.ws22{word-spacing:5.004800pt;}
.ws25{word-spacing:5.122560pt;}
.ws30{word-spacing:5.652480pt;}
.ws41{word-spacing:5.770240pt;}
.ws37{word-spacing:6.300160pt;}
.ws1f{word-spacing:8.184320pt;}
.ws24{word-spacing:8.302080pt;}
.ws20{word-spacing:8.832000pt;}
.ws33{word-spacing:8.949760pt;}
.ws15{word-spacing:9.597440pt;}
.ws21{word-spacing:10.127360pt;}
.ws14{word-spacing:11.422720pt;}
.ws2b{word-spacing:15.897600pt;}
.ws2c{word-spacing:16.545280pt;}
.ws34{word-spacing:18.429440pt;}
.ws31{word-spacing:18.547200pt;}
.ws29{word-spacing:19.077120pt;}
.ws32{word-spacing:19.194880pt;}
.ws3d{word-spacing:20.372480pt;}
.ws3c{word-spacing:20.490240pt;}
.ws38{word-spacing:24.199680pt;}
.wsd{word-spacing:31.632000pt;}
._6{margin-left:-1.978368pt;}
._1{margin-left:-1.018624pt;}
._0{width:0.906752pt;}
._2{width:2.155008pt;}
._5{width:3.709440pt;}
._7{width:18.405888pt;}
._3{width:174.108160pt;}
._4{width:753.251840pt;}
.fs2{font-size:29.440000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:2.560000pt;}
.ye{bottom:3.520000pt;}
.y9{bottom:3.680000pt;}
.y1a{bottom:20.480000pt;}
.ya3{bottom:28.480000pt;}
.y2e{bottom:32.480000pt;}
.y60{bottom:38.400000pt;}
.y2f{bottom:41.440000pt;}
.yc{bottom:44.960000pt;}
.ya2{bottom:45.440000pt;}
.y3f{bottom:55.680000pt;}
.y62{bottom:59.360000pt;}
.y5d{bottom:73.120000pt;}
.y61{bottom:77.120000pt;}
.ya5{bottom:81.120000pt;}
.y17{bottom:87.040000pt;}
.y5f{bottom:94.080000pt;}
.y63{bottom:103.040000pt;}
.y5e{bottom:111.840000pt;}
.ya4{bottom:114.720000pt;}
.y5c{bottom:128.800000pt;}
.y5b{bottom:146.732800pt;}
.ya1{bottom:148.498560pt;}
.y9a{bottom:163.520000pt;}
.y5a{bottom:164.647040pt;}
.ya0{bottom:165.294080pt;}
.y99{bottom:180.320000pt;}
.y9f{bottom:182.251520pt;}
.y59{bottom:190.568960pt;}
.y9e{bottom:199.047040pt;}
.y58{bottom:215.372160pt;}
.y9d{bottom:215.842560pt;}
.y9c{bottom:232.800000pt;}
.y57{bottom:240.337280pt;}
.y9b{bottom:249.600000pt;}
.y56{bottom:257.132800pt;}
.y27{bottom:273.282560pt;}
.y55{bottom:281.936000pt;}
.y98{bottom:283.364480pt;}
.y26{bottom:290.240000pt;}
.y91{bottom:298.400000pt;}
.y97{bottom:300.160000pt;}
.y54{bottom:306.901120pt;}
.y25{bottom:312.160000pt;}
.y90{bottom:315.200000pt;}
.y96{bottom:317.120000pt;}
.y53{bottom:331.704320pt;}
.y8e{bottom:332.160000pt;}
.y95{bottom:333.931520pt;}
.y24{bottom:337.600000pt;}
.y94{bottom:350.888960pt;}
.y52{bottom:356.669440pt;}
.y23{bottom:363.200000pt;}
.y93{bottom:367.684480pt;}
.y51{bottom:374.583680pt;}
.y8a{bottom:382.720000pt;}
.y92{bottom:384.480000pt;}
.y22{bottom:392.320000pt;}
.y50{bottom:400.343680pt;}
.y21{bottom:414.240000pt;}
.y8f{bottom:418.240000pt;}
.y4f{bottom:425.308800pt;}
.y8d{bottom:435.200000pt;}
.y20{bottom:439.840000pt;}
.y4e{bottom:450.112000pt;}
.y8c{bottom:452.000000pt;}
.y1f{bottom:465.280000pt;}
.y84{bottom:467.040000pt;}
.y8b{bottom:468.800000pt;}
.y4d{bottom:475.077120pt;}
.y89{bottom:485.767040pt;}
.y1e{bottom:490.880000pt;}
.y4c{bottom:492.991360pt;}
.y88{bottom:502.562560pt;}
.y4b{bottom:509.786880pt;}
.y1d{bottom:516.320000pt;}
.y87{bottom:519.520000pt;}
.y4a{bottom:526.744320pt;}
.y7f{bottom:534.560000pt;}
.y86{bottom:536.320000pt;}
.y1c{bottom:541.920000pt;}
.y49{bottom:544.658560pt;}
.y7d{bottom:551.360000pt;}
.y85{bottom:553.280000pt;}
.y48{bottom:562.572800pt;}
.y83{bottom:570.080000pt;}
.y1b{bottom:571.040000pt;}
.y47{bottom:580.487040pt;}
.y82{bottom:586.880000pt;}
.y16{bottom:592.960000pt;}
.y46{bottom:598.254080pt;}
.y79{bottom:601.920000pt;}
.y81{bottom:603.844480pt;}
.y45{bottom:615.211520pt;}
.y77{bottom:618.880000pt;}
.y80{bottom:620.640000pt;}
.y44{bottom:632.007040pt;}
.y7e{bottom:637.600000pt;}
.y19{bottom:638.240000pt;}
.y14{bottom:642.562560pt;}
.y40{bottom:643.840000pt;}
.y43{bottom:648.964480pt;}
.y75{bottom:652.480000pt;}
.y7c{bottom:654.400000pt;}
.y13{bottom:659.520000pt;}
.y18{bottom:663.200000pt;}
.y42{bottom:665.760000pt;}
.y7b{bottom:671.200000pt;}
.y41{bottom:682.560000pt;}
.y7a{bottom:688.160000pt;}
.y3e{bottom:699.520000pt;}
.y15{bottom:701.920000pt;}
.y78{bottom:704.960000pt;}
.y3d{bottom:720.800000pt;}
.y70{bottom:721.120000pt;}
.y12{bottom:727.520000pt;}
.y76{bottom:738.720000pt;}
.y3c{bottom:741.284480pt;}
.y74{bottom:755.520000pt;}
.y11{bottom:756.640000pt;}
.y3b{bottom:758.080000pt;}
.y73{bottom:772.482560pt;}
.y3a{bottom:782.880000pt;}
.y10{bottom:783.360000pt;}
.y6c{bottom:788.640000pt;}
.y72{bottom:789.440000pt;}
.y39{bottom:799.840000pt;}
.y71{bottom:807.200000pt;}
.yf{bottom:810.400000pt;}
.y6f{bottom:824.160000pt;}
.y38{bottom:824.642560pt;}
.y69{bottom:830.560000pt;}
.yb{bottom:832.320000pt;}
.y37{bottom:849.607680pt;}
.y6e{bottom:850.080000pt;}
.yd{bottom:860.480000pt;}
.y66{bottom:865.280000pt;}
.y6d{bottom:874.880000pt;}
.y36{bottom:875.529600pt;}
.ya{bottom:877.280000pt;}
.y64{bottom:883.040000pt;}
.y6b{bottom:891.680000pt;}
.y8{bottom:899.520000pt;}
.y35{bottom:901.451520pt;}
.y6a{bottom:916.640000pt;}
.y34{bottom:918.247040pt;}
.y7{bottom:928.634880pt;}
.y68{bottom:933.600000pt;}
.y33{bottom:935.042560pt;}
.y67{bottom:951.360000pt;}
.y32{bottom:952.000000pt;}
.y6{bottom:953.600000pt;}
.y65{bottom:968.320000pt;}
.y31{bottom:973.920000pt;}
.y5{bottom:978.403200pt;}
.y2d{bottom:1001.440000pt;}
.y2c{bottom:1012.160000pt;}
.y4{bottom:1012.965760pt;}
.y2b{bottom:1029.133440pt;}
.y3{bottom:1029.761280pt;}
.y2a{bottom:1045.928960pt;}
.y2{bottom:1057.434880pt;}
.y29{bottom:1062.724480pt;}
.y28{bottom:1079.520000pt;}
.y1{bottom:1082.400000pt;}
.hc{height:12.320000pt;}
.h8{height:24.798667pt;}
.ha{height:24.800000pt;}
.h4{height:24.960000pt;}
.hb{height:31.406250pt;}
.h10{height:39.243750pt;}
.hd{height:44.722500pt;}
.h7{height:48.375000pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:61.410000pt;}
.h6{height:66.560000pt;}
.h9{height:108.320000pt;}
.he{height:252.480000pt;}
.hf{height:665.120000pt;}
.h11{height:896.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:6.078667pt;}
.w8{width:84.798667pt;}
.w5{width:103.680000pt;}
.wc{width:178.720000pt;}
.w7{width:188.320000pt;}
.w9{width:198.240000pt;}
.w6{width:263.838667pt;}
.wb{width:273.280000pt;}
.w4{width:321.120000pt;}
.wa{width:444.000000pt;}
.w3{width:642.880000pt;}
.w2{width:643.520000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x9{left:31.680000pt;}
.x17{left:38.400000pt;}
.x20{left:40.480000pt;}
.x19{left:47.840000pt;}
.x13{left:55.680000pt;}
.x10{left:75.680000pt;}
.x21{left:77.280000pt;}
.x1f{left:89.760000pt;}
.x1b{left:96.320000pt;}
.x2{left:102.720000pt;}
.x4{left:110.400000pt;}
.x1{left:113.440000pt;}
.x1c{left:130.720000pt;}
.x6{left:134.400000pt;}
.x1e{left:138.560000pt;}
.x12{left:145.786880pt;}
.x1a{left:152.800000pt;}
.x7{left:158.407040pt;}
.x18{left:163.520000pt;}
.x14{left:181.592320pt;}
.xb{left:207.200000pt;}
.x15{left:229.608960pt;}
.x23{left:252.960000pt;}
.xe{left:301.600000pt;}
.x16{left:353.280000pt;}
.x1d{left:363.520000pt;}
.x22{left:387.680000pt;}
.x8{left:424.480000pt;}
.xa{left:456.160000pt;}
.xc{left:471.680000pt;}
.xf{left:481.280000pt;}
.x5{left:519.040000pt;}
.xd{left:660.800000pt;}
.x11{left:712.160000pt;}
}




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