
    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_c570a4e00f9049a9812928a1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_49e3a674f5832f751687e0b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c13acb245f7d9275a6cf0adc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_afadd032c5d741dd2eab2381.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.864000px;}
.ls14{letter-spacing:0.936000px;}
.ls1a{letter-spacing:1.440000px;}
.ls17{letter-spacing:2.160000px;}
.lsd{letter-spacing:8.640000px;}
.lse{letter-spacing:13.680000px;}
.ls13{letter-spacing:14.400000px;}
.ls16{letter-spacing:98.784000px;}
.ls3{letter-spacing:134.784000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws10{word-spacing:-18.936000px;}
.wsb{word-spacing:-18.864000px;}
.wsa{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.576000px;}
.ws12{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.ws0{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.568000px;}
.wse{word-spacing:-17.496000px;}
.wsc{word-spacing:-17.424000px;}
.ws14{word-spacing:-17.280000px;}
.wsd{word-spacing:-17.064000px;}
.ws9{word-spacing:0.000000px;}
._3{margin-left:-5.580000px;}
._2{margin-left:-4.176000px;}
._6{margin-left:-2.580000px;}
._0{margin-left:-1.152000px;}
._1{width:1.248000px;}
._7{width:2.568000px;}
._a{width:3.780000px;}
._d{width:4.944000px;}
._4{width:6.336000px;}
._5{width:7.752000px;}
._b{width:8.784000px;}
._8{width:9.984000px;}
._c{width:11.028000px;}
._9{width:12.156000px;}
._11{width:14.016000px;}
._f{width:15.612000px;}
._e{width:16.848000px;}
._12{width:19.488000px;}
._15{width:20.736000px;}
._16{width:22.752000px;}
._17{width:23.844000px;}
._1e{width:24.888000px;}
._1f{width:26.100000px;}
._10{width:27.120000px;}
._14{width:28.584000px;}
._13{width:29.712000px;}
._20{width:32.616000px;}
._21{width:33.624000px;}
._1c{width:34.752000px;}
._1d{width:35.916000px;}
._1a{width:38.136000px;}
._1b{width:39.924000px;}
._18{width:42.168000px;}
._19{width:43.200000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.y6{bottom:5.400000px;}
.y10{bottom:12.600000px;}
.ye{bottom:12.780000px;}
.y12{bottom:12.960000px;}
.y3{bottom:21.960000px;}
.y7{bottom:24.300000px;}
.y5{bottom:26.100000px;}
.y2{bottom:42.660000px;}
.yc{bottom:56.700000px;}
.yb{bottom:72.180000px;}
.y73{bottom:112.860000px;}
.yce{bottom:115.560000px;}
.y3b{bottom:120.060000px;}
.y87{bottom:122.760000px;}
.y58{bottom:124.020000px;}
.ya6{bottom:124.560000px;}
.yd6{bottom:127.260000px;}
.ycd{bottom:136.260000px;}
.y72{bottom:138.600000px;}
.y3a{bottom:140.760000px;}
.y57{bottom:144.720000px;}
.ya5{bottom:145.260000px;}
.y86{bottom:148.500000px;}
.ydd{bottom:150.660000px;}
.ycc{bottom:156.960000px;}
.y39{bottom:161.460000px;}
.y56{bottom:165.420000px;}
.ya4{bottom:165.960000px;}
.ydc{bottom:171.360000px;}
.ycb{bottom:177.660000px;}
.y55{bottom:186.120000px;}
.ya3{bottom:186.660000px;}
.y38{bottom:191.160000px;}
.yca{bottom:198.390000px;}
.yfb{bottom:199.290000px;}
.ydb{bottom:201.090000px;}
.y54{bottom:206.850000px;}
.ya2{bottom:207.390000px;}
.y37{bottom:211.890000px;}
.yb8{bottom:216.390000px;}
.yc9{bottom:219.090000px;}
.yda{bottom:221.790000px;}
.yb0{bottom:228.090000px;}
.yfa{bottom:228.990000px;}
.y36{bottom:232.590000px;}
.y53{bottom:236.550000px;}
.ya1{bottom:237.090000px;}
.yd2{bottom:239.790000px;}
.yaf{bottom:248.790000px;}
.yd9{bottom:251.490000px;}
.y35{bottom:253.290000px;}
.y52{bottom:257.250000px;}
.ya0{bottom:257.790000px;}
.yf9{bottom:258.690000px;}
.yd5{bottom:260.490000px;}
.yc8{bottom:269.490000px;}
.yd8{bottom:272.190000px;}
.y34{bottom:273.990000px;}
.y51{bottom:277.950000px;}
.y9f{bottom:278.490000px;}
.yf8{bottom:288.390000px;}
.yc7{bottom:290.190000px;}
.y33{bottom:294.690000px;}
.y50{bottom:298.650000px;}
.y9e{bottom:299.190000px;}
.yd7{bottom:301.890000px;}
.yf7{bottom:309.090000px;}
.yc6{bottom:310.890000px;}
.y32{bottom:315.390000px;}
.y4f{bottom:319.350000px;}
.y9d{bottom:319.890000px;}
.yc5{bottom:331.590000px;}
.yf6{bottom:338.790000px;}
.y9c{bottom:340.590000px;}
.y31{bottom:345.090000px;}
.y4e{bottom:349.050000px;}
.yc4{bottom:352.290000px;}
.y9b{bottom:361.290000px;}
.yf5{bottom:368.490000px;}
.yb7{bottom:370.290000px;}
.yc3{bottom:372.990000px;}
.y30{bottom:374.790000px;}
.y4d{bottom:378.750000px;}
.yae{bottom:381.990000px;}
.y9a{bottom:390.990000px;}
.yd4{bottom:393.690000px;}
.y2f{bottom:395.490000px;}
.yf4{bottom:398.190000px;}
.y4c{bottom:399.450000px;}
.yad{bottom:402.690000px;}
.y99{bottom:411.690000px;}
.y2e{bottom:416.190000px;}
.y4b{bottom:420.150000px;}
.yc2{bottom:423.390000px;}
.yf3{bottom:427.890000px;}
.y98{bottom:432.390000px;}
.y4a{bottom:440.895000px;}
.yc1{bottom:444.135000px;}
.y2d{bottom:445.935000px;}
.yf2{bottom:448.635000px;}
.y97{bottom:453.135000px;}
.y49{bottom:461.595000px;}
.yc0{bottom:464.835000px;}
.y2c{bottom:466.635000px;}
.y96{bottom:473.835000px;}
.yf1{bottom:478.335000px;}
.y48{bottom:482.295000px;}
.ybf{bottom:485.535000px;}
.y2b{bottom:487.335000px;}
.yac{bottom:494.535000px;}
.y95{bottom:503.535000px;}
.ybe{bottom:506.235000px;}
.y2a{bottom:508.035000px;}
.y47{bottom:511.995000px;}
.yab{bottom:515.235000px;}
.yb6{bottom:524.235000px;}
.yd3{bottom:526.935000px;}
.y29{bottom:528.735000px;}
.y46{bottom:532.695000px;}
.y94{bottom:533.235000px;}
.yaa{bottom:535.935000px;}
.yb5{bottom:544.935000px;}
.y28{bottom:549.435000px;}
.y45{bottom:553.395000px;}
.y93{bottom:553.935000px;}
.y71{bottom:556.635000px;}
.yf0{bottom:558.435000px;}
.ya9{bottom:565.635000px;}
.y27{bottom:570.135000px;}
.y44{bottom:574.095000px;}
.y92{bottom:574.635000px;}
.y70{bottom:577.335000px;}
.ya8{bottom:586.335000px;}
.yef{bottom:588.135000px;}
.y26{bottom:590.835000px;}
.y43{bottom:594.795000px;}
.y91{bottom:595.335000px;}
.y6f{bottom:598.035000px;}
.y85{bottom:607.035000px;}
.yee{bottom:608.835000px;}
.y25{bottom:611.535000px;}
.y42{bottom:615.495000px;}
.y90{bottom:616.035000px;}
.yf{bottom:617.295000px;}
.yd{bottom:617.475000px;}
.y6e{bottom:618.735000px;}
.y84{bottom:627.735000px;}
.y24{bottom:632.235000px;}
.y8f{bottom:636.735000px;}
.yed{bottom:638.535000px;}
.y6d{bottom:639.435000px;}
.y41{bottom:645.195000px;}
.y83{bottom:648.435000px;}
.y23{bottom:652.935000px;}
.y8e{bottom:657.435000px;}
.y6c{bottom:660.135000px;}
.yec{bottom:668.235000px;}
.y82{bottom:669.135000px;}
.y40{bottom:670.935000px;}
.y22{bottom:673.635000px;}
.y6b{bottom:680.865000px;}
.y8d{bottom:687.165000px;}
.yeb{bottom:688.965000px;}
.y81{bottom:689.865000px;}
.ya7{bottom:698.865000px;}
.y21{bottom:703.365000px;}
.y8c{bottom:707.865000px;}
.yea{bottom:709.665000px;}
.y6a{bottom:710.565000px;}
.y80{bottom:719.565000px;}
.y8b{bottom:728.565000px;}
.y69{bottom:731.265000px;}
.ye9{bottom:739.365000px;}
.y20{bottom:739.905000px;}
.yb4{bottom:740.265000px;}
.y7f{bottom:749.265000px;}
.y68{bottom:751.965000px;}
.ye8{bottom:760.065000px;}
.yb3{bottom:760.965000px;}
.y1f{bottom:762.765000px;}
.y7e{bottom:769.965000px;}
.y67{bottom:772.665000px;}
.yb2{bottom:781.665000px;}
.ye7{bottom:789.765000px;}
.y1e{bottom:790.305000px;}
.y7d{bottom:790.665000px;}
.y66{bottom:793.365000px;}
.yb1{bottom:802.365000px;}
.y7c{bottom:811.365000px;}
.y1d{bottom:813.165000px;}
.ye6{bottom:819.465000px;}
.y65{bottom:823.065000px;}
.y7b{bottom:832.065000px;}
.y1c{bottom:840.705000px;}
.y8a{bottom:841.065000px;}
.ybd{bottom:843.765000px;}
.ye5{bottom:849.165000px;}
.y64{bottom:852.765000px;}
.y89{bottom:861.765000px;}
.y1b{bottom:863.565000px;}
.ybc{bottom:864.465000px;}
.y63{bottom:873.465000px;}
.ye4{bottom:878.865000px;}
.y7a{bottom:882.465000px;}
.y1a{bottom:884.265000px;}
.ybb{bottom:885.165000px;}
.y62{bottom:894.165000px;}
.y79{bottom:903.165000px;}
.yba{bottom:905.865000px;}
.ye3{bottom:908.565000px;}
.y19{bottom:911.805000px;}
.y61{bottom:914.910000px;}
.y78{bottom:923.910000px;}
.yb9{bottom:926.610000px;}
.y18{bottom:934.710000px;}
.y60{bottom:935.610000px;}
.ye2{bottom:938.310000px;}
.y77{bottom:944.610000px;}
.y5f{bottom:956.310000px;}
.y17{bottom:964.410000px;}
.y76{bottom:965.310000px;}
.ye1{bottom:968.010000px;}
.yd1{bottom:977.010000px;}
.y5e{bottom:986.010000px;}
.ye0{bottom:988.710000px;}
.y16{bottom:994.110000px;}
.yd0{bottom:997.710000px;}
.y5d{bottom:1006.710000px;}
.y15{bottom:1014.810000px;}
.y88{bottom:1015.710000px;}
.ydf{bottom:1018.410000px;}
.y5c{bottom:1027.410000px;}
.y75{bottom:1036.410000px;}
.yde{bottom:1039.110000px;}
.y14{bottom:1040.550000px;}
.y5b{bottom:1048.110000px;}
.y74{bottom:1057.110000px;}
.y5a{bottom:1068.810000px;}
.y3f{bottom:1077.810000px;}
.y13{bottom:1079.250000px;}
.y59{bottom:1089.510000px;}
.y3e{bottom:1098.510000px;}
.ycf{bottom:1110.210000px;}
.y11{bottom:1117.950000px;}
.y3d{bottom:1119.210000px;}
.y3c{bottom:1139.910000px;}
.y1{bottom:1182.060000px;}
.ya{bottom:1193.400000px;}
.y4{bottom:1198.080000px;}
.y9{bottom:1208.880000px;}
.h6{height:19.620000px;}
.hb{height:28.080000px;}
.ha{height:28.260000px;}
.hf{height:33.683203px;}
.hd{height:38.700000px;}
.hc{height:38.736000px;}
.h8{height:41.726953px;}
.h7{height:42.164648px;}
.h5{height:43.560000px;}
.h9{height:46.251562px;}
.h4{height:50.273438px;}
.h3{height:50.800781px;}
.h10{height:52.417969px;}
.he{height:57.796523px;}
.h2{height:60.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:84.990000px;}
.w3{width:101.376000px;}
.w6{width:124.416000px;}
.w5{width:188.130000px;}
.w4{width:196.050000px;}
.w9{width:223.770000px;}
.wb{width:279.930000px;}
.wa{width:286.095000px;}
.w2{width:618.450000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xc{left:10.800000px;}
.xe{left:14.940000px;}
.x5{left:20.340000px;}
.x3{left:23.436000px;}
.x7{left:29.340000px;}
.xd{left:52.200000px;}
.x1{left:67.500000px;}
.xa{left:106.235987px;}
.x11{left:118.115987px;}
.x15{left:119.195987px;}
.x18{left:135.035987px;}
.x16{left:150.329987px;}
.x19{left:152.309987px;}
.x1a{left:160.229987px;}
.x2{left:270.435000px;}
.xf{left:275.970000px;}
.x14{left:292.214987px;}
.x17{left:342.434987px;}
.x12{left:407.594987px;}
.x13{left:446.474987px;}
.x8{left:451.155000px;}
.x10{left:562.065000px;}
.x1b{left:695.849987px;}
.x9{left:737.610000px;}
.x4{left:761.010000px;}
.x1c{left:774.509987px;}
.xb{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.768000pt;}
.ls14{letter-spacing:0.832000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.920000pt;}
.lsd{letter-spacing:7.680000pt;}
.lse{letter-spacing:12.160000pt;}
.ls13{letter-spacing:12.800000pt;}
.ls16{letter-spacing:87.808000pt;}
.ls3{letter-spacing:119.808000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws10{word-spacing:-16.832000pt;}
.wsb{word-spacing:-16.768000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.512000pt;}
.ws12{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.ws0{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.616000pt;}
.wse{word-spacing:-15.552000pt;}
.wsc{word-spacing:-15.488000pt;}
.ws14{word-spacing:-15.360000pt;}
.wsd{word-spacing:-15.168000pt;}
.ws9{word-spacing:0.000000pt;}
._3{margin-left:-4.960000pt;}
._2{margin-left:-3.712000pt;}
._6{margin-left:-2.293333pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.109333pt;}
._7{width:2.282667pt;}
._a{width:3.360000pt;}
._d{width:4.394667pt;}
._4{width:5.632000pt;}
._5{width:6.890667pt;}
._b{width:7.808000pt;}
._8{width:8.874667pt;}
._c{width:9.802667pt;}
._9{width:10.805333pt;}
._11{width:12.458667pt;}
._f{width:13.877333pt;}
._e{width:14.976000pt;}
._12{width:17.322667pt;}
._15{width:18.432000pt;}
._16{width:20.224000pt;}
._17{width:21.194667pt;}
._1e{width:22.122667pt;}
._1f{width:23.200000pt;}
._10{width:24.106667pt;}
._14{width:25.408000pt;}
._13{width:26.410667pt;}
._20{width:28.992000pt;}
._21{width:29.888000pt;}
._1c{width:30.890667pt;}
._1d{width:31.925333pt;}
._1a{width:33.898667pt;}
._1b{width:35.488000pt;}
._18{width:37.482667pt;}
._19{width:38.400000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.y6{bottom:4.800000pt;}
.y10{bottom:11.200000pt;}
.ye{bottom:11.360000pt;}
.y12{bottom:11.520000pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.600000pt;}
.y5{bottom:23.200000pt;}
.y2{bottom:37.920000pt;}
.yc{bottom:50.400000pt;}
.yb{bottom:64.160000pt;}
.y73{bottom:100.320000pt;}
.yce{bottom:102.720000pt;}
.y3b{bottom:106.720000pt;}
.y87{bottom:109.120000pt;}
.y58{bottom:110.240000pt;}
.ya6{bottom:110.720000pt;}
.yd6{bottom:113.120000pt;}
.ycd{bottom:121.120000pt;}
.y72{bottom:123.200000pt;}
.y3a{bottom:125.120000pt;}
.y57{bottom:128.640000pt;}
.ya5{bottom:129.120000pt;}
.y86{bottom:132.000000pt;}
.ydd{bottom:133.920000pt;}
.ycc{bottom:139.520000pt;}
.y39{bottom:143.520000pt;}
.y56{bottom:147.040000pt;}
.ya4{bottom:147.520000pt;}
.ydc{bottom:152.320000pt;}
.ycb{bottom:157.920000pt;}
.y55{bottom:165.440000pt;}
.ya3{bottom:165.920000pt;}
.y38{bottom:169.920000pt;}
.yca{bottom:176.346667pt;}
.yfb{bottom:177.146667pt;}
.ydb{bottom:178.746667pt;}
.y54{bottom:183.866667pt;}
.ya2{bottom:184.346667pt;}
.y37{bottom:188.346667pt;}
.yb8{bottom:192.346667pt;}
.yc9{bottom:194.746667pt;}
.yda{bottom:197.146667pt;}
.yb0{bottom:202.746667pt;}
.yfa{bottom:203.546667pt;}
.y36{bottom:206.746667pt;}
.y53{bottom:210.266667pt;}
.ya1{bottom:210.746667pt;}
.yd2{bottom:213.146667pt;}
.yaf{bottom:221.146667pt;}
.yd9{bottom:223.546667pt;}
.y35{bottom:225.146667pt;}
.y52{bottom:228.666667pt;}
.ya0{bottom:229.146667pt;}
.yf9{bottom:229.946667pt;}
.yd5{bottom:231.546667pt;}
.yc8{bottom:239.546667pt;}
.yd8{bottom:241.946667pt;}
.y34{bottom:243.546667pt;}
.y51{bottom:247.066667pt;}
.y9f{bottom:247.546667pt;}
.yf8{bottom:256.346667pt;}
.yc7{bottom:257.946667pt;}
.y33{bottom:261.946667pt;}
.y50{bottom:265.466667pt;}
.y9e{bottom:265.946667pt;}
.yd7{bottom:268.346667pt;}
.yf7{bottom:274.746667pt;}
.yc6{bottom:276.346667pt;}
.y32{bottom:280.346667pt;}
.y4f{bottom:283.866667pt;}
.y9d{bottom:284.346667pt;}
.yc5{bottom:294.746667pt;}
.yf6{bottom:301.146667pt;}
.y9c{bottom:302.746667pt;}
.y31{bottom:306.746667pt;}
.y4e{bottom:310.266667pt;}
.yc4{bottom:313.146667pt;}
.y9b{bottom:321.146667pt;}
.yf5{bottom:327.546667pt;}
.yb7{bottom:329.146667pt;}
.yc3{bottom:331.546667pt;}
.y30{bottom:333.146667pt;}
.y4d{bottom:336.666667pt;}
.yae{bottom:339.546667pt;}
.y9a{bottom:347.546667pt;}
.yd4{bottom:349.946667pt;}
.y2f{bottom:351.546667pt;}
.yf4{bottom:353.946667pt;}
.y4c{bottom:355.066667pt;}
.yad{bottom:357.946667pt;}
.y99{bottom:365.946667pt;}
.y2e{bottom:369.946667pt;}
.y4b{bottom:373.466667pt;}
.yc2{bottom:376.346667pt;}
.yf3{bottom:380.346667pt;}
.y98{bottom:384.346667pt;}
.y4a{bottom:391.906667pt;}
.yc1{bottom:394.786667pt;}
.y2d{bottom:396.386667pt;}
.yf2{bottom:398.786667pt;}
.y97{bottom:402.786667pt;}
.y49{bottom:410.306667pt;}
.yc0{bottom:413.186667pt;}
.y2c{bottom:414.786667pt;}
.y96{bottom:421.186667pt;}
.yf1{bottom:425.186667pt;}
.y48{bottom:428.706667pt;}
.ybf{bottom:431.586667pt;}
.y2b{bottom:433.186667pt;}
.yac{bottom:439.586667pt;}
.y95{bottom:447.586667pt;}
.ybe{bottom:449.986667pt;}
.y2a{bottom:451.586667pt;}
.y47{bottom:455.106667pt;}
.yab{bottom:457.986667pt;}
.yb6{bottom:465.986667pt;}
.yd3{bottom:468.386667pt;}
.y29{bottom:469.986667pt;}
.y46{bottom:473.506667pt;}
.y94{bottom:473.986667pt;}
.yaa{bottom:476.386667pt;}
.yb5{bottom:484.386667pt;}
.y28{bottom:488.386667pt;}
.y45{bottom:491.906667pt;}
.y93{bottom:492.386667pt;}
.y71{bottom:494.786667pt;}
.yf0{bottom:496.386667pt;}
.ya9{bottom:502.786667pt;}
.y27{bottom:506.786667pt;}
.y44{bottom:510.306667pt;}
.y92{bottom:510.786667pt;}
.y70{bottom:513.186667pt;}
.ya8{bottom:521.186667pt;}
.yef{bottom:522.786667pt;}
.y26{bottom:525.186667pt;}
.y43{bottom:528.706667pt;}
.y91{bottom:529.186667pt;}
.y6f{bottom:531.586667pt;}
.y85{bottom:539.586667pt;}
.yee{bottom:541.186667pt;}
.y25{bottom:543.586667pt;}
.y42{bottom:547.106667pt;}
.y90{bottom:547.586667pt;}
.yf{bottom:548.706667pt;}
.yd{bottom:548.866667pt;}
.y6e{bottom:549.986667pt;}
.y84{bottom:557.986667pt;}
.y24{bottom:561.986667pt;}
.y8f{bottom:565.986667pt;}
.yed{bottom:567.586667pt;}
.y6d{bottom:568.386667pt;}
.y41{bottom:573.506667pt;}
.y83{bottom:576.386667pt;}
.y23{bottom:580.386667pt;}
.y8e{bottom:584.386667pt;}
.y6c{bottom:586.786667pt;}
.yec{bottom:593.986667pt;}
.y82{bottom:594.786667pt;}
.y40{bottom:596.386667pt;}
.y22{bottom:598.786667pt;}
.y6b{bottom:605.213333pt;}
.y8d{bottom:610.813333pt;}
.yeb{bottom:612.413333pt;}
.y81{bottom:613.213333pt;}
.ya7{bottom:621.213333pt;}
.y21{bottom:625.213333pt;}
.y8c{bottom:629.213333pt;}
.yea{bottom:630.813333pt;}
.y6a{bottom:631.613333pt;}
.y80{bottom:639.613333pt;}
.y8b{bottom:647.613333pt;}
.y69{bottom:650.013333pt;}
.ye9{bottom:657.213333pt;}
.y20{bottom:657.693333pt;}
.yb4{bottom:658.013333pt;}
.y7f{bottom:666.013333pt;}
.y68{bottom:668.413333pt;}
.ye8{bottom:675.613333pt;}
.yb3{bottom:676.413333pt;}
.y1f{bottom:678.013333pt;}
.y7e{bottom:684.413333pt;}
.y67{bottom:686.813333pt;}
.yb2{bottom:694.813333pt;}
.ye7{bottom:702.013333pt;}
.y1e{bottom:702.493333pt;}
.y7d{bottom:702.813333pt;}
.y66{bottom:705.213333pt;}
.yb1{bottom:713.213333pt;}
.y7c{bottom:721.213333pt;}
.y1d{bottom:722.813333pt;}
.ye6{bottom:728.413333pt;}
.y65{bottom:731.613333pt;}
.y7b{bottom:739.613333pt;}
.y1c{bottom:747.293333pt;}
.y8a{bottom:747.613333pt;}
.ybd{bottom:750.013333pt;}
.ye5{bottom:754.813333pt;}
.y64{bottom:758.013333pt;}
.y89{bottom:766.013333pt;}
.y1b{bottom:767.613333pt;}
.ybc{bottom:768.413333pt;}
.y63{bottom:776.413333pt;}
.ye4{bottom:781.213333pt;}
.y7a{bottom:784.413333pt;}
.y1a{bottom:786.013333pt;}
.ybb{bottom:786.813333pt;}
.y62{bottom:794.813333pt;}
.y79{bottom:802.813333pt;}
.yba{bottom:805.213333pt;}
.ye3{bottom:807.613333pt;}
.y19{bottom:810.493333pt;}
.y61{bottom:813.253333pt;}
.y78{bottom:821.253333pt;}
.yb9{bottom:823.653333pt;}
.y18{bottom:830.853333pt;}
.y60{bottom:831.653333pt;}
.ye2{bottom:834.053333pt;}
.y77{bottom:839.653333pt;}
.y5f{bottom:850.053333pt;}
.y17{bottom:857.253333pt;}
.y76{bottom:858.053333pt;}
.ye1{bottom:860.453333pt;}
.yd1{bottom:868.453333pt;}
.y5e{bottom:876.453333pt;}
.ye0{bottom:878.853333pt;}
.y16{bottom:883.653333pt;}
.yd0{bottom:886.853333pt;}
.y5d{bottom:894.853333pt;}
.y15{bottom:902.053333pt;}
.y88{bottom:902.853333pt;}
.ydf{bottom:905.253333pt;}
.y5c{bottom:913.253333pt;}
.y75{bottom:921.253333pt;}
.yde{bottom:923.653333pt;}
.y14{bottom:924.933333pt;}
.y5b{bottom:931.653333pt;}
.y74{bottom:939.653333pt;}
.y5a{bottom:950.053333pt;}
.y3f{bottom:958.053333pt;}
.y13{bottom:959.333333pt;}
.y59{bottom:968.453333pt;}
.y3e{bottom:976.453333pt;}
.ycf{bottom:986.853333pt;}
.y11{bottom:993.733333pt;}
.y3d{bottom:994.853333pt;}
.y3c{bottom:1013.253333pt;}
.y1{bottom:1050.720000pt;}
.ya{bottom:1060.800000pt;}
.y4{bottom:1064.960000pt;}
.y9{bottom:1074.560000pt;}
.h6{height:17.440000pt;}
.hb{height:24.960000pt;}
.ha{height:25.120000pt;}
.hf{height:29.940625pt;}
.hd{height:34.400000pt;}
.hc{height:34.432000pt;}
.h8{height:37.090625pt;}
.h7{height:37.479688pt;}
.h5{height:38.720000pt;}
.h9{height:41.112500pt;}
.h4{height:44.687500pt;}
.h3{height:45.156250pt;}
.h10{height:46.593750pt;}
.he{height:51.374688pt;}
.h2{height:53.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:75.546667pt;}
.w3{width:90.112000pt;}
.w6{width:110.592000pt;}
.w5{width:167.226667pt;}
.w4{width:174.266667pt;}
.w9{width:198.906667pt;}
.wb{width:248.826667pt;}
.wa{width:254.306667pt;}
.w2{width:549.733333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xc{left:9.600000pt;}
.xe{left:13.280000pt;}
.x5{left:18.080000pt;}
.x3{left:20.832000pt;}
.x7{left:26.080000pt;}
.xd{left:46.400000pt;}
.x1{left:60.000000pt;}
.xa{left:94.431988pt;}
.x11{left:104.991988pt;}
.x15{left:105.951988pt;}
.x18{left:120.031988pt;}
.x16{left:133.626655pt;}
.x19{left:135.386655pt;}
.x1a{left:142.426655pt;}
.x2{left:240.386667pt;}
.xf{left:245.306667pt;}
.x14{left:259.746655pt;}
.x17{left:304.386655pt;}
.x12{left:362.306655pt;}
.x13{left:396.866655pt;}
.x8{left:401.026667pt;}
.x10{left:499.613333pt;}
.x1b{left:618.533322pt;}
.x9{left:655.653333pt;}
.x4{left:676.453333pt;}
.x1c{left:688.453322pt;}
.xb{left:718.213333pt;}
}




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