
    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_9a93326b8ba8f91f09b39e5c.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_5e8314a00c21105bce8bba24.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_66c1a99b07fe34734c32345c.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_a5e4bdf530c84e58c0f54f87.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_650ac04a875fc39eb18a6bcb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_14f30fbee94789e130e9e55e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e0903ca787a2baf445d98c82.woff2')format("woff");}.ff8{font-family:ff8;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;}
.ls25{letter-spacing:-0.243600px;}
.ls13{letter-spacing:-0.186600px;}
.ls23{letter-spacing:-0.162000px;}
.ls2a{letter-spacing:-0.160800px;}
.lsc{letter-spacing:-0.135000px;}
.ls20{letter-spacing:-0.128400px;}
.ls29{letter-spacing:-0.125400px;}
.ls15{letter-spacing:-0.121200px;}
.lsb{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.067200px;}
.lse{letter-spacing:-0.052200px;}
.ls1b{letter-spacing:-0.049680px;}
.ls1d{letter-spacing:-0.014760px;}
.ls11{letter-spacing:-0.008400px;}
.lsa{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.045360px;}
.ls21{letter-spacing:0.048960px;}
.ls1a{letter-spacing:0.060480px;}
.lsd{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls27{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1f{letter-spacing:0.143400px;}
.ls1c{letter-spacing:0.173400px;}
.lsf{letter-spacing:0.174600px;}
.ls2c{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.180600px;}
.ls24{letter-spacing:0.181200px;}
.ls16{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.425520px;}
.ls10{letter-spacing:0.534600px;}
.ls4{letter-spacing:1.346400px;}
.ls9{letter-spacing:1.440000px;}
.ls22{letter-spacing:1.886400px;}
.ls17{letter-spacing:3.686400px;}
.ls6{letter-spacing:4.053600px;}
.ls5{letter-spacing:6.386400px;}
.ls7{letter-spacing:7.466400px;}
.ls2b{letter-spacing:47.726640px;}
.ls26{letter-spacing:80.846640px;}
.ls28{letter-spacing:107.126640px;}
.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;}
}
.ws7{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.424400px;}
.wsd{word-spacing:-13.407000px;}
.wsb{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.369800px;}
.ws3{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.176720px;}
.ws5{word-spacing:-13.159200px;}
.ws13{word-spacing:-13.101000px;}
.ws10{word-spacing:-13.098000px;}
.ws14{word-spacing:-13.065600px;}
.ws11{word-spacing:-13.064400px;}
.ws4{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws15{word-spacing:-8.625600px;}
.wse{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._9{margin-left:-4.060200px;}
._8{margin-left:-3.006000px;}
._0{margin-left:-1.110000px;}
._1{width:1.090272px;}
._2{width:2.513088px;}
._7{width:3.709920px;}
._a{width:5.387880px;}
._3{width:6.397200px;}
._4{width:7.773576px;}
._11{width:8.777520px;}
._b{width:9.799800px;}
._6{width:11.608127px;}
._5{width:12.714576px;}
._c{width:15.150240px;}
._f{width:16.181928px;}
._e{width:17.189880px;}
._d{width:18.276480px;}
._10{width:19.298520px;}
._12{width:20.440800px;}
._15{width:34.569000px;}
._16{width:36.011880px;}
._13{width:42.084000px;}
._14{width:43.186800px;}
._17{width:96.492600px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y65{bottom:112.800000px;}
.y60{bottom:114.600000px;}
.y90{bottom:116.490000px;}
.y5f{bottom:132.240000px;}
.y8f{bottom:134.130000px;}
.yae{bottom:141.330000px;}
.y64{bottom:148.350000px;}
.y5e{bottom:149.790000px;}
.y8e{bottom:151.680000px;}
.yad{bottom:158.970000px;}
.y27{bottom:165.270000px;}
.y5d{bottom:167.340000px;}
.y8d{bottom:169.230000px;}
.y63{bottom:180.570000px;}
.y26{bottom:182.820000px;}
.y5c{bottom:184.980000px;}
.yac{bottom:185.520000px;}
.y8c{bottom:186.870000px;}
.y25{bottom:200.460000px;}
.y5b{bottom:202.530000px;}
.yab{bottom:203.070000px;}
.y8b{bottom:204.420000px;}
.y24{bottom:218.010000px;}
.y5a{bottom:220.170000px;}
.y8a{bottom:222.060000px;}
.yaa{bottom:229.710000px;}
.y23{bottom:235.560000px;}
.y59{bottom:237.720000px;}
.y89{bottom:239.610000px;}
.ya9{bottom:247.260000px;}
.y22{bottom:253.200000px;}
.y58{bottom:255.270000px;}
.y88{bottom:257.160000px;}
.ya8{bottom:264.900000px;}
.y21{bottom:270.750000px;}
.y57{bottom:272.910000px;}
.y87{bottom:274.800000px;}
.y20{bottom:288.300000px;}
.y56{bottom:290.460000px;}
.ya7{bottom:291.450000px;}
.y86{bottom:292.350000px;}
.y69{bottom:297.930000px;}
.y6e{bottom:298.470000px;}
.y1f{bottom:305.940000px;}
.y55{bottom:308.100000px;}
.ya6{bottom:309.000000px;}
.y85{bottom:309.990000px;}
.y1e{bottom:323.490000px;}
.y54{bottom:325.650000px;}
.ya5{bottom:326.640000px;}
.y84{bottom:327.540000px;}
.y68{bottom:330.150000px;}
.y6d{bottom:334.110000px;}
.y1d{bottom:341.130000px;}
.y53{bottom:343.200000px;}
.y83{bottom:345.090000px;}
.ya4{bottom:353.190000px;}
.y52{bottom:360.840000px;}
.y82{bottom:362.730000px;}
.y6c{bottom:366.330000px;}
.y1c{bottom:368.040000px;}
.ya3{bottom:370.830000px;}
.y51{bottom:378.390000px;}
.y81{bottom:380.280000px;}
.y50{bottom:395.940000px;}
.ya2{bottom:397.380000px;}
.y80{bottom:397.920000px;}
.y4f{bottom:413.580000px;}
.ya1{bottom:414.930000px;}
.y7f{bottom:415.470000px;}
.y1b{bottom:416.640000px;}
.y4e{bottom:431.130000px;}
.y7e{bottom:433.020000px;}
.ya0{bottom:436.350000px;}
.y4d{bottom:448.770000px;}
.y7d{bottom:450.660000px;}
.y1a{bottom:453.630000px;}
.y9f{bottom:459.120000px;}
.y4c{bottom:466.320000px;}
.y7c{bottom:468.210000px;}
.y19{bottom:471.210000px;}
.y74{bottom:481.560000px;}
.y4b{bottom:483.900000px;}
.y7b{bottom:485.790000px;}
.y18{bottom:488.850000px;}
.y4a{bottom:501.540000px;}
.y9e{bottom:503.340000px;}
.y7a{bottom:503.430000px;}
.y17{bottom:506.400000px;}
.y73{bottom:517.200000px;}
.y49{bottom:519.090000px;}
.y79{bottom:520.980000px;}
.y16{bottom:523.950000px;}
.y9d{bottom:530.250000px;}
.y62{bottom:532.770000px;}
.y48{bottom:536.730000px;}
.y78{bottom:538.620000px;}
.y15{bottom:541.590000px;}
.y72{bottom:552.750000px;}
.y47{bottom:554.280000px;}
.y61{bottom:564.990000px;}
.y77{bottom:565.530000px;}
.y14{bottom:568.500000px;}
.y46{bottom:571.830000px;}
.y9c{bottom:578.490000px;}
.y71{bottom:588.390000px;}
.yc7{bottom:593.070000px;}
.y45{bottom:598.740000px;}
.y9b{bottom:605.400000px;}
.yc6{bottom:610.620000px;}
.y76{bottom:613.770000px;}
.y13{bottom:616.740000px;}
.y70{bottom:623.940000px;}
.yc5{bottom:628.260000px;}
.y9a{bottom:642.480000px;}
.y75{bottom:645.990000px;}
.y44{bottom:647.070000px;}
.y12{bottom:652.560000px;}
.yc4{bottom:654.810000px;}
.y6f{bottom:656.160000px;}
.y43{bottom:664.620000px;}
.y99{bottom:669.390000px;}
.yc3{bottom:672.360000px;}
.y42{bottom:682.260000px;}
.y11{bottom:688.560000px;}
.yc2{bottom:699.000000px;}
.y98{bottom:706.380000px;}
.yc1{bottom:716.550000px;}
.y41{bottom:717.810000px;}
.y10{bottom:728.340000px;}
.y97{bottom:733.290000px;}
.y40{bottom:735.360000px;}
.yc0{bottom:743.190000px;}
.yf{bottom:746.340000px;}
.y3f{bottom:753.000000px;}
.ybf{bottom:760.740000px;}
.ye{bottom:764.340000px;}
.y3e{bottom:770.550000px;}
.y96{bottom:770.640000px;}
.y6b{bottom:774.690000px;}
.ybe{bottom:778.290000px;}
.y67{bottom:788.100000px;}
.y3d{bottom:788.190000px;}
.yd{bottom:796.650000px;}
.ybd{bottom:804.930000px;}
.y3c{bottom:805.740000px;}
.y6a{bottom:806.910000px;}
.yc{bottom:816.000000px;}
.y95{bottom:818.880000px;}
.y66{bottom:820.320000px;}
.ybc{bottom:822.480000px;}
.y3b{bottom:823.290000px;}
.yb{bottom:835.350000px;}
.y94{bottom:836.520000px;}
.ybb{bottom:840.030000px;}
.y93{bottom:854.070000px;}
.ya{bottom:854.700000px;}
.y3a{bottom:858.930000px;}
.yba{bottom:866.670000px;}
.y92{bottom:871.620000px;}
.y9{bottom:874.050000px;}
.y39{bottom:876.480000px;}
.yb9{bottom:884.220000px;}
.y8{bottom:893.400000px;}
.y38{bottom:894.030000px;}
.y91{bottom:898.530000px;}
.yb8{bottom:901.860000px;}
.y37{bottom:911.670000px;}
.y7{bottom:912.750000px;}
.yb7{bottom:928.410000px;}
.y36{bottom:929.220000px;}
.y6{bottom:932.100000px;}
.yb6{bottom:945.960000px;}
.y35{bottom:946.860000px;}
.y5{bottom:951.450000px;}
.y34{bottom:964.410000px;}
.yb5{bottom:972.600000px;}
.y33{bottom:981.960000px;}
.y4{bottom:989.700000px;}
.yb4{bottom:990.150000px;}
.y32{bottom:999.600000px;}
.y3{bottom:1014.390000px;}
.yb3{bottom:1016.820000px;}
.y31{bottom:1017.180000px;}
.yb2{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.yb1{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y2e{bottom:1069.920000px;}
.yb0{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.yaf{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hb{height:46.673886px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:61.793886px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h8{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x13{left:111.239987px;}
.x5{left:174.719987px;}
.x10{left:223.679987px;}
.x2{left:229.889987px;}
.xd{left:308.729987px;}
.x12{left:315.029987px;}
.xe{left:322.499987px;}
.x7{left:326.099987px;}
.xa{left:327.269987px;}
.xc{left:347.429987px;}
.x8{left:446.609987px;}
.x9{left:687.569987px;}
.xb{left:709.889987px;}
.xf{left:711.059987px;}
.x4{left:720.239987px;}
.x6{left:726.989987px;}
.x11{left:750.569987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls25{letter-spacing:-0.216533pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls23{letter-spacing:-0.144000pt;}
.ls2a{letter-spacing:-0.142933pt;}
.lsc{letter-spacing:-0.120000pt;}
.ls20{letter-spacing:-0.114133pt;}
.ls29{letter-spacing:-0.111467pt;}
.ls15{letter-spacing:-0.107733pt;}
.lsb{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.059733pt;}
.lse{letter-spacing:-0.046400pt;}
.ls1b{letter-spacing:-0.044160pt;}
.ls1d{letter-spacing:-0.013120pt;}
.ls11{letter-spacing:-0.007467pt;}
.lsa{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.040320pt;}
.ls21{letter-spacing:0.043520pt;}
.ls1a{letter-spacing:0.053760pt;}
.lsd{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls27{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1f{letter-spacing:0.127467pt;}
.ls1c{letter-spacing:0.154133pt;}
.lsf{letter-spacing:0.155200pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.160533pt;}
.ls24{letter-spacing:0.161067pt;}
.ls16{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.378240pt;}
.ls10{letter-spacing:0.475200pt;}
.ls4{letter-spacing:1.196800pt;}
.ls9{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.676800pt;}
.ls17{letter-spacing:3.276800pt;}
.ls6{letter-spacing:3.603200pt;}
.ls5{letter-spacing:5.676800pt;}
.ls7{letter-spacing:6.636800pt;}
.ls2b{letter-spacing:42.423680pt;}
.ls26{letter-spacing:71.863680pt;}
.ls28{letter-spacing:95.223680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.932800pt;}
.wsd{word-spacing:-11.917333pt;}
.wsb{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.884267pt;}
.ws3{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.712640pt;}
.ws5{word-spacing:-11.697067pt;}
.ws13{word-spacing:-11.645333pt;}
.ws10{word-spacing:-11.642667pt;}
.ws14{word-spacing:-11.613867pt;}
.ws11{word-spacing:-11.612800pt;}
.ws4{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws15{word-spacing:-7.667200pt;}
.wse{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._9{margin-left:-3.609066pt;}
._8{margin-left:-2.672000pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969131pt;}
._2{width:2.233856pt;}
._7{width:3.297707pt;}
._a{width:4.789227pt;}
._3{width:5.686400pt;}
._4{width:6.909846pt;}
._11{width:7.802240pt;}
._b{width:8.710934pt;}
._6{width:10.318335pt;}
._5{width:11.301846pt;}
._c{width:13.466880pt;}
._f{width:14.383936pt;}
._e{width:15.279893pt;}
._d{width:16.245760pt;}
._10{width:17.154240pt;}
._12{width:18.169600pt;}
._15{width:30.728000pt;}
._16{width:32.010560pt;}
._13{width:37.408000pt;}
._14{width:38.388267pt;}
._17{width:85.771200pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y65{bottom:100.266667pt;}
.y60{bottom:101.866667pt;}
.y90{bottom:103.546667pt;}
.y5f{bottom:117.546667pt;}
.y8f{bottom:119.226667pt;}
.yae{bottom:125.626667pt;}
.y64{bottom:131.866667pt;}
.y5e{bottom:133.146667pt;}
.y8e{bottom:134.826667pt;}
.yad{bottom:141.306667pt;}
.y27{bottom:146.906667pt;}
.y5d{bottom:148.746667pt;}
.y8d{bottom:150.426667pt;}
.y63{bottom:160.506667pt;}
.y26{bottom:162.506667pt;}
.y5c{bottom:164.426667pt;}
.yac{bottom:164.906667pt;}
.y8c{bottom:166.106667pt;}
.y25{bottom:178.186667pt;}
.y5b{bottom:180.026667pt;}
.yab{bottom:180.506667pt;}
.y8b{bottom:181.706667pt;}
.y24{bottom:193.786667pt;}
.y5a{bottom:195.706667pt;}
.y8a{bottom:197.386667pt;}
.yaa{bottom:204.186667pt;}
.y23{bottom:209.386667pt;}
.y59{bottom:211.306667pt;}
.y89{bottom:212.986667pt;}
.ya9{bottom:219.786667pt;}
.y22{bottom:225.066667pt;}
.y58{bottom:226.906667pt;}
.y88{bottom:228.586667pt;}
.ya8{bottom:235.466667pt;}
.y21{bottom:240.666667pt;}
.y57{bottom:242.586667pt;}
.y87{bottom:244.266667pt;}
.y20{bottom:256.266667pt;}
.y56{bottom:258.186667pt;}
.ya7{bottom:259.066667pt;}
.y86{bottom:259.866667pt;}
.y69{bottom:264.826667pt;}
.y6e{bottom:265.306667pt;}
.y1f{bottom:271.946667pt;}
.y55{bottom:273.866667pt;}
.ya6{bottom:274.666667pt;}
.y85{bottom:275.546667pt;}
.y1e{bottom:287.546667pt;}
.y54{bottom:289.466667pt;}
.ya5{bottom:290.346667pt;}
.y84{bottom:291.146667pt;}
.y68{bottom:293.466667pt;}
.y6d{bottom:296.986667pt;}
.y1d{bottom:303.226667pt;}
.y53{bottom:305.066667pt;}
.y83{bottom:306.746667pt;}
.ya4{bottom:313.946667pt;}
.y52{bottom:320.746667pt;}
.y82{bottom:322.426667pt;}
.y6c{bottom:325.626667pt;}
.y1c{bottom:327.146667pt;}
.ya3{bottom:329.626667pt;}
.y51{bottom:336.346667pt;}
.y81{bottom:338.026667pt;}
.y50{bottom:351.946667pt;}
.ya2{bottom:353.226667pt;}
.y80{bottom:353.706667pt;}
.y4f{bottom:367.626667pt;}
.ya1{bottom:368.826667pt;}
.y7f{bottom:369.306667pt;}
.y1b{bottom:370.346667pt;}
.y4e{bottom:383.226667pt;}
.y7e{bottom:384.906667pt;}
.ya0{bottom:387.866667pt;}
.y4d{bottom:398.906667pt;}
.y7d{bottom:400.586667pt;}
.y1a{bottom:403.226667pt;}
.y9f{bottom:408.106667pt;}
.y4c{bottom:414.506667pt;}
.y7c{bottom:416.186667pt;}
.y19{bottom:418.853333pt;}
.y74{bottom:428.053333pt;}
.y4b{bottom:430.133333pt;}
.y7b{bottom:431.813333pt;}
.y18{bottom:434.533333pt;}
.y4a{bottom:445.813333pt;}
.y9e{bottom:447.413333pt;}
.y7a{bottom:447.493333pt;}
.y17{bottom:450.133333pt;}
.y73{bottom:459.733333pt;}
.y49{bottom:461.413333pt;}
.y79{bottom:463.093333pt;}
.y16{bottom:465.733333pt;}
.y9d{bottom:471.333333pt;}
.y62{bottom:473.573333pt;}
.y48{bottom:477.093333pt;}
.y78{bottom:478.773333pt;}
.y15{bottom:481.413333pt;}
.y72{bottom:491.333333pt;}
.y47{bottom:492.693333pt;}
.y61{bottom:502.213333pt;}
.y77{bottom:502.693333pt;}
.y14{bottom:505.333333pt;}
.y46{bottom:508.293333pt;}
.y9c{bottom:514.213333pt;}
.y71{bottom:523.013333pt;}
.yc7{bottom:527.173333pt;}
.y45{bottom:532.213333pt;}
.y9b{bottom:538.133333pt;}
.yc6{bottom:542.773333pt;}
.y76{bottom:545.573333pt;}
.y13{bottom:548.213333pt;}
.y70{bottom:554.613333pt;}
.yc5{bottom:558.453333pt;}
.y9a{bottom:571.093333pt;}
.y75{bottom:574.213333pt;}
.y44{bottom:575.173333pt;}
.y12{bottom:580.053333pt;}
.yc4{bottom:582.053333pt;}
.y6f{bottom:583.253333pt;}
.y43{bottom:590.773333pt;}
.y99{bottom:595.013333pt;}
.yc3{bottom:597.653333pt;}
.y42{bottom:606.453333pt;}
.y11{bottom:612.053333pt;}
.yc2{bottom:621.333333pt;}
.y98{bottom:627.893333pt;}
.yc1{bottom:636.933333pt;}
.y41{bottom:638.053333pt;}
.y10{bottom:647.413333pt;}
.y97{bottom:651.813333pt;}
.y40{bottom:653.653333pt;}
.yc0{bottom:660.613333pt;}
.yf{bottom:663.413333pt;}
.y3f{bottom:669.333333pt;}
.ybf{bottom:676.213333pt;}
.ye{bottom:679.413333pt;}
.y3e{bottom:684.933333pt;}
.y96{bottom:685.013333pt;}
.y6b{bottom:688.613333pt;}
.ybe{bottom:691.813333pt;}
.y67{bottom:700.533333pt;}
.y3d{bottom:700.613333pt;}
.yd{bottom:708.133333pt;}
.ybd{bottom:715.493333pt;}
.y3c{bottom:716.213333pt;}
.y6a{bottom:717.253333pt;}
.yc{bottom:725.333333pt;}
.y95{bottom:727.893333pt;}
.y66{bottom:729.173333pt;}
.ybc{bottom:731.093333pt;}
.y3b{bottom:731.813333pt;}
.yb{bottom:742.533333pt;}
.y94{bottom:743.573333pt;}
.ybb{bottom:746.693333pt;}
.y93{bottom:759.173333pt;}
.ya{bottom:759.733333pt;}
.y3a{bottom:763.493333pt;}
.yba{bottom:770.373333pt;}
.y92{bottom:774.773333pt;}
.y9{bottom:776.933333pt;}
.y39{bottom:779.093333pt;}
.yb9{bottom:785.973333pt;}
.y8{bottom:794.133333pt;}
.y38{bottom:794.693333pt;}
.y91{bottom:798.693333pt;}
.yb8{bottom:801.653333pt;}
.y37{bottom:810.373333pt;}
.y7{bottom:811.333333pt;}
.yb7{bottom:825.253333pt;}
.y36{bottom:825.973333pt;}
.y6{bottom:828.533333pt;}
.yb6{bottom:840.853333pt;}
.y35{bottom:841.653333pt;}
.y5{bottom:845.733333pt;}
.y34{bottom:857.253333pt;}
.yb5{bottom:864.533333pt;}
.y33{bottom:872.853333pt;}
.y4{bottom:879.733333pt;}
.yb4{bottom:880.133333pt;}
.y32{bottom:888.533333pt;}
.y3{bottom:901.680000pt;}
.yb3{bottom:903.840000pt;}
.y31{bottom:904.160000pt;}
.yb2{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.yb1{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y2e{bottom:951.040000pt;}
.yb0{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.yaf{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hb{height:41.487899pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:54.927899pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h8{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x13{left:98.879988pt;}
.x5{left:155.306655pt;}
.x10{left:198.826655pt;}
.x2{left:204.346655pt;}
.xd{left:274.426655pt;}
.x12{left:280.026655pt;}
.xe{left:286.666655pt;}
.x7{left:289.866655pt;}
.xa{left:290.906655pt;}
.xc{left:308.826655pt;}
.x8{left:396.986655pt;}
.x9{left:611.173322pt;}
.xb{left:631.013322pt;}
.xf{left:632.053322pt;}
.x4{left:640.213322pt;}
.x6{left:646.213322pt;}
.x11{left:667.173322pt;}
.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; }
  