
    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_397c3b04e894b1581810f203.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_0599eccbd0137aad47d201aa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7801dc193aef5e421012c218.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_4e5171bdb3f4dda6c8be2733.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_50d57a941a391038ff341f02.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_d4dd25bb73242324710d754b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_28a7e2e75bd9946f8d16ea93.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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:ffa;src:url('chunks/assets/font_c94fc0bfbe912a07545f09dc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e2485910d7a7348936ac94d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls2f{letter-spacing:-0.900000px;}
.ls3a{letter-spacing:-0.882000px;}
.ls20{letter-spacing:-0.590400px;}
.ls18{letter-spacing:-0.428400px;}
.lse{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.129600px;}
.ls13{letter-spacing:0.291600px;}
.ls7{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.378600px;}
.ls0{letter-spacing:1.260000px;}
.lsa{letter-spacing:1.980000px;}
.ls39{letter-spacing:2.501280px;}
.ls1c{letter-spacing:2.700000px;}
.ls10{letter-spacing:3.420000px;}
.ls37{letter-spacing:7.020000px;}
.ls28{letter-spacing:8.460000px;}
.ls29{letter-spacing:12.780000px;}
.ls8{letter-spacing:13.500000px;}
.ls22{letter-spacing:14.220000px;}
.ls25{letter-spacing:15.660000px;}
.ls2d{letter-spacing:17.100000px;}
.ls38{letter-spacing:18.540000px;}
.ls5{letter-spacing:20.700000px;}
.ls1f{letter-spacing:25.020000px;}
.ls1e{letter-spacing:28.620000px;}
.ls1b{letter-spacing:28.800000px;}
.ls32{letter-spacing:29.340000px;}
.ls15{letter-spacing:30.060000px;}
.ls31{letter-spacing:30.780000px;}
.ls17{letter-spacing:32.940000px;}
.ls26{letter-spacing:33.660000px;}
.ls12{letter-spacing:35.820000px;}
.ls21{letter-spacing:37.980000px;}
.lsf{letter-spacing:38.160000px;}
.ls14{letter-spacing:38.700000px;}
.ls24{letter-spacing:40.860000px;}
.ls19{letter-spacing:43.020000px;}
.ls30{letter-spacing:43.740000px;}
.ls1d{letter-spacing:45.180000px;}
.lsc{letter-spacing:48.060000px;}
.lsb{letter-spacing:48.240000px;}
.ls2c{letter-spacing:52.380000px;}
.ls23{letter-spacing:56.700000px;}
.ls6{letter-spacing:58.140000px;}
.ls2b{letter-spacing:59.580000px;}
.ls3{letter-spacing:60.300000px;}
.ls1a{letter-spacing:64.620000px;}
.ls2a{letter-spacing:68.940000px;}
.lsd{letter-spacing:71.820000px;}
.ls16{letter-spacing:94.140000px;}
.ls36{letter-spacing:102.180000px;}
.ls34{letter-spacing:116.460000px;}
.ls2e{letter-spacing:117.180000px;}
.ls35{letter-spacing:125.100000px;}
.ls4{letter-spacing:168.077280px;}
.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:-27.000000px;}
.ws6{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.351600px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._2c{margin-left:-16.218720px;}
._4f{margin-left:-10.278720px;}
._2f{margin-left:-6.370800px;}
._7{margin-left:-5.336640px;}
._6{margin-left:-4.098240px;}
._1c{margin-left:-2.386080px;}
._1{margin-left:-1.152000px;}
._0{width:1.164000px;}
._17{width:3.005280px;}
._31{width:4.635360px;}
._18{width:5.644080px;}
._19{width:6.907680px;}
._16{width:8.788320px;}
._15{width:10.081440px;}
._12{width:12.130560px;}
._2a{width:13.141440px;}
._28{width:14.742000px;}
._2d{width:16.035120px;}
._e{width:17.241840px;}
._f{width:18.587520px;}
._23{width:19.600560px;}
._c{width:22.829040px;}
._d{width:24.149520px;}
._34{width:25.299120px;}
._9{width:26.592480px;}
._8{width:28.051920px;}
._1f{width:29.652480px;}
._20{width:30.663360px;}
._2b{width:31.731120px;}
._21{width:32.946000px;}
._14{width:34.005600px;}
._3f{width:35.008320px;}
._13{width:36.178320px;}
._10{width:37.402560px;}
._30{width:38.684160px;}
._38{width:39.902640px;}
._3e{width:41.250240px;}
._3b{width:42.541200px;}
._b{width:44.198640px;}
._a{width:45.293760px;}
._1a{width:47.231280px;}
._25{width:48.242160px;}
._22{width:49.739280px;}
._29{width:51.696000px;}
._11{width:53.858880px;}
._3{width:55.682640px;}
._2{width:57.283200px;}
._24{width:58.946880px;}
._1b{width:60.204240px;}
._33{width:64.427040px;}
._32{width:65.595600px;}
._39{width:66.633840px;}
._3a{width:67.870080px;}
._43{width:68.880960px;}
._2e{width:70.677360px;}
._1d{width:72.446400px;}
._1e{width:73.905840px;}
._4c{width:76.237200px;}
._4d{width:77.540880px;}
._47{width:78.623280px;}
._45{width:79.747920px;}
._44{width:81.207360px;}
._26{width:84.198480px;}
._27{width:85.288080px;}
._35{width:88.957440px;}
._36{width:90.699120px;}
._40{width:92.538240px;}
._37{width:93.984480px;}
._48{width:95.332320px;}
._49{width:96.559680px;}
._3d{width:97.731600px;}
._3c{width:98.884560px;}
._4e{width:99.908640px;}
._4b{width:101.313360px;}
._41{width:103.166640px;}
._46{width:116.476560px;}
._4a{width:124.717920px;}
._42{width:158.708160px;}
._4{width:207.933840px;}
._5{width:209.213520px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.620000px;}
.y9{bottom:5.760000px;}
.y2{bottom:7.020000px;}
.ya{bottom:7.920000px;}
.y3{bottom:8.640000px;}
.y8{bottom:9.000000px;}
.y7{bottom:32.220000px;}
.y8e{bottom:107.856000px;}
.y37{bottom:110.916000px;}
.y27{bottom:115.416000px;}
.y4e{bottom:142.596000px;}
.y6a{bottom:144.036000px;}
.y41{bottom:145.476000px;}
.y36{bottom:147.096000px;}
.y26{bottom:151.590000px;}
.y88{bottom:177.330000px;}
.y4d{bottom:178.590000px;}
.y76{bottom:178.770000px;}
.y69{bottom:180.210000px;}
.y40{bottom:181.830000px;}
.y35{bottom:183.270000px;}
.y25{bottom:187.770000px;}
.y87{bottom:213.330000px;}
.y75{bottom:214.950000px;}
.y4c{bottom:216.390000px;}
.y3f{bottom:217.830000px;}
.y68{bottom:218.010000px;}
.y34{bottom:219.450000px;}
.y24{bottom:223.950000px;}
.y74{bottom:251.130000px;}
.y4b{bottom:252.750000px;}
.y83{bottom:254.010000px;}
.y67{bottom:254.190000px;}
.y33{bottom:255.630000px;}
.y23{bottom:260.310000px;}
.y73{bottom:287.490000px;}
.y4a{bottom:288.750000px;}
.y66{bottom:290.370000px;}
.y32{bottom:291.990000px;}
.y22{bottom:296.490000px;}
.y72{bottom:323.490000px;}
.y65{bottom:326.550000px;}
.y49{bottom:326.730000px;}
.y8d{bottom:327.990000px;}
.y31{bottom:328.170000px;}
.y21{bottom:332.670000px;}
.y71{bottom:361.335000px;}
.y7b{bottom:362.775000px;}
.y48{bottom:362.955000px;}
.y30{bottom:364.395000px;}
.y8c{bottom:366.015000px;}
.y20{bottom:368.895000px;}
.y70{bottom:397.515000px;}
.y47{bottom:399.135000px;}
.y2f{bottom:400.575000px;}
.y8b{bottom:402.015000px;}
.y82{bottom:402.195000px;}
.y1f{bottom:405.255000px;}
.y46{bottom:435.315000px;}
.y2e{bottom:436.935000px;}
.y81{bottom:438.375000px;}
.y8a{bottom:439.815000px;}
.y1e{bottom:441.435000px;}
.y6f{bottom:471.495000px;}
.y2d{bottom:472.935000px;}
.y45{bottom:473.115000px;}
.y80{bottom:474.555000px;}
.y89{bottom:476.175000px;}
.y1d{bottom:477.615000px;}
.y86{bottom:507.855000px;}
.y44{bottom:509.295000px;}
.y2c{bottom:510.735000px;}
.y7f{bottom:512.355000px;}
.y1c{bottom:513.795000px;}
.y85{bottom:544.035000px;}
.y43{bottom:545.475000px;}
.y2b{bottom:547.095000px;}
.y7e{bottom:548.535000px;}
.y1b{bottom:549.975000px;}
.y84{bottom:580.215000px;}
.y5e{bottom:581.835000px;}
.y2a{bottom:583.095000px;}
.y3e{bottom:583.275000px;}
.y7d{bottom:584.715000px;}
.y1a{bottom:586.335000px;}
.y5d{bottom:617.865000px;}
.y64{bottom:618.045000px;}
.y3d{bottom:619.485000px;}
.y7c{bottom:620.925000px;}
.y29{bottom:621.105000px;}
.y19{bottom:622.545000px;}
.y7a{bottom:654.045000px;}
.y63{bottom:654.225000px;}
.y42{bottom:655.665000px;}
.y28{bottom:657.105000px;}
.y3c{bottom:657.285000px;}
.y18{bottom:658.725000px;}
.y62{bottom:690.405000px;}
.y5b{bottom:692.025000px;}
.y3b{bottom:693.465000px;}
.y17{bottom:694.905000px;}
.y61{bottom:726.585000px;}
.y5a{bottom:728.205000px;}
.y3a{bottom:729.645000px;}
.y16{bottom:731.265000px;}
.y60{bottom:762.765000px;}
.y79{bottom:764.205000px;}
.y59{bottom:764.385000px;}
.y39{bottom:765.825000px;}
.y15{bottom:767.445000px;}
.y58{bottom:800.565000px;}
.y38{bottom:802.005000px;}
.y78{bottom:802.185000px;}
.y14{bottom:803.625000px;}
.y5f{bottom:836.745000px;}
.y6e{bottom:836.925000px;}
.y57{bottom:838.365000px;}
.y13{bottom:839.805000px;}
.y6d{bottom:873.150000px;}
.y56{bottom:874.590000px;}
.y12{bottom:876.210000px;}
.y6c{bottom:909.330000px;}
.y55{bottom:910.770000px;}
.y11{bottom:912.390000px;}
.y6b{bottom:945.510000px;}
.y77{bottom:946.950000px;}
.y54{bottom:947.130000px;}
.y10{bottom:948.570000px;}
.y53{bottom:983.310000px;}
.yf{bottom:984.750000px;}
.y5c{bottom:1019.310000px;}
.y52{bottom:1019.490000px;}
.ye{bottom:1020.930000px;}
.y51{bottom:1055.670000px;}
.yd{bottom:1057.290000px;}
.y50{bottom:1092.030000px;}
.yc{bottom:1093.470000px;}
.y4f{bottom:1128.030000px;}
.yb{bottom:1129.650000px;}
.y6{bottom:1153.080000px;}
.y4{bottom:1168.380000px;}
.y1{bottom:1193.580000px;}
.h5{height:14.400000px;}
.h2{height:26.640000px;}
.h7{height:30.960000px;}
.h4{height:53.709961px;}
.h10{height:60.917695px;}
.hf{height:61.575820px;}
.ha{height:65.884219px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hd{height:72.846211px;}
.he{height:82.635820px;}
.hc{height:82.676953px;}
.hb{height:84.898125px;}
.h11{height:86.585445px;}
.h9{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:44.100000px;}
.w6{width:63.756000px;}
.w5{width:755.070000px;}
.w2{width:840.240000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x5{left:8.640000px;}
.x17{left:11.520000px;}
.x9{left:18.360000px;}
.x4{left:35.640000px;}
.x7{left:42.480000px;}
.x2{left:69.120000px;}
.x6{left:84.959987px;}
.x19{left:106.235987px;}
.xb{left:116.495987px;}
.xa{left:127.475987px;}
.x12{left:133.595987px;}
.x15{left:216.029987px;}
.xc{left:258.149987px;}
.x18{left:321.014987px;}
.xf{left:335.954987px;}
.x13{left:344.234987px;}
.xe{left:348.014987px;}
.x14{left:354.494987px;}
.x11{left:378.434987px;}
.x16{left:392.654987px;}
.x10{left:407.234987px;}
.xd{left:446.474987px;}
.x8{left:797.550000px;}
.x3{left:844.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-0.800000pt;}
.ls3a{letter-spacing:-0.784000pt;}
.ls20{letter-spacing:-0.524800pt;}
.ls18{letter-spacing:-0.380800pt;}
.lse{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.115200pt;}
.ls13{letter-spacing:0.259200pt;}
.ls7{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.336533pt;}
.ls0{letter-spacing:1.120000pt;}
.lsa{letter-spacing:1.760000pt;}
.ls39{letter-spacing:2.223360pt;}
.ls1c{letter-spacing:2.400000pt;}
.ls10{letter-spacing:3.040000pt;}
.ls37{letter-spacing:6.240000pt;}
.ls28{letter-spacing:7.520000pt;}
.ls29{letter-spacing:11.360000pt;}
.ls8{letter-spacing:12.000000pt;}
.ls22{letter-spacing:12.640000pt;}
.ls25{letter-spacing:13.920000pt;}
.ls2d{letter-spacing:15.200000pt;}
.ls38{letter-spacing:16.480000pt;}
.ls5{letter-spacing:18.400000pt;}
.ls1f{letter-spacing:22.240000pt;}
.ls1e{letter-spacing:25.440000pt;}
.ls1b{letter-spacing:25.600000pt;}
.ls32{letter-spacing:26.080000pt;}
.ls15{letter-spacing:26.720000pt;}
.ls31{letter-spacing:27.360000pt;}
.ls17{letter-spacing:29.280000pt;}
.ls26{letter-spacing:29.920000pt;}
.ls12{letter-spacing:31.840000pt;}
.ls21{letter-spacing:33.760000pt;}
.lsf{letter-spacing:33.920000pt;}
.ls14{letter-spacing:34.400000pt;}
.ls24{letter-spacing:36.320000pt;}
.ls19{letter-spacing:38.240000pt;}
.ls30{letter-spacing:38.880000pt;}
.ls1d{letter-spacing:40.160000pt;}
.lsc{letter-spacing:42.720000pt;}
.lsb{letter-spacing:42.880000pt;}
.ls2c{letter-spacing:46.560000pt;}
.ls23{letter-spacing:50.400000pt;}
.ls6{letter-spacing:51.680000pt;}
.ls2b{letter-spacing:52.960000pt;}
.ls3{letter-spacing:53.600000pt;}
.ls1a{letter-spacing:57.440000pt;}
.ls2a{letter-spacing:61.280000pt;}
.lsd{letter-spacing:63.840000pt;}
.ls16{letter-spacing:83.680000pt;}
.ls36{letter-spacing:90.826667pt;}
.ls34{letter-spacing:103.520000pt;}
.ls2e{letter-spacing:104.160000pt;}
.ls35{letter-spacing:111.200000pt;}
.ls4{letter-spacing:149.402027pt;}
.ws1{word-spacing:-24.000000pt;}
.ws6{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.979200pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._2c{margin-left:-14.416640pt;}
._4f{margin-left:-9.136640pt;}
._2f{margin-left:-5.662933pt;}
._7{margin-left:-4.743680pt;}
._6{margin-left:-3.642880pt;}
._1c{margin-left:-2.120960pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.034667pt;}
._17{width:2.671360pt;}
._31{width:4.120320pt;}
._18{width:5.016960pt;}
._19{width:6.140160pt;}
._16{width:7.811840pt;}
._15{width:8.961280pt;}
._12{width:10.782720pt;}
._2a{width:11.681280pt;}
._28{width:13.104000pt;}
._2d{width:14.253440pt;}
._e{width:15.326080pt;}
._f{width:16.522240pt;}
._23{width:17.422720pt;}
._c{width:20.292480pt;}
._d{width:21.466240pt;}
._34{width:22.488107pt;}
._9{width:23.637760pt;}
._8{width:24.935040pt;}
._1f{width:26.357760pt;}
._20{width:27.256320pt;}
._2b{width:28.205440pt;}
._21{width:29.285333pt;}
._14{width:30.227200pt;}
._3f{width:31.118507pt;}
._13{width:32.158507pt;}
._10{width:33.246720pt;}
._30{width:34.385920pt;}
._38{width:35.469013pt;}
._3e{width:36.666880pt;}
._3b{width:37.814400pt;}
._b{width:39.287680pt;}
._a{width:40.261120pt;}
._1a{width:41.983360pt;}
._25{width:42.881920pt;}
._22{width:44.212693pt;}
._29{width:45.952000pt;}
._11{width:47.874560pt;}
._3{width:49.495680pt;}
._2{width:50.918400pt;}
._24{width:52.397227pt;}
._1b{width:53.514880pt;}
._33{width:57.268480pt;}
._32{width:58.307200pt;}
._39{width:59.230080pt;}
._3a{width:60.328960pt;}
._43{width:61.227520pt;}
._2e{width:62.824320pt;}
._1d{width:64.396800pt;}
._1e{width:65.694080pt;}
._4c{width:67.766400pt;}
._4d{width:68.925227pt;}
._47{width:69.887360pt;}
._45{width:70.887040pt;}
._44{width:72.184320pt;}
._26{width:74.843093pt;}
._27{width:75.811627pt;}
._35{width:79.073280pt;}
._36{width:80.621440pt;}
._40{width:82.256213pt;}
._37{width:83.541760pt;}
._48{width:84.739840pt;}
._49{width:85.830827pt;}
._3d{width:86.872533pt;}
._3c{width:87.897387pt;}
._4e{width:88.807680pt;}
._4b{width:90.056320pt;}
._41{width:91.703680pt;}
._46{width:103.534720pt;}
._4a{width:110.860373pt;}
._42{width:141.073920pt;}
._4{width:184.830080pt;}
._5{width:185.967573pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.440000pt;}
.y9{bottom:5.120000pt;}
.y2{bottom:6.240000pt;}
.ya{bottom:7.040000pt;}
.y3{bottom:7.680000pt;}
.y8{bottom:8.000000pt;}
.y7{bottom:28.640000pt;}
.y8e{bottom:95.872000pt;}
.y37{bottom:98.592000pt;}
.y27{bottom:102.592000pt;}
.y4e{bottom:126.752000pt;}
.y6a{bottom:128.032000pt;}
.y41{bottom:129.312000pt;}
.y36{bottom:130.752000pt;}
.y26{bottom:134.746667pt;}
.y88{bottom:157.626667pt;}
.y4d{bottom:158.746667pt;}
.y76{bottom:158.906667pt;}
.y69{bottom:160.186667pt;}
.y40{bottom:161.626667pt;}
.y35{bottom:162.906667pt;}
.y25{bottom:166.906667pt;}
.y87{bottom:189.626667pt;}
.y75{bottom:191.066667pt;}
.y4c{bottom:192.346667pt;}
.y3f{bottom:193.626667pt;}
.y68{bottom:193.786667pt;}
.y34{bottom:195.066667pt;}
.y24{bottom:199.066667pt;}
.y74{bottom:223.226667pt;}
.y4b{bottom:224.666667pt;}
.y83{bottom:225.786667pt;}
.y67{bottom:225.946667pt;}
.y33{bottom:227.226667pt;}
.y23{bottom:231.386667pt;}
.y73{bottom:255.546667pt;}
.y4a{bottom:256.666667pt;}
.y66{bottom:258.106667pt;}
.y32{bottom:259.546667pt;}
.y22{bottom:263.546667pt;}
.y72{bottom:287.546667pt;}
.y65{bottom:290.266667pt;}
.y49{bottom:290.426667pt;}
.y8d{bottom:291.546667pt;}
.y31{bottom:291.706667pt;}
.y21{bottom:295.706667pt;}
.y71{bottom:321.186667pt;}
.y7b{bottom:322.466667pt;}
.y48{bottom:322.626667pt;}
.y30{bottom:323.906667pt;}
.y8c{bottom:325.346667pt;}
.y20{bottom:327.906667pt;}
.y70{bottom:353.346667pt;}
.y47{bottom:354.786667pt;}
.y2f{bottom:356.066667pt;}
.y8b{bottom:357.346667pt;}
.y82{bottom:357.506667pt;}
.y1f{bottom:360.226667pt;}
.y46{bottom:386.946667pt;}
.y2e{bottom:388.386667pt;}
.y81{bottom:389.666667pt;}
.y8a{bottom:390.946667pt;}
.y1e{bottom:392.386667pt;}
.y6f{bottom:419.106667pt;}
.y2d{bottom:420.386667pt;}
.y45{bottom:420.546667pt;}
.y80{bottom:421.826667pt;}
.y89{bottom:423.266667pt;}
.y1d{bottom:424.546667pt;}
.y86{bottom:451.426667pt;}
.y44{bottom:452.706667pt;}
.y2c{bottom:453.986667pt;}
.y7f{bottom:455.426667pt;}
.y1c{bottom:456.706667pt;}
.y85{bottom:483.586667pt;}
.y43{bottom:484.866667pt;}
.y2b{bottom:486.306667pt;}
.y7e{bottom:487.586667pt;}
.y1b{bottom:488.866667pt;}
.y84{bottom:515.746667pt;}
.y5e{bottom:517.186667pt;}
.y2a{bottom:518.306667pt;}
.y3e{bottom:518.466667pt;}
.y7d{bottom:519.746667pt;}
.y1a{bottom:521.186667pt;}
.y5d{bottom:549.213333pt;}
.y64{bottom:549.373333pt;}
.y3d{bottom:550.653333pt;}
.y7c{bottom:551.933333pt;}
.y29{bottom:552.093333pt;}
.y19{bottom:553.373333pt;}
.y7a{bottom:581.373333pt;}
.y63{bottom:581.533333pt;}
.y42{bottom:582.813333pt;}
.y28{bottom:584.093333pt;}
.y3c{bottom:584.253333pt;}
.y18{bottom:585.533333pt;}
.y62{bottom:613.693333pt;}
.y5b{bottom:615.133333pt;}
.y3b{bottom:616.413333pt;}
.y17{bottom:617.693333pt;}
.y61{bottom:645.853333pt;}
.y5a{bottom:647.293333pt;}
.y3a{bottom:648.573333pt;}
.y16{bottom:650.013333pt;}
.y60{bottom:678.013333pt;}
.y79{bottom:679.293333pt;}
.y59{bottom:679.453333pt;}
.y39{bottom:680.733333pt;}
.y15{bottom:682.173333pt;}
.y58{bottom:711.613333pt;}
.y38{bottom:712.893333pt;}
.y78{bottom:713.053333pt;}
.y14{bottom:714.333333pt;}
.y5f{bottom:743.773333pt;}
.y6e{bottom:743.933333pt;}
.y57{bottom:745.213333pt;}
.y13{bottom:746.493333pt;}
.y6d{bottom:776.133333pt;}
.y56{bottom:777.413333pt;}
.y12{bottom:778.853333pt;}
.y6c{bottom:808.293333pt;}
.y55{bottom:809.573333pt;}
.y11{bottom:811.013333pt;}
.y6b{bottom:840.453333pt;}
.y77{bottom:841.733333pt;}
.y54{bottom:841.893333pt;}
.y10{bottom:843.173333pt;}
.y53{bottom:874.053333pt;}
.yf{bottom:875.333333pt;}
.y5c{bottom:906.053333pt;}
.y52{bottom:906.213333pt;}
.ye{bottom:907.493333pt;}
.y51{bottom:938.373333pt;}
.yd{bottom:939.813333pt;}
.y50{bottom:970.693333pt;}
.yc{bottom:971.973333pt;}
.y4f{bottom:1002.693333pt;}
.yb{bottom:1004.133333pt;}
.y6{bottom:1024.960000pt;}
.y4{bottom:1038.560000pt;}
.y1{bottom:1060.960000pt;}
.h5{height:12.800000pt;}
.h2{height:23.680000pt;}
.h7{height:27.520000pt;}
.h4{height:47.742188pt;}
.h10{height:54.149062pt;}
.hf{height:54.734062pt;}
.ha{height:58.563750pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hd{height:64.752187pt;}
.he{height:73.454062pt;}
.hc{height:73.490625pt;}
.hb{height:75.465000pt;}
.h11{height:76.964840pt;}
.h9{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:39.200000pt;}
.w6{width:56.672000pt;}
.w5{width:671.173333pt;}
.w2{width:746.880000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x5{left:7.680000pt;}
.x17{left:10.240000pt;}
.x9{left:16.320000pt;}
.x4{left:31.680000pt;}
.x7{left:37.760000pt;}
.x2{left:61.440000pt;}
.x6{left:75.519988pt;}
.x19{left:94.431988pt;}
.xb{left:103.551988pt;}
.xa{left:113.311988pt;}
.x12{left:118.751988pt;}
.x15{left:192.026655pt;}
.xc{left:229.466655pt;}
.x18{left:285.346655pt;}
.xf{left:298.626655pt;}
.x13{left:305.986655pt;}
.xe{left:309.346655pt;}
.x14{left:315.106655pt;}
.x11{left:336.386655pt;}
.x16{left:349.026655pt;}
.x10{left:361.986655pt;}
.xd{left:396.866655pt;}
.x8{left:708.933333pt;}
.x3{left:750.720000pt;}
}




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