
    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_9cd3afae7e9e04d91dbec263.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_cf3c322af292abc8072efa35.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_2a4c54c2b4dfb0ea59ce9f9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_28e537671a5a0edaf19a4668.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7474cd2a38bbdf8086de26ca.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3c521f0778542e3238a70617.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_dc9c294f879176265e73315c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_5e14de40f9b613f0ca74911e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_1dd5d2504618ace73ab8522a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_07a02ddb6ed281bf8e5951b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.089844;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:ffb;src:url('chunks/assets/font_e0f6573cc8974cc9e59054a9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.760254;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:ffc;src:url('chunks/assets/font_b89a203b5c57f100bc2188bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.120605;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:ffd;src:url('chunks/assets/font_e338e0d0f5134411071ea610.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.120605;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:ffe;src:url('chunks/assets/font_276d2d509cf683877968a14f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.978027;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:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_41ae083bd844c61ec616fdf3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.736816;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:ff11;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_dc48d6854007bc695cca9398.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.978027;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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.v2{vertical-align:25.200000px;}
.lsb{letter-spacing:-1.710000px;}
.lsf{letter-spacing:-1.584000px;}
.ls4{letter-spacing:-0.900000px;}
.lsd{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.468000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.792000px;}
.ls0{letter-spacing:0.912000px;}
.ls5{letter-spacing:0.984000px;}
.lsa{letter-spacing:1.188000px;}
.ls10{letter-spacing:1.224000px;}
.ls9{letter-spacing:1.782000px;}
.ls1{letter-spacing:1.800000px;}
.ls7{letter-spacing:1.842000px;}
.ls11{letter-spacing:21.600000px;}
.ls8{letter-spacing:33.984000px;}
.lse{letter-spacing:194.520000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws7{word-spacing:-64.800000px;}
.wsb{word-spacing:-19.224000px;}
.wsd{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.208000px;}
.wsa{word-spacing:-16.416000px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-13.032000px;}
.ws1{word-spacing:-11.700000px;}
.ws5{word-spacing:-11.070000px;}
.ws6{word-spacing:-8.172000px;}
.ws4{word-spacing:0.000000px;}
._c{margin-left:-8.691600px;}
._d{margin-left:-7.056000px;}
._7{margin-left:-5.815200px;}
._5{margin-left:-4.608000px;}
._a{margin-left:-3.571200px;}
._8{margin-left:-2.520000px;}
._1{margin-left:-1.512000px;}
._0{width:1.440000px;}
._b{width:2.460000px;}
._4{width:3.566400px;}
._2{width:4.806000px;}
._3{width:6.679200px;}
._6{width:8.064000px;}
._19{width:9.633600px;}
._9{width:10.872000px;}
._16{width:12.516000px;}
._f{width:14.284800px;}
._e{width:15.307200px;}
._15{width:19.056000px;}
._11{width:21.240000px;}
._18{width:22.404000px;}
._17{width:24.948000px;}
._12{width:25.992000px;}
._10{width:29.088000px;}
._1c{width:30.792000px;}
._13{width:32.832000px;}
._14{width:36.360000px;}
._1a{width:39.672000px;}
._1f{width:42.252000px;}
._1b{width:43.272000px;}
._1e{width:47.424000px;}
._1d{width:136.644000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:25.200000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs4{font-size:46.800000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:61.200000px;}
.fs7{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:56.737500px;}
.y33{bottom:77.437500px;}
.yc0{bottom:106.275000px;}
.y56{bottom:114.375000px;}
.y8e{bottom:120.675000px;}
.yab{bottom:126.075000px;}
.y2f{bottom:126.975000px;}
.y88{bottom:135.075000px;}
.y55{bottom:145.875000px;}
.y2e{bottom:147.675000px;}
.y8d{bottom:151.305000px;}
.y85{bottom:152.220000px;}
.y75{bottom:154.905000px;}
.ybf{bottom:156.705000px;}
.yaa{bottom:157.620000px;}
.y87{bottom:163.005000px;}
.y2d{bottom:168.405000px;}
.y54{bottom:176.505000px;}
.ybe{bottom:177.405000px;}
.y84{bottom:183.705000px;}
.y8c{bottom:184.620000px;}
.y74{bottom:185.505000px;}
.ya9{bottom:188.205000px;}
.y2c{bottom:189.105000px;}
.ybd{bottom:207.150000px;}
.y53{bottom:208.050000px;}
.y2b{bottom:209.850000px;}
.y83{bottom:214.350000px;}
.y8b{bottom:215.250000px;}
.y73{bottom:217.050000px;}
.ya8{bottom:219.750000px;}
.y86{bottom:220.650000px;}
.ybc{bottom:227.850000px;}
.y2a{bottom:230.550000px;}
.y52{bottom:238.650000px;}
.y82{bottom:245.850000px;}
.y8a{bottom:246.750000px;}
.y72{bottom:247.650000px;}
.ybb{bottom:248.550000px;}
.ya7{bottom:250.350000px;}
.y29{bottom:251.250000px;}
.y51{bottom:270.180000px;}
.y28{bottom:271.995000px;}
.y81{bottom:276.480000px;}
.y89{bottom:277.380000px;}
.yba{bottom:278.295000px;}
.y71{bottom:279.195000px;}
.ya6{bottom:281.880000px;}
.y27{bottom:292.695000px;}
.yb9{bottom:298.995000px;}
.y50{bottom:300.780000px;}
.y80{bottom:308.025000px;}
.y70{bottom:309.825000px;}
.ya5{bottom:312.525000px;}
.y26{bottom:322.425000px;}
.yb8{bottom:328.725000px;}
.y4f{bottom:332.325000px;}
.y7f{bottom:338.625000px;}
.y6f{bottom:341.325000px;}
.y25{bottom:343.125000px;}
.ya4{bottom:344.025000px;}
.yb7{bottom:349.425000px;}
.y4e{bottom:362.955000px;}
.y24{bottom:363.855000px;}
.y7e{bottom:370.155000px;}
.y6e{bottom:371.970000px;}
.ya3{bottom:374.655000px;}
.yb6{bottom:379.170000px;}
.y23{bottom:384.555000px;}
.y4d{bottom:394.455000px;}
.yb5{bottom:399.870000px;}
.y7d{bottom:400.755000px;}
.y6d{bottom:403.455000px;}
.ya2{bottom:406.155000px;}
.y22{bottom:414.300000px;}
.y4c{bottom:425.100000px;}
.yb4{bottom:429.600000px;}
.y7c{bottom:432.300000px;}
.y6c{bottom:434.100000px;}
.y21{bottom:435.000000px;}
.ya1{bottom:436.800000px;}
.yb3{bottom:450.300000px;}
.y20{bottom:455.700000px;}
.y4b{bottom:456.600000px;}
.y7b{bottom:462.945000px;}
.y6b{bottom:465.630000px;}
.ya0{bottom:468.330000px;}
.yb2{bottom:471.030000px;}
.y1f{bottom:476.445000px;}
.y4a{bottom:487.245000px;}
.y7a{bottom:494.445000px;}
.y6a{bottom:496.230000px;}
.y1e{bottom:497.130000px;}
.y9f{bottom:498.930000px;}
.yb1{bottom:500.745000px;}
.y1d{bottom:517.875000px;}
.y49{bottom:518.775000px;}
.yb0{bottom:521.475000px;}
.y79{bottom:525.075000px;}
.y69{bottom:527.775000px;}
.y9e{bottom:530.475000px;}
.y1c{bottom:538.575000px;}
.y48{bottom:549.375000px;}
.yaf{bottom:551.175000px;}
.y78{bottom:556.575000px;}
.y68{bottom:558.375000px;}
.y1b{bottom:559.275000px;}
.y9d{bottom:561.075000px;}
.yae{bottom:571.905000px;}
.y1a{bottom:580.005000px;}
.y47{bottom:580.905000px;}
.y77{bottom:587.220000px;}
.y67{bottom:589.905000px;}
.y9c{bottom:592.605000px;}
.y19{bottom:600.720000px;}
.yad{bottom:601.605000px;}
.y46{bottom:611.505000px;}
.y76{bottom:619.650000px;}
.y66{bottom:620.550000px;}
.y18{bottom:621.450000px;}
.yac{bottom:622.350000px;}
.y9b{bottom:623.250000px;}
.y17{bottom:642.150000px;}
.y45{bottom:643.050000px;}
.y65{bottom:652.050000px;}
.y9a{bottom:654.750000px;}
.y16{bottom:671.880000px;}
.y44{bottom:673.695000px;}
.y64{bottom:682.680000px;}
.y99{bottom:685.380000px;}
.y15{bottom:703.380000px;}
.y43{bottom:705.195000px;}
.y63{bottom:714.195000px;}
.y98{bottom:716.880000px;}
.y14{bottom:731.325000px;}
.y42{bottom:735.825000px;}
.y62{bottom:744.825000px;}
.y97{bottom:747.525000px;}
.y13{bottom:761.925000px;}
.y41{bottom:767.325000px;}
.y61{bottom:776.355000px;}
.y96{bottom:779.070000px;}
.y12{bottom:783.570000px;}
.y40{bottom:797.955000px;}
.y60{bottom:806.955000px;}
.y95{bottom:809.655000px;}
.y11{bottom:813.255000px;}
.y3f{bottom:829.500000px;}
.y10{bottom:837.600000px;}
.y5f{bottom:838.500000px;}
.y94{bottom:841.200000px;}
.y3e{bottom:860.100000px;}
.yf{bottom:868.200000px;}
.y5e{bottom:869.100000px;}
.y93{bottom:885.330000px;}
.y3d{bottom:891.630000px;}
.ye{bottom:899.745000px;}
.y5d{bottom:900.630000px;}
.y92{bottom:916.830000px;}
.y3c{bottom:922.230000px;}
.yd{bottom:930.375000px;}
.y5c{bottom:931.275000px;}
.y91{bottom:947.475000px;}
.y3b{bottom:953.775000px;}
.yc{bottom:961.875000px;}
.y5b{bottom:962.775000px;}
.yc4{bottom:975.375000px;}
.y90{bottom:978.975000px;}
.y3a{bottom:984.405000px;}
.yb{bottom:992.505000px;}
.y5a{bottom:993.420000px;}
.yc3{bottom:996.105000px;}
.y8f{bottom:1009.605000px;}
.y39{bottom:1015.920000px;}
.ya{bottom:1024.005000px;}
.y59{bottom:1024.905000px;}
.yc2{bottom:1025.820000px;}
.y38{bottom:1046.550000px;}
.y9{bottom:1054.650000px;}
.y58{bottom:1055.550000px;}
.y37{bottom:1067.250000px;}
.yc1{bottom:1076.250000px;}
.y8{bottom:1086.195000px;}
.y57{bottom:1087.080000px;}
.y36{bottom:1096.995000px;}
.y7{bottom:1107.780000px;}
.y35{bottom:1117.695000px;}
.y6{bottom:1126.695000px;}
.y5{bottom:1135.725000px;}
.y4{bottom:1150.125000px;}
.y3{bottom:1165.425000px;}
.y32{bottom:1166.325000px;}
.y2{bottom:1183.425000px;}
.y31{bottom:1185.225000px;}
.y30{bottom:1195.155000px;}
.y1{bottom:1202.370000px;}
.h2{height:22.000781px;}
.h6{height:23.083594px;}
.hc{height:36.864844px;}
.h5{height:40.858594px;}
.h4{height:47.144531px;}
.h10{height:48.410156px;}
.hd{height:54.864844px;}
.h7{height:56.060156px;}
.ha{height:58.429688px;}
.he{height:59.357813px;}
.h3{height:62.859375px;}
.h8{height:63.949219px;}
.hf{height:64.451953px;}
.h9{height:64.546875px;}
.hb{height:67.155469px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xf{left:127.949987px;}
.x8{left:136.949987px;}
.xd{left:141.449987px;}
.xa{left:145.049987px;}
.x6{left:150.449987px;}
.x9{left:154.949987px;}
.x7{left:162.149987px;}
.x15{left:170.279987px;}
.x16{left:181.979987px;}
.x19{left:191.894987px;}
.xe{left:306.299987px;}
.x2{left:324.329987px;}
.x10{left:333.344987px;}
.xb{left:337.829987px;}
.x5{left:340.544987px;}
.xc{left:363.074987px;}
.x18{left:406.319987px;}
.x4{left:412.619987px;}
.x3{left:418.949987px;}
.x13{left:434.249987px;}
.x12{left:436.949987px;}
.x1{left:468.494987px;}
.x17{left:688.319987px;}
.x14{left:800.924987px;}
.x11{left:809.024987px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.v2{vertical-align:22.400000pt;}
.lsb{letter-spacing:-1.520000pt;}
.lsf{letter-spacing:-1.408000pt;}
.ls4{letter-spacing:-0.800000pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.416000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls0{letter-spacing:0.810667pt;}
.ls5{letter-spacing:0.874667pt;}
.lsa{letter-spacing:1.056000pt;}
.ls10{letter-spacing:1.088000pt;}
.ls9{letter-spacing:1.584000pt;}
.ls1{letter-spacing:1.600000pt;}
.ls7{letter-spacing:1.637333pt;}
.ls11{letter-spacing:19.200000pt;}
.ls8{letter-spacing:30.208000pt;}
.lse{letter-spacing:172.906667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws7{word-spacing:-57.600000pt;}
.wsb{word-spacing:-17.088000pt;}
.wsd{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.296000pt;}
.wsa{word-spacing:-14.592000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-11.584000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.840000pt;}
.ws6{word-spacing:-7.264000pt;}
.ws4{word-spacing:0.000000pt;}
._c{margin-left:-7.725867pt;}
._d{margin-left:-6.272000pt;}
._7{margin-left:-5.169067pt;}
._5{margin-left:-4.096000pt;}
._a{margin-left:-3.174400pt;}
._8{margin-left:-2.240000pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.280000pt;}
._b{width:2.186667pt;}
._4{width:3.170133pt;}
._2{width:4.272000pt;}
._3{width:5.937067pt;}
._6{width:7.168000pt;}
._19{width:8.563200pt;}
._9{width:9.664000pt;}
._16{width:11.125333pt;}
._f{width:12.697600pt;}
._e{width:13.606400pt;}
._15{width:16.938667pt;}
._11{width:18.880000pt;}
._18{width:19.914667pt;}
._17{width:22.176000pt;}
._12{width:23.104000pt;}
._10{width:25.856000pt;}
._1c{width:27.370667pt;}
._13{width:29.184000pt;}
._14{width:32.320000pt;}
._1a{width:35.264000pt;}
._1f{width:37.557333pt;}
._1b{width:38.464000pt;}
._1e{width:42.154667pt;}
._1d{width:121.461333pt;}
.fs0{font-size:22.400000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs4{font-size:41.600000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:54.400000pt;}
.fs7{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:50.433333pt;}
.y33{bottom:68.833333pt;}
.yc0{bottom:94.466667pt;}
.y56{bottom:101.666667pt;}
.y8e{bottom:107.266667pt;}
.yab{bottom:112.066667pt;}
.y2f{bottom:112.866667pt;}
.y88{bottom:120.066667pt;}
.y55{bottom:129.666667pt;}
.y2e{bottom:131.266667pt;}
.y8d{bottom:134.493333pt;}
.y85{bottom:135.306667pt;}
.y75{bottom:137.693333pt;}
.ybf{bottom:139.293333pt;}
.yaa{bottom:140.106667pt;}
.y87{bottom:144.893333pt;}
.y2d{bottom:149.693333pt;}
.y54{bottom:156.893333pt;}
.ybe{bottom:157.693333pt;}
.y84{bottom:163.293333pt;}
.y8c{bottom:164.106667pt;}
.y74{bottom:164.893333pt;}
.ya9{bottom:167.293333pt;}
.y2c{bottom:168.093333pt;}
.ybd{bottom:184.133333pt;}
.y53{bottom:184.933333pt;}
.y2b{bottom:186.533333pt;}
.y83{bottom:190.533333pt;}
.y8b{bottom:191.333333pt;}
.y73{bottom:192.933333pt;}
.ya8{bottom:195.333333pt;}
.y86{bottom:196.133333pt;}
.ybc{bottom:202.533333pt;}
.y2a{bottom:204.933333pt;}
.y52{bottom:212.133333pt;}
.y82{bottom:218.533333pt;}
.y8a{bottom:219.333333pt;}
.y72{bottom:220.133333pt;}
.ybb{bottom:220.933333pt;}
.ya7{bottom:222.533333pt;}
.y29{bottom:223.333333pt;}
.y51{bottom:240.160000pt;}
.y28{bottom:241.773333pt;}
.y81{bottom:245.760000pt;}
.y89{bottom:246.560000pt;}
.yba{bottom:247.373333pt;}
.y71{bottom:248.173333pt;}
.ya6{bottom:250.560000pt;}
.y27{bottom:260.173333pt;}
.yb9{bottom:265.773333pt;}
.y50{bottom:267.360000pt;}
.y80{bottom:273.800000pt;}
.y70{bottom:275.400000pt;}
.ya5{bottom:277.800000pt;}
.y26{bottom:286.600000pt;}
.yb8{bottom:292.200000pt;}
.y4f{bottom:295.400000pt;}
.y7f{bottom:301.000000pt;}
.y6f{bottom:303.400000pt;}
.y25{bottom:305.000000pt;}
.ya4{bottom:305.800000pt;}
.yb7{bottom:310.600000pt;}
.y4e{bottom:322.626667pt;}
.y24{bottom:323.426667pt;}
.y7e{bottom:329.026667pt;}
.y6e{bottom:330.640000pt;}
.ya3{bottom:333.026667pt;}
.yb6{bottom:337.040000pt;}
.y23{bottom:341.826667pt;}
.y4d{bottom:350.626667pt;}
.yb5{bottom:355.440000pt;}
.y7d{bottom:356.226667pt;}
.y6d{bottom:358.626667pt;}
.ya2{bottom:361.026667pt;}
.y22{bottom:368.266667pt;}
.y4c{bottom:377.866667pt;}
.yb4{bottom:381.866667pt;}
.y7c{bottom:384.266667pt;}
.y6c{bottom:385.866667pt;}
.y21{bottom:386.666667pt;}
.ya1{bottom:388.266667pt;}
.yb3{bottom:400.266667pt;}
.y20{bottom:405.066667pt;}
.y4b{bottom:405.866667pt;}
.y7b{bottom:411.506667pt;}
.y6b{bottom:413.893333pt;}
.ya0{bottom:416.293333pt;}
.yb2{bottom:418.693333pt;}
.y1f{bottom:423.506667pt;}
.y4a{bottom:433.106667pt;}
.y7a{bottom:439.506667pt;}
.y6a{bottom:441.093333pt;}
.y1e{bottom:441.893333pt;}
.y9f{bottom:443.493333pt;}
.yb1{bottom:445.106667pt;}
.y1d{bottom:460.333333pt;}
.y49{bottom:461.133333pt;}
.yb0{bottom:463.533333pt;}
.y79{bottom:466.733333pt;}
.y69{bottom:469.133333pt;}
.y9e{bottom:471.533333pt;}
.y1c{bottom:478.733333pt;}
.y48{bottom:488.333333pt;}
.yaf{bottom:489.933333pt;}
.y78{bottom:494.733333pt;}
.y68{bottom:496.333333pt;}
.y1b{bottom:497.133333pt;}
.y9d{bottom:498.733333pt;}
.yae{bottom:508.360000pt;}
.y1a{bottom:515.560000pt;}
.y47{bottom:516.360000pt;}
.y77{bottom:521.973333pt;}
.y67{bottom:524.360000pt;}
.y9c{bottom:526.760000pt;}
.y19{bottom:533.973333pt;}
.yad{bottom:534.760000pt;}
.y46{bottom:543.560000pt;}
.y76{bottom:550.800000pt;}
.y66{bottom:551.600000pt;}
.y18{bottom:552.400000pt;}
.yac{bottom:553.200000pt;}
.y9b{bottom:554.000000pt;}
.y17{bottom:570.800000pt;}
.y45{bottom:571.600000pt;}
.y65{bottom:579.600000pt;}
.y9a{bottom:582.000000pt;}
.y16{bottom:597.226667pt;}
.y44{bottom:598.840000pt;}
.y64{bottom:606.826667pt;}
.y99{bottom:609.226667pt;}
.y15{bottom:625.226667pt;}
.y43{bottom:626.840000pt;}
.y63{bottom:634.840000pt;}
.y98{bottom:637.226667pt;}
.y14{bottom:650.066667pt;}
.y42{bottom:654.066667pt;}
.y62{bottom:662.066667pt;}
.y97{bottom:664.466667pt;}
.y13{bottom:677.266667pt;}
.y41{bottom:682.066667pt;}
.y61{bottom:690.093333pt;}
.y96{bottom:692.506667pt;}
.y12{bottom:696.506667pt;}
.y40{bottom:709.293333pt;}
.y60{bottom:717.293333pt;}
.y95{bottom:719.693333pt;}
.y11{bottom:722.893333pt;}
.y3f{bottom:737.333333pt;}
.y10{bottom:744.533333pt;}
.y5f{bottom:745.333333pt;}
.y94{bottom:747.733333pt;}
.y3e{bottom:764.533333pt;}
.yf{bottom:771.733333pt;}
.y5e{bottom:772.533333pt;}
.y93{bottom:786.960000pt;}
.y3d{bottom:792.560000pt;}
.ye{bottom:799.773333pt;}
.y5d{bottom:800.560000pt;}
.y92{bottom:814.960000pt;}
.y3c{bottom:819.760000pt;}
.yd{bottom:827.000000pt;}
.y5c{bottom:827.800000pt;}
.y91{bottom:842.200000pt;}
.y3b{bottom:847.800000pt;}
.yc{bottom:855.000000pt;}
.y5b{bottom:855.800000pt;}
.yc4{bottom:867.000000pt;}
.y90{bottom:870.200000pt;}
.y3a{bottom:875.026667pt;}
.yb{bottom:882.226667pt;}
.y5a{bottom:883.040000pt;}
.yc3{bottom:885.426667pt;}
.y8f{bottom:897.426667pt;}
.y39{bottom:903.040000pt;}
.ya{bottom:910.226667pt;}
.y59{bottom:911.026667pt;}
.yc2{bottom:911.840000pt;}
.y38{bottom:930.266667pt;}
.y9{bottom:937.466667pt;}
.y58{bottom:938.266667pt;}
.y37{bottom:948.666667pt;}
.yc1{bottom:956.666667pt;}
.y8{bottom:965.506667pt;}
.y57{bottom:966.293333pt;}
.y36{bottom:975.106667pt;}
.y7{bottom:984.693333pt;}
.y35{bottom:993.506667pt;}
.y6{bottom:1001.506667pt;}
.y5{bottom:1009.533333pt;}
.y4{bottom:1022.333333pt;}
.y3{bottom:1035.933333pt;}
.y32{bottom:1036.733333pt;}
.y2{bottom:1051.933333pt;}
.y31{bottom:1053.533333pt;}
.y30{bottom:1062.360000pt;}
.y1{bottom:1068.773333pt;}
.h2{height:19.556250pt;}
.h6{height:20.518750pt;}
.hc{height:32.768750pt;}
.h5{height:36.318750pt;}
.h4{height:41.906250pt;}
.h10{height:43.031250pt;}
.hd{height:48.768750pt;}
.h7{height:49.831250pt;}
.ha{height:51.937500pt;}
.he{height:52.762500pt;}
.h3{height:55.875000pt;}
.h8{height:56.843750pt;}
.hf{height:57.290625pt;}
.h9{height:57.375000pt;}
.hb{height:59.693750pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xf{left:113.733322pt;}
.x8{left:121.733322pt;}
.xd{left:125.733322pt;}
.xa{left:128.933322pt;}
.x6{left:133.733322pt;}
.x9{left:137.733322pt;}
.x7{left:144.133322pt;}
.x15{left:151.359988pt;}
.x16{left:161.759988pt;}
.x19{left:170.573322pt;}
.xe{left:272.266655pt;}
.x2{left:288.293322pt;}
.x10{left:296.306655pt;}
.xb{left:300.293322pt;}
.x5{left:302.706655pt;}
.xc{left:322.733322pt;}
.x18{left:361.173322pt;}
.x4{left:366.773322pt;}
.x3{left:372.399988pt;}
.x13{left:385.999988pt;}
.x12{left:388.399988pt;}
.x1{left:416.439988pt;}
.x17{left:611.839988pt;}
.x14{left:711.933322pt;}
.x11{left:719.133322pt;}
}




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