
    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_527de9a4a4e7a5c2c080d590.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.891602;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_783ae592835fd8732393429e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_267f0ab4da64d4ed14c1e058.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_00f8bc924a23bb1dd6dc40c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.098633;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_cca63e9ebb97a30e0d504932.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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);}
.m3{transform:matrix(0.257188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257188,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258847,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.260588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260588,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);}
.v3{vertical-align:-4.200000px;}
.v2{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.400000px;}
.v5{vertical-align:3.600000px;}
.v1{vertical-align:28.200000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.024000px;}
.ls11{letter-spacing:0.027000px;}
.ls12{letter-spacing:0.132000px;}
.ls14{letter-spacing:0.192000px;}
.lsf{letter-spacing:0.300000px;}
.lse{letter-spacing:0.456000px;}
.ls6{letter-spacing:1.363306px;}
.ls7{letter-spacing:2.122325px;}
.ls8{letter-spacing:2.686130px;}
.lsc{letter-spacing:5.100000px;}
.ls16{letter-spacing:6.150000px;}
.ls5{letter-spacing:6.384639px;}
.ls2{letter-spacing:7.322065px;}
.lsd{letter-spacing:8.100000px;}
.ls1{letter-spacing:8.258950px;}
.ls3{letter-spacing:8.382392px;}
.ls4{letter-spacing:9.995261px;}
.ls9{letter-spacing:13.018326px;}
.ls10{letter-spacing:21.900000px;}
.lsa{letter-spacing:22.455146px;}
.ls13{letter-spacing:696.000000px;}
.ls15{letter-spacing:844.200000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-21.000000px;}
.ws8{word-spacing:-18.900000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.250000px;}
.ws1{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.250000px;}
.ws0{word-spacing:-10.500000px;}
.ws4{word-spacing:-0.069000px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:36.000000px;}
.wsa{word-spacing:675.426000px;}
.wsb{word-spacing:1060.026000px;}
._22{margin-left:-8.352000px;}
._24{margin-left:-7.320000px;}
._11{margin-left:-6.048000px;}
._4{margin-left:-4.896000px;}
._5{margin-left:-3.000000px;}
._3{margin-left:-1.320000px;}
._1{width:1.200000px;}
._0{width:2.760000px;}
._2{width:3.840000px;}
._8{width:4.872000px;}
._b{width:6.024000px;}
._a{width:7.296000px;}
._7{width:8.304000px;}
._6{width:9.552000px;}
._c{width:10.824000px;}
._d{width:11.928000px;}
._f{width:13.080000px;}
._12{width:14.184000px;}
._15{width:15.336000px;}
._9{width:16.440000px;}
._e{width:19.512000px;}
._10{width:20.640000px;}
._23{width:22.464000px;}
._14{width:25.848000px;}
._13{width:28.320000px;}
._21{width:48.024000px;}
._20{width:52.128000px;}
._17{width:137.328000px;}
._18{width:147.048000px;}
._16{width:163.776000px;}
._19{width:412.680000px;}
._1f{width:545.862000px;}
._1e{width:547.062000px;}
._1c{width:550.200000px;}
._1d{width:563.862000px;}
._1a{width:613.200000px;}
._1b{width:628.062000px;}
.fc2{color:rgb(60,60,60);}
.fc1{color:rgb(95,95,95);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.400000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:75.600000px;}
.fs9{font-size:84.000000px;}
.fs6{font-size:100.200000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y35{bottom:2.250000px;}
.y33{bottom:13.050000px;}
.y34{bottom:15.150000px;}
.y32{bottom:17.400000px;}
.y36{bottom:36.750000px;}
.yb9{bottom:124.650000px;}
.ya0{bottom:125.400000px;}
.y83{bottom:126.750000px;}
.yb8{bottom:145.350000px;}
.y9f{bottom:146.100000px;}
.yd3{bottom:146.700000px;}
.y82{bottom:147.450000px;}
.yb7{bottom:166.050000px;}
.y9e{bottom:166.800000px;}
.yd2{bottom:167.400000px;}
.y81{bottom:168.150000px;}
.y9d{bottom:171.900000px;}
.y27{bottom:180.150000px;}
.yb6{bottom:186.750000px;}
.y9c{bottom:187.500000px;}
.yd1{bottom:188.100000px;}
.y26{bottom:200.850000px;}
.y9b{bottom:208.200000px;}
.yd0{bottom:208.800000px;}
.y9a{bottom:213.300000px;}
.y62{bottom:214.050000px;}
.y25{bottom:221.550000px;}
.yb5{bottom:228.150000px;}
.y99{bottom:228.900000px;}
.ycf{bottom:229.500000px;}
.y80{bottom:234.450000px;}
.y61{bottom:234.750000px;}
.y24{bottom:242.250000px;}
.ycc{bottom:250.200000px;}
.y4e{bottom:253.650000px;}
.y60{bottom:255.450000px;}
.y23{bottom:262.950000px;}
.y7f{bottom:263.550000px;}
.y92{bottom:269.850000px;}
.ycb{bottom:270.900000px;}
.y4d{bottom:274.350000px;}
.y5f{bottom:276.150000px;}
.y22{bottom:283.650000px;}
.y91{bottom:290.550000px;}
.y98{bottom:291.000000px;}
.yca{bottom:291.600000px;}
.y7e{bottom:292.650000px;}
.y4c{bottom:295.050000px;}
.y5e{bottom:296.850000px;}
.y21{bottom:304.350000px;}
.yb4{bottom:310.950000px;}
.y90{bottom:311.250000px;}
.y97{bottom:311.700000px;}
.yc9{bottom:312.300000px;}
.y4b{bottom:315.750000px;}
.y5d{bottom:317.550000px;}
.y7d{bottom:321.750000px;}
.y20{bottom:325.050000px;}
.yb3{bottom:331.650000px;}
.y8f{bottom:331.950000px;}
.y96{bottom:332.400000px;}
.yc8{bottom:333.000000px;}
.y5c{bottom:338.250000px;}
.y3c{bottom:343.200000px;}
.y1f{bottom:345.750000px;}
.y7c{bottom:350.850000px;}
.yb2{bottom:352.350000px;}
.y8e{bottom:352.650000px;}
.y95{bottom:353.100000px;}
.yc7{bottom:353.700000px;}
.y4a{bottom:357.150000px;}
.y5b{bottom:358.950000px;}
.y3b{bottom:363.900000px;}
.yb1{bottom:373.050000px;}
.y8d{bottom:373.350000px;}
.y94{bottom:373.800000px;}
.yc6{bottom:374.400000px;}
.y49{bottom:377.850000px;}
.y5a{bottom:379.650000px;}
.y3a{bottom:384.600000px;}
.y1e{bottom:387.150000px;}
.yb0{bottom:393.750000px;}
.yc5{bottom:395.100000px;}
.y7b{bottom:396.600000px;}
.y48{bottom:398.550000px;}
.y59{bottom:400.350000px;}
.y39{bottom:405.300000px;}
.yaf{bottom:414.450000px;}
.yc4{bottom:415.800000px;}
.y7a{bottom:417.300000px;}
.y47{bottom:419.250000px;}
.y58{bottom:421.050000px;}
.y38{bottom:426.000000px;}
.y1d{bottom:428.550000px;}
.yc3{bottom:436.500000px;}
.y79{bottom:438.000000px;}
.y46{bottom:439.950000px;}
.y57{bottom:441.750000px;}
.y37{bottom:446.700000px;}
.y1c{bottom:449.250000px;}
.yae{bottom:455.850000px;}
.yc2{bottom:457.200000px;}
.y78{bottom:458.700000px;}
.y45{bottom:460.650000px;}
.y56{bottom:462.450000px;}
.y1b{bottom:469.950000px;}
.yce{bottom:477.900000px;}
.y77{bottom:479.400000px;}
.y44{bottom:481.350000px;}
.y55{bottom:483.150000px;}
.y1a{bottom:490.650000px;}
.yc1{bottom:498.600000px;}
.yad{bottom:498.750000px;}
.y19{bottom:511.350000px;}
.yc0{bottom:519.300000px;}
.y76{bottom:520.800000px;}
.y43{bottom:522.750000px;}
.y54{bottom:524.550000px;}
.y30{bottom:529.500000px;}
.y31{bottom:531.150000px;}
.ybf{bottom:540.000000px;}
.y75{bottom:541.500000px;}
.y42{bottom:543.450000px;}
.y18{bottom:552.750000px;}
.ycd{bottom:560.700000px;}
.y74{bottom:562.200000px;}
.yac{bottom:563.700000px;}
.y17{bottom:573.450000px;}
.y2f{bottom:581.400000px;}
.y73{bottom:582.900000px;}
.yab{bottom:584.400000px;}
.y53{bottom:586.650000px;}
.y72{bottom:587.850000px;}
.y16{bottom:594.150000px;}
.ybe{bottom:602.100000px;}
.y71{bottom:603.600000px;}
.y41{bottom:605.550000px;}
.y52{bottom:607.350000px;}
.y15{bottom:614.850000px;}
.y2e{bottom:622.800000px;}
.y70{bottom:624.300000px;}
.y40{bottom:626.250000px;}
.yaa{bottom:627.300000px;}
.y51{bottom:628.050000px;}
.y14{bottom:635.550000px;}
.y2d{bottom:643.500000px;}
.y6f{bottom:645.000000px;}
.y3f{bottom:646.950000px;}
.y50{bottom:648.750000px;}
.y13{bottom:656.250000px;}
.y2c{bottom:664.200000px;}
.y6e{bottom:665.700000px;}
.y3e{bottom:667.650000px;}
.y4f{bottom:669.450000px;}
.ya9{bottom:671.550000px;}
.y12{bottom:676.950000px;}
.ybd{bottom:684.900000px;}
.y6d{bottom:686.400000px;}
.y3d{bottom:688.350000px;}
.y11{bottom:697.650000px;}
.ybc{bottom:705.600000px;}
.y6c{bottom:707.100000px;}
.ya8{bottom:715.200000px;}
.y10{bottom:718.350000px;}
.y2b{bottom:726.300000px;}
.y6b{bottom:727.800000px;}
.yf{bottom:739.050000px;}
.y2a{bottom:747.000000px;}
.y6a{bottom:748.500000px;}
.ye{bottom:759.750000px;}
.ya7{bottom:763.200000px;}
.y29{bottom:767.700000px;}
.y69{bottom:769.200000px;}
.yd{bottom:780.450000px;}
.y28{bottom:788.400000px;}
.yc{bottom:801.150000px;}
.ya6{bottom:809.100000px;}
.y68{bottom:810.600000px;}
.ybb{bottom:829.800000px;}
.y67{bottom:831.300000px;}
.yb{bottom:842.550000px;}
.ya5{bottom:850.500000px;}
.y66{bottom:852.000000px;}
.ya4{bottom:871.200000px;}
.y65{bottom:872.700000px;}
.ya{bottom:883.350000px;}
.ya3{bottom:891.900000px;}
.y64{bottom:893.400000px;}
.y9{bottom:900.600000px;}
.yba{bottom:912.600000px;}
.y63{bottom:914.100000px;}
.y8{bottom:918.000000px;}
.ya2{bottom:933.300000px;}
.y7{bottom:935.250000px;}
.ya1{bottom:954.000000px;}
.y6{bottom:973.950000px;}
.y8c{bottom:974.700000px;}
.y5{bottom:994.650000px;}
.y8b{bottom:995.400000px;}
.y93{bottom:1016.100000px;}
.y8a{bottom:1036.800000px;}
.y89{bottom:1057.500000px;}
.y4{bottom:1060.050000px;}
.y88{bottom:1078.200000px;}
.y3{bottom:1094.550000px;}
.y87{bottom:1098.900000px;}
.y86{bottom:1119.600000px;}
.y2{bottom:1129.050000px;}
.y85{bottom:1140.300000px;}
.y84{bottom:1161.000000px;}
.hd{height:28.745508px;}
.ha{height:28.765723px;}
.hc{height:35.719629px;}
.hf{height:39.577148px;}
.h4{height:41.689453px;}
.h8{height:46.200000px;}
.he{height:47.909180px;}
.h10{height:48.796875px;}
.h6{height:49.992188px;}
.h5{height:50.027344px;}
.h7{height:57.362109px;}
.h3{height:57.382617px;}
.h12{height:58.365234px;}
.h9{height:59.532715px;}
.h11{height:77.806641px;}
.h2{height:81.328125px;}
.hb{height:86.451855px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w1{width:292.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:5.700000px;}
.x9{left:85.200000px;}
.xd{left:88.500000px;}
.x6{left:90.300000px;}
.xe{left:95.250000px;}
.xf{left:105.300000px;}
.x10{left:107.550000px;}
.x11{left:112.050000px;}
.x1d{left:113.550000px;}
.x7{left:117.150000px;}
.x1e{left:123.300000px;}
.x1a{left:127.950000px;}
.xa{left:129.150000px;}
.x12{left:131.100000px;}
.x21{left:139.200000px;}
.x13{left:142.200000px;}
.x14{left:147.900000px;}
.x1b{left:167.550000px;}
.x1{left:170.700000px;}
.x1c{left:171.900000px;}
.x2{left:177.600000px;}
.x15{left:217.200000px;}
.x16{left:223.950000px;}
.x4{left:225.600000px;}
.xb{left:260.400000px;}
.x17{left:278.700000px;}
.x18{left:282.000000px;}
.x5{left:350.250000px;}
.x3{left:361.650000px;}
.x8{left:415.050000px;}
.x19{left:554.700000px;}
.x1f{left:573.000000px;}
.x20{left:577.500000px;}
.x22{left:666.150000px;}
.x23{left:669.750000px;}
@media print{
.v3{vertical-align:-3.733333pt;}
.v2{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.133333pt;}
.v5{vertical-align:3.200000pt;}
.v1{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.021333pt;}
.ls11{letter-spacing:0.024000pt;}
.ls12{letter-spacing:0.117333pt;}
.ls14{letter-spacing:0.170667pt;}
.lsf{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.405333pt;}
.ls6{letter-spacing:1.211827pt;}
.ls7{letter-spacing:1.886511pt;}
.ls8{letter-spacing:2.387671pt;}
.lsc{letter-spacing:4.533333pt;}
.ls16{letter-spacing:5.466667pt;}
.ls5{letter-spacing:5.675234pt;}
.ls2{letter-spacing:6.508502pt;}
.lsd{letter-spacing:7.200000pt;}
.ls1{letter-spacing:7.341289pt;}
.ls3{letter-spacing:7.451015pt;}
.ls4{letter-spacing:8.884676pt;}
.ls9{letter-spacing:11.571846pt;}
.ls10{letter-spacing:19.466667pt;}
.lsa{letter-spacing:19.960130pt;}
.ls13{letter-spacing:618.666667pt;}
.ls15{letter-spacing:750.400000pt;}
.ws9{word-spacing:-18.666667pt;}
.ws8{word-spacing:-16.800000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.333333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws6{word-spacing:-12.666667pt;}
.ws0{word-spacing:-9.333333pt;}
.ws4{word-spacing:-0.061333pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:32.000000pt;}
.wsa{word-spacing:600.378667pt;}
.wsb{word-spacing:942.245333pt;}
._22{margin-left:-7.424000pt;}
._24{margin-left:-6.506667pt;}
._11{margin-left:-5.376000pt;}
._4{margin-left:-4.352000pt;}
._5{margin-left:-2.666667pt;}
._3{margin-left:-1.173333pt;}
._1{width:1.066667pt;}
._0{width:2.453333pt;}
._2{width:3.413333pt;}
._8{width:4.330667pt;}
._b{width:5.354667pt;}
._a{width:6.485333pt;}
._7{width:7.381333pt;}
._6{width:8.490667pt;}
._c{width:9.621333pt;}
._d{width:10.602667pt;}
._f{width:11.626667pt;}
._12{width:12.608000pt;}
._15{width:13.632000pt;}
._9{width:14.613333pt;}
._e{width:17.344000pt;}
._10{width:18.346667pt;}
._23{width:19.968000pt;}
._14{width:22.976000pt;}
._13{width:25.173333pt;}
._21{width:42.688000pt;}
._20{width:46.336000pt;}
._17{width:122.069333pt;}
._18{width:130.709333pt;}
._16{width:145.578667pt;}
._19{width:366.826667pt;}
._1f{width:485.210667pt;}
._1e{width:486.277333pt;}
._1c{width:489.066667pt;}
._1d{width:501.210667pt;}
._1a{width:545.066667pt;}
._1b{width:558.277333pt;}
.fs5{font-size:36.800000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:67.200000pt;}
.fs9{font-size:74.666667pt;}
.fs6{font-size:89.066667pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y35{bottom:2.000000pt;}
.y33{bottom:11.600000pt;}
.y34{bottom:13.466667pt;}
.y32{bottom:15.466667pt;}
.y36{bottom:32.666667pt;}
.yb9{bottom:110.800000pt;}
.ya0{bottom:111.466667pt;}
.y83{bottom:112.666667pt;}
.yb8{bottom:129.200000pt;}
.y9f{bottom:129.866667pt;}
.yd3{bottom:130.400000pt;}
.y82{bottom:131.066667pt;}
.yb7{bottom:147.600000pt;}
.y9e{bottom:148.266667pt;}
.yd2{bottom:148.800000pt;}
.y81{bottom:149.466667pt;}
.y9d{bottom:152.800000pt;}
.y27{bottom:160.133333pt;}
.yb6{bottom:166.000000pt;}
.y9c{bottom:166.666667pt;}
.yd1{bottom:167.200000pt;}
.y26{bottom:178.533333pt;}
.y9b{bottom:185.066667pt;}
.yd0{bottom:185.600000pt;}
.y9a{bottom:189.600000pt;}
.y62{bottom:190.266667pt;}
.y25{bottom:196.933333pt;}
.yb5{bottom:202.800000pt;}
.y99{bottom:203.466667pt;}
.ycf{bottom:204.000000pt;}
.y80{bottom:208.400000pt;}
.y61{bottom:208.666667pt;}
.y24{bottom:215.333333pt;}
.ycc{bottom:222.400000pt;}
.y4e{bottom:225.466667pt;}
.y60{bottom:227.066667pt;}
.y23{bottom:233.733333pt;}
.y7f{bottom:234.266667pt;}
.y92{bottom:239.866667pt;}
.ycb{bottom:240.800000pt;}
.y4d{bottom:243.866667pt;}
.y5f{bottom:245.466667pt;}
.y22{bottom:252.133333pt;}
.y91{bottom:258.266667pt;}
.y98{bottom:258.666667pt;}
.yca{bottom:259.200000pt;}
.y7e{bottom:260.133333pt;}
.y4c{bottom:262.266667pt;}
.y5e{bottom:263.866667pt;}
.y21{bottom:270.533333pt;}
.yb4{bottom:276.400000pt;}
.y90{bottom:276.666667pt;}
.y97{bottom:277.066667pt;}
.yc9{bottom:277.600000pt;}
.y4b{bottom:280.666667pt;}
.y5d{bottom:282.266667pt;}
.y7d{bottom:286.000000pt;}
.y20{bottom:288.933333pt;}
.yb3{bottom:294.800000pt;}
.y8f{bottom:295.066667pt;}
.y96{bottom:295.466667pt;}
.yc8{bottom:296.000000pt;}
.y5c{bottom:300.666667pt;}
.y3c{bottom:305.066667pt;}
.y1f{bottom:307.333333pt;}
.y7c{bottom:311.866667pt;}
.yb2{bottom:313.200000pt;}
.y8e{bottom:313.466667pt;}
.y95{bottom:313.866667pt;}
.yc7{bottom:314.400000pt;}
.y4a{bottom:317.466667pt;}
.y5b{bottom:319.066667pt;}
.y3b{bottom:323.466667pt;}
.yb1{bottom:331.600000pt;}
.y8d{bottom:331.866667pt;}
.y94{bottom:332.266667pt;}
.yc6{bottom:332.800000pt;}
.y49{bottom:335.866667pt;}
.y5a{bottom:337.466667pt;}
.y3a{bottom:341.866667pt;}
.y1e{bottom:344.133333pt;}
.yb0{bottom:350.000000pt;}
.yc5{bottom:351.200000pt;}
.y7b{bottom:352.533333pt;}
.y48{bottom:354.266667pt;}
.y59{bottom:355.866667pt;}
.y39{bottom:360.266667pt;}
.yaf{bottom:368.400000pt;}
.yc4{bottom:369.600000pt;}
.y7a{bottom:370.933333pt;}
.y47{bottom:372.666667pt;}
.y58{bottom:374.266667pt;}
.y38{bottom:378.666667pt;}
.y1d{bottom:380.933333pt;}
.yc3{bottom:388.000000pt;}
.y79{bottom:389.333333pt;}
.y46{bottom:391.066667pt;}
.y57{bottom:392.666667pt;}
.y37{bottom:397.066667pt;}
.y1c{bottom:399.333333pt;}
.yae{bottom:405.200000pt;}
.yc2{bottom:406.400000pt;}
.y78{bottom:407.733333pt;}
.y45{bottom:409.466667pt;}
.y56{bottom:411.066667pt;}
.y1b{bottom:417.733333pt;}
.yce{bottom:424.800000pt;}
.y77{bottom:426.133333pt;}
.y44{bottom:427.866667pt;}
.y55{bottom:429.466667pt;}
.y1a{bottom:436.133333pt;}
.yc1{bottom:443.200000pt;}
.yad{bottom:443.333333pt;}
.y19{bottom:454.533333pt;}
.yc0{bottom:461.600000pt;}
.y76{bottom:462.933333pt;}
.y43{bottom:464.666667pt;}
.y54{bottom:466.266667pt;}
.y30{bottom:470.666667pt;}
.y31{bottom:472.133333pt;}
.ybf{bottom:480.000000pt;}
.y75{bottom:481.333333pt;}
.y42{bottom:483.066667pt;}
.y18{bottom:491.333333pt;}
.ycd{bottom:498.400000pt;}
.y74{bottom:499.733333pt;}
.yac{bottom:501.066667pt;}
.y17{bottom:509.733333pt;}
.y2f{bottom:516.800000pt;}
.y73{bottom:518.133333pt;}
.yab{bottom:519.466667pt;}
.y53{bottom:521.466667pt;}
.y72{bottom:522.533333pt;}
.y16{bottom:528.133333pt;}
.ybe{bottom:535.200000pt;}
.y71{bottom:536.533333pt;}
.y41{bottom:538.266667pt;}
.y52{bottom:539.866667pt;}
.y15{bottom:546.533333pt;}
.y2e{bottom:553.600000pt;}
.y70{bottom:554.933333pt;}
.y40{bottom:556.666667pt;}
.yaa{bottom:557.600000pt;}
.y51{bottom:558.266667pt;}
.y14{bottom:564.933333pt;}
.y2d{bottom:572.000000pt;}
.y6f{bottom:573.333333pt;}
.y3f{bottom:575.066667pt;}
.y50{bottom:576.666667pt;}
.y13{bottom:583.333333pt;}
.y2c{bottom:590.400000pt;}
.y6e{bottom:591.733333pt;}
.y3e{bottom:593.466667pt;}
.y4f{bottom:595.066667pt;}
.ya9{bottom:596.933333pt;}
.y12{bottom:601.733333pt;}
.ybd{bottom:608.800000pt;}
.y6d{bottom:610.133333pt;}
.y3d{bottom:611.866667pt;}
.y11{bottom:620.133333pt;}
.ybc{bottom:627.200000pt;}
.y6c{bottom:628.533333pt;}
.ya8{bottom:635.733333pt;}
.y10{bottom:638.533333pt;}
.y2b{bottom:645.600000pt;}
.y6b{bottom:646.933333pt;}
.yf{bottom:656.933333pt;}
.y2a{bottom:664.000000pt;}
.y6a{bottom:665.333333pt;}
.ye{bottom:675.333333pt;}
.ya7{bottom:678.400000pt;}
.y29{bottom:682.400000pt;}
.y69{bottom:683.733333pt;}
.yd{bottom:693.733333pt;}
.y28{bottom:700.800000pt;}
.yc{bottom:712.133333pt;}
.ya6{bottom:719.200000pt;}
.y68{bottom:720.533333pt;}
.ybb{bottom:737.600000pt;}
.y67{bottom:738.933333pt;}
.yb{bottom:748.933333pt;}
.ya5{bottom:756.000000pt;}
.y66{bottom:757.333333pt;}
.ya4{bottom:774.400000pt;}
.y65{bottom:775.733333pt;}
.ya{bottom:785.200000pt;}
.ya3{bottom:792.800000pt;}
.y64{bottom:794.133333pt;}
.y9{bottom:800.533333pt;}
.yba{bottom:811.200000pt;}
.y63{bottom:812.533333pt;}
.y8{bottom:816.000000pt;}
.ya2{bottom:829.600000pt;}
.y7{bottom:831.333333pt;}
.ya1{bottom:848.000000pt;}
.y6{bottom:865.733333pt;}
.y8c{bottom:866.400000pt;}
.y5{bottom:884.133333pt;}
.y8b{bottom:884.800000pt;}
.y93{bottom:903.200000pt;}
.y8a{bottom:921.600000pt;}
.y89{bottom:940.000000pt;}
.y4{bottom:942.266667pt;}
.y88{bottom:958.400000pt;}
.y3{bottom:972.933333pt;}
.y87{bottom:976.800000pt;}
.y86{bottom:995.200000pt;}
.y2{bottom:1003.600000pt;}
.y85{bottom:1013.600000pt;}
.y84{bottom:1032.000000pt;}
.hd{height:25.551563pt;}
.ha{height:25.569531pt;}
.hc{height:31.750781pt;}
.hf{height:35.179688pt;}
.h4{height:37.057292pt;}
.h8{height:41.066667pt;}
.he{height:42.585938pt;}
.h10{height:43.375000pt;}
.h6{height:44.437500pt;}
.h5{height:44.468750pt;}
.h7{height:50.988542pt;}
.h3{height:51.006771pt;}
.h12{height:51.880208pt;}
.h9{height:52.917969pt;}
.h11{height:69.161458pt;}
.h2{height:72.291667pt;}
.hb{height:76.846094pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w1{width:260.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:5.066667pt;}
.x9{left:75.733333pt;}
.xd{left:78.666667pt;}
.x6{left:80.266667pt;}
.xe{left:84.666667pt;}
.xf{left:93.600000pt;}
.x10{left:95.600000pt;}
.x11{left:99.600000pt;}
.x1d{left:100.933333pt;}
.x7{left:104.133333pt;}
.x1e{left:109.600000pt;}
.x1a{left:113.733333pt;}
.xa{left:114.800000pt;}
.x12{left:116.533333pt;}
.x21{left:123.733333pt;}
.x13{left:126.400000pt;}
.x14{left:131.466667pt;}
.x1b{left:148.933333pt;}
.x1{left:151.733333pt;}
.x1c{left:152.800000pt;}
.x2{left:157.866667pt;}
.x15{left:193.066667pt;}
.x16{left:199.066667pt;}
.x4{left:200.533333pt;}
.xb{left:231.466667pt;}
.x17{left:247.733333pt;}
.x18{left:250.666667pt;}
.x5{left:311.333333pt;}
.x3{left:321.466667pt;}
.x8{left:368.933333pt;}
.x19{left:493.066667pt;}
.x1f{left:509.333333pt;}
.x20{left:513.333333pt;}
.x22{left:592.133333pt;}
.x23{left:595.333333pt;}
}




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