
    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_be9cce2bb7fb4ef3a53e1f0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ee5753fb751b2dd12223b458.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.884277;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_2b7f3d1ba3bc6a38e2ce40f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4aa66215b1ba4826f7953189.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_48edb3291fcd8fcf9a4b526a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7b6348a1aa14de2769f87df9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c46f16a232ae4cf8ba6c4365.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e52fe90356ac6f5350f8e31f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.884277;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_26cbd3c8ac75dc68094e5346.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_313829d7b5bf2b87bc93e2da.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_29e890427d6b5f99a7580ccb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a2d26250b759107cad521720.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e0a456a9338bf99c77204da4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.884277;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:ffe;src:url('chunks/assets/font_c72e2a2fe0df0b7e54c89a68.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_646258dc112f60363c5c4e16.woff2')format("woff");}.fff{font-family:fff;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;}
.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:-0.720000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.256200px;}
.ls0{letter-spacing:38.441280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.072000px;}
.ws3{word-spacing:-17.280000px;}
.ws0{word-spacing:-0.322440px;}
.ws2{word-spacing:0.000000px;}
._1e{margin-left:-6.580560px;}
._1f{margin-left:-5.489760px;}
._e{margin-left:-4.464000px;}
._0{margin-left:-2.688000px;}
._1{margin-left:-1.272000px;}
._5{width:1.056000px;}
._2{width:2.059440px;}
._3{width:3.168000px;}
._4{width:4.348560px;}
._6{width:5.414880px;}
._14{width:6.609120px;}
._9{width:8.496000px;}
._a{width:9.672000px;}
._13{width:11.523360px;}
._f{width:12.931440px;}
._c{width:14.112000px;}
._d{width:15.480000px;}
._10{width:16.920000px;}
._b{width:19.272000px;}
._16{width:20.808000px;}
._17{width:22.296000px;}
._1d{width:23.544000px;}
._15{width:25.824000px;}
._20{width:27.144000px;}
._21{width:28.176000px;}
._19{width:29.928000px;}
._18{width:31.080000px;}
._12{width:32.184000px;}
._11{width:33.264000px;}
._7{width:34.488000px;}
._8{width:35.784000px;}
._1c{width:37.272000px;}
._1a{width:38.395440px;}
._1b{width:39.544560px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:111.816000px;}
.y79{bottom:134.856000px;}
.yac{bottom:136.476000px;}
.y47{bottom:138.996000px;}
.y21{bottom:143.136000px;}
.y46{bottom:162.750000px;}
.y78{bottom:165.990000px;}
.yab{bottom:169.230000px;}
.y20{bottom:174.090000px;}
.y77{bottom:196.770000px;}
.yaa{bottom:200.190000px;}
.y45{bottom:201.450000px;}
.y1f{bottom:205.230000px;}
.y76{bottom:229.710000px;}
.ya9{bottom:231.330000px;}
.y1e{bottom:236.190000px;}
.y44{bottom:240.330000px;}
.y75{bottom:260.490000px;}
.ya8{bottom:262.290000px;}
.y43{bottom:264.090000px;}
.y1d{bottom:267.330000px;}
.ya7{bottom:293.295000px;}
.y74{bottom:293.475000px;}
.y1c{bottom:298.695000px;}
.y42{bottom:303.015000px;}
.ya6{bottom:324.255000px;}
.y73{bottom:324.435000px;}
.y1b{bottom:329.655000px;}
.y41{bottom:341.715000px;}
.y72{bottom:355.575000px;}
.ya5{bottom:357.195000px;}
.y1a{bottom:361.155000px;}
.y40{bottom:365.655000px;}
.y71{bottom:386.535000px;}
.ya4{bottom:388.155000px;}
.y19{bottom:392.115000px;}
.y3f{bottom:404.355000px;}
.y70{bottom:417.675000px;}
.ya3{bottom:419.115000px;}
.y18{bottom:423.255000px;}
.y3e{bottom:428.115000px;}
.y8e{bottom:445.035000px;}
.y6f{bottom:448.635000px;}
.ya2{bottom:451.875000px;}
.y17{bottom:454.215000px;}
.y3d{bottom:466.995000px;}
.y8d{bottom:476.175000px;}
.y6e{bottom:479.955000px;}
.ya1{bottom:483.015000px;}
.y16{bottom:485.355000px;}
.y3c{bottom:490.755000px;}
.y5a{bottom:505.695000px;}
.y8c{bottom:507.135000px;}
.y6d{bottom:510.915000px;}
.ya0{bottom:513.975000px;}
.y15{bottom:516.315000px;}
.y3b{bottom:529.635000px;}
.y8b{bottom:538.275000px;}
.y6c{bottom:542.055000px;}
.y59{bottom:544.575000px;}
.y9f{bottom:545.115000px;}
.y14{bottom:547.455000px;}
.y3a{bottom:553.395000px;}
.y58{bottom:568.365000px;}
.y8a{bottom:569.085000px;}
.y6b{bottom:573.045000px;}
.y9e{bottom:576.105000px;}
.y13{bottom:578.445000px;}
.y39{bottom:592.305000px;}
.y89{bottom:603.285000px;}
.y6a{bottom:604.185000px;}
.y57{bottom:607.245000px;}
.yba{bottom:608.685000px;}
.y12{bottom:609.585000px;}
.y38{bottom:616.065000px;}
.y69{bottom:635.145000px;}
.y88{bottom:637.485000px;}
.y9d{bottom:638.205000px;}
.yb9{bottom:639.645000px;}
.y11{bottom:640.545000px;}
.y56{bottom:645.945000px;}
.y37{bottom:654.765000px;}
.y68{bottom:667.545000px;}
.y87{bottom:668.625000px;}
.y9c{bottom:669.345000px;}
.y55{bottom:669.885000px;}
.yb8{bottom:670.605000px;}
.y10{bottom:671.685000px;}
.y36{bottom:693.645000px;}
.y67{bottom:698.685000px;}
.y86{bottom:699.585000px;}
.y9b{bottom:700.305000px;}
.yb7{bottom:701.925000px;}
.yf{bottom:702.645000px;}
.y54{bottom:708.585000px;}
.y35{bottom:717.405000px;}
.y85{bottom:730.725000px;}
.y66{bottom:731.085000px;}
.y9a{bottom:731.445000px;}
.yb6{bottom:732.885000px;}
.ye{bottom:733.785000px;}
.y34{bottom:741.165000px;}
.y53{bottom:747.465000px;}
.y84{bottom:761.685000px;}
.y65{bottom:762.225000px;}
.y99{bottom:762.405000px;}
.yd{bottom:764.745000px;}
.yb5{bottom:765.465000px;}
.y52{bottom:771.225000px;}
.y33{bottom:780.045000px;}
.y2a{bottom:781.125000px;}
.y83{bottom:792.825000px;}
.y64{bottom:793.185000px;}
.y98{bottom:793.545000px;}
.yc{bottom:796.065000px;}
.yb4{bottom:796.605000px;}
.y51{bottom:810.105000px;}
.y32{bottom:818.925000px;}
.y82{bottom:823.785000px;}
.y63{bottom:824.325000px;}
.y97{bottom:824.505000px;}
.yb{bottom:827.025000px;}
.y29{bottom:827.205000px;}
.yb3{bottom:827.565000px;}
.y50{bottom:833.865000px;}
.y31{bottom:842.685000px;}
.y81{bottom:854.970000px;}
.y62{bottom:855.330000px;}
.y96{bottom:855.690000px;}
.y28{bottom:858.210000px;}
.ya{bottom:858.570000px;}
.yb2{bottom:858.750000px;}
.y4f{bottom:872.610000px;}
.y30{bottom:881.430000px;}
.y80{bottom:885.750000px;}
.y61{bottom:886.470000px;}
.y95{bottom:886.650000px;}
.y27{bottom:889.350000px;}
.y9{bottom:889.530000px;}
.yb1{bottom:889.710000px;}
.y4e{bottom:911.490000px;}
.y60{bottom:917.430000px;}
.y94{bottom:917.790000px;}
.y7f{bottom:918.510000px;}
.y26{bottom:920.310000px;}
.y8{bottom:920.670000px;}
.yb0{bottom:920.850000px;}
.y5f{bottom:948.570000px;}
.y93{bottom:948.750000px;}
.y4d{bottom:950.370000px;}
.y7e{bottom:951.450000px;}
.y7{bottom:951.630000px;}
.yaf{bottom:951.810000px;}
.y2f{bottom:959.010000px;}
.y4c{bottom:974.130000px;}
.y5e{bottom:979.530000px;}
.y92{bottom:979.710000px;}
.y7d{bottom:982.410000px;}
.y6{bottom:982.770000px;}
.yae{bottom:982.950000px;}
.y2e{bottom:997.890000px;}
.y5d{bottom:1010.670000px;}
.y91{bottom:1010.850000px;}
.y4b{bottom:1012.830000px;}
.y7c{bottom:1013.550000px;}
.y5{bottom:1013.730000px;}
.y25{bottom:1013.910000px;}
.y2d{bottom:1036.770000px;}
.y5c{bottom:1041.630000px;}
.y90{bottom:1041.810000px;}
.y7b{bottom:1044.510000px;}
.y4{bottom:1044.870000px;}
.yad{bottom:1045.050000px;}
.y4a{bottom:1051.710000px;}
.y2c{bottom:1060.530000px;}
.y5b{bottom:1072.590000px;}
.y8f{bottom:1072.770000px;}
.y49{bottom:1075.470000px;}
.y3{bottom:1075.830000px;}
.y24{bottom:1076.010000px;}
.y2b{bottom:1099.230000px;}
.y7a{bottom:1106.790000px;}
.y23{bottom:1106.970000px;}
.y2{bottom:1107.150000px;}
.y48{bottom:1114.350000px;}
.y1{bottom:1138.140000px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:108.035987px;}
.x1{left:136.835987px;}
.x2{left:163.829987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.227733pt;}
.ls0{letter-spacing:34.170027pt;}
.ws1{word-spacing:-16.064000pt;}
.ws3{word-spacing:-15.360000pt;}
.ws0{word-spacing:-0.286613pt;}
.ws2{word-spacing:0.000000pt;}
._1e{margin-left:-5.849387pt;}
._1f{margin-left:-4.879787pt;}
._e{margin-left:-3.968000pt;}
._0{margin-left:-2.389333pt;}
._1{margin-left:-1.130667pt;}
._5{width:0.938667pt;}
._2{width:1.830613pt;}
._3{width:2.816000pt;}
._4{width:3.865387pt;}
._6{width:4.813227pt;}
._14{width:5.874773pt;}
._9{width:7.552000pt;}
._a{width:8.597333pt;}
._13{width:10.242987pt;}
._f{width:11.494613pt;}
._c{width:12.544000pt;}
._d{width:13.760000pt;}
._10{width:15.040000pt;}
._b{width:17.130667pt;}
._16{width:18.496000pt;}
._17{width:19.818667pt;}
._1d{width:20.928000pt;}
._15{width:22.954667pt;}
._20{width:24.128000pt;}
._21{width:25.045333pt;}
._19{width:26.602667pt;}
._18{width:27.626667pt;}
._12{width:28.608000pt;}
._11{width:29.568000pt;}
._7{width:30.656000pt;}
._8{width:31.808000pt;}
._1c{width:33.130667pt;}
._1a{width:34.129280pt;}
._1b{width:35.150720pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:99.392000pt;}
.y79{bottom:119.872000pt;}
.yac{bottom:121.312000pt;}
.y47{bottom:123.552000pt;}
.y21{bottom:127.232000pt;}
.y46{bottom:144.666667pt;}
.y78{bottom:147.546667pt;}
.yab{bottom:150.426667pt;}
.y20{bottom:154.746667pt;}
.y77{bottom:174.906667pt;}
.yaa{bottom:177.946667pt;}
.y45{bottom:179.066667pt;}
.y1f{bottom:182.426667pt;}
.y76{bottom:204.186667pt;}
.ya9{bottom:205.626667pt;}
.y1e{bottom:209.946667pt;}
.y44{bottom:213.626667pt;}
.y75{bottom:231.546667pt;}
.ya8{bottom:233.146667pt;}
.y43{bottom:234.746667pt;}
.y1d{bottom:237.626667pt;}
.ya7{bottom:260.706667pt;}
.y74{bottom:260.866667pt;}
.y1c{bottom:265.506667pt;}
.y42{bottom:269.346667pt;}
.ya6{bottom:288.226667pt;}
.y73{bottom:288.386667pt;}
.y1b{bottom:293.026667pt;}
.y41{bottom:303.746667pt;}
.y72{bottom:316.066667pt;}
.ya5{bottom:317.506667pt;}
.y1a{bottom:321.026667pt;}
.y40{bottom:325.026667pt;}
.y71{bottom:343.586667pt;}
.ya4{bottom:345.026667pt;}
.y19{bottom:348.546667pt;}
.y3f{bottom:359.426667pt;}
.y70{bottom:371.266667pt;}
.ya3{bottom:372.546667pt;}
.y18{bottom:376.226667pt;}
.y3e{bottom:380.546667pt;}
.y8e{bottom:395.586667pt;}
.y6f{bottom:398.786667pt;}
.ya2{bottom:401.666667pt;}
.y17{bottom:403.746667pt;}
.y3d{bottom:415.106667pt;}
.y8d{bottom:423.266667pt;}
.y6e{bottom:426.626667pt;}
.ya1{bottom:429.346667pt;}
.y16{bottom:431.426667pt;}
.y3c{bottom:436.226667pt;}
.y5a{bottom:449.506667pt;}
.y8c{bottom:450.786667pt;}
.y6d{bottom:454.146667pt;}
.ya0{bottom:456.866667pt;}
.y15{bottom:458.946667pt;}
.y3b{bottom:470.786667pt;}
.y8b{bottom:478.466667pt;}
.y6c{bottom:481.826667pt;}
.y59{bottom:484.066667pt;}
.y9f{bottom:484.546667pt;}
.y14{bottom:486.626667pt;}
.y3a{bottom:491.906667pt;}
.y58{bottom:505.213333pt;}
.y8a{bottom:505.853333pt;}
.y6b{bottom:509.373333pt;}
.y9e{bottom:512.093333pt;}
.y13{bottom:514.173333pt;}
.y39{bottom:526.493333pt;}
.y89{bottom:536.253333pt;}
.y6a{bottom:537.053333pt;}
.y57{bottom:539.773333pt;}
.yba{bottom:541.053333pt;}
.y12{bottom:541.853333pt;}
.y38{bottom:547.613333pt;}
.y69{bottom:564.573333pt;}
.y88{bottom:566.653333pt;}
.y9d{bottom:567.293333pt;}
.yb9{bottom:568.573333pt;}
.y11{bottom:569.373333pt;}
.y56{bottom:574.173333pt;}
.y37{bottom:582.013333pt;}
.y68{bottom:593.373333pt;}
.y87{bottom:594.333333pt;}
.y9c{bottom:594.973333pt;}
.y55{bottom:595.453333pt;}
.yb8{bottom:596.093333pt;}
.y10{bottom:597.053333pt;}
.y36{bottom:616.573333pt;}
.y67{bottom:621.053333pt;}
.y86{bottom:621.853333pt;}
.y9b{bottom:622.493333pt;}
.yb7{bottom:623.933333pt;}
.yf{bottom:624.573333pt;}
.y54{bottom:629.853333pt;}
.y35{bottom:637.693333pt;}
.y85{bottom:649.533333pt;}
.y66{bottom:649.853333pt;}
.y9a{bottom:650.173333pt;}
.yb6{bottom:651.453333pt;}
.ye{bottom:652.253333pt;}
.y34{bottom:658.813333pt;}
.y53{bottom:664.413333pt;}
.y84{bottom:677.053333pt;}
.y65{bottom:677.533333pt;}
.y99{bottom:677.693333pt;}
.yd{bottom:679.773333pt;}
.yb5{bottom:680.413333pt;}
.y52{bottom:685.533333pt;}
.y33{bottom:693.373333pt;}
.y2a{bottom:694.333333pt;}
.y83{bottom:704.733333pt;}
.y64{bottom:705.053333pt;}
.y98{bottom:705.373333pt;}
.yc{bottom:707.613333pt;}
.yb4{bottom:708.093333pt;}
.y51{bottom:720.093333pt;}
.y32{bottom:727.933333pt;}
.y82{bottom:732.253333pt;}
.y63{bottom:732.733333pt;}
.y97{bottom:732.893333pt;}
.yb{bottom:735.133333pt;}
.y29{bottom:735.293333pt;}
.yb3{bottom:735.613333pt;}
.y50{bottom:741.213333pt;}
.y31{bottom:749.053333pt;}
.y81{bottom:759.973333pt;}
.y62{bottom:760.293333pt;}
.y96{bottom:760.613333pt;}
.y28{bottom:762.853333pt;}
.ya{bottom:763.173333pt;}
.yb2{bottom:763.333333pt;}
.y4f{bottom:775.653333pt;}
.y30{bottom:783.493333pt;}
.y80{bottom:787.333333pt;}
.y61{bottom:787.973333pt;}
.y95{bottom:788.133333pt;}
.y27{bottom:790.533333pt;}
.y9{bottom:790.693333pt;}
.yb1{bottom:790.853333pt;}
.y4e{bottom:810.213333pt;}
.y60{bottom:815.493333pt;}
.y94{bottom:815.813333pt;}
.y7f{bottom:816.453333pt;}
.y26{bottom:818.053333pt;}
.y8{bottom:818.373333pt;}
.yb0{bottom:818.533333pt;}
.y5f{bottom:843.173333pt;}
.y93{bottom:843.333333pt;}
.y4d{bottom:844.773333pt;}
.y7e{bottom:845.733333pt;}
.y7{bottom:845.893333pt;}
.yaf{bottom:846.053333pt;}
.y2f{bottom:852.453333pt;}
.y4c{bottom:865.893333pt;}
.y5e{bottom:870.693333pt;}
.y92{bottom:870.853333pt;}
.y7d{bottom:873.253333pt;}
.y6{bottom:873.573333pt;}
.yae{bottom:873.733333pt;}
.y2e{bottom:887.013333pt;}
.y5d{bottom:898.373333pt;}
.y91{bottom:898.533333pt;}
.y4b{bottom:900.293333pt;}
.y7c{bottom:900.933333pt;}
.y5{bottom:901.093333pt;}
.y25{bottom:901.253333pt;}
.y2d{bottom:921.573333pt;}
.y5c{bottom:925.893333pt;}
.y90{bottom:926.053333pt;}
.y7b{bottom:928.453333pt;}
.y4{bottom:928.773333pt;}
.yad{bottom:928.933333pt;}
.y4a{bottom:934.853333pt;}
.y2c{bottom:942.693333pt;}
.y5b{bottom:953.413333pt;}
.y8f{bottom:953.573333pt;}
.y49{bottom:955.973333pt;}
.y3{bottom:956.293333pt;}
.y24{bottom:956.453333pt;}
.y2b{bottom:977.093333pt;}
.y7a{bottom:983.813333pt;}
.y23{bottom:983.973333pt;}
.y2{bottom:984.133333pt;}
.y48{bottom:990.533333pt;}
.y1{bottom:1011.680000pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.031988pt;}
.x1{left:121.631988pt;}
.x2{left:145.626655pt;}
}




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