
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_b352124b121daa17c7c868ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_808884affc2b9a97c06eefeb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_c39d5daef26930c0695318e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_48b24e93a89cd0606578d419.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_0462a0e394b5a2664c7ef47c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_8c8c57e03c61d933454ae26d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_39cb01e6065e04997e1029c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.966000px;}
.ls6{letter-spacing:-0.529800px;}
.ls5{letter-spacing:-0.463800px;}
.ls20{letter-spacing:-0.414000px;}
.ls10{letter-spacing:-0.240600px;}
.ls13{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.115800px;}
.ls14{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.041040px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.025200px;}
.ls1f{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.066000px;}
.ls1c{letter-spacing:0.174000px;}
.ls11{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.314640px;}
.ls1b{letter-spacing:0.433440px;}
.ls1a{letter-spacing:0.479520px;}
.lsd{letter-spacing:0.617760px;}
.ls15{letter-spacing:0.780000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls17{letter-spacing:2.106720px;}
.lsc{letter-spacing:5.706720px;}
.ls1d{letter-spacing:12.186720px;}
.ls12{letter-spacing:15.066720px;}
.lsb{letter-spacing:21.546720px;}
.ls3{letter-spacing:38.106720px;}
.ls19{letter-spacing:42.426720px;}
.ls18{letter-spacing:46.170720px;}
.lse{letter-spacing:107.922720px;}
.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:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.811760px;}
.wsb{word-spacing:-13.530960px;}
.ws5{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.464720px;}
.ws9{word-spacing:-13.447440px;}
.ws6{word-spacing:-13.389960px;}
.ws8{word-spacing:-13.319160px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1507.274160px;}
._1{margin-left:-1449.432000px;}
._2{margin-left:-1100.376000px;}
._5{margin-left:-608.762880px;}
._1e{margin-left:-4.442160px;}
._6{margin-left:-3.312000px;}
._d{margin-left:-2.287440px;}
._3{margin-left:-1.258560px;}
._0{width:1.394400px;}
._7{width:2.995920px;}
._e{width:4.250880px;}
._8{width:5.378400px;}
._c{width:6.780240px;}
._a{width:8.545680px;}
._b{width:10.367040px;}
._f{width:11.428080px;}
._13{width:12.456720px;}
._9{width:15.110640px;}
._12{width:16.553520px;}
._20{width:17.700960px;}
._1f{width:18.763920px;}
._11{width:19.840320px;}
._10{width:20.856240px;}
._1d{width:46.427520px;}
._14{width:50.310000px;}
._15{width:51.710640px;}
._17{width:61.092960px;}
._19{width:63.082320px;}
._1c{width:65.311680px;}
._1a{width:74.053440px;}
._18{width:153.800640px;}
._16{width:178.386720px;}
._1b{width:202.494240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y65{bottom:6.660000px;}
.yb8{bottom:10.980000px;}
.y9a{bottom:19.800000px;}
.y98{bottom:20.745000px;}
.yb7{bottom:32.040000px;}
.y6{bottom:61.416000px;}
.yb9{bottom:88.236000px;}
.y96{bottom:103.356000px;}
.y63{bottom:109.296000px;}
.yd9{bottom:113.256000px;}
.y95{bottom:124.416000px;}
.y2f{bottom:128.556000px;}
.y62{bottom:130.356000px;}
.yda{bottom:130.536000px;}
.yd8{bottom:134.316000px;}
.y94{bottom:145.476000px;}
.y2e{bottom:149.616000px;}
.y61{bottom:151.410000px;}
.yd7{bottom:155.370000px;}
.y93{bottom:166.530000px;}
.y2d{bottom:170.670000px;}
.y60{bottom:172.470000px;}
.yd6{bottom:176.430000px;}
.y92{bottom:187.590000px;}
.y2c{bottom:191.730000px;}
.y5f{bottom:193.530000px;}
.yb6{bottom:194.430000px;}
.yd5{bottom:197.490000px;}
.y91{bottom:208.650000px;}
.y2b{bottom:212.790000px;}
.y5e{bottom:214.590000px;}
.yd4{bottom:218.550000px;}
.y90{bottom:229.710000px;}
.y2a{bottom:233.850000px;}
.y5d{bottom:235.650000px;}
.yd3{bottom:239.610000px;}
.yb5{bottom:248.250000px;}
.y8f{bottom:250.770000px;}
.y29{bottom:254.910000px;}
.y5c{bottom:256.710000px;}
.yd2{bottom:260.670000px;}
.yb4{bottom:269.310000px;}
.y8e{bottom:271.830000px;}
.y28{bottom:275.970000px;}
.y5b{bottom:277.770000px;}
.yd1{bottom:281.775000px;}
.yb3{bottom:290.415000px;}
.y8d{bottom:292.935000px;}
.y27{bottom:297.075000px;}
.y5a{bottom:298.875000px;}
.yd0{bottom:302.835000px;}
.yb2{bottom:311.475000px;}
.y8c{bottom:313.995000px;}
.y26{bottom:318.135000px;}
.y59{bottom:319.935000px;}
.ycf{bottom:323.895000px;}
.yb1{bottom:332.535000px;}
.y8b{bottom:335.055000px;}
.y25{bottom:339.195000px;}
.y58{bottom:340.995000px;}
.yce{bottom:344.955000px;}
.yb0{bottom:353.595000px;}
.y8a{bottom:356.115000px;}
.y24{bottom:360.255000px;}
.y57{bottom:362.055000px;}
.ycd{bottom:366.015000px;}
.y89{bottom:371.235000px;}
.yaf{bottom:374.655000px;}
.y23{bottom:381.315000px;}
.y56{bottom:383.115000px;}
.ycc{bottom:387.075000px;}
.y88{bottom:393.015000px;}
.yae{bottom:395.715000px;}
.y22{bottom:402.375000px;}
.y55{bottom:404.175000px;}
.ycb{bottom:408.135000px;}
.y87{bottom:414.075000px;}
.yad{bottom:416.775000px;}
.y21{bottom:423.435000px;}
.y54{bottom:425.235000px;}
.yca{bottom:429.015000px;}
.y86{bottom:435.855000px;}
.yac{bottom:437.835000px;}
.y20{bottom:444.495000px;}
.y53{bottom:446.295000px;}
.yc9{bottom:450.075000px;}
.yab{bottom:458.895000px;}
.y85{bottom:464.295000px;}
.y1f{bottom:465.555000px;}
.y52{bottom:467.355000px;}
.yc8{bottom:471.135000px;}
.yaa{bottom:479.955000px;}
.y84{bottom:485.355000px;}
.y1e{bottom:486.615000px;}
.y51{bottom:488.415000px;}
.yc7{bottom:492.195000px;}
.ya9{bottom:501.015000px;}
.y83{bottom:506.415000px;}
.y1d{bottom:507.675000px;}
.y50{bottom:509.475000px;}
.yc6{bottom:513.255000px;}
.ya8{bottom:522.075000px;}
.y82{bottom:527.475000px;}
.y1c{bottom:528.735000px;}
.y4f{bottom:530.535000px;}
.yc5{bottom:534.315000px;}
.ya7{bottom:543.135000px;}
.y81{bottom:548.535000px;}
.y1b{bottom:549.795000px;}
.y4e{bottom:551.595000px;}
.yc4{bottom:555.375000px;}
.ya6{bottom:564.195000px;}
.y80{bottom:569.625000px;}
.y1a{bottom:570.885000px;}
.y4d{bottom:572.685000px;}
.yc3{bottom:576.465000px;}
.ya5{bottom:585.285000px;}
.y7f{bottom:590.685000px;}
.y19{bottom:591.945000px;}
.y4c{bottom:593.745000px;}
.yc2{bottom:597.525000px;}
.ya4{bottom:606.345000px;}
.y7e{bottom:611.745000px;}
.y4b{bottom:614.805000px;}
.yc1{bottom:618.585000px;}
.ya3{bottom:627.405000px;}
.y7d{bottom:632.805000px;}
.y4a{bottom:635.865000px;}
.y18{bottom:636.405000px;}
.yc0{bottom:639.645000px;}
.ya2{bottom:648.465000px;}
.y7c{bottom:653.865000px;}
.y49{bottom:656.925000px;}
.ybf{bottom:660.705000px;}
.y17{bottom:666.285000px;}
.ya1{bottom:669.525000px;}
.y7b{bottom:674.925000px;}
.y48{bottom:677.985000px;}
.ybe{bottom:681.765000px;}
.y16{bottom:687.345000px;}
.ya0{bottom:690.585000px;}
.y7a{bottom:695.985000px;}
.y47{bottom:699.045000px;}
.ybd{bottom:701.565000px;}
.y15{bottom:708.405000px;}
.y9f{bottom:711.645000px;}
.y79{bottom:717.045000px;}
.y46{bottom:720.105000px;}
.ybc{bottom:721.365000px;}
.y14{bottom:729.465000px;}
.y9e{bottom:732.705000px;}
.y78{bottom:738.105000px;}
.y45{bottom:741.165000px;}
.y13{bottom:750.525000px;}
.y9d{bottom:753.765000px;}
.y77{bottom:759.165000px;}
.y44{bottom:762.225000px;}
.y12{bottom:771.585000px;}
.y9c{bottom:774.825000px;}
.y76{bottom:780.225000px;}
.y43{bottom:783.285000px;}
.y9b{bottom:789.945000px;}
.y11{bottom:792.645000px;}
.y75{bottom:801.285000px;}
.y42{bottom:804.345000px;}
.y99{bottom:811.005000px;}
.y10{bottom:813.705000px;}
.y74{bottom:822.345000px;}
.y41{bottom:825.405000px;}
.yf{bottom:834.765000px;}
.y73{bottom:843.405000px;}
.y97{bottom:845.925000px;}
.y40{bottom:846.465000px;}
.ye{bottom:855.870000px;}
.y72{bottom:864.510000px;}
.y3f{bottom:867.570000px;}
.yd{bottom:877.110000px;}
.y71{bottom:885.570000px;}
.y3e{bottom:888.630000px;}
.yc{bottom:900.330000px;}
.y70{bottom:906.630000px;}
.y3d{bottom:909.690000px;}
.yb{bottom:926.430000px;}
.y6f{bottom:927.690000px;}
.y3c{bottom:930.570000px;}
.ya{bottom:947.490000px;}
.y6e{bottom:948.750000px;}
.y3b{bottom:951.630000px;}
.y9{bottom:964.230000px;}
.y6d{bottom:969.810000px;}
.y3a{bottom:972.690000px;}
.y8{bottom:986.550000px;}
.y6c{bottom:990.870000px;}
.y39{bottom:993.750000px;}
.y7{bottom:1011.750000px;}
.y6b{bottom:1011.930000px;}
.y38{bottom:1014.810000px;}
.y6a{bottom:1032.990000px;}
.y37{bottom:1035.870000px;}
.y5{bottom:1052.430000px;}
.y69{bottom:1054.050000px;}
.y36{bottom:1056.930000px;}
.y68{bottom:1069.170000px;}
.y35{bottom:1077.990000px;}
.y4{bottom:1086.810000px;}
.y67{bottom:1090.950000px;}
.y34{bottom:1099.050000px;}
.y66{bottom:1112.010000px;}
.y33{bottom:1120.110000px;}
.y3{bottom:1121.190000px;}
.y64{bottom:1133.820000px;}
.ybb{bottom:1134.540000px;}
.y32{bottom:1141.200000px;}
.y2{bottom:1155.420000px;}
.yba{bottom:1155.600000px;}
.y31{bottom:1162.260000px;}
.y1{bottom:1191.420000px;}
.y30{bottom:1193.220000px;}
.hc{height:21.060000px;}
.hd{height:21.096000px;}
.hf{height:34.200000px;}
.he{height:35.136000px;}
.h8{height:38.671172px;}
.h10{height:46.440000px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h11{height:59.551172px;}
.h6{height:61.189805px;}
.hb{height:61.423863px;}
.ha{height:62.211094px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:65.340000px;}
.we{width:67.176000px;}
.wf{width:70.560000px;}
.w18{width:73.260000px;}
.w4{width:79.416000px;}
.w19{width:82.116000px;}
.wa{width:90.900000px;}
.w16{width:91.476000px;}
.w9{width:104.256000px;}
.w17{width:122.220000px;}
.w11{width:129.636000px;}
.w15{width:130.680000px;}
.w12{width:143.280000px;}
.w14{width:155.370000px;}
.wd{width:159.510000px;}
.w6{width:163.290000px;}
.w8{width:182.010000px;}
.wb{width:182.190000px;}
.w3{width:214.050000px;}
.w10{width:225.030000px;}
.wc{width:234.030000px;}
.w7{width:260.490000px;}
.w13{width:285.555000px;}
.w1a{width:649.410000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:4.500000px;}
.x4{left:8.100000px;}
.x1f{left:11.700000px;}
.x18{left:15.840000px;}
.x12{left:18.180000px;}
.x21{left:19.440000px;}
.x22{left:23.940000px;}
.x14{left:28.800000px;}
.x1e{left:32.400000px;}
.x17{left:37.260000px;}
.x15{left:41.040000px;}
.x24{left:43.920000px;}
.x1a{left:45.585000px;}
.x25{left:48.240000px;}
.x20{left:50.040000px;}
.x1{left:53.999987px;}
.x1c{left:61.020000px;}
.x23{left:65.340000px;}
.x13{left:72.396000px;}
.x27{left:74.339987px;}
.x9{left:80.999987px;}
.x3{left:96.515987px;}
.x28{left:101.375987px;}
.x2{left:108.035987px;}
.x1d{left:142.770000px;}
.xe{left:213.510000px;}
.xa{left:236.010000px;}
.x5{left:268.050000px;}
.xf{left:280.695000px;}
.xb{left:340.275000px;}
.x6{left:347.475000px;}
.x10{left:351.255000px;}
.x7{left:412.815000px;}
.xc{left:431.175000px;}
.x16{left:494.925000px;}
.x8{left:576.105000px;}
.xd{left:613.365000px;}
.x19{left:625.605000px;}
.x11{left:705.930000px;}
.x1b{left:716.910000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.858667pt;}
.ls6{letter-spacing:-0.470933pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls20{letter-spacing:-0.368000pt;}
.ls10{letter-spacing:-0.213867pt;}
.ls13{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.102933pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.036480pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.022400pt;}
.ls1f{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.058667pt;}
.ls1c{letter-spacing:0.154667pt;}
.ls11{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.279680pt;}
.ls1b{letter-spacing:0.385280pt;}
.ls1a{letter-spacing:0.426240pt;}
.lsd{letter-spacing:0.549120pt;}
.ls15{letter-spacing:0.693333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls17{letter-spacing:1.872640pt;}
.lsc{letter-spacing:5.072640pt;}
.ls1d{letter-spacing:10.832640pt;}
.ls12{letter-spacing:13.392640pt;}
.lsb{letter-spacing:19.152640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls19{letter-spacing:37.712640pt;}
.ls18{letter-spacing:41.040640pt;}
.lse{letter-spacing:95.931307pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.277120pt;}
.wsb{word-spacing:-12.027520pt;}
.ws5{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.968640pt;}
.ws9{word-spacing:-11.953280pt;}
.ws6{word-spacing:-11.902187pt;}
.ws8{word-spacing:-11.839253pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1339.799253pt;}
._1{margin-left:-1288.384000pt;}
._2{margin-left:-978.112000pt;}
._5{margin-left:-541.122560pt;}
._1e{margin-left:-3.948587pt;}
._6{margin-left:-2.944000pt;}
._d{margin-left:-2.033280pt;}
._3{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._7{width:2.663040pt;}
._e{width:3.778560pt;}
._8{width:4.780800pt;}
._c{width:6.026880pt;}
._a{width:7.596160pt;}
._b{width:9.215147pt;}
._f{width:10.158293pt;}
._13{width:11.072640pt;}
._9{width:13.431680pt;}
._12{width:14.714240pt;}
._20{width:15.734187pt;}
._1f{width:16.679040pt;}
._11{width:17.635840pt;}
._10{width:18.538880pt;}
._1d{width:41.268907pt;}
._14{width:44.720000pt;}
._15{width:45.965013pt;}
._17{width:54.304853pt;}
._19{width:56.073173pt;}
._1c{width:58.054827pt;}
._1a{width:65.825280pt;}
._18{width:136.711680pt;}
._16{width:158.565973pt;}
._1b{width:179.994880pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:5.920000pt;}
.yb8{bottom:9.760000pt;}
.y9a{bottom:17.600000pt;}
.y98{bottom:18.440000pt;}
.yb7{bottom:28.480000pt;}
.y6{bottom:54.592000pt;}
.yb9{bottom:78.432000pt;}
.y96{bottom:91.872000pt;}
.y63{bottom:97.152000pt;}
.yd9{bottom:100.672000pt;}
.y95{bottom:110.592000pt;}
.y2f{bottom:114.272000pt;}
.y62{bottom:115.872000pt;}
.yda{bottom:116.032000pt;}
.yd8{bottom:119.392000pt;}
.y94{bottom:129.312000pt;}
.y2e{bottom:132.992000pt;}
.y61{bottom:134.586667pt;}
.yd7{bottom:138.106667pt;}
.y93{bottom:148.026667pt;}
.y2d{bottom:151.706667pt;}
.y60{bottom:153.306667pt;}
.yd6{bottom:156.826667pt;}
.y92{bottom:166.746667pt;}
.y2c{bottom:170.426667pt;}
.y5f{bottom:172.026667pt;}
.yb6{bottom:172.826667pt;}
.yd5{bottom:175.546667pt;}
.y91{bottom:185.466667pt;}
.y2b{bottom:189.146667pt;}
.y5e{bottom:190.746667pt;}
.yd4{bottom:194.266667pt;}
.y90{bottom:204.186667pt;}
.y2a{bottom:207.866667pt;}
.y5d{bottom:209.466667pt;}
.yd3{bottom:212.986667pt;}
.yb5{bottom:220.666667pt;}
.y8f{bottom:222.906667pt;}
.y29{bottom:226.586667pt;}
.y5c{bottom:228.186667pt;}
.yd2{bottom:231.706667pt;}
.yb4{bottom:239.386667pt;}
.y8e{bottom:241.626667pt;}
.y28{bottom:245.306667pt;}
.y5b{bottom:246.906667pt;}
.yd1{bottom:250.466667pt;}
.yb3{bottom:258.146667pt;}
.y8d{bottom:260.386667pt;}
.y27{bottom:264.066667pt;}
.y5a{bottom:265.666667pt;}
.yd0{bottom:269.186667pt;}
.yb2{bottom:276.866667pt;}
.y8c{bottom:279.106667pt;}
.y26{bottom:282.786667pt;}
.y59{bottom:284.386667pt;}
.ycf{bottom:287.906667pt;}
.yb1{bottom:295.586667pt;}
.y8b{bottom:297.826667pt;}
.y25{bottom:301.506667pt;}
.y58{bottom:303.106667pt;}
.yce{bottom:306.626667pt;}
.yb0{bottom:314.306667pt;}
.y8a{bottom:316.546667pt;}
.y24{bottom:320.226667pt;}
.y57{bottom:321.826667pt;}
.ycd{bottom:325.346667pt;}
.y89{bottom:329.986667pt;}
.yaf{bottom:333.026667pt;}
.y23{bottom:338.946667pt;}
.y56{bottom:340.546667pt;}
.ycc{bottom:344.066667pt;}
.y88{bottom:349.346667pt;}
.yae{bottom:351.746667pt;}
.y22{bottom:357.666667pt;}
.y55{bottom:359.266667pt;}
.ycb{bottom:362.786667pt;}
.y87{bottom:368.066667pt;}
.yad{bottom:370.466667pt;}
.y21{bottom:376.386667pt;}
.y54{bottom:377.986667pt;}
.yca{bottom:381.346667pt;}
.y86{bottom:387.426667pt;}
.yac{bottom:389.186667pt;}
.y20{bottom:395.106667pt;}
.y53{bottom:396.706667pt;}
.yc9{bottom:400.066667pt;}
.yab{bottom:407.906667pt;}
.y85{bottom:412.706667pt;}
.y1f{bottom:413.826667pt;}
.y52{bottom:415.426667pt;}
.yc8{bottom:418.786667pt;}
.yaa{bottom:426.626667pt;}
.y84{bottom:431.426667pt;}
.y1e{bottom:432.546667pt;}
.y51{bottom:434.146667pt;}
.yc7{bottom:437.506667pt;}
.ya9{bottom:445.346667pt;}
.y83{bottom:450.146667pt;}
.y1d{bottom:451.266667pt;}
.y50{bottom:452.866667pt;}
.yc6{bottom:456.226667pt;}
.ya8{bottom:464.066667pt;}
.y82{bottom:468.866667pt;}
.y1c{bottom:469.986667pt;}
.y4f{bottom:471.586667pt;}
.yc5{bottom:474.946667pt;}
.ya7{bottom:482.786667pt;}
.y81{bottom:487.586667pt;}
.y1b{bottom:488.706667pt;}
.y4e{bottom:490.306667pt;}
.yc4{bottom:493.666667pt;}
.ya6{bottom:501.506667pt;}
.y80{bottom:506.333333pt;}
.y1a{bottom:507.453333pt;}
.y4d{bottom:509.053333pt;}
.yc3{bottom:512.413333pt;}
.ya5{bottom:520.253333pt;}
.y7f{bottom:525.053333pt;}
.y19{bottom:526.173333pt;}
.y4c{bottom:527.773333pt;}
.yc2{bottom:531.133333pt;}
.ya4{bottom:538.973333pt;}
.y7e{bottom:543.773333pt;}
.y4b{bottom:546.493333pt;}
.yc1{bottom:549.853333pt;}
.ya3{bottom:557.693333pt;}
.y7d{bottom:562.493333pt;}
.y4a{bottom:565.213333pt;}
.y18{bottom:565.693333pt;}
.yc0{bottom:568.573333pt;}
.ya2{bottom:576.413333pt;}
.y7c{bottom:581.213333pt;}
.y49{bottom:583.933333pt;}
.ybf{bottom:587.293333pt;}
.y17{bottom:592.253333pt;}
.ya1{bottom:595.133333pt;}
.y7b{bottom:599.933333pt;}
.y48{bottom:602.653333pt;}
.ybe{bottom:606.013333pt;}
.y16{bottom:610.973333pt;}
.ya0{bottom:613.853333pt;}
.y7a{bottom:618.653333pt;}
.y47{bottom:621.373333pt;}
.ybd{bottom:623.613333pt;}
.y15{bottom:629.693333pt;}
.y9f{bottom:632.573333pt;}
.y79{bottom:637.373333pt;}
.y46{bottom:640.093333pt;}
.ybc{bottom:641.213333pt;}
.y14{bottom:648.413333pt;}
.y9e{bottom:651.293333pt;}
.y78{bottom:656.093333pt;}
.y45{bottom:658.813333pt;}
.y13{bottom:667.133333pt;}
.y9d{bottom:670.013333pt;}
.y77{bottom:674.813333pt;}
.y44{bottom:677.533333pt;}
.y12{bottom:685.853333pt;}
.y9c{bottom:688.733333pt;}
.y76{bottom:693.533333pt;}
.y43{bottom:696.253333pt;}
.y9b{bottom:702.173333pt;}
.y11{bottom:704.573333pt;}
.y75{bottom:712.253333pt;}
.y42{bottom:714.973333pt;}
.y99{bottom:720.893333pt;}
.y10{bottom:723.293333pt;}
.y74{bottom:730.973333pt;}
.y41{bottom:733.693333pt;}
.yf{bottom:742.013333pt;}
.y73{bottom:749.693333pt;}
.y97{bottom:751.933333pt;}
.y40{bottom:752.413333pt;}
.ye{bottom:760.773333pt;}
.y72{bottom:768.453333pt;}
.y3f{bottom:771.173333pt;}
.yd{bottom:779.653333pt;}
.y71{bottom:787.173333pt;}
.y3e{bottom:789.893333pt;}
.yc{bottom:800.293333pt;}
.y70{bottom:805.893333pt;}
.y3d{bottom:808.613333pt;}
.yb{bottom:823.493333pt;}
.y6f{bottom:824.613333pt;}
.y3c{bottom:827.173333pt;}
.ya{bottom:842.213333pt;}
.y6e{bottom:843.333333pt;}
.y3b{bottom:845.893333pt;}
.y9{bottom:857.093333pt;}
.y6d{bottom:862.053333pt;}
.y3a{bottom:864.613333pt;}
.y8{bottom:876.933333pt;}
.y6c{bottom:880.773333pt;}
.y39{bottom:883.333333pt;}
.y7{bottom:899.333333pt;}
.y6b{bottom:899.493333pt;}
.y38{bottom:902.053333pt;}
.y6a{bottom:918.213333pt;}
.y37{bottom:920.773333pt;}
.y5{bottom:935.493333pt;}
.y69{bottom:936.933333pt;}
.y36{bottom:939.493333pt;}
.y68{bottom:950.373333pt;}
.y35{bottom:958.213333pt;}
.y4{bottom:966.053333pt;}
.y67{bottom:969.733333pt;}
.y34{bottom:976.933333pt;}
.y66{bottom:988.453333pt;}
.y33{bottom:995.653333pt;}
.y3{bottom:996.613333pt;}
.y64{bottom:1007.840000pt;}
.ybb{bottom:1008.480000pt;}
.y32{bottom:1014.400000pt;}
.y2{bottom:1027.040000pt;}
.yba{bottom:1027.200000pt;}
.y31{bottom:1033.120000pt;}
.y1{bottom:1059.040000pt;}
.y30{bottom:1060.640000pt;}
.hc{height:18.720000pt;}
.hd{height:18.752000pt;}
.hf{height:30.400000pt;}
.he{height:31.232000pt;}
.h8{height:34.374375pt;}
.h10{height:41.280000pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h11{height:52.934375pt;}
.h6{height:54.390938pt;}
.hb{height:54.598989pt;}
.ha{height:55.298750pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:58.080000pt;}
.we{width:59.712000pt;}
.wf{width:62.720000pt;}
.w18{width:65.120000pt;}
.w4{width:70.592000pt;}
.w19{width:72.992000pt;}
.wa{width:80.800000pt;}
.w16{width:81.312000pt;}
.w9{width:92.672000pt;}
.w17{width:108.640000pt;}
.w11{width:115.232000pt;}
.w15{width:116.160000pt;}
.w12{width:127.360000pt;}
.w14{width:138.106667pt;}
.wd{width:141.786667pt;}
.w6{width:145.146667pt;}
.w8{width:161.786667pt;}
.wb{width:161.946667pt;}
.w3{width:190.266667pt;}
.w10{width:200.026667pt;}
.wc{width:208.026667pt;}
.w7{width:231.546667pt;}
.w13{width:253.826667pt;}
.w1a{width:577.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:4.000000pt;}
.x4{left:7.200000pt;}
.x1f{left:10.400000pt;}
.x18{left:14.080000pt;}
.x12{left:16.160000pt;}
.x21{left:17.280000pt;}
.x22{left:21.280000pt;}
.x14{left:25.600000pt;}
.x1e{left:28.800000pt;}
.x17{left:33.120000pt;}
.x15{left:36.480000pt;}
.x24{left:39.040000pt;}
.x1a{left:40.520000pt;}
.x25{left:42.880000pt;}
.x20{left:44.480000pt;}
.x1{left:47.999988pt;}
.x1c{left:54.240000pt;}
.x23{left:58.080000pt;}
.x13{left:64.352000pt;}
.x27{left:66.079988pt;}
.x9{left:71.999988pt;}
.x3{left:85.791988pt;}
.x28{left:90.111988pt;}
.x2{left:96.031988pt;}
.x1d{left:126.906667pt;}
.xe{left:189.786667pt;}
.xa{left:209.786667pt;}
.x5{left:238.266667pt;}
.xf{left:249.506667pt;}
.xb{left:302.466667pt;}
.x6{left:308.866667pt;}
.x10{left:312.226667pt;}
.x7{left:366.946667pt;}
.xc{left:383.266667pt;}
.x16{left:439.933333pt;}
.x8{left:512.093333pt;}
.xd{left:545.213333pt;}
.x19{left:556.093333pt;}
.x11{left:627.493333pt;}
.x1b{left:637.253333pt;}
}




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