
    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_be6baddadf2a69026eb995a8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2d2b53bbd5126fbeed43d55c.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_da15d4162099a8bacd68b7ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f2810d25dc52adc7ab132eb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_16546622ec373113416e8870.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_2995ac30ea70e9672d558846.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_7279d98a9ae3d1e7e6cc2f71.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1144ebba6c362e8e1b4019ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.747559;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.540000px;}
.ls15{letter-spacing:-0.780000px;}
.ls10{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.516000px;}
.ls12{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.420000px;}
.ls18{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls9{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.417600px;}
.ls19{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.lse{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.440000px;}
.lsc{letter-spacing:6.600000px;}
.ls4{letter-spacing:15.084000px;}
.ls17{letter-spacing:15.720000px;}
.ls3{letter-spacing:16.284000px;}
.ls16{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws3{word-spacing:-16.440000px;}
.wsa{word-spacing:-15.540000px;}
.wse{word-spacing:-15.420000px;}
.ws4{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.054000px;}
.ws2{word-spacing:-15.000000px;}
.wsd{word-spacing:-14.880000px;}
.ws7{word-spacing:-14.100000px;}
.ws8{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.900000px;}
.ws5{word-spacing:-9.900000px;}
.wsc{word-spacing:-9.300000px;}
.wsb{word-spacing:-9.120000px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-2.154000px;}
._0{margin-left:-1.056000px;}
._1{width:1.032000px;}
._4{width:2.142000px;}
._7{width:3.180000px;}
._9{width:4.548000px;}
._8{width:5.700000px;}
._6{width:6.792000px;}
._5{width:7.980000px;}
._e{width:9.396000px;}
._d{width:10.416000px;}
._c{width:11.580000px;}
._11{width:13.176000px;}
._10{width:16.320000px;}
._f{width:17.376000px;}
._16{width:18.792000px;}
._15{width:19.920000px;}
._14{width:25.302000px;}
._13{width:27.060000px;}
._b{width:46.860000px;}
._a{width:48.780000px;}
._2{width:336.180000px;}
._3{width:1188.480000px;}
.fc4{color:transparent;}
.fc3{color:rgb(31,73,125);}
.fc1{color:rgb(192,0,0);}
.fc5{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:39.600000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y40{bottom:9.345000px;}
.y97{bottom:11.700000px;}
.y9e{bottom:11.715000px;}
.y95{bottom:12.000000px;}
.y5{bottom:12.337500px;}
.ybc{bottom:25.800000px;}
.yb6{bottom:25.815000px;}
.yb8{bottom:25.830000px;}
.yb4{bottom:26.100000px;}
.y3f{bottom:28.845000px;}
.y3e{bottom:43.245000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3d{bottom:60.645000px;}
.y42{bottom:74.137500px;}
.y3c{bottom:77.745000px;}
.y3{bottom:81.337500px;}
.y3b{bottom:95.130000px;}
.y3a{bottom:112.230000px;}
.y7a{bottom:113.137500px;}
.y36{bottom:113.737500px;}
.yb0{bottom:125.137500px;}
.y39{bottom:129.645000px;}
.y35{bottom:130.837500px;}
.y79{bottom:133.837500px;}
.ye4{bottom:142.237500px;}
.yaf{bottom:142.537500px;}
.y34{bottom:147.337500px;}
.y38{bottom:147.345000px;}
.y78{bottom:154.245000px;}
.yae{bottom:159.645000px;}
.y33{bottom:162.030000px;}
.y77{bottom:171.330000px;}
.ye3{bottom:176.745000px;}
.yad{bottom:177.045000px;}
.y32{bottom:179.175000px;}
.y76{bottom:188.775000px;}
.yac{bottom:194.175000px;}
.y31{bottom:196.575000px;}
.y75{bottom:205.875000px;}
.ye2{bottom:211.275000px;}
.yab{bottom:211.875000px;}
.y30{bottom:213.675000px;}
.y74{bottom:223.575000px;}
.ye1{bottom:228.675000px;}
.y2f{bottom:231.075000px;}
.yaa{bottom:231.375000px;}
.ye0{bottom:245.775000px;}
.ya9{bottom:246.075000px;}
.y2e{bottom:248.175000px;}
.y73{bottom:258.675000px;}
.ya8{bottom:263.175000px;}
.y2d{bottom:265.575000px;}
.y72{bottom:276.075000px;}
.ydf{bottom:280.275000px;}
.ya7{bottom:280.575000px;}
.y2c{bottom:282.675000px;}
.ya6{bottom:297.675000px;}
.y2b{bottom:299.175000px;}
.y71{bottom:300.675000px;}
.y2a{bottom:313.875000px;}
.yde{bottom:314.775000px;}
.ya5{bottom:315.075000px;}
.y70{bottom:318.075000px;}
.y29{bottom:330.975000px;}
.ydd{bottom:332.175000px;}
.ya4{bottom:332.775000px;}
.y6f{bottom:342.675000px;}
.y28{bottom:348.420000px;}
.ydc{bottom:349.320000px;}
.ya3{bottom:352.320000px;}
.ya2{bottom:364.905000px;}
.y27{bottom:365.520000px;}
.ydb{bottom:366.705000px;}
.y6e{bottom:367.320000px;}
.y26{bottom:382.020000px;}
.yda{bottom:383.820000px;}
.ya1{bottom:390.705000px;}
.y6d{bottom:392.205000px;}
.y25{bottom:396.720000px;}
.yd9{bottom:401.205000px;}
.y6c{bottom:409.620000px;}
.y24{bottom:413.820000px;}
.ya0{bottom:416.505000px;}
.yd8{bottom:418.320000px;}
.y6b{bottom:427.005000px;}
.y23{bottom:431.220000px;}
.yd7{bottom:435.705000px;}
.y9f{bottom:442.320000px;}
.y6a{bottom:444.720000px;}
.y22{bottom:448.320000px;}
.yd6{bottom:452.820000px;}
.y69{bottom:464.205000px;}
.y21{bottom:465.705000px;}
.y9d{bottom:468.405000px;}
.yd5{bottom:470.220000px;}
.y68{bottom:478.620000px;}
.y20{bottom:482.820000px;}
.yd4{bottom:487.320000px;}
.y9c{bottom:494.205000px;}
.y67{bottom:496.005000px;}
.y1f{bottom:500.220000px;}
.yd3{bottom:504.720000px;}
.y66{bottom:513.120000px;}
.y1e{bottom:516.750000px;}
.y9b{bottom:520.050000px;}
.yd2{bottom:521.850000px;}
.y65{bottom:530.850000px;}
.y1d{bottom:531.150000px;}
.yd1{bottom:539.250000px;}
.y9a{bottom:545.850000px;}
.y1c{bottom:548.550000px;}
.y64{bottom:550.350000px;}
.yd0{bottom:556.350000px;}
.y63{bottom:565.050000px;}
.y1b{bottom:565.650000px;}
.y99{bottom:571.950000px;}
.ycf{bottom:573.750000px;}
.y62{bottom:582.150000px;}
.y1a{bottom:583.050000px;}
.yce{bottom:590.850000px;}
.y98{bottom:597.750000px;}
.y61{bottom:599.550000px;}
.y19{bottom:600.750000px;}
.ycd{bottom:608.550000px;}
.y60{bottom:617.250000px;}
.y18{bottom:620.550000px;}
.y96{bottom:623.550000px;}
.ycc{bottom:628.050000px;}
.y5f{bottom:637.950000px;}
.ycb{bottom:642.750000px;}
.y94{bottom:650.850000px;}
.y5e{bottom:657.450000px;}
.yca{bottom:659.850000px;}
.y5d{bottom:671.850000px;}
.yc9{bottom:677.250000px;}
.y37{bottom:680.850000px;}
.y5c{bottom:689.280000px;}
.y93{bottom:689.595000px;}
.yc8{bottom:694.380000px;}
.y5b{bottom:706.380000px;}
.y92{bottom:708.480000px;}
.yc7{bottom:711.780000px;}
.y5a{bottom:723.795000px;}
.y91{bottom:727.395000px;}
.yc6{bottom:729.495000px;}
.y59{bottom:740.895000px;}
.y90{bottom:744.495000px;}
.yc5{bottom:748.980000px;}
.y58{bottom:757.380000px;}
.y8f{bottom:761.880000px;}
.yc4{bottom:763.380000px;}
.y57{bottom:772.080000px;}
.y8e{bottom:778.980000px;}
.yc3{bottom:780.795000px;}
.y56{bottom:789.195000px;}
.y8d{bottom:796.380000px;}
.yc2{bottom:797.880000px;}
.y55{bottom:806.580000px;}
.y8c{bottom:813.495000px;}
.yc1{bottom:815.295000px;}
.y54{bottom:823.695000px;}
.y8b{bottom:830.880000px;}
.yc0{bottom:832.995000px;}
.y53{bottom:840.195000px;}
.y8a{bottom:847.995000px;}
.ybf{bottom:852.525000px;}
.y52{bottom:854.925000px;}
.ybe{bottom:865.125000px;}
.y89{bottom:865.725000px;}
.y51{bottom:872.025000px;}
.y17{bottom:885.825000px;}
.y50{bottom:889.425000px;}
.ybd{bottom:890.925000px;}
.y88{bottom:897.825000px;}
.y16{bottom:904.425000px;}
.y4f{bottom:906.525000px;}
.y87{bottom:915.225000px;}
.ybb{bottom:916.725000px;}
.y15{bottom:923.025000px;}
.y86{bottom:932.625000px;}
.y4e{bottom:937.725000px;}
.y14{bottom:940.725000px;}
.yba{bottom:942.525000px;}
.yec{bottom:951.525000px;}
.y4d{bottom:954.825000px;}
.y13{bottom:957.825000px;}
.y85{bottom:961.425000px;}
.yb9{bottom:968.625000px;}
.y4c{bottom:972.225000px;}
.y12{bottom:975.225000px;}
.y84{bottom:979.125000px;}
.yeb{bottom:986.025000px;}
.y4b{bottom:989.325000px;}
.yb7{bottom:994.425000px;}
.y11{bottom:995.925000px;}
.y83{bottom:996.225000px;}
.yea{bottom:1003.125000px;}
.y4a{bottom:1006.725000px;}
.y82{bottom:1013.625000px;}
.y10{bottom:1016.670000px;}
.yb5{bottom:1020.255000px;}
.ye9{bottom:1020.570000px;}
.y49{bottom:1023.870000px;}
.y81{bottom:1030.755000px;}
.ye8{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y48{bottom:1041.255000px;}
.yb3{bottom:1046.070000px;}
.y80{bottom:1048.170000px;}
.ye7{bottom:1055.070000px;}
.y47{bottom:1058.370000px;}
.yc{bottom:1062.570000px;}
.y7f{bottom:1065.255000px;}
.yb{bottom:1068.255000px;}
.yb2{bottom:1072.155000px;}
.ye6{bottom:1072.170000px;}
.y46{bottom:1075.755000px;}
.y7e{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.ye5{bottom:1089.570000px;}
.y45{bottom:1092.255000px;}
.y9{bottom:1097.955000px;}
.yb1{bottom:1099.455000px;}
.y7d{bottom:1099.755000px;}
.y44{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y7c{bottom:1117.455000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y7b{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.h17{height:25.800000px;}
.h18{height:25.837500px;}
.h16{height:26.100000px;}
.he{height:33.515625px;}
.h7{height:33.867188px;}
.h12{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.hc{height:41.894531px;}
.h4{height:42.333984px;}
.h1d{height:43.681641px;}
.h13{height:44.507812px;}
.h15{height:46.567383px;}
.h1a{height:49.190391px;}
.h14{height:49.250391px;}
.h19{height:49.310391px;}
.h1b{height:49.370391px;}
.hf{height:49.453125px;}
.h1c{height:49.540430px;}
.h6{height:50.800781px;}
.hb{height:51.996094px;}
.h11{height:54.179062px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h10{height:164.130000px;}
.h0{height:1263.000000px;}
.wa{width:58.237500px;}
.w9{width:69.022500px;}
.w4{width:72.300000px;}
.wb{width:82.800000px;}
.we{width:84.337500px;}
.w8{width:89.700000px;}
.wc{width:96.937500px;}
.w3{width:108.000000px;}
.wf{width:108.037500px;}
.wd{width:162.930000px;}
.w6{width:252.975000px;}
.w5{width:483.450000px;}
.w7{width:731.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.800000px;}
.x2{left:10.799998px;}
.x16{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.xc{left:78.337500px;}
.x1{left:81.037487px;}
.x10{left:84.037487px;}
.x14{left:99.037487px;}
.x1e{left:108.037487px;}
.xf{left:116.445000px;}
.xa{left:153.629987px;}
.x19{left:171.945000px;}
.x11{left:239.774987px;}
.xd{left:241.567500px;}
.x1c{left:244.275000px;}
.x15{left:299.519987px;}
.x1a{left:301.020000px;}
.x1d{left:328.620000px;}
.x7{left:363.419987px;}
.x1b{left:384.720000px;}
.x5{left:388.619987px;}
.x12{left:394.004987px;}
.x13{left:446.549987px;}
.x17{left:555.194987px;}
.xe{left:561.780000px;}
.x9{left:614.879987px;}
.x8{left:648.194987px;}
.x6{left:696.524987px;}
.xb{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.146667pt;}
.ls15{letter-spacing:-0.693333pt;}
.ls10{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.458667pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls9{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.371200pt;}
.ls19{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.280000pt;}
.lsc{letter-spacing:5.866667pt;}
.ls4{letter-spacing:13.408000pt;}
.ls17{letter-spacing:13.973333pt;}
.ls3{letter-spacing:14.474667pt;}
.ls16{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws3{word-spacing:-14.613333pt;}
.wsa{word-spacing:-13.813333pt;}
.wse{word-spacing:-13.706667pt;}
.ws4{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.381333pt;}
.ws2{word-spacing:-13.333333pt;}
.wsd{word-spacing:-13.226667pt;}
.ws7{word-spacing:-12.533333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.466667pt;}
.ws5{word-spacing:-8.800000pt;}
.wsc{word-spacing:-8.266667pt;}
.wsb{word-spacing:-8.106667pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-1.914667pt;}
._0{margin-left:-0.938667pt;}
._1{width:0.917333pt;}
._4{width:1.904000pt;}
._7{width:2.826667pt;}
._9{width:4.042667pt;}
._8{width:5.066667pt;}
._6{width:6.037333pt;}
._5{width:7.093333pt;}
._e{width:8.352000pt;}
._d{width:9.258667pt;}
._c{width:10.293333pt;}
._11{width:11.712000pt;}
._10{width:14.506667pt;}
._f{width:15.445333pt;}
._16{width:16.704000pt;}
._15{width:17.706667pt;}
._14{width:22.490667pt;}
._13{width:24.053333pt;}
._b{width:41.653333pt;}
._a{width:43.360000pt;}
._2{width:298.826667pt;}
._3{width:1056.426667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:35.200000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y40{bottom:8.306667pt;}
.y97{bottom:10.400000pt;}
.y9e{bottom:10.413333pt;}
.y95{bottom:10.666667pt;}
.y5{bottom:10.966667pt;}
.ybc{bottom:22.933333pt;}
.yb6{bottom:22.946667pt;}
.yb8{bottom:22.960000pt;}
.yb4{bottom:23.200000pt;}
.y3f{bottom:25.640000pt;}
.y3e{bottom:38.440000pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3d{bottom:53.906667pt;}
.y42{bottom:65.900000pt;}
.y3c{bottom:69.106667pt;}
.y3{bottom:72.300000pt;}
.y3b{bottom:84.560000pt;}
.y3a{bottom:99.760000pt;}
.y7a{bottom:100.566667pt;}
.y36{bottom:101.100000pt;}
.yb0{bottom:111.233333pt;}
.y39{bottom:115.240000pt;}
.y35{bottom:116.300000pt;}
.y79{bottom:118.966667pt;}
.ye4{bottom:126.433333pt;}
.yaf{bottom:126.700000pt;}
.y34{bottom:130.966667pt;}
.y38{bottom:130.973333pt;}
.y78{bottom:137.106667pt;}
.yae{bottom:141.906667pt;}
.y33{bottom:144.026667pt;}
.y77{bottom:152.293333pt;}
.ye3{bottom:157.106667pt;}
.yad{bottom:157.373333pt;}
.y32{bottom:159.266667pt;}
.y76{bottom:167.800000pt;}
.yac{bottom:172.600000pt;}
.y31{bottom:174.733333pt;}
.y75{bottom:183.000000pt;}
.ye2{bottom:187.800000pt;}
.yab{bottom:188.333333pt;}
.y30{bottom:189.933333pt;}
.y74{bottom:198.733333pt;}
.ye1{bottom:203.266667pt;}
.y2f{bottom:205.400000pt;}
.yaa{bottom:205.666667pt;}
.ye0{bottom:218.466667pt;}
.ya9{bottom:218.733333pt;}
.y2e{bottom:220.600000pt;}
.y73{bottom:229.933333pt;}
.ya8{bottom:233.933333pt;}
.y2d{bottom:236.066667pt;}
.y72{bottom:245.400000pt;}
.ydf{bottom:249.133333pt;}
.ya7{bottom:249.400000pt;}
.y2c{bottom:251.266667pt;}
.ya6{bottom:264.600000pt;}
.y2b{bottom:265.933333pt;}
.y71{bottom:267.266667pt;}
.y2a{bottom:279.000000pt;}
.yde{bottom:279.800000pt;}
.ya5{bottom:280.066667pt;}
.y70{bottom:282.733333pt;}
.y29{bottom:294.200000pt;}
.ydd{bottom:295.266667pt;}
.ya4{bottom:295.800000pt;}
.y6f{bottom:304.600000pt;}
.y28{bottom:309.706667pt;}
.ydc{bottom:310.506667pt;}
.ya3{bottom:313.173333pt;}
.ya2{bottom:324.360000pt;}
.y27{bottom:324.906667pt;}
.ydb{bottom:325.960000pt;}
.y6e{bottom:326.506667pt;}
.y26{bottom:339.573333pt;}
.yda{bottom:341.173333pt;}
.ya1{bottom:347.293333pt;}
.y6d{bottom:348.626667pt;}
.y25{bottom:352.640000pt;}
.yd9{bottom:356.626667pt;}
.y6c{bottom:364.106667pt;}
.y24{bottom:367.840000pt;}
.ya0{bottom:370.226667pt;}
.yd8{bottom:371.840000pt;}
.y6b{bottom:379.560000pt;}
.y23{bottom:383.306667pt;}
.yd7{bottom:387.293333pt;}
.y9f{bottom:393.173333pt;}
.y6a{bottom:395.306667pt;}
.y22{bottom:398.506667pt;}
.yd6{bottom:402.506667pt;}
.y69{bottom:412.626667pt;}
.y21{bottom:413.960000pt;}
.y9d{bottom:416.360000pt;}
.yd5{bottom:417.973333pt;}
.y68{bottom:425.440000pt;}
.y20{bottom:429.173333pt;}
.yd4{bottom:433.173333pt;}
.y9c{bottom:439.293333pt;}
.y67{bottom:440.893333pt;}
.y1f{bottom:444.640000pt;}
.yd3{bottom:448.640000pt;}
.y66{bottom:456.106667pt;}
.y1e{bottom:459.333333pt;}
.y9b{bottom:462.266667pt;}
.yd2{bottom:463.866667pt;}
.y65{bottom:471.866667pt;}
.y1d{bottom:472.133333pt;}
.yd1{bottom:479.333333pt;}
.y9a{bottom:485.200000pt;}
.y1c{bottom:487.600000pt;}
.y64{bottom:489.200000pt;}
.yd0{bottom:494.533333pt;}
.y63{bottom:502.266667pt;}
.y1b{bottom:502.800000pt;}
.y99{bottom:508.400000pt;}
.ycf{bottom:510.000000pt;}
.y62{bottom:517.466667pt;}
.y1a{bottom:518.266667pt;}
.yce{bottom:525.200000pt;}
.y98{bottom:531.333333pt;}
.y61{bottom:532.933333pt;}
.y19{bottom:534.000000pt;}
.ycd{bottom:540.933333pt;}
.y60{bottom:548.666667pt;}
.y18{bottom:551.600000pt;}
.y96{bottom:554.266667pt;}
.ycc{bottom:558.266667pt;}
.y5f{bottom:567.066667pt;}
.ycb{bottom:571.333333pt;}
.y94{bottom:578.533333pt;}
.y5e{bottom:584.400000pt;}
.yca{bottom:586.533333pt;}
.y5d{bottom:597.200000pt;}
.yc9{bottom:602.000000pt;}
.y37{bottom:605.200000pt;}
.y5c{bottom:612.693333pt;}
.y93{bottom:612.973333pt;}
.yc8{bottom:617.226667pt;}
.y5b{bottom:627.893333pt;}
.y92{bottom:629.760000pt;}
.yc7{bottom:632.693333pt;}
.y5a{bottom:643.373333pt;}
.y91{bottom:646.573333pt;}
.yc6{bottom:648.440000pt;}
.y59{bottom:658.573333pt;}
.y90{bottom:661.773333pt;}
.yc5{bottom:665.760000pt;}
.y58{bottom:673.226667pt;}
.y8f{bottom:677.226667pt;}
.yc4{bottom:678.560000pt;}
.y57{bottom:686.293333pt;}
.y8e{bottom:692.426667pt;}
.yc3{bottom:694.040000pt;}
.y56{bottom:701.506667pt;}
.y8d{bottom:707.893333pt;}
.yc2{bottom:709.226667pt;}
.y55{bottom:716.960000pt;}
.y8c{bottom:723.106667pt;}
.yc1{bottom:724.706667pt;}
.y54{bottom:732.173333pt;}
.y8b{bottom:738.560000pt;}
.yc0{bottom:740.440000pt;}
.y53{bottom:746.840000pt;}
.y8a{bottom:753.773333pt;}
.ybf{bottom:757.800000pt;}
.y52{bottom:759.933333pt;}
.ybe{bottom:769.000000pt;}
.y89{bottom:769.533333pt;}
.y51{bottom:775.133333pt;}
.y17{bottom:787.400000pt;}
.y50{bottom:790.600000pt;}
.ybd{bottom:791.933333pt;}
.y88{bottom:798.066667pt;}
.y16{bottom:803.933333pt;}
.y4f{bottom:805.800000pt;}
.y87{bottom:813.533333pt;}
.ybb{bottom:814.866667pt;}
.y15{bottom:820.466667pt;}
.y86{bottom:829.000000pt;}
.y4e{bottom:833.533333pt;}
.y14{bottom:836.200000pt;}
.yba{bottom:837.800000pt;}
.yec{bottom:845.800000pt;}
.y4d{bottom:848.733333pt;}
.y13{bottom:851.400000pt;}
.y85{bottom:854.600000pt;}
.yb9{bottom:861.000000pt;}
.y4c{bottom:864.200000pt;}
.y12{bottom:866.866667pt;}
.y84{bottom:870.333333pt;}
.yeb{bottom:876.466667pt;}
.y4b{bottom:879.400000pt;}
.yb7{bottom:883.933333pt;}
.y11{bottom:885.266667pt;}
.y83{bottom:885.533333pt;}
.yea{bottom:891.666667pt;}
.y4a{bottom:894.866667pt;}
.y82{bottom:901.000000pt;}
.y10{bottom:903.706667pt;}
.yb5{bottom:906.893333pt;}
.ye9{bottom:907.173333pt;}
.y49{bottom:910.106667pt;}
.y81{bottom:916.226667pt;}
.ye8{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y48{bottom:925.560000pt;}
.yb3{bottom:929.840000pt;}
.y80{bottom:931.706667pt;}
.ye7{bottom:937.840000pt;}
.y47{bottom:940.773333pt;}
.yc{bottom:944.506667pt;}
.y7f{bottom:946.893333pt;}
.yb{bottom:949.560000pt;}
.yb2{bottom:953.026667pt;}
.ye6{bottom:953.040000pt;}
.y46{bottom:956.226667pt;}
.y7e{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.ye5{bottom:968.506667pt;}
.y45{bottom:970.893333pt;}
.y9{bottom:975.960000pt;}
.yb1{bottom:977.293333pt;}
.y7d{bottom:977.560000pt;}
.y44{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y7c{bottom:993.293333pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y7b{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.h17{height:22.933333pt;}
.h18{height:22.966667pt;}
.h16{height:23.200000pt;}
.he{height:29.791667pt;}
.h7{height:30.104167pt;}
.h12{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.hc{height:37.239583pt;}
.h4{height:37.630208pt;}
.h1d{height:38.828125pt;}
.h13{height:39.562500pt;}
.h15{height:41.393229pt;}
.h1a{height:43.724792pt;}
.h14{height:43.778125pt;}
.h19{height:43.831458pt;}
.h1b{height:43.884792pt;}
.hf{height:43.958333pt;}
.h1c{height:44.035937pt;}
.h6{height:45.156250pt;}
.hb{height:46.218750pt;}
.h11{height:48.159167pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h10{height:145.893333pt;}
.h0{height:1122.666667pt;}
.wa{width:51.766667pt;}
.w9{width:61.353333pt;}
.w4{width:64.266667pt;}
.wb{width:73.600000pt;}
.we{width:74.966667pt;}
.w8{width:79.733333pt;}
.wc{width:86.166667pt;}
.w3{width:96.000000pt;}
.wf{width:96.033333pt;}
.wd{width:144.826667pt;}
.w6{width:224.866667pt;}
.w5{width:429.733333pt;}
.w7{width:649.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.933333pt;}
.x2{left:9.599999pt;}
.x16{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.xc{left:69.633333pt;}
.x1{left:72.033322pt;}
.x10{left:74.699988pt;}
.x14{left:88.033322pt;}
.x1e{left:96.033322pt;}
.xf{left:103.506667pt;}
.xa{left:136.559988pt;}
.x19{left:152.840000pt;}
.x11{left:213.133322pt;}
.xd{left:214.726667pt;}
.x1c{left:217.133333pt;}
.x15{left:266.239988pt;}
.x1a{left:267.573333pt;}
.x1d{left:292.106667pt;}
.x7{left:323.039988pt;}
.x1b{left:341.973333pt;}
.x5{left:345.439988pt;}
.x12{left:350.226655pt;}
.x13{left:396.933322pt;}
.x17{left:493.506655pt;}
.xe{left:499.360000pt;}
.x9{left:546.559988pt;}
.x8{left:576.173322pt;}
.x6{left:619.133322pt;}
.xb{left:722.106655pt;}
}




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