
    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_6e11094fd0255cb3c4d72914.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_b5d8b6ab486ad878aaf8c0ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.717000;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_c91533b754617e9e05e9a946.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d6b1e3393cf76ce221e110c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a4649bbdf69e2d7b6da28884.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_65164b740d7d48546b8b6151.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:5.460000px;}
.lsc{letter-spacing:-3.132000px;}
.ls1b{letter-spacing:-1.164000px;}
.ls17{letter-spacing:-0.960000px;}
.ls1{letter-spacing:-0.342600px;}
.lsf{letter-spacing:-0.295200px;}
.ls13{letter-spacing:-0.289800px;}
.ls8{letter-spacing:-0.234000px;}
.ls11{letter-spacing:-0.141000px;}
.ls12{letter-spacing:-0.126000px;}
.ls1c{letter-spacing:-0.065400px;}
.ls1a{letter-spacing:-0.031680px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.024480px;}
.lsd{letter-spacing:0.059040px;}
.ls2{letter-spacing:0.079800px;}
.ls19{letter-spacing:0.112200px;}
.ls18{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.181200px;}
.lsb{letter-spacing:0.217440px;}
.ls10{letter-spacing:0.270000px;}
.lsa{letter-spacing:0.306000px;}
.ls4{letter-spacing:24.084000px;}
.ls16{letter-spacing:24.177600px;}
.ls15{letter-spacing:24.228000px;}
.ls14{letter-spacing:32.400000px;}
.ls9{letter-spacing:36.684000px;}
.ls3{letter-spacing:40.716000px;}
.ls6{letter-spacing:49.233600px;}
.ls5{letter-spacing:49.284000px;}
.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;}
}
.wsc{word-spacing:-167.760000px;}
.ws16{word-spacing:-144.144000px;}
.ws15{word-spacing:-144.000000px;}
.ws13{word-spacing:-93.637440px;}
.ws8{word-spacing:-80.058240px;}
.ws1a{word-spacing:-73.256544px;}
.ws14{word-spacing:-54.455760px;}
.ws1c{word-spacing:-54.185760px;}
.ws1d{word-spacing:-53.225760px;}
.ws1f{word-spacing:-53.054304px;}
.ws1e{word-spacing:-48.816000px;}
.wsd{word-spacing:-43.478784px;}
.wse{word-spacing:-43.446240px;}
.ws12{word-spacing:-43.151040px;}
.wsa{word-spacing:-37.946304px;}
.wsb{word-spacing:-37.913760px;}
.ws18{word-spacing:-32.576544px;}
.ws6{word-spacing:-32.544000px;}
.wsf{word-spacing:-24.440544px;}
.ws9{word-spacing:-24.408000px;}
.ws3{word-spacing:-21.721560px;}
.ws11{word-spacing:-21.700800px;}
.ws5{word-spacing:-21.674304px;}
.ws7{word-spacing:-21.641760px;}
.ws20{word-spacing:-21.576360px;}
.ws10{word-spacing:-18.509760px;}
.ws0{word-spacing:-15.575040px;}
.ws2{word-spacing:-0.691200px;}
.ws1{word-spacing:-0.487440px;}
.ws19{word-spacing:-0.239760px;}
.ws1b{word-spacing:-0.216000px;}
.ws4{word-spacing:0.000000px;}
.ws17{word-spacing:1743.312000px;}
._9{margin-left:-17.003520px;}
._c{margin-left:-13.625376px;}
._a{margin-left:-12.160512px;}
._b{margin-left:-8.723520px;}
._5{margin-left:-7.676928px;}
._6{margin-left:-6.151680px;}
._2{margin-left:-5.037984px;}
._7{margin-left:-3.970992px;}
._4{margin-left:-2.762400px;}
._1{margin-left:-1.439424px;}
._0{width:1.075680px;}
._3{width:2.159136px;}
._8{width:3.630288px;}
._e{width:5.498400px;}
._f{width:7.375008px;}
._d{width:22.891872px;}
.fc8{color:rgb(154,153,148);}
.fc7{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(127,127,127);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(114,120,121);}
.fs0{font-size:59.760000px;}
.fs1{font-size:59.904000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:95.904000px;}
.fsa{font-size:108.000000px;}
.fsf{font-size:108.144000px;}
.fs8{font-size:144.000000px;}
.fs12{font-size:144.144000px;}
.fsb{font-size:167.760000px;}
.fsc{font-size:167.904000px;}
.fs7{font-size:192.240000px;}
.fse{font-size:192.384000px;}
.fsd{font-size:203.760000px;}
.fs4{font-size:216.000000px;}
.fs3{font-size:239.760000px;}
.fs2{font-size:239.904000px;}
.fs10{font-size:288.144000px;}
.fs13{font-size:324.144000px;}
.fs9{font-size:354.240000px;}
.fs11{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y18{bottom:8.964000px;}
.y3c{bottom:9.504000px;}
.y4{bottom:12.204000px;}
.y5a{bottom:18.108000px;}
.y38{bottom:20.376000px;}
.y24{bottom:22.968000px;}
.y61{bottom:27.252000px;}
.y3{bottom:30.024000px;}
.y17{bottom:37.764000px;}
.y5{bottom:38.160000px;}
.y3b{bottom:38.340000px;}
.y4e{bottom:41.184000px;}
.y19{bottom:42.552000px;}
.y2{bottom:48.060000px;}
.y59{bottom:50.508000px;}
.y37{bottom:52.776000px;}
.y23{bottom:55.368000px;}
.y60{bottom:56.052000px;}
.y1{bottom:66.060000px;}
.y16{bottom:66.564000px;}
.y3a{bottom:67.140000px;}
.y14{bottom:111.528000px;}
.y4a{bottom:120.240000px;}
.ya{bottom:134.352000px;}
.y13{bottom:140.364000px;}
.y3f{bottom:154.365000px;}
.y1a{bottom:155.850000px;}
.y9{bottom:163.185000px;}
.y49{bottom:163.440000px;}
.y58{bottom:184.245000px;}
.y31{bottom:203.190000px;}
.y8{bottom:225.690000px;}
.y51{bottom:235.410000px;}
.y30{bottom:235.590000px;}
.y32{bottom:235.770000px;}
.y47{bottom:247.140000px;}
.y57{bottom:256.425000px;}
.y44{bottom:268.740000px;}
.y22{bottom:271.185000px;}
.y50{bottom:278.640000px;}
.y5f{bottom:280.005000px;}
.y46{bottom:290.340000px;}
.y29{bottom:293.070000px;}
.y7{bottom:301.470000px;}
.y2c{bottom:302.910000px;}
.y2d{bottom:303.765000px;}
.y43{bottom:311.940000px;}
.y21{bottom:316.590000px;}
.y4f{bottom:321.840000px;}
.y48{bottom:324.360000px;}
.y45{bottom:333.540000px;}
.y28{bottom:342.255000px;}
.y5e{bottom:344.850000px;}
.y42{bottom:345.240000px;}
.y41{bottom:358.815000px;}
.y2a{bottom:365.655000px;}
.y54{bottom:371.235000px;}
.y6{bottom:373.500000px;}
.y27{bottom:374.655000px;}
.y36{bottom:376.530000px;}
.y20{bottom:376.890000px;}
.y10{bottom:391.890000px;}
.y56{bottom:399.570000px;}
.y2b{bottom:405.180000px;}
.y5d{bottom:409.650000px;}
.y53{bottom:414.435000px;}
.yf{bottom:420.690000px;}
.y1f{bottom:422.250000px;}
.y35{bottom:443.310000px;}
.ye{bottom:449.490000px;}
.y2f{bottom:454.470000px;}
.y3d{bottom:473.940000px;}
.y5c{bottom:474.480000px;}
.y4c{bottom:481.470000px;}
.y1e{bottom:482.760000px;}
.y2e{bottom:486.870000px;}
.y11{bottom:499.350000px;}
.y3e{bottom:508.425000px;}
.y34{bottom:510.120000px;}
.y4b{bottom:524.670000px;}
.y1d{bottom:528.120000px;}
.y55{bottom:531.720000px;}
.y40{bottom:535.140000px;}
.y5b{bottom:539.280000px;}
.yd{bottom:547.020000px;}
.y33{bottom:561.960000px;}
.y26{bottom:567.360000px;}
.y1c{bottom:573.480000px;}
.y15{bottom:604.080000px;}
.y52{bottom:608.940000px;}
.yc{bottom:613.800000px;}
.y25{bottom:616.320000px;}
.y1b{bottom:618.840000px;}
.y12{bottom:698.760000px;}
.y4d{bottom:700.845000px;}
.y39{bottom:703.365000px;}
.yb{bottom:706.605000px;}
.h1{height:45.724570px;}
.h2{height:45.834750px;}
.h7{height:95.245664px;}
.h6{height:95.388891px;}
.hd{height:107.419922px;}
.h12{height:107.563148px;}
.ha{height:143.226562px;}
.h15{height:143.369789px;}
.h16{height:148.686563px;}
.h5{height:152.928000px;}
.he{height:166.858945px;}
.hf{height:167.002172px;}
.h4{height:183.449180px;}
.h3{height:183.559359px;}
.h9{height:191.207461px;}
.h11{height:191.350688px;}
.h10{height:202.665586px;}
.h18{height:214.839844px;}
.h8{height:228.424219px;}
.hc{height:238.472227px;}
.h19{height:238.615453px;}
.h13{height:274.355859px;}
.h14{height:275.559398px;}
.h17{height:308.633203px;}
.hb{height:337.289062px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1{left:15.191979px;}
.x6{left:64.799979px;}
.x3{left:82.043979px;}
.x10{left:91.799979px;}
.x3a{left:118.799979px;}
.x27{left:134.927979px;}
.x13{left:143.243979px;}
.x28{left:144.467979px;}
.x29{left:147.707979px;}
.x12{left:162.149979px;}
.x3b{left:172.829979px;}
.xe{left:258.119979px;}
.x25{left:337.829979px;}
.x26{left:340.019979px;}
.x23{left:350.429979px;}
.x1c{left:377.924979px;}
.x1f{left:378.974979px;}
.x30{left:383.759979px;}
.x1d{left:387.284979px;}
.x3d{left:393.734979px;}
.xd{left:397.184979px;}
.x20{left:402.989979px;}
.x3c{left:404.204979px;}
.x34{left:409.829979px;}
.x11{left:421.379979px;}
.x2f{left:435.269979px;}
.x31{left:436.319979px;}
.x17{left:478.874979px;}
.x18{left:591.014979px;}
.x32{left:616.244979px;}
.x24{left:633.269979px;}
.x19{left:641.054979px;}
.x2a{left:655.634979px;}
.x2c{left:664.994979px;}
.x33{left:668.804979px;}
.x16{left:678.884979px;}
.x2b{left:701.534979px;}
.x14{left:709.454979px;}
.x8{left:813.239979px;}
.x7{left:818.459979px;}
.x9{left:834.659979px;}
.x1a{left:841.934979px;}
.x21{left:854.744979px;}
.x1b{left:880.454979px;}
.x4{left:929.444979px;}
.x22{left:935.744979px;}
.x5{left:945.644979px;}
.x35{left:1072.724979px;}
.x36{left:1084.964979px;}
.x37{left:1094.144979px;}
.xc{left:1134.719979px;}
.xb{left:1143.179979px;}
.x2d{left:1157.399979px;}
.x1e{left:1170.029979px;}
.x2e{left:1171.079979px;}
.x15{left:1177.409979px;}
.x2{left:1178.489979px;}
.x38{left:1240.529979px;}
.x39{left:1255.829979px;}
.xa{left:1315.109979px;}
.xf{left:1389.599979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.853333pt;}
.lsc{letter-spacing:-2.784000pt;}
.ls1b{letter-spacing:-1.034667pt;}
.ls17{letter-spacing:-0.853333pt;}
.ls1{letter-spacing:-0.304533pt;}
.lsf{letter-spacing:-0.262400pt;}
.ls13{letter-spacing:-0.257600pt;}
.ls8{letter-spacing:-0.208000pt;}
.ls11{letter-spacing:-0.125333pt;}
.ls12{letter-spacing:-0.112000pt;}
.ls1c{letter-spacing:-0.058133pt;}
.ls1a{letter-spacing:-0.028160pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.021760pt;}
.lsd{letter-spacing:0.052480pt;}
.ls2{letter-spacing:0.070933pt;}
.ls19{letter-spacing:0.099733pt;}
.ls18{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.161067pt;}
.lsb{letter-spacing:0.193280pt;}
.ls10{letter-spacing:0.240000pt;}
.lsa{letter-spacing:0.272000pt;}
.ls4{letter-spacing:21.408000pt;}
.ls16{letter-spacing:21.491200pt;}
.ls15{letter-spacing:21.536000pt;}
.ls14{letter-spacing:28.800000pt;}
.ls9{letter-spacing:32.608000pt;}
.ls3{letter-spacing:36.192000pt;}
.ls6{letter-spacing:43.763200pt;}
.ls5{letter-spacing:43.808000pt;}
.wsc{word-spacing:-149.120000pt;}
.ws16{word-spacing:-128.128000pt;}
.ws15{word-spacing:-128.000000pt;}
.ws13{word-spacing:-83.233280pt;}
.ws8{word-spacing:-71.162880pt;}
.ws1a{word-spacing:-65.116928pt;}
.ws14{word-spacing:-48.405120pt;}
.ws1c{word-spacing:-48.165120pt;}
.ws1d{word-spacing:-47.311787pt;}
.ws1f{word-spacing:-47.159381pt;}
.ws1e{word-spacing:-43.392000pt;}
.wsd{word-spacing:-38.647808pt;}
.wse{word-spacing:-38.618880pt;}
.ws12{word-spacing:-38.356480pt;}
.wsa{word-spacing:-33.730048pt;}
.wsb{word-spacing:-33.701120pt;}
.ws18{word-spacing:-28.956928pt;}
.ws6{word-spacing:-28.928000pt;}
.wsf{word-spacing:-21.724928pt;}
.ws9{word-spacing:-21.696000pt;}
.ws3{word-spacing:-19.308053pt;}
.ws11{word-spacing:-19.289600pt;}
.ws5{word-spacing:-19.266048pt;}
.ws7{word-spacing:-19.237120pt;}
.ws20{word-spacing:-19.178987pt;}
.ws10{word-spacing:-16.453120pt;}
.ws0{word-spacing:-13.844480pt;}
.ws2{word-spacing:-0.614400pt;}
.ws1{word-spacing:-0.433280pt;}
.ws19{word-spacing:-0.213120pt;}
.ws1b{word-spacing:-0.192000pt;}
.ws4{word-spacing:0.000000pt;}
.ws17{word-spacing:1549.610667pt;}
._9{margin-left:-15.114240pt;}
._c{margin-left:-12.111445pt;}
._a{margin-left:-10.809344pt;}
._b{margin-left:-7.754240pt;}
._5{margin-left:-6.823936pt;}
._6{margin-left:-5.468160pt;}
._2{margin-left:-4.478208pt;}
._7{margin-left:-3.529771pt;}
._4{margin-left:-2.455467pt;}
._1{margin-left:-1.279488pt;}
._0{width:0.956160pt;}
._3{width:1.919232pt;}
._8{width:3.226923pt;}
._e{width:4.887467pt;}
._f{width:6.555563pt;}
._d{width:20.348331pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:53.248000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:85.248000pt;}
.fsa{font-size:96.000000pt;}
.fsf{font-size:96.128000pt;}
.fs8{font-size:128.000000pt;}
.fs12{font-size:128.128000pt;}
.fsb{font-size:149.120000pt;}
.fsc{font-size:149.248000pt;}
.fs7{font-size:170.880000pt;}
.fse{font-size:171.008000pt;}
.fsd{font-size:181.120000pt;}
.fs4{font-size:192.000000pt;}
.fs3{font-size:213.120000pt;}
.fs2{font-size:213.248000pt;}
.fs10{font-size:256.128000pt;}
.fs13{font-size:288.128000pt;}
.fs9{font-size:314.880000pt;}
.fs11{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:7.968000pt;}
.y3c{bottom:8.448000pt;}
.y4{bottom:10.848000pt;}
.y5a{bottom:16.096000pt;}
.y38{bottom:18.112000pt;}
.y24{bottom:20.416000pt;}
.y61{bottom:24.224000pt;}
.y3{bottom:26.688000pt;}
.y17{bottom:33.568000pt;}
.y5{bottom:33.920000pt;}
.y3b{bottom:34.080000pt;}
.y4e{bottom:36.608000pt;}
.y19{bottom:37.824000pt;}
.y2{bottom:42.720000pt;}
.y59{bottom:44.896000pt;}
.y37{bottom:46.912000pt;}
.y23{bottom:49.216000pt;}
.y60{bottom:49.824000pt;}
.y1{bottom:58.720000pt;}
.y16{bottom:59.168000pt;}
.y3a{bottom:59.680000pt;}
.y14{bottom:99.136000pt;}
.y4a{bottom:106.880000pt;}
.ya{bottom:119.424000pt;}
.y13{bottom:124.768000pt;}
.y3f{bottom:137.213333pt;}
.y1a{bottom:138.533333pt;}
.y9{bottom:145.053333pt;}
.y49{bottom:145.280000pt;}
.y58{bottom:163.773333pt;}
.y31{bottom:180.613333pt;}
.y8{bottom:200.613333pt;}
.y51{bottom:209.253333pt;}
.y30{bottom:209.413333pt;}
.y32{bottom:209.573333pt;}
.y47{bottom:219.680000pt;}
.y57{bottom:227.933333pt;}
.y44{bottom:238.880000pt;}
.y22{bottom:241.053333pt;}
.y50{bottom:247.680000pt;}
.y5f{bottom:248.893333pt;}
.y46{bottom:258.080000pt;}
.y29{bottom:260.506667pt;}
.y7{bottom:267.973333pt;}
.y2c{bottom:269.253333pt;}
.y2d{bottom:270.013333pt;}
.y43{bottom:277.280000pt;}
.y21{bottom:281.413333pt;}
.y4f{bottom:286.080000pt;}
.y48{bottom:288.320000pt;}
.y45{bottom:296.480000pt;}
.y28{bottom:304.226667pt;}
.y5e{bottom:306.533333pt;}
.y42{bottom:306.880000pt;}
.y41{bottom:318.946667pt;}
.y2a{bottom:325.026667pt;}
.y54{bottom:329.986667pt;}
.y6{bottom:332.000000pt;}
.y27{bottom:333.026667pt;}
.y36{bottom:334.693333pt;}
.y20{bottom:335.013333pt;}
.y10{bottom:348.346667pt;}
.y56{bottom:355.173333pt;}
.y2b{bottom:360.160000pt;}
.y5d{bottom:364.133333pt;}
.y53{bottom:368.386667pt;}
.yf{bottom:373.946667pt;}
.y1f{bottom:375.333333pt;}
.y35{bottom:394.053333pt;}
.ye{bottom:399.546667pt;}
.y2f{bottom:403.973333pt;}
.y3d{bottom:421.280000pt;}
.y5c{bottom:421.760000pt;}
.y4c{bottom:427.973333pt;}
.y1e{bottom:429.120000pt;}
.y2e{bottom:432.773333pt;}
.y11{bottom:443.866667pt;}
.y3e{bottom:451.933333pt;}
.y34{bottom:453.440000pt;}
.y4b{bottom:466.373333pt;}
.y1d{bottom:469.440000pt;}
.y55{bottom:472.640000pt;}
.y40{bottom:475.680000pt;}
.y5b{bottom:479.360000pt;}
.yd{bottom:486.240000pt;}
.y33{bottom:499.520000pt;}
.y26{bottom:504.320000pt;}
.y1c{bottom:509.760000pt;}
.y15{bottom:536.960000pt;}
.y52{bottom:541.280000pt;}
.yc{bottom:545.600000pt;}
.y25{bottom:547.840000pt;}
.y1b{bottom:550.080000pt;}
.y12{bottom:621.120000pt;}
.y4d{bottom:622.973333pt;}
.y39{bottom:625.213333pt;}
.yb{bottom:628.093333pt;}
.h1{height:40.644063pt;}
.h2{height:40.742000pt;}
.h7{height:84.662813pt;}
.h6{height:84.790125pt;}
.hd{height:95.484375pt;}
.h12{height:95.611688pt;}
.ha{height:127.312500pt;}
.h15{height:127.439813pt;}
.h16{height:132.165833pt;}
.h5{height:135.936000pt;}
.he{height:148.319063pt;}
.hf{height:148.446375pt;}
.h4{height:163.065937pt;}
.h3{height:163.163875pt;}
.h9{height:169.962187pt;}
.h11{height:170.089500pt;}
.h10{height:180.147188pt;}
.h18{height:190.968750pt;}
.h8{height:203.043750pt;}
.hc{height:211.975312pt;}
.h19{height:212.102625pt;}
.h13{height:243.871875pt;}
.h14{height:244.941688pt;}
.h17{height:274.340625pt;}
.hb{height:299.812500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1{left:13.503981pt;}
.x6{left:57.599981pt;}
.x3{left:72.927981pt;}
.x10{left:81.599981pt;}
.x3a{left:105.599981pt;}
.x27{left:119.935981pt;}
.x13{left:127.327981pt;}
.x28{left:128.415981pt;}
.x29{left:131.295981pt;}
.x12{left:144.133314pt;}
.x3b{left:153.626648pt;}
.xe{left:229.439981pt;}
.x25{left:300.293314pt;}
.x26{left:302.239981pt;}
.x23{left:311.493314pt;}
.x1c{left:335.933314pt;}
.x1f{left:336.866648pt;}
.x30{left:341.119981pt;}
.x1d{left:344.253314pt;}
.x3d{left:349.986648pt;}
.xd{left:353.053314pt;}
.x20{left:358.213314pt;}
.x3c{left:359.293314pt;}
.x34{left:364.293314pt;}
.x11{left:374.559981pt;}
.x2f{left:386.906648pt;}
.x31{left:387.839981pt;}
.x17{left:425.666648pt;}
.x18{left:525.346648pt;}
.x32{left:547.773314pt;}
.x24{left:562.906648pt;}
.x19{left:569.826648pt;}
.x2a{left:582.786648pt;}
.x2c{left:591.106648pt;}
.x33{left:594.493314pt;}
.x16{left:603.453314pt;}
.x2b{left:623.586648pt;}
.x14{left:630.626648pt;}
.x8{left:722.879981pt;}
.x7{left:727.519981pt;}
.x9{left:741.919981pt;}
.x1a{left:748.386648pt;}
.x21{left:759.773314pt;}
.x1b{left:782.626648pt;}
.x4{left:826.173314pt;}
.x22{left:831.773314pt;}
.x5{left:840.573314pt;}
.x35{left:953.533314pt;}
.x36{left:964.413314pt;}
.x37{left:972.573314pt;}
.xc{left:1008.639981pt;}
.xb{left:1016.159981pt;}
.x2d{left:1028.799981pt;}
.x1e{left:1040.026648pt;}
.x2e{left:1040.959981pt;}
.x15{left:1046.586648pt;}
.x2{left:1047.546648pt;}
.x38{left:1102.693314pt;}
.x39{left:1116.293314pt;}
.xa{left:1168.986648pt;}
.xf{left:1235.199981pt;}
}




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