
    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_2d4c4cbb4c8fb3f47d478b26.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_1944b798cd7378be28b33785.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_e7a2314c0d187d84c18fbb10.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_257c8a604846b02bdf4751d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_c1151d8ea9adfeace80e9682.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_3f91542ceb92247b5339e6ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.721000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.976000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls4{letter-spacing:-2.016000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001200px;}
.ls1{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.900000px;}
.ls3{letter-spacing:1.320000px;}
.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;}
}
.ws4{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.720000px;}
.ws5{word-spacing:-12.120000px;}
.ws1{word-spacing:-8.898912px;}
.ws6{word-spacing:-7.065960px;}
.ws8{word-spacing:-2.460000px;}
.ws9{word-spacing:-2.160000px;}
.ws2{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:2.016000px;}
._8{margin-left:-16.968000px;}
._6{margin-left:-15.264000px;}
._a{margin-left:-13.140000px;}
._9{margin-left:-10.303200px;}
._3{margin-left:-5.696572px;}
._7{margin-left:-4.455000px;}
._4{margin-left:-3.141900px;}
._0{margin-left:-1.466100px;}
._2{width:1.431000px;}
._1{width:2.673000px;}
._5{width:5.313600px;}
.fc3{color:rgb(234,85,27);}
.fc2{color:rgb(75,187,171);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:34.980000px;}
.fs9{font-size:41.976000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fsb{font-size:102.000000px;}
.fs8{font-size:132.000000px;}
.fs4{font-size:144.000000px;}
.fs2{font-size:224.503800px;}
.fsa{font-size:238.110000px;}
.yb4{bottom:-12.755850px;}
.y0{bottom:0.000000px;}
.y1d{bottom:52.529550px;}
.yc2{bottom:70.580100px;}
.yc1{bottom:71.562750px;}
.ybf{bottom:71.563500px;}
.ybb{bottom:71.566500px;}
.ybc{bottom:71.568000px;}
.ybe{bottom:71.569350px;}
.yc0{bottom:71.570400px;}
.ybd{bottom:71.571750px;}
.y8e{bottom:72.404550px;}
.yb5{bottom:94.172850px;}
.yb6{bottom:101.162850px;}
.y7e{bottom:124.111350px;}
.ya7{bottom:143.355150px;}
.y7d{bottom:145.711350px;}
.yb3{bottom:160.735050px;}
.ya6{bottom:164.955150px;}
.y7c{bottom:167.311350px;}
.y7b{bottom:188.911350px;}
.y7a{bottom:210.511350px;}
.ya5{bottom:229.755150px;}
.y79{bottom:232.111350px;}
.y7{bottom:244.334400px;}
.yb2{bottom:247.052550px;}
.ya4{bottom:251.355150px;}
.y78{bottom:253.711350px;}
.y6{bottom:268.634400px;}
.y77{bottom:275.311350px;}
.y82{bottom:295.529677px;}
.y76{bottom:296.911350px;}
.yd9{bottom:305.805150px;}
.y3e{bottom:307.412250px;}
.ya3{bottom:316.155150px;}
.y75{bottom:322.111350px;}
.yd8{bottom:323.805150px;}
.y5{bottom:327.231510px;}
.y3d{bottom:329.012250px;}
.ya2{bottom:337.755150px;}
.yd7{bottom:341.805150px;}
.yb1{bottom:355.045050px;}
.ya1{bottom:359.355150px;}
.yd6{bottom:359.805150px;}
.y3c{bottom:363.374250px;}
.yd5{bottom:377.805150px;}
.y3b{bottom:384.974250px;}
.y4{bottom:394.582650px;}
.yd4{bottom:395.805150px;}
.y74{bottom:397.711350px;}
.y3a{bottom:406.574250px;}
.yd3{bottom:413.805150px;}
.y73{bottom:419.311350px;}
.ya0{bottom:424.155150px;}
.y39{bottom:428.174250px;}
.y72{bottom:440.911350px;}
.yb0{bottom:442.484550px;}
.y9f{bottom:445.755150px;}
.y38{bottom:449.774250px;}
.yd2{bottom:449.805150px;}
.y56{bottom:451.991400px;}
.y3{bottom:461.471400px;}
.y71{bottom:462.511350px;}
.yd1{bottom:467.805150px;}
.y55{bottom:473.591400px;}
.y1c{bottom:478.594500px;}
.y70{bottom:484.111350px;}
.y37{bottom:484.136250px;}
.yd0{bottom:485.805150px;}
.y54{bottom:495.191400px;}
.y1b{bottom:500.194500px;}
.ycf{bottom:503.805150px;}
.y6f{bottom:505.711350px;}
.y36{bottom:505.736250px;}
.y9e{bottom:510.555150px;}
.y53{bottom:516.791400px;}
.y1a{bottom:521.794500px;}
.yce{bottom:521.805150px;}
.y6e{bottom:527.311350px;}
.y35{bottom:527.336250px;}
.yaf{bottom:528.215550px;}
.y9d{bottom:532.155150px;}
.yba{bottom:535.556100px;}
.y52{bottom:538.391400px;}
.ycd{bottom:539.805150px;}
.y19{bottom:543.394500px;}
.y6d{bottom:548.911350px;}
.y51{bottom:559.991400px;}
.y6c{bottom:570.511350px;}
.y3f{bottom:575.707650px;}
.ycc{bottom:575.805150px;}
.y50{bottom:581.591400px;}
.y18{bottom:590.194500px;}
.y6b{bottom:592.111350px;}
.ycb{bottom:593.805150px;}
.y9c{bottom:596.955150px;}
.y4f{bottom:603.191400px;}
.yca{bottom:611.805150px;}
.y81{bottom:613.347000px;}
.y6a{bottom:613.711350px;}
.yae{bottom:614.201550px;}
.y17{bottom:615.394500px;}
.y9b{bottom:618.555150px;}
.y4e{bottom:624.791400px;}
.y34{bottom:628.122000px;}
.yc9{bottom:629.805150px;}
.y8b{bottom:635.311350px;}
.y69{bottom:638.911350px;}
.y16{bottom:640.594500px;}
.y4d{bottom:646.391400px;}
.yc8{bottom:647.805150px;}
.y33{bottom:649.722000px;}
.y8a{bottom:656.911350px;}
.y8d{bottom:656.921130px;}
.y32{bottom:671.322150px;}
.y89{bottom:682.111350px;}
.y9a{bottom:683.355150px;}
.y31{bottom:692.922150px;}
.yc7{bottom:693.342150px;}
.y57{bottom:694.762800px;}
.yad{bottom:701.156550px;}
.y99{bottom:704.955150px;}
.y68{bottom:710.911350px;}
.y30{bottom:714.522000px;}
.yc6{bottom:717.642150px;}
.y15{bottom:720.981900px;}
.y67{bottom:732.511350px;}
.y2f{bottom:736.122000px;}
.y14{bottom:742.581900px;}
.y4c{bottom:753.682650px;}
.y66{bottom:754.111350px;}
.y2e{bottom:757.722000px;}
.y98{bottom:769.755150px;}
.y4b{bottom:775.282650px;}
.y65{bottom:775.711350px;}
.yc5{bottom:776.239410px;}
.y13{bottom:776.943900px;}
.y2d{bottom:779.322000px;}
.y97{bottom:791.355150px;}
.y4a{bottom:796.882650px;}
.y64{bottom:797.311350px;}
.y12{bottom:798.543900px;}
.y2c{bottom:800.922000px;}
.y96{bottom:812.955150px;}
.y49{bottom:818.482650px;}
.y63{bottom:818.911350px;}
.y80{bottom:819.550260px;}
.y11{bottom:820.143900px;}
.y2b{bottom:822.522000px;}
.yac{bottom:829.778550px;}
.y95{bottom:834.555150px;}
.yb7{bottom:838.284300px;}
.y48{bottom:840.082650px;}
.y88{bottom:840.511350px;}
.yc4{bottom:843.590550px;}
.y62{bottom:844.111350px;}
.y2a{bottom:844.122150px;}
.yb8{bottom:845.274300px;}
.yb9{bottom:848.559300px;}
.y10{bottom:854.505900px;}
.y87{bottom:862.111350px;}
.y29{bottom:865.722150px;}
.y46{bottom:869.283150px;}
.yf{bottom:876.105900px;}
.y86{bottom:883.711350px;}
.y28{bottom:887.322150px;}
.y45{bottom:894.483150px;}
.y47{bottom:896.102400px;}
.y94{bottom:899.355150px;}
.y85{bottom:905.311350px;}
.y27{bottom:908.922150px;}
.ye{bottom:910.467900px;}
.yc3{bottom:910.479300px;}
.y44{bottom:919.683150px;}
.y61{bottom:919.711350px;}
.y93{bottom:920.955150px;}
.y84{bottom:926.911350px;}
.y8c{bottom:926.937870px;}
.y26{bottom:930.522150px;}
.yd{bottom:932.067900px;}
.yab{bottom:937.567050px;}
.y60{bottom:941.311350px;}
.y92{bottom:942.555150px;}
.y83{bottom:952.111350px;}
.y25{bottom:952.122150px;}
.y5f{bottom:962.911350px;}
.yc{bottom:966.429900px;}
.y24{bottom:973.722000px;}
.y43{bottom:977.695800px;}
.y5e{bottom:984.511350px;}
.y23{bottom:995.322150px;}
.y42{bottom:999.295800px;}
.y5d{bottom:1006.111350px;}
.y91{bottom:1007.355150px;}
.y1e{bottom:1014.801300px;}
.y22{bottom:1016.922000px;}
.y41{bottom:1020.895800px;}
.y5c{bottom:1027.711350px;}
.y90{bottom:1028.955150px;}
.y21{bottom:1038.522000px;}
.yaa{bottom:1045.993050px;}
.y5b{bottom:1049.311350px;}
.y8f{bottom:1050.555150px;}
.y20{bottom:1060.122000px;}
.y40{bottom:1067.695800px;}
.y5a{bottom:1070.911350px;}
.ya{bottom:1082.083500px;}
.y59{bottom:1117.711350px;}
.ya9{bottom:1117.711500px;}
.y7f{bottom:1119.330750px;}
.y9{bottom:1125.283500px;}
.y2{bottom:1134.557100px;}
.y58{bottom:1142.911350px;}
.ya8{bottom:1142.911500px;}
.y1{bottom:1158.857100px;}
.y1f{bottom:1174.305150px;}
.yb{bottom:1183.965600px;}
.y8{bottom:1213.963650px;}
.h11{height:25.220580px;}
.h9{height:43.260000px;}
.h12{height:45.200580px;}
.h5{height:47.586000px;}
.h10{height:50.400000px;}
.h7{height:51.912000px;}
.hc{height:54.240096px;}
.hb{height:54.240696px;}
.hd{height:54.241296px;}
.h2{height:58.401000px;}
.h8{height:60.564000px;}
.h3{height:64.890000px;}
.hf{height:73.542000px;}
.ha{height:95.172000px;}
.h6{height:103.824000px;}
.h4{height:161.867240px;}
.he{height:171.677310px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:59.606550px;}
.x3{left:63.779550px;}
.xb{left:66.695550px;}
.x2{left:83.338500px;}
.x4{left:88.509600px;}
.x5{left:97.401600px;}
.x7{left:102.807900px;}
.x8{left:106.199550px;}
.x9{left:110.441550px;}
.xa{left:113.478600px;}
.xe{left:121.996650px;}
.x24{left:128.038500px;}
.xf{left:147.196650px;}
.x25{left:154.542450px;}
.x26{left:172.542450px;}
.x10{left:173.700600px;}
.x11{left:191.700600px;}
.x27{left:194.787450px;}
.x28{left:212.787450px;}
.x12{left:213.945600px;}
.x32{left:216.684150px;}
.x13{left:231.945600px;}
.x29{left:235.032450px;}
.x33{left:243.188100px;}
.x2a{left:253.032450px;}
.x14{left:254.190600px;}
.x34{left:265.433100px;}
.x2b{left:271.032450px;}
.x15{left:276.435600px;}
.x35{left:287.678100px;}
.x2c{left:293.277450px;}
.x16{left:298.680600px;}
.x36{left:309.923100px;}
.x2d{left:311.277450px;}
.x17{left:316.680600px;}
.x37{left:332.168100px;}
.x18{left:338.925600px;}
.x38{left:354.413100px;}
.x19{left:356.925600px;}
.x39{left:376.658100px;}
.x3a{left:398.903100px;}
.x2e{left:400.171950px;}
.x3b{left:421.148100px;}
.x2f{left:425.371950px;}
.x3c{left:443.393100px;}
.x1a{left:446.635050px;}
.x30{left:451.875900px;}
.x3d{left:465.638100px;}
.x31{left:469.875900px;}
.x1b{left:473.139000px;}
.x3e{left:487.883100px;}
.x1c{left:491.139000px;}
.x1d{left:509.139000px;}
.x1e{left:531.384000px;}
.x1{left:550.275600px;}
.x1f{left:571.629000px;}
.x20{left:589.629000px;}
.x21{left:607.629000px;}
.x22{left:629.874000px;}
.x23{left:647.874000px;}
.xd{left:701.904750px;}
.x3f{left:722.391750px;}
.x40{left:737.522700px;}
.x41{left:760.517700px;}
.x42{left:778.517700px;}
.x43{left:796.517700px;}
.x44{left:814.517700px;}
.x6{left:821.814000px;}
.x45{left:832.517700px;}
.x46{left:850.517700px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls4{letter-spacing:-1.792000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.001067pt;}
.ls1{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls3{letter-spacing:1.173333pt;}
.ws4{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.306667pt;}
.ws5{word-spacing:-10.773333pt;}
.ws1{word-spacing:-7.910144pt;}
.ws6{word-spacing:-6.280853pt;}
.ws8{word-spacing:-2.186667pt;}
.ws9{word-spacing:-1.920000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:1.792000pt;}
._8{margin-left:-15.082667pt;}
._6{margin-left:-13.568000pt;}
._a{margin-left:-11.680000pt;}
._9{margin-left:-9.158400pt;}
._3{margin-left:-5.063620pt;}
._7{margin-left:-3.960000pt;}
._4{margin-left:-2.792800pt;}
._0{margin-left:-1.303200pt;}
._2{width:1.272000pt;}
._1{width:2.376000pt;}
._5{width:4.723200pt;}
.fsc{font-size:31.093333pt;}
.fs9{font-size:37.312000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fsb{font-size:90.666667pt;}
.fs8{font-size:117.333333pt;}
.fs4{font-size:128.000000pt;}
.fs2{font-size:199.558933pt;}
.fsa{font-size:211.653333pt;}
.yb4{bottom:-11.338533pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:46.692933pt;}
.yc2{bottom:62.737867pt;}
.yc1{bottom:63.611333pt;}
.ybf{bottom:63.612000pt;}
.ybb{bottom:63.614667pt;}
.ybc{bottom:63.616000pt;}
.ybe{bottom:63.617200pt;}
.yc0{bottom:63.618133pt;}
.ybd{bottom:63.619333pt;}
.y8e{bottom:64.359600pt;}
.yb5{bottom:83.709200pt;}
.yb6{bottom:89.922533pt;}
.y7e{bottom:110.321200pt;}
.ya7{bottom:127.426800pt;}
.y7d{bottom:129.521200pt;}
.yb3{bottom:142.875600pt;}
.ya6{bottom:146.626800pt;}
.y7c{bottom:148.721200pt;}
.y7b{bottom:167.921200pt;}
.y7a{bottom:187.121200pt;}
.ya5{bottom:204.226800pt;}
.y79{bottom:206.321200pt;}
.y7{bottom:217.186133pt;}
.yb2{bottom:219.602267pt;}
.ya4{bottom:223.426800pt;}
.y78{bottom:225.521200pt;}
.y6{bottom:238.786133pt;}
.y77{bottom:244.721200pt;}
.y82{bottom:262.693047pt;}
.y76{bottom:263.921200pt;}
.yd9{bottom:271.826800pt;}
.y3e{bottom:273.255333pt;}
.ya3{bottom:281.026800pt;}
.y75{bottom:286.321200pt;}
.yd8{bottom:287.826800pt;}
.y5{bottom:290.872453pt;}
.y3d{bottom:292.455333pt;}
.ya2{bottom:300.226800pt;}
.yd7{bottom:303.826800pt;}
.yb1{bottom:315.595600pt;}
.ya1{bottom:319.426800pt;}
.yd6{bottom:319.826800pt;}
.y3c{bottom:322.999333pt;}
.yd5{bottom:335.826800pt;}
.y3b{bottom:342.199333pt;}
.y4{bottom:350.740133pt;}
.yd4{bottom:351.826800pt;}
.y74{bottom:353.521200pt;}
.y3a{bottom:361.399333pt;}
.yd3{bottom:367.826800pt;}
.y73{bottom:372.721200pt;}
.ya0{bottom:377.026800pt;}
.y39{bottom:380.599333pt;}
.y72{bottom:391.921200pt;}
.yb0{bottom:393.319600pt;}
.y9f{bottom:396.226800pt;}
.y38{bottom:399.799333pt;}
.yd2{bottom:399.826800pt;}
.y56{bottom:401.770133pt;}
.y3{bottom:410.196800pt;}
.y71{bottom:411.121200pt;}
.yd1{bottom:415.826800pt;}
.y55{bottom:420.970133pt;}
.y1c{bottom:425.417333pt;}
.y70{bottom:430.321200pt;}
.y37{bottom:430.343333pt;}
.yd0{bottom:431.826800pt;}
.y54{bottom:440.170133pt;}
.y1b{bottom:444.617333pt;}
.ycf{bottom:447.826800pt;}
.y6f{bottom:449.521200pt;}
.y36{bottom:449.543333pt;}
.y9e{bottom:453.826800pt;}
.y53{bottom:459.370133pt;}
.y1a{bottom:463.817333pt;}
.yce{bottom:463.826800pt;}
.y6e{bottom:468.721200pt;}
.y35{bottom:468.743333pt;}
.yaf{bottom:469.524933pt;}
.y9d{bottom:473.026800pt;}
.yba{bottom:476.049867pt;}
.y52{bottom:478.570133pt;}
.ycd{bottom:479.826800pt;}
.y19{bottom:483.017333pt;}
.y6d{bottom:487.921200pt;}
.y51{bottom:497.770133pt;}
.y6c{bottom:507.121200pt;}
.y3f{bottom:511.740133pt;}
.ycc{bottom:511.826800pt;}
.y50{bottom:516.970133pt;}
.y18{bottom:524.617333pt;}
.y6b{bottom:526.321200pt;}
.ycb{bottom:527.826800pt;}
.y9c{bottom:530.626800pt;}
.y4f{bottom:536.170133pt;}
.yca{bottom:543.826800pt;}
.y81{bottom:545.197333pt;}
.y6a{bottom:545.521200pt;}
.yae{bottom:545.956933pt;}
.y17{bottom:547.017333pt;}
.y9b{bottom:549.826800pt;}
.y4e{bottom:555.370133pt;}
.y34{bottom:558.330667pt;}
.yc9{bottom:559.826800pt;}
.y8b{bottom:564.721200pt;}
.y69{bottom:567.921200pt;}
.y16{bottom:569.417333pt;}
.y4d{bottom:574.570133pt;}
.yc8{bottom:575.826800pt;}
.y33{bottom:577.530667pt;}
.y8a{bottom:583.921200pt;}
.y8d{bottom:583.929893pt;}
.y32{bottom:596.730800pt;}
.y89{bottom:606.321200pt;}
.y9a{bottom:607.426800pt;}
.y31{bottom:615.930800pt;}
.yc7{bottom:616.304133pt;}
.y57{bottom:617.566933pt;}
.yad{bottom:623.250267pt;}
.y99{bottom:626.626800pt;}
.y68{bottom:631.921200pt;}
.y30{bottom:635.130667pt;}
.yc6{bottom:637.904133pt;}
.y15{bottom:640.872800pt;}
.y67{bottom:651.121200pt;}
.y2f{bottom:654.330667pt;}
.y14{bottom:660.072800pt;}
.y4c{bottom:669.940133pt;}
.y66{bottom:670.321200pt;}
.y2e{bottom:673.530667pt;}
.y98{bottom:684.226800pt;}
.y4b{bottom:689.140133pt;}
.y65{bottom:689.521200pt;}
.yc5{bottom:689.990587pt;}
.y13{bottom:690.616800pt;}
.y2d{bottom:692.730667pt;}
.y97{bottom:703.426800pt;}
.y4a{bottom:708.340133pt;}
.y64{bottom:708.721200pt;}
.y12{bottom:709.816800pt;}
.y2c{bottom:711.930667pt;}
.y96{bottom:722.626800pt;}
.y49{bottom:727.540133pt;}
.y63{bottom:727.921200pt;}
.y80{bottom:728.489120pt;}
.y11{bottom:729.016800pt;}
.y2b{bottom:731.130667pt;}
.yac{bottom:737.580933pt;}
.y95{bottom:741.826800pt;}
.yb7{bottom:745.141600pt;}
.y48{bottom:746.740133pt;}
.y88{bottom:747.121200pt;}
.yc4{bottom:749.858267pt;}
.y62{bottom:750.321200pt;}
.y2a{bottom:750.330800pt;}
.yb8{bottom:751.354933pt;}
.yb9{bottom:754.274933pt;}
.y10{bottom:759.560800pt;}
.y87{bottom:766.321200pt;}
.y29{bottom:769.530800pt;}
.y46{bottom:772.696133pt;}
.yf{bottom:778.760800pt;}
.y86{bottom:785.521200pt;}
.y28{bottom:788.730800pt;}
.y45{bottom:795.096133pt;}
.y47{bottom:796.535467pt;}
.y94{bottom:799.426800pt;}
.y85{bottom:804.721200pt;}
.y27{bottom:807.930800pt;}
.ye{bottom:809.304800pt;}
.yc3{bottom:809.314933pt;}
.y44{bottom:817.496133pt;}
.y61{bottom:817.521200pt;}
.y93{bottom:818.626800pt;}
.y84{bottom:823.921200pt;}
.y8c{bottom:823.944773pt;}
.y26{bottom:827.130800pt;}
.yd{bottom:828.504800pt;}
.yab{bottom:833.392933pt;}
.y60{bottom:836.721200pt;}
.y92{bottom:837.826800pt;}
.y83{bottom:846.321200pt;}
.y25{bottom:846.330800pt;}
.y5f{bottom:855.921200pt;}
.yc{bottom:859.048800pt;}
.y24{bottom:865.530667pt;}
.y43{bottom:869.062933pt;}
.y5e{bottom:875.121200pt;}
.y23{bottom:884.730800pt;}
.y42{bottom:888.262933pt;}
.y5d{bottom:894.321200pt;}
.y91{bottom:895.426800pt;}
.y1e{bottom:902.045600pt;}
.y22{bottom:903.930667pt;}
.y41{bottom:907.462933pt;}
.y5c{bottom:913.521200pt;}
.y90{bottom:914.626800pt;}
.y21{bottom:923.130667pt;}
.yaa{bottom:929.771600pt;}
.y5b{bottom:932.721200pt;}
.y8f{bottom:933.826800pt;}
.y20{bottom:942.330667pt;}
.y40{bottom:949.062933pt;}
.y5a{bottom:951.921200pt;}
.ya{bottom:961.852000pt;}
.y59{bottom:993.521200pt;}
.ya9{bottom:993.521333pt;}
.y7f{bottom:994.960667pt;}
.y9{bottom:1000.252000pt;}
.y2{bottom:1008.495200pt;}
.y58{bottom:1015.921200pt;}
.ya8{bottom:1015.921333pt;}
.y1{bottom:1030.095200pt;}
.y1f{bottom:1043.826800pt;}
.yb{bottom:1052.413867pt;}
.y8{bottom:1079.078800pt;}
.h11{height:22.418293pt;}
.h9{height:38.453333pt;}
.h12{height:40.178293pt;}
.h5{height:42.298667pt;}
.h10{height:44.800000pt;}
.h7{height:46.144000pt;}
.hc{height:48.213419pt;}
.hb{height:48.213952pt;}
.hd{height:48.214485pt;}
.h2{height:51.912000pt;}
.h8{height:53.834667pt;}
.h3{height:57.680000pt;}
.hf{height:65.370667pt;}
.ha{height:84.597333pt;}
.h6{height:92.288000pt;}
.h4{height:143.881991pt;}
.he{height:152.602053pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:52.983600pt;}
.x3{left:56.692933pt;}
.xb{left:59.284933pt;}
.x2{left:74.078667pt;}
.x4{left:78.675200pt;}
.x5{left:86.579200pt;}
.x7{left:91.384800pt;}
.x8{left:94.399600pt;}
.x9{left:98.170267pt;}
.xa{left:100.869867pt;}
.xe{left:108.441467pt;}
.x24{left:113.812000pt;}
.xf{left:130.841467pt;}
.x25{left:137.371067pt;}
.x26{left:153.371067pt;}
.x10{left:154.400533pt;}
.x11{left:170.400533pt;}
.x27{left:173.144400pt;}
.x28{left:189.144400pt;}
.x12{left:190.173867pt;}
.x32{left:192.608133pt;}
.x13{left:206.173867pt;}
.x29{left:208.917733pt;}
.x33{left:216.167200pt;}
.x2a{left:224.917733pt;}
.x14{left:225.947200pt;}
.x34{left:235.940533pt;}
.x2b{left:240.917733pt;}
.x15{left:245.720533pt;}
.x35{left:255.713867pt;}
.x2c{left:260.691067pt;}
.x16{left:265.493867pt;}
.x36{left:275.487200pt;}
.x2d{left:276.691067pt;}
.x17{left:281.493867pt;}
.x37{left:295.260533pt;}
.x18{left:301.267200pt;}
.x38{left:315.033867pt;}
.x19{left:317.267200pt;}
.x39{left:334.807200pt;}
.x3a{left:354.580533pt;}
.x2e{left:355.708400pt;}
.x3b{left:374.353867pt;}
.x2f{left:378.108400pt;}
.x3c{left:394.127200pt;}
.x1a{left:397.008933pt;}
.x30{left:401.667467pt;}
.x3d{left:413.900533pt;}
.x31{left:417.667467pt;}
.x1b{left:420.568000pt;}
.x3e{left:433.673867pt;}
.x1c{left:436.568000pt;}
.x1d{left:452.568000pt;}
.x1e{left:472.341333pt;}
.x1{left:489.133867pt;}
.x1f{left:508.114667pt;}
.x20{left:524.114667pt;}
.x21{left:540.114667pt;}
.x22{left:559.888000pt;}
.x23{left:575.888000pt;}
.xd{left:623.915333pt;}
.x3f{left:642.126000pt;}
.x40{left:655.575733pt;}
.x41{left:676.015733pt;}
.x42{left:692.015733pt;}
.x43{left:708.015733pt;}
.x44{left:724.015733pt;}
.x6{left:730.501333pt;}
.x45{left:740.015733pt;}
.x46{left:756.015733pt;}
}




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