
    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_0dba91b67bd3e900cdb6f157.woff')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_4a7ebc9966fd71dcbcb93cf9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e80c86dbbc92c847a168f3c8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_bb7a3b09ee2075cedc4a279e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d09d21ec74d1a7743e6ae214.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_a216c8c46dab687075ad7c60.woff')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_0596970ad7614af5ce793730.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ce5eb1514bcdf7c896a4d6f6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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);}
.v3{vertical-align:-74.160000px;}
.v4{vertical-align:-68.400000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.135600px;}
.lsf{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.666000px;}
.ls14{letter-spacing:3.060000px;}
.ls2{letter-spacing:16.020000px;}
.ls8{letter-spacing:46.026720px;}
.ls13{letter-spacing:201.036000px;}
.lse{letter-spacing:637.536000px;}
.ls9{letter-spacing:746.256000px;}
.ls3{letter-spacing:1068.096000px;}
.ls15{letter-spacing:1099.776000px;}
.lsb{letter-spacing:1124.976000px;}
.ls16{letter-spacing:1127.136000px;}
.lsd{letter-spacing:1145.136000px;}
.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:-15.606000px;}
.ws3{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws0{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-3.705120px;}
._3{margin-left:-2.509920px;}
._1{margin-left:-1.192320px;}
._0{width:1.149120px;}
._6{width:2.224320px;}
._7{width:3.585600px;}
._e{width:4.636560px;}
._b{width:5.736960px;}
._8{width:7.601520px;}
._9{width:8.732640px;}
._2{width:9.800640px;}
._4{width:10.922400px;}
._5{width:12.144960px;}
._f{width:13.523760px;}
._a{width:16.613280px;}
._13{width:17.840880px;}
._10{width:19.123200px;}
._14{width:20.723040px;}
._12{width:21.752640px;}
._16{width:23.555520px;}
._19{width:25.995600px;}
._c{width:32.670480px;}
._d{width:33.698880px;}
._1b{width:44.341920px;}
._1a{width:45.417600px;}
._17{width:55.739520px;}
._18{width:56.923920px;}
._15{width:290.294400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs2{font-size:51.120000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:3.240000px;}
.yce{bottom:5.754000px;}
.yc5{bottom:5.760000px;}
.yc7{bottom:20.520000px;}
.yc6{bottom:37.620000px;}
.yf9{bottom:111.996000px;}
.ydf{bottom:113.796000px;}
.yd0{bottom:114.876000px;}
.y86{bottom:124.056000px;}
.y5a{bottom:129.276000px;}
.yde{bottom:130.896000px;}
.ycf{bottom:132.156000px;}
.y33{bottom:132.696000px;}
.ya5{bottom:137.016000px;}
.y85{bottom:141.336000px;}
.y59{bottom:146.556000px;}
.ycd{bottom:146.916000px;}
.ydd{bottom:148.176000px;}
.y32{bottom:149.976000px;}
.ya4{bottom:154.110000px;}
.y84{bottom:158.610000px;}
.y58{bottom:163.830000px;}
.ydc{bottom:165.450000px;}
.y31{bottom:167.250000px;}
.ycc{bottom:169.050000px;}
.ya3{bottom:171.390000px;}
.y83{bottom:175.890000px;}
.y57{bottom:180.930000px;}
.ydb{bottom:182.730000px;}
.y30{bottom:184.530000px;}
.ya2{bottom:188.670000px;}
.ycb{bottom:191.190000px;}
.y82{bottom:192.990000px;}
.y56{bottom:198.210000px;}
.yda{bottom:200.010000px;}
.y2f{bottom:201.630000px;}
.ya1{bottom:205.950000px;}
.y81{bottom:210.270000px;}
.yca{bottom:213.330000px;}
.y55{bottom:215.490000px;}
.yd9{bottom:217.290000px;}
.y2e{bottom:218.910000px;}
.ya0{bottom:223.590000px;}
.y80{bottom:227.550000px;}
.y54{bottom:232.770000px;}
.yd8{bottom:234.390000px;}
.yc9{bottom:235.470000px;}
.y2d{bottom:236.190000px;}
.y9f{bottom:242.130000px;}
.y7f{bottom:245.190000px;}
.y53{bottom:250.050000px;}
.yd7{bottom:251.670000px;}
.y2c{bottom:253.470000px;}
.yc4{bottom:258.330000px;}
.y9e{bottom:259.410000px;}
.y7e{bottom:263.730000px;}
.y52{bottom:267.150000px;}
.yd6{bottom:268.950000px;}
.y2b{bottom:270.750000px;}
.y9d{bottom:276.690000px;}
.y7d{bottom:281.010000px;}
.y51{bottom:284.430000px;}
.yd5{bottom:286.230000px;}
.y2a{bottom:287.850000px;}
.yef{bottom:289.650000px;}
.y9c{bottom:293.970000px;}
.y7c{bottom:298.290000px;}
.yf8{bottom:301.710000px;}
.y50{bottom:302.250000px;}
.yd4{bottom:303.510000px;}
.y29{bottom:305.130000px;}
.yee{bottom:306.930000px;}
.y9b{bottom:311.115000px;}
.y7b{bottom:315.615000px;}
.yf7{bottom:319.035000px;}
.y4f{bottom:320.835000px;}
.y28{bottom:322.455000px;}
.yed{bottom:324.255000px;}
.y9a{bottom:328.395000px;}
.y7a{bottom:333.255000px;}
.yf6{bottom:336.315000px;}
.y4e{bottom:337.935000px;}
.y27{bottom:339.735000px;}
.yec{bottom:341.535000px;}
.y99{bottom:345.675000px;}
.yc3{bottom:349.995000px;}
.y79{bottom:351.795000px;}
.yf5{bottom:353.595000px;}
.y4d{bottom:355.215000px;}
.y26{bottom:357.015000px;}
.yeb{bottom:358.635000px;}
.y98{bottom:362.955000px;}
.yc2{bottom:367.275000px;}
.yf4{bottom:370.695000px;}
.y4c{bottom:372.495000px;}
.y25{bottom:374.295000px;}
.yea{bottom:375.915000px;}
.y97{bottom:376.995000px;}
.yc1{bottom:384.555000px;}
.y78{bottom:387.975000px;}
.y4b{bottom:389.775000px;}
.y24{bottom:391.395000px;}
.ye9{bottom:393.195000px;}
.yc0{bottom:401.835000px;}
.y77{bottom:405.255000px;}
.y4a{bottom:407.055000px;}
.y23{bottom:408.675000px;}
.ye8{bottom:410.475000px;}
.ybf{bottom:419.115000px;}
.y76{bottom:422.535000px;}
.y49{bottom:424.155000px;}
.y22{bottom:425.955000px;}
.ye7{bottom:427.755000px;}
.ybe{bottom:436.395000px;}
.y75{bottom:439.815000px;}
.y48{bottom:441.435000px;}
.y21{bottom:443.235000px;}
.ye6{bottom:444.855000px;}
.ybd{bottom:453.495000px;}
.y74{bottom:457.095000px;}
.y47{bottom:458.715000px;}
.y20{bottom:460.515000px;}
.ye5{bottom:462.135000px;}
.ybc{bottom:471.315000px;}
.y73{bottom:474.195000px;}
.y46{bottom:475.995000px;}
.y1f{bottom:477.795000px;}
.ye4{bottom:479.415000px;}
.ybb{bottom:489.855000px;}
.y72{bottom:491.475000px;}
.y45{bottom:493.275000px;}
.y1e{bottom:494.895000px;}
.ye3{bottom:496.695000px;}
.yba{bottom:506.955000px;}
.y71{bottom:508.755000px;}
.y44{bottom:510.915000px;}
.y1d{bottom:512.175000px;}
.ye2{bottom:513.975000px;}
.yb9{bottom:524.235000px;}
.y70{bottom:526.035000px;}
.y1c{bottom:529.455000px;}
.ye1{bottom:531.255000px;}
.yb8{bottom:541.515000px;}
.y6f{bottom:543.675000px;}
.yf3{bottom:544.935000px;}
.y1b{bottom:546.735000px;}
.ye0{bottom:548.355000px;}
.yb7{bottom:558.795000px;}
.y6e{bottom:562.245000px;}
.y1a{bottom:564.045000px;}
.y43{bottom:565.665000px;}
.yb6{bottom:576.105000px;}
.y6d{bottom:579.525000px;}
.y19{bottom:581.145000px;}
.y42{bottom:582.945000px;}
.yb5{bottom:593.385000px;}
.y6c{bottom:596.805000px;}
.y18{bottom:598.425000px;}
.y41{bottom:600.225000px;}
.y6b{bottom:614.085000px;}
.yd3{bottom:615.705000px;}
.y40{bottom:617.505000px;}
.yb4{bottom:629.565000px;}
.y6a{bottom:631.185000px;}
.yd2{bottom:632.985000px;}
.y17{bottom:634.785000px;}
.yb3{bottom:646.845000px;}
.y69{bottom:648.465000px;}
.y96{bottom:650.265000px;}
.y16{bottom:651.885000px;}
.yb2{bottom:663.945000px;}
.y68{bottom:665.745000px;}
.y95{bottom:667.545000px;}
.y15{bottom:669.165000px;}
.yb1{bottom:681.225000px;}
.y67{bottom:683.025000px;}
.y94{bottom:684.645000px;}
.y14{bottom:686.445000px;}
.yb0{bottom:698.505000px;}
.y66{bottom:700.305000px;}
.y93{bottom:701.925000px;}
.y13{bottom:703.725000px;}
.yaf{bottom:715.785000px;}
.yf2{bottom:717.585000px;}
.y65{bottom:717.945000px;}
.y92{bottom:719.205000px;}
.y12{bottom:721.005000px;}
.yae{bottom:733.425000px;}
.yf1{bottom:734.685000px;}
.y64{bottom:736.485000px;}
.y11{bottom:738.105000px;}
.yad{bottom:751.965000px;}
.yf0{bottom:752.505000px;}
.y63{bottom:753.765000px;}
.y10{bottom:755.385000px;}
.yac{bottom:769.245000px;}
.y62{bottom:771.045000px;}
.yf{bottom:772.665000px;}
.yab{bottom:786.525000px;}
.y61{bottom:788.145000px;}
.ye{bottom:789.945000px;}
.yaa{bottom:803.805000px;}
.y60{bottom:805.425000px;}
.yd{bottom:807.225000px;}
.ya9{bottom:820.950000px;}
.y5f{bottom:822.750000px;}
.yc{bottom:824.550000px;}
.ya8{bottom:838.230000px;}
.y5e{bottom:840.030000px;}
.yb{bottom:841.650000px;}
.ya7{bottom:855.510000px;}
.y5d{bottom:857.310000px;}
.ya{bottom:858.930000px;}
.ya6{bottom:873.150000px;}
.y5c{bottom:874.590000px;}
.y3f{bottom:876.210000px;}
.y9{bottom:876.750000px;}
.y91{bottom:891.690000px;}
.y5b{bottom:892.230000px;}
.y3e{bottom:893.490000px;}
.y8{bottom:895.290000px;}
.y90{bottom:908.970000px;}
.y3d{bottom:910.770000px;}
.y7{bottom:918.870000px;}
.y8f{bottom:926.250000px;}
.y3c{bottom:928.050000px;}
.y6{bottom:937.770000px;}
.y8e{bottom:943.530000px;}
.yd1{bottom:943.890000px;}
.y3b{bottom:945.150000px;}
.y5{bottom:951.270000px;}
.y8d{bottom:960.810000px;}
.y3a{bottom:962.430000px;}
.y4{bottom:974.850000px;}
.y8c{bottom:977.910000px;}
.y39{bottom:979.710000px;}
.y8b{bottom:995.190000px;}
.y38{bottom:996.990000px;}
.y3{bottom:1002.390000px;}
.y8a{bottom:1012.470000px;}
.y37{bottom:1014.270000px;}
.y89{bottom:1029.750000px;}
.y2{bottom:1030.110000px;}
.y36{bottom:1031.550000px;}
.y88{bottom:1047.030000px;}
.y35{bottom:1048.650000px;}
.y1{bottom:1057.650000px;}
.y87{bottom:1064.700000px;}
.y34{bottom:1065.960000px;}
.hb{height:22.140000px;}
.h3{height:41.250937px;}
.h7{height:41.726953px;}
.hc{height:49.255313px;}
.ha{height:53.316000px;}
.h9{height:58.621992px;}
.h4{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h5{height:66.757500px;}
.h2{height:77.531484px;}
.h1{height:96.508125px;}
.h0{height:1188.000000px;}
.w2{width:116.100000px;}
.w3{width:180.030000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.xe{left:10.800000px;}
.x11{left:16.020000px;}
.xd{left:23.580000px;}
.xf{left:25.020000px;}
.x14{left:27.540000px;}
.x12{left:49.680000px;}
.x15{left:73.125000px;}
.x7{left:135.035986px;}
.x1{left:153.389986px;}
.x8{left:162.029986px;}
.x17{left:175.529986px;}
.x9{left:189.029986px;}
.x5{left:190.649986px;}
.x6{left:209.369986px;}
.xc{left:251.130000px;}
.x2{left:256.709986px;}
.x4{left:279.569986px;}
.x16{left:411.374986px;}
.x10{left:431.175000px;}
.x3{left:459.074986px;}
.x13{left:611.205000px;}
.xa{left:774.149986px;}
@media print{
.v3{vertical-align:-65.920000pt;}
.v4{vertical-align:-60.800000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.120533pt;}
.lsf{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.592000pt;}
.ls14{letter-spacing:2.720000pt;}
.ls2{letter-spacing:14.240000pt;}
.ls8{letter-spacing:40.912640pt;}
.ls13{letter-spacing:178.698667pt;}
.lse{letter-spacing:566.698667pt;}
.ls9{letter-spacing:663.338667pt;}
.ls3{letter-spacing:949.418667pt;}
.ls15{letter-spacing:977.578667pt;}
.lsb{letter-spacing:999.978667pt;}
.ls16{letter-spacing:1001.898667pt;}
.lsd{letter-spacing:1017.898667pt;}
.ws1{word-spacing:-13.872000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws0{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-3.293440pt;}
._3{margin-left:-2.231040pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.021440pt;}
._6{width:1.977173pt;}
._7{width:3.187200pt;}
._e{width:4.121387pt;}
._b{width:5.099520pt;}
._8{width:6.756907pt;}
._9{width:7.762347pt;}
._2{width:8.711680pt;}
._4{width:9.708800pt;}
._5{width:10.795520pt;}
._f{width:12.021120pt;}
._a{width:14.767360pt;}
._13{width:15.858560pt;}
._10{width:16.998400pt;}
._14{width:18.420480pt;}
._12{width:19.335680pt;}
._16{width:20.938240pt;}
._19{width:23.107200pt;}
._c{width:29.040427pt;}
._d{width:29.954560pt;}
._1b{width:39.415040pt;}
._1a{width:40.371200pt;}
._17{width:49.546240pt;}
._18{width:50.599040pt;}
._15{width:258.039467pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:45.440000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:2.880000pt;}
.yce{bottom:5.114667pt;}
.yc5{bottom:5.120000pt;}
.yc7{bottom:18.240000pt;}
.yc6{bottom:33.440000pt;}
.yf9{bottom:99.552000pt;}
.ydf{bottom:101.152000pt;}
.yd0{bottom:102.112000pt;}
.y86{bottom:110.272000pt;}
.y5a{bottom:114.912000pt;}
.yde{bottom:116.352000pt;}
.ycf{bottom:117.472000pt;}
.y33{bottom:117.952000pt;}
.ya5{bottom:121.792000pt;}
.y85{bottom:125.632000pt;}
.y59{bottom:130.272000pt;}
.ycd{bottom:130.592000pt;}
.ydd{bottom:131.712000pt;}
.y32{bottom:133.312000pt;}
.ya4{bottom:136.986667pt;}
.y84{bottom:140.986667pt;}
.y58{bottom:145.626667pt;}
.ydc{bottom:147.066667pt;}
.y31{bottom:148.666667pt;}
.ycc{bottom:150.266667pt;}
.ya3{bottom:152.346667pt;}
.y83{bottom:156.346667pt;}
.y57{bottom:160.826667pt;}
.ydb{bottom:162.426667pt;}
.y30{bottom:164.026667pt;}
.ya2{bottom:167.706667pt;}
.ycb{bottom:169.946667pt;}
.y82{bottom:171.546667pt;}
.y56{bottom:176.186667pt;}
.yda{bottom:177.786667pt;}
.y2f{bottom:179.226667pt;}
.ya1{bottom:183.066667pt;}
.y81{bottom:186.906667pt;}
.yca{bottom:189.626667pt;}
.y55{bottom:191.546667pt;}
.yd9{bottom:193.146667pt;}
.y2e{bottom:194.586667pt;}
.ya0{bottom:198.746667pt;}
.y80{bottom:202.266667pt;}
.y54{bottom:206.906667pt;}
.yd8{bottom:208.346667pt;}
.yc9{bottom:209.306667pt;}
.y2d{bottom:209.946667pt;}
.y9f{bottom:215.226667pt;}
.y7f{bottom:217.946667pt;}
.y53{bottom:222.266667pt;}
.yd7{bottom:223.706667pt;}
.y2c{bottom:225.306667pt;}
.yc4{bottom:229.626667pt;}
.y9e{bottom:230.586667pt;}
.y7e{bottom:234.426667pt;}
.y52{bottom:237.466667pt;}
.yd6{bottom:239.066667pt;}
.y2b{bottom:240.666667pt;}
.y9d{bottom:245.946667pt;}
.y7d{bottom:249.786667pt;}
.y51{bottom:252.826667pt;}
.yd5{bottom:254.426667pt;}
.y2a{bottom:255.866667pt;}
.yef{bottom:257.466667pt;}
.y9c{bottom:261.306667pt;}
.y7c{bottom:265.146667pt;}
.yf8{bottom:268.186667pt;}
.y50{bottom:268.666667pt;}
.yd4{bottom:269.786667pt;}
.y29{bottom:271.226667pt;}
.yee{bottom:272.826667pt;}
.y9b{bottom:276.546667pt;}
.y7b{bottom:280.546667pt;}
.yf7{bottom:283.586667pt;}
.y4f{bottom:285.186667pt;}
.y28{bottom:286.626667pt;}
.yed{bottom:288.226667pt;}
.y9a{bottom:291.906667pt;}
.y7a{bottom:296.226667pt;}
.yf6{bottom:298.946667pt;}
.y4e{bottom:300.386667pt;}
.y27{bottom:301.986667pt;}
.yec{bottom:303.586667pt;}
.y99{bottom:307.266667pt;}
.yc3{bottom:311.106667pt;}
.y79{bottom:312.706667pt;}
.yf5{bottom:314.306667pt;}
.y4d{bottom:315.746667pt;}
.y26{bottom:317.346667pt;}
.yeb{bottom:318.786667pt;}
.y98{bottom:322.626667pt;}
.yc2{bottom:326.466667pt;}
.yf4{bottom:329.506667pt;}
.y4c{bottom:331.106667pt;}
.y25{bottom:332.706667pt;}
.yea{bottom:334.146667pt;}
.y97{bottom:335.106667pt;}
.yc1{bottom:341.826667pt;}
.y78{bottom:344.866667pt;}
.y4b{bottom:346.466667pt;}
.y24{bottom:347.906667pt;}
.ye9{bottom:349.506667pt;}
.yc0{bottom:357.186667pt;}
.y77{bottom:360.226667pt;}
.y4a{bottom:361.826667pt;}
.y23{bottom:363.266667pt;}
.ye8{bottom:364.866667pt;}
.ybf{bottom:372.546667pt;}
.y76{bottom:375.586667pt;}
.y49{bottom:377.026667pt;}
.y22{bottom:378.626667pt;}
.ye7{bottom:380.226667pt;}
.ybe{bottom:387.906667pt;}
.y75{bottom:390.946667pt;}
.y48{bottom:392.386667pt;}
.y21{bottom:393.986667pt;}
.ye6{bottom:395.426667pt;}
.ybd{bottom:403.106667pt;}
.y74{bottom:406.306667pt;}
.y47{bottom:407.746667pt;}
.y20{bottom:409.346667pt;}
.ye5{bottom:410.786667pt;}
.ybc{bottom:418.946667pt;}
.y73{bottom:421.506667pt;}
.y46{bottom:423.106667pt;}
.y1f{bottom:424.706667pt;}
.ye4{bottom:426.146667pt;}
.ybb{bottom:435.426667pt;}
.y72{bottom:436.866667pt;}
.y45{bottom:438.466667pt;}
.y1e{bottom:439.906667pt;}
.ye3{bottom:441.506667pt;}
.yba{bottom:450.626667pt;}
.y71{bottom:452.226667pt;}
.y44{bottom:454.146667pt;}
.y1d{bottom:455.266667pt;}
.ye2{bottom:456.866667pt;}
.yb9{bottom:465.986667pt;}
.y70{bottom:467.586667pt;}
.y1c{bottom:470.626667pt;}
.ye1{bottom:472.226667pt;}
.yb8{bottom:481.346667pt;}
.y6f{bottom:483.266667pt;}
.yf3{bottom:484.386667pt;}
.y1b{bottom:485.986667pt;}
.ye0{bottom:487.426667pt;}
.yb7{bottom:496.706667pt;}
.y6e{bottom:499.773333pt;}
.y1a{bottom:501.373333pt;}
.y43{bottom:502.813333pt;}
.yb6{bottom:512.093333pt;}
.y6d{bottom:515.133333pt;}
.y19{bottom:516.573333pt;}
.y42{bottom:518.173333pt;}
.yb5{bottom:527.453333pt;}
.y6c{bottom:530.493333pt;}
.y18{bottom:531.933333pt;}
.y41{bottom:533.533333pt;}
.y6b{bottom:545.853333pt;}
.yd3{bottom:547.293333pt;}
.y40{bottom:548.893333pt;}
.yb4{bottom:559.613333pt;}
.y6a{bottom:561.053333pt;}
.yd2{bottom:562.653333pt;}
.y17{bottom:564.253333pt;}
.yb3{bottom:574.973333pt;}
.y69{bottom:576.413333pt;}
.y96{bottom:578.013333pt;}
.y16{bottom:579.453333pt;}
.yb2{bottom:590.173333pt;}
.y68{bottom:591.773333pt;}
.y95{bottom:593.373333pt;}
.y15{bottom:594.813333pt;}
.yb1{bottom:605.533333pt;}
.y67{bottom:607.133333pt;}
.y94{bottom:608.573333pt;}
.y14{bottom:610.173333pt;}
.yb0{bottom:620.893333pt;}
.y66{bottom:622.493333pt;}
.y93{bottom:623.933333pt;}
.y13{bottom:625.533333pt;}
.yaf{bottom:636.253333pt;}
.yf2{bottom:637.853333pt;}
.y65{bottom:638.173333pt;}
.y92{bottom:639.293333pt;}
.y12{bottom:640.893333pt;}
.yae{bottom:651.933333pt;}
.yf1{bottom:653.053333pt;}
.y64{bottom:654.653333pt;}
.y11{bottom:656.093333pt;}
.yad{bottom:668.413333pt;}
.yf0{bottom:668.893333pt;}
.y63{bottom:670.013333pt;}
.y10{bottom:671.453333pt;}
.yac{bottom:683.773333pt;}
.y62{bottom:685.373333pt;}
.yf{bottom:686.813333pt;}
.yab{bottom:699.133333pt;}
.y61{bottom:700.573333pt;}
.ye{bottom:702.173333pt;}
.yaa{bottom:714.493333pt;}
.y60{bottom:715.933333pt;}
.yd{bottom:717.533333pt;}
.ya9{bottom:729.733333pt;}
.y5f{bottom:731.333333pt;}
.yc{bottom:732.933333pt;}
.ya8{bottom:745.093333pt;}
.y5e{bottom:746.693333pt;}
.yb{bottom:748.133333pt;}
.ya7{bottom:760.453333pt;}
.y5d{bottom:762.053333pt;}
.ya{bottom:763.493333pt;}
.ya6{bottom:776.133333pt;}
.y5c{bottom:777.413333pt;}
.y3f{bottom:778.853333pt;}
.y9{bottom:779.333333pt;}
.y91{bottom:792.613333pt;}
.y5b{bottom:793.093333pt;}
.y3e{bottom:794.213333pt;}
.y8{bottom:795.813333pt;}
.y90{bottom:807.973333pt;}
.y3d{bottom:809.573333pt;}
.y7{bottom:816.773333pt;}
.y8f{bottom:823.333333pt;}
.y3c{bottom:824.933333pt;}
.y6{bottom:833.573333pt;}
.y8e{bottom:838.693333pt;}
.yd1{bottom:839.013333pt;}
.y3b{bottom:840.133333pt;}
.y5{bottom:845.573333pt;}
.y8d{bottom:854.053333pt;}
.y3a{bottom:855.493333pt;}
.y4{bottom:866.533333pt;}
.y8c{bottom:869.253333pt;}
.y39{bottom:870.853333pt;}
.y8b{bottom:884.613333pt;}
.y38{bottom:886.213333pt;}
.y3{bottom:891.013333pt;}
.y8a{bottom:899.973333pt;}
.y37{bottom:901.573333pt;}
.y89{bottom:915.333333pt;}
.y2{bottom:915.653333pt;}
.y36{bottom:916.933333pt;}
.y88{bottom:930.693333pt;}
.y35{bottom:932.133333pt;}
.y1{bottom:940.133333pt;}
.y87{bottom:946.400000pt;}
.y34{bottom:947.520000pt;}
.hb{height:19.680000pt;}
.h3{height:36.667500pt;}
.h7{height:37.090625pt;}
.hc{height:43.782500pt;}
.ha{height:47.392000pt;}
.h9{height:52.108438pt;}
.h4{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h5{height:59.340000pt;}
.h2{height:68.916875pt;}
.h1{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w2{width:103.200000pt;}
.w3{width:160.026667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.xe{left:9.600000pt;}
.x11{left:14.240000pt;}
.xd{left:20.960000pt;}
.xf{left:22.240000pt;}
.x14{left:24.480000pt;}
.x12{left:44.160000pt;}
.x15{left:65.000000pt;}
.x7{left:120.031988pt;}
.x1{left:136.346655pt;}
.x8{left:144.026655pt;}
.x17{left:156.026655pt;}
.x9{left:168.026655pt;}
.x5{left:169.466655pt;}
.x6{left:186.106655pt;}
.xc{left:223.226667pt;}
.x2{left:228.186655pt;}
.x4{left:248.506655pt;}
.x16{left:365.666655pt;}
.x10{left:383.266667pt;}
.x3{left:408.066655pt;}
.x13{left:543.293333pt;}
.xa{left:688.133321pt;}
}




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