
    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_879b70f968edb4e4219a3e9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_892b86484873765c3a59175f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_2ee302109faeb5aee4669307.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_55eef17b791a32ff6f48d5fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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;}
.v1{vertical-align:21.780000px;}
.ls27{letter-spacing:-1.914000px;}
.ls20{letter-spacing:-1.650000px;}
.ls29{letter-spacing:-1.584000px;}
.ls3a{letter-spacing:-1.452000px;}
.ls34{letter-spacing:-1.188000px;}
.ls26{letter-spacing:-1.122000px;}
.ls2a{letter-spacing:-1.056000px;}
.ls38{letter-spacing:-0.990000px;}
.ls28{letter-spacing:-0.924000px;}
.ls7{letter-spacing:-0.912000px;}
.ls33{letter-spacing:-0.858000px;}
.lsb{letter-spacing:-0.840000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.726000px;}
.lsc{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.684000px;}
.ls3d{letter-spacing:-0.660000px;}
.ls1d{letter-spacing:-0.594000px;}
.ls36{letter-spacing:-0.528000px;}
.ls35{letter-spacing:-0.462000px;}
.ls18{letter-spacing:-0.396000px;}
.ls8{letter-spacing:-0.342000px;}
.ls1a{letter-spacing:-0.330000px;}
.ls6{letter-spacing:-0.285000px;}
.ls1b{letter-spacing:-0.264000px;}
.ls32{letter-spacing:-0.198000px;}
.ls9{letter-spacing:-0.171000px;}
.ls25{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.066000px;}
.ls21{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.066000px;}
.ls2f{letter-spacing:0.132000px;}
.ls1{letter-spacing:0.171000px;}
.ls11{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.228000px;}
.ls24{letter-spacing:0.264000px;}
.ls15{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.330000px;}
.ls3{letter-spacing:0.342000px;}
.ls2c{letter-spacing:0.396000px;}
.ls0{letter-spacing:0.399000px;}
.ls1c{letter-spacing:0.462000px;}
.ls23{letter-spacing:0.528000px;}
.ls2b{letter-spacing:0.594000px;}
.ls31{letter-spacing:0.660000px;}
.lse{letter-spacing:0.684000px;}
.ls17{letter-spacing:0.702000px;}
.ls2d{letter-spacing:0.726000px;}
.lsd{letter-spacing:0.741000px;}
.ls22{letter-spacing:0.792000px;}
.ls14{letter-spacing:0.924000px;}
.ls10{letter-spacing:0.990000px;}
.ls4{letter-spacing:1.140000px;}
.ls30{letter-spacing:1.188000px;}
.ls39{letter-spacing:1.254000px;}
.ls37{letter-spacing:1.320000px;}
.ls3c{letter-spacing:1.452000px;}
.ls3b{letter-spacing:1.518000px;}
.ls2e{letter-spacing:1.650000px;}
.lsf{letter-spacing:15.480000px;}
.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;}
}
.ws65{word-spacing:-18.018000px;}
.ws64{word-spacing:-17.952000px;}
.ws61{word-spacing:-17.820000px;}
.ws60{word-spacing:-17.754000px;}
.ws58{word-spacing:-17.688000px;}
.ws1d{word-spacing:-17.490000px;}
.ws59{word-spacing:-17.028000px;}
.ws1e{word-spacing:-16.962000px;}
.ws55{word-spacing:-16.896000px;}
.ws20{word-spacing:-16.830000px;}
.ws41{word-spacing:-16.698000px;}
.ws63{word-spacing:-16.632000px;}
.ws19{word-spacing:-16.500000px;}
.ws1a{word-spacing:-16.434000px;}
.ws5d{word-spacing:-16.368000px;}
.ws52{word-spacing:-16.302000px;}
.ws57{word-spacing:-16.236000px;}
.ws1c{word-spacing:-16.170000px;}
.ws56{word-spacing:-16.038000px;}
.ws1f{word-spacing:-15.906000px;}
.ws5f{word-spacing:-15.774000px;}
.ws54{word-spacing:-15.708000px;}
.ws5e{word-spacing:-15.642000px;}
.ws42{word-spacing:-15.576000px;}
.ws53{word-spacing:-15.444000px;}
.ws66{word-spacing:-15.000000px;}
.ws15{word-spacing:-14.991000px;}
.ws16{word-spacing:-14.934000px;}
.ws21{word-spacing:-14.850000px;}
.ws18{word-spacing:-14.649000px;}
.ws0{word-spacing:-14.535000px;}
.ws2{word-spacing:-14.250000px;}
.ws26{word-spacing:-14.202000px;}
.ws25{word-spacing:-13.770000px;}
.ws3{word-spacing:-13.500000px;}
.ws23{word-spacing:-11.952000px;}
.ws67{word-spacing:-11.250000px;}
.ws14{word-spacing:-7.392000px;}
.ws62{word-spacing:-0.858000px;}
.ws33{word-spacing:-0.792000px;}
.ws38{word-spacing:-0.726000px;}
.ws5c{word-spacing:-0.660000px;}
.ws31{word-spacing:-0.594000px;}
.ws11{word-spacing:-0.570000px;}
.ws2e{word-spacing:-0.528000px;}
.ws2b{word-spacing:-0.462000px;}
.ws4{word-spacing:-0.456000px;}
.wsd{word-spacing:-0.399000px;}
.ws36{word-spacing:-0.396000px;}
.ws1b{word-spacing:-0.330000px;}
.ws2c{word-spacing:-0.323400px;}
.ws2d{word-spacing:-0.264000px;}
.ws3a{word-spacing:-0.198000px;}
.ws4a{word-spacing:-0.132000px;}
.ws51{word-spacing:-0.066000px;}
.ws13{word-spacing:-0.057000px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:0.114000px;}
.ws69{word-spacing:0.132000px;}
.wsc{word-spacing:0.171000px;}
.ws4b{word-spacing:0.198000px;}
.ws35{word-spacing:0.264000px;}
.ws12{word-spacing:0.285000px;}
.ws3e{word-spacing:0.324000px;}
.ws3d{word-spacing:0.378000px;}
.ws68{word-spacing:0.396000px;}
.ws2a{word-spacing:0.399000px;}
.ws4f{word-spacing:0.462000px;}
.ws30{word-spacing:0.594000px;}
.ws40{word-spacing:0.648000px;}
.ws5a{word-spacing:0.660000px;}
.ws29{word-spacing:0.684000px;}
.ws3b{word-spacing:0.726000px;}
.ws4c{word-spacing:0.792000px;}
.ws17{word-spacing:0.855000px;}
.ws3c{word-spacing:0.858000px;}
.ws4e{word-spacing:0.924000px;}
.ws1{word-spacing:0.969000px;}
.ws5b{word-spacing:0.990000px;}
.ws6{word-spacing:1.026000px;}
.ws50{word-spacing:1.056000px;}
.ws3f{word-spacing:1.080000px;}
.wsf{word-spacing:1.083000px;}
.ws4d{word-spacing:1.122000px;}
.wse{word-spacing:1.140000px;}
.ws32{word-spacing:1.188000px;}
.ws8{word-spacing:1.197000px;}
.ws7{word-spacing:1.254000px;}
.ws39{word-spacing:1.320000px;}
.ws49{word-spacing:1.386000px;}
.wsb{word-spacing:1.425000px;}
.ws34{word-spacing:1.452000px;}
.ws37{word-spacing:1.518000px;}
.ws2f{word-spacing:1.584000px;}
.wsa{word-spacing:6.270000px;}
.ws27{word-spacing:8.436000px;}
.ws28{word-spacing:8.493000px;}
.ws10{word-spacing:9.234000px;}
.ws46{word-spacing:21.120000px;}
.ws44{word-spacing:21.846000px;}
.ws43{word-spacing:23.100000px;}
.ws48{word-spacing:28.050000px;}
.ws47{word-spacing:29.766000px;}
.ws45{word-spacing:30.294000px;}
.ws22{word-spacing:35.904000px;}
.ws24{word-spacing:36.018000px;}
._b{margin-left:-9.195000px;}
._2{margin-left:-7.410000px;}
._a{margin-left:-6.390000px;}
._9{margin-left:-5.016000px;}
._6{margin-left:-3.792000px;}
._1{margin-left:-2.244000px;}
._0{margin-left:-1.233000px;}
._4{width:1.902000px;}
._3{width:5.700000px;}
._8{width:7.809000px;}
._5{width:9.405000px;}
._f{width:19.500000px;}
._d{width:24.024000px;}
._7{width:47.952000px;}
._e{width:219.612000px;}
._c{width:939.120000px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:45.000000px;}
.fs7{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:53.682000px;}
.y79{bottom:53.698500px;}
.y4e{bottom:53.787000px;}
.y4d{bottom:68.043000px;}
.y8d{bottom:70.924500px;}
.y78{bottom:70.941000px;}
.y4c{bottom:82.299000px;}
.y1a{bottom:82.763250px;}
.y8c{bottom:88.167000px;}
.y77{bottom:88.183500px;}
.y4b{bottom:96.555000px;}
.y19{bottom:103.767750px;}
.y8b{bottom:105.409500px;}
.y76{bottom:105.426000px;}
.y18{bottom:118.773000px;}
.y8a{bottom:122.652000px;}
.y75{bottom:122.668500px;}
.y17{bottom:133.778250px;}
.y89{bottom:139.894500px;}
.y74{bottom:139.911000px;}
.y16{bottom:148.783500px;}
.y4a{bottom:151.837500px;}
.y88{bottom:157.137000px;}
.y73{bottom:157.153500px;}
.y15{bottom:163.788750px;}
.y49{bottom:169.080000px;}
.y87{bottom:174.379500px;}
.y72{bottom:174.396000px;}
.y48{bottom:186.322500px;}
.y86{bottom:191.622000px;}
.y71{bottom:191.638500px;}
.y14{bottom:193.785000px;}
.y47{bottom:203.565000px;}
.y13{bottom:208.757250px;}
.y85{bottom:208.864500px;}
.y70{bottom:208.881000px;}
.y46{bottom:220.807500px;}
.y84{bottom:226.107000px;}
.y6f{bottom:226.123500px;}
.y45{bottom:238.050000px;}
.y83{bottom:243.349500px;}
.y6e{bottom:243.366000px;}
.ya4{bottom:244.635000px;}
.y12{bottom:244.752750px;}
.y44{bottom:255.292500px;}
.y82{bottom:260.592000px;}
.y6d{bottom:260.608500px;}
.y11{bottom:265.757250px;}
.ya3{bottom:269.205000px;}
.y43{bottom:272.535000px;}
.y81{bottom:277.834500px;}
.y6c{bottom:277.851000px;}
.y10{bottom:280.762500px;}
.y42{bottom:289.777500px;}
.ya2{bottom:295.077000px;}
.y6b{bottom:295.093500px;}
.yf{bottom:295.767750px;}
.y41{bottom:307.020000px;}
.ye{bottom:310.773000px;}
.ya1{bottom:312.319500px;}
.y6a{bottom:312.336000px;}
.y40{bottom:324.262500px;}
.yd{bottom:325.778250px;}
.ya0{bottom:329.562000px;}
.y69{bottom:329.578500px;}
.yc{bottom:340.783500px;}
.y3f{bottom:341.505000px;}
.y9f{bottom:346.804500px;}
.y68{bottom:346.821000px;}
.yb{bottom:355.788750px;}
.y3e{bottom:358.747500px;}
.y9e{bottom:364.047000px;}
.y67{bottom:364.063500px;}
.y3d{bottom:375.990000px;}
.y80{bottom:381.306000px;}
.ya{bottom:385.785000px;}
.y3c{bottom:393.232500px;}
.y7f{bottom:398.548500px;}
.y66{bottom:398.565000px;}
.y9{bottom:400.758750px;}
.y3b{bottom:410.475000px;}
.y7e{bottom:415.791000px;}
.y65{bottom:415.807500px;}
.y3a{bottom:427.717500px;}
.y7d{bottom:433.033500px;}
.y64{bottom:433.050000px;}
.y8{bottom:436.754250px;}
.y39{bottom:444.960000px;}
.y7c{bottom:450.276000px;}
.y63{bottom:450.292500px;}
.y7{bottom:457.758750px;}
.y38{bottom:462.202500px;}
.y7b{bottom:467.518500px;}
.y62{bottom:467.535000px;}
.y6{bottom:472.764000px;}
.y37{bottom:479.445000px;}
.y7a{bottom:484.761000px;}
.y61{bottom:484.777500px;}
.y5{bottom:487.769250px;}
.y36{bottom:496.687500px;}
.y9d{bottom:502.003500px;}
.y60{bottom:502.020000px;}
.y4{bottom:502.774500px;}
.y35{bottom:513.930000px;}
.y3{bottom:517.779750px;}
.y9c{bottom:519.246000px;}
.y5f{bottom:519.262500px;}
.y34{bottom:531.172500px;}
.y2{bottom:532.785000px;}
.y9b{bottom:536.488500px;}
.y5e{bottom:536.505000px;}
.y33{bottom:548.415000px;}
.y9a{bottom:553.731000px;}
.y5d{bottom:553.747500px;}
.y1{bottom:562.785000px;}
.y32{bottom:565.657500px;}
.y99{bottom:570.973500px;}
.y5c{bottom:570.990000px;}
.y31{bottom:582.900000px;}
.y98{bottom:588.216000px;}
.y5b{bottom:588.232500px;}
.y25{bottom:598.167000px;}
.y30{bottom:600.142500px;}
.y97{bottom:605.458500px;}
.y5a{bottom:605.475000px;}
.y24{bottom:612.423000px;}
.y2f{bottom:617.385000px;}
.y96{bottom:622.701000px;}
.y59{bottom:622.717500px;}
.y95{bottom:639.943500px;}
.y58{bottom:639.960000px;}
.y23{bottom:645.093000px;}
.y94{bottom:657.186000px;}
.y57{bottom:657.202500px;}
.y22{bottom:659.349000px;}
.y21{bottom:673.605000px;}
.y93{bottom:674.428500px;}
.y56{bottom:674.445000px;}
.y2e{bottom:686.385000px;}
.y20{bottom:691.605000px;}
.y92{bottom:691.671000px;}
.y55{bottom:691.687500px;}
.y2d{bottom:707.367750px;}
.y91{bottom:708.913500px;}
.y54{bottom:708.930000px;}
.y2c{bottom:722.373000px;}
.y90{bottom:726.156000px;}
.y53{bottom:726.172500px;}
.y1f{bottom:736.605000px;}
.y2b{bottom:737.378250px;}
.y8f{bottom:743.398500px;}
.y52{bottom:743.415000px;}
.y2a{bottom:752.383500px;}
.y1e{bottom:760.605000px;}
.y51{bottom:760.657500px;}
.y29{bottom:767.388750px;}
.y50{bottom:777.900000px;}
.y1d{bottom:784.605000px;}
.y4f{bottom:795.142500px;}
.y28{bottom:797.385000px;}
.y1c{bottom:808.605000px;}
.y27{bottom:812.385000px;}
.y1b{bottom:859.605000px;}
.y26{bottom:922.500000px;}
.h9{height:47.085938px;}
.h3{height:51.216000px;}
.h8{height:57.618000px;}
.h1{height:60.819000px;}
.h2{height:61.788000px;}
.hc{height:65.040000px;}
.hb{height:70.422000px;}
.ha{height:71.544000px;}
.h7{height:76.824000px;}
.h6{height:89.628000px;}
.h4{height:102.432000px;}
.h5{height:104.064000px;}
.h0{height:892.500000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x5{left:6.000000px;}
.x1{left:76.200000px;}
.x6{left:77.415000px;}
.x9{left:93.450000px;}
.x7{left:94.675500px;}
.xa{left:98.664000px;}
.x8{left:99.919500px;}
.x2{left:378.885000px;}
.x4{left:381.259500px;}
.x3{left:398.445000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.360000pt;}
.ls27{letter-spacing:-1.701333pt;}
.ls20{letter-spacing:-1.466667pt;}
.ls29{letter-spacing:-1.408000pt;}
.ls3a{letter-spacing:-1.290667pt;}
.ls34{letter-spacing:-1.056000pt;}
.ls26{letter-spacing:-0.997333pt;}
.ls2a{letter-spacing:-0.938667pt;}
.ls38{letter-spacing:-0.880000pt;}
.ls28{letter-spacing:-0.821333pt;}
.ls7{letter-spacing:-0.810667pt;}
.ls33{letter-spacing:-0.762667pt;}
.lsb{letter-spacing:-0.746667pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.645333pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.608000pt;}
.ls3d{letter-spacing:-0.586667pt;}
.ls1d{letter-spacing:-0.528000pt;}
.ls36{letter-spacing:-0.469333pt;}
.ls35{letter-spacing:-0.410667pt;}
.ls18{letter-spacing:-0.352000pt;}
.ls8{letter-spacing:-0.304000pt;}
.ls1a{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:-0.253333pt;}
.ls1b{letter-spacing:-0.234667pt;}
.ls32{letter-spacing:-0.176000pt;}
.ls9{letter-spacing:-0.152000pt;}
.ls25{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls21{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.058667pt;}
.ls2f{letter-spacing:0.117333pt;}
.ls1{letter-spacing:0.152000pt;}
.ls11{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.202667pt;}
.ls24{letter-spacing:0.234667pt;}
.ls15{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.293333pt;}
.ls3{letter-spacing:0.304000pt;}
.ls2c{letter-spacing:0.352000pt;}
.ls0{letter-spacing:0.354667pt;}
.ls1c{letter-spacing:0.410667pt;}
.ls23{letter-spacing:0.469333pt;}
.ls2b{letter-spacing:0.528000pt;}
.ls31{letter-spacing:0.586667pt;}
.lse{letter-spacing:0.608000pt;}
.ls17{letter-spacing:0.624000pt;}
.ls2d{letter-spacing:0.645333pt;}
.lsd{letter-spacing:0.658667pt;}
.ls22{letter-spacing:0.704000pt;}
.ls14{letter-spacing:0.821333pt;}
.ls10{letter-spacing:0.880000pt;}
.ls4{letter-spacing:1.013333pt;}
.ls30{letter-spacing:1.056000pt;}
.ls39{letter-spacing:1.114667pt;}
.ls37{letter-spacing:1.173333pt;}
.ls3c{letter-spacing:1.290667pt;}
.ls3b{letter-spacing:1.349333pt;}
.ls2e{letter-spacing:1.466667pt;}
.lsf{letter-spacing:13.760000pt;}
.ws65{word-spacing:-16.016000pt;}
.ws64{word-spacing:-15.957333pt;}
.ws61{word-spacing:-15.840000pt;}
.ws60{word-spacing:-15.781333pt;}
.ws58{word-spacing:-15.722667pt;}
.ws1d{word-spacing:-15.546667pt;}
.ws59{word-spacing:-15.136000pt;}
.ws1e{word-spacing:-15.077333pt;}
.ws55{word-spacing:-15.018667pt;}
.ws20{word-spacing:-14.960000pt;}
.ws41{word-spacing:-14.842667pt;}
.ws63{word-spacing:-14.784000pt;}
.ws19{word-spacing:-14.666667pt;}
.ws1a{word-spacing:-14.608000pt;}
.ws5d{word-spacing:-14.549333pt;}
.ws52{word-spacing:-14.490667pt;}
.ws57{word-spacing:-14.432000pt;}
.ws1c{word-spacing:-14.373333pt;}
.ws56{word-spacing:-14.256000pt;}
.ws1f{word-spacing:-14.138667pt;}
.ws5f{word-spacing:-14.021333pt;}
.ws54{word-spacing:-13.962667pt;}
.ws5e{word-spacing:-13.904000pt;}
.ws42{word-spacing:-13.845333pt;}
.ws53{word-spacing:-13.728000pt;}
.ws66{word-spacing:-13.333333pt;}
.ws15{word-spacing:-13.325333pt;}
.ws16{word-spacing:-13.274667pt;}
.ws21{word-spacing:-13.200000pt;}
.ws18{word-spacing:-13.021333pt;}
.ws0{word-spacing:-12.920000pt;}
.ws2{word-spacing:-12.666667pt;}
.ws26{word-spacing:-12.624000pt;}
.ws25{word-spacing:-12.240000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws23{word-spacing:-10.624000pt;}
.ws67{word-spacing:-10.000000pt;}
.ws14{word-spacing:-6.570667pt;}
.ws62{word-spacing:-0.762667pt;}
.ws33{word-spacing:-0.704000pt;}
.ws38{word-spacing:-0.645333pt;}
.ws5c{word-spacing:-0.586667pt;}
.ws31{word-spacing:-0.528000pt;}
.ws11{word-spacing:-0.506667pt;}
.ws2e{word-spacing:-0.469333pt;}
.ws2b{word-spacing:-0.410667pt;}
.ws4{word-spacing:-0.405333pt;}
.wsd{word-spacing:-0.354667pt;}
.ws36{word-spacing:-0.352000pt;}
.ws1b{word-spacing:-0.293333pt;}
.ws2c{word-spacing:-0.287467pt;}
.ws2d{word-spacing:-0.234667pt;}
.ws3a{word-spacing:-0.176000pt;}
.ws4a{word-spacing:-0.117333pt;}
.ws51{word-spacing:-0.058667pt;}
.ws13{word-spacing:-0.050667pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:0.101333pt;}
.ws69{word-spacing:0.117333pt;}
.wsc{word-spacing:0.152000pt;}
.ws4b{word-spacing:0.176000pt;}
.ws35{word-spacing:0.234667pt;}
.ws12{word-spacing:0.253333pt;}
.ws3e{word-spacing:0.288000pt;}
.ws3d{word-spacing:0.336000pt;}
.ws68{word-spacing:0.352000pt;}
.ws2a{word-spacing:0.354667pt;}
.ws4f{word-spacing:0.410667pt;}
.ws30{word-spacing:0.528000pt;}
.ws40{word-spacing:0.576000pt;}
.ws5a{word-spacing:0.586667pt;}
.ws29{word-spacing:0.608000pt;}
.ws3b{word-spacing:0.645333pt;}
.ws4c{word-spacing:0.704000pt;}
.ws17{word-spacing:0.760000pt;}
.ws3c{word-spacing:0.762667pt;}
.ws4e{word-spacing:0.821333pt;}
.ws1{word-spacing:0.861333pt;}
.ws5b{word-spacing:0.880000pt;}
.ws6{word-spacing:0.912000pt;}
.ws50{word-spacing:0.938667pt;}
.ws3f{word-spacing:0.960000pt;}
.wsf{word-spacing:0.962667pt;}
.ws4d{word-spacing:0.997333pt;}
.wse{word-spacing:1.013333pt;}
.ws32{word-spacing:1.056000pt;}
.ws8{word-spacing:1.064000pt;}
.ws7{word-spacing:1.114667pt;}
.ws39{word-spacing:1.173333pt;}
.ws49{word-spacing:1.232000pt;}
.wsb{word-spacing:1.266667pt;}
.ws34{word-spacing:1.290667pt;}
.ws37{word-spacing:1.349333pt;}
.ws2f{word-spacing:1.408000pt;}
.wsa{word-spacing:5.573333pt;}
.ws27{word-spacing:7.498667pt;}
.ws28{word-spacing:7.549333pt;}
.ws10{word-spacing:8.208000pt;}
.ws46{word-spacing:18.773333pt;}
.ws44{word-spacing:19.418667pt;}
.ws43{word-spacing:20.533333pt;}
.ws48{word-spacing:24.933333pt;}
.ws47{word-spacing:26.458667pt;}
.ws45{word-spacing:26.928000pt;}
.ws22{word-spacing:31.914667pt;}
.ws24{word-spacing:32.016000pt;}
._b{margin-left:-8.173333pt;}
._2{margin-left:-6.586667pt;}
._a{margin-left:-5.680000pt;}
._9{margin-left:-4.458667pt;}
._6{margin-left:-3.370667pt;}
._1{margin-left:-1.994667pt;}
._0{margin-left:-1.096000pt;}
._4{width:1.690667pt;}
._3{width:5.066667pt;}
._8{width:6.941333pt;}
._5{width:8.360000pt;}
._f{width:17.333333pt;}
._d{width:21.354667pt;}
._7{width:42.624000pt;}
._e{width:195.210667pt;}
._c{width:834.773333pt;}
.fs9{font-size:40.000000pt;}
.fs7{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:47.717333pt;}
.y79{bottom:47.732000pt;}
.y4e{bottom:47.810667pt;}
.y4d{bottom:60.482667pt;}
.y8d{bottom:63.044000pt;}
.y78{bottom:63.058667pt;}
.y4c{bottom:73.154667pt;}
.y1a{bottom:73.567333pt;}
.y8c{bottom:78.370667pt;}
.y77{bottom:78.385333pt;}
.y4b{bottom:85.826667pt;}
.y19{bottom:92.238000pt;}
.y8b{bottom:93.697333pt;}
.y76{bottom:93.712000pt;}
.y18{bottom:105.576000pt;}
.y8a{bottom:109.024000pt;}
.y75{bottom:109.038667pt;}
.y17{bottom:118.914000pt;}
.y89{bottom:124.350667pt;}
.y74{bottom:124.365333pt;}
.y16{bottom:132.252000pt;}
.y4a{bottom:134.966667pt;}
.y88{bottom:139.677333pt;}
.y73{bottom:139.692000pt;}
.y15{bottom:145.590000pt;}
.y49{bottom:150.293333pt;}
.y87{bottom:155.004000pt;}
.y72{bottom:155.018667pt;}
.y48{bottom:165.620000pt;}
.y86{bottom:170.330667pt;}
.y71{bottom:170.345333pt;}
.y14{bottom:172.253333pt;}
.y47{bottom:180.946667pt;}
.y13{bottom:185.562000pt;}
.y85{bottom:185.657333pt;}
.y70{bottom:185.672000pt;}
.y46{bottom:196.273333pt;}
.y84{bottom:200.984000pt;}
.y6f{bottom:200.998667pt;}
.y45{bottom:211.600000pt;}
.y83{bottom:216.310667pt;}
.y6e{bottom:216.325333pt;}
.ya4{bottom:217.453333pt;}
.y12{bottom:217.558000pt;}
.y44{bottom:226.926667pt;}
.y82{bottom:231.637333pt;}
.y6d{bottom:231.652000pt;}
.y11{bottom:236.228667pt;}
.ya3{bottom:239.293333pt;}
.y43{bottom:242.253333pt;}
.y81{bottom:246.964000pt;}
.y6c{bottom:246.978667pt;}
.y10{bottom:249.566667pt;}
.y42{bottom:257.580000pt;}
.ya2{bottom:262.290667pt;}
.y6b{bottom:262.305333pt;}
.yf{bottom:262.904667pt;}
.y41{bottom:272.906667pt;}
.ye{bottom:276.242667pt;}
.ya1{bottom:277.617333pt;}
.y6a{bottom:277.632000pt;}
.y40{bottom:288.233333pt;}
.yd{bottom:289.580667pt;}
.ya0{bottom:292.944000pt;}
.y69{bottom:292.958667pt;}
.yc{bottom:302.918667pt;}
.y3f{bottom:303.560000pt;}
.y9f{bottom:308.270667pt;}
.y68{bottom:308.285333pt;}
.yb{bottom:316.256667pt;}
.y3e{bottom:318.886667pt;}
.y9e{bottom:323.597333pt;}
.y67{bottom:323.612000pt;}
.y3d{bottom:334.213333pt;}
.y80{bottom:338.938667pt;}
.ya{bottom:342.920000pt;}
.y3c{bottom:349.540000pt;}
.y7f{bottom:354.265333pt;}
.y66{bottom:354.280000pt;}
.y9{bottom:356.230000pt;}
.y3b{bottom:364.866667pt;}
.y7e{bottom:369.592000pt;}
.y65{bottom:369.606667pt;}
.y3a{bottom:380.193333pt;}
.y7d{bottom:384.918667pt;}
.y64{bottom:384.933333pt;}
.y8{bottom:388.226000pt;}
.y39{bottom:395.520000pt;}
.y7c{bottom:400.245333pt;}
.y63{bottom:400.260000pt;}
.y7{bottom:406.896667pt;}
.y38{bottom:410.846667pt;}
.y7b{bottom:415.572000pt;}
.y62{bottom:415.586667pt;}
.y6{bottom:420.234667pt;}
.y37{bottom:426.173333pt;}
.y7a{bottom:430.898667pt;}
.y61{bottom:430.913333pt;}
.y5{bottom:433.572667pt;}
.y36{bottom:441.500000pt;}
.y9d{bottom:446.225333pt;}
.y60{bottom:446.240000pt;}
.y4{bottom:446.910667pt;}
.y35{bottom:456.826667pt;}
.y3{bottom:460.248667pt;}
.y9c{bottom:461.552000pt;}
.y5f{bottom:461.566667pt;}
.y34{bottom:472.153333pt;}
.y2{bottom:473.586667pt;}
.y9b{bottom:476.878667pt;}
.y5e{bottom:476.893333pt;}
.y33{bottom:487.480000pt;}
.y9a{bottom:492.205333pt;}
.y5d{bottom:492.220000pt;}
.y1{bottom:500.253333pt;}
.y32{bottom:502.806667pt;}
.y99{bottom:507.532000pt;}
.y5c{bottom:507.546667pt;}
.y31{bottom:518.133333pt;}
.y98{bottom:522.858667pt;}
.y5b{bottom:522.873333pt;}
.y25{bottom:531.704000pt;}
.y30{bottom:533.460000pt;}
.y97{bottom:538.185333pt;}
.y5a{bottom:538.200000pt;}
.y24{bottom:544.376000pt;}
.y2f{bottom:548.786667pt;}
.y96{bottom:553.512000pt;}
.y59{bottom:553.526667pt;}
.y95{bottom:568.838667pt;}
.y58{bottom:568.853333pt;}
.y23{bottom:573.416000pt;}
.y94{bottom:584.165333pt;}
.y57{bottom:584.180000pt;}
.y22{bottom:586.088000pt;}
.y21{bottom:598.760000pt;}
.y93{bottom:599.492000pt;}
.y56{bottom:599.506667pt;}
.y2e{bottom:610.120000pt;}
.y20{bottom:614.760000pt;}
.y92{bottom:614.818667pt;}
.y55{bottom:614.833333pt;}
.y2d{bottom:628.771333pt;}
.y91{bottom:630.145333pt;}
.y54{bottom:630.160000pt;}
.y2c{bottom:642.109333pt;}
.y90{bottom:645.472000pt;}
.y53{bottom:645.486667pt;}
.y1f{bottom:654.760000pt;}
.y2b{bottom:655.447333pt;}
.y8f{bottom:660.798667pt;}
.y52{bottom:660.813333pt;}
.y2a{bottom:668.785333pt;}
.y1e{bottom:676.093333pt;}
.y51{bottom:676.140000pt;}
.y29{bottom:682.123333pt;}
.y50{bottom:691.466667pt;}
.y1d{bottom:697.426667pt;}
.y4f{bottom:706.793333pt;}
.y28{bottom:708.786667pt;}
.y1c{bottom:718.760000pt;}
.y27{bottom:722.120000pt;}
.y1b{bottom:764.093333pt;}
.y26{bottom:820.000000pt;}
.h9{height:41.854167pt;}
.h3{height:45.525333pt;}
.h8{height:51.216000pt;}
.h1{height:54.061333pt;}
.h2{height:54.922667pt;}
.hc{height:57.813333pt;}
.hb{height:62.597333pt;}
.ha{height:63.594667pt;}
.h7{height:68.288000pt;}
.h6{height:79.669333pt;}
.h4{height:91.050667pt;}
.h5{height:92.501333pt;}
.h0{height:793.333333pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x5{left:5.333333pt;}
.x1{left:67.733333pt;}
.x6{left:68.813333pt;}
.x9{left:83.066667pt;}
.x7{left:84.156000pt;}
.xa{left:87.701333pt;}
.x8{left:88.817333pt;}
.x2{left:336.786667pt;}
.x4{left:338.897333pt;}
.x3{left:354.173333pt;}
}




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