
    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_8f267e80650e3cbf757d1b7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_5d3db8e7840ccbd95abfc471.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933000;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_5fc8d4f89d4c55faf26eb637.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.101000;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_50c361830f29d8bea01701e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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_788643c03493f89b8c45be46.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.041000;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_f276b48de9bc684a0c3bb6b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.036000;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_cfcf407513402a62378e819a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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_b4132339ddceda2d4064be67.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.m2{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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls44{letter-spacing:-2.016000px;}
.ls8{letter-spacing:-1.440000px;}
.ls40{letter-spacing:-1.380000px;}
.ls3a{letter-spacing:-1.200000px;}
.ls31{letter-spacing:-0.840000px;}
.ls24{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.702000px;}
.ls30{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.600000px;}
.ls2f{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.486000px;}
.ls11{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.432000px;}
.ls20{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.336000px;}
.lsd{letter-spacing:-0.324000px;}
.ls1e{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.240000px;}
.ls34{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.108000px;}
.ls21{letter-spacing:-0.060000px;}
.ls9{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.090000px;}
.ls32{letter-spacing:0.120000px;}
.ls3d{letter-spacing:0.147480px;}
.ls0{letter-spacing:0.162000px;}
.ls15{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.253020px;}
.ls3f{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.330000px;}
.ls36{letter-spacing:0.348960px;}
.ls1d{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.390000px;}
.ls13{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.486000px;}
.ls39{letter-spacing:0.510000px;}
.ls12{letter-spacing:0.540000px;}
.ls41{letter-spacing:0.570000px;}
.ls1{letter-spacing:0.594000px;}
.ls1c{letter-spacing:0.600000px;}
.ls3e{letter-spacing:0.630000px;}
.ls17{letter-spacing:0.660000px;}
.ls25{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.780000px;}
.ls2b{letter-spacing:0.840000px;}
.ls28{letter-spacing:0.900000px;}
.ls27{letter-spacing:0.960000px;}
.ls29{letter-spacing:0.973200px;}
.ls19{letter-spacing:1.020000px;}
.ls35{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.140000px;}
.ls3b{letter-spacing:1.200000px;}
.ls2e{letter-spacing:1.212000px;}
.ls37{letter-spacing:1.260000px;}
.ls43{letter-spacing:1.320000px;}
.ls42{letter-spacing:1.500000px;}
.ls5{letter-spacing:1.782000px;}
.ls38{letter-spacing:1.896000px;}
.ls10{letter-spacing:1.944000px;}
.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:-17.226000px;}
.ws12{word-spacing:-16.980000px;}
.ws59{word-spacing:-16.140000px;}
.ws3{word-spacing:-15.720000px;}
.ws52{word-spacing:-15.660000px;}
.ws55{word-spacing:-14.340000px;}
.ws1{word-spacing:-14.148000px;}
.ws0{word-spacing:-13.344000px;}
.ws4e{word-spacing:-13.248000px;}
.ws33{word-spacing:-13.152000px;}
.ws21{word-spacing:-13.104000px;}
.ws49{word-spacing:-12.384000px;}
.ws4{word-spacing:-12.096000px;}
.ws58{word-spacing:-11.568000px;}
.ws3e{word-spacing:-1.740000px;}
.ws1d{word-spacing:-1.680000px;}
.ws18{word-spacing:-1.620000px;}
.wse{word-spacing:-1.566000px;}
.ws13{word-spacing:-1.560000px;}
.ws20{word-spacing:-1.500000px;}
.wsb{word-spacing:-1.458000px;}
.ws51{word-spacing:-1.440000px;}
.wsc{word-spacing:-1.404000px;}
.ws23{word-spacing:-1.380000px;}
.ws31{word-spacing:-1.320000px;}
.ws38{word-spacing:-1.200000px;}
.ws25{word-spacing:-1.140000px;}
.ws34{word-spacing:-1.080000px;}
.ws9{word-spacing:-1.026000px;}
.ws2b{word-spacing:-1.020000px;}
.ws3c{word-spacing:-0.960000px;}
.ws4d{word-spacing:-0.900000px;}
.ws4c{word-spacing:-0.840000px;}
.ws1c{word-spacing:-0.780000px;}
.ws22{word-spacing:-0.720000px;}
.ws32{word-spacing:-0.660000px;}
.ws43{word-spacing:-0.600000px;}
.ws2e{word-spacing:-0.540000px;}
.ws56{word-spacing:-0.480000px;}
.ws46{word-spacing:-0.420000px;}
.ws6{word-spacing:-0.378000px;}
.ws48{word-spacing:-0.360000px;}
.ws2c{word-spacing:-0.300000px;}
.ws42{word-spacing:-0.240000px;}
.ws2d{word-spacing:-0.180000px;}
.ws45{word-spacing:-0.120000px;}
.ws40{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws44{word-spacing:0.060000px;}
.wsd{word-spacing:0.108000px;}
.ws1f{word-spacing:0.120000px;}
.ws37{word-spacing:0.240000px;}
.ws35{word-spacing:0.300000px;}
.ws14{word-spacing:0.360000px;}
.ws1b{word-spacing:0.420000px;}
.ws11{word-spacing:0.480000px;}
.ws39{word-spacing:0.600000px;}
.ws2f{word-spacing:0.660000px;}
.ws50{word-spacing:0.720000px;}
.ws29{word-spacing:0.780000px;}
.ws47{word-spacing:0.840000px;}
.ws30{word-spacing:0.900000px;}
.ws57{word-spacing:1.020000px;}
.ws3b{word-spacing:1.080000px;}
.ws36{word-spacing:1.140000px;}
.ws7{word-spacing:1.188000px;}
.ws4b{word-spacing:1.200000px;}
.ws1e{word-spacing:1.260000px;}
.ws17{word-spacing:1.320000px;}
.ws54{word-spacing:1.380000px;}
.wsa{word-spacing:1.404000px;}
.ws19{word-spacing:1.440000px;}
.ws8{word-spacing:1.458000px;}
.ws10{word-spacing:1.500000px;}
.ws15{word-spacing:1.560000px;}
.ws16{word-spacing:1.620000px;}
.ws2a{word-spacing:1.680000px;}
.ws28{word-spacing:1.740000px;}
.ws3a{word-spacing:1.800000px;}
.ws3f{word-spacing:1.860000px;}
.ws26{word-spacing:1.920000px;}
.ws27{word-spacing:1.980000px;}
.ws4a{word-spacing:2.040000px;}
.ws1a{word-spacing:2.100000px;}
.ws3d{word-spacing:2.160000px;}
.ws24{word-spacing:2.220000px;}
.ws53{word-spacing:2.340000px;}
.ws4f{word-spacing:2.400000px;}
.ws41{word-spacing:2.580000px;}
.ws5b{word-spacing:2.700000px;}
.ws5a{word-spacing:2.940000px;}
.wsf{word-spacing:3.564000px;}
._5{margin-left:-1227.120000px;}
._3{margin-left:-4.575600px;}
._1{margin-left:-3.240000px;}
._0{margin-left:-1.447200px;}
._2{width:1.668600px;}
._7{width:2.863800px;}
._6{width:3.919800px;}
._a{width:32.940000px;}
._9{width:37.140000px;}
._8{width:46.260000px;}
._4{width:89.520000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(112,111,111);}
.fs4{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.379550px;}
.y7e{bottom:130.246050px;}
.y50{bottom:132.933150px;}
.ya5{bottom:144.933150px;}
.y22{bottom:144.999150px;}
.y7d{bottom:148.246050px;}
.y4f{bottom:150.933150px;}
.ya4{bottom:162.933150px;}
.y21{bottom:162.999150px;}
.y7c{bottom:166.246050px;}
.y4e{bottom:168.933150px;}
.ya3{bottom:180.933150px;}
.y7b{bottom:184.246050px;}
.y4d{bottom:186.933150px;}
.ya2{bottom:198.933150px;}
.y7a{bottom:202.246050px;}
.y4c{bottom:204.933150px;}
.ya1{bottom:216.933150px;}
.y79{bottom:220.246050px;}
.y4b{bottom:222.933150px;}
.ya0{bottom:234.933150px;}
.y78{bottom:238.246050px;}
.y4a{bottom:240.933150px;}
.y9f{bottom:252.933150px;}
.y77{bottom:256.246050px;}
.y49{bottom:258.933150px;}
.y9e{bottom:270.933150px;}
.y76{bottom:274.246050px;}
.y48{bottom:276.933150px;}
.y9d{bottom:288.933150px;}
.y75{bottom:292.246050px;}
.y47{bottom:294.933150px;}
.y9c{bottom:306.933150px;}
.y74{bottom:310.246050px;}
.y46{bottom:312.933150px;}
.y9b{bottom:324.933150px;}
.y73{bottom:328.246050px;}
.y20{bottom:328.599150px;}
.y45{bottom:330.933150px;}
.y9a{bottom:342.933150px;}
.y1f{bottom:344.799150px;}
.y72{bottom:346.246050px;}
.y44{bottom:348.933150px;}
.y99{bottom:360.933150px;}
.y71{bottom:364.246050px;}
.y43{bottom:366.933150px;}
.y1e{bottom:377.199150px;}
.y98{bottom:378.933150px;}
.y70{bottom:382.246050px;}
.y42{bottom:384.933150px;}
.ya6{bottom:390.933150px;}
.y1d{bottom:393.399150px;}
.y97{bottom:396.933150px;}
.y6f{bottom:400.246050px;}
.y41{bottom:402.933150px;}
.y1c{bottom:409.599150px;}
.y96{bottom:414.933150px;}
.y6e{bottom:418.246050px;}
.y40{bottom:420.933150px;}
.y1b{bottom:425.799150px;}
.y95{bottom:432.933150px;}
.y6d{bottom:436.246050px;}
.y3f{bottom:438.933150px;}
.y1a{bottom:441.999150px;}
.y94{bottom:450.933150px;}
.y6c{bottom:454.246050px;}
.y3e{bottom:456.933150px;}
.y19{bottom:458.199150px;}
.y93{bottom:468.933150px;}
.y6b{bottom:472.246050px;}
.y18{bottom:474.399150px;}
.y3d{bottom:474.933150px;}
.y92{bottom:486.933150px;}
.y6a{bottom:490.246050px;}
.y17{bottom:490.599150px;}
.y3c{bottom:492.933150px;}
.y91{bottom:504.933150px;}
.y16{bottom:506.799150px;}
.y69{bottom:508.246050px;}
.y3b{bottom:510.933150px;}
.y90{bottom:522.933150px;}
.y15{bottom:522.999150px;}
.y68{bottom:526.246050px;}
.y3a{bottom:528.933150px;}
.y14{bottom:539.199150px;}
.y8f{bottom:540.933150px;}
.y67{bottom:544.246050px;}
.y39{bottom:546.933150px;}
.y8e{bottom:558.933150px;}
.y66{bottom:562.246050px;}
.y38{bottom:564.933150px;}
.y13{bottom:573.151200px;}
.y8d{bottom:576.933150px;}
.y65{bottom:580.246050px;}
.y37{bottom:582.933150px;}
.y8c{bottom:594.933150px;}
.y64{bottom:598.246050px;}
.y36{bottom:600.933150px;}
.y12{bottom:610.951050px;}
.y8b{bottom:612.933150px;}
.y63{bottom:616.246050px;}
.y35{bottom:618.933150px;}
.y11{bottom:627.151050px;}
.y8a{bottom:630.933150px;}
.y62{bottom:634.246050px;}
.y34{bottom:636.933150px;}
.y89{bottom:648.933150px;}
.y61{bottom:652.246050px;}
.y33{bottom:654.933150px;}
.y10{bottom:659.551050px;}
.y88{bottom:666.933150px;}
.y60{bottom:670.246050px;}
.y32{bottom:672.933150px;}
.yf{bottom:675.751050px;}
.y87{bottom:684.933150px;}
.y5f{bottom:688.246050px;}
.y31{bottom:690.933150px;}
.ye{bottom:691.951050px;}
.y86{bottom:702.933150px;}
.y5e{bottom:706.246050px;}
.yd{bottom:708.151050px;}
.y30{bottom:708.933150px;}
.y85{bottom:720.933150px;}
.y5d{bottom:724.246050px;}
.yc{bottom:724.351050px;}
.y2f{bottom:726.933150px;}
.y84{bottom:738.933150px;}
.yb{bottom:740.551050px;}
.y5c{bottom:742.246050px;}
.y2e{bottom:744.933150px;}
.ya{bottom:756.751050px;}
.y83{bottom:756.933150px;}
.y5b{bottom:760.246050px;}
.y2d{bottom:762.933150px;}
.y9{bottom:772.951050px;}
.y82{bottom:774.933150px;}
.y5a{bottom:778.246050px;}
.y2c{bottom:780.933150px;}
.y8{bottom:789.151050px;}
.y81{bottom:792.933150px;}
.y59{bottom:796.246050px;}
.y2b{bottom:798.933150px;}
.y7{bottom:805.351050px;}
.y80{bottom:810.933150px;}
.y58{bottom:814.246050px;}
.y2a{bottom:816.933150px;}
.y6{bottom:821.551050px;}
.y7f{bottom:828.933150px;}
.y57{bottom:832.246050px;}
.y29{bottom:834.933150px;}
.y5{bottom:837.751050px;}
.y56{bottom:850.246050px;}
.y28{bottom:852.933150px;}
.y55{bottom:868.246050px;}
.y4{bottom:870.151200px;}
.y27{bottom:870.933150px;}
.y54{bottom:886.246050px;}
.y3{bottom:886.351200px;}
.y26{bottom:888.933150px;}
.y53{bottom:904.246050px;}
.y51{bottom:906.933150px;}
.y2{bottom:912.203100px;}
.y52{bottom:922.246050px;}
.y25{bottom:924.933150px;}
.y24{bottom:967.002750px;}
.y23{bottom:980.502750px;}
.h2{height:37.776000px;}
.h8{height:42.288000px;}
.h6{height:45.468000px;}
.h9{height:47.220000px;}
.h5{height:47.574000px;}
.ha{height:50.520000px;}
.h7{height:52.860000px;}
.h4{height:56.664000px;}
.h3{height:66.024000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:52.164750px;}
.x6{left:53.208600px;}
.x3{left:84.397800px;}
.x2{left:85.809750px;}
.x9{left:95.669250px;}
.xe{left:103.900500px;}
.x7{left:105.375750px;}
.x8{left:106.386150px;}
.xd{left:126.660150px;}
.xc{left:127.830150px;}
.xf{left:165.205500px;}
.xa{left:360.984000px;}
.x5{left:531.681150px;}
.x4{left:543.129150px;}
.x1{left:649.175100px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls44{letter-spacing:-1.792000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls40{letter-spacing:-1.226667pt;}
.ls3a{letter-spacing:-1.066667pt;}
.ls31{letter-spacing:-0.746667pt;}
.ls24{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.624000pt;}
.ls30{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.533333pt;}
.ls2f{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.432000pt;}
.ls11{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.384000pt;}
.ls20{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.298667pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls1e{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls34{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls21{letter-spacing:-0.053333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.080000pt;}
.ls32{letter-spacing:0.106667pt;}
.ls3d{letter-spacing:0.131093pt;}
.ls0{letter-spacing:0.144000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.224907pt;}
.ls3f{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.293333pt;}
.ls36{letter-spacing:0.310187pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.346667pt;}
.ls13{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.432000pt;}
.ls39{letter-spacing:0.453333pt;}
.ls12{letter-spacing:0.480000pt;}
.ls41{letter-spacing:0.506667pt;}
.ls1{letter-spacing:0.528000pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls3e{letter-spacing:0.560000pt;}
.ls17{letter-spacing:0.586667pt;}
.ls25{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.693333pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls28{letter-spacing:0.800000pt;}
.ls27{letter-spacing:0.853333pt;}
.ls29{letter-spacing:0.865067pt;}
.ls19{letter-spacing:0.906667pt;}
.ls35{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.013333pt;}
.ls3b{letter-spacing:1.066667pt;}
.ls2e{letter-spacing:1.077333pt;}
.ls37{letter-spacing:1.120000pt;}
.ls43{letter-spacing:1.173333pt;}
.ls42{letter-spacing:1.333333pt;}
.ls5{letter-spacing:1.584000pt;}
.ls38{letter-spacing:1.685333pt;}
.ls10{letter-spacing:1.728000pt;}
.ws2{word-spacing:-15.312000pt;}
.ws12{word-spacing:-15.093333pt;}
.ws59{word-spacing:-14.346667pt;}
.ws3{word-spacing:-13.973333pt;}
.ws52{word-spacing:-13.920000pt;}
.ws55{word-spacing:-12.746667pt;}
.ws1{word-spacing:-12.576000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws4e{word-spacing:-11.776000pt;}
.ws33{word-spacing:-11.690667pt;}
.ws21{word-spacing:-11.648000pt;}
.ws49{word-spacing:-11.008000pt;}
.ws4{word-spacing:-10.752000pt;}
.ws58{word-spacing:-10.282667pt;}
.ws3e{word-spacing:-1.546667pt;}
.ws1d{word-spacing:-1.493333pt;}
.ws18{word-spacing:-1.440000pt;}
.wse{word-spacing:-1.392000pt;}
.ws13{word-spacing:-1.386667pt;}
.ws20{word-spacing:-1.333333pt;}
.wsb{word-spacing:-1.296000pt;}
.ws51{word-spacing:-1.280000pt;}
.wsc{word-spacing:-1.248000pt;}
.ws23{word-spacing:-1.226667pt;}
.ws31{word-spacing:-1.173333pt;}
.ws38{word-spacing:-1.066667pt;}
.ws25{word-spacing:-1.013333pt;}
.ws34{word-spacing:-0.960000pt;}
.ws9{word-spacing:-0.912000pt;}
.ws2b{word-spacing:-0.906667pt;}
.ws3c{word-spacing:-0.853333pt;}
.ws4d{word-spacing:-0.800000pt;}
.ws4c{word-spacing:-0.746667pt;}
.ws1c{word-spacing:-0.693333pt;}
.ws22{word-spacing:-0.640000pt;}
.ws32{word-spacing:-0.586667pt;}
.ws43{word-spacing:-0.533333pt;}
.ws2e{word-spacing:-0.480000pt;}
.ws56{word-spacing:-0.426667pt;}
.ws46{word-spacing:-0.373333pt;}
.ws6{word-spacing:-0.336000pt;}
.ws48{word-spacing:-0.320000pt;}
.ws2c{word-spacing:-0.266667pt;}
.ws42{word-spacing:-0.213333pt;}
.ws2d{word-spacing:-0.160000pt;}
.ws45{word-spacing:-0.106667pt;}
.ws40{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws44{word-spacing:0.053333pt;}
.wsd{word-spacing:0.096000pt;}
.ws1f{word-spacing:0.106667pt;}
.ws37{word-spacing:0.213333pt;}
.ws35{word-spacing:0.266667pt;}
.ws14{word-spacing:0.320000pt;}
.ws1b{word-spacing:0.373333pt;}
.ws11{word-spacing:0.426667pt;}
.ws39{word-spacing:0.533333pt;}
.ws2f{word-spacing:0.586667pt;}
.ws50{word-spacing:0.640000pt;}
.ws29{word-spacing:0.693333pt;}
.ws47{word-spacing:0.746667pt;}
.ws30{word-spacing:0.800000pt;}
.ws57{word-spacing:0.906667pt;}
.ws3b{word-spacing:0.960000pt;}
.ws36{word-spacing:1.013333pt;}
.ws7{word-spacing:1.056000pt;}
.ws4b{word-spacing:1.066667pt;}
.ws1e{word-spacing:1.120000pt;}
.ws17{word-spacing:1.173333pt;}
.ws54{word-spacing:1.226667pt;}
.wsa{word-spacing:1.248000pt;}
.ws19{word-spacing:1.280000pt;}
.ws8{word-spacing:1.296000pt;}
.ws10{word-spacing:1.333333pt;}
.ws15{word-spacing:1.386667pt;}
.ws16{word-spacing:1.440000pt;}
.ws2a{word-spacing:1.493333pt;}
.ws28{word-spacing:1.546667pt;}
.ws3a{word-spacing:1.600000pt;}
.ws3f{word-spacing:1.653333pt;}
.ws26{word-spacing:1.706667pt;}
.ws27{word-spacing:1.760000pt;}
.ws4a{word-spacing:1.813333pt;}
.ws1a{word-spacing:1.866667pt;}
.ws3d{word-spacing:1.920000pt;}
.ws24{word-spacing:1.973333pt;}
.ws53{word-spacing:2.080000pt;}
.ws4f{word-spacing:2.133333pt;}
.ws41{word-spacing:2.293333pt;}
.ws5b{word-spacing:2.400000pt;}
.ws5a{word-spacing:2.613333pt;}
.wsf{word-spacing:3.168000pt;}
._5{margin-left:-1090.773333pt;}
._3{margin-left:-4.067200pt;}
._1{margin-left:-2.880000pt;}
._0{margin-left:-1.286400pt;}
._2{width:1.483200pt;}
._7{width:2.545600pt;}
._6{width:3.484267pt;}
._a{width:29.280000pt;}
._9{width:33.013333pt;}
._8{width:41.120000pt;}
._4{width:79.573333pt;}
.fs4{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.226267pt;}
.y7e{bottom:115.774267pt;}
.y50{bottom:118.162800pt;}
.ya5{bottom:128.829467pt;}
.y22{bottom:128.888133pt;}
.y7d{bottom:131.774267pt;}
.y4f{bottom:134.162800pt;}
.ya4{bottom:144.829467pt;}
.y21{bottom:144.888133pt;}
.y7c{bottom:147.774267pt;}
.y4e{bottom:150.162800pt;}
.ya3{bottom:160.829467pt;}
.y7b{bottom:163.774267pt;}
.y4d{bottom:166.162800pt;}
.ya2{bottom:176.829467pt;}
.y7a{bottom:179.774267pt;}
.y4c{bottom:182.162800pt;}
.ya1{bottom:192.829467pt;}
.y79{bottom:195.774267pt;}
.y4b{bottom:198.162800pt;}
.ya0{bottom:208.829467pt;}
.y78{bottom:211.774267pt;}
.y4a{bottom:214.162800pt;}
.y9f{bottom:224.829467pt;}
.y77{bottom:227.774267pt;}
.y49{bottom:230.162800pt;}
.y9e{bottom:240.829467pt;}
.y76{bottom:243.774267pt;}
.y48{bottom:246.162800pt;}
.y9d{bottom:256.829467pt;}
.y75{bottom:259.774267pt;}
.y47{bottom:262.162800pt;}
.y9c{bottom:272.829467pt;}
.y74{bottom:275.774267pt;}
.y46{bottom:278.162800pt;}
.y9b{bottom:288.829467pt;}
.y73{bottom:291.774267pt;}
.y20{bottom:292.088133pt;}
.y45{bottom:294.162800pt;}
.y9a{bottom:304.829467pt;}
.y1f{bottom:306.488133pt;}
.y72{bottom:307.774267pt;}
.y44{bottom:310.162800pt;}
.y99{bottom:320.829467pt;}
.y71{bottom:323.774267pt;}
.y43{bottom:326.162800pt;}
.y1e{bottom:335.288133pt;}
.y98{bottom:336.829467pt;}
.y70{bottom:339.774267pt;}
.y42{bottom:342.162800pt;}
.ya6{bottom:347.496133pt;}
.y1d{bottom:349.688133pt;}
.y97{bottom:352.829467pt;}
.y6f{bottom:355.774267pt;}
.y41{bottom:358.162800pt;}
.y1c{bottom:364.088133pt;}
.y96{bottom:368.829467pt;}
.y6e{bottom:371.774267pt;}
.y40{bottom:374.162800pt;}
.y1b{bottom:378.488133pt;}
.y95{bottom:384.829467pt;}
.y6d{bottom:387.774267pt;}
.y3f{bottom:390.162800pt;}
.y1a{bottom:392.888133pt;}
.y94{bottom:400.829467pt;}
.y6c{bottom:403.774267pt;}
.y3e{bottom:406.162800pt;}
.y19{bottom:407.288133pt;}
.y93{bottom:416.829467pt;}
.y6b{bottom:419.774267pt;}
.y18{bottom:421.688133pt;}
.y3d{bottom:422.162800pt;}
.y92{bottom:432.829467pt;}
.y6a{bottom:435.774267pt;}
.y17{bottom:436.088133pt;}
.y3c{bottom:438.162800pt;}
.y91{bottom:448.829467pt;}
.y16{bottom:450.488133pt;}
.y69{bottom:451.774267pt;}
.y3b{bottom:454.162800pt;}
.y90{bottom:464.829467pt;}
.y15{bottom:464.888133pt;}
.y68{bottom:467.774267pt;}
.y3a{bottom:470.162800pt;}
.y14{bottom:479.288133pt;}
.y8f{bottom:480.829467pt;}
.y67{bottom:483.774267pt;}
.y39{bottom:486.162800pt;}
.y8e{bottom:496.829467pt;}
.y66{bottom:499.774267pt;}
.y38{bottom:502.162800pt;}
.y13{bottom:509.467733pt;}
.y8d{bottom:512.829467pt;}
.y65{bottom:515.774267pt;}
.y37{bottom:518.162800pt;}
.y8c{bottom:528.829467pt;}
.y64{bottom:531.774267pt;}
.y36{bottom:534.162800pt;}
.y12{bottom:543.067600pt;}
.y8b{bottom:544.829467pt;}
.y63{bottom:547.774267pt;}
.y35{bottom:550.162800pt;}
.y11{bottom:557.467600pt;}
.y8a{bottom:560.829467pt;}
.y62{bottom:563.774267pt;}
.y34{bottom:566.162800pt;}
.y89{bottom:576.829467pt;}
.y61{bottom:579.774267pt;}
.y33{bottom:582.162800pt;}
.y10{bottom:586.267600pt;}
.y88{bottom:592.829467pt;}
.y60{bottom:595.774267pt;}
.y32{bottom:598.162800pt;}
.yf{bottom:600.667600pt;}
.y87{bottom:608.829467pt;}
.y5f{bottom:611.774267pt;}
.y31{bottom:614.162800pt;}
.ye{bottom:615.067600pt;}
.y86{bottom:624.829467pt;}
.y5e{bottom:627.774267pt;}
.yd{bottom:629.467600pt;}
.y30{bottom:630.162800pt;}
.y85{bottom:640.829467pt;}
.y5d{bottom:643.774267pt;}
.yc{bottom:643.867600pt;}
.y2f{bottom:646.162800pt;}
.y84{bottom:656.829467pt;}
.yb{bottom:658.267600pt;}
.y5c{bottom:659.774267pt;}
.y2e{bottom:662.162800pt;}
.ya{bottom:672.667600pt;}
.y83{bottom:672.829467pt;}
.y5b{bottom:675.774267pt;}
.y2d{bottom:678.162800pt;}
.y9{bottom:687.067600pt;}
.y82{bottom:688.829467pt;}
.y5a{bottom:691.774267pt;}
.y2c{bottom:694.162800pt;}
.y8{bottom:701.467600pt;}
.y81{bottom:704.829467pt;}
.y59{bottom:707.774267pt;}
.y2b{bottom:710.162800pt;}
.y7{bottom:715.867600pt;}
.y80{bottom:720.829467pt;}
.y58{bottom:723.774267pt;}
.y2a{bottom:726.162800pt;}
.y6{bottom:730.267600pt;}
.y7f{bottom:736.829467pt;}
.y57{bottom:739.774267pt;}
.y29{bottom:742.162800pt;}
.y5{bottom:744.667600pt;}
.y56{bottom:755.774267pt;}
.y28{bottom:758.162800pt;}
.y55{bottom:771.774267pt;}
.y4{bottom:773.467733pt;}
.y27{bottom:774.162800pt;}
.y54{bottom:787.774267pt;}
.y3{bottom:787.867733pt;}
.y26{bottom:790.162800pt;}
.y53{bottom:803.774267pt;}
.y51{bottom:806.162800pt;}
.y2{bottom:810.847200pt;}
.y52{bottom:819.774267pt;}
.y25{bottom:822.162800pt;}
.y24{bottom:859.558000pt;}
.y23{bottom:871.558000pt;}
.h2{height:33.578667pt;}
.h8{height:37.589333pt;}
.h6{height:40.416000pt;}
.h9{height:41.973333pt;}
.h5{height:42.288000pt;}
.ha{height:44.906667pt;}
.h7{height:46.986667pt;}
.h4{height:50.368000pt;}
.h3{height:58.688000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:46.368667pt;}
.x6{left:47.296533pt;}
.x3{left:75.020267pt;}
.x2{left:76.275333pt;}
.x9{left:85.039333pt;}
.xe{left:92.356000pt;}
.x7{left:93.667333pt;}
.x8{left:94.565467pt;}
.xd{left:112.586800pt;}
.xc{left:113.626800pt;}
.xf{left:146.849333pt;}
.xa{left:320.874667pt;}
.x5{left:472.605467pt;}
.x4{left:482.781467pt;}
.x1{left:577.044533pt;}
}




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