
    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_d22cb776f475acff391aae70.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_e22902aa841545d301f65173.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_fc70fde6e0338b6c7476573f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_e3ea484a680c6cfb7418b9be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_e5c51f78508c04c778d07052.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_9ecb5cf45367373a7014c551.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_afcb3390b3c54e060c4b3bb1.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-84.240000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.lse{letter-spacing:0.720000px;}
.ls5{letter-spacing:14.400000px;}
.ls0{letter-spacing:38.880000px;}
.ls8{letter-spacing:50.580000px;}
.lsc{letter-spacing:194.376000px;}
.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;}
}
.ws3{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws7{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._27{margin-left:-9.504000px;}
._1e{margin-left:-8.424000px;}
._1b{margin-left:-6.929280px;}
._17{margin-left:-5.250240px;}
._9{margin-left:-3.954240px;}
._1{margin-left:-2.021760px;}
._0{margin-left:-1.010880px;}
._2{width:1.179360px;}
._a{width:2.420640px;}
._11{width:3.633120px;}
._3{width:4.824000px;}
._4{width:6.053760px;}
._1d{width:7.565760px;}
._5{width:9.000000px;}
._18{width:10.805760px;}
._6{width:12.096000px;}
._13{width:13.682880px;}
._14{width:14.904000px;}
._15{width:16.061760px;}
._25{width:17.091360px;}
._26{width:18.226800px;}
._12{width:19.296000px;}
._28{width:20.310480px;}
._7{width:21.312000px;}
._8{width:22.652640px;}
._10{width:24.264000px;}
._1a{width:25.272000px;}
._19{width:26.717760px;}
._1c{width:28.440000px;}
._16{width:29.448000px;}
._d{width:31.176000px;}
._e{width:32.184000px;}
._f{width:33.569280px;}
._29{width:34.598880px;}
._b{width:35.784000px;}
._c{width:36.794880px;}
._1f{width:37.800000px;}
._22{width:38.903520px;}
._23{width:40.880160px;}
._20{width:41.904000px;}
._21{width:42.956640px;}
._2a{width:49.140000px;}
._24{width:50.580000px;}
._2b{width:115.896000px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(38,38,38);}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:109.836000px;}
.ydd{bottom:112.176000px;}
.yfa{bottom:115.776000px;}
.y9f{bottom:117.216000px;}
.y31{bottom:119.196000px;}
.yab{bottom:121.896000px;}
.y5c{bottom:127.116000px;}
.yce{bottom:128.736000px;}
.ydc{bottom:132.876000px;}
.y5b{bottom:133.956000px;}
.yf9{bottom:136.476000px;}
.yaa{bottom:139.176000px;}
.y30{bottom:139.896000px;}
.yc5{bottom:141.336000px;}
.y5a{bottom:145.296000px;}
.yb3{bottom:146.016000px;}
.yba{bottom:146.196000px;}
.y9e{bottom:148.356000px;}
.y7d{bottom:150.690000px;}
.ycd{bottom:151.230000px;}
.ydb{bottom:153.570000px;}
.ya9{bottom:156.450000px;}
.yf8{bottom:157.350000px;}
.ycc{bottom:158.070000px;}
.y2f{bottom:160.590000px;}
.yb2{bottom:168.330000px;}
.y59{bottom:172.470000px;}
.ya8{bottom:173.730000px;}
.yda{bottom:174.270000px;}
.yb9{bottom:177.690000px;}
.y9d{bottom:179.310000px;}
.ycb{bottom:180.390000px;}
.y2e{bottom:181.290000px;}
.yf7{bottom:181.470000px;}
.y7c{bottom:181.830000px;}
.yb1{bottom:185.610000px;}
.yc3{bottom:185.970000px;}
.yca{bottom:187.230000px;}
.ya7{bottom:190.830000px;}
.yc2{bottom:193.530000px;}
.yd9{bottom:194.970000px;}
.ya6{bottom:197.670000px;}
.yc9{bottom:198.570000px;}
.y9c{bottom:199.830000px;}
.y2d{bottom:201.990000px;}
.yb0{bottom:202.890000px;}
.y58{bottom:203.430000px;}
.yf6{bottom:205.410000px;}
.yc4{bottom:205.590000px;}
.yb8{bottom:208.650000px;}
.yaf{bottom:209.730000px;}
.y7b{bottom:212.790000px;}
.yd8{bottom:215.670000px;}
.yc1{bottom:216.570000px;}
.y9b{bottom:218.730000px;}
.ya5{bottom:220.170000px;}
.yae{bottom:221.070000px;}
.y2c{bottom:222.690000px;}
.yc0{bottom:223.410000px;}
.yf5{bottom:226.110000px;}
.y57{bottom:234.570000px;}
.ybf{bottom:234.750000px;}
.yd7{bottom:236.370000px;}
.ya4{bottom:237.450000px;}
.y9a{bottom:237.630000px;}
.yb7{bottom:239.790000px;}
.y2b{bottom:243.390000px;}
.y7a{bottom:243.930000px;}
.ya3{bottom:244.290000px;}
.yf4{bottom:246.990000px;}
.ya2{bottom:255.630000px;}
.y99{bottom:256.710000px;}
.yd6{bottom:257.070000px;}
.y2a{bottom:264.090000px;}
.y56{bottom:265.530000px;}
.yb6{bottom:270.750000px;}
.yf3{bottom:270.930000px;}
.y79{bottom:274.890000px;}
.y98{bottom:275.610000px;}
.yd5{bottom:277.770000px;}
.y29{bottom:284.835000px;}
.yf2{bottom:291.675000px;}
.y97{bottom:294.735000px;}
.y55{bottom:296.715000px;}
.yd4{bottom:298.515000px;}
.yb5{bottom:301.755000px;}
.y28{bottom:305.175000px;}
.y78{bottom:305.895000px;}
.yf1{bottom:312.375000px;}
.y96{bottom:313.635000px;}
.yd3{bottom:319.215000px;}
.y27{bottom:326.235000px;}
.y54{bottom:327.675000px;}
.yb4{bottom:332.895000px;}
.y95{bottom:333.075000px;}
.y77{bottom:337.035000px;}
.yd2{bottom:339.915000px;}
.y26{bottom:346.935000px;}
.yf0{bottom:353.775000px;}
.y53{bottom:358.815000px;}
.yd1{bottom:360.615000px;}
.y94{bottom:363.855000px;}
.y25{bottom:367.635000px;}
.y76{bottom:367.995000px;}
.ya1{bottom:372.135000px;}
.yef{bottom:374.475000px;}
.yd0{bottom:381.315000px;}
.y24{bottom:387.975000px;}
.y52{bottom:389.775000px;}
.y93{bottom:394.995000px;}
.yee{bottom:395.175000px;}
.y75{bottom:399.135000px;}
.ycf{bottom:402.015000px;}
.y23{bottom:408.675000px;}
.yed{bottom:415.875000px;}
.y50{bottom:420.915000px;}
.yad{bottom:422.895000px;}
.y92{bottom:425.955000px;}
.y51{bottom:429.195000px;}
.y22{bottom:429.735000px;}
.y74{bottom:430.095000px;}
.ya0{bottom:434.235000px;}
.yec{bottom:436.575000px;}
.y21{bottom:450.435000px;}
.y4f{bottom:451.875000px;}
.y91{bottom:457.095000px;}
.yeb{bottom:457.275000px;}
.y73{bottom:461.235000px;}
.y20{bottom:471.135000px;}
.yea{bottom:477.975000px;}
.y4e{bottom:483.015000px;}
.y90{bottom:488.055000px;}
.y1f{bottom:491.835000px;}
.y72{bottom:492.195000px;}
.ye9{bottom:498.675000px;}
.y1e{bottom:512.535000px;}
.y4d{bottom:513.975000px;}
.y8f{bottom:519.195000px;}
.ye8{bottom:519.375000px;}
.y71{bottom:523.335000px;}
.y1d{bottom:533.235000px;}
.ye7{bottom:540.075000px;}
.y4c{bottom:545.115000px;}
.y8e{bottom:550.155000px;}
.y1c{bottom:553.935000px;}
.y70{bottom:554.295000px;}
.ye6{bottom:560.775000px;}
.y1b{bottom:574.665000px;}
.y4b{bottom:576.105000px;}
.y8d{bottom:581.325000px;}
.ye5{bottom:581.505000px;}
.y6f{bottom:585.465000px;}
.yc8{bottom:589.605000px;}
.y1a{bottom:595.365000px;}
.ye4{bottom:602.205000px;}
.y4a{bottom:607.245000px;}
.y8c{bottom:612.285000px;}
.y19{bottom:615.885000px;}
.y6e{bottom:616.425000px;}
.yc7{bottom:620.565000px;}
.ye3{bottom:622.905000px;}
.y18{bottom:636.585000px;}
.y49{bottom:638.205000px;}
.y8b{bottom:643.425000px;}
.ye2{bottom:643.605000px;}
.y6d{bottom:647.565000px;}
.y17{bottom:657.285000px;}
.ye1{bottom:664.305000px;}
.y48{bottom:671.325000px;}
.y8a{bottom:674.385000px;}
.y16{bottom:677.985000px;}
.y6c{bottom:678.525000px;}
.ybe{bottom:682.665000px;}
.ye0{bottom:685.005000px;}
.y15{bottom:698.685000px;}
.y47{bottom:705.525000px;}
.ydf{bottom:705.705000px;}
.y6b{bottom:709.665000px;}
.y14{bottom:719.385000px;}
.y46{bottom:726.405000px;}
.ybd{bottom:736.125000px;}
.y89{bottom:736.485000px;}
.y13{bottom:740.085000px;}
.y6a{bottom:740.625000px;}
.y45{bottom:746.745000px;}
.yde{bottom:747.105000px;}
.y12{bottom:760.785000px;}
.y88{bottom:767.625000px;}
.y44{bottom:767.805000px;}
.y69{bottom:771.765000px;}
.y11{bottom:781.485000px;}
.y43{bottom:788.505000px;}
.y87{bottom:798.585000px;}
.y10{bottom:802.185000px;}
.y68{bottom:802.725000px;}
.y42{bottom:809.205000px;}
.yf{bottom:822.885000px;}
.y86{bottom:829.725000px;}
.y41{bottom:829.905000px;}
.y67{bottom:833.865000px;}
.ybc{bottom:838.005000px;}
.ye{bottom:843.585000px;}
.y40{bottom:850.650000px;}
.y85{bottom:860.730000px;}
.yd{bottom:864.330000px;}
.y66{bottom:864.870000px;}
.y3f{bottom:871.350000px;}
.yc{bottom:885.030000px;}
.y84{bottom:891.870000px;}
.y3e{bottom:892.050000px;}
.y65{bottom:896.010000px;}
.yb{bottom:905.730000px;}
.y3d{bottom:912.750000px;}
.yfb{bottom:913.470000px;}
.y83{bottom:922.830000px;}
.ya{bottom:926.430000px;}
.y64{bottom:926.970000px;}
.y3c{bottom:933.450000px;}
.y9{bottom:947.130000px;}
.y82{bottom:953.970000px;}
.y3b{bottom:954.150000px;}
.y63{bottom:958.110000px;}
.y8{bottom:967.470000px;}
.y3a{bottom:974.850000px;}
.y81{bottom:984.930000px;}
.y7{bottom:988.530000px;}
.y62{bottom:989.070000px;}
.y39{bottom:995.550000px;}
.y6{bottom:1009.230000px;}
.y80{bottom:1016.070000px;}
.y38{bottom:1016.250000px;}
.y61{bottom:1020.210000px;}
.y5{bottom:1029.930000px;}
.y37{bottom:1036.950000px;}
.y7f{bottom:1047.030000px;}
.y4{bottom:1050.270000px;}
.y60{bottom:1053.330000px;}
.yc6{bottom:1055.310000px;}
.y36{bottom:1057.650000px;}
.y7e{bottom:1078.170000px;}
.y35{bottom:1078.350000px;}
.y3{bottom:1092.030000px;}
.y34{bottom:1099.050000px;}
.y5f{bottom:1109.130000px;}
.y2{bottom:1112.910000px;}
.yac{bottom:1117.410000px;}
.y33{bottom:1119.750000px;}
.y1{bottom:1137.240000px;}
.y5e{bottom:1140.300000px;}
.y32{bottom:1140.480000px;}
.ybb{bottom:1148.580000px;}
.h9{height:38.158594px;}
.hf{height:40.985156px;}
.h8{height:45.184219px;}
.h7{height:47.344922px;}
.he{height:58.621992px;}
.ha{height:58.651172px;}
.hd{height:59.383125px;}
.hb{height:64.546875px;}
.hc{height:65.010937px;}
.h4{height:70.628906px;}
.h3{height:70.664062px;}
.h5{height:72.562500px;}
.h2{height:84.898125px;}
.h6{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.656000px;}
.xb{left:132.516000px;}
.x21{left:137.376000px;}
.x1{left:138.816000px;}
.x12{left:148.896000px;}
.x7{left:170.130000px;}
.xc{left:180.750000px;}
.x1b{left:187.770000px;}
.x1c{left:194.790000px;}
.x10{left:198.568125px;}
.x11{left:204.690000px;}
.xd{left:212.610000px;}
.x6{left:264.270000px;}
.x5{left:275.430000px;}
.xa{left:343.695000px;}
.x2{left:349.455000px;}
.x17{left:380.413125px;}
.x13{left:384.013125px;}
.x18{left:386.535000px;}
.x14{left:390.135000px;}
.x1d{left:443.413125px;}
.x4{left:446.475000px;}
.x1e{left:455.655000px;}
.x1f{left:612.103125px;}
.x20{left:624.345000px;}
.x15{left:659.623125px;}
.x16{left:665.745000px;}
.x19{left:672.403125px;}
.x1a{left:678.525000px;}
.xe{left:680.683125px;}
.xf{left:686.805000px;}
.x8{left:716.188125px;}
.x9{left:722.310000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.640000pt;}
.ls5{letter-spacing:12.800000pt;}
.ls0{letter-spacing:34.560000pt;}
.ls8{letter-spacing:44.960000pt;}
.lsc{letter-spacing:172.778667pt;}
.ws3{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._27{margin-left:-8.448000pt;}
._1e{margin-left:-7.488000pt;}
._1b{margin-left:-6.159360pt;}
._17{margin-left:-4.666880pt;}
._9{margin-left:-3.514880pt;}
._1{margin-left:-1.797120pt;}
._0{margin-left:-0.898560pt;}
._2{width:1.048320pt;}
._a{width:2.151680pt;}
._11{width:3.229440pt;}
._3{width:4.288000pt;}
._4{width:5.381120pt;}
._1d{width:6.725120pt;}
._5{width:8.000000pt;}
._18{width:9.605120pt;}
._6{width:10.752000pt;}
._13{width:12.162560pt;}
._14{width:13.248000pt;}
._15{width:14.277120pt;}
._25{width:15.192320pt;}
._26{width:16.201600pt;}
._12{width:17.152000pt;}
._28{width:18.053760pt;}
._7{width:18.944000pt;}
._8{width:20.135680pt;}
._10{width:21.568000pt;}
._1a{width:22.464000pt;}
._19{width:23.749120pt;}
._1c{width:25.280000pt;}
._16{width:26.176000pt;}
._d{width:27.712000pt;}
._e{width:28.608000pt;}
._f{width:29.839360pt;}
._29{width:30.754560pt;}
._b{width:31.808000pt;}
._c{width:32.706560pt;}
._1f{width:33.600000pt;}
._22{width:34.580907pt;}
._23{width:36.337920pt;}
._20{width:37.248000pt;}
._21{width:38.183680pt;}
._2a{width:43.680000pt;}
._24{width:44.960000pt;}
._2b{width:103.018667pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:97.632000pt;}
.ydd{bottom:99.712000pt;}
.yfa{bottom:102.912000pt;}
.y9f{bottom:104.192000pt;}
.y31{bottom:105.952000pt;}
.yab{bottom:108.352000pt;}
.y5c{bottom:112.992000pt;}
.yce{bottom:114.432000pt;}
.ydc{bottom:118.112000pt;}
.y5b{bottom:119.072000pt;}
.yf9{bottom:121.312000pt;}
.yaa{bottom:123.712000pt;}
.y30{bottom:124.352000pt;}
.yc5{bottom:125.632000pt;}
.y5a{bottom:129.152000pt;}
.yb3{bottom:129.792000pt;}
.yba{bottom:129.952000pt;}
.y9e{bottom:131.872000pt;}
.y7d{bottom:133.946667pt;}
.ycd{bottom:134.426667pt;}
.ydb{bottom:136.506667pt;}
.ya9{bottom:139.066667pt;}
.yf8{bottom:139.866667pt;}
.ycc{bottom:140.506667pt;}
.y2f{bottom:142.746667pt;}
.yb2{bottom:149.626667pt;}
.y59{bottom:153.306667pt;}
.ya8{bottom:154.426667pt;}
.yda{bottom:154.906667pt;}
.yb9{bottom:157.946667pt;}
.y9d{bottom:159.386667pt;}
.ycb{bottom:160.346667pt;}
.y2e{bottom:161.146667pt;}
.yf7{bottom:161.306667pt;}
.y7c{bottom:161.626667pt;}
.yb1{bottom:164.986667pt;}
.yc3{bottom:165.306667pt;}
.yca{bottom:166.426667pt;}
.ya7{bottom:169.626667pt;}
.yc2{bottom:172.026667pt;}
.yd9{bottom:173.306667pt;}
.ya6{bottom:175.706667pt;}
.yc9{bottom:176.506667pt;}
.y9c{bottom:177.626667pt;}
.y2d{bottom:179.546667pt;}
.yb0{bottom:180.346667pt;}
.y58{bottom:180.826667pt;}
.yf6{bottom:182.586667pt;}
.yc4{bottom:182.746667pt;}
.yb8{bottom:185.466667pt;}
.yaf{bottom:186.426667pt;}
.y7b{bottom:189.146667pt;}
.yd8{bottom:191.706667pt;}
.yc1{bottom:192.506667pt;}
.y9b{bottom:194.426667pt;}
.ya5{bottom:195.706667pt;}
.yae{bottom:196.506667pt;}
.y2c{bottom:197.946667pt;}
.yc0{bottom:198.586667pt;}
.yf5{bottom:200.986667pt;}
.y57{bottom:208.506667pt;}
.ybf{bottom:208.666667pt;}
.yd7{bottom:210.106667pt;}
.ya4{bottom:211.066667pt;}
.y9a{bottom:211.226667pt;}
.yb7{bottom:213.146667pt;}
.y2b{bottom:216.346667pt;}
.y7a{bottom:216.826667pt;}
.ya3{bottom:217.146667pt;}
.yf4{bottom:219.546667pt;}
.ya2{bottom:227.226667pt;}
.y99{bottom:228.186667pt;}
.yd6{bottom:228.506667pt;}
.y2a{bottom:234.746667pt;}
.y56{bottom:236.026667pt;}
.yb6{bottom:240.666667pt;}
.yf3{bottom:240.826667pt;}
.y79{bottom:244.346667pt;}
.y98{bottom:244.986667pt;}
.yd5{bottom:246.906667pt;}
.y29{bottom:253.186667pt;}
.yf2{bottom:259.266667pt;}
.y97{bottom:261.986667pt;}
.y55{bottom:263.746667pt;}
.yd4{bottom:265.346667pt;}
.yb5{bottom:268.226667pt;}
.y28{bottom:271.266667pt;}
.y78{bottom:271.906667pt;}
.yf1{bottom:277.666667pt;}
.y96{bottom:278.786667pt;}
.yd3{bottom:283.746667pt;}
.y27{bottom:289.986667pt;}
.y54{bottom:291.266667pt;}
.yb4{bottom:295.906667pt;}
.y95{bottom:296.066667pt;}
.y77{bottom:299.586667pt;}
.yd2{bottom:302.146667pt;}
.y26{bottom:308.386667pt;}
.yf0{bottom:314.466667pt;}
.y53{bottom:318.946667pt;}
.yd1{bottom:320.546667pt;}
.y94{bottom:323.426667pt;}
.y25{bottom:326.786667pt;}
.y76{bottom:327.106667pt;}
.ya1{bottom:330.786667pt;}
.yef{bottom:332.866667pt;}
.yd0{bottom:338.946667pt;}
.y24{bottom:344.866667pt;}
.y52{bottom:346.466667pt;}
.y93{bottom:351.106667pt;}
.yee{bottom:351.266667pt;}
.y75{bottom:354.786667pt;}
.ycf{bottom:357.346667pt;}
.y23{bottom:363.266667pt;}
.yed{bottom:369.666667pt;}
.y50{bottom:374.146667pt;}
.yad{bottom:375.906667pt;}
.y92{bottom:378.626667pt;}
.y51{bottom:381.506667pt;}
.y22{bottom:381.986667pt;}
.y74{bottom:382.306667pt;}
.ya0{bottom:385.986667pt;}
.yec{bottom:388.066667pt;}
.y21{bottom:400.386667pt;}
.y4f{bottom:401.666667pt;}
.y91{bottom:406.306667pt;}
.yeb{bottom:406.466667pt;}
.y73{bottom:409.986667pt;}
.y20{bottom:418.786667pt;}
.yea{bottom:424.866667pt;}
.y4e{bottom:429.346667pt;}
.y90{bottom:433.826667pt;}
.y1f{bottom:437.186667pt;}
.y72{bottom:437.506667pt;}
.ye9{bottom:443.266667pt;}
.y1e{bottom:455.586667pt;}
.y4d{bottom:456.866667pt;}
.y8f{bottom:461.506667pt;}
.ye8{bottom:461.666667pt;}
.y71{bottom:465.186667pt;}
.y1d{bottom:473.986667pt;}
.ye7{bottom:480.066667pt;}
.y4c{bottom:484.546667pt;}
.y8e{bottom:489.026667pt;}
.y1c{bottom:492.386667pt;}
.y70{bottom:492.706667pt;}
.ye6{bottom:498.466667pt;}
.y1b{bottom:510.813333pt;}
.y4b{bottom:512.093333pt;}
.y8d{bottom:516.733333pt;}
.ye5{bottom:516.893333pt;}
.y6f{bottom:520.413333pt;}
.yc8{bottom:524.093333pt;}
.y1a{bottom:529.213333pt;}
.ye4{bottom:535.293333pt;}
.y4a{bottom:539.773333pt;}
.y8c{bottom:544.253333pt;}
.y19{bottom:547.453333pt;}
.y6e{bottom:547.933333pt;}
.yc7{bottom:551.613333pt;}
.ye3{bottom:553.693333pt;}
.y18{bottom:565.853333pt;}
.y49{bottom:567.293333pt;}
.y8b{bottom:571.933333pt;}
.ye2{bottom:572.093333pt;}
.y6d{bottom:575.613333pt;}
.y17{bottom:584.253333pt;}
.ye1{bottom:590.493333pt;}
.y48{bottom:596.733333pt;}
.y8a{bottom:599.453333pt;}
.y16{bottom:602.653333pt;}
.y6c{bottom:603.133333pt;}
.ybe{bottom:606.813333pt;}
.ye0{bottom:608.893333pt;}
.y15{bottom:621.053333pt;}
.y47{bottom:627.133333pt;}
.ydf{bottom:627.293333pt;}
.y6b{bottom:630.813333pt;}
.y14{bottom:639.453333pt;}
.y46{bottom:645.693333pt;}
.ybd{bottom:654.333333pt;}
.y89{bottom:654.653333pt;}
.y13{bottom:657.853333pt;}
.y6a{bottom:658.333333pt;}
.y45{bottom:663.773333pt;}
.yde{bottom:664.093333pt;}
.y12{bottom:676.253333pt;}
.y88{bottom:682.333333pt;}
.y44{bottom:682.493333pt;}
.y69{bottom:686.013333pt;}
.y11{bottom:694.653333pt;}
.y43{bottom:700.893333pt;}
.y87{bottom:709.853333pt;}
.y10{bottom:713.053333pt;}
.y68{bottom:713.533333pt;}
.y42{bottom:719.293333pt;}
.yf{bottom:731.453333pt;}
.y86{bottom:737.533333pt;}
.y41{bottom:737.693333pt;}
.y67{bottom:741.213333pt;}
.ybc{bottom:744.893333pt;}
.ye{bottom:749.853333pt;}
.y40{bottom:756.133333pt;}
.y85{bottom:765.093333pt;}
.yd{bottom:768.293333pt;}
.y66{bottom:768.773333pt;}
.y3f{bottom:774.533333pt;}
.yc{bottom:786.693333pt;}
.y84{bottom:792.773333pt;}
.y3e{bottom:792.933333pt;}
.y65{bottom:796.453333pt;}
.yb{bottom:805.093333pt;}
.y3d{bottom:811.333333pt;}
.yfb{bottom:811.973333pt;}
.y83{bottom:820.293333pt;}
.ya{bottom:823.493333pt;}
.y64{bottom:823.973333pt;}
.y3c{bottom:829.733333pt;}
.y9{bottom:841.893333pt;}
.y82{bottom:847.973333pt;}
.y3b{bottom:848.133333pt;}
.y63{bottom:851.653333pt;}
.y8{bottom:859.973333pt;}
.y3a{bottom:866.533333pt;}
.y81{bottom:875.493333pt;}
.y7{bottom:878.693333pt;}
.y62{bottom:879.173333pt;}
.y39{bottom:884.933333pt;}
.y6{bottom:897.093333pt;}
.y80{bottom:903.173333pt;}
.y38{bottom:903.333333pt;}
.y61{bottom:906.853333pt;}
.y5{bottom:915.493333pt;}
.y37{bottom:921.733333pt;}
.y7f{bottom:930.693333pt;}
.y4{bottom:933.573333pt;}
.y60{bottom:936.293333pt;}
.yc6{bottom:938.053333pt;}
.y36{bottom:940.133333pt;}
.y7e{bottom:958.373333pt;}
.y35{bottom:958.533333pt;}
.y3{bottom:970.693333pt;}
.y34{bottom:976.933333pt;}
.y5f{bottom:985.893333pt;}
.y2{bottom:989.253333pt;}
.yac{bottom:993.253333pt;}
.y33{bottom:995.333333pt;}
.y1{bottom:1010.880000pt;}
.y5e{bottom:1013.600000pt;}
.y32{bottom:1013.760000pt;}
.ybb{bottom:1020.960000pt;}
.h9{height:33.918750pt;}
.hf{height:36.431250pt;}
.h8{height:40.163750pt;}
.h7{height:42.084375pt;}
.he{height:52.108438pt;}
.ha{height:52.134375pt;}
.hd{height:52.785000pt;}
.hb{height:57.375000pt;}
.hc{height:57.787500pt;}
.h4{height:62.781250pt;}
.h3{height:62.812500pt;}
.h5{height:64.500000pt;}
.h2{height:75.465000pt;}
.h6{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.472000pt;}
.xb{left:117.792000pt;}
.x21{left:122.112000pt;}
.x1{left:123.392000pt;}
.x12{left:132.352000pt;}
.x7{left:151.226667pt;}
.xc{left:160.666667pt;}
.x1b{left:166.906667pt;}
.x1c{left:173.146667pt;}
.x10{left:176.505000pt;}
.x11{left:181.946667pt;}
.xd{left:188.986667pt;}
.x6{left:234.906667pt;}
.x5{left:244.826667pt;}
.xa{left:305.506667pt;}
.x2{left:310.626667pt;}
.x17{left:338.145000pt;}
.x13{left:341.345000pt;}
.x18{left:343.586667pt;}
.x14{left:346.786667pt;}
.x1d{left:394.145000pt;}
.x4{left:396.866667pt;}
.x1e{left:405.026667pt;}
.x1f{left:544.091667pt;}
.x20{left:554.973333pt;}
.x15{left:586.331667pt;}
.x16{left:591.773333pt;}
.x19{left:597.691667pt;}
.x1a{left:603.133333pt;}
.xe{left:605.051667pt;}
.xf{left:610.493333pt;}
.x8{left:636.611667pt;}
.x9{left:642.053333pt;}
}




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