
    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_50c555ee471a2a7a3c1050df.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_64002540f35793c0de317095.woff2')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_8ac5e1071c17119124b6722d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_19df4d06426a8fb969d75213.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b0b031344adcdbb1b2d54248.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d2d4f20df59367eebd4adf70.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dde23133058641a32a07f426.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_0b4953d604a92042028edcfa.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b3dbeeec4afd630712aa6cb3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142090;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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:68.400000px;}
.ls6{letter-spacing:-0.058320px;}
.ls10{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.226080px;}
.lsc{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.365760px;}
.ls8{letter-spacing:37.560000px;}
.ls2{letter-spacing:37.584000px;}
.ls11{letter-spacing:44.100000px;}
.ls9{letter-spacing:49.602720px;}
.lsa{letter-spacing:49.626720px;}
.lse{letter-spacing:434.340000px;}
.ls0{letter-spacing:1732.794240px;}
.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;}
}
.ws5{word-spacing:-32.808240px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws3{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-3.286800px;}
._2{margin-left:-1.553760px;}
._0{width:1.075680px;}
._a{width:2.270880px;}
._4{width:4.174320px;}
._3{width:5.318640px;}
._6{width:6.800160px;}
._d{width:8.127360px;}
._5{width:9.203040px;}
._9{width:11.115360px;}
._8{width:12.788640px;}
._13{width:13.864320px;}
._b{width:16.493760px;}
._e{width:17.509680px;}
._c{width:19.032480px;}
._10{width:20.050560px;}
._16{width:21.633120px;}
._f{width:22.768560px;}
._19{width:23.844240px;}
._1e{width:25.218720px;}
._15{width:27.011520px;}
._14{width:28.326240px;}
._18{width:33.226560px;}
._30{width:38.126880px;}
._2f{width:39.202560px;}
._17{width:42.608880px;}
._1d{width:44.401680px;}
._1c{width:45.656640px;}
._1a{width:54.082800px;}
._24{width:73.980000px;}
._31{width:87.756480px;}
._26{width:90.476640px;}
._25{width:91.671840px;}
._20{width:123.464160px;}
._2a{width:125.675280px;}
._29{width:127.049760px;}
._27{width:130.217040px;}
._2e{width:156.420000px;}
._22{width:166.431600px;}
._21{width:167.746320px;}
._28{width:212.506560px;}
._1f{width:221.829120px;}
._2b{width:232.048080px;}
._2d{width:234.438480px;}
._2c{width:367.105680px;}
._12{width:794.957280px;}
._32{width:849.216000px;}
._1b{width:947.315520px;}
._23{width:1093.727520px;}
._1{width:1159.677840px;}
._11{width:1732.050240px;}
.fc2{color:transparent;}
.fc1{color:rgb(68,68,68);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:92.520000px;}
.y106{bottom:93.960000px;}
.yb5{bottom:94.680000px;}
.y65{bottom:96.120000px;}
.y125{bottom:97.200000px;}
.yc6{bottom:109.800000px;}
.y105{bottom:111.240000px;}
.yb4{bottom:111.960000px;}
.y64{bottom:113.400000px;}
.y124{bottom:114.480000px;}
.y86{bottom:118.980000px;}
.y3c{bottom:126.000000px;}
.yc5{bottom:127.080000px;}
.y104{bottom:128.520000px;}
.yb3{bottom:129.240000px;}
.y63{bottom:130.680000px;}
.y123{bottom:131.760000px;}
.y85{bottom:136.296000px;}
.y3b{bottom:143.136000px;}
.yc4{bottom:144.396000px;}
.y103{bottom:145.836000px;}
.yb2{bottom:146.556000px;}
.y62{bottom:147.996000px;}
.y122{bottom:149.076000px;}
.y84{bottom:153.570000px;}
.y3a{bottom:160.410000px;}
.yc3{bottom:161.490000px;}
.y102{bottom:163.110000px;}
.yb1{bottom:164.730000px;}
.y61{bottom:165.090000px;}
.y121{bottom:166.350000px;}
.y83{bottom:170.670000px;}
.y39{bottom:177.690000px;}
.yc2{bottom:178.770000px;}
.y101{bottom:180.390000px;}
.yb0{bottom:182.010000px;}
.y60{bottom:182.370000px;}
.y120{bottom:183.630000px;}
.y82{bottom:187.950000px;}
.y38{bottom:194.970000px;}
.yc1{bottom:196.050000px;}
.y100{bottom:197.490000px;}
.yaf{bottom:199.290000px;}
.y5f{bottom:199.650000px;}
.y11f{bottom:200.730000px;}
.y81{bottom:205.230000px;}
.y37{bottom:212.250000px;}
.yc0{bottom:213.330000px;}
.yff{bottom:214.770000px;}
.yae{bottom:216.570000px;}
.y5e{bottom:216.930000px;}
.y11e{bottom:218.010000px;}
.y80{bottom:222.510000px;}
.y36{bottom:229.530000px;}
.ybf{bottom:230.610000px;}
.yfe{bottom:232.050000px;}
.yad{bottom:233.850000px;}
.y5d{bottom:234.210000px;}
.y11d{bottom:235.290000px;}
.y7f{bottom:239.790000px;}
.y35{bottom:246.630000px;}
.ybe{bottom:247.890000px;}
.yfd{bottom:249.330000px;}
.yac{bottom:251.130000px;}
.y5c{bottom:251.490000px;}
.y11c{bottom:252.570000px;}
.y7e{bottom:257.070000px;}
.y34{bottom:263.910000px;}
.ybd{bottom:264.990000px;}
.yfc{bottom:266.610000px;}
.yab{bottom:268.230000px;}
.y5b{bottom:268.590000px;}
.y11b{bottom:269.850000px;}
.y7d{bottom:274.170000px;}
.y33{bottom:281.190000px;}
.ybc{bottom:282.270000px;}
.yfb{bottom:283.890000px;}
.yaa{bottom:285.510000px;}
.y5a{bottom:285.870000px;}
.y11a{bottom:286.950000px;}
.y7c{bottom:288.210000px;}
.y32{bottom:298.470000px;}
.ybb{bottom:300.630000px;}
.yfa{bottom:300.990000px;}
.ya9{bottom:302.790000px;}
.y59{bottom:303.150000px;}
.y119{bottom:304.230000px;}
.y31{bottom:315.750000px;}
.yba{bottom:317.910000px;}
.yf9{bottom:318.270000px;}
.ya8{bottom:320.070000px;}
.y58{bottom:320.430000px;}
.y118{bottom:321.510000px;}
.y30{bottom:332.850000px;}
.yb9{bottom:335.190000px;}
.yf8{bottom:335.550000px;}
.ya7{bottom:337.350000px;}
.y57{bottom:337.710000px;}
.y117{bottom:338.790000px;}
.y2f{bottom:350.130000px;}
.yb8{bottom:352.470000px;}
.yf7{bottom:352.830000px;}
.ya6{bottom:354.630000px;}
.y56{bottom:354.810000px;}
.y116{bottom:356.070000px;}
.y2e{bottom:367.410000px;}
.yf6{bottom:370.110000px;}
.yb7{bottom:370.650000px;}
.ya5{bottom:371.730000px;}
.y55{bottom:372.090000px;}
.y115{bottom:373.350000px;}
.yde{bottom:381.450000px;}
.y2d{bottom:384.690000px;}
.yf5{bottom:387.435000px;}
.yb6{bottom:387.975000px;}
.ya4{bottom:389.055000px;}
.y54{bottom:389.415000px;}
.y114{bottom:390.495000px;}
.ydd{bottom:398.775000px;}
.y2c{bottom:402.015000px;}
.ya3{bottom:403.095000px;}
.yf4{bottom:404.535000px;}
.y53{bottom:406.695000px;}
.y113{bottom:407.775000px;}
.ydc{bottom:416.055000px;}
.y2b{bottom:419.295000px;}
.yf3{bottom:421.815000px;}
.y52{bottom:423.975000px;}
.y112{bottom:425.055000px;}
.ydb{bottom:433.335000px;}
.y2a{bottom:436.395000px;}
.yf2{bottom:439.095000px;}
.y51{bottom:441.255000px;}
.y111{bottom:442.335000px;}
.yda{bottom:450.615000px;}
.y29{bottom:453.675000px;}
.yf1{bottom:456.375000px;}
.y50{bottom:458.355000px;}
.y110{bottom:459.615000px;}
.yd9{bottom:467.895000px;}
.yf0{bottom:473.655000px;}
.y4f{bottom:475.635000px;}
.y10f{bottom:476.895000px;}
.yd8{bottom:484.995000px;}
.y28{bottom:488.235000px;}
.yef{bottom:491.835000px;}
.y4e{bottom:492.915000px;}
.y10e{bottom:493.995000px;}
.yd7{bottom:502.275000px;}
.y27{bottom:505.515000px;}
.yee{bottom:509.115000px;}
.y4d{bottom:510.195000px;}
.y10d{bottom:511.275000px;}
.yd6{bottom:519.555000px;}
.y26{bottom:522.795000px;}
.yed{bottom:526.395000px;}
.y4c{bottom:527.475000px;}
.y10c{bottom:528.555000px;}
.yd5{bottom:536.835000px;}
.y25{bottom:539.895000px;}
.yec{bottom:543.675000px;}
.y4b{bottom:544.755000px;}
.y10b{bottom:545.835000px;}
.yd4{bottom:554.115000px;}
.y24{bottom:557.175000px;}
.y4a{bottom:561.855000px;}
.yeb{bottom:562.035000px;}
.y10a{bottom:563.115000px;}
.yd3{bottom:571.395000px;}
.y23{bottom:574.455000px;}
.y49{bottom:579.135000px;}
.yea{bottom:579.315000px;}
.y109{bottom:580.395000px;}
.y12b{bottom:587.775000px;}
.yd2{bottom:588.495000px;}
.y22{bottom:591.735000px;}
.y48{bottom:596.415000px;}
.y108{bottom:597.495000px;}
.y74{bottom:600.015000px;}
.y12a{bottom:605.055000px;}
.yd1{bottom:605.775000px;}
.y21{bottom:609.015000px;}
.y47{bottom:613.695000px;}
.y107{bottom:614.775000px;}
.y73{bottom:617.295000px;}
.y129{bottom:622.335000px;}
.yd0{bottom:623.055000px;}
.y20{bottom:626.295000px;}
.y46{bottom:630.975000px;}
.ye9{bottom:632.055000px;}
.y72{bottom:634.575000px;}
.y128{bottom:639.615000px;}
.ycf{bottom:640.365000px;}
.y1f{bottom:643.425000px;}
.y7b{bottom:643.965000px;}
.y45{bottom:648.285000px;}
.ye8{bottom:649.365000px;}
.y71{bottom:654.945000px;}
.y127{bottom:656.925000px;}
.yce{bottom:657.645000px;}
.y1e{bottom:660.705000px;}
.y7a{bottom:661.245000px;}
.ye7{bottom:666.645000px;}
.y44{bottom:668.625000px;}
.ya2{bottom:670.785000px;}
.y70{bottom:672.225000px;}
.y126{bottom:674.025000px;}
.ycd{bottom:674.745000px;}
.y1d{bottom:677.985000px;}
.y79{bottom:678.525000px;}
.ye6{bottom:683.745000px;}
.y43{bottom:685.905000px;}
.y6f{bottom:689.505000px;}
.ya1{bottom:691.305000px;}
.ycc{bottom:692.025000px;}
.y1c{bottom:695.265000px;}
.y78{bottom:695.805000px;}
.ye5{bottom:701.025000px;}
.y42{bottom:706.245000px;}
.ya0{bottom:708.585000px;}
.ycb{bottom:709.305000px;}
.y6e{bottom:709.845000px;}
.y1b{bottom:712.545000px;}
.y77{bottom:713.085000px;}
.ye4{bottom:718.305000px;}
.y41{bottom:723.525000px;}
.y9f{bottom:725.865000px;}
.yca{bottom:726.585000px;}
.y6d{bottom:727.125000px;}
.y1a{bottom:729.645000px;}
.y76{bottom:730.185000px;}
.ye3{bottom:735.585000px;}
.y40{bottom:740.805000px;}
.y9e{bottom:743.145000px;}
.yc9{bottom:743.865000px;}
.y6c{bottom:744.405000px;}
.y19{bottom:746.925000px;}
.y75{bottom:747.465000px;}
.ye2{bottom:752.865000px;}
.yc8{bottom:757.905000px;}
.y9d{bottom:760.425000px;}
.y3f{bottom:761.145000px;}
.y18{bottom:764.205000px;}
.y6b{bottom:764.745000px;}
.ye1{bottom:770.145000px;}
.y9c{bottom:777.525000px;}
.y3e{bottom:778.425000px;}
.y17{bottom:781.485000px;}
.y6a{bottom:782.025000px;}
.ye0{bottom:787.245000px;}
.y9b{bottom:794.805000px;}
.y3d{bottom:795.705000px;}
.y16{bottom:798.765000px;}
.y69{bottom:799.305000px;}
.ydf{bottom:801.285000px;}
.y9a{bottom:812.085000px;}
.y68{bottom:813.345000px;}
.y15{bottom:816.045000px;}
.y99{bottom:829.365000px;}
.y14{bottom:833.145000px;}
.y98{bottom:846.645000px;}
.y13{bottom:850.425000px;}
.y97{bottom:863.925000px;}
.y12{bottom:867.705000px;}
.y96{bottom:881.025000px;}
.y11{bottom:884.985000px;}
.y95{bottom:898.350000px;}
.y10{bottom:902.310000px;}
.y94{bottom:915.630000px;}
.yf{bottom:919.590000px;}
.y93{bottom:932.910000px;}
.ye{bottom:936.690000px;}
.y92{bottom:950.190000px;}
.yd{bottom:953.970000px;}
.y91{bottom:967.470000px;}
.yc{bottom:971.250000px;}
.y90{bottom:984.570000px;}
.yb{bottom:988.530000px;}
.y8f{bottom:1001.850000px;}
.ya{bottom:1005.810000px;}
.y8e{bottom:1019.130000px;}
.y9{bottom:1023.090000px;}
.y8d{bottom:1036.410000px;}
.y8{bottom:1040.190000px;}
.y8c{bottom:1053.690000px;}
.y7{bottom:1057.470000px;}
.y8b{bottom:1070.790000px;}
.y6{bottom:1074.750000px;}
.y8a{bottom:1088.070000px;}
.y89{bottom:1105.350000px;}
.y5{bottom:1109.310000px;}
.y88{bottom:1122.630000px;}
.y4{bottom:1126.410000px;}
.y87{bottom:1139.910000px;}
.y3{bottom:1143.690000px;}
.y67{bottom:1157.220000px;}
.y2{bottom:1163.880000px;}
.y66{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.h7{height:53.573906px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.ha{height:61.423863px;}
.h8{height:74.004654px;}
.h3{height:81.949219px;}
.h9{height:127.051172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x4{left:117.395987px;}
.xa{left:136.115987px;}
.x7{left:281.774987px;}
.x2{left:317.054987px;}
.x5{left:399.854987px;}
.xc{left:457.304987px;}
.x3{left:461.444987px;}
.xb{left:487.004987px;}
.x8{left:537.944987px;}
.x6{left:707.549987px;}
.xf{left:784.229987px;}
.x9{left:786.749987px;}
.xd{left:792.689987px;}
.xe{left:1311.014987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:60.800000pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.200960pt;}
.lsc{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.325120pt;}
.ls8{letter-spacing:33.386667pt;}
.ls2{letter-spacing:33.408000pt;}
.ls11{letter-spacing:39.200000pt;}
.ls9{letter-spacing:44.091307pt;}
.lsa{letter-spacing:44.112640pt;}
.lse{letter-spacing:386.080000pt;}
.ls0{letter-spacing:1540.261547pt;}
.ws5{word-spacing:-29.162880pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-2.921600pt;}
._2{margin-left:-1.381120pt;}
._0{width:0.956160pt;}
._a{width:2.018560pt;}
._4{width:3.710507pt;}
._3{width:4.727680pt;}
._6{width:6.044587pt;}
._d{width:7.224320pt;}
._5{width:8.180480pt;}
._9{width:9.880320pt;}
._8{width:11.367680pt;}
._13{width:12.323840pt;}
._b{width:14.661120pt;}
._e{width:15.564160pt;}
._c{width:16.917760pt;}
._10{width:17.822720pt;}
._16{width:19.229440pt;}
._f{width:20.238720pt;}
._19{width:21.194880pt;}
._1e{width:22.416640pt;}
._15{width:24.010240pt;}
._14{width:25.178880pt;}
._18{width:29.534720pt;}
._30{width:33.890560pt;}
._2f{width:34.846720pt;}
._17{width:37.874560pt;}
._1d{width:39.468160pt;}
._1c{width:40.583680pt;}
._1a{width:48.073600pt;}
._24{width:65.760000pt;}
._31{width:78.005760pt;}
._26{width:80.423680pt;}
._25{width:81.486080pt;}
._20{width:109.745920pt;}
._2a{width:111.711360pt;}
._29{width:112.933120pt;}
._27{width:115.748480pt;}
._2e{width:139.040000pt;}
._22{width:147.939200pt;}
._21{width:149.107840pt;}
._28{width:188.894720pt;}
._1f{width:197.181440pt;}
._2b{width:206.264960pt;}
._2d{width:208.389760pt;}
._2c{width:326.316160pt;}
._12{width:706.628693pt;}
._32{width:754.858667pt;}
._1b{width:842.058240pt;}
._23{width:972.202240pt;}
._1{width:1030.824747pt;}
._11{width:1539.600213pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:82.240000pt;}
.y106{bottom:83.520000pt;}
.yb5{bottom:84.160000pt;}
.y65{bottom:85.440000pt;}
.y125{bottom:86.400000pt;}
.yc6{bottom:97.600000pt;}
.y105{bottom:98.880000pt;}
.yb4{bottom:99.520000pt;}
.y64{bottom:100.800000pt;}
.y124{bottom:101.760000pt;}
.y86{bottom:105.760000pt;}
.y3c{bottom:112.000000pt;}
.yc5{bottom:112.960000pt;}
.y104{bottom:114.240000pt;}
.yb3{bottom:114.880000pt;}
.y63{bottom:116.160000pt;}
.y123{bottom:117.120000pt;}
.y85{bottom:121.152000pt;}
.y3b{bottom:127.232000pt;}
.yc4{bottom:128.352000pt;}
.y103{bottom:129.632000pt;}
.yb2{bottom:130.272000pt;}
.y62{bottom:131.552000pt;}
.y122{bottom:132.512000pt;}
.y84{bottom:136.506667pt;}
.y3a{bottom:142.586667pt;}
.yc3{bottom:143.546667pt;}
.y102{bottom:144.986667pt;}
.yb1{bottom:146.426667pt;}
.y61{bottom:146.746667pt;}
.y121{bottom:147.866667pt;}
.y83{bottom:151.706667pt;}
.y39{bottom:157.946667pt;}
.yc2{bottom:158.906667pt;}
.y101{bottom:160.346667pt;}
.yb0{bottom:161.786667pt;}
.y60{bottom:162.106667pt;}
.y120{bottom:163.226667pt;}
.y82{bottom:167.066667pt;}
.y38{bottom:173.306667pt;}
.yc1{bottom:174.266667pt;}
.y100{bottom:175.546667pt;}
.yaf{bottom:177.146667pt;}
.y5f{bottom:177.466667pt;}
.y11f{bottom:178.426667pt;}
.y81{bottom:182.426667pt;}
.y37{bottom:188.666667pt;}
.yc0{bottom:189.626667pt;}
.yff{bottom:190.906667pt;}
.yae{bottom:192.506667pt;}
.y5e{bottom:192.826667pt;}
.y11e{bottom:193.786667pt;}
.y80{bottom:197.786667pt;}
.y36{bottom:204.026667pt;}
.ybf{bottom:204.986667pt;}
.yfe{bottom:206.266667pt;}
.yad{bottom:207.866667pt;}
.y5d{bottom:208.186667pt;}
.y11d{bottom:209.146667pt;}
.y7f{bottom:213.146667pt;}
.y35{bottom:219.226667pt;}
.ybe{bottom:220.346667pt;}
.yfd{bottom:221.626667pt;}
.yac{bottom:223.226667pt;}
.y5c{bottom:223.546667pt;}
.y11c{bottom:224.506667pt;}
.y7e{bottom:228.506667pt;}
.y34{bottom:234.586667pt;}
.ybd{bottom:235.546667pt;}
.yfc{bottom:236.986667pt;}
.yab{bottom:238.426667pt;}
.y5b{bottom:238.746667pt;}
.y11b{bottom:239.866667pt;}
.y7d{bottom:243.706667pt;}
.y33{bottom:249.946667pt;}
.ybc{bottom:250.906667pt;}
.yfb{bottom:252.346667pt;}
.yaa{bottom:253.786667pt;}
.y5a{bottom:254.106667pt;}
.y11a{bottom:255.066667pt;}
.y7c{bottom:256.186667pt;}
.y32{bottom:265.306667pt;}
.ybb{bottom:267.226667pt;}
.yfa{bottom:267.546667pt;}
.ya9{bottom:269.146667pt;}
.y59{bottom:269.466667pt;}
.y119{bottom:270.426667pt;}
.y31{bottom:280.666667pt;}
.yba{bottom:282.586667pt;}
.yf9{bottom:282.906667pt;}
.ya8{bottom:284.506667pt;}
.y58{bottom:284.826667pt;}
.y118{bottom:285.786667pt;}
.y30{bottom:295.866667pt;}
.yb9{bottom:297.946667pt;}
.yf8{bottom:298.266667pt;}
.ya7{bottom:299.866667pt;}
.y57{bottom:300.186667pt;}
.y117{bottom:301.146667pt;}
.y2f{bottom:311.226667pt;}
.yb8{bottom:313.306667pt;}
.yf7{bottom:313.626667pt;}
.ya6{bottom:315.226667pt;}
.y56{bottom:315.386667pt;}
.y116{bottom:316.506667pt;}
.y2e{bottom:326.586667pt;}
.yf6{bottom:328.986667pt;}
.yb7{bottom:329.466667pt;}
.ya5{bottom:330.426667pt;}
.y55{bottom:330.746667pt;}
.y115{bottom:331.866667pt;}
.yde{bottom:339.066667pt;}
.y2d{bottom:341.946667pt;}
.yf5{bottom:344.386667pt;}
.yb6{bottom:344.866667pt;}
.ya4{bottom:345.826667pt;}
.y54{bottom:346.146667pt;}
.y114{bottom:347.106667pt;}
.ydd{bottom:354.466667pt;}
.y2c{bottom:357.346667pt;}
.ya3{bottom:358.306667pt;}
.yf4{bottom:359.586667pt;}
.y53{bottom:361.506667pt;}
.y113{bottom:362.466667pt;}
.ydc{bottom:369.826667pt;}
.y2b{bottom:372.706667pt;}
.yf3{bottom:374.946667pt;}
.y52{bottom:376.866667pt;}
.y112{bottom:377.826667pt;}
.ydb{bottom:385.186667pt;}
.y2a{bottom:387.906667pt;}
.yf2{bottom:390.306667pt;}
.y51{bottom:392.226667pt;}
.y111{bottom:393.186667pt;}
.yda{bottom:400.546667pt;}
.y29{bottom:403.266667pt;}
.yf1{bottom:405.666667pt;}
.y50{bottom:407.426667pt;}
.y110{bottom:408.546667pt;}
.yd9{bottom:415.906667pt;}
.yf0{bottom:421.026667pt;}
.y4f{bottom:422.786667pt;}
.y10f{bottom:423.906667pt;}
.yd8{bottom:431.106667pt;}
.y28{bottom:433.986667pt;}
.yef{bottom:437.186667pt;}
.y4e{bottom:438.146667pt;}
.y10e{bottom:439.106667pt;}
.yd7{bottom:446.466667pt;}
.y27{bottom:449.346667pt;}
.yee{bottom:452.546667pt;}
.y4d{bottom:453.506667pt;}
.y10d{bottom:454.466667pt;}
.yd6{bottom:461.826667pt;}
.y26{bottom:464.706667pt;}
.yed{bottom:467.906667pt;}
.y4c{bottom:468.866667pt;}
.y10c{bottom:469.826667pt;}
.yd5{bottom:477.186667pt;}
.y25{bottom:479.906667pt;}
.yec{bottom:483.266667pt;}
.y4b{bottom:484.226667pt;}
.y10b{bottom:485.186667pt;}
.yd4{bottom:492.546667pt;}
.y24{bottom:495.266667pt;}
.y4a{bottom:499.426667pt;}
.yeb{bottom:499.586667pt;}
.y10a{bottom:500.546667pt;}
.yd3{bottom:507.906667pt;}
.y23{bottom:510.626667pt;}
.y49{bottom:514.786667pt;}
.yea{bottom:514.946667pt;}
.y109{bottom:515.906667pt;}
.y12b{bottom:522.466667pt;}
.yd2{bottom:523.106667pt;}
.y22{bottom:525.986667pt;}
.y48{bottom:530.146667pt;}
.y108{bottom:531.106667pt;}
.y74{bottom:533.346667pt;}
.y12a{bottom:537.826667pt;}
.yd1{bottom:538.466667pt;}
.y21{bottom:541.346667pt;}
.y47{bottom:545.506667pt;}
.y107{bottom:546.466667pt;}
.y73{bottom:548.706667pt;}
.y129{bottom:553.186667pt;}
.yd0{bottom:553.826667pt;}
.y20{bottom:556.706667pt;}
.y46{bottom:560.866667pt;}
.ye9{bottom:561.826667pt;}
.y72{bottom:564.066667pt;}
.y128{bottom:568.546667pt;}
.ycf{bottom:569.213333pt;}
.y1f{bottom:571.933333pt;}
.y7b{bottom:572.413333pt;}
.y45{bottom:576.253333pt;}
.ye8{bottom:577.213333pt;}
.y71{bottom:582.173333pt;}
.y127{bottom:583.933333pt;}
.yce{bottom:584.573333pt;}
.y1e{bottom:587.293333pt;}
.y7a{bottom:587.773333pt;}
.ye7{bottom:592.573333pt;}
.y44{bottom:594.333333pt;}
.ya2{bottom:596.253333pt;}
.y70{bottom:597.533333pt;}
.y126{bottom:599.133333pt;}
.ycd{bottom:599.773333pt;}
.y1d{bottom:602.653333pt;}
.y79{bottom:603.133333pt;}
.ye6{bottom:607.773333pt;}
.y43{bottom:609.693333pt;}
.y6f{bottom:612.893333pt;}
.ya1{bottom:614.493333pt;}
.ycc{bottom:615.133333pt;}
.y1c{bottom:618.013333pt;}
.y78{bottom:618.493333pt;}
.ye5{bottom:623.133333pt;}
.y42{bottom:627.773333pt;}
.ya0{bottom:629.853333pt;}
.ycb{bottom:630.493333pt;}
.y6e{bottom:630.973333pt;}
.y1b{bottom:633.373333pt;}
.y77{bottom:633.853333pt;}
.ye4{bottom:638.493333pt;}
.y41{bottom:643.133333pt;}
.y9f{bottom:645.213333pt;}
.yca{bottom:645.853333pt;}
.y6d{bottom:646.333333pt;}
.y1a{bottom:648.573333pt;}
.y76{bottom:649.053333pt;}
.ye3{bottom:653.853333pt;}
.y40{bottom:658.493333pt;}
.y9e{bottom:660.573333pt;}
.yc9{bottom:661.213333pt;}
.y6c{bottom:661.693333pt;}
.y19{bottom:663.933333pt;}
.y75{bottom:664.413333pt;}
.ye2{bottom:669.213333pt;}
.yc8{bottom:673.693333pt;}
.y9d{bottom:675.933333pt;}
.y3f{bottom:676.573333pt;}
.y18{bottom:679.293333pt;}
.y6b{bottom:679.773333pt;}
.ye1{bottom:684.573333pt;}
.y9c{bottom:691.133333pt;}
.y3e{bottom:691.933333pt;}
.y17{bottom:694.653333pt;}
.y6a{bottom:695.133333pt;}
.ye0{bottom:699.773333pt;}
.y9b{bottom:706.493333pt;}
.y3d{bottom:707.293333pt;}
.y16{bottom:710.013333pt;}
.y69{bottom:710.493333pt;}
.ydf{bottom:712.253333pt;}
.y9a{bottom:721.853333pt;}
.y68{bottom:722.973333pt;}
.y15{bottom:725.373333pt;}
.y99{bottom:737.213333pt;}
.y14{bottom:740.573333pt;}
.y98{bottom:752.573333pt;}
.y13{bottom:755.933333pt;}
.y97{bottom:767.933333pt;}
.y12{bottom:771.293333pt;}
.y96{bottom:783.133333pt;}
.y11{bottom:786.653333pt;}
.y95{bottom:798.533333pt;}
.y10{bottom:802.053333pt;}
.y94{bottom:813.893333pt;}
.yf{bottom:817.413333pt;}
.y93{bottom:829.253333pt;}
.ye{bottom:832.613333pt;}
.y92{bottom:844.613333pt;}
.yd{bottom:847.973333pt;}
.y91{bottom:859.973333pt;}
.yc{bottom:863.333333pt;}
.y90{bottom:875.173333pt;}
.yb{bottom:878.693333pt;}
.y8f{bottom:890.533333pt;}
.ya{bottom:894.053333pt;}
.y8e{bottom:905.893333pt;}
.y9{bottom:909.413333pt;}
.y8d{bottom:921.253333pt;}
.y8{bottom:924.613333pt;}
.y8c{bottom:936.613333pt;}
.y7{bottom:939.973333pt;}
.y8b{bottom:951.813333pt;}
.y6{bottom:955.333333pt;}
.y8a{bottom:967.173333pt;}
.y89{bottom:982.533333pt;}
.y5{bottom:986.053333pt;}
.y88{bottom:997.893333pt;}
.y4{bottom:1001.253333pt;}
.y87{bottom:1013.253333pt;}
.y3{bottom:1016.613333pt;}
.y67{bottom:1028.640000pt;}
.y2{bottom:1034.560000pt;}
.y66{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.h7{height:47.621250pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.ha{height:54.598989pt;}
.h8{height:65.781915pt;}
.h3{height:72.843750pt;}
.h9{height:112.934375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x4{left:104.351988pt;}
.xa{left:120.991988pt;}
.x7{left:250.466655pt;}
.x2{left:281.826655pt;}
.x5{left:355.426655pt;}
.xc{left:406.493322pt;}
.x3{left:410.173322pt;}
.xb{left:432.893322pt;}
.x8{left:478.173322pt;}
.x6{left:628.933322pt;}
.xf{left:697.093322pt;}
.x9{left:699.333322pt;}
.xd{left:704.613322pt;}
.xe{left:1165.346655pt;}
}




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