
    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_deaeadf2855ab2b118581dac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_463b45cbb81b6292c9661b4b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.180000;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_ce8b3e0f22bdb67c69bd7076.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_a8846a36345cda8cb701ebea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_9056e173de79b1eac7538aca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_7350b332380a4d377faf3289.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_875542b667365ed096f4fbbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051758;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.912500;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_ad038bdd91be8b69a2840fb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.913000;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_5b067e0b4f8fe6ad907f668f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.820801;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.944200px;}
.lse{letter-spacing:-9.734400px;}
.ls18{letter-spacing:-5.760000px;}
.ls16{letter-spacing:-5.184000px;}
.ls10{letter-spacing:-5.040000px;}
.ls12{letter-spacing:-3.585600px;}
.lsf{letter-spacing:-3.484800px;}
.ls17{letter-spacing:-2.534400px;}
.ls13{letter-spacing:-1.553112px;}
.ls14{letter-spacing:-1.164834px;}
.ls1b{letter-spacing:-0.043200px;}
.lsc{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.008400px;}
.ls11{letter-spacing:0.054000px;}
.ls19{letter-spacing:0.057600px;}
.ls0{letter-spacing:0.157200px;}
.ls8{letter-spacing:0.253800px;}
.ls2{letter-spacing:0.270000px;}
.ls7{letter-spacing:1.776600px;}
.ls6{letter-spacing:1.782000px;}
.lsd{letter-spacing:4.838400px;}
.ls9{letter-spacing:7.452000px;}
.lsa{letter-spacing:7.506000px;}
.ls1a{letter-spacing:7.538400px;}
.lsb{letter-spacing:7.560000px;}
.ls5{letter-spacing:14.526000px;}
.ls4{letter-spacing:14.574600px;}
.ls3{letter-spacing:14.580000px;}
.ls1{letter-spacing:40.770000px;}
.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;}
}
.ws0{word-spacing:-120.000000px;}
.ws2{word-spacing:-72.000000px;}
.wse{word-spacing:-60.000000px;}
.ws12{word-spacing:-58.464000px;}
.ws5{word-spacing:-55.782000px;}
.ws4{word-spacing:-54.270000px;}
.ws6{word-spacing:-54.000000px;}
.ws15{word-spacing:-52.848000px;}
.wsa{word-spacing:-45.360000px;}
.ws3{word-spacing:-42.390000px;}
.ws9{word-spacing:-18.000000px;}
.ws17{word-spacing:-14.477400px;}
.wsc{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.738000px;}
.ws1{word-spacing:-10.494000px;}
.ws11{word-spacing:-8.940888px;}
.wsf{word-spacing:-8.745000px;}
.wsb{word-spacing:-7.870500px;}
.ws13{word-spacing:-6.705666px;}
.ws16{word-spacing:-0.100800px;}
.ws8{word-spacing:0.000000px;}
.ws14{word-spacing:2.390400px;}
.wsd{word-spacing:3.340800px;}
.ws10{word-spacing:3.441600px;}
._1a{margin-left:-11.952000px;}
._3{margin-left:-8.880000px;}
._0{margin-left:-6.960000px;}
._4{margin-left:-5.316000px;}
._7{margin-left:-4.296000px;}
._2{margin-left:-2.616000px;}
._1{margin-left:-1.344000px;}
._b{width:1.398000px;}
._c{width:2.547600px;}
._9{width:4.050000px;}
._8{width:5.832000px;}
._a{width:7.231800px;}
._6{width:8.467200px;}
._d{width:10.080000px;}
._13{width:11.512800px;}
._5{width:12.528000px;}
._15{width:13.644000px;}
._12{width:14.824800px;}
._e{width:16.164000px;}
._17{width:17.580000px;}
._14{width:19.000800px;}
._18{width:20.116800px;}
._19{width:21.151200px;}
._f{width:22.284000px;}
._1b{width:25.416000px;}
._1c{width:27.507600px;}
._16{width:31.999800px;}
._11{width:37.530000px;}
._10{width:40.500000px;}
.fc1{color:rgb(128,130,133);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs2{font-size:41.976000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs6{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y91{bottom:127.558950px;}
.y16{bottom:127.559100px;}
.y69{bottom:127.559250px;}
.yb0{bottom:127.560600px;}
.y4b{bottom:132.054450px;}
.y4a{bottom:143.758950px;}
.y15{bottom:143.759100px;}
.y68{bottom:143.759250px;}
.yc7{bottom:148.254600px;}
.yd8{bottom:148.254750px;}
.yaf{bottom:148.404600px;}
.y14{bottom:159.959100px;}
.y67{bottom:159.959250px;}
.yd7{bottom:159.959400px;}
.yae{bottom:160.259100px;}
.y49{bottom:164.454450px;}
.y48{bottom:176.158950px;}
.y13{bottom:176.159100px;}
.y66{bottom:176.159250px;}
.yad{bottom:176.459100px;}
.yf4{bottom:180.654600px;}
.yc6{bottom:180.654750px;}
.yd6{bottom:180.654900px;}
.y47{bottom:192.358950px;}
.y12{bottom:192.359100px;}
.y65{bottom:192.359250px;}
.yc5{bottom:192.359400px;}
.yac{bottom:192.659100px;}
.y46{bottom:208.558950px;}
.y11{bottom:208.559100px;}
.yc4{bottom:208.559400px;}
.yab{bottom:208.859100px;}
.y64{bottom:213.054750px;}
.y45{bottom:224.758950px;}
.y10{bottom:224.759100px;}
.yaa{bottom:225.059100px;}
.yc3{bottom:229.254900px;}
.y44{bottom:240.958950px;}
.yf{bottom:240.959100px;}
.ya9{bottom:241.259100px;}
.yc2{bottom:241.385400px;}
.y112{bottom:245.454600px;}
.yf3{bottom:252.780000px;}
.y43{bottom:257.158950px;}
.ye{bottom:257.159100px;}
.ya8{bottom:257.459100px;}
.yc1{bottom:257.585400px;}
.y42{bottom:273.358950px;}
.yd{bottom:273.359100px;}
.ya7{bottom:273.659100px;}
.yf2{bottom:275.280000px;}
.y63{bottom:278.023500px;}
.yc0{bottom:278.280900px;}
.y41{bottom:289.558950px;}
.yc{bottom:289.559100px;}
.y111{bottom:294.054600px;}
.ya6{bottom:294.354600px;}
.yf1{bottom:297.780000px;}
.y62{bottom:300.523500px;}
.y40{bottom:305.758950px;}
.y110{bottom:305.759100px;}
.ya5{bottom:306.059100px;}
.y90{bottom:310.254450px;}
.yb{bottom:310.254600px;}
.yf0{bottom:320.280000px;}
.y3f{bottom:321.958950px;}
.y10f{bottom:321.959100px;}
.yd5{bottom:322.716450px;}
.y61{bottom:323.023500px;}
.ya4{bottom:326.754600px;}
.y3e{bottom:338.158950px;}
.y10e{bottom:338.159100px;}
.yef{bottom:342.780000px;}
.ya3{bottom:342.954600px;}
.yd4{bottom:345.216450px;}
.y60{bottom:345.523500px;}
.ybf{bottom:352.834500px;}
.y3d{bottom:354.358950px;}
.ya2{bottom:354.659100px;}
.y10d{bottom:358.854600px;}
.yee{bottom:365.280000px;}
.yd3{bottom:367.716450px;}
.y3c{bottom:370.558950px;}
.y10c{bottom:370.559100px;}
.ya{bottom:370.838850px;}
.ya1{bottom:370.859100px;}
.ybe{bottom:375.334500px;}
.y5f{bottom:380.779350px;}
.y3b{bottom:386.758950px;}
.y10b{bottom:386.759100px;}
.ya0{bottom:387.059100px;}
.yed{bottom:387.780000px;}
.yd2{bottom:390.216450px;}
.y9{bottom:393.338850px;}
.ybd{bottom:397.834500px;}
.y5e{bottom:400.279350px;}
.y3a{bottom:402.958950px;}
.y10a{bottom:402.959100px;}
.y9f{bottom:407.754600px;}
.yec{bottom:410.280000px;}
.yd1{bottom:412.716450px;}
.y8{bottom:415.838850px;}
.y8f{bottom:419.158950px;}
.y109{bottom:419.159100px;}
.y5d{bottom:419.779350px;}
.ybc{bottom:420.334500px;}
.y39{bottom:423.654450px;}
.yeb{bottom:432.787950px;}
.yd0{bottom:435.216450px;}
.y38{bottom:435.358950px;}
.y7{bottom:438.346800px;}
.y5c{bottom:439.279350px;}
.y108{bottom:439.854600px;}
.ybb{bottom:442.834500px;}
.yea{bottom:455.287950px;}
.y37{bottom:456.054450px;}
.ycf{bottom:457.716450px;}
.yba{bottom:465.334500px;}
.y6{bottom:469.342800px;}
.y5b{bottom:471.535350px;}
.y36{bottom:472.254450px;}
.ye9{bottom:477.787950px;}
.yce{bottom:480.216450px;}
.yb9{bottom:487.834500px;}
.y5a{bottom:494.035350px;}
.ye8{bottom:500.287950px;}
.ycd{bottom:502.716450px;}
.yb8{bottom:510.334500px;}
.y59{bottom:516.535350px;}
.ye7{bottom:522.787950px;}
.ycc{bottom:525.216450px;}
.y35{bottom:531.781200px;}
.yb7{bottom:532.834500px;}
.y58{bottom:539.035350px;}
.ye6{bottom:545.287950px;}
.ycb{bottom:547.716450px;}
.y8e{bottom:547.847550px;}
.y34{bottom:554.281200px;}
.yb6{bottom:555.334500px;}
.y57{bottom:561.535350px;}
.ye5{bottom:567.787950px;}
.yca{bottom:570.216450px;}
.y8d{bottom:570.347550px;}
.y33{bottom:576.781200px;}
.yb5{bottom:577.834500px;}
.y56{bottom:584.035350px;}
.ye4{bottom:590.287950px;}
.yc9{bottom:592.716450px;}
.y8c{bottom:592.847550px;}
.y32{bottom:599.281200px;}
.yb4{bottom:600.334500px;}
.y55{bottom:606.535350px;}
.ye3{bottom:612.787950px;}
.y8b{bottom:615.347550px;}
.yb3{bottom:622.834500px;}
.yda{bottom:627.872550px;}
.y54{bottom:629.035350px;}
.y31{bottom:630.277200px;}
.ye2{bottom:635.287950px;}
.y8a{bottom:637.847550px;}
.yb2{bottom:645.334500px;}
.yd9{bottom:645.872550px;}
.y53{bottom:651.535350px;}
.ye1{bottom:657.787950px;}
.y89{bottom:660.347550px;}
.yb1{bottom:667.834500px;}
.y30{bottom:674.035200px;}
.y52{bottom:674.035350px;}
.ye0{bottom:680.287950px;}
.y88{bottom:695.603550px;}
.y2f{bottom:696.535200px;}
.y51{bottom:696.535350px;}
.ydf{bottom:702.787950px;}
.yc8{bottom:707.276400px;}
.y87{bottom:715.103550px;}
.y107{bottom:719.017800px;}
.y2e{bottom:719.035200px;}
.y50{bottom:719.035350px;}
.yde{bottom:725.287950px;}
.y86{bottom:734.603550px;}
.y106{bottom:741.517800px;}
.y2d{bottom:741.535200px;}
.y4f{bottom:741.535350px;}
.ydd{bottom:747.787950px;}
.y85{bottom:754.103550px;}
.y105{bottom:764.017800px;}
.y2c{bottom:764.035200px;}
.y4e{bottom:764.035350px;}
.ydc{bottom:770.287950px;}
.y84{bottom:773.603550px;}
.y104{bottom:786.517800px;}
.y2b{bottom:786.535200px;}
.y4d{bottom:786.535350px;}
.y83{bottom:793.103550px;}
.ydb{bottom:801.283950px;}
.y103{bottom:809.017800px;}
.y2a{bottom:809.035200px;}
.y4c{bottom:809.035350px;}
.y82{bottom:812.603550px;}
.y102{bottom:831.517800px;}
.y29{bottom:831.535200px;}
.y9e{bottom:831.535350px;}
.yf5{bottom:835.608600px;}
.y81{bottom:844.859400px;}
.y101{bottom:854.017800px;}
.y28{bottom:854.035200px;}
.y9d{bottom:854.035350px;}
.y5{bottom:863.358600px;}
.y80{bottom:867.359400px;}
.y100{bottom:876.517800px;}
.y27{bottom:876.535200px;}
.y9c{bottom:876.535350px;}
.y7f{bottom:889.859400px;}
.y4{bottom:893.358600px;}
.yff{bottom:899.017800px;}
.y26{bottom:899.035200px;}
.y9b{bottom:899.035350px;}
.y7e{bottom:912.359400px;}
.yfe{bottom:921.517800px;}
.y25{bottom:921.535200px;}
.y9a{bottom:921.535350px;}
.y3{bottom:923.358600px;}
.y74{bottom:923.600700px;}
.y73{bottom:941.600700px;}
.yfd{bottom:944.017800px;}
.y24{bottom:944.035200px;}
.y99{bottom:944.035350px;}
.y7d{bottom:947.615250px;}
.y2{bottom:953.358600px;}
.y72{bottom:959.600700px;}
.yfc{bottom:966.517800px;}
.y23{bottom:966.535200px;}
.y98{bottom:966.535350px;}
.y7c{bottom:967.115250px;}
.y71{bottom:977.600700px;}
.y7b{bottom:986.615250px;}
.yfb{bottom:989.017800px;}
.y22{bottom:989.035200px;}
.y97{bottom:989.035350px;}
.y70{bottom:995.600700px;}
.y7a{bottom:1006.115250px;}
.yfa{bottom:1011.517800px;}
.y21{bottom:1011.535200px;}
.y96{bottom:1011.535350px;}
.y6f{bottom:1013.600700px;}
.y1{bottom:1018.614600px;}
.y79{bottom:1025.615250px;}
.y6e{bottom:1031.600700px;}
.yf9{bottom:1034.017800px;}
.y20{bottom:1034.035200px;}
.y95{bottom:1034.035350px;}
.y78{bottom:1045.115250px;}
.y6d{bottom:1049.600700px;}
.yf8{bottom:1056.517800px;}
.y1f{bottom:1056.535200px;}
.y94{bottom:1056.535350px;}
.y77{bottom:1064.615250px;}
.y6c{bottom:1067.600700px;}
.yf7{bottom:1079.017800px;}
.y1e{bottom:1079.035200px;}
.y93{bottom:1079.035350px;}
.y76{bottom:1084.115250px;}
.y6b{bottom:1085.600700px;}
.yf6{bottom:1101.517800px;}
.y1d{bottom:1101.535200px;}
.y92{bottom:1101.535350px;}
.y6a{bottom:1103.600700px;}
.y75{bottom:1103.615250px;}
.y1b{bottom:1116.352350px;}
.y1a{bottom:1136.152350px;}
.y19{bottom:1155.952350px;}
.y1c{bottom:1166.275950px;}
.y18{bottom:1175.752350px;}
.y17{bottom:1195.552350px;}
.h6{height:29.399836px;}
.he{height:29.531672px;}
.h8{height:47.381836px;}
.h7{height:47.513672px;}
.h9{height:48.015000px;}
.h4{height:49.289062px;}
.hd{height:50.156250px;}
.hb{height:52.646484px;}
.hc{height:52.792969px;}
.hf{height:60.187500px;}
.h5{height:63.175781px;}
.h10{height:63.351562px;}
.h2{height:69.984000px;}
.ha{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:127.559100px;}
.xd{left:148.818900px;}
.x4{left:164.340150px;}
.x5{left:195.390150px;}
.x3{left:198.480150px;}
.xc{left:217.098450px;}
.x2{left:238.830150px;}
.x1{left:355.125750px;}
.x7{left:485.675850px;}
.x8{left:611.455350px;}
.xb{left:641.551350px;}
.xe{left:656.578500px;}
.x9{left:688.774350px;}
.xa{left:711.313350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.283733pt;}
.lse{letter-spacing:-8.652800pt;}
.ls18{letter-spacing:-5.120000pt;}
.ls16{letter-spacing:-4.608000pt;}
.ls10{letter-spacing:-4.480000pt;}
.ls12{letter-spacing:-3.187200pt;}
.lsf{letter-spacing:-3.097600pt;}
.ls17{letter-spacing:-2.252800pt;}
.ls13{letter-spacing:-1.380544pt;}
.ls14{letter-spacing:-1.035408pt;}
.ls1b{letter-spacing:-0.038400pt;}
.lsc{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.007467pt;}
.ls11{letter-spacing:0.048000pt;}
.ls19{letter-spacing:0.051200pt;}
.ls0{letter-spacing:0.139733pt;}
.ls8{letter-spacing:0.225600pt;}
.ls2{letter-spacing:0.240000pt;}
.ls7{letter-spacing:1.579200pt;}
.ls6{letter-spacing:1.584000pt;}
.lsd{letter-spacing:4.300800pt;}
.ls9{letter-spacing:6.624000pt;}
.lsa{letter-spacing:6.672000pt;}
.ls1a{letter-spacing:6.700800pt;}
.lsb{letter-spacing:6.720000pt;}
.ls5{letter-spacing:12.912000pt;}
.ls4{letter-spacing:12.955200pt;}
.ls3{letter-spacing:12.960000pt;}
.ls1{letter-spacing:36.240000pt;}
.ws0{word-spacing:-106.666667pt;}
.ws2{word-spacing:-64.000000pt;}
.wse{word-spacing:-53.333333pt;}
.ws12{word-spacing:-51.968000pt;}
.ws5{word-spacing:-49.584000pt;}
.ws4{word-spacing:-48.240000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws15{word-spacing:-46.976000pt;}
.wsa{word-spacing:-40.320000pt;}
.ws3{word-spacing:-37.680000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws17{word-spacing:-12.868800pt;}
.wsc{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.322667pt;}
.ws1{word-spacing:-9.328000pt;}
.ws11{word-spacing:-7.947456pt;}
.wsf{word-spacing:-7.773333pt;}
.wsb{word-spacing:-6.996000pt;}
.ws13{word-spacing:-5.960592pt;}
.ws16{word-spacing:-0.089600pt;}
.ws8{word-spacing:0.000000pt;}
.ws14{word-spacing:2.124800pt;}
.wsd{word-spacing:2.969600pt;}
.ws10{word-spacing:3.059200pt;}
._1a{margin-left:-10.624000pt;}
._3{margin-left:-7.893333pt;}
._0{margin-left:-6.186667pt;}
._4{margin-left:-4.725333pt;}
._7{margin-left:-3.818667pt;}
._2{margin-left:-2.325333pt;}
._1{margin-left:-1.194667pt;}
._b{width:1.242667pt;}
._c{width:2.264533pt;}
._9{width:3.600000pt;}
._8{width:5.184000pt;}
._a{width:6.428267pt;}
._6{width:7.526400pt;}
._d{width:8.960000pt;}
._13{width:10.233600pt;}
._5{width:11.136000pt;}
._15{width:12.128000pt;}
._12{width:13.177600pt;}
._e{width:14.368000pt;}
._17{width:15.626667pt;}
._14{width:16.889600pt;}
._18{width:17.881600pt;}
._19{width:18.801067pt;}
._f{width:19.808000pt;}
._1b{width:22.592000pt;}
._1c{width:24.451200pt;}
._16{width:28.444267pt;}
._11{width:33.360000pt;}
._10{width:36.000000pt;}
.fs3{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs2{font-size:37.312000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs6{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:113.385733pt;}
.y16{bottom:113.385867pt;}
.y69{bottom:113.386000pt;}
.yb0{bottom:113.387200pt;}
.y4b{bottom:117.381733pt;}
.y4a{bottom:127.785733pt;}
.y15{bottom:127.785867pt;}
.y68{bottom:127.786000pt;}
.yc7{bottom:131.781867pt;}
.yd8{bottom:131.782000pt;}
.yaf{bottom:131.915200pt;}
.y14{bottom:142.185867pt;}
.y67{bottom:142.186000pt;}
.yd7{bottom:142.186133pt;}
.yae{bottom:142.452533pt;}
.y49{bottom:146.181733pt;}
.y48{bottom:156.585733pt;}
.y13{bottom:156.585867pt;}
.y66{bottom:156.586000pt;}
.yad{bottom:156.852533pt;}
.yf4{bottom:160.581867pt;}
.yc6{bottom:160.582000pt;}
.yd6{bottom:160.582133pt;}
.y47{bottom:170.985733pt;}
.y12{bottom:170.985867pt;}
.y65{bottom:170.986000pt;}
.yc5{bottom:170.986133pt;}
.yac{bottom:171.252533pt;}
.y46{bottom:185.385733pt;}
.y11{bottom:185.385867pt;}
.yc4{bottom:185.386133pt;}
.yab{bottom:185.652533pt;}
.y64{bottom:189.382000pt;}
.y45{bottom:199.785733pt;}
.y10{bottom:199.785867pt;}
.yaa{bottom:200.052533pt;}
.yc3{bottom:203.782133pt;}
.y44{bottom:214.185733pt;}
.yf{bottom:214.185867pt;}
.ya9{bottom:214.452533pt;}
.yc2{bottom:214.564800pt;}
.y112{bottom:218.181867pt;}
.yf3{bottom:224.693333pt;}
.y43{bottom:228.585733pt;}
.ye{bottom:228.585867pt;}
.ya8{bottom:228.852533pt;}
.yc1{bottom:228.964800pt;}
.y42{bottom:242.985733pt;}
.yd{bottom:242.985867pt;}
.ya7{bottom:243.252533pt;}
.yf2{bottom:244.693333pt;}
.y63{bottom:247.132000pt;}
.yc0{bottom:247.360800pt;}
.y41{bottom:257.385733pt;}
.yc{bottom:257.385867pt;}
.y111{bottom:261.381867pt;}
.ya6{bottom:261.648533pt;}
.yf1{bottom:264.693333pt;}
.y62{bottom:267.132000pt;}
.y40{bottom:271.785733pt;}
.y110{bottom:271.785867pt;}
.ya5{bottom:272.052533pt;}
.y90{bottom:275.781733pt;}
.yb{bottom:275.781867pt;}
.yf0{bottom:284.693333pt;}
.y3f{bottom:286.185733pt;}
.y10f{bottom:286.185867pt;}
.yd5{bottom:286.859067pt;}
.y61{bottom:287.132000pt;}
.ya4{bottom:290.448533pt;}
.y3e{bottom:300.585733pt;}
.y10e{bottom:300.585867pt;}
.yef{bottom:304.693333pt;}
.ya3{bottom:304.848533pt;}
.yd4{bottom:306.859067pt;}
.y60{bottom:307.132000pt;}
.ybf{bottom:313.630667pt;}
.y3d{bottom:314.985733pt;}
.ya2{bottom:315.252533pt;}
.y10d{bottom:318.981867pt;}
.yee{bottom:324.693333pt;}
.yd3{bottom:326.859067pt;}
.y3c{bottom:329.385733pt;}
.y10c{bottom:329.385867pt;}
.ya{bottom:329.634533pt;}
.ya1{bottom:329.652533pt;}
.ybe{bottom:333.630667pt;}
.y5f{bottom:338.470533pt;}
.y3b{bottom:343.785733pt;}
.y10b{bottom:343.785867pt;}
.ya0{bottom:344.052533pt;}
.yed{bottom:344.693333pt;}
.yd2{bottom:346.859067pt;}
.y9{bottom:349.634533pt;}
.ybd{bottom:353.630667pt;}
.y5e{bottom:355.803867pt;}
.y3a{bottom:358.185733pt;}
.y10a{bottom:358.185867pt;}
.y9f{bottom:362.448533pt;}
.yec{bottom:364.693333pt;}
.yd1{bottom:366.859067pt;}
.y8{bottom:369.634533pt;}
.y8f{bottom:372.585733pt;}
.y109{bottom:372.585867pt;}
.y5d{bottom:373.137200pt;}
.ybc{bottom:373.630667pt;}
.y39{bottom:376.581733pt;}
.yeb{bottom:384.700400pt;}
.yd0{bottom:386.859067pt;}
.y38{bottom:386.985733pt;}
.y7{bottom:389.641600pt;}
.y5c{bottom:390.470533pt;}
.y108{bottom:390.981867pt;}
.ybb{bottom:393.630667pt;}
.yea{bottom:404.700400pt;}
.y37{bottom:405.381733pt;}
.ycf{bottom:406.859067pt;}
.yba{bottom:413.630667pt;}
.y6{bottom:417.193600pt;}
.y5b{bottom:419.142533pt;}
.y36{bottom:419.781733pt;}
.ye9{bottom:424.700400pt;}
.yce{bottom:426.859067pt;}
.yb9{bottom:433.630667pt;}
.y5a{bottom:439.142533pt;}
.ye8{bottom:444.700400pt;}
.ycd{bottom:446.859067pt;}
.yb8{bottom:453.630667pt;}
.y59{bottom:459.142533pt;}
.ye7{bottom:464.700400pt;}
.ycc{bottom:466.859067pt;}
.y35{bottom:472.694400pt;}
.yb7{bottom:473.630667pt;}
.y58{bottom:479.142533pt;}
.ye6{bottom:484.700400pt;}
.ycb{bottom:486.859067pt;}
.y8e{bottom:486.975600pt;}
.y34{bottom:492.694400pt;}
.yb6{bottom:493.630667pt;}
.y57{bottom:499.142533pt;}
.ye5{bottom:504.700400pt;}
.yca{bottom:506.859067pt;}
.y8d{bottom:506.975600pt;}
.y33{bottom:512.694400pt;}
.yb5{bottom:513.630667pt;}
.y56{bottom:519.142533pt;}
.ye4{bottom:524.700400pt;}
.yc9{bottom:526.859067pt;}
.y8c{bottom:526.975600pt;}
.y32{bottom:532.694400pt;}
.yb4{bottom:533.630667pt;}
.y55{bottom:539.142533pt;}
.ye3{bottom:544.700400pt;}
.y8b{bottom:546.975600pt;}
.yb3{bottom:553.630667pt;}
.yda{bottom:558.108933pt;}
.y54{bottom:559.142533pt;}
.y31{bottom:560.246400pt;}
.ye2{bottom:564.700400pt;}
.y8a{bottom:566.975600pt;}
.yb2{bottom:573.630667pt;}
.yd9{bottom:574.108933pt;}
.y53{bottom:579.142533pt;}
.ye1{bottom:584.700400pt;}
.y89{bottom:586.975600pt;}
.yb1{bottom:593.630667pt;}
.y30{bottom:599.142400pt;}
.y52{bottom:599.142533pt;}
.ye0{bottom:604.700400pt;}
.y88{bottom:618.314267pt;}
.y2f{bottom:619.142400pt;}
.y51{bottom:619.142533pt;}
.ydf{bottom:624.700400pt;}
.yc8{bottom:628.690133pt;}
.y87{bottom:635.647600pt;}
.y107{bottom:639.126933pt;}
.y2e{bottom:639.142400pt;}
.y50{bottom:639.142533pt;}
.yde{bottom:644.700400pt;}
.y86{bottom:652.980933pt;}
.y106{bottom:659.126933pt;}
.y2d{bottom:659.142400pt;}
.y4f{bottom:659.142533pt;}
.ydd{bottom:664.700400pt;}
.y85{bottom:670.314267pt;}
.y105{bottom:679.126933pt;}
.y2c{bottom:679.142400pt;}
.y4e{bottom:679.142533pt;}
.ydc{bottom:684.700400pt;}
.y84{bottom:687.647600pt;}
.y104{bottom:699.126933pt;}
.y2b{bottom:699.142400pt;}
.y4d{bottom:699.142533pt;}
.y83{bottom:704.980933pt;}
.ydb{bottom:712.252400pt;}
.y103{bottom:719.126933pt;}
.y2a{bottom:719.142400pt;}
.y4c{bottom:719.142533pt;}
.y82{bottom:722.314267pt;}
.y102{bottom:739.126933pt;}
.y29{bottom:739.142400pt;}
.y9e{bottom:739.142533pt;}
.yf5{bottom:742.763200pt;}
.y81{bottom:750.986133pt;}
.y101{bottom:759.126933pt;}
.y28{bottom:759.142400pt;}
.y9d{bottom:759.142533pt;}
.y5{bottom:767.429867pt;}
.y80{bottom:770.986133pt;}
.y100{bottom:779.126933pt;}
.y27{bottom:779.142400pt;}
.y9c{bottom:779.142533pt;}
.y7f{bottom:790.986133pt;}
.y4{bottom:794.096533pt;}
.yff{bottom:799.126933pt;}
.y26{bottom:799.142400pt;}
.y9b{bottom:799.142533pt;}
.y7e{bottom:810.986133pt;}
.yfe{bottom:819.126933pt;}
.y25{bottom:819.142400pt;}
.y9a{bottom:819.142533pt;}
.y3{bottom:820.763200pt;}
.y74{bottom:820.978400pt;}
.y73{bottom:836.978400pt;}
.yfd{bottom:839.126933pt;}
.y24{bottom:839.142400pt;}
.y99{bottom:839.142533pt;}
.y7d{bottom:842.324667pt;}
.y2{bottom:847.429867pt;}
.y72{bottom:852.978400pt;}
.yfc{bottom:859.126933pt;}
.y23{bottom:859.142400pt;}
.y98{bottom:859.142533pt;}
.y7c{bottom:859.658000pt;}
.y71{bottom:868.978400pt;}
.y7b{bottom:876.991333pt;}
.yfb{bottom:879.126933pt;}
.y22{bottom:879.142400pt;}
.y97{bottom:879.142533pt;}
.y70{bottom:884.978400pt;}
.y7a{bottom:894.324667pt;}
.yfa{bottom:899.126933pt;}
.y21{bottom:899.142400pt;}
.y96{bottom:899.142533pt;}
.y6f{bottom:900.978400pt;}
.y1{bottom:905.435200pt;}
.y79{bottom:911.658000pt;}
.y6e{bottom:916.978400pt;}
.yf9{bottom:919.126933pt;}
.y20{bottom:919.142400pt;}
.y95{bottom:919.142533pt;}
.y78{bottom:928.991333pt;}
.y6d{bottom:932.978400pt;}
.yf8{bottom:939.126933pt;}
.y1f{bottom:939.142400pt;}
.y94{bottom:939.142533pt;}
.y77{bottom:946.324667pt;}
.y6c{bottom:948.978400pt;}
.yf7{bottom:959.126933pt;}
.y1e{bottom:959.142400pt;}
.y93{bottom:959.142533pt;}
.y76{bottom:963.658000pt;}
.y6b{bottom:964.978400pt;}
.yf6{bottom:979.126933pt;}
.y1d{bottom:979.142400pt;}
.y92{bottom:979.142533pt;}
.y6a{bottom:980.978400pt;}
.y75{bottom:980.991333pt;}
.y1b{bottom:992.313200pt;}
.y1a{bottom:1009.913200pt;}
.y19{bottom:1027.513200pt;}
.y1c{bottom:1036.689733pt;}
.y18{bottom:1045.113200pt;}
.y17{bottom:1062.713200pt;}
.h6{height:26.133187pt;}
.he{height:26.250375pt;}
.h8{height:42.117188pt;}
.h7{height:42.234375pt;}
.h9{height:42.680000pt;}
.h4{height:43.812500pt;}
.hd{height:44.583333pt;}
.hb{height:46.796875pt;}
.hc{height:46.927083pt;}
.hf{height:53.500000pt;}
.h5{height:56.156250pt;}
.h10{height:56.312500pt;}
.h2{height:62.208000pt;}
.ha{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.385867pt;}
.xd{left:132.283467pt;}
.x4{left:146.080133pt;}
.x5{left:173.680133pt;}
.x3{left:176.426800pt;}
.xc{left:192.976400pt;}
.x2{left:212.293467pt;}
.x1{left:315.667333pt;}
.x7{left:431.711867pt;}
.x8{left:543.515867pt;}
.xb{left:570.267867pt;}
.xe{left:583.625333pt;}
.x9{left:612.243867pt;}
.xa{left:632.278533pt;}
}




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