
    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_b9284231652b2d9091d99583.woff')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_494306d78ec0c8c76531e2fa.woff')format("woff");}.ff2{font-family:ff2;line-height:1.147461;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_a5b8608dcf7b662faacc58f9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.119629;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ca38190b910004d2b5f440ac.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104980;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_93b9ee8b46d56e35b7556662.woff')format("woff");}.ff7{font-family:ff7;line-height:0.840000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.548000px;}
.ls7{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.828000px;}
.ls5{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.262080px;}
.ls3{letter-spacing:0.305400px;}
.ls8{letter-spacing:34.865280px;}
.ls2{letter-spacing:64.385280px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws3{word-spacing:-18.720120px;}
.ws1{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.ws6{word-spacing:-17.586720px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-9.044640px;}
._1a{margin-left:-7.587360px;}
._28{margin-left:-6.570720px;}
._9{margin-left:-4.929120px;}
._2{margin-left:-3.867840px;}
._3{margin-left:-2.861280px;}
._1{margin-left:-1.179360px;}
._4{width:1.126080px;}
._7{width:2.185920px;}
._6{width:3.232800px;}
._10{width:4.570560px;}
._14{width:5.931840px;}
._15{width:6.945600px;}
._13{width:7.983360px;}
._b{width:9.223200px;}
._c{width:10.267200px;}
._d{width:11.298240px;}
._e{width:12.386880px;}
._f{width:14.003040px;}
._a{width:15.168960px;}
._16{width:16.321440px;}
._8{width:17.335200px;}
._5{width:20.256480px;}
._0{width:21.312720px;}
._19{width:22.919040px;}
._1f{width:24.098400px;}
._23{width:25.476480px;}
._12{width:26.707680px;}
._11{width:28.072800px;}
._1c{width:29.409120px;}
._25{width:31.331040px;}
._24{width:32.391360px;}
._20{width:33.981120px;}
._21{width:35.094240px;}
._31{width:37.038240px;}
._2e{width:39.019680px;}
._2d{width:40.523760px;}
._18{width:42.647040px;}
._17{width:43.983360px;}
._27{width:51.534720px;}
._30{width:52.859520px;}
._22{width:54.237600px;}
._1d{width:86.459040px;}
._1e{width:87.461280px;}
._2a{width:117.311040px;}
._2b{width:122.279040px;}
._2c{width:123.657120px;}
._2f{width:129.300480px;}
._29{width:138.706560px;}
._26{width:163.069920px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:6.300000px;}
.y2{bottom:41.760000px;}
.y1{bottom:57.420000px;}
.ye1{bottom:113.220000px;}
.yfd{bottom:116.460000px;}
.y45{bottom:119.340000px;}
.ybb{bottom:122.220000px;}
.yff{bottom:126.900000px;}
.y6d{bottom:137.700000px;}
.ye0{bottom:141.660000px;}
.yd4{bottom:143.100000px;}
.y8e{bottom:144.720000px;}
.yfc{bottom:144.900000px;}
.y44{bottom:147.780000px;}
.yba{bottom:150.660000px;}
.y22{bottom:163.620000px;}
.yfe{bottom:164.340000px;}
.y6c{bottom:166.140000px;}
.ydf{bottom:170.100000px;}
.yd3{bottom:171.540000px;}
.yfb{bottom:173.340000px;}
.y43{bottom:176.220000px;}
.yac{bottom:179.130000px;}
.y8d{bottom:182.190000px;}
.y59{bottom:185.250000px;}
.y21{bottom:201.090000px;}
.yfa{bottom:201.810000px;}
.y42{bottom:204.690000px;}
.yde{bottom:207.570000px;}
.yd2{bottom:209.010000px;}
.y8c{bottom:210.630000px;}
.y58{bottom:213.690000px;}
.yab{bottom:216.570000px;}
.y20{bottom:229.530000px;}
.yf9{bottom:230.250000px;}
.y41{bottom:233.130000px;}
.y57{bottom:242.130000px;}
.yaa{bottom:245.010000px;}
.yd1{bottom:246.630000px;}
.y8b{bottom:248.070000px;}
.y1f{bottom:257.970000px;}
.yf8{bottom:258.690000px;}
.y40{bottom:261.570000px;}
.y56{bottom:270.570000px;}
.ya9{bottom:282.630000px;}
.yd0{bottom:284.070000px;}
.y8a{bottom:285.510000px;}
.y1e{bottom:286.410000px;}
.yf7{bottom:287.130000px;}
.y3f{bottom:299.010000px;}
.y55{bottom:308.010000px;}
.ya8{bottom:311.070000px;}
.y1d{bottom:315.030000px;}
.yf6{bottom:315.570000px;}
.ycf{bottom:321.510000px;}
.y89{bottom:322.950000px;}
.y3e{bottom:327.630000px;}
.yb9{bottom:339.510000px;}
.y1c{bottom:343.470000px;}
.yf5{bottom:344.010000px;}
.y54{bottom:345.630000px;}
.ya7{bottom:348.510000px;}
.yce{bottom:349.950000px;}
.y88{bottom:351.390000px;}
.y3d{bottom:356.070000px;}
.ydd{bottom:367.950000px;}
.y1b{bottom:371.910000px;}
.yf4{bottom:372.630000px;}
.ya6{bottom:376.950000px;}
.ycd{bottom:378.390000px;}
.y87{bottom:379.830000px;}
.y53{bottom:383.070000px;}
.y3c{bottom:384.510000px;}
.ydc{bottom:396.390000px;}
.yf3{bottom:401.070000px;}
.ya5{bottom:405.390000px;}
.y86{bottom:408.450000px;}
.y1a{bottom:409.350000px;}
.y52{bottom:411.510000px;}
.y3b{bottom:412.950000px;}
.yb8{bottom:414.390000px;}
.ycc{bottom:415.830000px;}
.ydb{bottom:424.875000px;}
.yf2{bottom:429.555000px;}
.ya4{bottom:433.875000px;}
.y19{bottom:437.835000px;}
.y51{bottom:439.995000px;}
.y3a{bottom:441.435000px;}
.yb7{bottom:442.875000px;}
.ycb{bottom:444.315000px;}
.y85{bottom:445.935000px;}
.yda{bottom:453.315000px;}
.yf1{bottom:457.995000px;}
.y18{bottom:466.275000px;}
.y50{bottom:468.435000px;}
.y6b{bottom:469.875000px;}
.ya3{bottom:471.315000px;}
.y84{bottom:474.375000px;}
.y39{bottom:478.875000px;}
.yca{bottom:481.755000px;}
.yf0{bottom:486.435000px;}
.yd9{bottom:490.755000px;}
.y17{bottom:494.715000px;}
.y4f{bottom:496.875000px;}
.y6a{bottom:498.315000px;}
.ya2{bottom:499.755000px;}
.y83{bottom:502.815000px;}
.y38{bottom:507.315000px;}
.yef{bottom:514.875000px;}
.yc9{bottom:519.195000px;}
.y16{bottom:523.155000px;}
.y69{bottom:526.755000px;}
.ya1{bottom:528.195000px;}
.y82{bottom:531.255000px;}
.y4e{bottom:534.315000px;}
.y37{bottom:535.755000px;}
.yb6{bottom:537.195000px;}
.yee{bottom:543.315000px;}
.yc8{bottom:547.815000px;}
.y15{bottom:551.595000px;}
.y68{bottom:555.195000px;}
.ya0{bottom:556.815000px;}
.y4d{bottom:562.755000px;}
.y36{bottom:564.195000px;}
.yb5{bottom:565.815000px;}
.y81{bottom:568.695000px;}
.yed{bottom:571.755000px;}
.yc7{bottom:576.255000px;}
.y14{bottom:580.215000px;}
.y4c{bottom:591.195000px;}
.y35{bottom:592.815000px;}
.y9f{bottom:594.255000px;}
.y80{bottom:597.135000px;}
.yec{bottom:600.195000px;}
.yb4{bottom:603.255000px;}
.yd8{bottom:604.695000px;}
.y13{bottom:608.655000px;}
.yc6{bottom:613.695000px;}
.y4b{bottom:619.815000px;}
.y34{bottom:621.255000px;}
.y7f{bottom:625.575000px;}
.yeb{bottom:628.815000px;}
.y67{bottom:630.255000px;}
.y9e{bottom:631.695000px;}
.y12{bottom:637.095000px;}
.yd7{bottom:642.135000px;}
.y4a{bottom:648.255000px;}
.y33{bottom:649.695000px;}
.yc5{bottom:651.135000px;}
.y7e{bottom:654.015000px;}
.yea{bottom:657.255000px;}
.y9d{bottom:660.135000px;}
.y11{bottom:665.565000px;}
.y66{bottom:667.725000px;}
.yb3{bottom:669.165000px;}
.y49{bottom:676.725000px;}
.y32{bottom:678.165000px;}
.yc4{bottom:679.605000px;}
.y7d{bottom:682.665000px;}
.ye9{bottom:685.725000px;}
.y10{bottom:694.005000px;}
.y65{bottom:696.165000px;}
.y9c{bottom:697.605000px;}
.y48{bottom:705.165000px;}
.yc3{bottom:708.045000px;}
.y7c{bottom:711.105000px;}
.ye8{bottom:714.165000px;}
.y31{bottom:715.605000px;}
.yd6{bottom:717.045000px;}
.yf{bottom:722.445000px;}
.y64{bottom:724.605000px;}
.y9b{bottom:726.045000px;}
.y47{bottom:733.605000px;}
.yc2{bottom:736.485000px;}
.y7b{bottom:739.545000px;}
.ye7{bottom:742.605000px;}
.y30{bottom:753.045000px;}
.yb2{bottom:754.485000px;}
.ye{bottom:759.885000px;}
.y46{bottom:762.045000px;}
.y9a{bottom:763.485000px;}
.y7a{bottom:767.985000px;}
.ye6{bottom:771.045000px;}
.yc1{bottom:773.925000px;}
.y63{bottom:781.485000px;}
.yb1{bottom:782.925000px;}
.y2f{bottom:790.485000px;}
.y99{bottom:791.925000px;}
.y79{bottom:796.425000px;}
.yd{bottom:797.325000px;}
.ye5{bottom:799.485000px;}
.yc0{bottom:802.365000px;}
.y62{bottom:809.925000px;}
.y2e{bottom:818.925000px;}
.y98{bottom:820.365000px;}
.ye4{bottom:827.925000px;}
.y78{bottom:833.865000px;}
.yc{bottom:834.765000px;}
.y61{bottom:838.365000px;}
.ybf{bottom:839.985000px;}
.y2d{bottom:847.365000px;}
.y97{bottom:848.985000px;}
.ye3{bottom:856.365000px;}
.yb0{bottom:857.985000px;}
.y77{bottom:871.305000px;}
.yb{bottom:872.385000px;}
.y2c{bottom:875.985000px;}
.y96{bottom:877.425000px;}
.ye2{bottom:884.985000px;}
.yaf{bottom:886.425000px;}
.y60{bottom:904.425000px;}
.y95{bottom:905.865000px;}
.y76{bottom:908.790000px;}
.ya{bottom:909.870000px;}
.y2b{bottom:913.470000px;}
.yae{bottom:914.910000px;}
.y5f{bottom:932.910000px;}
.y94{bottom:934.350000px;}
.y75{bottom:937.230000px;}
.y2a{bottom:941.910000px;}
.yd5{bottom:943.350000px;}
.y9{bottom:947.310000px;}
.yad{bottom:952.350000px;}
.y5e{bottom:961.350000px;}
.y93{bottom:962.790000px;}
.y74{bottom:965.850000px;}
.y29{bottom:970.350000px;}
.ybe{bottom:980.790000px;}
.y8{bottom:984.750000px;}
.y5d{bottom:989.790000px;}
.y92{bottom:991.230000px;}
.y73{bottom:995.370000px;}
.y28{bottom:998.790000px;}
.ybd{bottom:1009.230000px;}
.y5c{bottom:1018.230000px;}
.y7{bottom:1022.190000px;}
.y72{bottom:1023.810000px;}
.y27{bottom:1027.230000px;}
.y91{bottom:1028.670000px;}
.ybc{bottom:1037.670000px;}
.y5b{bottom:1046.670000px;}
.y71{bottom:1053.510000px;}
.y26{bottom:1055.670000px;}
.y6{bottom:1059.630000px;}
.y90{bottom:1066.110000px;}
.y5a{bottom:1075.110000px;}
.y70{bottom:1081.950000px;}
.y25{bottom:1084.110000px;}
.y5{bottom:1100.670000px;}
.y8f{bottom:1103.550000px;}
.y6f{bottom:1111.470000px;}
.y24{bottom:1112.550000px;}
.y4{bottom:1137.030000px;}
.y6e{bottom:1140.090000px;}
.y23{bottom:1141.170000px;}
.h3{height:22.680000px;}
.h8{height:62.067656px;}
.h4{height:62.327813px;}
.h2{height:65.884219px;}
.h7{height:69.086250px;}
.h5{height:76.219102px;}
.h6{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:66.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:20.880000px;}
.x1{left:127.655987px;}
.x4{left:154.649987px;}
.x5{left:181.649987px;}
.x2{left:795.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.376000pt;}
.ls7{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.232960pt;}
.ls3{letter-spacing:0.271467pt;}
.ls8{letter-spacing:30.991360pt;}
.ls2{letter-spacing:57.231360pt;}
.ws4{word-spacing:-58.880000pt;}
.ws3{word-spacing:-16.640107pt;}
.ws1{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.ws6{word-spacing:-15.632640pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-8.039680pt;}
._1a{margin-left:-6.744320pt;}
._28{margin-left:-5.840640pt;}
._9{margin-left:-4.381440pt;}
._2{margin-left:-3.438080pt;}
._3{margin-left:-2.543360pt;}
._1{margin-left:-1.048320pt;}
._4{width:1.000960pt;}
._7{width:1.943040pt;}
._6{width:2.873600pt;}
._10{width:4.062720pt;}
._14{width:5.272747pt;}
._15{width:6.173867pt;}
._13{width:7.096320pt;}
._b{width:8.198400pt;}
._c{width:9.126400pt;}
._d{width:10.042880pt;}
._e{width:11.010560pt;}
._f{width:12.447147pt;}
._a{width:13.483520pt;}
._16{width:14.507947pt;}
._8{width:15.409067pt;}
._5{width:18.005760pt;}
._0{width:18.944640pt;}
._19{width:20.372480pt;}
._1f{width:21.420800pt;}
._23{width:22.645760pt;}
._12{width:23.740160pt;}
._11{width:24.953600pt;}
._1c{width:26.141440pt;}
._25{width:27.849813pt;}
._24{width:28.792320pt;}
._20{width:30.205440pt;}
._21{width:31.194880pt;}
._31{width:32.922880pt;}
._2e{width:34.684160pt;}
._2d{width:36.021120pt;}
._18{width:37.908480pt;}
._17{width:39.096320pt;}
._27{width:45.808640pt;}
._30{width:46.986240pt;}
._22{width:48.211200pt;}
._1d{width:76.852480pt;}
._1e{width:77.743360pt;}
._2a{width:104.276480pt;}
._2b{width:108.692480pt;}
._2c{width:109.917440pt;}
._2f{width:114.933760pt;}
._29{width:123.294720pt;}
._26{width:144.951040pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:5.600000pt;}
.y2{bottom:37.120000pt;}
.y1{bottom:51.040000pt;}
.ye1{bottom:100.640000pt;}
.yfd{bottom:103.520000pt;}
.y45{bottom:106.080000pt;}
.ybb{bottom:108.640000pt;}
.yff{bottom:112.800000pt;}
.y6d{bottom:122.400000pt;}
.ye0{bottom:125.920000pt;}
.yd4{bottom:127.200000pt;}
.y8e{bottom:128.640000pt;}
.yfc{bottom:128.800000pt;}
.y44{bottom:131.360000pt;}
.yba{bottom:133.920000pt;}
.y22{bottom:145.440000pt;}
.yfe{bottom:146.080000pt;}
.y6c{bottom:147.680000pt;}
.ydf{bottom:151.200000pt;}
.yd3{bottom:152.480000pt;}
.yfb{bottom:154.080000pt;}
.y43{bottom:156.640000pt;}
.yac{bottom:159.226667pt;}
.y8d{bottom:161.946667pt;}
.y59{bottom:164.666667pt;}
.y21{bottom:178.746667pt;}
.yfa{bottom:179.386667pt;}
.y42{bottom:181.946667pt;}
.yde{bottom:184.506667pt;}
.yd2{bottom:185.786667pt;}
.y8c{bottom:187.226667pt;}
.y58{bottom:189.946667pt;}
.yab{bottom:192.506667pt;}
.y20{bottom:204.026667pt;}
.yf9{bottom:204.666667pt;}
.y41{bottom:207.226667pt;}
.y57{bottom:215.226667pt;}
.yaa{bottom:217.786667pt;}
.yd1{bottom:219.226667pt;}
.y8b{bottom:220.506667pt;}
.y1f{bottom:229.306667pt;}
.yf8{bottom:229.946667pt;}
.y40{bottom:232.506667pt;}
.y56{bottom:240.506667pt;}
.ya9{bottom:251.226667pt;}
.yd0{bottom:252.506667pt;}
.y8a{bottom:253.786667pt;}
.y1e{bottom:254.586667pt;}
.yf7{bottom:255.226667pt;}
.y3f{bottom:265.786667pt;}
.y55{bottom:273.786667pt;}
.ya8{bottom:276.506667pt;}
.y1d{bottom:280.026667pt;}
.yf6{bottom:280.506667pt;}
.ycf{bottom:285.786667pt;}
.y89{bottom:287.066667pt;}
.y3e{bottom:291.226667pt;}
.yb9{bottom:301.786667pt;}
.y1c{bottom:305.306667pt;}
.yf5{bottom:305.786667pt;}
.y54{bottom:307.226667pt;}
.ya7{bottom:309.786667pt;}
.yce{bottom:311.066667pt;}
.y88{bottom:312.346667pt;}
.y3d{bottom:316.506667pt;}
.ydd{bottom:327.066667pt;}
.y1b{bottom:330.586667pt;}
.yf4{bottom:331.226667pt;}
.ya6{bottom:335.066667pt;}
.ycd{bottom:336.346667pt;}
.y87{bottom:337.626667pt;}
.y53{bottom:340.506667pt;}
.y3c{bottom:341.786667pt;}
.ydc{bottom:352.346667pt;}
.yf3{bottom:356.506667pt;}
.ya5{bottom:360.346667pt;}
.y86{bottom:363.066667pt;}
.y1a{bottom:363.866667pt;}
.y52{bottom:365.786667pt;}
.y3b{bottom:367.066667pt;}
.yb8{bottom:368.346667pt;}
.ycc{bottom:369.626667pt;}
.ydb{bottom:377.666667pt;}
.yf2{bottom:381.826667pt;}
.ya4{bottom:385.666667pt;}
.y19{bottom:389.186667pt;}
.y51{bottom:391.106667pt;}
.y3a{bottom:392.386667pt;}
.yb7{bottom:393.666667pt;}
.ycb{bottom:394.946667pt;}
.y85{bottom:396.386667pt;}
.yda{bottom:402.946667pt;}
.yf1{bottom:407.106667pt;}
.y18{bottom:414.466667pt;}
.y50{bottom:416.386667pt;}
.y6b{bottom:417.666667pt;}
.ya3{bottom:418.946667pt;}
.y84{bottom:421.666667pt;}
.y39{bottom:425.666667pt;}
.yca{bottom:428.226667pt;}
.yf0{bottom:432.386667pt;}
.yd9{bottom:436.226667pt;}
.y17{bottom:439.746667pt;}
.y4f{bottom:441.666667pt;}
.y6a{bottom:442.946667pt;}
.ya2{bottom:444.226667pt;}
.y83{bottom:446.946667pt;}
.y38{bottom:450.946667pt;}
.yef{bottom:457.666667pt;}
.yc9{bottom:461.506667pt;}
.y16{bottom:465.026667pt;}
.y69{bottom:468.226667pt;}
.ya1{bottom:469.506667pt;}
.y82{bottom:472.226667pt;}
.y4e{bottom:474.946667pt;}
.y37{bottom:476.226667pt;}
.yb6{bottom:477.506667pt;}
.yee{bottom:482.946667pt;}
.yc8{bottom:486.946667pt;}
.y15{bottom:490.306667pt;}
.y68{bottom:493.506667pt;}
.ya0{bottom:494.946667pt;}
.y4d{bottom:500.226667pt;}
.y36{bottom:501.506667pt;}
.yb5{bottom:502.946667pt;}
.y81{bottom:505.506667pt;}
.yed{bottom:508.226667pt;}
.yc7{bottom:512.226667pt;}
.y14{bottom:515.746667pt;}
.y4c{bottom:525.506667pt;}
.y35{bottom:526.946667pt;}
.y9f{bottom:528.226667pt;}
.y80{bottom:530.786667pt;}
.yec{bottom:533.506667pt;}
.yb4{bottom:536.226667pt;}
.yd8{bottom:537.506667pt;}
.y13{bottom:541.026667pt;}
.yc6{bottom:545.506667pt;}
.y4b{bottom:550.946667pt;}
.y34{bottom:552.226667pt;}
.y7f{bottom:556.066667pt;}
.yeb{bottom:558.946667pt;}
.y67{bottom:560.226667pt;}
.y9e{bottom:561.506667pt;}
.y12{bottom:566.306667pt;}
.yd7{bottom:570.786667pt;}
.y4a{bottom:576.226667pt;}
.y33{bottom:577.506667pt;}
.yc5{bottom:578.786667pt;}
.y7e{bottom:581.346667pt;}
.yea{bottom:584.226667pt;}
.y9d{bottom:586.786667pt;}
.y11{bottom:591.613333pt;}
.y66{bottom:593.533333pt;}
.yb3{bottom:594.813333pt;}
.y49{bottom:601.533333pt;}
.y32{bottom:602.813333pt;}
.yc4{bottom:604.093333pt;}
.y7d{bottom:606.813333pt;}
.ye9{bottom:609.533333pt;}
.y10{bottom:616.893333pt;}
.y65{bottom:618.813333pt;}
.y9c{bottom:620.093333pt;}
.y48{bottom:626.813333pt;}
.yc3{bottom:629.373333pt;}
.y7c{bottom:632.093333pt;}
.ye8{bottom:634.813333pt;}
.y31{bottom:636.093333pt;}
.yd6{bottom:637.373333pt;}
.yf{bottom:642.173333pt;}
.y64{bottom:644.093333pt;}
.y9b{bottom:645.373333pt;}
.y47{bottom:652.093333pt;}
.yc2{bottom:654.653333pt;}
.y7b{bottom:657.373333pt;}
.ye7{bottom:660.093333pt;}
.y30{bottom:669.373333pt;}
.yb2{bottom:670.653333pt;}
.ye{bottom:675.453333pt;}
.y46{bottom:677.373333pt;}
.y9a{bottom:678.653333pt;}
.y7a{bottom:682.653333pt;}
.ye6{bottom:685.373333pt;}
.yc1{bottom:687.933333pt;}
.y63{bottom:694.653333pt;}
.yb1{bottom:695.933333pt;}
.y2f{bottom:702.653333pt;}
.y99{bottom:703.933333pt;}
.y79{bottom:707.933333pt;}
.yd{bottom:708.733333pt;}
.ye5{bottom:710.653333pt;}
.yc0{bottom:713.213333pt;}
.y62{bottom:719.933333pt;}
.y2e{bottom:727.933333pt;}
.y98{bottom:729.213333pt;}
.ye4{bottom:735.933333pt;}
.y78{bottom:741.213333pt;}
.yc{bottom:742.013333pt;}
.y61{bottom:745.213333pt;}
.ybf{bottom:746.653333pt;}
.y2d{bottom:753.213333pt;}
.y97{bottom:754.653333pt;}
.ye3{bottom:761.213333pt;}
.yb0{bottom:762.653333pt;}
.y77{bottom:774.493333pt;}
.yb{bottom:775.453333pt;}
.y2c{bottom:778.653333pt;}
.y96{bottom:779.933333pt;}
.ye2{bottom:786.653333pt;}
.yaf{bottom:787.933333pt;}
.y60{bottom:803.933333pt;}
.y95{bottom:805.213333pt;}
.y76{bottom:807.813333pt;}
.ya{bottom:808.773333pt;}
.y2b{bottom:811.973333pt;}
.yae{bottom:813.253333pt;}
.y5f{bottom:829.253333pt;}
.y94{bottom:830.533333pt;}
.y75{bottom:833.093333pt;}
.y2a{bottom:837.253333pt;}
.yd5{bottom:838.533333pt;}
.y9{bottom:842.053333pt;}
.yad{bottom:846.533333pt;}
.y5e{bottom:854.533333pt;}
.y93{bottom:855.813333pt;}
.y74{bottom:858.533333pt;}
.y29{bottom:862.533333pt;}
.ybe{bottom:871.813333pt;}
.y8{bottom:875.333333pt;}
.y5d{bottom:879.813333pt;}
.y92{bottom:881.093333pt;}
.y73{bottom:884.773333pt;}
.y28{bottom:887.813333pt;}
.ybd{bottom:897.093333pt;}
.y5c{bottom:905.093333pt;}
.y7{bottom:908.613333pt;}
.y72{bottom:910.053333pt;}
.y27{bottom:913.093333pt;}
.y91{bottom:914.373333pt;}
.ybc{bottom:922.373333pt;}
.y5b{bottom:930.373333pt;}
.y71{bottom:936.453333pt;}
.y26{bottom:938.373333pt;}
.y6{bottom:941.893333pt;}
.y90{bottom:947.653333pt;}
.y5a{bottom:955.653333pt;}
.y70{bottom:961.733333pt;}
.y25{bottom:963.653333pt;}
.y5{bottom:978.373333pt;}
.y8f{bottom:980.933333pt;}
.y6f{bottom:987.973333pt;}
.y24{bottom:988.933333pt;}
.y4{bottom:1010.693333pt;}
.y6e{bottom:1013.413333pt;}
.y23{bottom:1014.373333pt;}
.h3{height:20.160000pt;}
.h8{height:55.171250pt;}
.h4{height:55.402500pt;}
.h2{height:58.563750pt;}
.h7{height:61.410000pt;}
.h5{height:67.750312pt;}
.h6{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:59.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:18.560000pt;}
.x1{left:113.471988pt;}
.x4{left:137.466655pt;}
.x5{left:161.466655pt;}
.x2{left:707.493333pt;}
}




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