
    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_b1a1e96afd7485fa37e8335b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_5bc063a71c45d8431ac935d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_3d1e7df78756331197fcb1de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_c53d4b8183d1ea7299594488.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_2ab91854e9d5687a8d6cf8cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_5a3c7bb44617ab18844344fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932617;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_959f72e4e1d8791e40b7a939.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944824;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_e7c939ac4f8dc829aa410721.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_85e9c63dbb094c79298c63b1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.108398;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_053267aa4badf0ff70070937.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.180000px;}
.ls2{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls12{letter-spacing:0.037440px;}
.lsb{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.097920px;}
.ls8{letter-spacing:0.106560px;}
.lsf{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.234480px;}
.lsc{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.378600px;}
.ls10{letter-spacing:0.540000px;}
.ls7{letter-spacing:2.106720px;}
.ls11{letter-spacing:14.940000px;}
.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;}
}
.ws4{word-spacing:-84.600000px;}
.ws3{word-spacing:-84.221280px;}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-27.000000px;}
.ws15{word-spacing:-21.438600px;}
.ws6{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.681400px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.680200px;}
.ws8{word-spacing:0.000000px;}
.ws14{word-spacing:18.415920px;}
.wse{word-spacing:18.439920px;}
.ws10{word-spacing:19.053360px;}
.ws13{word-spacing:19.159920px;}
.ws11{word-spacing:19.233360px;}
._6{margin-left:-4.633200px;}
._9{margin-left:-3.622320px;}
._17{margin-left:-2.580240px;}
._0{margin-left:-1.347840px;}
._1{width:1.753440px;}
._d{width:2.824800px;}
._c{width:3.875040px;}
._1b{width:5.605200px;}
._1a{width:6.778080px;}
._28{width:7.834320px;}
._7{width:9.592560px;}
._8{width:10.804320px;}
._4{width:12.257040px;}
._5{width:13.556640px;}
._b{width:15.163200px;}
._a{width:16.174080px;}
._11{width:17.858880px;}
._e{width:19.206720px;}
._10{width:26.198640px;}
._f{width:27.209520px;}
._2b{width:28.280160px;}
._13{width:29.340000px;}
._29{width:31.444560px;}
._2a{width:32.570400px;}
._2{width:34.369920px;}
._3{width:35.465040px;}
._12{width:36.540000px;}
._18{width:37.571040px;}
._19{width:38.666160px;}
._1f{width:40.435200px;}
._20{width:41.521440px;}
._1c{width:45.910800px;}
._1d{width:47.868960px;}
._16{width:54.082080px;}
._15{width:55.092960px;}
._14{width:56.215920px;}
._1e{width:66.381120px;}
._26{width:72.249840px;}
._27{width:80.436960px;}
._22{width:99.918720px;}
._2c{width:122.627520px;}
._25{width:137.328480px;}
._24{width:179.459280px;}
._23{width:250.200000px;}
._21{width:276.827760px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.500000px;}
.y61{bottom:4.680000px;}
.y71{bottom:5.220000px;}
.ya{bottom:5.940000px;}
.y3{bottom:7.560000px;}
.y74{bottom:8.460000px;}
.y9{bottom:9.180000px;}
.y73{bottom:9.720000px;}
.y5{bottom:11.520000px;}
.y63{bottom:11.550000px;}
.y6{bottom:15.480000px;}
.y64{bottom:15.510000px;}
.yb{bottom:29.160000px;}
.y6f{bottom:39.240000px;}
.y92{bottom:42.474000px;}
.y6b{bottom:42.480000px;}
.y88{bottom:42.510000px;}
.y7c{bottom:42.525000px;}
.y6d{bottom:47.880000px;}
.yb1{bottom:48.285000px;}
.y8f{bottom:50.040000px;}
.y8{bottom:53.460000px;}
.y6e{bottom:56.520000px;}
.y91{bottom:57.594000px;}
.y67{bottom:57.600000px;}
.y87{bottom:58.710000px;}
.y8c{bottom:59.220000px;}
.y79{bottom:70.020000px;}
.y85{bottom:70.380000px;}
.y8a{bottom:80.100000px;}
.y66{bottom:81.756000px;}
.y7e{bottom:81.900000px;}
.yae{bottom:82.080000px;}
.y84{bottom:90.180000px;}
.y77{bottom:101.550000px;}
.y5f{bottom:102.816000px;}
.y76{bottom:112.500000px;}
.y7b{bottom:113.805000px;}
.y82{bottom:123.165000px;}
.y80{bottom:124.560000px;}
.y90{bottom:134.856000px;}
.y48{bottom:138.816000px;}
.y5e{bottom:138.996000px;}
.yac{bottom:142.236000px;}
.y2f{bottom:145.116000px;}
.yab{bottom:170.130000px;}
.y2e{bottom:172.830000px;}
.y47{bottom:175.170000px;}
.yaa{bottom:197.850000px;}
.y2d{bottom:200.550000px;}
.y8e{bottom:207.750000px;}
.y46{bottom:211.350000px;}
.y5d{bottom:211.530000px;}
.ya9{bottom:225.570000px;}
.y7d{bottom:225.930000px;}
.y2c{bottom:228.270000px;}
.y45{bottom:247.530000px;}
.y5c{bottom:247.710000px;}
.ya8{bottom:253.470000px;}
.y2b{bottom:256.170000px;}
.y8d{bottom:273.090000px;}
.ya7{bottom:281.190000px;}
.y44{bottom:283.710000px;}
.y2a{bottom:283.890000px;}
.ya6{bottom:308.910000px;}
.y29{bottom:311.610000px;}
.y43{bottom:320.070000px;}
.y7a{bottom:323.130000px;}
.ya5{bottom:336.675000px;}
.y28{bottom:339.555000px;}
.y42{bottom:356.295000px;}
.ya4{bottom:364.575000px;}
.y27{bottom:367.275000px;}
.ya3{bottom:392.295000px;}
.y41{bottom:392.475000px;}
.y5b{bottom:392.655000px;}
.y26{bottom:394.995000px;}
.y8b{bottom:402.195000px;}
.ya2{bottom:420.015000px;}
.y25{bottom:422.715000px;}
.y40{bottom:428.655000px;}
.y5a{bottom:428.835000px;}
.ya1{bottom:447.915000px;}
.y24{bottom:450.615000px;}
.y78{bottom:452.235000px;}
.y3f{bottom:464.835000px;}
.y59{bottom:465.015000px;}
.ya0{bottom:475.635000px;}
.y89{bottom:476.715000px;}
.y23{bottom:478.335000px;}
.y3e{bottom:501.195000px;}
.y9f{bottom:503.355000px;}
.y22{bottom:506.055000px;}
.y9e{bottom:531.075000px;}
.y21{bottom:533.955000px;}
.y3d{bottom:537.375000px;}
.y58{bottom:537.555000px;}
.y9d{bottom:558.975000px;}
.y20{bottom:561.675000px;}
.y86{bottom:572.115000px;}
.y3c{bottom:573.555000px;}
.y57{bottom:573.735000px;}
.y9c{bottom:586.695000px;}
.y1f{bottom:589.395000px;}
.y56{bottom:609.945000px;}
.y3b{bottom:612.465000px;}
.y9b{bottom:614.445000px;}
.y1e{bottom:617.145000px;}
.y9a{bottom:642.165000px;}
.y1d{bottom:645.045000px;}
.y55{bottom:646.125000px;}
.y3a{bottom:651.705000px;}
.y75{bottom:654.405000px;}
.y99{bottom:670.065000px;}
.y1c{bottom:672.765000px;}
.y54{bottom:682.485000px;}
.y39{bottom:690.585000px;}
.y98{bottom:697.785000px;}
.y1b{bottom:700.485000px;}
.y53{bottom:718.665000px;}
.y97{bottom:725.505000px;}
.y1a{bottom:728.205000px;}
.y38{bottom:729.825000px;}
.y83{bottom:731.805000px;}
.y96{bottom:753.405000px;}
.y52{bottom:754.845000px;}
.y19{bottom:756.105000px;}
.y37{bottom:768.705000px;}
.y95{bottom:781.125000px;}
.y72{bottom:782.205000px;}
.y18{bottom:783.825000px;}
.y51{bottom:791.025000px;}
.y36{bottom:807.945000px;}
.y94{bottom:808.845000px;}
.y17{bottom:811.545000px;}
.y6a{bottom:813.705000px;}
.y50{bottom:827.205000px;}
.y93{bottom:836.565000px;}
.y81{bottom:837.285000px;}
.y16{bottom:839.445000px;}
.y35{bottom:844.125000px;}
.yb0{bottom:857.625000px;}
.y4f{bottom:863.565000px;}
.y15{bottom:867.165000px;}
.y34{bottom:880.530000px;}
.y14{bottom:894.930000px;}
.y4e{bottom:899.790000px;}
.y33{bottom:916.710000px;}
.yaf{bottom:921.030000px;}
.y13{bottom:922.650000px;}
.y70{bottom:928.950000px;}
.y4d{bottom:935.970000px;}
.y12{bottom:950.550000px;}
.y6c{bottom:951.450000px;}
.y32{bottom:952.890000px;}
.y4c{bottom:972.150000px;}
.y7f{bottom:975.750000px;}
.y11{bottom:978.270000px;}
.y31{bottom:989.070000px;}
.y10{bottom:1005.990000px;}
.y4b{bottom:1008.510000px;}
.yad{bottom:1018.230000px;}
.y30{bottom:1025.430000px;}
.yf{bottom:1033.890000px;}
.y4a{bottom:1044.690000px;}
.ye{bottom:1061.610000px;}
.y69{bottom:1068.090000px;}
.y49{bottom:1080.870000px;}
.yd{bottom:1089.330000px;}
.y68{bottom:1095.810000px;}
.yc{bottom:1117.050000px;}
.y65{bottom:1119.930000px;}
.y62{bottom:1135.590000px;}
.y7{bottom:1141.200000px;}
.y4{bottom:1156.860000px;}
.y60{bottom:1174.680000px;}
.y1{bottom:1195.920000px;}
.h15{height:21.060000px;}
.h2{height:24.120000px;}
.he{height:24.300000px;}
.h5{height:28.260000px;}
.hf{height:28.296000px;}
.h17{height:30.240000px;}
.h10{height:31.140000px;}
.h8{height:31.176000px;}
.h4{height:53.709961px;}
.h12{height:58.651172px;}
.hd{height:58.819922px;}
.h28{height:62.136000px;}
.h24{height:64.080000px;}
.h7{height:65.884219px;}
.h9{height:70.664062px;}
.h25{height:71.640000px;}
.h6{height:72.562500px;}
.h21{height:72.756000px;}
.h23{height:73.260000px;}
.hc{height:82.635820px;}
.hb{height:82.676953px;}
.h1a{height:84.060000px;}
.h20{height:84.420000px;}
.h3{height:84.898125px;}
.h26{height:86.585445px;}
.h22{height:94.140000px;}
.h1c{height:95.760000px;}
.h27{height:95.940000px;}
.h1f{height:104.220000px;}
.h13{height:106.380000px;}
.ha{height:108.843750px;}
.h16{height:113.796000px;}
.h19{height:115.596000px;}
.h18{height:126.360000px;}
.h1b{height:127.836000px;}
.h14{height:136.296000px;}
.h1e{height:137.196000px;}
.h1d{height:138.420000px;}
.h11{height:244.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:30.600000px;}
.wb{width:30.780000px;}
.w7{width:38.016000px;}
.w15{width:38.196000px;}
.we{width:40.140000px;}
.w13{width:40.500000px;}
.w9{width:41.076000px;}
.wf{width:41.220000px;}
.w17{width:41.256000px;}
.wa{width:41.400000px;}
.w3{width:44.100000px;}
.w10{width:51.876000px;}
.w14{width:62.856000px;}
.w6{width:63.756000px;}
.wc{width:94.536000px;}
.w8{width:138.960000px;}
.w16{width:139.320000px;}
.w12{width:159.330000px;}
.wd{width:191.730000px;}
.w5{width:755.070000px;}
.w2{width:840.240000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x1f{left:7.020000px;}
.x6{left:8.640000px;}
.x9{left:10.620000px;}
.x1d{left:21.240000px;}
.x25{left:22.320000px;}
.xb{left:25.020000px;}
.x1b{left:26.100000px;}
.x2d{left:31.320000px;}
.x4{left:35.640000px;}
.x2e{left:36.720000px;}
.x2b{left:38.880000px;}
.x26{left:40.140000px;}
.x8{left:42.480000px;}
.x21{left:49.320000px;}
.x17{left:57.234000px;}
.x18{left:74.874000px;}
.x7{left:84.959987px;}
.x15{left:86.400000px;}
.x2{left:92.556000px;}
.xc{left:94.175987px;}
.x32{left:106.235987px;}
.x10{left:107.315987px;}
.x2f{left:109.794000px;}
.x16{left:125.856000px;}
.x14{left:127.475987px;}
.xd{left:206.309987px;}
.x12{left:254.189987px;}
.x19{left:266.430000px;}
.x31{left:271.109987px;}
.x11{left:290.954987px;}
.x1a{left:308.775000px;}
.xf{left:314.534987px;}
.x1c{left:351.255000px;}
.x13{left:373.574987px;}
.x1e{left:383.115000px;}
.x24{left:425.775000px;}
.xe{left:446.474987px;}
.x20{left:478.905000px;}
.x27{left:510.765000px;}
.x28{left:542.805000px;}
.x29{left:574.845000px;}
.x2a{left:606.705000px;}
.x5{left:609.405000px;}
.x2c{left:670.650000px;}
.x22{left:671.730000px;}
.x23{left:713.130000px;}
.x30{left:769.109987px;}
.xa{left:797.550000px;}
.x3{left:844.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls12{letter-spacing:0.033280pt;}
.lsb{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.087040pt;}
.ls8{letter-spacing:0.094720pt;}
.lsf{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.208427pt;}
.lsc{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.336533pt;}
.ls10{letter-spacing:0.480000pt;}
.ls7{letter-spacing:1.872640pt;}
.ls11{letter-spacing:13.280000pt;}
.ws4{word-spacing:-75.200000pt;}
.ws3{word-spacing:-74.863360pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws15{word-spacing:-19.056533pt;}
.ws6{word-spacing:-19.040000pt;}
.ws9{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.383467pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.049067pt;}
.ws8{word-spacing:0.000000pt;}
.ws14{word-spacing:16.369707pt;}
.wse{word-spacing:16.391040pt;}
.ws10{word-spacing:16.936320pt;}
.ws13{word-spacing:17.031040pt;}
.ws11{word-spacing:17.096320pt;}
._6{margin-left:-4.118400pt;}
._9{margin-left:-3.219840pt;}
._17{margin-left:-2.293547pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.558613pt;}
._d{width:2.510933pt;}
._c{width:3.444480pt;}
._1b{width:4.982400pt;}
._1a{width:6.024960pt;}
._28{width:6.963840pt;}
._7{width:8.526720pt;}
._8{width:9.603840pt;}
._4{width:10.895147pt;}
._5{width:12.050347pt;}
._b{width:13.478400pt;}
._a{width:14.376960pt;}
._11{width:15.874560pt;}
._e{width:17.072640pt;}
._10{width:23.287680pt;}
._f{width:24.186240pt;}
._2b{width:25.137920pt;}
._13{width:26.080000pt;}
._29{width:27.950720pt;}
._2a{width:28.951467pt;}
._2{width:30.551040pt;}
._3{width:31.524480pt;}
._12{width:32.480000pt;}
._18{width:33.396480pt;}
._19{width:34.369920pt;}
._1f{width:35.942400pt;}
._20{width:36.907947pt;}
._1c{width:40.809600pt;}
._1d{width:42.550187pt;}
._16{width:48.072960pt;}
._15{width:48.971520pt;}
._14{width:49.969707pt;}
._1e{width:59.005440pt;}
._26{width:64.222080pt;}
._27{width:71.499520pt;}
._22{width:88.816640pt;}
._2c{width:109.002240pt;}
._25{width:122.069760pt;}
._24{width:159.519360pt;}
._23{width:222.400000pt;}
._21{width:246.069120pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.000000pt;}
.y61{bottom:4.160000pt;}
.y71{bottom:4.640000pt;}
.ya{bottom:5.280000pt;}
.y3{bottom:6.720000pt;}
.y74{bottom:7.520000pt;}
.y9{bottom:8.160000pt;}
.y73{bottom:8.640000pt;}
.y5{bottom:10.240000pt;}
.y63{bottom:10.266667pt;}
.y6{bottom:13.760000pt;}
.y64{bottom:13.786667pt;}
.yb{bottom:25.920000pt;}
.y6f{bottom:34.880000pt;}
.y92{bottom:37.754667pt;}
.y6b{bottom:37.760000pt;}
.y88{bottom:37.786667pt;}
.y7c{bottom:37.800000pt;}
.y6d{bottom:42.560000pt;}
.yb1{bottom:42.920000pt;}
.y8f{bottom:44.480000pt;}
.y8{bottom:47.520000pt;}
.y6e{bottom:50.240000pt;}
.y91{bottom:51.194667pt;}
.y67{bottom:51.200000pt;}
.y87{bottom:52.186667pt;}
.y8c{bottom:52.640000pt;}
.y79{bottom:62.240000pt;}
.y85{bottom:62.560000pt;}
.y8a{bottom:71.200000pt;}
.y66{bottom:72.672000pt;}
.y7e{bottom:72.800000pt;}
.yae{bottom:72.960000pt;}
.y84{bottom:80.160000pt;}
.y77{bottom:90.266667pt;}
.y5f{bottom:91.392000pt;}
.y76{bottom:100.000000pt;}
.y7b{bottom:101.160000pt;}
.y82{bottom:109.480000pt;}
.y80{bottom:110.720000pt;}
.y90{bottom:119.872000pt;}
.y48{bottom:123.392000pt;}
.y5e{bottom:123.552000pt;}
.yac{bottom:126.432000pt;}
.y2f{bottom:128.992000pt;}
.yab{bottom:151.226667pt;}
.y2e{bottom:153.626667pt;}
.y47{bottom:155.706667pt;}
.yaa{bottom:175.866667pt;}
.y2d{bottom:178.266667pt;}
.y8e{bottom:184.666667pt;}
.y46{bottom:187.866667pt;}
.y5d{bottom:188.026667pt;}
.ya9{bottom:200.506667pt;}
.y7d{bottom:200.826667pt;}
.y2c{bottom:202.906667pt;}
.y45{bottom:220.026667pt;}
.y5c{bottom:220.186667pt;}
.ya8{bottom:225.306667pt;}
.y2b{bottom:227.706667pt;}
.y8d{bottom:242.746667pt;}
.ya7{bottom:249.946667pt;}
.y44{bottom:252.186667pt;}
.y2a{bottom:252.346667pt;}
.ya6{bottom:274.586667pt;}
.y29{bottom:276.986667pt;}
.y43{bottom:284.506667pt;}
.y7a{bottom:287.226667pt;}
.ya5{bottom:299.266667pt;}
.y28{bottom:301.826667pt;}
.y42{bottom:316.706667pt;}
.ya4{bottom:324.066667pt;}
.y27{bottom:326.466667pt;}
.ya3{bottom:348.706667pt;}
.y41{bottom:348.866667pt;}
.y5b{bottom:349.026667pt;}
.y26{bottom:351.106667pt;}
.y8b{bottom:357.506667pt;}
.ya2{bottom:373.346667pt;}
.y25{bottom:375.746667pt;}
.y40{bottom:381.026667pt;}
.y5a{bottom:381.186667pt;}
.ya1{bottom:398.146667pt;}
.y24{bottom:400.546667pt;}
.y78{bottom:401.986667pt;}
.y3f{bottom:413.186667pt;}
.y59{bottom:413.346667pt;}
.ya0{bottom:422.786667pt;}
.y89{bottom:423.746667pt;}
.y23{bottom:425.186667pt;}
.y3e{bottom:445.506667pt;}
.y9f{bottom:447.426667pt;}
.y22{bottom:449.826667pt;}
.y9e{bottom:472.066667pt;}
.y21{bottom:474.626667pt;}
.y3d{bottom:477.666667pt;}
.y58{bottom:477.826667pt;}
.y9d{bottom:496.866667pt;}
.y20{bottom:499.266667pt;}
.y86{bottom:508.546667pt;}
.y3c{bottom:509.826667pt;}
.y57{bottom:509.986667pt;}
.y9c{bottom:521.506667pt;}
.y1f{bottom:523.906667pt;}
.y56{bottom:542.173333pt;}
.y3b{bottom:544.413333pt;}
.y9b{bottom:546.173333pt;}
.y1e{bottom:548.573333pt;}
.y9a{bottom:570.813333pt;}
.y1d{bottom:573.373333pt;}
.y55{bottom:574.333333pt;}
.y3a{bottom:579.293333pt;}
.y75{bottom:581.693333pt;}
.y99{bottom:595.613333pt;}
.y1c{bottom:598.013333pt;}
.y54{bottom:606.653333pt;}
.y39{bottom:613.853333pt;}
.y98{bottom:620.253333pt;}
.y1b{bottom:622.653333pt;}
.y53{bottom:638.813333pt;}
.y97{bottom:644.893333pt;}
.y1a{bottom:647.293333pt;}
.y38{bottom:648.733333pt;}
.y83{bottom:650.493333pt;}
.y96{bottom:669.693333pt;}
.y52{bottom:670.973333pt;}
.y19{bottom:672.093333pt;}
.y37{bottom:683.293333pt;}
.y95{bottom:694.333333pt;}
.y72{bottom:695.293333pt;}
.y18{bottom:696.733333pt;}
.y51{bottom:703.133333pt;}
.y36{bottom:718.173333pt;}
.y94{bottom:718.973333pt;}
.y17{bottom:721.373333pt;}
.y6a{bottom:723.293333pt;}
.y50{bottom:735.293333pt;}
.y93{bottom:743.613333pt;}
.y81{bottom:744.253333pt;}
.y16{bottom:746.173333pt;}
.y35{bottom:750.333333pt;}
.yb0{bottom:762.333333pt;}
.y4f{bottom:767.613333pt;}
.y15{bottom:770.813333pt;}
.y34{bottom:782.693333pt;}
.y14{bottom:795.493333pt;}
.y4e{bottom:799.813333pt;}
.y33{bottom:814.853333pt;}
.yaf{bottom:818.693333pt;}
.y13{bottom:820.133333pt;}
.y70{bottom:825.733333pt;}
.y4d{bottom:831.973333pt;}
.y12{bottom:844.933333pt;}
.y6c{bottom:845.733333pt;}
.y32{bottom:847.013333pt;}
.y4c{bottom:864.133333pt;}
.y7f{bottom:867.333333pt;}
.y11{bottom:869.573333pt;}
.y31{bottom:879.173333pt;}
.y10{bottom:894.213333pt;}
.y4b{bottom:896.453333pt;}
.yad{bottom:905.093333pt;}
.y30{bottom:911.493333pt;}
.yf{bottom:919.013333pt;}
.y4a{bottom:928.613333pt;}
.ye{bottom:943.653333pt;}
.y69{bottom:949.413333pt;}
.y49{bottom:960.773333pt;}
.yd{bottom:968.293333pt;}
.y68{bottom:974.053333pt;}
.yc{bottom:992.933333pt;}
.y65{bottom:995.493333pt;}
.y62{bottom:1009.413333pt;}
.y7{bottom:1014.400000pt;}
.y4{bottom:1028.320000pt;}
.y60{bottom:1044.160000pt;}
.y1{bottom:1063.040000pt;}
.h15{height:18.720000pt;}
.h2{height:21.440000pt;}
.he{height:21.600000pt;}
.h5{height:25.120000pt;}
.hf{height:25.152000pt;}
.h17{height:26.880000pt;}
.h10{height:27.680000pt;}
.h8{height:27.712000pt;}
.h4{height:47.742188pt;}
.h12{height:52.134375pt;}
.hd{height:52.284375pt;}
.h28{height:55.232000pt;}
.h24{height:56.960000pt;}
.h7{height:58.563750pt;}
.h9{height:62.812500pt;}
.h25{height:63.680000pt;}
.h6{height:64.500000pt;}
.h21{height:64.672000pt;}
.h23{height:65.120000pt;}
.hc{height:73.454062pt;}
.hb{height:73.490625pt;}
.h1a{height:74.720000pt;}
.h20{height:75.040000pt;}
.h3{height:75.465000pt;}
.h26{height:76.964840pt;}
.h22{height:83.680000pt;}
.h1c{height:85.120000pt;}
.h27{height:85.280000pt;}
.h1f{height:92.640000pt;}
.h13{height:94.560000pt;}
.ha{height:96.750000pt;}
.h16{height:101.152000pt;}
.h19{height:102.752000pt;}
.h18{height:112.320000pt;}
.h1b{height:113.632000pt;}
.h14{height:121.152000pt;}
.h1e{height:121.952000pt;}
.h1d{height:123.040000pt;}
.h11{height:216.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:27.200000pt;}
.wb{width:27.360000pt;}
.w7{width:33.792000pt;}
.w15{width:33.952000pt;}
.we{width:35.680000pt;}
.w13{width:36.000000pt;}
.w9{width:36.512000pt;}
.wf{width:36.640000pt;}
.w17{width:36.672000pt;}
.wa{width:36.800000pt;}
.w3{width:39.200000pt;}
.w10{width:46.112000pt;}
.w14{width:55.872000pt;}
.w6{width:56.672000pt;}
.wc{width:84.032000pt;}
.w8{width:123.520000pt;}
.w16{width:123.840000pt;}
.w12{width:141.626667pt;}
.wd{width:170.426667pt;}
.w5{width:671.173333pt;}
.w2{width:746.880000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x1f{left:6.240000pt;}
.x6{left:7.680000pt;}
.x9{left:9.440000pt;}
.x1d{left:18.880000pt;}
.x25{left:19.840000pt;}
.xb{left:22.240000pt;}
.x1b{left:23.200000pt;}
.x2d{left:27.840000pt;}
.x4{left:31.680000pt;}
.x2e{left:32.640000pt;}
.x2b{left:34.560000pt;}
.x26{left:35.680000pt;}
.x8{left:37.760000pt;}
.x21{left:43.840000pt;}
.x17{left:50.874667pt;}
.x18{left:66.554667pt;}
.x7{left:75.519988pt;}
.x15{left:76.800000pt;}
.x2{left:82.272000pt;}
.xc{left:83.711988pt;}
.x32{left:94.431988pt;}
.x10{left:95.391988pt;}
.x2f{left:97.594667pt;}
.x16{left:111.872000pt;}
.x14{left:113.311988pt;}
.xd{left:183.386655pt;}
.x12{left:225.946655pt;}
.x19{left:236.826667pt;}
.x31{left:240.986655pt;}
.x11{left:258.626655pt;}
.x1a{left:274.466667pt;}
.xf{left:279.586655pt;}
.x1c{left:312.226667pt;}
.x13{left:332.066655pt;}
.x1e{left:340.546667pt;}
.x24{left:378.466667pt;}
.xe{left:396.866655pt;}
.x20{left:425.693333pt;}
.x27{left:454.013333pt;}
.x28{left:482.493333pt;}
.x29{left:510.973333pt;}
.x2a{left:539.293333pt;}
.x5{left:541.693333pt;}
.x2c{left:596.133333pt;}
.x22{left:597.093333pt;}
.x23{left:633.893333pt;}
.x30{left:683.653322pt;}
.xa{left:708.933333pt;}
.x3{left:750.720000pt;}
}




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