
    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_773ee8c7dca818494fcb4113.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_c5bfaa83eaf66240fc4c0c1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_234b69f20bf097ea3c5efd6a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_ba668a80e3a8ba08a513db26.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_bba78604305fcdc3c9dcfae1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_4167ec99d0c439ff8a843659.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_a1dd37b66616521d4516903d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.030273;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;}
.m7{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m5{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,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);}
.v8{vertical-align:-60.180000px;}
.v2{vertical-align:-57.600000px;}
.v9{vertical-align:-35.280000px;}
.v4{vertical-align:-7.200000px;}
.v5{vertical-align:-3.000000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.140000px;}
.v3{vertical-align:57.600000px;}
.v1{vertical-align:79.200000px;}
.ls11{letter-spacing:-0.485400px;}
.ls12{letter-spacing:-0.391200px;}
.ls18{letter-spacing:-0.269400px;}
.ls13{letter-spacing:-0.198600px;}
.ls1a{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072600px;}
.ls16{letter-spacing:-0.033120px;}
.ls15{letter-spacing:-0.024480px;}
.lsf{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.033120px;}
.ls7{letter-spacing:0.060600px;}
.ls19{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.123000px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.181440px;}
.ls1{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.233280px;}
.ls10{letter-spacing:0.234600px;}
.ls2{letter-spacing:0.243360px;}
.lsb{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.349920px;}
.ls4{letter-spacing:0.972000px;}
.lsc{letter-spacing:28.322640px;}
.lsa{letter-spacing:28.407600px;}
.ls8{letter-spacing:41.616000px;}
.lsd{letter-spacing:42.336000px;}
.lse{letter-spacing:42.456000px;}
.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;}
}
.ws2c{word-spacing:-46.753200px;}
.ws1f{word-spacing:-42.120000px;}
.ws1a{word-spacing:-37.547400px;}
.ws1b{word-spacing:-37.486800px;}
.ws1{word-spacing:-34.473600px;}
.ws0{word-spacing:-34.257600px;}
.ws1d{word-spacing:-32.713200px;}
.ws2a{word-spacing:-28.080000px;}
.ws10{word-spacing:-24.991200px;}
.ws1c{word-spacing:-23.446800px;}
.ws29{word-spacing:-21.168000px;}
.ws28{word-spacing:-21.060000px;}
.ws26{word-spacing:-11.653200px;}
.ws23{word-spacing:-11.620080px;}
.ws25{word-spacing:-11.580600px;}
.ws3{word-spacing:-11.265840px;}
.ws17{word-spacing:-1.779120px;}
.ws19{word-spacing:-1.465920px;}
.ws16{word-spacing:-0.486360px;}
.ws1e{word-spacing:-0.216000px;}
.ws20{word-spacing:-0.144000px;}
.ws2d{word-spacing:0.000000px;}
.ws15{word-spacing:0.426720px;}
.ws18{word-spacing:1.026720px;}
.wsb{word-spacing:1.660080px;}
.ws7{word-spacing:1.673640px;}
.ws6{word-spacing:1.718640px;}
.ws8{word-spacing:2.168640px;}
.ws5{word-spacing:2.393640px;}
.ws9{word-spacing:2.438640px;}
.ws4{word-spacing:2.723760px;}
.wsa{word-spacing:3.833640px;}
.wse{word-spacing:10.313640px;}
.ws14{word-spacing:10.502400px;}
.ws13{word-spacing:10.739280px;}
.wsf{word-spacing:10.795680px;}
.wsd{word-spacing:10.972800px;}
.ws12{word-spacing:11.033640px;}
.wsc{word-spacing:11.192400px;}
.ws11{word-spacing:11.537280px;}
.ws2{word-spacing:18.437760px;}
.ws24{word-spacing:77.387040px;}
.ws21{word-spacing:198.804960px;}
.ws22{word-spacing:267.631680px;}
.ws2b{word-spacing:550.962000px;}
.ws27{word-spacing:2256.024000px;}
._17{margin-left:-4594.902240px;}
._e{margin-left:-1869.684000px;}
._1{margin-left:-1.511280px;}
._0{width:1.152000px;}
._8{width:2.304000px;}
._5{width:37.035840px;}
._4{width:38.945520px;}
._2{width:40.481760px;}
._3{width:49.719840px;}
._9{width:73.156080px;}
._14{width:123.887280px;}
._13{width:174.186000px;}
._b{width:217.674000px;}
._15{width:223.167840px;}
._16{width:233.462400px;}
._a{width:310.172160px;}
._11{width:836.376240px;}
._12{width:870.167760px;}
._7{width:1131.563280px;}
._d{width:2364.588000px;}
._f{width:2792.090880px;}
._10{width:3160.637520px;}
._6{width:4883.520000px;}
._c{width:6344.951424px;}
.fcd{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc5{color:rgb(201,201,201);}
.fc8{color:rgb(0,176,80);}
.fc3{color:rgb(232,94,113);}
.fcb{color:rgb(127,26,26);}
.fcc{color:rgb(88,0,0);}
.fc0{color:rgb(158,200,235);}
.fc6{color:rgb(255,0,0);}
.fca{color:rgb(176,77,77);}
.fc7{color:rgb(68,114,196);}
.fc9{color:rgb(223,127,127);}
.fs10{font-size:59.760000px;}
.fsf{font-size:84.240000px;}
.fs16{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.fs6{font-size:128.160000px;}
.fs14{font-size:129.136206px;}
.fs15{font-size:129.140358px;}
.fs13{font-size:129.169422px;}
.fs12{font-size:129.642752px;}
.fs11{font-size:129.879418px;}
.fsd{font-size:144.000000px;}
.fs18{font-size:151.787810px;}
.fsa{font-size:167.760000px;}
.fs4{font-size:175.680000px;}
.fs7{font-size:192.240000px;}
.fs19{font-size:192.384000px;}
.fsb{font-size:216.000000px;}
.fsc{font-size:216.144000px;}
.fs5{font-size:239.760000px;}
.fs3{font-size:264.240000px;}
.fse{font-size:288.000000px;}
.fs0{font-size:360.000000px;}
.fs17{font-size:444.240000px;}
.fs2{font-size:480.240000px;}
.fs1{font-size:576.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:1.725000px;}
.y26{bottom:2.520000px;}
.y36{bottom:294.881183px;}
.y38{bottom:294.890665px;}
.y34{bottom:294.956879px;}
.y3a{bottom:294.957032px;}
.y32{bottom:296.038030px;}
.y30{bottom:296.578453px;}
.y47{bottom:366.015000px;}
.y46{bottom:430.815000px;}
.y1{bottom:507.315000px;}
.y4a{bottom:649.005000px;}
.y53{bottom:665.355000px;}
.y57{bottom:781.020000px;}
.y58{bottom:1022.190000px;}
.y59{bottom:1160.490000px;}
.y52{bottom:1256.580000px;}
.y5a{bottom:1304.355000px;}
.y54{bottom:1342.980000px;}
.y48{bottom:1386.255000px;}
.y49{bottom:1455.225000px;}
.y50{bottom:1566.750000px;}
.y4f{bottom:1614.060000px;}
.y4e{bottom:1687.860000px;}
.y4d{bottom:1761.660000px;}
.y4c{bottom:1835.460000px;}
.y56{bottom:1886.760000px;}
.y4b{bottom:1909.260000px;}
.y55{bottom:1944.360000px;}
.y51{bottom:1946.625000px;}
.y2{bottom:1993.170000px;}
.y44{bottom:2139.225000px;}
.y39{bottom:2269.707423px;}
.y35{bottom:2269.782343px;}
.y37{bottom:2269.782353px;}
.y42{bottom:2303.385000px;}
.y40{bottom:2376.180000px;}
.y43{bottom:2392.920000px;}
.y3f{bottom:2626.410000px;}
.y41{bottom:2724.150000px;}
.y3e{bottom:2729.055000px;}
.y3c{bottom:2745.105000px;}
.y2f{bottom:2762.383979px;}
.y31{bottom:2762.938406px;}
.y33{bottom:2763.597586px;}
.y3d{bottom:3121.770000px;}
.y3b{bottom:3204.330000px;}
.y45{bottom:3312.720000px;}
.y21{bottom:3546.975000px;}
.y2b{bottom:3570.585000px;}
.y11{bottom:3582.510000px;}
.y19{bottom:3584.310000px;}
.y2a{bottom:3589.305000px;}
.y20{bottom:3609.975000px;}
.y2c{bottom:3628.590000px;}
.y18{bottom:3649.110000px;}
.y25{bottom:3649.680000px;}
.y29{bottom:3659.685000px;}
.y1f{bottom:3662.355000px;}
.ya{bottom:3662.430000px;}
.y10{bottom:3699.570000px;}
.y17{bottom:3713.910000px;}
.y2d{bottom:3727.905000px;}
.yb{bottom:3740.655000px;}
.y24{bottom:3751.200000px;}
.y28{bottom:3760.350000px;}
.y1e{bottom:3761.385000px;}
.y16{bottom:3778.710000px;}
.yf{bottom:3785.865000px;}
.yc{bottom:3854.055000px;}
.y1d{bottom:3854.085000px;}
.y15{bottom:3861.510000px;}
.y1c{bottom:3906.465000px;}
.ye{bottom:3925.875000px;}
.y14{bottom:3926.310000px;}
.y13{bottom:3991.140000px;}
.y1b{bottom:3994.095000px;}
.y22{bottom:4005.540000px;}
.y27{bottom:4012.995000px;}
.yd{bottom:4021.275000px;}
.y12{bottom:4055.940000px;}
.y2e{bottom:4082.145000px;}
.y6{bottom:4136.940000px;}
.y1a{bottom:4137.045000px;}
.y9{bottom:4261.965000px;}
.y8{bottom:4316.685000px;}
.y7{bottom:4400.205000px;}
.y5{bottom:4450.170000px;}
.y4{bottom:4569.090000px;}
.y3{bottom:4718.850000px;}
.h13{height:44.909531px;}
.he{height:49.320000px;}
.h11{height:50.040000px;}
.h10{height:50.220000px;}
.h12{height:61.699219px;}
.h9{height:79.101562px;}
.h8{height:88.066406px;}
.h6{height:93.867188px;}
.hd{height:105.468750px;}
.h1b{height:109.147838px;}
.h1d{height:109.151347px;}
.h19{height:109.175913px;}
.h17{height:109.575979px;}
.h15{height:109.776012px;}
.h22{height:111.172712px;}
.ha{height:122.871094px;}
.h1f{height:140.800781px;}
.h23{height:140.906250px;}
.h7{height:151.467188px;}
.hb{height:158.203125px;}
.hc{height:158.308594px;}
.h21{height:175.605469px;}
.h5{height:207.871875px;}
.hf{height:210.937500px;}
.h2{height:263.671875px;}
.h20{height:325.371094px;}
.h1a{height:334.872000px;}
.h1c{height:334.882767px;}
.h18{height:334.957973px;}
.h1e{height:334.958135px;}
.h16{height:336.185723px;}
.h14{height:336.799436px;}
.h4{height:351.738281px;}
.h3{height:421.875000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w3{width:16.380000px;}
.w4{width:27.000000px;}
.w5{width:27.180000px;}
.wa{width:354.842519px;}
.wb{width:354.842580px;}
.wc{width:354.928653px;}
.w9{width:354.928775px;}
.w8{width:356.231165px;}
.w6{width:356.876957px;}
.w7{width:356.877018px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x12{left:-1.410000px;}
.x0{left:0.000000px;}
.x1a{left:19.448443px;}
.x4{left:112.499947px;}
.x6{left:114.155947px;}
.x3{left:118.691947px;}
.x2d{left:154.799947px;}
.x2e{left:156.959947px;}
.x1{left:161.609947px;}
.xc{left:163.154947px;}
.x5{left:172.904947px;}
.x2c{left:175.964947px;}
.x2{left:186.869947px;}
.x20{left:196.919947px;}
.x19{left:250.719078px;}
.x2f{left:268.844947px;}
.x26{left:354.749947px;}
.x33{left:371.489947px;}
.x32{left:374.789947px;}
.x1f{left:614.375159px;}
.x28{left:705.884947px;}
.x1b{left:794.934017px;}
.x30{left:799.094947px;}
.x1e{left:976.489946px;}
.x27{left:1014.764947px;}
.x31{left:1059.329947px;}
.x1c{left:1158.607725px;}
.x39{left:1413.359947px;}
.x38{left:1438.199947px;}
.x9{left:1514.954947px;}
.xa{left:1520.354947px;}
.x1d{left:1522.550037px;}
.x29{left:1567.364947px;}
.xb{left:1618.664947px;}
.x8{left:1656.104947px;}
.x7{left:1658.309947px;}
.x2a{left:1761.014947px;}
.x2b{left:1895.399947px;}
.xf{left:1913.114947px;}
.xd{left:1938.029947px;}
.x18{left:1959.554947px;}
.xe{left:2095.949947px;}
.x37{left:2393.204947px;}
.x36{left:2397.854947px;}
.x25{left:2435.369947px;}
.x21{left:2481.734947px;}
.x34{left:2490.734947px;}
.x35{left:2561.684947px;}
.x22{left:2691.464947px;}
.x24{left:2706.404947px;}
.x11{left:2751.300000px;}
.x10{left:2755.080000px;}
.x13{left:2801.159947px;}
.x14{left:2820.524947px;}
.x15{left:2857.139947px;}
.x17{left:3016.649947px;}
.x16{left:3025.949947px;}
.x23{left:3169.109947px;}
@media print{
.v8{vertical-align:-53.493333pt;}
.v2{vertical-align:-51.200000pt;}
.v9{vertical-align:-31.360000pt;}
.v4{vertical-align:-6.400000pt;}
.v5{vertical-align:-2.666667pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.013333pt;}
.v3{vertical-align:51.200000pt;}
.v1{vertical-align:70.400000pt;}
.ls11{letter-spacing:-0.431467pt;}
.ls12{letter-spacing:-0.347733pt;}
.ls18{letter-spacing:-0.239467pt;}
.ls13{letter-spacing:-0.176533pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064533pt;}
.ls16{letter-spacing:-0.029440pt;}
.ls15{letter-spacing:-0.021760pt;}
.lsf{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.029440pt;}
.ls7{letter-spacing:0.053867pt;}
.ls19{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.109333pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.161280pt;}
.ls1{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.207360pt;}
.ls10{letter-spacing:0.208533pt;}
.ls2{letter-spacing:0.216320pt;}
.lsb{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.311040pt;}
.ls4{letter-spacing:0.864000pt;}
.lsc{letter-spacing:25.175680pt;}
.lsa{letter-spacing:25.251200pt;}
.ls8{letter-spacing:36.992000pt;}
.lsd{letter-spacing:37.632000pt;}
.lse{letter-spacing:37.738667pt;}
.ws2c{word-spacing:-41.558400pt;}
.ws1f{word-spacing:-37.440000pt;}
.ws1a{word-spacing:-33.375467pt;}
.ws1b{word-spacing:-33.321600pt;}
.ws1{word-spacing:-30.643200pt;}
.ws0{word-spacing:-30.451200pt;}
.ws1d{word-spacing:-29.078400pt;}
.ws2a{word-spacing:-24.960000pt;}
.ws10{word-spacing:-22.214400pt;}
.ws1c{word-spacing:-20.841600pt;}
.ws29{word-spacing:-18.816000pt;}
.ws28{word-spacing:-18.720000pt;}
.ws26{word-spacing:-10.358400pt;}
.ws23{word-spacing:-10.328960pt;}
.ws25{word-spacing:-10.293867pt;}
.ws3{word-spacing:-10.014080pt;}
.ws17{word-spacing:-1.581440pt;}
.ws19{word-spacing:-1.303040pt;}
.ws16{word-spacing:-0.432320pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws20{word-spacing:-0.128000pt;}
.ws2d{word-spacing:0.000000pt;}
.ws15{word-spacing:0.379307pt;}
.ws18{word-spacing:0.912640pt;}
.wsb{word-spacing:1.475627pt;}
.ws7{word-spacing:1.487680pt;}
.ws6{word-spacing:1.527680pt;}
.ws8{word-spacing:1.927680pt;}
.ws5{word-spacing:2.127680pt;}
.ws9{word-spacing:2.167680pt;}
.ws4{word-spacing:2.421120pt;}
.wsa{word-spacing:3.407680pt;}
.wse{word-spacing:9.167680pt;}
.ws14{word-spacing:9.335467pt;}
.ws13{word-spacing:9.546027pt;}
.wsf{word-spacing:9.596160pt;}
.wsd{word-spacing:9.753600pt;}
.ws12{word-spacing:9.807680pt;}
.wsc{word-spacing:9.948800pt;}
.ws11{word-spacing:10.255360pt;}
.ws2{word-spacing:16.389120pt;}
.ws24{word-spacing:68.788480pt;}
.ws21{word-spacing:176.715520pt;}
.ws22{word-spacing:237.894827pt;}
.ws2b{word-spacing:489.744000pt;}
.ws27{word-spacing:2005.354667pt;}
._17{margin-left:-4084.357547pt;}
._e{margin-left:-1661.941333pt;}
._1{margin-left:-1.343360pt;}
._0{width:1.024000pt;}
._8{width:2.048000pt;}
._5{width:32.920747pt;}
._4{width:34.618240pt;}
._2{width:35.983787pt;}
._3{width:44.195413pt;}
._9{width:65.027627pt;}
._14{width:110.122027pt;}
._13{width:154.832000pt;}
._b{width:193.488000pt;}
._15{width:198.371413pt;}
._16{width:207.522133pt;}
._a{width:275.708587pt;}
._11{width:743.445547pt;}
._12{width:773.482453pt;}
._7{width:1005.834027pt;}
._d{width:2101.856000pt;}
._f{width:2481.858560pt;}
._10{width:2809.455573pt;}
._6{width:4340.906667pt;}
._c{width:5639.956821pt;}
.fs10{font-size:53.120000pt;}
.fsf{font-size:74.880000pt;}
.fs16{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.fs6{font-size:113.920000pt;}
.fs14{font-size:114.787738pt;}
.fs15{font-size:114.791429pt;}
.fs13{font-size:114.817264pt;}
.fs12{font-size:115.238002pt;}
.fs11{font-size:115.448371pt;}
.fsd{font-size:128.000000pt;}
.fs18{font-size:134.922498pt;}
.fsa{font-size:149.120000pt;}
.fs4{font-size:156.160000pt;}
.fs7{font-size:170.880000pt;}
.fs19{font-size:171.008000pt;}
.fsb{font-size:192.000000pt;}
.fsc{font-size:192.128000pt;}
.fs5{font-size:213.120000pt;}
.fs3{font-size:234.880000pt;}
.fse{font-size:256.000000pt;}
.fs0{font-size:320.000000pt;}
.fs17{font-size:394.880000pt;}
.fs2{font-size:426.880000pt;}
.fs1{font-size:512.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:1.533333pt;}
.y26{bottom:2.240000pt;}
.y36{bottom:262.116608pt;}
.y38{bottom:262.125035pt;}
.y34{bottom:262.183892pt;}
.y3a{bottom:262.184029pt;}
.y32{bottom:263.144916pt;}
.y30{bottom:263.625291pt;}
.y47{bottom:325.346667pt;}
.y46{bottom:382.946667pt;}
.y1{bottom:450.946667pt;}
.y4a{bottom:576.893333pt;}
.y53{bottom:591.426667pt;}
.y57{bottom:694.240000pt;}
.y58{bottom:908.613333pt;}
.y59{bottom:1031.546667pt;}
.y52{bottom:1116.960000pt;}
.y5a{bottom:1159.426667pt;}
.y54{bottom:1193.760000pt;}
.y48{bottom:1232.226667pt;}
.y49{bottom:1293.533333pt;}
.y50{bottom:1392.666667pt;}
.y4f{bottom:1434.720000pt;}
.y4e{bottom:1500.320000pt;}
.y4d{bottom:1565.920000pt;}
.y4c{bottom:1631.520000pt;}
.y56{bottom:1677.120000pt;}
.y4b{bottom:1697.120000pt;}
.y55{bottom:1728.320000pt;}
.y51{bottom:1730.333333pt;}
.y2{bottom:1771.706667pt;}
.y44{bottom:1901.533333pt;}
.y39{bottom:2017.517709pt;}
.y35{bottom:2017.584305pt;}
.y37{bottom:2017.584314pt;}
.y42{bottom:2047.453333pt;}
.y40{bottom:2112.160000pt;}
.y43{bottom:2127.040000pt;}
.y3f{bottom:2334.586667pt;}
.y41{bottom:2421.466667pt;}
.y3e{bottom:2425.826667pt;}
.y3c{bottom:2440.093333pt;}
.y2f{bottom:2455.452426pt;}
.y31{bottom:2455.945250pt;}
.y33{bottom:2456.531187pt;}
.y3d{bottom:2774.906667pt;}
.y3b{bottom:2848.293333pt;}
.y45{bottom:2944.640000pt;}
.y21{bottom:3152.866667pt;}
.y2b{bottom:3173.853333pt;}
.y11{bottom:3184.453333pt;}
.y19{bottom:3186.053333pt;}
.y2a{bottom:3190.493333pt;}
.y20{bottom:3208.866667pt;}
.y2c{bottom:3225.413333pt;}
.y18{bottom:3243.653333pt;}
.y25{bottom:3244.160000pt;}
.y29{bottom:3253.053333pt;}
.y1f{bottom:3255.426667pt;}
.ya{bottom:3255.493333pt;}
.y10{bottom:3288.506667pt;}
.y17{bottom:3301.253333pt;}
.y2d{bottom:3313.693333pt;}
.yb{bottom:3325.026667pt;}
.y24{bottom:3334.400000pt;}
.y28{bottom:3342.533333pt;}
.y1e{bottom:3343.453333pt;}
.y16{bottom:3358.853333pt;}
.yf{bottom:3365.213333pt;}
.yc{bottom:3425.826667pt;}
.y1d{bottom:3425.853333pt;}
.y15{bottom:3432.453333pt;}
.y1c{bottom:3472.413333pt;}
.ye{bottom:3489.666667pt;}
.y14{bottom:3490.053333pt;}
.y13{bottom:3547.680000pt;}
.y1b{bottom:3550.306667pt;}
.y22{bottom:3560.480000pt;}
.y27{bottom:3567.106667pt;}
.yd{bottom:3574.466667pt;}
.y12{bottom:3605.280000pt;}
.y2e{bottom:3628.573333pt;}
.y6{bottom:3677.280000pt;}
.y1a{bottom:3677.373333pt;}
.y9{bottom:3788.413333pt;}
.y8{bottom:3837.053333pt;}
.y7{bottom:3911.293333pt;}
.y5{bottom:3955.706667pt;}
.y4{bottom:4061.413333pt;}
.y3{bottom:4194.533333pt;}
.h13{height:39.919583pt;}
.he{height:43.840000pt;}
.h11{height:44.480000pt;}
.h10{height:44.640000pt;}
.h12{height:54.843750pt;}
.h9{height:70.312500pt;}
.h8{height:78.281250pt;}
.h6{height:83.437500pt;}
.hd{height:93.750000pt;}
.h1b{height:97.020300pt;}
.h1d{height:97.023420pt;}
.h19{height:97.045256pt;}
.h17{height:97.400870pt;}
.h15{height:97.578677pt;}
.h22{height:98.820189pt;}
.ha{height:109.218750pt;}
.h1f{height:125.156250pt;}
.h23{height:125.250000pt;}
.h7{height:134.637500pt;}
.hb{height:140.625000pt;}
.hc{height:140.718750pt;}
.h21{height:156.093750pt;}
.h5{height:184.775000pt;}
.hf{height:187.500000pt;}
.h2{height:234.375000pt;}
.h20{height:289.218750pt;}
.h1a{height:297.664000pt;}
.h1c{height:297.673570pt;}
.h18{height:297.740420pt;}
.h1e{height:297.740564pt;}
.h16{height:298.831754pt;}
.h14{height:299.377276pt;}
.h4{height:312.656250pt;}
.h3{height:375.000000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w3{width:14.560000pt;}
.w4{width:24.000000pt;}
.w5{width:24.160000pt;}
.wa{width:315.415573pt;}
.wb{width:315.415627pt;}
.wc{width:315.492136pt;}
.w9{width:315.492245pt;}
.w8{width:316.649924pt;}
.w6{width:317.223962pt;}
.w7{width:317.224016pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x12{left:-1.253333pt;}
.x0{left:0.000000pt;}
.x1a{left:17.287505pt;}
.x4{left:99.999953pt;}
.x6{left:101.471953pt;}
.x3{left:105.503953pt;}
.x2d{left:137.599953pt;}
.x2e{left:139.519953pt;}
.x1{left:143.653286pt;}
.xc{left:145.026619pt;}
.x5{left:153.693286pt;}
.x2c{left:156.413286pt;}
.x2{left:166.106619pt;}
.x20{left:175.039953pt;}
.x19{left:222.861403pt;}
.x2f{left:238.973286pt;}
.x26{left:315.333286pt;}
.x33{left:330.213286pt;}
.x32{left:333.146619pt;}
.x1f{left:546.111253pt;}
.x28{left:627.453286pt;}
.x1b{left:706.608015pt;}
.x30{left:710.306619pt;}
.x1e{left:867.991063pt;}
.x27{left:902.013286pt;}
.x31{left:941.626619pt;}
.x1c{left:1029.873533pt;}
.x39{left:1256.319953pt;}
.x38{left:1278.399953pt;}
.x9{left:1346.626619pt;}
.xa{left:1351.426619pt;}
.x1d{left:1353.377811pt;}
.x29{left:1393.213286pt;}
.xb{left:1438.813286pt;}
.x8{left:1472.093286pt;}
.x7{left:1474.053286pt;}
.x2a{left:1565.346619pt;}
.x2b{left:1684.799953pt;}
.xf{left:1700.546619pt;}
.xd{left:1722.693286pt;}
.x18{left:1741.826619pt;}
.xe{left:1863.066619pt;}
.x37{left:2127.293286pt;}
.x36{left:2131.426619pt;}
.x25{left:2164.773286pt;}
.x21{left:2205.986619pt;}
.x34{left:2213.986619pt;}
.x35{left:2277.053286pt;}
.x22{left:2392.413286pt;}
.x24{left:2405.693286pt;}
.x11{left:2445.600000pt;}
.x10{left:2448.960000pt;}
.x13{left:2489.919953pt;}
.x14{left:2507.133286pt;}
.x15{left:2539.679953pt;}
.x17{left:2681.466619pt;}
.x16{left:2689.733286pt;}
.x23{left:2816.986619pt;}
}




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