
    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_f27d132fafc9bf74c781391e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_6d73dcd92c022ae7e5d8236f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_22b178c6f4db65820b8eef41.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_1a89587345701bf530809dce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_a7e3fe3531cf26c67cd91712.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_bfda7ae5d138557edf7c7111.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128418;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_9f01207664610fb9578e94f6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_095da31de92f23a691c5453c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.311760px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:3.780000px;}
.ls9{letter-spacing:31.602720px;}
.lsa{letter-spacing:31.626720px;}
.ls3{letter-spacing:43.866720px;}
.ls7{letter-spacing:49.602720px;}
.ls6{letter-spacing:49.626720px;}
.ls8{letter-spacing:375.276000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-10.640160px;}
._b{margin-left:-4.264320px;}
._5{margin-left:-2.545440px;}
._4{margin-left:-1.015920px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._6{width:3.617040px;}
._7{width:4.774560px;}
._8{width:5.796720px;}
._10{width:6.872400px;}
._14{width:7.888320px;}
._9{width:8.904240px;}
._13{width:10.816560px;}
._e{width:12.191040px;}
._d{width:13.266720px;}
._f{width:16.852320px;}
._a{width:20.497680px;}
._12{width:22.350240px;}
._17{width:23.666400px;}
._11{width:24.680880px;}
._c{width:26.234640px;}
._15{width:31.194720px;}
._18{width:32.217840px;}
._3{width:754.616160px;}
._2{width:768.843840px;}
._19{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:56.160000px;}
.yc2{bottom:89.460000px;}
.y3f{bottom:91.800000px;}
.y77{bottom:92.880000px;}
.y50{bottom:104.760000px;}
.yc1{bottom:106.740000px;}
.y3e{bottom:109.080000px;}
.yb1{bottom:109.980000px;}
.y76{bottom:110.160000px;}
.y4f{bottom:122.040000px;}
.yc0{bottom:124.020000px;}
.y3d{bottom:126.360000px;}
.y75{bottom:127.440000px;}
.y4e{bottom:139.140000px;}
.y74{bottom:141.120000px;}
.y3c{bottom:143.460000px;}
.yb0{bottom:144.360000px;}
.y4d{bottom:156.420000px;}
.ybf{bottom:159.480000px;}
.y3b{bottom:160.770000px;}
.yaf{bottom:161.670000px;}
.y4c{bottom:173.730000px;}
.ybe{bottom:176.790000px;}
.y3a{bottom:178.050000px;}
.yae{bottom:178.950000px;}
.y4b{bottom:191.010000px;}
.ybd{bottom:194.070000px;}
.y39{bottom:195.330000px;}
.yad{bottom:196.230000px;}
.y4a{bottom:208.290000px;}
.ybc{bottom:211.350000px;}
.y38{bottom:212.610000px;}
.yac{bottom:213.510000px;}
.y49{bottom:225.570000px;}
.ybb{bottom:228.630000px;}
.y37{bottom:229.890000px;}
.yab{bottom:230.610000px;}
.y48{bottom:243.750000px;}
.yba{bottom:246.810000px;}
.y36{bottom:246.990000px;}
.yaa{bottom:247.890000px;}
.y47{bottom:261.030000px;}
.yb9{bottom:264.090000px;}
.y35{bottom:264.270000px;}
.ya9{bottom:265.170000px;}
.y8f{bottom:265.530000px;}
.y46{bottom:278.310000px;}
.yb8{bottom:281.370000px;}
.y34{bottom:281.550000px;}
.ya8{bottom:282.450000px;}
.y8e{bottom:282.630000px;}
.y45{bottom:296.670000px;}
.yb7{bottom:298.650000px;}
.y33{bottom:298.830000px;}
.ya7{bottom:299.730000px;}
.y8d{bottom:299.910000px;}
.y44{bottom:313.950000px;}
.yb6{bottom:315.930000px;}
.y32{bottom:316.110000px;}
.ya6{bottom:317.010000px;}
.y8c{bottom:317.190000px;}
.y43{bottom:332.310000px;}
.yb5{bottom:333.030000px;}
.y31{bottom:333.210000px;}
.ya5{bottom:334.110000px;}
.y8b{bottom:334.470000px;}
.y42{bottom:349.410000px;}
.yb4{bottom:350.310000px;}
.y30{bottom:350.490000px;}
.ya4{bottom:351.390000px;}
.y8a{bottom:351.750000px;}
.y41{bottom:366.690000px;}
.y2f{bottom:367.770000px;}
.ya3{bottom:368.670000px;}
.y89{bottom:368.850000px;}
.y2e{bottom:385.050000px;}
.yb3{bottom:385.590000px;}
.ya2{bottom:385.950000px;}
.y88{bottom:386.130000px;}
.y87{bottom:399.810000px;}
.y73{bottom:400.890000px;}
.y2d{bottom:402.330000px;}
.ya1{bottom:403.230000px;}
.y72{bottom:418.035000px;}
.y2c{bottom:419.655000px;}
.ya0{bottom:420.555000px;}
.y71{bottom:435.315000px;}
.y2b{bottom:436.755000px;}
.y9f{bottom:437.295000px;}
.yb2{bottom:437.655000px;}
.y70{bottom:452.595000px;}
.y2a{bottom:454.035000px;}
.y9e{bottom:454.935000px;}
.y6f{bottom:469.875000px;}
.y29{bottom:471.315000px;}
.y9d{bottom:472.215000px;}
.y6e{bottom:487.155000px;}
.y28{bottom:488.595000px;}
.y9c{bottom:489.495000px;}
.y6d{bottom:504.255000px;}
.y27{bottom:505.875000px;}
.y9b{bottom:506.775000px;}
.y6c{bottom:521.535000px;}
.y26{bottom:523.155000px;}
.y9a{bottom:523.875000px;}
.y6b{bottom:538.815000px;}
.y25{bottom:540.255000px;}
.y99{bottom:541.155000px;}
.y6a{bottom:556.095000px;}
.y24{bottom:557.535000px;}
.y98{bottom:558.435000px;}
.y69{bottom:573.375000px;}
.y23{bottom:574.815000px;}
.y97{bottom:575.715000px;}
.y96{bottom:589.395000px;}
.y68{bottom:590.655000px;}
.y22{bottom:592.095000px;}
.y67{bottom:607.755000px;}
.y21{bottom:609.375000px;}
.y66{bottom:621.435000px;}
.y20{bottom:626.655000px;}
.y1f{bottom:643.395000px;}
.y40{bottom:643.755000px;}
.y86{bottom:659.805000px;}
.y1e{bottom:661.065000px;}
.y85{bottom:677.085000px;}
.y1d{bottom:678.345000px;}
.y84{bottom:694.365000px;}
.y1c{bottom:695.625000px;}
.y83{bottom:711.645000px;}
.y1b{bottom:712.905000px;}
.y82{bottom:728.925000px;}
.y1a{bottom:730.005000px;}
.y81{bottom:746.025000px;}
.y19{bottom:747.285000px;}
.y80{bottom:763.305000px;}
.y18{bottom:764.565000px;}
.y7f{bottom:780.585000px;}
.y17{bottom:781.845000px;}
.y7e{bottom:797.865000px;}
.y16{bottom:799.125000px;}
.y7d{bottom:815.145000px;}
.y15{bottom:816.405000px;}
.y7c{bottom:832.425000px;}
.y14{bottom:833.505000px;}
.yd0{bottom:846.645000px;}
.y95{bottom:849.345000px;}
.y7b{bottom:849.525000px;}
.y13{bottom:850.785000px;}
.ycf{bottom:863.925000px;}
.y94{bottom:866.625000px;}
.y7a{bottom:866.805000px;}
.y12{bottom:868.065000px;}
.y65{bottom:881.385000px;}
.y93{bottom:883.905000px;}
.y79{bottom:884.085000px;}
.y11{bottom:885.345000px;}
.y78{bottom:897.810000px;}
.y64{bottom:898.710000px;}
.y92{bottom:901.050000px;}
.y10{bottom:902.670000px;}
.yce{bottom:914.910000px;}
.y61{bottom:915.990000px;}
.y91{bottom:918.330000px;}
.yf{bottom:919.950000px;}
.y90{bottom:932.010000px;}
.ycd{bottom:932.190000px;}
.y60{bottom:933.270000px;}
.ye{bottom:937.050000px;}
.ycc{bottom:949.470000px;}
.y63{bottom:950.190000px;}
.y5f{bottom:950.550000px;}
.yd{bottom:954.330000px;}
.ycb{bottom:966.750000px;}
.y5e{bottom:967.830000px;}
.yc{bottom:971.250000px;}
.yca{bottom:983.850000px;}
.y5d{bottom:984.930000px;}
.yb{bottom:988.890000px;}
.y5c{bottom:1002.210000px;}
.ya{bottom:1006.170000px;}
.yc9{bottom:1018.050000px;}
.y5b{bottom:1019.490000px;}
.y9{bottom:1023.450000px;}
.yc8{bottom:1035.690000px;}
.y5a{bottom:1036.770000px;}
.y8{bottom:1040.550000px;}
.yc7{bottom:1052.970000px;}
.y59{bottom:1054.050000px;}
.y7{bottom:1057.830000px;}
.yc6{bottom:1070.070000px;}
.y58{bottom:1071.150000px;}
.y6{bottom:1074.750000px;}
.yc5{bottom:1087.350000px;}
.y57{bottom:1088.430000px;}
.yc4{bottom:1104.630000px;}
.y56{bottom:1105.710000px;}
.y5{bottom:1109.310000px;}
.yc3{bottom:1121.910000px;}
.y62{bottom:1122.630000px;}
.y55{bottom:1122.990000px;}
.y4{bottom:1126.410000px;}
.y54{bottom:1140.270000px;}
.y3{bottom:1144.080000px;}
.y53{bottom:1157.580000px;}
.y2{bottom:1163.880000px;}
.y52{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.h8{height:52.998047px;}
.h9{height:54.536836px;}
.h6{height:58.621992px;}
.h4{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:60.226875px;}
.h7{height:61.423863px;}
.h3{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.xd{left:112.175987px;}
.x14{left:114.155987px;}
.x12{left:115.955987px;}
.x3{left:136.115987px;}
.x2{left:277.949987px;}
.x4{left:298.694987px;}
.x11{left:301.214987px;}
.xf{left:302.654987px;}
.x13{left:312.734987px;}
.xe{left:357.554987px;}
.x10{left:418.574987px;}
.xa{left:457.274987px;}
.x15{left:461.414987px;}
.xb{left:487.004987px;}
.x7{left:531.644987px;}
.x8{left:537.944987px;}
.x6{left:553.064987px;}
.x5{left:656.744987px;}
.xc{left:659.984987px;}
.x9{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.277120pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:3.360000pt;}
.ls9{letter-spacing:28.091307pt;}
.lsa{letter-spacing:28.112640pt;}
.ls3{letter-spacing:38.992640pt;}
.ls7{letter-spacing:44.091307pt;}
.ls6{letter-spacing:44.112640pt;}
.ls8{letter-spacing:333.578667pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-9.457920pt;}
._b{margin-left:-3.790507pt;}
._5{margin-left:-2.262613pt;}
._4{margin-left:-0.903040pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._6{width:3.215147pt;}
._7{width:4.244053pt;}
._8{width:5.152640pt;}
._10{width:6.108800pt;}
._14{width:7.011840pt;}
._9{width:7.914880pt;}
._13{width:9.614720pt;}
._e{width:10.836480pt;}
._d{width:11.792640pt;}
._f{width:14.979840pt;}
._a{width:18.220160pt;}
._12{width:19.866880pt;}
._17{width:21.036800pt;}
._11{width:21.938560pt;}
._c{width:23.319680pt;}
._15{width:27.728640pt;}
._18{width:28.638080pt;}
._3{width:670.769920pt;}
._2{width:683.416747pt;}
._19{width:754.858667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:49.920000pt;}
.yc2{bottom:79.520000pt;}
.y3f{bottom:81.600000pt;}
.y77{bottom:82.560000pt;}
.y50{bottom:93.120000pt;}
.yc1{bottom:94.880000pt;}
.y3e{bottom:96.960000pt;}
.yb1{bottom:97.760000pt;}
.y76{bottom:97.920000pt;}
.y4f{bottom:108.480000pt;}
.yc0{bottom:110.240000pt;}
.y3d{bottom:112.320000pt;}
.y75{bottom:113.280000pt;}
.y4e{bottom:123.680000pt;}
.y74{bottom:125.440000pt;}
.y3c{bottom:127.520000pt;}
.yb0{bottom:128.320000pt;}
.y4d{bottom:139.040000pt;}
.ybf{bottom:141.760000pt;}
.y3b{bottom:142.906667pt;}
.yaf{bottom:143.706667pt;}
.y4c{bottom:154.426667pt;}
.ybe{bottom:157.146667pt;}
.y3a{bottom:158.266667pt;}
.yae{bottom:159.066667pt;}
.y4b{bottom:169.786667pt;}
.ybd{bottom:172.506667pt;}
.y39{bottom:173.626667pt;}
.yad{bottom:174.426667pt;}
.y4a{bottom:185.146667pt;}
.ybc{bottom:187.866667pt;}
.y38{bottom:188.986667pt;}
.yac{bottom:189.786667pt;}
.y49{bottom:200.506667pt;}
.ybb{bottom:203.226667pt;}
.y37{bottom:204.346667pt;}
.yab{bottom:204.986667pt;}
.y48{bottom:216.666667pt;}
.yba{bottom:219.386667pt;}
.y36{bottom:219.546667pt;}
.yaa{bottom:220.346667pt;}
.y47{bottom:232.026667pt;}
.yb9{bottom:234.746667pt;}
.y35{bottom:234.906667pt;}
.ya9{bottom:235.706667pt;}
.y8f{bottom:236.026667pt;}
.y46{bottom:247.386667pt;}
.yb8{bottom:250.106667pt;}
.y34{bottom:250.266667pt;}
.ya8{bottom:251.066667pt;}
.y8e{bottom:251.226667pt;}
.y45{bottom:263.706667pt;}
.yb7{bottom:265.466667pt;}
.y33{bottom:265.626667pt;}
.ya7{bottom:266.426667pt;}
.y8d{bottom:266.586667pt;}
.y44{bottom:279.066667pt;}
.yb6{bottom:280.826667pt;}
.y32{bottom:280.986667pt;}
.ya6{bottom:281.786667pt;}
.y8c{bottom:281.946667pt;}
.y43{bottom:295.386667pt;}
.yb5{bottom:296.026667pt;}
.y31{bottom:296.186667pt;}
.ya5{bottom:296.986667pt;}
.y8b{bottom:297.306667pt;}
.y42{bottom:310.586667pt;}
.yb4{bottom:311.386667pt;}
.y30{bottom:311.546667pt;}
.ya4{bottom:312.346667pt;}
.y8a{bottom:312.666667pt;}
.y41{bottom:325.946667pt;}
.y2f{bottom:326.906667pt;}
.ya3{bottom:327.706667pt;}
.y89{bottom:327.866667pt;}
.y2e{bottom:342.266667pt;}
.yb3{bottom:342.746667pt;}
.ya2{bottom:343.066667pt;}
.y88{bottom:343.226667pt;}
.y87{bottom:355.386667pt;}
.y73{bottom:356.346667pt;}
.y2d{bottom:357.626667pt;}
.ya1{bottom:358.426667pt;}
.y72{bottom:371.586667pt;}
.y2c{bottom:373.026667pt;}
.ya0{bottom:373.826667pt;}
.y71{bottom:386.946667pt;}
.y2b{bottom:388.226667pt;}
.y9f{bottom:388.706667pt;}
.yb2{bottom:389.026667pt;}
.y70{bottom:402.306667pt;}
.y2a{bottom:403.586667pt;}
.y9e{bottom:404.386667pt;}
.y6f{bottom:417.666667pt;}
.y29{bottom:418.946667pt;}
.y9d{bottom:419.746667pt;}
.y6e{bottom:433.026667pt;}
.y28{bottom:434.306667pt;}
.y9c{bottom:435.106667pt;}
.y6d{bottom:448.226667pt;}
.y27{bottom:449.666667pt;}
.y9b{bottom:450.466667pt;}
.y6c{bottom:463.586667pt;}
.y26{bottom:465.026667pt;}
.y9a{bottom:465.666667pt;}
.y6b{bottom:478.946667pt;}
.y25{bottom:480.226667pt;}
.y99{bottom:481.026667pt;}
.y6a{bottom:494.306667pt;}
.y24{bottom:495.586667pt;}
.y98{bottom:496.386667pt;}
.y69{bottom:509.666667pt;}
.y23{bottom:510.946667pt;}
.y97{bottom:511.746667pt;}
.y96{bottom:523.906667pt;}
.y68{bottom:525.026667pt;}
.y22{bottom:526.306667pt;}
.y67{bottom:540.226667pt;}
.y21{bottom:541.666667pt;}
.y66{bottom:552.386667pt;}
.y20{bottom:557.026667pt;}
.y1f{bottom:571.906667pt;}
.y40{bottom:572.226667pt;}
.y86{bottom:586.493333pt;}
.y1e{bottom:587.613333pt;}
.y85{bottom:601.853333pt;}
.y1d{bottom:602.973333pt;}
.y84{bottom:617.213333pt;}
.y1c{bottom:618.333333pt;}
.y83{bottom:632.573333pt;}
.y1b{bottom:633.693333pt;}
.y82{bottom:647.933333pt;}
.y1a{bottom:648.893333pt;}
.y81{bottom:663.133333pt;}
.y19{bottom:664.253333pt;}
.y80{bottom:678.493333pt;}
.y18{bottom:679.613333pt;}
.y7f{bottom:693.853333pt;}
.y17{bottom:694.973333pt;}
.y7e{bottom:709.213333pt;}
.y16{bottom:710.333333pt;}
.y7d{bottom:724.573333pt;}
.y15{bottom:725.693333pt;}
.y7c{bottom:739.933333pt;}
.y14{bottom:740.893333pt;}
.yd0{bottom:752.573333pt;}
.y95{bottom:754.973333pt;}
.y7b{bottom:755.133333pt;}
.y13{bottom:756.253333pt;}
.ycf{bottom:767.933333pt;}
.y94{bottom:770.333333pt;}
.y7a{bottom:770.493333pt;}
.y12{bottom:771.613333pt;}
.y65{bottom:783.453333pt;}
.y93{bottom:785.693333pt;}
.y79{bottom:785.853333pt;}
.y11{bottom:786.973333pt;}
.y78{bottom:798.053333pt;}
.y64{bottom:798.853333pt;}
.y92{bottom:800.933333pt;}
.y10{bottom:802.373333pt;}
.yce{bottom:813.253333pt;}
.y61{bottom:814.213333pt;}
.y91{bottom:816.293333pt;}
.yf{bottom:817.733333pt;}
.y90{bottom:828.453333pt;}
.ycd{bottom:828.613333pt;}
.y60{bottom:829.573333pt;}
.ye{bottom:832.933333pt;}
.ycc{bottom:843.973333pt;}
.y63{bottom:844.613333pt;}
.y5f{bottom:844.933333pt;}
.yd{bottom:848.293333pt;}
.ycb{bottom:859.333333pt;}
.y5e{bottom:860.293333pt;}
.yc{bottom:863.333333pt;}
.yca{bottom:874.533333pt;}
.y5d{bottom:875.493333pt;}
.yb{bottom:879.013333pt;}
.y5c{bottom:890.853333pt;}
.ya{bottom:894.373333pt;}
.yc9{bottom:904.933333pt;}
.y5b{bottom:906.213333pt;}
.y9{bottom:909.733333pt;}
.yc8{bottom:920.613333pt;}
.y5a{bottom:921.573333pt;}
.y8{bottom:924.933333pt;}
.yc7{bottom:935.973333pt;}
.y59{bottom:936.933333pt;}
.y7{bottom:940.293333pt;}
.yc6{bottom:951.173333pt;}
.y58{bottom:952.133333pt;}
.y6{bottom:955.333333pt;}
.yc5{bottom:966.533333pt;}
.y57{bottom:967.493333pt;}
.yc4{bottom:981.893333pt;}
.y56{bottom:982.853333pt;}
.y5{bottom:986.053333pt;}
.yc3{bottom:997.253333pt;}
.y62{bottom:997.893333pt;}
.y55{bottom:998.213333pt;}
.y4{bottom:1001.253333pt;}
.y54{bottom:1013.573333pt;}
.y3{bottom:1016.960000pt;}
.y53{bottom:1028.960000pt;}
.y2{bottom:1034.560000pt;}
.y52{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.h8{height:47.109375pt;}
.h9{height:48.477187pt;}
.h6{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:53.535000pt;}
.h7{height:54.598989pt;}
.h3{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.xd{left:99.711988pt;}
.x14{left:101.471988pt;}
.x12{left:103.071988pt;}
.x3{left:120.991988pt;}
.x2{left:247.066655pt;}
.x4{left:265.506655pt;}
.x11{left:267.746655pt;}
.xf{left:269.026655pt;}
.x13{left:277.986655pt;}
.xe{left:317.826655pt;}
.x10{left:372.066655pt;}
.xa{left:406.466655pt;}
.x15{left:410.146655pt;}
.xb{left:432.893322pt;}
.x7{left:472.573322pt;}
.x8{left:478.173322pt;}
.x6{left:491.613322pt;}
.x5{left:583.773322pt;}
.xc{left:586.653322pt;}
.x9{left:699.333322pt;}
}




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