
    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_4f021e1fd9a5fd2e4f16d1c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_e126e5fd23ad126b7bfdbdb8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_aafd1c3c7db1a02d65ff0d38.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_b7b9b5832f34d7edbf6ab2ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992000;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_bada8b37529954e54f730c08.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992000;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_0b84ade2784ad819fdbb76f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.992000;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_933b6277507344d3bd3f850d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980000;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.230400px;}
.lsd{letter-spacing:-0.144000px;}
.lsb{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000006px;}
.lsa{letter-spacing:0.000011px;}
.ls6{letter-spacing:0.057600px;}
.ls0{letter-spacing:0.144000px;}
.lse{letter-spacing:0.201600px;}
.ls1{letter-spacing:0.288000px;}
.ls8{letter-spacing:71.856000px;}
.ls9{letter-spacing:98.064000px;}
.ls2{letter-spacing:100.944000px;}
.ls5{letter-spacing:103.284000px;}
.ls7{letter-spacing:157.284000px;}
.ls4{letter-spacing:187.524000px;}
.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;}
}
.wsf{word-spacing:-100.800000px;}
.wsd{word-spacing:-86.400006px;}
.wse{word-spacing:-86.400000px;}
.ws11{word-spacing:-50.544000px;}
.ws12{word-spacing:-50.400000px;}
.ws1{word-spacing:-4.056000px;}
.ws16{word-spacing:-3.480195px;}
.wsc{word-spacing:-2.160000px;}
.ws0{word-spacing:-1.440000px;}
.ws10{word-spacing:-0.600000px;}
.ws17{word-spacing:0.000000px;}
.wsa{word-spacing:25.200000px;}
.wsb{word-spacing:25.293600px;}
.ws7{word-spacing:43.991040px;}
.ws6{word-spacing:69.120000px;}
.ws4{word-spacing:69.767040px;}
.ws5{word-spacing:70.560000px;}
.ws3{word-spacing:93.742560px;}
.ws2{word-spacing:94.320000px;}
.ws9{word-spacing:138.887040px;}
.ws8{word-spacing:158.976000px;}
.ws14{word-spacing:265.609920px;}
.ws15{word-spacing:437.520240px;}
.ws13{word-spacing:491.880000px;}
._5{margin-left:-3.848400px;}
._1{margin-left:-2.836944px;}
._0{margin-left:-1.031616px;}
._6{width:1.327104px;}
._7{width:2.442528px;}
._9{width:4.890096px;}
._a{width:6.020304px;}
._2{width:13.470960px;}
._b{width:48.960000px;}
._8{width:60.304896px;}
._4{width:98.640000px;}
._c{width:102.695232px;}
._3{width:195.553056px;}
.fc8{color:rgb(0,217,217);}
.fc7{color:rgb(255,0,136);}
.fc6{color:rgb(254,131,0);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,114);}
.fc3{color:rgb(0,255,255);}
.fc2{color:rgb(117,198,199);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,71);}
.fs9{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fse{font-size:131.760000px;}
.fsf{font-size:131.904000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:167.760000px;}
.fsc{font-size:174.240000px;}
.fsd{font-size:174.384000px;}
.fs4{font-size:203.760000px;}
.fsa{font-size:221.904000px;}
.fs10{font-size:239.760000px;}
.fs0{font-size:257.904000px;}
.fsb{font-size:288.000000px;}
.fs1{font-size:336.384000px;}
.fs8{font-size:387.360000px;}
.fs7{font-size:594.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:197.490000px;}
.y4e{bottom:197.535000px;}
.y52{bottom:198.570000px;}
.y56{bottom:199.590000px;}
.y6d{bottom:199.905000px;}
.y59{bottom:222.690000px;}
.y4d{bottom:222.735000px;}
.y51{bottom:223.770000px;}
.y55{bottom:224.610000px;}
.y6c{bottom:224.925000px;}
.y58{bottom:248.070000px;}
.y4c{bottom:248.115000px;}
.y50{bottom:249.150000px;}
.y54{bottom:249.990000px;}
.y6b{bottom:250.305000px;}
.y57{bottom:273.090000px;}
.y4b{bottom:273.135000px;}
.y4f{bottom:274.350000px;}
.y53{bottom:275.010000px;}
.y6a{bottom:275.325000px;}
.yab{bottom:382.605000px;}
.yb{bottom:424.440000px;}
.yc{bottom:489.450000px;}
.yad{bottom:541.050000px;}
.y25{bottom:586.110000px;}
.yac{bottom:597.210000px;}
.y24{bottom:615.090000px;}
.y23{bottom:643.890000px;}
.y22{bottom:672.690000px;}
.y21{bottom:719.130000px;}
.y9a{bottom:732.450000px;}
.y99{bottom:782.850000px;}
.y3d{bottom:802.545000px;}
.y98{bottom:808.050000px;}
.y3c{bottom:827.745000px;}
.y3b{bottom:852.945000px;}
.y97{bottom:874.830000px;}
.y3a{bottom:878.145000px;}
.y39{bottom:903.345000px;}
.y38{bottom:928.545000px;}
.y37{bottom:953.745000px;}
.y96{bottom:974.490000px;}
.y36{bottom:978.945000px;}
.y35{bottom:1004.145000px;}
.y95{bottom:1024.890000px;}
.y34{bottom:1029.345000px;}
.y94{bottom:1050.090000px;}
.y33{bottom:1054.545000px;}
.y93{bottom:1075.290000px;}
.y32{bottom:1079.745000px;}
.y31{bottom:1104.945000px;}
.yaf{bottom:1110.420000px;}
.y30{bottom:1130.145000px;}
.y92{bottom:1142.070000px;}
.y2f{bottom:1155.345000px;}
.yae{bottom:1180.050000px;}
.y2e{bottom:1180.545000px;}
.y2d{bottom:1205.745000px;}
.y2c{bottom:1230.945000px;}
.y91{bottom:1234.545000px;}
.y2b{bottom:1256.145000px;}
.y2a{bottom:1281.345000px;}
.y90{bottom:1284.945000px;}
.y46{bottom:1296.255000px;}
.y29{bottom:1306.545000px;}
.y8f{bottom:1310.145000px;}
.y8e{bottom:1335.345000px;}
.y28{bottom:1336.965000px;}
.y45{bottom:1354.215000px;}
.y8d{bottom:1360.545000px;}
.y44{bottom:1412.175000px;}
.y8c{bottom:1427.325000px;}
.y43{bottom:1470.135000px;}
.y88{bottom:1518.945000px;}
.y42{bottom:1528.095000px;}
.y87{bottom:1569.345000px;}
.y41{bottom:1586.055000px;}
.y86{bottom:1594.545000px;}
.y85{bottom:1619.745000px;}
.y40{bottom:1640.235000px;}
.y84{bottom:1644.945000px;}
.y3f{bottom:1700.280000px;}
.y83{bottom:1700.925000px;}
.y7e{bottom:1796.610000px;}
.y7d{bottom:1821.810000px;}
.y7c{bottom:1847.010000px;}
.y7b{bottom:1897.410000px;}
.y7a{bottom:1922.610000px;}
.y79{bottom:1947.810000px;}
.ya7{bottom:1950.225000px;}
.y78{bottom:1973.010000px;}
.ya6{bottom:1975.425000px;}
.y77{bottom:1998.210000px;}
.y76{bottom:2023.410000px;}
.ya5{bottom:2031.405000px;}
.y75{bottom:2048.610000px;}
.y74{bottom:2073.810000px;}
.y73{bottom:2099.010000px;}
.ya9{bottom:2103.810000px;}
.y72{bottom:2154.990000px;}
.ya8{bottom:2174.970000px;}
.y8b{bottom:2249.310000px;}
.ya1{bottom:2274.045000px;}
.ya4{bottom:2274.225000px;}
.y8a{bottom:2299.710000px;}
.y89{bottom:2355.690000px;}
.ya0{bottom:2366.280000px;}
.y82{bottom:2455.995000px;}
.y9d{bottom:2458.545000px;}
.y81{bottom:2506.395000px;}
.y80{bottom:2531.595000px;}
.ya3{bottom:2532.960000px;}
.y9c{bottom:2550.780000px;}
.ya2{bottom:2568.780000px;}
.y7f{bottom:2587.575000px;}
.y12{bottom:2600.820000px;}
.y9e{bottom:2643.015000px;}
.y11{bottom:2651.040000px;}
.y71{bottom:2678.910000px;}
.y10{bottom:2701.440000px;}
.y70{bottom:2729.310000px;}
.y9f{bottom:2735.250000px;}
.y9b{bottom:2735.430000px;}
.yf{bottom:2751.840000px;}
.y6f{bottom:2754.510000px;}
.ye{bottom:2802.420000px;}
.y6e{bottom:2810.490000px;}
.yaa{bottom:2861.895000px;}
.y5f{bottom:2908.110000px;}
.y5e{bottom:2958.510000px;}
.y5d{bottom:2983.710000px;}
.y5c{bottom:3008.910000px;}
.y20{bottom:3037.290000px;}
.y5b{bottom:3064.890000px;}
.y1f{bottom:3087.690000px;}
.y1e{bottom:3138.090000px;}
.y69{bottom:3161.370000px;}
.yd{bottom:3162.750000px;}
.y1d{bottom:3188.490000px;}
.y68{bottom:3211.770000px;}
.y67{bottom:3236.970000px;}
.y1c{bottom:3238.890000px;}
.y66{bottom:3262.170000px;}
.y1b{bottom:3289.290000px;}
.y65{bottom:3318.195000px;}
.ya{bottom:3334.890000px;}
.y1a{bottom:3339.690000px;}
.y9{bottom:3385.470000px;}
.y19{bottom:3390.090000px;}
.y64{bottom:3410.175000px;}
.y8{bottom:3435.870000px;}
.y18{bottom:3440.490000px;}
.y63{bottom:3460.575000px;}
.y62{bottom:3485.775000px;}
.y7{bottom:3486.270000px;}
.y17{bottom:3490.890000px;}
.y61{bottom:3510.975000px;}
.y6{bottom:3536.670000px;}
.y16{bottom:3541.110000px;}
.y60{bottom:3566.955000px;}
.y5{bottom:3587.070000px;}
.y15{bottom:3591.690000px;}
.y4{bottom:3637.470000px;}
.y14{bottom:3642.090000px;}
.y4a{bottom:3658.680000px;}
.y3{bottom:3687.690000px;}
.y13{bottom:3692.310000px;}
.y49{bottom:3709.080000px;}
.y48{bottom:3734.280000px;}
.y2{bottom:3778.635000px;}
.y47{bottom:3790.260000px;}
.y1{bottom:3796.815000px;}
.y3e{bottom:3968.430000px;}
.y27{bottom:4081.035000px;}
.y26{bottom:4186.335000px;}
.hb{height:65.707200px;}
.h8{height:74.692800px;}
.h7{height:93.787200px;}
.h10{height:102.772800px;}
.h11{height:102.885120px;}
.h5{height:112.320000px;}
.h4{height:130.852800px;}
.he{height:135.907200px;}
.hf{height:136.019520px;}
.h6{height:158.932800px;}
.hc{height:173.085120px;}
.h12{height:187.012800px;}
.h2{height:201.165120px;}
.hd{height:224.640000px;}
.h3{height:262.379520px;}
.ha{height:302.140800px;}
.h9{height:463.320000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xb{left:214.529947px;}
.x2{left:219.524947px;}
.x4{left:224.609947px;}
.x3{left:226.229947px;}
.x6{left:228.629947px;}
.xc{left:230.474947px;}
.x5{left:275.579947px;}
.x7{left:290.189947px;}
.xa{left:444.704947px;}
.x14{left:1081.694947px;}
.x1{left:1096.019947px;}
.x8{left:1098.824947px;}
.x28{left:1114.019947px;}
.xe{left:1117.619947px;}
.x27{left:1120.469947px;}
.x22{left:1123.094947px;}
.x9{left:1139.324947px;}
.xf{left:1171.619947px;}
.x1e{left:1172.954947px;}
.x2d{left:1209.599947px;}
.x19{left:1212.554947px;}
.x17{left:1232.354947px;}
.x18{left:1242.254947px;}
.x29{left:1286.129947px;}
.xd{left:1460.159947px;}
.x1d{left:1483.814947px;}
.x20{left:1543.424947px;}
.x1a{left:1553.324947px;}
.x23{left:1573.304947px;}
.x11{left:1592.354947px;}
.x1f{left:1612.904947px;}
.x24{left:1903.754947px;}
.x1c{left:1923.734947px;}
.x1b{left:1933.634947px;}
.x21{left:1943.534947px;}
.x26{left:1953.434947px;}
.x12{left:1969.379947px;}
.x25{left:1983.134947px;}
.x10{left:2291.189947px;}
.x16{left:2292.269947px;}
.x2a{left:2348.999947px;}
.x13{left:2484.644947px;}
.x2b{left:2665.004947px;}
.x2c{left:2667.059947px;}
.x15{left:2935.589947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.204800pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000005pt;}
.lsa{letter-spacing:0.000010pt;}
.ls6{letter-spacing:0.051200pt;}
.ls0{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.179200pt;}
.ls1{letter-spacing:0.256000pt;}
.ls8{letter-spacing:63.872000pt;}
.ls9{letter-spacing:87.168000pt;}
.ls2{letter-spacing:89.728000pt;}
.ls5{letter-spacing:91.808000pt;}
.ls7{letter-spacing:139.808000pt;}
.ls4{letter-spacing:166.688000pt;}
.wsf{word-spacing:-89.600000pt;}
.wsd{word-spacing:-76.800005pt;}
.wse{word-spacing:-76.800000pt;}
.ws11{word-spacing:-44.928000pt;}
.ws12{word-spacing:-44.800000pt;}
.ws1{word-spacing:-3.605333pt;}
.ws16{word-spacing:-3.093507pt;}
.wsc{word-spacing:-1.920000pt;}
.ws0{word-spacing:-1.280000pt;}
.ws10{word-spacing:-0.533333pt;}
.ws17{word-spacing:0.000000pt;}
.wsa{word-spacing:22.400000pt;}
.wsb{word-spacing:22.483200pt;}
.ws7{word-spacing:39.103147pt;}
.ws6{word-spacing:61.440000pt;}
.ws4{word-spacing:62.015147pt;}
.ws5{word-spacing:62.720000pt;}
.ws3{word-spacing:83.326720pt;}
.ws2{word-spacing:83.840000pt;}
.ws9{word-spacing:123.455147pt;}
.ws8{word-spacing:141.312000pt;}
.ws14{word-spacing:236.097707pt;}
.ws15{word-spacing:388.906880pt;}
.ws13{word-spacing:437.226667pt;}
._5{margin-left:-3.420800pt;}
._1{margin-left:-2.521728pt;}
._0{margin-left:-0.916992pt;}
._6{width:1.179648pt;}
._7{width:2.171136pt;}
._9{width:4.346752pt;}
._a{width:5.351381pt;}
._2{width:11.974187pt;}
._b{width:43.520000pt;}
._8{width:53.604352pt;}
._4{width:87.680000pt;}
._c{width:91.284651pt;}
._3{width:173.824939pt;}
.fs9{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fse{font-size:117.120000pt;}
.fsf{font-size:117.248000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:149.120000pt;}
.fsc{font-size:154.880000pt;}
.fsd{font-size:155.008000pt;}
.fs4{font-size:181.120000pt;}
.fsa{font-size:197.248000pt;}
.fs10{font-size:213.120000pt;}
.fs0{font-size:229.248000pt;}
.fsb{font-size:256.000000pt;}
.fs1{font-size:299.008000pt;}
.fs8{font-size:344.320000pt;}
.fs7{font-size:528.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:175.546667pt;}
.y4e{bottom:175.586667pt;}
.y52{bottom:176.506667pt;}
.y56{bottom:177.413333pt;}
.y6d{bottom:177.693333pt;}
.y59{bottom:197.946667pt;}
.y4d{bottom:197.986667pt;}
.y51{bottom:198.906667pt;}
.y55{bottom:199.653333pt;}
.y6c{bottom:199.933333pt;}
.y58{bottom:220.506667pt;}
.y4c{bottom:220.546667pt;}
.y50{bottom:221.466667pt;}
.y54{bottom:222.213333pt;}
.y6b{bottom:222.493333pt;}
.y57{bottom:242.746667pt;}
.y4b{bottom:242.786667pt;}
.y4f{bottom:243.866667pt;}
.y53{bottom:244.453333pt;}
.y6a{bottom:244.733333pt;}
.yab{bottom:340.093333pt;}
.yb{bottom:377.280000pt;}
.yc{bottom:435.066667pt;}
.yad{bottom:480.933333pt;}
.y25{bottom:520.986667pt;}
.yac{bottom:530.853333pt;}
.y24{bottom:546.746667pt;}
.y23{bottom:572.346667pt;}
.y22{bottom:597.946667pt;}
.y21{bottom:639.226667pt;}
.y9a{bottom:651.066667pt;}
.y99{bottom:695.866667pt;}
.y3d{bottom:713.373333pt;}
.y98{bottom:718.266667pt;}
.y3c{bottom:735.773333pt;}
.y3b{bottom:758.173333pt;}
.y97{bottom:777.626667pt;}
.y3a{bottom:780.573333pt;}
.y39{bottom:802.973333pt;}
.y38{bottom:825.373333pt;}
.y37{bottom:847.773333pt;}
.y96{bottom:866.213333pt;}
.y36{bottom:870.173333pt;}
.y35{bottom:892.573333pt;}
.y95{bottom:911.013333pt;}
.y34{bottom:914.973333pt;}
.y94{bottom:933.413333pt;}
.y33{bottom:937.373333pt;}
.y93{bottom:955.813333pt;}
.y32{bottom:959.773333pt;}
.y31{bottom:982.173333pt;}
.yaf{bottom:987.040000pt;}
.y30{bottom:1004.573333pt;}
.y92{bottom:1015.173333pt;}
.y2f{bottom:1026.973333pt;}
.yae{bottom:1048.933333pt;}
.y2e{bottom:1049.373333pt;}
.y2d{bottom:1071.773333pt;}
.y2c{bottom:1094.173333pt;}
.y91{bottom:1097.373333pt;}
.y2b{bottom:1116.573333pt;}
.y2a{bottom:1138.973333pt;}
.y90{bottom:1142.173333pt;}
.y46{bottom:1152.226667pt;}
.y29{bottom:1161.373333pt;}
.y8f{bottom:1164.573333pt;}
.y8e{bottom:1186.973333pt;}
.y28{bottom:1188.413333pt;}
.y45{bottom:1203.746667pt;}
.y8d{bottom:1209.373333pt;}
.y44{bottom:1255.266667pt;}
.y8c{bottom:1268.733333pt;}
.y43{bottom:1306.786667pt;}
.y88{bottom:1350.173333pt;}
.y42{bottom:1358.306667pt;}
.y87{bottom:1394.973333pt;}
.y41{bottom:1409.826667pt;}
.y86{bottom:1417.373333pt;}
.y85{bottom:1439.773333pt;}
.y40{bottom:1457.986667pt;}
.y84{bottom:1462.173333pt;}
.y3f{bottom:1511.360000pt;}
.y83{bottom:1511.933333pt;}
.y7e{bottom:1596.986667pt;}
.y7d{bottom:1619.386667pt;}
.y7c{bottom:1641.786667pt;}
.y7b{bottom:1686.586667pt;}
.y7a{bottom:1708.986667pt;}
.y79{bottom:1731.386667pt;}
.ya7{bottom:1733.533333pt;}
.y78{bottom:1753.786667pt;}
.ya6{bottom:1755.933333pt;}
.y77{bottom:1776.186667pt;}
.y76{bottom:1798.586667pt;}
.ya5{bottom:1805.693333pt;}
.y75{bottom:1820.986667pt;}
.y74{bottom:1843.386667pt;}
.y73{bottom:1865.786667pt;}
.ya9{bottom:1870.053333pt;}
.y72{bottom:1915.546667pt;}
.ya8{bottom:1933.306667pt;}
.y8b{bottom:1999.386667pt;}
.ya1{bottom:2021.373333pt;}
.ya4{bottom:2021.533333pt;}
.y8a{bottom:2044.186667pt;}
.y89{bottom:2093.946667pt;}
.ya0{bottom:2103.360000pt;}
.y82{bottom:2183.106667pt;}
.y9d{bottom:2185.373333pt;}
.y81{bottom:2227.906667pt;}
.y80{bottom:2250.306667pt;}
.ya3{bottom:2251.520000pt;}
.y9c{bottom:2267.360000pt;}
.ya2{bottom:2283.360000pt;}
.y7f{bottom:2300.066667pt;}
.y12{bottom:2311.840000pt;}
.y9e{bottom:2349.346667pt;}
.y11{bottom:2356.480000pt;}
.y71{bottom:2381.253333pt;}
.y10{bottom:2401.280000pt;}
.y70{bottom:2426.053333pt;}
.y9f{bottom:2431.333333pt;}
.y9b{bottom:2431.493333pt;}
.yf{bottom:2446.080000pt;}
.y6f{bottom:2448.453333pt;}
.ye{bottom:2491.040000pt;}
.y6e{bottom:2498.213333pt;}
.yaa{bottom:2543.906667pt;}
.y5f{bottom:2584.986667pt;}
.y5e{bottom:2629.786667pt;}
.y5d{bottom:2652.186667pt;}
.y5c{bottom:2674.586667pt;}
.y20{bottom:2699.813333pt;}
.y5b{bottom:2724.346667pt;}
.y1f{bottom:2744.613333pt;}
.y1e{bottom:2789.413333pt;}
.y69{bottom:2810.106667pt;}
.yd{bottom:2811.333333pt;}
.y1d{bottom:2834.213333pt;}
.y68{bottom:2854.906667pt;}
.y67{bottom:2877.306667pt;}
.y1c{bottom:2879.013333pt;}
.y66{bottom:2899.706667pt;}
.y1b{bottom:2923.813333pt;}
.y65{bottom:2949.506667pt;}
.ya{bottom:2964.346667pt;}
.y1a{bottom:2968.613333pt;}
.y9{bottom:3009.306667pt;}
.y19{bottom:3013.413333pt;}
.y64{bottom:3031.266667pt;}
.y8{bottom:3054.106667pt;}
.y18{bottom:3058.213333pt;}
.y63{bottom:3076.066667pt;}
.y62{bottom:3098.466667pt;}
.y7{bottom:3098.906667pt;}
.y17{bottom:3103.013333pt;}
.y61{bottom:3120.866667pt;}
.y6{bottom:3143.706667pt;}
.y16{bottom:3147.653333pt;}
.y60{bottom:3170.626667pt;}
.y5{bottom:3188.506667pt;}
.y15{bottom:3192.613333pt;}
.y4{bottom:3233.306667pt;}
.y14{bottom:3237.413333pt;}
.y4a{bottom:3252.160000pt;}
.y3{bottom:3277.946667pt;}
.y13{bottom:3282.053333pt;}
.y49{bottom:3296.960000pt;}
.y48{bottom:3319.360000pt;}
.y2{bottom:3358.786667pt;}
.y47{bottom:3369.120000pt;}
.y1{bottom:3374.946667pt;}
.y3e{bottom:3527.493333pt;}
.y27{bottom:3627.586667pt;}
.y26{bottom:3721.186667pt;}
.hb{height:58.406400pt;}
.h8{height:66.393600pt;}
.h7{height:83.366400pt;}
.h10{height:91.353600pt;}
.h11{height:91.453440pt;}
.h5{height:99.840000pt;}
.h4{height:116.313600pt;}
.he{height:120.806400pt;}
.hf{height:120.906240pt;}
.h6{height:141.273600pt;}
.hc{height:153.853440pt;}
.h12{height:166.233600pt;}
.h2{height:178.813440pt;}
.hd{height:199.680000pt;}
.h3{height:233.226240pt;}
.ha{height:268.569600pt;}
.h9{height:411.840000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xb{left:190.693286pt;}
.x2{left:195.133286pt;}
.x4{left:199.653286pt;}
.x3{left:201.093286pt;}
.x6{left:203.226619pt;}
.xc{left:204.866619pt;}
.x5{left:244.959953pt;}
.x7{left:257.946619pt;}
.xa{left:395.293286pt;}
.x14{left:961.506619pt;}
.x1{left:974.239953pt;}
.x8{left:976.733286pt;}
.x28{left:990.239953pt;}
.xe{left:993.439953pt;}
.x27{left:995.973286pt;}
.x22{left:998.306619pt;}
.x9{left:1012.733286pt;}
.xf{left:1041.439953pt;}
.x1e{left:1042.626619pt;}
.x2d{left:1075.199953pt;}
.x19{left:1077.826619pt;}
.x17{left:1095.426619pt;}
.x18{left:1104.226619pt;}
.x29{left:1143.226619pt;}
.xd{left:1297.919953pt;}
.x1d{left:1318.946619pt;}
.x20{left:1371.933286pt;}
.x1a{left:1380.733286pt;}
.x23{left:1398.493286pt;}
.x11{left:1415.426619pt;}
.x1f{left:1433.693286pt;}
.x24{left:1692.226619pt;}
.x1c{left:1709.986619pt;}
.x1b{left:1718.786619pt;}
.x21{left:1727.586619pt;}
.x26{left:1736.386619pt;}
.x12{left:1750.559953pt;}
.x25{left:1762.786619pt;}
.x10{left:2036.613286pt;}
.x16{left:2037.573286pt;}
.x2a{left:2087.999953pt;}
.x13{left:2208.573286pt;}
.x2b{left:2368.893286pt;}
.x2c{left:2370.719953pt;}
.x15{left:2609.413286pt;}
}




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