
    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_4de2f18a5646c19101b1a6db.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_78c6d06da6a815f8ff95bdd0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_bae87f2666ba9b68c2a7345c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_92613d095aabe9f462617ac5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_740f33845257763d13bd2ff4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_338bc7ed668d0073f2a433f1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_558373c4ed46bd5a6bb1146a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_4fb0f5a65ed74316765a0a88.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_aec3ae668ec6ce21eaf83317.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_33a0b6b56d5aa0d391341d96.woff')format("woff");}.ffa{font-family:ffa;line-height:1.097168;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_28015bf1d29958e2f36ce4e5.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_71fa10f4bdcdb4220ca64aa0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.964355;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_3e6ee690a59f7aaf474ebeb5.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172363;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_51c1cf5c758d3186931bdd1d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.372070;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.660000px;}
.v1{vertical-align:30.000000px;}
.ls37{letter-spacing:-13.740000px;}
.ls46{letter-spacing:-12.900000px;}
.ls45{letter-spacing:-7.860000px;}
.ls28{letter-spacing:-5.700000px;}
.ls15{letter-spacing:-3.600000px;}
.ls4a{letter-spacing:-2.952000px;}
.ls1d{letter-spacing:-2.400000px;}
.lsd{letter-spacing:-1.752000px;}
.ls48{letter-spacing:-1.572000px;}
.ls7{letter-spacing:-1.440000px;}
.ls49{letter-spacing:-1.296000px;}
.ls9{letter-spacing:-1.200000px;}
.ls14{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.552000px;}
.lsf{letter-spacing:-0.516000px;}
.ls2c{letter-spacing:-0.510000px;}
.ls1e{letter-spacing:-0.372000px;}
.ls38{letter-spacing:-0.348000px;}
.ls44{letter-spacing:-0.276000px;}
.ls5{letter-spacing:-0.240000px;}
.ls42{letter-spacing:-0.096000px;}
.ls4{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.060000px;}
.ls1f{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.300000px;}
.ls36{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.372000px;}
.ls29{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.480000px;}
.ls40{letter-spacing:0.516000px;}
.ls27{letter-spacing:0.528000px;}
.ls1{letter-spacing:0.600000px;}
.ls22{letter-spacing:0.612000px;}
.ls2e{letter-spacing:0.648000px;}
.ls41{letter-spacing:0.660000px;}
.ls32{letter-spacing:0.690000px;}
.ls2f{letter-spacing:0.822000px;}
.ls2d{letter-spacing:0.828000px;}
.ls3e{letter-spacing:0.882000px;}
.ls3a{letter-spacing:1.044000px;}
.ls2a{letter-spacing:1.104000px;}
.ls24{letter-spacing:1.200000px;}
.ls2b{letter-spacing:1.500000px;}
.lsa{letter-spacing:1.800000px;}
.ls33{letter-spacing:2.700000px;}
.ls13{letter-spacing:3.000000px;}
.ls18{letter-spacing:4.200000px;}
.ls39{letter-spacing:5.400000px;}
.ls43{letter-spacing:5.700000px;}
.ls1a{letter-spacing:6.600000px;}
.ls17{letter-spacing:7.800000px;}
.ls11{letter-spacing:12.600000px;}
.ls1c{letter-spacing:13.800000px;}
.ls3d{letter-spacing:14.640000px;}
.ls1b{letter-spacing:15.000000px;}
.ls16{letter-spacing:15.120000px;}
.ls31{letter-spacing:15.840000px;}
.ls3f{letter-spacing:15.900000px;}
.lsb{letter-spacing:16.200000px;}
.ls34{letter-spacing:19.500000px;}
.ls20{letter-spacing:19.740000px;}
.ls19{letter-spacing:19.920000px;}
.ls35{letter-spacing:20.700000px;}
.ls21{letter-spacing:21.180000px;}
.ls30{letter-spacing:23.100000px;}
.ls12{letter-spacing:28.200000px;}
.ls3b{letter-spacing:36.300000px;}
.ls10{letter-spacing:36.600000px;}
.ls3c{letter-spacing:39.900000px;}
.ls3{letter-spacing:47.580000px;}
.lsc{letter-spacing:120.600000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-24.480000px;}
.ws1{word-spacing:-24.240000px;}
.ws2{word-spacing:-23.760000px;}
.ws4{word-spacing:-23.040000px;}
.ws6{word-spacing:-22.800000px;}
.wse{word-spacing:-22.200000px;}
.ws15{word-spacing:-21.828000px;}
.ws16{word-spacing:-21.648000px;}
.ws1a{word-spacing:-21.600000px;}
.wsc{word-spacing:-21.372000px;}
.ws7{word-spacing:-21.000000px;}
.ws1c{word-spacing:-20.904000px;}
.ws1d{word-spacing:-20.724000px;}
.wsd{word-spacing:-20.628000px;}
.wsf{word-spacing:-20.448000px;}
.ws8{word-spacing:-20.352000px;}
.wsb{word-spacing:-20.172000px;}
.ws9{word-spacing:-19.800000px;}
.ws21{word-spacing:-19.704000px;}
.ws18{word-spacing:-19.248000px;}
.ws17{word-spacing:-18.600000px;}
.ws0{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.100000px;}
.ws1b{word-spacing:-17.016000px;}
.ws11{word-spacing:-16.878000px;}
.ws10{word-spacing:-16.500000px;}
.ws19{word-spacing:-16.152000px;}
.ws14{word-spacing:-15.990000px;}
.ws13{word-spacing:-15.900000px;}
.ws1e{word-spacing:-14.100000px;}
.ws20{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.140000px;}
.wsa{word-spacing:0.000000px;}
._37{margin-left:-18.564000px;}
._30{margin-left:-15.036000px;}
._36{margin-left:-10.758000px;}
._45{margin-left:-9.360000px;}
._31{margin-left:-8.238000px;}
._2f{margin-left:-6.888000px;}
._17{margin-left:-4.938000px;}
._c{margin-left:-3.792000px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.152000px;}
._2{width:1.296000px;}
._1{width:2.688000px;}
._13{width:4.026000px;}
._35{width:5.028000px;}
._10{width:6.150000px;}
._f{width:7.374000px;}
._1f{width:8.808000px;}
._20{width:9.834000px;}
._1a{width:11.118000px;}
._5{width:13.080000px;}
._1c{width:14.364000px;}
._1b{width:15.540000px;}
._e{width:17.160000px;}
._d{width:18.168000px;}
._2d{width:19.830000px;}
._38{width:21.204000px;}
._9{width:22.824000px;}
._a{width:24.624000px;}
._b{width:25.746000px;}
._11{width:27.456000px;}
._12{width:28.884000px;}
._29{width:30.900000px;}
._28{width:31.938000px;}
._14{width:33.126000px;}
._15{width:34.800000px;}
._21{width:36.096000px;}
._22{width:37.344000px;}
._27{width:38.526000px;}
._3c{width:39.540000px;}
._2a{width:40.722000px;}
._2b{width:41.922000px;}
._3b{width:43.218000px;}
._2c{width:44.406000px;}
._16{width:45.486000px;}
._6{width:46.872000px;}
._7{width:48.324000px;}
._8{width:49.524000px;}
._26{width:51.006000px;}
._32{width:53.148000px;}
._1d{width:54.654000px;}
._1e{width:56.250000px;}
._33{width:57.336000px;}
._2e{width:58.692000px;}
._19{width:59.928000px;}
._18{width:61.296000px;}
._3a{width:65.622000px;}
._39{width:66.972000px;}
._3d{width:68.604000px;}
._3e{width:69.642000px;}
._34{width:73.224000px;}
._42{width:79.440000px;}
._41{width:81.120000px;}
._3f{width:87.504000px;}
._40{width:88.704000px;}
._43{width:90.006000px;}
._44{width:92.052000px;}
._23{width:119.994000px;}
._25{width:121.296000px;}
._24{width:122.412000px;}
._4{width:1422.174000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.037500px;}
.y4{bottom:92.137500px;}
.y46{bottom:120.937500px;}
.y45{bottom:126.337500px;}
.y3d{bottom:134.137500px;}
.y7b{bottom:138.337500px;}
.y3f{bottom:138.937500px;}
.y3c{bottom:139.537500px;}
.y44{bottom:139.837500px;}
.y43{bottom:145.237500px;}
.y50{bottom:153.045000px;}
.y54{bottom:154.530000px;}
.y68{bottom:158.730000px;}
.y53{bottom:159.930000px;}
.y3b{bottom:168.675000px;}
.y4f{bottom:172.275000px;}
.y42{bottom:174.375000px;}
.y6e{bottom:174.675000px;}
.y20{bottom:175.275000px;}
.y4e{bottom:177.675000px;}
.y67{bottom:177.975000px;}
.y66{bottom:183.375000px;}
.y59{bottom:186.675000px;}
.y52{bottom:189.075000px;}
.y6d{bottom:195.075000px;}
.y65{bottom:196.875000px;}
.y6c{bottom:200.475000px;}
.y4d{bottom:204.375000px;}
.y58{bottom:207.075000px;}
.y82{bottom:210.975000px;}
.y1f{bottom:211.575000px;}
.y57{bottom:212.475000px;}
.y6b{bottom:213.975000px;}
.y64{bottom:215.775000px;}
.y4c{bottom:224.775000px;}
.y4b{bottom:230.175000px;}
.y3a{bottom:232.575000px;}
.y6a{bottom:232.875000px;}
.y63{bottom:234.675000px;}
.y56{bottom:241.575000px;}
.y81{bottom:246.975000px;}
.y1e{bottom:247.575000px;}
.y62{bottom:253.875000px;}
.y4a{bottom:259.275000px;}
.y69{bottom:267.375000px;}
.y39{bottom:268.875000px;}
.y61{bottom:273.375000px;}
.y80{bottom:283.275000px;}
.y1d{bottom:283.875000px;}
.y60{bottom:293.475000px;}
.y5f{bottom:299.475000px;}
.y38{bottom:305.175000px;}
.y7a{bottom:319.575000px;}
.y1c{bottom:320.175000px;}
.y5e{bottom:328.575000px;}
.y37{bottom:341.505000px;}
.y79{bottom:355.920000px;}
.y1b{bottom:356.505000px;}
.y41{bottom:364.005000px;}
.y36{bottom:377.505000px;}
.y73{bottom:391.905000px;}
.y1a{bottom:392.505000px;}
.y5d{bottom:400.005000px;}
.y35{bottom:413.820000px;}
.y72{bottom:428.205000px;}
.y19{bottom:428.820000px;}
.y55{bottom:436.320000px;}
.y34{bottom:450.120000px;}
.y71{bottom:464.505000px;}
.y18{bottom:465.120000px;}
.y40{bottom:472.605000px;}
.y33{bottom:486.405000px;}
.y70{bottom:500.820000px;}
.y17{bottom:501.405000px;}
.y32{bottom:522.450000px;}
.y78{bottom:536.850000px;}
.y16{bottom:537.450000px;}
.y31{bottom:558.750000px;}
.y77{bottom:573.150000px;}
.y15{bottom:573.750000px;}
.y49{bottom:581.250000px;}
.y30{bottom:595.050000px;}
.y76{bottom:609.450000px;}
.y14{bottom:610.050000px;}
.y83{bottom:613.350000px;}
.y5c{bottom:617.550000px;}
.y2f{bottom:631.350000px;}
.y75{bottom:645.750000px;}
.y13{bottom:646.350000px;}
.y51{bottom:653.850000px;}
.y2e{bottom:667.350000px;}
.y74{bottom:681.780000px;}
.y12{bottom:682.380000px;}
.y5b{bottom:689.880000px;}
.y2d{bottom:703.695000px;}
.y7f{bottom:718.080000px;}
.y11{bottom:718.695000px;}
.y2c{bottom:739.980000px;}
.y7e{bottom:754.380000px;}
.y10{bottom:754.980000px;}
.y2b{bottom:776.295000px;}
.y6f{bottom:790.695000px;}
.yf{bottom:791.295000px;}
.y2a{bottom:812.295000px;}
.y7d{bottom:826.695000px;}
.ye{bottom:827.295000px;}
.y29{bottom:848.625000px;}
.y7c{bottom:863.025000px;}
.yd{bottom:863.625000px;}
.y28{bottom:884.925000px;}
.yc{bottom:899.325000px;}
.y3e{bottom:899.925000px;}
.y48{bottom:907.425000px;}
.yb{bottom:935.625000px;}
.y27{bottom:936.225000px;}
.y5a{bottom:943.725000px;}
.ya{bottom:971.625000px;}
.y25{bottom:972.225000px;}
.y26{bottom:979.725000px;}
.y9{bottom:1007.925000px;}
.y24{bottom:1008.525000px;}
.y8{bottom:1044.255000px;}
.y23{bottom:1044.870000px;}
.y7{bottom:1080.255000px;}
.y22{bottom:1080.870000px;}
.y47{bottom:1088.370000px;}
.y6{bottom:1116.570000px;}
.y21{bottom:1117.155000px;}
.y3{bottom:1154.370000px;}
.y2{bottom:1190.100000px;}
.y1{bottom:1226.400000px;}
.hc{height:41.220703px;}
.hf{height:41.774414px;}
.h4{height:47.340820px;}
.ha{height:52.998047px;}
.h5{height:55.623047px;}
.he{height:58.168945px;}
.h12{height:60.662109px;}
.hd{height:64.775391px;}
.hb{height:65.645508px;}
.h2{height:68.859375px;}
.h3{height:72.562500px;}
.h7{height:74.033203px;}
.h13{height:77.592773px;}
.h10{height:82.400391px;}
.h8{height:82.441406px;}
.h14{height:82.998047px;}
.h11{height:83.794922px;}
.h6{height:84.656250px;}
.h9{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:95.400000px;}
.x11{left:100.837500px;}
.x21{left:106.237500px;}
.x29{left:108.937500px;}
.x3{left:127.537500px;}
.x2a{left:145.537500px;}
.x1{left:157.830000px;}
.x7{left:166.845000px;}
.x5{left:168.330000px;}
.xd{left:170.130000px;}
.x6{left:185.475000px;}
.x8{left:207.375000px;}
.x4{left:213.675000px;}
.xb{left:223.575000px;}
.x1c{left:230.775000px;}
.x1f{left:297.982500px;}
.x20{left:311.820000px;}
.xa{left:326.520000px;}
.x22{left:330.382500px;}
.xf{left:343.620000px;}
.xe{left:417.412500px;}
.x16{left:421.612500px;}
.xc{left:424.950000px;}
.x17{left:428.550000px;}
.x9{left:499.650000px;}
.x23{left:560.557500px;}
.x24{left:574.380000px;}
.x2{left:614.880000px;}
.x12{left:619.942500px;}
.x13{left:626.880000px;}
.x27{left:754.987500px;}
.x28{left:768.825000px;}
.x25{left:774.217500px;}
.x14{left:780.217500px;}
.x18{left:782.032500px;}
.x15{left:787.170000px;}
.x19{left:788.955000px;}
.x2b{left:802.455000px;}
.x26{left:809.617500px;}
.x1d{left:815.917500px;}
.x1a{left:817.417500px;}
.x1e{left:822.870000px;}
.x1b{left:824.370000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.586667pt;}
.v1{vertical-align:26.666667pt;}
.ls37{letter-spacing:-12.213333pt;}
.ls46{letter-spacing:-11.466667pt;}
.ls45{letter-spacing:-6.986667pt;}
.ls28{letter-spacing:-5.066667pt;}
.ls15{letter-spacing:-3.200000pt;}
.ls4a{letter-spacing:-2.624000pt;}
.ls1d{letter-spacing:-2.133333pt;}
.lsd{letter-spacing:-1.557333pt;}
.ls48{letter-spacing:-1.397333pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls49{letter-spacing:-1.152000pt;}
.ls9{letter-spacing:-1.066667pt;}
.ls14{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.490667pt;}
.lsf{letter-spacing:-0.458667pt;}
.ls2c{letter-spacing:-0.453333pt;}
.ls1e{letter-spacing:-0.330667pt;}
.ls38{letter-spacing:-0.309333pt;}
.ls44{letter-spacing:-0.245333pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls42{letter-spacing:-0.085333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.053333pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.266667pt;}
.ls36{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.330667pt;}
.ls29{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.426667pt;}
.ls40{letter-spacing:0.458667pt;}
.ls27{letter-spacing:0.469333pt;}
.ls1{letter-spacing:0.533333pt;}
.ls22{letter-spacing:0.544000pt;}
.ls2e{letter-spacing:0.576000pt;}
.ls41{letter-spacing:0.586667pt;}
.ls32{letter-spacing:0.613333pt;}
.ls2f{letter-spacing:0.730667pt;}
.ls2d{letter-spacing:0.736000pt;}
.ls3e{letter-spacing:0.784000pt;}
.ls3a{letter-spacing:0.928000pt;}
.ls2a{letter-spacing:0.981333pt;}
.ls24{letter-spacing:1.066667pt;}
.ls2b{letter-spacing:1.333333pt;}
.lsa{letter-spacing:1.600000pt;}
.ls33{letter-spacing:2.400000pt;}
.ls13{letter-spacing:2.666667pt;}
.ls18{letter-spacing:3.733333pt;}
.ls39{letter-spacing:4.800000pt;}
.ls43{letter-spacing:5.066667pt;}
.ls1a{letter-spacing:5.866667pt;}
.ls17{letter-spacing:6.933333pt;}
.ls11{letter-spacing:11.200000pt;}
.ls1c{letter-spacing:12.266667pt;}
.ls3d{letter-spacing:13.013333pt;}
.ls1b{letter-spacing:13.333333pt;}
.ls16{letter-spacing:13.440000pt;}
.ls31{letter-spacing:14.080000pt;}
.ls3f{letter-spacing:14.133333pt;}
.lsb{letter-spacing:14.400000pt;}
.ls34{letter-spacing:17.333333pt;}
.ls20{letter-spacing:17.546667pt;}
.ls19{letter-spacing:17.706667pt;}
.ls35{letter-spacing:18.400000pt;}
.ls21{letter-spacing:18.826667pt;}
.ls30{letter-spacing:20.533333pt;}
.ls12{letter-spacing:25.066667pt;}
.ls3b{letter-spacing:32.266667pt;}
.ls10{letter-spacing:32.533333pt;}
.ls3c{letter-spacing:35.466667pt;}
.ls3{letter-spacing:42.293333pt;}
.lsc{letter-spacing:107.200000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-21.760000pt;}
.ws1{word-spacing:-21.546667pt;}
.ws2{word-spacing:-21.120000pt;}
.ws4{word-spacing:-20.480000pt;}
.ws6{word-spacing:-20.266667pt;}
.wse{word-spacing:-19.733333pt;}
.ws15{word-spacing:-19.402667pt;}
.ws16{word-spacing:-19.242667pt;}
.ws1a{word-spacing:-19.200000pt;}
.wsc{word-spacing:-18.997333pt;}
.ws7{word-spacing:-18.666667pt;}
.ws1c{word-spacing:-18.581333pt;}
.ws1d{word-spacing:-18.421333pt;}
.wsd{word-spacing:-18.336000pt;}
.wsf{word-spacing:-18.176000pt;}
.ws8{word-spacing:-18.090667pt;}
.wsb{word-spacing:-17.930667pt;}
.ws9{word-spacing:-17.600000pt;}
.ws21{word-spacing:-17.514667pt;}
.ws18{word-spacing:-17.109333pt;}
.ws17{word-spacing:-16.533333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.200000pt;}
.ws1b{word-spacing:-15.125333pt;}
.ws11{word-spacing:-15.002667pt;}
.ws10{word-spacing:-14.666667pt;}
.ws19{word-spacing:-14.357333pt;}
.ws14{word-spacing:-14.213333pt;}
.ws13{word-spacing:-14.133333pt;}
.ws1e{word-spacing:-12.533333pt;}
.ws20{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.680000pt;}
.wsa{word-spacing:0.000000pt;}
._37{margin-left:-16.501333pt;}
._30{margin-left:-13.365333pt;}
._36{margin-left:-9.562667pt;}
._45{margin-left:-8.320000pt;}
._31{margin-left:-7.322667pt;}
._2f{margin-left:-6.122667pt;}
._17{margin-left:-4.389333pt;}
._c{margin-left:-3.370667pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.152000pt;}
._1{width:2.389333pt;}
._13{width:3.578667pt;}
._35{width:4.469333pt;}
._10{width:5.466667pt;}
._f{width:6.554667pt;}
._1f{width:7.829333pt;}
._20{width:8.741333pt;}
._1a{width:9.882667pt;}
._5{width:11.626667pt;}
._1c{width:12.768000pt;}
._1b{width:13.813333pt;}
._e{width:15.253333pt;}
._d{width:16.149333pt;}
._2d{width:17.626667pt;}
._38{width:18.848000pt;}
._9{width:20.288000pt;}
._a{width:21.888000pt;}
._b{width:22.885333pt;}
._11{width:24.405333pt;}
._12{width:25.674667pt;}
._29{width:27.466667pt;}
._28{width:28.389333pt;}
._14{width:29.445333pt;}
._15{width:30.933333pt;}
._21{width:32.085333pt;}
._22{width:33.194667pt;}
._27{width:34.245333pt;}
._3c{width:35.146667pt;}
._2a{width:36.197333pt;}
._2b{width:37.264000pt;}
._3b{width:38.416000pt;}
._2c{width:39.472000pt;}
._16{width:40.432000pt;}
._6{width:41.664000pt;}
._7{width:42.954667pt;}
._8{width:44.021333pt;}
._26{width:45.338667pt;}
._32{width:47.242667pt;}
._1d{width:48.581333pt;}
._1e{width:50.000000pt;}
._33{width:50.965333pt;}
._2e{width:52.170667pt;}
._19{width:53.269333pt;}
._18{width:54.485333pt;}
._3a{width:58.330667pt;}
._39{width:59.530667pt;}
._3d{width:60.981333pt;}
._3e{width:61.904000pt;}
._34{width:65.088000pt;}
._42{width:70.613333pt;}
._41{width:72.106667pt;}
._3f{width:77.781333pt;}
._40{width:78.848000pt;}
._43{width:80.005333pt;}
._44{width:81.824000pt;}
._23{width:106.661333pt;}
._25{width:107.818667pt;}
._24{width:108.810667pt;}
._4{width:1264.154667pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.700000pt;}
.y4{bottom:81.900000pt;}
.y46{bottom:107.500000pt;}
.y45{bottom:112.300000pt;}
.y3d{bottom:119.233333pt;}
.y7b{bottom:122.966667pt;}
.y3f{bottom:123.500000pt;}
.y3c{bottom:124.033333pt;}
.y44{bottom:124.300000pt;}
.y43{bottom:129.100000pt;}
.y50{bottom:136.040000pt;}
.y54{bottom:137.360000pt;}
.y68{bottom:141.093333pt;}
.y53{bottom:142.160000pt;}
.y3b{bottom:149.933333pt;}
.y4f{bottom:153.133333pt;}
.y42{bottom:155.000000pt;}
.y6e{bottom:155.266667pt;}
.y20{bottom:155.800000pt;}
.y4e{bottom:157.933333pt;}
.y67{bottom:158.200000pt;}
.y66{bottom:163.000000pt;}
.y59{bottom:165.933333pt;}
.y52{bottom:168.066667pt;}
.y6d{bottom:173.400000pt;}
.y65{bottom:175.000000pt;}
.y6c{bottom:178.200000pt;}
.y4d{bottom:181.666667pt;}
.y58{bottom:184.066667pt;}
.y82{bottom:187.533333pt;}
.y1f{bottom:188.066667pt;}
.y57{bottom:188.866667pt;}
.y6b{bottom:190.200000pt;}
.y64{bottom:191.800000pt;}
.y4c{bottom:199.800000pt;}
.y4b{bottom:204.600000pt;}
.y3a{bottom:206.733333pt;}
.y6a{bottom:207.000000pt;}
.y63{bottom:208.600000pt;}
.y56{bottom:214.733333pt;}
.y81{bottom:219.533333pt;}
.y1e{bottom:220.066667pt;}
.y62{bottom:225.666667pt;}
.y4a{bottom:230.466667pt;}
.y69{bottom:237.666667pt;}
.y39{bottom:239.000000pt;}
.y61{bottom:243.000000pt;}
.y80{bottom:251.800000pt;}
.y1d{bottom:252.333333pt;}
.y60{bottom:260.866667pt;}
.y5f{bottom:266.200000pt;}
.y38{bottom:271.266667pt;}
.y7a{bottom:284.066667pt;}
.y1c{bottom:284.600000pt;}
.y5e{bottom:292.066667pt;}
.y37{bottom:303.560000pt;}
.y79{bottom:316.373333pt;}
.y1b{bottom:316.893333pt;}
.y41{bottom:323.560000pt;}
.y36{bottom:335.560000pt;}
.y73{bottom:348.360000pt;}
.y1a{bottom:348.893333pt;}
.y5d{bottom:355.560000pt;}
.y35{bottom:367.840000pt;}
.y72{bottom:380.626667pt;}
.y19{bottom:381.173333pt;}
.y55{bottom:387.840000pt;}
.y34{bottom:400.106667pt;}
.y71{bottom:412.893333pt;}
.y18{bottom:413.440000pt;}
.y40{bottom:420.093333pt;}
.y33{bottom:432.360000pt;}
.y70{bottom:445.173333pt;}
.y17{bottom:445.693333pt;}
.y32{bottom:464.400000pt;}
.y78{bottom:477.200000pt;}
.y16{bottom:477.733333pt;}
.y31{bottom:496.666667pt;}
.y77{bottom:509.466667pt;}
.y15{bottom:510.000000pt;}
.y49{bottom:516.666667pt;}
.y30{bottom:528.933333pt;}
.y76{bottom:541.733333pt;}
.y14{bottom:542.266667pt;}
.y83{bottom:545.200000pt;}
.y5c{bottom:548.933333pt;}
.y2f{bottom:561.200000pt;}
.y75{bottom:574.000000pt;}
.y13{bottom:574.533333pt;}
.y51{bottom:581.200000pt;}
.y2e{bottom:593.200000pt;}
.y74{bottom:606.026667pt;}
.y12{bottom:606.560000pt;}
.y5b{bottom:613.226667pt;}
.y2d{bottom:625.506667pt;}
.y7f{bottom:638.293333pt;}
.y11{bottom:638.840000pt;}
.y2c{bottom:657.760000pt;}
.y7e{bottom:670.560000pt;}
.y10{bottom:671.093333pt;}
.y2b{bottom:690.040000pt;}
.y6f{bottom:702.840000pt;}
.yf{bottom:703.373333pt;}
.y2a{bottom:722.040000pt;}
.y7d{bottom:734.840000pt;}
.ye{bottom:735.373333pt;}
.y29{bottom:754.333333pt;}
.y7c{bottom:767.133333pt;}
.yd{bottom:767.666667pt;}
.y28{bottom:786.600000pt;}
.yc{bottom:799.400000pt;}
.y3e{bottom:799.933333pt;}
.y48{bottom:806.600000pt;}
.yb{bottom:831.666667pt;}
.y27{bottom:832.200000pt;}
.y5a{bottom:838.866667pt;}
.ya{bottom:863.666667pt;}
.y25{bottom:864.200000pt;}
.y26{bottom:870.866667pt;}
.y9{bottom:895.933333pt;}
.y24{bottom:896.466667pt;}
.y8{bottom:928.226667pt;}
.y23{bottom:928.773333pt;}
.y7{bottom:960.226667pt;}
.y22{bottom:960.773333pt;}
.y47{bottom:967.440000pt;}
.y6{bottom:992.506667pt;}
.y21{bottom:993.026667pt;}
.y3{bottom:1026.106667pt;}
.y2{bottom:1057.866667pt;}
.y1{bottom:1090.133333pt;}
.hc{height:36.640625pt;}
.hf{height:37.132812pt;}
.h4{height:42.080729pt;}
.ha{height:47.109375pt;}
.h5{height:49.442708pt;}
.he{height:51.705729pt;}
.h12{height:53.921875pt;}
.hd{height:57.578125pt;}
.hb{height:58.351562pt;}
.h2{height:61.208333pt;}
.h3{height:64.500000pt;}
.h7{height:65.807292pt;}
.h13{height:68.971354pt;}
.h10{height:73.244792pt;}
.h8{height:73.281250pt;}
.h14{height:73.776042pt;}
.h11{height:74.484375pt;}
.h6{height:75.250000pt;}
.h9{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:84.800000pt;}
.x11{left:89.633333pt;}
.x21{left:94.433333pt;}
.x29{left:96.833333pt;}
.x3{left:113.366667pt;}
.x2a{left:129.366667pt;}
.x1{left:140.293333pt;}
.x7{left:148.306667pt;}
.x5{left:149.626667pt;}
.xd{left:151.226667pt;}
.x6{left:164.866667pt;}
.x8{left:184.333333pt;}
.x4{left:189.933333pt;}
.xb{left:198.733333pt;}
.x1c{left:205.133333pt;}
.x1f{left:264.873333pt;}
.x20{left:277.173333pt;}
.xa{left:290.240000pt;}
.x22{left:293.673333pt;}
.xf{left:305.440000pt;}
.xe{left:371.033333pt;}
.x16{left:374.766667pt;}
.xc{left:377.733333pt;}
.x17{left:380.933333pt;}
.x9{left:444.133333pt;}
.x23{left:498.273333pt;}
.x24{left:510.560000pt;}
.x2{left:546.560000pt;}
.x12{left:551.060000pt;}
.x13{left:557.226667pt;}
.x27{left:671.100000pt;}
.x28{left:683.400000pt;}
.x25{left:688.193333pt;}
.x14{left:693.526667pt;}
.x18{left:695.140000pt;}
.x15{left:699.706667pt;}
.x19{left:701.293333pt;}
.x2b{left:713.293333pt;}
.x26{left:719.660000pt;}
.x1d{left:725.260000pt;}
.x1a{left:726.593333pt;}
.x1e{left:731.440000pt;}
.x1b{left:732.773333pt;}
}




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