
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_f3a0f8c9f3874af5c99e35c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_e08c7662956ec85cd4776282.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_de177c68ddf1f35b28d6f323.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_9cfdff5d3cbe518d903dd66b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_4d3a196b9549238a3fb891fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_caacd8cae1e5e1495787b4ed.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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:ffa;src:url('chunks/assets/font_db62eb3c38c6791b631bbf0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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);}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls9{letter-spacing:-4.320000px;}
.ls10{letter-spacing:-2.736000px;}
.lse{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.422000px;}
.lsd{letter-spacing:-0.972000px;}
.ls17{letter-spacing:-0.954000px;}
.ls7{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.630000px;}
.lsa{letter-spacing:-0.486600px;}
.ls3{letter-spacing:-0.466800px;}
.ls4{letter-spacing:-0.409200px;}
.ls8{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.089400px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.247800px;}
.lsb{letter-spacing:0.466800px;}
.ls11{letter-spacing:0.486600px;}
.lsf{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.869760px;}
.ls16{letter-spacing:1.440000px;}
.ls14{letter-spacing:2.160000px;}
.ls13{letter-spacing:3.600000px;}
.ls15{letter-spacing:12.240000px;}
.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;}
}
.ws14{word-spacing:-60.480000px;}
.ws2{word-spacing:-25.387320px;}
.ws1{word-spacing:-24.730320px;}
.wse{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.627000px;}
.wsd{word-spacing:-15.606600px;}
.ws8{word-spacing:-15.586800px;}
.wsc{word-spacing:-15.264000px;}
.ws0{word-spacing:-15.120000px;}
.ws13{word-spacing:-14.653200px;}
.ws7{word-spacing:-14.633400px;}
.ws15{word-spacing:-14.166000px;}
.wsa{word-spacing:-14.148000px;}
.ws9{word-spacing:-13.698000px;}
.ws6{word-spacing:-13.680000px;}
.ws10{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.000000px;}
.ws11{word-spacing:0.000000px;}
._8{margin-left:-10.792200px;}
._6{margin-left:-5.052000px;}
._5{margin-left:-3.606240px;}
._4{margin-left:-2.365440px;}
._3{margin-left:-1.085280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._7{width:4.451520px;}
._13{width:5.775360px;}
._19{width:7.177920px;}
._11{width:8.665920px;}
._f{width:9.797760px;}
._15{width:11.037120px;}
._e{width:12.542880px;}
._a{width:14.070240px;}
._9{width:16.711680px;}
._12{width:17.848320px;}
._1a{width:20.062560px;}
._b{width:22.089600px;}
._14{width:23.764320px;}
._17{width:25.104480px;}
._16{width:26.814240px;}
._d{width:28.099200px;}
._c{width:29.186400px;}
._10{width:33.846720px;}
._1b{width:35.381760px;}
._18{width:92.665440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:5.760000px;}
.fs5{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.595500px;}
.y5{bottom:3.960000px;}
.y56{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y54{bottom:16.555500px;}
.y4{bottom:21.240000px;}
.y53{bottom:32.395500px;}
.y48{bottom:33.115500px;}
.y41{bottom:38.520000px;}
.y3{bottom:44.280000px;}
.y52{bottom:49.714500px;}
.y47{bottom:54.034500px;}
.y40{bottom:56.520000px;}
.y8{bottom:57.636000px;}
.y51{bottom:65.554500px;}
.y46{bottom:66.994500px;}
.y7{bottom:75.636000px;}
.y50{bottom:78.514500px;}
.y3f{bottom:83.160000px;}
.y4f{bottom:84.634500px;}
.y45{bottom:86.794500px;}
.y4e{bottom:100.474500px;}
.y3e{bottom:102.960000px;}
.y42{bottom:103.720500px;}
.y4d{bottom:115.954500px;}
.y3d{bottom:123.165000px;}
.y4c{bottom:131.794500px;}
.y8e{bottom:135.036000px;}
.y3c{bottom:143.325000px;}
.y4b{bottom:147.274500px;}
.y44{bottom:148.714500px;}
.y8d{bottom:155.235000px;}
.y43{bottom:159.514500px;}
.y3b{bottom:161.325000px;}
.y4a{bottom:162.394500px;}
.y8c{bottom:181.875000px;}
.y3a{bottom:187.965000px;}
.y8b{bottom:199.155000px;}
.y39{bottom:205.245000px;}
.y8a{bottom:216.435000px;}
.y38{bottom:222.525000px;}
.y89{bottom:233.715000px;}
.y37{bottom:239.445000px;}
.y88{bottom:250.995000px;}
.y36{bottom:256.755000px;}
.y87{bottom:268.275000px;}
.y35{bottom:274.035000px;}
.y86{bottom:285.225000px;}
.y34{bottom:291.315000px;}
.yf{bottom:292.785000px;}
.y85{bottom:302.505000px;}
.y33{bottom:308.595000px;}
.y84{bottom:319.785000px;}
.y32{bottom:325.875000px;}
.y83{bottom:337.065000px;}
.y31{bottom:343.155000px;}
.y82{bottom:354.345000px;}
.y30{bottom:360.435000px;}
.y1d{bottom:374.475000px;}
.y2f{bottom:377.745000px;}
.y81{bottom:380.625000px;}
.y2e{bottom:395.025000px;}
.y80{bottom:397.905000px;}
.y1c{bottom:398.625000px;}
.y2d{bottom:412.305000px;}
.y7f{bottom:415.230000px;}
.y1b{bottom:422.745000px;}
.y2c{bottom:429.225000px;}
.y7e{bottom:432.510000px;}
.y2b{bottom:446.505000px;}
.y1a{bottom:446.865000px;}
.y7d{bottom:449.790000px;}
.y2a{bottom:463.785000px;}
.y7c{bottom:467.070000px;}
.y19{bottom:470.985000px;}
.y29{bottom:481.065000px;}
.y7b{bottom:483.990000px;}
.y18{bottom:495.105000px;}
.y28{bottom:498.345000px;}
.y7a{bottom:501.270000px;}
.y27{bottom:515.670000px;}
.y79{bottom:518.550000px;}
.y17{bottom:519.270000px;}
.y78{bottom:535.830000px;}
.y16{bottom:543.390000px;}
.y26{bottom:550.590000px;}
.y77{bottom:553.140000px;}
.y15{bottom:567.510000px;}
.y76{bottom:570.420000px;}
.y25{bottom:577.230000px;}
.y75{bottom:587.700000px;}
.y14{bottom:591.990000px;}
.y24{bottom:592.350000px;}
.y74{bottom:604.980000px;}
.y23{bottom:607.830000px;}
.y13{bottom:616.110000px;}
.y73{bottom:622.260000px;}
.y22{bottom:623.310000px;}
.y21{bottom:639.150000px;}
.y72{bottom:639.540000px;}
.y12{bottom:640.260000px;}
.y20{bottom:654.660000px;}
.y71{bottom:656.820000px;}
.y11{bottom:664.380000px;}
.y1f{bottom:670.140000px;}
.y70{bottom:674.130000px;}
.y1e{bottom:685.260000px;}
.y10{bottom:688.500000px;}
.y6f{bottom:691.050000px;}
.y6e{bottom:708.330000px;}
.y6d{bottom:725.610000px;}
.y6c{bottom:742.890000px;}
.ya1{bottom:759.450000px;}
.y6b{bottom:760.170000px;}
.y6a{bottom:777.450000px;}
.ya0{bottom:786.090000px;}
.y69{bottom:794.730000px;}
.y9f{bottom:803.415000px;}
.y68{bottom:812.055000px;}
.y9e{bottom:820.695000px;}
.y67{bottom:829.335000px;}
.y9d{bottom:837.975000px;}
.y66{bottom:846.615000px;}
.y9c{bottom:855.255000px;}
.y65{bottom:863.895000px;}
.y9b{bottom:872.535000px;}
.y64{bottom:880.815000px;}
.y9a{bottom:889.815000px;}
.y63{bottom:898.095000px;}
.y99{bottom:907.095000px;}
.y62{bottom:915.375000px;}
.y98{bottom:924.015000px;}
.y61{bottom:932.655000px;}
.y97{bottom:941.325000px;}
.y60{bottom:949.965000px;}
.y96{bottom:958.605000px;}
.y5f{bottom:967.245000px;}
.y95{bottom:975.525000px;}
.y5e{bottom:984.525000px;}
.y5d{bottom:1001.805000px;}
.y94{bottom:1002.165000px;}
.ye{bottom:1002.885000px;}
.yd{bottom:1012.245000px;}
.y5c{bottom:1019.085000px;}
.y93{bottom:1019.445000px;}
.yc{bottom:1030.965000px;}
.y5b{bottom:1036.365000px;}
.y92{bottom:1036.725000px;}
.yb{bottom:1049.325000px;}
.y5a{bottom:1053.645000px;}
.y91{bottom:1054.005000px;}
.ya{bottom:1069.530000px;}
.y59{bottom:1070.970000px;}
.y90{bottom:1071.330000px;}
.y58{bottom:1087.890000px;}
.y9{bottom:1088.250000px;}
.y8f{bottom:1088.610000px;}
.y55{bottom:1091.520000px;}
.y57{bottom:1105.890000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h13{height:5.650313px;}
.h9{height:18.372656px;}
.h6{height:24.348516px;}
.h14{height:27.720000px;}
.h11{height:29.678906px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.hd{height:53.677969px;}
.h12{height:55.147500px;}
.h5{height:59.357813px;}
.h8{height:60.952500px;}
.h15{height:63.455625px;}
.h7{height:63.577969px;}
.he{height:65.518594px;}
.h16{height:65.638594px;}
.h3{height:65.884219px;}
.hf{height:74.004654px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h10{height:188.325000px;}
.ha{height:697.845000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.876000px;}
.x17{left:8.266500px;}
.x4{left:13.305000px;}
.x15{left:17.266500px;}
.x1a{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:28.786500px;}
.xf{left:43.906500px;}
.x1b{left:47.542500px;}
.x6{left:48.615000px;}
.x10{left:50.782500px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x1c{left:57.262500px;}
.x13{left:75.985500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x12{left:90.025500px;}
.x2{left:95.425500px;}
.x1d{left:102.985500px;}
.x19{left:106.945500px;}
.x11{left:124.585500px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.xc{left:476.460000px;}
.xd{left:584.895000px;}
.xb{left:636.375000px;}
.xa{left:766.050000px;}
.x9{left:784.770000px;}
.x8{left:807.090000px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls9{letter-spacing:-3.840000pt;}
.ls10{letter-spacing:-2.432000pt;}
.lse{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.264000pt;}
.lsd{letter-spacing:-0.864000pt;}
.ls17{letter-spacing:-0.848000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.560000pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls3{letter-spacing:-0.414933pt;}
.ls4{letter-spacing:-0.363733pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.220267pt;}
.lsb{letter-spacing:0.414933pt;}
.ls11{letter-spacing:0.432533pt;}
.lsf{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.773120pt;}
.ls16{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls13{letter-spacing:3.200000pt;}
.ls15{letter-spacing:10.880000pt;}
.ws14{word-spacing:-53.760000pt;}
.ws2{word-spacing:-22.566507pt;}
.ws1{word-spacing:-21.982507pt;}
.wse{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.890667pt;}
.wsd{word-spacing:-13.872533pt;}
.ws8{word-spacing:-13.854933pt;}
.wsc{word-spacing:-13.568000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.025067pt;}
.ws7{word-spacing:-13.007467pt;}
.ws15{word-spacing:-12.592000pt;}
.wsa{word-spacing:-12.576000pt;}
.ws9{word-spacing:-12.176000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws10{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.000000pt;}
.ws11{word-spacing:0.000000pt;}
._8{margin-left:-9.593067pt;}
._6{margin-left:-4.490667pt;}
._5{margin-left:-3.205547pt;}
._4{margin-left:-2.102613pt;}
._3{margin-left:-0.964693pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._7{width:3.956907pt;}
._13{width:5.133653pt;}
._19{width:6.380373pt;}
._11{width:7.703040pt;}
._f{width:8.709120pt;}
._15{width:9.810773pt;}
._e{width:11.149227pt;}
._a{width:12.506880pt;}
._9{width:14.854827pt;}
._12{width:15.865173pt;}
._1a{width:17.833387pt;}
._b{width:19.635200pt;}
._14{width:21.123840pt;}
._17{width:22.315093pt;}
._16{width:23.834880pt;}
._d{width:24.977067pt;}
._c{width:25.943467pt;}
._10{width:30.085973pt;}
._1b{width:31.450453pt;}
._18{width:82.369280pt;}
.fsc{font-size:5.120000pt;}
.fs5{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.196000pt;}
.y5{bottom:3.520000pt;}
.y56{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y54{bottom:14.716000pt;}
.y4{bottom:18.880000pt;}
.y53{bottom:28.796000pt;}
.y48{bottom:29.436000pt;}
.y41{bottom:34.240000pt;}
.y3{bottom:39.360000pt;}
.y52{bottom:44.190667pt;}
.y47{bottom:48.030667pt;}
.y40{bottom:50.240000pt;}
.y8{bottom:51.232000pt;}
.y51{bottom:58.270667pt;}
.y46{bottom:59.550667pt;}
.y7{bottom:67.232000pt;}
.y50{bottom:69.790667pt;}
.y3f{bottom:73.920000pt;}
.y4f{bottom:75.230667pt;}
.y45{bottom:77.150667pt;}
.y4e{bottom:89.310667pt;}
.y3e{bottom:91.520000pt;}
.y42{bottom:92.196000pt;}
.y4d{bottom:103.070667pt;}
.y3d{bottom:109.480000pt;}
.y4c{bottom:117.150667pt;}
.y8e{bottom:120.032000pt;}
.y3c{bottom:127.400000pt;}
.y4b{bottom:130.910667pt;}
.y44{bottom:132.190667pt;}
.y8d{bottom:137.986667pt;}
.y43{bottom:141.790667pt;}
.y3b{bottom:143.400000pt;}
.y4a{bottom:144.350667pt;}
.y8c{bottom:161.666667pt;}
.y3a{bottom:167.080000pt;}
.y8b{bottom:177.026667pt;}
.y39{bottom:182.440000pt;}
.y8a{bottom:192.386667pt;}
.y38{bottom:197.800000pt;}
.y89{bottom:207.746667pt;}
.y37{bottom:212.840000pt;}
.y88{bottom:223.106667pt;}
.y36{bottom:228.226667pt;}
.y87{bottom:238.466667pt;}
.y35{bottom:243.586667pt;}
.y86{bottom:253.533333pt;}
.y34{bottom:258.946667pt;}
.yf{bottom:260.253333pt;}
.y85{bottom:268.893333pt;}
.y33{bottom:274.306667pt;}
.y84{bottom:284.253333pt;}
.y32{bottom:289.666667pt;}
.y83{bottom:299.613333pt;}
.y31{bottom:305.026667pt;}
.y82{bottom:314.973333pt;}
.y30{bottom:320.386667pt;}
.y1d{bottom:332.866667pt;}
.y2f{bottom:335.773333pt;}
.y81{bottom:338.333333pt;}
.y2e{bottom:351.133333pt;}
.y80{bottom:353.693333pt;}
.y1c{bottom:354.333333pt;}
.y2d{bottom:366.493333pt;}
.y7f{bottom:369.093333pt;}
.y1b{bottom:375.773333pt;}
.y2c{bottom:381.533333pt;}
.y7e{bottom:384.453333pt;}
.y2b{bottom:396.893333pt;}
.y1a{bottom:397.213333pt;}
.y7d{bottom:399.813333pt;}
.y2a{bottom:412.253333pt;}
.y7c{bottom:415.173333pt;}
.y19{bottom:418.653333pt;}
.y29{bottom:427.613333pt;}
.y7b{bottom:430.213333pt;}
.y18{bottom:440.093333pt;}
.y28{bottom:442.973333pt;}
.y7a{bottom:445.573333pt;}
.y27{bottom:458.373333pt;}
.y79{bottom:460.933333pt;}
.y17{bottom:461.573333pt;}
.y78{bottom:476.293333pt;}
.y16{bottom:483.013333pt;}
.y26{bottom:489.413333pt;}
.y77{bottom:491.680000pt;}
.y15{bottom:504.453333pt;}
.y76{bottom:507.040000pt;}
.y25{bottom:513.093333pt;}
.y75{bottom:522.400000pt;}
.y14{bottom:526.213333pt;}
.y24{bottom:526.533333pt;}
.y74{bottom:537.760000pt;}
.y23{bottom:540.293333pt;}
.y13{bottom:547.653333pt;}
.y73{bottom:553.120000pt;}
.y22{bottom:554.053333pt;}
.y21{bottom:568.133333pt;}
.y72{bottom:568.480000pt;}
.y12{bottom:569.120000pt;}
.y20{bottom:581.920000pt;}
.y71{bottom:583.840000pt;}
.y11{bottom:590.560000pt;}
.y1f{bottom:595.680000pt;}
.y70{bottom:599.226667pt;}
.y1e{bottom:609.120000pt;}
.y10{bottom:612.000000pt;}
.y6f{bottom:614.266667pt;}
.y6e{bottom:629.626667pt;}
.y6d{bottom:644.986667pt;}
.y6c{bottom:660.346667pt;}
.ya1{bottom:675.066667pt;}
.y6b{bottom:675.706667pt;}
.y6a{bottom:691.066667pt;}
.ya0{bottom:698.746667pt;}
.y69{bottom:706.426667pt;}
.y9f{bottom:714.146667pt;}
.y68{bottom:721.826667pt;}
.y9e{bottom:729.506667pt;}
.y67{bottom:737.186667pt;}
.y9d{bottom:744.866667pt;}
.y66{bottom:752.546667pt;}
.y9c{bottom:760.226667pt;}
.y65{bottom:767.906667pt;}
.y9b{bottom:775.586667pt;}
.y64{bottom:782.946667pt;}
.y9a{bottom:790.946667pt;}
.y63{bottom:798.306667pt;}
.y99{bottom:806.306667pt;}
.y62{bottom:813.666667pt;}
.y98{bottom:821.346667pt;}
.y61{bottom:829.026667pt;}
.y97{bottom:836.733333pt;}
.y60{bottom:844.413333pt;}
.y96{bottom:852.093333pt;}
.y5f{bottom:859.773333pt;}
.y95{bottom:867.133333pt;}
.y5e{bottom:875.133333pt;}
.y5d{bottom:890.493333pt;}
.y94{bottom:890.813333pt;}
.ye{bottom:891.453333pt;}
.yd{bottom:899.773333pt;}
.y5c{bottom:905.853333pt;}
.y93{bottom:906.173333pt;}
.yc{bottom:916.413333pt;}
.y5b{bottom:921.213333pt;}
.y92{bottom:921.533333pt;}
.yb{bottom:932.733333pt;}
.y5a{bottom:936.573333pt;}
.y91{bottom:936.893333pt;}
.ya{bottom:950.693333pt;}
.y59{bottom:951.973333pt;}
.y90{bottom:952.293333pt;}
.y58{bottom:967.013333pt;}
.y9{bottom:967.333333pt;}
.y8f{bottom:967.653333pt;}
.y55{bottom:970.240000pt;}
.y57{bottom:983.013333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h13{height:5.022500pt;}
.h9{height:16.331250pt;}
.h6{height:21.643125pt;}
.h14{height:24.640000pt;}
.h11{height:26.381250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.hd{height:47.713750pt;}
.h12{height:49.020000pt;}
.h5{height:52.762500pt;}
.h8{height:54.180000pt;}
.h15{height:56.405000pt;}
.h7{height:56.513750pt;}
.he{height:58.238750pt;}
.h16{height:58.345417pt;}
.h3{height:58.563750pt;}
.hf{height:65.781915pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h10{height:167.400000pt;}
.ha{height:620.306667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.112000pt;}
.x17{left:7.348000pt;}
.x4{left:11.826667pt;}
.x15{left:15.348000pt;}
.x1a{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:25.588000pt;}
.xf{left:39.028000pt;}
.x1b{left:42.260000pt;}
.x6{left:43.213333pt;}
.x10{left:45.140000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x1c{left:50.900000pt;}
.x13{left:67.542667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x12{left:80.022667pt;}
.x2{left:84.822667pt;}
.x1d{left:91.542667pt;}
.x19{left:95.062667pt;}
.x11{left:110.742667pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.xc{left:423.520000pt;}
.xd{left:519.906667pt;}
.xb{left:565.666667pt;}
.xa{left:680.933333pt;}
.x9{left:697.573333pt;}
.x8{left:717.413333pt;}
}




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