
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6d10baf48007c94dff4f1d7d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0fb1daae9c396a2fd8bab035.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_efb35da8ac25f552a839c718.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b1f2d829e7c5fcd922dc812d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b4313eefd02a2e71ff9c19da.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d68c90088b4db1f58437569e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_8edfbca0cac39ee9ab58d236.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_1ce591b97769ff7998559726.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_eb5a0dd4160b8f6b22bdf093.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;}
.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);}
.v2{vertical-align:-38.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls14{letter-spacing:-0.690000px;}
.ls9{letter-spacing:-0.378600px;}
.lsd{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.341400px;}
.ls5{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.037440px;}
.lse{letter-spacing:-0.028080px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.208080px;}
.ls10{letter-spacing:0.256200px;}
.ls6{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.714000px;}
.lsb{letter-spacing:0.738000px;}
.ls13{letter-spacing:21.221280px;}
.ls16{letter-spacing:22.860000px;}
.ls11{letter-spacing:64.026720px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws3{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.041280px;}
.wsd{word-spacing:-21.031920px;}
.ws9{word-spacing:-21.022560px;}
.ws11{word-spacing:-20.718600px;}
.wsa{word-spacing:-20.700000px;}
.ws7{word-spacing:-20.681400px;}
.ws10{word-spacing:-20.370000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.140000px;}
.wse{word-spacing:-0.322440px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._20{margin-left:-19.572480px;}
._4{margin-left:-2.226240px;}
._1{margin-left:-1.126080px;}
._3{width:1.029120px;}
._5{width:2.060400px;}
._6{width:3.624960px;}
._7{width:4.784880px;}
._8{width:5.961360px;}
._18{width:7.202160px;}
._c{width:8.370720px;}
._d{width:9.572400px;}
._21{width:10.765680px;}
._19{width:11.810640px;}
._15{width:14.135520px;}
._16{width:15.297840px;}
._10{width:16.999680px;}
._11{width:18.465360px;}
._12{width:22.101840px;}
._1a{width:23.411280px;}
._1b{width:24.448320px;}
._22{width:25.859280px;}
._27{width:28.313280px;}
._f{width:29.325840px;}
._e{width:30.442080px;}
._13{width:33.305760px;}
._24{width:39.841920px;}
._23{width:40.887360px;}
._1c{width:58.240800px;}
._b{width:63.092160px;}
._25{width:66.802320px;}
._1f{width:74.607600px;}
._26{width:76.248960px;}
._1d{width:82.773360px;}
._1e{width:83.923920px;}
._14{width:86.545440px;}
._a{width:107.771040px;}
._9{width:108.922320px;}
._17{width:155.711520px;}
._2{width:638.842080px;}
.fc7{color:rgb(16,20,24);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(32,33,34);}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc8{color:rgb(34,34,34);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.yf0{bottom:81.720000px;}
.y10c{bottom:82.440000px;}
.y71{bottom:86.040000px;}
.y81{bottom:92.160000px;}
.y4a{bottom:94.500000px;}
.y9d{bottom:96.660000px;}
.y25{bottom:99.360000px;}
.ycc{bottom:109.080000px;}
.y70{bottom:113.940000px;}
.yef{bottom:117.900000px;}
.y10b{bottom:118.620000px;}
.y80{bottom:119.880000px;}
.y49{bottom:122.220000px;}
.ybd{bottom:124.020000px;}
.y9c{bottom:124.380000px;}
.y24{bottom:127.116000px;}
.y6f{bottom:141.696000px;}
.y7f{bottom:147.816000px;}
.y48{bottom:149.976000px;}
.y9b{bottom:152.310000px;}
.yee{bottom:154.110000px;}
.y23{bottom:155.010000px;}
.ybc{bottom:167.250000px;}
.y6e{bottom:169.410000px;}
.y7e{bottom:175.530000px;}
.y47{bottom:177.690000px;}
.y9a{bottom:180.030000px;}
.y22{bottom:182.730000px;}
.yed{bottom:190.470000px;}
.y10a{bottom:191.190000px;}
.ybb{bottom:194.970000px;}
.y6d{bottom:197.310000px;}
.y7d{bottom:203.250000px;}
.y46{bottom:205.590000px;}
.y99{bottom:207.750000px;}
.y21{bottom:210.450000px;}
.yc2{bottom:218.370000px;}
.yba{bottom:222.690000px;}
.y6c{bottom:225.030000px;}
.yec{bottom:226.650000px;}
.y109{bottom:227.370000px;}
.y7c{bottom:231.150000px;}
.y45{bottom:233.310000px;}
.y98{bottom:235.470000px;}
.y20{bottom:238.350000px;}
.yb9{bottom:250.590000px;}
.y6b{bottom:252.750000px;}
.y7b{bottom:258.870000px;}
.yc1{bottom:260.670000px;}
.y44{bottom:261.030000px;}
.yeb{bottom:262.830000px;}
.y97{bottom:263.370000px;}
.y108{bottom:263.550000px;}
.y1f{bottom:266.070000px;}
.yb8{bottom:278.310000px;}
.y6a{bottom:280.470000px;}
.y7a{bottom:286.590000px;}
.y43{bottom:288.930000px;}
.y96{bottom:291.090000px;}
.y1e{bottom:293.790000px;}
.yea{bottom:299.010000px;}
.y107{bottom:299.910000px;}
.yc0{bottom:303.510000px;}
.yb7{bottom:306.030000px;}
.y69{bottom:308.370000px;}
.y79{bottom:314.310000px;}
.y42{bottom:316.650000px;}
.y95{bottom:318.810000px;}
.y1d{bottom:321.510000px;}
.yb6{bottom:333.930000px;}
.ye9{bottom:335.370000px;}
.y68{bottom:336.090000px;}
.y78{bottom:342.210000px;}
.y41{bottom:344.370000px;}
.y94{bottom:346.530000px;}
.y1c{bottom:349.410000px;}
.yb5{bottom:361.650000px;}
.y67{bottom:363.810000px;}
.ye8{bottom:371.550000px;}
.y40{bottom:372.090000px;}
.y106{bottom:372.270000px;}
.y93{bottom:374.430000px;}
.y1b{bottom:377.130000px;}
.y77{bottom:384.555000px;}
.yb4{bottom:389.415000px;}
.y66{bottom:391.575000px;}
.y3f{bottom:400.035000px;}
.y92{bottom:402.195000px;}
.y1a{bottom:404.895000px;}
.ye7{bottom:407.775000px;}
.y105{bottom:408.495000px;}
.yb3{bottom:417.135000px;}
.y65{bottom:419.475000px;}
.y3e{bottom:427.755000px;}
.y91{bottom:429.915000px;}
.y19{bottom:432.795000px;}
.ye6{bottom:443.955000px;}
.y104{bottom:444.855000px;}
.yb2{bottom:445.035000px;}
.y64{bottom:447.195000px;}
.y3d{bottom:455.475000px;}
.y90{bottom:457.815000px;}
.y18{bottom:460.515000px;}
.yb1{bottom:472.755000px;}
.y63{bottom:474.915000px;}
.ye5{bottom:480.315000px;}
.y103{bottom:481.035000px;}
.y3c{bottom:483.195000px;}
.y8f{bottom:485.535000px;}
.y17{bottom:488.235000px;}
.yb0{bottom:500.475000px;}
.y62{bottom:502.815000px;}
.y3b{bottom:511.095000px;}
.y8e{bottom:513.255000px;}
.y16{bottom:515.955000px;}
.ye4{bottom:516.495000px;}
.y102{bottom:517.215000px;}
.y76{bottom:526.035000px;}
.ycb{bottom:527.835000px;}
.yaf{bottom:528.195000px;}
.y61{bottom:530.535000px;}
.y3a{bottom:538.815000px;}
.y8d{bottom:540.975000px;}
.y15{bottom:543.855000px;}
.ye3{bottom:552.675000px;}
.y101{bottom:553.395000px;}
.y75{bottom:553.755000px;}
.yae{bottom:556.095000px;}
.y60{bottom:558.255000px;}
.y39{bottom:566.535000px;}
.y8c{bottom:568.875000px;}
.yca{bottom:571.035000px;}
.y14{bottom:571.575000px;}
.yad{bottom:583.815000px;}
.y5f{bottom:585.975000px;}
.y100{bottom:589.755000px;}
.y38{bottom:594.435000px;}
.y74{bottom:596.595000px;}
.ye2{bottom:597.495000px;}
.yc9{bottom:598.755000px;}
.yac{bottom:611.535000px;}
.y5e{bottom:613.875000px;}
.y13{bottom:616.395000px;}
.y37{bottom:622.155000px;}
.y8b{bottom:624.315000px;}
.yff{bottom:625.935000px;}
.yc8{bottom:626.655000px;}
.ye1{bottom:630.975000px;}
.ybf{bottom:639.105000px;}
.y73{bottom:639.465000px;}
.y5d{bottom:641.625000px;}
.y36{bottom:649.905000px;}
.y8a{bottom:652.245000px;}
.yc7{bottom:654.405000px;}
.ye0{bottom:657.105000px;}
.y12{bottom:661.605000px;}
.yfe{bottom:662.145000px;}
.yab{bottom:667.185000px;}
.y5c{bottom:669.345000px;}
.y35{bottom:677.625000px;}
.y89{bottom:679.965000px;}
.ybe{bottom:681.765000px;}
.y72{bottom:682.125000px;}
.ydf{bottom:683.025000px;}
.yaa{bottom:694.905000px;}
.y5b{bottom:697.245000px;}
.y11{bottom:697.965000px;}
.yfd{bottom:698.325000px;}
.yde{bottom:707.145000px;}
.y88{bottom:707.685000px;}
.yc6{bottom:709.845000px;}
.y34{bottom:720.105000px;}
.ya9{bottom:722.625000px;}
.y5a{bottom:724.965000px;}
.ydd{bottom:733.065000px;}
.y10{bottom:734.145000px;}
.yfc{bottom:734.505000px;}
.y87{bottom:735.405000px;}
.yc5{bottom:737.745000px;}
.ya8{bottom:750.525000px;}
.y59{bottom:752.685000px;}
.ydc{bottom:758.985000px;}
.y33{bottom:763.305000px;}
.yc4{bottom:765.465000px;}
.yfb{bottom:770.865000px;}
.ya7{bottom:778.245000px;}
.yf{bottom:779.325000px;}
.y58{bottom:780.405000px;}
.ydb{bottom:784.905000px;}
.y32{bottom:791.025000px;}
.yc3{bottom:793.185000px;}
.ya6{bottom:805.965000px;}
.yfa{bottom:807.045000px;}
.y57{bottom:808.305000px;}
.yda{bottom:810.825000px;}
.ye{bottom:816.045000px;}
.y31{bottom:818.745000px;}
.ya5{bottom:833.865000px;}
.y56{bottom:836.025000px;}
.yd9{bottom:836.925000px;}
.yf9{bottom:843.225000px;}
.y30{bottom:846.465000px;}
.yd{bottom:861.405000px;}
.ya4{bottom:861.585000px;}
.yd8{bottom:862.845000px;}
.y55{bottom:863.745000px;}
.y2f{bottom:874.365000px;}
.yf8{bottom:879.405000px;}
.y110{bottom:882.645000px;}
.yd7{bottom:887.010000px;}
.y86{bottom:888.990000px;}
.ya3{bottom:889.350000px;}
.y54{bottom:891.510000px;}
.y2e{bottom:902.130000px;}
.yc{bottom:906.630000px;}
.yd6{bottom:912.930000px;}
.yf7{bottom:915.810000px;}
.ya2{bottom:917.070000px;}
.y53{bottom:919.410000px;}
.y10f{bottom:928.050000px;}
.y2d{bottom:929.850000px;}
.y85{bottom:932.190000px;}
.yd5{bottom:938.850000px;}
.ya1{bottom:944.970000px;}
.y52{bottom:947.130000px;}
.yb{bottom:951.810000px;}
.yf6{bottom:951.990000px;}
.y2c{bottom:957.750000px;}
.y84{bottom:959.910000px;}
.yd4{bottom:964.770000px;}
.ya0{bottom:972.690000px;}
.y51{bottom:974.850000px;}
.y10e{bottom:976.290000px;}
.y83{bottom:987.630000px;}
.yf5{bottom:988.170000px;}
.yd3{bottom:990.870000px;}
.ya{bottom:996.990000px;}
.y2b{bottom:1000.050000px;}
.y9f{bottom:1000.410000px;}
.y50{bottom:1002.750000px;}
.y82{bottom:1015.530000px;}
.yd2{bottom:1016.790000px;}
.yf4{bottom:1024.350000px;}
.y10d{bottom:1024.530000px;}
.y9e{bottom:1028.130000px;}
.y4f{bottom:1030.470000px;}
.y9{bottom:1042.350000px;}
.yd1{bottom:1042.710000px;}
.y2a{bottom:1043.250000px;}
.y4e{bottom:1058.190000px;}
.yf3{bottom:1060.710000px;}
.yd0{bottom:1068.810000px;}
.y29{bottom:1070.970000px;}
.y4d{bottom:1085.910000px;}
.y8{bottom:1087.530000px;}
.yf2{bottom:1096.890000px;}
.y28{bottom:1098.690000px;}
.y4c{bottom:1113.810000px;}
.ycf{bottom:1117.050000px;}
.y7{bottom:1123.710000px;}
.y27{bottom:1126.590000px;}
.yf1{bottom:1133.070000px;}
.y4b{bottom:1141.560000px;}
.yce{bottom:1143.360000px;}
.y6{bottom:1159.920000px;}
.y26{bottom:1169.280000px;}
.ycd{bottom:1169.460000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h7{height:60.917695px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h9{height:86.585445px;}
.h8{height:91.878047px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:16.410000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.x5{left:122.976000px;}
.x6{left:131.616000px;}
.x16{left:149.796000px;}
.x13{left:151.590000px;}
.xf{left:164.550000px;}
.x14{left:178.590000px;}
.xe{left:217.470000px;}
.x9{left:236.370000px;}
.x11{left:279.615000px;}
.x7{left:314.355000px;}
.x15{left:408.315000px;}
.x3{left:438.915000px;}
.xb{left:492.585000px;}
.xa{left:520.665000px;}
.xc{left:543.165000px;}
.xd{left:553.785000px;}
.x8{left:568.545000px;}
.x10{left:644.370000px;}
@media print{
.v2{vertical-align:-34.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls14{letter-spacing:-0.613333pt;}
.ls9{letter-spacing:-0.336533pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.303467pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.033280pt;}
.lse{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.184960pt;}
.ls10{letter-spacing:0.227733pt;}
.ls6{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.634667pt;}
.lsb{letter-spacing:0.656000pt;}
.ls13{letter-spacing:18.863360pt;}
.ls16{letter-spacing:20.320000pt;}
.ls11{letter-spacing:56.912640pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.wsf{word-spacing:-53.120000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.703360pt;}
.wsd{word-spacing:-18.695040pt;}
.ws9{word-spacing:-18.686720pt;}
.ws11{word-spacing:-18.416533pt;}
.wsa{word-spacing:-18.400000pt;}
.ws7{word-spacing:-18.383467pt;}
.ws10{word-spacing:-18.106667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.680000pt;}
.wse{word-spacing:-0.286613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._20{margin-left:-17.397760pt;}
._4{margin-left:-1.978880pt;}
._1{margin-left:-1.000960pt;}
._3{width:0.914773pt;}
._5{width:1.831467pt;}
._6{width:3.222187pt;}
._7{width:4.253227pt;}
._8{width:5.298987pt;}
._18{width:6.401920pt;}
._c{width:7.440640pt;}
._d{width:8.508800pt;}
._21{width:9.569493pt;}
._19{width:10.498347pt;}
._15{width:12.564907pt;}
._16{width:13.598080pt;}
._10{width:15.110827pt;}
._11{width:16.413653pt;}
._12{width:19.646080pt;}
._1a{width:20.810027pt;}
._1b{width:21.731840pt;}
._22{width:22.986027pt;}
._27{width:25.167360pt;}
._f{width:26.067413pt;}
._e{width:27.059627pt;}
._13{width:29.605120pt;}
._24{width:35.415040pt;}
._23{width:36.344320pt;}
._1c{width:51.769600pt;}
._b{width:56.081920pt;}
._25{width:59.379840pt;}
._1f{width:66.317867pt;}
._26{width:67.776853pt;}
._1d{width:73.576320pt;}
._1e{width:74.599040pt;}
._14{width:76.929280pt;}
._a{width:95.796480pt;}
._9{width:96.819840pt;}
._17{width:138.410240pt;}
._2{width:567.859627pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.yf0{bottom:72.640000pt;}
.y10c{bottom:73.280000pt;}
.y71{bottom:76.480000pt;}
.y81{bottom:81.920000pt;}
.y4a{bottom:84.000000pt;}
.y9d{bottom:85.920000pt;}
.y25{bottom:88.320000pt;}
.ycc{bottom:96.960000pt;}
.y70{bottom:101.280000pt;}
.yef{bottom:104.800000pt;}
.y10b{bottom:105.440000pt;}
.y80{bottom:106.560000pt;}
.y49{bottom:108.640000pt;}
.ybd{bottom:110.240000pt;}
.y9c{bottom:110.560000pt;}
.y24{bottom:112.992000pt;}
.y6f{bottom:125.952000pt;}
.y7f{bottom:131.392000pt;}
.y48{bottom:133.312000pt;}
.y9b{bottom:135.386667pt;}
.yee{bottom:136.986667pt;}
.y23{bottom:137.786667pt;}
.ybc{bottom:148.666667pt;}
.y6e{bottom:150.586667pt;}
.y7e{bottom:156.026667pt;}
.y47{bottom:157.946667pt;}
.y9a{bottom:160.026667pt;}
.y22{bottom:162.426667pt;}
.yed{bottom:169.306667pt;}
.y10a{bottom:169.946667pt;}
.ybb{bottom:173.306667pt;}
.y6d{bottom:175.386667pt;}
.y7d{bottom:180.666667pt;}
.y46{bottom:182.746667pt;}
.y99{bottom:184.666667pt;}
.y21{bottom:187.066667pt;}
.yc2{bottom:194.106667pt;}
.yba{bottom:197.946667pt;}
.y6c{bottom:200.026667pt;}
.yec{bottom:201.466667pt;}
.y109{bottom:202.106667pt;}
.y7c{bottom:205.466667pt;}
.y45{bottom:207.386667pt;}
.y98{bottom:209.306667pt;}
.y20{bottom:211.866667pt;}
.yb9{bottom:222.746667pt;}
.y6b{bottom:224.666667pt;}
.y7b{bottom:230.106667pt;}
.yc1{bottom:231.706667pt;}
.y44{bottom:232.026667pt;}
.yeb{bottom:233.626667pt;}
.y97{bottom:234.106667pt;}
.y108{bottom:234.266667pt;}
.y1f{bottom:236.506667pt;}
.yb8{bottom:247.386667pt;}
.y6a{bottom:249.306667pt;}
.y7a{bottom:254.746667pt;}
.y43{bottom:256.826667pt;}
.y96{bottom:258.746667pt;}
.y1e{bottom:261.146667pt;}
.yea{bottom:265.786667pt;}
.y107{bottom:266.586667pt;}
.yc0{bottom:269.786667pt;}
.yb7{bottom:272.026667pt;}
.y69{bottom:274.106667pt;}
.y79{bottom:279.386667pt;}
.y42{bottom:281.466667pt;}
.y95{bottom:283.386667pt;}
.y1d{bottom:285.786667pt;}
.yb6{bottom:296.826667pt;}
.ye9{bottom:298.106667pt;}
.y68{bottom:298.746667pt;}
.y78{bottom:304.186667pt;}
.y41{bottom:306.106667pt;}
.y94{bottom:308.026667pt;}
.y1c{bottom:310.586667pt;}
.yb5{bottom:321.466667pt;}
.y67{bottom:323.386667pt;}
.ye8{bottom:330.266667pt;}
.y40{bottom:330.746667pt;}
.y106{bottom:330.906667pt;}
.y93{bottom:332.826667pt;}
.y1b{bottom:335.226667pt;}
.y77{bottom:341.826667pt;}
.yb4{bottom:346.146667pt;}
.y66{bottom:348.066667pt;}
.y3f{bottom:355.586667pt;}
.y92{bottom:357.506667pt;}
.y1a{bottom:359.906667pt;}
.ye7{bottom:362.466667pt;}
.y105{bottom:363.106667pt;}
.yb3{bottom:370.786667pt;}
.y65{bottom:372.866667pt;}
.y3e{bottom:380.226667pt;}
.y91{bottom:382.146667pt;}
.y19{bottom:384.706667pt;}
.ye6{bottom:394.626667pt;}
.y104{bottom:395.426667pt;}
.yb2{bottom:395.586667pt;}
.y64{bottom:397.506667pt;}
.y3d{bottom:404.866667pt;}
.y90{bottom:406.946667pt;}
.y18{bottom:409.346667pt;}
.yb1{bottom:420.226667pt;}
.y63{bottom:422.146667pt;}
.ye5{bottom:426.946667pt;}
.y103{bottom:427.586667pt;}
.y3c{bottom:429.506667pt;}
.y8f{bottom:431.586667pt;}
.y17{bottom:433.986667pt;}
.yb0{bottom:444.866667pt;}
.y62{bottom:446.946667pt;}
.y3b{bottom:454.306667pt;}
.y8e{bottom:456.226667pt;}
.y16{bottom:458.626667pt;}
.ye4{bottom:459.106667pt;}
.y102{bottom:459.746667pt;}
.y76{bottom:467.586667pt;}
.ycb{bottom:469.186667pt;}
.yaf{bottom:469.506667pt;}
.y61{bottom:471.586667pt;}
.y3a{bottom:478.946667pt;}
.y8d{bottom:480.866667pt;}
.y15{bottom:483.426667pt;}
.ye3{bottom:491.266667pt;}
.y101{bottom:491.906667pt;}
.y75{bottom:492.226667pt;}
.yae{bottom:494.306667pt;}
.y60{bottom:496.226667pt;}
.y39{bottom:503.586667pt;}
.y8c{bottom:505.666667pt;}
.yca{bottom:507.586667pt;}
.y14{bottom:508.066667pt;}
.yad{bottom:518.946667pt;}
.y5f{bottom:520.866667pt;}
.y100{bottom:524.226667pt;}
.y38{bottom:528.386667pt;}
.y74{bottom:530.306667pt;}
.ye2{bottom:531.106667pt;}
.yc9{bottom:532.226667pt;}
.yac{bottom:543.586667pt;}
.y5e{bottom:545.666667pt;}
.y13{bottom:547.906667pt;}
.y37{bottom:553.026667pt;}
.y8b{bottom:554.946667pt;}
.yff{bottom:556.386667pt;}
.yc8{bottom:557.026667pt;}
.ye1{bottom:560.866667pt;}
.ybf{bottom:568.093333pt;}
.y73{bottom:568.413333pt;}
.y5d{bottom:570.333333pt;}
.y36{bottom:577.693333pt;}
.y8a{bottom:579.773333pt;}
.yc7{bottom:581.693333pt;}
.ye0{bottom:584.093333pt;}
.y12{bottom:588.093333pt;}
.yfe{bottom:588.573333pt;}
.yab{bottom:593.053333pt;}
.y5c{bottom:594.973333pt;}
.y35{bottom:602.333333pt;}
.y89{bottom:604.413333pt;}
.ybe{bottom:606.013333pt;}
.y72{bottom:606.333333pt;}
.ydf{bottom:607.133333pt;}
.yaa{bottom:617.693333pt;}
.y5b{bottom:619.773333pt;}
.y11{bottom:620.413333pt;}
.yfd{bottom:620.733333pt;}
.yde{bottom:628.573333pt;}
.y88{bottom:629.053333pt;}
.yc6{bottom:630.973333pt;}
.y34{bottom:640.093333pt;}
.ya9{bottom:642.333333pt;}
.y5a{bottom:644.413333pt;}
.ydd{bottom:651.613333pt;}
.y10{bottom:652.573333pt;}
.yfc{bottom:652.893333pt;}
.y87{bottom:653.693333pt;}
.yc5{bottom:655.773333pt;}
.ya8{bottom:667.133333pt;}
.y59{bottom:669.053333pt;}
.ydc{bottom:674.653333pt;}
.y33{bottom:678.493333pt;}
.yc4{bottom:680.413333pt;}
.yfb{bottom:685.213333pt;}
.ya7{bottom:691.773333pt;}
.yf{bottom:692.733333pt;}
.y58{bottom:693.693333pt;}
.ydb{bottom:697.693333pt;}
.y32{bottom:703.133333pt;}
.yc3{bottom:705.053333pt;}
.ya6{bottom:716.413333pt;}
.yfa{bottom:717.373333pt;}
.y57{bottom:718.493333pt;}
.yda{bottom:720.733333pt;}
.ye{bottom:725.373333pt;}
.y31{bottom:727.773333pt;}
.ya5{bottom:741.213333pt;}
.y56{bottom:743.133333pt;}
.yd9{bottom:743.933333pt;}
.yf9{bottom:749.533333pt;}
.y30{bottom:752.413333pt;}
.yd{bottom:765.693333pt;}
.ya4{bottom:765.853333pt;}
.yd8{bottom:766.973333pt;}
.y55{bottom:767.773333pt;}
.y2f{bottom:777.213333pt;}
.yf8{bottom:781.693333pt;}
.y110{bottom:784.573333pt;}
.yd7{bottom:788.453333pt;}
.y86{bottom:790.213333pt;}
.ya3{bottom:790.533333pt;}
.y54{bottom:792.453333pt;}
.y2e{bottom:801.893333pt;}
.yc{bottom:805.893333pt;}
.yd6{bottom:811.493333pt;}
.yf7{bottom:814.053333pt;}
.ya2{bottom:815.173333pt;}
.y53{bottom:817.253333pt;}
.y10f{bottom:824.933333pt;}
.y2d{bottom:826.533333pt;}
.y85{bottom:828.613333pt;}
.yd5{bottom:834.533333pt;}
.ya1{bottom:839.973333pt;}
.y52{bottom:841.893333pt;}
.yb{bottom:846.053333pt;}
.yf6{bottom:846.213333pt;}
.y2c{bottom:851.333333pt;}
.y84{bottom:853.253333pt;}
.yd4{bottom:857.573333pt;}
.ya0{bottom:864.613333pt;}
.y51{bottom:866.533333pt;}
.y10e{bottom:867.813333pt;}
.y83{bottom:877.893333pt;}
.yf5{bottom:878.373333pt;}
.yd3{bottom:880.773333pt;}
.ya{bottom:886.213333pt;}
.y2b{bottom:888.933333pt;}
.y9f{bottom:889.253333pt;}
.y50{bottom:891.333333pt;}
.y82{bottom:902.693333pt;}
.yd2{bottom:903.813333pt;}
.yf4{bottom:910.533333pt;}
.y10d{bottom:910.693333pt;}
.y9e{bottom:913.893333pt;}
.y4f{bottom:915.973333pt;}
.y9{bottom:926.533333pt;}
.yd1{bottom:926.853333pt;}
.y2a{bottom:927.333333pt;}
.y4e{bottom:940.613333pt;}
.yf3{bottom:942.853333pt;}
.yd0{bottom:950.053333pt;}
.y29{bottom:951.973333pt;}
.y4d{bottom:965.253333pt;}
.y8{bottom:966.693333pt;}
.yf2{bottom:975.013333pt;}
.y28{bottom:976.613333pt;}
.y4c{bottom:990.053333pt;}
.ycf{bottom:992.933333pt;}
.y7{bottom:998.853333pt;}
.y27{bottom:1001.413333pt;}
.yf1{bottom:1007.173333pt;}
.y4b{bottom:1014.720000pt;}
.yce{bottom:1016.320000pt;}
.y6{bottom:1031.040000pt;}
.y26{bottom:1039.360000pt;}
.ycd{bottom:1039.520000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h7{height:54.149062pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h9{height:76.964840pt;}
.h8{height:81.669375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:14.586667pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.x5{left:109.312000pt;}
.x6{left:116.992000pt;}
.x16{left:133.152000pt;}
.x13{left:134.746667pt;}
.xf{left:146.266667pt;}
.x14{left:158.746667pt;}
.xe{left:193.306667pt;}
.x9{left:210.106667pt;}
.x11{left:248.546667pt;}
.x7{left:279.426667pt;}
.x15{left:362.946667pt;}
.x3{left:390.146667pt;}
.xb{left:437.853333pt;}
.xa{left:462.813333pt;}
.xc{left:482.813333pt;}
.xd{left:492.253333pt;}
.x8{left:505.373333pt;}
.x10{left:572.773333pt;}
}




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