
    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_aa4e09284a29e966799de904.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_5d35ea2c291a96a5079c6510.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_1dea2e63437a8b07db41f10f.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.273600px;}
.ls4{letter-spacing:-0.211800px;}
.ls6{letter-spacing:-0.154200px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.332640px;}
.ls5{letter-spacing:0.377280px;}
.ls2{letter-spacing:0.377400px;}
.ls7{letter-spacing:0.387360px;}
.ls0{letter-spacing:0.387600px;}
.ls8{letter-spacing:0.557280px;}
.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;}
}
.ws2{word-spacing:-11.127120px;}
.ws6{word-spacing:-11.126880px;}
.ws3{word-spacing:-11.116920px;}
.ws0{word-spacing:-10.739520px;}
.ws1{word-spacing:-10.527720px;}
.ws5{word-spacing:-10.465920px;}
.ws4{word-spacing:0.000000px;}
._9{margin-left:-5.178240px;}
._8{margin-left:-3.841920px;}
._a{margin-left:-2.756160px;}
._1{margin-left:-1.419840px;}
._0{width:1.670400px;}
._7{width:2.758080px;}
._b{width:4.245600px;}
._2{width:5.455680px;}
._5{width:6.696000px;}
._6{width:8.253600px;}
._4{width:9.354240px;}
._3{width:10.523520px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:83.520000px;}
.ybc{bottom:-0.018000px;}
.y7d{bottom:-0.015000px;}
.y7e{bottom:-0.009000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:3.225000px;}
.y37{bottom:3.231000px;}
.y16{bottom:3.240000px;}
.ye7{bottom:3.255000px;}
.ya2{bottom:3.270000px;}
.y2d{bottom:3.585000px;}
.y39{bottom:3.591000px;}
.y1d{bottom:3.600000px;}
.yb2{bottom:3.615000px;}
.y4e{bottom:3.630000px;}
.y7c{bottom:5.385000px;}
.y78{bottom:5.400000px;}
.y7a{bottom:5.745000px;}
.y7b{bottom:5.751000px;}
.y76{bottom:5.760000px;}
.y79{bottom:5.775000px;}
.y77{bottom:5.790000px;}
.y38{bottom:113.085000px;}
.y75{bottom:114.525000px;}
.ybb{bottom:115.605000px;}
.yf0{bottom:116.325000px;}
.y36{bottom:130.725000px;}
.y74{bottom:132.165000px;}
.yba{bottom:132.885000px;}
.yef{bottom:133.965000px;}
.y35{bottom:148.410000px;}
.y73{bottom:149.850000px;}
.yb9{bottom:150.570000px;}
.yee{bottom:151.650000px;}
.y34{bottom:166.050000px;}
.y72{bottom:167.490000px;}
.yb8{bottom:168.210000px;}
.yed{bottom:169.290000px;}
.y33{bottom:183.690000px;}
.y71{bottom:185.130000px;}
.yb7{bottom:185.850000px;}
.yec{bottom:186.930000px;}
.y32{bottom:201.330000px;}
.y70{bottom:202.770000px;}
.yb6{bottom:203.490000px;}
.yeb{bottom:204.570000px;}
.y31{bottom:218.970000px;}
.y6f{bottom:220.410000px;}
.yb5{bottom:221.130000px;}
.yea{bottom:222.210000px;}
.y30{bottom:236.610000px;}
.y6e{bottom:238.050000px;}
.yb4{bottom:238.770000px;}
.ye9{bottom:239.850000px;}
.y2e{bottom:254.250000px;}
.y6d{bottom:255.690000px;}
.yb3{bottom:256.410000px;}
.ye8{bottom:257.490000px;}
.y2c{bottom:271.530000px;}
.y6c{bottom:273.330000px;}
.yb1{bottom:274.050000px;}
.ye6{bottom:275.130000px;}
.y2b{bottom:289.185000px;}
.y6b{bottom:290.985000px;}
.yb0{bottom:291.705000px;}
.ye5{bottom:292.785000px;}
.y2a{bottom:306.825000px;}
.y6a{bottom:308.625000px;}
.yaf{bottom:309.345000px;}
.ye4{bottom:310.065000px;}
.y29{bottom:324.465000px;}
.y69{bottom:326.265000px;}
.yae{bottom:326.985000px;}
.ye3{bottom:327.705000px;}
.y28{bottom:342.105000px;}
.y68{bottom:343.905000px;}
.yad{bottom:344.625000px;}
.ye2{bottom:345.345000px;}
.y27{bottom:359.745000px;}
.y67{bottom:361.545000px;}
.yac{bottom:362.265000px;}
.ye1{bottom:362.985000px;}
.y26{bottom:377.385000px;}
.y66{bottom:379.185000px;}
.yab{bottom:379.905000px;}
.ye0{bottom:380.625000px;}
.yf1{bottom:393.945000px;}
.y25{bottom:395.025000px;}
.y65{bottom:396.825000px;}
.yaa{bottom:397.545000px;}
.ydf{bottom:398.265000px;}
.y24{bottom:412.710000px;}
.y64{bottom:414.510000px;}
.ya9{bottom:415.230000px;}
.yde{bottom:415.950000px;}
.y23{bottom:430.350000px;}
.y63{bottom:432.150000px;}
.ya8{bottom:432.870000px;}
.ydd{bottom:433.590000px;}
.y22{bottom:447.990000px;}
.y62{bottom:449.790000px;}
.ya7{bottom:450.510000px;}
.ydc{bottom:451.230000px;}
.y21{bottom:465.630000px;}
.y61{bottom:467.430000px;}
.ya6{bottom:468.150000px;}
.ydb{bottom:468.870000px;}
.y20{bottom:483.270000px;}
.y60{bottom:485.070000px;}
.ya5{bottom:485.790000px;}
.yda{bottom:486.510000px;}
.y1f{bottom:500.910000px;}
.y5f{bottom:502.710000px;}
.ya4{bottom:503.430000px;}
.yd9{bottom:504.150000px;}
.y1e{bottom:518.550000px;}
.y5e{bottom:519.990000px;}
.ya3{bottom:521.070000px;}
.yd8{bottom:521.790000px;}
.y1c{bottom:536.190000px;}
.y5d{bottom:537.630000px;}
.ya1{bottom:538.710000px;}
.yd7{bottom:539.430000px;}
.y1b{bottom:553.860000px;}
.y5c{bottom:555.300000px;}
.ya0{bottom:556.020000px;}
.yd6{bottom:557.100000px;}
.y1a{bottom:571.500000px;}
.y5b{bottom:572.940000px;}
.y9f{bottom:573.660000px;}
.yd5{bottom:574.740000px;}
.y19{bottom:589.140000px;}
.y5a{bottom:590.580000px;}
.y9e{bottom:591.300000px;}
.yd4{bottom:592.380000px;}
.y18{bottom:606.780000px;}
.y59{bottom:608.220000px;}
.y9d{bottom:608.940000px;}
.yd3{bottom:610.020000px;}
.y17{bottom:624.420000px;}
.y58{bottom:625.860000px;}
.y9c{bottom:626.580000px;}
.yd2{bottom:627.660000px;}
.y15{bottom:642.060000px;}
.y57{bottom:643.500000px;}
.y9b{bottom:644.220000px;}
.yd1{bottom:645.300000px;}
.y56{bottom:661.140000px;}
.y9a{bottom:661.860000px;}
.yd0{bottom:662.940000px;}
.y14{bottom:665.460000px;}
.y55{bottom:678.825000px;}
.y99{bottom:679.545000px;}
.ycf{bottom:680.625000px;}
.y13{bottom:691.050000px;}
.y54{bottom:696.465000px;}
.y98{bottom:697.185000px;}
.yce{bottom:698.265000px;}
.y53{bottom:714.105000px;}
.y97{bottom:714.825000px;}
.ycd{bottom:715.905000px;}
.y12{bottom:716.610000px;}
.y52{bottom:731.745000px;}
.y96{bottom:732.465000px;}
.ycc{bottom:733.185000px;}
.y11{bottom:742.170000px;}
.y51{bottom:749.385000px;}
.y95{bottom:750.105000px;}
.ycb{bottom:750.825000px;}
.y50{bottom:767.025000px;}
.y94{bottom:767.745000px;}
.y10{bottom:768.090000px;}
.yca{bottom:768.465000px;}
.y4f{bottom:784.665000px;}
.y93{bottom:785.385000px;}
.yc9{bottom:786.105000px;}
.yf{bottom:793.650000px;}
.y4d{bottom:802.305000px;}
.y92{bottom:803.070000px;}
.yc8{bottom:803.790000px;}
.ye{bottom:819.255000px;}
.y4c{bottom:819.990000px;}
.y91{bottom:820.710000px;}
.yc7{bottom:821.430000px;}
.y4b{bottom:837.630000px;}
.y90{bottom:838.350000px;}
.yc6{bottom:839.070000px;}
.yd{bottom:844.815000px;}
.y4a{bottom:855.270000px;}
.y8f{bottom:855.990000px;}
.yc5{bottom:856.710000px;}
.yc{bottom:870.375000px;}
.y49{bottom:872.910000px;}
.y8e{bottom:873.630000px;}
.yc4{bottom:874.350000px;}
.y48{bottom:890.550000px;}
.y8d{bottom:891.270000px;}
.yc3{bottom:891.990000px;}
.yb{bottom:896.295000px;}
.y47{bottom:908.190000px;}
.y8c{bottom:908.910000px;}
.yc2{bottom:909.630000px;}
.ya{bottom:921.855000px;}
.y46{bottom:925.830000px;}
.y8b{bottom:926.550000px;}
.yc1{bottom:927.270000px;}
.y45{bottom:943.125000px;}
.y8a{bottom:944.205000px;}
.yc0{bottom:944.925000px;}
.y9{bottom:947.445000px;}
.y44{bottom:960.765000px;}
.y89{bottom:961.845000px;}
.ybf{bottom:962.565000px;}
.y8{bottom:973.005000px;}
.y43{bottom:978.405000px;}
.y88{bottom:979.125000px;}
.ybe{bottom:985.965000px;}
.y42{bottom:996.045000px;}
.y87{bottom:996.765000px;}
.y7{bottom:998.565000px;}
.ybd{bottom:1011.525000px;}
.y41{bottom:1013.685000px;}
.y86{bottom:1014.405000px;}
.y6{bottom:1024.485000px;}
.y40{bottom:1031.325000px;}
.y85{bottom:1032.045000px;}
.y3f{bottom:1048.965000px;}
.y84{bottom:1049.685000px;}
.y5{bottom:1050.045000px;}
.y3e{bottom:1066.650000px;}
.y83{bottom:1067.370000px;}
.y4{bottom:1075.650000px;}
.y3d{bottom:1084.290000px;}
.y82{bottom:1085.010000px;}
.y3{bottom:1101.210000px;}
.y3c{bottom:1101.930000px;}
.y81{bottom:1102.650000px;}
.y3b{bottom:1119.570000px;}
.y80{bottom:1120.290000px;}
.y3a{bottom:1137.210000px;}
.y7f{bottom:1137.930000px;}
.y2{bottom:1139.010000px;}
.y1{bottom:1194.450000px;}
.hb{height:16.545000px;}
.h12{height:16.551000px;}
.h5{height:16.560000px;}
.h11{height:16.590000px;}
.hc{height:16.902000px;}
.ha{height:16.905000px;}
.he{height:16.911000px;}
.h7{height:16.920000px;}
.hf{height:16.941000px;}
.hd{height:16.947000px;}
.h9{height:16.950000px;}
.h10{height:16.956000px;}
.h8{height:47.264766px;}
.h6{height:48.656953px;}
.h2{height:65.884219px;}
.h4{height:83.071406px;}
.h3{height:85.518281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:35.625000px;}
.w3{width:43.905000px;}
.w9{width:125.640000px;}
.w6{width:126.000000px;}
.w10{width:163.515000px;}
.wd{width:163.875000px;}
.w12{width:164.235000px;}
.wf{width:166.365000px;}
.wc{width:166.725000px;}
.w11{width:176.085000px;}
.we{width:176.445000px;}
.w7{width:200.595000px;}
.w5{width:200.955000px;}
.w8{width:204.210000px;}
.w4{width:204.570000px;}
.wa{width:543.780000px;}
.w2{width:576.900000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2e{left:5.745000px;}
.x27{left:7.905000px;}
.xe{left:9.705000px;}
.x7{left:11.865000px;}
.x30{left:16.545000px;}
.x32{left:17.985000px;}
.x21{left:20.505000px;}
.x10{left:21.945000px;}
.x2b{left:23.430000px;}
.x34{left:24.465000px;}
.x1c{left:26.985000px;}
.x16{left:30.225000px;}
.x1b{left:31.665000px;}
.x14{left:33.465000px;}
.x1f{left:35.265000px;}
.x1d{left:36.705000px;}
.xd{left:37.785000px;}
.x13{left:39.225000px;}
.x1e{left:40.665000px;}
.xb{left:41.760000px;}
.x17{left:42.825000px;}
.x1a{left:44.265000px;}
.x23{left:45.375000px;}
.x19{left:46.785000px;}
.x15{left:48.585000px;}
.x20{left:50.025000px;}
.x18{left:51.105000px;}
.x2f{left:56.910000px;}
.x29{left:60.855000px;}
.x2d{left:63.030000px;}
.x9{left:79.215000px;}
.x2{left:81.036000px;}
.x31{left:82.095000px;}
.x33{left:83.535000px;}
.x6{left:92.175000px;}
.xf{left:94.350000px;}
.x24{left:97.230000px;}
.x22{left:98.670000px;}
.x12{left:100.470000px;}
.x11{left:102.255000px;}
.x26{left:111.255000px;}
.x3{left:117.396000px;}
.x5{left:158.130000px;}
.x25{left:174.690000px;}
.x8{left:202.770000px;}
.x28{left:210.690000px;}
.x1{left:361.230000px;}
.x2a{left:377.790000px;}
.xa{left:407.700000px;}
.x4{left:446.580000px;}
.x2c{left:542.025000px;}
.xc{left:609.030000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.243200pt;}
.ls4{letter-spacing:-0.188267pt;}
.ls6{letter-spacing:-0.137067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.295680pt;}
.ls5{letter-spacing:0.335360pt;}
.ls2{letter-spacing:0.335467pt;}
.ls7{letter-spacing:0.344320pt;}
.ls0{letter-spacing:0.344533pt;}
.ls8{letter-spacing:0.495360pt;}
.ws2{word-spacing:-9.890773pt;}
.ws6{word-spacing:-9.890560pt;}
.ws3{word-spacing:-9.881707pt;}
.ws0{word-spacing:-9.546240pt;}
.ws1{word-spacing:-9.357973pt;}
.ws5{word-spacing:-9.303040pt;}
.ws4{word-spacing:0.000000pt;}
._9{margin-left:-4.602880pt;}
._8{margin-left:-3.415040pt;}
._a{margin-left:-2.449920pt;}
._1{margin-left:-1.262080pt;}
._0{width:1.484800pt;}
._7{width:2.451627pt;}
._b{width:3.773867pt;}
._2{width:4.849493pt;}
._5{width:5.952000pt;}
._6{width:7.336533pt;}
._4{width:8.314880pt;}
._3{width:9.354240pt;}
.fs2{font-size:42.240000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:74.240000pt;}
.ybc{bottom:-0.016000pt;}
.y7d{bottom:-0.013333pt;}
.y7e{bottom:-0.008000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:2.866667pt;}
.y37{bottom:2.872000pt;}
.y16{bottom:2.880000pt;}
.ye7{bottom:2.893333pt;}
.ya2{bottom:2.906667pt;}
.y2d{bottom:3.186667pt;}
.y39{bottom:3.192000pt;}
.y1d{bottom:3.200000pt;}
.yb2{bottom:3.213333pt;}
.y4e{bottom:3.226667pt;}
.y7c{bottom:4.786667pt;}
.y78{bottom:4.800000pt;}
.y7a{bottom:5.106667pt;}
.y7b{bottom:5.112000pt;}
.y76{bottom:5.120000pt;}
.y79{bottom:5.133333pt;}
.y77{bottom:5.146667pt;}
.y38{bottom:100.520000pt;}
.y75{bottom:101.800000pt;}
.ybb{bottom:102.760000pt;}
.yf0{bottom:103.400000pt;}
.y36{bottom:116.200000pt;}
.y74{bottom:117.480000pt;}
.yba{bottom:118.120000pt;}
.yef{bottom:119.080000pt;}
.y35{bottom:131.920000pt;}
.y73{bottom:133.200000pt;}
.yb9{bottom:133.840000pt;}
.yee{bottom:134.800000pt;}
.y34{bottom:147.600000pt;}
.y72{bottom:148.880000pt;}
.yb8{bottom:149.520000pt;}
.yed{bottom:150.480000pt;}
.y33{bottom:163.280000pt;}
.y71{bottom:164.560000pt;}
.yb7{bottom:165.200000pt;}
.yec{bottom:166.160000pt;}
.y32{bottom:178.960000pt;}
.y70{bottom:180.240000pt;}
.yb6{bottom:180.880000pt;}
.yeb{bottom:181.840000pt;}
.y31{bottom:194.640000pt;}
.y6f{bottom:195.920000pt;}
.yb5{bottom:196.560000pt;}
.yea{bottom:197.520000pt;}
.y30{bottom:210.320000pt;}
.y6e{bottom:211.600000pt;}
.yb4{bottom:212.240000pt;}
.ye9{bottom:213.200000pt;}
.y2e{bottom:226.000000pt;}
.y6d{bottom:227.280000pt;}
.yb3{bottom:227.920000pt;}
.ye8{bottom:228.880000pt;}
.y2c{bottom:241.360000pt;}
.y6c{bottom:242.960000pt;}
.yb1{bottom:243.600000pt;}
.ye6{bottom:244.560000pt;}
.y2b{bottom:257.053333pt;}
.y6b{bottom:258.653333pt;}
.yb0{bottom:259.293333pt;}
.ye5{bottom:260.253333pt;}
.y2a{bottom:272.733333pt;}
.y6a{bottom:274.333333pt;}
.yaf{bottom:274.973333pt;}
.ye4{bottom:275.613333pt;}
.y29{bottom:288.413333pt;}
.y69{bottom:290.013333pt;}
.yae{bottom:290.653333pt;}
.ye3{bottom:291.293333pt;}
.y28{bottom:304.093333pt;}
.y68{bottom:305.693333pt;}
.yad{bottom:306.333333pt;}
.ye2{bottom:306.973333pt;}
.y27{bottom:319.773333pt;}
.y67{bottom:321.373333pt;}
.yac{bottom:322.013333pt;}
.ye1{bottom:322.653333pt;}
.y26{bottom:335.453333pt;}
.y66{bottom:337.053333pt;}
.yab{bottom:337.693333pt;}
.ye0{bottom:338.333333pt;}
.yf1{bottom:350.173333pt;}
.y25{bottom:351.133333pt;}
.y65{bottom:352.733333pt;}
.yaa{bottom:353.373333pt;}
.ydf{bottom:354.013333pt;}
.y24{bottom:366.853333pt;}
.y64{bottom:368.453333pt;}
.ya9{bottom:369.093333pt;}
.yde{bottom:369.733333pt;}
.y23{bottom:382.533333pt;}
.y63{bottom:384.133333pt;}
.ya8{bottom:384.773333pt;}
.ydd{bottom:385.413333pt;}
.y22{bottom:398.213333pt;}
.y62{bottom:399.813333pt;}
.ya7{bottom:400.453333pt;}
.ydc{bottom:401.093333pt;}
.y21{bottom:413.893333pt;}
.y61{bottom:415.493333pt;}
.ya6{bottom:416.133333pt;}
.ydb{bottom:416.773333pt;}
.y20{bottom:429.573333pt;}
.y60{bottom:431.173333pt;}
.ya5{bottom:431.813333pt;}
.yda{bottom:432.453333pt;}
.y1f{bottom:445.253333pt;}
.y5f{bottom:446.853333pt;}
.ya4{bottom:447.493333pt;}
.yd9{bottom:448.133333pt;}
.y1e{bottom:460.933333pt;}
.y5e{bottom:462.213333pt;}
.ya3{bottom:463.173333pt;}
.yd8{bottom:463.813333pt;}
.y1c{bottom:476.613333pt;}
.y5d{bottom:477.893333pt;}
.ya1{bottom:478.853333pt;}
.yd7{bottom:479.493333pt;}
.y1b{bottom:492.320000pt;}
.y5c{bottom:493.600000pt;}
.ya0{bottom:494.240000pt;}
.yd6{bottom:495.200000pt;}
.y1a{bottom:508.000000pt;}
.y5b{bottom:509.280000pt;}
.y9f{bottom:509.920000pt;}
.yd5{bottom:510.880000pt;}
.y19{bottom:523.680000pt;}
.y5a{bottom:524.960000pt;}
.y9e{bottom:525.600000pt;}
.yd4{bottom:526.560000pt;}
.y18{bottom:539.360000pt;}
.y59{bottom:540.640000pt;}
.y9d{bottom:541.280000pt;}
.yd3{bottom:542.240000pt;}
.y17{bottom:555.040000pt;}
.y58{bottom:556.320000pt;}
.y9c{bottom:556.960000pt;}
.yd2{bottom:557.920000pt;}
.y15{bottom:570.720000pt;}
.y57{bottom:572.000000pt;}
.y9b{bottom:572.640000pt;}
.yd1{bottom:573.600000pt;}
.y56{bottom:587.680000pt;}
.y9a{bottom:588.320000pt;}
.yd0{bottom:589.280000pt;}
.y14{bottom:591.520000pt;}
.y55{bottom:603.400000pt;}
.y99{bottom:604.040000pt;}
.ycf{bottom:605.000000pt;}
.y13{bottom:614.266667pt;}
.y54{bottom:619.080000pt;}
.y98{bottom:619.720000pt;}
.yce{bottom:620.680000pt;}
.y53{bottom:634.760000pt;}
.y97{bottom:635.400000pt;}
.ycd{bottom:636.360000pt;}
.y12{bottom:636.986667pt;}
.y52{bottom:650.440000pt;}
.y96{bottom:651.080000pt;}
.ycc{bottom:651.720000pt;}
.y11{bottom:659.706667pt;}
.y51{bottom:666.120000pt;}
.y95{bottom:666.760000pt;}
.ycb{bottom:667.400000pt;}
.y50{bottom:681.800000pt;}
.y94{bottom:682.440000pt;}
.y10{bottom:682.746667pt;}
.yca{bottom:683.080000pt;}
.y4f{bottom:697.480000pt;}
.y93{bottom:698.120000pt;}
.yc9{bottom:698.760000pt;}
.yf{bottom:705.466667pt;}
.y4d{bottom:713.160000pt;}
.y92{bottom:713.840000pt;}
.yc8{bottom:714.480000pt;}
.ye{bottom:728.226667pt;}
.y4c{bottom:728.880000pt;}
.y91{bottom:729.520000pt;}
.yc7{bottom:730.160000pt;}
.y4b{bottom:744.560000pt;}
.y90{bottom:745.200000pt;}
.yc6{bottom:745.840000pt;}
.yd{bottom:750.946667pt;}
.y4a{bottom:760.240000pt;}
.y8f{bottom:760.880000pt;}
.yc5{bottom:761.520000pt;}
.yc{bottom:773.666667pt;}
.y49{bottom:775.920000pt;}
.y8e{bottom:776.560000pt;}
.yc4{bottom:777.200000pt;}
.y48{bottom:791.600000pt;}
.y8d{bottom:792.240000pt;}
.yc3{bottom:792.880000pt;}
.yb{bottom:796.706667pt;}
.y47{bottom:807.280000pt;}
.y8c{bottom:807.920000pt;}
.yc2{bottom:808.560000pt;}
.ya{bottom:819.426667pt;}
.y46{bottom:822.960000pt;}
.y8b{bottom:823.600000pt;}
.yc1{bottom:824.240000pt;}
.y45{bottom:838.333333pt;}
.y8a{bottom:839.293333pt;}
.yc0{bottom:839.933333pt;}
.y9{bottom:842.173333pt;}
.y44{bottom:854.013333pt;}
.y89{bottom:854.973333pt;}
.ybf{bottom:855.613333pt;}
.y8{bottom:864.893333pt;}
.y43{bottom:869.693333pt;}
.y88{bottom:870.333333pt;}
.ybe{bottom:876.413333pt;}
.y42{bottom:885.373333pt;}
.y87{bottom:886.013333pt;}
.y7{bottom:887.613333pt;}
.ybd{bottom:899.133333pt;}
.y41{bottom:901.053333pt;}
.y86{bottom:901.693333pt;}
.y6{bottom:910.653333pt;}
.y40{bottom:916.733333pt;}
.y85{bottom:917.373333pt;}
.y3f{bottom:932.413333pt;}
.y84{bottom:933.053333pt;}
.y5{bottom:933.373333pt;}
.y3e{bottom:948.133333pt;}
.y83{bottom:948.773333pt;}
.y4{bottom:956.133333pt;}
.y3d{bottom:963.813333pt;}
.y82{bottom:964.453333pt;}
.y3{bottom:978.853333pt;}
.y3c{bottom:979.493333pt;}
.y81{bottom:980.133333pt;}
.y3b{bottom:995.173333pt;}
.y80{bottom:995.813333pt;}
.y3a{bottom:1010.853333pt;}
.y7f{bottom:1011.493333pt;}
.y2{bottom:1012.453333pt;}
.y1{bottom:1061.733333pt;}
.hb{height:14.706667pt;}
.h12{height:14.712000pt;}
.h5{height:14.720000pt;}
.h11{height:14.746667pt;}
.hc{height:15.024000pt;}
.ha{height:15.026667pt;}
.he{height:15.032000pt;}
.h7{height:15.040000pt;}
.hf{height:15.058667pt;}
.hd{height:15.064000pt;}
.h9{height:15.066667pt;}
.h10{height:15.072000pt;}
.h8{height:42.013125pt;}
.h6{height:43.250625pt;}
.h2{height:58.563750pt;}
.h4{height:73.841250pt;}
.h3{height:76.016250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:31.666667pt;}
.w3{width:39.026667pt;}
.w9{width:111.680000pt;}
.w6{width:112.000000pt;}
.w10{width:145.346667pt;}
.wd{width:145.666667pt;}
.w12{width:145.986667pt;}
.wf{width:147.880000pt;}
.wc{width:148.200000pt;}
.w11{width:156.520000pt;}
.we{width:156.840000pt;}
.w7{width:178.306667pt;}
.w5{width:178.626667pt;}
.w8{width:181.520000pt;}
.w4{width:181.840000pt;}
.wa{width:483.360000pt;}
.w2{width:512.800000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2e{left:5.106667pt;}
.x27{left:7.026667pt;}
.xe{left:8.626667pt;}
.x7{left:10.546667pt;}
.x30{left:14.706667pt;}
.x32{left:15.986667pt;}
.x21{left:18.226667pt;}
.x10{left:19.506667pt;}
.x2b{left:20.826667pt;}
.x34{left:21.746667pt;}
.x1c{left:23.986667pt;}
.x16{left:26.866667pt;}
.x1b{left:28.146667pt;}
.x14{left:29.746667pt;}
.x1f{left:31.346667pt;}
.x1d{left:32.626667pt;}
.xd{left:33.586667pt;}
.x13{left:34.866667pt;}
.x1e{left:36.146667pt;}
.xb{left:37.120000pt;}
.x17{left:38.066667pt;}
.x1a{left:39.346667pt;}
.x23{left:40.333333pt;}
.x19{left:41.586667pt;}
.x15{left:43.186667pt;}
.x20{left:44.466667pt;}
.x18{left:45.426667pt;}
.x2f{left:50.586667pt;}
.x29{left:54.093333pt;}
.x2d{left:56.026667pt;}
.x9{left:70.413333pt;}
.x2{left:72.032000pt;}
.x31{left:72.973333pt;}
.x33{left:74.253333pt;}
.x6{left:81.933333pt;}
.xf{left:83.866667pt;}
.x24{left:86.426667pt;}
.x22{left:87.706667pt;}
.x12{left:89.306667pt;}
.x11{left:90.893333pt;}
.x26{left:98.893333pt;}
.x3{left:104.352000pt;}
.x5{left:140.560000pt;}
.x25{left:155.280000pt;}
.x8{left:180.240000pt;}
.x28{left:187.280000pt;}
.x1{left:321.093333pt;}
.x2a{left:335.813333pt;}
.xa{left:362.400000pt;}
.x4{left:396.960000pt;}
.x2c{left:481.800000pt;}
.xc{left:541.360000pt;}
}




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