
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5efb64eeb3b0356ad538ece9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1c5fb4f17b8009e360c6b8f5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_a6ae7d47f24e7f259b355652.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_82bc1c46ee9af84679e1a0b9.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ca39a787776b1b7071f3a442.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_756fa10255bc87db9c4e7d88.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_68bbf59cbdcded2da5f079a6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ffc077646a1adbc1bf1096e9.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.184200px;}
.ls6{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls10{letter-spacing:-0.092400px;}
.ls5{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls11{letter-spacing:-0.049680px;}
.lsa{letter-spacing:-0.031800px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls4{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.183000px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.636600px;}
.ws5{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.176720px;}
.wsd{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.134000px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._11{margin-left:-3.426840px;}
._7{margin-left:-2.177400px;}
._0{margin-left:-1.110000px;}
._2{width:1.421376px;}
._8{width:2.436436px;}
._3{width:3.847800px;}
._4{width:4.967158px;}
._6{width:5.997484px;}
._f{width:7.183311px;}
._d{width:8.837400px;}
._c{width:10.340400px;}
._b{width:11.362800px;}
._9{width:14.428800px;}
._a{width:15.704400px;}
._e{width:16.867561px;}
._10{width:18.757440px;}
._12{width:20.140200px;}
._13{width:21.183744px;}
._5{width:25.250400px;}
._15{width:26.392680px;}
._1{width:34.409916px;}
._16{width:45.510840px;}
._17{width:46.773360px;}
._14{width:361.428240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:4.860000px;}
.y5e{bottom:7.830000px;}
.y7b{bottom:7.860000px;}
.y61{bottom:7.920000px;}
.y86{bottom:25.380000px;}
.y89{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y9b{bottom:113.160000px;}
.ye7{bottom:114.150000px;}
.y56{bottom:119.910000px;}
.ybe{bottom:120.180000px;}
.ye6{bottom:131.700000px;}
.y55{bottom:137.460000px;}
.y26{bottom:142.050000px;}
.ybd{bottom:147.540000px;}
.y9a{bottom:148.710000px;}
.ye5{bottom:156.000000px;}
.y25{bottom:159.600000px;}
.y54{bottom:164.100000px;}
.y99{bottom:166.350000px;}
.y76{bottom:167.880000px;}
.ye4{bottom:173.640000px;}
.ybc{bottom:174.900000px;}
.y24{bottom:177.240000px;}
.y75{bottom:185.520000px;}
.y98{bottom:192.900000px;}
.y23{bottom:194.790000px;}
.ye3{bottom:197.940000px;}
.y53{bottom:199.650000px;}
.ybb{bottom:202.260000px;}
.y74{bottom:203.070000px;}
.y22{bottom:212.340000px;}
.ye2{bottom:215.580000px;}
.y52{bottom:217.200000px;}
.y97{bottom:222.870000px;}
.yba{bottom:229.530000px;}
.y73{bottom:229.620000px;}
.y21{bottom:229.980000px;}
.y51{bottom:234.840000px;}
.ye1{bottom:239.880000px;}
.y20{bottom:247.530000px;}
.y96{bottom:250.230000px;}
.y50{bottom:252.390000px;}
.yb9{bottom:256.890000px;}
.ye0{bottom:257.430000px;}
.y72{bottom:265.260000px;}
.y1f{bottom:274.440000px;}
.y95{bottom:277.590000px;}
.y4f{bottom:278.940000px;}
.ydf{bottom:281.820000px;}
.y71{bottom:282.810000px;}
.yde{bottom:299.370000px;}
.y94{bottom:304.860000px;}
.yb8{bottom:305.580000px;}
.y70{bottom:309.360000px;}
.y4e{bottom:314.580000px;}
.ydd{bottom:317.010000px;}
.y1e{bottom:323.040000px;}
.y4d{bottom:332.130000px;}
.y93{bottom:332.220000px;}
.y6f{bottom:339.420000px;}
.yb7{bottom:341.220000px;}
.ydc{bottom:341.310000px;}
.y4c{bottom:349.770000px;}
.yb6{bottom:358.770000px;}
.ydb{bottom:358.860000px;}
.y1d{bottom:360.120000px;}
.y6e{bottom:366.690000px;}
.y4b{bottom:367.320000px;}
.yb5{bottom:376.320000px;}
.y1c{bottom:377.670000px;}
.y92{bottom:380.910000px;}
.yda{bottom:383.250000px;}
.y4a{bottom:384.870000px;}
.yb4{bottom:393.960000px;}
.y6d{bottom:394.050000px;}
.y1b{bottom:395.220000px;}
.yd9{bottom:400.800000px;}
.y49{bottom:411.510000px;}
.y1a{bottom:412.860000px;}
.y91{bottom:416.550000px;}
.yd8{bottom:418.440000px;}
.yb3{bottom:420.510000px;}
.y6c{bottom:421.410000px;}
.y19{bottom:430.410000px;}
.y90{bottom:434.100000px;}
.yd7{bottom:442.740000px;}
.y48{bottom:447.060000px;}
.y18{bottom:448.050000px;}
.y8f{bottom:451.650000px;}
.yb2{bottom:456.060000px;}
.yd6{bottom:460.290000px;}
.y47{bottom:464.700000px;}
.y17{bottom:465.600000px;}
.y6b{bottom:470.130000px;}
.yb1{bottom:473.730000px;}
.y8e{bottom:478.320000px;}
.y46{bottom:482.280000px;}
.yd5{bottom:484.710000px;}
.yb0{bottom:500.280000px;}
.y16{bottom:501.180000px;}
.yd4{bottom:502.260000px;}
.y6a{bottom:505.680000px;}
.y45{bottom:508.830000px;}
.y8d{bottom:514.230000px;}
.y15{bottom:518.820000px;}
.yd3{bottom:519.900000px;}
.y69{bottom:523.320000px;}
.yaf{bottom:530.250000px;}
.y14{bottom:536.370000px;}
.y68{bottom:540.870000px;}
.y44{bottom:544.740000px;}
.yd2{bottom:546.720000px;}
.y13{bottom:553.920000px;}
.y8c{bottom:562.470000px;}
.y67{bottom:567.510000px;}
.yae{bottom:575.160000px;}
.y8b{bottom:580.020000px;}
.y12{bottom:589.560000px;}
.y43{bottom:593.070000px;}
.yd1{bottom:595.050000px;}
.yad{bottom:602.520000px;}
.y66{bottom:603.060000px;}
.y8a{bottom:606.660000px;}
.y11{bottom:607.110000px;}
.y42{bottom:610.620000px;}
.yd0{bottom:612.600000px;}
.y65{bottom:620.610000px;}
.y10{bottom:624.750000px;}
.y41{bottom:628.260000px;}
.y88{bottom:636.630000px;}
.ycf{bottom:639.510000px;}
.yf{bottom:642.300000px;}
.y40{bottom:645.810000px;}
.y64{bottom:647.160000px;}
.yac{bottom:647.430000px;}
.y3f{bottom:663.360000px;}
.yce{bottom:676.860000px;}
.y63{bottom:677.220000px;}
.ye{bottom:677.850000px;}
.y87{bottom:681.540000px;}
.yd{bottom:695.490000px;}
.yab{bottom:696.120000px;}
.y3e{bottom:699.000000px;}
.y62{bottom:704.490000px;}
.y85{bottom:708.900000px;}
.yc{bottom:713.040000px;}
.y3d{bottom:716.550000px;}
.ycd{bottom:725.100000px;}
.yb{bottom:730.680000px;}
.yaa{bottom:731.760000px;}
.y60{bottom:731.850000px;}
.y3c{bottom:734.190000px;}
.ycc{bottom:742.740000px;}
.ya9{bottom:749.310000px;}
.y3b{bottom:751.740000px;}
.y84{bottom:753.810000px;}
.ya{bottom:757.590000px;}
.y5f{bottom:759.210000px;}
.ycb{bottom:760.290000px;}
.ya8{bottom:766.950000px;}
.y3a{bottom:769.290000px;}
.yca{bottom:777.930000px;}
.y5d{bottom:786.570000px;}
.ya7{bottom:793.500000px;}
.y83{bottom:802.500000px;}
.yc9{bottom:804.840000px;}
.y39{bottom:804.930000px;}
.y9{bottom:805.830000px;}
.y38{bottom:822.480000px;}
.ya6{bottom:829.050000px;}
.y5c{bottom:835.260000px;}
.y82{bottom:838.050000px;}
.y37{bottom:840.030000px;}
.y8{bottom:841.380000px;}
.ya5{bottom:846.690000px;}
.yc8{bottom:853.080000px;}
.y81{bottom:855.690000px;}
.y36{bottom:857.670000px;}
.yc7{bottom:870.630000px;}
.y5b{bottom:870.810000px;}
.y80{bottom:873.240000px;}
.y35{bottom:875.220000px;}
.y7{bottom:877.200000px;}
.ya4{bottom:882.240000px;}
.y5a{bottom:888.450000px;}
.yc6{bottom:897.180000px;}
.y7f{bottom:899.880000px;}
.y59{bottom:906.000000px;}
.y34{bottom:910.860000px;}
.ya3{bottom:912.210000px;}
.y6{bottom:913.200000px;}
.yc5{bottom:927.240000px;}
.y33{bottom:928.410000px;}
.y58{bottom:932.550000px;}
.y7e{bottom:935.430000px;}
.ya2{bottom:939.570000px;}
.y32{bottom:945.960000px;}
.yc4{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.y7d{bottom:952.980000px;}
.y31{bottom:963.600000px;}
.ya1{bottom:966.930000px;}
.y57{bottom:968.460000px;}
.yc3{bottom:969.900000px;}
.y7c{bottom:979.530000px;}
.y4{bottom:987.630000px;}
.yc1{bottom:991.230000px;}
.ya0{bottom:994.200000px;}
.y30{bottom:999.150000px;}
.y7a{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.yc0{bottom:1033.920000px;}
.y2e{bottom:1034.370000px;}
.y79{bottom:1036.890000px;}
.y9f{bottom:1042.920000px;}
.y2d{bottom:1051.920000px;}
.ybf{bottom:1060.560000px;}
.y78{bottom:1064.250000px;}
.y9e{bottom:1078.560000px;}
.y2c{bottom:1087.560000px;}
.y77{bottom:1091.610000px;}
.y9d{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y9c{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h11{height:20.610000px;}
.h10{height:20.640000px;}
.h9{height:26.550000px;}
.hc{height:26.580000px;}
.ha{height:26.640000px;}
.hf{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.he{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.h12{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:81.000000px;}
.w7{width:134.490000px;}
.w12{width:139.620000px;}
.w5{width:151.470000px;}
.wf{width:155.430000px;}
.w4{width:157.260000px;}
.w3{width:161.460000px;}
.w10{width:177.420000px;}
.w9{width:180.180000px;}
.w11{width:187.020000px;}
.wd{width:196.020000px;}
.wb{width:196.410000px;}
.w13{width:201.060000px;}
.w8{width:206.940000px;}
.we{width:227.460000px;}
.w14{width:239.970000px;}
.wa{width:268.320000px;}
.wc{width:289.530000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.650000px;}
.x1{left:68.040000px;}
.x17{left:111.419987px;}
.x14{left:155.520000px;}
.xa{left:176.610000px;}
.x11{left:185.970000px;}
.x2{left:192.719987px;}
.xf{left:234.480000px;}
.x7{left:262.380000px;}
.x4{left:286.950000px;}
.x15{left:295.860000px;}
.xb{left:328.800000px;}
.xd{left:337.800000px;}
.x12{left:342.120000px;}
.x8{left:414.570000px;}
.x10{left:431.310000px;}
.x6{left:449.130000px;}
.x9{left:496.380000px;}
.x16{left:497.730000px;}
.x13{left:520.260000px;}
.xe{left:534.930000px;}
.xc{left:536.550000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.163733pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls10{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls11{letter-spacing:-0.044160pt;}
.lsa{letter-spacing:-0.028267pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls4{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.162667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:72.503680pt;}
.ws2{word-spacing:-16.565867pt;}
.ws5{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.712640pt;}
.wsd{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.674667pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._11{margin-left:-3.046080pt;}
._7{margin-left:-1.935466pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.263445pt;}
._8{width:2.165721pt;}
._3{width:3.420267pt;}
._4{width:4.415251pt;}
._6{width:5.331097pt;}
._f{width:6.385166pt;}
._d{width:7.855466pt;}
._c{width:9.191466pt;}
._b{width:10.100267pt;}
._9{width:12.825600pt;}
._a{width:13.959466pt;}
._e{width:14.993388pt;}
._10{width:16.673280pt;}
._12{width:17.902400pt;}
._13{width:18.829995pt;}
._5{width:22.444800pt;}
._15{width:23.460160pt;}
._1{width:30.586592pt;}
._16{width:40.454080pt;}
._17{width:41.576320pt;}
._14{width:321.269547pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:4.320000pt;}
.y5e{bottom:6.960000pt;}
.y7b{bottom:6.986667pt;}
.y61{bottom:7.040000pt;}
.y86{bottom:22.560000pt;}
.y89{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y9b{bottom:100.586667pt;}
.ye7{bottom:101.466667pt;}
.y56{bottom:106.586667pt;}
.ybe{bottom:106.826667pt;}
.ye6{bottom:117.066667pt;}
.y55{bottom:122.186667pt;}
.y26{bottom:126.266667pt;}
.ybd{bottom:131.146667pt;}
.y9a{bottom:132.186667pt;}
.ye5{bottom:138.666667pt;}
.y25{bottom:141.866667pt;}
.y54{bottom:145.866667pt;}
.y99{bottom:147.866667pt;}
.y76{bottom:149.226667pt;}
.ye4{bottom:154.346667pt;}
.ybc{bottom:155.466667pt;}
.y24{bottom:157.546667pt;}
.y75{bottom:164.906667pt;}
.y98{bottom:171.466667pt;}
.y23{bottom:173.146667pt;}
.ye3{bottom:175.946667pt;}
.y53{bottom:177.466667pt;}
.ybb{bottom:179.786667pt;}
.y74{bottom:180.506667pt;}
.y22{bottom:188.746667pt;}
.ye2{bottom:191.626667pt;}
.y52{bottom:193.066667pt;}
.y97{bottom:198.106667pt;}
.yba{bottom:204.026667pt;}
.y73{bottom:204.106667pt;}
.y21{bottom:204.426667pt;}
.y51{bottom:208.746667pt;}
.ye1{bottom:213.226667pt;}
.y20{bottom:220.026667pt;}
.y96{bottom:222.426667pt;}
.y50{bottom:224.346667pt;}
.yb9{bottom:228.346667pt;}
.ye0{bottom:228.826667pt;}
.y72{bottom:235.786667pt;}
.y1f{bottom:243.946667pt;}
.y95{bottom:246.746667pt;}
.y4f{bottom:247.946667pt;}
.ydf{bottom:250.506667pt;}
.y71{bottom:251.386667pt;}
.yde{bottom:266.106667pt;}
.y94{bottom:270.986667pt;}
.yb8{bottom:271.626667pt;}
.y70{bottom:274.986667pt;}
.y4e{bottom:279.626667pt;}
.ydd{bottom:281.786667pt;}
.y1e{bottom:287.146667pt;}
.y4d{bottom:295.226667pt;}
.y93{bottom:295.306667pt;}
.y6f{bottom:301.706667pt;}
.yb7{bottom:303.306667pt;}
.ydc{bottom:303.386667pt;}
.y4c{bottom:310.906667pt;}
.yb6{bottom:318.906667pt;}
.ydb{bottom:318.986667pt;}
.y1d{bottom:320.106667pt;}
.y6e{bottom:325.946667pt;}
.y4b{bottom:326.506667pt;}
.yb5{bottom:334.506667pt;}
.y1c{bottom:335.706667pt;}
.y92{bottom:338.586667pt;}
.yda{bottom:340.666667pt;}
.y4a{bottom:342.106667pt;}
.yb4{bottom:350.186667pt;}
.y6d{bottom:350.266667pt;}
.y1b{bottom:351.306667pt;}
.yd9{bottom:356.266667pt;}
.y49{bottom:365.786667pt;}
.y1a{bottom:366.986667pt;}
.y91{bottom:370.266667pt;}
.yd8{bottom:371.946667pt;}
.yb3{bottom:373.786667pt;}
.y6c{bottom:374.586667pt;}
.y19{bottom:382.586667pt;}
.y90{bottom:385.866667pt;}
.yd7{bottom:393.546667pt;}
.y48{bottom:397.386667pt;}
.y18{bottom:398.266667pt;}
.y8f{bottom:401.466667pt;}
.yb2{bottom:405.386667pt;}
.yd6{bottom:409.146667pt;}
.y47{bottom:413.066667pt;}
.y17{bottom:413.866667pt;}
.y6b{bottom:417.893333pt;}
.yb1{bottom:421.093333pt;}
.y8e{bottom:425.173333pt;}
.y46{bottom:428.693333pt;}
.yd5{bottom:430.853333pt;}
.yb0{bottom:444.693333pt;}
.y16{bottom:445.493333pt;}
.yd4{bottom:446.453333pt;}
.y6a{bottom:449.493333pt;}
.y45{bottom:452.293333pt;}
.y8d{bottom:457.093333pt;}
.y15{bottom:461.173333pt;}
.yd3{bottom:462.133333pt;}
.y69{bottom:465.173333pt;}
.yaf{bottom:471.333333pt;}
.y14{bottom:476.773333pt;}
.y68{bottom:480.773333pt;}
.y44{bottom:484.213333pt;}
.yd2{bottom:485.973333pt;}
.y13{bottom:492.373333pt;}
.y8c{bottom:499.973333pt;}
.y67{bottom:504.453333pt;}
.yae{bottom:511.253333pt;}
.y8b{bottom:515.573333pt;}
.y12{bottom:524.053333pt;}
.y43{bottom:527.173333pt;}
.yd1{bottom:528.933333pt;}
.yad{bottom:535.573333pt;}
.y66{bottom:536.053333pt;}
.y8a{bottom:539.253333pt;}
.y11{bottom:539.653333pt;}
.y42{bottom:542.773333pt;}
.yd0{bottom:544.533333pt;}
.y65{bottom:551.653333pt;}
.y10{bottom:555.333333pt;}
.y41{bottom:558.453333pt;}
.y88{bottom:565.893333pt;}
.ycf{bottom:568.453333pt;}
.yf{bottom:570.933333pt;}
.y40{bottom:574.053333pt;}
.y64{bottom:575.253333pt;}
.yac{bottom:575.493333pt;}
.y3f{bottom:589.653333pt;}
.yce{bottom:601.653333pt;}
.y63{bottom:601.973333pt;}
.ye{bottom:602.533333pt;}
.y87{bottom:605.813333pt;}
.yd{bottom:618.213333pt;}
.yab{bottom:618.773333pt;}
.y3e{bottom:621.333333pt;}
.y62{bottom:626.213333pt;}
.y85{bottom:630.133333pt;}
.yc{bottom:633.813333pt;}
.y3d{bottom:636.933333pt;}
.ycd{bottom:644.533333pt;}
.yb{bottom:649.493333pt;}
.yaa{bottom:650.453333pt;}
.y60{bottom:650.533333pt;}
.y3c{bottom:652.613333pt;}
.ycc{bottom:660.213333pt;}
.ya9{bottom:666.053333pt;}
.y3b{bottom:668.213333pt;}
.y84{bottom:670.053333pt;}
.ya{bottom:673.413333pt;}
.y5f{bottom:674.853333pt;}
.ycb{bottom:675.813333pt;}
.ya8{bottom:681.733333pt;}
.y3a{bottom:683.813333pt;}
.yca{bottom:691.493333pt;}
.y5d{bottom:699.173333pt;}
.ya7{bottom:705.333333pt;}
.y83{bottom:713.333333pt;}
.yc9{bottom:715.413333pt;}
.y39{bottom:715.493333pt;}
.y9{bottom:716.293333pt;}
.y38{bottom:731.093333pt;}
.ya6{bottom:736.933333pt;}
.y5c{bottom:742.453333pt;}
.y82{bottom:744.933333pt;}
.y37{bottom:746.693333pt;}
.y8{bottom:747.893333pt;}
.ya5{bottom:752.613333pt;}
.yc8{bottom:758.293333pt;}
.y81{bottom:760.613333pt;}
.y36{bottom:762.373333pt;}
.yc7{bottom:773.893333pt;}
.y5b{bottom:774.053333pt;}
.y80{bottom:776.213333pt;}
.y35{bottom:777.973333pt;}
.y7{bottom:779.733333pt;}
.ya4{bottom:784.213333pt;}
.y5a{bottom:789.733333pt;}
.yc6{bottom:797.493333pt;}
.y7f{bottom:799.893333pt;}
.y59{bottom:805.333333pt;}
.y34{bottom:809.653333pt;}
.ya3{bottom:810.853333pt;}
.y6{bottom:811.733333pt;}
.yc5{bottom:824.213333pt;}
.y33{bottom:825.253333pt;}
.y58{bottom:828.933333pt;}
.y7e{bottom:831.493333pt;}
.ya2{bottom:835.173333pt;}
.y32{bottom:840.853333pt;}
.yc4{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.y7d{bottom:847.093333pt;}
.y31{bottom:856.533333pt;}
.ya1{bottom:859.493333pt;}
.y57{bottom:860.853333pt;}
.yc3{bottom:862.133333pt;}
.y7c{bottom:870.693333pt;}
.y4{bottom:877.893333pt;}
.yc1{bottom:881.093333pt;}
.ya0{bottom:883.733333pt;}
.y30{bottom:888.133333pt;}
.y7a{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.yc0{bottom:919.040000pt;}
.y2e{bottom:919.440000pt;}
.y79{bottom:921.680000pt;}
.y9f{bottom:927.040000pt;}
.y2d{bottom:935.040000pt;}
.ybf{bottom:942.720000pt;}
.y78{bottom:946.000000pt;}
.y9e{bottom:958.720000pt;}
.y2c{bottom:966.720000pt;}
.y77{bottom:970.320000pt;}
.y9d{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y9c{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h11{height:18.320000pt;}
.h10{height:18.346667pt;}
.h9{height:23.600000pt;}
.hc{height:23.626667pt;}
.ha{height:23.680000pt;}
.hf{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.he{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.h12{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:72.000000pt;}
.w7{width:119.546667pt;}
.w12{width:124.106667pt;}
.w5{width:134.640000pt;}
.wf{width:138.160000pt;}
.w4{width:139.786667pt;}
.w3{width:143.520000pt;}
.w10{width:157.706667pt;}
.w9{width:160.160000pt;}
.w11{width:166.240000pt;}
.wd{width:174.240000pt;}
.wb{width:174.586667pt;}
.w13{width:178.720000pt;}
.w8{width:183.946667pt;}
.we{width:202.186667pt;}
.w14{width:213.306667pt;}
.wa{width:238.506667pt;}
.wc{width:257.360000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.800000pt;}
.x1{left:60.480000pt;}
.x17{left:99.039988pt;}
.x14{left:138.240000pt;}
.xa{left:156.986667pt;}
.x11{left:165.306667pt;}
.x2{left:171.306655pt;}
.xf{left:208.426667pt;}
.x7{left:233.226667pt;}
.x4{left:255.066667pt;}
.x15{left:262.986667pt;}
.xb{left:292.266667pt;}
.xd{left:300.266667pt;}
.x12{left:304.106667pt;}
.x8{left:368.506667pt;}
.x10{left:383.386667pt;}
.x6{left:399.226667pt;}
.x9{left:441.226667pt;}
.x16{left:442.426667pt;}
.x13{left:462.453333pt;}
.xe{left:475.493333pt;}
.xc{left:476.933333pt;}
.x3{left:711.413322pt;}
}




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