
    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_73e97eff4f4ffb84aad23201.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_79d65cc91d3eea05bd1d834d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_72f4529395333b57c479973c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_2b46a97e9bcb2cb6461e2219.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.656000;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_5dac76a64731c3faebd41dad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_bfc3151cffe3ca2f1fa9dc4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_463ecd8705404bc6972597a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_f84dd358cf17633b4ad96ab4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_52a21b69cdf17a0e50e48c43.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.389000;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_817d8c440b0b985f755e0747.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.732000;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_c081028cd70c5cd8160f8e2a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.628000;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_06c1e00a1c4f325bdee51e53.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_8377b1943c889f72af3c1d41.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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(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:-23.754000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.024000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:62.184000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.010043px;}
.ls19{letter-spacing:0.011350px;}
.ls9{letter-spacing:0.012860px;}
.lsd{letter-spacing:0.021055px;}
.lsa{letter-spacing:0.022714px;}
.ls10{letter-spacing:0.654546px;}
.ls1a{letter-spacing:2.336652px;}
.ls16{letter-spacing:2.348156px;}
.ls7{letter-spacing:2.356366px;}
.ls1b{letter-spacing:2.981971px;}
.ls15{letter-spacing:2.985072px;}
.ls0{letter-spacing:2.986053px;}
.lse{letter-spacing:2.987971px;}
.ls13{letter-spacing:2.991072px;}
.ls11{letter-spacing:3.600003px;}
.ls3{letter-spacing:4.712731px;}
.lsc{letter-spacing:10.865464px;}
.ls18{letter-spacing:14.530921px;}
.ls17{letter-spacing:17.531971px;}
.ls8{letter-spacing:18.130924px;}
.lsb{letter-spacing:18.196379px;}
.ls14{letter-spacing:21.171072px;}
.lsf{letter-spacing:25.461839px;}
.ls5{letter-spacing:26.443658px;}
.ls6{letter-spacing:28.734569px;}
.ls1c{letter-spacing:30.632753px;}
.ls4{letter-spacing:31.483663px;}
.ls2{letter-spacing:32.727300px;}
.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;}
}
.ws37{word-spacing:-47.258221px;}
.ws3a{word-spacing:-42.637126px;}
.ws3d{word-spacing:-33.211407px;}
.ws10{word-spacing:-22.416000px;}
.ws21{word-spacing:-18.183288px;}
.ws38{word-spacing:-17.598287px;}
.ws40{word-spacing:-10.488287px;}
.ws3b{word-spacing:-10.326287px;}
.ws39{word-spacing:-6.690287px;}
.wsa{word-spacing:-1.492365px;}
.ws25{word-spacing:-1.335274px;}
.ws1e{word-spacing:-1.099637px;}
.wse{word-spacing:-0.968728px;}
.ws3f{word-spacing:-0.183273px;}
.ws41{word-spacing:-0.117818px;}
.wsf{word-spacing:0.000000px;}
.ws3c{word-spacing:0.013091px;}
.ws17{word-spacing:0.144000px;}
.ws4d{word-spacing:0.340364px;}
.ws4a{word-spacing:0.405819px;}
.ws7{word-spacing:1.191274px;}
.ws26{word-spacing:1.322183px;}
.ws20{word-spacing:1.518547px;}
.ws1a{word-spacing:2.107638px;}
.ws27{word-spacing:2.395638px;}
.ws9{word-spacing:2.500366px;}
.ws2b{word-spacing:2.762184px;}
.ws18{word-spacing:3.220366px;}
.ws4f{word-spacing:3.299613px;}
.ws4e{word-spacing:3.416730px;}
.ws4{word-spacing:3.613094px;}
.ws13{word-spacing:3.678549px;}
.ws1d{word-spacing:3.744003px;}
.ws3e{word-spacing:4.071276px;}
.ws12{word-spacing:4.162913px;}
.ws48{word-spacing:4.464004px;}
.ws22{word-spacing:4.483200px;}
.ws46{word-spacing:4.529458px;}
.wsd{word-spacing:4.922186px;}
.ws45{word-spacing:4.987641px;}
.ws28{word-spacing:5.118550px;}
.ws2a{word-spacing:5.380368px;}
.wsb{word-spacing:5.576732px;}
.wsc{word-spacing:5.707641px;}
.ws50{word-spacing:6.121021px;}
.ws29{word-spacing:6.362187px;}
.ws2d{word-spacing:6.427642px;}
.ws2e{word-spacing:6.493096px;}
.ws1b{word-spacing:6.702551px;}
.ws23{word-spacing:6.781097px;}
.ws8{word-spacing:7.278552px;}
.ws2c{word-spacing:7.435643px;}
.ws2f{word-spacing:7.474915px;}
.ws43{word-spacing:7.605825px;}
.ws36{word-spacing:8.260371px;}
.ws47{word-spacing:9.045826px;}
.ws4b{word-spacing:9.242190px;}
.ws24{word-spacing:9.504008px;}
.ws30{word-spacing:9.569463px;}
.ws15{word-spacing:10.093099px;}
.ws49{word-spacing:10.224009px;}
.ws4c{word-spacing:10.616736px;}
.ws1c{word-spacing:10.813100px;}
.ws5{word-spacing:10.878555px;}
.ws16{word-spacing:11.074918px;}
.ws33{word-spacing:11.729464px;}
.ws34{word-spacing:11.794919px;}
.ws1f{word-spacing:12.907647px;}
.ws19{word-spacing:13.104011px;}
.ws35{word-spacing:14.609467px;}
.ws44{word-spacing:14.949831px;}
.ws32{word-spacing:15.198558px;}
.ws31{word-spacing:15.997104px;}
.ws2{word-spacing:26.253619px;}
.ws0{word-spacing:31.322414px;}
.ws3{word-spacing:31.504255px;}
.ws11{word-spacing:39.639306px;}
.ws6{word-spacing:47.513763px;}
.ws1{word-spacing:54.432472px;}
.ws14{word-spacing:58.281600px;}
.ws42{word-spacing:99.202992px;}
._13{margin-left:-7.069097px;}
._3{margin-left:-5.432732px;}
._a{margin-left:-3.925487px;}
._1{margin-left:-2.223667px;}
._8{margin-left:-1.050852px;}
._1e{width:1.172815px;}
._2{width:2.223667px;}
._0{width:4.312955px;}
._6{width:17.738197px;}
._28{width:19.307318px;}
._22{width:20.558112px;}
._21{width:22.450928px;}
._7{width:24.803715px;}
._24{width:25.861724px;}
._4{width:26.900051px;}
._5{width:29.125508px;}
._1c{width:31.547328px;}
._d{width:33.447301px;}
._9{width:34.887302px;}
._25{width:39.927306px;}
._26{width:43.801652px;}
._1b{width:48.829132px;}
._29{width:49.876405px;}
._1d{width:52.230982px;}
._1f{width:57.474506px;}
._c{width:60.545505px;}
._27{width:62.325640px;}
._10{width:66.894601px;}
._23{width:75.272790px;}
._20{width:80.697600px;}
._15{width:862.295322px;}
._18{width:971.668169px;}
._f{width:1044.657205px;}
._e{width:1389.270307px;}
._16{width:1411.986631px;}
._12{width:1458.721216px;}
._11{width:1568.554034px;}
._17{width:1634.528693px;}
._14{width:1656.001380px;}
._b{width:2079.361733px;}
._1a{width:2134.278142px;}
._19{width:2150.986541px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y35{bottom:93.813000px;}
.y34{bottom:176.005500px;}
.y33{bottom:196.329000px;}
.y57{bottom:216.652500px;}
.y32{bottom:236.551500px;}
.y56{bottom:236.976000px;}
.y73{bottom:237.634500px;}
.y55{bottom:257.301000px;}
.y72{bottom:257.958000px;}
.y31{bottom:274.213500px;}
.y54{bottom:289.986000px;}
.y71{bottom:296.385000px;}
.y53{bottom:310.309500px;}
.y30{bottom:322.596000px;}
.y52{bottom:330.633000px;}
.y2f{bottom:342.919500px;}
.y70{bottom:346.654500px;}
.y2e{bottom:363.243000px;}
.y51{bottom:363.318000px;}
.y6f{bottom:366.979500px;}
.y13{bottom:379.552500px;}
.y50{bottom:383.641500px;}
.y2d{bottom:383.959500px;}
.y6e{bottom:387.303000px;}
.y12{bottom:399.877500px;}
.y2c{bottom:404.284500px;}
.y6d{bottom:407.626500px;}
.y4f{bottom:418.117500px;}
.y11{bottom:420.201000px;}
.y2b{bottom:424.608000px;}
.y6c{bottom:436.320000px;}
.y10{bottom:440.524500px;}
.y2a{bottom:444.931500px;}
.y6b{bottom:456.643500px;}
.y4e{bottom:460.107000px;}
.yf{bottom:460.848000px;}
.y29{bottom:465.255000px;}
.y4d{bottom:480.430500px;}
.ye{bottom:481.171500px;}
.y28{bottom:485.971500px;}
.y6a{bottom:496.036500px;}
.y4c{bottom:500.754000px;}
.yd{bottom:501.496500px;}
.y27{bottom:506.296500px;}
.yc{bottom:521.820000px;}
.y26{bottom:526.620000px;}
.y4b{bottom:527.992500px;}
.y69{bottom:534.772500px;}
.yb{bottom:542.143500px;}
.y25{bottom:547.336500px;}
.y68{bottom:555.754500px;}
.y4a{bottom:561.955500px;}
.ya{bottom:562.467000px;}
.y24{bottom:567.660000px;}
.y67{bottom:576.078000px;}
.y9{bottom:582.790500px;}
.y23{bottom:587.983500px;}
.y49{bottom:590.287500px;}
.y8{bottom:603.115500px;}
.y22{bottom:608.308500px;}
.y48{bottom:610.611000px;}
.y66{bottom:614.505000px;}
.y47{bottom:638.943000px;}
.y7{bottom:642.865500px;}
.y21{bottom:645.970500px;}
.y46{bottom:659.266500px;}
.y65{bottom:664.776000px;}
.y6{bottom:679.588500px;}
.y64{bottom:685.099500px;}
.y45{bottom:687.598500px;}
.y20{bottom:696.234000px;}
.y5{bottom:708.321000px;}
.y44{bottom:719.194500px;}
.y63{bottom:721.651500px;}
.y1f{bottom:733.708500px;}
.y62{bottom:742.345500px;}
.y82{bottom:745.687500px;}
.y43{bottom:750.790500px;}
.y81{bottom:771.091500px;}
.y1e{bottom:771.181500px;}
.y42{bottom:779.122500px;}
.y61{bottom:782.616000px;}
.y80{bottom:796.497000px;}
.y41{bottom:799.446000px;}
.y1d{bottom:808.654500px;}
.y60{bottom:812.982000px;}
.y7f{bottom:814.429500px;}
.y40{bottom:819.769500px;}
.y4{bottom:822.820500px;}
.y1c{bottom:829.450500px;}
.y7e{bottom:839.833500px;}
.y3f{bottom:847.009500px;}
.y1b{bottom:850.246500px;}
.y5f{bottom:853.270500px;}
.y7d{bottom:857.766000px;}
.y3{bottom:860.101500px;}
.y3e{bottom:881.485500px;}
.y7c{bottom:883.171500px;}
.y1a{bottom:887.719500px;}
.y5e{bottom:892.663500px;}
.y7b{bottom:901.104000px;}
.y2{bottom:904.933500px;}
.y3d{bottom:923.473500px;}
.y19{bottom:925.192500px;}
.y5d{bottom:931.399500px;}
.y7a{bottom:935.241000px;}
.y18{bottom:945.988500px;}
.y5c{bottom:952.380000px;}
.y3c{bottom:955.071000px;}
.y17{bottom:966.784500px;}
.y79{bottom:980.821500px;}
.y3b{bottom:986.667000px;}
.y5b{bottom:991.116000px;}
.y78{bottom:1001.145000px;}
.y16{bottom:1004.257500px;}
.y3a{bottom:1014.999000px;}
.y77{bottom:1021.470000px;}
.y5a{bottom:1029.852000px;}
.y15{bottom:1041.730500px;}
.y76{bottom:1041.793500px;}
.y39{bottom:1046.725500px;}
.y59{bottom:1050.175500px;}
.y75{bottom:1062.117000px;}
.y38{bottom:1067.049000px;}
.y14{bottom:1079.205000px;}
.y58{bottom:1080.543000px;}
.y74{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y37{bottom:1098.645000px;}
.y36{bottom:1118.968500px;}
.h6{height:25.336950px;}
.hd{height:35.865450px;}
.h2{height:41.484266px;}
.hf{height:44.831700px;}
.h9{height:45.818220px;}
.ha{height:46.865494px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.hc{height:62.184000px;}
.hb{height:62.889450px;}
.he{height:62.895450px;}
.h5{height:74.035330px;}
.h3{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.xf{left:137.107500px;}
.x4{left:139.332000px;}
.x6{left:151.972500px;}
.x10{left:161.064000px;}
.x5{left:164.010000px;}
.x7{left:168.336000px;}
.xe{left:280.579500px;}
.x1{left:286.581000px;}
.xa{left:374.100000px;}
.xb{left:389.226000px;}
.x9{left:394.359000px;}
.x8{left:438.466500px;}
.xc{left:447.129000px;}
.xd{left:492.840000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.021333pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:55.274667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.008927pt;}
.ls19{letter-spacing:0.010089pt;}
.ls9{letter-spacing:0.011431pt;}
.lsd{letter-spacing:0.018716pt;}
.lsa{letter-spacing:0.020190pt;}
.ls10{letter-spacing:0.581819pt;}
.ls1a{letter-spacing:2.077024pt;}
.ls16{letter-spacing:2.087250pt;}
.ls7{letter-spacing:2.094547pt;}
.ls1b{letter-spacing:2.650641pt;}
.ls15{letter-spacing:2.653398pt;}
.ls0{letter-spacing:2.654270pt;}
.lse{letter-spacing:2.655975pt;}
.ls13{letter-spacing:2.658731pt;}
.ls11{letter-spacing:3.200003pt;}
.ls3{letter-spacing:4.189094pt;}
.lsc{letter-spacing:9.658190pt;}
.ls18{letter-spacing:12.916374pt;}
.ls17{letter-spacing:15.583975pt;}
.ls8{letter-spacing:16.116377pt;}
.lsb{letter-spacing:16.174559pt;}
.ls14{letter-spacing:18.818731pt;}
.lsf{letter-spacing:22.632746pt;}
.ls5{letter-spacing:23.505474pt;}
.ls6{letter-spacing:25.541839pt;}
.ls1c{letter-spacing:27.229114pt;}
.ls4{letter-spacing:27.985478pt;}
.ls2{letter-spacing:29.090933pt;}
.ws37{word-spacing:-42.007308pt;}
.ws3a{word-spacing:-37.899668pt;}
.ws3d{word-spacing:-29.521250pt;}
.ws10{word-spacing:-19.925333pt;}
.ws21{word-spacing:-16.162923pt;}
.ws38{word-spacing:-15.642921pt;}
.ws40{word-spacing:-9.322921pt;}
.ws3b{word-spacing:-9.178921pt;}
.ws39{word-spacing:-5.946921pt;}
.wsa{word-spacing:-1.326547pt;}
.ws25{word-spacing:-1.186910pt;}
.ws1e{word-spacing:-0.977455pt;}
.wse{word-spacing:-0.861092pt;}
.ws3f{word-spacing:-0.162909pt;}
.ws41{word-spacing:-0.104727pt;}
.wsf{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.011636pt;}
.ws17{word-spacing:0.128000pt;}
.ws4d{word-spacing:0.302546pt;}
.ws4a{word-spacing:0.360728pt;}
.ws7{word-spacing:1.058910pt;}
.ws26{word-spacing:1.175274pt;}
.ws20{word-spacing:1.349819pt;}
.ws1a{word-spacing:1.873456pt;}
.ws27{word-spacing:2.129456pt;}
.ws9{word-spacing:2.222547pt;}
.ws2b{word-spacing:2.455275pt;}
.ws18{word-spacing:2.862548pt;}
.ws4f{word-spacing:2.932989pt;}
.ws4e{word-spacing:3.037093pt;}
.ws4{word-spacing:3.211639pt;}
.ws13{word-spacing:3.269821pt;}
.ws1d{word-spacing:3.328003pt;}
.ws3e{word-spacing:3.618912pt;}
.ws12{word-spacing:3.700367pt;}
.ws48{word-spacing:3.968003pt;}
.ws22{word-spacing:3.985067pt;}
.ws46{word-spacing:4.026185pt;}
.wsd{word-spacing:4.375276pt;}
.ws45{word-spacing:4.433458pt;}
.ws28{word-spacing:4.549822pt;}
.ws2a{word-spacing:4.782549pt;}
.wsb{word-spacing:4.957095pt;}
.wsc{word-spacing:5.073459pt;}
.ws50{word-spacing:5.440908pt;}
.ws29{word-spacing:5.655277pt;}
.ws2d{word-spacing:5.713459pt;}
.ws2e{word-spacing:5.771641pt;}
.ws1b{word-spacing:5.957823pt;}
.ws23{word-spacing:6.027641pt;}
.ws8{word-spacing:6.469824pt;}
.ws2c{word-spacing:6.609460pt;}
.ws2f{word-spacing:6.644369pt;}
.ws43{word-spacing:6.760733pt;}
.ws36{word-spacing:7.342552pt;}
.ws47{word-spacing:8.040734pt;}
.ws4b{word-spacing:8.215280pt;}
.ws24{word-spacing:8.448007pt;}
.ws30{word-spacing:8.506189pt;}
.ws15{word-spacing:8.971644pt;}
.ws49{word-spacing:9.088008pt;}
.ws4c{word-spacing:9.437099pt;}
.ws1c{word-spacing:9.611644pt;}
.ws5{word-spacing:9.669826pt;}
.ws16{word-spacing:9.844372pt;}
.ws33{word-spacing:10.426191pt;}
.ws34{word-spacing:10.484372pt;}
.ws1f{word-spacing:11.473464pt;}
.ws19{word-spacing:11.648010pt;}
.ws35{word-spacing:12.986193pt;}
.ws44{word-spacing:13.288738pt;}
.ws32{word-spacing:13.509829pt;}
.ws31{word-spacing:14.219648pt;}
.ws2{word-spacing:23.336550pt;}
.ws0{word-spacing:27.842146pt;}
.ws3{word-spacing:28.003782pt;}
.ws11{word-spacing:35.234938pt;}
.ws6{word-spacing:42.234456pt;}
.ws1{word-spacing:48.384419pt;}
.ws14{word-spacing:51.805867pt;}
.ws42{word-spacing:88.180437pt;}
._13{margin-left:-6.283642pt;}
._3{margin-left:-4.829095pt;}
._a{margin-left:-3.489322pt;}
._1{margin-left:-1.976593pt;}
._8{margin-left:-0.934091pt;}
._1e{width:1.042502pt;}
._2{width:1.976593pt;}
._0{width:3.833738pt;}
._6{width:15.767286pt;}
._28{width:17.162060pt;}
._22{width:18.273877pt;}
._21{width:19.956380pt;}
._7{width:22.047747pt;}
._24{width:22.988199pt;}
._4{width:23.911157pt;}
._5{width:25.889340pt;}
._1c{width:28.042069pt;}
._d{width:29.730934pt;}
._9{width:31.010935pt;}
._25{width:35.490939pt;}
._26{width:38.934802pt;}
._1b{width:43.403673pt;}
._29{width:44.334582pt;}
._1d{width:46.427539pt;}
._1f{width:51.088450pt;}
._c{width:53.818227pt;}
._27{width:55.400569pt;}
._10{width:59.461868pt;}
._23{width:66.909147pt;}
._20{width:71.731200pt;}
._15{width:766.484731pt;}
._18{width:863.705039pt;}
._f{width:928.584182pt;}
._e{width:1234.906939pt;}
._16{width:1255.099228pt;}
._12{width:1296.641081pt;}
._11{width:1394.270253pt;}
._17{width:1452.914394pt;}
._14{width:1472.001227pt;}
._b{width:1848.321540pt;}
._1a{width:1897.136126pt;}
._19{width:1911.988037pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:83.389333pt;}
.y34{bottom:156.449333pt;}
.y33{bottom:174.514667pt;}
.y57{bottom:192.580000pt;}
.y32{bottom:210.268000pt;}
.y56{bottom:210.645333pt;}
.y73{bottom:211.230667pt;}
.y55{bottom:228.712000pt;}
.y72{bottom:229.296000pt;}
.y31{bottom:243.745333pt;}
.y54{bottom:257.765333pt;}
.y71{bottom:263.453333pt;}
.y53{bottom:275.830667pt;}
.y30{bottom:286.752000pt;}
.y52{bottom:293.896000pt;}
.y2f{bottom:304.817333pt;}
.y70{bottom:308.137333pt;}
.y2e{bottom:322.882667pt;}
.y51{bottom:322.949333pt;}
.y6f{bottom:326.204000pt;}
.y13{bottom:337.380000pt;}
.y50{bottom:341.014667pt;}
.y2d{bottom:341.297333pt;}
.y6e{bottom:344.269333pt;}
.y12{bottom:355.446667pt;}
.y2c{bottom:359.364000pt;}
.y6d{bottom:362.334667pt;}
.y4f{bottom:371.660000pt;}
.y11{bottom:373.512000pt;}
.y2b{bottom:377.429333pt;}
.y6c{bottom:387.840000pt;}
.y10{bottom:391.577333pt;}
.y2a{bottom:395.494667pt;}
.y6b{bottom:405.905333pt;}
.y4e{bottom:408.984000pt;}
.yf{bottom:409.642667pt;}
.y29{bottom:413.560000pt;}
.y4d{bottom:427.049333pt;}
.ye{bottom:427.708000pt;}
.y28{bottom:431.974667pt;}
.y6a{bottom:440.921333pt;}
.y4c{bottom:445.114667pt;}
.yd{bottom:445.774667pt;}
.y27{bottom:450.041333pt;}
.yc{bottom:463.840000pt;}
.y26{bottom:468.106667pt;}
.y4b{bottom:469.326667pt;}
.y69{bottom:475.353333pt;}
.yb{bottom:481.905333pt;}
.y25{bottom:486.521333pt;}
.y68{bottom:494.004000pt;}
.y4a{bottom:499.516000pt;}
.ya{bottom:499.970667pt;}
.y24{bottom:504.586667pt;}
.y67{bottom:512.069333pt;}
.y9{bottom:518.036000pt;}
.y23{bottom:522.652000pt;}
.y49{bottom:524.700000pt;}
.y8{bottom:536.102667pt;}
.y22{bottom:540.718667pt;}
.y48{bottom:542.765333pt;}
.y66{bottom:546.226667pt;}
.y47{bottom:567.949333pt;}
.y7{bottom:571.436000pt;}
.y21{bottom:574.196000pt;}
.y46{bottom:586.014667pt;}
.y65{bottom:590.912000pt;}
.y6{bottom:604.078667pt;}
.y64{bottom:608.977333pt;}
.y45{bottom:611.198667pt;}
.y20{bottom:618.874667pt;}
.y5{bottom:629.618667pt;}
.y44{bottom:639.284000pt;}
.y63{bottom:641.468000pt;}
.y1f{bottom:652.185333pt;}
.y62{bottom:659.862667pt;}
.y82{bottom:662.833333pt;}
.y43{bottom:667.369333pt;}
.y81{bottom:685.414667pt;}
.y1e{bottom:685.494667pt;}
.y42{bottom:692.553333pt;}
.y61{bottom:695.658667pt;}
.y80{bottom:707.997333pt;}
.y41{bottom:710.618667pt;}
.y1d{bottom:718.804000pt;}
.y60{bottom:722.650667pt;}
.y7f{bottom:723.937333pt;}
.y40{bottom:728.684000pt;}
.y4{bottom:731.396000pt;}
.y1c{bottom:737.289333pt;}
.y7e{bottom:746.518667pt;}
.y3f{bottom:752.897333pt;}
.y1b{bottom:755.774667pt;}
.y5f{bottom:758.462667pt;}
.y7d{bottom:762.458667pt;}
.y3{bottom:764.534667pt;}
.y3e{bottom:783.542667pt;}
.y7c{bottom:785.041333pt;}
.y1a{bottom:789.084000pt;}
.y5e{bottom:793.478667pt;}
.y7b{bottom:800.981333pt;}
.y2{bottom:804.385333pt;}
.y3d{bottom:820.865333pt;}
.y19{bottom:822.393333pt;}
.y5d{bottom:827.910667pt;}
.y7a{bottom:831.325333pt;}
.y18{bottom:840.878667pt;}
.y5c{bottom:846.560000pt;}
.y3c{bottom:848.952000pt;}
.y17{bottom:859.364000pt;}
.y79{bottom:871.841333pt;}
.y3b{bottom:877.037333pt;}
.y5b{bottom:880.992000pt;}
.y78{bottom:889.906667pt;}
.y16{bottom:892.673333pt;}
.y3a{bottom:902.221333pt;}
.y77{bottom:907.973333pt;}
.y5a{bottom:915.424000pt;}
.y15{bottom:925.982667pt;}
.y76{bottom:926.038667pt;}
.y39{bottom:930.422667pt;}
.y59{bottom:933.489333pt;}
.y75{bottom:944.104000pt;}
.y38{bottom:948.488000pt;}
.y14{bottom:959.293333pt;}
.y58{bottom:960.482667pt;}
.y74{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y37{bottom:976.573333pt;}
.y36{bottom:994.638667pt;}
.h6{height:22.521733pt;}
.hd{height:31.880400pt;}
.h2{height:36.874903pt;}
.hf{height:39.850400pt;}
.h9{height:40.727307pt;}
.ha{height:41.658217pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.hc{height:55.274667pt;}
.hb{height:55.901733pt;}
.he{height:55.907067pt;}
.h5{height:65.809182pt;}
.h3{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.xf{left:121.873333pt;}
.x4{left:123.850667pt;}
.x6{left:135.086667pt;}
.x10{left:143.168000pt;}
.x5{left:145.786667pt;}
.x7{left:149.632000pt;}
.xe{left:249.404000pt;}
.x1{left:254.738667pt;}
.xa{left:332.533333pt;}
.xb{left:345.978667pt;}
.x9{left:350.541333pt;}
.x8{left:389.748000pt;}
.xc{left:397.448000pt;}
.xd{left:438.080000pt;}
}




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