
    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_d4c38a012353c21baa9ea1b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_1690e0a9c1731991d1327b1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945000;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_72ace93b2f442f5b6dc5b6db.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.746000;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_350cc26f000e2270a8ec98f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939000;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_80b2fcbb8afab50c9c204580.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_5f96387ac5b4fc0c9c768c25.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.876000;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_24d0ab9db6fca890afc8c843.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765137;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;}
.ls3{letter-spacing:-2.268000px;}
.ls16{letter-spacing:-2.100000px;}
.ls13{letter-spacing:-1.944000px;}
.ls18{letter-spacing:-1.860000px;}
.ls15{letter-spacing:-1.728000px;}
.ls14{letter-spacing:-1.512000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.176000px;}
.ls1c{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-1.020000px;}
.ls8{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.840000px;}
.ls1e{letter-spacing:-0.768000px;}
.ls10{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.300000px;}
.ls7{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.120000px;}
.ls1a{letter-spacing:-0.060000px;}
.ls6{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.720000px;}
.ls0{letter-spacing:1.476564px;}
.ls1{letter-spacing:1.800000px;}
.ls2{letter-spacing:3.600000px;}
.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;}
}
.ws2{word-spacing:-53.280000px;}
.ws1{word-spacing:-51.480000px;}
.ws18{word-spacing:-28.836000px;}
.ws3{word-spacing:-27.540000px;}
.ws0{word-spacing:-21.853147px;}
.ws19{word-spacing:-15.240000px;}
.ws5{word-spacing:-15.180000px;}
.ws4{word-spacing:-14.580000px;}
.ws1a{word-spacing:-14.460000px;}
.wsd{word-spacing:-3.600000px;}
.ws7{word-spacing:-1.476564px;}
.ws20{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.420000px;}
.ws11{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws25{word-spacing:0.060000px;}
.wsf{word-spacing:0.120000px;}
.ws21{word-spacing:0.144000px;}
.ws17{word-spacing:0.180000px;}
.ws27{word-spacing:0.216000px;}
.wsc{word-spacing:0.240000px;}
.ws15{word-spacing:0.300000px;}
.wsa{word-spacing:0.360000px;}
.ws9{word-spacing:0.420000px;}
.ws12{word-spacing:0.540000px;}
.ws10{word-spacing:0.660000px;}
.ws16{word-spacing:0.720000px;}
.ws2a{word-spacing:0.768000px;}
.ws13{word-spacing:0.900000px;}
.ws26{word-spacing:0.960000px;}
.wse{word-spacing:0.972000px;}
.ws14{word-spacing:1.020000px;}
.ws28{word-spacing:1.080000px;}
.ws23{word-spacing:1.176000px;}
.ws29{word-spacing:1.440000px;}
.ws1c{word-spacing:1.512000px;}
.ws1d{word-spacing:1.728000px;}
.ws24{word-spacing:1.860000px;}
.ws1b{word-spacing:1.944000px;}
.ws22{word-spacing:2.100000px;}
.ws8{word-spacing:2.268000px;}
.ws1e{word-spacing:5.040000px;}
.ws1f{word-spacing:5.796000px;}
._9{margin-left:-25.850400px;}
._8{margin-left:-10.745098px;}
._7{margin-left:-7.765200px;}
._3{margin-left:-4.140000px;}
._0{margin-left:-2.362502px;}
._4{margin-left:-1.260000px;}
._2{width:1.101600px;}
._1{width:2.106000px;}
._5{width:3.316800px;}
._6{width:4.795200px;}
._a{width:5.955600px;}
.fce{color:rgb(85,192,74);}
.fcd{color:rgb(37,75,137);}
.fca{color:transparent;}
.fc1{color:rgb(85,191,74);}
.fc2{color:rgb(56,40,36);}
.fc3{color:rgb(241,233,220);}
.fcc{color:rgb(27,24,26);}
.fc0{color:rgb(52,100,51);}
.fc8{color:rgb(84,189,73);}
.fc4{color:rgb(51,102,57);}
.fc9{color:rgb(53,102,51);}
.fcb{color:rgb(41,71,158);}
.fc5{color:rgb(64,107,59);}
.fc6{color:rgb(96,196,81);}
.fc7{color:rgb(55,105,53);}
.fs7{font-size:7.213200px;}
.fs8{font-size:28.564200px;}
.fs5{font-size:32.134800px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:73.828200px;}
.fsa{font-size:78.000000px;}
.fs9{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:139.500000px;}
.fs3{font-size:180.000000px;}
.y1f{bottom:-8.796900px;}
.y21{bottom:-1.388400px;}
.y0{bottom:0.000000px;}
.y1c{bottom:0.183600px;}
.y4c{bottom:3.238950px;}
.y4a{bottom:4.821450px;}
.yb{bottom:55.275600px;}
.y22{bottom:63.779550px;}
.y30{bottom:77.648850px;}
.y1a{bottom:174.318000px;}
.y29{bottom:192.555900px;}
.y19{bottom:199.833000px;}
.y28{bottom:203.355900px;}
.y2e{bottom:221.859900px;}
.y18{bottom:225.348000px;}
.y2d{bottom:232.659900px;}
.y2c{bottom:243.459900px;}
.y2f{bottom:248.280000px;}
.y17{bottom:250.863000px;}
.y2b{bottom:254.259900px;}
.y2a{bottom:265.059900px;}
.y16{bottom:276.378000px;}
.y27{bottom:297.500610px;}
.y26{bottom:307.141050px;}
.y31{bottom:338.638500px;}
.y15{bottom:354.353100px;}
.y25{bottom:391.815750px;}
.y24{bottom:436.959750px;}
.y14{bottom:480.472500px;}
.y23{bottom:482.103750px;}
.y37{bottom:578.363250px;}
.y4b{bottom:588.841500px;}
.y48{bottom:592.062450px;}
.y36{bottom:599.363250px;}
.y49{bottom:617.634000px;}
.y47{bottom:622.446450px;}
.y35{bottom:624.615300px;}
.ya{bottom:646.102650px;}
.y46{bottom:652.830450px;}
.y34{bottom:666.615300px;}
.y9{bottom:671.602650px;}
.y33{bottom:687.615300px;}
.y8{bottom:697.102650px;}
.y45{bottom:697.906950px;}
.y32{bottom:712.867200px;}
.y7{bottom:722.602650px;}
.y6{bottom:748.102650px;}
.y5{bottom:773.602650px;}
.y4{bottom:799.102650px;}
.y3{bottom:834.076950px;}
.y13{bottom:851.596200px;}
.y12{bottom:877.096200px;}
.y11{bottom:902.596200px;}
.y10{bottom:928.096200px;}
.y43{bottom:948.149550px;}
.y3f{bottom:948.164550px;}
.y3b{bottom:948.179550px;}
.yf{bottom:953.596200px;}
.y42{bottom:973.664550px;}
.y3e{bottom:973.679550px;}
.y3a{bottom:973.694550px;}
.ye{bottom:979.096200px;}
.y41{bottom:999.179550px;}
.y3d{bottom:999.194550px;}
.y39{bottom:999.209550px;}
.yd{bottom:1004.596200px;}
.y40{bottom:1024.694550px;}
.y3c{bottom:1024.709550px;}
.y38{bottom:1024.724550px;}
.yc{bottom:1036.939200px;}
.y44{bottom:1062.173550px;}
.y1d{bottom:1168.351500px;}
.y2{bottom:1168.535956px;}
.y1b{bottom:1190.851500px;}
.y1{bottom:1191.035100px;}
.y20{bottom:1192.423500px;}
.y1e{bottom:1199.832000px;}
.ha{height:4.200000px;}
.h9{height:4.306500px;}
.h11{height:5.518098px;}
.h16{height:9.136500px;}
.hc{height:9.802500px;}
.hb{height:10.074000px;}
.h7{height:13.287000px;}
.h8{height:13.288500px;}
.h12{height:21.423150px;}
.h17{height:21.766500px;}
.h18{height:23.349000px;}
.he{height:23.426269px;}
.hf{height:27.252000px;}
.h4{height:44.760000px;}
.h14{height:46.320000px;}
.h10{height:50.208000px;}
.h2{height:56.995370px;}
.h13{height:62.664000px;}
.h15{height:74.112000px;}
.hd{height:80.568000px;}
.h3{height:83.376000px;}
.h6{height:101.416500px;}
.h5{height:138.960000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:5.992500px;}
.w6{width:6.657000px;}
.w4{width:12.138000px;}
.wc{width:16.855500px;}
.w2{width:18.480000px;}
.w3{width:21.510000px;}
.wa{width:24.807000px;}
.we{width:25.084500px;}
.w7{width:28.978500px;}
.w8{width:32.422500px;}
.w11{width:33.577500px;}
.w13{width:33.982500px;}
.wb{width:35.526000px;}
.wd{width:36.559500px;}
.w10{width:37.065000px;}
.w12{width:37.066500px;}
.w9{width:55.822500px;}
.wf{width:98.827500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x43{left:-401.432700px;}
.x41{left:-353.962200px;}
.x3f{left:-306.487200px;}
.x3e{left:-258.608100px;}
.x19{left:-73.255200px;}
.xf{left:-69.323700px;}
.x15{left:-67.597200px;}
.x17{left:-63.652200px;}
.x1e{left:-62.195700px;}
.x13{left:-51.577500px;}
.x21{left:-34.522200px;}
.x1c{left:-21.352200px;}
.x28{left:-20.106000px;}
.x11{left:-18.764550px;}
.x0{left:0.000000px;}
.x30{left:53.185500px;}
.x2f{left:65.395500px;}
.x7{left:69.712950px;}
.x1{left:72.027300px;}
.x2b{left:78.215250px;}
.x2c{left:81.201900px;}
.xd{left:84.094500px;}
.x1b{left:93.379500px;}
.x20{left:106.549500px;}
.x2e{left:110.875500px;}
.x6{left:118.835850px;}
.x1d{left:134.223000px;}
.x16{left:135.679500px;}
.x2d{left:136.714350px;}
.x14{left:139.624500px;}
.xe{left:141.351000px;}
.x18{left:145.282500px;}
.x2a{left:149.247150px;}
.x2{left:160.547312px;}
.x1a{left:175.276500px;}
.x1f{left:178.945500px;}
.x27{left:184.060500px;}
.x10{left:194.040000px;}
.x12{left:212.133000px;}
.x5{left:232.617750px;}
.x22{left:242.879400px;}
.xc{left:279.628500px;}
.x38{left:321.087000px;}
.x33{left:335.215500px;}
.x29{left:353.099250px;}
.x32{left:359.290500px;}
.x31{left:361.300500px;}
.x8{left:373.184100px;}
.x34{left:383.395500px;}
.x3c{left:391.085550px;}
.x3b{left:438.965550px;}
.xb{left:472.677000px;}
.x26{left:499.370250px;}
.x23{left:516.897150px;}
.x3a{left:525.341550px;}
.x39{left:535.997850px;}
.x25{left:538.842450px;}
.x24{left:540.360150px;}
.x3{left:566.290950px;}
.x4{left:612.974700px;}
.x37{left:633.880500px;}
.x36{left:656.035500px;}
.xa{left:668.055150px;}
.x35{left:693.460500px;}
.x3d{left:697.573500px;}
.x9{left:730.852050px;}
.x40{left:745.048500px;}
.x42{left:792.519000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-2.016000pt;}
.ls16{letter-spacing:-1.866667pt;}
.ls13{letter-spacing:-1.728000pt;}
.ls18{letter-spacing:-1.653333pt;}
.ls15{letter-spacing:-1.536000pt;}
.ls14{letter-spacing:-1.344000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-1.045333pt;}
.ls1c{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.906667pt;}
.ls8{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.746667pt;}
.ls1e{letter-spacing:-0.682667pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.266667pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.106667pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls0{letter-spacing:1.312501pt;}
.ls1{letter-spacing:1.600000pt;}
.ls2{letter-spacing:3.200000pt;}
.ws2{word-spacing:-47.360000pt;}
.ws1{word-spacing:-45.760000pt;}
.ws18{word-spacing:-25.632000pt;}
.ws3{word-spacing:-24.480000pt;}
.ws0{word-spacing:-19.425020pt;}
.ws19{word-spacing:-13.546667pt;}
.ws5{word-spacing:-13.493333pt;}
.ws4{word-spacing:-12.960000pt;}
.ws1a{word-spacing:-12.853333pt;}
.wsd{word-spacing:-3.200000pt;}
.ws7{word-spacing:-1.312501pt;}
.ws20{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.373333pt;}
.ws11{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws25{word-spacing:0.053333pt;}
.wsf{word-spacing:0.106667pt;}
.ws21{word-spacing:0.128000pt;}
.ws17{word-spacing:0.160000pt;}
.ws27{word-spacing:0.192000pt;}
.wsc{word-spacing:0.213333pt;}
.ws15{word-spacing:0.266667pt;}
.wsa{word-spacing:0.320000pt;}
.ws9{word-spacing:0.373333pt;}
.ws12{word-spacing:0.480000pt;}
.ws10{word-spacing:0.586667pt;}
.ws16{word-spacing:0.640000pt;}
.ws2a{word-spacing:0.682667pt;}
.ws13{word-spacing:0.800000pt;}
.ws26{word-spacing:0.853333pt;}
.wse{word-spacing:0.864000pt;}
.ws14{word-spacing:0.906667pt;}
.ws28{word-spacing:0.960000pt;}
.ws23{word-spacing:1.045333pt;}
.ws29{word-spacing:1.280000pt;}
.ws1c{word-spacing:1.344000pt;}
.ws1d{word-spacing:1.536000pt;}
.ws24{word-spacing:1.653333pt;}
.ws1b{word-spacing:1.728000pt;}
.ws22{word-spacing:1.866667pt;}
.ws8{word-spacing:2.016000pt;}
.ws1e{word-spacing:4.480000pt;}
.ws1f{word-spacing:5.152000pt;}
._9{margin-left:-22.978133pt;}
._8{margin-left:-9.551198pt;}
._7{margin-left:-6.902400pt;}
._3{margin-left:-3.680000pt;}
._0{margin-left:-2.100002pt;}
._4{margin-left:-1.120000pt;}
._2{width:0.979200pt;}
._1{width:1.872000pt;}
._5{width:2.948267pt;}
._6{width:4.262400pt;}
._a{width:5.293867pt;}
.fs7{font-size:6.411733pt;}
.fs8{font-size:25.390400pt;}
.fs5{font-size:28.564267pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:65.625067pt;}
.fsa{font-size:69.333333pt;}
.fs9{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:124.000000pt;}
.fs3{font-size:160.000000pt;}
.y1f{bottom:-7.819467pt;}
.y21{bottom:-1.234133pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:0.163200pt;}
.y4c{bottom:2.879067pt;}
.y4a{bottom:4.285733pt;}
.yb{bottom:49.133867pt;}
.y22{bottom:56.692933pt;}
.y30{bottom:69.021200pt;}
.y1a{bottom:154.949333pt;}
.y29{bottom:171.160800pt;}
.y19{bottom:177.629333pt;}
.y28{bottom:180.760800pt;}
.y2e{bottom:197.208800pt;}
.y18{bottom:200.309333pt;}
.y2d{bottom:206.808800pt;}
.y2c{bottom:216.408800pt;}
.y2f{bottom:220.693333pt;}
.y17{bottom:222.989333pt;}
.y2b{bottom:226.008800pt;}
.y2a{bottom:235.608800pt;}
.y16{bottom:245.669333pt;}
.y27{bottom:264.444987pt;}
.y26{bottom:273.014267pt;}
.y31{bottom:301.012000pt;}
.y15{bottom:314.980533pt;}
.y25{bottom:348.280667pt;}
.y24{bottom:388.408667pt;}
.y14{bottom:427.086667pt;}
.y23{bottom:428.536667pt;}
.y37{bottom:514.100667pt;}
.y4b{bottom:523.414667pt;}
.y48{bottom:526.277733pt;}
.y36{bottom:532.767333pt;}
.y49{bottom:549.008000pt;}
.y47{bottom:553.285733pt;}
.y35{bottom:555.213600pt;}
.ya{bottom:574.313467pt;}
.y46{bottom:580.293733pt;}
.y34{bottom:592.546933pt;}
.y9{bottom:596.980133pt;}
.y33{bottom:611.213600pt;}
.y8{bottom:619.646800pt;}
.y45{bottom:620.361733pt;}
.y32{bottom:633.659733pt;}
.y7{bottom:642.313467pt;}
.y6{bottom:664.980133pt;}
.y5{bottom:687.646800pt;}
.y4{bottom:710.313467pt;}
.y3{bottom:741.401733pt;}
.y13{bottom:756.974400pt;}
.y12{bottom:779.641067pt;}
.y11{bottom:802.307733pt;}
.y10{bottom:824.974400pt;}
.y43{bottom:842.799600pt;}
.y3f{bottom:842.812933pt;}
.y3b{bottom:842.826267pt;}
.yf{bottom:847.641067pt;}
.y42{bottom:865.479600pt;}
.y3e{bottom:865.492933pt;}
.y3a{bottom:865.506267pt;}
.ye{bottom:870.307733pt;}
.y41{bottom:888.159600pt;}
.y3d{bottom:888.172933pt;}
.y39{bottom:888.186267pt;}
.yd{bottom:892.974400pt;}
.y40{bottom:910.839600pt;}
.y3c{bottom:910.852933pt;}
.y38{bottom:910.866267pt;}
.yc{bottom:921.723733pt;}
.y44{bottom:944.154267pt;}
.y1d{bottom:1038.534667pt;}
.y2{bottom:1038.698628pt;}
.y1b{bottom:1058.534667pt;}
.y1{bottom:1058.697867pt;}
.y20{bottom:1059.932000pt;}
.y1e{bottom:1066.517333pt;}
.ha{height:3.733333pt;}
.h9{height:3.828000pt;}
.h11{height:4.904976pt;}
.h16{height:8.121333pt;}
.hc{height:8.713333pt;}
.hb{height:8.954667pt;}
.h7{height:11.810667pt;}
.h8{height:11.812000pt;}
.h12{height:19.042800pt;}
.h17{height:19.348000pt;}
.h18{height:20.754667pt;}
.he{height:20.823350pt;}
.hf{height:24.224000pt;}
.h4{height:39.786667pt;}
.h14{height:41.173333pt;}
.h10{height:44.629333pt;}
.h2{height:50.662551pt;}
.h13{height:55.701333pt;}
.h15{height:65.877333pt;}
.hd{height:71.616000pt;}
.h3{height:74.112000pt;}
.h6{height:90.148000pt;}
.h5{height:123.520000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:5.326667pt;}
.w6{width:5.917333pt;}
.w4{width:10.789333pt;}
.wc{width:14.982667pt;}
.w2{width:16.426667pt;}
.w3{width:19.120000pt;}
.wa{width:22.050667pt;}
.we{width:22.297333pt;}
.w7{width:25.758667pt;}
.w8{width:28.820000pt;}
.w11{width:29.846667pt;}
.w13{width:30.206667pt;}
.wb{width:31.578667pt;}
.wd{width:32.497333pt;}
.w10{width:32.946667pt;}
.w12{width:32.948000pt;}
.w9{width:49.620000pt;}
.wf{width:87.846667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x43{left:-356.829067pt;}
.x41{left:-314.633067pt;}
.x3f{left:-272.433067pt;}
.x3e{left:-229.873867pt;}
.x19{left:-65.115733pt;}
.xf{left:-61.621067pt;}
.x15{left:-60.086400pt;}
.x17{left:-56.579733pt;}
.x1e{left:-55.285067pt;}
.x13{left:-45.846667pt;}
.x21{left:-30.686400pt;}
.x1c{left:-18.979733pt;}
.x28{left:-17.872000pt;}
.x11{left:-16.679600pt;}
.x0{left:0.000000pt;}
.x30{left:47.276000pt;}
.x2f{left:58.129333pt;}
.x7{left:61.967067pt;}
.x1{left:64.024267pt;}
.x2b{left:69.524667pt;}
.x2c{left:72.179467pt;}
.xd{left:74.750667pt;}
.x1b{left:83.004000pt;}
.x20{left:94.710667pt;}
.x2e{left:98.556000pt;}
.x6{left:105.631867pt;}
.x1d{left:119.309333pt;}
.x16{left:120.604000pt;}
.x2d{left:121.523867pt;}
.x14{left:124.110667pt;}
.xe{left:125.645333pt;}
.x18{left:129.140000pt;}
.x2a{left:132.664133pt;}
.x2{left:142.708722pt;}
.x1a{left:155.801333pt;}
.x1f{left:159.062667pt;}
.x27{left:163.609333pt;}
.x10{left:172.480000pt;}
.x12{left:188.562667pt;}
.x5{left:206.771333pt;}
.x22{left:215.892800pt;}
.xc{left:248.558667pt;}
.x38{left:285.410667pt;}
.x33{left:297.969333pt;}
.x29{left:313.866000pt;}
.x32{left:319.369333pt;}
.x31{left:321.156000pt;}
.x8{left:331.719200pt;}
.x34{left:340.796000pt;}
.x3c{left:347.631600pt;}
.x3b{left:390.191600pt;}
.xb{left:420.157333pt;}
.x26{left:443.884667pt;}
.x23{left:459.464133pt;}
.x3a{left:466.970267pt;}
.x39{left:476.442533pt;}
.x25{left:478.971067pt;}
.x24{left:480.320133pt;}
.x3{left:503.369733pt;}
.x4{left:544.866400pt;}
.x37{left:563.449333pt;}
.x36{left:583.142667pt;}
.xa{left:593.826800pt;}
.x35{left:616.409333pt;}
.x3d{left:620.065333pt;}
.x9{left:649.646267pt;}
.x40{left:662.265333pt;}
.x42{left:704.461333pt;}
}




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