
    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_ac19f5b60ee647196d301513.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7ea345739ca889570e8a291a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b15d4cfea038b270ed409795.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_8afb68cb124ad897a56073ba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fc87219ee2fc05bff0e31f33.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9b0691f5c77f43159fbe0769.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8408df5b56927ad6d43b81fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_d6fd41938f2c69f44ab5e5cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090820;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_7ad5651a2766bda9d2295657.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.056152;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_43b3a977f63419f50df18561.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v1{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls11{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.206400px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.lse{letter-spacing:0.153600px;}
.ls4{letter-spacing:0.156000px;}
.ls5{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:2.106720px;}
.ls10{letter-spacing:28.980000px;}
.ls0{letter-spacing:31.602720px;}
.lsd{letter-spacing:31.626720px;}
.lsb{letter-spacing:103.860000px;}
.lsc{letter-spacing:434.340000px;}
.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;}
}
.ws0{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.733600px;}
.ws5{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws2{word-spacing:0.000000px;}
._19{margin-left:-12.653280px;}
._14{margin-left:-3.107520px;}
._4{margin-left:-1.852560px;}
._1{width:1.015920px;}
._2{width:2.786880px;}
._6{width:4.003920px;}
._5{width:5.019840px;}
._11{width:6.054960px;}
._15{width:7.152000px;}
._13{width:8.246880px;}
._10{width:9.382320px;}
._7{width:10.458000px;}
._b{width:12.489840px;}
._12{width:13.625280px;}
._9{width:16.015680px;}
._a{width:17.031600px;}
._1b{width:18.318240px;}
._d{width:19.840320px;}
._c{width:21.155040px;}
._8{width:22.768560px;}
._29{width:23.856960px;}
._1d{width:25.122960px;}
._f{width:26.143200px;}
._e{width:27.521280px;}
._1c{width:28.533600px;}
._18{width:31.921920px;}
._17{width:33.598080px;}
._1a{width:37.589040px;}
._2a{width:39.326160px;}
._27{width:41.234400px;}
._28{width:52.121520px;}
._25{width:55.218240px;}
._1e{width:56.652480px;}
._1f{width:59.338800px;}
._16{width:74.700000px;}
._26{width:78.763680px;}
._22{width:82.000080px;}
._23{width:89.520480px;}
._20{width:121.432320px;}
._24{width:124.719120px;}
._21{width:232.048080px;}
._3{width:320.855040px;}
._0{width:767.850240px;}
._2b{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y81{bottom:3.240000px;}
.y83{bottom:11.880000px;}
.y84{bottom:20.520000px;}
.y8b{bottom:20.550000px;}
.y2{bottom:55.800000px;}
.y40{bottom:91.440000px;}
.yc4{bottom:91.980000px;}
.y7f{bottom:104.760000px;}
.y3f{bottom:108.720000px;}
.yc3{bottom:109.260000px;}
.y7d{bottom:122.040000px;}
.y3e{bottom:126.000000px;}
.yc2{bottom:126.540000px;}
.y7c{bottom:139.356000px;}
.y3d{bottom:143.136000px;}
.yc1{bottom:143.856000px;}
.y7b{bottom:156.630000px;}
.y3c{bottom:160.410000px;}
.yc0{bottom:161.130000px;}
.y7a{bottom:173.910000px;}
.y3b{bottom:177.690000px;}
.ybf{bottom:178.230000px;}
.y9c{bottom:189.570000px;}
.y79{bottom:191.010000px;}
.y3a{bottom:194.970000px;}
.ybe{bottom:195.510000px;}
.y9b{bottom:206.850000px;}
.y78{bottom:208.290000px;}
.y39{bottom:212.250000px;}
.ybd{bottom:212.790000px;}
.y9a{bottom:224.130000px;}
.y77{bottom:225.570000px;}
.y38{bottom:229.530000px;}
.ybc{bottom:230.070000px;}
.y99{bottom:241.230000px;}
.y76{bottom:242.850000px;}
.y37{bottom:246.630000px;}
.ybb{bottom:247.350000px;}
.y98{bottom:258.510000px;}
.y75{bottom:260.130000px;}
.y36{bottom:263.910000px;}
.yba{bottom:264.450000px;}
.y97{bottom:275.790000px;}
.y74{bottom:277.410000px;}
.y35{bottom:281.190000px;}
.yb9{bottom:281.730000px;}
.y96{bottom:293.070000px;}
.y73{bottom:294.510000px;}
.y34{bottom:298.470000px;}
.yb8{bottom:299.010000px;}
.y95{bottom:310.350000px;}
.y7e{bottom:311.790000px;}
.y33{bottom:315.750000px;}
.yb7{bottom:316.290000px;}
.y94{bottom:327.630000px;}
.y72{bottom:329.070000px;}
.y32{bottom:332.850000px;}
.yb6{bottom:333.570000px;}
.y93{bottom:344.730000px;}
.y71{bottom:346.350000px;}
.y31{bottom:350.130000px;}
.yb5{bottom:350.850000px;}
.y92{bottom:362.010000px;}
.y70{bottom:363.630000px;}
.y30{bottom:367.410000px;}
.yb4{bottom:367.950000px;}
.y6f{bottom:380.730000px;}
.y2f{bottom:384.690000px;}
.yb3{bottom:385.230000px;}
.y6e{bottom:398.055000px;}
.y91{bottom:398.235000px;}
.y2e{bottom:402.015000px;}
.yb2{bottom:402.555000px;}
.y6d{bottom:415.335000px;}
.y2d{bottom:419.295000px;}
.yb1{bottom:419.835000px;}
.y6c{bottom:432.615000px;}
.y2c{bottom:436.395000px;}
.yb0{bottom:437.115000px;}
.y90{bottom:438.735000px;}
.y6b{bottom:449.895000px;}
.y2b{bottom:453.675000px;}
.yaf{bottom:454.395000px;}
.y6a{bottom:467.175000px;}
.y2a{bottom:470.955000px;}
.yae{bottom:471.495000px;}
.y8f{bottom:479.235000px;}
.y69{bottom:484.275000px;}
.y29{bottom:488.235000px;}
.yad{bottom:488.775000px;}
.y68{bottom:501.555000px;}
.y28{bottom:505.515000px;}
.yac{bottom:506.055000px;}
.y67{bottom:518.835000px;}
.y8e{bottom:519.735000px;}
.y27{bottom:522.795000px;}
.yab{bottom:523.335000px;}
.y66{bottom:536.115000px;}
.y26{bottom:539.895000px;}
.yaa{bottom:540.615000px;}
.y8d{bottom:542.955000px;}
.y65{bottom:553.395000px;}
.y25{bottom:557.175000px;}
.ya9{bottom:557.895000px;}
.y64{bottom:570.675000px;}
.y24{bottom:574.455000px;}
.ya8{bottom:574.995000px;}
.y8c{bottom:583.455000px;}
.y63{bottom:587.775000px;}
.y23{bottom:591.735000px;}
.ya7{bottom:592.275000px;}
.y62{bottom:605.055000px;}
.y22{bottom:609.015000px;}
.ya6{bottom:609.555000px;}
.y61{bottom:622.335000px;}
.y8a{bottom:623.955000px;}
.y21{bottom:626.295000px;}
.yc5{bottom:626.835000px;}
.y60{bottom:639.615000px;}
.y20{bottom:643.425000px;}
.ya5{bottom:644.145000px;}
.y5f{bottom:656.925000px;}
.y1f{bottom:660.705000px;}
.ya4{bottom:661.245000px;}
.y89{bottom:664.485000px;}
.y5e{bottom:674.025000px;}
.y1e{bottom:677.985000px;}
.ya3{bottom:678.525000px;}
.y5d{bottom:691.305000px;}
.y1d{bottom:695.265000px;}
.ya2{bottom:695.805000px;}
.y88{bottom:704.985000px;}
.y5c{bottom:708.585000px;}
.y1c{bottom:712.545000px;}
.ya1{bottom:713.085000px;}
.y5b{bottom:725.865000px;}
.y1b{bottom:729.645000px;}
.ya0{bottom:730.365000px;}
.y5a{bottom:743.145000px;}
.y87{bottom:745.485000px;}
.y1a{bottom:746.925000px;}
.y9f{bottom:747.645000px;}
.y59{bottom:760.425000px;}
.y19{bottom:764.205000px;}
.y9e{bottom:764.745000px;}
.y58{bottom:777.525000px;}
.y9d{bottom:778.785000px;}
.y18{bottom:781.485000px;}
.y86{bottom:785.985000px;}
.y57{bottom:794.805000px;}
.y17{bottom:798.765000px;}
.y56{bottom:812.085000px;}
.y16{bottom:816.045000px;}
.y85{bottom:826.485000px;}
.y55{bottom:829.365000px;}
.y15{bottom:833.145000px;}
.y54{bottom:846.645000px;}
.y14{bottom:850.425000px;}
.y53{bottom:863.925000px;}
.y82{bottom:866.985000px;}
.y13{bottom:867.705000px;}
.y52{bottom:881.025000px;}
.y12{bottom:884.985000px;}
.y51{bottom:898.350000px;}
.y11{bottom:902.310000px;}
.y80{bottom:907.530000px;}
.y50{bottom:915.630000px;}
.y10{bottom:919.590000px;}
.y4f{bottom:932.910000px;}
.yf{bottom:936.690000px;}
.y4e{bottom:950.190000px;}
.ye{bottom:953.970000px;}
.y4d{bottom:967.470000px;}
.yd{bottom:971.250000px;}
.y4c{bottom:984.570000px;}
.yc{bottom:988.530000px;}
.y4b{bottom:1001.850000px;}
.yb{bottom:1005.810000px;}
.y4a{bottom:1019.130000px;}
.ya{bottom:1023.090000px;}
.y49{bottom:1036.410000px;}
.y9{bottom:1040.190000px;}
.y48{bottom:1053.690000px;}
.y8{bottom:1057.470000px;}
.y47{bottom:1070.790000px;}
.y7{bottom:1074.750000px;}
.y46{bottom:1088.070000px;}
.y6{bottom:1092.030000px;}
.y45{bottom:1105.350000px;}
.y44{bottom:1122.630000px;}
.y5{bottom:1126.410000px;}
.y43{bottom:1139.910000px;}
.y4{bottom:1143.690000px;}
.y42{bottom:1157.220000px;}
.y3{bottom:1163.880000px;}
.y41{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.ha{height:17.280000px;}
.hc{height:34.560000px;}
.hb{height:34.596000px;}
.h3{height:52.998047px;}
.h9{height:53.573906px;}
.h6{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:60.226875px;}
.hd{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:93.780000px;}
.w7{width:121.500000px;}
.w4{width:133.956000px;}
.w5{width:147.636000px;}
.w6{width:161.670000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.080000px;}
.x1{left:106.415987px;}
.x10{left:109.836000px;}
.x1a{left:112.355987px;}
.x19{left:119.375987px;}
.x18{left:125.135987px;}
.xb{left:136.115987px;}
.x6{left:155.369987px;}
.x17{left:170.849987px;}
.x4{left:190.289987px;}
.x12{left:207.390000px;}
.xf{left:223.769987px;}
.x8{left:254.909987px;}
.x1b{left:293.834987px;}
.x2{left:295.814987px;}
.x13{left:345.135000px;}
.xc{left:457.304987px;}
.x3{left:461.444987px;}
.xd{left:487.004987px;}
.x14{left:496.365000px;}
.x9{left:537.944987px;}
.x15{left:661.830000px;}
.x5{left:695.849987px;}
.x7{left:708.449987px;}
.xe{left:748.409987px;}
.xa{left:786.749987px;}
.x16{left:808.919987px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.136533pt;}
.ls4{letter-spacing:0.138667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:1.872640pt;}
.ls10{letter-spacing:25.760000pt;}
.ls0{letter-spacing:28.091307pt;}
.lsd{letter-spacing:28.112640pt;}
.lsb{letter-spacing:92.320000pt;}
.lsc{letter-spacing:386.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.096533pt;}
.ws5{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws2{word-spacing:0.000000pt;}
._19{margin-left:-11.247360pt;}
._14{margin-left:-2.762240pt;}
._4{margin-left:-1.646720pt;}
._1{width:0.903040pt;}
._2{width:2.477227pt;}
._6{width:3.559040pt;}
._5{width:4.462080pt;}
._11{width:5.382187pt;}
._15{width:6.357333pt;}
._13{width:7.330560pt;}
._10{width:8.339840pt;}
._7{width:9.296000pt;}
._b{width:11.102080pt;}
._12{width:12.111360pt;}
._9{width:14.236160pt;}
._a{width:15.139200pt;}
._1b{width:16.282880pt;}
._d{width:17.635840pt;}
._c{width:18.804480pt;}
._8{width:20.238720pt;}
._29{width:21.206187pt;}
._1d{width:22.331520pt;}
._f{width:23.238400pt;}
._e{width:24.463360pt;}
._1c{width:25.363200pt;}
._18{width:28.375040pt;}
._17{width:29.864960pt;}
._1a{width:33.412480pt;}
._2a{width:34.956587pt;}
._27{width:36.652800pt;}
._28{width:46.330240pt;}
._25{width:49.082880pt;}
._1e{width:50.357760pt;}
._1f{width:52.745600pt;}
._16{width:66.400000pt;}
._26{width:70.012160pt;}
._22{width:72.888960pt;}
._23{width:79.573760pt;}
._20{width:107.939840pt;}
._24{width:110.861440pt;}
._21{width:206.264960pt;}
._3{width:285.204480pt;}
._0{width:682.533547pt;}
._2b{width:754.858667pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:2.880000pt;}
.y83{bottom:10.560000pt;}
.y84{bottom:18.240000pt;}
.y8b{bottom:18.266667pt;}
.y2{bottom:49.600000pt;}
.y40{bottom:81.280000pt;}
.yc4{bottom:81.760000pt;}
.y7f{bottom:93.120000pt;}
.y3f{bottom:96.640000pt;}
.yc3{bottom:97.120000pt;}
.y7d{bottom:108.480000pt;}
.y3e{bottom:112.000000pt;}
.yc2{bottom:112.480000pt;}
.y7c{bottom:123.872000pt;}
.y3d{bottom:127.232000pt;}
.yc1{bottom:127.872000pt;}
.y7b{bottom:139.226667pt;}
.y3c{bottom:142.586667pt;}
.yc0{bottom:143.226667pt;}
.y7a{bottom:154.586667pt;}
.y3b{bottom:157.946667pt;}
.ybf{bottom:158.426667pt;}
.y9c{bottom:168.506667pt;}
.y79{bottom:169.786667pt;}
.y3a{bottom:173.306667pt;}
.ybe{bottom:173.786667pt;}
.y9b{bottom:183.866667pt;}
.y78{bottom:185.146667pt;}
.y39{bottom:188.666667pt;}
.ybd{bottom:189.146667pt;}
.y9a{bottom:199.226667pt;}
.y77{bottom:200.506667pt;}
.y38{bottom:204.026667pt;}
.ybc{bottom:204.506667pt;}
.y99{bottom:214.426667pt;}
.y76{bottom:215.866667pt;}
.y37{bottom:219.226667pt;}
.ybb{bottom:219.866667pt;}
.y98{bottom:229.786667pt;}
.y75{bottom:231.226667pt;}
.y36{bottom:234.586667pt;}
.yba{bottom:235.066667pt;}
.y97{bottom:245.146667pt;}
.y74{bottom:246.586667pt;}
.y35{bottom:249.946667pt;}
.yb9{bottom:250.426667pt;}
.y96{bottom:260.506667pt;}
.y73{bottom:261.786667pt;}
.y34{bottom:265.306667pt;}
.yb8{bottom:265.786667pt;}
.y95{bottom:275.866667pt;}
.y7e{bottom:277.146667pt;}
.y33{bottom:280.666667pt;}
.yb7{bottom:281.146667pt;}
.y94{bottom:291.226667pt;}
.y72{bottom:292.506667pt;}
.y32{bottom:295.866667pt;}
.yb6{bottom:296.506667pt;}
.y93{bottom:306.426667pt;}
.y71{bottom:307.866667pt;}
.y31{bottom:311.226667pt;}
.yb5{bottom:311.866667pt;}
.y92{bottom:321.786667pt;}
.y70{bottom:323.226667pt;}
.y30{bottom:326.586667pt;}
.yb4{bottom:327.066667pt;}
.y6f{bottom:338.426667pt;}
.y2f{bottom:341.946667pt;}
.yb3{bottom:342.426667pt;}
.y6e{bottom:353.826667pt;}
.y91{bottom:353.986667pt;}
.y2e{bottom:357.346667pt;}
.yb2{bottom:357.826667pt;}
.y6d{bottom:369.186667pt;}
.y2d{bottom:372.706667pt;}
.yb1{bottom:373.186667pt;}
.y6c{bottom:384.546667pt;}
.y2c{bottom:387.906667pt;}
.yb0{bottom:388.546667pt;}
.y90{bottom:389.986667pt;}
.y6b{bottom:399.906667pt;}
.y2b{bottom:403.266667pt;}
.yaf{bottom:403.906667pt;}
.y6a{bottom:415.266667pt;}
.y2a{bottom:418.626667pt;}
.yae{bottom:419.106667pt;}
.y8f{bottom:425.986667pt;}
.y69{bottom:430.466667pt;}
.y29{bottom:433.986667pt;}
.yad{bottom:434.466667pt;}
.y68{bottom:445.826667pt;}
.y28{bottom:449.346667pt;}
.yac{bottom:449.826667pt;}
.y67{bottom:461.186667pt;}
.y8e{bottom:461.986667pt;}
.y27{bottom:464.706667pt;}
.yab{bottom:465.186667pt;}
.y66{bottom:476.546667pt;}
.y26{bottom:479.906667pt;}
.yaa{bottom:480.546667pt;}
.y8d{bottom:482.626667pt;}
.y65{bottom:491.906667pt;}
.y25{bottom:495.266667pt;}
.ya9{bottom:495.906667pt;}
.y64{bottom:507.266667pt;}
.y24{bottom:510.626667pt;}
.ya8{bottom:511.106667pt;}
.y8c{bottom:518.626667pt;}
.y63{bottom:522.466667pt;}
.y23{bottom:525.986667pt;}
.ya7{bottom:526.466667pt;}
.y62{bottom:537.826667pt;}
.y22{bottom:541.346667pt;}
.ya6{bottom:541.826667pt;}
.y61{bottom:553.186667pt;}
.y8a{bottom:554.626667pt;}
.y21{bottom:556.706667pt;}
.yc5{bottom:557.186667pt;}
.y60{bottom:568.546667pt;}
.y20{bottom:571.933333pt;}
.ya5{bottom:572.573333pt;}
.y5f{bottom:583.933333pt;}
.y1f{bottom:587.293333pt;}
.ya4{bottom:587.773333pt;}
.y89{bottom:590.653333pt;}
.y5e{bottom:599.133333pt;}
.y1e{bottom:602.653333pt;}
.ya3{bottom:603.133333pt;}
.y5d{bottom:614.493333pt;}
.y1d{bottom:618.013333pt;}
.ya2{bottom:618.493333pt;}
.y88{bottom:626.653333pt;}
.y5c{bottom:629.853333pt;}
.y1c{bottom:633.373333pt;}
.ya1{bottom:633.853333pt;}
.y5b{bottom:645.213333pt;}
.y1b{bottom:648.573333pt;}
.ya0{bottom:649.213333pt;}
.y5a{bottom:660.573333pt;}
.y87{bottom:662.653333pt;}
.y1a{bottom:663.933333pt;}
.y9f{bottom:664.573333pt;}
.y59{bottom:675.933333pt;}
.y19{bottom:679.293333pt;}
.y9e{bottom:679.773333pt;}
.y58{bottom:691.133333pt;}
.y9d{bottom:692.253333pt;}
.y18{bottom:694.653333pt;}
.y86{bottom:698.653333pt;}
.y57{bottom:706.493333pt;}
.y17{bottom:710.013333pt;}
.y56{bottom:721.853333pt;}
.y16{bottom:725.373333pt;}
.y85{bottom:734.653333pt;}
.y55{bottom:737.213333pt;}
.y15{bottom:740.573333pt;}
.y54{bottom:752.573333pt;}
.y14{bottom:755.933333pt;}
.y53{bottom:767.933333pt;}
.y82{bottom:770.653333pt;}
.y13{bottom:771.293333pt;}
.y52{bottom:783.133333pt;}
.y12{bottom:786.653333pt;}
.y51{bottom:798.533333pt;}
.y11{bottom:802.053333pt;}
.y80{bottom:806.693333pt;}
.y50{bottom:813.893333pt;}
.y10{bottom:817.413333pt;}
.y4f{bottom:829.253333pt;}
.yf{bottom:832.613333pt;}
.y4e{bottom:844.613333pt;}
.ye{bottom:847.973333pt;}
.y4d{bottom:859.973333pt;}
.yd{bottom:863.333333pt;}
.y4c{bottom:875.173333pt;}
.yc{bottom:878.693333pt;}
.y4b{bottom:890.533333pt;}
.yb{bottom:894.053333pt;}
.y4a{bottom:905.893333pt;}
.ya{bottom:909.413333pt;}
.y49{bottom:921.253333pt;}
.y9{bottom:924.613333pt;}
.y48{bottom:936.613333pt;}
.y8{bottom:939.973333pt;}
.y47{bottom:951.813333pt;}
.y7{bottom:955.333333pt;}
.y46{bottom:967.173333pt;}
.y6{bottom:970.693333pt;}
.y45{bottom:982.533333pt;}
.y44{bottom:997.893333pt;}
.y5{bottom:1001.253333pt;}
.y43{bottom:1013.253333pt;}
.y4{bottom:1016.613333pt;}
.y42{bottom:1028.640000pt;}
.y3{bottom:1034.560000pt;}
.y41{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.ha{height:15.360000pt;}
.hc{height:30.720000pt;}
.hb{height:30.752000pt;}
.h3{height:47.109375pt;}
.h9{height:47.621250pt;}
.h6{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:53.535000pt;}
.hd{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:83.360000pt;}
.w7{width:108.000000pt;}
.w4{width:119.072000pt;}
.w5{width:131.232000pt;}
.w6{width:143.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:0.960000pt;}
.x1{left:94.591988pt;}
.x10{left:97.632000pt;}
.x1a{left:99.871988pt;}
.x19{left:106.111988pt;}
.x18{left:111.231988pt;}
.xb{left:120.991988pt;}
.x6{left:138.106655pt;}
.x17{left:151.866655pt;}
.x4{left:169.146655pt;}
.x12{left:184.346667pt;}
.xf{left:198.906655pt;}
.x8{left:226.586655pt;}
.x1b{left:261.186655pt;}
.x2{left:262.946655pt;}
.x13{left:306.786667pt;}
.xc{left:406.493322pt;}
.x3{left:410.173322pt;}
.xd{left:432.893322pt;}
.x14{left:441.213333pt;}
.x9{left:478.173322pt;}
.x15{left:588.293333pt;}
.x5{left:618.533322pt;}
.x7{left:629.733322pt;}
.xe{left:665.253322pt;}
.xa{left:699.333322pt;}
.x16{left:719.039988pt;}
}




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