
    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_9c9c5ff68a3a13bf8665a915.woff2')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_8438209f416e2b8faaac891a.woff2')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_748c4ea33f708aa739476f0f.woff2')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_b736e1d5c2d8015736d3fe6f.woff2')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_9459497c0a8ae910de2ac52a.woff2')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_ce7f33e59c80e37206cc1a17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_1fb32c3c94ce8690e98adac5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3a5601b5369d848a38d048d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.055176;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_8f6af44fb8278e69fda23b02.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_863222bf3be462e4694fc7c7.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.141600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.066000px;}
.ls11{letter-spacing:-0.048960px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.177440px;}
.wsd{word-spacing:-13.160400px;}
.wsb{word-spacing:-13.084800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._d{margin-left:-3.699239px;}
._8{margin-left:-2.645400px;}
._0{margin-left:-1.110000px;}
._3{width:1.090188px;}
._5{width:2.431197px;}
._4{width:3.487200px;}
._10{width:4.689360px;}
._6{width:5.782338px;}
._7{width:7.624663px;}
._b{width:8.968337px;}
._c{width:10.941840px;}
._11{width:12.107520px;}
._2{width:13.504177px;}
._1{width:14.847012px;}
._e{width:18.997920px;}
._f{width:19.998983px;}
._19{width:21.157800px;}
._18{width:22.184280px;}
._a{width:26.753400px;}
._9{width:28.287360px;}
._12{width:47.156760px;}
._15{width:48.396600px;}
._14{width:49.538880px;}
._17{width:133.045560px;}
._16{width:140.560560px;}
._13{width:179.879040px;}
.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;}
.y61{bottom:7.830000px;}
.y5d{bottom:7.920000px;}
.y88{bottom:7.950000px;}
.y5e{bottom:8.640000px;}
.y60{bottom:25.380000px;}
.y8b{bottom:25.470000px;}
.y5b{bottom:36.000000px;}
.y89{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y8f{bottom:80.190000px;}
.y86{bottom:80.220000px;}
.y8e{bottom:97.740000px;}
.y1{bottom:101.640000px;}
.y83{bottom:119.460000px;}
.yad{bottom:121.620000px;}
.y59{bottom:125.670000px;}
.y82{bottom:137.010000px;}
.yac{bottom:139.170000px;}
.y58{bottom:143.310000px;}
.y27{bottom:160.050000px;}
.y57{bottom:160.860000px;}
.yab{bottom:165.810000px;}
.y81{bottom:172.650000px;}
.y26{bottom:177.600000px;}
.y56{bottom:178.500000px;}
.yaa{bottom:183.360000px;}
.y80{bottom:190.200000px;}
.y25{bottom:195.240000px;}
.y55{bottom:196.050000px;}
.y7f{bottom:207.840000px;}
.ya9{bottom:210.000000px;}
.y24{bottom:212.790000px;}
.y54{bottom:213.600000px;}
.y7e{bottom:225.390000px;}
.y23{bottom:230.340000px;}
.y53{bottom:231.240000px;}
.ya8{bottom:236.550000px;}
.y7d{bottom:242.940000px;}
.y22{bottom:247.980000px;}
.y52{bottom:248.790000px;}
.y7c{bottom:260.580000px;}
.ya7{bottom:263.100000px;}
.y7b{bottom:278.130000px;}
.y21{bottom:283.530000px;}
.y51{bottom:284.430000px;}
.ya6{bottom:289.740000px;}
.y7a{bottom:295.770000px;}
.y20{bottom:301.170000px;}
.y50{bottom:301.980000px;}
.ya5{bottom:316.650000px;}
.y1f{bottom:318.720000px;}
.y4f{bottom:319.530000px;}
.y79{bottom:322.320000px;}
.y1e{bottom:336.270000px;}
.y4e{bottom:337.170000px;}
.y1d{bottom:353.910000px;}
.y4d{bottom:354.720000px;}
.y78{bottom:357.870000px;}
.ya4{bottom:364.890000px;}
.y1c{bottom:371.460000px;}
.y4c{bottom:372.360000px;}
.y77{bottom:375.510000px;}
.ya3{bottom:391.800000px;}
.y76{bottom:393.060000px;}
.y1b{bottom:398.370000px;}
.y4b{bottom:407.910000px;}
.y75{bottom:410.700000px;}
.y4a{bottom:425.460000px;}
.y74{bottom:428.250000px;}
.ya2{bottom:429.150000px;}
.y49{bottom:443.100000px;}
.y73{bottom:445.800000px;}
.y1a{bottom:446.700000px;}
.y72{bottom:463.440000px;}
.y19{bottom:464.610000px;}
.y48{bottom:469.650000px;}
.ya1{bottom:477.420000px;}
.y71{bottom:481.020000px;}
.ya0{bottom:495.060000px;}
.y70{bottom:498.570000px;}
.y18{bottom:501.630000px;}
.y47{bottom:505.590000px;}
.y9f{bottom:512.610000px;}
.y6f{bottom:516.210000px;}
.y17{bottom:519.180000px;}
.y9e{bottom:530.160000px;}
.y6e{bottom:533.580000px;}
.y16{bottom:536.820000px;}
.y6d{bottom:549.420000px;}
.y46{bottom:553.830000px;}
.y15{bottom:554.370000px;}
.y9d{bottom:557.070000px;}
.y45{bottom:571.470000px;}
.y14{bottom:571.920000px;}
.y6c{bottom:576.780000px;}
.y44{bottom:589.020000px;}
.y13{bottom:589.560000px;}
.y6b{bottom:604.050000px;}
.y9c{bottom:605.400000px;}
.y12{bottom:607.110000px;}
.y9b{bottom:622.950000px;}
.y43{bottom:624.660000px;}
.y11{bottom:624.750000px;}
.y6a{bottom:631.410000px;}
.y9a{bottom:640.590000px;}
.y42{bottom:642.210000px;}
.y10{bottom:642.300000px;}
.y99{bottom:658.140000px;}
.y69{bottom:658.770000px;}
.y41{bottom:659.760000px;}
.yf{bottom:659.850000px;}
.y98{bottom:675.690000px;}
.y40{bottom:677.400000px;}
.ye{bottom:677.490000px;}
.y68{bottom:686.040000px;}
.y97{bottom:693.330000px;}
.y3f{bottom:694.950000px;}
.yd{bottom:695.040000px;}
.y96{bottom:710.880000px;}
.y3e{bottom:712.590000px;}
.yc{bottom:712.680000px;}
.y67{bottom:713.400000px;}
.yc0{bottom:716.550000px;}
.y95{bottom:728.520000px;}
.y3d{bottom:730.140000px;}
.ybf{bottom:734.190000px;}
.yb{bottom:739.590000px;}
.y66{bottom:740.760000px;}
.y94{bottom:746.070000px;}
.y3c{bottom:747.690000px;}
.ybe{bottom:751.740000px;}
.y93{bottom:763.620000px;}
.y65{bottom:768.120000px;}
.ybd{bottom:778.290000px;}
.y92{bottom:781.260000px;}
.y3b{bottom:783.330000px;}
.ya{bottom:787.830000px;}
.y64{bottom:795.390000px;}
.y91{bottom:798.810000px;}
.y3a{bottom:800.880000px;}
.ybc{bottom:804.930000px;}
.y8d{bottom:813.750000px;}
.y39{bottom:818.520000px;}
.ybb{bottom:822.480000px;}
.y63{bottom:822.750000px;}
.y9{bottom:823.380000px;}
.y38{bottom:836.070000px;}
.y90{bottom:841.110000px;}
.yba{bottom:849.030000px;}
.y62{bottom:850.110000px;}
.y37{bottom:853.620000px;}
.y8{bottom:859.200000px;}
.yb9{bottom:866.670000px;}
.y5f{bottom:877.470000px;}
.y36{bottom:880.530000px;}
.y8c{bottom:886.020000px;}
.yb8{bottom:893.220000px;}
.y7{bottom:898.980000px;}
.yb7{bottom:910.860000px;}
.y6{bottom:916.980000px;}
.y5a{bottom:922.380000px;}
.yb6{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y85{bottom:930.930000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y5c{bottom:950.460000px;}
.yb5{bottom:954.960000px;}
.y8a{bottom:958.290000px;}
.y33{bottom:963.960000px;}
.yb4{bottom:972.600000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yb3{bottom:990.150000px;}
.y31{bottom:999.150000px;}
.y87{bottom:1003.200000px;}
.y3{bottom:1012.320000px;}
.yb2{bottom:1016.820000px;}
.yb1{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.y84{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.yb0{bottom:1060.920000px;}
.y2e{bottom:1069.920000px;}
.yaf{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.yae{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.he{height:26.550000px;}
.hb{height:26.640000px;}
.h11{height:26.670000px;}
.hc{height:27.360000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.h13{height:44.190000px;}
.hf{height:45.677109px;}
.h12{height:50.667539px;}
.h7{height:50.902383px;}
.ha{height:54.720000px;}
.h5{height:55.779258px;}
.h15{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h10{height:98.940000px;}
.h14{height:116.460000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:37.980000px;}
.wc{width:80.850000px;}
.w13{width:83.790000px;}
.wa{width:84.330000px;}
.we{width:84.510000px;}
.wd{width:87.570000px;}
.w14{width:87.840000px;}
.w19{width:93.810000px;}
.wf{width:94.320000px;}
.wb{width:94.680000px;}
.w17{width:100.710000px;}
.w1a{width:115.830000px;}
.w18{width:125.460000px;}
.w11{width:143.940000px;}
.w8{width:169.230000px;}
.w9{width:179.640000px;}
.w7{width:179.730000px;}
.w6{width:180.270000px;}
.w4{width:183.540000px;}
.w16{width:210.360000px;}
.w15{width:226.890000px;}
.w5{width:349.680000px;}
.w12{width:437.970000px;}
.w10{width:714.930000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.xc{left:7.740000px;}
.x1{left:68.040000px;}
.x5{left:107.460000px;}
.x13{left:110.609987px;}
.x2{left:202.799987px;}
.xd{left:213.420000px;}
.x6{left:291.720000px;}
.x11{left:314.850000px;}
.x9{left:376.770000px;}
.x10{left:441.030000px;}
.x8{left:472.170000px;}
.x12{left:535.560000px;}
.xa{left:553.830000px;}
.x7{left:642.120000px;}
.xe{left:652.110000px;}
.xb{left:727.440000px;}
.xf{left:736.620000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.125867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.058667pt;}
.ls11{letter-spacing:-0.043520pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.713280pt;}
.wsd{word-spacing:-11.698133pt;}
.wsb{word-spacing:-11.630933pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._d{margin-left:-3.288213pt;}
._8{margin-left:-2.351467pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.969056pt;}
._5{width:2.161064pt;}
._4{width:3.099734pt;}
._10{width:4.168320pt;}
._6{width:5.139856pt;}
._7{width:6.777478pt;}
._b{width:7.971855pt;}
._c{width:9.726080pt;}
._11{width:10.762240pt;}
._2{width:12.003713pt;}
._1{width:13.197344pt;}
._e{width:16.887040pt;}
._f{width:17.776874pt;}
._19{width:18.806933pt;}
._18{width:19.719360pt;}
._a{width:23.780800pt;}
._9{width:25.144320pt;}
._12{width:41.917120pt;}
._15{width:43.019200pt;}
._14{width:44.034560pt;}
._17{width:118.262720pt;}
._16{width:124.942720pt;}
._13{width:159.892480pt;}
.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;}
.y61{bottom:6.960000pt;}
.y5d{bottom:7.040000pt;}
.y88{bottom:7.066667pt;}
.y5e{bottom:7.680000pt;}
.y60{bottom:22.560000pt;}
.y8b{bottom:22.640000pt;}
.y5b{bottom:32.000000pt;}
.y89{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y8f{bottom:71.280000pt;}
.y86{bottom:71.306667pt;}
.y8e{bottom:86.880000pt;}
.y1{bottom:90.346667pt;}
.y83{bottom:106.186667pt;}
.yad{bottom:108.106667pt;}
.y59{bottom:111.706667pt;}
.y82{bottom:121.786667pt;}
.yac{bottom:123.706667pt;}
.y58{bottom:127.386667pt;}
.y27{bottom:142.266667pt;}
.y57{bottom:142.986667pt;}
.yab{bottom:147.386667pt;}
.y81{bottom:153.466667pt;}
.y26{bottom:157.866667pt;}
.y56{bottom:158.666667pt;}
.yaa{bottom:162.986667pt;}
.y80{bottom:169.066667pt;}
.y25{bottom:173.546667pt;}
.y55{bottom:174.266667pt;}
.y7f{bottom:184.746667pt;}
.ya9{bottom:186.666667pt;}
.y24{bottom:189.146667pt;}
.y54{bottom:189.866667pt;}
.y7e{bottom:200.346667pt;}
.y23{bottom:204.746667pt;}
.y53{bottom:205.546667pt;}
.ya8{bottom:210.266667pt;}
.y7d{bottom:215.946667pt;}
.y22{bottom:220.426667pt;}
.y52{bottom:221.146667pt;}
.y7c{bottom:231.626667pt;}
.ya7{bottom:233.866667pt;}
.y7b{bottom:247.226667pt;}
.y21{bottom:252.026667pt;}
.y51{bottom:252.826667pt;}
.ya6{bottom:257.546667pt;}
.y7a{bottom:262.906667pt;}
.y20{bottom:267.706667pt;}
.y50{bottom:268.426667pt;}
.ya5{bottom:281.466667pt;}
.y1f{bottom:283.306667pt;}
.y4f{bottom:284.026667pt;}
.y79{bottom:286.506667pt;}
.y1e{bottom:298.906667pt;}
.y4e{bottom:299.706667pt;}
.y1d{bottom:314.586667pt;}
.y4d{bottom:315.306667pt;}
.y78{bottom:318.106667pt;}
.ya4{bottom:324.346667pt;}
.y1c{bottom:330.186667pt;}
.y4c{bottom:330.986667pt;}
.y77{bottom:333.786667pt;}
.ya3{bottom:348.266667pt;}
.y76{bottom:349.386667pt;}
.y1b{bottom:354.106667pt;}
.y4b{bottom:362.586667pt;}
.y75{bottom:365.066667pt;}
.y4a{bottom:378.186667pt;}
.y74{bottom:380.666667pt;}
.ya2{bottom:381.466667pt;}
.y49{bottom:393.866667pt;}
.y73{bottom:396.266667pt;}
.y1a{bottom:397.066667pt;}
.y72{bottom:411.946667pt;}
.y19{bottom:412.986667pt;}
.y48{bottom:417.466667pt;}
.ya1{bottom:424.373333pt;}
.y71{bottom:427.573333pt;}
.ya0{bottom:440.053333pt;}
.y70{bottom:443.173333pt;}
.y18{bottom:445.893333pt;}
.y47{bottom:449.413333pt;}
.y9f{bottom:455.653333pt;}
.y6f{bottom:458.853333pt;}
.y17{bottom:461.493333pt;}
.y9e{bottom:471.253333pt;}
.y6e{bottom:474.293333pt;}
.y16{bottom:477.173333pt;}
.y6d{bottom:488.373333pt;}
.y46{bottom:492.293333pt;}
.y15{bottom:492.773333pt;}
.y9d{bottom:495.173333pt;}
.y45{bottom:507.973333pt;}
.y14{bottom:508.373333pt;}
.y6c{bottom:512.693333pt;}
.y44{bottom:523.573333pt;}
.y13{bottom:524.053333pt;}
.y6b{bottom:536.933333pt;}
.y9c{bottom:538.133333pt;}
.y12{bottom:539.653333pt;}
.y9b{bottom:553.733333pt;}
.y43{bottom:555.253333pt;}
.y11{bottom:555.333333pt;}
.y6a{bottom:561.253333pt;}
.y9a{bottom:569.413333pt;}
.y42{bottom:570.853333pt;}
.y10{bottom:570.933333pt;}
.y99{bottom:585.013333pt;}
.y69{bottom:585.573333pt;}
.y41{bottom:586.453333pt;}
.yf{bottom:586.533333pt;}
.y98{bottom:600.613333pt;}
.y40{bottom:602.133333pt;}
.ye{bottom:602.213333pt;}
.y68{bottom:609.813333pt;}
.y97{bottom:616.293333pt;}
.y3f{bottom:617.733333pt;}
.yd{bottom:617.813333pt;}
.y96{bottom:631.893333pt;}
.y3e{bottom:633.413333pt;}
.yc{bottom:633.493333pt;}
.y67{bottom:634.133333pt;}
.yc0{bottom:636.933333pt;}
.y95{bottom:647.573333pt;}
.y3d{bottom:649.013333pt;}
.ybf{bottom:652.613333pt;}
.yb{bottom:657.413333pt;}
.y66{bottom:658.453333pt;}
.y94{bottom:663.173333pt;}
.y3c{bottom:664.613333pt;}
.ybe{bottom:668.213333pt;}
.y93{bottom:678.773333pt;}
.y65{bottom:682.773333pt;}
.ybd{bottom:691.813333pt;}
.y92{bottom:694.453333pt;}
.y3b{bottom:696.293333pt;}
.ya{bottom:700.293333pt;}
.y64{bottom:707.013333pt;}
.y91{bottom:710.053333pt;}
.y3a{bottom:711.893333pt;}
.ybc{bottom:715.493333pt;}
.y8d{bottom:723.333333pt;}
.y39{bottom:727.573333pt;}
.ybb{bottom:731.093333pt;}
.y63{bottom:731.333333pt;}
.y9{bottom:731.893333pt;}
.y38{bottom:743.173333pt;}
.y90{bottom:747.653333pt;}
.yba{bottom:754.693333pt;}
.y62{bottom:755.653333pt;}
.y37{bottom:758.773333pt;}
.y8{bottom:763.733333pt;}
.yb9{bottom:770.373333pt;}
.y5f{bottom:779.973333pt;}
.y36{bottom:782.693333pt;}
.y8c{bottom:787.573333pt;}
.yb8{bottom:793.973333pt;}
.y7{bottom:799.093333pt;}
.yb7{bottom:809.653333pt;}
.y6{bottom:815.093333pt;}
.y5a{bottom:819.893333pt;}
.yb6{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y85{bottom:827.493333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y5c{bottom:844.853333pt;}
.yb5{bottom:848.853333pt;}
.y8a{bottom:851.813333pt;}
.y33{bottom:856.853333pt;}
.yb4{bottom:864.533333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yb3{bottom:880.133333pt;}
.y31{bottom:888.133333pt;}
.y87{bottom:891.733333pt;}
.y3{bottom:899.840000pt;}
.yb2{bottom:903.840000pt;}
.yb1{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.y84{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.yb0{bottom:943.040000pt;}
.y2e{bottom:951.040000pt;}
.yaf{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.yae{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.hb{height:23.680000pt;}
.h11{height:23.706667pt;}
.hc{height:24.320000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.h13{height:39.280000pt;}
.hf{height:40.601875pt;}
.h12{height:45.037812pt;}
.h7{height:45.246562pt;}
.ha{height:48.640000pt;}
.h5{height:49.581562pt;}
.h15{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h10{height:87.946667pt;}
.h14{height:103.520000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:33.760000pt;}
.wc{width:71.866667pt;}
.w13{width:74.480000pt;}
.wa{width:74.960000pt;}
.we{width:75.120000pt;}
.wd{width:77.840000pt;}
.w14{width:78.080000pt;}
.w19{width:83.386667pt;}
.wf{width:83.840000pt;}
.wb{width:84.160000pt;}
.w17{width:89.520000pt;}
.w1a{width:102.960000pt;}
.w18{width:111.520000pt;}
.w11{width:127.946667pt;}
.w8{width:150.426667pt;}
.w9{width:159.680000pt;}
.w7{width:159.760000pt;}
.w6{width:160.240000pt;}
.w4{width:163.146667pt;}
.w16{width:186.986667pt;}
.w15{width:201.680000pt;}
.w5{width:310.826667pt;}
.w12{width:389.306667pt;}
.w10{width:635.493333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.xc{left:6.880000pt;}
.x1{left:60.480000pt;}
.x5{left:95.520000pt;}
.x13{left:98.319988pt;}
.x2{left:180.266655pt;}
.xd{left:189.706667pt;}
.x6{left:259.306667pt;}
.x11{left:279.866667pt;}
.x9{left:334.906667pt;}
.x10{left:392.026667pt;}
.x8{left:419.706667pt;}
.x12{left:476.053333pt;}
.xa{left:492.293333pt;}
.x7{left:570.773333pt;}
.xe{left:579.653333pt;}
.xb{left:646.613333pt;}
.xf{left:654.773333pt;}
.x3{left:704.053322pt;}
}




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