
    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_d0ec8f8cb1234f8ad652cafe.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_3991620356f374560fb75a7b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087402;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_28cef80ca78d71d651520540.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_75d6d58570eebdd20c8d38de.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_89262a84bdc9559055f8d877.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087402;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_1578a9efc375d1b2298206dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_dee9ba0d8a48124f23e5cdb5.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e375c35dbbd99c4558e827ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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:ffb;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.063600px;}
.ls13{letter-spacing:-0.038880px;}
.ls15{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.047520px;}
.lsc{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.049200px;}
.ls9{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.374760px;}
.ls17{letter-spacing:48.446640px;}
.lsb{letter-spacing:54.926640px;}
.ls12{letter-spacing:55.406640px;}
.lse{letter-spacing:68.246640px;}
.ls5{letter-spacing:71.687520px;}
.ls16{letter-spacing:81.566640px;}
.ls4{letter-spacing:100.286640px;}
.lsd{letter-spacing:143.325360px;}
.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;}
}
.ws3{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws4{word-spacing:-13.275600px;}
.ws8{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.211640px;}
.wsc{word-spacing:-13.187520px;}
.wsa{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.wsb{word-spacing:-0.060120px;}
.ws5{word-spacing:0.000000px;}
.ws2{word-spacing:147.584880px;}
._13{margin-left:-4.230481px;}
._8{margin-left:-3.066000px;}
._16{margin-left:-2.056320px;}
._0{margin-left:-1.020000px;}
._1{width:1.006896px;}
._4{width:2.284800px;}
._5{width:3.521781px;}
._9{width:4.644438px;}
._e{width:5.696202px;}
._6{width:6.973800px;}
._3{width:8.110797px;}
._2{width:9.198600px;}
._a{width:10.575597px;}
._7{width:11.603400px;}
._12{width:14.968441px;}
._b{width:15.991800px;}
._11{width:17.493000px;}
._c{width:18.997800px;}
._d{width:20.240280px;}
._17{width:21.300502px;}
._14{width:22.484880px;}
._15{width:23.567040px;}
._f{width:26.031960px;}
._10{width:27.054000px;}
._18{width:28.196280px;}
._22{width:37.779120px;}
._23{width:39.210840px;}
._19{width:45.240120px;}
._1a{width:46.533240px;}
._20{width:71.933400px;}
._21{width:72.986400px;}
._1b{width:74.578680px;}
._1c{width:76.052160px;}
._1d{width:96.702840px;}
._1e{width:103.376160px;}
._1f{width:104.625024px;}
.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;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yca{bottom:111.720000px;}
.yf0{bottom:117.210000px;}
.ya6{bottom:118.560000px;}
.yc9{bottom:129.270000px;}
.y51{bottom:129.540000px;}
.y25{bottom:131.070000px;}
.yef{bottom:134.760000px;}
.ya5{bottom:136.110000px;}
.y7b{bottom:144.210000px;}
.y114{bottom:145.110000px;}
.yc8{bottom:146.910000px;}
.ya4{bottom:153.750000px;}
.y7a{bottom:161.760000px;}
.y113{bottom:162.750000px;}
.y50{bottom:166.530000px;}
.y24{bottom:166.620000px;}
.yee{bottom:170.400000px;}
.yc7{bottom:173.460000px;}
.y79{bottom:179.310000px;}
.ya3{bottom:180.300000px;}
.y112{bottom:189.300000px;}
.y23{bottom:193.260000px;}
.y78{bottom:196.950000px;}
.yed{bottom:197.310000px;}
.y4f{bottom:202.080000px;}
.yc6{bottom:209.100000px;}
.y77{bottom:214.500000px;}
.ya2{bottom:215.850000px;}
.y4e{bottom:219.720000px;}
.yc5{bottom:226.650000px;}
.y22{bottom:228.810000px;}
.ya1{bottom:233.490000px;}
.yec{bottom:234.300000px;}
.y4d{bottom:237.270000px;}
.yc4{bottom:244.200000px;}
.y21{bottom:246.450000px;}
.y76{bottom:250.140000px;}
.yeb{bottom:251.850000px;}
.y4c{bottom:254.910000px;}
.y111{bottom:260.040000px;}
.yc3{bottom:261.840000px;}
.y20{bottom:264.000000px;}
.ya0{bottom:269.040000px;}
.yea{bottom:269.490000px;}
.y75{bottom:276.690000px;}
.y110{bottom:277.680000px;}
.yc2{bottom:279.390000px;}
.y1f{bottom:281.550000px;}
.y4b{bottom:281.820000px;}
.y9f{bottom:286.680000px;}
.ye9{bottom:287.040000px;}
.yc1{bottom:296.940000px;}
.y1e{bottom:299.190000px;}
.y9e{bottom:304.230000px;}
.ye8{bottom:304.680000px;}
.y74{bottom:312.240000px;}
.yc0{bottom:314.580000px;}
.y1d{bottom:316.740000px;}
.y4a{bottom:318.810000px;}
.y9d{bottom:321.780000px;}
.ye7{bottom:322.230000px;}
.y73{bottom:329.880000px;}
.y49{bottom:336.360000px;}
.y9c{bottom:339.420000px;}
.ye6{bottom:339.780000px;}
.ybf{bottom:341.130000px;}
.y1c{bottom:343.380000px;}
.y72{bottom:347.430000px;}
.y10f{bottom:348.420000px;}
.y48{bottom:354.000000px;}
.y9b{bottom:356.970000px;}
.ye5{bottom:357.420000px;}
.y71{bottom:364.980000px;}
.y47{bottom:371.550000px;}
.ye4{bottom:374.970000px;}
.ybe{bottom:376.770000px;}
.y1b{bottom:378.930000px;}
.y70{bottom:391.890000px;}
.y9a{bottom:392.610000px;}
.ybd{bottom:394.320000px;}
.y1a{bottom:396.480000px;}
.y46{bottom:398.460000px;}
.y10e{bottom:401.610000px;}
.y99{bottom:410.160000px;}
.ybc{bottom:411.870000px;}
.y19{bottom:414.120000px;}
.y10d{bottom:419.160000px;}
.y98{bottom:427.710000px;}
.y6f{bottom:428.970000px;}
.ybb{bottom:429.510000px;}
.y18{bottom:431.670000px;}
.y45{bottom:435.810000px;}
.ye3{bottom:445.350000px;}
.y10c{bottom:445.710000px;}
.y6e{bottom:446.520000px;}
.yba{bottom:447.060000px;}
.y17{bottom:449.310000px;}
.y97{bottom:454.620000px;}
.ye2{bottom:462.900000px;}
.y10b{bottom:463.350000px;}
.y6d{bottom:464.160000px;}
.y16{bottom:466.860000px;}
.y44{bottom:472.830000px;}
.yb9{bottom:474.000000px;}
.ye1{bottom:480.480000px;}
.y10a{bottom:480.930000px;}
.y6c{bottom:481.740000px;}
.y96{bottom:491.730000px;}
.y15{bottom:493.440000px;}
.ye0{bottom:498.120000px;}
.y109{bottom:507.480000px;}
.y43{bottom:508.470000px;}
.y6b{bottom:508.650000px;}
.y95{bottom:509.280000px;}
.ydf{bottom:515.670000px;}
.yb8{bottom:522.330000px;}
.y108{bottom:525.120000px;}
.y42{bottom:526.020000px;}
.y94{bottom:526.830000px;}
.y14{bottom:529.350000px;}
.yde{bottom:533.310000px;}
.yb7{bottom:539.880000px;}
.y93{bottom:544.470000px;}
.y6a{bottom:546.000000px;}
.ydd{bottom:550.860000px;}
.y107{bottom:552.030000px;}
.y41{bottom:552.660000px;}
.yb6{bottom:557.430000px;}
.y92{bottom:562.020000px;}
.ydc{bottom:568.410000px;}
.yb5{bottom:575.070000px;}
.y13{bottom:577.950000px;}
.y91{bottom:579.660000px;}
.y69{bottom:582.990000px;}
.y40{bottom:588.210000px;}
.yb4{bottom:592.620000px;}
.y106{bottom:600.270000px;}
.ydb{bottom:604.050000px;}
.y3f{bottom:605.760000px;}
.y90{bottom:606.570000px;}
.y12{bottom:615.030000px;}
.y105{bottom:617.910000px;}
.y68{bottom:618.630000px;}
.yb3{bottom:619.260000px;}
.yda{bottom:621.600000px;}
.y3e{bottom:623.400000px;}
.y11{bottom:632.580000px;}
.y104{bottom:635.460000px;}
.y67{bottom:636.180000px;}
.y3d{bottom:640.950000px;}
.yd9{bottom:648.510000px;}
.y10{bottom:650.130000px;}
.y103{bottom:653.010000px;}
.y66{bottom:653.730000px;}
.y8f{bottom:654.810000px;}
.y3c{bottom:658.590000px;}
.yf{bottom:667.770000px;}
.y8e{bottom:672.360000px;}
.y3b{bottom:676.140000px;}
.y65{bottom:680.640000px;}
.ye{bottom:685.320000px;}
.yd8{bottom:685.590000px;}
.y102{bottom:688.650000px;}
.y8d{bottom:690.000000px;}
.y3a{bottom:693.690000px;}
.yd{bottom:702.960000px;}
.yd7{bottom:703.140000px;}
.y101{bottom:706.200000px;}
.y8c{bottom:707.550000px;}
.y64{bottom:717.720000px;}
.yc{bottom:720.510000px;}
.yd6{bottom:720.690000px;}
.y100{bottom:723.840000px;}
.y8b{bottom:725.190000px;}
.y39{bottom:729.330000px;}
.y11a{bottom:734.190000px;}
.y63{bottom:735.270000px;}
.yb{bottom:738.060000px;}
.yd5{bottom:738.330000px;}
.yff{bottom:741.390000px;}
.yb2{bottom:742.740000px;}
.y119{bottom:751.740000px;}
.y62{bottom:752.910000px;}
.ya{bottom:755.700000px;}
.y38{bottom:755.880000px;}
.yfe{bottom:758.940000px;}
.y8a{bottom:760.740000px;}
.yd4{bottom:765.240000px;}
.yb1{bottom:769.290000px;}
.y61{bottom:770.460000px;}
.yfd{bottom:776.580000px;}
.y118{bottom:778.290000px;}
.y9{bottom:782.610000px;}
.y37{bottom:791.520000px;}
.yfc{bottom:794.130000px;}
.y117{bottom:795.930000px;}
.y89{bottom:796.290000px;}
.y60{bottom:797.370000px;}
.yb0{bottom:804.930000px;}
.y36{bottom:809.070000px;}
.yd3{bottom:813.480000px;}
.y88{bottom:813.930000px;}
.yfb{bottom:821.040000px;}
.yaf{bottom:822.480000px;}
.y35{bottom:826.620000px;}
.y8{bottom:830.850000px;}
.yd2{bottom:831.030000px;}
.y87{bottom:831.480000px;}
.y5f{bottom:834.720000px;}
.yae{bottom:840.030000px;}
.y34{bottom:844.260000px;}
.yd1{bottom:848.670000px;}
.y86{bottom:849.030000px;}
.yad{bottom:857.670000px;}
.yfa{bottom:858.030000px;}
.y33{bottom:861.810000px;}
.y7{bottom:866.490000px;}
.y5e{bottom:871.710000px;}
.yac{bottom:875.220000px;}
.yf9{bottom:875.670000px;}
.y32{bottom:879.450000px;}
.yd0{bottom:884.220000px;}
.y85{bottom:884.670000px;}
.yf8{bottom:893.220000px;}
.y31{bottom:897.000000px;}
.yab{bottom:901.860000px;}
.y6{bottom:902.040000px;}
.y5d{bottom:907.350000px;}
.yf7{bottom:910.860000px;}
.y84{bottom:911.220000px;}
.ycf{bottom:919.410000px;}
.y30{bottom:923.550000px;}
.y5c{bottom:924.900000px;}
.yf6{bottom:928.410000px;}
.yce{bottom:936.960000px;}
.yaa{bottom:937.410000px;}
.y5{bottom:937.860000px;}
.y5b{bottom:942.450000px;}
.yf5{bottom:945.960000px;}
.y83{bottom:946.860000px;}
.ycd{bottom:954.600000px;}
.ya9{bottom:954.960000px;}
.y2f{bottom:959.460000px;}
.y5a{bottom:960.090000px;}
.yf4{bottom:963.600000px;}
.y82{bottom:964.410000px;}
.ycc{bottom:972.150000px;}
.ya8{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y59{bottom:977.640000px;}
.yf3{bottom:981.150000px;}
.y81{bottom:981.960000px;}
.ycb{bottom:989.790000px;}
.ya7{bottom:990.150000px;}
.yf2{bottom:998.790000px;}
.y80{bottom:999.600000px;}
.y58{bottom:1004.550000px;}
.y2e{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y7f{bottom:1017.180000px;}
.y2d{bottom:1025.370000px;}
.yf1{bottom:1034.370000px;}
.y7e{bottom:1034.820000px;}
.y57{bottom:1041.570000px;}
.y2c{bottom:1051.920000px;}
.y7d{bottom:1052.370000px;}
.y56{bottom:1059.210000px;}
.y7c{bottom:1069.920000px;}
.y55{bottom:1076.760000px;}
.y116{bottom:1078.560000px;}
.y2b{bottom:1087.560000px;}
.y54{bottom:1094.400000px;}
.y115{bottom:1096.110000px;}
.y2a{bottom:1105.110000px;}
.y53{bottom:1111.950000px;}
.y29{bottom:1122.750000px;}
.y52{bottom:1138.860000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.111328px;}
.h6{height:50.902383px;}
.h7{height:52.252734px;}
.h8{height:55.779258px;}
.h5{height:57.258984px;}
.hd{height:59.973223px;}
.he{height:60.679688px;}
.h9{height:60.960938px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:72.903516px;}
.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;}
.x8{left:78.659987px;}
.x2{left:95.040000px;}
.x5{left:122.039987px;}
.x6{left:149.039987px;}
.x7{left:176.069987px;}
.x3{left:202.799987px;}
.x4{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls13{letter-spacing:-0.034560pt;}
.ls15{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.042240pt;}
.lsc{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.043733pt;}
.ls9{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.333120pt;}
.ls17{letter-spacing:43.063680pt;}
.lsb{letter-spacing:48.823680pt;}
.ls12{letter-spacing:49.250347pt;}
.lse{letter-spacing:60.663680pt;}
.ls5{letter-spacing:63.722240pt;}
.ls16{letter-spacing:72.503680pt;}
.ls4{letter-spacing:89.143680pt;}
.lsd{letter-spacing:127.400320pt;}
.ws3{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws4{word-spacing:-11.800533pt;}
.ws8{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.743680pt;}
.wsc{word-spacing:-11.722240pt;}
.wsa{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.wsb{word-spacing:-0.053440pt;}
.ws5{word-spacing:0.000000pt;}
.ws2{word-spacing:131.186560pt;}
._13{margin-left:-3.760427pt;}
._8{margin-left:-2.725333pt;}
._16{margin-left:-1.827840pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.895018pt;}
._4{width:2.030934pt;}
._5{width:3.130472pt;}
._9{width:4.128389pt;}
._e{width:5.063291pt;}
._6{width:6.198933pt;}
._3{width:7.209598pt;}
._2{width:8.176534pt;}
._a{width:9.400531pt;}
._7{width:10.314134pt;}
._12{width:13.305281pt;}
._b{width:14.214933pt;}
._11{width:15.549334pt;}
._c{width:16.886933pt;}
._d{width:17.991360pt;}
._17{width:18.933780pt;}
._14{width:19.986560pt;}
._15{width:20.948480pt;}
._f{width:23.139520pt;}
._10{width:24.048000pt;}
._18{width:25.063360pt;}
._22{width:33.581440pt;}
._23{width:34.854080pt;}
._19{width:40.213440pt;}
._1a{width:41.362880pt;}
._20{width:63.940800pt;}
._21{width:64.876800pt;}
._1b{width:66.292160pt;}
._1c{width:67.601920pt;}
._1d{width:85.958080pt;}
._1e{width:91.889920pt;}
._1f{width:93.000022pt;}
.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;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yca{bottom:99.306667pt;}
.yf0{bottom:104.186667pt;}
.ya6{bottom:105.386667pt;}
.yc9{bottom:114.906667pt;}
.y51{bottom:115.146667pt;}
.y25{bottom:116.506667pt;}
.yef{bottom:119.786667pt;}
.ya5{bottom:120.986667pt;}
.y7b{bottom:128.186667pt;}
.y114{bottom:128.986667pt;}
.yc8{bottom:130.586667pt;}
.ya4{bottom:136.666667pt;}
.y7a{bottom:143.786667pt;}
.y113{bottom:144.666667pt;}
.y50{bottom:148.026667pt;}
.y24{bottom:148.106667pt;}
.yee{bottom:151.466667pt;}
.yc7{bottom:154.186667pt;}
.y79{bottom:159.386667pt;}
.ya3{bottom:160.266667pt;}
.y112{bottom:168.266667pt;}
.y23{bottom:171.786667pt;}
.y78{bottom:175.066667pt;}
.yed{bottom:175.386667pt;}
.y4f{bottom:179.626667pt;}
.yc6{bottom:185.866667pt;}
.y77{bottom:190.666667pt;}
.ya2{bottom:191.866667pt;}
.y4e{bottom:195.306667pt;}
.yc5{bottom:201.466667pt;}
.y22{bottom:203.386667pt;}
.ya1{bottom:207.546667pt;}
.yec{bottom:208.266667pt;}
.y4d{bottom:210.906667pt;}
.yc4{bottom:217.066667pt;}
.y21{bottom:219.066667pt;}
.y76{bottom:222.346667pt;}
.yeb{bottom:223.866667pt;}
.y4c{bottom:226.586667pt;}
.y111{bottom:231.146667pt;}
.yc3{bottom:232.746667pt;}
.y20{bottom:234.666667pt;}
.ya0{bottom:239.146667pt;}
.yea{bottom:239.546667pt;}
.y75{bottom:245.946667pt;}
.y110{bottom:246.826667pt;}
.yc2{bottom:248.346667pt;}
.y1f{bottom:250.266667pt;}
.y4b{bottom:250.506667pt;}
.y9f{bottom:254.826667pt;}
.ye9{bottom:255.146667pt;}
.yc1{bottom:263.946667pt;}
.y1e{bottom:265.946667pt;}
.y9e{bottom:270.426667pt;}
.ye8{bottom:270.826667pt;}
.y74{bottom:277.546667pt;}
.yc0{bottom:279.626667pt;}
.y1d{bottom:281.546667pt;}
.y4a{bottom:283.386667pt;}
.y9d{bottom:286.026667pt;}
.ye7{bottom:286.426667pt;}
.y73{bottom:293.226667pt;}
.y49{bottom:298.986667pt;}
.y9c{bottom:301.706667pt;}
.ye6{bottom:302.026667pt;}
.ybf{bottom:303.226667pt;}
.y1c{bottom:305.226667pt;}
.y72{bottom:308.826667pt;}
.y10f{bottom:309.706667pt;}
.y48{bottom:314.666667pt;}
.y9b{bottom:317.306667pt;}
.ye5{bottom:317.706667pt;}
.y71{bottom:324.426667pt;}
.y47{bottom:330.266667pt;}
.ye4{bottom:333.306667pt;}
.ybe{bottom:334.906667pt;}
.y1b{bottom:336.826667pt;}
.y70{bottom:348.346667pt;}
.y9a{bottom:348.986667pt;}
.ybd{bottom:350.506667pt;}
.y1a{bottom:352.426667pt;}
.y46{bottom:354.186667pt;}
.y10e{bottom:356.986667pt;}
.y99{bottom:364.586667pt;}
.ybc{bottom:366.106667pt;}
.y19{bottom:368.106667pt;}
.y10d{bottom:372.586667pt;}
.y98{bottom:380.186667pt;}
.y6f{bottom:381.306667pt;}
.ybb{bottom:381.786667pt;}
.y18{bottom:383.706667pt;}
.y45{bottom:387.386667pt;}
.ye3{bottom:395.866667pt;}
.y10c{bottom:396.186667pt;}
.y6e{bottom:396.906667pt;}
.yba{bottom:397.386667pt;}
.y17{bottom:399.386667pt;}
.y97{bottom:404.106667pt;}
.ye2{bottom:411.466667pt;}
.y10b{bottom:411.866667pt;}
.y6d{bottom:412.586667pt;}
.y16{bottom:414.986667pt;}
.y44{bottom:420.293333pt;}
.yb9{bottom:421.333333pt;}
.ye1{bottom:427.093333pt;}
.y10a{bottom:427.493333pt;}
.y6c{bottom:428.213333pt;}
.y96{bottom:437.093333pt;}
.y15{bottom:438.613333pt;}
.ye0{bottom:442.773333pt;}
.y109{bottom:451.093333pt;}
.y43{bottom:451.973333pt;}
.y6b{bottom:452.133333pt;}
.y95{bottom:452.693333pt;}
.ydf{bottom:458.373333pt;}
.yb8{bottom:464.293333pt;}
.y108{bottom:466.773333pt;}
.y42{bottom:467.573333pt;}
.y94{bottom:468.293333pt;}
.y14{bottom:470.533333pt;}
.yde{bottom:474.053333pt;}
.yb7{bottom:479.893333pt;}
.y93{bottom:483.973333pt;}
.y6a{bottom:485.333333pt;}
.ydd{bottom:489.653333pt;}
.y107{bottom:490.693333pt;}
.y41{bottom:491.253333pt;}
.yb6{bottom:495.493333pt;}
.y92{bottom:499.573333pt;}
.ydc{bottom:505.253333pt;}
.yb5{bottom:511.173333pt;}
.y13{bottom:513.733333pt;}
.y91{bottom:515.253333pt;}
.y69{bottom:518.213333pt;}
.y40{bottom:522.853333pt;}
.yb4{bottom:526.773333pt;}
.y106{bottom:533.573333pt;}
.ydb{bottom:536.933333pt;}
.y3f{bottom:538.453333pt;}
.y90{bottom:539.173333pt;}
.y12{bottom:546.693333pt;}
.y105{bottom:549.253333pt;}
.y68{bottom:549.893333pt;}
.yb3{bottom:550.453333pt;}
.yda{bottom:552.533333pt;}
.y3e{bottom:554.133333pt;}
.y11{bottom:562.293333pt;}
.y104{bottom:564.853333pt;}
.y67{bottom:565.493333pt;}
.y3d{bottom:569.733333pt;}
.yd9{bottom:576.453333pt;}
.y10{bottom:577.893333pt;}
.y103{bottom:580.453333pt;}
.y66{bottom:581.093333pt;}
.y8f{bottom:582.053333pt;}
.y3c{bottom:585.413333pt;}
.yf{bottom:593.573333pt;}
.y8e{bottom:597.653333pt;}
.y3b{bottom:601.013333pt;}
.y65{bottom:605.013333pt;}
.ye{bottom:609.173333pt;}
.yd8{bottom:609.413333pt;}
.y102{bottom:612.133333pt;}
.y8d{bottom:613.333333pt;}
.y3a{bottom:616.613333pt;}
.yd{bottom:624.853333pt;}
.yd7{bottom:625.013333pt;}
.y101{bottom:627.733333pt;}
.y8c{bottom:628.933333pt;}
.y64{bottom:637.973333pt;}
.yc{bottom:640.453333pt;}
.yd6{bottom:640.613333pt;}
.y100{bottom:643.413333pt;}
.y8b{bottom:644.613333pt;}
.y39{bottom:648.293333pt;}
.y11a{bottom:652.613333pt;}
.y63{bottom:653.573333pt;}
.yb{bottom:656.053333pt;}
.yd5{bottom:656.293333pt;}
.yff{bottom:659.013333pt;}
.yb2{bottom:660.213333pt;}
.y119{bottom:668.213333pt;}
.y62{bottom:669.253333pt;}
.ya{bottom:671.733333pt;}
.y38{bottom:671.893333pt;}
.yfe{bottom:674.613333pt;}
.y8a{bottom:676.213333pt;}
.yd4{bottom:680.213333pt;}
.yb1{bottom:683.813333pt;}
.y61{bottom:684.853333pt;}
.yfd{bottom:690.293333pt;}
.y118{bottom:691.813333pt;}
.y9{bottom:695.653333pt;}
.y37{bottom:703.573333pt;}
.yfc{bottom:705.893333pt;}
.y117{bottom:707.493333pt;}
.y89{bottom:707.813333pt;}
.y60{bottom:708.773333pt;}
.yb0{bottom:715.493333pt;}
.y36{bottom:719.173333pt;}
.yd3{bottom:723.093333pt;}
.y88{bottom:723.493333pt;}
.yfb{bottom:729.813333pt;}
.yaf{bottom:731.093333pt;}
.y35{bottom:734.773333pt;}
.y8{bottom:738.533333pt;}
.yd2{bottom:738.693333pt;}
.y87{bottom:739.093333pt;}
.y5f{bottom:741.973333pt;}
.yae{bottom:746.693333pt;}
.y34{bottom:750.453333pt;}
.yd1{bottom:754.373333pt;}
.y86{bottom:754.693333pt;}
.yad{bottom:762.373333pt;}
.yfa{bottom:762.693333pt;}
.y33{bottom:766.053333pt;}
.y7{bottom:770.213333pt;}
.y5e{bottom:774.853333pt;}
.yac{bottom:777.973333pt;}
.yf9{bottom:778.373333pt;}
.y32{bottom:781.733333pt;}
.yd0{bottom:785.973333pt;}
.y85{bottom:786.373333pt;}
.yf8{bottom:793.973333pt;}
.y31{bottom:797.333333pt;}
.yab{bottom:801.653333pt;}
.y6{bottom:801.813333pt;}
.y5d{bottom:806.533333pt;}
.yf7{bottom:809.653333pt;}
.y84{bottom:809.973333pt;}
.ycf{bottom:817.253333pt;}
.y30{bottom:820.933333pt;}
.y5c{bottom:822.133333pt;}
.yf6{bottom:825.253333pt;}
.yce{bottom:832.853333pt;}
.yaa{bottom:833.253333pt;}
.y5{bottom:833.653333pt;}
.y5b{bottom:837.733333pt;}
.yf5{bottom:840.853333pt;}
.y83{bottom:841.653333pt;}
.ycd{bottom:848.533333pt;}
.ya9{bottom:848.853333pt;}
.y2f{bottom:852.853333pt;}
.y5a{bottom:853.413333pt;}
.yf4{bottom:856.533333pt;}
.y82{bottom:857.253333pt;}
.ycc{bottom:864.133333pt;}
.ya8{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y59{bottom:869.013333pt;}
.yf3{bottom:872.133333pt;}
.y81{bottom:872.853333pt;}
.ycb{bottom:879.813333pt;}
.ya7{bottom:880.133333pt;}
.yf2{bottom:887.813333pt;}
.y80{bottom:888.533333pt;}
.y58{bottom:892.933333pt;}
.y2e{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y7f{bottom:904.160000pt;}
.y2d{bottom:911.440000pt;}
.yf1{bottom:919.440000pt;}
.y7e{bottom:919.840000pt;}
.y57{bottom:925.840000pt;}
.y2c{bottom:935.040000pt;}
.y7d{bottom:935.440000pt;}
.y56{bottom:941.520000pt;}
.y7c{bottom:951.040000pt;}
.y55{bottom:957.120000pt;}
.y116{bottom:958.720000pt;}
.y2b{bottom:966.720000pt;}
.y54{bottom:972.800000pt;}
.y115{bottom:974.320000pt;}
.y2a{bottom:982.320000pt;}
.y53{bottom:988.400000pt;}
.y29{bottom:998.000000pt;}
.y52{bottom:1012.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.765625pt;}
.h6{height:45.246562pt;}
.h7{height:46.446875pt;}
.h8{height:49.581562pt;}
.h5{height:50.896875pt;}
.hd{height:53.309531pt;}
.he{height:53.937500pt;}
.h9{height:54.187500pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:64.803125pt;}
.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;}
.x8{left:69.919988pt;}
.x2{left:84.480000pt;}
.x5{left:108.479988pt;}
.x6{left:132.479988pt;}
.x7{left:156.506655pt;}
.x3{left:180.266655pt;}
.x4{left:704.053322pt;}
}




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