
    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_ece4446f22009432f80ea365.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.851074;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_cf460beb275310a1898c6833.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_eb97fe1c0163b37064c77d35.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.975098;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_7edaf8ef7d800069f9613f53.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.764160;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_593df7b7af78d8f5b35c27ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752441;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_d5c47264100fa818a8432d3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.841309;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_ff9de244686642615bf515b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_f6d647fb21070e9823d29f85.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_6d8fc808c8c46ddc5a35cdaf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986816;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_6336162b5de3f15f09c79a4e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_6bbaddb628452f9a351855db.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.986328;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_9cb793babe639a78061a9e34.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.752441;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_cf02140c83f31d798103fb9f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.975586;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_419ddcdc18acd1fb3b83cdc4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.975098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9d04d01139b4e52cebbd1de1.woff2')format("woff");}.fff{font-family:fff;line-height:0.711914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2198464e798665879cf0ba2b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.050781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_92d77f9ee495f14a42d6e879.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0689ef962bd7d1e619bbb146.woff2')format("woff");}.ff12{font-family:ff12;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;}
.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;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-16.230816px;}
.ls20{letter-spacing:-3.369600px;}
.ls19{letter-spacing:-3.319056px;}
.ls27{letter-spacing:-3.302208px;}
.ls4{letter-spacing:-3.024000px;}
.ls5{letter-spacing:-2.937600px;}
.lsb{letter-spacing:-2.784816px;}
.ls7{letter-spacing:-2.737008px;}
.lsa{letter-spacing:-2.713104px;}
.ls8{letter-spacing:-2.689200px;}
.ls9{letter-spacing:-2.641392px;}
.ls21{letter-spacing:-2.102400px;}
.ls2e{letter-spacing:-0.953856px;}
.ls23{letter-spacing:-0.950400px;}
.lsc{letter-spacing:-0.799200px;}
.ls24{letter-spacing:-0.727200px;}
.ls25{letter-spacing:-0.691200px;}
.ls1b{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.417312px;}
.ls2f{letter-spacing:-0.172224px;}
.ls2a{letter-spacing:-0.165600px;}
.ls28{letter-spacing:-0.145728px;}
.ls2b{letter-spacing:-0.139104px;}
.ls2c{letter-spacing:-0.119232px;}
.ls2d{letter-spacing:-0.112608px;}
.ls29{letter-spacing:-0.072864px;}
.ls22{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.021600px;}
.ls14{letter-spacing:-0.014400px;}
.ls13{letter-spacing:-0.007200px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007200px;}
.ls18{letter-spacing:0.008640px;}
.ls1d{letter-spacing:0.009072px;}
.ls1{letter-spacing:0.014400px;}
.lse{letter-spacing:0.021600px;}
.lsf{letter-spacing:0.022752px;}
.ls1e{letter-spacing:0.023904px;}
.ls1f{letter-spacing:0.024480px;}
.ls1a{letter-spacing:0.028800px;}
.ls26{letter-spacing:0.261648px;}
.lsd{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.317376px;}
.ls12{letter-spacing:0.334080px;}
.ls31{letter-spacing:0.761760px;}
.ls16{letter-spacing:1.789920px;}
.ls17{letter-spacing:94.690656px;}
.ls1c{letter-spacing:114.747264px;}
.ls15{letter-spacing:120.003264px;}
.ls2{letter-spacing:843.984000px;}
.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;}
}
.ws0{word-spacing:-30.035376px;}
.ws9{word-spacing:-19.893600px;}
.wsb{word-spacing:-19.879200px;}
.ws8{word-spacing:-19.872000px;}
.ws5{word-spacing:-19.749600px;}
.wsa{word-spacing:-19.735200px;}
.ws4{word-spacing:-19.728000px;}
.ws6{word-spacing:-19.720800px;}
.ws7{word-spacing:-19.706400px;}
.ws2{word-spacing:-14.904000px;}
.wsd{word-spacing:-14.623200px;}
.wsc{word-spacing:-14.616000px;}
.ws1{word-spacing:-13.816800px;}
.wse{word-spacing:-13.665600px;}
.wsf{word-spacing:-13.446720px;}
.ws10{word-spacing:-13.334112px;}
.ws12{word-spacing:-13.281120px;}
.ws11{word-spacing:-13.029408px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-8.244720px;}
._1{margin-left:-5.784480px;}
._0{margin-left:-2.857680px;}
._3{margin-left:-1.109520px;}
._4{width:1.492272px;}
._f{width:2.755728px;}
._6{width:4.885920px;}
._5{width:9.337680px;}
._2{width:13.505760px;}
._d{width:33.680880px;}
._b{width:35.567280px;}
._9{width:38.936880px;}
._7{width:40.823280px;}
._e{width:69.817680px;}
._10{width:89.494848px;}
._c{width:192.527568px;}
._8{width:197.783568px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:transparent;}
.fc1{color:rgb(105,177,142);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.520000px;}
.fs4{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs3{font-size:119.520000px;}
.fs1{font-size:168.480000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y65{bottom:94.906800px;}
.y4b{bottom:116.866800px;}
.y81{bottom:135.586800px;}
.y64{bottom:138.826800px;}
.y4a{bottom:144.226800px;}
.y80{bottom:157.546800px;}
.y63{bottom:160.786800px;}
.y49{bottom:171.586800px;}
.y7f{bottom:179.146800px;}
.y62{bottom:182.746800px;}
.y48{bottom:198.946800px;}
.y7e{bottom:199.666800px;}
.y61{bottom:204.706800px;}
.y7d{bottom:221.266800px;}
.y47{bottom:226.666800px;}
.y7c{bottom:241.426800px;}
.y60{bottom:248.626800px;}
.y46{bottom:254.026800px;}
.y7b{bottom:261.586800px;}
.y5f{bottom:270.586800px;}
.y19{bottom:281.026800px;}
.y45{bottom:281.386800px;}
.y7a{bottom:281.746800px;}
.y5e{bottom:292.906800px;}
.y79{bottom:301.906800px;}
.y18{bottom:302.986800px;}
.y44{bottom:309.106800px;}
.y5d{bottom:314.866800px;}
.y78{bottom:322.066800px;}
.y17{bottom:324.946800px;}
.y43{bottom:336.466800px;}
.y5c{bottom:336.826800px;}
.y77{bottom:342.226800px;}
.y16{bottom:346.906800px;}
.y5b{bottom:358.786800px;}
.y76{bottom:362.386800px;}
.y42{bottom:363.826800px;}
.y36{bottom:366.706800px;}
.y15{bottom:369.226800px;}
.y5a{bottom:380.746800px;}
.y75{bottom:382.546800px;}
.y35{bottom:388.306800px;}
.y14{bottom:391.186800px;}
.y59{bottom:402.706800px;}
.y34{bottom:412.066800px;}
.y13{bottom:413.146800px;}
.y74{bottom:422.866800px;}
.y58{bottom:424.666800px;}
.y12{bottom:435.106800px;}
.y41{bottom:435.466800px;}
.y33{bottom:436.186800px;}
.y73{bottom:443.026800px;}
.y57{bottom:446.626800px;}
.y11{bottom:457.066800px;}
.y32{bottom:459.946800px;}
.y72{bottom:463.546800px;}
.y56{bottom:468.586800px;}
.y10{bottom:479.026800px;}
.y40{bottom:480.826800px;}
.y31{bottom:484.066800px;}
.y71{bottom:485.506800px;}
.y55{bottom:490.546800px;}
.yf{bottom:500.986800px;}
.y3f{bottom:504.946800px;}
.y70{bottom:507.106800px;}
.y30{bottom:507.826800px;}
.y54{bottom:512.146800px;}
.ye{bottom:522.946800px;}
.y3e{bottom:528.706800px;}
.y6f{bottom:530.866800px;}
.y2f{bottom:531.946800px;}
.y53{bottom:535.906800px;}
.y3d{bottom:552.826800px;}
.yd{bottom:553.186800px;}
.y6e{bottom:554.986800px;}
.y2e{bottom:555.706800px;}
.y52{bottom:560.026800px;}
.y3c{bottom:576.946800px;}
.y6d{bottom:578.746800px;}
.y2d{bottom:579.826800px;}
.y51{bottom:583.786800px;}
.yc{bottom:593.146800px;}
.y3b{bottom:593.866800px;}
.y6c{bottom:602.866800px;}
.y2c{bottom:603.586800px;}
.y50{bottom:607.906800px;}
.y6b{bottom:626.986800px;}
.y2b{bottom:627.706800px;}
.y4f{bottom:632.026800px;}
.yb{bottom:639.226800px;}
.y6a{bottom:648.946800px;}
.y2a{bottom:651.466800px;}
.y4e{bottom:653.986800px;}
.y69{bottom:665.866800px;}
.y4d{bottom:670.906800px;}
.y29{bottom:675.586800px;}
.y28{bottom:699.346800px;}
.ya{bottom:709.426800px;}
.y27{bottom:723.466800px;}
.y26{bottom:747.226800px;}
.y9{bottom:760.546800px;}
.y25{bottom:771.346800px;}
.y24{bottom:795.106800px;}
.y8{bottom:812.026800px;}
.y23{bottom:819.946800px;}
.y22{bottom:847.666800px;}
.y7{bottom:863.146800px;}
.y21{bottom:875.026800px;}
.y20{bottom:899.146800px;}
.y6{bottom:914.626800px;}
.y1f{bottom:922.906800px;}
.y3a{bottom:938.026800px;}
.y1e{bottom:947.026800px;}
.y39{bottom:959.986800px;}
.y5{bottom:965.746800px;}
.y1d{bottom:971.506800px;}
.y4c{bottom:981.946800px;}
.y38{bottom:993.466800px;}
.y1c{bottom:998.506800px;}
.y68{bottom:1003.906800px;}
.y4{bottom:1015.426800px;}
.y1b{bottom:1031.986800px;}
.y67{bottom:1037.386800px;}
.y37{bottom:1051.066800px;}
.y3{bottom:1073.026800px;}
.y66{bottom:1094.986800px;}
.y1a{bottom:1095.346800px;}
.y2{bottom:1117.306800px;}
.y1{bottom:1139.266800px;}
.h9{height:40.310156px;}
.hf{height:44.149219px;}
.h8{height:47.988281px;}
.h3{height:48.023438px;}
.hc{height:53.332031px;}
.hb{height:54.070313px;}
.he{height:57.410156px;}
.hd{height:61.190156px;}
.ha{height:62.803125px;}
.h7{height:88.472813px;}
.h4{height:112.292578px;}
.h5{height:124.714688px;}
.h6{height:162.421875px;}
.h2{height:1246.500000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:876.413400px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:16.500000px;}
.x2{left:90.147936px;}
.x4{left:106.647936px;}
.x3{left:110.304168px;}
.x1d{left:111.361044px;}
.x27{left:116.251428px;}
.x25{left:119.377416px;}
.x1c{left:124.509480px;}
.x26{left:129.399864px;}
.x24{left:132.525852px;}
.x38{left:145.247268px;}
.x35{left:146.568552px;}
.xf{left:159.273912px;}
.x3a{left:160.554900px;}
.xe{left:172.422348px;}
.x39{left:173.703336px;}
.x17{left:189.518520px;}
.x16{left:202.666956px;}
.x8{left:207.695760px;}
.x29{left:270.463584px;}
.x11{left:279.414516px;}
.x28{left:283.612020px;}
.x10{left:292.562952px;}
.x2b{left:300.925740px;}
.x13{left:309.876672px;}
.x2a{left:314.074176px;}
.x19{left:320.285856px;}
.x12{left:323.025108px;}
.x18{left:333.434292px;}
.x9{left:338.573688px;}
.x3b{left:351.730896px;}
.x5{left:394.902780px;}
.x15{left:405.452460px;}
.x14{left:418.600860px;}
.x30{left:456.136860px;}
.x2f{left:469.285260px;}
.x1f{left:484.198140px;}
.x23{left:485.358420px;}
.x1b{left:491.852100px;}
.x1e{left:497.346540px;}
.x22{left:498.506820px;}
.x1a{left:505.000500px;}
.x2d{left:511.550580px;}
.x2c{left:524.698980px;}
.x37{left:542.101260px;}
.x36{left:555.249660px;}
.x32{left:592.995180px;}
.x21{left:597.055620px;}
.xc{left:604.887900px;}
.x31{left:606.143580px;}
.x20{left:610.204020px;}
.x7{left:615.687900px;}
.x34{left:623.457300px;}
.x33{left:636.605700px;}
.xd{left:691.068660px;}
.x6{left:692.904660px;}
.xb{left:737.324700px;}
.x3c{left:746.014020px;}
.x2e{left:749.180940px;}
.xa{left:787.047900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-14.427392pt;}
.ls20{letter-spacing:-2.995200pt;}
.ls19{letter-spacing:-2.950272pt;}
.ls27{letter-spacing:-2.935296pt;}
.ls4{letter-spacing:-2.688000pt;}
.ls5{letter-spacing:-2.611200pt;}
.lsb{letter-spacing:-2.475392pt;}
.ls7{letter-spacing:-2.432896pt;}
.lsa{letter-spacing:-2.411648pt;}
.ls8{letter-spacing:-2.390400pt;}
.ls9{letter-spacing:-2.347904pt;}
.ls21{letter-spacing:-1.868800pt;}
.ls2e{letter-spacing:-0.847872pt;}
.ls23{letter-spacing:-0.844800pt;}
.lsc{letter-spacing:-0.710400pt;}
.ls24{letter-spacing:-0.646400pt;}
.ls25{letter-spacing:-0.614400pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.370944pt;}
.ls2f{letter-spacing:-0.153088pt;}
.ls2a{letter-spacing:-0.147200pt;}
.ls28{letter-spacing:-0.129536pt;}
.ls2b{letter-spacing:-0.123648pt;}
.ls2c{letter-spacing:-0.105984pt;}
.ls2d{letter-spacing:-0.100096pt;}
.ls29{letter-spacing:-0.064768pt;}
.ls22{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.019200pt;}
.ls14{letter-spacing:-0.012800pt;}
.ls13{letter-spacing:-0.006400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006400pt;}
.ls18{letter-spacing:0.007680pt;}
.ls1d{letter-spacing:0.008064pt;}
.ls1{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.019200pt;}
.lsf{letter-spacing:0.020224pt;}
.ls1e{letter-spacing:0.021248pt;}
.ls1f{letter-spacing:0.021760pt;}
.ls1a{letter-spacing:0.025600pt;}
.ls26{letter-spacing:0.232576pt;}
.lsd{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.282112pt;}
.ls12{letter-spacing:0.296960pt;}
.ls31{letter-spacing:0.677120pt;}
.ls16{letter-spacing:1.591040pt;}
.ls17{letter-spacing:84.169472pt;}
.ls1c{letter-spacing:101.997568pt;}
.ls15{letter-spacing:106.669568pt;}
.ls2{letter-spacing:750.208000pt;}
.ws0{word-spacing:-26.698112pt;}
.ws9{word-spacing:-17.683200pt;}
.wsb{word-spacing:-17.670400pt;}
.ws8{word-spacing:-17.664000pt;}
.ws5{word-spacing:-17.555200pt;}
.wsa{word-spacing:-17.542400pt;}
.ws4{word-spacing:-17.536000pt;}
.ws6{word-spacing:-17.529600pt;}
.ws7{word-spacing:-17.516800pt;}
.ws2{word-spacing:-13.248000pt;}
.wsd{word-spacing:-12.998400pt;}
.wsc{word-spacing:-12.992000pt;}
.ws1{word-spacing:-12.281600pt;}
.wse{word-spacing:-12.147200pt;}
.wsf{word-spacing:-11.952640pt;}
.ws10{word-spacing:-11.852544pt;}
.ws12{word-spacing:-11.805440pt;}
.ws11{word-spacing:-11.581696pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-7.328640pt;}
._1{margin-left:-5.141760pt;}
._0{margin-left:-2.540160pt;}
._3{margin-left:-0.986240pt;}
._4{width:1.326464pt;}
._f{width:2.449536pt;}
._6{width:4.343040pt;}
._5{width:8.300160pt;}
._2{width:12.005120pt;}
._d{width:29.938560pt;}
._b{width:31.615360pt;}
._9{width:34.610560pt;}
._7{width:36.287360pt;}
._e{width:62.060160pt;}
._10{width:79.550976pt;}
._c{width:171.135616pt;}
._8{width:175.807616pt;}
.fs6{font-size:42.240000pt;}
.fs4{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs3{font-size:106.240000pt;}
.fs1{font-size:149.760000pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:84.361600pt;}
.y4b{bottom:103.881600pt;}
.y81{bottom:120.521600pt;}
.y64{bottom:123.401600pt;}
.y4a{bottom:128.201600pt;}
.y80{bottom:140.041600pt;}
.y63{bottom:142.921600pt;}
.y49{bottom:152.521600pt;}
.y7f{bottom:159.241600pt;}
.y62{bottom:162.441600pt;}
.y48{bottom:176.841600pt;}
.y7e{bottom:177.481600pt;}
.y61{bottom:181.961600pt;}
.y7d{bottom:196.681600pt;}
.y47{bottom:201.481600pt;}
.y7c{bottom:214.601600pt;}
.y60{bottom:221.001600pt;}
.y46{bottom:225.801600pt;}
.y7b{bottom:232.521600pt;}
.y5f{bottom:240.521600pt;}
.y19{bottom:249.801600pt;}
.y45{bottom:250.121600pt;}
.y7a{bottom:250.441600pt;}
.y5e{bottom:260.361600pt;}
.y79{bottom:268.361600pt;}
.y18{bottom:269.321600pt;}
.y44{bottom:274.761600pt;}
.y5d{bottom:279.881600pt;}
.y78{bottom:286.281600pt;}
.y17{bottom:288.841600pt;}
.y43{bottom:299.081600pt;}
.y5c{bottom:299.401600pt;}
.y77{bottom:304.201600pt;}
.y16{bottom:308.361600pt;}
.y5b{bottom:318.921600pt;}
.y76{bottom:322.121600pt;}
.y42{bottom:323.401600pt;}
.y36{bottom:325.961600pt;}
.y15{bottom:328.201600pt;}
.y5a{bottom:338.441600pt;}
.y75{bottom:340.041600pt;}
.y35{bottom:345.161600pt;}
.y14{bottom:347.721600pt;}
.y59{bottom:357.961600pt;}
.y34{bottom:366.281600pt;}
.y13{bottom:367.241600pt;}
.y74{bottom:375.881600pt;}
.y58{bottom:377.481600pt;}
.y12{bottom:386.761600pt;}
.y41{bottom:387.081600pt;}
.y33{bottom:387.721600pt;}
.y73{bottom:393.801600pt;}
.y57{bottom:397.001600pt;}
.y11{bottom:406.281600pt;}
.y32{bottom:408.841600pt;}
.y72{bottom:412.041600pt;}
.y56{bottom:416.521600pt;}
.y10{bottom:425.801600pt;}
.y40{bottom:427.401600pt;}
.y31{bottom:430.281600pt;}
.y71{bottom:431.561600pt;}
.y55{bottom:436.041600pt;}
.yf{bottom:445.321600pt;}
.y3f{bottom:448.841600pt;}
.y70{bottom:450.761600pt;}
.y30{bottom:451.401600pt;}
.y54{bottom:455.241600pt;}
.ye{bottom:464.841600pt;}
.y3e{bottom:469.961600pt;}
.y6f{bottom:471.881600pt;}
.y2f{bottom:472.841600pt;}
.y53{bottom:476.361600pt;}
.y3d{bottom:491.401600pt;}
.yd{bottom:491.721600pt;}
.y6e{bottom:493.321600pt;}
.y2e{bottom:493.961600pt;}
.y52{bottom:497.801600pt;}
.y3c{bottom:512.841600pt;}
.y6d{bottom:514.441600pt;}
.y2d{bottom:515.401600pt;}
.y51{bottom:518.921600pt;}
.yc{bottom:527.241600pt;}
.y3b{bottom:527.881600pt;}
.y6c{bottom:535.881600pt;}
.y2c{bottom:536.521600pt;}
.y50{bottom:540.361600pt;}
.y6b{bottom:557.321600pt;}
.y2b{bottom:557.961600pt;}
.y4f{bottom:561.801600pt;}
.yb{bottom:568.201600pt;}
.y6a{bottom:576.841600pt;}
.y2a{bottom:579.081600pt;}
.y4e{bottom:581.321600pt;}
.y69{bottom:591.881600pt;}
.y4d{bottom:596.361600pt;}
.y29{bottom:600.521600pt;}
.y28{bottom:621.641600pt;}
.ya{bottom:630.601600pt;}
.y27{bottom:643.081600pt;}
.y26{bottom:664.201600pt;}
.y9{bottom:676.041600pt;}
.y25{bottom:685.641600pt;}
.y24{bottom:706.761600pt;}
.y8{bottom:721.801600pt;}
.y23{bottom:728.841600pt;}
.y22{bottom:753.481600pt;}
.y7{bottom:767.241600pt;}
.y21{bottom:777.801600pt;}
.y20{bottom:799.241600pt;}
.y6{bottom:813.001600pt;}
.y1f{bottom:820.361600pt;}
.y3a{bottom:833.801600pt;}
.y1e{bottom:841.801600pt;}
.y39{bottom:853.321600pt;}
.y5{bottom:858.441600pt;}
.y1d{bottom:863.561600pt;}
.y4c{bottom:872.841600pt;}
.y38{bottom:883.081600pt;}
.y1c{bottom:887.561600pt;}
.y68{bottom:892.361600pt;}
.y4{bottom:902.601600pt;}
.y1b{bottom:917.321600pt;}
.y67{bottom:922.121600pt;}
.y37{bottom:934.281600pt;}
.y3{bottom:953.801600pt;}
.y66{bottom:973.321600pt;}
.y1a{bottom:973.641600pt;}
.y2{bottom:993.161600pt;}
.y1{bottom:1012.681600pt;}
.h9{height:35.831250pt;}
.hf{height:39.243750pt;}
.h8{height:42.656250pt;}
.h3{height:42.687500pt;}
.hc{height:47.406250pt;}
.hb{height:48.062500pt;}
.he{height:51.031250pt;}
.hd{height:54.391250pt;}
.ha{height:55.825000pt;}
.h7{height:78.642500pt;}
.h4{height:99.815625pt;}
.h5{height:110.857500pt;}
.h6{height:144.375000pt;}
.h2{height:1108.000000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:779.034133pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:14.666667pt;}
.x2{left:80.131499pt;}
.x4{left:94.798165pt;}
.x3{left:98.048149pt;}
.x1d{left:98.987595pt;}
.x27{left:103.334603pt;}
.x25{left:106.113259pt;}
.x1c{left:110.675093pt;}
.x26{left:115.022101pt;}
.x24{left:117.800757pt;}
.x38{left:129.108683pt;}
.x35{left:130.283157pt;}
.xf{left:141.576811pt;}
.x3a{left:142.715467pt;}
.xe{left:153.264309pt;}
.x39{left:154.402965pt;}
.x17{left:168.460907pt;}
.x16{left:180.148405pt;}
.x8{left:184.618453pt;}
.x29{left:240.412075pt;}
.x11{left:248.368459pt;}
.x28{left:252.099573pt;}
.x10{left:260.055957pt;}
.x2b{left:267.489547pt;}
.x13{left:275.445931pt;}
.x2a{left:279.177045pt;}
.x19{left:284.698539pt;}
.x12{left:287.133429pt;}
.x18{left:296.386037pt;}
.x9{left:300.954389pt;}
.x3b{left:312.649685pt;}
.x5{left:351.024693pt;}
.x15{left:360.402187pt;}
.x14{left:372.089653pt;}
.x30{left:405.454987pt;}
.x2f{left:417.142453pt;}
.x1f{left:430.398347pt;}
.x23{left:431.429707pt;}
.x1b{left:437.201867pt;}
.x1e{left:442.085813pt;}
.x22{left:443.117173pt;}
.x1a{left:448.889333pt;}
.x2d{left:454.711627pt;}
.x2c{left:466.399093pt;}
.x37{left:481.867787pt;}
.x36{left:493.555253pt;}
.x32{left:527.106827pt;}
.x21{left:530.716107pt;}
.xc{left:537.678133pt;}
.x31{left:538.794293pt;}
.x20{left:542.403573pt;}
.x7{left:547.278133pt;}
.x34{left:554.184267pt;}
.x33{left:565.871733pt;}
.xd{left:614.283253pt;}
.x6{left:615.915253pt;}
.xb{left:655.399733pt;}
.x3c{left:663.123573pt;}
.x2e{left:665.938613pt;}
.xa{left:699.598133pt;}
}




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