
    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_a92b6c8fd4282211c1435645.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_8b7ac963de4eb69ea551e9db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_6a7c4573479c52cfff3e2916.woff2')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_cef5610956df278450a52b6b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_7611bee29fdd11ac48e76329.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_75c2336cd5c1705eb9fa52c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_e77aed3c2d072a6e2ff32a7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls3{letter-spacing:-0.960000px;}
.ls10{letter-spacing:-0.618000px;}
.ls5{letter-spacing:-0.270600px;}
.ls6{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.094800px;}
.ls4{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.100800px;}
.lsc{letter-spacing:0.122400px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.187200px;}
.lsa{letter-spacing:0.190800px;}
.lsb{letter-spacing:0.219000px;}
.ls7{letter-spacing:0.328200px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:39.161280px;}
.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;}
}
.wsa{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.ws0{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.831800px;}
.ws7{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.342200px;}
.ws1{word-spacing:-9.187200px;}
.ws8{word-spacing:-9.092400px;}
.ws4{word-spacing:-7.920000px;}
.ws3{word-spacing:-7.884000px;}
.ws5{word-spacing:0.000000px;}
._14{margin-left:-10.972800px;}
._26{margin-left:-4.890240px;}
._1e{margin-left:-3.655440px;}
._6{margin-left:-2.321760px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._8{width:2.151360px;}
._7{width:3.286800px;}
._e{width:4.601520px;}
._d{width:5.856480px;}
._16{width:7.376880px;}
._11{width:8.493360px;}
._b{width:10.226400px;}
._c{width:11.438400px;}
._15{width:13.380480px;}
._4{width:14.882640px;}
._f{width:15.963360px;}
._10{width:17.330400px;}
._13{width:19.123200px;}
._1c{width:20.422080px;}
._25{width:21.573360px;}
._24{width:22.720320px;}
._23{width:24.111360px;}
._1b{width:25.351200px;}
._1a{width:26.402400px;}
._19{width:27.622080px;}
._9{width:28.744560px;}
._a{width:29.901840px;}
._28{width:31.306800px;}
._1d{width:32.457600px;}
._22{width:34.246080px;}
._21{width:35.372160px;}
._27{width:36.498240px;}
._1f{width:44.996400px;}
._17{width:46.814040px;}
._12{width:50.616720px;}
._29{width:54.449280px;}
._2a{width:55.707840px;}
._20{width:58.357440px;}
._2c{width:62.279520px;}
._2b{width:63.603840px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._2d{width:201.403200px;}
._5{width:202.972800px;}
._18{width:1056.007200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y86{bottom:2.880000px;}
.y87{bottom:25.425000px;}
.y53{bottom:47.370000px;}
.y8{bottom:56.340000px;}
.y55{bottom:56.520000px;}
.y52{bottom:57.990000px;}
.y51{bottom:68.610000px;}
.y7{bottom:70.416000px;}
.y50{bottom:79.050000px;}
.y6{bottom:84.456000px;}
.y4f{bottom:96.690000px;}
.y83{bottom:115.596000px;}
.y99{bottom:121.716000px;}
.y3e{bottom:124.416000px;}
.yb7{bottom:130.356000px;}
.y82{bottom:137.916000px;}
.y89{bottom:140.040000px;}
.y4e{bottom:141.150000px;}
.y98{bottom:143.856000px;}
.y3d{bottom:146.556000px;}
.y8a{bottom:152.490000px;}
.yb6{bottom:152.670000px;}
.y81{bottom:160.050000px;}
.y4d{bottom:160.590000px;}
.y97{bottom:166.170000px;}
.y88{bottom:168.330000px;}
.y3c{bottom:168.870000px;}
.y4c{bottom:174.630000px;}
.yb5{bottom:174.810000px;}
.y80{bottom:182.370000px;}
.y96{bottom:188.310000px;}
.y4b{bottom:188.670000px;}
.y3b{bottom:191.010000px;}
.yb4{bottom:197.130000px;}
.y4a{bottom:202.710000px;}
.y7f{bottom:204.510000px;}
.y95{bottom:210.630000px;}
.y3a{bottom:213.330000px;}
.y49{bottom:216.930000px;}
.yb3{bottom:219.450000px;}
.y7e{bottom:226.830000px;}
.y48{bottom:230.970000px;}
.y94{bottom:232.950000px;}
.y39{bottom:235.650000px;}
.yb2{bottom:241.590000px;}
.y47{bottom:245.010000px;}
.y7d{bottom:249.150000px;}
.y93{bottom:255.090000px;}
.y38{bottom:257.790000px;}
.y46{bottom:259.050000px;}
.yb1{bottom:263.910000px;}
.y7c{bottom:271.290000px;}
.y45{bottom:273.090000px;}
.y37{bottom:277.410000px;}
.yb0{bottom:286.050000px;}
.y44{bottom:287.130000px;}
.y7b{bottom:293.610000px;}
.y36{bottom:296.670000px;}
.y92{bottom:299.550000px;}
.y43{bottom:301.395000px;}
.yaf{bottom:308.370000px;}
.y42{bottom:315.435000px;}
.y35{bottom:315.750000px;}
.yd2{bottom:319.170000px;}
.y91{bottom:321.870000px;}
.y85{bottom:324.210000px;}
.y41{bottom:329.475000px;}
.yae{bottom:330.690000px;}
.y34{bottom:333.390000px;}
.y7a{bottom:338.115000px;}
.yd1{bottom:341.355000px;}
.y40{bottom:343.875000px;}
.y90{bottom:344.235000px;}
.y33{bottom:351.075000px;}
.yad{bottom:352.875000px;}
.y79{bottom:360.255000px;}
.yd0{bottom:363.675000px;}
.y8f{bottom:366.375000px;}
.y32{bottom:368.535000px;}
.yac{bottom:375.195000px;}
.y78{bottom:382.575000px;}
.ycf{bottom:385.815000px;}
.y31{bottom:386.175000px;}
.y8e{bottom:388.695000px;}
.yab{bottom:397.335000px;}
.y30{bottom:403.815000px;}
.y77{bottom:404.895000px;}
.yce{bottom:408.135000px;}
.y8d{bottom:410.835000px;}
.yaa{bottom:419.655000px;}
.y2f{bottom:421.275000px;}
.y76{bottom:427.035000px;}
.ycd{bottom:430.455000px;}
.y8c{bottom:433.155000px;}
.y2e{bottom:438.915000px;}
.ya9{bottom:441.795000px;}
.y75{bottom:449.355000px;}
.ycc{bottom:452.595000px;}
.y8b{bottom:455.295000px;}
.y2d{bottom:456.555000px;}
.ya8{bottom:464.115000px;}
.y74{bottom:471.495000px;}
.y2c{bottom:474.015000px;}
.ycb{bottom:474.915000px;}
.ya7{bottom:486.435000px;}
.y2b{bottom:491.655000px;}
.y73{bottom:493.815000px;}
.yca{bottom:497.055000px;}
.ya6{bottom:508.575000px;}
.y2a{bottom:509.295000px;}
.y72{bottom:516.135000px;}
.yc9{bottom:519.375000px;}
.y29{bottom:526.935000px;}
.ya5{bottom:530.895000px;}
.y71{bottom:538.275000px;}
.yc8{bottom:541.695000px;}
.y28{bottom:544.395000px;}
.ya4{bottom:553.035000px;}
.y70{bottom:560.595000px;}
.y27{bottom:562.035000px;}
.yc7{bottom:563.835000px;}
.ya3{bottom:575.355000px;}
.y3f{bottom:576.075000px;}
.y26{bottom:579.675000px;}
.y6f{bottom:582.735000px;}
.yc6{bottom:586.155000px;}
.y25{bottom:597.135000px;}
.ya2{bottom:597.675000px;}
.y6e{bottom:605.085000px;}
.yc5{bottom:608.325000px;}
.y24{bottom:614.805000px;}
.ya1{bottom:619.845000px;}
.y6d{bottom:627.405000px;}
.yc4{bottom:630.645000px;}
.y23{bottom:632.445000px;}
.ya0{bottom:642.165000px;}
.y6c{bottom:649.545000px;}
.y22{bottom:649.905000px;}
.yc3{bottom:652.785000px;}
.y9f{bottom:664.305000px;}
.y21{bottom:667.545000px;}
.y6b{bottom:671.865000px;}
.yc2{bottom:675.105000px;}
.y20{bottom:685.185000px;}
.y9e{bottom:686.625000px;}
.y6a{bottom:694.005000px;}
.yc1{bottom:697.425000px;}
.y1f{bottom:702.825000px;}
.y9d{bottom:708.945000px;}
.y69{bottom:716.325000px;}
.yc0{bottom:719.565000px;}
.y1e{bottom:720.285000px;}
.y9c{bottom:731.085000px;}
.y1d{bottom:737.925000px;}
.y68{bottom:738.465000px;}
.ybf{bottom:741.885000px;}
.y9b{bottom:753.405000px;}
.y1c{bottom:755.565000px;}
.y67{bottom:760.785000px;}
.ybe{bottom:764.025000px;}
.y9a{bottom:771.945000px;}
.y1b{bottom:773.025000px;}
.y66{bottom:783.105000px;}
.ybd{bottom:786.345000px;}
.y1a{bottom:790.665000px;}
.y65{bottom:805.245000px;}
.y19{bottom:808.305000px;}
.ybc{bottom:808.665000px;}
.y18{bottom:825.765000px;}
.y64{bottom:827.565000px;}
.ybb{bottom:830.805000px;}
.y17{bottom:843.405000px;}
.y63{bottom:849.705000px;}
.yd3{bottom:850.065000px;}
.yba{bottom:853.125000px;}
.y16{bottom:861.045000px;}
.y62{bottom:872.070000px;}
.yb9{bottom:875.310000px;}
.y15{bottom:878.550000px;}
.yb8{bottom:894.030000px;}
.y61{bottom:894.390000px;}
.y14{bottom:896.190000px;}
.y13{bottom:913.830000px;}
.y60{bottom:916.530000px;}
.y12{bottom:931.470000px;}
.y5f{bottom:938.850000px;}
.y11{bottom:948.930000px;}
.y5e{bottom:960.990000px;}
.y10{bottom:966.750000px;}
.y5d{bottom:983.310000px;}
.yf{bottom:985.830000px;}
.ye{bottom:1003.830000px;}
.y5c{bottom:1005.450000px;}
.yd{bottom:1023.090000px;}
.y5b{bottom:1027.770000px;}
.yc{bottom:1043.070000px;}
.y5a{bottom:1050.090000px;}
.yb{bottom:1065.930000px;}
.y59{bottom:1072.230000px;}
.ya{bottom:1088.790000px;}
.y58{bottom:1094.550000px;}
.y9{bottom:1111.110000px;}
.y57{bottom:1116.690000px;}
.y5{bottom:1133.250000px;}
.y56{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y84{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y54{bottom:1197.540000px;}
.hb{height:30.480469px;}
.h5{height:33.683203px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.hf{height:46.251562px;}
.ha{height:50.273438px;}
.h8{height:50.597578px;}
.h6{height:56.084062px;}
.hc{height:58.819922px;}
.h7{height:65.837812px;}
.he{height:155.880000px;}
.hd{height:207.750000px;}
.h9{height:356.655000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w5{width:327.855000px;}
.w4{width:349.230000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.xb{left:106.014000px;}
.x1{left:108.035987px;}
.x2{left:128.195987px;}
.x12{left:135.035987px;}
.x16{left:140.075987px;}
.x3{left:158.789987px;}
.xa{left:161.129987px;}
.x6{left:188.849987px;}
.xf{left:293.835000px;}
.x7{left:312.734987px;}
.x8{left:324.074987px;}
.x9{left:330.914987px;}
.xd{left:341.139000px;}
.x4{left:392.834987px;}
.x5{left:446.474987px;}
.xe{left:457.275000px;}
.xc{left:495.824987px;}
.x14{left:564.584987px;}
.x11{left:574.844987px;}
.x15{left:680.549987px;}
.x13{left:726.629987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls3{letter-spacing:-0.853333pt;}
.ls10{letter-spacing:-0.549333pt;}
.ls5{letter-spacing:-0.240533pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.084267pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.089600pt;}
.lsc{letter-spacing:0.108800pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.166400pt;}
.lsa{letter-spacing:0.169600pt;}
.lsb{letter-spacing:0.194667pt;}
.ls7{letter-spacing:0.291733pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:34.810027pt;}
.wsa{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.ws0{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.628267pt;}
.ws7{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.193067pt;}
.ws1{word-spacing:-8.166400pt;}
.ws8{word-spacing:-8.082133pt;}
.ws4{word-spacing:-7.040000pt;}
.ws3{word-spacing:-7.008000pt;}
.ws5{word-spacing:0.000000pt;}
._14{margin-left:-9.753600pt;}
._26{margin-left:-4.346880pt;}
._1e{margin-left:-3.249280pt;}
._6{margin-left:-2.063787pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._8{width:1.912320pt;}
._7{width:2.921600pt;}
._e{width:4.090240pt;}
._d{width:5.205760pt;}
._16{width:6.557227pt;}
._11{width:7.549653pt;}
._b{width:9.090133pt;}
._c{width:10.167467pt;}
._15{width:11.893760pt;}
._4{width:13.229013pt;}
._f{width:14.189653pt;}
._10{width:15.404800pt;}
._13{width:16.998400pt;}
._1c{width:18.152960pt;}
._25{width:19.176320pt;}
._24{width:20.195840pt;}
._23{width:21.432320pt;}
._1b{width:22.534400pt;}
._1a{width:23.468800pt;}
._19{width:24.552960pt;}
._9{width:25.550720pt;}
._a{width:26.579413pt;}
._28{width:27.828267pt;}
._1d{width:28.851200pt;}
._22{width:30.440960pt;}
._21{width:31.441920pt;}
._27{width:32.442880pt;}
._1f{width:39.996800pt;}
._17{width:41.612480pt;}
._12{width:44.992640pt;}
._29{width:48.399360pt;}
._2a{width:49.518080pt;}
._20{width:51.873280pt;}
._2c{width:55.359573pt;}
._2b{width:56.536747pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._2d{width:179.025067pt;}
._5{width:180.420267pt;}
._18{width:938.673067pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:2.560000pt;}
.y87{bottom:22.600000pt;}
.y53{bottom:42.106667pt;}
.y8{bottom:50.080000pt;}
.y55{bottom:50.240000pt;}
.y52{bottom:51.546667pt;}
.y51{bottom:60.986667pt;}
.y7{bottom:62.592000pt;}
.y50{bottom:70.266667pt;}
.y6{bottom:75.072000pt;}
.y4f{bottom:85.946667pt;}
.y83{bottom:102.752000pt;}
.y99{bottom:108.192000pt;}
.y3e{bottom:110.592000pt;}
.yb7{bottom:115.872000pt;}
.y82{bottom:122.592000pt;}
.y89{bottom:124.480000pt;}
.y4e{bottom:125.466667pt;}
.y98{bottom:127.872000pt;}
.y3d{bottom:130.272000pt;}
.y8a{bottom:135.546667pt;}
.yb6{bottom:135.706667pt;}
.y81{bottom:142.266667pt;}
.y4d{bottom:142.746667pt;}
.y97{bottom:147.706667pt;}
.y88{bottom:149.626667pt;}
.y3c{bottom:150.106667pt;}
.y4c{bottom:155.226667pt;}
.yb5{bottom:155.386667pt;}
.y80{bottom:162.106667pt;}
.y96{bottom:167.386667pt;}
.y4b{bottom:167.706667pt;}
.y3b{bottom:169.786667pt;}
.yb4{bottom:175.226667pt;}
.y4a{bottom:180.186667pt;}
.y7f{bottom:181.786667pt;}
.y95{bottom:187.226667pt;}
.y3a{bottom:189.626667pt;}
.y49{bottom:192.826667pt;}
.yb3{bottom:195.066667pt;}
.y7e{bottom:201.626667pt;}
.y48{bottom:205.306667pt;}
.y94{bottom:207.066667pt;}
.y39{bottom:209.466667pt;}
.yb2{bottom:214.746667pt;}
.y47{bottom:217.786667pt;}
.y7d{bottom:221.466667pt;}
.y93{bottom:226.746667pt;}
.y38{bottom:229.146667pt;}
.y46{bottom:230.266667pt;}
.yb1{bottom:234.586667pt;}
.y7c{bottom:241.146667pt;}
.y45{bottom:242.746667pt;}
.y37{bottom:246.586667pt;}
.yb0{bottom:254.266667pt;}
.y44{bottom:255.226667pt;}
.y7b{bottom:260.986667pt;}
.y36{bottom:263.706667pt;}
.y92{bottom:266.266667pt;}
.y43{bottom:267.906667pt;}
.yaf{bottom:274.106667pt;}
.y42{bottom:280.386667pt;}
.y35{bottom:280.666667pt;}
.yd2{bottom:283.706667pt;}
.y91{bottom:286.106667pt;}
.y85{bottom:288.186667pt;}
.y41{bottom:292.866667pt;}
.yae{bottom:293.946667pt;}
.y34{bottom:296.346667pt;}
.y7a{bottom:300.546667pt;}
.yd1{bottom:303.426667pt;}
.y40{bottom:305.666667pt;}
.y90{bottom:305.986667pt;}
.y33{bottom:312.066667pt;}
.yad{bottom:313.666667pt;}
.y79{bottom:320.226667pt;}
.yd0{bottom:323.266667pt;}
.y8f{bottom:325.666667pt;}
.y32{bottom:327.586667pt;}
.yac{bottom:333.506667pt;}
.y78{bottom:340.066667pt;}
.ycf{bottom:342.946667pt;}
.y31{bottom:343.266667pt;}
.y8e{bottom:345.506667pt;}
.yab{bottom:353.186667pt;}
.y30{bottom:358.946667pt;}
.y77{bottom:359.906667pt;}
.yce{bottom:362.786667pt;}
.y8d{bottom:365.186667pt;}
.yaa{bottom:373.026667pt;}
.y2f{bottom:374.466667pt;}
.y76{bottom:379.586667pt;}
.ycd{bottom:382.626667pt;}
.y8c{bottom:385.026667pt;}
.y2e{bottom:390.146667pt;}
.ya9{bottom:392.706667pt;}
.y75{bottom:399.426667pt;}
.ycc{bottom:402.306667pt;}
.y8b{bottom:404.706667pt;}
.y2d{bottom:405.826667pt;}
.ya8{bottom:412.546667pt;}
.y74{bottom:419.106667pt;}
.y2c{bottom:421.346667pt;}
.ycb{bottom:422.146667pt;}
.ya7{bottom:432.386667pt;}
.y2b{bottom:437.026667pt;}
.y73{bottom:438.946667pt;}
.yca{bottom:441.826667pt;}
.ya6{bottom:452.066667pt;}
.y2a{bottom:452.706667pt;}
.y72{bottom:458.786667pt;}
.yc9{bottom:461.666667pt;}
.y29{bottom:468.386667pt;}
.ya5{bottom:471.906667pt;}
.y71{bottom:478.466667pt;}
.yc8{bottom:481.506667pt;}
.y28{bottom:483.906667pt;}
.ya4{bottom:491.586667pt;}
.y70{bottom:498.306667pt;}
.y27{bottom:499.586667pt;}
.yc7{bottom:501.186667pt;}
.ya3{bottom:511.426667pt;}
.y3f{bottom:512.066667pt;}
.y26{bottom:515.266667pt;}
.y6f{bottom:517.986667pt;}
.yc6{bottom:521.026667pt;}
.y25{bottom:530.786667pt;}
.ya2{bottom:531.266667pt;}
.y6e{bottom:537.853333pt;}
.yc5{bottom:540.733333pt;}
.y24{bottom:546.493333pt;}
.ya1{bottom:550.973333pt;}
.y6d{bottom:557.693333pt;}
.yc4{bottom:560.573333pt;}
.y23{bottom:562.173333pt;}
.ya0{bottom:570.813333pt;}
.y6c{bottom:577.373333pt;}
.y22{bottom:577.693333pt;}
.yc3{bottom:580.253333pt;}
.y9f{bottom:590.493333pt;}
.y21{bottom:593.373333pt;}
.y6b{bottom:597.213333pt;}
.yc2{bottom:600.093333pt;}
.y20{bottom:609.053333pt;}
.y9e{bottom:610.333333pt;}
.y6a{bottom:616.893333pt;}
.yc1{bottom:619.933333pt;}
.y1f{bottom:624.733333pt;}
.y9d{bottom:630.173333pt;}
.y69{bottom:636.733333pt;}
.yc0{bottom:639.613333pt;}
.y1e{bottom:640.253333pt;}
.y9c{bottom:649.853333pt;}
.y1d{bottom:655.933333pt;}
.y68{bottom:656.413333pt;}
.ybf{bottom:659.453333pt;}
.y9b{bottom:669.693333pt;}
.y1c{bottom:671.613333pt;}
.y67{bottom:676.253333pt;}
.ybe{bottom:679.133333pt;}
.y9a{bottom:686.173333pt;}
.y1b{bottom:687.133333pt;}
.y66{bottom:696.093333pt;}
.ybd{bottom:698.973333pt;}
.y1a{bottom:702.813333pt;}
.y65{bottom:715.773333pt;}
.y19{bottom:718.493333pt;}
.ybc{bottom:718.813333pt;}
.y18{bottom:734.013333pt;}
.y64{bottom:735.613333pt;}
.ybb{bottom:738.493333pt;}
.y17{bottom:749.693333pt;}
.y63{bottom:755.293333pt;}
.yd3{bottom:755.613333pt;}
.yba{bottom:758.333333pt;}
.y16{bottom:765.373333pt;}
.y62{bottom:775.173333pt;}
.yb9{bottom:778.053333pt;}
.y15{bottom:780.933333pt;}
.yb8{bottom:794.693333pt;}
.y61{bottom:795.013333pt;}
.y14{bottom:796.613333pt;}
.y13{bottom:812.293333pt;}
.y60{bottom:814.693333pt;}
.y12{bottom:827.973333pt;}
.y5f{bottom:834.533333pt;}
.y11{bottom:843.493333pt;}
.y5e{bottom:854.213333pt;}
.y10{bottom:859.333333pt;}
.y5d{bottom:874.053333pt;}
.yf{bottom:876.293333pt;}
.ye{bottom:892.293333pt;}
.y5c{bottom:893.733333pt;}
.yd{bottom:909.413333pt;}
.y5b{bottom:913.573333pt;}
.yc{bottom:927.173333pt;}
.y5a{bottom:933.413333pt;}
.yb{bottom:947.493333pt;}
.y59{bottom:953.093333pt;}
.ya{bottom:967.813333pt;}
.y58{bottom:972.933333pt;}
.y9{bottom:987.653333pt;}
.y57{bottom:992.613333pt;}
.y5{bottom:1007.333333pt;}
.y56{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y84{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y54{bottom:1064.480000pt;}
.hb{height:27.093750pt;}
.h5{height:29.940625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.hf{height:41.112500pt;}
.ha{height:44.687500pt;}
.h8{height:44.975625pt;}
.h6{height:49.852500pt;}
.hc{height:52.284375pt;}
.h7{height:58.522500pt;}
.he{height:138.560000pt;}
.hd{height:184.666667pt;}
.h9{height:317.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w5{width:291.426667pt;}
.w4{width:310.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.xb{left:94.234667pt;}
.x1{left:96.031988pt;}
.x2{left:113.951988pt;}
.x12{left:120.031988pt;}
.x16{left:124.511988pt;}
.x3{left:141.146655pt;}
.xa{left:143.226655pt;}
.x6{left:167.866655pt;}
.xf{left:261.186667pt;}
.x7{left:277.986655pt;}
.x8{left:288.066655pt;}
.x9{left:294.146655pt;}
.xd{left:303.234667pt;}
.x4{left:349.186655pt;}
.x5{left:396.866655pt;}
.xe{left:406.466667pt;}
.xc{left:440.733322pt;}
.x14{left:501.853322pt;}
.x11{left:510.973322pt;}
.x15{left:604.933322pt;}
.x13{left:645.893322pt;}
}




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