
    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_3e299850b08bbb50f446e4d1.woff')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_41d32ffc8ba046546bf05e22.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad3a8daa9a3685bf4fab6c8e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ed13eaecedd498625ef3708d.woff')format("woff");}.ff4{font-family:ff4;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;}
.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;}
.v1{vertical-align:20.896560px;}
.ls34{letter-spacing:-1.374480px;}
.ls24{letter-spacing:-1.135440px;}
.ls28{letter-spacing:-1.075680px;}
.ls27{letter-spacing:-0.657360px;}
.ls26{letter-spacing:-0.478080px;}
.ls22{letter-spacing:-0.358560px;}
.ls20{letter-spacing:-0.239040px;}
.ls25{letter-spacing:-0.119520px;}
.ls23{letter-spacing:-0.059760px;}
.ls21{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.047808px;}
.ls35{letter-spacing:0.059760px;}
.ls10{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.131472px;}
.ls1{letter-spacing:0.179280px;}
.ls11{letter-spacing:0.227088px;}
.ls6{letter-spacing:0.239040px;}
.ls1c{letter-spacing:0.250992px;}
.ls19{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.358560px;}
.lsf{letter-spacing:0.896400px;}
.ls33{letter-spacing:0.956160px;}
.lsd{letter-spacing:1.613520px;}
.lsc{letter-spacing:2.330640px;}
.ls2c{letter-spacing:3.047760px;}
.ls17{letter-spacing:3.764880px;}
.ls7{letter-spacing:4.482000px;}
.ls14{letter-spacing:5.199120px;}
.ls29{letter-spacing:5.282784px;}
.ls2b{letter-spacing:5.898312px;}
.lse{letter-spacing:5.916240px;}
.ls2d{letter-spacing:6.633360px;}
.ls18{letter-spacing:6.660000px;}
.ls2a{letter-spacing:7.350480px;}
.ls9{letter-spacing:8.121384px;}
.ls8{letter-spacing:8.127360px;}
.ls1f{letter-spacing:8.766792px;}
.ls31{letter-spacing:8.820000px;}
.ls1e{letter-spacing:8.844480px;}
.ls5{letter-spacing:9.561600px;}
.ls4{letter-spacing:9.567576px;}
.ls32{letter-spacing:10.230912px;}
.lsb{letter-spacing:10.278720px;}
.lsa{letter-spacing:10.995840px;}
.ls1d{letter-spacing:11.712960px;}
.ls12{letter-spacing:12.430080px;}
.ls16{letter-spacing:13.147200px;}
.ls15{letter-spacing:14.581440px;}
.ls1b{letter-spacing:16.732800px;}
.ls2e{letter-spacing:22.500000px;}
.ls2f{letter-spacing:23.246640px;}
.ls1a{letter-spacing:28.266480px;}
.ls30{letter-spacing:44.820000px;}
.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;}
}
.ws63{word-spacing:-15.896160px;}
.ws8{word-spacing:-15.298560px;}
.ws9{word-spacing:-15.179040px;}
.ws0{word-spacing:-15.059520px;}
.ws65{word-spacing:-14.999760px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.880240px;}
.ws6{word-spacing:-14.820480px;}
.ws5{word-spacing:-14.700960px;}
.ws2{word-spacing:-14.581440px;}
.ws4{word-spacing:-13.804560px;}
.ws64{word-spacing:-13.565520px;}
.ws1{word-spacing:-9.720000px;}
.ws14{word-spacing:-0.358560px;}
.ws4a{word-spacing:-0.239040px;}
.ws10{word-spacing:-0.179280px;}
.ws1a{word-spacing:-0.119520px;}
.ws76{word-spacing:-0.059760px;}
.wsb{word-spacing:0.000000px;}
.ws28{word-spacing:0.059760px;}
.ws17{word-spacing:0.119520px;}
.ws31{word-spacing:0.239040px;}
.ws1c{word-spacing:0.358560px;}
.ws1b{word-spacing:0.418320px;}
.ws26{word-spacing:0.478080px;}
.ws30{word-spacing:0.537840px;}
.ws80{word-spacing:0.657360px;}
.wsf{word-spacing:0.717120px;}
.ws11{word-spacing:0.776880px;}
.ws13{word-spacing:0.956160px;}
.ws49{word-spacing:1.075680px;}
.ws68{word-spacing:1.135440px;}
.ws12{word-spacing:1.254960px;}
.ws29{word-spacing:1.494000px;}
.ws51{word-spacing:1.673280px;}
.ws67{word-spacing:1.852560px;}
.wse{word-spacing:1.972080px;}
.ws45{word-spacing:2.211120px;}
.ws2a{word-spacing:2.390400px;}
.ws46{word-spacing:2.689200px;}
.wsd{word-spacing:2.868480px;}
.ws5d{word-spacing:2.928240px;}
.wsc{word-spacing:3.047760px;}
.ws44{word-spacing:3.107520px;}
.wsa{word-spacing:3.286800px;}
.ws1e{word-spacing:3.406320px;}
.ws5b{word-spacing:3.645360px;}
.ws1f{word-spacing:4.123440px;}
.ws20{word-spacing:4.362480px;}
.ws1d{word-spacing:4.541760px;}
.ws18{word-spacing:4.840560px;}
.ws7f{word-spacing:4.960080px;}
.ws19{word-spacing:5.079600px;}
.ws16{word-spacing:5.258880px;}
.ws78{word-spacing:5.438160px;}
.ws2f{word-spacing:5.557680px;}
.ws66{word-spacing:5.677200px;}
.ws2e{word-spacing:5.796720px;}
.ws15{word-spacing:5.976000px;}
.ws3d{word-spacing:6.274800px;}
.ws5e{word-spacing:6.394320px;}
.ws23{word-spacing:6.513840px;}
.ws71{word-spacing:6.693120px;}
.ws70{word-spacing:6.872400px;}
.ws55{word-spacing:6.991920px;}
.ws22{word-spacing:7.051680px;}
.ws3c{word-spacing:7.290720px;}
.ws6e{word-spacing:7.470000px;}
.ws21{word-spacing:7.768800px;}
.ws6c{word-spacing:7.888320px;}
.ws25{word-spacing:8.007840px;}
.ws6d{word-spacing:8.187120px;}
.ws24{word-spacing:8.485920px;}
.ws69{word-spacing:8.724960px;}
.ws6b{word-spacing:8.904240px;}
.ws6a{word-spacing:9.203040px;}
.ws2d{word-spacing:9.442080px;}
.ws2c{word-spacing:9.621360px;}
.ws32{word-spacing:9.920160px;}
.ws3b{word-spacing:10.159200px;}
.ws2b{word-spacing:10.338480px;}
.ws39{word-spacing:10.517760px;}
.ws27{word-spacing:10.637280px;}
.ws5a{word-spacing:10.876320px;}
.ws53{word-spacing:11.055600px;}
.ws52{word-spacing:11.115360px;}
.ws38{word-spacing:11.354400px;}
.ws54{word-spacing:11.473920px;}
.ws87{word-spacing:11.533680px;}
.ws3a{word-spacing:11.593440px;}
.ws85{word-spacing:11.772720px;}
.ws62{word-spacing:11.952000px;}
.ws50{word-spacing:12.071520px;}
.ws41{word-spacing:12.310560px;}
.ws4f{word-spacing:12.489840px;}
.ws86{word-spacing:12.788640px;}
.ws56{word-spacing:13.027680px;}
.ws3f{word-spacing:13.147200px;}
.ws40{word-spacing:13.505760px;}
.ws37{word-spacing:13.744800px;}
.ws4c{word-spacing:13.924080px;}
.ws7a{word-spacing:14.222880px;}
.ws3e{word-spacing:14.461920px;}
.ws79{word-spacing:14.641200px;}
.ws58{word-spacing:15.179040px;}
.ws59{word-spacing:15.358320px;}
.ws35{word-spacing:15.657120px;}
.ws36{word-spacing:15.776640px;}
.ws34{word-spacing:15.896160px;}
.ws4b{word-spacing:16.374240px;}
.ws5c{word-spacing:16.613280px;}
.ws57{word-spacing:16.792560px;}
.ws61{word-spacing:16.971840px;}
.ws33{word-spacing:17.091360px;}
.ws48{word-spacing:17.509680px;}
.ws47{word-spacing:18.047520px;}
.ws82{word-spacing:18.525600px;}
.ws73{word-spacing:18.764640px;}
.ws83{word-spacing:18.943920px;}
.ws81{word-spacing:19.003680px;}
.ws72{word-spacing:19.481760px;}
.ws7e{word-spacing:19.959840px;}
.ws7b{word-spacing:20.198880px;}
.ws42{word-spacing:20.796480px;}
.ws43{word-spacing:20.916000px;}
.ws7d{word-spacing:21.453840px;}
.ws7c{word-spacing:22.170960px;}
.ws84{word-spacing:22.888080px;}
.ws77{word-spacing:24.023520px;}
.ws60{word-spacing:27.907920px;}
.ws5f{word-spacing:28.326240px;}
.ws6f{word-spacing:29.760480px;}
.ws75{word-spacing:38.425680px;}
.ws4e{word-spacing:41.294160px;}
.ws88{word-spacing:44.700480px;}
.ws89{word-spacing:44.760240px;}
.ws74{word-spacing:51.035040px;}
.ws4d{word-spacing:61.433280px;}
._7{margin-left:-2.288016px;}
._1{margin-left:-1.121760px;}
._0{width:1.069704px;}
._2{width:2.070216px;}
._8{width:3.160512px;}
._5{width:4.242960px;}
._3{width:5.683176px;}
._9{width:6.693120px;}
._6{width:8.205048px;}
._4{width:10.416168px;}
._b{width:12.967920px;}
._c{width:29.109096px;}
._a{width:62.036856px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.600000px;}
.y81{bottom:56.520000px;}
.ya3{bottom:57.600000px;}
.y46{bottom:91.800000px;}
.y70{bottom:121.078980px;}
.ya0{bottom:121.400640px;}
.y55{bottom:124.355700px;}
.y9f{bottom:139.044780px;}
.y6f{bottom:139.081680px;}
.y39{bottom:140.588820px;}
.y54{bottom:142.358400px;}
.y9e{bottom:156.688920px;}
.y6e{bottom:157.084380px;}
.y38{bottom:158.591520px;}
.y53{bottom:160.361100px;}
.y9d{bottom:174.333060px;}
.y6d{bottom:175.087080px;}
.y37{bottom:176.594220px;}
.y52{bottom:178.363800px;}
.y9c{bottom:191.977200px;}
.y6c{bottom:193.089780px;}
.y36{bottom:194.596920px;}
.y51{bottom:196.366500px;}
.y7f{bottom:197.460000px;}
.y9b{bottom:209.621340px;}
.y6b{bottom:211.092480px;}
.y35{bottom:212.599620px;}
.y50{bottom:214.369200px;}
.y9a{bottom:227.265480px;}
.y34{bottom:230.602320px;}
.y4f{bottom:232.371900px;}
.ya2{bottom:234.540000px;}
.y99{bottom:244.909620px;}
.y33{bottom:248.605020px;}
.y4e{bottom:250.374600px;}
.ya5{bottom:256.137300px;}
.y98{bottom:262.553760px;}
.y32{bottom:266.249160px;}
.y4d{bottom:268.377300px;}
.ya4{bottom:274.140000px;}
.y97{bottom:280.197900px;}
.y31{bottom:283.893300px;}
.y4c{bottom:286.380000px;}
.y96{bottom:297.842040px;}
.y30{bottom:301.537440px;}
.ya1{bottom:306.540000px;}
.y45{bottom:309.780000px;}
.y95{bottom:315.486180px;}
.y2f{bottom:319.181580px;}
.y4a{bottom:331.007580px;}
.y94{bottom:333.130320px;}
.y2e{bottom:336.825720px;}
.y49{bottom:348.651720px;}
.y93{bottom:350.774460px;}
.y2d{bottom:354.469860px;}
.y48{bottom:366.295860px;}
.y92{bottom:368.418600px;}
.y2c{bottom:372.114000px;}
.y47{bottom:383.940000px;}
.y91{bottom:386.062740px;}
.y2b{bottom:389.758140px;}
.y90{bottom:403.706880px;}
.y2a{bottom:407.402280px;}
.y44{bottom:415.800000px;}
.y8f{bottom:421.351020px;}
.y29{bottom:425.046420px;}
.y8e{bottom:438.995160px;}
.y28{bottom:442.690560px;}
.y8d{bottom:456.639300px;}
.y27{bottom:460.334700px;}
.y8c{bottom:474.283440px;}
.y26{bottom:477.978840px;}
.y8b{bottom:491.927580px;}
.y25{bottom:495.622980px;}
.y8a{bottom:509.571720px;}
.y24{bottom:513.267120px;}
.y89{bottom:527.215860px;}
.y23{bottom:530.911260px;}
.y88{bottom:544.860000px;}
.y22{bottom:548.555400px;}
.y87{bottom:562.680000px;}
.y21{bottom:566.199540px;}
.y86{bottom:580.320000px;}
.y20{bottom:583.843680px;}
.y85{bottom:597.960000px;}
.y1f{bottom:601.667100px;}
.y84{bottom:615.600000px;}
.y1e{bottom:619.669800px;}
.y80{bottom:629.640000px;}
.y1d{bottom:637.672500px;}
.y83{bottom:650.875860px;}
.y1c{bottom:655.675200px;}
.y82{bottom:668.520000px;}
.y1b{bottom:673.677900px;}
.y1a{bottom:691.680600px;}
.y7e{bottom:700.380000px;}
.y19{bottom:709.683300px;}
.y18{bottom:727.686000px;}
.y17{bottom:745.688700px;}
.y16{bottom:763.691400px;}
.y6a{bottom:780.426000px;}
.y15{bottom:781.694100px;}
.y69{bottom:798.428700px;}
.y14{bottom:799.696800px;}
.y68{bottom:816.431400px;}
.y13{bottom:817.699500px;}
.y67{bottom:834.434100px;}
.y12{bottom:835.702200px;}
.y66{bottom:852.436800px;}
.y11{bottom:853.704900px;}
.y65{bottom:870.439500px;}
.y10{bottom:871.707600px;}
.y64{bottom:888.442200px;}
.y43{bottom:889.545960px;}
.yf{bottom:889.710300px;}
.y63{bottom:906.444900px;}
.y42{bottom:907.548660px;}
.ye{bottom:907.713000px;}
.y7d{bottom:924.387840px;}
.y62{bottom:924.447600px;}
.y41{bottom:925.551360px;}
.yd{bottom:925.715700px;}
.y7c{bottom:942.390540px;}
.y61{bottom:942.450300px;}
.y40{bottom:943.554060px;}
.yc{bottom:943.718400px;}
.y7b{bottom:960.393240px;}
.y60{bottom:960.453000px;}
.y3f{bottom:961.556760px;}
.yb{bottom:961.721100px;}
.y7a{bottom:978.395940px;}
.y5f{bottom:978.455700px;}
.y3e{bottom:979.559460px;}
.ya{bottom:979.723800px;}
.y79{bottom:996.398640px;}
.y5e{bottom:996.458400px;}
.y3d{bottom:997.562160px;}
.y9{bottom:997.726500px;}
.y78{bottom:1014.401340px;}
.y5d{bottom:1014.461100px;}
.y3c{bottom:1015.564860px;}
.y8{bottom:1015.729200px;}
.y77{bottom:1032.404040px;}
.y5c{bottom:1032.463800px;}
.y3b{bottom:1033.567560px;}
.y7{bottom:1033.731900px;}
.y76{bottom:1050.406740px;}
.y5b{bottom:1050.466500px;}
.y3a{bottom:1051.570260px;}
.y6{bottom:1051.734600px;}
.y75{bottom:1068.409440px;}
.y5a{bottom:1068.469200px;}
.y5{bottom:1069.737300px;}
.y74{bottom:1086.412140px;}
.y59{bottom:1086.471900px;}
.y4{bottom:1087.731720px;}
.y73{bottom:1104.414840px;}
.y58{bottom:1104.474600px;}
.y3{bottom:1105.375860px;}
.y72{bottom:1122.417540px;}
.y57{bottom:1122.477300px;}
.y2{bottom:1123.015860px;}
.y71{bottom:1140.420240px;}
.y56{bottom:1140.480000px;}
.y1{bottom:1140.660000px;}
.h7{height:58.621992px;}
.h4{height:58.651172px;}
.h3{height:59.055154px;}
.h5{height:59.071714px;}
.h2{height:60.226875px;}
.ha{height:70.740000px;}
.hc{height:72.001500px;}
.h8{height:106.020000px;}
.h9{height:211.500000px;}
.hb{height:453.600000px;}
.h6{height:461.340000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:319.500000px;}
.w2{width:336.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x9{left:99.900000px;}
.x1{left:108.000000px;}
.x2{left:129.598740px;}
.x6{left:328.140000px;}
.x5{left:456.300000px;}
.x4{left:464.224860px;}
.x8{left:473.040000px;}
.x3{left:485.828100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.574720pt;}
.ls34{letter-spacing:-1.221760pt;}
.ls24{letter-spacing:-1.009280pt;}
.ls28{letter-spacing:-0.956160pt;}
.ls27{letter-spacing:-0.584320pt;}
.ls26{letter-spacing:-0.424960pt;}
.ls22{letter-spacing:-0.318720pt;}
.ls20{letter-spacing:-0.212480pt;}
.ls25{letter-spacing:-0.106240pt;}
.ls23{letter-spacing:-0.053120pt;}
.ls21{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.042496pt;}
.ls35{letter-spacing:0.053120pt;}
.ls10{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.116864pt;}
.ls1{letter-spacing:0.159360pt;}
.ls11{letter-spacing:0.201856pt;}
.ls6{letter-spacing:0.212480pt;}
.ls1c{letter-spacing:0.223104pt;}
.ls19{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.318720pt;}
.lsf{letter-spacing:0.796800pt;}
.ls33{letter-spacing:0.849920pt;}
.lsd{letter-spacing:1.434240pt;}
.lsc{letter-spacing:2.071680pt;}
.ls2c{letter-spacing:2.709120pt;}
.ls17{letter-spacing:3.346560pt;}
.ls7{letter-spacing:3.984000pt;}
.ls14{letter-spacing:4.621440pt;}
.ls29{letter-spacing:4.695808pt;}
.ls2b{letter-spacing:5.242944pt;}
.lse{letter-spacing:5.258880pt;}
.ls2d{letter-spacing:5.896320pt;}
.ls18{letter-spacing:5.920000pt;}
.ls2a{letter-spacing:6.533760pt;}
.ls9{letter-spacing:7.219008pt;}
.ls8{letter-spacing:7.224320pt;}
.ls1f{letter-spacing:7.792704pt;}
.ls31{letter-spacing:7.840000pt;}
.ls1e{letter-spacing:7.861760pt;}
.ls5{letter-spacing:8.499200pt;}
.ls4{letter-spacing:8.504512pt;}
.ls32{letter-spacing:9.094144pt;}
.lsb{letter-spacing:9.136640pt;}
.lsa{letter-spacing:9.774080pt;}
.ls1d{letter-spacing:10.411520pt;}
.ls12{letter-spacing:11.048960pt;}
.ls16{letter-spacing:11.686400pt;}
.ls15{letter-spacing:12.961280pt;}
.ls1b{letter-spacing:14.873600pt;}
.ls2e{letter-spacing:20.000000pt;}
.ls2f{letter-spacing:20.663680pt;}
.ls1a{letter-spacing:25.125760pt;}
.ls30{letter-spacing:39.840000pt;}
.ws63{word-spacing:-14.129920pt;}
.ws8{word-spacing:-13.598720pt;}
.ws9{word-spacing:-13.492480pt;}
.ws0{word-spacing:-13.386240pt;}
.ws65{word-spacing:-13.333120pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.226880pt;}
.ws6{word-spacing:-13.173760pt;}
.ws5{word-spacing:-13.067520pt;}
.ws2{word-spacing:-12.961280pt;}
.ws4{word-spacing:-12.270720pt;}
.ws64{word-spacing:-12.058240pt;}
.ws1{word-spacing:-8.640000pt;}
.ws14{word-spacing:-0.318720pt;}
.ws4a{word-spacing:-0.212480pt;}
.ws10{word-spacing:-0.159360pt;}
.ws1a{word-spacing:-0.106240pt;}
.ws76{word-spacing:-0.053120pt;}
.wsb{word-spacing:0.000000pt;}
.ws28{word-spacing:0.053120pt;}
.ws17{word-spacing:0.106240pt;}
.ws31{word-spacing:0.212480pt;}
.ws1c{word-spacing:0.318720pt;}
.ws1b{word-spacing:0.371840pt;}
.ws26{word-spacing:0.424960pt;}
.ws30{word-spacing:0.478080pt;}
.ws80{word-spacing:0.584320pt;}
.wsf{word-spacing:0.637440pt;}
.ws11{word-spacing:0.690560pt;}
.ws13{word-spacing:0.849920pt;}
.ws49{word-spacing:0.956160pt;}
.ws68{word-spacing:1.009280pt;}
.ws12{word-spacing:1.115520pt;}
.ws29{word-spacing:1.328000pt;}
.ws51{word-spacing:1.487360pt;}
.ws67{word-spacing:1.646720pt;}
.wse{word-spacing:1.752960pt;}
.ws45{word-spacing:1.965440pt;}
.ws2a{word-spacing:2.124800pt;}
.ws46{word-spacing:2.390400pt;}
.wsd{word-spacing:2.549760pt;}
.ws5d{word-spacing:2.602880pt;}
.wsc{word-spacing:2.709120pt;}
.ws44{word-spacing:2.762240pt;}
.wsa{word-spacing:2.921600pt;}
.ws1e{word-spacing:3.027840pt;}
.ws5b{word-spacing:3.240320pt;}
.ws1f{word-spacing:3.665280pt;}
.ws20{word-spacing:3.877760pt;}
.ws1d{word-spacing:4.037120pt;}
.ws18{word-spacing:4.302720pt;}
.ws7f{word-spacing:4.408960pt;}
.ws19{word-spacing:4.515200pt;}
.ws16{word-spacing:4.674560pt;}
.ws78{word-spacing:4.833920pt;}
.ws2f{word-spacing:4.940160pt;}
.ws66{word-spacing:5.046400pt;}
.ws2e{word-spacing:5.152640pt;}
.ws15{word-spacing:5.312000pt;}
.ws3d{word-spacing:5.577600pt;}
.ws5e{word-spacing:5.683840pt;}
.ws23{word-spacing:5.790080pt;}
.ws71{word-spacing:5.949440pt;}
.ws70{word-spacing:6.108800pt;}
.ws55{word-spacing:6.215040pt;}
.ws22{word-spacing:6.268160pt;}
.ws3c{word-spacing:6.480640pt;}
.ws6e{word-spacing:6.640000pt;}
.ws21{word-spacing:6.905600pt;}
.ws6c{word-spacing:7.011840pt;}
.ws25{word-spacing:7.118080pt;}
.ws6d{word-spacing:7.277440pt;}
.ws24{word-spacing:7.543040pt;}
.ws69{word-spacing:7.755520pt;}
.ws6b{word-spacing:7.914880pt;}
.ws6a{word-spacing:8.180480pt;}
.ws2d{word-spacing:8.392960pt;}
.ws2c{word-spacing:8.552320pt;}
.ws32{word-spacing:8.817920pt;}
.ws3b{word-spacing:9.030400pt;}
.ws2b{word-spacing:9.189760pt;}
.ws39{word-spacing:9.349120pt;}
.ws27{word-spacing:9.455360pt;}
.ws5a{word-spacing:9.667840pt;}
.ws53{word-spacing:9.827200pt;}
.ws52{word-spacing:9.880320pt;}
.ws38{word-spacing:10.092800pt;}
.ws54{word-spacing:10.199040pt;}
.ws87{word-spacing:10.252160pt;}
.ws3a{word-spacing:10.305280pt;}
.ws85{word-spacing:10.464640pt;}
.ws62{word-spacing:10.624000pt;}
.ws50{word-spacing:10.730240pt;}
.ws41{word-spacing:10.942720pt;}
.ws4f{word-spacing:11.102080pt;}
.ws86{word-spacing:11.367680pt;}
.ws56{word-spacing:11.580160pt;}
.ws3f{word-spacing:11.686400pt;}
.ws40{word-spacing:12.005120pt;}
.ws37{word-spacing:12.217600pt;}
.ws4c{word-spacing:12.376960pt;}
.ws7a{word-spacing:12.642560pt;}
.ws3e{word-spacing:12.855040pt;}
.ws79{word-spacing:13.014400pt;}
.ws58{word-spacing:13.492480pt;}
.ws59{word-spacing:13.651840pt;}
.ws35{word-spacing:13.917440pt;}
.ws36{word-spacing:14.023680pt;}
.ws34{word-spacing:14.129920pt;}
.ws4b{word-spacing:14.554880pt;}
.ws5c{word-spacing:14.767360pt;}
.ws57{word-spacing:14.926720pt;}
.ws61{word-spacing:15.086080pt;}
.ws33{word-spacing:15.192320pt;}
.ws48{word-spacing:15.564160pt;}
.ws47{word-spacing:16.042240pt;}
.ws82{word-spacing:16.467200pt;}
.ws73{word-spacing:16.679680pt;}
.ws83{word-spacing:16.839040pt;}
.ws81{word-spacing:16.892160pt;}
.ws72{word-spacing:17.317120pt;}
.ws7e{word-spacing:17.742080pt;}
.ws7b{word-spacing:17.954560pt;}
.ws42{word-spacing:18.485760pt;}
.ws43{word-spacing:18.592000pt;}
.ws7d{word-spacing:19.070080pt;}
.ws7c{word-spacing:19.707520pt;}
.ws84{word-spacing:20.344960pt;}
.ws77{word-spacing:21.354240pt;}
.ws60{word-spacing:24.807040pt;}
.ws5f{word-spacing:25.178880pt;}
.ws6f{word-spacing:26.453760pt;}
.ws75{word-spacing:34.156160pt;}
.ws4e{word-spacing:36.705920pt;}
.ws88{word-spacing:39.733760pt;}
.ws89{word-spacing:39.786880pt;}
.ws74{word-spacing:45.364480pt;}
.ws4d{word-spacing:54.607360pt;}
._7{margin-left:-2.033792pt;}
._1{margin-left:-0.997120pt;}
._0{width:0.950848pt;}
._2{width:1.840192pt;}
._8{width:2.809344pt;}
._5{width:3.771520pt;}
._3{width:5.051712pt;}
._9{width:5.949440pt;}
._6{width:7.293376pt;}
._4{width:9.258816pt;}
._b{width:11.527040pt;}
._c{width:25.874752pt;}
._a{width:55.143872pt;}
.fs1{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:3.200000pt;}
.y81{bottom:50.240000pt;}
.ya3{bottom:51.200000pt;}
.y46{bottom:81.600000pt;}
.y70{bottom:107.625760pt;}
.ya0{bottom:107.911680pt;}
.y55{bottom:110.538400pt;}
.y9f{bottom:123.595360pt;}
.y6f{bottom:123.628160pt;}
.y39{bottom:124.967840pt;}
.y54{bottom:126.540800pt;}
.y9e{bottom:139.279040pt;}
.y6e{bottom:139.630560pt;}
.y38{bottom:140.970240pt;}
.y53{bottom:142.543200pt;}
.y9d{bottom:154.962720pt;}
.y6d{bottom:155.632960pt;}
.y37{bottom:156.972640pt;}
.y52{bottom:158.545600pt;}
.y9c{bottom:170.646400pt;}
.y6c{bottom:171.635360pt;}
.y36{bottom:172.975040pt;}
.y51{bottom:174.548000pt;}
.y7f{bottom:175.520000pt;}
.y9b{bottom:186.330080pt;}
.y6b{bottom:187.637760pt;}
.y35{bottom:188.977440pt;}
.y50{bottom:190.550400pt;}
.y9a{bottom:202.013760pt;}
.y34{bottom:204.979840pt;}
.y4f{bottom:206.552800pt;}
.ya2{bottom:208.480000pt;}
.y99{bottom:217.697440pt;}
.y33{bottom:220.982240pt;}
.y4e{bottom:222.555200pt;}
.ya5{bottom:227.677600pt;}
.y98{bottom:233.381120pt;}
.y32{bottom:236.665920pt;}
.y4d{bottom:238.557600pt;}
.ya4{bottom:243.680000pt;}
.y97{bottom:249.064800pt;}
.y31{bottom:252.349600pt;}
.y4c{bottom:254.560000pt;}
.y96{bottom:264.748480pt;}
.y30{bottom:268.033280pt;}
.ya1{bottom:272.480000pt;}
.y45{bottom:275.360000pt;}
.y95{bottom:280.432160pt;}
.y2f{bottom:283.716960pt;}
.y4a{bottom:294.228960pt;}
.y94{bottom:296.115840pt;}
.y2e{bottom:299.400640pt;}
.y49{bottom:309.912640pt;}
.y93{bottom:311.799520pt;}
.y2d{bottom:315.084320pt;}
.y48{bottom:325.596320pt;}
.y92{bottom:327.483200pt;}
.y2c{bottom:330.768000pt;}
.y47{bottom:341.280000pt;}
.y91{bottom:343.166880pt;}
.y2b{bottom:346.451680pt;}
.y90{bottom:358.850560pt;}
.y2a{bottom:362.135360pt;}
.y44{bottom:369.600000pt;}
.y8f{bottom:374.534240pt;}
.y29{bottom:377.819040pt;}
.y8e{bottom:390.217920pt;}
.y28{bottom:393.502720pt;}
.y8d{bottom:405.901600pt;}
.y27{bottom:409.186400pt;}
.y8c{bottom:421.585280pt;}
.y26{bottom:424.870080pt;}
.y8b{bottom:437.268960pt;}
.y25{bottom:440.553760pt;}
.y8a{bottom:452.952640pt;}
.y24{bottom:456.237440pt;}
.y89{bottom:468.636320pt;}
.y23{bottom:471.921120pt;}
.y88{bottom:484.320000pt;}
.y22{bottom:487.604800pt;}
.y87{bottom:500.160000pt;}
.y21{bottom:503.288480pt;}
.y86{bottom:515.840000pt;}
.y20{bottom:518.972160pt;}
.y85{bottom:531.520000pt;}
.y1f{bottom:534.815200pt;}
.y84{bottom:547.200000pt;}
.y1e{bottom:550.817600pt;}
.y80{bottom:559.680000pt;}
.y1d{bottom:566.820000pt;}
.y83{bottom:578.556320pt;}
.y1c{bottom:582.822400pt;}
.y82{bottom:594.240000pt;}
.y1b{bottom:598.824800pt;}
.y1a{bottom:614.827200pt;}
.y7e{bottom:622.560000pt;}
.y19{bottom:630.829600pt;}
.y18{bottom:646.832000pt;}
.y17{bottom:662.834400pt;}
.y16{bottom:678.836800pt;}
.y6a{bottom:693.712000pt;}
.y15{bottom:694.839200pt;}
.y69{bottom:709.714400pt;}
.y14{bottom:710.841600pt;}
.y68{bottom:725.716800pt;}
.y13{bottom:726.844000pt;}
.y67{bottom:741.719200pt;}
.y12{bottom:742.846400pt;}
.y66{bottom:757.721600pt;}
.y11{bottom:758.848800pt;}
.y65{bottom:773.724000pt;}
.y10{bottom:774.851200pt;}
.y64{bottom:789.726400pt;}
.y43{bottom:790.707520pt;}
.yf{bottom:790.853600pt;}
.y63{bottom:805.728800pt;}
.y42{bottom:806.709920pt;}
.ye{bottom:806.856000pt;}
.y7d{bottom:821.678080pt;}
.y62{bottom:821.731200pt;}
.y41{bottom:822.712320pt;}
.yd{bottom:822.858400pt;}
.y7c{bottom:837.680480pt;}
.y61{bottom:837.733600pt;}
.y40{bottom:838.714720pt;}
.yc{bottom:838.860800pt;}
.y7b{bottom:853.682880pt;}
.y60{bottom:853.736000pt;}
.y3f{bottom:854.717120pt;}
.yb{bottom:854.863200pt;}
.y7a{bottom:869.685280pt;}
.y5f{bottom:869.738400pt;}
.y3e{bottom:870.719520pt;}
.ya{bottom:870.865600pt;}
.y79{bottom:885.687680pt;}
.y5e{bottom:885.740800pt;}
.y3d{bottom:886.721920pt;}
.y9{bottom:886.868000pt;}
.y78{bottom:901.690080pt;}
.y5d{bottom:901.743200pt;}
.y3c{bottom:902.724320pt;}
.y8{bottom:902.870400pt;}
.y77{bottom:917.692480pt;}
.y5c{bottom:917.745600pt;}
.y3b{bottom:918.726720pt;}
.y7{bottom:918.872800pt;}
.y76{bottom:933.694880pt;}
.y5b{bottom:933.748000pt;}
.y3a{bottom:934.729120pt;}
.y6{bottom:934.875200pt;}
.y75{bottom:949.697280pt;}
.y5a{bottom:949.750400pt;}
.y5{bottom:950.877600pt;}
.y74{bottom:965.699680pt;}
.y59{bottom:965.752800pt;}
.y4{bottom:966.872640pt;}
.y73{bottom:981.702080pt;}
.y58{bottom:981.755200pt;}
.y3{bottom:982.556320pt;}
.y72{bottom:997.704480pt;}
.y57{bottom:997.757600pt;}
.y2{bottom:998.236320pt;}
.y71{bottom:1013.706880pt;}
.y56{bottom:1013.760000pt;}
.y1{bottom:1013.920000pt;}
.h7{height:52.108438pt;}
.h4{height:52.134375pt;}
.h3{height:52.493470pt;}
.h5{height:52.508190pt;}
.h2{height:53.535000pt;}
.ha{height:62.880000pt;}
.hc{height:64.001333pt;}
.h8{height:94.240000pt;}
.h9{height:188.000000pt;}
.hb{height:403.200000pt;}
.h6{height:410.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:284.000000pt;}
.w2{width:299.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x9{left:88.800000pt;}
.x1{left:96.000000pt;}
.x2{left:115.198880pt;}
.x6{left:291.680000pt;}
.x5{left:405.600000pt;}
.x4{left:412.644320pt;}
.x8{left:420.480000pt;}
.x3{left:431.847200pt;}
}




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