
    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_af8e4e30db1cc7173a9a7c56.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8e40fe00973b2478287ed4ac.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d5a24612dad67ba4d34691d7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_9e8f3929bafcd660ecf9ebad.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8c856882313c59a17df34275.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_14f79a7a5b1b9b2aa1d34929.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.660000px;}
.lsd{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.422000px;}
.ls8{letter-spacing:-0.972000px;}
.lsb{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.486600px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020160px;}
.ls7{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls6{letter-spacing:0.720000px;}
.lsc{letter-spacing:43.678560px;}
.ls1{letter-spacing:46.558560px;}
.ls9{letter-spacing:63.838560px;}
.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;}
}
.ws6{word-spacing:-60.480000px;}
.ws8{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.633400px;}
.ws7{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.182000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-5.304960px;}
._10{margin-left:-3.983040px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._9{width:3.396960px;}
._7{width:5.261760px;}
._8{width:6.410880px;}
._c{width:8.225280px;}
._11{width:9.313920px;}
._f{width:11.318400px;}
._d{width:13.063680px;}
._e{width:14.109120px;}
._13{width:16.262880px;}
._12{width:17.357760px;}
._a{width:18.385920px;}
._b{width:19.776960px;}
._14{width:20.865600px;}
._5{width:393.960000px;}
._4{width:1101.360000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y28{bottom:3.240000px;}
.y27{bottom:20.520000px;}
.y26{bottom:37.800000px;}
.ye{bottom:43.560000px;}
.y25{bottom:63.720000px;}
.yc{bottom:68.400000px;}
.y24{bottom:89.685000px;}
.ya{bottom:94.716000px;}
.y23{bottom:115.605000px;}
.yf0{bottom:131.076000px;}
.ycb{bottom:133.236000px;}
.ya1{bottom:141.156000px;}
.y22{bottom:141.165000px;}
.yc3{bottom:144.036000px;}
.yae{bottom:150.150000px;}
.y5b{bottom:152.670000px;}
.yef{bottom:156.990000px;}
.yca{bottom:159.150000px;}
.y30{bottom:159.870000px;}
.yf5{bottom:162.750000px;}
.ya0{bottom:167.070000px;}
.y21{bottom:167.085000px;}
.yc2{bottom:169.950000px;}
.y76{bottom:176.070000px;}
.y5a{bottom:179.670000px;}
.yee{bottom:182.910000px;}
.yc9{bottom:185.070000px;}
.y2f{bottom:185.790000px;}
.yf4{bottom:188.310000px;}
.y20{bottom:193.005000px;}
.yc1{bottom:195.870000px;}
.y9f{bottom:197.310000px;}
.y75{bottom:202.035000px;}
.yab{bottom:206.355000px;}
.y59{bottom:206.715000px;}
.yed{bottom:208.875000px;}
.yc8{bottom:211.035000px;}
.y2e{bottom:211.755000px;}
.yf3{bottom:215.355000px;}
.y1f{bottom:218.955000px;}
.yc0{bottom:221.835000px;}
.y9e{bottom:223.275000px;}
.y74{bottom:227.595000px;}
.yaa{bottom:232.275000px;}
.y58{bottom:233.355000px;}
.yec{bottom:234.435000px;}
.yc7{bottom:236.595000px;}
.y2d{bottom:237.315000px;}
.yf2{bottom:241.275000px;}
.y1e{bottom:244.875000px;}
.ybf{bottom:247.755000px;}
.y9d{bottom:249.195000px;}
.y73{bottom:253.515000px;}
.ya9{bottom:258.195000px;}
.y57{bottom:259.275000px;}
.yeb{bottom:260.355000px;}
.yc6{bottom:262.515000px;}
.y2c{bottom:263.235000px;}
.y1d{bottom:270.795000px;}
.yf1{bottom:271.155000px;}
.ybe{bottom:273.675000px;}
.y9c{bottom:275.115000px;}
.y72{bottom:279.435000px;}
.ya8{bottom:284.115000px;}
.y56{bottom:285.195000px;}
.yea{bottom:286.275000px;}
.yc5{bottom:288.435000px;}
.y2b{bottom:289.155000px;}
.y1c{bottom:296.715000px;}
.ybd{bottom:299.595000px;}
.y9b{bottom:300.675000px;}
.y71{bottom:305.355000px;}
.ya7{bottom:309.675000px;}
.y55{bottom:311.115000px;}
.ye9{bottom:312.195000px;}
.yc4{bottom:314.355000px;}
.y1b{bottom:322.275000px;}
.y2a{bottom:324.105000px;}
.ybc{bottom:325.545000px;}
.y9a{bottom:326.625000px;}
.y70{bottom:331.305000px;}
.y54{bottom:337.065000px;}
.ye8{bottom:338.145000px;}
.ya6{bottom:340.305000px;}
.y1a{bottom:348.225000px;}
.y29{bottom:350.385000px;}
.ybb{bottom:351.105000px;}
.y99{bottom:352.545000px;}
.y86{bottom:357.225000px;}
.y6f{bottom:361.545000px;}
.y53{bottom:362.985000px;}
.ye7{bottom:364.065000px;}
.ya5{bottom:366.225000px;}
.y19{bottom:366.585000px;}
.yba{bottom:377.025000px;}
.y98{bottom:378.465000px;}
.y85{bottom:383.145000px;}
.y6e{bottom:387.465000px;}
.y52{bottom:388.905000px;}
.ye6{bottom:389.985000px;}
.ya4{bottom:392.145000px;}
.yb9{bottom:402.945000px;}
.y97{bottom:404.385000px;}
.y84{bottom:408.705000px;}
.y6d{bottom:413.385000px;}
.y51{bottom:415.545000px;}
.ya3{bottom:417.705000px;}
.yb8{bottom:428.865000px;}
.y96{bottom:430.305000px;}
.y83{bottom:434.625000px;}
.y6c{bottom:439.305000px;}
.ye5{bottom:441.465000px;}
.y50{bottom:442.545000px;}
.ya2{bottom:443.625000px;}
.yb7{bottom:454.830000px;}
.y95{bottom:456.270000px;}
.y82{bottom:460.590000px;}
.y6b{bottom:465.270000px;}
.ye4{bottom:467.430000px;}
.y4f{bottom:469.590000px;}
.yb6{bottom:481.830000px;}
.y94{bottom:482.190000px;}
.y81{bottom:486.510000px;}
.y6a{bottom:491.190000px;}
.ye3{bottom:493.350000px;}
.y4e{bottom:495.510000px;}
.y93{bottom:507.750000px;}
.y80{bottom:512.430000px;}
.y69{bottom:516.750000px;}
.ye2{bottom:519.270000px;}
.y4d{bottom:521.430000px;}
.yb5{bottom:533.310000px;}
.y7f{bottom:538.350000px;}
.y68{bottom:542.670000px;}
.ye1{bottom:545.190000px;}
.y4c{bottom:547.350000px;}
.yb4{bottom:559.230000px;}
.y7e{bottom:564.270000px;}
.y67{bottom:568.590000px;}
.ye0{bottom:571.110000px;}
.y4b{bottom:573.270000px;}
.yb3{bottom:585.180000px;}
.y7d{bottom:590.220000px;}
.y66{bottom:594.540000px;}
.ydf{bottom:597.060000px;}
.y4a{bottom:599.220000px;}
.yb2{bottom:611.100000px;}
.y7c{bottom:615.780000px;}
.y65{bottom:620.460000px;}
.yde{bottom:622.620000px;}
.y49{bottom:624.780000px;}
.yb1{bottom:637.020000px;}
.y7b{bottom:641.700000px;}
.y64{bottom:646.380000px;}
.ydd{bottom:648.540000px;}
.y48{bottom:650.700000px;}
.yb0{bottom:662.940000px;}
.y92{bottom:667.620000px;}
.y63{bottom:672.300000px;}
.ydc{bottom:674.460000px;}
.y47{bottom:676.620000px;}
.yaf{bottom:682.740000px;}
.y91{bottom:693.540000px;}
.y62{bottom:698.220000px;}
.ydb{bottom:700.380000px;}
.y46{bottom:702.570000px;}
.y90{bottom:719.490000px;}
.y61{bottom:723.810000px;}
.yda{bottom:726.330000px;}
.y45{bottom:728.490000px;}
.y18{bottom:734.610000px;}
.y8f{bottom:745.410000px;}
.y60{bottom:749.730000px;}
.y17{bottom:751.890000px;}
.yd9{bottom:752.250000px;}
.y44{bottom:754.410000px;}
.y8e{bottom:771.330000px;}
.y5f{bottom:775.650000px;}
.y16{bottom:777.810000px;}
.yd8{bottom:778.170000px;}
.y43{bottom:780.330000px;}
.y15{bottom:795.090000px;}
.y8d{bottom:796.890000px;}
.y5e{bottom:801.570000px;}
.yd7{bottom:804.090000px;}
.y42{bottom:805.890000px;}
.y102{bottom:820.290000px;}
.y14{bottom:821.370000px;}
.y8c{bottom:822.810000px;}
.y5d{bottom:827.535000px;}
.yd6{bottom:829.695000px;}
.y41{bottom:831.855000px;}
.y13{bottom:838.695000px;}
.y8b{bottom:848.775000px;}
.y101{bottom:849.135000px;}
.y5c{bottom:853.455000px;}
.yd5{bottom:855.615000px;}
.y12{bottom:855.975000px;}
.y40{bottom:857.775000px;}
.y100{bottom:875.055000px;}
.y7a{bottom:879.375000px;}
.yd4{bottom:881.535000px;}
.y11{bottom:881.895000px;}
.y3f{bottom:883.695000px;}
.yff{bottom:902.055000px;}
.y79{bottom:904.935000px;}
.yd3{bottom:907.455000px;}
.y10{bottom:907.815000px;}
.y3e{bottom:909.615000px;}
.yf{bottom:925.095000px;}
.yfe{bottom:929.055000px;}
.y78{bottom:930.855000px;}
.yd2{bottom:933.375000px;}
.y3d{bottom:935.535000px;}
.y9{bottom:942.375000px;}
.yfd{bottom:956.085000px;}
.y77{bottom:956.805000px;}
.y8{bottom:959.685000px;}
.yd1{bottom:960.405000px;}
.y3c{bottom:961.485000px;}
.y7{bottom:973.725000px;}
.y8a{bottom:982.725000px;}
.yfc{bottom:983.085000px;}
.yd0{bottom:986.325000px;}
.y3b{bottom:987.405000px;}
.y89{bottom:1008.645000px;}
.yfb{bottom:1009.725000px;}
.ycf{bottom:1011.885000px;}
.y3a{bottom:1012.965000px;}
.y6{bottom:1027.365000px;}
.y88{bottom:1034.565000px;}
.yfa{bottom:1035.645000px;}
.yce{bottom:1037.805000px;}
.y39{bottom:1038.885000px;}
.y5{bottom:1052.205000px;}
.y87{bottom:1060.485000px;}
.yf9{bottom:1062.645000px;}
.ycd{bottom:1063.725000px;}
.y38{bottom:1064.805000px;}
.y4{bottom:1072.725000px;}
.yad{bottom:1086.450000px;}
.yf8{bottom:1088.610000px;}
.ycc{bottom:1089.690000px;}
.y37{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.yac{bottom:1112.010000px;}
.y2{bottom:1114.530000px;}
.yf7{bottom:1115.610000px;}
.y36{bottom:1116.690000px;}
.y1{bottom:1131.450000px;}
.yf6{bottom:1141.530000px;}
.y35{bottom:1142.610000px;}
.y34{bottom:1166.370000px;}
.y33{bottom:1180.410000px;}
.y32{bottom:1201.290000px;}
.y31{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h5{height:39.997969px;}
.h7{height:48.013594px;}
.h4{height:53.067656px;}
.h2{height:53.717344px;}
.h9{height:59.192578px;}
.h3{height:63.949219px;}
.ha{height:362.265000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x10{left:133.271987px;}
.xb{left:149.111987px;}
.x13{left:160.274987px;}
.x11{left:180.794987px;}
.xe{left:194.834987px;}
.xc{left:224.744987px;}
.x2{left:254.264987px;}
.xd{left:270.104987px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.xf{left:339.984000px;}
.x5{left:362.669987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x12{left:447.660000px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.920000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.264000pt;}
.ls8{letter-spacing:-0.864000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.017920pt;}
.ls7{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls6{letter-spacing:0.640000pt;}
.lsc{letter-spacing:38.825387pt;}
.ls1{letter-spacing:41.385387pt;}
.ls9{letter-spacing:56.745387pt;}
.ws6{word-spacing:-53.760000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.007467pt;}
.ws7{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.717333pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-4.715520pt;}
._10{margin-left:-3.540480pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._9{width:3.019520pt;}
._7{width:4.677120pt;}
._8{width:5.698560pt;}
._c{width:7.311360pt;}
._11{width:8.279040pt;}
._f{width:10.060800pt;}
._d{width:11.612160pt;}
._e{width:12.541440pt;}
._13{width:14.455893pt;}
._12{width:15.429120pt;}
._a{width:16.343040pt;}
._b{width:17.579520pt;}
._14{width:18.547200pt;}
._5{width:350.186667pt;}
._4{width:978.986667pt;}
._3{width:1414.378667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y28{bottom:2.880000pt;}
.y27{bottom:18.240000pt;}
.y26{bottom:33.600000pt;}
.ye{bottom:38.720000pt;}
.y25{bottom:56.640000pt;}
.yc{bottom:60.800000pt;}
.y24{bottom:79.720000pt;}
.ya{bottom:84.192000pt;}
.y23{bottom:102.760000pt;}
.yf0{bottom:116.512000pt;}
.ycb{bottom:118.432000pt;}
.ya1{bottom:125.472000pt;}
.y22{bottom:125.480000pt;}
.yc3{bottom:128.032000pt;}
.yae{bottom:133.466667pt;}
.y5b{bottom:135.706667pt;}
.yef{bottom:139.546667pt;}
.yca{bottom:141.466667pt;}
.y30{bottom:142.106667pt;}
.yf5{bottom:144.666667pt;}
.ya0{bottom:148.506667pt;}
.y21{bottom:148.520000pt;}
.yc2{bottom:151.066667pt;}
.y76{bottom:156.506667pt;}
.y5a{bottom:159.706667pt;}
.yee{bottom:162.586667pt;}
.yc9{bottom:164.506667pt;}
.y2f{bottom:165.146667pt;}
.yf4{bottom:167.386667pt;}
.y20{bottom:171.560000pt;}
.yc1{bottom:174.106667pt;}
.y9f{bottom:175.386667pt;}
.y75{bottom:179.586667pt;}
.yab{bottom:183.426667pt;}
.y59{bottom:183.746667pt;}
.yed{bottom:185.666667pt;}
.yc8{bottom:187.586667pt;}
.y2e{bottom:188.226667pt;}
.yf3{bottom:191.426667pt;}
.y1f{bottom:194.626667pt;}
.yc0{bottom:197.186667pt;}
.y9e{bottom:198.466667pt;}
.y74{bottom:202.306667pt;}
.yaa{bottom:206.466667pt;}
.y58{bottom:207.426667pt;}
.yec{bottom:208.386667pt;}
.yc7{bottom:210.306667pt;}
.y2d{bottom:210.946667pt;}
.yf2{bottom:214.466667pt;}
.y1e{bottom:217.666667pt;}
.ybf{bottom:220.226667pt;}
.y9d{bottom:221.506667pt;}
.y73{bottom:225.346667pt;}
.ya9{bottom:229.506667pt;}
.y57{bottom:230.466667pt;}
.yeb{bottom:231.426667pt;}
.yc6{bottom:233.346667pt;}
.y2c{bottom:233.986667pt;}
.y1d{bottom:240.706667pt;}
.yf1{bottom:241.026667pt;}
.ybe{bottom:243.266667pt;}
.y9c{bottom:244.546667pt;}
.y72{bottom:248.386667pt;}
.ya8{bottom:252.546667pt;}
.y56{bottom:253.506667pt;}
.yea{bottom:254.466667pt;}
.yc5{bottom:256.386667pt;}
.y2b{bottom:257.026667pt;}
.y1c{bottom:263.746667pt;}
.ybd{bottom:266.306667pt;}
.y9b{bottom:267.266667pt;}
.y71{bottom:271.426667pt;}
.ya7{bottom:275.266667pt;}
.y55{bottom:276.546667pt;}
.ye9{bottom:277.506667pt;}
.yc4{bottom:279.426667pt;}
.y1b{bottom:286.466667pt;}
.y2a{bottom:288.093333pt;}
.ybc{bottom:289.373333pt;}
.y9a{bottom:290.333333pt;}
.y70{bottom:294.493333pt;}
.y54{bottom:299.613333pt;}
.ye8{bottom:300.573333pt;}
.ya6{bottom:302.493333pt;}
.y1a{bottom:309.533333pt;}
.y29{bottom:311.453333pt;}
.ybb{bottom:312.093333pt;}
.y99{bottom:313.373333pt;}
.y86{bottom:317.533333pt;}
.y6f{bottom:321.373333pt;}
.y53{bottom:322.653333pt;}
.ye7{bottom:323.613333pt;}
.ya5{bottom:325.533333pt;}
.y19{bottom:325.853333pt;}
.yba{bottom:335.133333pt;}
.y98{bottom:336.413333pt;}
.y85{bottom:340.573333pt;}
.y6e{bottom:344.413333pt;}
.y52{bottom:345.693333pt;}
.ye6{bottom:346.653333pt;}
.ya4{bottom:348.573333pt;}
.yb9{bottom:358.173333pt;}
.y97{bottom:359.453333pt;}
.y84{bottom:363.293333pt;}
.y6d{bottom:367.453333pt;}
.y51{bottom:369.373333pt;}
.ya3{bottom:371.293333pt;}
.yb8{bottom:381.213333pt;}
.y96{bottom:382.493333pt;}
.y83{bottom:386.333333pt;}
.y6c{bottom:390.493333pt;}
.ye5{bottom:392.413333pt;}
.y50{bottom:393.373333pt;}
.ya2{bottom:394.333333pt;}
.yb7{bottom:404.293333pt;}
.y95{bottom:405.573333pt;}
.y82{bottom:409.413333pt;}
.y6b{bottom:413.573333pt;}
.ye4{bottom:415.493333pt;}
.y4f{bottom:417.413333pt;}
.yb6{bottom:428.293333pt;}
.y94{bottom:428.613333pt;}
.y81{bottom:432.453333pt;}
.y6a{bottom:436.613333pt;}
.ye3{bottom:438.533333pt;}
.y4e{bottom:440.453333pt;}
.y93{bottom:451.333333pt;}
.y80{bottom:455.493333pt;}
.y69{bottom:459.333333pt;}
.ye2{bottom:461.573333pt;}
.y4d{bottom:463.493333pt;}
.yb5{bottom:474.053333pt;}
.y7f{bottom:478.533333pt;}
.y68{bottom:482.373333pt;}
.ye1{bottom:484.613333pt;}
.y4c{bottom:486.533333pt;}
.yb4{bottom:497.093333pt;}
.y7e{bottom:501.573333pt;}
.y67{bottom:505.413333pt;}
.ye0{bottom:507.653333pt;}
.y4b{bottom:509.573333pt;}
.yb3{bottom:520.160000pt;}
.y7d{bottom:524.640000pt;}
.y66{bottom:528.480000pt;}
.ydf{bottom:530.720000pt;}
.y4a{bottom:532.640000pt;}
.yb2{bottom:543.200000pt;}
.y7c{bottom:547.360000pt;}
.y65{bottom:551.520000pt;}
.yde{bottom:553.440000pt;}
.y49{bottom:555.360000pt;}
.yb1{bottom:566.240000pt;}
.y7b{bottom:570.400000pt;}
.y64{bottom:574.560000pt;}
.ydd{bottom:576.480000pt;}
.y48{bottom:578.400000pt;}
.yb0{bottom:589.280000pt;}
.y92{bottom:593.440000pt;}
.y63{bottom:597.600000pt;}
.ydc{bottom:599.520000pt;}
.y47{bottom:601.440000pt;}
.yaf{bottom:606.880000pt;}
.y91{bottom:616.480000pt;}
.y62{bottom:620.640000pt;}
.ydb{bottom:622.560000pt;}
.y46{bottom:624.506667pt;}
.y90{bottom:639.546667pt;}
.y61{bottom:643.386667pt;}
.yda{bottom:645.626667pt;}
.y45{bottom:647.546667pt;}
.y18{bottom:652.986667pt;}
.y8f{bottom:662.586667pt;}
.y60{bottom:666.426667pt;}
.y17{bottom:668.346667pt;}
.yd9{bottom:668.666667pt;}
.y44{bottom:670.586667pt;}
.y8e{bottom:685.626667pt;}
.y5f{bottom:689.466667pt;}
.y16{bottom:691.386667pt;}
.yd8{bottom:691.706667pt;}
.y43{bottom:693.626667pt;}
.y15{bottom:706.746667pt;}
.y8d{bottom:708.346667pt;}
.y5e{bottom:712.506667pt;}
.yd7{bottom:714.746667pt;}
.y42{bottom:716.346667pt;}
.y102{bottom:729.146667pt;}
.y14{bottom:730.106667pt;}
.y8c{bottom:731.386667pt;}
.y5d{bottom:735.586667pt;}
.yd6{bottom:737.506667pt;}
.y41{bottom:739.426667pt;}
.y13{bottom:745.506667pt;}
.y8b{bottom:754.466667pt;}
.y101{bottom:754.786667pt;}
.y5c{bottom:758.626667pt;}
.yd5{bottom:760.546667pt;}
.y12{bottom:760.866667pt;}
.y40{bottom:762.466667pt;}
.y100{bottom:777.826667pt;}
.y7a{bottom:781.666667pt;}
.yd4{bottom:783.586667pt;}
.y11{bottom:783.906667pt;}
.y3f{bottom:785.506667pt;}
.yff{bottom:801.826667pt;}
.y79{bottom:804.386667pt;}
.yd3{bottom:806.626667pt;}
.y10{bottom:806.946667pt;}
.y3e{bottom:808.546667pt;}
.yf{bottom:822.306667pt;}
.yfe{bottom:825.826667pt;}
.y78{bottom:827.426667pt;}
.yd2{bottom:829.666667pt;}
.y3d{bottom:831.586667pt;}
.y9{bottom:837.666667pt;}
.yfd{bottom:849.853333pt;}
.y77{bottom:850.493333pt;}
.y8{bottom:853.053333pt;}
.yd1{bottom:853.693333pt;}
.y3c{bottom:854.653333pt;}
.y7{bottom:865.533333pt;}
.y8a{bottom:873.533333pt;}
.yfc{bottom:873.853333pt;}
.yd0{bottom:876.733333pt;}
.y3b{bottom:877.693333pt;}
.y89{bottom:896.573333pt;}
.yfb{bottom:897.533333pt;}
.ycf{bottom:899.453333pt;}
.y3a{bottom:900.413333pt;}
.y6{bottom:913.213333pt;}
.y88{bottom:919.613333pt;}
.yfa{bottom:920.573333pt;}
.yce{bottom:922.493333pt;}
.y39{bottom:923.453333pt;}
.y5{bottom:935.293333pt;}
.y87{bottom:942.653333pt;}
.yf9{bottom:944.573333pt;}
.ycd{bottom:945.533333pt;}
.y38{bottom:946.493333pt;}
.y4{bottom:953.533333pt;}
.yad{bottom:965.733333pt;}
.yf8{bottom:967.653333pt;}
.ycc{bottom:968.613333pt;}
.y37{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.yac{bottom:988.453333pt;}
.y2{bottom:990.693333pt;}
.yf7{bottom:991.653333pt;}
.y36{bottom:992.613333pt;}
.y1{bottom:1005.733333pt;}
.yf6{bottom:1014.693333pt;}
.y35{bottom:1015.653333pt;}
.y34{bottom:1036.773333pt;}
.y33{bottom:1049.253333pt;}
.y32{bottom:1067.813333pt;}
.y31{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h5{height:35.553750pt;}
.h7{height:42.678750pt;}
.h4{height:47.171250pt;}
.h2{height:47.748750pt;}
.h9{height:52.615625pt;}
.h3{height:56.843750pt;}
.ha{height:322.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x10{left:118.463988pt;}
.xb{left:132.543988pt;}
.x13{left:142.466655pt;}
.x11{left:160.706655pt;}
.xe{left:173.186655pt;}
.xc{left:199.773322pt;}
.x2{left:226.013322pt;}
.xd{left:240.093322pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.xf{left:302.208000pt;}
.x5{left:322.373322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x12{left:397.920000pt;}
.x1{left:699.493322pt;}
}




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