
    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_4da4d5e8f96a0018c0fb4289.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_20a69e2dc89fad61cdac7138.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_a2c932a0f45a1f9c2bf9a8e3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_46bcdef0ebf7f1807110979a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9957e777303909a650c358a5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dbe9bcfcd7abcec0aa655ec1.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_1bebbb8c187ece34fba48229.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.220200px;}
.ls1b{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.153600px;}
.ls15{letter-spacing:-0.139800px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.090000px;}
.ls1d{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.139800px;}
.lsa{letter-spacing:0.153360px;}
.ls14{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.265200px;}
.ls16{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.350400px;}
.ls13{letter-spacing:0.450000px;}
.ls18{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.900000px;}
.ls3{letter-spacing:1.170000px;}
.ls9{letter-spacing:1.620000px;}
.lsc{letter-spacing:2.700000px;}
.lse{letter-spacing:3.540000px;}
.ls2{letter-spacing:4.410000px;}
.lsb{letter-spacing:4.500000px;}
.ls4{letter-spacing:6.930000px;}
.ls10{letter-spacing:8.460000px;}
.lsf{letter-spacing:14.220000px;}
.ls1c{letter-spacing:24.228000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-15.183600px;}
.ws5{word-spacing:-15.169800px;}
.ws4{word-spacing:-15.030000px;}
.wsa{word-spacing:-14.890200px;}
.ws8{word-spacing:-14.876400px;}
.ws6{word-spacing:-14.809800px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.530000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._b{margin-left:-6.250800px;}
._a{margin-left:-4.209480px;}
._4{margin-left:-3.186000px;}
._8{margin-left:-2.065200px;}
._1{margin-left:-1.022040px;}
._0{width:1.449360px;}
._2{width:2.484000px;}
._6{width:3.896040px;}
._5{width:5.178000px;}
._7{width:6.537720px;}
._3{width:8.316000px;}
._10{width:9.949320px;}
._11{width:11.663280px;}
._e{width:17.975880px;}
._f{width:19.069800px;}
._17{width:20.736000px;}
._16{width:25.164000px;}
._15{width:26.298000px;}
._14{width:28.188000px;}
._13{width:47.304000px;}
._12{width:56.376000px;}
._d{width:420.090000px;}
._c{width:515.820000px;}
._9{width:533.100000px;}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y7d{bottom:2.610000px;}
.y8c{bottom:4.680000px;}
.y7f{bottom:5.310000px;}
.y82{bottom:7.740000px;}
.y84{bottom:8.550000px;}
.y7c{bottom:13.770000px;}
.y88{bottom:13.860000px;}
.y8b{bottom:15.840000px;}
.y7e{bottom:16.470000px;}
.y81{bottom:18.900000px;}
.y83{bottom:19.710000px;}
.y3{bottom:73.349908px;}
.yfb{bottom:93.509908px;}
.y55{bottom:93.869908px;}
.y2c{bottom:102.869908px;}
.y92{bottom:103.589908px;}
.yfa{bottom:111.329908px;}
.y54{bottom:113.669908px;}
.yb3{bottom:116.369908px;}
.y91{bottom:119.429908px;}
.y2b{bottom:122.759908px;}
.yce{bottom:126.539908px;}
.yf9{bottom:129.239908px;}
.y53{bottom:133.469908px;}
.y90{bottom:135.269908px;}
.yb2{bottom:136.169908px;}
.y2a{bottom:142.559908px;}
.ycd{bottom:144.359908px;}
.y8f{bottom:151.199908px;}
.yf8{bottom:151.559908px;}
.y52{bottom:153.359908px;}
.yb1{bottom:155.969908px;}
.ycc{bottom:162.179908px;}
.y29{bottom:162.449908px;}
.y8e{bottom:167.039908px;}
.yf7{bottom:169.469908px;}
.y51{bottom:173.159908px;}
.yb0{bottom:175.859908px;}
.y28{bottom:182.249908px;}
.y8d{bottom:182.879908px;}
.ycb{bottom:184.589908px;}
.yf6{bottom:187.289908px;}
.y50{bottom:193.049908px;}
.y87{bottom:195.060000px;}
.yaf{bottom:195.659908px;}
.y8a{bottom:196.500000px;}
.y27{bottom:202.049908px;}
.yca{bottom:202.409908px;}
.y85{bottom:203.040000px;}
.yf5{bottom:205.109908px;}
.y86{bottom:206.220000px;}
.y89{bottom:207.660000px;}
.y7a{bottom:208.349908px;}
.y4f{bottom:212.849908px;}
.yae{bottom:215.549908px;}
.yc9{bottom:220.319908px;}
.y26{bottom:221.939908px;}
.yf4{bottom:223.019908px;}
.y79{bottom:228.149908px;}
.y4e{bottom:232.649908px;}
.yad{bottom:235.349908px;}
.y25{bottom:241.739908px;}
.yc8{bottom:242.639908px;}
.yf3{bottom:245.339908px;}
.y78{bottom:248.039908px;}
.yac{bottom:255.149908px;}
.yc7{bottom:260.459908px;}
.y4d{bottom:261.539908px;}
.y24{bottom:261.629908px;}
.yf2{bottom:263.159908px;}
.y77{bottom:267.839908px;}
.yab{bottom:275.039908px;}
.yf1{bottom:281.069908px;}
.y4c{bottom:281.339908px;}
.y23{bottom:281.429908px;}
.yc6{bottom:282.869908px;}
.y76{bottom:287.729908px;}
.yaa{bottom:294.839908px;}
.yc5{bottom:300.689908px;}
.y22{bottom:301.229908px;}
.yf0{bottom:303.389908px;}
.y75{bottom:307.529908px;}
.ya9{bottom:314.729908px;}
.yc4{bottom:318.509908px;}
.y4b{bottom:321.029908px;}
.y21{bottom:321.119908px;}
.yef{bottom:321.209908px;}
.y74{bottom:327.329908px;}
.ya8{bottom:334.559908px;}
.yc3{bottom:336.449908px;}
.y4a{bottom:340.859908px;}
.y20{bottom:340.949908px;}
.yee{bottom:343.649908px;}
.y73{bottom:347.249908px;}
.ya7{bottom:354.359908px;}
.yc2{bottom:358.769908px;}
.y49{bottom:360.749908px;}
.y1f{bottom:360.839908px;}
.yed{bottom:361.469908px;}
.y72{bottom:367.049908px;}
.ya6{bottom:374.249908px;}
.yc1{bottom:376.589908px;}
.y1e{bottom:380.639908px;}
.yec{bottom:383.879908px;}
.y71{bottom:386.939908px;}
.y48{bottom:389.549908px;}
.ya5{bottom:394.049908px;}
.yc0{bottom:394.499908px;}
.y1d{bottom:400.439908px;}
.yeb{bottom:401.699908px;}
.y70{bottom:406.739908px;}
.ya4{bottom:413.939908px;}
.ybf{bottom:416.819908px;}
.yea{bottom:419.519908px;}
.y6f{bottom:426.539908px;}
.y47{bottom:427.439908px;}
.y1c{bottom:429.329908px;}
.ya3{bottom:433.739908px;}
.ybe{bottom:434.639908px;}
.ye9{bottom:441.929908px;}
.y6e{bottom:446.429908px;}
.y46{bottom:447.239908px;}
.ya2{bottom:453.539908px;}
.ybd{bottom:459.119908px;}
.ye8{bottom:459.749908px;}
.y1b{bottom:462.089908px;}
.y6d{bottom:466.229908px;}
.y45{bottom:467.039908px;}
.ya1{bottom:473.429908px;}
.ye7{bottom:482.069908px;}
.y44{bottom:486.929908px;}
.y1a{bottom:488.909908px;}
.ybc{bottom:492.419908px;}
.ya0{bottom:493.229908px;}
.y6c{bottom:495.119908px;}
.ye6{bottom:499.979908px;}
.y43{bottom:506.729908px;}
.y19{bottom:506.819908px;}
.ybb{bottom:512.219908px;}
.y9f{bottom:513.119908px;}
.ye5{bottom:517.799908px;}
.y18{bottom:524.639908px;}
.y42{bottom:526.619908px;}
.yba{bottom:532.109908px;}
.y6b{bottom:532.919908px;}
.ye4{bottom:535.619908px;}
.y109{bottom:540.119908px;}
.y17{bottom:542.549908px;}
.y41{bottom:546.419908px;}
.yb9{bottom:551.909908px;}
.y6a{bottom:552.719908px;}
.ye3{bottom:553.529908px;}
.y108{bottom:558.029908px;}
.y16{bottom:560.369908px;}
.y40{bottom:566.219908px;}
.y69{bottom:572.609908px;}
.ye2{bottom:575.849908px;}
.y15{bottom:578.189908px;}
.yb8{bottom:580.799908px;}
.y3f{bottom:586.109908px;}
.y68{bottom:592.409908px;}
.ye1{bottom:593.669908px;}
.y80{bottom:596.010000px;}
.y14{bottom:596.099908px;}
.y3e{bottom:605.909908px;}
.ye0{bottom:611.579908px;}
.y67{bottom:612.299908px;}
.y13{bottom:613.919908px;}
.y107{bottom:616.079908px;}
.yb7{bottom:618.599908px;}
.y3d{bottom:625.799908px;}
.ydf{bottom:629.429908px;}
.y12{bottom:631.769908px;}
.y66{bottom:632.129908px;}
.y106{bottom:633.929908px;}
.yb6{bottom:638.429908px;}
.y3c{bottom:645.629908px;}
.y11{bottom:649.679908px;}
.yde{bottom:651.839908px;}
.y65{bottom:651.929908px;}
.y105{bottom:656.339908px;}
.yb5{bottom:658.319908px;}
.y3b{bottom:665.429908px;}
.y10{bottom:667.499908px;}
.ydd{bottom:669.659908px;}
.y64{bottom:671.819908px;}
.y104{bottom:674.159908px;}
.yf{bottom:685.319908px;}
.yb4{bottom:687.119908px;}
.y63{bottom:691.619908px;}
.ydc{bottom:691.979908px;}
.y3a{bottom:705.119908px;}
.ydb{bottom:709.889908px;}
.y9e{bottom:711.509908px;}
.y103{bottom:714.389908px;}
.y62{bottom:720.509908px;}
.ye{bottom:721.769908px;}
.y39{bottom:725.009908px;}
.y9d{bottom:731.309908px;}
.yda{bottom:732.209908px;}
.y61{bottom:740.309908px;}
.yd{bottom:741.569908px;}
.y38{bottom:744.809908px;}
.yd9{bottom:750.029908px;}
.y9c{bottom:751.109908px;}
.y60{bottom:760.109908px;}
.yc{bottom:761.459908px;}
.y37{bottom:764.609908px;}
.y9b{bottom:770.999908px;}
.yd8{bottom:772.439908px;}
.y5f{bottom:779.999908px;}
.yb{bottom:781.259908px;}
.y36{bottom:784.499908px;}
.y7b{bottom:789.090000px;}
.yd7{bottom:790.259908px;}
.y9a{bottom:790.799908px;}
.y5e{bottom:799.799908px;}
.y35{bottom:804.299908px;}
.ya{bottom:806.279908px;}
.yd6{bottom:808.079908px;}
.y99{bottom:810.689908px;}
.y102{bottom:812.579908px;}
.y5d{bottom:819.689908px;}
.y9{bottom:820.949908px;}
.y34{bottom:824.189908px;}
.y98{bottom:830.489908px;}
.y5c{bottom:839.489908px;}
.y33{bottom:843.989908px;}
.y8{bottom:845.969908px;}
.yd5{bottom:848.309908px;}
.y97{bottom:850.289908px;}
.y5b{bottom:859.289908px;}
.y32{bottom:863.789908px;}
.yd4{bottom:866.219908px;}
.y96{bottom:870.179908px;}
.y101{bottom:870.719908px;}
.y5a{bottom:879.179908px;}
.y7{bottom:879.269908px;}
.y31{bottom:883.679908px;}
.yd3{bottom:884.039908px;}
.y100{bottom:888.539908px;}
.y95{bottom:889.979908px;}
.y59{bottom:898.979908px;}
.y30{bottom:903.479908px;}
.yd2{bottom:906.359908px;}
.y94{bottom:909.869908px;}
.yff{bottom:910.859908px;}
.y58{bottom:918.869908px;}
.y6{bottom:919.049908px;}
.y2f{bottom:923.369908px;}
.yd1{bottom:924.269908px;}
.yfe{bottom:928.799908px;}
.y93{bottom:929.699908px;}
.y57{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.yd0{bottom:942.119908px;}
.y2e{bottom:943.199908px;}
.yfd{bottom:946.619908px;}
.y56{bottom:958.499908px;}
.ycf{bottom:959.939908px;}
.y4{bottom:962.729908px;}
.y2d{bottom:962.999908px;}
.yfc{bottom:964.439908px;}
.y2{bottom:999.539908px;}
.h7{height:38.139609px;}
.h11{height:46.991602px;}
.he{height:48.254063px;}
.h13{height:52.971680px;}
.h3{height:52.998047px;}
.ha{height:54.421875px;}
.h12{height:56.320312px;}
.h8{height:58.975137px;}
.h9{height:59.004492px;}
.hb{height:60.589687px;}
.h4{height:65.526152px;}
.h5{height:66.394687px;}
.h6{height:66.569062px;}
.hc{height:123.662109px;}
.hd{height:187.950000px;}
.hf{height:193.080000px;}
.h10{height:392.970000px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w3{width:294.450000px;}
.w4{width:296.670000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x15{left:13.770000px;}
.x17{left:18.720000px;}
.x13{left:22.050000px;}
.x14{left:26.280000px;}
.xf{left:27.480000px;}
.x12{left:31.590000px;}
.x2{left:76.589989px;}
.x8{left:79.199989px;}
.xd{left:82.889989px;}
.x19{left:84.239989px;}
.x3{left:88.469989px;}
.x1{left:101.249989px;}
.x1a{left:103.259989px;}
.xc{left:110.639989px;}
.xa{left:112.079989px;}
.x6{left:127.829989px;}
.x1c{left:130.619989px;}
.x5{left:172.919989px;}
.x4{left:212.789989px;}
.x7{left:227.819989px;}
.x1b{left:249.329989px;}
.x9{left:252.569989px;}
.xe{left:270.960000px;}
.x11{left:272.100000px;}
.x16{left:274.740000px;}
.x18{left:275.880000px;}
.xb{left:335.399989px;}
.x10{left:371.040000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.195733pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.136533pt;}
.ls15{letter-spacing:-0.124267pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.080000pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.124267pt;}
.lsa{letter-spacing:0.136320pt;}
.ls14{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.235733pt;}
.ls16{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.311467pt;}
.ls13{letter-spacing:0.400000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.800000pt;}
.ls3{letter-spacing:1.040000pt;}
.ls9{letter-spacing:1.440000pt;}
.lsc{letter-spacing:2.400000pt;}
.lse{letter-spacing:3.146667pt;}
.ls2{letter-spacing:3.920000pt;}
.lsb{letter-spacing:4.000000pt;}
.ls4{letter-spacing:6.160000pt;}
.ls10{letter-spacing:7.520000pt;}
.lsf{letter-spacing:12.640000pt;}
.ls1c{letter-spacing:21.536000pt;}
.ws9{word-spacing:-13.496533pt;}
.ws5{word-spacing:-13.484267pt;}
.ws4{word-spacing:-13.360000pt;}
.wsa{word-spacing:-13.235733pt;}
.ws8{word-spacing:-13.223467pt;}
.ws6{word-spacing:-13.164267pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.360000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._b{margin-left:-5.556267pt;}
._a{margin-left:-3.741760pt;}
._4{margin-left:-2.832000pt;}
._8{margin-left:-1.835733pt;}
._1{margin-left:-0.908480pt;}
._0{width:1.288320pt;}
._2{width:2.208000pt;}
._6{width:3.463147pt;}
._5{width:4.602667pt;}
._7{width:5.811307pt;}
._3{width:7.392000pt;}
._10{width:8.843840pt;}
._11{width:10.367360pt;}
._e{width:15.978560pt;}
._f{width:16.950933pt;}
._17{width:18.432000pt;}
._16{width:22.368000pt;}
._15{width:23.376000pt;}
._14{width:25.056000pt;}
._13{width:42.048000pt;}
._12{width:50.112000pt;}
._d{width:373.413333pt;}
._c{width:458.506667pt;}
._9{width:473.866667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y7d{bottom:2.320000pt;}
.y8c{bottom:4.160000pt;}
.y7f{bottom:4.720000pt;}
.y82{bottom:6.880000pt;}
.y84{bottom:7.600000pt;}
.y7c{bottom:12.240000pt;}
.y88{bottom:12.320000pt;}
.y8b{bottom:14.080000pt;}
.y7e{bottom:14.640000pt;}
.y81{bottom:16.800000pt;}
.y83{bottom:17.520000pt;}
.y3{bottom:65.199919pt;}
.yfb{bottom:83.119919pt;}
.y55{bottom:83.439919pt;}
.y2c{bottom:91.439919pt;}
.y92{bottom:92.079919pt;}
.yfa{bottom:98.959919pt;}
.y54{bottom:101.039919pt;}
.yb3{bottom:103.439919pt;}
.y91{bottom:106.159919pt;}
.y2b{bottom:109.119919pt;}
.yce{bottom:112.479919pt;}
.yf9{bottom:114.879919pt;}
.y53{bottom:118.639919pt;}
.y90{bottom:120.239919pt;}
.yb2{bottom:121.039919pt;}
.y2a{bottom:126.719919pt;}
.ycd{bottom:128.319919pt;}
.y8f{bottom:134.399919pt;}
.yf8{bottom:134.719919pt;}
.y52{bottom:136.319919pt;}
.yb1{bottom:138.639919pt;}
.ycc{bottom:144.159919pt;}
.y29{bottom:144.399919pt;}
.y8e{bottom:148.479919pt;}
.yf7{bottom:150.639919pt;}
.y51{bottom:153.919919pt;}
.yb0{bottom:156.319919pt;}
.y28{bottom:161.999919pt;}
.y8d{bottom:162.559919pt;}
.ycb{bottom:164.079919pt;}
.yf6{bottom:166.479919pt;}
.y50{bottom:171.599919pt;}
.y87{bottom:173.386667pt;}
.yaf{bottom:173.919919pt;}
.y8a{bottom:174.666667pt;}
.y27{bottom:179.599919pt;}
.yca{bottom:179.919919pt;}
.y85{bottom:180.480000pt;}
.yf5{bottom:182.319919pt;}
.y86{bottom:183.306667pt;}
.y89{bottom:184.586667pt;}
.y7a{bottom:185.199919pt;}
.y4f{bottom:189.199919pt;}
.yae{bottom:191.599919pt;}
.yc9{bottom:195.839919pt;}
.y26{bottom:197.279919pt;}
.yf4{bottom:198.239919pt;}
.y79{bottom:202.799919pt;}
.y4e{bottom:206.799919pt;}
.yad{bottom:209.199919pt;}
.y25{bottom:214.879919pt;}
.yc8{bottom:215.679919pt;}
.yf3{bottom:218.079919pt;}
.y78{bottom:220.479919pt;}
.yac{bottom:226.799919pt;}
.yc7{bottom:231.519919pt;}
.y4d{bottom:232.479919pt;}
.y24{bottom:232.559919pt;}
.yf2{bottom:233.919919pt;}
.y77{bottom:238.079919pt;}
.yab{bottom:244.479919pt;}
.yf1{bottom:249.839919pt;}
.y4c{bottom:250.079919pt;}
.y23{bottom:250.159919pt;}
.yc6{bottom:251.439919pt;}
.y76{bottom:255.759919pt;}
.yaa{bottom:262.079919pt;}
.yc5{bottom:267.279919pt;}
.y22{bottom:267.759919pt;}
.yf0{bottom:269.679919pt;}
.y75{bottom:273.359919pt;}
.ya9{bottom:279.759919pt;}
.yc4{bottom:283.119919pt;}
.y4b{bottom:285.359919pt;}
.y21{bottom:285.439919pt;}
.yef{bottom:285.519919pt;}
.y74{bottom:290.959919pt;}
.ya8{bottom:297.386585pt;}
.yc3{bottom:299.066585pt;}
.y4a{bottom:302.986585pt;}
.y20{bottom:303.066585pt;}
.yee{bottom:305.466585pt;}
.y73{bottom:308.666585pt;}
.ya7{bottom:314.986585pt;}
.yc2{bottom:318.906585pt;}
.y49{bottom:320.666585pt;}
.y1f{bottom:320.746585pt;}
.yed{bottom:321.306585pt;}
.y72{bottom:326.266585pt;}
.ya6{bottom:332.666585pt;}
.yc1{bottom:334.746585pt;}
.y1e{bottom:338.346585pt;}
.yec{bottom:341.226585pt;}
.y71{bottom:343.946585pt;}
.y48{bottom:346.266585pt;}
.ya5{bottom:350.266585pt;}
.yc0{bottom:350.666585pt;}
.y1d{bottom:355.946585pt;}
.yeb{bottom:357.066585pt;}
.y70{bottom:361.546585pt;}
.ya4{bottom:367.946585pt;}
.ybf{bottom:370.506585pt;}
.yea{bottom:372.906585pt;}
.y6f{bottom:379.146585pt;}
.y47{bottom:379.946585pt;}
.y1c{bottom:381.626585pt;}
.ya3{bottom:385.546585pt;}
.ybe{bottom:386.346585pt;}
.ye9{bottom:392.826585pt;}
.y6e{bottom:396.826585pt;}
.y46{bottom:397.546585pt;}
.ya2{bottom:403.146585pt;}
.ybd{bottom:408.106585pt;}
.ye8{bottom:408.666585pt;}
.y1b{bottom:410.746585pt;}
.y6d{bottom:414.426585pt;}
.y45{bottom:415.146585pt;}
.ya1{bottom:420.826585pt;}
.ye7{bottom:428.506585pt;}
.y44{bottom:432.826585pt;}
.y1a{bottom:434.586585pt;}
.ybc{bottom:437.706585pt;}
.ya0{bottom:438.426585pt;}
.y6c{bottom:440.106585pt;}
.ye6{bottom:444.426585pt;}
.y43{bottom:450.426585pt;}
.y19{bottom:450.506585pt;}
.ybb{bottom:455.306585pt;}
.y9f{bottom:456.106585pt;}
.ye5{bottom:460.266585pt;}
.y18{bottom:466.346585pt;}
.y42{bottom:468.106585pt;}
.yba{bottom:472.986585pt;}
.y6b{bottom:473.706585pt;}
.ye4{bottom:476.106585pt;}
.y109{bottom:480.106585pt;}
.y17{bottom:482.266585pt;}
.y41{bottom:485.706585pt;}
.yb9{bottom:490.586585pt;}
.y6a{bottom:491.306585pt;}
.ye3{bottom:492.026585pt;}
.y108{bottom:496.026585pt;}
.y16{bottom:498.106585pt;}
.y40{bottom:503.306585pt;}
.y69{bottom:508.986585pt;}
.ye2{bottom:511.866585pt;}
.y15{bottom:513.946585pt;}
.yb8{bottom:516.266585pt;}
.y3f{bottom:520.986585pt;}
.y68{bottom:526.586585pt;}
.ye1{bottom:527.706585pt;}
.y80{bottom:529.786667pt;}
.y14{bottom:529.866585pt;}
.y3e{bottom:538.586585pt;}
.ye0{bottom:543.626585pt;}
.y67{bottom:544.266585pt;}
.y13{bottom:545.706585pt;}
.y107{bottom:547.626585pt;}
.yb7{bottom:549.866585pt;}
.y3d{bottom:556.266585pt;}
.ydf{bottom:559.493252pt;}
.y12{bottom:561.573252pt;}
.y66{bottom:561.893252pt;}
.y106{bottom:563.493252pt;}
.yb6{bottom:567.493252pt;}
.y3c{bottom:573.893252pt;}
.y11{bottom:577.493252pt;}
.yde{bottom:579.413252pt;}
.y65{bottom:579.493252pt;}
.y105{bottom:583.413252pt;}
.yb5{bottom:585.173252pt;}
.y3b{bottom:591.493252pt;}
.y10{bottom:593.333252pt;}
.ydd{bottom:595.253252pt;}
.y64{bottom:597.173252pt;}
.y104{bottom:599.253252pt;}
.yf{bottom:609.173252pt;}
.yb4{bottom:610.773252pt;}
.y63{bottom:614.773252pt;}
.ydc{bottom:615.093252pt;}
.y3a{bottom:626.773252pt;}
.ydb{bottom:631.013252pt;}
.y9e{bottom:632.453252pt;}
.y103{bottom:635.013252pt;}
.y62{bottom:640.453252pt;}
.ye{bottom:641.573252pt;}
.y39{bottom:644.453252pt;}
.y9d{bottom:650.053252pt;}
.yda{bottom:650.853252pt;}
.y61{bottom:658.053252pt;}
.yd{bottom:659.173252pt;}
.y38{bottom:662.053252pt;}
.yd9{bottom:666.693252pt;}
.y9c{bottom:667.653252pt;}
.y60{bottom:675.653252pt;}
.yc{bottom:676.853252pt;}
.y37{bottom:679.653252pt;}
.y9b{bottom:685.333252pt;}
.yd8{bottom:686.613252pt;}
.y5f{bottom:693.333252pt;}
.yb{bottom:694.453252pt;}
.y36{bottom:697.333252pt;}
.y7b{bottom:701.413333pt;}
.yd7{bottom:702.453252pt;}
.y9a{bottom:702.933252pt;}
.y5e{bottom:710.933252pt;}
.y35{bottom:714.933252pt;}
.ya{bottom:716.693252pt;}
.yd6{bottom:718.293252pt;}
.y99{bottom:720.613252pt;}
.y102{bottom:722.293252pt;}
.y5d{bottom:728.613252pt;}
.y9{bottom:729.733252pt;}
.y34{bottom:732.613252pt;}
.y98{bottom:738.213252pt;}
.y5c{bottom:746.213252pt;}
.y33{bottom:750.213252pt;}
.y8{bottom:751.973252pt;}
.yd5{bottom:754.053252pt;}
.y97{bottom:755.813252pt;}
.y5b{bottom:763.813252pt;}
.y32{bottom:767.813252pt;}
.yd4{bottom:769.973252pt;}
.y96{bottom:773.493252pt;}
.y101{bottom:773.973252pt;}
.y5a{bottom:781.493252pt;}
.y7{bottom:781.573252pt;}
.y31{bottom:785.493252pt;}
.yd3{bottom:785.813252pt;}
.y100{bottom:789.813252pt;}
.y95{bottom:791.093252pt;}
.y59{bottom:799.093252pt;}
.y30{bottom:803.093252pt;}
.yd2{bottom:805.653252pt;}
.y94{bottom:808.773252pt;}
.yff{bottom:809.653252pt;}
.y58{bottom:816.773252pt;}
.y6{bottom:816.933252pt;}
.y2f{bottom:820.773252pt;}
.yd1{bottom:821.573252pt;}
.yfe{bottom:825.599919pt;}
.y93{bottom:826.399919pt;}
.y57{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.yd0{bottom:837.439919pt;}
.y2e{bottom:838.399919pt;}
.yfd{bottom:841.439919pt;}
.y56{bottom:851.999919pt;}
.ycf{bottom:853.279919pt;}
.y4{bottom:855.759919pt;}
.y2d{bottom:855.999919pt;}
.yfc{bottom:857.279919pt;}
.y2{bottom:888.479919pt;}
.h7{height:33.901875pt;}
.h11{height:41.770312pt;}
.he{height:42.892500pt;}
.h13{height:47.085938pt;}
.h3{height:47.109375pt;}
.ha{height:48.375000pt;}
.h12{height:50.062500pt;}
.h8{height:52.422344pt;}
.h9{height:52.448437pt;}
.hb{height:53.857500pt;}
.h4{height:58.245469pt;}
.h5{height:59.017500pt;}
.h6{height:59.172500pt;}
.hc{height:109.921875pt;}
.hd{height:167.066667pt;}
.hf{height:171.626667pt;}
.h10{height:349.306667pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w3{width:261.733333pt;}
.w4{width:263.706667pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x15{left:12.240000pt;}
.x17{left:16.640000pt;}
.x13{left:19.600000pt;}
.x14{left:23.360000pt;}
.xf{left:24.426667pt;}
.x12{left:28.080000pt;}
.x2{left:68.079990pt;}
.x8{left:70.399990pt;}
.xd{left:73.679990pt;}
.x19{left:74.879990pt;}
.x3{left:78.639990pt;}
.x1{left:89.999990pt;}
.x1a{left:91.786657pt;}
.xc{left:98.346657pt;}
.xa{left:99.626657pt;}
.x6{left:113.626657pt;}
.x1c{left:116.106657pt;}
.x5{left:153.706657pt;}
.x4{left:189.146657pt;}
.x7{left:202.506657pt;}
.x1b{left:221.626657pt;}
.x9{left:224.506657pt;}
.xe{left:240.853333pt;}
.x11{left:241.866667pt;}
.x16{left:244.213333pt;}
.x18{left:245.226667pt;}
.xb{left:298.133323pt;}
.x10{left:329.813333pt;}
}




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