
    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_dc552d6494a83cd2aba6c3b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_09a6769e6b1e6eaf368b1099.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_b36849ec4b79bb1d38aa6850.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_654bafb20093aa99c5a2f98a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_64bfe0cac67fc95d5d241bfb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_ac327335d50ed504e111ca33.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d402a66bd198d7aa4f66df3a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6929a1c5e62a1a5102472241.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_61850ed4cac5bcfa657cd9e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_8c4e82138a53a70198073bac.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3b596431116d035fe7c9b792.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_1b276291efde1cef029b378f.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_74bdcbcab5bd36a4bb99384d.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.399000;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_c804cf0e757f8bc79aabc8fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.046000;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);}
.v5{vertical-align:-27.024000px;}
.v6{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.366000px;}
.vb{vertical-align:8.514000px;}
.v2{vertical-align:16.182000px;}
.ve{vertical-align:22.572000px;}
.v8{vertical-align:23.754000px;}
.v1{vertical-align:27.024000px;}
.vd{vertical-align:29.592000px;}
.va{vertical-align:34.500000px;}
.v4{vertical-align:43.206000px;}
.v9{vertical-align:59.160000px;}
.vc{vertical-align:92.292000px;}
.v7{vertical-align:153.816000px;}
.ls17{letter-spacing:0.000000px;}
.lse{letter-spacing:0.002700px;}
.ls1e{letter-spacing:0.004889px;}
.ls29{letter-spacing:0.005414px;}
.ls1{letter-spacing:0.008092px;}
.ls28{letter-spacing:0.010889px;}
.ls2b{letter-spacing:0.011261px;}
.ls4{letter-spacing:0.014684px;}
.ls26{letter-spacing:0.020684px;}
.ls20{letter-spacing:0.022184px;}
.ls25{letter-spacing:0.030508px;}
.ls2{letter-spacing:0.031534px;}
.ls1c{letter-spacing:0.035971px;}
.ls7{letter-spacing:0.037534px;}
.ls22{letter-spacing:0.037611px;}
.ls27{letter-spacing:0.041971px;}
.ls1b{letter-spacing:0.045776px;}
.ls9{letter-spacing:0.049076px;}
.lsd{letter-spacing:0.051776px;}
.ls5{letter-spacing:0.055076px;}
.ls23{letter-spacing:0.055615px;}
.lsa{letter-spacing:0.061610px;}
.ls1d{letter-spacing:0.061615px;}
.ls6{letter-spacing:2.407610px;}
.ls0{letter-spacing:2.413610px;}
.ls8{letter-spacing:2.996092px;}
.ls2e{letter-spacing:3.005261px;}
.ls1f{letter-spacing:5.331227px;}
.ls2a{letter-spacing:7.175400px;}
.ls2d{letter-spacing:10.919414px;}
.lsf{letter-spacing:10.957076px;}
.ls1a{letter-spacing:10.963076px;}
.ls21{letter-spacing:13.907261px;}
.ls11{letter-spacing:18.012600px;}
.lsc{letter-spacing:18.231776px;}
.ls3{letter-spacing:18.237776px;}
.ls13{letter-spacing:18.906600px;}
.ls16{letter-spacing:19.050600px;}
.lsb{letter-spacing:20.281608px;}
.ls18{letter-spacing:20.905076px;}
.ls12{letter-spacing:21.816600px;}
.ls15{letter-spacing:21.822600px;}
.ls14{letter-spacing:22.512600px;}
.ls24{letter-spacing:23.517227px;}
.ls19{letter-spacing:23.917608px;}
.ls10{letter-spacing:32.723973px;}
.ls2c{letter-spacing:66.347261px;}
.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;}
}
.ws9{word-spacing:-0.065455px;}
.wse{word-spacing:-0.047821px;}
.ws1e{word-spacing:0.000000px;}
.ws2f{word-spacing:17.770463px;}
.ws16{word-spacing:17.934560px;}
.wsf{word-spacing:18.065470px;}
.ws15{word-spacing:18.087668px;}
.ws2d{word-spacing:18.196379px;}
.ws5{word-spacing:18.785470px;}
.ws10{word-spacing:18.850925px;}
.ws11{word-spacing:18.916379px;}
.ws1c{word-spacing:18.981834px;}
.ws18{word-spacing:19.004557px;}
.ws38{word-spacing:20.225471px;}
.ws28{word-spacing:20.487290px;}
.ws27{word-spacing:20.549885px;}
.ws6{word-spacing:20.552744px;}
.ws26{word-spacing:20.709152px;}
.ws30{word-spacing:21.148702px;}
.ws31{word-spacing:21.469109px;}
.ws12{word-spacing:21.665473px;}
.wsc{word-spacing:21.730927px;}
.ws29{word-spacing:21.751550px;}
.ws17{word-spacing:21.897668px;}
.ws8{word-spacing:22.450928px;}
.ws34{word-spacing:22.516382px;}
.ws37{word-spacing:22.778201px;}
.ws19{word-spacing:22.854167px;}
.ws32{word-spacing:23.105474px;}
.ws2{word-spacing:23.240909px;}
.ws3{word-spacing:23.312640px;}
.ws7{word-spacing:23.956384px;}
.ws1f{word-spacing:24.152747px;}
.ws21{word-spacing:24.274463px;}
.ws25{word-spacing:25.003657px;}
.ws23{word-spacing:25.069112px;}
.ws39{word-spacing:25.265476px;}
.ws35{word-spacing:25.854567px;}
.ws36{word-spacing:26.181840px;}
.ws1b{word-spacing:26.613962px;}
.wsa{word-spacing:26.770931px;}
.ws14{word-spacing:26.827469px;}
.ws1a{word-spacing:27.101324px;}
.wsb{word-spacing:27.949114px;}
.ws22{word-spacing:29.173928px;}
.ws1d{word-spacing:29.355971px;}
.ws24{word-spacing:29.361000px;}
.ws20{word-spacing:32.138209px;}
.ws13{word-spacing:32.192873px;}
.ws33{word-spacing:34.298210px;}
.ws0{word-spacing:38.528065px;}
.ws1{word-spacing:38.631358px;}
.ws4{word-spacing:42.952523px;}
.ws2a{word-spacing:65.389145px;}
.ws2c{word-spacing:72.654606px;}
.ws2e{word-spacing:100.870463px;}
.wsd{word-spacing:103.222463px;}
.ws2b{word-spacing:368.057140px;}
._2{margin-left:-12.911550px;}
._1{margin-left:-9.606193px;}
._f{margin-left:-7.369474px;}
._7{margin-left:-6.010160px;}
._6{margin-left:-4.982129px;}
._3{margin-left:-3.873485px;}
._14{margin-left:-2.870560px;}
._4{margin-left:-1.865011px;}
._5{width:1.936742px;}
._0{width:3.305357px;}
._a{width:6.136283px;}
._d{width:20.758781px;}
._13{width:23.289203px;}
._e{width:25.541636px;}
._c{width:27.166779px;}
._9{width:28.748926px;}
._11{width:29.918846px;}
._12{width:32.661845px;}
._8{width:36.897359px;}
._b{width:43.038600px;}
._10{width:60.218232px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs5{font-size:62.981400px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y20{bottom:61.467000px;}
.y1f{bottom:106.299000px;}
.y1e{bottom:139.789500px;}
.y45{bottom:142.828500px;}
.y1d{bottom:160.114500px;}
.y1c{bottom:193.605000px;}
.y44{bottom:193.858500px;}
.y43{bottom:214.182000px;}
.y1b{bottom:227.095500px;}
.y42{bottom:234.507000px;}
.y1a{bottom:260.586000px;}
.y41{bottom:271.035000px;}
.y19{bottom:291.477000px;}
.y40{bottom:322.066500px;}
.y18{bottom:335.163000px;}
.y3f{bottom:342.390000px;}
.y17{bottom:355.486500px;}
.y3e{bottom:373.368000px;}
.y16{bottom:388.977000px;}
.y3d{bottom:409.896000px;}
.y15{bottom:422.467500px;}
.y14{bottom:455.958000px;}
.y3c{bottom:460.927500px;}
.y13{bottom:486.850500px;}
.y3b{bottom:499.051500px;}
.y3a{bottom:504.694500px;}
.y12{bottom:530.536500px;}
.y39{bottom:547.092000px;}
.y11{bottom:567.064500px;}
.y38{bottom:577.618500px;}
.y37{bottom:579.747000px;}
.y10{bottom:618.489000px;}
.y36{bottom:625.399500px;}
.y33{bottom:635.029500px;}
.yf{bottom:638.812500px;}
.y32{bottom:639.939000px;}
.y35{bottom:649.788000px;}
.y2f{bottom:650.575500px;}
.y31{bottom:669.393000px;}
.y34{bottom:674.176500px;}
.y30{bottom:674.302500px;}
.ye{bottom:674.727000px;}
.y2e{bottom:705.828000px;}
.yd{bottom:710.640000px;}
.yc{bottom:736.207500px;}
.y2d{bottom:738.483000px;}
.yb{bottom:740.253000px;}
.ya{bottom:760.576500px;}
.y2c{bottom:771.138000px;}
.y9{bottom:780.900000px;}
.y8{bottom:801.225000px;}
.y2b{bottom:807.666000px;}
.y7{bottom:821.548500px;}
.y6{bottom:858.076500px;}
.y2a{bottom:858.697500px;}
.y29{bottom:879.021000px;}
.y28{bottom:913.924500px;}
.y5{bottom:926.586000px;}
.y27{bottom:946.579500px;}
.y4{bottom:963.273000px;}
.y26{bottom:979.234500px;}
.y3{bottom:1008.739500px;}
.y25{bottom:1011.891000px;}
.y2{bottom:1041.616500px;}
.y24{bottom:1048.419000px;}
.y48{bottom:1062.921000px;}
.y1{bottom:1074.493500px;}
.y47{bottom:1083.246000px;}
.y23{bottom:1099.450500px;}
.y46{bottom:1103.569500px;}
.y22{bottom:1119.774000px;}
.y21{bottom:1140.097500px;}
.hb{height:2.618184px;}
.h5{height:49.090950px;}
.h3{height:50.498765px;}
.h8{height:53.798400px;}
.h9{height:55.423632px;}
.hd{height:57.419702px;}
.h11{height:57.604950px;}
.hc{height:59.619450px;}
.he{height:61.778184px;}
.h6{height:62.889450px;}
.h4{height:64.557900px;}
.hf{height:70.365450px;}
.h2{height:77.469300px;}
.h10{height:78.879450px;}
.h7{height:79.071450px;}
.h12{height:94.910184px;}
.h13{height:117.482184px;}
.ha{height:156.434184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.299000px;}
.xd{left:126.300000px;}
.x2{left:130.420500px;}
.x9{left:131.704500px;}
.xb{left:147.208500px;}
.x3{left:252.964500px;}
.x1{left:272.959500px;}
.xe{left:289.650000px;}
.xf{left:338.754000px;}
.x10{left:353.299500px;}
.x4{left:368.179500px;}
.x7{left:379.747500px;}
.x5{left:380.854500px;}
.x14{left:384.645000px;}
.x8{left:387.552000px;}
.xa{left:395.374500px;}
.xc{left:442.366500px;}
.x12{left:466.611000px;}
.x15{left:501.015000px;}
.x13{left:535.860000px;}
.x11{left:558.786000px;}
@media print{
.v5{vertical-align:-24.021333pt;}
.v6{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.658667pt;}
.vb{vertical-align:7.568000pt;}
.v2{vertical-align:14.384000pt;}
.ve{vertical-align:20.064000pt;}
.v8{vertical-align:21.114667pt;}
.v1{vertical-align:24.021333pt;}
.vd{vertical-align:26.304000pt;}
.va{vertical-align:30.666667pt;}
.v4{vertical-align:38.405333pt;}
.v9{vertical-align:52.586667pt;}
.vc{vertical-align:82.037333pt;}
.v7{vertical-align:136.725333pt;}
.ls17{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.002400pt;}
.ls1e{letter-spacing:0.004346pt;}
.ls29{letter-spacing:0.004813pt;}
.ls1{letter-spacing:0.007193pt;}
.ls28{letter-spacing:0.009679pt;}
.ls2b{letter-spacing:0.010010pt;}
.ls4{letter-spacing:0.013053pt;}
.ls26{letter-spacing:0.018386pt;}
.ls20{letter-spacing:0.019719pt;}
.ls25{letter-spacing:0.027118pt;}
.ls2{letter-spacing:0.028030pt;}
.ls1c{letter-spacing:0.031974pt;}
.ls7{letter-spacing:0.033363pt;}
.ls22{letter-spacing:0.033432pt;}
.ls27{letter-spacing:0.037308pt;}
.ls1b{letter-spacing:0.040690pt;}
.ls9{letter-spacing:0.043623pt;}
.lsd{letter-spacing:0.046023pt;}
.ls5{letter-spacing:0.048956pt;}
.ls23{letter-spacing:0.049436pt;}
.lsa{letter-spacing:0.054765pt;}
.ls1d{letter-spacing:0.054769pt;}
.ls6{letter-spacing:2.140098pt;}
.ls0{letter-spacing:2.145431pt;}
.ls8{letter-spacing:2.663193pt;}
.ls2e{letter-spacing:2.671343pt;}
.ls1f{letter-spacing:4.738869pt;}
.ls2a{letter-spacing:6.378133pt;}
.ls2d{letter-spacing:9.706146pt;}
.lsf{letter-spacing:9.739623pt;}
.ls1a{letter-spacing:9.744956pt;}
.ls21{letter-spacing:12.362010pt;}
.ls11{letter-spacing:16.011200pt;}
.lsc{letter-spacing:16.206023pt;}
.ls3{letter-spacing:16.211356pt;}
.ls13{letter-spacing:16.805867pt;}
.ls16{letter-spacing:16.933867pt;}
.lsb{letter-spacing:18.028096pt;}
.ls18{letter-spacing:18.582290pt;}
.ls12{letter-spacing:19.392533pt;}
.ls15{letter-spacing:19.397867pt;}
.ls14{letter-spacing:20.011200pt;}
.ls24{letter-spacing:20.904202pt;}
.ls19{letter-spacing:21.260096pt;}
.ls10{letter-spacing:29.087976pt;}
.ls2c{letter-spacing:58.975343pt;}
.ws9{word-spacing:-0.058182pt;}
.wse{word-spacing:-0.042507pt;}
.ws1e{word-spacing:0.000000pt;}
.ws2f{word-spacing:15.795967pt;}
.ws16{word-spacing:15.941831pt;}
.wsf{word-spacing:16.058195pt;}
.ws15{word-spacing:16.077927pt;}
.ws2d{word-spacing:16.174559pt;}
.ws5{word-spacing:16.698196pt;}
.ws10{word-spacing:16.756378pt;}
.ws11{word-spacing:16.814559pt;}
.ws1c{word-spacing:16.872741pt;}
.ws18{word-spacing:16.892939pt;}
.ws38{word-spacing:17.978197pt;}
.ws28{word-spacing:18.210924pt;}
.ws27{word-spacing:18.266565pt;}
.ws6{word-spacing:18.269106pt;}
.ws26{word-spacing:18.408135pt;}
.ws30{word-spacing:18.798846pt;}
.ws31{word-spacing:19.083652pt;}
.ws12{word-spacing:19.258198pt;}
.wsc{word-spacing:19.316380pt;}
.ws29{word-spacing:19.334711pt;}
.ws17{word-spacing:19.464594pt;}
.ws8{word-spacing:19.956380pt;}
.ws34{word-spacing:20.014562pt;}
.ws37{word-spacing:20.247290pt;}
.ws19{word-spacing:20.314815pt;}
.ws32{word-spacing:20.538199pt;}
.ws2{word-spacing:20.658586pt;}
.ws3{word-spacing:20.722347pt;}
.ws7{word-spacing:21.294563pt;}
.ws1f{word-spacing:21.469109pt;}
.ws21{word-spacing:21.577300pt;}
.ws25{word-spacing:22.225473pt;}
.ws23{word-spacing:22.283655pt;}
.ws39{word-spacing:22.458201pt;}
.ws35{word-spacing:22.981837pt;}
.ws36{word-spacing:23.272747pt;}
.ws1b{word-spacing:23.656855pt;}
.wsa{word-spacing:23.796383pt;}
.ws14{word-spacing:23.846639pt;}
.ws1a{word-spacing:24.090066pt;}
.wsb{word-spacing:24.843657pt;}
.ws22{word-spacing:25.932380pt;}
.ws1d{word-spacing:26.094197pt;}
.ws24{word-spacing:26.098667pt;}
.ws20{word-spacing:28.567297pt;}
.ws13{word-spacing:28.615887pt;}
.ws33{word-spacing:30.487298pt;}
.ws0{word-spacing:34.247169pt;}
.ws1{word-spacing:34.338985pt;}
.ws4{word-spacing:38.180020pt;}
.ws2a{word-spacing:58.123685pt;}
.ws2c{word-spacing:64.581872pt;}
.ws2e{word-spacing:89.662634pt;}
.wsd{word-spacing:91.753300pt;}
.ws2b{word-spacing:327.161902pt;}
._2{margin-left:-11.476933pt;}
._1{margin-left:-8.538838pt;}
._f{margin-left:-6.550644pt;}
._7{margin-left:-5.342364pt;}
._6{margin-left:-4.428559pt;}
._3{margin-left:-3.443098pt;}
._14{margin-left:-2.551609pt;}
._4{margin-left:-1.657788pt;}
._5{width:1.721549pt;}
._0{width:2.938095pt;}
._a{width:5.454474pt;}
._d{width:18.452250pt;}
._13{width:20.701514pt;}
._e{width:22.703677pt;}
._c{width:24.148248pt;}
._9{width:25.554601pt;}
._11{width:26.594530pt;}
._12{width:29.032751pt;}
._8{width:32.797652pt;}
._b{width:38.256533pt;}
._10{width:53.527317pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:55.983467pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:54.637333pt;}
.y1f{bottom:94.488000pt;}
.y1e{bottom:124.257333pt;}
.y45{bottom:126.958667pt;}
.y1d{bottom:142.324000pt;}
.y1c{bottom:172.093333pt;}
.y44{bottom:172.318667pt;}
.y43{bottom:190.384000pt;}
.y1b{bottom:201.862667pt;}
.y42{bottom:208.450667pt;}
.y1a{bottom:231.632000pt;}
.y41{bottom:240.920000pt;}
.y19{bottom:259.090667pt;}
.y40{bottom:286.281333pt;}
.y18{bottom:297.922667pt;}
.y3f{bottom:304.346667pt;}
.y17{bottom:315.988000pt;}
.y3e{bottom:331.882667pt;}
.y16{bottom:345.757333pt;}
.y3d{bottom:364.352000pt;}
.y15{bottom:375.526667pt;}
.y14{bottom:405.296000pt;}
.y3c{bottom:409.713333pt;}
.y13{bottom:432.756000pt;}
.y3b{bottom:443.601333pt;}
.y3a{bottom:448.617333pt;}
.y12{bottom:471.588000pt;}
.y39{bottom:486.304000pt;}
.y11{bottom:504.057333pt;}
.y38{bottom:513.438667pt;}
.y37{bottom:515.330667pt;}
.y10{bottom:549.768000pt;}
.y36{bottom:555.910667pt;}
.y33{bottom:564.470667pt;}
.yf{bottom:567.833333pt;}
.y32{bottom:568.834667pt;}
.y35{bottom:577.589333pt;}
.y2f{bottom:578.289333pt;}
.y31{bottom:595.016000pt;}
.y34{bottom:599.268000pt;}
.y30{bottom:599.380000pt;}
.ye{bottom:599.757333pt;}
.y2e{bottom:627.402667pt;}
.yd{bottom:631.680000pt;}
.yc{bottom:654.406667pt;}
.y2d{bottom:656.429333pt;}
.yb{bottom:658.002667pt;}
.ya{bottom:676.068000pt;}
.y2c{bottom:685.456000pt;}
.y9{bottom:694.133333pt;}
.y8{bottom:712.200000pt;}
.y2b{bottom:717.925333pt;}
.y7{bottom:730.265333pt;}
.y6{bottom:762.734667pt;}
.y2a{bottom:763.286667pt;}
.y29{bottom:781.352000pt;}
.y28{bottom:812.377333pt;}
.y5{bottom:823.632000pt;}
.y27{bottom:841.404000pt;}
.y4{bottom:856.242667pt;}
.y26{bottom:870.430667pt;}
.y3{bottom:896.657333pt;}
.y25{bottom:899.458667pt;}
.y2{bottom:925.881333pt;}
.y24{bottom:931.928000pt;}
.y48{bottom:944.818667pt;}
.y1{bottom:955.105333pt;}
.y47{bottom:962.885333pt;}
.y23{bottom:977.289333pt;}
.y46{bottom:980.950667pt;}
.y22{bottom:995.354667pt;}
.y21{bottom:1013.420000pt;}
.hb{height:2.327275pt;}
.h5{height:43.636400pt;}
.h3{height:44.887791pt;}
.h8{height:47.820800pt;}
.h9{height:49.265451pt;}
.hd{height:51.039735pt;}
.h11{height:51.204400pt;}
.hc{height:52.995067pt;}
.he{height:54.913941pt;}
.h6{height:55.901733pt;}
.h4{height:57.384800pt;}
.hf{height:62.547067pt;}
.h2{height:68.861600pt;}
.h10{height:70.115067pt;}
.h7{height:70.285733pt;}
.h12{height:84.364608pt;}
.h13{height:104.428608pt;}
.ha{height:139.052608pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488000pt;}
.xd{left:112.266667pt;}
.x2{left:115.929333pt;}
.x9{left:117.070667pt;}
.xb{left:130.852000pt;}
.x3{left:224.857333pt;}
.x1{left:242.630667pt;}
.xe{left:257.466667pt;}
.xf{left:301.114667pt;}
.x10{left:314.044000pt;}
.x4{left:327.270667pt;}
.x7{left:337.553333pt;}
.x5{left:338.537333pt;}
.x14{left:341.906667pt;}
.x8{left:344.490667pt;}
.xa{left:351.444000pt;}
.xc{left:393.214667pt;}
.x12{left:414.765333pt;}
.x15{left:445.346667pt;}
.x13{left:476.320000pt;}
.x11{left:496.698667pt;}
}




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