
    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_1e466cddc0d48a20d7bed2e8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c415bd4fa75fd537b2dd1ecf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_958a3b7323287781196df819.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_35c0c1bf4d8fb0f03b3bd6ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005859;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_1f524d5459967fa062bc94aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_892b42f79435fabe65ae0fc6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_34bc1b53b504f3f0393059dd.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_0179fcffeca66b4001f4ef9f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_bc05039060b4876a3c936bfe.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e62533ebdb7aead5f0202b26.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-118.200000px;}
.v4{vertical-align:-93.600000px;}
.v6{vertical-align:-79.920000px;}
.v7{vertical-align:-77.040000px;}
.v3{vertical-align:-60.480000px;}
.v5{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls10{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.085200px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.059040px;}
.lsd{letter-spacing:0.150000px;}
.lse{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.187200px;}
.ls11{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:30.960000px;}
.ls12{letter-spacing:62.945280px;}
.lsc{letter-spacing:87.066720px;}
.ls1{letter-spacing:179.976000px;}
.ls5{letter-spacing:258.996000px;}
.lsb{letter-spacing:326.856000px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.wsb{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.wsa{word-spacing:-13.505760px;}
.ws6{word-spacing:-12.420000px;}
.ws1{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.612800px;}
.ws2{word-spacing:-10.527600px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.495440px;}
._1{width:1.214400px;}
._9{width:2.376480px;}
._3{width:4.001040px;}
._2{width:5.232000px;}
._1a{width:6.492480px;}
._1f{width:7.637760px;}
._e{width:8.677440px;}
._4{width:9.792000px;}
._13{width:10.863360px;}
._6{width:12.753600px;}
._5{width:14.743440px;}
._b{width:16.104000px;}
._1c{width:18.149760px;}
._1b{width:19.209600px;}
._a{width:21.298080px;}
._7{width:22.320000px;}
._8{width:23.544000px;}
._1d{width:24.840000px;}
._15{width:26.562240px;}
._14{width:27.858960px;}
._11{width:29.278080px;}
._12{width:30.552720px;}
._19{width:31.751040px;}
._24{width:33.374880px;}
._16{width:34.908480px;}
._17{width:36.498240px;}
._30{width:37.676160px;}
._18{width:39.280320px;}
._21{width:40.977360px;}
._2f{width:43.056000px;}
._26{width:45.217440px;}
._25{width:46.313040px;}
._2e{width:48.421440px;}
._c{width:50.143680px;}
._d{width:51.374160px;}
._22{width:54.187200px;}
._1e{width:55.376640px;}
._20{width:62.105040px;}
._29{width:66.041280px;}
._27{width:67.669200px;}
._10{width:69.467760px;}
._f{width:70.611840px;}
._2a{width:72.570960px;}
._2c{width:75.712320px;}
._2d{width:76.904640px;}
._23{width:80.986320px;}
._33{width:86.318160px;}
._31{width:87.900480px;}
._32{width:135.907200px;}
._28{width:173.083680px;}
._2b{width:1556.916000px;}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:18.000000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:3.945000px;}
.y9b{bottom:3.960000px;}
.ya1{bottom:4.140000px;}
.y9a{bottom:22.890000px;}
.ya5{bottom:23.025000px;}
.ya0{bottom:23.040000px;}
.yb8{bottom:23.070000px;}
.yab{bottom:41.940000px;}
.y99{bottom:41.970000px;}
.y9f{bottom:42.120000px;}
.yb0{bottom:60.840000px;}
.y98{bottom:60.870000px;}
.y9e{bottom:61.020000px;}
.yb7{bottom:61.050000px;}
.y4{bottom:62.460000px;}
.ya3{bottom:79.920000px;}
.yb5{bottom:79.950000px;}
.y9d{bottom:80.100000px;}
.y50{bottom:88.920000px;}
.yb4{bottom:98.850000px;}
.yaf{bottom:98.865000px;}
.yb2{bottom:99.000000px;}
.yaa{bottom:99.030000px;}
.y96{bottom:100.296000px;}
.y4f{bottom:107.316000px;}
.y4e{bottom:114.876000px;}
.y95{bottom:119.196000px;}
.y55{bottom:119.376000px;}
.ybe{bottom:120.816000px;}
.y4d{bottom:126.216000px;}
.y79{bottom:128.016000px;}
.y7a{bottom:135.576000px;}
.y94{bottom:138.096000px;}
.y54{bottom:138.456000px;}
.ybd{bottom:144.936000px;}
.y92{bottom:157.170000px;}
.y53{bottom:157.350000px;}
.ybc{bottom:169.050000px;}
.y93{bottom:175.710000px;}
.y91{bottom:176.070000px;}
.y52{bottom:176.250000px;}
.ybb{bottom:193.170000px;}
.y90{bottom:195.150000px;}
.y4c{bottom:195.330000px;}
.y8f{bottom:214.050000px;}
.y4b{bottom:214.230000px;}
.yba{bottom:217.290000px;}
.y8e{bottom:233.130000px;}
.y4a{bottom:233.310000px;}
.y8d{bottom:252.030000px;}
.y49{bottom:252.210000px;}
.yb9{bottom:261.030000px;}
.y8c{bottom:270.930000px;}
.y48{bottom:271.110000px;}
.ya7{bottom:283.545000px;}
.y2c{bottom:283.710000px;}
.y8b{bottom:290.010000px;}
.y47{bottom:290.190000px;}
.y2b{bottom:302.790000px;}
.y8a{bottom:308.910000px;}
.y46{bottom:309.090000px;}
.y2a{bottom:321.690000px;}
.ya4{bottom:326.025000px;}
.y89{bottom:327.990000px;}
.y45{bottom:328.170000px;}
.y29{bottom:340.590000px;}
.yb6{bottom:342.585000px;}
.y88{bottom:346.890000px;}
.y44{bottom:347.070000px;}
.y28{bottom:359.715000px;}
.y87{bottom:365.835000px;}
.y43{bottom:366.015000px;}
.y27{bottom:378.615000px;}
.y86{bottom:384.915000px;}
.y42{bottom:385.095000px;}
.y26{bottom:397.695000px;}
.y85{bottom:403.815000px;}
.y41{bottom:403.995000px;}
.ya2{bottom:406.335000px;}
.y25{bottom:416.595000px;}
.y84{bottom:422.895000px;}
.y40{bottom:423.075000px;}
.y24{bottom:435.675000px;}
.y83{bottom:441.795000px;}
.y3f{bottom:441.975000px;}
.y23{bottom:454.575000px;}
.y82{bottom:460.695000px;}
.y3e{bottom:460.875000px;}
.y22{bottom:473.475000px;}
.y81{bottom:479.775000px;}
.y3d{bottom:479.955000px;}
.y21{bottom:492.555000px;}
.y80{bottom:498.675000px;}
.y3c{bottom:498.855000px;}
.y9c{bottom:505.695000px;}
.y20{bottom:511.455000px;}
.y7f{bottom:517.755000px;}
.y3b{bottom:517.935000px;}
.y1f{bottom:530.535000px;}
.y7e{bottom:536.655000px;}
.y3a{bottom:536.835000px;}
.yb3{bottom:541.335000px;}
.y1e{bottom:549.435000px;}
.y7d{bottom:555.555000px;}
.y39{bottom:555.915000px;}
.y1d{bottom:568.335000px;}
.y74{bottom:574.635000px;}
.y51{bottom:574.815000px;}
.y1c{bottom:587.415000px;}
.y73{bottom:593.535000px;}
.y38{bottom:593.715000px;}
.y97{bottom:605.235000px;}
.y1b{bottom:606.315000px;}
.y72{bottom:612.615000px;}
.y37{bottom:612.795000px;}
.y1a{bottom:625.425000px;}
.y71{bottom:631.545000px;}
.y36{bottom:631.725000px;}
.y19{bottom:644.325000px;}
.y70{bottom:650.445000px;}
.y35{bottom:650.805000px;}
.yb1{bottom:659.625000px;}
.y18{bottom:663.225000px;}
.y6f{bottom:669.525000px;}
.y34{bottom:669.705000px;}
.y2d{bottom:682.305000px;}
.y6e{bottom:688.425000px;}
.y33{bottom:688.605000px;}
.y17{bottom:701.925000px;}
.y6d{bottom:707.505000px;}
.y32{bottom:707.685000px;}
.y16{bottom:725.865000px;}
.y78{bottom:726.045000px;}
.y6c{bottom:726.405000px;}
.y31{bottom:726.585000px;}
.y6b{bottom:745.485000px;}
.y2f{bottom:745.665000px;}
.y15{bottom:746.565000px;}
.y30{bottom:753.225000px;}
.y6a{bottom:764.385000px;}
.y2e{bottom:764.565000px;}
.y14{bottom:767.265000px;}
.yae{bottom:778.065000px;}
.y69{bottom:783.285000px;}
.y13{bottom:787.965000px;}
.y68{bottom:802.365000px;}
.y12{bottom:808.665000px;}
.y67{bottom:821.265000px;}
.y11{bottom:829.365000px;}
.y66{bottom:839.985000px;}
.y7c{bottom:840.345000px;}
.y10{bottom:850.065000px;}
.y65{bottom:859.245000px;}
.yf{bottom:870.765000px;}
.y64{bottom:878.190000px;}
.ye{bottom:891.510000px;}
.yad{bottom:896.370000px;}
.y63{bottom:897.270000px;}
.yd{bottom:912.210000px;}
.y62{bottom:916.170000px;}
.y61{bottom:935.250000px;}
.yac{bottom:938.850000px;}
.yc{bottom:944.070000px;}
.y60{bottom:953.790000px;}
.y77{bottom:954.150000px;}
.yb{bottom:967.830000px;}
.y76{bottom:972.690000px;}
.y7b{bottom:973.050000px;}
.ya{bottom:983.490000px;}
.y5f{bottom:992.130000px;}
.y5e{bottom:1011.030000px;}
.y5d{bottom:1030.110000px;}
.y9{bottom:1030.650000px;}
.ya9{bottom:1038.210000px;}
.y5c{bottom:1049.010000px;}
.y8{bottom:1054.770000px;}
.y5b{bottom:1067.910000px;}
.y7{bottom:1078.710000px;}
.y5a{bottom:1086.990000px;}
.y6{bottom:1101.030000px;}
.y59{bottom:1105.890000px;}
.y58{bottom:1124.970000px;}
.y57{bottom:1143.900000px;}
.ya8{bottom:1156.680000px;}
.y5{bottom:1161.720000px;}
.y75{bottom:1162.620000px;}
.y56{bottom:1162.980000px;}
.y1{bottom:1167.120000px;}
.y3{bottom:1184.580000px;}
.y2{bottom:1198.980000px;}
.h1b{height:18.900000px;}
.h1a{height:37.965000px;}
.h1e{height:37.980000px;}
.h12{height:38.671172px;}
.hf{height:40.985156px;}
.hc{height:47.321367px;}
.h17{height:47.448281px;}
.h4{height:48.616875px;}
.h13{height:59.439023px;}
.hd{height:65.010937px;}
.h11{height:65.884219px;}
.h10{height:66.757500px;}
.h14{height:68.084282px;}
.hb{height:70.628906px;}
.h7{height:70.664062px;}
.h5{height:71.324297px;}
.ha{height:72.562500px;}
.h19{height:75.801000px;}
.h15{height:75.810000px;}
.h9{height:80.464922px;}
.h23{height:83.787539px;}
.h2{height:84.898125px;}
.h6{height:86.255508px;}
.h18{height:94.845000px;}
.h1d{height:94.860000px;}
.h22{height:94.881000px;}
.h16{height:95.025000px;}
.h8{height:108.843750px;}
.h21{height:113.790000px;}
.h1f{height:113.796000px;}
.h20{height:113.940000px;}
.h1c{height:113.962500px;}
.he{height:1262.875980px;}
.h3{height:1262.879970px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.w8{width:29.865000px;}
.w5{width:29.902500px;}
.w6{width:331.770000px;}
.w7{width:331.800000px;}
.w4{width:892.976265px;}
.w2{width:892.980015px;}
.w3{width:893.250000px;}
.w1{width:894.000000px;}
.w0{width:894.059970px;}
.x0{left:0.000000px;}
.x1e{left:1.255500px;}
.x1d{left:22.531500px;}
.x1c{left:73.264500px;}
.xc{left:74.520000px;}
.x15{left:79.380000px;}
.xb{left:95.796000px;}
.x1f{left:105.336000px;}
.x5{left:117.036000px;}
.x7{left:127.836000px;}
.xe{left:159.510000px;}
.x6{left:161.850000px;}
.x2{left:180.750000px;}
.x1b{left:226.830000px;}
.xf{left:230.970000px;}
.x12{left:235.470000px;}
.x16{left:238.170000px;}
.x8{left:240.870000px;}
.xa{left:243.930000px;}
.x3{left:252.210000px;}
.x11{left:265.890000px;}
.x13{left:290.951250px;}
.x14{left:296.175000px;}
.x9{left:374.835000px;}
.x19{left:436.035000px;}
.x10{left:446.655000px;}
.x1{left:456.225000px;}
.x22{left:462.525000px;}
.x21{left:466.680000px;}
.x4{left:467.925000px;}
.xd{left:489.165000px;}
.x20{left:498.720000px;}
.x17{left:548.741250px;}
.x18{left:553.965000px;}
.x1a{left:617.685000px;}
@media print{
.v1{vertical-align:-105.066667pt;}
.v4{vertical-align:-83.200000pt;}
.v6{vertical-align:-71.040000pt;}
.v7{vertical-align:-68.480000pt;}
.v3{vertical-align:-53.760000pt;}
.v5{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.052480pt;}
.lsd{letter-spacing:0.133333pt;}
.lse{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.166400pt;}
.ls11{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:27.520000pt;}
.ls12{letter-spacing:55.951360pt;}
.lsc{letter-spacing:77.392640pt;}
.ls1{letter-spacing:159.978667pt;}
.ls5{letter-spacing:230.218667pt;}
.lsb{letter-spacing:290.538667pt;}
.ws8{word-spacing:-53.120000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsb{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.wsa{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.433600pt;}
.ws2{word-spacing:-9.357867pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.329280pt;}
._1{width:1.079467pt;}
._9{width:2.112427pt;}
._3{width:3.556480pt;}
._2{width:4.650667pt;}
._1a{width:5.771093pt;}
._1f{width:6.789120pt;}
._e{width:7.713280pt;}
._4{width:8.704000pt;}
._13{width:9.656320pt;}
._6{width:11.336533pt;}
._5{width:13.105280pt;}
._b{width:14.314667pt;}
._1c{width:16.133120pt;}
._1b{width:17.075200pt;}
._a{width:18.931627pt;}
._7{width:19.840000pt;}
._8{width:20.928000pt;}
._1d{width:22.080000pt;}
._15{width:23.610880pt;}
._14{width:24.763520pt;}
._11{width:26.024960pt;}
._12{width:27.157973pt;}
._19{width:28.223147pt;}
._24{width:29.666560pt;}
._16{width:31.029760pt;}
._17{width:32.442880pt;}
._30{width:33.489920pt;}
._18{width:34.915840pt;}
._21{width:36.424320pt;}
._2f{width:38.272000pt;}
._26{width:40.193280pt;}
._25{width:41.167147pt;}
._2e{width:43.041280pt;}
._c{width:44.572160pt;}
._d{width:45.665920pt;}
._22{width:48.166400pt;}
._1e{width:49.223680pt;}
._20{width:55.204480pt;}
._29{width:58.703360pt;}
._27{width:60.150400pt;}
._10{width:61.749120pt;}
._f{width:62.766080pt;}
._2a{width:64.507520pt;}
._2c{width:67.299840pt;}
._2d{width:68.359680pt;}
._23{width:71.987840pt;}
._33{width:76.727253pt;}
._31{width:78.133760pt;}
._32{width:120.806400pt;}
._28{width:153.852160pt;}
._2b{width:1383.925333pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:3.506667pt;}
.y9b{bottom:3.520000pt;}
.ya1{bottom:3.680000pt;}
.y9a{bottom:20.346667pt;}
.ya5{bottom:20.466667pt;}
.ya0{bottom:20.480000pt;}
.yb8{bottom:20.506667pt;}
.yab{bottom:37.280000pt;}
.y99{bottom:37.306667pt;}
.y9f{bottom:37.440000pt;}
.yb0{bottom:54.080000pt;}
.y98{bottom:54.106667pt;}
.y9e{bottom:54.240000pt;}
.yb7{bottom:54.266667pt;}
.y4{bottom:55.520000pt;}
.ya3{bottom:71.040000pt;}
.yb5{bottom:71.066667pt;}
.y9d{bottom:71.200000pt;}
.y50{bottom:79.040000pt;}
.yb4{bottom:87.866667pt;}
.yaf{bottom:87.880000pt;}
.yb2{bottom:88.000000pt;}
.yaa{bottom:88.026667pt;}
.y96{bottom:89.152000pt;}
.y4f{bottom:95.392000pt;}
.y4e{bottom:102.112000pt;}
.y95{bottom:105.952000pt;}
.y55{bottom:106.112000pt;}
.ybe{bottom:107.392000pt;}
.y4d{bottom:112.192000pt;}
.y79{bottom:113.792000pt;}
.y7a{bottom:120.512000pt;}
.y94{bottom:122.752000pt;}
.y54{bottom:123.072000pt;}
.ybd{bottom:128.832000pt;}
.y92{bottom:139.706667pt;}
.y53{bottom:139.866667pt;}
.ybc{bottom:150.266667pt;}
.y93{bottom:156.186667pt;}
.y91{bottom:156.506667pt;}
.y52{bottom:156.666667pt;}
.ybb{bottom:171.706667pt;}
.y90{bottom:173.466667pt;}
.y4c{bottom:173.626667pt;}
.y8f{bottom:190.266667pt;}
.y4b{bottom:190.426667pt;}
.yba{bottom:193.146667pt;}
.y8e{bottom:207.226667pt;}
.y4a{bottom:207.386667pt;}
.y8d{bottom:224.026667pt;}
.y49{bottom:224.186667pt;}
.yb9{bottom:232.026667pt;}
.y8c{bottom:240.826667pt;}
.y48{bottom:240.986667pt;}
.ya7{bottom:252.040000pt;}
.y2c{bottom:252.186667pt;}
.y8b{bottom:257.786667pt;}
.y47{bottom:257.946667pt;}
.y2b{bottom:269.146667pt;}
.y8a{bottom:274.586667pt;}
.y46{bottom:274.746667pt;}
.y2a{bottom:285.946667pt;}
.ya4{bottom:289.800000pt;}
.y89{bottom:291.546667pt;}
.y45{bottom:291.706667pt;}
.y29{bottom:302.746667pt;}
.yb6{bottom:304.520000pt;}
.y88{bottom:308.346667pt;}
.y44{bottom:308.506667pt;}
.y28{bottom:319.746667pt;}
.y87{bottom:325.186667pt;}
.y43{bottom:325.346667pt;}
.y27{bottom:336.546667pt;}
.y86{bottom:342.146667pt;}
.y42{bottom:342.306667pt;}
.y26{bottom:353.506667pt;}
.y85{bottom:358.946667pt;}
.y41{bottom:359.106667pt;}
.ya2{bottom:361.186667pt;}
.y25{bottom:370.306667pt;}
.y84{bottom:375.906667pt;}
.y40{bottom:376.066667pt;}
.y24{bottom:387.266667pt;}
.y83{bottom:392.706667pt;}
.y3f{bottom:392.866667pt;}
.y23{bottom:404.066667pt;}
.y82{bottom:409.506667pt;}
.y3e{bottom:409.666667pt;}
.y22{bottom:420.866667pt;}
.y81{bottom:426.466667pt;}
.y3d{bottom:426.626667pt;}
.y21{bottom:437.826667pt;}
.y80{bottom:443.266667pt;}
.y3c{bottom:443.426667pt;}
.y9c{bottom:449.506667pt;}
.y20{bottom:454.626667pt;}
.y7f{bottom:460.226667pt;}
.y3b{bottom:460.386667pt;}
.y1f{bottom:471.586667pt;}
.y7e{bottom:477.026667pt;}
.y3a{bottom:477.186667pt;}
.yb3{bottom:481.186667pt;}
.y1e{bottom:488.386667pt;}
.y7d{bottom:493.826667pt;}
.y39{bottom:494.146667pt;}
.y1d{bottom:505.186667pt;}
.y74{bottom:510.786667pt;}
.y51{bottom:510.946667pt;}
.y1c{bottom:522.146667pt;}
.y73{bottom:527.586667pt;}
.y38{bottom:527.746667pt;}
.y97{bottom:537.986667pt;}
.y1b{bottom:538.946667pt;}
.y72{bottom:544.546667pt;}
.y37{bottom:544.706667pt;}
.y1a{bottom:555.933333pt;}
.y71{bottom:561.373333pt;}
.y36{bottom:561.533333pt;}
.y19{bottom:572.733333pt;}
.y70{bottom:578.173333pt;}
.y35{bottom:578.493333pt;}
.yb1{bottom:586.333333pt;}
.y18{bottom:589.533333pt;}
.y6f{bottom:595.133333pt;}
.y34{bottom:595.293333pt;}
.y2d{bottom:606.493333pt;}
.y6e{bottom:611.933333pt;}
.y33{bottom:612.093333pt;}
.y17{bottom:623.933333pt;}
.y6d{bottom:628.893333pt;}
.y32{bottom:629.053333pt;}
.y16{bottom:645.213333pt;}
.y78{bottom:645.373333pt;}
.y6c{bottom:645.693333pt;}
.y31{bottom:645.853333pt;}
.y6b{bottom:662.653333pt;}
.y2f{bottom:662.813333pt;}
.y15{bottom:663.613333pt;}
.y30{bottom:669.533333pt;}
.y6a{bottom:679.453333pt;}
.y2e{bottom:679.613333pt;}
.y14{bottom:682.013333pt;}
.yae{bottom:691.613333pt;}
.y69{bottom:696.253333pt;}
.y13{bottom:700.413333pt;}
.y68{bottom:713.213333pt;}
.y12{bottom:718.813333pt;}
.y67{bottom:730.013333pt;}
.y11{bottom:737.213333pt;}
.y66{bottom:746.653333pt;}
.y7c{bottom:746.973333pt;}
.y10{bottom:755.613333pt;}
.y65{bottom:763.773333pt;}
.yf{bottom:774.013333pt;}
.y64{bottom:780.613333pt;}
.ye{bottom:792.453333pt;}
.yad{bottom:796.773333pt;}
.y63{bottom:797.573333pt;}
.yd{bottom:810.853333pt;}
.y62{bottom:814.373333pt;}
.y61{bottom:831.333333pt;}
.yac{bottom:834.533333pt;}
.yc{bottom:839.173333pt;}
.y60{bottom:847.813333pt;}
.y77{bottom:848.133333pt;}
.yb{bottom:860.293333pt;}
.y76{bottom:864.613333pt;}
.y7b{bottom:864.933333pt;}
.ya{bottom:874.213333pt;}
.y5f{bottom:881.893333pt;}
.y5e{bottom:898.693333pt;}
.y5d{bottom:915.653333pt;}
.y9{bottom:916.133333pt;}
.ya9{bottom:922.853333pt;}
.y5c{bottom:932.453333pt;}
.y8{bottom:937.573333pt;}
.y5b{bottom:949.253333pt;}
.y7{bottom:958.853333pt;}
.y5a{bottom:966.213333pt;}
.y6{bottom:978.693333pt;}
.y59{bottom:983.013333pt;}
.y58{bottom:999.973333pt;}
.y57{bottom:1016.800000pt;}
.ya8{bottom:1028.160000pt;}
.y5{bottom:1032.640000pt;}
.y75{bottom:1033.440000pt;}
.y56{bottom:1033.760000pt;}
.y1{bottom:1037.440000pt;}
.y3{bottom:1052.960000pt;}
.y2{bottom:1065.760000pt;}
.h1b{height:16.800000pt;}
.h1a{height:33.746667pt;}
.h1e{height:33.760000pt;}
.h12{height:34.374375pt;}
.hf{height:36.431250pt;}
.hc{height:42.063437pt;}
.h17{height:42.176250pt;}
.h4{height:43.215000pt;}
.h13{height:52.834688pt;}
.hd{height:57.787500pt;}
.h11{height:58.563750pt;}
.h10{height:59.340000pt;}
.h14{height:60.519362pt;}
.hb{height:62.781250pt;}
.h7{height:62.812500pt;}
.h5{height:63.399375pt;}
.ha{height:64.500000pt;}
.h19{height:67.378667pt;}
.h15{height:67.386667pt;}
.h9{height:71.524375pt;}
.h23{height:74.477812pt;}
.h2{height:75.465000pt;}
.h6{height:76.671562pt;}
.h18{height:84.306667pt;}
.h1d{height:84.320000pt;}
.h22{height:84.338667pt;}
.h16{height:84.466667pt;}
.h8{height:96.750000pt;}
.h21{height:101.146667pt;}
.h1f{height:101.152000pt;}
.h20{height:101.280000pt;}
.h1c{height:101.300000pt;}
.he{height:1122.556427pt;}
.h3{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.w8{width:26.546667pt;}
.w5{width:26.580000pt;}
.w6{width:294.906667pt;}
.w7{width:294.933333pt;}
.w4{width:793.756680pt;}
.w2{width:793.760013pt;}
.w3{width:794.000000pt;}
.w1{width:794.666667pt;}
.w0{width:794.719973pt;}
.x0{left:0.000000pt;}
.x1e{left:1.116000pt;}
.x1d{left:20.028000pt;}
.x1c{left:65.124000pt;}
.xc{left:66.240000pt;}
.x15{left:70.560000pt;}
.xb{left:85.152000pt;}
.x1f{left:93.632000pt;}
.x5{left:104.032000pt;}
.x7{left:113.632000pt;}
.xe{left:141.786667pt;}
.x6{left:143.866667pt;}
.x2{left:160.666667pt;}
.x1b{left:201.626667pt;}
.xf{left:205.306667pt;}
.x12{left:209.306667pt;}
.x16{left:211.706667pt;}
.x8{left:214.106667pt;}
.xa{left:216.826667pt;}
.x3{left:224.186667pt;}
.x11{left:236.346667pt;}
.x13{left:258.623333pt;}
.x14{left:263.266667pt;}
.x9{left:333.186667pt;}
.x19{left:387.586667pt;}
.x10{left:397.026667pt;}
.x1{left:405.533333pt;}
.x22{left:411.133333pt;}
.x21{left:414.826667pt;}
.x4{left:415.933333pt;}
.xd{left:434.813333pt;}
.x20{left:443.306667pt;}
.x17{left:487.770000pt;}
.x18{left:492.413333pt;}
.x1a{left:549.053333pt;}
}




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