
    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_c242d0e14561dbb42824c541.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ccbac9090a0d38773e2d9058.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ba78332354671aeb40f25b1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904785;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_3779f89302560974e75096d1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_27c14d2a0c569a9294274440.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b5a937a035abc23144d37759.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_90f9fa599d2867c721b186f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_64c1b4f14ccd011d83d3c643.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_dbc5579b931eb40321b4b65d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.907269;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_61515ab4efe021f211641b3a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925781;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_9ddc50cd2894eb102bfbd6ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.929688;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_8aea032f829ac7c8c8a64d1b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969727;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_9dccfb1f0ed1df9f774df594.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_884503f55ef96a12cb09dcc9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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;}
.m2{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);}
.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:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.882000px;}
.ls1c{letter-spacing:-0.560400px;}
.ls1b{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.291600px;}
.ls33{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.145200px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.172080px;}
.lse{letter-spacing:0.181440px;}
.ls2a{letter-spacing:0.291600px;}
.ls4{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.540000px;}
.lsc{letter-spacing:2.700000px;}
.ls27{letter-spacing:4.140000px;}
.ls28{letter-spacing:4.860000px;}
.ls2d{letter-spacing:5.580000px;}
.ls34{letter-spacing:5.760000px;}
.ls5{letter-spacing:6.300000px;}
.ls35{letter-spacing:6.480000px;}
.ls37{letter-spacing:7.920000px;}
.ls30{letter-spacing:10.080000px;}
.ls17{letter-spacing:10.620000px;}
.lsd{letter-spacing:11.340000px;}
.ls10{letter-spacing:12.060000px;}
.ls1{letter-spacing:12.960000px;}
.ls31{letter-spacing:13.680000px;}
.ls32{letter-spacing:14.400000px;}
.ls36{letter-spacing:16.560000px;}
.ls22{letter-spacing:17.820000px;}
.ls1f{letter-spacing:18.540000px;}
.ls2b{letter-spacing:22.116000px;}
.ls2c{letter-spacing:22.140000px;}
.ls29{letter-spacing:22.860000px;}
.ls2e{letter-spacing:24.300000px;}
.ls1e{letter-spacing:24.420000px;}
.ls21{letter-spacing:27.900000px;}
.lsb{letter-spacing:28.620000px;}
.ls16{letter-spacing:29.340000px;}
.ls15{letter-spacing:30.060000px;}
.ls18{letter-spacing:31.500000px;}
.lsf{letter-spacing:33.660000px;}
.ls2f{letter-spacing:33.984000px;}
.ls3{letter-spacing:40.260000px;}
.ls0{letter-spacing:43.200000px;}
.ls26{letter-spacing:50.220000px;}
.ls25{letter-spacing:51.660000px;}
.ls24{letter-spacing:51.840000px;}
.ls2{letter-spacing:68.580000px;}
.ls7{letter-spacing:73.260000px;}
.ls20{letter-spacing:76.860000px;}
.ls13{letter-spacing:115.860000px;}
.ls12{letter-spacing:115.920000px;}
.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;}
}
.ws5{word-spacing:-88.795869px;}
.wsb{word-spacing:-84.240000px;}
.wsc{word-spacing:-21.351600px;}
.ws6{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.914800px;}
.wsa{word-spacing:-20.768400px;}
.ws8{word-spacing:-20.700000px;}
.ws9{word-spacing:-20.499600px;}
.ws1{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._2d{margin-left:-8.255520px;}
._2e{margin-left:-6.223440px;}
._13{margin-left:-5.054400px;}
._21{margin-left:-3.548880px;}
._14{margin-left:-2.263680px;}
._0{margin-left:-1.263600px;}
._1{width:1.779600px;}
._11{width:2.909040px;}
._1b{width:4.006080px;}
._5{width:5.137200px;}
._4{width:6.159600px;}
._15{width:7.494480px;}
._2f{width:8.680560px;}
._23{width:9.856080px;}
._1f{width:10.951200px;}
._2{width:12.864000px;}
._16{width:14.201760px;}
._25{width:15.210960px;}
._30{width:17.081520px;}
._1e{width:18.111600px;}
._f{width:19.886160px;}
._6{width:22.968000px;}
._7{width:24.672000px;}
._d{width:26.001600px;}
._32{width:27.156240px;}
._1d{width:28.771680px;}
._2c{width:29.905200px;}
._24{width:31.367280px;}
._20{width:32.916480px;}
._28{width:33.980640px;}
._10{width:35.043840px;}
._e{width:36.812880px;}
._22{width:37.854480px;}
._12{width:39.592800px;}
._3{width:41.328000px;}
._b{width:42.860400px;}
._a{width:43.920000px;}
._31{width:45.205200px;}
._38{width:46.679280px;}
._26{width:47.848320px;}
._27{width:48.943440px;}
._36{width:50.442480px;}
._1c{width:52.481520px;}
._39{width:53.492400px;}
._3d{width:54.996000px;}
._33{width:60.283920px;}
._19{width:62.600880px;}
._17{width:63.759120px;}
._18{width:65.232720px;}
._c{width:67.872000px;}
._37{width:71.098560px;}
._1a{width:73.794240px;}
._29{width:74.805120px;}
._8{width:75.816000px;}
._9{width:77.460000px;}
._3a{width:83.313360px;}
._3b{width:88.093680px;}
._3c{width:89.294400px;}
._34{width:102.520080px;}
._35{width:103.867920px;}
._2b{width:116.418960px;}
._2a{width:128.802960px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(7,57,118);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:28.296000px;}
.y2{bottom:31.176000px;}
.y54{bottom:70.236000px;}
.y8d{bottom:70.956000px;}
.y64{bottom:72.396000px;}
.y2f{bottom:91.296000px;}
.y8c{bottom:91.656000px;}
.y53{bottom:99.936000px;}
.y63{bottom:100.296000px;}
.y8b{bottom:112.356000px;}
.y2e{bottom:119.196000px;}
.y62{bottom:128.016000px;}
.y52{bottom:129.456000px;}
.y8a{bottom:133.056000px;}
.y2d{bottom:146.916000px;}
.y89{bottom:153.750000px;}
.y61{bottom:155.730000px;}
.y51{bottom:157.170000px;}
.y88{bottom:174.450000px;}
.y2c{bottom:174.630000px;}
.y60{bottom:183.450000px;}
.y50{bottom:184.890000px;}
.y87{bottom:195.150000px;}
.y2b{bottom:202.530000px;}
.y5f{bottom:211.350000px;}
.y4f{bottom:212.610000px;}
.y86{bottom:215.850000px;}
.y2a{bottom:230.250000px;}
.y85{bottom:236.550000px;}
.y5e{bottom:239.070000px;}
.y4e{bottom:240.510000px;}
.y84{bottom:257.250000px;}
.y29{bottom:257.970000px;}
.y5d{bottom:266.790000px;}
.y4d{bottom:270.210000px;}
.y83{bottom:277.950000px;}
.y28{bottom:285.735000px;}
.y5c{bottom:294.735000px;}
.y82{bottom:298.695000px;}
.y4c{bottom:299.595000px;}
.y27{bottom:313.635000px;}
.y81{bottom:319.395000px;}
.y5b{bottom:322.455000px;}
.y4b{bottom:327.315000px;}
.y80{bottom:340.095000px;}
.y26{bottom:341.355000px;}
.y5a{bottom:350.175000px;}
.y4a{bottom:355.215000px;}
.y7f{bottom:360.795000px;}
.y25{bottom:369.075000px;}
.y59{bottom:377.895000px;}
.y49{bottom:382.935000px;}
.y7e{bottom:383.295000px;}
.y24{bottom:396.795000px;}
.y7d{bottom:405.435000px;}
.y58{bottom:405.795000px;}
.y48{bottom:410.655000px;}
.y23{bottom:424.695000px;}
.y7c{bottom:433.155000px;}
.y57{bottom:433.515000px;}
.y47{bottom:438.375000px;}
.y22{bottom:452.415000px;}
.y7b{bottom:461.055000px;}
.y56{bottom:461.235000px;}
.y46{bottom:466.275000px;}
.y21{bottom:480.135000px;}
.y7a{bottom:488.775000px;}
.y55{bottom:493.275000px;}
.y45{bottom:493.995000px;}
.y20{bottom:508.035000px;}
.y79{bottom:516.495000px;}
.y44{bottom:521.715000px;}
.y1f{bottom:535.755000px;}
.y78{bottom:544.215000px;}
.y43{bottom:549.615000px;}
.y1e{bottom:559.335000px;}
.y77{bottom:572.145000px;}
.y42{bottom:577.365000px;}
.y1d{bottom:580.065000px;}
.y76{bottom:599.865000px;}
.y1c{bottom:600.765000px;}
.y41{bottom:605.085000px;}
.y1b{bottom:621.465000px;}
.y75{bottom:627.585000px;}
.y40{bottom:632.805000px;}
.y1a{bottom:642.165000px;}
.y74{bottom:655.485000px;}
.y3f{bottom:660.705000px;}
.y19{bottom:662.865000px;}
.y73{bottom:683.205000px;}
.y18{bottom:683.565000px;}
.y3e{bottom:688.425000px;}
.ya2{bottom:690.945000px;}
.y17{bottom:704.265000px;}
.y72{bottom:710.925000px;}
.ya1{bottom:714.525000px;}
.y3d{bottom:716.145000px;}
.y16{bottom:724.965000px;}
.ya0{bottom:735.225000px;}
.y71{bottom:738.645000px;}
.y3c{bottom:743.865000px;}
.y15{bottom:745.665000px;}
.y9f{bottom:755.925000px;}
.y14{bottom:766.365000px;}
.y70{bottom:766.545000px;}
.y3b{bottom:771.765000px;}
.y9e{bottom:776.625000px;}
.y6f{bottom:794.265000px;}
.y9d{bottom:797.325000px;}
.y3a{bottom:799.485000px;}
.y13{bottom:807.765000px;}
.y9c{bottom:818.025000px;}
.y6e{bottom:821.985000px;}
.y39{bottom:827.205000px;}
.y12{bottom:828.465000px;}
.y9b{bottom:838.725000px;}
.y11{bottom:849.210000px;}
.y6d{bottom:849.930000px;}
.y38{bottom:855.150000px;}
.y9a{bottom:859.470000px;}
.y10{bottom:869.910000px;}
.y99{bottom:880.170000px;}
.y37{bottom:882.870000px;}
.y6c{bottom:884.490000px;}
.yf{bottom:890.610000px;}
.y98{bottom:900.870000px;}
.y36{bottom:910.590000px;}
.ye{bottom:911.310000px;}
.y6b{bottom:919.050000px;}
.y97{bottom:921.570000px;}
.yd{bottom:932.010000px;}
.y35{bottom:938.310000px;}
.y96{bottom:942.270000px;}
.y6a{bottom:946.770000px;}
.yc{bottom:952.710000px;}
.y95{bottom:962.970000px;}
.y34{bottom:966.210000px;}
.yb{bottom:973.410000px;}
.y69{bottom:974.490000px;}
.y94{bottom:983.670000px;}
.y33{bottom:993.930000px;}
.ya{bottom:994.110000px;}
.y93{bottom:1004.370000px;}
.y68{bottom:1006.530000px;}
.y9{bottom:1014.810000px;}
.y32{bottom:1021.650000px;}
.y92{bottom:1025.070000px;}
.y67{bottom:1035.150000px;}
.y8{bottom:1035.510000px;}
.y91{bottom:1045.770000px;}
.y31{bottom:1049.550000px;}
.y7{bottom:1056.750000px;}
.y66{bottom:1062.870000px;}
.y90{bottom:1066.470000px;}
.y30{bottom:1077.270000px;}
.y6{bottom:1080.870000px;}
.y8f{bottom:1087.170000px;}
.y65{bottom:1098.150000px;}
.y5{bottom:1104.990000px;}
.y8e{bottom:1107.870000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h8{height:49.992188px;}
.h12{height:50.484375px;}
.h10{height:58.651172px;}
.h9{height:59.066719px;}
.hf{height:69.068271px;}
.hb{height:69.432187px;}
.h5{height:70.628906px;}
.h6{height:70.664062px;}
.h7{height:72.562500px;}
.ha{height:73.187220px;}
.hc{height:73.837580px;}
.h11{height:74.004654px;}
.he{height:76.959310px;}
.hd{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.996000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.x17{left:90.035987px;}
.x18{left:117.035987px;}
.x10{left:127.475987px;}
.x4{left:132.695987px;}
.x12{left:148.175987px;}
.x15{left:169.229987px;}
.x7{left:196.589987px;}
.x9{left:222.509987px;}
.x8{left:227.009987px;}
.xc{left:240.329987px;}
.x13{left:246.809987px;}
.x11{left:252.929987px;}
.x14{left:288.974987px;}
.xa{left:356.114987px;}
.xe{left:366.914987px;}
.x6{left:368.174987px;}
.xd{left:388.154987px;}
.xb{left:403.454987px;}
.x2{left:409.215000px;}
.x16{left:419.474987px;}
.x5{left:446.474987px;}
.xf{left:467.714987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.784000pt;}
.ls1c{letter-spacing:-0.498133pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.259200pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.129067pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.152960pt;}
.lse{letter-spacing:0.161280pt;}
.ls2a{letter-spacing:0.259200pt;}
.ls4{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.480000pt;}
.lsc{letter-spacing:2.400000pt;}
.ls27{letter-spacing:3.680000pt;}
.ls28{letter-spacing:4.320000pt;}
.ls2d{letter-spacing:4.960000pt;}
.ls34{letter-spacing:5.120000pt;}
.ls5{letter-spacing:5.600000pt;}
.ls35{letter-spacing:5.760000pt;}
.ls37{letter-spacing:7.040000pt;}
.ls30{letter-spacing:8.960000pt;}
.ls17{letter-spacing:9.440000pt;}
.lsd{letter-spacing:10.080000pt;}
.ls10{letter-spacing:10.720000pt;}
.ls1{letter-spacing:11.520000pt;}
.ls31{letter-spacing:12.160000pt;}
.ls32{letter-spacing:12.800000pt;}
.ls36{letter-spacing:14.720000pt;}
.ls22{letter-spacing:15.840000pt;}
.ls1f{letter-spacing:16.480000pt;}
.ls2b{letter-spacing:19.658667pt;}
.ls2c{letter-spacing:19.680000pt;}
.ls29{letter-spacing:20.320000pt;}
.ls2e{letter-spacing:21.600000pt;}
.ls1e{letter-spacing:21.706667pt;}
.ls21{letter-spacing:24.800000pt;}
.lsb{letter-spacing:25.440000pt;}
.ls16{letter-spacing:26.080000pt;}
.ls15{letter-spacing:26.720000pt;}
.ls18{letter-spacing:28.000000pt;}
.lsf{letter-spacing:29.920000pt;}
.ls2f{letter-spacing:30.208000pt;}
.ls3{letter-spacing:35.786667pt;}
.ls0{letter-spacing:38.400000pt;}
.ls26{letter-spacing:44.640000pt;}
.ls25{letter-spacing:45.920000pt;}
.ls24{letter-spacing:46.080000pt;}
.ls2{letter-spacing:60.960000pt;}
.ls7{letter-spacing:65.120000pt;}
.ls20{letter-spacing:68.320000pt;}
.ls13{letter-spacing:102.986667pt;}
.ls12{letter-spacing:103.040000pt;}
.ws5{word-spacing:-78.929661pt;}
.wsb{word-spacing:-74.880000pt;}
.wsc{word-spacing:-18.979200pt;}
.ws6{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.590933pt;}
.wsa{word-spacing:-18.460800pt;}
.ws8{word-spacing:-18.400000pt;}
.ws9{word-spacing:-18.221867pt;}
.ws1{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._2d{margin-left:-7.338240pt;}
._2e{margin-left:-5.531947pt;}
._13{margin-left:-4.492800pt;}
._21{margin-left:-3.154560pt;}
._14{margin-left:-2.012160pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.581867pt;}
._11{width:2.585813pt;}
._1b{width:3.560960pt;}
._5{width:4.566400pt;}
._4{width:5.475200pt;}
._15{width:6.661760pt;}
._2f{width:7.716053pt;}
._23{width:8.760960pt;}
._1f{width:9.734400pt;}
._2{width:11.434667pt;}
._16{width:12.623787pt;}
._25{width:13.520853pt;}
._30{width:15.183573pt;}
._1e{width:16.099200pt;}
._f{width:17.676587pt;}
._6{width:20.416000pt;}
._7{width:21.930667pt;}
._d{width:23.112533pt;}
._32{width:24.138880pt;}
._1d{width:25.574827pt;}
._2c{width:26.582400pt;}
._24{width:27.882027pt;}
._20{width:29.259093pt;}
._28{width:30.205013pt;}
._10{width:31.150080pt;}
._e{width:32.722560pt;}
._22{width:33.648427pt;}
._12{width:35.193600pt;}
._3{width:36.736000pt;}
._b{width:38.098133pt;}
._a{width:39.040000pt;}
._31{width:40.182400pt;}
._38{width:41.492693pt;}
._26{width:42.531840pt;}
._27{width:43.505280pt;}
._36{width:44.837760pt;}
._1c{width:46.650240pt;}
._39{width:47.548800pt;}
._3d{width:48.885333pt;}
._33{width:53.585707pt;}
._19{width:55.645227pt;}
._17{width:56.674773pt;}
._18{width:57.984640pt;}
._c{width:60.330667pt;}
._37{width:63.198720pt;}
._1a{width:65.594880pt;}
._29{width:66.493440pt;}
._8{width:67.392000pt;}
._9{width:68.853333pt;}
._3a{width:74.056320pt;}
._3b{width:78.305493pt;}
._3c{width:79.372800pt;}
._34{width:91.128960pt;}
._35{width:92.327040pt;}
._2b{width:103.483520pt;}
._2a{width:114.491520pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:25.152000pt;}
.y2{bottom:27.712000pt;}
.y54{bottom:62.432000pt;}
.y8d{bottom:63.072000pt;}
.y64{bottom:64.352000pt;}
.y2f{bottom:81.152000pt;}
.y8c{bottom:81.472000pt;}
.y53{bottom:88.832000pt;}
.y63{bottom:89.152000pt;}
.y8b{bottom:99.872000pt;}
.y2e{bottom:105.952000pt;}
.y62{bottom:113.792000pt;}
.y52{bottom:115.072000pt;}
.y8a{bottom:118.272000pt;}
.y2d{bottom:130.592000pt;}
.y89{bottom:136.666667pt;}
.y61{bottom:138.426667pt;}
.y51{bottom:139.706667pt;}
.y88{bottom:155.066667pt;}
.y2c{bottom:155.226667pt;}
.y60{bottom:163.066667pt;}
.y50{bottom:164.346667pt;}
.y87{bottom:173.466667pt;}
.y2b{bottom:180.026667pt;}
.y5f{bottom:187.866667pt;}
.y4f{bottom:188.986667pt;}
.y86{bottom:191.866667pt;}
.y2a{bottom:204.666667pt;}
.y85{bottom:210.266667pt;}
.y5e{bottom:212.506667pt;}
.y4e{bottom:213.786667pt;}
.y84{bottom:228.666667pt;}
.y29{bottom:229.306667pt;}
.y5d{bottom:237.146667pt;}
.y4d{bottom:240.186667pt;}
.y83{bottom:247.066667pt;}
.y28{bottom:253.986667pt;}
.y5c{bottom:261.986667pt;}
.y82{bottom:265.506667pt;}
.y4c{bottom:266.306667pt;}
.y27{bottom:278.786667pt;}
.y81{bottom:283.906667pt;}
.y5b{bottom:286.626667pt;}
.y4b{bottom:290.946667pt;}
.y80{bottom:302.306667pt;}
.y26{bottom:303.426667pt;}
.y5a{bottom:311.266667pt;}
.y4a{bottom:315.746667pt;}
.y7f{bottom:320.706667pt;}
.y25{bottom:328.066667pt;}
.y59{bottom:335.906667pt;}
.y49{bottom:340.386667pt;}
.y7e{bottom:340.706667pt;}
.y24{bottom:352.706667pt;}
.y7d{bottom:360.386667pt;}
.y58{bottom:360.706667pt;}
.y48{bottom:365.026667pt;}
.y23{bottom:377.506667pt;}
.y7c{bottom:385.026667pt;}
.y57{bottom:385.346667pt;}
.y47{bottom:389.666667pt;}
.y22{bottom:402.146667pt;}
.y7b{bottom:409.826667pt;}
.y56{bottom:409.986667pt;}
.y46{bottom:414.466667pt;}
.y21{bottom:426.786667pt;}
.y7a{bottom:434.466667pt;}
.y55{bottom:438.466667pt;}
.y45{bottom:439.106667pt;}
.y20{bottom:451.586667pt;}
.y79{bottom:459.106667pt;}
.y44{bottom:463.746667pt;}
.y1f{bottom:476.226667pt;}
.y78{bottom:483.746667pt;}
.y43{bottom:488.546667pt;}
.y1e{bottom:497.186667pt;}
.y77{bottom:508.573333pt;}
.y42{bottom:513.213333pt;}
.y1d{bottom:515.613333pt;}
.y76{bottom:533.213333pt;}
.y1c{bottom:534.013333pt;}
.y41{bottom:537.853333pt;}
.y1b{bottom:552.413333pt;}
.y75{bottom:557.853333pt;}
.y40{bottom:562.493333pt;}
.y1a{bottom:570.813333pt;}
.y74{bottom:582.653333pt;}
.y3f{bottom:587.293333pt;}
.y19{bottom:589.213333pt;}
.y73{bottom:607.293333pt;}
.y18{bottom:607.613333pt;}
.y3e{bottom:611.933333pt;}
.ya2{bottom:614.173333pt;}
.y17{bottom:626.013333pt;}
.y72{bottom:631.933333pt;}
.ya1{bottom:635.133333pt;}
.y3d{bottom:636.573333pt;}
.y16{bottom:644.413333pt;}
.ya0{bottom:653.533333pt;}
.y71{bottom:656.573333pt;}
.y3c{bottom:661.213333pt;}
.y15{bottom:662.813333pt;}
.y9f{bottom:671.933333pt;}
.y14{bottom:681.213333pt;}
.y70{bottom:681.373333pt;}
.y3b{bottom:686.013333pt;}
.y9e{bottom:690.333333pt;}
.y6f{bottom:706.013333pt;}
.y9d{bottom:708.733333pt;}
.y3a{bottom:710.653333pt;}
.y13{bottom:718.013333pt;}
.y9c{bottom:727.133333pt;}
.y6e{bottom:730.653333pt;}
.y39{bottom:735.293333pt;}
.y12{bottom:736.413333pt;}
.y9b{bottom:745.533333pt;}
.y11{bottom:754.853333pt;}
.y6d{bottom:755.493333pt;}
.y38{bottom:760.133333pt;}
.y9a{bottom:763.973333pt;}
.y10{bottom:773.253333pt;}
.y99{bottom:782.373333pt;}
.y37{bottom:784.773333pt;}
.y6c{bottom:786.213333pt;}
.yf{bottom:791.653333pt;}
.y98{bottom:800.773333pt;}
.y36{bottom:809.413333pt;}
.ye{bottom:810.053333pt;}
.y6b{bottom:816.933333pt;}
.y97{bottom:819.173333pt;}
.yd{bottom:828.453333pt;}
.y35{bottom:834.053333pt;}
.y96{bottom:837.573333pt;}
.y6a{bottom:841.573333pt;}
.yc{bottom:846.853333pt;}
.y95{bottom:855.973333pt;}
.y34{bottom:858.853333pt;}
.yb{bottom:865.253333pt;}
.y69{bottom:866.213333pt;}
.y94{bottom:874.373333pt;}
.y33{bottom:883.493333pt;}
.ya{bottom:883.653333pt;}
.y93{bottom:892.773333pt;}
.y68{bottom:894.693333pt;}
.y9{bottom:902.053333pt;}
.y32{bottom:908.133333pt;}
.y92{bottom:911.173333pt;}
.y67{bottom:920.133333pt;}
.y8{bottom:920.453333pt;}
.y91{bottom:929.573333pt;}
.y31{bottom:932.933333pt;}
.y7{bottom:939.333333pt;}
.y66{bottom:944.773333pt;}
.y90{bottom:947.973333pt;}
.y30{bottom:957.573333pt;}
.y6{bottom:960.773333pt;}
.y8f{bottom:966.373333pt;}
.y65{bottom:976.133333pt;}
.y5{bottom:982.213333pt;}
.y8e{bottom:984.773333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h8{height:44.437500pt;}
.h12{height:44.875000pt;}
.h10{height:52.134375pt;}
.h9{height:52.503750pt;}
.hf{height:61.394019pt;}
.hb{height:61.717500pt;}
.h5{height:62.781250pt;}
.h6{height:62.812500pt;}
.h7{height:64.500000pt;}
.ha{height:65.055307pt;}
.hc{height:65.633405pt;}
.h11{height:65.781915pt;}
.he{height:68.408276pt;}
.hd{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.552000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.x17{left:80.031988pt;}
.x18{left:104.031988pt;}
.x10{left:113.311988pt;}
.x4{left:117.951988pt;}
.x12{left:131.711988pt;}
.x15{left:150.426655pt;}
.x7{left:174.746655pt;}
.x9{left:197.786655pt;}
.x8{left:201.786655pt;}
.xc{left:213.626655pt;}
.x13{left:219.386655pt;}
.x11{left:224.826655pt;}
.x14{left:256.866655pt;}
.xa{left:316.546655pt;}
.xe{left:326.146655pt;}
.x6{left:327.266655pt;}
.xd{left:345.026655pt;}
.xb{left:358.626655pt;}
.x2{left:363.746667pt;}
.x16{left:372.866655pt;}
.x5{left:396.866655pt;}
.xf{left:415.746655pt;}
}




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