
    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_4a146ff11f6b2b71eb812251.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0d8b94cf25d2f8f14e3be085.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0e9d3f1fd2e903ca23e0c533.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_8425045cad55e2fec9d67875.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.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;}
}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.640000px;}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-4.200000px;}
._0{margin-left:-3.024000px;}
._1{margin-left:-2.016000px;}
._4{margin-left:-1.008000px;}
._3{width:1.080000px;}
._7{width:2.376000px;}
._10{width:3.816000px;}
._9{width:5.760000px;}
._8{width:6.984000px;}
._c{width:8.064000px;}
._6{width:9.144000px;}
._5{width:10.224000px;}
._a{width:12.024000px;}
._11{width:13.176000px;}
._b{width:15.048000px;}
._f{width:16.560000px;}
._e{width:21.168000px;}
._d{width:22.248000px;}
._13{width:23.544000px;}
._2{width:846.120000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y10b{bottom:113.670000px;}
.y5c{bottom:119.970000px;}
.y7e{bottom:124.740000px;}
.y36{bottom:129.420000px;}
.y12c{bottom:131.310000px;}
.yaf{bottom:131.940000px;}
.yaa{bottom:133.560000px;}
.y10a{bottom:135.810000px;}
.y5b{bottom:142.290000px;}
.y7d{bottom:147.060000px;}
.y35{bottom:151.740000px;}
.y12b{bottom:153.450000px;}
.yae{bottom:154.260000px;}
.ya9{bottom:156.000000px;}
.y109{bottom:157.980000px;}
.y5a{bottom:164.640000px;}
.yee{bottom:167.070000px;}
.y7c{bottom:169.500000px;}
.y34{bottom:174.090000px;}
.y9c{bottom:176.610000px;}
.ya8{bottom:178.320000px;}
.y59{bottom:186.960000px;}
.y12a{bottom:187.680000px;}
.yd0{bottom:188.670000px;}
.yed{bottom:189.390000px;}
.y7b{bottom:191.820000px;}
.y108{bottom:192.360000px;}
.yad{bottom:194.610000px;}
.y9b{bottom:199.020000px;}
.y33{bottom:208.470000px;}
.y58{bottom:209.280000px;}
.y129{bottom:209.820000px;}
.ycf{bottom:210.990000px;}
.yec{bottom:211.800000px;}
.ya7{bottom:212.610000px;}
.y7a{bottom:214.140000px;}
.y107{bottom:214.680000px;}
.y9a{bottom:221.340000px;}
.y32{bottom:230.790000px;}
.y57{bottom:231.690000px;}
.y128{bottom:232.050000px;}
.yce{bottom:233.310000px;}
.ya6{bottom:235.020000px;}
.y99{bottom:243.660000px;}
.yeb{bottom:246.090000px;}
.y79{bottom:248.520000px;}
.y106{bottom:248.970000px;}
.y31{bottom:253.110000px;}
.y56{bottom:254.010000px;}
.ycd{bottom:255.630000px;}
.ya5{bottom:257.340000px;}
.y98{bottom:265.980000px;}
.y127{bottom:266.160000px;}
.yea{bottom:268.410000px;}
.y78{bottom:270.840000px;}
.y105{bottom:271.380000px;}
.y30{bottom:275.430000px;}
.ycc{bottom:277.950000px;}
.ya4{bottom:279.660000px;}
.y55{bottom:288.300000px;}
.ye9{bottom:290.820000px;}
.y77{bottom:293.160000px;}
.y104{bottom:293.700000px;}
.y2f{bottom:297.750000px;}
.ycb{bottom:300.360000px;}
.ya3{bottom:301.980000px;}
.y54{bottom:310.620000px;}
.y76{bottom:315.480000px;}
.y2e{bottom:320.070000px;}
.y126{bottom:322.500000px;}
.yca{bottom:322.680000px;}
.ya2{bottom:324.300000px;}
.ye8{bottom:325.110000px;}
.y103{bottom:327.990000px;}
.y97{bottom:328.620000px;}
.y53{bottom:333.030000px;}
.y75{bottom:337.800000px;}
.y2d{bottom:342.480000px;}
.y125{bottom:344.640000px;}
.yc9{bottom:345.000000px;}
.ya1{bottom:346.620000px;}
.ye7{bottom:347.430000px;}
.y102{bottom:350.310000px;}
.y52{bottom:355.350000px;}
.y74{bottom:360.210000px;}
.yc8{bottom:367.320000px;}
.y96{bottom:369.030000px;}
.ye6{bottom:369.750000px;}
.y101{bottom:372.720000px;}
.y2c{bottom:376.770000px;}
.y51{bottom:377.670000px;}
.y124{bottom:378.840000px;}
.y73{bottom:382.530000px;}
.y95{bottom:391.350000px;}
.y2b{bottom:399.090000px;}
.y50{bottom:399.990000px;}
.y123{bottom:400.980000px;}
.yc7{bottom:401.700000px;}
.ye5{bottom:404.130000px;}
.y72{bottom:404.850000px;}
.y100{bottom:407.010000px;}
.y94{bottom:413.670000px;}
.y2a{bottom:421.500000px;}
.y4f{bottom:422.310000px;}
.y122{bottom:423.120000px;}
.yc6{bottom:424.020000px;}
.ye4{bottom:426.450000px;}
.y71{bottom:427.170000px;}
.yff{bottom:429.330000px;}
.y93{bottom:435.990000px;}
.y29{bottom:443.820000px;}
.y4e{bottom:444.720000px;}
.yc5{bottom:446.340000px;}
.y70{bottom:449.490000px;}
.y121{bottom:457.320000px;}
.y92{bottom:458.310000px;}
.ye3{bottom:460.830000px;}
.yfe{bottom:463.710000px;}
.y28{bottom:466.140000px;}
.y4d{bottom:467.040000px;}
.yc4{bottom:468.660000px;}
.y6f{bottom:471.810000px;}
.y120{bottom:479.460000px;}
.y91{bottom:480.720000px;}
.ye2{bottom:483.150000px;}
.y27{bottom:488.460000px;}
.y4c{bottom:489.360000px;}
.yc3{bottom:490.980000px;}
.y6e{bottom:494.220000px;}
.yfd{bottom:498.000000px;}
.y90{bottom:503.040000px;}
.y26{bottom:510.780000px;}
.y4b{bottom:511.680000px;}
.yc2{bottom:513.390000px;}
.y11f{bottom:513.660000px;}
.ya0{bottom:515.010000px;}
.y6d{bottom:516.540000px;}
.ye1{bottom:517.440000px;}
.yfc{bottom:520.410000px;}
.y8f{bottom:525.360000px;}
.y25{bottom:533.100000px;}
.yc1{bottom:535.710000px;}
.y11e{bottom:535.800000px;}
.y9f{bottom:537.330000px;}
.y6c{bottom:538.860000px;}
.ye0{bottom:539.850000px;}
.y4a{bottom:546.060000px;}
.y8e{bottom:547.680000px;}
.yfb{bottom:554.700000px;}
.y24{bottom:555.510000px;}
.y11d{bottom:557.940000px;}
.yc0{bottom:558.030000px;}
.y9e{bottom:559.740000px;}
.y49{bottom:568.380000px;}
.y6b{bottom:573.240000px;}
.ydf{bottom:573.990000px;}
.yfa{bottom:577.050000px;}
.y8d{bottom:582.090000px;}
.y23{bottom:589.650000px;}
.y48{bottom:590.730000px;}
.y11c{bottom:592.170000px;}
.ybf{bottom:592.440000px;}
.y6a{bottom:595.590000px;}
.yde{bottom:596.130000px;}
.y8c{bottom:604.410000px;}
.yf9{bottom:611.430000px;}
.y22{bottom:611.880000px;}
.y47{bottom:613.050000px;}
.y11b{bottom:614.310000px;}
.ybe{bottom:614.760000px;}
.y69{bottom:617.910000px;}
.y8b{bottom:626.730000px;}
.ydd{bottom:630.330000px;}
.yf8{bottom:633.750000px;}
.y21{bottom:634.020000px;}
.y46{bottom:635.370000px;}
.ybd{bottom:637.080000px;}
.y68{bottom:640.230000px;}
.y11a{bottom:648.510000px;}
.y8a{bottom:649.050000px;}
.ydc{bottom:652.470000px;}
.yf7{bottom:656.070000px;}
.y20{bottom:656.160000px;}
.y45{bottom:657.780000px;}
.ybc{bottom:659.400000px;}
.y67{bottom:662.550000px;}
.y119{bottom:670.650000px;}
.y89{bottom:671.370000px;}
.ydb{bottom:674.700000px;}
.y1f{bottom:678.300000px;}
.y44{bottom:680.100000px;}
.ybb{bottom:681.720000px;}
.y66{bottom:684.870000px;}
.yf6{bottom:690.450000px;}
.y88{bottom:693.780000px;}
.y1e{bottom:700.530000px;}
.y43{bottom:702.420000px;}
.yba{bottom:704.040000px;}
.y118{bottom:704.850000px;}
.y65{bottom:707.280000px;}
.yda{bottom:708.810000px;}
.yf5{bottom:712.770000px;}
.y87{bottom:716.100000px;}
.y1d{bottom:722.670000px;}
.yb9{bottom:726.450000px;}
.y117{bottom:726.990000px;}
.y64{bottom:729.600000px;}
.yd9{bottom:730.950000px;}
.yf4{bottom:735.090000px;}
.y42{bottom:736.800000px;}
.y86{bottom:738.420000px;}
.y1c{bottom:744.810000px;}
.yb8{bottom:748.770000px;}
.y63{bottom:751.920000px;}
.yd8{bottom:753.180000px;}
.y41{bottom:759.120000px;}
.y85{bottom:760.740000px;}
.y116{bottom:761.190000px;}
.y1b{bottom:766.950000px;}
.yf3{bottom:769.470000px;}
.yb7{bottom:771.090000px;}
.y9d{bottom:772.800000px;}
.y62{bottom:774.240000px;}
.y40{bottom:781.440000px;}
.yac{bottom:783.060000px;}
.y115{bottom:783.330000px;}
.yd7{bottom:787.290000px;}
.y1a{bottom:789.180000px;}
.yf2{bottom:791.790000px;}
.yb6{bottom:793.410000px;}
.y131{bottom:793.500000px;}
.y84{bottom:795.120000px;}
.y3f{bottom:803.760000px;}
.yab{bottom:805.470000px;}
.yd6{bottom:809.520000px;}
.y61{bottom:814.560000px;}
.y83{bottom:817.440000px;}
.y10{bottom:821.760000px;}
.y19{bottom:823.290000px;}
.y3e{bottom:826.080000px;}
.y114{bottom:827.700000px;}
.yb5{bottom:827.790000px;}
.y82{bottom:839.760000px;}
.yd5{bottom:843.630000px;}
.yf{bottom:844.080000px;}
.y18{bottom:845.520000px;}
.y3d{bottom:848.400000px;}
.y130{bottom:849.840000px;}
.yb4{bottom:850.110000px;}
.y60{bottom:851.010000px;}
.y113{bottom:861.810000px;}
.y81{bottom:862.080000px;}
.yd4{bottom:865.860000px;}
.ye{bottom:866.400000px;}
.y17{bottom:867.660000px;}
.y3c{bottom:870.810000px;}
.yb3{bottom:872.430000px;}
.y112{bottom:883.950000px;}
.y80{bottom:884.400000px;}
.yd{bottom:888.810000px;}
.y16{bottom:889.800000px;}
.y3b{bottom:893.130000px;}
.y5f{bottom:894.750000px;}
.yd3{bottom:899.970000px;}
.yf1{bottom:905.100000px;}
.y111{bottom:906.180000px;}
.y7f{bottom:906.810000px;}
.yc{bottom:911.130000px;}
.y15{bottom:911.940000px;}
.y6{bottom:912.750000px;}
.yb2{bottom:917.160000px;}
.yd2{bottom:922.110000px;}
.yf0{bottom:927.420000px;}
.y12f{bottom:928.320000px;}
.y5e{bottom:929.130000px;}
.yb{bottom:933.450000px;}
.y14{bottom:934.170000px;}
.yb1{bottom:939.480000px;}
.y110{bottom:940.290000px;}
.yd1{bottom:944.340000px;}
.y5{bottom:947.040000px;}
.y12e{bottom:950.460000px;}
.y5d{bottom:951.450000px;}
.ya{bottom:955.770000px;}
.y13{bottom:956.310000px;}
.yb0{bottom:961.800000px;}
.y10f{bottom:962.520000px;}
.y3a{bottom:973.770000px;}
.y9{bottom:978.090000px;}
.y12{bottom:978.450000px;}
.y4{bottom:981.420000px;}
.yef{bottom:984.120000px;}
.y10e{bottom:984.660000px;}
.y39{bottom:996.120000px;}
.y8{bottom:1000.530000px;}
.y11{bottom:1000.710000px;}
.y3{bottom:1003.770000px;}
.y12d{bottom:1006.830000px;}
.y38{bottom:1018.530000px;}
.y10d{bottom:1018.800000px;}
.y7{bottom:1022.850000px;}
.y37{bottom:1040.850000px;}
.y10c{bottom:1041.030000px;}
.y2{bottom:1042.470000px;}
.y1{bottom:1063.170000px;}
.h1{height:50.800781px;}
.h2{height:64.546875px;}
.h3{height:65.526152px;}
.h4{height:75.197109px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:107.999986px;}
.x1{left:119.609986px;}
.x3{left:135.719986px;}
.x4{left:171.029986px;}
.xb{left:223.229986px;}
.x8{left:257.969986px;}
.xa{left:268.499986px;}
.x2{left:352.559986px;}
.x7{left:409.979986px;}
.xd{left:416.009986px;}
.xc{left:418.529986px;}
.x6{left:425.549986px;}
.x9{left:648.059986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.680000pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-3.733333pt;}
._0{margin-left:-2.688000pt;}
._1{margin-left:-1.792000pt;}
._4{margin-left:-0.896000pt;}
._3{width:0.960000pt;}
._7{width:2.112000pt;}
._10{width:3.392000pt;}
._9{width:5.120000pt;}
._8{width:6.208000pt;}
._c{width:7.168000pt;}
._6{width:8.128000pt;}
._5{width:9.088000pt;}
._a{width:10.688000pt;}
._11{width:11.712000pt;}
._b{width:13.376000pt;}
._f{width:14.720000pt;}
._e{width:18.816000pt;}
._d{width:19.776000pt;}
._13{width:20.928000pt;}
._2{width:752.106667pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:101.040000pt;}
.y5c{bottom:106.640000pt;}
.y7e{bottom:110.880000pt;}
.y36{bottom:115.040000pt;}
.y12c{bottom:116.720000pt;}
.yaf{bottom:117.280000pt;}
.yaa{bottom:118.720000pt;}
.y10a{bottom:120.720000pt;}
.y5b{bottom:126.480000pt;}
.y7d{bottom:130.720000pt;}
.y35{bottom:134.880000pt;}
.y12b{bottom:136.400000pt;}
.yae{bottom:137.120000pt;}
.ya9{bottom:138.666667pt;}
.y109{bottom:140.426667pt;}
.y5a{bottom:146.346667pt;}
.yee{bottom:148.506667pt;}
.y7c{bottom:150.666667pt;}
.y34{bottom:154.746667pt;}
.y9c{bottom:156.986667pt;}
.ya8{bottom:158.506667pt;}
.y59{bottom:166.186667pt;}
.y12a{bottom:166.826667pt;}
.yd0{bottom:167.706667pt;}
.yed{bottom:168.346667pt;}
.y7b{bottom:170.506667pt;}
.y108{bottom:170.986667pt;}
.yad{bottom:172.986667pt;}
.y9b{bottom:176.906667pt;}
.y33{bottom:185.306667pt;}
.y58{bottom:186.026667pt;}
.y129{bottom:186.506667pt;}
.ycf{bottom:187.546667pt;}
.yec{bottom:188.266667pt;}
.ya7{bottom:188.986667pt;}
.y7a{bottom:190.346667pt;}
.y107{bottom:190.826667pt;}
.y9a{bottom:196.746667pt;}
.y32{bottom:205.146667pt;}
.y57{bottom:205.946667pt;}
.y128{bottom:206.266667pt;}
.yce{bottom:207.386667pt;}
.ya6{bottom:208.906667pt;}
.y99{bottom:216.586667pt;}
.yeb{bottom:218.746667pt;}
.y79{bottom:220.906667pt;}
.y106{bottom:221.306667pt;}
.y31{bottom:224.986667pt;}
.y56{bottom:225.786667pt;}
.ycd{bottom:227.226667pt;}
.ya5{bottom:228.746667pt;}
.y98{bottom:236.426667pt;}
.y127{bottom:236.586667pt;}
.yea{bottom:238.586667pt;}
.y78{bottom:240.746667pt;}
.y105{bottom:241.226667pt;}
.y30{bottom:244.826667pt;}
.ycc{bottom:247.066667pt;}
.ya4{bottom:248.586667pt;}
.y55{bottom:256.266667pt;}
.ye9{bottom:258.506667pt;}
.y77{bottom:260.586667pt;}
.y104{bottom:261.066667pt;}
.y2f{bottom:264.666667pt;}
.ycb{bottom:266.986667pt;}
.ya3{bottom:268.426667pt;}
.y54{bottom:276.106667pt;}
.y76{bottom:280.426667pt;}
.y2e{bottom:284.506667pt;}
.y126{bottom:286.666667pt;}
.yca{bottom:286.826667pt;}
.ya2{bottom:288.266667pt;}
.ye8{bottom:288.986667pt;}
.y103{bottom:291.546667pt;}
.y97{bottom:292.106667pt;}
.y53{bottom:296.026667pt;}
.y75{bottom:300.266667pt;}
.y2d{bottom:304.426667pt;}
.y125{bottom:306.346667pt;}
.yc9{bottom:306.666667pt;}
.ya1{bottom:308.106667pt;}
.ye7{bottom:308.826667pt;}
.y102{bottom:311.386667pt;}
.y52{bottom:315.866667pt;}
.y74{bottom:320.186667pt;}
.yc8{bottom:326.506667pt;}
.y96{bottom:328.026667pt;}
.ye6{bottom:328.666667pt;}
.y101{bottom:331.306667pt;}
.y2c{bottom:334.906667pt;}
.y51{bottom:335.706667pt;}
.y124{bottom:336.746667pt;}
.y73{bottom:340.026667pt;}
.y95{bottom:347.866667pt;}
.y2b{bottom:354.746667pt;}
.y50{bottom:355.546667pt;}
.y123{bottom:356.426667pt;}
.yc7{bottom:357.066667pt;}
.ye5{bottom:359.226667pt;}
.y72{bottom:359.866667pt;}
.y100{bottom:361.786667pt;}
.y94{bottom:367.706667pt;}
.y2a{bottom:374.666667pt;}
.y4f{bottom:375.386667pt;}
.y122{bottom:376.106667pt;}
.yc6{bottom:376.906667pt;}
.ye4{bottom:379.066667pt;}
.y71{bottom:379.706667pt;}
.yff{bottom:381.626667pt;}
.y93{bottom:387.546667pt;}
.y29{bottom:394.506667pt;}
.y4e{bottom:395.306667pt;}
.yc5{bottom:396.746667pt;}
.y70{bottom:399.546667pt;}
.y121{bottom:406.506667pt;}
.y92{bottom:407.386667pt;}
.ye3{bottom:409.626667pt;}
.yfe{bottom:412.186667pt;}
.y28{bottom:414.346667pt;}
.y4d{bottom:415.146667pt;}
.yc4{bottom:416.586667pt;}
.y6f{bottom:419.386667pt;}
.y120{bottom:426.186667pt;}
.y91{bottom:427.306667pt;}
.ye2{bottom:429.466667pt;}
.y27{bottom:434.186667pt;}
.y4c{bottom:434.986667pt;}
.yc3{bottom:436.426667pt;}
.y6e{bottom:439.306667pt;}
.yfd{bottom:442.666667pt;}
.y90{bottom:447.146667pt;}
.y26{bottom:454.026667pt;}
.y4b{bottom:454.826667pt;}
.yc2{bottom:456.346667pt;}
.y11f{bottom:456.586667pt;}
.ya0{bottom:457.786667pt;}
.y6d{bottom:459.146667pt;}
.ye1{bottom:459.946667pt;}
.yfc{bottom:462.586667pt;}
.y8f{bottom:466.986667pt;}
.y25{bottom:473.866667pt;}
.yc1{bottom:476.186667pt;}
.y11e{bottom:476.266667pt;}
.y9f{bottom:477.626667pt;}
.y6c{bottom:478.986667pt;}
.ye0{bottom:479.866667pt;}
.y4a{bottom:485.386667pt;}
.y8e{bottom:486.826667pt;}
.yfb{bottom:493.066667pt;}
.y24{bottom:493.786667pt;}
.y11d{bottom:495.946667pt;}
.yc0{bottom:496.026667pt;}
.y9e{bottom:497.546667pt;}
.y49{bottom:505.226667pt;}
.y6b{bottom:509.546667pt;}
.ydf{bottom:510.213333pt;}
.yfa{bottom:512.933333pt;}
.y8d{bottom:517.413333pt;}
.y23{bottom:524.133333pt;}
.y48{bottom:525.093333pt;}
.y11c{bottom:526.373333pt;}
.ybf{bottom:526.613333pt;}
.y6a{bottom:529.413333pt;}
.yde{bottom:529.893333pt;}
.y8c{bottom:537.253333pt;}
.yf9{bottom:543.493333pt;}
.y22{bottom:543.893333pt;}
.y47{bottom:544.933333pt;}
.y11b{bottom:546.053333pt;}
.ybe{bottom:546.453333pt;}
.y69{bottom:549.253333pt;}
.y8b{bottom:557.093333pt;}
.ydd{bottom:560.293333pt;}
.yf8{bottom:563.333333pt;}
.y21{bottom:563.573333pt;}
.y46{bottom:564.773333pt;}
.ybd{bottom:566.293333pt;}
.y68{bottom:569.093333pt;}
.y11a{bottom:576.453333pt;}
.y8a{bottom:576.933333pt;}
.ydc{bottom:579.973333pt;}
.yf7{bottom:583.173333pt;}
.y20{bottom:583.253333pt;}
.y45{bottom:584.693333pt;}
.ybc{bottom:586.133333pt;}
.y67{bottom:588.933333pt;}
.y119{bottom:596.133333pt;}
.y89{bottom:596.773333pt;}
.ydb{bottom:599.733333pt;}
.y1f{bottom:602.933333pt;}
.y44{bottom:604.533333pt;}
.ybb{bottom:605.973333pt;}
.y66{bottom:608.773333pt;}
.yf6{bottom:613.733333pt;}
.y88{bottom:616.693333pt;}
.y1e{bottom:622.693333pt;}
.y43{bottom:624.373333pt;}
.yba{bottom:625.813333pt;}
.y118{bottom:626.533333pt;}
.y65{bottom:628.693333pt;}
.yda{bottom:630.053333pt;}
.yf5{bottom:633.573333pt;}
.y87{bottom:636.533333pt;}
.y1d{bottom:642.373333pt;}
.yb9{bottom:645.733333pt;}
.y117{bottom:646.213333pt;}
.y64{bottom:648.533333pt;}
.yd9{bottom:649.733333pt;}
.yf4{bottom:653.413333pt;}
.y42{bottom:654.933333pt;}
.y86{bottom:656.373333pt;}
.y1c{bottom:662.053333pt;}
.yb8{bottom:665.573333pt;}
.y63{bottom:668.373333pt;}
.yd8{bottom:669.493333pt;}
.y41{bottom:674.773333pt;}
.y85{bottom:676.213333pt;}
.y116{bottom:676.613333pt;}
.y1b{bottom:681.733333pt;}
.yf3{bottom:683.973333pt;}
.yb7{bottom:685.413333pt;}
.y9d{bottom:686.933333pt;}
.y62{bottom:688.213333pt;}
.y40{bottom:694.613333pt;}
.yac{bottom:696.053333pt;}
.y115{bottom:696.293333pt;}
.yd7{bottom:699.813333pt;}
.y1a{bottom:701.493333pt;}
.yf2{bottom:703.813333pt;}
.yb6{bottom:705.253333pt;}
.y131{bottom:705.333333pt;}
.y84{bottom:706.773333pt;}
.y3f{bottom:714.453333pt;}
.yab{bottom:715.973333pt;}
.yd6{bottom:719.573333pt;}
.y61{bottom:724.053333pt;}
.y83{bottom:726.613333pt;}
.y10{bottom:730.453333pt;}
.y19{bottom:731.813333pt;}
.y3e{bottom:734.293333pt;}
.y114{bottom:735.733333pt;}
.yb5{bottom:735.813333pt;}
.y82{bottom:746.453333pt;}
.yd5{bottom:749.893333pt;}
.yf{bottom:750.293333pt;}
.y18{bottom:751.573333pt;}
.y3d{bottom:754.133333pt;}
.y130{bottom:755.413333pt;}
.yb4{bottom:755.653333pt;}
.y60{bottom:756.453333pt;}
.y113{bottom:766.053333pt;}
.y81{bottom:766.293333pt;}
.yd4{bottom:769.653333pt;}
.ye{bottom:770.133333pt;}
.y17{bottom:771.253333pt;}
.y3c{bottom:774.053333pt;}
.yb3{bottom:775.493333pt;}
.y112{bottom:785.733333pt;}
.y80{bottom:786.133333pt;}
.yd{bottom:790.053333pt;}
.y16{bottom:790.933333pt;}
.y3b{bottom:793.893333pt;}
.y5f{bottom:795.333333pt;}
.yd3{bottom:799.973333pt;}
.yf1{bottom:804.533333pt;}
.y111{bottom:805.493333pt;}
.y7f{bottom:806.053333pt;}
.yc{bottom:809.893333pt;}
.y15{bottom:810.613333pt;}
.y6{bottom:811.333333pt;}
.yb2{bottom:815.253333pt;}
.yd2{bottom:819.653333pt;}
.yf0{bottom:824.373333pt;}
.y12f{bottom:825.173333pt;}
.y5e{bottom:825.893333pt;}
.yb{bottom:829.733333pt;}
.y14{bottom:830.373333pt;}
.yb1{bottom:835.093333pt;}
.y110{bottom:835.813333pt;}
.yd1{bottom:839.413333pt;}
.y5{bottom:841.813333pt;}
.y12e{bottom:844.853333pt;}
.y5d{bottom:845.733333pt;}
.ya{bottom:849.573333pt;}
.y13{bottom:850.053333pt;}
.yb0{bottom:854.933333pt;}
.y10f{bottom:855.573333pt;}
.y3a{bottom:865.573333pt;}
.y9{bottom:869.413333pt;}
.y12{bottom:869.733333pt;}
.y4{bottom:872.373333pt;}
.yef{bottom:874.773333pt;}
.y10e{bottom:875.253333pt;}
.y39{bottom:885.440000pt;}
.y8{bottom:889.360000pt;}
.y11{bottom:889.520000pt;}
.y3{bottom:892.240000pt;}
.y12d{bottom:894.960000pt;}
.y38{bottom:905.360000pt;}
.y10d{bottom:905.600000pt;}
.y7{bottom:909.200000pt;}
.y37{bottom:925.200000pt;}
.y10c{bottom:925.360000pt;}
.y2{bottom:926.640000pt;}
.y1{bottom:945.040000pt;}
.h1{height:45.156250pt;}
.h2{height:57.375000pt;}
.h3{height:58.245469pt;}
.h4{height:66.841875pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:95.999988pt;}
.x1{left:106.319988pt;}
.x3{left:120.639988pt;}
.x4{left:152.026655pt;}
.xb{left:198.426655pt;}
.x8{left:229.306655pt;}
.xa{left:238.666655pt;}
.x2{left:313.386655pt;}
.x7{left:364.426655pt;}
.xd{left:369.786655pt;}
.xc{left:372.026655pt;}
.x6{left:378.266655pt;}
.x9{left:576.053321pt;}
}




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