
    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_5b5588f6d36f871b7ade568b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4741d18a3073e0faeaa1ccff.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d2dcfadc9b1002eeae9d905a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f075203981e148518b00525e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_a717066e53b7df6c76e6390b.woff')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_d07afeac8ece0f97531dbe42.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls8{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.060000px;}
.ls6{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.600000px;}
.lsb{letter-spacing:15.720000px;}
.lsa{letter-spacing:45.720000px;}
.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:-18.384000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.204000px;}
.ws6{word-spacing:-15.000000px;}
.ws4{word-spacing:-12.900000px;}
.ws5{word-spacing:-11.136000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-2.400000px;}
._1{margin-left:-1.338000px;}
._0{width:1.122000px;}
._6{width:2.652000px;}
._9{width:3.840000px;}
._12{width:5.088000px;}
._8{width:6.756000px;}
._7{width:7.860000px;}
._e{width:9.738000px;}
._c{width:11.640000px;}
._d{width:13.458000px;}
._11{width:16.380000px;}
._b{width:17.700000px;}
._a{width:18.738000px;}
._f{width:20.526000px;}
._16{width:21.786000px;}
._1c{width:23.418000px;}
._17{width:24.438000px;}
._18{width:25.464000px;}
._1b{width:27.318000px;}
._15{width:28.650000px;}
._13{width:30.120000px;}
._14{width:31.278000px;}
._19{width:33.120000px;}
._1a{width:34.320000px;}
._2{width:43.800000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,79,136);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y40{bottom:5.700000px;}
.y5{bottom:12.337500px;}
.y3f{bottom:25.200000px;}
.y3e{bottom:39.600000px;}
.y4{bottom:46.800000px;}
.y3d{bottom:57.030000px;}
.y1{bottom:57.037500px;}
.y3c{bottom:74.130000px;}
.y42{bottom:74.137500px;}
.y3{bottom:81.337500px;}
.y3b{bottom:91.545000px;}
.y3a{bottom:108.645000px;}
.ydf{bottom:116.437500px;}
.y32{bottom:122.137500px;}
.y39{bottom:126.030000px;}
.ya6{bottom:126.637500px;}
.yde{bottom:133.537500px;}
.y7b{bottom:137.137500px;}
.y31{bottom:139.537500px;}
.yef{bottom:140.437500px;}
.y38{bottom:143.130000px;}
.ya5{bottom:144.037500px;}
.ydd{bottom:150.930000px;}
.y7a{bottom:154.245000px;}
.y30{bottom:156.645000px;}
.yee{bottom:157.830000px;}
.y37{bottom:160.545000px;}
.ya4{bottom:161.130000px;}
.ydc{bottom:168.045000px;}
.y79{bottom:171.630000px;}
.y2f{bottom:174.045000px;}
.yed{bottom:174.930000px;}
.y36{bottom:177.630000px;}
.ya3{bottom:178.575000px;}
.ydb{bottom:185.475000px;}
.y78{bottom:188.775000px;}
.y2e{bottom:191.175000px;}
.yec{bottom:192.375000px;}
.y35{bottom:195.030000px;}
.ya2{bottom:195.075000px;}
.yda{bottom:202.575000px;}
.y77{bottom:206.175000px;}
.y2d{bottom:208.575000px;}
.ya1{bottom:209.475000px;}
.y34{bottom:212.745000px;}
.yd9{bottom:219.975000px;}
.y76{bottom:223.275000px;}
.y2c{bottom:225.675000px;}
.ya0{bottom:226.875000px;}
.yd8{bottom:237.075000px;}
.y75{bottom:240.975000px;}
.y2b{bottom:243.075000px;}
.y9f{bottom:243.975000px;}
.yd7{bottom:254.475000px;}
.y74{bottom:259.575000px;}
.y2a{bottom:260.175000px;}
.y9e{bottom:261.375000px;}
.yd6{bottom:271.575000px;}
.y73{bottom:276.675000px;}
.y29{bottom:277.575000px;}
.y9d{bottom:278.475000px;}
.yd5{bottom:288.975000px;}
.y72{bottom:294.075000px;}
.y28{bottom:294.675000px;}
.y9c{bottom:295.875000px;}
.yd4{bottom:306.075000px;}
.y71{bottom:311.175000px;}
.y27{bottom:312.075000px;}
.y9b{bottom:312.975000px;}
.yd3{bottom:323.475000px;}
.y70{bottom:328.575000px;}
.y26{bottom:329.175000px;}
.y9a{bottom:330.375000px;}
.yd2{bottom:340.575000px;}
.y6f{bottom:345.720000px;}
.y25{bottom:346.620000px;}
.y99{bottom:347.505000px;}
.yd1{bottom:358.005000px;}
.y6e{bottom:363.120000px;}
.y24{bottom:363.705000px;}
.y98{bottom:364.905000px;}
.yd0{bottom:375.105000px;}
.y6d{bottom:380.205000px;}
.y23{bottom:381.120000px;}
.yeb{bottom:382.020000px;}
.y97{bottom:382.920000px;}
.ycf{bottom:392.520000px;}
.y6c{bottom:397.620000px;}
.y22{bottom:398.205000px;}
.yea{bottom:399.420000px;}
.yce{bottom:411.420000px;}
.y6b{bottom:414.705000px;}
.y21{bottom:415.620000px;}
.ye9{bottom:416.505000px;}
.ycd{bottom:428.505000px;}
.y6a{bottom:432.120000px;}
.y20{bottom:432.705000px;}
.ye8{bottom:433.920000px;}
.ycc{bottom:445.905000px;}
.y69{bottom:449.205000px;}
.y1f{bottom:450.120000px;}
.ye7{bottom:451.005000px;}
.ycb{bottom:463.005000px;}
.y68{bottom:466.620000px;}
.y1e{bottom:467.205000px;}
.ye6{bottom:468.420000px;}
.yca{bottom:480.420000px;}
.y67{bottom:483.720000px;}
.y1d{bottom:484.620000px;}
.ye5{bottom:485.505000px;}
.yc9{bottom:497.505000px;}
.y66{bottom:501.120000px;}
.y96{bottom:501.420000px;}
.y1c{bottom:501.720000px;}
.ye4{bottom:502.920000px;}
.yc8{bottom:514.950000px;}
.y65{bottom:518.250000px;}
.y1b{bottom:519.150000px;}
.y95{bottom:520.050000px;}
.yc7{bottom:532.050000px;}
.y64{bottom:535.650000px;}
.y1a{bottom:536.850000px;}
.y94{bottom:537.450000px;}
.yc6{bottom:549.450000px;}
.y63{bottom:552.750000px;}
.y93{bottom:554.550000px;}
.y19{bottom:556.950000px;}
.yc5{bottom:566.850000px;}
.y62{bottom:570.150000px;}
.y92{bottom:571.950000px;}
.yc4{bottom:584.850000px;}
.y61{bottom:587.250000px;}
.y91{bottom:589.050000px;}
.yc3{bottom:599.550000px;}
.y60{bottom:604.650000px;}
.y90{bottom:606.450000px;}
.yc2{bottom:616.650000px;}
.y5f{bottom:621.750000px;}
.y8f{bottom:623.550000px;}
.y33{bottom:624.450000px;}
.yc1{bottom:634.050000px;}
.y5e{bottom:639.150000px;}
.y8e{bottom:640.950000px;}
.yc0{bottom:651.150000px;}
.y5d{bottom:656.250000px;}
.y8d{bottom:658.050000px;}
.ybf{bottom:668.550000px;}
.y5c{bottom:673.650000px;}
.y8c{bottom:675.450000px;}
.ybe{bottom:687.495000px;}
.y5b{bottom:690.780000px;}
.y8b{bottom:692.595000px;}
.ybd{bottom:704.595000px;}
.y5a{bottom:708.195000px;}
.y8a{bottom:709.980000px;}
.ybc{bottom:721.980000px;}
.y59{bottom:725.280000px;}
.y89{bottom:727.080000px;}
.ybb{bottom:739.080000px;}
.y58{bottom:742.695000px;}
.y88{bottom:744.495000px;}
.yba{bottom:756.495000px;}
.y57{bottom:759.780000px;}
.y87{bottom:761.595000px;}
.yb9{bottom:773.580000px;}
.y56{bottom:777.195000px;}
.y86{bottom:778.980000px;}
.yb8{bottom:791.295000px;}
.y55{bottom:794.295000px;}
.y85{bottom:796.080000px;}
.yb7{bottom:809.880000px;}
.y54{bottom:811.695000px;}
.y84{bottom:813.495000px;}
.yb6{bottom:827.295000px;}
.y53{bottom:828.795000px;}
.y83{bottom:830.580000px;}
.yb5{bottom:844.380000px;}
.y52{bottom:846.195000px;}
.y82{bottom:847.995000px;}
.ye3{bottom:848.295000px;}
.yb4{bottom:861.825000px;}
.y51{bottom:863.325000px;}
.y81{bottom:865.125000px;}
.ye2{bottom:867.825000px;}
.yb3{bottom:878.925000px;}
.y50{bottom:880.725000px;}
.y80{bottom:882.525000px;}
.y18{bottom:890.325000px;}
.yb2{bottom:896.325000px;}
.y4f{bottom:897.825000px;}
.y7f{bottom:899.625000px;}
.y17{bottom:907.725000px;}
.yb1{bottom:914.025000px;}
.y4e{bottom:915.525000px;}
.y7e{bottom:917.025000px;}
.y16{bottom:927.525000px;}
.yb0{bottom:933.525000px;}
.y7d{bottom:934.125000px;}
.y4d{bottom:934.725000px;}
.y15{bottom:946.125000px;}
.yaf{bottom:947.925000px;}
.y7c{bottom:951.525000px;}
.y4c{bottom:954.225000px;}
.yae{bottom:965.325000px;}
.y4b{bottom:968.625000px;}
.y14{bottom:970.125000px;}
.yad{bottom:982.425000px;}
.y13{bottom:982.725000px;}
.y4a{bottom:986.025000px;}
.yac{bottom:999.825000px;}
.y12{bottom:1002.825000px;}
.y49{bottom:1003.125000px;}
.ye1{bottom:1003.725000px;}
.yab{bottom:1016.955000px;}
.y11{bottom:1020.570000px;}
.ye0{bottom:1023.255000px;}
.yaa{bottom:1034.370000px;}
.y48{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.ya9{bottom:1052.070000px;}
.y47{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y46{bottom:1072.170000px;}
.ya8{bottom:1072.755000px;}
.ya{bottom:1083.570000px;}
.y45{bottom:1089.570000px;}
.ya7{bottom:1092.255000px;}
.y9{bottom:1097.955000px;}
.y44{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.hc{height:27.650391px;}
.h15{height:33.515625px;}
.h7{height:33.867188px;}
.h13{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.h10{height:41.894531px;}
.h4{height:42.333984px;}
.h17{height:43.681641px;}
.h14{height:44.507812px;}
.h16{height:46.567383px;}
.hb{height:49.250391px;}
.hf{height:49.453125px;}
.h18{height:50.273438px;}
.h6{height:50.800781px;}
.h12{height:51.996094px;}
.he{height:59.343750px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h11{height:229.575000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:247.875000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.xf{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.xe{left:84.037500px;}
.x11{left:108.037487px;}
.xd{left:126.330000px;}
.x9{left:153.629987px;}
.xb{left:241.582500px;}
.x6{left:446.249987px;}
.xc{left:564.495000px;}
.x10{left:592.979987px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.053333pt;}
.ls6{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.533333pt;}
.lsb{letter-spacing:13.973333pt;}
.lsa{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.514667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws4{word-spacing:-11.466667pt;}
.ws5{word-spacing:-9.898667pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-2.133333pt;}
._1{margin-left:-1.189333pt;}
._0{width:0.997333pt;}
._6{width:2.357333pt;}
._9{width:3.413333pt;}
._12{width:4.522667pt;}
._8{width:6.005333pt;}
._7{width:6.986667pt;}
._e{width:8.656000pt;}
._c{width:10.346667pt;}
._d{width:11.962667pt;}
._11{width:14.560000pt;}
._b{width:15.733333pt;}
._a{width:16.656000pt;}
._f{width:18.245333pt;}
._16{width:19.365333pt;}
._1c{width:20.816000pt;}
._17{width:21.722667pt;}
._18{width:22.634667pt;}
._1b{width:24.282667pt;}
._15{width:25.466667pt;}
._13{width:26.773333pt;}
._14{width:27.802667pt;}
._19{width:29.440000pt;}
._1a{width:30.506667pt;}
._2{width:38.933333pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y40{bottom:5.066667pt;}
.y5{bottom:10.966667pt;}
.y3f{bottom:22.400000pt;}
.y3e{bottom:35.200000pt;}
.y4{bottom:41.600000pt;}
.y3d{bottom:50.693333pt;}
.y1{bottom:50.700000pt;}
.y3c{bottom:65.893333pt;}
.y42{bottom:65.900000pt;}
.y3{bottom:72.300000pt;}
.y3b{bottom:81.373333pt;}
.y3a{bottom:96.573333pt;}
.ydf{bottom:103.500000pt;}
.y32{bottom:108.566667pt;}
.y39{bottom:112.026667pt;}
.ya6{bottom:112.566667pt;}
.yde{bottom:118.700000pt;}
.y7b{bottom:121.900000pt;}
.y31{bottom:124.033333pt;}
.yef{bottom:124.833333pt;}
.y38{bottom:127.226667pt;}
.ya5{bottom:128.033333pt;}
.ydd{bottom:134.160000pt;}
.y7a{bottom:137.106667pt;}
.y30{bottom:139.240000pt;}
.yee{bottom:140.293333pt;}
.y37{bottom:142.706667pt;}
.ya4{bottom:143.226667pt;}
.ydc{bottom:149.373333pt;}
.y79{bottom:152.560000pt;}
.y2f{bottom:154.706667pt;}
.yed{bottom:155.493333pt;}
.y36{bottom:157.893333pt;}
.ya3{bottom:158.733333pt;}
.ydb{bottom:164.866667pt;}
.y78{bottom:167.800000pt;}
.y2e{bottom:169.933333pt;}
.yec{bottom:171.000000pt;}
.y35{bottom:173.360000pt;}
.ya2{bottom:173.400000pt;}
.yda{bottom:180.066667pt;}
.y77{bottom:183.266667pt;}
.y2d{bottom:185.400000pt;}
.ya1{bottom:186.200000pt;}
.y34{bottom:189.106667pt;}
.yd9{bottom:195.533333pt;}
.y76{bottom:198.466667pt;}
.y2c{bottom:200.600000pt;}
.ya0{bottom:201.666667pt;}
.yd8{bottom:210.733333pt;}
.y75{bottom:214.200000pt;}
.y2b{bottom:216.066667pt;}
.y9f{bottom:216.866667pt;}
.yd7{bottom:226.200000pt;}
.y74{bottom:230.733333pt;}
.y2a{bottom:231.266667pt;}
.y9e{bottom:232.333333pt;}
.yd6{bottom:241.400000pt;}
.y73{bottom:245.933333pt;}
.y29{bottom:246.733333pt;}
.y9d{bottom:247.533333pt;}
.yd5{bottom:256.866667pt;}
.y72{bottom:261.400000pt;}
.y28{bottom:261.933333pt;}
.y9c{bottom:263.000000pt;}
.yd4{bottom:272.066667pt;}
.y71{bottom:276.600000pt;}
.y27{bottom:277.400000pt;}
.y9b{bottom:278.200000pt;}
.yd3{bottom:287.533333pt;}
.y70{bottom:292.066667pt;}
.y26{bottom:292.600000pt;}
.y9a{bottom:293.666667pt;}
.yd2{bottom:302.733333pt;}
.y6f{bottom:307.306667pt;}
.y25{bottom:308.106667pt;}
.y99{bottom:308.893333pt;}
.yd1{bottom:318.226667pt;}
.y6e{bottom:322.773333pt;}
.y24{bottom:323.293333pt;}
.y98{bottom:324.360000pt;}
.yd0{bottom:333.426667pt;}
.y6d{bottom:337.960000pt;}
.y23{bottom:338.773333pt;}
.yeb{bottom:339.573333pt;}
.y97{bottom:340.373333pt;}
.ycf{bottom:348.906667pt;}
.y6c{bottom:353.440000pt;}
.y22{bottom:353.960000pt;}
.yea{bottom:355.040000pt;}
.yce{bottom:365.706667pt;}
.y6b{bottom:368.626667pt;}
.y21{bottom:369.440000pt;}
.ye9{bottom:370.226667pt;}
.ycd{bottom:380.893333pt;}
.y6a{bottom:384.106667pt;}
.y20{bottom:384.626667pt;}
.ye8{bottom:385.706667pt;}
.ycc{bottom:396.360000pt;}
.y69{bottom:399.293333pt;}
.y1f{bottom:400.106667pt;}
.ye7{bottom:400.893333pt;}
.ycb{bottom:411.560000pt;}
.y68{bottom:414.773333pt;}
.y1e{bottom:415.293333pt;}
.ye6{bottom:416.373333pt;}
.yca{bottom:427.040000pt;}
.y67{bottom:429.973333pt;}
.y1d{bottom:430.773333pt;}
.ye5{bottom:431.560000pt;}
.yc9{bottom:442.226667pt;}
.y66{bottom:445.440000pt;}
.y96{bottom:445.706667pt;}
.y1c{bottom:445.973333pt;}
.ye4{bottom:447.040000pt;}
.yc8{bottom:457.733333pt;}
.y65{bottom:460.666667pt;}
.y1b{bottom:461.466667pt;}
.y95{bottom:462.266667pt;}
.yc7{bottom:472.933333pt;}
.y64{bottom:476.133333pt;}
.y1a{bottom:477.200000pt;}
.y94{bottom:477.733333pt;}
.yc6{bottom:488.400000pt;}
.y63{bottom:491.333333pt;}
.y93{bottom:492.933333pt;}
.y19{bottom:495.066667pt;}
.yc5{bottom:503.866667pt;}
.y62{bottom:506.800000pt;}
.y92{bottom:508.400000pt;}
.yc4{bottom:519.866667pt;}
.y61{bottom:522.000000pt;}
.y91{bottom:523.600000pt;}
.yc3{bottom:532.933333pt;}
.y60{bottom:537.466667pt;}
.y90{bottom:539.066667pt;}
.yc2{bottom:548.133333pt;}
.y5f{bottom:552.666667pt;}
.y8f{bottom:554.266667pt;}
.y33{bottom:555.066667pt;}
.yc1{bottom:563.600000pt;}
.y5e{bottom:568.133333pt;}
.y8e{bottom:569.733333pt;}
.yc0{bottom:578.800000pt;}
.y5d{bottom:583.333333pt;}
.y8d{bottom:584.933333pt;}
.ybf{bottom:594.266667pt;}
.y5c{bottom:598.800000pt;}
.y8c{bottom:600.400000pt;}
.ybe{bottom:611.106667pt;}
.y5b{bottom:614.026667pt;}
.y8b{bottom:615.640000pt;}
.ybd{bottom:626.306667pt;}
.y5a{bottom:629.506667pt;}
.y8a{bottom:631.093333pt;}
.ybc{bottom:641.760000pt;}
.y59{bottom:644.693333pt;}
.y89{bottom:646.293333pt;}
.ybb{bottom:656.960000pt;}
.y58{bottom:660.173333pt;}
.y88{bottom:661.773333pt;}
.yba{bottom:672.440000pt;}
.y57{bottom:675.360000pt;}
.y87{bottom:676.973333pt;}
.yb9{bottom:687.626667pt;}
.y56{bottom:690.840000pt;}
.y86{bottom:692.426667pt;}
.yb8{bottom:703.373333pt;}
.y55{bottom:706.040000pt;}
.y85{bottom:707.626667pt;}
.yb7{bottom:719.893333pt;}
.y54{bottom:721.506667pt;}
.y84{bottom:723.106667pt;}
.yb6{bottom:735.373333pt;}
.y53{bottom:736.706667pt;}
.y83{bottom:738.293333pt;}
.yb5{bottom:750.560000pt;}
.y52{bottom:752.173333pt;}
.y82{bottom:753.773333pt;}
.ye3{bottom:754.040000pt;}
.yb4{bottom:766.066667pt;}
.y51{bottom:767.400000pt;}
.y81{bottom:769.000000pt;}
.ye2{bottom:771.400000pt;}
.yb3{bottom:781.266667pt;}
.y50{bottom:782.866667pt;}
.y80{bottom:784.466667pt;}
.y18{bottom:791.400000pt;}
.yb2{bottom:796.733333pt;}
.y4f{bottom:798.066667pt;}
.y7f{bottom:799.666667pt;}
.y17{bottom:806.866667pt;}
.yb1{bottom:812.466667pt;}
.y4e{bottom:813.800000pt;}
.y7e{bottom:815.133333pt;}
.y16{bottom:824.466667pt;}
.yb0{bottom:829.800000pt;}
.y7d{bottom:830.333333pt;}
.y4d{bottom:830.866667pt;}
.y15{bottom:841.000000pt;}
.yaf{bottom:842.600000pt;}
.y7c{bottom:845.800000pt;}
.y4c{bottom:848.200000pt;}
.yae{bottom:858.066667pt;}
.y4b{bottom:861.000000pt;}
.y14{bottom:862.333333pt;}
.yad{bottom:873.266667pt;}
.y13{bottom:873.533333pt;}
.y4a{bottom:876.466667pt;}
.yac{bottom:888.733333pt;}
.y12{bottom:891.400000pt;}
.y49{bottom:891.666667pt;}
.ye1{bottom:892.200000pt;}
.yab{bottom:903.960000pt;}
.y11{bottom:907.173333pt;}
.ye0{bottom:909.560000pt;}
.yaa{bottom:919.440000pt;}
.y48{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.ya9{bottom:935.173333pt;}
.y47{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y46{bottom:953.040000pt;}
.ya8{bottom:953.560000pt;}
.ya{bottom:963.173333pt;}
.y45{bottom:968.506667pt;}
.ya7{bottom:970.893333pt;}
.y9{bottom:975.960000pt;}
.y44{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.hc{height:24.578125pt;}
.h15{height:29.791667pt;}
.h7{height:30.104167pt;}
.h13{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.h10{height:37.239583pt;}
.h4{height:37.630208pt;}
.h17{height:38.828125pt;}
.h14{height:39.562500pt;}
.h16{height:41.393229pt;}
.hb{height:43.778125pt;}
.hf{height:43.958333pt;}
.h18{height:44.687500pt;}
.h6{height:45.156250pt;}
.h12{height:46.218750pt;}
.he{height:52.750000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h11{height:204.066667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:220.333333pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.xf{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.xe{left:74.700000pt;}
.x11{left:96.033322pt;}
.xd{left:112.293333pt;}
.x9{left:136.559988pt;}
.xb{left:214.740000pt;}
.x6{left:396.666655pt;}
.xc{left:501.773333pt;}
.x10{left:527.093322pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.xa{left:722.106655pt;}
}




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