
    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_c44aedd3233154315c01b8c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fd4f88d89bb26d1278bf4f3c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.683594;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_a5ec4b84af250dfe5c5607f8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_321e09abc2140f5bd3d149a0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_07b627cbf3366c79a33145d6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.866211;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_d11d7de05f9844a468d557bd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-22.200000px;}
.v4{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.982000px;}
.v1{vertical-align:26.640000px;}
.ls15{letter-spacing:-7.200000px;}
.ls19{letter-spacing:-1.152000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls1b{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.285000px;}
.ls21{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.198000px;}
.ls16{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.072000px;}
.ls2b{letter-spacing:-0.066000px;}
.lsc{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.132000px;}
.ls7{letter-spacing:0.133800px;}
.lsb{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.396000px;}
.ls22{letter-spacing:0.432000px;}
.ls2e{letter-spacing:0.462000px;}
.ls8{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.648000px;}
.ls17{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.ls1d{letter-spacing:0.864000px;}
.ls26{letter-spacing:0.924000px;}
.ls25{letter-spacing:0.990000px;}
.ls5{letter-spacing:1.224000px;}
.ls1f{letter-spacing:1.584000px;}
.ls34{letter-spacing:3.036000px;}
.ls0{letter-spacing:4.200000px;}
.ls4{letter-spacing:4.380000px;}
.ls1e{letter-spacing:5.112000px;}
.ls24{letter-spacing:6.000000px;}
.ls2{letter-spacing:6.600000px;}
.ls1{letter-spacing:6.616000px;}
.ls2f{letter-spacing:7.200000px;}
.ls3{letter-spacing:10.200000px;}
.ls2d{letter-spacing:10.758000px;}
.ls2a{letter-spacing:10.890000px;}
.ls28{letter-spacing:10.956000px;}
.ls31{letter-spacing:11.352000px;}
.ls29{letter-spacing:11.946000px;}
.ls33{letter-spacing:19.800000px;}
.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;}
}
.ws10{word-spacing:-30.492000px;}
.ws13{word-spacing:-29.898000px;}
.wsf{word-spacing:-29.502000px;}
.ws12{word-spacing:-29.436000px;}
.ws15{word-spacing:-29.304000px;}
.wse{word-spacing:-22.860000px;}
.ws6{word-spacing:-20.232000px;}
.ws11{word-spacing:-19.536000px;}
.wsd{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.072000px;}
.wsc{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws0{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.640000px;}
.ws4{word-spacing:-16.860000px;}
.ws14{word-spacing:-16.302000px;}
.ws16{word-spacing:-16.236000px;}
.ws9{word-spacing:-14.079000px;}
.wsb{word-spacing:-13.794000px;}
.ws7{word-spacing:-12.139200px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-18.504000px;}
._15{margin-left:-16.008000px;}
._10{margin-left:-14.304000px;}
._d{margin-left:-12.355200px;}
._11{margin-left:-10.015200px;}
._3{margin-left:-8.976000px;}
._b{margin-left:-7.200000px;}
._9{margin-left:-5.848200px;}
._0{margin-left:-4.200000px;}
._1{margin-left:-2.730000px;}
._6{margin-left:-1.176000px;}
._a{width:1.746600px;}
._5{width:3.109800px;}
._2{width:4.686000px;}
._c{width:5.754000px;}
._4{width:7.242000px;}
._e{width:8.358600px;}
._8{width:9.485400px;}
._7{width:10.872000px;}
._13{width:12.204000px;}
._12{width:13.509000px;}
._f{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs5{font-size:43.800000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y93{bottom:75.339900px;}
.y1{bottom:75.345900px;}
.y6d{bottom:76.337550px;}
.y22{bottom:76.343400px;}
.y92{bottom:140.307150px;}
.y21{bottom:140.310000px;}
.y48{bottom:140.311500px;}
.y6c{bottom:140.317500px;}
.yd9{bottom:143.162550px;}
.yfc{bottom:144.561900px;}
.yb7{bottom:144.928500px;}
.y91{bottom:156.808650px;}
.y20{bottom:156.811500px;}
.y47{bottom:156.813000px;}
.y6b{bottom:162.369000px;}
.yd8{bottom:163.556550px;}
.yfb{bottom:164.361900px;}
.yb6{bottom:166.672500px;}
.y90{bottom:173.310150px;}
.y1f{bottom:173.313000px;}
.y46{bottom:173.314500px;}
.y6a{bottom:173.317500px;}
.yd7{bottom:183.950550px;}
.yfa{bottom:184.161900px;}
.yb5{bottom:188.416500px;}
.y8f{bottom:189.811650px;}
.y1e{bottom:189.814500px;}
.y45{bottom:189.816000px;}
.y69{bottom:195.369000px;}
.yf9{bottom:203.961900px;}
.yd6{bottom:204.344550px;}
.y1d{bottom:206.316000px;}
.y44{bottom:206.317500px;}
.yb4{bottom:210.160500px;}
.y8e{bottom:211.863150px;}
.y1c{bottom:222.817500px;}
.yf8{bottom:223.761900px;}
.yd5{bottom:224.738550px;}
.y43{bottom:228.369000px;}
.yb3{bottom:231.904500px;}
.y68{bottom:236.518350px;}
.yf7{bottom:243.561900px;}
.y1b{bottom:244.869000px;}
.yd4{bottom:245.132550px;}
.y8d{bottom:251.326500px;}
.yb2{bottom:253.648500px;}
.y67{bottom:258.118350px;}
.yf6{bottom:263.361900px;}
.yd3{bottom:265.526550px;}
.y42{bottom:267.250350px;}
.y8c{bottom:272.926500px;}
.yb1{bottom:275.392500px;}
.y66{bottom:279.718350px;}
.yf5{bottom:283.161900px;}
.yd2{bottom:285.920550px;}
.y1a{bottom:286.654500px;}
.y41{bottom:288.850350px;}
.y8b{bottom:294.832500px;}
.yb0{bottom:297.136500px;}
.y65{bottom:301.318350px;}
.yf4{bottom:302.961900px;}
.yd1{bottom:306.314550px;}
.y19{bottom:308.254500px;}
.y40{bottom:310.144350px;}
.y8a{bottom:316.738500px;}
.yaf{bottom:318.880500px;}
.y64{bottom:322.918350px;}
.yd0{bottom:326.708550px;}
.y18{bottom:329.854500px;}
.y3f{bottom:331.438350px;}
.y89{bottom:338.644500px;}
.yae{bottom:340.624500px;}
.yf3{bottom:344.361900px;}
.y63{bottom:344.518350px;}
.ycf{bottom:347.102550px;}
.y17{bottom:351.454500px;}
.y3e{bottom:352.732350px;}
.y88{bottom:360.550500px;}
.yad{bottom:362.368500px;}
.y62{bottom:366.118350px;}
.yf2{bottom:372.665850px;}
.y16{bottom:373.054500px;}
.y3d{bottom:374.026350px;}
.yce{bottom:376.006500px;}
.y87{bottom:382.456500px;}
.yac{bottom:384.112500px;}
.y61{bottom:387.718350px;}
.y15{bottom:394.654500px;}
.y3c{bottom:395.320350px;}
.y86{bottom:404.398500px;}
.yab{bottom:405.856500px;}
.y60{bottom:409.318350px;}
.y14{bottom:416.254500px;}
.y3b{bottom:416.614350px;}
.ycd{bottom:425.376450px;}
.y85{bottom:426.142500px;}
.yaa{bottom:427.600500px;}
.y5f{bottom:430.918350px;}
.yf1{bottom:437.465850px;}
.y13{bottom:437.854500px;}
.y3a{bottom:437.908350px;}
.ycc{bottom:445.770450px;}
.y84{bottom:447.886500px;}
.ya9{bottom:449.344500px;}
.y5e{bottom:452.518350px;}
.y39{bottom:459.202350px;}
.y12{bottom:459.454500px;}
.ycb{bottom:466.164450px;}
.y83{bottom:469.630500px;}
.yf0{bottom:469.900350px;}
.ya8{bottom:471.088500px;}
.y5d{bottom:474.118350px;}
.y38{bottom:480.496350px;}
.y11{bottom:481.054500px;}
.yca{bottom:486.558450px;}
.yef{bottom:489.848850px;}
.y82{bottom:491.374500px;}
.ya7{bottom:492.832500px;}
.y5c{bottom:495.718350px;}
.y37{bottom:501.790350px;}
.y10{bottom:502.654500px;}
.yc9{bottom:506.952450px;}
.yee{bottom:509.797350px;}
.y81{bottom:513.118500px;}
.ya6{bottom:514.576500px;}
.y5b{bottom:517.318350px;}
.y36{bottom:523.084350px;}
.yf{bottom:524.254500px;}
.yc8{bottom:527.346450px;}
.yed{bottom:529.745850px;}
.y80{bottom:534.862500px;}
.ya5{bottom:536.320500px;}
.y5a{bottom:538.918350px;}
.y35{bottom:544.378350px;}
.ye{bottom:545.854500px;}
.yc7{bottom:547.740450px;}
.yec{bottom:549.694350px;}
.y10d{bottom:556.115850px;}
.y7f{bottom:556.606500px;}
.ya4{bottom:558.064500px;}
.y59{bottom:560.518350px;}
.y34{bottom:565.672350px;}
.yd{bottom:567.454500px;}
.yc6{bottom:568.134450px;}
.yeb{bottom:569.642850px;}
.y10c{bottom:574.115850px;}
.y7e{bottom:578.350500px;}
.ya3{bottom:579.808500px;}
.y58{bottom:582.118350px;}
.y33{bottom:586.966350px;}
.yc5{bottom:588.528450px;}
.yc{bottom:589.054500px;}
.yea{bottom:589.591350px;}
.y10b{bottom:592.115850px;}
.y7d{bottom:600.094500px;}
.ya2{bottom:601.552500px;}
.y57{bottom:603.718350px;}
.y32{bottom:608.260350px;}
.yc4{bottom:608.922450px;}
.ye9{bottom:609.539850px;}
.y10a{bottom:610.115850px;}
.yb{bottom:610.654500px;}
.y7c{bottom:621.838500px;}
.ya1{bottom:623.296500px;}
.y56{bottom:625.318350px;}
.yc3{bottom:629.316450px;}
.ye8{bottom:629.488350px;}
.y31{bottom:629.554350px;}
.ya{bottom:632.254500px;}
.y7b{bottom:643.582500px;}
.ya0{bottom:645.040500px;}
.y55{bottom:646.918350px;}
.ye7{bottom:649.436850px;}
.yc2{bottom:649.710450px;}
.y109{bottom:649.715850px;}
.y30{bottom:650.848350px;}
.y9{bottom:653.854500px;}
.y7a{bottom:665.326500px;}
.y9f{bottom:666.784500px;}
.y54{bottom:668.518350px;}
.ye6{bottom:669.385350px;}
.y2f{bottom:672.142350px;}
.y8{bottom:675.454500px;}
.yc1{bottom:678.614400px;}
.y79{bottom:687.070500px;}
.y9e{bottom:688.528500px;}
.ye5{bottom:689.333850px;}
.y53{bottom:690.118350px;}
.y108{bottom:691.115850px;}
.y2e{bottom:693.436350px;}
.y7{bottom:697.054500px;}
.y78{bottom:708.814500px;}
.ye4{bottom:709.282350px;}
.y9d{bottom:710.272500px;}
.y107{bottom:710.915850px;}
.y52{bottom:711.718350px;}
.y2d{bottom:714.730350px;}
.yc0{bottom:727.972350px;}
.ye3{bottom:729.230850px;}
.y77{bottom:730.558500px;}
.y106{bottom:730.715850px;}
.y9c{bottom:732.016500px;}
.y51{bottom:733.318350px;}
.y2c{bottom:736.024350px;}
.ye2{bottom:749.179350px;}
.ybf{bottom:750.166350px;}
.y105{bottom:750.515850px;}
.y76{bottom:752.464500px;}
.y9b{bottom:753.760500px;}
.y50{bottom:754.918350px;}
.y2b{bottom:757.366350px;}
.ye1{bottom:769.127850px;}
.y104{bottom:770.315850px;}
.ybe{bottom:772.360350px;}
.y75{bottom:774.370500px;}
.y9a{bottom:775.504500px;}
.y4f{bottom:776.518350px;}
.y2a{bottom:778.660350px;}
.y6{bottom:783.454500px;}
.ye0{bottom:789.076350px;}
.y103{bottom:790.115850px;}
.ybd{bottom:794.554350px;}
.y74{bottom:796.276500px;}
.y99{bottom:797.248500px;}
.y4e{bottom:798.118350px;}
.y29{bottom:799.954350px;}
.ydf{bottom:809.024850px;}
.y102{bottom:809.915850px;}
.ybc{bottom:816.748350px;}
.y73{bottom:818.182500px;}
.y98{bottom:818.992500px;}
.y4d{bottom:819.718350px;}
.y28{bottom:821.248350px;}
.y5{bottom:824.854500px;}
.yde{bottom:828.973350px;}
.y101{bottom:829.715850px;}
.ybb{bottom:838.942350px;}
.y72{bottom:840.088500px;}
.y97{bottom:840.736500px;}
.y4c{bottom:841.318350px;}
.y27{bottom:842.542350px;}
.ydd{bottom:848.921850px;}
.y100{bottom:849.515850px;}
.y4{bottom:855.454500px;}
.yba{bottom:861.136350px;}
.y71{bottom:861.994500px;}
.y96{bottom:862.480500px;}
.y4b{bottom:862.918350px;}
.y26{bottom:863.836350px;}
.ydc{bottom:868.870350px;}
.yff{bottom:869.315850px;}
.yb9{bottom:883.330350px;}
.y70{bottom:883.900500px;}
.y95{bottom:884.224500px;}
.y4a{bottom:884.518350px;}
.y25{bottom:885.130350px;}
.ydb{bottom:888.818850px;}
.yfe{bottom:889.115850px;}
.yb8{bottom:905.524350px;}
.y6f{bottom:905.806500px;}
.y94{bottom:905.968500px;}
.y49{bottom:906.118350px;}
.y24{bottom:906.424350px;}
.yda{bottom:908.767350px;}
.yfd{bottom:908.915850px;}
.y3{bottom:910.715850px;}
.y6e{bottom:927.712500px;}
.y23{bottom:927.718350px;}
.y2{bottom:928.715850px;}
.h9{height:26.199902px;}
.hd{height:30.568359px;}
.hb{height:35.663086px;}
.h7{height:37.191504px;}
.h3{height:39.990234px;}
.h2{height:43.989258px;}
.ha{height:48.399902px;}
.h5{height:50.947266px;}
.h4{height:56.041992px;}
.h8{height:61.136719px;}
.hc{height:63.322031px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x5{left:97.795350px;}
.x7{left:119.059200px;}
.x8{left:140.307150px;}
.x6{left:150.670350px;}
.xa{left:172.487250px;}
.x4{left:195.673050px;}
.x1{left:304.335750px;}
.x9{left:518.943450px;}
.x2{left:572.164350px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v4{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.650667pt;}
.v1{vertical-align:23.680000pt;}
.ls15{letter-spacing:-6.400000pt;}
.ls19{letter-spacing:-1.024000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls1b{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.253333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.176000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls2b{letter-spacing:-0.058667pt;}
.lsc{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.117333pt;}
.ls7{letter-spacing:0.118933pt;}
.lsb{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.352000pt;}
.ls22{letter-spacing:0.384000pt;}
.ls2e{letter-spacing:0.410667pt;}
.ls8{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.576000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.821333pt;}
.ls25{letter-spacing:0.880000pt;}
.ls5{letter-spacing:1.088000pt;}
.ls1f{letter-spacing:1.408000pt;}
.ls34{letter-spacing:2.698667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls4{letter-spacing:3.893333pt;}
.ls1e{letter-spacing:4.544000pt;}
.ls24{letter-spacing:5.333333pt;}
.ls2{letter-spacing:5.866667pt;}
.ls1{letter-spacing:5.880889pt;}
.ls2f{letter-spacing:6.400000pt;}
.ls3{letter-spacing:9.066667pt;}
.ls2d{letter-spacing:9.562667pt;}
.ls2a{letter-spacing:9.680000pt;}
.ls28{letter-spacing:9.738667pt;}
.ls31{letter-spacing:10.090667pt;}
.ls29{letter-spacing:10.618667pt;}
.ls33{letter-spacing:17.600000pt;}
.ws10{word-spacing:-27.104000pt;}
.ws13{word-spacing:-26.576000pt;}
.wsf{word-spacing:-26.224000pt;}
.ws12{word-spacing:-26.165333pt;}
.ws15{word-spacing:-26.048000pt;}
.wse{word-spacing:-20.320000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws11{word-spacing:-17.365333pt;}
.wsd{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.064000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws0{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.680000pt;}
.ws4{word-spacing:-14.986667pt;}
.ws14{word-spacing:-14.490667pt;}
.ws16{word-spacing:-14.432000pt;}
.ws9{word-spacing:-12.514667pt;}
.wsb{word-spacing:-12.261333pt;}
.ws7{word-spacing:-10.790400pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-16.448000pt;}
._15{margin-left:-14.229333pt;}
._10{margin-left:-12.714667pt;}
._d{margin-left:-10.982400pt;}
._11{margin-left:-8.902400pt;}
._3{margin-left:-7.978667pt;}
._b{margin-left:-6.400000pt;}
._9{margin-left:-5.198400pt;}
._0{margin-left:-3.733333pt;}
._1{margin-left:-2.426667pt;}
._6{margin-left:-1.045333pt;}
._a{width:1.552533pt;}
._5{width:2.764267pt;}
._2{width:4.165333pt;}
._c{width:5.114667pt;}
._4{width:6.437333pt;}
._e{width:7.429867pt;}
._8{width:8.431467pt;}
._7{width:9.664000pt;}
._13{width:10.848000pt;}
._12{width:12.008000pt;}
._f{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs5{font-size:38.933333pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:66.968800pt;}
.y1{bottom:66.974133pt;}
.y6d{bottom:67.855600pt;}
.y22{bottom:67.860800pt;}
.y92{bottom:124.717467pt;}
.y21{bottom:124.720000pt;}
.y48{bottom:124.721333pt;}
.y6c{bottom:124.726667pt;}
.yd9{bottom:127.255600pt;}
.yfc{bottom:128.499467pt;}
.yb7{bottom:128.825333pt;}
.y91{bottom:139.385467pt;}
.y20{bottom:139.388000pt;}
.y47{bottom:139.389333pt;}
.y6b{bottom:144.328000pt;}
.yd8{bottom:145.383600pt;}
.yfb{bottom:146.099467pt;}
.yb6{bottom:148.153333pt;}
.y90{bottom:154.053467pt;}
.y1f{bottom:154.056000pt;}
.y46{bottom:154.057333pt;}
.y6a{bottom:154.060000pt;}
.yd7{bottom:163.511600pt;}
.yfa{bottom:163.699467pt;}
.yb5{bottom:167.481333pt;}
.y8f{bottom:168.721467pt;}
.y1e{bottom:168.724000pt;}
.y45{bottom:168.725333pt;}
.y69{bottom:173.661333pt;}
.yf9{bottom:181.299467pt;}
.yd6{bottom:181.639600pt;}
.y1d{bottom:183.392000pt;}
.y44{bottom:183.393333pt;}
.yb4{bottom:186.809333pt;}
.y8e{bottom:188.322800pt;}
.y1c{bottom:198.060000pt;}
.yf8{bottom:198.899467pt;}
.yd5{bottom:199.767600pt;}
.y43{bottom:202.994667pt;}
.yb3{bottom:206.137333pt;}
.y68{bottom:210.238533pt;}
.yf7{bottom:216.499467pt;}
.y1b{bottom:217.661333pt;}
.yd4{bottom:217.895600pt;}
.y8d{bottom:223.401333pt;}
.yb2{bottom:225.465333pt;}
.y67{bottom:229.438533pt;}
.yf6{bottom:234.099467pt;}
.yd3{bottom:236.023600pt;}
.y42{bottom:237.555867pt;}
.y8c{bottom:242.601333pt;}
.yb1{bottom:244.793333pt;}
.y66{bottom:248.638533pt;}
.yf5{bottom:251.699467pt;}
.yd2{bottom:254.151600pt;}
.y1a{bottom:254.804000pt;}
.y41{bottom:256.755867pt;}
.y8b{bottom:262.073333pt;}
.yb0{bottom:264.121333pt;}
.y65{bottom:267.838533pt;}
.yf4{bottom:269.299467pt;}
.yd1{bottom:272.279600pt;}
.y19{bottom:274.004000pt;}
.y40{bottom:275.683867pt;}
.y8a{bottom:281.545333pt;}
.yaf{bottom:283.449333pt;}
.y64{bottom:287.038533pt;}
.yd0{bottom:290.407600pt;}
.y18{bottom:293.204000pt;}
.y3f{bottom:294.611867pt;}
.y89{bottom:301.017333pt;}
.yae{bottom:302.777333pt;}
.yf3{bottom:306.099467pt;}
.y63{bottom:306.238533pt;}
.ycf{bottom:308.535600pt;}
.y17{bottom:312.404000pt;}
.y3e{bottom:313.539867pt;}
.y88{bottom:320.489333pt;}
.yad{bottom:322.105333pt;}
.y62{bottom:325.438533pt;}
.yf2{bottom:331.258533pt;}
.y16{bottom:331.604000pt;}
.y3d{bottom:332.467867pt;}
.yce{bottom:334.228000pt;}
.y87{bottom:339.961333pt;}
.yac{bottom:341.433333pt;}
.y61{bottom:344.638533pt;}
.y15{bottom:350.804000pt;}
.y3c{bottom:351.395867pt;}
.y86{bottom:359.465333pt;}
.yab{bottom:360.761333pt;}
.y60{bottom:363.838533pt;}
.y14{bottom:370.004000pt;}
.y3b{bottom:370.323867pt;}
.ycd{bottom:378.112400pt;}
.y85{bottom:378.793333pt;}
.yaa{bottom:380.089333pt;}
.y5f{bottom:383.038533pt;}
.yf1{bottom:388.858533pt;}
.y13{bottom:389.204000pt;}
.y3a{bottom:389.251867pt;}
.ycc{bottom:396.240400pt;}
.y84{bottom:398.121333pt;}
.ya9{bottom:399.417333pt;}
.y5e{bottom:402.238533pt;}
.y39{bottom:408.179867pt;}
.y12{bottom:408.404000pt;}
.ycb{bottom:414.368400pt;}
.y83{bottom:417.449333pt;}
.yf0{bottom:417.689200pt;}
.ya8{bottom:418.745333pt;}
.y5d{bottom:421.438533pt;}
.y38{bottom:427.107867pt;}
.y11{bottom:427.604000pt;}
.yca{bottom:432.496400pt;}
.yef{bottom:435.421200pt;}
.y82{bottom:436.777333pt;}
.ya7{bottom:438.073333pt;}
.y5c{bottom:440.638533pt;}
.y37{bottom:446.035867pt;}
.y10{bottom:446.804000pt;}
.yc9{bottom:450.624400pt;}
.yee{bottom:453.153200pt;}
.y81{bottom:456.105333pt;}
.ya6{bottom:457.401333pt;}
.y5b{bottom:459.838533pt;}
.y36{bottom:464.963867pt;}
.yf{bottom:466.004000pt;}
.yc8{bottom:468.752400pt;}
.yed{bottom:470.885200pt;}
.y80{bottom:475.433333pt;}
.ya5{bottom:476.729333pt;}
.y5a{bottom:479.038533pt;}
.y35{bottom:483.891867pt;}
.ye{bottom:485.204000pt;}
.yc7{bottom:486.880400pt;}
.yec{bottom:488.617200pt;}
.y10d{bottom:494.325200pt;}
.y7f{bottom:494.761333pt;}
.ya4{bottom:496.057333pt;}
.y59{bottom:498.238533pt;}
.y34{bottom:502.819867pt;}
.yd{bottom:504.404000pt;}
.yc6{bottom:505.008400pt;}
.yeb{bottom:506.349200pt;}
.y10c{bottom:510.325200pt;}
.y7e{bottom:514.089333pt;}
.ya3{bottom:515.385333pt;}
.y58{bottom:517.438533pt;}
.y33{bottom:521.747867pt;}
.yc5{bottom:523.136400pt;}
.yc{bottom:523.604000pt;}
.yea{bottom:524.081200pt;}
.y10b{bottom:526.325200pt;}
.y7d{bottom:533.417333pt;}
.ya2{bottom:534.713333pt;}
.y57{bottom:536.638533pt;}
.y32{bottom:540.675867pt;}
.yc4{bottom:541.264400pt;}
.ye9{bottom:541.813200pt;}
.y10a{bottom:542.325200pt;}
.yb{bottom:542.804000pt;}
.y7c{bottom:552.745333pt;}
.ya1{bottom:554.041333pt;}
.y56{bottom:555.838533pt;}
.yc3{bottom:559.392400pt;}
.ye8{bottom:559.545200pt;}
.y31{bottom:559.603867pt;}
.ya{bottom:562.004000pt;}
.y7b{bottom:572.073333pt;}
.ya0{bottom:573.369333pt;}
.y55{bottom:575.038533pt;}
.ye7{bottom:577.277200pt;}
.yc2{bottom:577.520400pt;}
.y109{bottom:577.525200pt;}
.y30{bottom:578.531867pt;}
.y9{bottom:581.204000pt;}
.y7a{bottom:591.401333pt;}
.y9f{bottom:592.697333pt;}
.y54{bottom:594.238533pt;}
.ye6{bottom:595.009200pt;}
.y2f{bottom:597.459867pt;}
.y8{bottom:600.404000pt;}
.yc1{bottom:603.212800pt;}
.y79{bottom:610.729333pt;}
.y9e{bottom:612.025333pt;}
.ye5{bottom:612.741200pt;}
.y53{bottom:613.438533pt;}
.y108{bottom:614.325200pt;}
.y2e{bottom:616.387867pt;}
.y7{bottom:619.604000pt;}
.y78{bottom:630.057333pt;}
.ye4{bottom:630.473200pt;}
.y9d{bottom:631.353333pt;}
.y107{bottom:631.925200pt;}
.y52{bottom:632.638533pt;}
.y2d{bottom:635.315867pt;}
.yc0{bottom:647.086533pt;}
.ye3{bottom:648.205200pt;}
.y77{bottom:649.385333pt;}
.y106{bottom:649.525200pt;}
.y9c{bottom:650.681333pt;}
.y51{bottom:651.838533pt;}
.y2c{bottom:654.243867pt;}
.ye2{bottom:665.937200pt;}
.ybf{bottom:666.814533pt;}
.y105{bottom:667.125200pt;}
.y76{bottom:668.857333pt;}
.y9b{bottom:670.009333pt;}
.y50{bottom:671.038533pt;}
.y2b{bottom:673.214533pt;}
.ye1{bottom:683.669200pt;}
.y104{bottom:684.725200pt;}
.ybe{bottom:686.542533pt;}
.y75{bottom:688.329333pt;}
.y9a{bottom:689.337333pt;}
.y4f{bottom:690.238533pt;}
.y2a{bottom:692.142533pt;}
.y6{bottom:696.404000pt;}
.ye0{bottom:701.401200pt;}
.y103{bottom:702.325200pt;}
.ybd{bottom:706.270533pt;}
.y74{bottom:707.801333pt;}
.y99{bottom:708.665333pt;}
.y4e{bottom:709.438533pt;}
.y29{bottom:711.070533pt;}
.ydf{bottom:719.133200pt;}
.y102{bottom:719.925200pt;}
.ybc{bottom:725.998533pt;}
.y73{bottom:727.273333pt;}
.y98{bottom:727.993333pt;}
.y4d{bottom:728.638533pt;}
.y28{bottom:729.998533pt;}
.y5{bottom:733.204000pt;}
.yde{bottom:736.865200pt;}
.y101{bottom:737.525200pt;}
.ybb{bottom:745.726533pt;}
.y72{bottom:746.745333pt;}
.y97{bottom:747.321333pt;}
.y4c{bottom:747.838533pt;}
.y27{bottom:748.926533pt;}
.ydd{bottom:754.597200pt;}
.y100{bottom:755.125200pt;}
.y4{bottom:760.404000pt;}
.yba{bottom:765.454533pt;}
.y71{bottom:766.217333pt;}
.y96{bottom:766.649333pt;}
.y4b{bottom:767.038533pt;}
.y26{bottom:767.854533pt;}
.ydc{bottom:772.329200pt;}
.yff{bottom:772.725200pt;}
.yb9{bottom:785.182533pt;}
.y70{bottom:785.689333pt;}
.y95{bottom:785.977333pt;}
.y4a{bottom:786.238533pt;}
.y25{bottom:786.782533pt;}
.ydb{bottom:790.061200pt;}
.yfe{bottom:790.325200pt;}
.yb8{bottom:804.910533pt;}
.y6f{bottom:805.161333pt;}
.y94{bottom:805.305333pt;}
.y49{bottom:805.438533pt;}
.y24{bottom:805.710533pt;}
.yda{bottom:807.793200pt;}
.yfd{bottom:807.925200pt;}
.y3{bottom:809.525200pt;}
.y6e{bottom:824.633333pt;}
.y23{bottom:824.638533pt;}
.y2{bottom:825.525200pt;}
.h9{height:23.288802pt;}
.hd{height:27.171875pt;}
.hb{height:31.700521pt;}
.h7{height:33.059115pt;}
.h3{height:35.546875pt;}
.h2{height:39.101562pt;}
.ha{height:43.022135pt;}
.h5{height:45.286458pt;}
.h4{height:49.815104pt;}
.h8{height:54.343750pt;}
.hc{height:56.286250pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x5{left:86.929200pt;}
.x7{left:105.830400pt;}
.x8{left:124.717467pt;}
.x6{left:133.929200pt;}
.xa{left:153.322000pt;}
.x4{left:173.931600pt;}
.x1{left:270.520667pt;}
.x9{left:461.283067pt;}
.x2{left:508.590533pt;}
}




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