
    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_2e65d4b8f082100db48b1829.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d3fd9046828162d68c4952f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a4a33bf40e8c57fa6335d0bf.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f6eb6b7a3dcee0ce50305627.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8a3db7b5c2ccafde48858d73.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_f3559285517a11996eb90fa7.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-77.040000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.432000px;}
.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;}
}
.ws0{word-spacing:-48.600000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws5{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._1d{margin-left:-15.408000px;}
._10{margin-left:-4.464000px;}
._19{margin-left:-2.972160px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._e{width:3.034080px;}
._11{width:4.288800px;}
._d{width:6.264000px;}
._c{width:8.046720px;}
._b{width:9.089280px;}
._12{width:10.244160px;}
._3{width:11.995680px;}
._15{width:13.708320px;}
._16{width:14.760000px;}
._17{width:16.199040px;}
._a{width:20.016000px;}
._18{width:21.024000px;}
._20{width:22.092000px;}
._1e{width:23.105760px;}
._1f{width:24.142560px;}
._13{width:27.720000px;}
._14{width:28.944000px;}
._1a{width:30.096000px;}
._1c{width:32.256000px;}
._21{width:33.812640px;}
._5{width:35.361120px;}
._4{width:36.676080px;}
._f{width:38.129520px;}
._1b{width:39.571920px;}
._6{width:68.564160px;}
._7{width:69.713280px;}
._8{width:95.977200px;}
._9{width:97.387920px;}
._2{width:1832.717760px;}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yae{bottom:3.960000px;}
.y95{bottom:5.220000px;}
.y9b{bottom:5.400000px;}
.yb1{bottom:5.760000px;}
.yd0{bottom:6.660000px;}
.y93{bottom:9.900000px;}
.y97{bottom:11.700000px;}
.yc2{bottom:16.380000px;}
.yaf{bottom:20.700000px;}
.yd1{bottom:23.400000px;}
.yad{bottom:24.660000px;}
.ycf{bottom:27.360000px;}
.y4{bottom:57.060000px;}
.y3{bottom:97.596000px;}
.y2{bottom:116.496000px;}
.y1{bottom:135.576000px;}
.ya4{bottom:152.130000px;}
.ycc{bottom:155.730000px;}
.y65{bottom:162.930000px;}
.yfe{bottom:170.490000px;}
.y2d{bottom:175.170000px;}
.ya3{bottom:175.530000px;}
.ycb{bottom:179.130000px;}
.yeb{bottom:184.170000px;}
.yfd{bottom:191.190000px;}
.y2c{bottom:195.870000px;}
.ya2{bottom:198.930000px;}
.y81{bottom:201.090000px;}
.yca{bottom:202.530000px;}
.y64{bottom:205.950000px;}
.yfc{bottom:211.890000px;}
.yea{bottom:215.130000px;}
.y2b{bottom:216.570000px;}
.y4b{bottom:222.150000px;}
.ya1{bottom:223.050000px;}
.yc9{bottom:226.650000px;}
.y80{bottom:232.050000px;}
.yfb{bottom:232.590000px;}
.y2a{bottom:237.270000px;}
.ye9{bottom:246.270000px;}
.ya0{bottom:246.450000px;}
.y63{bottom:249.150000px;}
.yc8{bottom:250.050000px;}
.y4a{bottom:253.290000px;}
.y29{bottom:257.970000px;}
.y7f{bottom:263.190000px;}
.y9f{bottom:269.850000px;}
.yc7{bottom:273.450000px;}
.yfa{bottom:273.990000px;}
.ye8{bottom:277.230000px;}
.y28{bottom:278.670000px;}
.y49{bottom:284.250000px;}
.y62{bottom:292.170000px;}
.y9e{bottom:293.970000px;}
.y7e{bottom:294.150000px;}
.yf9{bottom:294.690000px;}
.yc6{bottom:296.850000px;}
.y27{bottom:299.370000px;}
.ye7{bottom:308.370000px;}
.y48{bottom:315.390000px;}
.y9d{bottom:318.090000px;}
.y26{bottom:320.070000px;}
.yc5{bottom:320.250000px;}
.y7d{bottom:325.290000px;}
.y61{bottom:335.190000px;}
.yf8{bottom:336.090000px;}
.ye6{bottom:339.375000px;}
.y25{bottom:340.815000px;}
.y9c{bottom:341.535000px;}
.yc4{bottom:344.415000px;}
.y47{bottom:346.395000px;}
.y7c{bottom:356.295000px;}
.yf7{bottom:356.835000px;}
.y24{bottom:361.515000px;}
.y9a{bottom:364.935000px;}
.yc3{bottom:367.815000px;}
.ye5{bottom:370.515000px;}
.y46{bottom:377.355000px;}
.yf6{bottom:377.535000px;}
.y60{bottom:378.255000px;}
.y23{bottom:382.215000px;}
.y7b{bottom:387.435000px;}
.y99{bottom:389.235000px;}
.yc1{bottom:391.215000px;}
.yf5{bottom:398.055000px;}
.ye4{bottom:401.475000px;}
.y22{bottom:402.915000px;}
.y45{bottom:408.495000px;}
.y5f{bottom:409.395000px;}
.y98{bottom:412.635000px;}
.y117{bottom:414.795000px;}
.y7a{bottom:418.395000px;}
.y21{bottom:423.615000px;}
.yc0{bottom:425.415000px;}
.ye3{bottom:432.615000px;}
.y116{bottom:435.495000px;}
.y96{bottom:436.035000px;}
.y44{bottom:439.455000px;}
.y5e{bottom:440.355000px;}
.yf4{bottom:440.535000px;}
.y20{bottom:444.315000px;}
.y79{bottom:449.535000px;}
.y115{bottom:456.195000px;}
.y94{bottom:460.155000px;}
.ye2{bottom:463.575000px;}
.y1f{bottom:465.015000px;}
.y43{bottom:470.595000px;}
.y5d{bottom:471.495000px;}
.y114{bottom:476.895000px;}
.ybf{bottom:479.955000px;}
.y78{bottom:480.495000px;}
.y92{bottom:484.995000px;}
.y1e{bottom:485.715000px;}
.yf3{bottom:486.435000px;}
.ye1{bottom:494.715000px;}
.y113{bottom:497.595000px;}
.y42{bottom:501.555000px;}
.y5c{bottom:502.455000px;}
.y1d{bottom:506.415000px;}
.y77{bottom:511.635000px;}
.ybe{bottom:517.035000px;}
.yf2{bottom:517.395000px;}
.y112{bottom:518.295000px;}
.ye0{bottom:525.675000px;}
.y1c{bottom:527.115000px;}
.y41{bottom:532.695000px;}
.y111{bottom:538.995000px;}
.y91{bottom:539.535000px;}
.y76{bottom:542.595000px;}
.y1b{bottom:547.815000px;}
.ybd{bottom:547.995000px;}
.yf1{bottom:548.535000px;}
.ydf{bottom:556.815000px;}
.y110{bottom:559.695000px;}
.y40{bottom:563.655000px;}
.y1a{bottom:568.515000px;}
.y75{bottom:573.735000px;}
.y90{bottom:576.615000px;}
.y5b{bottom:578.595000px;}
.ybc{bottom:579.135000px;}
.yf0{bottom:579.495000px;}
.y10f{bottom:580.395000px;}
.yde{bottom:587.775000px;}
.y19{bottom:589.215000px;}
.y3f{bottom:594.795000px;}
.y10e{bottom:601.095000px;}
.y74{bottom:604.725000px;}
.y8f{bottom:607.605000px;}
.y5a{bottom:609.765000px;}
.y18{bottom:609.945000px;}
.ybb{bottom:610.125000px;}
.yef{bottom:610.665000px;}
.ydd{bottom:618.945000px;}
.y10d{bottom:621.645000px;}
.y3e{bottom:625.785000px;}
.y17{bottom:630.645000px;}
.y73{bottom:635.865000px;}
.y8e{bottom:638.745000px;}
.y59{bottom:640.725000px;}
.yba{bottom:641.265000px;}
.yee{bottom:641.625000px;}
.y10c{bottom:642.345000px;}
.ydc{bottom:649.905000px;}
.y16{bottom:651.345000px;}
.y3d{bottom:656.925000px;}
.y10b{bottom:663.045000px;}
.y72{bottom:666.825000px;}
.y8d{bottom:669.705000px;}
.y15{bottom:672.045000px;}
.yb9{bottom:672.225000px;}
.yed{bottom:672.765000px;}
.ydb{bottom:681.045000px;}
.y58{bottom:683.745000px;}
.y3c{bottom:687.885000px;}
.y14{bottom:692.745000px;}
.y71{bottom:697.965000px;}
.y8c{bottom:700.845000px;}
.yec{bottom:703.005000px;}
.yb8{bottom:703.365000px;}
.y10a{bottom:704.445000px;}
.yda{bottom:712.005000px;}
.y13{bottom:713.445000px;}
.y57{bottom:714.885000px;}
.y3b{bottom:719.025000px;}
.y109{bottom:725.145000px;}
.y70{bottom:728.925000px;}
.y8b{bottom:731.805000px;}
.y12{bottom:734.145000px;}
.yb7{bottom:734.325000px;}
.yd9{bottom:742.965000px;}
.y56{bottom:745.845000px;}
.y3a{bottom:749.985000px;}
.y11{bottom:754.845000px;}
.y6f{bottom:760.065000px;}
.y8a{bottom:762.945000px;}
.yb6{bottom:765.465000px;}
.y108{bottom:766.545000px;}
.yd8{bottom:774.105000px;}
.y10{bottom:775.545000px;}
.y55{bottom:776.985000px;}
.y39{bottom:781.125000px;}
.y107{bottom:787.245000px;}
.y6e{bottom:791.025000px;}
.y89{bottom:793.905000px;}
.yf{bottom:796.245000px;}
.yb5{bottom:796.425000px;}
.yd7{bottom:805.065000px;}
.y54{bottom:807.945000px;}
.ye{bottom:817.485000px;}
.y6d{bottom:822.165000px;}
.y38{bottom:824.145000px;}
.y88{bottom:825.045000px;}
.yb4{bottom:827.385000px;}
.y106{bottom:828.645000px;}
.yd6{bottom:836.205000px;}
.y53{bottom:839.085000px;}
.yd{bottom:842.325000px;}
.y105{bottom:849.345000px;}
.y6c{bottom:853.125000px;}
.yb3{bottom:853.485000px;}
.y37{bottom:855.105000px;}
.y87{bottom:856.005000px;}
.yd5{bottom:867.165000px;}
.yc{bottom:869.865000px;}
.y52{bottom:870.045000px;}
.yb2{bottom:870.810000px;}
.y6b{bottom:884.310000px;}
.y36{bottom:886.290000px;}
.y86{bottom:887.190000px;}
.y104{bottom:890.790000px;}
.yb{bottom:897.630000px;}
.yd4{bottom:898.350000px;}
.y51{bottom:901.230000px;}
.yb0{bottom:904.290000px;}
.y103{bottom:911.490000px;}
.y6a{bottom:915.270000px;}
.y35{bottom:917.250000px;}
.y85{bottom:918.150000px;}
.yac{bottom:928.590000px;}
.y50{bottom:932.190000px;}
.yd3{bottom:936.330000px;}
.ya{bottom:937.230000px;}
.y69{bottom:946.410000px;}
.y34{bottom:948.390000px;}
.y84{bottom:949.110000px;}
.y102{bottom:952.890000px;}
.y4f{bottom:963.330000px;}
.yd2{bottom:969.810000px;}
.yab{bottom:970.710000px;}
.y101{bottom:973.590000px;}
.y9{bottom:976.830000px;}
.y33{bottom:978.630000px;}
.y83{bottom:980.250000px;}
.y68{bottom:989.430000px;}
.yaa{bottom:994.110000px;}
.y4e{bottom:994.290000px;}
.y8{bottom:1004.370000px;}
.y82{bottom:1010.490000px;}
.y100{bottom:1014.990000px;}
.ya9{bottom:1017.510000px;}
.y32{bottom:1023.810000px;}
.y4d{bottom:1025.430000px;}
.y7{bottom:1031.910000px;}
.y67{bottom:1032.450000px;}
.yff{bottom:1035.690000px;}
.ya8{bottom:1040.910000px;}
.y31{bottom:1056.390000px;}
.y6{bottom:1059.630000px;}
.ya7{bottom:1064.310000px;}
.yce{bottom:1065.030000px;}
.y66{bottom:1075.470000px;}
.y30{bottom:1077.090000px;}
.y4c{bottom:1087.530000px;}
.ya6{bottom:1087.710000px;}
.ycd{bottom:1088.430000px;}
.y2f{bottom:1097.790000px;}
.ya5{bottom:1111.830000px;}
.y5{bottom:1112.730000px;}
.y2e{bottom:1118.490000px;}
.hb{height:23.400000px;}
.hd{height:23.436000px;}
.hf{height:24.300000px;}
.ha{height:32.760000px;}
.he{height:41.400000px;}
.h10{height:46.800000px;}
.hc{height:53.573906px;}
.h6{height:59.343750px;}
.h2{height:59.383125px;}
.h7{height:63.949219px;}
.h3{height:64.546875px;}
.h9{height:70.606406px;}
.h5{height:74.820586px;}
.h8{height:78.650156px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:21.636000px;}
.w5{width:91.656000px;}
.w6{width:120.960000px;}
.w4{width:138.276000px;}
.w9{width:151.920000px;}
.w3{width:329.610000px;}
.w7{width:506.955000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:5.400000px;}
.x26{left:6.660000px;}
.x2f{left:10.800000px;}
.xd{left:27.390000px;}
.x2e{left:29.154000px;}
.x15{left:33.474000px;}
.x11{left:36.180000px;}
.xf{left:40.320000px;}
.x1e{left:41.610000px;}
.x13{left:43.560000px;}
.x16{left:45.720000px;}
.x2d{left:51.660000px;}
.x37{left:56.514000px;}
.x14{left:58.140000px;}
.x17{left:60.300000px;}
.x1a{left:66.810000px;}
.x12{left:68.394000px;}
.x28{left:72.714000px;}
.x30{left:75.780000px;}
.x1b{left:98.274000px;}
.x1d{left:100.254000px;}
.x1f{left:104.214000px;}
.x21{left:116.274000px;}
.x22{left:117.354000px;}
.x20{left:121.314000px;}
.x27{left:122.574000px;}
.x1{left:127.655987px;}
.x1c{left:130.314000px;}
.xb{left:131.754000px;}
.x25{left:133.554000px;}
.x24{left:136.434000px;}
.x23{left:139.494000px;}
.x18{left:148.674000px;}
.x2{left:150.689987px;}
.x19{left:153.219000px;}
.x7{left:170.129987px;}
.x32{left:178.959000px;}
.x9{left:181.649987px;}
.x8{left:188.489987px;}
.x4{left:191.369987px;}
.x33{left:193.899000px;}
.x34{left:195.879000px;}
.x36{left:198.759000px;}
.x31{left:205.599000px;}
.x35{left:209.379000px;}
.x29{left:220.359000px;}
.x38{left:238.899000px;}
.x5{left:281.054987px;}
.xa{left:303.734987px;}
.x3{left:336.314987px;}
.xc{left:457.275000px;}
.x6{left:467.924987px;}
.xe{left:595.545000px;}
.x2a{left:634.605000px;}
.x2c{left:656.250000px;}
.x10{left:687.210000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.384000pt;}
.ws0{word-spacing:-43.200000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._1d{margin-left:-13.696000pt;}
._10{margin-left:-3.968000pt;}
._19{margin-left:-2.641920pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._e{width:2.696960pt;}
._11{width:3.812267pt;}
._d{width:5.568000pt;}
._c{width:7.152640pt;}
._b{width:8.079360pt;}
._12{width:9.105920pt;}
._3{width:10.662827pt;}
._15{width:12.185173pt;}
._16{width:13.120000pt;}
._17{width:14.399147pt;}
._a{width:17.792000pt;}
._18{width:18.688000pt;}
._20{width:19.637333pt;}
._1e{width:20.538453pt;}
._1f{width:21.460053pt;}
._13{width:24.640000pt;}
._14{width:25.728000pt;}
._1a{width:26.752000pt;}
._1c{width:28.672000pt;}
._21{width:30.055680pt;}
._5{width:31.432107pt;}
._4{width:32.600960pt;}
._f{width:33.892907pt;}
._1b{width:35.175040pt;}
._6{width:60.945920pt;}
._7{width:61.967360pt;}
._8{width:85.313067pt;}
._9{width:86.567040pt;}
._2{width:1629.082453pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:3.520000pt;}
.y95{bottom:4.640000pt;}
.y9b{bottom:4.800000pt;}
.yb1{bottom:5.120000pt;}
.yd0{bottom:5.920000pt;}
.y93{bottom:8.800000pt;}
.y97{bottom:10.400000pt;}
.yc2{bottom:14.560000pt;}
.yaf{bottom:18.400000pt;}
.yd1{bottom:20.800000pt;}
.yad{bottom:21.920000pt;}
.ycf{bottom:24.320000pt;}
.y4{bottom:50.720000pt;}
.y3{bottom:86.752000pt;}
.y2{bottom:103.552000pt;}
.y1{bottom:120.512000pt;}
.ya4{bottom:135.226667pt;}
.ycc{bottom:138.426667pt;}
.y65{bottom:144.826667pt;}
.yfe{bottom:151.546667pt;}
.y2d{bottom:155.706667pt;}
.ya3{bottom:156.026667pt;}
.ycb{bottom:159.226667pt;}
.yeb{bottom:163.706667pt;}
.yfd{bottom:169.946667pt;}
.y2c{bottom:174.106667pt;}
.ya2{bottom:176.826667pt;}
.y81{bottom:178.746667pt;}
.yca{bottom:180.026667pt;}
.y64{bottom:183.066667pt;}
.yfc{bottom:188.346667pt;}
.yea{bottom:191.226667pt;}
.y2b{bottom:192.506667pt;}
.y4b{bottom:197.466667pt;}
.ya1{bottom:198.266667pt;}
.yc9{bottom:201.466667pt;}
.y80{bottom:206.266667pt;}
.yfb{bottom:206.746667pt;}
.y2a{bottom:210.906667pt;}
.ye9{bottom:218.906667pt;}
.ya0{bottom:219.066667pt;}
.y63{bottom:221.466667pt;}
.yc8{bottom:222.266667pt;}
.y4a{bottom:225.146667pt;}
.y29{bottom:229.306667pt;}
.y7f{bottom:233.946667pt;}
.y9f{bottom:239.866667pt;}
.yc7{bottom:243.066667pt;}
.yfa{bottom:243.546667pt;}
.ye8{bottom:246.426667pt;}
.y28{bottom:247.706667pt;}
.y49{bottom:252.666667pt;}
.y62{bottom:259.706667pt;}
.y9e{bottom:261.306667pt;}
.y7e{bottom:261.466667pt;}
.yf9{bottom:261.946667pt;}
.yc6{bottom:263.866667pt;}
.y27{bottom:266.106667pt;}
.ye7{bottom:274.106667pt;}
.y48{bottom:280.346667pt;}
.y9d{bottom:282.746667pt;}
.y26{bottom:284.506667pt;}
.yc5{bottom:284.666667pt;}
.y7d{bottom:289.146667pt;}
.y61{bottom:297.946667pt;}
.yf8{bottom:298.746667pt;}
.ye6{bottom:301.666667pt;}
.y25{bottom:302.946667pt;}
.y9c{bottom:303.586667pt;}
.yc4{bottom:306.146667pt;}
.y47{bottom:307.906667pt;}
.y7c{bottom:316.706667pt;}
.yf7{bottom:317.186667pt;}
.y24{bottom:321.346667pt;}
.y9a{bottom:324.386667pt;}
.yc3{bottom:326.946667pt;}
.ye5{bottom:329.346667pt;}
.y46{bottom:335.426667pt;}
.yf6{bottom:335.586667pt;}
.y60{bottom:336.226667pt;}
.y23{bottom:339.746667pt;}
.y7b{bottom:344.386667pt;}
.y99{bottom:345.986667pt;}
.yc1{bottom:347.746667pt;}
.yf5{bottom:353.826667pt;}
.ye4{bottom:356.866667pt;}
.y22{bottom:358.146667pt;}
.y45{bottom:363.106667pt;}
.y5f{bottom:363.906667pt;}
.y98{bottom:366.786667pt;}
.y117{bottom:368.706667pt;}
.y7a{bottom:371.906667pt;}
.y21{bottom:376.546667pt;}
.yc0{bottom:378.146667pt;}
.ye3{bottom:384.546667pt;}
.y116{bottom:387.106667pt;}
.y96{bottom:387.586667pt;}
.y44{bottom:390.626667pt;}
.y5e{bottom:391.426667pt;}
.yf4{bottom:391.586667pt;}
.y20{bottom:394.946667pt;}
.y79{bottom:399.586667pt;}
.y115{bottom:405.506667pt;}
.y94{bottom:409.026667pt;}
.ye2{bottom:412.066667pt;}
.y1f{bottom:413.346667pt;}
.y43{bottom:418.306667pt;}
.y5d{bottom:419.106667pt;}
.y114{bottom:423.906667pt;}
.ybf{bottom:426.626667pt;}
.y78{bottom:427.106667pt;}
.y92{bottom:431.106667pt;}
.y1e{bottom:431.746667pt;}
.yf3{bottom:432.386667pt;}
.ye1{bottom:439.746667pt;}
.y113{bottom:442.306667pt;}
.y42{bottom:445.826667pt;}
.y5c{bottom:446.626667pt;}
.y1d{bottom:450.146667pt;}
.y77{bottom:454.786667pt;}
.ybe{bottom:459.586667pt;}
.yf2{bottom:459.906667pt;}
.y112{bottom:460.706667pt;}
.ye0{bottom:467.266667pt;}
.y1c{bottom:468.546667pt;}
.y41{bottom:473.506667pt;}
.y111{bottom:479.106667pt;}
.y91{bottom:479.586667pt;}
.y76{bottom:482.306667pt;}
.y1b{bottom:486.946667pt;}
.ybd{bottom:487.106667pt;}
.yf1{bottom:487.586667pt;}
.ydf{bottom:494.946667pt;}
.y110{bottom:497.506667pt;}
.y40{bottom:501.026667pt;}
.y1a{bottom:505.346667pt;}
.y75{bottom:509.986667pt;}
.y90{bottom:512.546667pt;}
.y5b{bottom:514.306667pt;}
.ybc{bottom:514.786667pt;}
.yf0{bottom:515.106667pt;}
.y10f{bottom:515.906667pt;}
.yde{bottom:522.466667pt;}
.y19{bottom:523.746667pt;}
.y3f{bottom:528.706667pt;}
.y10e{bottom:534.306667pt;}
.y74{bottom:537.533333pt;}
.y8f{bottom:540.093333pt;}
.y5a{bottom:542.013333pt;}
.y18{bottom:542.173333pt;}
.ybb{bottom:542.333333pt;}
.yef{bottom:542.813333pt;}
.ydd{bottom:550.173333pt;}
.y10d{bottom:552.573333pt;}
.y3e{bottom:556.253333pt;}
.y17{bottom:560.573333pt;}
.y73{bottom:565.213333pt;}
.y8e{bottom:567.773333pt;}
.y59{bottom:569.533333pt;}
.yba{bottom:570.013333pt;}
.yee{bottom:570.333333pt;}
.y10c{bottom:570.973333pt;}
.ydc{bottom:577.693333pt;}
.y16{bottom:578.973333pt;}
.y3d{bottom:583.933333pt;}
.y10b{bottom:589.373333pt;}
.y72{bottom:592.733333pt;}
.y8d{bottom:595.293333pt;}
.y15{bottom:597.373333pt;}
.yb9{bottom:597.533333pt;}
.yed{bottom:598.013333pt;}
.ydb{bottom:605.373333pt;}
.y58{bottom:607.773333pt;}
.y3c{bottom:611.453333pt;}
.y14{bottom:615.773333pt;}
.y71{bottom:620.413333pt;}
.y8c{bottom:622.973333pt;}
.yec{bottom:624.893333pt;}
.yb8{bottom:625.213333pt;}
.y10a{bottom:626.173333pt;}
.yda{bottom:632.893333pt;}
.y13{bottom:634.173333pt;}
.y57{bottom:635.453333pt;}
.y3b{bottom:639.133333pt;}
.y109{bottom:644.573333pt;}
.y70{bottom:647.933333pt;}
.y8b{bottom:650.493333pt;}
.y12{bottom:652.573333pt;}
.yb7{bottom:652.733333pt;}
.yd9{bottom:660.413333pt;}
.y56{bottom:662.973333pt;}
.y3a{bottom:666.653333pt;}
.y11{bottom:670.973333pt;}
.y6f{bottom:675.613333pt;}
.y8a{bottom:678.173333pt;}
.yb6{bottom:680.413333pt;}
.y108{bottom:681.373333pt;}
.yd8{bottom:688.093333pt;}
.y10{bottom:689.373333pt;}
.y55{bottom:690.653333pt;}
.y39{bottom:694.333333pt;}
.y107{bottom:699.773333pt;}
.y6e{bottom:703.133333pt;}
.y89{bottom:705.693333pt;}
.yf{bottom:707.773333pt;}
.yb5{bottom:707.933333pt;}
.yd7{bottom:715.613333pt;}
.y54{bottom:718.173333pt;}
.ye{bottom:726.653333pt;}
.y6d{bottom:730.813333pt;}
.y38{bottom:732.573333pt;}
.y88{bottom:733.373333pt;}
.yb4{bottom:735.453333pt;}
.y106{bottom:736.573333pt;}
.yd6{bottom:743.293333pt;}
.y53{bottom:745.853333pt;}
.yd{bottom:748.733333pt;}
.y105{bottom:754.973333pt;}
.y6c{bottom:758.333333pt;}
.yb3{bottom:758.653333pt;}
.y37{bottom:760.093333pt;}
.y87{bottom:760.893333pt;}
.yd5{bottom:770.813333pt;}
.yc{bottom:773.213333pt;}
.y52{bottom:773.373333pt;}
.yb2{bottom:774.053333pt;}
.y6b{bottom:786.053333pt;}
.y36{bottom:787.813333pt;}
.y86{bottom:788.613333pt;}
.y104{bottom:791.813333pt;}
.yb{bottom:797.893333pt;}
.yd4{bottom:798.533333pt;}
.y51{bottom:801.093333pt;}
.yb0{bottom:803.813333pt;}
.y103{bottom:810.213333pt;}
.y6a{bottom:813.573333pt;}
.y35{bottom:815.333333pt;}
.y85{bottom:816.133333pt;}
.yac{bottom:825.413333pt;}
.y50{bottom:828.613333pt;}
.yd3{bottom:832.293333pt;}
.ya{bottom:833.093333pt;}
.y69{bottom:841.253333pt;}
.y34{bottom:843.013333pt;}
.y84{bottom:843.653333pt;}
.y102{bottom:847.013333pt;}
.y4f{bottom:856.293333pt;}
.yd2{bottom:862.053333pt;}
.yab{bottom:862.853333pt;}
.y101{bottom:865.413333pt;}
.y9{bottom:868.293333pt;}
.y33{bottom:869.893333pt;}
.y83{bottom:871.333333pt;}
.y68{bottom:879.493333pt;}
.yaa{bottom:883.653333pt;}
.y4e{bottom:883.813333pt;}
.y8{bottom:892.773333pt;}
.y82{bottom:898.213333pt;}
.y100{bottom:902.213333pt;}
.ya9{bottom:904.453333pt;}
.y32{bottom:910.053333pt;}
.y4d{bottom:911.493333pt;}
.y7{bottom:917.253333pt;}
.y67{bottom:917.733333pt;}
.yff{bottom:920.613333pt;}
.ya8{bottom:925.253333pt;}
.y31{bottom:939.013333pt;}
.y6{bottom:941.893333pt;}
.ya7{bottom:946.053333pt;}
.yce{bottom:946.693333pt;}
.y66{bottom:955.973333pt;}
.y30{bottom:957.413333pt;}
.y4c{bottom:966.693333pt;}
.ya6{bottom:966.853333pt;}
.ycd{bottom:967.493333pt;}
.y2f{bottom:975.813333pt;}
.ya5{bottom:988.293333pt;}
.y5{bottom:989.093333pt;}
.y2e{bottom:994.213333pt;}
.hb{height:20.800000pt;}
.hd{height:20.832000pt;}
.hf{height:21.600000pt;}
.ha{height:29.120000pt;}
.he{height:36.800000pt;}
.h10{height:41.600000pt;}
.hc{height:47.621250pt;}
.h6{height:52.750000pt;}
.h2{height:52.785000pt;}
.h7{height:56.843750pt;}
.h3{height:57.375000pt;}
.h9{height:62.761250pt;}
.h5{height:66.507188pt;}
.h8{height:69.911250pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:19.232000pt;}
.w5{width:81.472000pt;}
.w6{width:107.520000pt;}
.w4{width:122.912000pt;}
.w9{width:135.040000pt;}
.w3{width:292.986667pt;}
.w7{width:450.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:4.800000pt;}
.x26{left:5.920000pt;}
.x2f{left:9.600000pt;}
.xd{left:24.346667pt;}
.x2e{left:25.914667pt;}
.x15{left:29.754667pt;}
.x11{left:32.160000pt;}
.xf{left:35.840000pt;}
.x1e{left:36.986667pt;}
.x13{left:38.720000pt;}
.x16{left:40.640000pt;}
.x2d{left:45.920000pt;}
.x37{left:50.234667pt;}
.x14{left:51.680000pt;}
.x17{left:53.600000pt;}
.x1a{left:59.386667pt;}
.x12{left:60.794667pt;}
.x28{left:64.634667pt;}
.x30{left:67.360000pt;}
.x1b{left:87.354667pt;}
.x1d{left:89.114667pt;}
.x1f{left:92.634667pt;}
.x21{left:103.354667pt;}
.x22{left:104.314667pt;}
.x20{left:107.834667pt;}
.x27{left:108.954667pt;}
.x1{left:113.471988pt;}
.x1c{left:115.834667pt;}
.xb{left:117.114667pt;}
.x25{left:118.714667pt;}
.x24{left:121.274667pt;}
.x23{left:123.994667pt;}
.x18{left:132.154667pt;}
.x2{left:133.946655pt;}
.x19{left:136.194667pt;}
.x7{left:151.226655pt;}
.x32{left:159.074667pt;}
.x9{left:161.466655pt;}
.x8{left:167.546655pt;}
.x4{left:170.106655pt;}
.x33{left:172.354667pt;}
.x34{left:174.114667pt;}
.x36{left:176.674667pt;}
.x31{left:182.754667pt;}
.x35{left:186.114667pt;}
.x29{left:195.874667pt;}
.x38{left:212.354667pt;}
.x5{left:249.826655pt;}
.xa{left:269.986655pt;}
.x3{left:298.946655pt;}
.xc{left:406.466667pt;}
.x6{left:415.933322pt;}
.xe{left:529.373333pt;}
.x2a{left:564.093333pt;}
.x2c{left:583.333333pt;}
.x10{left:610.853333pt;}
}




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