
    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_bccc6320c1157759be71b9b2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7bc457bd29e6b66e84549c0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_2a7fa5a8374065eb6917f598.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_1a7cb2c41cbfcc5a8685c771.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_d997705f4faa1fe99e430db2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8d86b7dcbf3243f80059d6ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4d42783616b8d4e5e5806ebb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b926105c308c571aa0cca4a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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;}
.lsb{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.720000px;}
.ls7{letter-spacing:48.564000px;}
.ls5{letter-spacing:54.864000px;}
.ls3{letter-spacing:64.397280px;}
.ls0{letter-spacing:846.156000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.199800px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-9.863280px;}
._8{margin-left:-7.182000px;}
._4{margin-left:-4.692240px;}
._2{margin-left:-2.872800px;}
._0{margin-left:-1.324800px;}
._1{width:1.394880px;}
._f{width:2.396160px;}
._17{width:3.469440px;}
._e{width:4.896000px;}
._18{width:6.768000px;}
._14{width:8.640000px;}
._16{width:10.584000px;}
._1a{width:11.997120px;}
._1c{width:13.464000px;}
._12{width:14.904000px;}
._19{width:16.632000px;}
._10{width:19.656000px;}
._11{width:20.682240px;}
._c{width:22.392000px;}
._d{width:23.706240px;}
._13{width:25.272000px;}
._1b{width:26.784000px;}
._1d{width:27.864000px;}
._15{width:29.736000px;}
._1e{width:31.320000px;}
._20{width:39.960000px;}
._21{width:41.053920px;}
._1f{width:42.984000px;}
._22{width:44.064000px;}
._7{width:51.790320px;}
._5{width:54.104400px;}
._6{width:55.349280px;}
._b{width:116.604000px;}
._a{width:122.668560px;}
._9{width:123.817680px;}
._23{width:159.048000px;}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:3.960000px;}
.yb6{bottom:4.140000px;}
.yb8{bottom:5.760000px;}
.yb2{bottom:18.180000px;}
.y5{bottom:57.060000px;}
.y4{bottom:77.796000px;}
.y3{bottom:98.136000px;}
.y2{bottom:117.036000px;}
.y1{bottom:136.296000px;}
.y88{bottom:168.150000px;}
.yd5{bottom:170.490000px;}
.y4c{bottom:171.030000px;}
.ybb{bottom:171.210000px;}
.y9e{bottom:184.170000px;}
.yd4{bottom:191.190000px;}
.y91{bottom:200.910000px;}
.y4b{bottom:201.990000px;}
.y87{bottom:208.110000px;}
.yba{bottom:211.350000px;}
.yd3{bottom:211.890000px;}
.y2e{bottom:212.250000px;}
.y74{bottom:212.970000px;}
.y9d{bottom:215.130000px;}
.y5e{bottom:232.950000px;}
.y4a{bottom:241.950000px;}
.y73{bottom:244.110000px;}
.y9c{bottom:246.270000px;}
.y86{bottom:248.250000px;}
.yb9{bottom:251.310000px;}
.yd2{bottom:251.850000px;}
.y2d{bottom:255.270000px;}
.y49{bottom:273.090000px;}
.y72{bottom:275.070000px;}
.y9b{bottom:277.230000px;}
.yb7{bottom:277.770000px;}
.yd1{bottom:281.550000px;}
.y2c{bottom:284.970000px;}
.y85{bottom:288.210000px;}
.yd0{bottom:302.250000px;}
.yb5{bottom:302.790000px;}
.y48{bottom:304.050000px;}
.y2b{bottom:305.670000px;}
.y71{bottom:306.210000px;}
.y9a{bottom:308.370000px;}
.yb3{bottom:324.750000px;}
.y2a{bottom:326.370000px;}
.y84{bottom:328.350000px;}
.ycf{bottom:333.390000px;}
.y47{bottom:335.190000px;}
.y99{bottom:339.375000px;}
.y70{bottom:346.215000px;}
.y29{bottom:347.115000px;}
.yce{bottom:354.135000px;}
.y46{bottom:366.195000px;}
.y28{bottom:367.815000px;}
.y83{bottom:368.355000px;}
.y98{bottom:370.515000px;}
.ycd{bottom:374.835000px;}
.y6f{bottom:378.615000px;}
.y27{bottom:388.515000px;}
.y45{bottom:397.335000px;}
.y82{bottom:399.495000px;}
.y97{bottom:401.475000px;}
.ycc{bottom:405.795000px;}
.y26{bottom:409.215000px;}
.y6e{bottom:409.575000px;}
.yb1{bottom:419.295000px;}
.ycb{bottom:426.495000px;}
.y25{bottom:429.915000px;}
.y81{bottom:430.455000px;}
.y96{bottom:432.615000px;}
.y44{bottom:437.295000px;}
.y6d{bottom:441.795000px;}
.yca{bottom:447.195000px;}
.yb0{bottom:450.435000px;}
.y24{bottom:450.615000px;}
.y95{bottom:463.575000px;}
.y43{bottom:468.435000px;}
.y80{bottom:470.595000px;}
.y23{bottom:471.315000px;}
.y6c{bottom:474.195000px;}
.yc9{bottom:474.555000px;}
.yaf{bottom:490.395000px;}
.y22{bottom:492.015000px;}
.y94{bottom:494.715000px;}
.y42{bottom:499.395000px;}
.y7f{bottom:501.555000px;}
.y6b{bottom:506.595000px;}
.y21{bottom:512.715000px;}
.yc8{bottom:517.395000px;}
.yae{bottom:521.535000px;}
.y41{bottom:530.535000px;}
.y93{bottom:530.715000px;}
.y7e{bottom:532.695000px;}
.y20{bottom:533.415000px;}
.y6a{bottom:537.555000px;}
.yad{bottom:552.495000px;}
.y1f{bottom:554.115000px;}
.yc7{bottom:557.535000px;}
.y40{bottom:561.495000px;}
.y7d{bottom:563.655000px;}
.y69{bottom:570.135000px;}
.y1e{bottom:574.815000px;}
.y90{bottom:583.095000px;}
.yac{bottom:583.635000px;}
.yc6{bottom:588.495000px;}
.y5d{bottom:592.635000px;}
.y7c{bottom:594.615000px;}
.y1d{bottom:595.515000px;}
.y68{bottom:601.095000px;}
.y3f{bottom:601.635000px;}
.yab{bottom:614.625000px;}
.y1c{bottom:616.245000px;}
.yc5{bottom:619.665000px;}
.y8f{bottom:620.385000px;}
.y5c{bottom:623.625000px;}
.y67{bottom:632.265000px;}
.y3e{bottom:632.625000px;}
.y7b{bottom:634.785000px;}
.y1b{bottom:636.945000px;}
.yc4{bottom:650.625000px;}
.y8e{bottom:651.525000px;}
.y5b{bottom:653.865000px;}
.yaa{bottom:654.765000px;}
.y1a{bottom:657.645000px;}
.y66{bottom:663.045000px;}
.y3d{bottom:663.765000px;}
.y7a{bottom:665.745000px;}
.y19{bottom:678.345000px;}
.yc3{bottom:681.765000px;}
.y8d{bottom:682.485000px;}
.ya9{bottom:685.725000px;}
.y3c{bottom:694.725000px;}
.y65{bottom:695.625000px;}
.y5a{bottom:696.885000px;}
.y18{bottom:699.045000px;}
.yc2{bottom:712.725000px;}
.y8c{bottom:713.625000px;}
.ya8{bottom:716.865000px;}
.y17{bottom:719.745000px;}
.y64{bottom:726.585000px;}
.y79{bottom:727.845000px;}
.y3b{bottom:734.865000px;}
.y59{bottom:736.845000px;}
.y16{bottom:740.445000px;}
.yc1{bottom:743.865000px;}
.y8b{bottom:744.585000px;}
.ya7{bottom:747.825000px;}
.y63{bottom:757.725000px;}
.y78{bottom:758.985000px;}
.y15{bottom:761.145000px;}
.y3a{bottom:765.825000px;}
.y58{bottom:767.985000px;}
.y8a{bottom:770.325000px;}
.yc0{bottom:774.825000px;}
.ya6{bottom:778.965000px;}
.y14{bottom:781.845000px;}
.y62{bottom:788.505000px;}
.y77{bottom:789.945000px;}
.y39{bottom:796.965000px;}
.y57{bottom:798.945000px;}
.y13{bottom:802.545000px;}
.ybf{bottom:805.965000px;}
.ya5{bottom:809.925000px;}
.y76{bottom:821.085000px;}
.y12{bottom:823.245000px;}
.y38{bottom:827.925000px;}
.y56{bottom:830.085000px;}
.ybe{bottom:836.925000px;}
.ya4{bottom:841.065000px;}
.y11{bottom:843.945000px;}
.y75{bottom:852.045000px;}
.y37{bottom:859.065000px;}
.y55{bottom:861.045000px;}
.y10{bottom:864.645000px;}
.ybd{bottom:868.065000px;}
.ya3{bottom:872.070000px;}
.yf{bottom:885.390000px;}
.y36{bottom:890.070000px;}
.y54{bottom:892.230000px;}
.ybc{bottom:899.070000px;}
.ya2{bottom:903.210000px;}
.ye{bottom:906.090000px;}
.y53{bottom:923.190000px;}
.yd{bottom:926.790000px;}
.y35{bottom:930.210000px;}
.ya1{bottom:934.170000px;}
.yc{bottom:947.490000px;}
.y52{bottom:954.330000px;}
.y92{bottom:957.030000px;}
.y34{bottom:961.170000px;}
.yb{bottom:969.450000px;}
.ya0{bottom:974.130000px;}
.y61{bottom:985.290000px;}
.y33{bottom:992.310000px;}
.y51{bottom:994.290000px;}
.ya{bottom:996.990000px;}
.y9f{bottom:1004.550000px;}
.y60{bottom:1016.430000px;}
.y32{bottom:1023.270000px;}
.y9{bottom:1024.530000px;}
.y50{bottom:1025.430000px;}
.y5f{bottom:1047.390000px;}
.y8{bottom:1052.250000px;}
.y31{bottom:1054.410000px;}
.y4f{bottom:1056.390000px;}
.yd6{bottom:1066.830000px;}
.y7{bottom:1079.790000px;}
.y30{bottom:1085.370000px;}
.y4e{bottom:1087.530000px;}
.y6{bottom:1106.610000px;}
.y2f{bottom:1115.610000px;}
.y4d{bottom:1118.490000px;}
.y89{bottom:1121.190000px;}
.hb{height:20.736000px;}
.hc{height:21.240000px;}
.hd{height:24.120000px;}
.h8{height:45.549492px;}
.h7{height:48.761719px;}
.h9{height:49.140000px;}
.h6{height:54.878906px;}
.h3{height:59.383125px;}
.ha{height:63.949219px;}
.h2{height:64.546875px;}
.h4{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:101.520000px;}
.w5{width:133.416000px;}
.w4{width:135.216000px;}
.w3{width:306.390000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:26.100000px;}
.x19{left:27.900000px;}
.x17{left:31.680000px;}
.x15{left:39.990000px;}
.x1b{left:41.940000px;}
.x1e{left:62.634000px;}
.x1d{left:78.114000px;}
.x1a{left:118.074000px;}
.x13{left:120.594000px;}
.x1{left:127.655987px;}
.x5{left:129.275987px;}
.x6{left:133.775987px;}
.x4{left:141.155987px;}
.x7{left:167.249987px;}
.x2{left:170.129987px;}
.x9{left:197.129987px;}
.xa{left:224.129987px;}
.x8{left:244.469987px;}
.x11{left:245.729987px;}
.xd{left:251.309987px;}
.xf{left:252.569987px;}
.xb{left:260.849987px;}
.xc{left:287.894987px;}
.x14{left:435.495000px;}
.x3{left:467.924987px;}
.xe{left:565.664987px;}
.x16{left:571.425000px;}
.x10{left:577.724987px;}
.x12{left:581.864987px;}
.x18{left:705.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls7{letter-spacing:43.168000pt;}
.ls5{letter-spacing:48.768000pt;}
.ls3{letter-spacing:57.242027pt;}
.ls0{letter-spacing:752.138667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.510933pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-8.767360pt;}
._8{margin-left:-6.384000pt;}
._4{margin-left:-4.170880pt;}
._2{margin-left:-2.553600pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.239893pt;}
._f{width:2.129920pt;}
._17{width:3.083947pt;}
._e{width:4.352000pt;}
._18{width:6.016000pt;}
._14{width:7.680000pt;}
._16{width:9.408000pt;}
._1a{width:10.664107pt;}
._1c{width:11.968000pt;}
._12{width:13.248000pt;}
._19{width:14.784000pt;}
._10{width:17.472000pt;}
._11{width:18.384213pt;}
._c{width:19.904000pt;}
._d{width:21.072213pt;}
._13{width:22.464000pt;}
._1b{width:23.808000pt;}
._1d{width:24.768000pt;}
._15{width:26.432000pt;}
._1e{width:27.840000pt;}
._20{width:35.520000pt;}
._21{width:36.492373pt;}
._1f{width:38.208000pt;}
._22{width:39.168000pt;}
._7{width:46.035840pt;}
._5{width:48.092800pt;}
._6{width:49.199360pt;}
._b{width:103.648000pt;}
._a{width:109.038720pt;}
._9{width:110.060160pt;}
._23{width:141.376000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:3.520000pt;}
.yb6{bottom:3.680000pt;}
.yb8{bottom:5.120000pt;}
.yb2{bottom:16.160000pt;}
.y5{bottom:50.720000pt;}
.y4{bottom:69.152000pt;}
.y3{bottom:87.232000pt;}
.y2{bottom:104.032000pt;}
.y1{bottom:121.152000pt;}
.y88{bottom:149.466667pt;}
.yd5{bottom:151.546667pt;}
.y4c{bottom:152.026667pt;}
.ybb{bottom:152.186667pt;}
.y9e{bottom:163.706667pt;}
.yd4{bottom:169.946667pt;}
.y91{bottom:178.586667pt;}
.y4b{bottom:179.546667pt;}
.y87{bottom:184.986667pt;}
.yba{bottom:187.866667pt;}
.yd3{bottom:188.346667pt;}
.y2e{bottom:188.666667pt;}
.y74{bottom:189.306667pt;}
.y9d{bottom:191.226667pt;}
.y5e{bottom:207.066667pt;}
.y4a{bottom:215.066667pt;}
.y73{bottom:216.986667pt;}
.y9c{bottom:218.906667pt;}
.y86{bottom:220.666667pt;}
.yb9{bottom:223.386667pt;}
.yd2{bottom:223.866667pt;}
.y2d{bottom:226.906667pt;}
.y49{bottom:242.746667pt;}
.y72{bottom:244.506667pt;}
.y9b{bottom:246.426667pt;}
.yb7{bottom:246.906667pt;}
.yd1{bottom:250.266667pt;}
.y2c{bottom:253.306667pt;}
.y85{bottom:256.186667pt;}
.yd0{bottom:268.666667pt;}
.yb5{bottom:269.146667pt;}
.y48{bottom:270.266667pt;}
.y2b{bottom:271.706667pt;}
.y71{bottom:272.186667pt;}
.y9a{bottom:274.106667pt;}
.yb3{bottom:288.666667pt;}
.y2a{bottom:290.106667pt;}
.y84{bottom:291.866667pt;}
.ycf{bottom:296.346667pt;}
.y47{bottom:297.946667pt;}
.y99{bottom:301.666667pt;}
.y70{bottom:307.746667pt;}
.y29{bottom:308.546667pt;}
.yce{bottom:314.786667pt;}
.y46{bottom:325.506667pt;}
.y28{bottom:326.946667pt;}
.y83{bottom:327.426667pt;}
.y98{bottom:329.346667pt;}
.ycd{bottom:333.186667pt;}
.y6f{bottom:336.546667pt;}
.y27{bottom:345.346667pt;}
.y45{bottom:353.186667pt;}
.y82{bottom:355.106667pt;}
.y97{bottom:356.866667pt;}
.ycc{bottom:360.706667pt;}
.y26{bottom:363.746667pt;}
.y6e{bottom:364.066667pt;}
.yb1{bottom:372.706667pt;}
.ycb{bottom:379.106667pt;}
.y25{bottom:382.146667pt;}
.y81{bottom:382.626667pt;}
.y96{bottom:384.546667pt;}
.y44{bottom:388.706667pt;}
.y6d{bottom:392.706667pt;}
.yca{bottom:397.506667pt;}
.yb0{bottom:400.386667pt;}
.y24{bottom:400.546667pt;}
.y95{bottom:412.066667pt;}
.y43{bottom:416.386667pt;}
.y80{bottom:418.306667pt;}
.y23{bottom:418.946667pt;}
.y6c{bottom:421.506667pt;}
.yc9{bottom:421.826667pt;}
.yaf{bottom:435.906667pt;}
.y22{bottom:437.346667pt;}
.y94{bottom:439.746667pt;}
.y42{bottom:443.906667pt;}
.y7f{bottom:445.826667pt;}
.y6b{bottom:450.306667pt;}
.y21{bottom:455.746667pt;}
.yc8{bottom:459.906667pt;}
.yae{bottom:463.586667pt;}
.y41{bottom:471.586667pt;}
.y93{bottom:471.746667pt;}
.y7e{bottom:473.506667pt;}
.y20{bottom:474.146667pt;}
.y6a{bottom:477.826667pt;}
.yad{bottom:491.106667pt;}
.y1f{bottom:492.546667pt;}
.yc7{bottom:495.586667pt;}
.y40{bottom:499.106667pt;}
.y7d{bottom:501.026667pt;}
.y69{bottom:506.786667pt;}
.y1e{bottom:510.946667pt;}
.y90{bottom:518.306667pt;}
.yac{bottom:518.786667pt;}
.yc6{bottom:523.106667pt;}
.y5d{bottom:526.786667pt;}
.y7c{bottom:528.546667pt;}
.y1d{bottom:529.346667pt;}
.y68{bottom:534.306667pt;}
.y3f{bottom:534.786667pt;}
.yab{bottom:546.333333pt;}
.y1c{bottom:547.773333pt;}
.yc5{bottom:550.813333pt;}
.y8f{bottom:551.453333pt;}
.y5c{bottom:554.333333pt;}
.y67{bottom:562.013333pt;}
.y3e{bottom:562.333333pt;}
.y7b{bottom:564.253333pt;}
.y1b{bottom:566.173333pt;}
.yc4{bottom:578.333333pt;}
.y8e{bottom:579.133333pt;}
.y5b{bottom:581.213333pt;}
.yaa{bottom:582.013333pt;}
.y1a{bottom:584.573333pt;}
.y66{bottom:589.373333pt;}
.y3d{bottom:590.013333pt;}
.y7a{bottom:591.773333pt;}
.y19{bottom:602.973333pt;}
.yc3{bottom:606.013333pt;}
.y8d{bottom:606.653333pt;}
.ya9{bottom:609.533333pt;}
.y3c{bottom:617.533333pt;}
.y65{bottom:618.333333pt;}
.y5a{bottom:619.453333pt;}
.y18{bottom:621.373333pt;}
.yc2{bottom:633.533333pt;}
.y8c{bottom:634.333333pt;}
.ya8{bottom:637.213333pt;}
.y17{bottom:639.773333pt;}
.y64{bottom:645.853333pt;}
.y79{bottom:646.973333pt;}
.y3b{bottom:653.213333pt;}
.y59{bottom:654.973333pt;}
.y16{bottom:658.173333pt;}
.yc1{bottom:661.213333pt;}
.y8b{bottom:661.853333pt;}
.ya7{bottom:664.733333pt;}
.y63{bottom:673.533333pt;}
.y78{bottom:674.653333pt;}
.y15{bottom:676.573333pt;}
.y3a{bottom:680.733333pt;}
.y58{bottom:682.653333pt;}
.y8a{bottom:684.733333pt;}
.yc0{bottom:688.733333pt;}
.ya6{bottom:692.413333pt;}
.y14{bottom:694.973333pt;}
.y62{bottom:700.893333pt;}
.y77{bottom:702.173333pt;}
.y39{bottom:708.413333pt;}
.y57{bottom:710.173333pt;}
.y13{bottom:713.373333pt;}
.ybf{bottom:716.413333pt;}
.ya5{bottom:719.933333pt;}
.y76{bottom:729.853333pt;}
.y12{bottom:731.773333pt;}
.y38{bottom:735.933333pt;}
.y56{bottom:737.853333pt;}
.ybe{bottom:743.933333pt;}
.ya4{bottom:747.613333pt;}
.y11{bottom:750.173333pt;}
.y75{bottom:757.373333pt;}
.y37{bottom:763.613333pt;}
.y55{bottom:765.373333pt;}
.y10{bottom:768.573333pt;}
.ybd{bottom:771.613333pt;}
.ya3{bottom:775.173333pt;}
.yf{bottom:787.013333pt;}
.y36{bottom:791.173333pt;}
.y54{bottom:793.093333pt;}
.ybc{bottom:799.173333pt;}
.ya2{bottom:802.853333pt;}
.ye{bottom:805.413333pt;}
.y53{bottom:820.613333pt;}
.yd{bottom:823.813333pt;}
.y35{bottom:826.853333pt;}
.ya1{bottom:830.373333pt;}
.yc{bottom:842.213333pt;}
.y52{bottom:848.293333pt;}
.y92{bottom:850.693333pt;}
.y34{bottom:854.373333pt;}
.yb{bottom:861.733333pt;}
.ya0{bottom:865.893333pt;}
.y61{bottom:875.813333pt;}
.y33{bottom:882.053333pt;}
.y51{bottom:883.813333pt;}
.ya{bottom:886.213333pt;}
.y9f{bottom:892.933333pt;}
.y60{bottom:903.493333pt;}
.y32{bottom:909.573333pt;}
.y9{bottom:910.693333pt;}
.y50{bottom:911.493333pt;}
.y5f{bottom:931.013333pt;}
.y8{bottom:935.333333pt;}
.y31{bottom:937.253333pt;}
.y4f{bottom:939.013333pt;}
.yd6{bottom:948.293333pt;}
.y7{bottom:959.813333pt;}
.y30{bottom:964.773333pt;}
.y4e{bottom:966.693333pt;}
.y6{bottom:983.653333pt;}
.y2f{bottom:991.653333pt;}
.y4d{bottom:994.213333pt;}
.y89{bottom:996.613333pt;}
.hb{height:18.432000pt;}
.hc{height:18.880000pt;}
.hd{height:21.440000pt;}
.h8{height:40.488438pt;}
.h7{height:43.343750pt;}
.h9{height:43.680000pt;}
.h6{height:48.781250pt;}
.h3{height:52.785000pt;}
.ha{height:56.843750pt;}
.h2{height:57.375000pt;}
.h4{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:90.240000pt;}
.w5{width:118.592000pt;}
.w4{width:120.192000pt;}
.w3{width:272.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:23.200000pt;}
.x19{left:24.800000pt;}
.x17{left:28.160000pt;}
.x15{left:35.546667pt;}
.x1b{left:37.280000pt;}
.x1e{left:55.674667pt;}
.x1d{left:69.434667pt;}
.x1a{left:104.954667pt;}
.x13{left:107.194667pt;}
.x1{left:113.471988pt;}
.x5{left:114.911988pt;}
.x6{left:118.911988pt;}
.x4{left:125.471988pt;}
.x7{left:148.666655pt;}
.x2{left:151.226655pt;}
.x9{left:175.226655pt;}
.xa{left:199.226655pt;}
.x8{left:217.306655pt;}
.x11{left:218.426655pt;}
.xd{left:223.386655pt;}
.xf{left:224.506655pt;}
.xb{left:231.866655pt;}
.xc{left:255.906655pt;}
.x14{left:387.106667pt;}
.x3{left:415.933322pt;}
.xe{left:502.813322pt;}
.x16{left:507.933333pt;}
.x10{left:513.533322pt;}
.x12{left:517.213322pt;}
.x18{left:627.333333pt;}
}




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