
    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_9bf7991da184f301bcce1170.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115234;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_c95a0abf80442da16211af09.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4230f5303dcd04565cba6cad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_cb0dee17655d1a17e0cc9a6f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2af59f1bfb2abc23854f40ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_9560e2a5727e7abcadf6a705.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_92289912e0d606c4109cb1fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.115234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_203ffaa253d3707ce08776c9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_acf6248a934412f984875c55.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937012;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-50.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:34.260000px;}
.v1{vertical-align:50.400000px;}
.v4{vertical-align:51.540000px;}
.v5{vertical-align:99.360000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.261600px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.162600px;}
.ls19{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.046080px;}
.ls1c{letter-spacing:-0.036000px;}
.ls14{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.162600px;}
.lse{letter-spacing:0.162720px;}
.ls1{letter-spacing:0.164160px;}
.ls16{letter-spacing:0.197400px;}
.ls12{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.246240px;}
.ls9{letter-spacing:0.285840px;}
.ls8{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.295920px;}
.ls6{letter-spacing:0.325200px;}
.ls5{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.458400px;}
.ls1f{letter-spacing:0.972000px;}
.ls11{letter-spacing:2.322720px;}
.ls0{letter-spacing:3.168000px;}
.ls7{letter-spacing:7.056000px;}
.lsd{letter-spacing:9.522720px;}
.ls4{letter-spacing:12.525840px;}
.lsb{letter-spacing:12.645840px;}
.lsf{letter-spacing:18.162720px;}
.lsa{letter-spacing:66.522720px;}
.ls13{letter-spacing:97.560000px;}
.ls3{letter-spacing:306.756000px;}
.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;}
}
.ws3{word-spacing:-167.760000px;}
.ws13{word-spacing:-73.458720px;}
.ws10{word-spacing:-47.095680px;}
.ws5{word-spacing:-46.997280px;}
.ws4{word-spacing:-46.962480px;}
.ws6{word-spacing:-46.834680px;}
.ws9{word-spacing:-46.799880px;}
.ws8{word-spacing:-46.677312px;}
.ws7{word-spacing:-46.637280px;}
.ws11{word-spacing:-46.474680px;}
.wsf{word-spacing:-46.375680px;}
.wsa{word-spacing:-40.032000px;}
.wsb{word-spacing:-39.888000px;}
.ws2{word-spacing:-31.224960px;}
.ws15{word-spacing:-30.024000px;}
.ws14{word-spacing:-29.808000px;}
.ws16{word-spacing:-29.736000px;}
.ws1{word-spacing:-25.384320px;}
.ws0{word-spacing:-25.338240px;}
.ws17{word-spacing:0.000000px;}
.ws12{word-spacing:55.728000px;}
.wsc{word-spacing:264.684000px;}
.wsd{word-spacing:599.496000px;}
.wse{word-spacing:648.312000px;}
._9{margin-left:-18.956880px;}
._7{margin-left:-14.151600px;}
._10{margin-left:-11.881440px;}
._4{margin-left:-8.891280px;}
._5{margin-left:-7.523520px;}
._20{margin-left:-6.480000px;}
._b{margin-left:-5.284800px;}
._2{margin-left:-3.960000px;}
._1{margin-left:-2.376000px;}
._6{margin-left:-1.146960px;}
._3{width:1.128960px;}
._0{width:2.376000px;}
._8{width:4.137600px;}
._16{width:6.717600px;}
._1c{width:9.452880px;}
._1d{width:10.476720px;}
._1b{width:17.864640px;}
._1f{width:19.146240px;}
._22{width:21.198960px;}
._c{width:29.221680px;}
._19{width:53.546880px;}
._f{width:54.892800px;}
._1a{width:57.170880px;}
._13{width:67.219200px;}
._12{width:69.481920px;}
._1e{width:82.879920px;}
._15{width:95.808960px;}
._21{width:97.560000px;}
._e{width:111.255120px;}
._18{width:118.465200px;}
._17{width:144.259200px;}
._11{width:176.585520px;}
._d{width:181.732800px;}
._14{width:332.940000px;}
._23{width:401.976000px;}
._a{width:4846.076640px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:108.000000px;}
.fs2{font-size:112.320000px;}
.fs6{font-size:144.000000px;}
.fs1{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fs5{font-size:192.240000px;}
.fs3{font-size:264.240000px;}
.fs4{font-size:324.000000px;}
.fs0{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:21.924000px;}
.y7{bottom:46.332000px;}
.y4f{bottom:47.484000px;}
.y4a{bottom:54.324000px;}
.y4e{bottom:79.884000px;}
.y49{bottom:86.724000px;}
.y6{bottom:96.732000px;}
.y4d{bottom:112.284000px;}
.y48{bottom:119.124000px;}
.y21{bottom:144.510000px;}
.y24{bottom:144.615000px;}
.y4c{bottom:144.684000px;}
.y47{bottom:151.530000px;}
.y34{bottom:170.250000px;}
.y45{bottom:184.710000px;}
.y42{bottom:195.585000px;}
.y50{bottom:202.650000px;}
.y41{bottom:290.265000px;}
.y40{bottom:322.665000px;}
.y1d{bottom:343.185000px;}
.y3f{bottom:355.065000px;}
.y3e{bottom:412.050000px;}
.y46{bottom:423.435000px;}
.y3d{bottom:541.365000px;}
.y3c{bottom:591.765000px;}
.y3b{bottom:692.565000px;}
.y3a{bottom:793.365000px;}
.y39{bottom:843.765000px;}
.y38{bottom:944.565000px;}
.y37{bottom:994.965000px;}
.y36{bottom:1095.765000px;}
.y35{bottom:1146.165000px;}
.y33{bottom:1239.195000px;}
.y44{bottom:1242.645000px;}
.y32{bottom:1531.470000px;}
.y31{bottom:1581.870000px;}
.y30{bottom:1682.670000px;}
.y2f{bottom:1783.515000px;}
.y2e{bottom:1833.915000px;}
.y2d{bottom:1884.315000px;}
.y2c{bottom:1985.115000px;}
.y2b{bottom:2035.515000px;}
.y2a{bottom:2085.915000px;}
.y29{bottom:2136.315000px;}
.y27{bottom:2262.270000px;}
.y28{bottom:2266.410000px;}
.y23{bottom:2386.800000px;}
.y1c{bottom:2485.980000px;}
.y26{bottom:2506.575000px;}
.y20{bottom:2546.820000px;}
.y25{bottom:2556.255000px;}
.y22{bottom:2618.745000px;}
.y1f{bottom:2691.330000px;}
.y1e{bottom:2779.485000px;}
.y1b{bottom:2804.325000px;}
.y1a{bottom:2940.990000px;}
.y19{bottom:2991.390000px;}
.y13{bottom:2999.160000px;}
.yf{bottom:3041.130000px;}
.y12{bottom:3049.560000px;}
.y16{bottom:3050.790000px;}
.ye{bottom:3091.530000px;}
.y18{bottom:3092.190000px;}
.y11{bottom:3099.960000px;}
.y15{bottom:3101.190000px;}
.yd{bottom:3141.930000px;}
.y17{bottom:3142.590000px;}
.y10{bottom:3150.360000px;}
.y14{bottom:3151.590000px;}
.yc{bottom:3250.185000px;}
.ya{bottom:3340.290000px;}
.y43{bottom:3348.210000px;}
.y8{bottom:3581.820000px;}
.yb{bottom:4360.065000px;}
.y9{bottom:4360.350000px;}
.y5{bottom:4543.815000px;}
.y4{bottom:4595.475000px;}
.y3{bottom:4633.635000px;}
.y2{bottom:4695.735000px;}
.y1{bottom:4814.535000px;}
.h15{height:78.943359px;}
.h4{height:101.625469px;}
.h10{height:105.257812px;}
.h14{height:107.419922px;}
.h3{height:121.373789px;}
.hb{height:122.625352px;}
.hc{height:122.730609px;}
.ha{height:124.263633px;}
.hd{height:130.289062px;}
.h13{height:151.786758px;}
.h5{height:166.858945px;}
.h2{height:171.773789px;}
.h9{height:173.935898px;}
.h6{height:193.148086px;}
.h12{height:204.617813px;}
.h7{height:293.150391px;}
.hf{height:318.240000px;}
.h11{height:318.420000px;}
.h8{height:327.410391px;}
.h1{height:358.294922px;}
.he{height:666.000000px;}
.h0{height:4927.500000px;}
.w5{width:221.940000px;}
.w3{width:301.680000px;}
.w4{width:328.140000px;}
.w1{width:3580.500000px;}
.w2{width:3580.559947px;}
.w0{width:3580.560000px;}
.x0{left:0.000000px;}
.x15{left:11.955000px;}
.x19{left:13.245000px;}
.x24{left:87.407947px;}
.x9{left:95.219947px;}
.x8{left:100.079947px;}
.x25{left:123.875947px;}
.xc{left:139.319947px;}
.xb{left:151.484947px;}
.x22{left:152.819947px;}
.xd{left:179.819947px;}
.x23{left:192.599947px;}
.xa{left:215.129947px;}
.x1b{left:217.185000px;}
.x2c{left:224.819947px;}
.x2d{left:249.584947px;}
.x7{left:470.309947px;}
.x1{left:557.924947px;}
.x2{left:841.424947px;}
.x4{left:970.994947px;}
.xe{left:1012.424947px;}
.x3{left:1158.374947px;}
.x6{left:1159.559947px;}
.x5{left:1244.234947px;}
.xf{left:1779.194947px;}
.x10{left:1819.694947px;}
.x21{left:1847.444947px;}
.x28{left:2069.639947px;}
.x2b{left:2082.884947px;}
.x2f{left:2124.899947px;}
.x27{left:2136.809947px;}
.x29{left:2161.154947px;}
.x26{left:2194.409947px;}
.x2a{left:2201.654947px;}
.x2e{left:2204.384947px;}
.x31{left:2208.134947px;}
.x11{left:2599.559947px;}
.x1e{left:2609.640000px;}
.x1d{left:2631.809947px;}
.x12{left:2633.399947px;}
.x13{left:2656.649947px;}
.x17{left:2670.869947px;}
.x18{left:2831.400000px;}
.x30{left:2835.434947px;}
.x1f{left:2882.624947px;}
.x20{left:2897.564947px;}
.x1a{left:3036.524947px;}
.x14{left:3159.360000px;}
.x16{left:3249.254947px;}
.x1c{left:3265.454947px;}
@media print{
.v2{vertical-align:-44.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:30.453333pt;}
.v1{vertical-align:44.800000pt;}
.v4{vertical-align:45.813333pt;}
.v5{vertical-align:88.320000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.232533pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.144533pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.040960pt;}
.ls1c{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.144533pt;}
.lse{letter-spacing:0.144640pt;}
.ls1{letter-spacing:0.145920pt;}
.ls16{letter-spacing:0.175467pt;}
.ls12{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.218880pt;}
.ls9{letter-spacing:0.254080pt;}
.ls8{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.263040pt;}
.ls6{letter-spacing:0.289067pt;}
.ls5{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.407467pt;}
.ls1f{letter-spacing:0.864000pt;}
.ls11{letter-spacing:2.064640pt;}
.ls0{letter-spacing:2.816000pt;}
.ls7{letter-spacing:6.272000pt;}
.lsd{letter-spacing:8.464640pt;}
.ls4{letter-spacing:11.134080pt;}
.lsb{letter-spacing:11.240747pt;}
.lsf{letter-spacing:16.144640pt;}
.lsa{letter-spacing:59.131307pt;}
.ls13{letter-spacing:86.720000pt;}
.ls3{letter-spacing:272.672000pt;}
.ws3{word-spacing:-149.120000pt;}
.ws13{word-spacing:-65.296640pt;}
.ws10{word-spacing:-41.862827pt;}
.ws5{word-spacing:-41.775360pt;}
.ws4{word-spacing:-41.744427pt;}
.ws6{word-spacing:-41.630827pt;}
.ws9{word-spacing:-41.599893pt;}
.ws8{word-spacing:-41.490944pt;}
.ws7{word-spacing:-41.455360pt;}
.ws11{word-spacing:-41.310827pt;}
.wsf{word-spacing:-41.222827pt;}
.wsa{word-spacing:-35.584000pt;}
.wsb{word-spacing:-35.456000pt;}
.ws2{word-spacing:-27.755520pt;}
.ws15{word-spacing:-26.688000pt;}
.ws14{word-spacing:-26.496000pt;}
.ws16{word-spacing:-26.432000pt;}
.ws1{word-spacing:-22.563840pt;}
.ws0{word-spacing:-22.522880pt;}
.ws17{word-spacing:0.000000pt;}
.ws12{word-spacing:49.536000pt;}
.wsc{word-spacing:235.274667pt;}
.wsd{word-spacing:532.885333pt;}
.wse{word-spacing:576.277333pt;}
._9{margin-left:-16.850560pt;}
._7{margin-left:-12.579200pt;}
._10{margin-left:-10.561280pt;}
._4{margin-left:-7.903360pt;}
._5{margin-left:-6.687573pt;}
._20{margin-left:-5.760000pt;}
._b{margin-left:-4.697600pt;}
._2{margin-left:-3.520000pt;}
._1{margin-left:-2.112000pt;}
._6{margin-left:-1.019520pt;}
._3{width:1.003520pt;}
._0{width:2.112000pt;}
._8{width:3.677867pt;}
._16{width:5.971200pt;}
._1c{width:8.402560pt;}
._1d{width:9.312640pt;}
._1b{width:15.879680pt;}
._1f{width:17.018880pt;}
._22{width:18.843520pt;}
._c{width:25.974827pt;}
._19{width:47.597227pt;}
._f{width:48.793600pt;}
._1a{width:50.818560pt;}
._13{width:59.750400pt;}
._12{width:61.761707pt;}
._1e{width:73.671040pt;}
._15{width:85.163520pt;}
._21{width:86.720000pt;}
._e{width:98.893440pt;}
._18{width:105.302400pt;}
._17{width:128.230400pt;}
._11{width:156.964907pt;}
._d{width:161.540267pt;}
._14{width:295.946667pt;}
._23{width:357.312000pt;}
._a{width:4307.623680pt;}
.fs8{font-size:96.000000pt;}
.fs2{font-size:99.840000pt;}
.fs6{font-size:128.000000pt;}
.fs1{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fs5{font-size:170.880000pt;}
.fs3{font-size:234.880000pt;}
.fs4{font-size:288.000000pt;}
.fs0{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:19.488000pt;}
.y7{bottom:41.184000pt;}
.y4f{bottom:42.208000pt;}
.y4a{bottom:48.288000pt;}
.y4e{bottom:71.008000pt;}
.y49{bottom:77.088000pt;}
.y6{bottom:85.984000pt;}
.y4d{bottom:99.808000pt;}
.y48{bottom:105.888000pt;}
.y21{bottom:128.453333pt;}
.y24{bottom:128.546667pt;}
.y4c{bottom:128.608000pt;}
.y47{bottom:134.693333pt;}
.y34{bottom:151.333333pt;}
.y45{bottom:164.186667pt;}
.y42{bottom:173.853333pt;}
.y50{bottom:180.133333pt;}
.y41{bottom:258.013333pt;}
.y40{bottom:286.813333pt;}
.y1d{bottom:305.053333pt;}
.y3f{bottom:315.613333pt;}
.y3e{bottom:366.266667pt;}
.y46{bottom:376.386667pt;}
.y3d{bottom:481.213333pt;}
.y3c{bottom:526.013333pt;}
.y3b{bottom:615.613333pt;}
.y3a{bottom:705.213333pt;}
.y39{bottom:750.013333pt;}
.y38{bottom:839.613333pt;}
.y37{bottom:884.413333pt;}
.y36{bottom:974.013333pt;}
.y35{bottom:1018.813333pt;}
.y33{bottom:1101.506667pt;}
.y44{bottom:1104.573333pt;}
.y32{bottom:1361.306667pt;}
.y31{bottom:1406.106667pt;}
.y30{bottom:1495.706667pt;}
.y2f{bottom:1585.346667pt;}
.y2e{bottom:1630.146667pt;}
.y2d{bottom:1674.946667pt;}
.y2c{bottom:1764.546667pt;}
.y2b{bottom:1809.346667pt;}
.y2a{bottom:1854.146667pt;}
.y29{bottom:1898.946667pt;}
.y27{bottom:2010.906667pt;}
.y28{bottom:2014.586667pt;}
.y23{bottom:2121.600000pt;}
.y1c{bottom:2209.760000pt;}
.y26{bottom:2228.066667pt;}
.y20{bottom:2263.840000pt;}
.y25{bottom:2272.226667pt;}
.y22{bottom:2327.773333pt;}
.y1f{bottom:2392.293333pt;}
.y1e{bottom:2470.653333pt;}
.y1b{bottom:2492.733333pt;}
.y1a{bottom:2614.213333pt;}
.y19{bottom:2659.013333pt;}
.y13{bottom:2665.920000pt;}
.yf{bottom:2703.226667pt;}
.y12{bottom:2710.720000pt;}
.y16{bottom:2711.813333pt;}
.ye{bottom:2748.026667pt;}
.y18{bottom:2748.613333pt;}
.y11{bottom:2755.520000pt;}
.y15{bottom:2756.613333pt;}
.yd{bottom:2792.826667pt;}
.y17{bottom:2793.413333pt;}
.y10{bottom:2800.320000pt;}
.y14{bottom:2801.413333pt;}
.yc{bottom:2889.053333pt;}
.ya{bottom:2969.146667pt;}
.y43{bottom:2976.186667pt;}
.y8{bottom:3183.840000pt;}
.yb{bottom:3875.613333pt;}
.y9{bottom:3875.866667pt;}
.y5{bottom:4038.946667pt;}
.y4{bottom:4084.866667pt;}
.y3{bottom:4118.786667pt;}
.y2{bottom:4173.986667pt;}
.y1{bottom:4279.586667pt;}
.h15{height:70.171875pt;}
.h4{height:90.333750pt;}
.h10{height:93.562500pt;}
.h14{height:95.484375pt;}
.h3{height:107.887812pt;}
.hb{height:109.000312pt;}
.hc{height:109.093875pt;}
.ha{height:110.456562pt;}
.hd{height:115.812500pt;}
.h13{height:134.921562pt;}
.h5{height:148.319063pt;}
.h2{height:152.687812pt;}
.h9{height:154.609688pt;}
.h6{height:171.687187pt;}
.h12{height:181.882500pt;}
.h7{height:260.578125pt;}
.hf{height:282.880000pt;}
.h11{height:283.040000pt;}
.h8{height:291.031458pt;}
.h1{height:318.484375pt;}
.he{height:592.000000pt;}
.h0{height:4380.000000pt;}
.w5{width:197.280000pt;}
.w3{width:268.160000pt;}
.w4{width:291.680000pt;}
.w1{width:3182.666667pt;}
.w2{width:3182.719953pt;}
.w0{width:3182.720000pt;}
.x0{left:0.000000pt;}
.x15{left:10.626667pt;}
.x19{left:11.773333pt;}
.x24{left:77.695953pt;}
.x9{left:84.639953pt;}
.x8{left:88.959953pt;}
.x25{left:110.111953pt;}
.xc{left:123.839953pt;}
.xb{left:134.653286pt;}
.x22{left:135.839953pt;}
.xd{left:159.839953pt;}
.x23{left:171.199953pt;}
.xa{left:191.226619pt;}
.x1b{left:193.053333pt;}
.x2c{left:199.839953pt;}
.x2d{left:221.853286pt;}
.x7{left:418.053286pt;}
.x1{left:495.933286pt;}
.x2{left:747.933286pt;}
.x4{left:863.106619pt;}
.xe{left:899.933286pt;}
.x3{left:1029.666619pt;}
.x6{left:1030.719953pt;}
.x5{left:1105.986619pt;}
.xf{left:1581.506619pt;}
.x10{left:1617.506619pt;}
.x21{left:1642.173286pt;}
.x28{left:1839.679953pt;}
.x2b{left:1851.453286pt;}
.x2f{left:1888.799953pt;}
.x27{left:1899.386619pt;}
.x29{left:1921.026619pt;}
.x26{left:1950.586619pt;}
.x2a{left:1957.026619pt;}
.x2e{left:1959.453286pt;}
.x31{left:1962.786619pt;}
.x11{left:2310.719953pt;}
.x1e{left:2319.680000pt;}
.x1d{left:2339.386619pt;}
.x12{left:2340.799953pt;}
.x13{left:2361.466619pt;}
.x17{left:2374.106619pt;}
.x18{left:2516.800000pt;}
.x30{left:2520.386619pt;}
.x1f{left:2562.333286pt;}
.x20{left:2575.613286pt;}
.x1a{left:2699.133286pt;}
.x14{left:2808.320000pt;}
.x16{left:2888.226619pt;}
.x1c{left:2902.626619pt;}
}




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