
    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_a723a3cd7e4151568653349c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_ba0c223f0a00157304d04ef9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_ea02acf43a5c539587461b4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.418000;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_e82976e57b0d6233ed2753da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_a503853383ece5003f337adb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951000;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_249169e73476fa782844330d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_9df31bd2acfdeabec265b726.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.898000;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_3a9b30ea84aeeab93216aaaf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.774000;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_c6388f8e582503f451c30d96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.668000;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_7f03242e47f9c39db6ac2053.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.668000;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_6b7343687a9d58b4b729587a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.799000;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_294f0944388bfec77ff30aa6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.815000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-5.782800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.381366px;}
.ls9{letter-spacing:-0.009600px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.285596px;}
.ls4{letter-spacing:0.314995px;}
.ls0{letter-spacing:2.620763px;}
.ls1{letter-spacing:7.118898px;}
.ls2{letter-spacing:8.139484px;}
.ls3{letter-spacing:8.206683px;}
.ls8{letter-spacing:10.256253px;}
.ls6{letter-spacing:17.536598px;}
.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;}
}
.ws4{word-spacing:-10.298253px;}
.ws43{word-spacing:-8.248682px;}
.wsf{word-spacing:-2.662762px;}
.ws5{word-spacing:-0.041999px;}
.ws6d{word-spacing:0.000000px;}
.ws4b{word-spacing:6.808103px;}
.ws4e{word-spacing:6.812303px;}
.ws3c{word-spacing:7.039099px;}
.ws44{word-spacing:7.123098px;}
.ws47{word-spacing:7.169298px;}
.ws62{word-spacing:7.627091px;}
.ws4d{word-spacing:7.677490px;}
.ws1a{word-spacing:7.736289px;}
.ws67{word-spacing:7.740489px;}
.ws51{word-spacing:7.753089px;}
.ws60{word-spacing:7.757289px;}
.ws2b{word-spacing:7.765689px;}
.ws61{word-spacing:7.778289px;}
.ws64{word-spacing:7.790889px;}
.ws1e{word-spacing:7.795089px;}
.ws46{word-spacing:7.799289px;}
.ws27{word-spacing:7.807688px;}
.ws3a{word-spacing:7.816088px;}
.ws45{word-spacing:7.828688px;}
.ws17{word-spacing:7.849688px;}
.ws40{word-spacing:7.866488px;}
.ws26{word-spacing:7.870688px;}
.ws18{word-spacing:7.874888px;}
.ws56{word-spacing:7.879087px;}
.ws63{word-spacing:7.883287px;}
.ws21{word-spacing:7.887487px;}
.ws55{word-spacing:7.891687px;}
.ws4a{word-spacing:7.895887px;}
.ws4c{word-spacing:7.900087px;}
.ws3e{word-spacing:7.908487px;}
.ws69{word-spacing:7.916887px;}
.ws68{word-spacing:7.929487px;}
.ws2c{word-spacing:7.937887px;}
.ws23{word-spacing:7.950486px;}
.ws2e{word-spacing:7.963086px;}
.ws5f{word-spacing:7.967286px;}
.ws41{word-spacing:7.971486px;}
.ws3f{word-spacing:7.975686px;}
.ws2d{word-spacing:7.988286px;}
.ws48{word-spacing:7.992486px;}
.ws2a{word-spacing:8.005086px;}
.ws20{word-spacing:8.013486px;}
.ws49{word-spacing:8.026085px;}
.ws22{word-spacing:8.030285px;}
.ws66{word-spacing:8.034485px;}
.ws3d{word-spacing:8.042885px;}
.ws52{word-spacing:8.055485px;}
.ws32{word-spacing:8.072285px;}
.ws1f{word-spacing:8.076485px;}
.ws53{word-spacing:8.097484px;}
.ws3b{word-spacing:8.118484px;}
.ws1b{word-spacing:8.135284px;}
.ws50{word-spacing:8.152084px;}
.ws30{word-spacing:8.177283px;}
.ws1c{word-spacing:8.194083px;}
.ws24{word-spacing:8.198283px;}
.ws54{word-spacing:8.202483px;}
.ws28{word-spacing:8.215083px;}
.ws1d{word-spacing:8.236082px;}
.ws65{word-spacing:8.282282px;}
.ws2f{word-spacing:8.303281px;}
.ws4f{word-spacing:8.307481px;}
.ws39{word-spacing:8.349481px;}
.ws19{word-spacing:8.357881px;}
.ws42{word-spacing:8.370480px;}
.ws25{word-spacing:8.420880px;}
.ws31{word-spacing:8.471279px;}
.ws29{word-spacing:8.588877px;}
.ws16{word-spacing:8.593077px;}
.ws58{word-spacing:10.210054px;}
.ws6{word-spacing:10.214254px;}
.ws36{word-spacing:10.218454px;}
.ws15{word-spacing:10.252054px;}
.ws5d{word-spacing:10.256253px;}
.wse{word-spacing:10.273053px;}
.ws38{word-spacing:10.298253px;}
.ws35{word-spacing:10.302453px;}
.ws33{word-spacing:10.310853px;}
.wsa{word-spacing:10.319253px;}
.ws37{word-spacing:10.336052px;}
.wsb{word-spacing:10.340252px;}
.ws34{word-spacing:10.382252px;}
.ws6b{word-spacing:10.386452px;}
.ws8{word-spacing:10.403251px;}
.ws0{word-spacing:10.415851px;}
.ws13{word-spacing:10.445251px;}
.ws3{word-spacing:10.453651px;}
.ws5c{word-spacing:10.457851px;}
.ws2{word-spacing:10.487250px;}
.ws11{word-spacing:10.504050px;}
.ws6a{word-spacing:10.508250px;}
.ws10{word-spacing:10.546049px;}
.wsd{word-spacing:10.550249px;}
.ws9{word-spacing:10.554449px;}
.ws1{word-spacing:10.592249px;}
.wsc{word-spacing:10.596449px;}
.ws59{word-spacing:10.613248px;}
.ws5b{word-spacing:10.638448px;}
.ws12{word-spacing:10.688847px;}
.ws5e{word-spacing:10.718247px;}
.ws5a{word-spacing:10.722447px;}
.ws7{word-spacing:10.764446px;}
.ws14{word-spacing:10.802246px;}
.ws57{word-spacing:10.911444px;}
.ws6c{word-spacing:31.891001px;}
._6{margin-left:-18.017743px;}
._3{margin-left:-16.707361px;}
._5{margin-left:-10.256253px;}
._c{margin-left:-7.916887px;}
._b{margin-left:-4.535935px;}
._7{margin-left:-2.620763px;}
._2{width:1.348181px;}
._8{width:2.683762px;}
._4{width:3.985743px;}
._a{width:7.429694px;}
._9{width:8.933272px;}
._1{width:11.667433px;}
._d{width:16.866959px;}
._0{width:50.777275px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(124,25,95);}
.fs3{font-size:24.052800px;}
.fs1{font-size:27.996600px;}
.fs2{font-size:36.602400px;}
.fs0{font-size:41.999400px;}
.fs4{font-size:95.999400px;}
.y0{bottom:0.000000px;}
.y99{bottom:57.486192px;}
.y97{bottom:71.603100px;}
.y98{bottom:72.368550px;}
.y51{bottom:160.465993px;}
.y50{bottom:172.456822px;}
.y96{bottom:184.019165px;}
.y4f{bottom:184.447651px;}
.y4e{bottom:196.438479px;}
.y95{bottom:199.070700px;}
.y4d{bottom:208.514357px;}
.y94{bottom:214.038236px;}
.y4c{bottom:220.505185px;}
.y93{bottom:229.004723px;}
.y4b{bottom:235.471672px;}
.y92{bottom:241.080600px;}
.y4a{bottom:247.462500px;}
.y91{bottom:253.071429px;}
.y49{bottom:259.453329px;}
.y90{bottom:268.037915px;}
.y48{bottom:271.444158px;}
.y8f{bottom:280.028744px;}
.y47{bottom:283.434986px;}
.y8e{bottom:292.019572px;}
.y46{bottom:295.510864px;}
.y8d{bottom:304.010401px;}
.y8c{bottom:316.001230px;}
.y45{bottom:319.492521px;}
.y8b{bottom:328.077107px;}
.y43{bottom:331.483350px;}
.y44{bottom:336.160500px;}
.y42{bottom:336.160518px;}
.y8a{bottom:343.043593px;}
.y40{bottom:346.450071px;}
.y41{bottom:351.127500px;}
.y89{bottom:355.034422px;}
.y3d{bottom:358.440065px;}
.y3f{bottom:358.440900px;}
.y3e{bottom:363.118050px;}
.y88{bottom:367.025251px;}
.y87{bottom:379.016080px;}
.y3c{bottom:382.506771px;}
.y86{bottom:391.006908px;}
.y3b{bottom:394.497600px;}
.y85{bottom:403.082786px;}
.y84{bottom:415.073614px;}
.y83{bottom:427.064443px;}
.y82{bottom:439.055272px;}
.y3a{bottom:440.922685px;}
.y81{bottom:451.046101px;}
.y39{bottom:452.913514px;}
.y80{bottom:466.012587px;}
.y38{bottom:467.880000px;}
.y7f{bottom:478.003415px;}
.y37{bottom:482.931535px;}
.y7e{bottom:490.079293px;}
.y36{bottom:497.898021px;}
.y7d{bottom:502.070122px;}
.y35{bottom:509.888850px;}
.y7c{bottom:514.060950px;}
.y34{bottom:521.879679px;}
.y7b{bottom:526.051779px;}
.y33{bottom:536.931214px;}
.y7a{bottom:538.042608px;}
.y32{bottom:548.922042px;}
.y79{bottom:550.033436px;}
.y31{bottom:560.912871px;}
.y30{bottom:572.903700px;}
.y78{bottom:574.015094px;}
.y2f{bottom:584.894529px;}
.y77{bottom:586.005923px;}
.y2e{bottom:596.885357px;}
.y74{bottom:598.081243px;}
.y76{bottom:598.081800px;}
.y75{bottom:602.673900px;}
.y2d{bottom:608.876186px;}
.y73{bottom:610.072071px;}
.y2c{bottom:620.867015px;}
.y70{bottom:622.062621px;}
.y72{bottom:622.062900px;}
.y71{bottom:626.740050px;}
.y2b{bottom:632.942892px;}
.y6d{bottom:634.053171px;}
.y6f{bottom:634.053450px;}
.y6e{bottom:638.730600px;}
.y2a{bottom:644.933721px;}
.y6c{bottom:646.044000px;}
.y6b{bottom:650.721018px;}
.y29{bottom:656.924550px;}
.y68{bottom:661.010808px;}
.y6a{bottom:661.010850px;}
.y69{bottom:665.688000px;}
.y28{bottom:668.915378px;}
.y27{bottom:683.881864px;}
.y67{bottom:689.584050px;}
.y26{bottom:695.872693px;}
.y25{bottom:707.863522px;}
.y24{bottom:719.939399px;}
.y23{bottom:731.930228px;}
.y66{bottom:736.013171px;}
.y22{bottom:743.921057px;}
.y65{bottom:748.004000px;}
.y21{bottom:758.888593px;}
.y64{bottom:763.055535px;}
.y20{bottom:770.879422px;}
.y63{bottom:778.022021px;}
.y1f{bottom:782.870250px;}
.y62{bottom:792.988507px;}
.y1e{bottom:794.946128px;}
.y1d{bottom:806.936956px;}
.y61{bottom:808.040042px;}
.y1c{bottom:818.927785px;}
.y60{bottom:820.030871px;}
.y1b{bottom:830.918614px;}
.y5f{bottom:832.021699px;}
.y5e{bottom:844.012528px;}
.y1a{bottom:854.900271px;}
.y5d{bottom:856.003357px;}
.y17{bottom:866.890821px;}
.y19{bottom:866.891100px;}
.y5c{bottom:871.054892px;}
.y18{bottom:871.568250px;}
.y15{bottom:878.881650px;}
.y16{bottom:879.391943px;}
.y5b{bottom:883.045720px;}
.y14{bottom:883.558800px;}
.y11{bottom:890.871923px;}
.y13{bottom:890.872200px;}
.y5a{bottom:895.036549px;}
.y12{bottom:895.549500px;}
.ye{bottom:902.947243px;}
.y10{bottom:902.947800px;}
.y59{bottom:907.027378px;}
.yf{bottom:907.539900px;}
.yd{bottom:914.938071px;}
.y58{bottom:919.018207px;}
.yb{bottom:926.928900px;}
.y57{bottom:931.009035px;}
.ya{bottom:931.605918px;}
.yc{bottom:931.606050px;}
.y7{bottom:941.895621px;}
.y9{bottom:941.895750px;}
.y56{bottom:942.999864px;}
.y8{bottom:946.572900px;}
.y3{bottom:953.886450px;}
.y6{bottom:954.396743px;}
.y5{bottom:954.481791px;}
.y55{bottom:954.990693px;}
.y4{bottom:958.563600px;}
.y54{bottom:967.066570px;}
.y2{bottom:977.867123px;}
.y53{bottom:979.057399px;}
.y1{bottom:989.943000px;}
.y52{bottom:991.048228px;}
.y9c{bottom:1037.905350px;}
.y9b{bottom:1102.534842px;}
.y9a{bottom:1115.971500px;}
.h3{height:20.185549px;}
.h9{height:24.498767px;}
.h8{height:27.012571px;}
.h5{height:29.315581px;}
.h6{height:29.819574px;}
.h7{height:29.995971px;}
.h2{height:30.281567px;}
.h4{height:31.696947px;}
.ha{height:66.623584px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:918.424500px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x3{left:88.525950px;}
.x48{left:89.631450px;}
.x1d{left:92.097600px;}
.x1{left:94.138500px;}
.x13{left:116.672443px;}
.x2{left:118.205206px;}
.x22{left:119.395200px;}
.x4{left:120.585750px;}
.x5{left:124.412550px;}
.x14{left:127.048800px;}
.x15{left:130.875600px;}
.x28{left:132.321300px;}
.x29{left:136.147950px;}
.x31{left:140.740200px;}
.x20{left:147.883500px;}
.x21{left:151.455150px;}
.x26{left:160.724400px;}
.x6{left:162.255059px;}
.x23{left:164.041522px;}
.x24{left:165.572400px;}
.x16{left:177.477150px;}
.x17{left:181.303950px;}
.x7{left:183.004650px;}
.x2a{left:184.365300px;}
.x8{left:186.916500px;}
.x9{left:205.795230px;}
.x18{left:232.582650px;}
.x19{left:236.409450px;}
.x27{left:240.066118px;}
.x2b{left:241.766850px;}
.x2c{left:245.593650px;}
.x1a{left:267.193650px;}
.x1b{left:271.020450px;}
.xa{left:280.034550px;}
.xb{left:283.861350px;}
.x2d{left:288.453450px;}
.x1c{left:317.536950px;}
.x2e{left:329.867700px;}
.xc{left:331.993650px;}
.x1e{left:334.289700px;}
.xd{left:335.905500px;}
.x1f{left:337.861350px;}
.x32{left:339.307050px;}
.x33{left:342.963750px;}
.x25{left:366.944850px;}
.xe{left:370.686253px;}
.xf{left:372.217131px;}
.x2f{left:392.031450px;}
.x30{left:395.943300px;}
.x10{left:403.937178px;}
.x11{left:420.349500px;}
.x12{left:424.176300px;}
.x34{left:478.516814px;}
.x41{left:482.088150px;}
.x35{left:484.129050px;}
.x42{left:520.015650px;}
.x36{left:521.036100px;}
.x43{left:523.587300px;}
.x37{left:524.862900px;}
.x38{left:569.423550px;}
.x39{left:573.250200px;}
.x49{left:621.892800px;}
.x3a{left:642.047100px;}
.x3b{left:645.873900px;}
.x46{left:655.823550px;}
.x47{left:659.480100px;}
.x3c{left:694.941600px;}
.x3d{left:698.768400px;}
.x44{left:700.129050px;}
.x45{left:703.700700px;}
.x4a{left:719.688403px;}
.x3e{left:747.836100px;}
.x3f{left:751.747950px;}
.x40{left:808.213950px;}
@media print{
.v2{vertical-align:-5.140267pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.116770pt;}
.ls9{letter-spacing:-0.008533pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.253863pt;}
.ls4{letter-spacing:0.279996pt;}
.ls0{letter-spacing:2.329567pt;}
.ls1{letter-spacing:6.327910pt;}
.ls2{letter-spacing:7.235097pt;}
.ls3{letter-spacing:7.294829pt;}
.ls8{letter-spacing:9.116670pt;}
.ls6{letter-spacing:15.588087pt;}
.ws4{word-spacing:-9.154003pt;}
.ws43{word-spacing:-7.332162pt;}
.wsf{word-spacing:-2.366900pt;}
.ws5{word-spacing:-0.037333pt;}
.ws6d{word-spacing:0.000000pt;}
.ws4b{word-spacing:6.051647pt;}
.ws4e{word-spacing:6.055380pt;}
.ws3c{word-spacing:6.256977pt;}
.ws44{word-spacing:6.331643pt;}
.ws47{word-spacing:6.372709pt;}
.ws62{word-spacing:6.779636pt;}
.ws4d{word-spacing:6.824436pt;}
.ws1a{word-spacing:6.876702pt;}
.ws67{word-spacing:6.880435pt;}
.ws51{word-spacing:6.891635pt;}
.ws60{word-spacing:6.895368pt;}
.ws2b{word-spacing:6.902835pt;}
.ws61{word-spacing:6.914035pt;}
.ws64{word-spacing:6.925234pt;}
.ws1e{word-spacing:6.928968pt;}
.ws46{word-spacing:6.932701pt;}
.ws27{word-spacing:6.940168pt;}
.ws3a{word-spacing:6.947634pt;}
.ws45{word-spacing:6.958834pt;}
.ws17{word-spacing:6.977500pt;}
.ws40{word-spacing:6.992433pt;}
.ws26{word-spacing:6.996167pt;}
.ws18{word-spacing:6.999900pt;}
.ws56{word-spacing:7.003633pt;}
.ws63{word-spacing:7.007367pt;}
.ws21{word-spacing:7.011100pt;}
.ws55{word-spacing:7.014833pt;}
.ws4a{word-spacing:7.018566pt;}
.ws4c{word-spacing:7.022300pt;}
.ws3e{word-spacing:7.029766pt;}
.ws69{word-spacing:7.037233pt;}
.ws68{word-spacing:7.048433pt;}
.ws2c{word-spacing:7.055899pt;}
.ws23{word-spacing:7.067099pt;}
.ws2e{word-spacing:7.078299pt;}
.ws5f{word-spacing:7.082032pt;}
.ws41{word-spacing:7.085765pt;}
.ws3f{word-spacing:7.089499pt;}
.ws2d{word-spacing:7.100699pt;}
.ws48{word-spacing:7.104432pt;}
.ws2a{word-spacing:7.115632pt;}
.ws20{word-spacing:7.123098pt;}
.ws49{word-spacing:7.134298pt;}
.ws22{word-spacing:7.138031pt;}
.ws66{word-spacing:7.141765pt;}
.ws3d{word-spacing:7.149231pt;}
.ws52{word-spacing:7.160431pt;}
.ws32{word-spacing:7.175364pt;}
.ws1f{word-spacing:7.179097pt;}
.ws53{word-spacing:7.197764pt;}
.ws3b{word-spacing:7.216430pt;}
.ws1b{word-spacing:7.231363pt;}
.ws50{word-spacing:7.246296pt;}
.ws30{word-spacing:7.268696pt;}
.ws1c{word-spacing:7.283629pt;}
.ws24{word-spacing:7.287363pt;}
.ws54{word-spacing:7.291096pt;}
.ws28{word-spacing:7.302296pt;}
.ws1d{word-spacing:7.320962pt;}
.ws65{word-spacing:7.362028pt;}
.ws2f{word-spacing:7.380695pt;}
.ws4f{word-spacing:7.384428pt;}
.ws39{word-spacing:7.421761pt;}
.ws19{word-spacing:7.429227pt;}
.ws42{word-spacing:7.440427pt;}
.ws25{word-spacing:7.485226pt;}
.ws31{word-spacing:7.530026pt;}
.ws29{word-spacing:7.634558pt;}
.ws16{word-spacing:7.638291pt;}
.ws58{word-spacing:9.075604pt;}
.ws6{word-spacing:9.079337pt;}
.ws36{word-spacing:9.083070pt;}
.ws15{word-spacing:9.112936pt;}
.ws5d{word-spacing:9.116670pt;}
.wse{word-spacing:9.131603pt;}
.ws38{word-spacing:9.154003pt;}
.ws35{word-spacing:9.157736pt;}
.ws33{word-spacing:9.165202pt;}
.wsa{word-spacing:9.172669pt;}
.ws37{word-spacing:9.187602pt;}
.wsb{word-spacing:9.191335pt;}
.ws34{word-spacing:9.228668pt;}
.ws6b{word-spacing:9.232401pt;}
.ws8{word-spacing:9.247335pt;}
.ws0{word-spacing:9.258534pt;}
.ws13{word-spacing:9.284667pt;}
.ws3{word-spacing:9.292134pt;}
.ws5c{word-spacing:9.295867pt;}
.ws2{word-spacing:9.322000pt;}
.ws11{word-spacing:9.336933pt;}
.ws6a{word-spacing:9.340667pt;}
.ws10{word-spacing:9.374266pt;}
.wsd{word-spacing:9.377999pt;}
.ws9{word-spacing:9.381733pt;}
.ws1{word-spacing:9.415332pt;}
.wsc{word-spacing:9.419065pt;}
.ws59{word-spacing:9.433999pt;}
.ws5b{word-spacing:9.456398pt;}
.ws12{word-spacing:9.501198pt;}
.ws5e{word-spacing:9.527331pt;}
.ws5a{word-spacing:9.531064pt;}
.ws7{word-spacing:9.568397pt;}
.ws14{word-spacing:9.601996pt;}
.ws57{word-spacing:9.699061pt;}
.ws6c{word-spacing:28.347556pt;}
._6{margin-left:-16.015771pt;}
._3{margin-left:-14.850988pt;}
._5{margin-left:-9.116670pt;}
._c{margin-left:-7.037233pt;}
._b{margin-left:-4.031942pt;}
._7{margin-left:-2.329567pt;}
._2{width:1.198383pt;}
._8{width:2.385566pt;}
._4{width:3.542883pt;}
._a{width:6.604172pt;}
._9{width:7.940687pt;}
._1{width:10.371052pt;}
._d{width:14.992852pt;}
._0{width:45.135355pt;}
.fs3{font-size:21.380267pt;}
.fs1{font-size:24.885867pt;}
.fs2{font-size:32.535467pt;}
.fs0{font-size:37.332800pt;}
.fs4{font-size:85.332800pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:51.098837pt;}
.y97{bottom:63.647200pt;}
.y98{bottom:64.327600pt;}
.y51{bottom:142.636438pt;}
.y50{bottom:153.294953pt;}
.y96{bottom:163.572591pt;}
.y4f{bottom:163.953467pt;}
.y4e{bottom:174.611982pt;}
.y95{bottom:176.951734pt;}
.y4d{bottom:185.346095pt;}
.y94{bottom:190.256210pt;}
.y4c{bottom:196.004609pt;}
.y93{bottom:203.559753pt;}
.y4b{bottom:209.308153pt;}
.y92{bottom:214.293867pt;}
.y4a{bottom:219.966667pt;}
.y91{bottom:224.952381pt;}
.y49{bottom:230.625181pt;}
.y90{bottom:238.255924pt;}
.y48{bottom:241.283696pt;}
.y8f{bottom:248.914439pt;}
.y47{bottom:251.942210pt;}
.y8e{bottom:259.572953pt;}
.y46{bottom:262.676323pt;}
.y8d{bottom:270.231468pt;}
.y8c{bottom:280.889982pt;}
.y45{bottom:283.993352pt;}
.y8b{bottom:291.624095pt;}
.y43{bottom:294.651867pt;}
.y44{bottom:298.809333pt;}
.y42{bottom:298.809349pt;}
.y8a{bottom:304.927639pt;}
.y40{bottom:307.955619pt;}
.y41{bottom:312.113333pt;}
.y89{bottom:315.586153pt;}
.y3d{bottom:318.613391pt;}
.y3f{bottom:318.614133pt;}
.y3e{bottom:322.771600pt;}
.y88{bottom:326.244667pt;}
.y87{bottom:336.903182pt;}
.y3c{bottom:340.006019pt;}
.y86{bottom:347.561696pt;}
.y3b{bottom:350.664533pt;}
.y85{bottom:358.295810pt;}
.y84{bottom:368.954324pt;}
.y83{bottom:379.612838pt;}
.y82{bottom:390.271353pt;}
.y3a{bottom:391.931276pt;}
.y81{bottom:400.929867pt;}
.y39{bottom:402.589790pt;}
.y80{bottom:414.233410pt;}
.y38{bottom:415.893334pt;}
.y7f{bottom:424.891925pt;}
.y37{bottom:429.272476pt;}
.y7e{bottom:435.626038pt;}
.y36{bottom:442.576019pt;}
.y7d{bottom:446.284553pt;}
.y35{bottom:453.234533pt;}
.y7c{bottom:456.943067pt;}
.y34{bottom:463.893048pt;}
.y7b{bottom:467.601581pt;}
.y33{bottom:477.272190pt;}
.y7a{bottom:478.260096pt;}
.y32{bottom:487.930704pt;}
.y79{bottom:488.918610pt;}
.y31{bottom:498.589219pt;}
.y30{bottom:509.247733pt;}
.y78{bottom:510.235639pt;}
.y2f{bottom:519.906248pt;}
.y77{bottom:520.894153pt;}
.y2e{bottom:530.564762pt;}
.y74{bottom:531.627771pt;}
.y76{bottom:531.628267pt;}
.y75{bottom:535.710133pt;}
.y2d{bottom:541.223276pt;}
.y73{bottom:542.286286pt;}
.y2c{bottom:551.881791pt;}
.y70{bottom:552.944552pt;}
.y72{bottom:552.944800pt;}
.y71{bottom:557.102267pt;}
.y2b{bottom:562.615904pt;}
.y6d{bottom:563.602819pt;}
.y6f{bottom:563.603067pt;}
.y6e{bottom:567.760533pt;}
.y2a{bottom:573.274419pt;}
.y6c{bottom:574.261333pt;}
.y6b{bottom:578.418682pt;}
.y29{bottom:583.932933pt;}
.y68{bottom:587.565163pt;}
.y6a{bottom:587.565200pt;}
.y69{bottom:591.722667pt;}
.y28{bottom:594.591447pt;}
.y27{bottom:607.894991pt;}
.y67{bottom:612.963600pt;}
.y26{bottom:618.553505pt;}
.y25{bottom:629.212019pt;}
.y24{bottom:639.946133pt;}
.y23{bottom:650.604647pt;}
.y66{bottom:654.233930pt;}
.y22{bottom:661.263162pt;}
.y65{bottom:664.892444pt;}
.y21{bottom:674.567638pt;}
.y64{bottom:678.271586pt;}
.y20{bottom:685.226153pt;}
.y63{bottom:691.575130pt;}
.y1f{bottom:695.884667pt;}
.y62{bottom:704.878673pt;}
.y1e{bottom:706.618780pt;}
.y1d{bottom:717.277295pt;}
.y61{bottom:718.257815pt;}
.y1c{bottom:727.935809pt;}
.y60{bottom:728.916329pt;}
.y1b{bottom:738.594323pt;}
.y5f{bottom:739.574844pt;}
.y5e{bottom:750.233358pt;}
.y1a{bottom:759.911352pt;}
.y5d{bottom:760.891873pt;}
.y17{bottom:770.569619pt;}
.y19{bottom:770.569867pt;}
.y5c{bottom:774.271015pt;}
.y18{bottom:774.727333pt;}
.y15{bottom:781.228133pt;}
.y16{bottom:781.681727pt;}
.y5b{bottom:784.929529pt;}
.y14{bottom:785.385600pt;}
.y11{bottom:791.886153pt;}
.y13{bottom:791.886400pt;}
.y5a{bottom:795.588044pt;}
.y12{bottom:796.044000pt;}
.ye{bottom:802.619771pt;}
.y10{bottom:802.620267pt;}
.y59{bottom:806.246558pt;}
.yf{bottom:806.702133pt;}
.yd{bottom:813.278286pt;}
.y58{bottom:816.905072pt;}
.yb{bottom:823.936800pt;}
.y57{bottom:827.563587pt;}
.ya{bottom:828.094149pt;}
.yc{bottom:828.094267pt;}
.y7{bottom:837.240552pt;}
.y9{bottom:837.240667pt;}
.y56{bottom:838.222101pt;}
.y8{bottom:841.398133pt;}
.y3{bottom:847.899067pt;}
.y6{bottom:848.352660pt;}
.y5{bottom:848.428259pt;}
.y55{bottom:848.880616pt;}
.y4{bottom:852.056533pt;}
.y54{bottom:859.614729pt;}
.y2{bottom:869.215220pt;}
.y53{bottom:870.273243pt;}
.y1{bottom:879.949333pt;}
.y52{bottom:880.931758pt;}
.y9c{bottom:922.582533pt;}
.y9b{bottom:980.030971pt;}
.y9a{bottom:991.974667pt;}
.h3{height:17.942710pt;}
.h9{height:21.776682pt;}
.h8{height:24.011174pt;}
.h5{height:26.058294pt;}
.h6{height:26.506288pt;}
.h7{height:26.663086pt;}
.h2{height:26.916949pt;}
.h4{height:28.175064pt;}
.ha{height:59.220963pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:816.377333pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x3{left:78.689733pt;}
.x48{left:79.672400pt;}
.x1d{left:81.864533pt;}
.x1{left:83.678667pt;}
.x13{left:103.708838pt;}
.x2{left:105.071294pt;}
.x22{left:106.129067pt;}
.x4{left:107.187333pt;}
.x5{left:110.588933pt;}
.x14{left:112.932267pt;}
.x15{left:116.333867pt;}
.x28{left:117.618933pt;}
.x29{left:121.020400pt;}
.x31{left:125.102400pt;}
.x20{left:131.452000pt;}
.x21{left:134.626800pt;}
.x26{left:142.866133pt;}
.x6{left:144.226719pt;}
.x23{left:145.814686pt;}
.x24{left:147.175467pt;}
.x16{left:157.757467pt;}
.x17{left:161.159067pt;}
.x7{left:162.670800pt;}
.x2a{left:163.880267pt;}
.x8{left:166.148000pt;}
.x9{left:182.929094pt;}
.x18{left:206.740133pt;}
.x19{left:210.141733pt;}
.x27{left:213.392104pt;}
.x2b{left:214.903867pt;}
.x2c{left:218.305467pt;}
.x1a{left:237.505467pt;}
.x1b{left:240.907067pt;}
.xa{left:248.919600pt;}
.xb{left:252.321200pt;}
.x2d{left:256.403067pt;}
.x1c{left:282.255067pt;}
.x2e{left:293.215733pt;}
.xc{left:295.105467pt;}
.x1e{left:297.146400pt;}
.xd{left:298.582667pt;}
.x1f{left:300.321200pt;}
.x32{left:301.606267pt;}
.x33{left:304.856667pt;}
.x25{left:326.173200pt;}
.xe{left:329.498892pt;}
.xf{left:330.859672pt;}
.x2f{left:348.472400pt;}
.x30{left:351.949600pt;}
.x10{left:359.055269pt;}
.x11{left:373.644000pt;}
.x12{left:377.045600pt;}
.x34{left:425.348279pt;}
.x41{left:428.522800pt;}
.x35{left:430.336933pt;}
.x42{left:462.236133pt;}
.x36{left:463.143200pt;}
.x43{left:465.410933pt;}
.x37{left:466.544800pt;}
.x38{left:506.154267pt;}
.x39{left:509.555733pt;}
.x49{left:552.793600pt;}
.x3a{left:570.708533pt;}
.x3b{left:574.110133pt;}
.x46{left:582.954267pt;}
.x47{left:586.204533pt;}
.x3c{left:617.725867pt;}
.x3d{left:621.127467pt;}
.x44{left:622.336933pt;}
.x45{left:625.511733pt;}
.x4a{left:639.723025pt;}
.x3e{left:664.743200pt;}
.x3f{left:668.220400pt;}
.x40{left:718.412400pt;}
}




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