
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_23eb996413251d0de192b6cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a730388280c148ddd131b890.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_a3f88cafa1aa72d688c6e161.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_c11e0b5874f63878a5ca5de7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_4b303d240708d5a4e2b7400c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_267ccef6238cffe3ce1ae152.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_3af63b268a659cdfc666f1f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_cb8bcce2b8310df2b9110ffc.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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:46.080000px;}
.ls8{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.370200px;}
.lsa{letter-spacing:-0.326400px;}
.ls1a{letter-spacing:-0.226200px;}
.ls1f{letter-spacing:-0.052560px;}
.ls13{letter-spacing:-0.038880px;}
.ls20{letter-spacing:-0.036000px;}
.lsc{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.013200px;}
.ls17{letter-spacing:0.038880px;}
.ls15{letter-spacing:0.078480px;}
.ls1{letter-spacing:0.100800px;}
.ls7{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.211680px;}
.lsd{letter-spacing:0.223200px;}
.ls16{letter-spacing:0.263400px;}
.ls12{letter-spacing:0.264000px;}
.ls19{letter-spacing:0.285600px;}
.ls2{letter-spacing:0.351360px;}
.lsb{letter-spacing:0.351600px;}
.ls22{letter-spacing:0.357000px;}
.ls23{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.373800px;}
.lse{letter-spacing:0.385800px;}
.ls1d{letter-spacing:0.439680px;}
.ls10{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.732000px;}
.ls4{letter-spacing:0.732960px;}
.ls1c{letter-spacing:6.292800px;}
.ls14{letter-spacing:12.959280px;}
.ls1e{letter-spacing:47.466720px;}
.ls1b{letter-spacing:81.306720px;}
.ls11{letter-spacing:129.864240px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.ws12{word-spacing:-13.879200px;}
.ws17{word-spacing:-13.521000px;}
.ws18{word-spacing:-13.504200px;}
.ws13{word-spacing:-13.432800px;}
.ws11{word-spacing:-13.410600px;}
.ws4{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws16{word-spacing:-13.111200px;}
.wsd{word-spacing:-13.108320px;}
.ws15{word-spacing:-13.094640px;}
.ws14{word-spacing:-12.921000px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.wsc{word-spacing:-2.327040px;}
.wsb{word-spacing:-0.187920px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:1.020720px;}
.ws6{word-spacing:2.552040px;}
.wse{word-spacing:3.412080px;}
.ws10{word-spacing:67.860720px;}
._f{margin-left:-3.576960px;}
._5{margin-left:-2.531520px;}
._0{margin-left:-1.159200px;}
._1{width:1.110000px;}
._6{width:3.023520px;}
._b{width:4.541999px;}
._9{width:5.796600px;}
._a{width:6.863998px;}
._8{width:8.500188px;}
._7{width:10.361107px;}
._3{width:11.699249px;}
._4{width:13.388024px;}
._10{width:14.402160px;}
._11{width:15.505609px;}
._d{width:17.279280px;}
._c{width:18.821520px;}
._e{width:23.319120px;}
._12{width:24.672000px;}
._2{width:48.943272px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y92{bottom:7.740000px;}
.y8f{bottom:7.920000px;}
.y2{bottom:73.296000px;}
.y28{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.y55{bottom:121.896000px;}
.yc1{bottom:125.496000px;}
.y54{bottom:139.536000px;}
.yc0{bottom:143.136000px;}
.y96{bottom:147.456000px;}
.y53{bottom:156.990000px;}
.ybf{bottom:169.590000px;}
.y95{bottom:183.090000px;}
.ybe{bottom:187.230000px;}
.y26{bottom:191.550000px;}
.y52{bottom:192.630000px;}
.ybd{bottom:204.870000px;}
.y25{bottom:209.190000px;}
.y51{bottom:210.270000px;}
.y94{bottom:215.310000px;}
.y24{bottom:226.830000px;}
.y50{bottom:227.910000px;}
.ybc{bottom:231.330000px;}
.y23{bottom:244.470000px;}
.y4f{bottom:245.370000px;}
.y89{bottom:248.790000px;}
.ybb{bottom:248.970000px;}
.y22{bottom:261.930000px;}
.y4e{bottom:263.010000px;}
.y88{bottom:266.430000px;}
.yba{bottom:275.610000px;}
.y21{bottom:279.570000px;}
.y87{bottom:284.070000px;}
.y4d{bottom:289.470000px;}
.yb9{bottom:293.250000px;}
.y20{bottom:297.210000px;}
.y86{bottom:301.710000px;}
.y1f{bottom:314.715000px;}
.y85{bottom:319.215000px;}
.yb8{bottom:319.755000px;}
.y4c{bottom:325.155000px;}
.y1e{bottom:332.355000px;}
.y84{bottom:336.855000px;}
.yb7{bottom:337.395000px;}
.y4b{bottom:342.795000px;}
.y1d{bottom:349.995000px;}
.y83{bottom:354.495000px;}
.y6e{bottom:354.675000px;}
.y4a{bottom:360.435000px;}
.yb6{bottom:363.855000px;}
.y1c{bottom:367.635000px;}
.y82{bottom:371.955000px;}
.y6d{bottom:372.315000px;}
.y49{bottom:377.895000px;}
.y1b{bottom:385.095000px;}
.y81{bottom:389.595000px;}
.y6c{bottom:389.955000px;}
.yb5{bottom:390.495000px;}
.y48{bottom:395.535000px;}
.y80{bottom:407.235000px;}
.y6b{bottom:407.595000px;}
.yb4{bottom:408.135000px;}
.y1a{bottom:411.915000px;}
.y47{bottom:422.175000px;}
.y7f{bottom:424.875000px;}
.y6a{bottom:425.055000px;}
.yb3{bottom:425.775000px;}
.y7e{bottom:442.335000px;}
.y69{bottom:451.695000px;}
.yb2{bottom:452.235000px;}
.y46{bottom:457.635000px;}
.y7d{bottom:459.975000px;}
.y19{bottom:460.515000px;}
.yb1{bottom:469.875000px;}
.y45{bottom:475.275000px;}
.y7c{bottom:477.615000px;}
.y68{bottom:487.155000px;}
.yb0{bottom:487.515000px;}
.y44{bottom:492.915000px;}
.y7b{bottom:495.075000px;}
.y18{bottom:497.595000px;}
.y43{bottom:510.555000px;}
.yaf{bottom:513.975000px;}
.y17{bottom:515.235000px;}
.y67{bottom:519.375000px;}
.y7a{bottom:521.715000px;}
.y42{bottom:528.015000px;}
.yae{bottom:531.615000px;}
.y16{bottom:532.875000px;}
.yad{bottom:549.255000px;}
.y15{bottom:550.515000px;}
.y41{bottom:554.655000px;}
.y79{bottom:557.175000px;}
.y14{bottom:567.975000px;}
.y78{bottom:574.815000px;}
.yac{bottom:575.715000px;}
.y13{bottom:585.645000px;}
.y93{bottom:589.785000px;}
.y40{bottom:590.145000px;}
.y77{bottom:592.485000px;}
.yab{bottom:593.385000px;}
.y12{bottom:603.285000px;}
.y76{bottom:610.125000px;}
.yaa{bottom:611.025000px;}
.y11{bottom:620.745000px;}
.y3f{bottom:622.545000px;}
.y91{bottom:630.645000px;}
.y3e{bottom:632.625000px;}
.y75{bottom:636.585000px;}
.ya9{bottom:637.485000px;}
.y10{bottom:638.385000px;}
.ya8{bottom:655.125000px;}
.yf{bottom:656.025000px;}
.y90{bottom:657.825000px;}
.y74{bottom:672.225000px;}
.ye{bottom:673.485000px;}
.y3d{bottom:677.445000px;}
.ya7{bottom:681.765000px;}
.y8e{bottom:685.185000px;}
.y3c{bottom:695.085000px;}
.y73{bottom:698.145000px;}
.ya6{bottom:699.405000px;}
.yd{bottom:700.305000px;}
.y72{bottom:712.185000px;}
.y3b{bottom:712.725000px;}
.ya5{bottom:717.045000px;}
.y71{bottom:726.225000px;}
.y66{bottom:729.825000px;}
.y3a{bottom:730.365000px;}
.y8d{bottom:733.965000px;}
.y70{bottom:740.265000px;}
.ya4{bottom:743.505000px;}
.y65{bottom:747.465000px;}
.yc{bottom:748.725000px;}
.y39{bottom:756.825000px;}
.ya3{bottom:761.145000px;}
.y64{bottom:765.105000px;}
.y6f{bottom:769.605000px;}
.ya2{bottom:778.785000px;}
.y63{bottom:782.565000px;}
.yb{bottom:784.545000px;}
.y38{bottom:789.045000px;}
.y8c{bottom:795.525000px;}
.y37{bottom:799.125000px;}
.y62{bottom:800.205000px;}
.ya1{bottom:805.425000px;}
.y8b{bottom:809.565000px;}
.y61{bottom:817.845000px;}
.ya{bottom:820.545000px;}
.y8a{bottom:823.605000px;}
.y60{bottom:835.485000px;}
.y36{bottom:844.665000px;}
.y5f{bottom:852.945000px;}
.ya0{bottom:853.845000px;}
.y9{bottom:860.370000px;}
.y35{bottom:862.350000px;}
.y8{bottom:878.370000px;}
.y5e{bottom:879.630000px;}
.y34{bottom:879.810000px;}
.y9f{bottom:880.710000px;}
.y33{bottom:897.450000px;}
.y7{bottom:910.590000px;}
.y32{bottom:915.090000px;}
.y5d{bottom:915.450000px;}
.y9e{bottom:917.790000px;}
.y6{bottom:930.030000px;}
.y9d{bottom:935.430000px;}
.y31{bottom:941.550000px;}
.y5{bottom:949.290000px;}
.y9c{bottom:962.250000px;}
.y5c{bottom:963.690000px;}
.y30{bottom:977.190000px;}
.y4{bottom:987.630000px;}
.y2f{bottom:994.830000px;}
.y5b{bottom:999.330000px;}
.y9b{bottom:999.510000px;}
.yc6{bottom:1007.790000px;}
.y3{bottom:1012.290000px;}
.y2e{bottom:1012.470000px;}
.yc5{bottom:1025.430000px;}
.y2d{bottom:1029.930000px;}
.y5a{bottom:1031.550000px;}
.y59{bottom:1041.630000px;}
.y2c{bottom:1047.570000px;}
.y9a{bottom:1047.930000px;}
.yc4{bottom:1051.890000px;}
.y2b{bottom:1065.210000px;}
.y99{bottom:1065.570000px;}
.yc3{bottom:1078.530000px;}
.y98{bottom:1083.210000px;}
.y58{bottom:1087.170000px;}
.y2a{bottom:1091.670000px;}
.yc2{bottom:1096.170000px;}
.y97{bottom:1100.670000px;}
.y57{bottom:1122.630000px;}
.y29{bottom:1127.490000px;}
.y56{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h13{height:26.460000px;}
.h11{height:26.640000px;}
.h2{height:29.717578px;}
.h7{height:36.698203px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.h10{height:41.974453px;}
.h14{height:46.986328px;}
.h12{height:50.597578px;}
.h8{height:51.998203px;}
.h9{height:56.084062px;}
.h5{height:57.636562px;}
.hf{height:59.614102px;}
.ha{height:60.960938px;}
.h15{height:61.423863px;}
.hc{height:62.211094px;}
.hb{height:68.956875px;}
.h4{height:73.298672px;}
.he{height:92.318203px;}
.hd{height:96.444141px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:106.956000px;}
.w6{width:109.296000px;}
.w5{width:160.920000px;}
.w4{width:176.250000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x1{left:68.040000px;}
.x1d{left:111.275987px;}
.x16{left:168.870000px;}
.xb{left:197.309987px;}
.x2{left:202.709987px;}
.x15{left:216.029987px;}
.xf{left:229.709987px;}
.x13{left:271.514987px;}
.x10{left:273.134987px;}
.x18{left:276.555000px;}
.xe{left:301.754987px;}
.xd{left:306.794987px;}
.x1c{left:310.394987px;}
.x6{left:346.214987px;}
.x4{left:359.174987px;}
.x8{left:372.494987px;}
.x12{left:373.574987px;}
.x14{left:382.034987px;}
.x9{left:445.964987px;}
.x5{left:449.024987px;}
.x19{left:453.525000px;}
.x7{left:483.584987px;}
.xa{left:492.764987px;}
.x11{left:505.184987px;}
.xc{left:578.264987px;}
.x1a{left:615.165000px;}
.x1b{left:687.389987px;}
.x3{left:791.969987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.960000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls1a{letter-spacing:-0.201067pt;}
.ls1f{letter-spacing:-0.046720pt;}
.ls13{letter-spacing:-0.034560pt;}
.ls20{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.011733pt;}
.ls17{letter-spacing:0.034560pt;}
.ls15{letter-spacing:0.069760pt;}
.ls1{letter-spacing:0.089600pt;}
.ls7{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.188160pt;}
.lsd{letter-spacing:0.198400pt;}
.ls16{letter-spacing:0.234133pt;}
.ls12{letter-spacing:0.234667pt;}
.ls19{letter-spacing:0.253867pt;}
.ls2{letter-spacing:0.312320pt;}
.lsb{letter-spacing:0.312533pt;}
.ls22{letter-spacing:0.317333pt;}
.ls23{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.332267pt;}
.lse{letter-spacing:0.342933pt;}
.ls1d{letter-spacing:0.390827pt;}
.ls10{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.650667pt;}
.ls4{letter-spacing:0.651520pt;}
.ls1c{letter-spacing:5.593600pt;}
.ls14{letter-spacing:11.519360pt;}
.ls1e{letter-spacing:42.192640pt;}
.ls1b{letter-spacing:72.272640pt;}
.ls11{letter-spacing:115.434880pt;}
.wsa{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.ws12{word-spacing:-12.337067pt;}
.ws17{word-spacing:-12.018667pt;}
.ws18{word-spacing:-12.003733pt;}
.ws13{word-spacing:-11.940267pt;}
.ws11{word-spacing:-11.920533pt;}
.ws4{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws16{word-spacing:-11.654400pt;}
.wsd{word-spacing:-11.651840pt;}
.ws15{word-spacing:-11.639680pt;}
.ws14{word-spacing:-11.485333pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.wsc{word-spacing:-2.068480pt;}
.wsb{word-spacing:-0.167040pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:0.907307pt;}
.ws6{word-spacing:2.268480pt;}
.wse{word-spacing:3.032960pt;}
.ws10{word-spacing:60.320640pt;}
._f{margin-left:-3.179520pt;}
._5{margin-left:-2.250240pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.986667pt;}
._6{width:2.687573pt;}
._b{width:4.037332pt;}
._9{width:5.152534pt;}
._a{width:6.101332pt;}
._8{width:7.555722pt;}
._7{width:9.209873pt;}
._3{width:10.399332pt;}
._4{width:11.900465pt;}
._10{width:12.801920pt;}
._11{width:13.782764pt;}
._d{width:15.359360pt;}
._c{width:16.730240pt;}
._e{width:20.728107pt;}
._12{width:21.930667pt;}
._2{width:43.505130pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:6.880000pt;}
.y8f{bottom:7.040000pt;}
.y2{bottom:65.152000pt;}
.y28{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.y55{bottom:108.352000pt;}
.yc1{bottom:111.552000pt;}
.y54{bottom:124.032000pt;}
.yc0{bottom:127.232000pt;}
.y96{bottom:131.072000pt;}
.y53{bottom:139.546667pt;}
.ybf{bottom:150.746667pt;}
.y95{bottom:162.746667pt;}
.ybe{bottom:166.426667pt;}
.y26{bottom:170.266667pt;}
.y52{bottom:171.226667pt;}
.ybd{bottom:182.106667pt;}
.y25{bottom:185.946667pt;}
.y51{bottom:186.906667pt;}
.y94{bottom:191.386667pt;}
.y24{bottom:201.626667pt;}
.y50{bottom:202.586667pt;}
.ybc{bottom:205.626667pt;}
.y23{bottom:217.306667pt;}
.y4f{bottom:218.106667pt;}
.y89{bottom:221.146667pt;}
.ybb{bottom:221.306667pt;}
.y22{bottom:232.826667pt;}
.y4e{bottom:233.786667pt;}
.y88{bottom:236.826667pt;}
.yba{bottom:244.986667pt;}
.y21{bottom:248.506667pt;}
.y87{bottom:252.506667pt;}
.y4d{bottom:257.306667pt;}
.yb9{bottom:260.666667pt;}
.y20{bottom:264.186667pt;}
.y86{bottom:268.186667pt;}
.y1f{bottom:279.746667pt;}
.y85{bottom:283.746667pt;}
.yb8{bottom:284.226667pt;}
.y4c{bottom:289.026667pt;}
.y1e{bottom:295.426667pt;}
.y84{bottom:299.426667pt;}
.yb7{bottom:299.906667pt;}
.y4b{bottom:304.706667pt;}
.y1d{bottom:311.106667pt;}
.y83{bottom:315.106667pt;}
.y6e{bottom:315.266667pt;}
.y4a{bottom:320.386667pt;}
.yb6{bottom:323.426667pt;}
.y1c{bottom:326.786667pt;}
.y82{bottom:330.626667pt;}
.y6d{bottom:330.946667pt;}
.y49{bottom:335.906667pt;}
.y1b{bottom:342.306667pt;}
.y81{bottom:346.306667pt;}
.y6c{bottom:346.626667pt;}
.yb5{bottom:347.106667pt;}
.y48{bottom:351.586667pt;}
.y80{bottom:361.986667pt;}
.y6b{bottom:362.306667pt;}
.yb4{bottom:362.786667pt;}
.y1a{bottom:366.146667pt;}
.y47{bottom:375.266667pt;}
.y7f{bottom:377.666667pt;}
.y6a{bottom:377.826667pt;}
.yb3{bottom:378.466667pt;}
.y7e{bottom:393.186667pt;}
.y69{bottom:401.506667pt;}
.yb2{bottom:401.986667pt;}
.y46{bottom:406.786667pt;}
.y7d{bottom:408.866667pt;}
.y19{bottom:409.346667pt;}
.yb1{bottom:417.666667pt;}
.y45{bottom:422.466667pt;}
.y7c{bottom:424.546667pt;}
.y68{bottom:433.026667pt;}
.yb0{bottom:433.346667pt;}
.y44{bottom:438.146667pt;}
.y7b{bottom:440.066667pt;}
.y18{bottom:442.306667pt;}
.y43{bottom:453.826667pt;}
.yaf{bottom:456.866667pt;}
.y17{bottom:457.986667pt;}
.y67{bottom:461.666667pt;}
.y7a{bottom:463.746667pt;}
.y42{bottom:469.346667pt;}
.yae{bottom:472.546667pt;}
.y16{bottom:473.666667pt;}
.yad{bottom:488.226667pt;}
.y15{bottom:489.346667pt;}
.y41{bottom:493.026667pt;}
.y79{bottom:495.266667pt;}
.y14{bottom:504.866667pt;}
.y78{bottom:510.946667pt;}
.yac{bottom:511.746667pt;}
.y13{bottom:520.573333pt;}
.y93{bottom:524.253333pt;}
.y40{bottom:524.573333pt;}
.y77{bottom:526.653333pt;}
.yab{bottom:527.453333pt;}
.y12{bottom:536.253333pt;}
.y76{bottom:542.333333pt;}
.yaa{bottom:543.133333pt;}
.y11{bottom:551.773333pt;}
.y3f{bottom:553.373333pt;}
.y91{bottom:560.573333pt;}
.y3e{bottom:562.333333pt;}
.y75{bottom:565.853333pt;}
.ya9{bottom:566.653333pt;}
.y10{bottom:567.453333pt;}
.ya8{bottom:582.333333pt;}
.yf{bottom:583.133333pt;}
.y90{bottom:584.733333pt;}
.y74{bottom:597.533333pt;}
.ye{bottom:598.653333pt;}
.y3d{bottom:602.173333pt;}
.ya7{bottom:606.013333pt;}
.y8e{bottom:609.053333pt;}
.y3c{bottom:617.853333pt;}
.y73{bottom:620.573333pt;}
.ya6{bottom:621.693333pt;}
.yd{bottom:622.493333pt;}
.y72{bottom:633.053333pt;}
.y3b{bottom:633.533333pt;}
.ya5{bottom:637.373333pt;}
.y71{bottom:645.533333pt;}
.y66{bottom:648.733333pt;}
.y3a{bottom:649.213333pt;}
.y8d{bottom:652.413333pt;}
.y70{bottom:658.013333pt;}
.ya4{bottom:660.893333pt;}
.y65{bottom:664.413333pt;}
.yc{bottom:665.533333pt;}
.y39{bottom:672.733333pt;}
.ya3{bottom:676.573333pt;}
.y64{bottom:680.093333pt;}
.y6f{bottom:684.093333pt;}
.ya2{bottom:692.253333pt;}
.y63{bottom:695.613333pt;}
.yb{bottom:697.373333pt;}
.y38{bottom:701.373333pt;}
.y8c{bottom:707.133333pt;}
.y37{bottom:710.333333pt;}
.y62{bottom:711.293333pt;}
.ya1{bottom:715.933333pt;}
.y8b{bottom:719.613333pt;}
.y61{bottom:726.973333pt;}
.ya{bottom:729.373333pt;}
.y8a{bottom:732.093333pt;}
.y60{bottom:742.653333pt;}
.y36{bottom:750.813333pt;}
.y5f{bottom:758.173333pt;}
.ya0{bottom:758.973333pt;}
.y9{bottom:764.773333pt;}
.y35{bottom:766.533333pt;}
.y8{bottom:780.773333pt;}
.y5e{bottom:781.893333pt;}
.y34{bottom:782.053333pt;}
.y9f{bottom:782.853333pt;}
.y33{bottom:797.733333pt;}
.y7{bottom:809.413333pt;}
.y32{bottom:813.413333pt;}
.y5d{bottom:813.733333pt;}
.y9e{bottom:815.813333pt;}
.y6{bottom:826.693333pt;}
.y9d{bottom:831.493333pt;}
.y31{bottom:836.933333pt;}
.y5{bottom:843.813333pt;}
.y9c{bottom:855.333333pt;}
.y5c{bottom:856.613333pt;}
.y30{bottom:868.613333pt;}
.y4{bottom:877.893333pt;}
.y2f{bottom:884.293333pt;}
.y5b{bottom:888.293333pt;}
.y9b{bottom:888.453333pt;}
.yc6{bottom:895.813333pt;}
.y3{bottom:899.813333pt;}
.y2e{bottom:899.973333pt;}
.yc5{bottom:911.493333pt;}
.y2d{bottom:915.493333pt;}
.y5a{bottom:916.933333pt;}
.y59{bottom:925.893333pt;}
.y2c{bottom:931.173333pt;}
.y9a{bottom:931.493333pt;}
.yc4{bottom:935.013333pt;}
.y2b{bottom:946.853333pt;}
.y99{bottom:947.173333pt;}
.yc3{bottom:958.693333pt;}
.y98{bottom:962.853333pt;}
.y58{bottom:966.373333pt;}
.y2a{bottom:970.373333pt;}
.yc2{bottom:974.373333pt;}
.y97{bottom:978.373333pt;}
.y57{bottom:997.893333pt;}
.y29{bottom:1002.213333pt;}
.y56{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h13{height:23.520000pt;}
.h11{height:23.680000pt;}
.h2{height:26.415625pt;}
.h7{height:32.620625pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.h10{height:37.310625pt;}
.h14{height:41.765625pt;}
.h12{height:44.975625pt;}
.h8{height:46.220625pt;}
.h9{height:49.852500pt;}
.h5{height:51.232500pt;}
.hf{height:52.990313pt;}
.ha{height:54.187500pt;}
.h15{height:54.598989pt;}
.hc{height:55.298750pt;}
.hb{height:61.295000pt;}
.h4{height:65.154375pt;}
.he{height:82.060625pt;}
.hd{height:85.728125pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:95.072000pt;}
.w6{width:97.152000pt;}
.w5{width:143.040000pt;}
.w4{width:156.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1d{left:98.911988pt;}
.x16{left:150.106667pt;}
.xb{left:175.386655pt;}
.x2{left:180.186655pt;}
.x15{left:192.026655pt;}
.xf{left:204.186655pt;}
.x13{left:241.346655pt;}
.x10{left:242.786655pt;}
.x18{left:245.826667pt;}
.xe{left:268.226655pt;}
.xd{left:272.706655pt;}
.x1c{left:275.906655pt;}
.x6{left:307.746655pt;}
.x4{left:319.266655pt;}
.x8{left:331.106655pt;}
.x12{left:332.066655pt;}
.x14{left:339.586655pt;}
.x9{left:396.413322pt;}
.x5{left:399.133322pt;}
.x19{left:403.133333pt;}
.x7{left:429.853322pt;}
.xa{left:438.013322pt;}
.x11{left:449.053322pt;}
.xc{left:514.013322pt;}
.x1a{left:546.813333pt;}
.x1b{left:611.013322pt;}
.x3{left:703.973322pt;}
}




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