
    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_93c28df6a4bafee10bcdf691.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_5af12f9003cdf6d6b9b44171.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919434;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_02c114939070d53fd782eac9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_67e403d689d73040eef1a0d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.859863;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_9d511fc430058be5dbd62429.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v1{vertical-align:24.120000px;}
.v2{vertical-align:29.880000px;}
.v4{vertical-align:38.880000px;}
.ls11{letter-spacing:-0.390000px;}
.ls5{letter-spacing:-0.216600px;}
.ls7{letter-spacing:-0.135600px;}
.lse{letter-spacing:-0.123600px;}
.ls6{letter-spacing:-0.059760px;}
.lsa{letter-spacing:-0.030240px;}
.ls4{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.019800px;}
.ls8{letter-spacing:0.030240px;}
.ls0{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.062400px;}
.ls9{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.087840px;}
.ls1{letter-spacing:0.093240px;}
.lsd{letter-spacing:0.101520px;}
.ls12{letter-spacing:0.103320px;}
.lsf{letter-spacing:0.115800px;}
.ls10{letter-spacing:0.119400px;}
.ls2{letter-spacing:0.453240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.166400px;}
.ws10{word-spacing:-18.956880px;}
.ws7{word-spacing:-14.888880px;}
.wse{word-spacing:-13.706520px;}
.wsd{word-spacing:-13.702920px;}
.wsa{word-spacing:-13.649520px;}
.ws11{word-spacing:-13.606920px;}
.ws9{word-spacing:-13.587120px;}
.ws3{word-spacing:-13.527360px;}
.wsb{word-spacing:-13.463520px;}
.ws4{word-spacing:-13.451520px;}
.ws2{word-spacing:-13.370520px;}
.ws0{word-spacing:-12.186000px;}
.wsc{word-spacing:-8.786880px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:48.371040px;}
.ws6{word-spacing:67.755960px;}
.wsf{word-spacing:131.370360px;}
._0{margin-left:-1.568160px;}
._2{width:1.723680px;}
._4{width:3.455760px;}
._1{width:5.170320px;}
._3{width:6.179400px;}
._5{width:7.660800px;}
._f{width:9.138240px;}
._10{width:10.220400px;}
._a{width:11.302560px;}
._23{width:12.390600px;}
._1f{width:13.446000px;}
._17{width:14.669280px;}
._d{width:15.871680px;}
._13{width:17.494920px;}
._15{width:18.558480px;}
._14{width:19.719360px;}
._12{width:21.042000px;}
._8{width:23.206320px;}
._9{width:24.293520px;}
._19{width:26.092080px;}
._e{width:27.534960px;}
._b{width:29.037960px;}
._c{width:30.240360px;}
._1b{width:31.502880px;}
._22{width:32.524920px;}
._11{width:34.328520px;}
._21{width:36.432720px;}
._27{width:37.640160px;}
._16{width:38.657160px;}
._18{width:39.739320px;}
._1c{width:42.630120px;}
._1a{width:44.128080px;}
._28{width:46.593000px;}
._24{width:52.194240px;}
._1d{width:53.747280px;}
._1e{width:54.834480px;}
._26{width:63.126840px;}
._25{width:64.208160px;}
._7{width:86.712840px;}
._20{width:98.163360px;}
._6{width:850.532880px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.880000px;}
.fs8{font-size:38.880000px;}
.fs9{font-size:39.960000px;}
.fs4{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs7{font-size:65.880000px;}
.fs6{font-size:83.880000px;}
.fs3{font-size:87.120000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:3.330000px;}
.y15{bottom:3.600000px;}
.y7d{bottom:4.050000px;}
.y7a{bottom:4.140000px;}
.yaa{bottom:5.430000px;}
.y76{bottom:7.590000px;}
.ycf{bottom:15.510000px;}
.y20{bottom:17.910000px;}
.y2b{bottom:18.000000px;}
.y93{bottom:18.210000px;}
.y5d{bottom:20.910000px;}
.ya9{bottom:26.490000px;}
.y75{bottom:28.650000px;}
.y1f{bottom:32.580000px;}
.y2a{bottom:32.670000px;}
.yce{bottom:33.780000px;}
.y9c{bottom:38.490000px;}
.y92{bottom:38.880000px;}
.y5c{bottom:41.970000px;}
.y1e{bottom:47.250000px;}
.ya8{bottom:47.550000px;}
.y73{bottom:49.710000px;}
.y5{bottom:50.310000px;}
.ycd{bottom:52.140000px;}
.y7{bottom:58.080000px;}
.y1d{bottom:61.920000px;}
.y5b{bottom:63.030000px;}
.ya7{bottom:68.610000px;}
.y1c{bottom:76.590000px;}
.y31{bottom:80.010000px;}
.y9d{bottom:80.280000px;}
.y90{bottom:81.660000px;}
.y4{bottom:81.810000px;}
.y5a{bottom:84.090000px;}
.ycb{bottom:88.680000px;}
.ya6{bottom:89.670000px;}
.y1b{bottom:91.200000px;}
.y29{bottom:91.260000px;}
.y3{bottom:98.280000px;}
.y91{bottom:100.890000px;}
.y8a{bottom:101.160000px;}
.y59{bottom:105.150000px;}
.y28{bottom:105.840000px;}
.y1a{bottom:105.870000px;}
.y71{bottom:106.860000px;}
.yca{bottom:107.040000px;}
.y74{bottom:108.660000px;}
.ya5{bottom:110.730000px;}
.y9b{bottom:111.030000px;}
.y2{bottom:114.750000px;}
.y2e{bottom:119.370000px;}
.y27{bottom:120.510000px;}
.y19{bottom:120.540000px;}
.yc9{bottom:125.310000px;}
.y58{bottom:126.210000px;}
.y94{bottom:126.810000px;}
.y70{bottom:127.920000px;}
.ya4{bottom:131.790000px;}
.y26{bottom:135.180000px;}
.y18{bottom:135.210000px;}
.y8b{bottom:137.520000px;}
.y57{bottom:147.270000px;}
.y6f{bottom:148.980000px;}
.y17{bottom:149.790000px;}
.y25{bottom:149.850000px;}
.ycc{bottom:150.420000px;}
.y95{bottom:152.490000px;}
.ya3{bottom:152.850000px;}
.y2d{bottom:154.560000px;}
.y24{bottom:164.520000px;}
.y72{bottom:165.810000px;}
.yae{bottom:167.880000px;}
.y6e{bottom:170.040000px;}
.y8c{bottom:173.880000px;}
.ya2{bottom:173.910000px;}
.y2c{bottom:175.710000px;}
.y96{bottom:178.170000px;}
.yc6{bottom:180.300000px;}
.y56{bottom:185.970000px;}
.yad{bottom:188.940000px;}
.y6d{bottom:191.100000px;}
.ya1{bottom:194.970000px;}
.yc5{bottom:198.570000px;}
.y97{bottom:203.850000px;}
.y23{bottom:207.120000px;}
.yac{bottom:210.000000px;}
.y8d{bottom:210.240000px;}
.y6c{bottom:212.160000px;}
.yc4{bottom:216.930000px;}
.yc8{bottom:223.680000px;}
.y55{bottom:224.310000px;}
.yaf{bottom:227.100000px;}
.y98{bottom:229.530000px;}
.yab{bottom:231.060000px;}
.yc3{bottom:235.200000px;}
.yc7{bottom:241.950000px;}
.y8e{bottom:246.600000px;}
.ya0{bottom:252.120000px;}
.y99{bottom:255.210000px;}
.y6a{bottom:269.220000px;}
.y9f{bottom:273.180000px;}
.y9a{bottom:280.860000px;}
.y8f{bottom:282.960000px;}
.yc2{bottom:282.990000px;}
.y53{bottom:290.280000px;}
.y9e{bottom:294.240000px;}
.y52{bottom:311.340000px;}
.y6b{bottom:328.170000px;}
.y51{bottom:332.400000px;}
.yc0{bottom:345.900000px;}
.y54{bottom:349.230000px;}
.y50{bottom:353.460000px;}
.ybf{bottom:366.960000px;}
.y4f{bottom:374.520000px;}
.y69{bottom:386.130000px;}
.ybe{bottom:388.020000px;}
.y22{bottom:397.920000px;}
.yc1{bottom:404.850000px;}
.y4e{bottom:407.100000px;}
.ybd{bottom:408.990000px;}
.y16{bottom:429.420000px;}
.ybc{bottom:430.050000px;}
.y67{bottom:452.040000px;}
.y88{bottom:463.980000px;}
.y4c{bottom:473.100000px;}
.ybb{bottom:477.780000px;}
.y4b{bottom:494.160000px;}
.y87{bottom:500.070000px;}
.y68{bottom:510.960000px;}
.y4a{bottom:515.220000px;}
.y86{bottom:515.760000px;}
.y4d{bottom:532.050000px;}
.y85{bottom:534.030000px;}
.y49{bottom:536.280000px;}
.yb9{bottom:540.690000px;}
.y84{bottom:553.830000px;}
.y48{bottom:557.340000px;}
.yb8{bottom:561.750000px;}
.y47{bottom:578.400000px;}
.yb7{bottom:582.810000px;}
.y83{bottom:592.350000px;}
.y46{bottom:599.460000px;}
.yba{bottom:599.640000px;}
.yb6{bottom:603.870000px;}
.y14{bottom:605.580000px;}
.ye7{bottom:616.740000px;}
.y45{bottom:620.520000px;}
.yb5{bottom:624.930000px;}
.y82{bottom:627.090000px;}
.ye6{bottom:635.100000px;}
.y44{bottom:641.580000px;}
.yb4{bottom:645.990000px;}
.ye5{bottom:653.370000px;}
.y81{bottom:659.940000px;}
.ye9{bottom:660.120000px;}
.y43{bottom:662.640000px;}
.y13{bottom:673.260000px;}
.y80{bottom:676.320000px;}
.ye8{bottom:678.480000px;}
.y66{bottom:683.700000px;}
.ye3{bottom:690.000000px;}
.y12{bottom:694.320000px;}
.y41{bottom:704.760000px;}
.y89{bottom:706.950000px;}
.y7f{bottom:707.010000px;}
.ye2{bottom:708.270000px;}
.y11{bottom:715.380000px;}
.y40{bottom:725.820000px;}
.ye1{bottom:726.630000px;}
.y10{bottom:736.440000px;}
.ye0{bottom:744.900000px;}
.y3f{bottom:746.880000px;}
.ye4{bottom:751.650000px;}
.yf{bottom:757.500000px;}
.yb1{bottom:762.000000px;}
.y42{bottom:763.710000px;}
.y3e{bottom:767.940000px;}
.yde{bottom:781.530000px;}
.y3d{bottom:789.000000px;}
.ye{bottom:793.500000px;}
.yb3{bottom:794.850000px;}
.ydd{bottom:799.890000px;}
.y3c{bottom:810.060000px;}
.yb2{bottom:811.230000px;}
.yd{bottom:814.560000px;}
.ydc{bottom:818.160000px;}
.y3b{bottom:831.120000px;}
.ydb{bottom:836.520000px;}
.ydf{bottom:843.270000px;}
.y3a{bottom:852.090000px;}
.y65{bottom:852.180000px;}
.yc{bottom:852.450000px;}
.yd9{bottom:873.060000px;}
.y39{bottom:873.150000px;}
.yb{bottom:881.790000px;}
.y64{bottom:890.880000px;}
.yd8{bottom:891.420000px;}
.y38{bottom:894.210000px;}
.y37{bottom:915.270000px;}
.yd6{bottom:928.050000px;}
.ya{bottom:931.740000px;}
.yda{bottom:934.800000px;}
.y36{bottom:936.330000px;}
.y62{bottom:953.820000px;}
.y35{bottom:957.420000px;}
.yd4{bottom:964.710000px;}
.y61{bottom:974.880000px;}
.y34{bottom:978.480000px;}
.y9{bottom:980.250000px;}
.yd7{bottom:989.700000px;}
.y60{bottom:995.940000px;}
.y33{bottom:999.540000px;}
.yd2{bottom:1001.340000px;}
.y63{bottom:1012.740000px;}
.y5f{bottom:1017.000000px;}
.yd1{bottom:1019.610000px;}
.yd5{bottom:1026.330000px;}
.y8{bottom:1028.790000px;}
.y32{bottom:1032.210000px;}
.y7e{bottom:1032.840000px;}
.yd0{bottom:1037.970000px;}
.y5e{bottom:1038.060000px;}
.y7c{bottom:1048.500000px;}
.yd3{bottom:1062.990000px;}
.y7b{bottom:1066.770000px;}
.y6{bottom:1067.040000px;}
.y1{bottom:1081.260000px;}
.y79{bottom:1086.570000px;}
.y78{bottom:1125.090000px;}
.y77{bottom:1141.470000px;}
.yb0{bottom:1174.230000px;}
.y30{bottom:1175.490000px;}
.y2f{bottom:1194.570000px;}
.h7{height:16.470000px;}
.h10{height:18.270000px;}
.hf{height:18.360000px;}
.h9{height:39.486973px;}
.h3{height:44.534180px;}
.ha{height:48.762246px;}
.h4{height:49.581387px;}
.h12{height:50.955293px;}
.h6{height:61.086094px;}
.he{height:61.944609px;}
.hd{height:69.176426px;}
.h5{height:100.968750px;}
.h2{height:127.620000px;}
.h8{height:161.130000px;}
.hb{height:175.860000px;}
.h13{height:301.950000px;}
.h11{height:303.930000px;}
.h14{height:308.430000px;}
.hc{height:1052.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:15.412500px;}
.we{width:39.060000px;}
.w8{width:56.430000px;}
.wd{width:70.020000px;}
.wa{width:77.760000px;}
.wc{width:78.660000px;}
.w9{width:85.680000px;}
.wb{width:87.780000px;}
.wf{width:93.960000px;}
.w13{width:106.200000px;}
.w3{width:107.098500px;}
.w16{width:113.760000px;}
.w14{width:113.790000px;}
.w15{width:113.850000px;}
.w12{width:113.940000px;}
.w10{width:117.718500px;}
.w11{width:121.972500px;}
.w7{width:211.798500px;}
.w6{width:382.590000px;}
.w17{width:382.680000px;}
.w5{width:670.710000px;}
.w2{width:795.478500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.098500px;}
.x8{left:11.338500px;}
.x9{left:22.048500px;}
.x20{left:33.060000px;}
.x1e{left:41.580000px;}
.x1{left:45.901500px;}
.x1d{left:49.170000px;}
.x4{left:54.000000px;}
.xb{left:64.800000px;}
.x25{left:75.420000px;}
.x3{left:87.298500px;}
.x1f{left:88.830000px;}
.x26{left:118.800000px;}
.x22{left:143.250000px;}
.x21{left:154.650000px;}
.x6{left:160.380000px;}
.x18{left:163.620000px;}
.x7{left:175.800000px;}
.xf{left:257.700000px;}
.x19{left:285.600000px;}
.x10{left:314.130000px;}
.xa{left:351.660000px;}
.xe{left:357.540000px;}
.x24{left:371.820000px;}
.x11{left:399.900000px;}
.x5{left:435.090000px;}
.x23{left:436.590000px;}
.xc{left:456.300000px;}
.xd{left:467.130000px;}
.x12{left:477.660000px;}
.x1a{left:505.740000px;}
.x27{left:521.160000px;}
.x13{left:565.440000px;}
.x1b{left:619.530000px;}
.x14{left:644.100000px;}
.x15{left:714.120000px;}
.x1c{left:733.380000px;}
.x16{left:753.180000px;}
.x17{left:819.240000px;}
@media print{
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v1{vertical-align:21.440000pt;}
.v2{vertical-align:26.560000pt;}
.v4{vertical-align:34.560000pt;}
.ls11{letter-spacing:-0.346667pt;}
.ls5{letter-spacing:-0.192533pt;}
.ls7{letter-spacing:-0.120533pt;}
.lse{letter-spacing:-0.109867pt;}
.ls6{letter-spacing:-0.053120pt;}
.lsa{letter-spacing:-0.026880pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.017600pt;}
.ls8{letter-spacing:0.026880pt;}
.ls0{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.055467pt;}
.ls9{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.078080pt;}
.ls1{letter-spacing:0.082880pt;}
.lsd{letter-spacing:0.090240pt;}
.ls12{letter-spacing:0.091840pt;}
.lsf{letter-spacing:0.102933pt;}
.ls10{letter-spacing:0.106133pt;}
.ls2{letter-spacing:0.402880pt;}
.ws1{word-spacing:-17.036800pt;}
.ws10{word-spacing:-16.850560pt;}
.ws7{word-spacing:-13.234560pt;}
.wse{word-spacing:-12.183573pt;}
.wsd{word-spacing:-12.180373pt;}
.wsa{word-spacing:-12.132907pt;}
.ws11{word-spacing:-12.095040pt;}
.ws9{word-spacing:-12.077440pt;}
.ws3{word-spacing:-12.024320pt;}
.wsb{word-spacing:-11.967573pt;}
.ws4{word-spacing:-11.956907pt;}
.ws2{word-spacing:-11.884907pt;}
.ws0{word-spacing:-10.832000pt;}
.wsc{word-spacing:-7.810560pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:42.996480pt;}
.ws6{word-spacing:60.227520pt;}
.wsf{word-spacing:116.773653pt;}
._0{margin-left:-1.393920pt;}
._2{width:1.532160pt;}
._4{width:3.071787pt;}
._1{width:4.595840pt;}
._3{width:5.492800pt;}
._5{width:6.809600pt;}
._f{width:8.122880pt;}
._10{width:9.084800pt;}
._a{width:10.046720pt;}
._23{width:11.013867pt;}
._1f{width:11.952000pt;}
._17{width:13.039360pt;}
._d{width:14.108160pt;}
._13{width:15.551040pt;}
._15{width:16.496427pt;}
._14{width:17.528320pt;}
._12{width:18.704000pt;}
._8{width:20.627840pt;}
._9{width:21.594240pt;}
._19{width:23.192960pt;}
._e{width:24.475520pt;}
._b{width:25.811520pt;}
._c{width:26.880320pt;}
._1b{width:28.002560pt;}
._22{width:28.911040pt;}
._11{width:30.514240pt;}
._21{width:32.384640pt;}
._27{width:33.457920pt;}
._16{width:34.361920pt;}
._18{width:35.323840pt;}
._1c{width:37.893440pt;}
._1a{width:39.224960pt;}
._28{width:41.416000pt;}
._24{width:46.394880pt;}
._1d{width:47.775360pt;}
._1e{width:48.741760pt;}
._26{width:56.112747pt;}
._25{width:57.073920pt;}
._7{width:77.078080pt;}
._20{width:87.256320pt;}
._6{width:756.029227pt;}
.fs5{font-size:26.560000pt;}
.fs8{font-size:34.560000pt;}
.fs9{font-size:35.520000pt;}
.fs4{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs7{font-size:58.560000pt;}
.fs6{font-size:74.560000pt;}
.fs3{font-size:77.440000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:2.960000pt;}
.y15{bottom:3.200000pt;}
.y7d{bottom:3.600000pt;}
.y7a{bottom:3.680000pt;}
.yaa{bottom:4.826667pt;}
.y76{bottom:6.746667pt;}
.ycf{bottom:13.786667pt;}
.y20{bottom:15.920000pt;}
.y2b{bottom:16.000000pt;}
.y93{bottom:16.186667pt;}
.y5d{bottom:18.586667pt;}
.ya9{bottom:23.546667pt;}
.y75{bottom:25.466667pt;}
.y1f{bottom:28.960000pt;}
.y2a{bottom:29.040000pt;}
.yce{bottom:30.026667pt;}
.y9c{bottom:34.213333pt;}
.y92{bottom:34.560000pt;}
.y5c{bottom:37.306667pt;}
.y1e{bottom:42.000000pt;}
.ya8{bottom:42.266667pt;}
.y73{bottom:44.186667pt;}
.y5{bottom:44.720000pt;}
.ycd{bottom:46.346667pt;}
.y7{bottom:51.626667pt;}
.y1d{bottom:55.040000pt;}
.y5b{bottom:56.026667pt;}
.ya7{bottom:60.986667pt;}
.y1c{bottom:68.080000pt;}
.y31{bottom:71.120000pt;}
.y9d{bottom:71.360000pt;}
.y90{bottom:72.586667pt;}
.y4{bottom:72.720000pt;}
.y5a{bottom:74.746667pt;}
.ycb{bottom:78.826667pt;}
.ya6{bottom:79.706667pt;}
.y1b{bottom:81.066667pt;}
.y29{bottom:81.120000pt;}
.y3{bottom:87.360000pt;}
.y91{bottom:89.680000pt;}
.y8a{bottom:89.920000pt;}
.y59{bottom:93.466667pt;}
.y28{bottom:94.080000pt;}
.y1a{bottom:94.106667pt;}
.y71{bottom:94.986667pt;}
.yca{bottom:95.146667pt;}
.y74{bottom:96.586667pt;}
.ya5{bottom:98.426667pt;}
.y9b{bottom:98.693333pt;}
.y2{bottom:102.000000pt;}
.y2e{bottom:106.106667pt;}
.y27{bottom:107.120000pt;}
.y19{bottom:107.146667pt;}
.yc9{bottom:111.386667pt;}
.y58{bottom:112.186667pt;}
.y94{bottom:112.720000pt;}
.y70{bottom:113.706667pt;}
.ya4{bottom:117.146667pt;}
.y26{bottom:120.160000pt;}
.y18{bottom:120.186667pt;}
.y8b{bottom:122.240000pt;}
.y57{bottom:130.906667pt;}
.y6f{bottom:132.426667pt;}
.y17{bottom:133.146667pt;}
.y25{bottom:133.200000pt;}
.ycc{bottom:133.706667pt;}
.y95{bottom:135.546667pt;}
.ya3{bottom:135.866667pt;}
.y2d{bottom:137.386667pt;}
.y24{bottom:146.240000pt;}
.y72{bottom:147.386667pt;}
.yae{bottom:149.226667pt;}
.y6e{bottom:151.146667pt;}
.y8c{bottom:154.560000pt;}
.ya2{bottom:154.586667pt;}
.y2c{bottom:156.186667pt;}
.y96{bottom:158.373333pt;}
.yc6{bottom:160.266667pt;}
.y56{bottom:165.306667pt;}
.yad{bottom:167.946667pt;}
.y6d{bottom:169.866667pt;}
.ya1{bottom:173.306667pt;}
.yc5{bottom:176.506667pt;}
.y97{bottom:181.200000pt;}
.y23{bottom:184.106667pt;}
.yac{bottom:186.666667pt;}
.y8d{bottom:186.880000pt;}
.y6c{bottom:188.586667pt;}
.yc4{bottom:192.826667pt;}
.yc8{bottom:198.826667pt;}
.y55{bottom:199.386667pt;}
.yaf{bottom:201.866667pt;}
.y98{bottom:204.026667pt;}
.yab{bottom:205.386667pt;}
.yc3{bottom:209.066667pt;}
.yc7{bottom:215.066667pt;}
.y8e{bottom:219.200000pt;}
.ya0{bottom:224.106667pt;}
.y99{bottom:226.853333pt;}
.y6a{bottom:239.306667pt;}
.y9f{bottom:242.826667pt;}
.y9a{bottom:249.653333pt;}
.y8f{bottom:251.520000pt;}
.yc2{bottom:251.546667pt;}
.y53{bottom:258.026667pt;}
.y9e{bottom:261.546667pt;}
.y52{bottom:276.746667pt;}
.y6b{bottom:291.706667pt;}
.y51{bottom:295.466667pt;}
.yc0{bottom:307.466667pt;}
.y54{bottom:310.426667pt;}
.y50{bottom:314.186667pt;}
.ybf{bottom:326.186667pt;}
.y4f{bottom:332.906667pt;}
.y69{bottom:343.226667pt;}
.ybe{bottom:344.906667pt;}
.y22{bottom:353.706667pt;}
.yc1{bottom:359.866667pt;}
.y4e{bottom:361.866667pt;}
.ybd{bottom:363.546667pt;}
.y16{bottom:381.706667pt;}
.ybc{bottom:382.266667pt;}
.y67{bottom:401.813333pt;}
.y88{bottom:412.426667pt;}
.y4c{bottom:420.533333pt;}
.ybb{bottom:424.693333pt;}
.y4b{bottom:439.253333pt;}
.y87{bottom:444.506667pt;}
.y68{bottom:454.186667pt;}
.y4a{bottom:457.973333pt;}
.y86{bottom:458.453333pt;}
.y4d{bottom:472.933333pt;}
.y85{bottom:474.693333pt;}
.y49{bottom:476.693333pt;}
.yb9{bottom:480.613333pt;}
.y84{bottom:492.293333pt;}
.y48{bottom:495.413333pt;}
.yb8{bottom:499.333333pt;}
.y47{bottom:514.133333pt;}
.yb7{bottom:518.053333pt;}
.y83{bottom:526.533333pt;}
.y46{bottom:532.853333pt;}
.yba{bottom:533.013333pt;}
.yb6{bottom:536.773333pt;}
.y14{bottom:538.293333pt;}
.ye7{bottom:548.213333pt;}
.y45{bottom:551.573333pt;}
.yb5{bottom:555.493333pt;}
.y82{bottom:557.413333pt;}
.ye6{bottom:564.533333pt;}
.y44{bottom:570.293333pt;}
.yb4{bottom:574.213333pt;}
.ye5{bottom:580.773333pt;}
.y81{bottom:586.613333pt;}
.ye9{bottom:586.773333pt;}
.y43{bottom:589.013333pt;}
.y13{bottom:598.453333pt;}
.y80{bottom:601.173333pt;}
.ye8{bottom:603.093333pt;}
.y66{bottom:607.733333pt;}
.ye3{bottom:613.333333pt;}
.y12{bottom:617.173333pt;}
.y41{bottom:626.453333pt;}
.y89{bottom:628.400000pt;}
.y7f{bottom:628.453333pt;}
.ye2{bottom:629.573333pt;}
.y11{bottom:635.893333pt;}
.y40{bottom:645.173333pt;}
.ye1{bottom:645.893333pt;}
.y10{bottom:654.613333pt;}
.ye0{bottom:662.133333pt;}
.y3f{bottom:663.893333pt;}
.ye4{bottom:668.133333pt;}
.yf{bottom:673.333333pt;}
.yb1{bottom:677.333333pt;}
.y42{bottom:678.853333pt;}
.y3e{bottom:682.613333pt;}
.yde{bottom:694.693333pt;}
.y3d{bottom:701.333333pt;}
.ye{bottom:705.333333pt;}
.yb3{bottom:706.533333pt;}
.ydd{bottom:711.013333pt;}
.y3c{bottom:720.053333pt;}
.yb2{bottom:721.093333pt;}
.yd{bottom:724.053333pt;}
.ydc{bottom:727.253333pt;}
.y3b{bottom:738.773333pt;}
.ydb{bottom:743.573333pt;}
.ydf{bottom:749.573333pt;}
.y3a{bottom:757.413333pt;}
.y65{bottom:757.493333pt;}
.yc{bottom:757.733333pt;}
.yd9{bottom:776.053333pt;}
.y39{bottom:776.133333pt;}
.yb{bottom:783.813333pt;}
.y64{bottom:791.893333pt;}
.yd8{bottom:792.373333pt;}
.y38{bottom:794.853333pt;}
.y37{bottom:813.573333pt;}
.yd6{bottom:824.933333pt;}
.ya{bottom:828.213333pt;}
.yda{bottom:830.933333pt;}
.y36{bottom:832.293333pt;}
.y62{bottom:847.840000pt;}
.y35{bottom:851.040000pt;}
.yd4{bottom:857.520000pt;}
.y61{bottom:866.560000pt;}
.y34{bottom:869.760000pt;}
.y9{bottom:871.333333pt;}
.yd7{bottom:879.733333pt;}
.y60{bottom:885.280000pt;}
.y33{bottom:888.480000pt;}
.yd2{bottom:890.080000pt;}
.y63{bottom:900.213333pt;}
.y5f{bottom:904.000000pt;}
.yd1{bottom:906.320000pt;}
.yd5{bottom:912.293333pt;}
.y8{bottom:914.480000pt;}
.y32{bottom:917.520000pt;}
.y7e{bottom:918.080000pt;}
.yd0{bottom:922.640000pt;}
.y5e{bottom:922.720000pt;}
.y7c{bottom:932.000000pt;}
.yd3{bottom:944.880000pt;}
.y7b{bottom:948.240000pt;}
.y6{bottom:948.480000pt;}
.y1{bottom:961.120000pt;}
.y79{bottom:965.840000pt;}
.y78{bottom:1000.080000pt;}
.y77{bottom:1014.640000pt;}
.yb0{bottom:1043.760000pt;}
.y30{bottom:1044.880000pt;}
.y2f{bottom:1061.840000pt;}
.h7{height:14.640000pt;}
.h10{height:16.240000pt;}
.hf{height:16.320000pt;}
.h9{height:35.099531pt;}
.h3{height:39.585938pt;}
.ha{height:43.344219pt;}
.h4{height:44.072344pt;}
.h12{height:45.293594pt;}
.h6{height:54.298750pt;}
.he{height:55.061875pt;}
.hd{height:61.490156pt;}
.h5{height:89.750000pt;}
.h2{height:113.440000pt;}
.h8{height:143.226667pt;}
.hb{height:156.320000pt;}
.h13{height:268.400000pt;}
.h11{height:270.160000pt;}
.h14{height:274.160000pt;}
.hc{height:935.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:13.700000pt;}
.we{width:34.720000pt;}
.w8{width:50.160000pt;}
.wd{width:62.240000pt;}
.wa{width:69.120000pt;}
.wc{width:69.920000pt;}
.w9{width:76.160000pt;}
.wb{width:78.026667pt;}
.wf{width:83.520000pt;}
.w13{width:94.400000pt;}
.w3{width:95.198667pt;}
.w16{width:101.120000pt;}
.w14{width:101.146667pt;}
.w15{width:101.200000pt;}
.w12{width:101.280000pt;}
.w10{width:104.638667pt;}
.w11{width:108.420000pt;}
.w7{width:188.265333pt;}
.w6{width:340.080000pt;}
.w17{width:340.160000pt;}
.w5{width:596.186667pt;}
.w2{width:707.092000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.198667pt;}
.x8{left:10.078667pt;}
.x9{left:19.598667pt;}
.x20{left:29.386667pt;}
.x1e{left:36.960000pt;}
.x1{left:40.801333pt;}
.x1d{left:43.706667pt;}
.x4{left:48.000000pt;}
.xb{left:57.600000pt;}
.x25{left:67.040000pt;}
.x3{left:77.598667pt;}
.x1f{left:78.960000pt;}
.x26{left:105.600000pt;}
.x22{left:127.333333pt;}
.x21{left:137.466667pt;}
.x6{left:142.560000pt;}
.x18{left:145.440000pt;}
.x7{left:156.266667pt;}
.xf{left:229.066667pt;}
.x19{left:253.866667pt;}
.x10{left:279.226667pt;}
.xa{left:312.586667pt;}
.xe{left:317.813333pt;}
.x24{left:330.506667pt;}
.x11{left:355.466667pt;}
.x5{left:386.746667pt;}
.x23{left:388.080000pt;}
.xc{left:405.600000pt;}
.xd{left:415.226667pt;}
.x12{left:424.586667pt;}
.x1a{left:449.546667pt;}
.x27{left:463.253333pt;}
.x13{left:502.613333pt;}
.x1b{left:550.693333pt;}
.x14{left:572.533333pt;}
.x15{left:634.773333pt;}
.x1c{left:651.893333pt;}
.x16{left:669.493333pt;}
.x17{left:728.213333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  