
    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_44951fb4ed71ee283a34ed5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_5bac0811b0cf93e2bb6aa4ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_135426db1e52cd1f8cd58c4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_364a6a063fcd309fbc9d88a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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:27.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls3{letter-spacing:0.300000px;}
.ls1{letter-spacing:35.340000px;}
.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:-22.500000px;}
.ws2{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.500000px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:952.950000px;}
.wsb{word-spacing:1016.130000px;}
.ws9{word-spacing:1024.590000px;}
.ws8{word-spacing:1050.420000px;}
.wse{word-spacing:1053.660000px;}
.wsa{word-spacing:1065.090000px;}
.ws7{word-spacing:1128.090000px;}
.ws6{word-spacing:1149.690000px;}
.wsc{word-spacing:1204.950000px;}
._12{margin-left:-34.740000px;}
._13{margin-left:-8.730000px;}
._0{margin-left:-6.552000px;}
._1{margin-left:-5.328000px;}
._b{margin-left:-3.816000px;}
._3{margin-left:-2.430000px;}
._2{margin-left:-1.080000px;}
._5{width:1.008000px;}
._6{width:2.088000px;}
._4{width:3.876000px;}
._7{width:5.688000px;}
._8{width:6.768000px;}
._9{width:7.776000px;}
._c{width:9.000000px;}
._a{width:10.440000px;}
._15{width:12.096000px;}
._16{width:13.104000px;}
._1a{width:14.808000px;}
._14{width:16.008000px;}
._11{width:17.400000px;}
._17{width:19.944000px;}
._18{width:23.112000px;}
._f{width:55.740000px;}
._e{width:56.940000px;}
._1c{width:83.280000px;}
._d{width:84.540000px;}
._10{width:85.740000px;}
._27{width:180.840000px;}
._2a{width:290.190000px;}
._1f{width:446.160000px;}
._23{width:528.150000px;}
._26{width:605.100000px;}
._1b{width:608.106000px;}
._22{width:695.460000px;}
._19{width:735.036000px;}
._20{width:755.490000px;}
._28{width:757.650000px;}
._29{width:802.560000px;}
._25{width:805.350000px;}
._24{width:832.980000px;}
._21{width:860.070000px;}
._1d{width:999.750000px;}
._1e{width:1049.790000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs0{font-size:282.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.yf{bottom:87.900000px;}
.y6{bottom:112.200000px;}
.y71{bottom:140.250000px;}
.y41{bottom:141.750000px;}
.y5{bottom:143.250000px;}
.y53{bottom:144.450000px;}
.ya3{bottom:146.250000px;}
.y112{bottom:147.000000px;}
.y82{bottom:147.300000px;}
.yb3{bottom:151.800000px;}
.ya9{bottom:152.250000px;}
.y70{bottom:155.700000px;}
.yfc{bottom:165.450000px;}
.yf3{bottom:165.900000px;}
.y77{bottom:166.500000px;}
.ybb{bottom:168.750000px;}
.y6f{bottom:171.300000px;}
.y40{bottom:172.800000px;}
.y111{bottom:172.950000px;}
.y4{bottom:174.300000px;}
.yf6{bottom:175.200000px;}
.y52{bottom:175.500000px;}
.y81{bottom:178.350000px;}
.y101{bottom:181.050000px;}
.y10f{bottom:181.650000px;}
.yf8{bottom:183.000000px;}
.y6b{bottom:183.900000px;}
.yd3{bottom:184.350000px;}
.y76{bottom:184.800000px;}
.yf9{bottom:185.550000px;}
.y2f{bottom:186.150000px;}
.yee{bottom:188.400000px;}
.y72{bottom:190.500000px;}
.yfb{bottom:191.400000px;}
.yf2{bottom:191.850000px;}
.yac{bottom:193.650000px;}
.y110{bottom:198.900000px;}
.yf0{bottom:200.250000px;}
.yf5{bottom:201.150000px;}
.y6c{bottom:202.500000px;}
.y3f{bottom:203.850000px;}
.y108{bottom:205.050000px;}
.y3{bottom:205.350000px;}
.y51{bottom:206.550000px;}
.y10e{bottom:207.600000px;}
.yf7{bottom:208.950000px;}
.y80{bottom:209.400000px;}
.yfd{bottom:210.900000px;}
.y75{bottom:215.550000px;}
.yed{bottom:216.750000px;}
.y2e{bottom:217.200000px;}
.yfa{bottom:217.350000px;}
.yf1{bottom:217.800000px;}
.yd2{bottom:218.550000px;}
.y6e{bottom:219.450000px;}
.y11a{bottom:226.800000px;}
.yf4{bottom:227.100000px;}
.y94{bottom:229.050000px;}
.y3e{bottom:234.900000px;}
.y50{bottom:237.600000px;}
.y5e{bottom:240.300000px;}
.y7f{bottom:240.450000px;}
.yec{bottom:245.250000px;}
.y2d{bottom:248.250000px;}
.yd1{bottom:252.750000px;}
.y10d{bottom:255.300000px;}
.y93{bottom:260.100000px;}
.y3d{bottom:265.950000px;}
.y4f{bottom:268.650000px;}
.y7e{bottom:271.500000px;}
.yeb{bottom:273.600000px;}
.y119{bottom:278.700000px;}
.y2c{bottom:279.300000px;}
.yd0{bottom:286.950000px;}
.y92{bottom:291.150000px;}
.y73{bottom:294.750000px;}
.y3c{bottom:297.000000px;}
.y4e{bottom:299.700000px;}
.yea{bottom:302.100000px;}
.y7d{bottom:302.550000px;}
.y2b{bottom:310.350000px;}
.ycf{bottom:321.150000px;}
.y91{bottom:322.200000px;}
.y3b{bottom:328.050000px;}
.ye9{bottom:330.450000px;}
.y4d{bottom:330.750000px;}
.y7a{bottom:332.700000px;}
.y7c{bottom:334.500000px;}
.y2a{bottom:341.400000px;}
.y90{bottom:353.250000px;}
.yce{bottom:355.350000px;}
.ye8{bottom:358.950000px;}
.y3a{bottom:359.100000px;}
.y4c{bottom:361.800000px;}
.y29{bottom:372.450000px;}
.yb2{bottom:373.350000px;}
.y8f{bottom:384.300000px;}
.ye7{bottom:387.300000px;}
.ycd{bottom:389.550000px;}
.y4b{bottom:392.850000px;}
.y1e{bottom:394.500000px;}
.yb4{bottom:395.850000px;}
.y28{bottom:403.500000px;}
.yb1{bottom:404.400000px;}
.y39{bottom:413.700000px;}
.y8e{bottom:415.350000px;}
.ye6{bottom:415.800000px;}
.ya8{bottom:420.450000px;}
.ya2{bottom:421.650000px;}
.ycc{bottom:423.750000px;}
.y4a{bottom:423.900000px;}
.y1d{bottom:425.550000px;}
.y38{bottom:431.100000px;}
.y27{bottom:434.550000px;}
.yb0{bottom:435.450000px;}
.ye5{bottom:444.150000px;}
.y8d{bottom:446.400000px;}
.ya7{bottom:451.500000px;}
.ya1{bottom:452.700000px;}
.y49{bottom:454.950000px;}
.y1c{bottom:456.600000px;}
.ycb{bottom:457.950000px;}
.yba{bottom:459.300000px;}
.y7b{bottom:462.300000px;}
.y26{bottom:465.600000px;}
.yaf{bottom:466.500000px;}
.yab{bottom:466.950000px;}
.ye4{bottom:472.650000px;}
.y8c{bottom:477.450000px;}
.y74{bottom:479.550000px;}
.y115{bottom:480.600000px;}
.ya6{bottom:482.550000px;}
.ya0{bottom:483.750000px;}
.y48{bottom:486.000000px;}
.y118{bottom:488.550000px;}
.yb9{bottom:490.350000px;}
.yca{bottom:492.150000px;}
.y109{bottom:494.250000px;}
.yae{bottom:497.550000px;}
.yaa{bottom:498.000000px;}
.ye3{bottom:501.000000px;}
.y114{bottom:506.550000px;}
.y8b{bottom:508.500000px;}
.y120{bottom:512.850000px;}
.ya5{bottom:513.600000px;}
.y117{bottom:514.500000px;}
.y9f{bottom:514.800000px;}
.y25{bottom:516.750000px;}
.y123{bottom:518.550000px;}
.yb8{bottom:521.400000px;}
.y11d{bottom:523.050000px;}
.yc9{bottom:526.350000px;}
.y6d{bottom:529.050000px;}
.ye2{bottom:529.500000px;}
.y107{bottom:529.950000px;}
.y113{bottom:532.500000px;}
.y11f{bottom:538.800000px;}
.y8a{bottom:539.550000px;}
.y116{bottom:540.450000px;}
.y122{bottom:544.500000px;}
.y47{bottom:544.950000px;}
.y9e{bottom:545.850000px;}
.y100{bottom:548.850000px;}
.y11c{bottom:549.000000px;}
.y1b{bottom:549.750000px;}
.yb7{bottom:552.450000px;}
.y106{bottom:555.900000px;}
.ye1{bottom:557.850000px;}
.y10c{bottom:558.000000px;}
.y6a{bottom:560.100000px;}
.yc8{bottom:560.550000px;}
.y11e{bottom:564.750000px;}
.y121{bottom:570.450000px;}
.y89{bottom:570.600000px;}
.yff{bottom:574.800000px;}
.y11b{bottom:574.950000px;}
.y9d{bottom:576.900000px;}
.y103{bottom:578.400000px;}
.yad{bottom:579.300000px;}
.y1a{bottom:580.800000px;}
.y105{bottom:581.850000px;}
.yb6{bottom:583.500000px;}
.y10b{bottom:583.950000px;}
.ye0{bottom:586.350000px;}
.y69{bottom:591.150000px;}
.yc7{bottom:594.750000px;}
.ya4{bottom:595.350000px;}
.yfe{bottom:600.750000px;}
.y88{bottom:601.650000px;}
.y102{bottom:604.350000px;}
.y9c{bottom:607.950000px;}
.y10a{bottom:609.900000px;}
.y19{bottom:611.850000px;}
.y104{bottom:614.100000px;}
.ydf{bottom:614.700000px;}
.y68{bottom:622.200000px;}
.yc6{bottom:628.950000px;}
.y87{bottom:632.700000px;}
.y9b{bottom:639.000000px;}
.y18{bottom:642.900000px;}
.yde{bottom:643.200000px;}
.y37{bottom:648.300000px;}
.y67{bottom:653.250000px;}
.yc5{bottom:663.150000px;}
.y86{bottom:663.750000px;}
.yb5{bottom:665.250000px;}
.y9a{bottom:670.050000px;}
.ydd{bottom:671.550000px;}
.y5d{bottom:679.200000px;}
.y36{bottom:679.350000px;}
.y66{bottom:684.300000px;}
.y85{bottom:694.800000px;}
.yc4{bottom:697.350000px;}
.ydc{bottom:700.050000px;}
.y99{bottom:701.100000px;}
.y5c{bottom:710.250000px;}
.y35{bottom:710.400000px;}
.y65{bottom:715.350000px;}
.y84{bottom:725.850000px;}
.ydb{bottom:728.400000px;}
.yc3{bottom:731.550000px;}
.y98{bottom:732.150000px;}
.y17{bottom:736.050000px;}
.y5b{bottom:741.300000px;}
.y34{bottom:741.450000px;}
.ye{bottom:742.500000px;}
.y64{bottom:746.400000px;}
.y83{bottom:756.900000px;}
.y97{bottom:763.200000px;}
.yc2{bottom:765.750000px;}
.y16{bottom:767.100000px;}
.y5a{bottom:772.350000px;}
.y33{bottom:772.500000px;}
.y63{bottom:777.450000px;}
.yd{bottom:781.350000px;}
.yda{bottom:785.250000px;}
.y24{bottom:787.950000px;}
.y96{bottom:794.250000px;}
.y15{bottom:798.150000px;}
.yc1{bottom:799.950000px;}
.y32{bottom:802.950000px;}
.y59{bottom:803.400000px;}
.y62{bottom:808.500000px;}
.yd9{bottom:813.750000px;}
.y23{bottom:819.000000px;}
.yc{bottom:820.050000px;}
.y31{bottom:828.900000px;}
.y14{bottom:829.200000px;}
.yc0{bottom:834.150000px;}
.y58{bottom:834.450000px;}
.y61{bottom:839.550000px;}
.yd8{bottom:842.100000px;}
.y95{bottom:844.950000px;}
.y30{bottom:846.300000px;}
.y22{bottom:850.050000px;}
.yb{bottom:858.900000px;}
.y13{bottom:860.250000px;}
.y57{bottom:865.500000px;}
.ybf{bottom:868.350000px;}
.y2{bottom:868.800000px;}
.y60{bottom:870.600000px;}
.y21{bottom:881.100000px;}
.y12{bottom:891.300000px;}
.y56{bottom:896.550000px;}
.ya{bottom:897.600000px;}
.yd7{bottom:898.950000px;}
.y5f{bottom:901.650000px;}
.ybe{bottom:902.550000px;}
.y20{bottom:912.150000px;}
.y11{bottom:922.350000px;}
.yd6{bottom:927.450000px;}
.y55{bottom:927.600000px;}
.y46{bottom:932.700000px;}
.y9{bottom:936.450000px;}
.ybd{bottom:936.750000px;}
.y1f{bottom:943.200000px;}
.y10{bottom:953.400000px;}
.yd5{bottom:955.800000px;}
.y79{bottom:958.650000px;}
.y45{bottom:963.750000px;}
.ybc{bottom:970.950000px;}
.y8{bottom:975.150000px;}
.yd4{bottom:984.300000px;}
.y54{bottom:989.700000px;}
.y44{bottom:994.800000px;}
.yef{bottom:1002.600000px;}
.y78{bottom:1020.750000px;}
.y43{bottom:1025.850000px;}
.y7{bottom:1052.700000px;}
.y42{bottom:1056.900000px;}
.hc{height:41.660156px;}
.h6{height:47.381836px;}
.ha{height:49.992188px;}
.h8{height:52.646484px;}
.hd{height:53.291016px;}
.hb{height:57.911133px;}
.h7{height:63.175781px;}
.h3{height:63.949219px;}
.h9{height:64.452539px;}
.h5{height:78.969727px;}
.h4{height:79.936523px;}
.h2{height:250.467773px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x2{left:109.350000px;}
.x18{left:113.400000px;}
.xc{left:130.500000px;}
.x3{left:162.450000px;}
.x13{left:188.250000px;}
.x14{left:194.100000px;}
.x12{left:255.300000px;}
.x7{left:269.850000px;}
.x2a{left:273.000000px;}
.x21{left:293.250000px;}
.x5{left:297.750000px;}
.x8{left:306.150000px;}
.xf{left:318.450000px;}
.x2c{left:320.700000px;}
.x6{left:328.050000px;}
.xb{left:335.250000px;}
.x15{left:337.500000px;}
.x4{left:340.650000px;}
.x25{left:344.250000px;}
.x17{left:345.750000px;}
.x10{left:348.150000px;}
.xe{left:355.500000px;}
.xa{left:357.600000px;}
.x9{left:361.800000px;}
.xd{left:363.750000px;}
.x11{left:372.000000px;}
.x1b{left:378.450000px;}
.x2b{left:380.700000px;}
.x30{left:382.800000px;}
.x26{left:397.200000px;}
.x29{left:401.400000px;}
.x1a{left:405.150000px;}
.x1c{left:408.150000px;}
.x24{left:412.650000px;}
.x2d{left:413.700000px;}
.x1f{left:416.100000px;}
.x2f{left:418.200000px;}
.x1d{left:419.850000px;}
.x20{left:422.100000px;}
.x23{left:424.950000px;}
.x1e{left:426.600000px;}
.x22{left:428.700000px;}
.x19{left:431.550000px;}
.x28{left:432.900000px;}
.x27{left:434.100000px;}
.x2e{left:435.450000px;}
.x16{left:449.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls3{letter-spacing:0.266667pt;}
.ls1{letter-spacing:31.413333pt;}
.ws1{word-spacing:-20.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.666667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.333333pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:847.066667pt;}
.wsb{word-spacing:903.226667pt;}
.ws9{word-spacing:910.746667pt;}
.ws8{word-spacing:933.706667pt;}
.wse{word-spacing:936.586667pt;}
.wsa{word-spacing:946.746667pt;}
.ws7{word-spacing:1002.746667pt;}
.ws6{word-spacing:1021.946667pt;}
.wsc{word-spacing:1071.066667pt;}
._12{margin-left:-30.880000pt;}
._13{margin-left:-7.760000pt;}
._0{margin-left:-5.824000pt;}
._1{margin-left:-4.736000pt;}
._b{margin-left:-3.392000pt;}
._3{margin-left:-2.160000pt;}
._2{margin-left:-0.960000pt;}
._5{width:0.896000pt;}
._6{width:1.856000pt;}
._4{width:3.445333pt;}
._7{width:5.056000pt;}
._8{width:6.016000pt;}
._9{width:6.912000pt;}
._c{width:8.000000pt;}
._a{width:9.280000pt;}
._15{width:10.752000pt;}
._16{width:11.648000pt;}
._1a{width:13.162667pt;}
._14{width:14.229333pt;}
._11{width:15.466667pt;}
._17{width:17.728000pt;}
._18{width:20.544000pt;}
._f{width:49.546667pt;}
._e{width:50.613333pt;}
._1c{width:74.026667pt;}
._d{width:75.146667pt;}
._10{width:76.213333pt;}
._27{width:160.746667pt;}
._2a{width:257.946667pt;}
._1f{width:396.586667pt;}
._23{width:469.466667pt;}
._26{width:537.866667pt;}
._1b{width:540.538667pt;}
._22{width:618.186667pt;}
._19{width:653.365333pt;}
._20{width:671.546667pt;}
._28{width:673.466667pt;}
._29{width:713.386667pt;}
._25{width:715.866667pt;}
._24{width:740.426667pt;}
._21{width:764.506667pt;}
._1d{width:888.666667pt;}
._1e{width:933.146667pt;}
.fs5{font-size:37.333333pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs0{font-size:250.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.yf{bottom:78.133333pt;}
.y6{bottom:99.733333pt;}
.y71{bottom:124.666667pt;}
.y41{bottom:126.000000pt;}
.y5{bottom:127.333333pt;}
.y53{bottom:128.400000pt;}
.ya3{bottom:130.000000pt;}
.y112{bottom:130.666667pt;}
.y82{bottom:130.933333pt;}
.yb3{bottom:134.933333pt;}
.ya9{bottom:135.333333pt;}
.y70{bottom:138.400000pt;}
.yfc{bottom:147.066667pt;}
.yf3{bottom:147.466667pt;}
.y77{bottom:148.000000pt;}
.ybb{bottom:150.000000pt;}
.y6f{bottom:152.266667pt;}
.y40{bottom:153.600000pt;}
.y111{bottom:153.733333pt;}
.y4{bottom:154.933333pt;}
.yf6{bottom:155.733333pt;}
.y52{bottom:156.000000pt;}
.y81{bottom:158.533333pt;}
.y101{bottom:160.933333pt;}
.y10f{bottom:161.466667pt;}
.yf8{bottom:162.666667pt;}
.y6b{bottom:163.466667pt;}
.yd3{bottom:163.866667pt;}
.y76{bottom:164.266667pt;}
.yf9{bottom:164.933333pt;}
.y2f{bottom:165.466667pt;}
.yee{bottom:167.466667pt;}
.y72{bottom:169.333333pt;}
.yfb{bottom:170.133333pt;}
.yf2{bottom:170.533333pt;}
.yac{bottom:172.133333pt;}
.y110{bottom:176.800000pt;}
.yf0{bottom:178.000000pt;}
.yf5{bottom:178.800000pt;}
.y6c{bottom:180.000000pt;}
.y3f{bottom:181.200000pt;}
.y108{bottom:182.266667pt;}
.y3{bottom:182.533333pt;}
.y51{bottom:183.600000pt;}
.y10e{bottom:184.533333pt;}
.yf7{bottom:185.733333pt;}
.y80{bottom:186.133333pt;}
.yfd{bottom:187.466667pt;}
.y75{bottom:191.600000pt;}
.yed{bottom:192.666667pt;}
.y2e{bottom:193.066667pt;}
.yfa{bottom:193.200000pt;}
.yf1{bottom:193.600000pt;}
.yd2{bottom:194.266667pt;}
.y6e{bottom:195.066667pt;}
.y11a{bottom:201.600000pt;}
.yf4{bottom:201.866667pt;}
.y94{bottom:203.600000pt;}
.y3e{bottom:208.800000pt;}
.y50{bottom:211.200000pt;}
.y5e{bottom:213.600000pt;}
.y7f{bottom:213.733333pt;}
.yec{bottom:218.000000pt;}
.y2d{bottom:220.666667pt;}
.yd1{bottom:224.666667pt;}
.y10d{bottom:226.933333pt;}
.y93{bottom:231.200000pt;}
.y3d{bottom:236.400000pt;}
.y4f{bottom:238.800000pt;}
.y7e{bottom:241.333333pt;}
.yeb{bottom:243.200000pt;}
.y119{bottom:247.733333pt;}
.y2c{bottom:248.266667pt;}
.yd0{bottom:255.066667pt;}
.y92{bottom:258.800000pt;}
.y73{bottom:262.000000pt;}
.y3c{bottom:264.000000pt;}
.y4e{bottom:266.400000pt;}
.yea{bottom:268.533333pt;}
.y7d{bottom:268.933333pt;}
.y2b{bottom:275.866667pt;}
.ycf{bottom:285.466667pt;}
.y91{bottom:286.400000pt;}
.y3b{bottom:291.600000pt;}
.ye9{bottom:293.733333pt;}
.y4d{bottom:294.000000pt;}
.y7a{bottom:295.733333pt;}
.y7c{bottom:297.333333pt;}
.y2a{bottom:303.466667pt;}
.y90{bottom:314.000000pt;}
.yce{bottom:315.866667pt;}
.ye8{bottom:319.066667pt;}
.y3a{bottom:319.200000pt;}
.y4c{bottom:321.600000pt;}
.y29{bottom:331.066667pt;}
.yb2{bottom:331.866667pt;}
.y8f{bottom:341.600000pt;}
.ye7{bottom:344.266667pt;}
.ycd{bottom:346.266667pt;}
.y4b{bottom:349.200000pt;}
.y1e{bottom:350.666667pt;}
.yb4{bottom:351.866667pt;}
.y28{bottom:358.666667pt;}
.yb1{bottom:359.466667pt;}
.y39{bottom:367.733333pt;}
.y8e{bottom:369.200000pt;}
.ye6{bottom:369.600000pt;}
.ya8{bottom:373.733333pt;}
.ya2{bottom:374.800000pt;}
.ycc{bottom:376.666667pt;}
.y4a{bottom:376.800000pt;}
.y1d{bottom:378.266667pt;}
.y38{bottom:383.200000pt;}
.y27{bottom:386.266667pt;}
.yb0{bottom:387.066667pt;}
.ye5{bottom:394.800000pt;}
.y8d{bottom:396.800000pt;}
.ya7{bottom:401.333333pt;}
.ya1{bottom:402.400000pt;}
.y49{bottom:404.400000pt;}
.y1c{bottom:405.866667pt;}
.ycb{bottom:407.066667pt;}
.yba{bottom:408.266667pt;}
.y7b{bottom:410.933333pt;}
.y26{bottom:413.866667pt;}
.yaf{bottom:414.666667pt;}
.yab{bottom:415.066667pt;}
.ye4{bottom:420.133333pt;}
.y8c{bottom:424.400000pt;}
.y74{bottom:426.266667pt;}
.y115{bottom:427.200000pt;}
.ya6{bottom:428.933333pt;}
.ya0{bottom:430.000000pt;}
.y48{bottom:432.000000pt;}
.y118{bottom:434.266667pt;}
.yb9{bottom:435.866667pt;}
.yca{bottom:437.466667pt;}
.y109{bottom:439.333333pt;}
.yae{bottom:442.266667pt;}
.yaa{bottom:442.666667pt;}
.ye3{bottom:445.333333pt;}
.y114{bottom:450.266667pt;}
.y8b{bottom:452.000000pt;}
.y120{bottom:455.866667pt;}
.ya5{bottom:456.533333pt;}
.y117{bottom:457.333333pt;}
.y9f{bottom:457.600000pt;}
.y25{bottom:459.333333pt;}
.y123{bottom:460.933333pt;}
.yb8{bottom:463.466667pt;}
.y11d{bottom:464.933333pt;}
.yc9{bottom:467.866667pt;}
.y6d{bottom:470.266667pt;}
.ye2{bottom:470.666667pt;}
.y107{bottom:471.066667pt;}
.y113{bottom:473.333333pt;}
.y11f{bottom:478.933333pt;}
.y8a{bottom:479.600000pt;}
.y116{bottom:480.400000pt;}
.y122{bottom:484.000000pt;}
.y47{bottom:484.400000pt;}
.y9e{bottom:485.200000pt;}
.y100{bottom:487.866667pt;}
.y11c{bottom:488.000000pt;}
.y1b{bottom:488.666667pt;}
.yb7{bottom:491.066667pt;}
.y106{bottom:494.133333pt;}
.ye1{bottom:495.866667pt;}
.y10c{bottom:496.000000pt;}
.y6a{bottom:497.866667pt;}
.yc8{bottom:498.266667pt;}
.y11e{bottom:502.000000pt;}
.y121{bottom:507.066667pt;}
.y89{bottom:507.200000pt;}
.yff{bottom:510.933333pt;}
.y11b{bottom:511.066667pt;}
.y9d{bottom:512.800000pt;}
.y103{bottom:514.133333pt;}
.yad{bottom:514.933333pt;}
.y1a{bottom:516.266667pt;}
.y105{bottom:517.200000pt;}
.yb6{bottom:518.666667pt;}
.y10b{bottom:519.066667pt;}
.ye0{bottom:521.200000pt;}
.y69{bottom:525.466667pt;}
.yc7{bottom:528.666667pt;}
.ya4{bottom:529.200000pt;}
.yfe{bottom:534.000000pt;}
.y88{bottom:534.800000pt;}
.y102{bottom:537.200000pt;}
.y9c{bottom:540.400000pt;}
.y10a{bottom:542.133333pt;}
.y19{bottom:543.866667pt;}
.y104{bottom:545.866667pt;}
.ydf{bottom:546.400000pt;}
.y68{bottom:553.066667pt;}
.yc6{bottom:559.066667pt;}
.y87{bottom:562.400000pt;}
.y9b{bottom:568.000000pt;}
.y18{bottom:571.466667pt;}
.yde{bottom:571.733333pt;}
.y37{bottom:576.266667pt;}
.y67{bottom:580.666667pt;}
.yc5{bottom:589.466667pt;}
.y86{bottom:590.000000pt;}
.yb5{bottom:591.333333pt;}
.y9a{bottom:595.600000pt;}
.ydd{bottom:596.933333pt;}
.y5d{bottom:603.733333pt;}
.y36{bottom:603.866667pt;}
.y66{bottom:608.266667pt;}
.y85{bottom:617.600000pt;}
.yc4{bottom:619.866667pt;}
.ydc{bottom:622.266667pt;}
.y99{bottom:623.200000pt;}
.y5c{bottom:631.333333pt;}
.y35{bottom:631.466667pt;}
.y65{bottom:635.866667pt;}
.y84{bottom:645.200000pt;}
.ydb{bottom:647.466667pt;}
.yc3{bottom:650.266667pt;}
.y98{bottom:650.800000pt;}
.y17{bottom:654.266667pt;}
.y5b{bottom:658.933333pt;}
.y34{bottom:659.066667pt;}
.ye{bottom:660.000000pt;}
.y64{bottom:663.466667pt;}
.y83{bottom:672.800000pt;}
.y97{bottom:678.400000pt;}
.yc2{bottom:680.666667pt;}
.y16{bottom:681.866667pt;}
.y5a{bottom:686.533333pt;}
.y33{bottom:686.666667pt;}
.y63{bottom:691.066667pt;}
.yd{bottom:694.533333pt;}
.yda{bottom:698.000000pt;}
.y24{bottom:700.400000pt;}
.y96{bottom:706.000000pt;}
.y15{bottom:709.466667pt;}
.yc1{bottom:711.066667pt;}
.y32{bottom:713.733333pt;}
.y59{bottom:714.133333pt;}
.y62{bottom:718.666667pt;}
.yd9{bottom:723.333333pt;}
.y23{bottom:728.000000pt;}
.yc{bottom:728.933333pt;}
.y31{bottom:736.800000pt;}
.y14{bottom:737.066667pt;}
.yc0{bottom:741.466667pt;}
.y58{bottom:741.733333pt;}
.y61{bottom:746.266667pt;}
.yd8{bottom:748.533333pt;}
.y95{bottom:751.066667pt;}
.y30{bottom:752.266667pt;}
.y22{bottom:755.600000pt;}
.yb{bottom:763.466667pt;}
.y13{bottom:764.666667pt;}
.y57{bottom:769.333333pt;}
.ybf{bottom:771.866667pt;}
.y2{bottom:772.266667pt;}
.y60{bottom:773.866667pt;}
.y21{bottom:783.200000pt;}
.y12{bottom:792.266667pt;}
.y56{bottom:796.933333pt;}
.ya{bottom:797.866667pt;}
.yd7{bottom:799.066667pt;}
.y5f{bottom:801.466667pt;}
.ybe{bottom:802.266667pt;}
.y20{bottom:810.800000pt;}
.y11{bottom:819.866667pt;}
.yd6{bottom:824.400000pt;}
.y55{bottom:824.533333pt;}
.y46{bottom:829.066667pt;}
.y9{bottom:832.400000pt;}
.ybd{bottom:832.666667pt;}
.y1f{bottom:838.400000pt;}
.y10{bottom:847.466667pt;}
.yd5{bottom:849.600000pt;}
.y79{bottom:852.133333pt;}
.y45{bottom:856.666667pt;}
.ybc{bottom:863.066667pt;}
.y8{bottom:866.800000pt;}
.yd4{bottom:874.933333pt;}
.y54{bottom:879.733333pt;}
.y44{bottom:884.266667pt;}
.yef{bottom:891.200000pt;}
.y78{bottom:907.333333pt;}
.y43{bottom:911.866667pt;}
.y7{bottom:935.733333pt;}
.y42{bottom:939.466667pt;}
.hc{height:37.031250pt;}
.h6{height:42.117188pt;}
.ha{height:44.437500pt;}
.h8{height:46.796875pt;}
.hd{height:47.369792pt;}
.hb{height:51.476562pt;}
.h7{height:56.156250pt;}
.h3{height:56.843750pt;}
.h9{height:57.291146pt;}
.h5{height:70.195312pt;}
.h4{height:71.054688pt;}
.h2{height:222.638021pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x2{left:97.200000pt;}
.x18{left:100.800000pt;}
.xc{left:116.000000pt;}
.x3{left:144.400000pt;}
.x13{left:167.333333pt;}
.x14{left:172.533333pt;}
.x12{left:226.933333pt;}
.x7{left:239.866667pt;}
.x2a{left:242.666667pt;}
.x21{left:260.666667pt;}
.x5{left:264.666667pt;}
.x8{left:272.133333pt;}
.xf{left:283.066667pt;}
.x2c{left:285.066667pt;}
.x6{left:291.600000pt;}
.xb{left:298.000000pt;}
.x15{left:300.000000pt;}
.x4{left:302.800000pt;}
.x25{left:306.000000pt;}
.x17{left:307.333333pt;}
.x10{left:309.466667pt;}
.xe{left:316.000000pt;}
.xa{left:317.866667pt;}
.x9{left:321.600000pt;}
.xd{left:323.333333pt;}
.x11{left:330.666667pt;}
.x1b{left:336.400000pt;}
.x2b{left:338.400000pt;}
.x30{left:340.266667pt;}
.x26{left:353.066667pt;}
.x29{left:356.800000pt;}
.x1a{left:360.133333pt;}
.x1c{left:362.800000pt;}
.x24{left:366.800000pt;}
.x2d{left:367.733333pt;}
.x1f{left:369.866667pt;}
.x2f{left:371.733333pt;}
.x1d{left:373.200000pt;}
.x20{left:375.200000pt;}
.x23{left:377.733333pt;}
.x1e{left:379.200000pt;}
.x22{left:381.066667pt;}
.x19{left:383.600000pt;}
.x28{left:384.800000pt;}
.x27{left:385.866667pt;}
.x2e{left:387.066667pt;}
.x16{left:399.733333pt;}
}




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