
    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_70e5366253da89c8301551e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ba9068e18722a24231dbb141.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_98938b5f0c1045cb0a518497.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_314e602e7fa837e67c3aa7bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_5a87639ea9a7a9fc068d4a5e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.754395;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_ef04882ed458be0a39be771c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_ccef50acf050b2f2bb5d46f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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:ffb;src:url('chunks/assets/font_96903df88cf9ab31b52a0e0c.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_69468b2f6bee31eb27597c48.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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:ffd;src:url('chunks/assets/font_73994bed14612ced7b8719d6.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls16{letter-spacing:-0.008640px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls17{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.311760px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls13{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.620000px;}
.ls14{letter-spacing:8.100000px;}
.lsf{letter-spacing:9.540000px;}
.lse{letter-spacing:12.420000px;}
.ls1a{letter-spacing:16.506720px;}
.ls18{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.wsd{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.711360px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._1a{margin-left:-7.685280px;}
._19{margin-left:-6.035760px;}
._4{margin-left:-4.840560px;}
._5{margin-left:-3.406320px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.032000px;}
._1{width:1.344000px;}
._3{width:2.592000px;}
._11{width:3.714240px;}
._e{width:4.960080px;}
._c{width:5.976000px;}
._18{width:7.051680px;}
._b{width:8.127360px;}
._13{width:9.144480px;}
._10{width:10.577520px;}
._f{width:11.772720px;}
._12{width:13.505760px;}
._17{width:15.986400px;}
._16{width:17.647200px;}
._8{width:19.481760px;}
._7{width:20.617200px;}
._6{width:21.692880px;}
._15{width:23.217360px;}
._14{width:24.680880px;}
._d{width:27.938400px;}
._9{width:80.467440px;}
._a{width:81.541920px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(255,0,0);}
.fc1{color:rgb(23,54,93);}
.fca{color:rgb(64,64,64);}
.fc9{color:rgb(33,33,33);}
.fc8{color:rgb(34,34,34);}
.fc6{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y48{bottom:3.960000px;}
.y1f{bottom:4.860000px;}
.yf{bottom:9.540000px;}
.y46{bottom:10.620000px;}
.y21{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y5{bottom:17.316000px;}
.y3{bottom:20.196000px;}
.y9d{bottom:20.340000px;}
.y9b{bottom:20.514000px;}
.y42{bottom:20.520000px;}
.y97{bottom:21.240000px;}
.y47{bottom:22.320000px;}
.y45{bottom:25.200000px;}
.y1e{bottom:25.560000px;}
.yc{bottom:30.240000px;}
.y6{bottom:31.320000px;}
.ya2{bottom:37.620000px;}
.y9a{bottom:37.794000px;}
.y41{bottom:37.800000px;}
.y1d{bottom:45.900000px;}
.yb{bottom:46.620000px;}
.y2{bottom:52.380000px;}
.y40{bottom:55.080000px;}
.y1c{bottom:58.500000px;}
.y3f{bottom:72.360000px;}
.ya0{bottom:72.390000px;}
.ya{bottom:73.440000px;}
.y1b{bottom:78.840000px;}
.y30{bottom:80.820000px;}
.y3e{bottom:89.640000px;}
.y1a{bottom:91.620000px;}
.y9{bottom:93.090000px;}
.y2f{bottom:96.120000px;}
.y9c{bottom:102.636000px;}
.y57{bottom:105.336000px;}
.yb1{bottom:105.516000px;}
.y3d{bottom:106.740000px;}
.yc0{bottom:108.396000px;}
.y95{bottom:108.756000px;}
.y8{bottom:111.450000px;}
.y19{bottom:111.780000px;}
.y2e{bottom:113.760000px;}
.y56{bottom:122.436000px;}
.y3c{bottom:124.020000px;}
.y18{bottom:124.605000px;}
.ybf{bottom:125.676000px;}
.y94{bottom:126.036000px;}
.y2d{bottom:131.040000px;}
.y99{bottom:137.736000px;}
.y55{bottom:139.716000px;}
.y3b{bottom:141.300000px;}
.ybe{bottom:142.956000px;}
.y93{bottom:143.316000px;}
.y17{bottom:144.765000px;}
.y2c{bottom:148.320000px;}
.y54{bottom:156.990000px;}
.y3a{bottom:158.580000px;}
.ybd{bottom:160.050000px;}
.y92{bottom:160.590000px;}
.y16{bottom:160.605000px;}
.y2b{bottom:165.960000px;}
.y15{bottom:171.045000px;}
.y53{bottom:174.270000px;}
.y39{bottom:175.860000px;}
.ybc{bottom:177.330000px;}
.y91{bottom:177.870000px;}
.y2a{bottom:182.700000px;}
.y14{bottom:189.405000px;}
.y96{bottom:190.290000px;}
.y52{bottom:191.550000px;}
.y38{bottom:192.960000px;}
.ybb{bottom:194.610000px;}
.y90{bottom:194.970000px;}
.y29{bottom:199.080000px;}
.y98{bottom:208.290000px;}
.y13{bottom:208.305000px;}
.y51{bottom:208.830000px;}
.y37{bottom:210.270000px;}
.yba{bottom:211.890000px;}
.y8f{bottom:212.250000px;}
.y28{bottom:216.210000px;}
.y50{bottom:225.930000px;}
.y36{bottom:227.550000px;}
.yb9{bottom:229.170000px;}
.y8e{bottom:229.530000px;}
.y27{bottom:233.670000px;}
.y12{bottom:234.045000px;}
.yb8{bottom:243.030000px;}
.y4f{bottom:243.210000px;}
.y35{bottom:244.830000px;}
.y8d{bottom:246.810000px;}
.y26{bottom:250.950000px;}
.y11{bottom:258.525000px;}
.y4e{bottom:260.490000px;}
.y34{bottom:262.110000px;}
.y8c{bottom:264.090000px;}
.y25{bottom:271.290000px;}
.y4d{bottom:277.770000px;}
.y33{bottom:279.390000px;}
.y8b{bottom:281.370000px;}
.y4c{bottom:295.050000px;}
.y32{bottom:296.490000px;}
.y8a{bottom:298.470000px;}
.y24{bottom:298.830000px;}
.y4b{bottom:312.150000px;}
.y31{bottom:313.770000px;}
.y89{bottom:315.750000px;}
.y23{bottom:316.470000px;}
.y4a{bottom:329.430000px;}
.y88{bottom:333.030000px;}
.yb0{bottom:339.735000px;}
.y49{bottom:346.755000px;}
.y87{bottom:350.355000px;}
.y44{bottom:360.795000px;}
.y86{bottom:367.635000px;}
.y85{bottom:384.915000px;}
.y22{bottom:397.335000px;}
.y84{bottom:402.015000px;}
.y83{bottom:419.295000px;}
.y82{bottom:436.575000px;}
.y81{bottom:453.855000px;}
.y80{bottom:471.135000px;}
.y7f{bottom:488.235000px;}
.y7e{bottom:505.515000px;}
.y7d{bottom:522.795000px;}
.y7c{bottom:540.075000px;}
.yb7{bottom:552.315000px;}
.y7b{bottom:557.355000px;}
.yb6{bottom:569.595000px;}
.y7a{bottom:574.635000px;}
.yaf{bottom:585.075000px;}
.yb5{bottom:586.875000px;}
.y79{bottom:591.735000px;}
.yae{bottom:602.355000px;}
.yb4{bottom:604.185000px;}
.y78{bottom:609.045000px;}
.yb3{bottom:618.045000px;}
.yad{bottom:619.665000px;}
.y77{bottom:626.325000px;}
.yac{bottom:636.765000px;}
.y76{bottom:643.605000px;}
.yab{bottom:654.045000px;}
.y75{bottom:660.885000px;}
.yaa{bottom:671.325000px;}
.y74{bottom:678.165000px;}
.ya9{bottom:688.605000px;}
.y73{bottom:695.265000px;}
.ya8{bottom:705.885000px;}
.y72{bottom:712.545000px;}
.ya7{bottom:720.645000px;}
.y20{bottom:725.145000px;}
.y71{bottom:729.825000px;}
.y70{bottom:747.105000px;}
.y10{bottom:754.665000px;}
.y6f{bottom:764.385000px;}
.ya6{bottom:773.025000px;}
.y6e{bottom:781.665000px;}
.y6d{bottom:798.765000px;}
.y6c{bottom:816.045000px;}
.ya5{bottom:825.585000px;}
.y6b{bottom:833.325000px;}
.yb2{bottom:838.905000px;}
.y6a{bottom:850.605000px;}
.y69{bottom:867.885000px;}
.ya4{bottom:878.190000px;}
.y68{bottom:885.030000px;}
.y67{bottom:902.310000px;}
.y66{bottom:919.590000px;}
.ya3{bottom:930.570000px;}
.y65{bottom:936.870000px;}
.y64{bottom:954.150000px;}
.y63{bottom:971.430000px;}
.y62{bottom:988.530000px;}
.y61{bottom:1005.810000px;}
.ya1{bottom:1017.690000px;}
.y60{bottom:1023.090000px;}
.ye{bottom:1028.310000px;}
.y5f{bottom:1040.370000px;}
.y7{bottom:1053.510000px;}
.y5e{bottom:1057.650000px;}
.y9f{bottom:1070.070000px;}
.y5d{bottom:1074.930000px;}
.y5c{bottom:1092.030000px;}
.y5b{bottom:1109.310000px;}
.y5a{bottom:1126.590000px;}
.y59{bottom:1143.900000px;}
.y9e{bottom:1157.220000px;}
.y58{bottom:1161.180000px;}
.y1{bottom:1220.220000px;}
.h26{height:17.100000px;}
.h23{height:17.280000px;}
.hc{height:24.840000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h3{height:32.976000px;}
.h25{height:34.380000px;}
.h22{height:35.280000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1f{height:36.540000px;}
.h1c{height:38.818125px;}
.h19{height:40.243711px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h1b{height:42.281367px;}
.h5{height:43.453125px;}
.h2b{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h17{height:47.980898px;}
.h21{height:48.027656px;}
.h20{height:48.088125px;}
.h28{height:51.660000px;}
.h2a{height:51.696000px;}
.h24{height:51.840000px;}
.ha{height:54.000000px;}
.h4{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h2{height:65.884219px;}
.h6{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h29{height:86.220000px;}
.h27{height:86.256000px;}
.h7{height:121.536000px;}
.hd{height:273.630000px;}
.h16{height:327.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:74.880000px;}
.wc{width:97.020000px;}
.w5{width:151.950000px;}
.wa{width:213.555000px;}
.we{width:215.310000px;}
.wd{width:218.370000px;}
.w8{width:223.275000px;}
.wb{width:434.595000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w3{width:673.530000px;}
.w7{width:747.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.560000px;}
.x3{left:8.640000px;}
.x16{left:12.600000px;}
.xc{left:38.376000px;}
.x2{left:72.360000px;}
.x1{left:80.999987px;}
.x5{left:98.130000px;}
.x21{left:108.035987px;}
.x11{left:112.530000px;}
.x12{left:123.330000px;}
.xf{left:124.770000px;}
.xe{left:131.430000px;}
.x14{left:215.175000px;}
.x17{left:218.909987px;}
.x6{left:224.850000px;}
.xd{left:246.675000px;}
.x10{left:282.855000px;}
.x9{left:288.435000px;}
.x13{left:289.695000px;}
.x15{left:296.175000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x20{left:396.074987px;}
.xa{left:455.700000px;}
.x19{left:506.805000px;}
.x1c{left:602.744987px;}
.x1e{left:625.244987px;}
.x18{left:722.850000px;}
.x1d{left:743.189987px;}
.x4{left:745.890000px;}
.x1b{left:753.629987px;}
.x1f{left:770.009987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls16{letter-spacing:-0.007680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.277120pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls13{letter-spacing:0.800000pt;}
.ls7{letter-spacing:1.440000pt;}
.ls14{letter-spacing:7.200000pt;}
.lsf{letter-spacing:8.480000pt;}
.lse{letter-spacing:11.040000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls18{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.wsd{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.632320pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._1a{margin-left:-6.831360pt;}
._19{margin-left:-5.365120pt;}
._4{margin-left:-4.302720pt;}
._5{margin-left:-3.027840pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.194667pt;}
._3{width:2.304000pt;}
._11{width:3.301547pt;}
._e{width:4.408960pt;}
._c{width:5.312000pt;}
._18{width:6.268160pt;}
._b{width:7.224320pt;}
._13{width:8.128427pt;}
._10{width:9.402240pt;}
._f{width:10.464640pt;}
._12{width:12.005120pt;}
._17{width:14.210133pt;}
._16{width:15.686400pt;}
._8{width:17.317120pt;}
._7{width:18.326400pt;}
._6{width:19.282560pt;}
._15{width:20.637653pt;}
._14{width:21.938560pt;}
._d{width:24.834133pt;}
._9{width:71.526613pt;}
._a{width:72.481707pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y48{bottom:3.520000pt;}
.y1f{bottom:4.320000pt;}
.yf{bottom:8.480000pt;}
.y46{bottom:9.440000pt;}
.y21{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y5{bottom:15.392000pt;}
.y3{bottom:17.952000pt;}
.y9d{bottom:18.080000pt;}
.y9b{bottom:18.234667pt;}
.y42{bottom:18.240000pt;}
.y97{bottom:18.880000pt;}
.y47{bottom:19.840000pt;}
.y45{bottom:22.400000pt;}
.y1e{bottom:22.720000pt;}
.yc{bottom:26.880000pt;}
.y6{bottom:27.840000pt;}
.ya2{bottom:33.440000pt;}
.y9a{bottom:33.594667pt;}
.y41{bottom:33.600000pt;}
.y1d{bottom:40.800000pt;}
.yb{bottom:41.440000pt;}
.y2{bottom:46.560000pt;}
.y40{bottom:48.960000pt;}
.y1c{bottom:52.000000pt;}
.y3f{bottom:64.320000pt;}
.ya0{bottom:64.346667pt;}
.ya{bottom:65.280000pt;}
.y1b{bottom:70.080000pt;}
.y30{bottom:71.840000pt;}
.y3e{bottom:79.680000pt;}
.y1a{bottom:81.440000pt;}
.y9{bottom:82.746667pt;}
.y2f{bottom:85.440000pt;}
.y9c{bottom:91.232000pt;}
.y57{bottom:93.632000pt;}
.yb1{bottom:93.792000pt;}
.y3d{bottom:94.880000pt;}
.yc0{bottom:96.352000pt;}
.y95{bottom:96.672000pt;}
.y8{bottom:99.066667pt;}
.y19{bottom:99.360000pt;}
.y2e{bottom:101.120000pt;}
.y56{bottom:108.832000pt;}
.y3c{bottom:110.240000pt;}
.y18{bottom:110.760000pt;}
.ybf{bottom:111.712000pt;}
.y94{bottom:112.032000pt;}
.y2d{bottom:116.480000pt;}
.y99{bottom:122.432000pt;}
.y55{bottom:124.192000pt;}
.y3b{bottom:125.600000pt;}
.ybe{bottom:127.072000pt;}
.y93{bottom:127.392000pt;}
.y17{bottom:128.680000pt;}
.y2c{bottom:131.840000pt;}
.y54{bottom:139.546667pt;}
.y3a{bottom:140.960000pt;}
.ybd{bottom:142.266667pt;}
.y92{bottom:142.746667pt;}
.y16{bottom:142.760000pt;}
.y2b{bottom:147.520000pt;}
.y15{bottom:152.040000pt;}
.y53{bottom:154.906667pt;}
.y39{bottom:156.320000pt;}
.ybc{bottom:157.626667pt;}
.y91{bottom:158.106667pt;}
.y2a{bottom:162.400000pt;}
.y14{bottom:168.360000pt;}
.y96{bottom:169.146667pt;}
.y52{bottom:170.266667pt;}
.y38{bottom:171.520000pt;}
.ybb{bottom:172.986667pt;}
.y90{bottom:173.306667pt;}
.y29{bottom:176.960000pt;}
.y98{bottom:185.146667pt;}
.y13{bottom:185.160000pt;}
.y51{bottom:185.626667pt;}
.y37{bottom:186.906667pt;}
.yba{bottom:188.346667pt;}
.y8f{bottom:188.666667pt;}
.y28{bottom:192.186667pt;}
.y50{bottom:200.826667pt;}
.y36{bottom:202.266667pt;}
.yb9{bottom:203.706667pt;}
.y8e{bottom:204.026667pt;}
.y27{bottom:207.706667pt;}
.y12{bottom:208.040000pt;}
.yb8{bottom:216.026667pt;}
.y4f{bottom:216.186667pt;}
.y35{bottom:217.626667pt;}
.y8d{bottom:219.386667pt;}
.y26{bottom:223.066667pt;}
.y11{bottom:229.800000pt;}
.y4e{bottom:231.546667pt;}
.y34{bottom:232.986667pt;}
.y8c{bottom:234.746667pt;}
.y25{bottom:241.146667pt;}
.y4d{bottom:246.906667pt;}
.y33{bottom:248.346667pt;}
.y8b{bottom:250.106667pt;}
.y4c{bottom:262.266667pt;}
.y32{bottom:263.546667pt;}
.y8a{bottom:265.306667pt;}
.y24{bottom:265.626667pt;}
.y4b{bottom:277.466667pt;}
.y31{bottom:278.906667pt;}
.y89{bottom:280.666667pt;}
.y23{bottom:281.306667pt;}
.y4a{bottom:292.826667pt;}
.y88{bottom:296.026667pt;}
.yb0{bottom:301.986667pt;}
.y49{bottom:308.226667pt;}
.y87{bottom:311.426667pt;}
.y44{bottom:320.706667pt;}
.y86{bottom:326.786667pt;}
.y85{bottom:342.146667pt;}
.y22{bottom:353.186667pt;}
.y84{bottom:357.346667pt;}
.y83{bottom:372.706667pt;}
.y82{bottom:388.066667pt;}
.y81{bottom:403.426667pt;}
.y80{bottom:418.786667pt;}
.y7f{bottom:433.986667pt;}
.y7e{bottom:449.346667pt;}
.y7d{bottom:464.706667pt;}
.y7c{bottom:480.066667pt;}
.yb7{bottom:490.946667pt;}
.y7b{bottom:495.426667pt;}
.yb6{bottom:506.306667pt;}
.y7a{bottom:510.786667pt;}
.yaf{bottom:520.066667pt;}
.yb5{bottom:521.666667pt;}
.y79{bottom:525.986667pt;}
.yae{bottom:535.426667pt;}
.yb4{bottom:537.053333pt;}
.y78{bottom:541.373333pt;}
.yb3{bottom:549.373333pt;}
.yad{bottom:550.813333pt;}
.y77{bottom:556.733333pt;}
.yac{bottom:566.013333pt;}
.y76{bottom:572.093333pt;}
.yab{bottom:581.373333pt;}
.y75{bottom:587.453333pt;}
.yaa{bottom:596.733333pt;}
.y74{bottom:602.813333pt;}
.ya9{bottom:612.093333pt;}
.y73{bottom:618.013333pt;}
.ya8{bottom:627.453333pt;}
.y72{bottom:633.373333pt;}
.ya7{bottom:640.573333pt;}
.y20{bottom:644.573333pt;}
.y71{bottom:648.733333pt;}
.y70{bottom:664.093333pt;}
.y10{bottom:670.813333pt;}
.y6f{bottom:679.453333pt;}
.ya6{bottom:687.133333pt;}
.y6e{bottom:694.813333pt;}
.y6d{bottom:710.013333pt;}
.y6c{bottom:725.373333pt;}
.ya5{bottom:733.853333pt;}
.y6b{bottom:740.733333pt;}
.yb2{bottom:745.693333pt;}
.y6a{bottom:756.093333pt;}
.y69{bottom:771.453333pt;}
.ya4{bottom:780.613333pt;}
.y68{bottom:786.693333pt;}
.y67{bottom:802.053333pt;}
.y66{bottom:817.413333pt;}
.ya3{bottom:827.173333pt;}
.y65{bottom:832.773333pt;}
.y64{bottom:848.133333pt;}
.y63{bottom:863.493333pt;}
.y62{bottom:878.693333pt;}
.y61{bottom:894.053333pt;}
.ya1{bottom:904.613333pt;}
.y60{bottom:909.413333pt;}
.ye{bottom:914.053333pt;}
.y5f{bottom:924.773333pt;}
.y7{bottom:936.453333pt;}
.y5e{bottom:940.133333pt;}
.y9f{bottom:951.173333pt;}
.y5d{bottom:955.493333pt;}
.y5c{bottom:970.693333pt;}
.y5b{bottom:986.053333pt;}
.y5a{bottom:1001.413333pt;}
.y59{bottom:1016.800000pt;}
.y9e{bottom:1028.640000pt;}
.y58{bottom:1032.160000pt;}
.y1{bottom:1084.640000pt;}
.h26{height:15.200000pt;}
.h23{height:15.360000pt;}
.hc{height:22.080000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h3{height:29.312000pt;}
.h25{height:30.560000pt;}
.h22{height:31.360000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1f{height:32.480000pt;}
.h1c{height:34.505000pt;}
.h19{height:35.772188pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h1b{height:37.583438pt;}
.h5{height:38.625000pt;}
.h2b{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h17{height:42.649687pt;}
.h21{height:42.691250pt;}
.h20{height:42.745000pt;}
.h28{height:45.920000pt;}
.h2a{height:45.952000pt;}
.h24{height:46.080000pt;}
.ha{height:48.000000pt;}
.h4{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h2{height:58.563750pt;}
.h6{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h29{height:76.640000pt;}
.h27{height:76.672000pt;}
.h7{height:108.032000pt;}
.hd{height:243.226667pt;}
.h16{height:291.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:66.560000pt;}
.wc{width:86.240000pt;}
.w5{width:135.066667pt;}
.wa{width:189.826667pt;}
.we{width:191.386667pt;}
.wd{width:194.106667pt;}
.w8{width:198.466667pt;}
.wb{width:386.306667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w3{width:598.693333pt;}
.w7{width:664.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.720000pt;}
.x3{left:7.680000pt;}
.x16{left:11.200000pt;}
.xc{left:34.112000pt;}
.x2{left:64.320000pt;}
.x1{left:71.999988pt;}
.x5{left:87.226667pt;}
.x21{left:96.031988pt;}
.x11{left:100.026667pt;}
.x12{left:109.626667pt;}
.xf{left:110.906667pt;}
.xe{left:116.826667pt;}
.x14{left:191.266667pt;}
.x17{left:194.586655pt;}
.x6{left:199.866667pt;}
.xd{left:219.266667pt;}
.x10{left:251.426667pt;}
.x9{left:256.386667pt;}
.x13{left:257.506667pt;}
.x15{left:263.266667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x20{left:352.066655pt;}
.xa{left:405.066667pt;}
.x19{left:450.493333pt;}
.x1c{left:535.773322pt;}
.x1e{left:555.773322pt;}
.x18{left:642.533333pt;}
.x1d{left:660.613322pt;}
.x4{left:663.013333pt;}
.x1b{left:669.893322pt;}
.x1f{left:684.453322pt;}
}




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