
    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_d82d6ef7c952313d7a6be192.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7309e330a04d9d3328e58385.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_fb60531c4f22291914e1e1f7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.925781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_46eb088808fc517d18d40aac.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_2baf5509469e8261855bf93b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_04a1498bffd17e8634525d93.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_a607bd9d85b94a1fca2f90bc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_b6305b060b53f48bb732511b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.849000;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_f21c3ef0ca2ed2c446aab944.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_996e756119e2e54901aa139c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.014000;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_5aba555584764cd853fe40f1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_21b7299733dc4b28005545a2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.922852;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_b1428bcb978374ad9794b2de.woff')format("woff");}.ffd{font-family:ffd;line-height:0.925781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-16.830000px;}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.800000px;}
.v2{vertical-align:181.200600px;}
.ls28{letter-spacing:-3.240000px;}
.ls8{letter-spacing:-0.648000px;}
.ls2c{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.475200px;}
.lse{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.864000px;}
.ls1e{letter-spacing:0.936000px;}
.ls10{letter-spacing:1.152000px;}
.lsf{letter-spacing:1.872000px;}
.ls1a{letter-spacing:1.944000px;}
.ls22{letter-spacing:2.880000px;}
.ls1d{letter-spacing:3.391200px;}
.ls18{letter-spacing:3.456000px;}
.ls25{letter-spacing:3.643200px;}
.ls1{letter-spacing:4.260000px;}
.ls3{letter-spacing:4.560000px;}
.ls2b{letter-spacing:4.752000px;}
.ls24{letter-spacing:5.637600px;}
.ls26{letter-spacing:6.919200px;}
.ls27{letter-spacing:6.984000px;}
.ls1b{letter-spacing:7.128000px;}
.ls0{letter-spacing:8.436000px;}
.ls29{letter-spacing:8.460000px;}
.ls23{letter-spacing:9.504000px;}
.ls4{letter-spacing:10.649241px;}
.ls2{letter-spacing:10.740000px;}
.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;}
}
.ws3c{word-spacing:-25.320000px;}
.ws20{word-spacing:-21.096000px;}
.ws11{word-spacing:-20.232000px;}
.ws14{word-spacing:-19.584000px;}
.ws1f{word-spacing:-18.360000px;}
.ws2a{word-spacing:-18.288000px;}
.ws21{word-spacing:-18.216000px;}
.ws22{word-spacing:-18.144000px;}
.ws35{word-spacing:-18.072000px;}
.ws13{word-spacing:-17.784000px;}
.ws2b{word-spacing:-17.640000px;}
.ws12{word-spacing:-17.496000px;}
.ws2c{word-spacing:-17.424000px;}
.ws29{word-spacing:-17.280000px;}
.ws1{word-spacing:-16.860000px;}
.ws40{word-spacing:-14.820000px;}
.ws41{word-spacing:-14.220000px;}
.ws3d{word-spacing:-11.856000px;}
.ws15{word-spacing:-11.802000px;}
.ws10{word-spacing:-8.496000px;}
.ws32{word-spacing:-4.176000px;}
.ws2e{word-spacing:-0.936000px;}
.ws26{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.792000px;}
.ws25{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.648000px;}
.ws24{word-spacing:-0.576000px;}
.ws18{word-spacing:-0.504000px;}
.ws9{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.216000px;}
.ws28{word-spacing:-0.144000px;}
.ws34{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:0.072000px;}
.ws2f{word-spacing:0.144000px;}
.ws19{word-spacing:0.216000px;}
.ws1b{word-spacing:0.288000px;}
.wsb{word-spacing:0.360000px;}
.ws33{word-spacing:0.432000px;}
.wsc{word-spacing:0.504000px;}
.wse{word-spacing:0.576000px;}
.ws42{word-spacing:0.600000px;}
.ws8{word-spacing:0.648000px;}
.ws7{word-spacing:0.672000px;}
.ws3f{word-spacing:1.440000px;}
.ws3e{word-spacing:1.584000px;}
.ws6{word-spacing:1.800000px;}
.ws1d{word-spacing:1.872000px;}
.ws39{word-spacing:1.944000px;}
.ws2d{word-spacing:2.232000px;}
.ws1e{word-spacing:2.400000px;}
.ws37{word-spacing:3.240000px;}
.ws3a{word-spacing:3.312000px;}
.ws1a{word-spacing:3.600000px;}
.ws3{word-spacing:3.720000px;}
.ws38{word-spacing:3.816000px;}
.ws30{word-spacing:3.888000px;}
.ws16{word-spacing:4.200000px;}
.ws36{word-spacing:4.680000px;}
.ws17{word-spacing:6.984000px;}
.ws3b{word-spacing:7.560000px;}
.ws5{word-spacing:8.400000px;}
.ws27{word-spacing:10.152000px;}
.ws4{word-spacing:75.180000px;}
.ws0{word-spacing:146.196000px;}
._13{margin-left:-948.820800px;}
._14{margin-left:-14.839200px;}
._2{margin-left:-12.876000px;}
._17{margin-left:-11.846400px;}
._18{margin-left:-10.512000px;}
._19{margin-left:-8.824800px;}
._c{margin-left:-7.264800px;}
._4{margin-left:-6.048000px;}
._12{margin-left:-4.932000px;}
._9{margin-left:-3.504000px;}
._8{margin-left:-2.124000px;}
._1{margin-left:-1.068000px;}
._11{width:1.015200px;}
._7{width:2.124000px;}
._b{width:3.124800px;}
._0{width:4.284000px;}
._d{width:5.551200px;}
._f{width:6.696000px;}
._a{width:8.568000px;}
._10{width:9.612000px;}
._e{width:10.627200px;}
._16{width:11.635200px;}
._3{width:17.880000px;}
._5{width:27.810000px;}
._15{width:31.646100px;}
._6{width:71.460000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs5{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:426.053400px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y3{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y92{bottom:117.294000px;}
.y6a{bottom:118.110000px;}
.y23{bottom:120.362550px;}
.y46{bottom:121.207500px;}
.y91{bottom:135.894000px;}
.y69{bottom:141.204000px;}
.y22{bottom:143.006550px;}
.y90{bottom:154.494000px;}
.y45{bottom:162.000000px;}
.y68{bottom:164.298000px;}
.y21{bottom:165.650550px;}
.y8f{bottom:179.502000px;}
.y44{bottom:184.500000px;}
.y67{bottom:187.392000px;}
.y20{bottom:188.294550px;}
.y8e{bottom:195.858000px;}
.y43{bottom:207.000000px;}
.y66{bottom:210.486000px;}
.y1f{bottom:210.938550px;}
.y42{bottom:229.500000px;}
.y65{bottom:233.580000px;}
.y1e{bottom:233.582550px;}
.y8d{bottom:236.058000px;}
.y8c{bottom:250.902000px;}
.y41{bottom:252.000000px;}
.y1d{bottom:256.226550px;}
.y64{bottom:256.674000px;}
.y8b{bottom:265.758000px;}
.y40{bottom:274.500000px;}
.y1c{bottom:278.870550px;}
.y63{bottom:279.768000px;}
.y8a{bottom:280.602000px;}
.y89{bottom:295.446000px;}
.y3f{bottom:297.000000px;}
.y1b{bottom:301.514550px;}
.y62{bottom:302.862000px;}
.y88{bottom:310.290000px;}
.y3e{bottom:319.500000px;}
.y1a{bottom:324.158550px;}
.y87{bottom:325.134000px;}
.y61{bottom:325.956000px;}
.y86{bottom:339.990000px;}
.y3d{bottom:342.000000px;}
.y19{bottom:346.802550px;}
.y60{bottom:349.050000px;}
.y85{bottom:354.834000px;}
.y3c{bottom:364.500000px;}
.y18{bottom:369.446550px;}
.y84{bottom:369.678000px;}
.y5f{bottom:372.144000px;}
.y83{bottom:384.522000px;}
.y3b{bottom:387.000000px;}
.y17{bottom:392.090550px;}
.y5e{bottom:395.238000px;}
.y82{bottom:399.366000px;}
.y3a{bottom:409.500000px;}
.y81{bottom:414.222000px;}
.y16{bottom:414.734550px;}
.y5d{bottom:418.332000px;}
.y39{bottom:432.000000px;}
.y80{bottom:435.450000px;}
.y15{bottom:437.378550px;}
.ya7{bottom:439.500000px;}
.y5c{bottom:441.426000px;}
.y38{bottom:454.500000px;}
.ya6{bottom:458.250000px;}
.y14{bottom:460.022550px;}
.y5b{bottom:464.520000px;}
.y37{bottom:477.000000px;}
.y7f{bottom:480.036000px;}
.y13{bottom:482.666550px;}
.y5a{bottom:487.614000px;}
.ya5{bottom:495.750000px;}
.y36{bottom:499.500000px;}
.y7e{bottom:502.392000px;}
.y12{bottom:505.310550px;}
.y59{bottom:510.708000px;}
.y35{bottom:522.000000px;}
.y7d{bottom:524.748000px;}
.y11{bottom:527.954550px;}
.ya4{bottom:533.250000px;}
.y58{bottom:533.802000px;}
.y34{bottom:544.500000px;}
.y7c{bottom:547.104000px;}
.y10{bottom:550.598550px;}
.y57{bottom:556.896000px;}
.y33{bottom:567.000000px;}
.y7b{bottom:569.460000px;}
.yf{bottom:573.242550px;}
.ya3{bottom:574.500000px;}
.y56{bottom:579.990000px;}
.y32{bottom:589.500000px;}
.y7a{bottom:591.816000px;}
.ya2{bottom:593.250000px;}
.ye{bottom:595.886550px;}
.y55{bottom:603.084000px;}
.y31{bottom:612.000000px;}
.y79{bottom:614.172000px;}
.yb{bottom:618.518400px;}
.yd{bottom:618.530550px;}
.y54{bottom:626.178000px;}
.ya1{bottom:630.750000px;}
.y30{bottom:634.500000px;}
.y78{bottom:636.528000px;}
.yc{bottom:641.174550px;}
.y53{bottom:649.272000px;}
.ya0{bottom:649.500000px;}
.y2f{bottom:657.000000px;}
.y77{bottom:658.884000px;}
.y9f{bottom:668.250000px;}
.y52{bottom:672.366000px;}
.y2e{bottom:679.500000px;}
.y76{bottom:681.240000px;}
.y9e{bottom:687.000000px;}
.y51{bottom:695.460000px;}
.y2d{bottom:702.000000px;}
.y75{bottom:703.596000px;}
.y9d{bottom:705.750000px;}
.ya{bottom:708.968550px;}
.y50{bottom:718.554000px;}
.y2c{bottom:724.500000px;}
.y74{bottom:725.952000px;}
.y9{bottom:727.718550px;}
.y4f{bottom:741.648000px;}
.y9c{bottom:743.250000px;}
.y2b{bottom:747.000000px;}
.y73{bottom:748.308000px;}
.y9b{bottom:762.000000px;}
.y4e{bottom:764.742000px;}
.y2a{bottom:769.500000px;}
.y8{bottom:769.854300px;}
.y72{bottom:770.664000px;}
.y9a{bottom:780.750000px;}
.y4d{bottom:787.836000px;}
.y29{bottom:792.000000px;}
.y7{bottom:792.354300px;}
.y71{bottom:793.020000px;}
.y99{bottom:799.500000px;}
.y4c{bottom:810.930000px;}
.y28{bottom:814.500000px;}
.y70{bottom:815.376000px;}
.y98{bottom:818.250000px;}
.y4b{bottom:834.024000px;}
.y27{bottom:837.000000px;}
.y6f{bottom:837.732000px;}
.y97{bottom:855.750000px;}
.y4a{bottom:857.118000px;}
.y6{bottom:859.500000px;}
.y6e{bottom:860.088000px;}
.y96{bottom:874.500000px;}
.y49{bottom:880.212000px;}
.y26{bottom:882.000000px;}
.y6d{bottom:882.444000px;}
.y5{bottom:889.500000px;}
.y95{bottom:893.250000px;}
.y48{bottom:903.306000px;}
.y25{bottom:904.500000px;}
.y6c{bottom:904.800000px;}
.y94{bottom:912.000000px;}
.y4{bottom:919.500000px;}
.y47{bottom:926.400000px;}
.y24{bottom:927.000000px;}
.y6b{bottom:927.150000px;}
.y93{bottom:930.750000px;}
.h8{height:24.630908px;}
.hc{height:33.117188px;}
.ha{height:39.072000px;}
.hb{height:40.757812px;}
.h2{height:41.396484px;}
.h9{height:48.840000px;}
.h5{height:50.580000px;}
.h1{height:50.947266px;}
.hd{height:55.463086px;}
.h6{height:61.136719px;}
.h3{height:82.792969px;}
.h4{height:101.894531px;}
.h7{height:298.237380px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x5{left:82.387950px;}
.x4{left:111.169950px;}
.x7{left:112.500000px;}
.x8{left:127.404000px;}
.x2{left:135.000000px;}
.x9{left:180.528450px;}
.x3{left:256.185000px;}
.x6{left:625.781250px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.600000pt;}
.v2{vertical-align:161.067200pt;}
.ls28{letter-spacing:-2.880000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls2c{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.422400pt;}
.lse{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.832000pt;}
.ls10{letter-spacing:1.024000pt;}
.lsf{letter-spacing:1.664000pt;}
.ls1a{letter-spacing:1.728000pt;}
.ls22{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:3.014400pt;}
.ls18{letter-spacing:3.072000pt;}
.ls25{letter-spacing:3.238400pt;}
.ls1{letter-spacing:3.786667pt;}
.ls3{letter-spacing:4.053333pt;}
.ls2b{letter-spacing:4.224000pt;}
.ls24{letter-spacing:5.011200pt;}
.ls26{letter-spacing:6.150400pt;}
.ls27{letter-spacing:6.208000pt;}
.ls1b{letter-spacing:6.336000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls29{letter-spacing:7.520000pt;}
.ls23{letter-spacing:8.448000pt;}
.ls4{letter-spacing:9.465992pt;}
.ls2{letter-spacing:9.546667pt;}
.ws3c{word-spacing:-22.506667pt;}
.ws20{word-spacing:-18.752000pt;}
.ws11{word-spacing:-17.984000pt;}
.ws14{word-spacing:-17.408000pt;}
.ws1f{word-spacing:-16.320000pt;}
.ws2a{word-spacing:-16.256000pt;}
.ws21{word-spacing:-16.192000pt;}
.ws22{word-spacing:-16.128000pt;}
.ws35{word-spacing:-16.064000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws2b{word-spacing:-15.680000pt;}
.ws12{word-spacing:-15.552000pt;}
.ws2c{word-spacing:-15.488000pt;}
.ws29{word-spacing:-15.360000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws40{word-spacing:-13.173333pt;}
.ws41{word-spacing:-12.640000pt;}
.ws3d{word-spacing:-10.538667pt;}
.ws15{word-spacing:-10.490667pt;}
.ws10{word-spacing:-7.552000pt;}
.ws32{word-spacing:-3.712000pt;}
.ws2e{word-spacing:-0.832000pt;}
.ws26{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.704000pt;}
.ws25{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.576000pt;}
.ws24{word-spacing:-0.512000pt;}
.ws18{word-spacing:-0.448000pt;}
.ws9{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.192000pt;}
.ws28{word-spacing:-0.128000pt;}
.ws34{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:0.064000pt;}
.ws2f{word-spacing:0.128000pt;}
.ws19{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.256000pt;}
.wsb{word-spacing:0.320000pt;}
.ws33{word-spacing:0.384000pt;}
.wsc{word-spacing:0.448000pt;}
.wse{word-spacing:0.512000pt;}
.ws42{word-spacing:0.533333pt;}
.ws8{word-spacing:0.576000pt;}
.ws7{word-spacing:0.597333pt;}
.ws3f{word-spacing:1.280000pt;}
.ws3e{word-spacing:1.408000pt;}
.ws6{word-spacing:1.600000pt;}
.ws1d{word-spacing:1.664000pt;}
.ws39{word-spacing:1.728000pt;}
.ws2d{word-spacing:1.984000pt;}
.ws1e{word-spacing:2.133333pt;}
.ws37{word-spacing:2.880000pt;}
.ws3a{word-spacing:2.944000pt;}
.ws1a{word-spacing:3.200000pt;}
.ws3{word-spacing:3.306667pt;}
.ws38{word-spacing:3.392000pt;}
.ws30{word-spacing:3.456000pt;}
.ws16{word-spacing:3.733333pt;}
.ws36{word-spacing:4.160000pt;}
.ws17{word-spacing:6.208000pt;}
.ws3b{word-spacing:6.720000pt;}
.ws5{word-spacing:7.466667pt;}
.ws27{word-spacing:9.024000pt;}
.ws4{word-spacing:66.826667pt;}
.ws0{word-spacing:129.952000pt;}
._13{margin-left:-843.396267pt;}
._14{margin-left:-13.190400pt;}
._2{margin-left:-11.445333pt;}
._17{margin-left:-10.530133pt;}
._18{margin-left:-9.344000pt;}
._19{margin-left:-7.844267pt;}
._c{margin-left:-6.457600pt;}
._4{margin-left:-5.376000pt;}
._12{margin-left:-4.384000pt;}
._9{margin-left:-3.114667pt;}
._8{margin-left:-1.888000pt;}
._1{margin-left:-0.949333pt;}
._11{width:0.902400pt;}
._7{width:1.888000pt;}
._b{width:2.777600pt;}
._0{width:3.808000pt;}
._d{width:4.934400pt;}
._f{width:5.952000pt;}
._a{width:7.616000pt;}
._10{width:8.544000pt;}
._e{width:9.446400pt;}
._16{width:10.342400pt;}
._3{width:15.893333pt;}
._5{width:24.720000pt;}
._15{width:28.129867pt;}
._6{width:63.520000pt;}
.fs6{font-size:31.733333pt;}
.fs5{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:378.714133pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y3{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y92{bottom:104.261333pt;}
.y6a{bottom:104.986667pt;}
.y23{bottom:106.988933pt;}
.y46{bottom:107.740000pt;}
.y91{bottom:120.794667pt;}
.y69{bottom:125.514667pt;}
.y22{bottom:127.116933pt;}
.y90{bottom:137.328000pt;}
.y45{bottom:144.000000pt;}
.y68{bottom:146.042667pt;}
.y21{bottom:147.244933pt;}
.y8f{bottom:159.557333pt;}
.y44{bottom:164.000000pt;}
.y67{bottom:166.570667pt;}
.y20{bottom:167.372933pt;}
.y8e{bottom:174.096000pt;}
.y43{bottom:184.000000pt;}
.y66{bottom:187.098667pt;}
.y1f{bottom:187.500933pt;}
.y42{bottom:204.000000pt;}
.y65{bottom:207.626667pt;}
.y1e{bottom:207.628933pt;}
.y8d{bottom:209.829333pt;}
.y8c{bottom:223.024000pt;}
.y41{bottom:224.000000pt;}
.y1d{bottom:227.756933pt;}
.y64{bottom:228.154667pt;}
.y8b{bottom:236.229333pt;}
.y40{bottom:244.000000pt;}
.y1c{bottom:247.884933pt;}
.y63{bottom:248.682667pt;}
.y8a{bottom:249.424000pt;}
.y89{bottom:262.618667pt;}
.y3f{bottom:264.000000pt;}
.y1b{bottom:268.012933pt;}
.y62{bottom:269.210667pt;}
.y88{bottom:275.813333pt;}
.y3e{bottom:284.000000pt;}
.y1a{bottom:288.140933pt;}
.y87{bottom:289.008000pt;}
.y61{bottom:289.738667pt;}
.y86{bottom:302.213333pt;}
.y3d{bottom:304.000000pt;}
.y19{bottom:308.268933pt;}
.y60{bottom:310.266667pt;}
.y85{bottom:315.408000pt;}
.y3c{bottom:324.000000pt;}
.y18{bottom:328.396933pt;}
.y84{bottom:328.602667pt;}
.y5f{bottom:330.794667pt;}
.y83{bottom:341.797333pt;}
.y3b{bottom:344.000000pt;}
.y17{bottom:348.524933pt;}
.y5e{bottom:351.322667pt;}
.y82{bottom:354.992000pt;}
.y3a{bottom:364.000000pt;}
.y81{bottom:368.197333pt;}
.y16{bottom:368.652933pt;}
.y5d{bottom:371.850667pt;}
.y39{bottom:384.000000pt;}
.y80{bottom:387.066667pt;}
.y15{bottom:388.780933pt;}
.ya7{bottom:390.666667pt;}
.y5c{bottom:392.378667pt;}
.y38{bottom:404.000000pt;}
.ya6{bottom:407.333333pt;}
.y14{bottom:408.908933pt;}
.y5b{bottom:412.906667pt;}
.y37{bottom:424.000000pt;}
.y7f{bottom:426.698667pt;}
.y13{bottom:429.036933pt;}
.y5a{bottom:433.434667pt;}
.ya5{bottom:440.666667pt;}
.y36{bottom:444.000000pt;}
.y7e{bottom:446.570667pt;}
.y12{bottom:449.164933pt;}
.y59{bottom:453.962667pt;}
.y35{bottom:464.000000pt;}
.y7d{bottom:466.442667pt;}
.y11{bottom:469.292933pt;}
.ya4{bottom:474.000000pt;}
.y58{bottom:474.490667pt;}
.y34{bottom:484.000000pt;}
.y7c{bottom:486.314667pt;}
.y10{bottom:489.420933pt;}
.y57{bottom:495.018667pt;}
.y33{bottom:504.000000pt;}
.y7b{bottom:506.186667pt;}
.yf{bottom:509.548933pt;}
.ya3{bottom:510.666667pt;}
.y56{bottom:515.546667pt;}
.y32{bottom:524.000000pt;}
.y7a{bottom:526.058667pt;}
.ya2{bottom:527.333333pt;}
.ye{bottom:529.676933pt;}
.y55{bottom:536.074667pt;}
.y31{bottom:544.000000pt;}
.y79{bottom:545.930667pt;}
.yb{bottom:549.794133pt;}
.yd{bottom:549.804933pt;}
.y54{bottom:556.602667pt;}
.ya1{bottom:560.666667pt;}
.y30{bottom:564.000000pt;}
.y78{bottom:565.802667pt;}
.yc{bottom:569.932933pt;}
.y53{bottom:577.130667pt;}
.ya0{bottom:577.333333pt;}
.y2f{bottom:584.000000pt;}
.y77{bottom:585.674667pt;}
.y9f{bottom:594.000000pt;}
.y52{bottom:597.658667pt;}
.y2e{bottom:604.000000pt;}
.y76{bottom:605.546667pt;}
.y9e{bottom:610.666667pt;}
.y51{bottom:618.186667pt;}
.y2d{bottom:624.000000pt;}
.y75{bottom:625.418667pt;}
.y9d{bottom:627.333333pt;}
.ya{bottom:630.194267pt;}
.y50{bottom:638.714667pt;}
.y2c{bottom:644.000000pt;}
.y74{bottom:645.290667pt;}
.y9{bottom:646.860933pt;}
.y4f{bottom:659.242667pt;}
.y9c{bottom:660.666667pt;}
.y2b{bottom:664.000000pt;}
.y73{bottom:665.162667pt;}
.y9b{bottom:677.333333pt;}
.y4e{bottom:679.770667pt;}
.y2a{bottom:684.000000pt;}
.y8{bottom:684.314933pt;}
.y72{bottom:685.034667pt;}
.y9a{bottom:694.000000pt;}
.y4d{bottom:700.298667pt;}
.y29{bottom:704.000000pt;}
.y7{bottom:704.314933pt;}
.y71{bottom:704.906667pt;}
.y99{bottom:710.666667pt;}
.y4c{bottom:720.826667pt;}
.y28{bottom:724.000000pt;}
.y70{bottom:724.778667pt;}
.y98{bottom:727.333333pt;}
.y4b{bottom:741.354667pt;}
.y27{bottom:744.000000pt;}
.y6f{bottom:744.650667pt;}
.y97{bottom:760.666667pt;}
.y4a{bottom:761.882667pt;}
.y6{bottom:764.000000pt;}
.y6e{bottom:764.522667pt;}
.y96{bottom:777.333333pt;}
.y49{bottom:782.410667pt;}
.y26{bottom:784.000000pt;}
.y6d{bottom:784.394667pt;}
.y5{bottom:790.666667pt;}
.y95{bottom:794.000000pt;}
.y48{bottom:802.938667pt;}
.y25{bottom:804.000000pt;}
.y6c{bottom:804.266667pt;}
.y94{bottom:810.666667pt;}
.y4{bottom:817.333333pt;}
.y47{bottom:823.466667pt;}
.y24{bottom:824.000000pt;}
.y6b{bottom:824.133333pt;}
.y93{bottom:827.333333pt;}
.h8{height:21.894141pt;}
.hc{height:29.437500pt;}
.ha{height:34.730667pt;}
.hb{height:36.229167pt;}
.h2{height:36.796875pt;}
.h9{height:43.413333pt;}
.h5{height:44.960000pt;}
.h1{height:45.286458pt;}
.hd{height:49.300521pt;}
.h6{height:54.343750pt;}
.h3{height:73.593750pt;}
.h4{height:90.572917pt;}
.h7{height:265.099893pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x5{left:73.233733pt;}
.x4{left:98.817733pt;}
.x7{left:100.000000pt;}
.x8{left:113.248000pt;}
.x2{left:120.000000pt;}
.x9{left:160.469733pt;}
.x3{left:227.720000pt;}
.x6{left:556.250000pt;}
}




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