
    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_0b4f1037e91f71ee15d7957d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_982f1f3886e8f1ee2a56f254.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_2d95a9074e8a70dc9afceef3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_10795384fcc183e691d4af2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_1cdc4c81d18f72a140208de3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.765000;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_f439791a609f9d6e9dfbfb76.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aeac3e2b81d66a38af29dd49.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957000;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_436d3315c58bbb09bd0e39bb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e3cc59ab84677dadf14b76f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_77cbdcdee5522df945469ddb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_77cbdcdee5522df945469ddb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_9f5f4657b1d7501d26ed2c78.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.795000;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);}
.v2{vertical-align:-17.993400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.977200px;}
.v1{vertical-align:17.982000px;}
.ls17{letter-spacing:-5.520000px;}
.ls15{letter-spacing:-4.272000px;}
.ls1c{letter-spacing:-3.552000px;}
.ls14{letter-spacing:-3.264000px;}
.ls9{letter-spacing:-2.064000px;}
.ls18{letter-spacing:-2.016000px;}
.ls11{letter-spacing:-1.344000px;}
.ls19{letter-spacing:-0.864000px;}
.lsc{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.192000px;}
.ls7{letter-spacing:-0.189000px;}
.ls8{letter-spacing:-0.132000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.010200px;}
.ls12{letter-spacing:0.048000px;}
.lse{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.528000px;}
.ls1a{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.624000px;}
.ls1b{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.816000px;}
.lsb{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.728000px;}
.ls1{letter-spacing:8.563200px;}
.ls4{letter-spacing:260.453400px;}
.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;}
}
.ws1{word-spacing:-15.420000px;}
.ws2{word-spacing:-15.012000px;}
.ws12{word-spacing:-14.064000px;}
.ws11{word-spacing:-13.968000px;}
.ws13{word-spacing:-13.872000px;}
.ws10{word-spacing:-1.728000px;}
.wsb{word-spacing:-1.152000px;}
.ws1f{word-spacing:-0.816000px;}
.ws19{word-spacing:-0.624000px;}
.ws1d{word-spacing:-0.576000px;}
.wsd{word-spacing:-0.192000px;}
.wse{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:0.066000px;}
.ws8{word-spacing:0.189000px;}
.ws16{word-spacing:0.192000px;}
.wsf{word-spacing:0.240000px;}
.ws4{word-spacing:0.270000px;}
.wsa{word-spacing:0.480000px;}
.ws6{word-spacing:0.540000px;}
.wsc{word-spacing:0.720000px;}
.ws1c{word-spacing:0.864000px;}
.ws14{word-spacing:1.344000px;}
.ws1b{word-spacing:2.016000px;}
.ws9{word-spacing:2.064000px;}
.ws17{word-spacing:3.264000px;}
.ws1e{word-spacing:3.552000px;}
.ws18{word-spacing:4.272000px;}
.ws1a{word-spacing:5.520000px;}
.ws5{word-spacing:8.544000px;}
.ws0{word-spacing:1242.054000px;}
._12{margin-left:-7.846200px;}
._c{margin-left:-5.994000px;}
._e{margin-left:-4.446000px;}
._5{margin-left:-3.164400px;}
._1{margin-left:-1.841400px;}
._3{width:1.263600px;}
._0{width:2.953800px;}
._11{width:3.958200px;}
._7{width:5.011200px;}
._4{width:6.825600px;}
._d{width:7.873200px;}
._9{width:9.136800px;}
._2{width:11.059200px;}
._6{width:12.560400px;}
._8{width:13.732200px;}
._1a{width:14.751000px;}
._b{width:16.092000px;}
._a{width:17.226000px;}
._16{width:18.883800px;}
._14{width:19.931400px;}
._17{width:21.114000px;}
._19{width:22.496400px;}
._10{width:23.522400px;}
._18{width:25.542000px;}
._13{width:26.632800px;}
._20{width:29.264400px;}
._21{width:33.370200px;}
._1c{width:37.994400px;}
._1b{width:39.168000px;}
._1e{width:55.584000px;}
._1d{width:57.488400px;}
._1f{width:59.209800px;}
._15{width:970.429800px;}
._f{width:1361.539200px;}
.fc7{color:rgb(35,73,74);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc3{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs4{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:17.301750px;}
.y39{bottom:46.967550px;}
.y3a{bottom:47.167950px;}
.y9f{bottom:47.171700px;}
.y9e{bottom:47.916000px;}
.y18{bottom:59.685900px;}
.y17{bottom:77.685900px;}
.y24{bottom:77.824650px;}
.ydc{bottom:87.339900px;}
.yd6{bottom:87.579900px;}
.y9d{bottom:92.286750px;}
.y6c{bottom:92.294250px;}
.y16{bottom:95.685900px;}
.y23{bottom:95.824650px;}
.ydb{bottom:103.839900px;}
.yd5{bottom:104.079900px;}
.y9c{bottom:111.038250px;}
.y6b{bottom:111.045750px;}
.y15{bottom:113.685900px;}
.y22{bottom:113.824650px;}
.yda{bottom:120.339900px;}
.yd4{bottom:120.579900px;}
.y6a{bottom:129.797250px;}
.yd9{bottom:136.839900px;}
.yd3{bottom:137.079900px;}
.y9b{bottom:148.541250px;}
.y69{bottom:148.548750px;}
.yd8{bottom:153.339900px;}
.y30{bottom:167.289750px;}
.y9a{bottom:167.292750px;}
.y38{bottom:167.297250px;}
.y68{bottom:167.300250px;}
.yd7{bottom:169.839900px;}
.yd2{bottom:170.079900px;}
.y2f{bottom:186.041250px;}
.y99{bottom:186.044250px;}
.y37{bottom:186.048750px;}
.y67{bottom:186.051750px;}
.y2e{bottom:204.792750px;}
.y98{bottom:204.795750px;}
.y36{bottom:204.800250px;}
.y66{bottom:223.509750px;}
.yaf{bottom:223.527750px;}
.y2d{bottom:223.544250px;}
.y97{bottom:223.547250px;}
.y35{bottom:223.551750px;}
.y65{bottom:242.261250px;}
.yae{bottom:242.279250px;}
.yd1{bottom:242.292750px;}
.y2c{bottom:242.295750px;}
.y96{bottom:242.298750px;}
.y64{bottom:261.012750px;}
.yad{bottom:261.030750px;}
.y34{bottom:261.033750px;}
.yd0{bottom:261.044250px;}
.y2b{bottom:261.047250px;}
.y95{bottom:261.050250px;}
.y63{bottom:279.764250px;}
.yac{bottom:279.782250px;}
.y33{bottom:279.785250px;}
.ycf{bottom:279.795750px;}
.y2a{bottom:279.798750px;}
.y94{bottom:279.801750px;}
.y62{bottom:298.515750px;}
.yab{bottom:298.533750px;}
.y32{bottom:298.536750px;}
.yce{bottom:298.547250px;}
.y29{bottom:298.550250px;}
.y61{bottom:317.267250px;}
.y31{bottom:317.288250px;}
.y93{bottom:317.292750px;}
.ycd{bottom:317.298750px;}
.y28{bottom:317.301750px;}
.y60{bottom:336.018750px;}
.yaa{bottom:336.036750px;}
.y92{bottom:336.044250px;}
.ycc{bottom:336.050250px;}
.y5f{bottom:354.770250px;}
.ya9{bottom:354.788250px;}
.y91{bottom:354.795750px;}
.ycb{bottom:354.801750px;}
.y5e{bottom:373.521750px;}
.ya8{bottom:373.539750px;}
.y90{bottom:373.547250px;}
.y4{bottom:390.315450px;}
.y5d{bottom:392.273250px;}
.yca{bottom:392.280750px;}
.ya7{bottom:392.291250px;}
.y8f{bottom:392.298750px;}
.y3{bottom:406.815450px;}
.y5c{bottom:411.024750px;}
.yc9{bottom:411.032250px;}
.ya6{bottom:411.042750px;}
.y8e{bottom:411.050250px;}
.y2{bottom:423.315450px;}
.y5b{bottom:429.776250px;}
.yc8{bottom:429.783750px;}
.ya5{bottom:429.794250px;}
.y8d{bottom:429.801750px;}
.y1{bottom:439.815450px;}
.yc7{bottom:448.535250px;}
.ya4{bottom:448.545750px;}
.y5a{bottom:467.279250px;}
.y8c{bottom:467.283750px;}
.yc6{bottom:467.286750px;}
.ya3{bottom:467.297250px;}
.y59{bottom:486.030750px;}
.y8b{bottom:486.035250px;}
.yc5{bottom:486.038250px;}
.ya2{bottom:486.048750px;}
.y58{bottom:504.782250px;}
.y8a{bottom:504.786750px;}
.yc4{bottom:504.789750px;}
.ya1{bottom:504.800250px;}
.y21{bottom:513.722700px;}
.y57{bottom:523.533750px;}
.y89{bottom:523.538250px;}
.yc3{bottom:523.541250px;}
.ya0{bottom:523.551750px;}
.y56{bottom:542.285250px;}
.y88{bottom:542.289750px;}
.y55{bottom:561.036750px;}
.y87{bottom:561.041250px;}
.y1e{bottom:573.724800px;}
.y54{bottom:579.788250px;}
.y86{bottom:579.792750px;}
.yb7{bottom:584.247150px;}
.y1d{bottom:593.221650px;}
.y53{bottom:598.539750px;}
.y85{bottom:598.544250px;}
.yb6{bottom:605.847150px;}
.y84{bottom:617.295750px;}
.yb5{bottom:627.447150px;}
.y52{bottom:636.042750px;}
.y83{bottom:636.047250px;}
.yb4{bottom:649.047150px;}
.y51{bottom:654.794250px;}
.y82{bottom:654.798750px;}
.yb3{bottom:670.647150px;}
.y50{bottom:673.545750px;}
.y81{bottom:673.550250px;}
.yb2{bottom:692.247150px;}
.y4f{bottom:692.297250px;}
.y80{bottom:692.301750px;}
.y4e{bottom:711.048750px;}
.y13{bottom:713.244450px;}
.yb1{bottom:713.847150px;}
.y12{bottom:728.242950px;}
.y7f{bottom:729.771750px;}
.y4d{bottom:729.800250px;}
.yb0{bottom:735.447150px;}
.y11{bottom:743.241450px;}
.y7e{bottom:748.523250px;}
.y4c{bottom:748.551750px;}
.y10{bottom:758.239950px;}
.y7d{bottom:767.274750px;}
.yf{bottom:773.238450px;}
.y7c{bottom:786.026250px;}
.y4b{bottom:786.027750px;}
.ye{bottom:788.236950px;}
.yd{bottom:803.235450px;}
.y7b{bottom:804.777750px;}
.y4a{bottom:804.779250px;}
.yc2{bottom:804.786750px;}
.yee{bottom:815.565450px;}
.yc{bottom:818.233950px;}
.y7a{bottom:823.529250px;}
.y49{bottom:823.530750px;}
.yc1{bottom:823.538250px;}
.yed{bottom:832.065450px;}
.yb{bottom:833.232450px;}
.y79{bottom:842.280750px;}
.y48{bottom:842.282250px;}
.yc0{bottom:842.289750px;}
.ya{bottom:848.230950px;}
.yec{bottom:848.565450px;}
.y78{bottom:861.032250px;}
.y47{bottom:861.033750px;}
.ybf{bottom:861.041250px;}
.y9{bottom:863.229450px;}
.yeb{bottom:865.065450px;}
.y8{bottom:878.227950px;}
.y77{bottom:879.783750px;}
.y46{bottom:879.785250px;}
.ybe{bottom:879.792750px;}
.yea{bottom:881.565450px;}
.y7{bottom:893.226450px;}
.ye9{bottom:898.065450px;}
.y45{bottom:898.536750px;}
.ybd{bottom:898.544250px;}
.y6{bottom:908.224950px;}
.ye8{bottom:914.565450px;}
.y76{bottom:917.286750px;}
.y44{bottom:917.288250px;}
.ybc{bottom:917.295750px;}
.y5{bottom:923.223450px;}
.ye7{bottom:931.065450px;}
.y75{bottom:936.038250px;}
.y43{bottom:936.039750px;}
.ybb{bottom:936.047250px;}
.y14{bottom:942.789300px;}
.ye6{bottom:947.565450px;}
.y74{bottom:954.789750px;}
.y42{bottom:954.791250px;}
.yba{bottom:954.798750px;}
.ye5{bottom:964.065450px;}
.y73{bottom:973.541250px;}
.y41{bottom:973.542750px;}
.yb9{bottom:973.550250px;}
.ye4{bottom:980.565450px;}
.y1c{bottom:981.723300px;}
.y72{bottom:992.292750px;}
.y40{bottom:992.294250px;}
.yb8{bottom:992.301750px;}
.ye3{bottom:997.065450px;}
.y71{bottom:1011.044250px;}
.y3f{bottom:1011.045750px;}
.ye2{bottom:1013.565450px;}
.y20{bottom:1021.700700px;}
.y70{bottom:1029.795750px;}
.y3e{bottom:1029.797250px;}
.ye1{bottom:1030.065450px;}
.y1f{bottom:1043.300700px;}
.ye0{bottom:1046.565450px;}
.y6f{bottom:1048.547250px;}
.y3d{bottom:1048.548750px;}
.ydf{bottom:1063.065450px;}
.y6e{bottom:1067.298750px;}
.y3c{bottom:1067.300250px;}
.y26{bottom:1079.291100px;}
.yde{bottom:1079.565450px;}
.y1b{bottom:1079.937000px;}
.y6d{bottom:1086.050250px;}
.y3b{bottom:1086.051750px;}
.y1a{bottom:1094.937000px;}
.ydd{bottom:1096.065450px;}
.y19{bottom:1109.937000px;}
.y25{bottom:1111.691100px;}
.h9{height:30.416756px;}
.h2{height:34.945312px;}
.h7{height:35.616000px;}
.h6{height:36.336000px;}
.hc{height:37.652344px;}
.he{height:39.313477px;}
.hd{height:39.359077px;}
.h13{height:42.290677px;}
.h3{height:43.031250px;}
.h8{height:44.520000px;}
.h5{height:47.244141px;}
.h4{height:48.410156px;}
.h12{height:51.905109px;}
.h11{height:51.941109px;}
.h16{height:51.942000px;}
.h15{height:51.953109px;}
.h10{height:51.989109px;}
.hf{height:52.037109px;}
.ha{height:54.504000px;}
.h14{height:64.546875px;}
.hb{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x12{left:88.368150px;}
.xf{left:103.039350px;}
.x13{left:107.291250px;}
.x18{left:112.039350px;}
.x1a{left:116.291250px;}
.xe{left:135.087000px;}
.x5{left:265.884750px;}
.x7{left:271.998300px;}
.x17{left:283.732800px;}
.x4{left:304.272750px;}
.xd{left:317.475450px;}
.x9{left:320.010300px;}
.x3{left:322.548750px;}
.x8{left:350.718300px;}
.x6{left:356.682300px;}
.xc{left:366.318450px;}
.x16{left:451.325100px;}
.x11{left:455.592300px;}
.xa{left:456.931200px;}
.x1{left:469.770000px;}
.x15{left:474.104700px;}
.x10{left:487.842450px;}
.x14{left:492.100200px;}
.x19{left:496.843350px;}
.x1b{left:501.095250px;}
.xb{left:581.329200px;}
@media print{
.v2{vertical-align:-15.994133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.646400pt;}
.v1{vertical-align:15.984000pt;}
.ls17{letter-spacing:-4.906667pt;}
.ls15{letter-spacing:-3.797333pt;}
.ls1c{letter-spacing:-3.157333pt;}
.ls14{letter-spacing:-2.901333pt;}
.ls9{letter-spacing:-1.834667pt;}
.ls18{letter-spacing:-1.792000pt;}
.ls11{letter-spacing:-1.194667pt;}
.ls19{letter-spacing:-0.768000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.170667pt;}
.ls7{letter-spacing:-0.168000pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.009067pt;}
.ls12{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.469333pt;}
.ls1a{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.554667pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.725333pt;}
.lsb{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.536000pt;}
.ls1{letter-spacing:7.611733pt;}
.ls4{letter-spacing:231.514133pt;}
.ws1{word-spacing:-13.706667pt;}
.ws2{word-spacing:-13.344000pt;}
.ws12{word-spacing:-12.501333pt;}
.ws11{word-spacing:-12.416000pt;}
.ws13{word-spacing:-12.330667pt;}
.ws10{word-spacing:-1.536000pt;}
.wsb{word-spacing:-1.024000pt;}
.ws1f{word-spacing:-0.725333pt;}
.ws19{word-spacing:-0.554667pt;}
.ws1d{word-spacing:-0.512000pt;}
.wsd{word-spacing:-0.170667pt;}
.wse{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:0.058667pt;}
.ws8{word-spacing:0.168000pt;}
.ws16{word-spacing:0.170667pt;}
.wsf{word-spacing:0.213333pt;}
.ws4{word-spacing:0.240000pt;}
.wsa{word-spacing:0.426667pt;}
.ws6{word-spacing:0.480000pt;}
.wsc{word-spacing:0.640000pt;}
.ws1c{word-spacing:0.768000pt;}
.ws14{word-spacing:1.194667pt;}
.ws1b{word-spacing:1.792000pt;}
.ws9{word-spacing:1.834667pt;}
.ws17{word-spacing:2.901333pt;}
.ws1e{word-spacing:3.157333pt;}
.ws18{word-spacing:3.797333pt;}
.ws1a{word-spacing:4.906667pt;}
.ws5{word-spacing:7.594667pt;}
.ws0{word-spacing:1104.048000pt;}
._12{margin-left:-6.974400pt;}
._c{margin-left:-5.328000pt;}
._e{margin-left:-3.952000pt;}
._5{margin-left:-2.812800pt;}
._1{margin-left:-1.636800pt;}
._3{width:1.123200pt;}
._0{width:2.625600pt;}
._11{width:3.518400pt;}
._7{width:4.454400pt;}
._4{width:6.067200pt;}
._d{width:6.998400pt;}
._9{width:8.121600pt;}
._2{width:9.830400pt;}
._6{width:11.164800pt;}
._8{width:12.206400pt;}
._1a{width:13.112000pt;}
._b{width:14.304000pt;}
._a{width:15.312000pt;}
._16{width:16.785600pt;}
._14{width:17.716800pt;}
._17{width:18.768000pt;}
._19{width:19.996800pt;}
._10{width:20.908800pt;}
._18{width:22.704000pt;}
._13{width:23.673600pt;}
._20{width:26.012800pt;}
._21{width:29.662400pt;}
._1c{width:33.772800pt;}
._1b{width:34.816000pt;}
._1e{width:49.408000pt;}
._1d{width:51.100800pt;}
._1f{width:52.630933pt;}
._15{width:862.604267pt;}
._f{width:1210.257067pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:15.379333pt;}
.y39{bottom:41.748933pt;}
.y3a{bottom:41.927067pt;}
.y9f{bottom:41.930400pt;}
.y9e{bottom:42.592000pt;}
.y18{bottom:53.054133pt;}
.y17{bottom:69.054133pt;}
.y24{bottom:69.177467pt;}
.ydc{bottom:77.635467pt;}
.yd6{bottom:77.848800pt;}
.y9d{bottom:82.032667pt;}
.y6c{bottom:82.039333pt;}
.y16{bottom:85.054133pt;}
.y23{bottom:85.177467pt;}
.ydb{bottom:92.302133pt;}
.yd5{bottom:92.515467pt;}
.y9c{bottom:98.700667pt;}
.y6b{bottom:98.707333pt;}
.y15{bottom:101.054133pt;}
.y22{bottom:101.177467pt;}
.yda{bottom:106.968800pt;}
.yd4{bottom:107.182133pt;}
.y6a{bottom:115.375333pt;}
.yd9{bottom:121.635467pt;}
.yd3{bottom:121.848800pt;}
.y9b{bottom:132.036667pt;}
.y69{bottom:132.043333pt;}
.yd8{bottom:136.302133pt;}
.y30{bottom:148.702000pt;}
.y9a{bottom:148.704667pt;}
.y38{bottom:148.708667pt;}
.y68{bottom:148.711333pt;}
.yd7{bottom:150.968800pt;}
.yd2{bottom:151.182133pt;}
.y2f{bottom:165.370000pt;}
.y99{bottom:165.372667pt;}
.y37{bottom:165.376667pt;}
.y67{bottom:165.379333pt;}
.y2e{bottom:182.038000pt;}
.y98{bottom:182.040667pt;}
.y36{bottom:182.044667pt;}
.y66{bottom:198.675333pt;}
.yaf{bottom:198.691333pt;}
.y2d{bottom:198.706000pt;}
.y97{bottom:198.708667pt;}
.y35{bottom:198.712667pt;}
.y65{bottom:215.343333pt;}
.yae{bottom:215.359333pt;}
.yd1{bottom:215.371333pt;}
.y2c{bottom:215.374000pt;}
.y96{bottom:215.376667pt;}
.y64{bottom:232.011333pt;}
.yad{bottom:232.027333pt;}
.y34{bottom:232.030000pt;}
.yd0{bottom:232.039333pt;}
.y2b{bottom:232.042000pt;}
.y95{bottom:232.044667pt;}
.y63{bottom:248.679333pt;}
.yac{bottom:248.695333pt;}
.y33{bottom:248.698000pt;}
.ycf{bottom:248.707333pt;}
.y2a{bottom:248.710000pt;}
.y94{bottom:248.712667pt;}
.y62{bottom:265.347333pt;}
.yab{bottom:265.363333pt;}
.y32{bottom:265.366000pt;}
.yce{bottom:265.375333pt;}
.y29{bottom:265.378000pt;}
.y61{bottom:282.015333pt;}
.y31{bottom:282.034000pt;}
.y93{bottom:282.038000pt;}
.ycd{bottom:282.043333pt;}
.y28{bottom:282.046000pt;}
.y60{bottom:298.683333pt;}
.yaa{bottom:298.699333pt;}
.y92{bottom:298.706000pt;}
.ycc{bottom:298.711333pt;}
.y5f{bottom:315.351333pt;}
.ya9{bottom:315.367333pt;}
.y91{bottom:315.374000pt;}
.ycb{bottom:315.379333pt;}
.y5e{bottom:332.019333pt;}
.ya8{bottom:332.035333pt;}
.y90{bottom:332.042000pt;}
.y4{bottom:346.947067pt;}
.y5d{bottom:348.687333pt;}
.yca{bottom:348.694000pt;}
.ya7{bottom:348.703333pt;}
.y8f{bottom:348.710000pt;}
.y3{bottom:361.613733pt;}
.y5c{bottom:365.355333pt;}
.yc9{bottom:365.362000pt;}
.ya6{bottom:365.371333pt;}
.y8e{bottom:365.378000pt;}
.y2{bottom:376.280400pt;}
.y5b{bottom:382.023333pt;}
.yc8{bottom:382.030000pt;}
.ya5{bottom:382.039333pt;}
.y8d{bottom:382.046000pt;}
.y1{bottom:390.947067pt;}
.yc7{bottom:398.698000pt;}
.ya4{bottom:398.707333pt;}
.y5a{bottom:415.359333pt;}
.y8c{bottom:415.363333pt;}
.yc6{bottom:415.366000pt;}
.ya3{bottom:415.375333pt;}
.y59{bottom:432.027333pt;}
.y8b{bottom:432.031333pt;}
.yc5{bottom:432.034000pt;}
.ya2{bottom:432.043333pt;}
.y58{bottom:448.695333pt;}
.y8a{bottom:448.699333pt;}
.yc4{bottom:448.702000pt;}
.ya1{bottom:448.711333pt;}
.y21{bottom:456.642400pt;}
.y57{bottom:465.363333pt;}
.y89{bottom:465.367333pt;}
.yc3{bottom:465.370000pt;}
.ya0{bottom:465.379333pt;}
.y56{bottom:482.031333pt;}
.y88{bottom:482.035333pt;}
.y55{bottom:498.699333pt;}
.y87{bottom:498.703333pt;}
.y1e{bottom:509.977600pt;}
.y54{bottom:515.367333pt;}
.y86{bottom:515.371333pt;}
.yb7{bottom:519.330800pt;}
.y1d{bottom:527.308133pt;}
.y53{bottom:532.035333pt;}
.y85{bottom:532.039333pt;}
.yb6{bottom:538.530800pt;}
.y84{bottom:548.707333pt;}
.yb5{bottom:557.730800pt;}
.y52{bottom:565.371333pt;}
.y83{bottom:565.375333pt;}
.yb4{bottom:576.930800pt;}
.y51{bottom:582.039333pt;}
.y82{bottom:582.043333pt;}
.yb3{bottom:596.130800pt;}
.y50{bottom:598.707333pt;}
.y81{bottom:598.711333pt;}
.yb2{bottom:615.330800pt;}
.y4f{bottom:615.375333pt;}
.y80{bottom:615.379333pt;}
.y4e{bottom:632.043333pt;}
.y13{bottom:633.995067pt;}
.yb1{bottom:634.530800pt;}
.y12{bottom:647.327067pt;}
.y7f{bottom:648.686000pt;}
.y4d{bottom:648.711333pt;}
.yb0{bottom:653.730800pt;}
.y11{bottom:660.659067pt;}
.y7e{bottom:665.354000pt;}
.y4c{bottom:665.379333pt;}
.y10{bottom:673.991067pt;}
.y7d{bottom:682.022000pt;}
.yf{bottom:687.323067pt;}
.y7c{bottom:698.690000pt;}
.y4b{bottom:698.691333pt;}
.ye{bottom:700.655067pt;}
.yd{bottom:713.987067pt;}
.y7b{bottom:715.358000pt;}
.y4a{bottom:715.359333pt;}
.yc2{bottom:715.366000pt;}
.yee{bottom:724.947067pt;}
.yc{bottom:727.319067pt;}
.y7a{bottom:732.026000pt;}
.y49{bottom:732.027333pt;}
.yc1{bottom:732.034000pt;}
.yed{bottom:739.613733pt;}
.yb{bottom:740.651067pt;}
.y79{bottom:748.694000pt;}
.y48{bottom:748.695333pt;}
.yc0{bottom:748.702000pt;}
.ya{bottom:753.983067pt;}
.yec{bottom:754.280400pt;}
.y78{bottom:765.362000pt;}
.y47{bottom:765.363333pt;}
.ybf{bottom:765.370000pt;}
.y9{bottom:767.315067pt;}
.yeb{bottom:768.947067pt;}
.y8{bottom:780.647067pt;}
.y77{bottom:782.030000pt;}
.y46{bottom:782.031333pt;}
.ybe{bottom:782.038000pt;}
.yea{bottom:783.613733pt;}
.y7{bottom:793.979067pt;}
.ye9{bottom:798.280400pt;}
.y45{bottom:798.699333pt;}
.ybd{bottom:798.706000pt;}
.y6{bottom:807.311067pt;}
.ye8{bottom:812.947067pt;}
.y76{bottom:815.366000pt;}
.y44{bottom:815.367333pt;}
.ybc{bottom:815.374000pt;}
.y5{bottom:820.643067pt;}
.ye7{bottom:827.613733pt;}
.y75{bottom:832.034000pt;}
.y43{bottom:832.035333pt;}
.ybb{bottom:832.042000pt;}
.y14{bottom:838.034933pt;}
.ye6{bottom:842.280400pt;}
.y74{bottom:848.702000pt;}
.y42{bottom:848.703333pt;}
.yba{bottom:848.710000pt;}
.ye5{bottom:856.947067pt;}
.y73{bottom:865.370000pt;}
.y41{bottom:865.371333pt;}
.yb9{bottom:865.378000pt;}
.ye4{bottom:871.613733pt;}
.y1c{bottom:872.642933pt;}
.y72{bottom:882.038000pt;}
.y40{bottom:882.039333pt;}
.yb8{bottom:882.046000pt;}
.ye3{bottom:886.280400pt;}
.y71{bottom:898.706000pt;}
.y3f{bottom:898.707333pt;}
.ye2{bottom:900.947067pt;}
.y20{bottom:908.178400pt;}
.y70{bottom:915.374000pt;}
.y3e{bottom:915.375333pt;}
.ye1{bottom:915.613733pt;}
.y1f{bottom:927.378400pt;}
.ye0{bottom:930.280400pt;}
.y6f{bottom:932.042000pt;}
.y3d{bottom:932.043333pt;}
.ydf{bottom:944.947067pt;}
.y6e{bottom:948.710000pt;}
.y3c{bottom:948.711333pt;}
.y26{bottom:959.369867pt;}
.yde{bottom:959.613733pt;}
.y1b{bottom:959.944000pt;}
.y6d{bottom:965.378000pt;}
.y3b{bottom:965.379333pt;}
.y1a{bottom:973.277333pt;}
.ydd{bottom:974.280400pt;}
.y19{bottom:986.610667pt;}
.y25{bottom:988.169867pt;}
.h9{height:27.037117pt;}
.h2{height:31.062500pt;}
.h7{height:31.658667pt;}
.h6{height:32.298667pt;}
.hc{height:33.468750pt;}
.he{height:34.945312pt;}
.hd{height:34.985846pt;}
.h13{height:37.591712pt;}
.h3{height:38.250000pt;}
.h8{height:39.573333pt;}
.h5{height:41.994792pt;}
.h4{height:43.031250pt;}
.h12{height:46.137875pt;}
.h11{height:46.169875pt;}
.h16{height:46.170667pt;}
.h15{height:46.180542pt;}
.h10{height:46.212542pt;}
.hf{height:46.255208pt;}
.ha{height:48.448000pt;}
.h14{height:57.375000pt;}
.hb{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x12{left:78.549467pt;}
.xf{left:91.590533pt;}
.x13{left:95.370000pt;}
.x18{left:99.590533pt;}
.x1a{left:103.370000pt;}
.xe{left:120.077333pt;}
.x5{left:236.342000pt;}
.x7{left:241.776267pt;}
.x17{left:252.206933pt;}
.x4{left:270.464667pt;}
.xd{left:282.200400pt;}
.x9{left:284.453600pt;}
.x3{left:286.710000pt;}
.x8{left:311.749600pt;}
.x6{left:317.050933pt;}
.xc{left:325.616400pt;}
.x16{left:401.177867pt;}
.x11{left:404.970933pt;}
.xa{left:406.161067pt;}
.x1{left:417.573333pt;}
.x15{left:421.426400pt;}
.x10{left:433.637733pt;}
.x14{left:437.422400pt;}
.x19{left:441.638533pt;}
.x1b{left:445.418000pt;}
.xb{left:516.737067pt;}
}




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