
    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_3280c87aea5a5d15e7f9b712.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b582d19c8fd827e1e9e46628.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_e7c06e5844703700b39c7ec3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_8eb10205b5c6f06e52f44fc2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_07160cf1b969b86f4250fb44.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_b7e426a153a2f2354d3aa9a9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_7ff499964bcca88d0a1e759e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_57de9f2cfa6a9b71b7dd79ce.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_569a6bd1a7535ad67e20129a.woff')format("woff");}.ff9{font-family:ff9;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-1.176000px;}
.ls18{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-0.822000px;}
.lsf{letter-spacing:-0.666000px;}
.lsd{letter-spacing:-0.513600px;}
.ls13{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.208200px;}
.lsb{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.666000px;}
.ls14{letter-spacing:0.828000px;}
.ls11{letter-spacing:0.900000px;}
.ls17{letter-spacing:1.080000px;}
.ls16{letter-spacing:11.466720px;}
.ls2{letter-spacing:19.386720px;}
.ls15{letter-spacing:41.706720px;}
.ls9{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.560000px;}
.wse{word-spacing:-16.020000px;}
.ws11{word-spacing:-15.768000px;}
.ws10{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.274000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2551.218480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1443.130560px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._b{margin-left:-6.516960px;}
._8{margin-left:-5.283120px;}
._9{margin-left:-3.908160px;}
._c{margin-left:-2.344560px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._e{width:2.461680px;}
._14{width:3.486480px;}
._d{width:4.501680px;}
._f{width:5.784000px;}
._10{width:7.244640px;}
._11{width:8.821440px;}
._12{width:10.437120px;}
._13{width:11.682000px;}
._16{width:13.266720px;}
._15{width:16.278480px;}
._1c{width:17.472240px;}
._27{width:19.541520px;}
._28{width:21.254880px;}
._2b{width:22.350240px;}
._25{width:23.963760px;}
._26{width:25.158960px;}
._a{width:26.169840px;}
._18{width:27.809760px;}
._17{width:29.820240px;}
._29{width:31.911840px;}
._2a{width:32.926800px;}
._2c{width:42.180720px;}
._24{width:43.359840px;}
._1e{width:70.732800px;}
._1d{width:72.966960px;}
._1b{width:82.478880px;}
._1a{width:89.699760px;}
._19{width:105.177600px;}
._1f{width:116.953920px;}
._23{width:139.833360px;}
._20{width:147.371760px;}
._22{width:162.308160px;}
._21{width:188.841600px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:5.760000px;}
.yc7{bottom:5.940000px;}
.yb6{bottom:20.925000px;}
.ybb{bottom:25.560000px;}
.yc6{bottom:25.740000px;}
.yba{bottom:45.360000px;}
.yc2{bottom:45.390000px;}
.yc5{bottom:45.540000px;}
.y6{bottom:60.336000px;}
.ybe{bottom:65.160000px;}
.yc1{bottom:65.190000px;}
.yb9{bottom:65.340000px;}
.yb8{bottom:85.140000px;}
.yc0{bottom:85.170000px;}
.ydf{bottom:91.476000px;}
.yd4{bottom:92.736000px;}
.y9a{bottom:95.076000px;}
.y69{bottom:102.276000px;}
.yb4{bottom:104.076000px;}
.yde{bottom:111.276000px;}
.yd3{bottom:112.536000px;}
.y99{bottom:114.876000px;}
.y33{bottom:117.036000px;}
.y68{bottom:122.076000px;}
.yb3{bottom:123.876000px;}
.ydd{bottom:131.076000px;}
.yd2{bottom:132.336000px;}
.y98{bottom:134.676000px;}
.y32{bottom:136.836000px;}
.y67{bottom:141.876000px;}
.yb2{bottom:143.676000px;}
.ydc{bottom:150.870000px;}
.yd1{bottom:152.130000px;}
.y97{bottom:154.650000px;}
.y31{bottom:156.630000px;}
.y66{bottom:161.670000px;}
.yb1{bottom:163.650000px;}
.ydb{bottom:170.670000px;}
.yd0{bottom:172.110000px;}
.y30{bottom:176.430000px;}
.y65{bottom:181.650000px;}
.y96{bottom:183.450000px;}
.yda{bottom:190.650000px;}
.ycf{bottom:191.910000px;}
.y2f{bottom:196.410000px;}
.y64{bottom:201.450000px;}
.y95{bottom:203.250000px;}
.yd9{bottom:210.450000px;}
.yce{bottom:211.710000px;}
.yb0{bottom:212.250000px;}
.y2e{bottom:216.210000px;}
.y63{bottom:221.250000px;}
.y94{bottom:223.050000px;}
.yd8{bottom:230.250000px;}
.yaf{bottom:232.050000px;}
.y2d{bottom:236.010000px;}
.ycd{bottom:240.510000px;}
.y62{bottom:241.050000px;}
.y93{bottom:242.850000px;}
.yd7{bottom:250.050000px;}
.yae{bottom:251.850000px;}
.y2c{bottom:255.810000px;}
.ycc{bottom:260.310000px;}
.y61{bottom:260.850000px;}
.y92{bottom:262.830000px;}
.yd6{bottom:269.850000px;}
.yad{bottom:271.830000px;}
.y2b{bottom:275.610000px;}
.ycb{bottom:280.290000px;}
.y60{bottom:280.830000px;}
.y91{bottom:282.675000px;}
.yd5{bottom:289.875000px;}
.yac{bottom:291.675000px;}
.y2a{bottom:295.635000px;}
.yca{bottom:300.135000px;}
.y90{bottom:302.475000px;}
.y5f{bottom:309.675000px;}
.yab{bottom:311.475000px;}
.y29{bottom:315.435000px;}
.yc9{bottom:319.935000px;}
.y8f{bottom:322.275000px;}
.y5e{bottom:329.475000px;}
.yaa{bottom:331.275000px;}
.y28{bottom:335.235000px;}
.yc8{bottom:339.735000px;}
.y8e{bottom:342.075000px;}
.y5d{bottom:349.275000px;}
.ya9{bottom:351.075000px;}
.yc4{bottom:354.495000px;}
.y27{bottom:355.035000px;}
.y5c{bottom:369.075000px;}
.y8d{bottom:371.055000px;}
.y26{bottom:374.835000px;}
.y5b{bottom:389.055000px;}
.y8c{bottom:390.855000px;}
.y25{bottom:394.815000px;}
.y5a{bottom:408.855000px;}
.y8b{bottom:410.655000px;}
.y24{bottom:414.615000px;}
.y59{bottom:428.655000px;}
.y8a{bottom:430.455000px;}
.y23{bottom:434.415000px;}
.y58{bottom:448.455000px;}
.y89{bottom:450.255000px;}
.y22{bottom:454.215000px;}
.yc3{bottom:454.575000px;}
.y57{bottom:468.255000px;}
.y88{bottom:470.235000px;}
.y21{bottom:474.015000px;}
.y56{bottom:488.235000px;}
.y87{bottom:490.035000px;}
.y20{bottom:493.995000px;}
.y55{bottom:508.035000px;}
.y86{bottom:509.835000px;}
.y1f{bottom:513.795000px;}
.y54{bottom:527.835000px;}
.y85{bottom:529.635000px;}
.y1e{bottom:533.595000px;}
.ybf{bottom:534.675000px;}
.ya8{bottom:538.635000px;}
.y53{bottom:547.635000px;}
.y84{bottom:549.435000px;}
.y1d{bottom:555.735000px;}
.ya7{bottom:558.435000px;}
.y52{bottom:567.465000px;}
.y83{bottom:569.445000px;}
.ya6{bottom:578.445000px;}
.y1c{bottom:584.565000px;}
.y51{bottom:587.445000px;}
.y82{bottom:589.245000px;}
.ya5{bottom:598.245000px;}
.y1b{bottom:604.365000px;}
.y50{bottom:607.245000px;}
.y81{bottom:609.045000px;}
.ya4{bottom:618.045000px;}
.y1a{bottom:624.165000px;}
.y4f{bottom:627.045000px;}
.y80{bottom:628.845000px;}
.ybd{bottom:634.605000px;}
.ya3{bottom:637.845000px;}
.y19{bottom:644.145000px;}
.y4e{bottom:646.845000px;}
.y7f{bottom:648.645000px;}
.ya2{bottom:657.645000px;}
.y18{bottom:663.945000px;}
.y4d{bottom:666.645000px;}
.y7e{bottom:668.625000px;}
.ya1{bottom:677.625000px;}
.y17{bottom:683.745000px;}
.y4c{bottom:686.625000px;}
.y7d{bottom:688.425000px;}
.ya0{bottom:697.425000px;}
.y16{bottom:703.545000px;}
.y4b{bottom:706.425000px;}
.y7c{bottom:708.225000px;}
.y9f{bottom:717.225000px;}
.y15{bottom:723.345000px;}
.y4a{bottom:726.225000px;}
.y7b{bottom:728.025000px;}
.yb7{bottom:734.505000px;}
.y9e{bottom:737.025000px;}
.y14{bottom:743.325000px;}
.y49{bottom:746.025000px;}
.y7a{bottom:747.825000px;}
.y9d{bottom:756.825000px;}
.y13{bottom:763.125000px;}
.y48{bottom:765.825000px;}
.y79{bottom:767.805000px;}
.y9c{bottom:776.805000px;}
.y12{bottom:782.925000px;}
.y47{bottom:785.805000px;}
.y78{bottom:787.605000px;}
.y9b{bottom:796.605000px;}
.y11{bottom:802.725000px;}
.y46{bottom:805.605000px;}
.y77{bottom:816.405000px;}
.y10{bottom:822.525000px;}
.y45{bottom:825.405000px;}
.yb5{bottom:834.405000px;}
.y76{bottom:836.205000px;}
.yf{bottom:844.665000px;}
.y44{bottom:845.205000px;}
.y75{bottom:856.050000px;}
.ye{bottom:864.510000px;}
.y43{bottom:865.050000px;}
.y74{bottom:876.030000px;}
.y42{bottom:885.030000px;}
.yd{bottom:889.530000px;}
.y73{bottom:895.830000px;}
.yc{bottom:904.290000px;}
.y41{bottom:904.830000px;}
.y72{bottom:915.630000px;}
.y40{bottom:924.630000px;}
.yb{bottom:929.310000px;}
.y71{bottom:935.430000px;}
.ya{bottom:944.430000px;}
.y70{bottom:955.230000px;}
.y3f{bottom:964.230000px;}
.y9{bottom:965.670000px;}
.y6f{bottom:975.210000px;}
.y3e{bottom:984.210000px;}
.y8{bottom:989.250000px;}
.y6e{bottom:995.010000px;}
.y3d{bottom:1004.010000px;}
.y6d{bottom:1014.810000px;}
.y7{bottom:1020.930000px;}
.y3c{bottom:1023.810000px;}
.y6c{bottom:1034.610000px;}
.y3b{bottom:1043.610000px;}
.y6b{bottom:1054.410000px;}
.y5{bottom:1059.450000px;}
.y3a{bottom:1063.410000px;}
.y6a{bottom:1074.390000px;}
.y39{bottom:1083.390000px;}
.y4{bottom:1090.410000px;}
.y38{bottom:1103.190000px;}
.y3{bottom:1121.370000px;}
.y37{bottom:1122.990000px;}
.y36{bottom:1142.820000px;}
.y2{bottom:1152.360000px;}
.y35{bottom:1162.620000px;}
.y1{bottom:1186.380000px;}
.y34{bottom:1193.220000px;}
.hd{height:34.956000px;}
.h8{height:37.771172px;}
.ha{height:42.894141px;}
.hb{height:49.255313px;}
.h9{height:58.651172px;}
.h11{height:61.423863px;}
.h7{height:62.211094px;}
.h4{height:65.010937px;}
.h5{height:67.565039px;}
.hc{height:67.824844px;}
.h3{height:68.956875px;}
.h10{height:79.200000px;}
.h2{height:93.691406px;}
.he{height:99.180000px;}
.hf{height:99.216000px;}
.h6{height:99.687656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:110.520000px;}
.w5{width:127.800000px;}
.w4{width:468.285000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.740000px;}
.x1{left:54.179987px;}
.x6{left:80.999987px;}
.x2{left:92.556000px;}
.x7{left:108.035987px;}
.x4{left:203.790000px;}
.x5{left:672.810000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-1.045333pt;}
.ls18{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.730667pt;}
.lsf{letter-spacing:-0.592000pt;}
.lsd{letter-spacing:-0.456533pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.185067pt;}
.lsb{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.592000pt;}
.ls14{letter-spacing:0.736000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls16{letter-spacing:10.192640pt;}
.ls2{letter-spacing:17.232640pt;}
.ls15{letter-spacing:37.072640pt;}
.ls9{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.240000pt;}
.ws11{word-spacing:-14.016000pt;}
.ws10{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.688000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2267.749760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1282.782720pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._b{margin-left:-5.792853pt;}
._8{margin-left:-4.696107pt;}
._9{margin-left:-3.473920pt;}
._c{margin-left:-2.084053pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._e{width:2.188160pt;}
._14{width:3.099093pt;}
._d{width:4.001493pt;}
._f{width:5.141333pt;}
._10{width:6.439680pt;}
._11{width:7.841280pt;}
._12{width:9.277440pt;}
._13{width:10.384000pt;}
._16{width:11.792640pt;}
._15{width:14.469760pt;}
._1c{width:15.530880pt;}
._27{width:17.370240pt;}
._28{width:18.893227pt;}
._2b{width:19.866880pt;}
._25{width:21.301120pt;}
._26{width:22.363520pt;}
._a{width:23.262080pt;}
._18{width:24.719787pt;}
._17{width:26.506880pt;}
._29{width:28.366080pt;}
._2a{width:29.268267pt;}
._2c{width:37.493973pt;}
._24{width:38.542080pt;}
._1e{width:62.873600pt;}
._1d{width:64.859520pt;}
._1b{width:73.314560pt;}
._1a{width:79.733120pt;}
._19{width:93.491200pt;}
._1f{width:103.959040pt;}
._23{width:124.296320pt;}
._20{width:130.997120pt;}
._22{width:144.273920pt;}
._21{width:167.859200pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:5.120000pt;}
.yc7{bottom:5.280000pt;}
.yb6{bottom:18.600000pt;}
.ybb{bottom:22.720000pt;}
.yc6{bottom:22.880000pt;}
.yba{bottom:40.320000pt;}
.yc2{bottom:40.346667pt;}
.yc5{bottom:40.480000pt;}
.y6{bottom:53.632000pt;}
.ybe{bottom:57.920000pt;}
.yc1{bottom:57.946667pt;}
.yb9{bottom:58.080000pt;}
.yb8{bottom:75.680000pt;}
.yc0{bottom:75.706667pt;}
.ydf{bottom:81.312000pt;}
.yd4{bottom:82.432000pt;}
.y9a{bottom:84.512000pt;}
.y69{bottom:90.912000pt;}
.yb4{bottom:92.512000pt;}
.yde{bottom:98.912000pt;}
.yd3{bottom:100.032000pt;}
.y99{bottom:102.112000pt;}
.y33{bottom:104.032000pt;}
.y68{bottom:108.512000pt;}
.yb3{bottom:110.112000pt;}
.ydd{bottom:116.512000pt;}
.yd2{bottom:117.632000pt;}
.y98{bottom:119.712000pt;}
.y32{bottom:121.632000pt;}
.y67{bottom:126.112000pt;}
.yb2{bottom:127.712000pt;}
.ydc{bottom:134.106667pt;}
.yd1{bottom:135.226667pt;}
.y97{bottom:137.466667pt;}
.y31{bottom:139.226667pt;}
.y66{bottom:143.706667pt;}
.yb1{bottom:145.466667pt;}
.ydb{bottom:151.706667pt;}
.yd0{bottom:152.986667pt;}
.y30{bottom:156.826667pt;}
.y65{bottom:161.466667pt;}
.y96{bottom:163.066667pt;}
.yda{bottom:169.466667pt;}
.ycf{bottom:170.586667pt;}
.y2f{bottom:174.586667pt;}
.y64{bottom:179.066667pt;}
.y95{bottom:180.666667pt;}
.yd9{bottom:187.066667pt;}
.yce{bottom:188.186667pt;}
.yb0{bottom:188.666667pt;}
.y2e{bottom:192.186667pt;}
.y63{bottom:196.666667pt;}
.y94{bottom:198.266667pt;}
.yd8{bottom:204.666667pt;}
.yaf{bottom:206.266667pt;}
.y2d{bottom:209.786667pt;}
.ycd{bottom:213.786667pt;}
.y62{bottom:214.266667pt;}
.y93{bottom:215.866667pt;}
.yd7{bottom:222.266667pt;}
.yae{bottom:223.866667pt;}
.y2c{bottom:227.386667pt;}
.ycc{bottom:231.386667pt;}
.y61{bottom:231.866667pt;}
.y92{bottom:233.626667pt;}
.yd6{bottom:239.866667pt;}
.yad{bottom:241.626667pt;}
.y2b{bottom:244.986667pt;}
.ycb{bottom:249.146667pt;}
.y60{bottom:249.626667pt;}
.y91{bottom:251.266667pt;}
.yd5{bottom:257.666667pt;}
.yac{bottom:259.266667pt;}
.y2a{bottom:262.786667pt;}
.yca{bottom:266.786667pt;}
.y90{bottom:268.866667pt;}
.y5f{bottom:275.266667pt;}
.yab{bottom:276.866667pt;}
.y29{bottom:280.386667pt;}
.yc9{bottom:284.386667pt;}
.y8f{bottom:286.466667pt;}
.y5e{bottom:292.866667pt;}
.yaa{bottom:294.466667pt;}
.y28{bottom:297.986667pt;}
.yc8{bottom:301.986667pt;}
.y8e{bottom:304.066667pt;}
.y5d{bottom:310.466667pt;}
.ya9{bottom:312.066667pt;}
.yc4{bottom:315.106667pt;}
.y27{bottom:315.586667pt;}
.y5c{bottom:328.066667pt;}
.y8d{bottom:329.826667pt;}
.y26{bottom:333.186667pt;}
.y5b{bottom:345.826667pt;}
.y8c{bottom:347.426667pt;}
.y25{bottom:350.946667pt;}
.y5a{bottom:363.426667pt;}
.y8b{bottom:365.026667pt;}
.y24{bottom:368.546667pt;}
.y59{bottom:381.026667pt;}
.y8a{bottom:382.626667pt;}
.y23{bottom:386.146667pt;}
.y58{bottom:398.626667pt;}
.y89{bottom:400.226667pt;}
.y22{bottom:403.746667pt;}
.yc3{bottom:404.066667pt;}
.y57{bottom:416.226667pt;}
.y88{bottom:417.986667pt;}
.y21{bottom:421.346667pt;}
.y56{bottom:433.986667pt;}
.y87{bottom:435.586667pt;}
.y20{bottom:439.106667pt;}
.y55{bottom:451.586667pt;}
.y86{bottom:453.186667pt;}
.y1f{bottom:456.706667pt;}
.y54{bottom:469.186667pt;}
.y85{bottom:470.786667pt;}
.y1e{bottom:474.306667pt;}
.ybf{bottom:475.266667pt;}
.ya8{bottom:478.786667pt;}
.y53{bottom:486.786667pt;}
.y84{bottom:488.386667pt;}
.y1d{bottom:493.986667pt;}
.ya7{bottom:496.386667pt;}
.y52{bottom:504.413333pt;}
.y83{bottom:506.173333pt;}
.ya6{bottom:514.173333pt;}
.y1c{bottom:519.613333pt;}
.y51{bottom:522.173333pt;}
.y82{bottom:523.773333pt;}
.ya5{bottom:531.773333pt;}
.y1b{bottom:537.213333pt;}
.y50{bottom:539.773333pt;}
.y81{bottom:541.373333pt;}
.ya4{bottom:549.373333pt;}
.y1a{bottom:554.813333pt;}
.y4f{bottom:557.373333pt;}
.y80{bottom:558.973333pt;}
.ybd{bottom:564.093333pt;}
.ya3{bottom:566.973333pt;}
.y19{bottom:572.573333pt;}
.y4e{bottom:574.973333pt;}
.y7f{bottom:576.573333pt;}
.ya2{bottom:584.573333pt;}
.y18{bottom:590.173333pt;}
.y4d{bottom:592.573333pt;}
.y7e{bottom:594.333333pt;}
.ya1{bottom:602.333333pt;}
.y17{bottom:607.773333pt;}
.y4c{bottom:610.333333pt;}
.y7d{bottom:611.933333pt;}
.ya0{bottom:619.933333pt;}
.y16{bottom:625.373333pt;}
.y4b{bottom:627.933333pt;}
.y7c{bottom:629.533333pt;}
.y9f{bottom:637.533333pt;}
.y15{bottom:642.973333pt;}
.y4a{bottom:645.533333pt;}
.y7b{bottom:647.133333pt;}
.yb7{bottom:652.893333pt;}
.y9e{bottom:655.133333pt;}
.y14{bottom:660.733333pt;}
.y49{bottom:663.133333pt;}
.y7a{bottom:664.733333pt;}
.y9d{bottom:672.733333pt;}
.y13{bottom:678.333333pt;}
.y48{bottom:680.733333pt;}
.y79{bottom:682.493333pt;}
.y9c{bottom:690.493333pt;}
.y12{bottom:695.933333pt;}
.y47{bottom:698.493333pt;}
.y78{bottom:700.093333pt;}
.y9b{bottom:708.093333pt;}
.y11{bottom:713.533333pt;}
.y46{bottom:716.093333pt;}
.y77{bottom:725.693333pt;}
.y10{bottom:731.133333pt;}
.y45{bottom:733.693333pt;}
.yb5{bottom:741.693333pt;}
.y76{bottom:743.293333pt;}
.yf{bottom:750.813333pt;}
.y44{bottom:751.293333pt;}
.y75{bottom:760.933333pt;}
.ye{bottom:768.453333pt;}
.y43{bottom:768.933333pt;}
.y74{bottom:778.693333pt;}
.y42{bottom:786.693333pt;}
.yd{bottom:790.693333pt;}
.y73{bottom:796.293333pt;}
.yc{bottom:803.813333pt;}
.y41{bottom:804.293333pt;}
.y72{bottom:813.893333pt;}
.y40{bottom:821.893333pt;}
.yb{bottom:826.053333pt;}
.y71{bottom:831.493333pt;}
.ya{bottom:839.493333pt;}
.y70{bottom:849.093333pt;}
.y3f{bottom:857.093333pt;}
.y9{bottom:858.373333pt;}
.y6f{bottom:866.853333pt;}
.y3e{bottom:874.853333pt;}
.y8{bottom:879.333333pt;}
.y6e{bottom:884.453333pt;}
.y3d{bottom:892.453333pt;}
.y6d{bottom:902.053333pt;}
.y7{bottom:907.493333pt;}
.y3c{bottom:910.053333pt;}
.y6c{bottom:919.653333pt;}
.y3b{bottom:927.653333pt;}
.y6b{bottom:937.253333pt;}
.y5{bottom:941.733333pt;}
.y3a{bottom:945.253333pt;}
.y6a{bottom:955.013333pt;}
.y39{bottom:963.013333pt;}
.y4{bottom:969.253333pt;}
.y38{bottom:980.613333pt;}
.y3{bottom:996.773333pt;}
.y37{bottom:998.213333pt;}
.y36{bottom:1015.840000pt;}
.y2{bottom:1024.320000pt;}
.y35{bottom:1033.440000pt;}
.y1{bottom:1054.560000pt;}
.y34{bottom:1060.640000pt;}
.hd{height:31.072000pt;}
.h8{height:33.574375pt;}
.ha{height:38.128125pt;}
.hb{height:43.782500pt;}
.h9{height:52.134375pt;}
.h11{height:54.598989pt;}
.h7{height:55.298750pt;}
.h4{height:57.787500pt;}
.h5{height:60.057813pt;}
.hc{height:60.288750pt;}
.h3{height:61.295000pt;}
.h10{height:70.400000pt;}
.h2{height:83.281250pt;}
.he{height:88.160000pt;}
.hf{height:88.192000pt;}
.h6{height:88.611250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:98.240000pt;}
.w5{width:113.600000pt;}
.w4{width:416.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.880000pt;}
.x1{left:48.159988pt;}
.x6{left:71.999988pt;}
.x2{left:82.272000pt;}
.x7{left:96.031988pt;}
.x4{left:181.146667pt;}
.x5{left:598.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; }
  