
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d1d25ae0d98aa9ac22dbb9b9.woff')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_836eaf12394782b366e77a4c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_11af1ab05312d10884678aa1.woff')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_df3eb2fe5f17e5ec0a2f009b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.750000px;}
.ls5{letter-spacing:-0.541200px;}
.ls2{letter-spacing:-0.334200px;}
.lsa{letter-spacing:-0.299400px;}
.ls6{letter-spacing:-0.259200px;}
.ls4{letter-spacing:-0.166800px;}
.lsf{letter-spacing:-0.121200px;}
.lse{letter-spacing:-0.090000px;}
.ls3{letter-spacing:-0.028800px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.178800px;}
.ls11{letter-spacing:0.276600px;}
.lsc{letter-spacing:0.360000px;}
.ls9{letter-spacing:8.380800px;}
.lsb{letter-spacing:18.436800px;}
.ls7{letter-spacing:32.140800px;}
.ls10{letter-spacing:42.865920px;}
.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;}
}
.ws5{word-spacing:-63.360000px;}
.wsb{word-spacing:-14.215800px;}
.ws6{word-spacing:-14.118000px;}
.ws2{word-spacing:-13.939200px;}
.ws1{word-spacing:-13.605000px;}
.ws3{word-spacing:-13.398000px;}
.ws9{word-spacing:-13.178880px;}
.ws0{word-spacing:-13.165200px;}
.ws7{word-spacing:-13.147200px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:166.988400px;}
.wsa{word-spacing:200.108400px;}
._5{margin-left:-11.279040px;}
._1d{margin-left:-9.462720px;}
._1a{margin-left:-3.395520px;}
._0{margin-left:-1.267200px;}
._2{width:1.233600px;}
._6{width:2.534400px;}
._7{width:3.552000px;}
._a{width:4.688640px;}
._b{width:5.702400px;}
._15{width:7.413120px;}
._11{width:8.933760px;}
._12{width:10.010880px;}
._c{width:11.214720px;}
._d{width:12.672000px;}
._16{width:15.143040px;}
._14{width:16.220160px;}
._13{width:17.550720px;}
._17{width:19.008000px;}
._4{width:20.268720px;}
._3{width:21.438720px;}
._9{width:22.746240px;}
._8{width:23.760000px;}
._1{width:25.060800px;}
._1c{width:26.294400px;}
._18{width:32.445600px;}
._e{width:33.597120px;}
._f{width:36.685440px;}
._10{width:38.142720px;}
._19{width:122.014560px;}
._1b{width:214.424400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.420000px;}
.y97{bottom:17.100000px;}
.y85{bottom:17.205000px;}
.y47{bottom:21.780000px;}
.y5{bottom:21.960000px;}
.y4{bottom:40.350000px;}
.y82{bottom:43.890000px;}
.y94{bottom:48.210000px;}
.y9{bottom:55.440000px;}
.y8{bottom:58.320000px;}
.y3{bottom:58.890000px;}
.y7b{bottom:62.820000px;}
.y87{bottom:67.140000px;}
.y79{bottom:85.320000px;}
.y62{bottom:89.640000px;}
.y8d{bottom:91.590000px;}
.ybc{bottom:95.760000px;}
.y7c{bottom:96.300000px;}
.y31{bottom:96.480000px;}
.y78{bottom:103.680000px;}
.y88{bottom:106.275000px;}
.y61{bottom:108.180000px;}
.ybb{bottom:114.120000px;}
.y30{bottom:115.020000px;}
.y8e{bottom:116.070000px;}
.y77{bottom:122.220000px;}
.y60{bottom:126.540000px;}
.y7d{bottom:129.810000px;}
.y2f{bottom:130.140000px;}
.yba{bottom:132.660000px;}
.y8f{bottom:140.505000px;}
.y76{bottom:140.760000px;}
.y5f{bottom:145.080000px;}
.y89{bottom:145.410000px;}
.yb9{bottom:151.020000px;}
.y75{bottom:159.120000px;}
.y7e{bottom:163.335000px;}
.y5e{bottom:163.440000px;}
.y90{bottom:164.955000px;}
.yb8{bottom:169.560000px;}
.y74{bottom:177.660000px;}
.y5d{bottom:181.980000px;}
.y8a{bottom:184.530000px;}
.yb7{bottom:188.100000px;}
.y91{bottom:189.435000px;}
.y73{bottom:196.020000px;}
.y7f{bottom:196.815000px;}
.y5c{bottom:200.520000px;}
.yb6{bottom:206.460000px;}
.y45{bottom:212.250000px;}
.y92{bottom:213.870000px;}
.y72{bottom:214.590000px;}
.y5b{bottom:218.910000px;}
.y8b{bottom:223.665000px;}
.yb5{bottom:225.030000px;}
.y80{bottom:230.325000px;}
.y71{bottom:233.130000px;}
.y5a{bottom:237.450000px;}
.y93{bottom:238.320000px;}
.yb4{bottom:243.390000px;}
.y70{bottom:251.490000px;}
.y59{bottom:255.810000px;}
.yb3{bottom:261.930000px;}
.y8c{bottom:262.770000px;}
.y81{bottom:263.850000px;}
.y6f{bottom:269.310000px;}
.y86{bottom:269.640000px;}
.y58{bottom:274.350000px;}
.yb2{bottom:280.290000px;}
.y96{bottom:280.620000px;}
.y84{bottom:280.725000px;}
.y57{bottom:292.890000px;}
.y95{bottom:298.260000px;}
.y83{bottom:298.365000px;}
.yb1{bottom:298.830000px;}
.y56{bottom:311.250000px;}
.yb0{bottom:317.370000px;}
.y55{bottom:329.790000px;}
.yaf{bottom:335.730000px;}
.y54{bottom:348.150000px;}
.yae{bottom:364.710000px;}
.y53{bottom:366.690000px;}
.y2e{bottom:383.250000px;}
.y52{bottom:385.050000px;}
.yad{bottom:393.690000px;}
.y2d{bottom:401.790000px;}
.y51{bottom:403.590000px;}
.yac{bottom:412.230000px;}
.y2c{bottom:420.150000px;}
.y50{bottom:422.130000px;}
.yab{bottom:430.590000px;}
.y2b{bottom:438.690000px;}
.y4f{bottom:440.490000px;}
.y2a{bottom:457.095000px;}
.y4e{bottom:459.075000px;}
.yaa{bottom:459.615000px;}
.y29{bottom:475.635000px;}
.y4d{bottom:477.435000px;}
.ya9{bottom:478.155000px;}
.y28{bottom:494.175000px;}
.y4c{bottom:495.975000px;}
.ya8{bottom:506.955000px;}
.y27{bottom:512.535000px;}
.y4b{bottom:514.515000px;}
.ya7{bottom:525.495000px;}
.y26{bottom:531.075000px;}
.y4a{bottom:532.875000px;}
.y25{bottom:549.435000px;}
.y49{bottom:551.415000px;}
.ya6{bottom:554.475000px;}
.y24{bottom:567.975000px;}
.y48{bottom:569.775000px;}
.ya5{bottom:573.015000px;}
.y46{bottom:584.895000px;}
.y23{bottom:586.515000px;}
.ya4{bottom:591.375000px;}
.y6e{bottom:596.775000px;}
.y22{bottom:604.875000px;}
.y6d{bottom:615.315000px;}
.ya3{bottom:620.355000px;}
.y44{bottom:621.795000px;}
.y21{bottom:627.195000px;}
.y6c{bottom:633.675000px;}
.ya2{bottom:638.895000px;}
.y20{bottom:645.555000px;}
.y6b{bottom:652.215000px;}
.ya1{bottom:657.255000px;}
.y1f{bottom:664.095000px;}
.y6a{bottom:670.575000px;}
.y1e{bottom:682.485000px;}
.ya0{bottom:686.265000px;}
.y69{bottom:689.145000px;}
.y1d{bottom:701.025000px;}
.y9f{bottom:704.805000px;}
.y68{bottom:707.685000px;}
.y1c{bottom:719.385000px;}
.y9e{bottom:723.165000px;}
.y67{bottom:726.045000px;}
.y1b{bottom:737.925000px;}
.y9d{bottom:741.705000px;}
.y66{bottom:744.585000px;}
.y1a{bottom:756.465000px;}
.y9c{bottom:760.245000px;}
.y65{bottom:762.945000px;}
.y19{bottom:774.825000px;}
.y9b{bottom:778.605000px;}
.y64{bottom:784.185000px;}
.y18{bottom:793.365000px;}
.y9a{bottom:797.145000px;}
.y63{bottom:802.005000px;}
.y7a{bottom:802.260000px;}
.y17{bottom:811.725000px;}
.y99{bottom:815.505000px;}
.y16{bottom:830.265000px;}
.y98{bottom:834.045000px;}
.y15{bottom:848.805000px;}
.y43{bottom:852.585000px;}
.y14{bottom:869.505000px;}
.y42{bottom:870.945000px;}
.y13{bottom:887.865000px;}
.y41{bottom:889.485000px;}
.y12{bottom:906.405000px;}
.y40{bottom:907.845000px;}
.y11{bottom:924.810000px;}
.y3f{bottom:926.430000px;}
.y10{bottom:943.350000px;}
.y3e{bottom:944.790000px;}
.yf{bottom:961.890000px;}
.y3d{bottom:963.330000px;}
.ye{bottom:980.250000px;}
.y3c{bottom:981.870000px;}
.yd{bottom:998.790000px;}
.y3b{bottom:1000.230000px;}
.yc{bottom:1018.770000px;}
.y3a{bottom:1037.130000px;}
.yb{bottom:1045.230000px;}
.y39{bottom:1055.670000px;}
.y38{bottom:1074.210000px;}
.ya{bottom:1081.950000px;}
.y37{bottom:1092.570000px;}
.y7{bottom:1110.930000px;}
.y36{bottom:1111.110000px;}
.y2{bottom:1118.130000px;}
.y35{bottom:1129.470000px;}
.y34{bottom:1148.010000px;}
.y33{bottom:1166.400000px;}
.y1{bottom:1191.960000px;}
.y32{bottom:1193.400000px;}
.h7{height:18.360000px;}
.h5{height:30.077578px;}
.ha{height:36.900000px;}
.hc{height:50.597578px;}
.hd{height:50.719500px;}
.h4{height:53.645625px;}
.h2{height:53.709961px;}
.h6{height:65.884219px;}
.h3{height:73.836000px;}
.h8{height:76.201172px;}
.h9{height:227.370000px;}
.hb{height:323.820000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:8.820000px;}
.w7{width:177.870000px;}
.w8{width:180.750000px;}
.w6{width:181.110000px;}
.w3{width:364.605000px;}
.w4{width:366.735000px;}
.w9{width:539.745000px;}
.wa{width:540.000000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:8.100000px;}
.x18{left:10.620000px;}
.x25{left:15.810000px;}
.x1e{left:17.385000px;}
.x24{left:32.400000px;}
.x1d{left:33.990000px;}
.x6{left:40.680000px;}
.x20{left:64.905000px;}
.x27{left:74.670000px;}
.x1f{left:76.710000px;}
.x2{left:81.000000px;}
.x8{left:84.455987px;}
.x26{left:86.580000px;}
.x1c{left:94.355987px;}
.x4{left:102.420000px;}
.xf{left:107.135987px;}
.x5{left:119.880000px;}
.x1b{left:121.895987px;}
.x22{left:129.240000px;}
.x9{left:164.009987px;}
.x29{left:168.915000px;}
.x14{left:173.025000px;}
.x13{left:176.790000px;}
.xc{left:195.869987px;}
.x21{left:228.210000px;}
.x19{left:246.105000px;}
.x28{left:247.860000px;}
.xd{left:328.394987px;}
.x10{left:341.534987px;}
.x15{left:357.915000px;}
.x11{left:381.494987px;}
.xb{left:394.814987px;}
.x3{left:445.605000px;}
.xa{left:446.684987px;}
.x23{left:486.900000px;}
.x17{left:535.785000px;}
.xe{left:633.389987px;}
.x1a{left:716.729987px;}
.x12{left:785.309987px;}
.x7{left:803.520000px;}
.x1{left:812.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.666667pt;}
.ls5{letter-spacing:-0.481067pt;}
.ls2{letter-spacing:-0.297067pt;}
.lsa{letter-spacing:-0.266133pt;}
.ls6{letter-spacing:-0.230400pt;}
.ls4{letter-spacing:-0.148267pt;}
.lsf{letter-spacing:-0.107733pt;}
.lse{letter-spacing:-0.080000pt;}
.ls3{letter-spacing:-0.025600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.158933pt;}
.ls11{letter-spacing:0.245867pt;}
.lsc{letter-spacing:0.320000pt;}
.ls9{letter-spacing:7.449600pt;}
.lsb{letter-spacing:16.388267pt;}
.ls7{letter-spacing:28.569600pt;}
.ls10{letter-spacing:38.103040pt;}
.ws5{word-spacing:-56.320000pt;}
.wsb{word-spacing:-12.636267pt;}
.ws6{word-spacing:-12.549333pt;}
.ws2{word-spacing:-12.390400pt;}
.ws1{word-spacing:-12.093333pt;}
.ws3{word-spacing:-11.909333pt;}
.ws9{word-spacing:-11.714560pt;}
.ws0{word-spacing:-11.702400pt;}
.ws7{word-spacing:-11.686400pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:148.434133pt;}
.wsa{word-spacing:177.874133pt;}
._5{margin-left:-10.025813pt;}
._1d{margin-left:-8.411307pt;}
._1a{margin-left:-3.018240pt;}
._0{margin-left:-1.126400pt;}
._2{width:1.096533pt;}
._6{width:2.252800pt;}
._7{width:3.157333pt;}
._a{width:4.167680pt;}
._b{width:5.068800pt;}
._15{width:6.589440pt;}
._11{width:7.941120pt;}
._12{width:8.898560pt;}
._c{width:9.968640pt;}
._d{width:11.264000pt;}
._16{width:13.460480pt;}
._14{width:14.417920pt;}
._13{width:15.600640pt;}
._17{width:16.896000pt;}
._4{width:18.016640pt;}
._3{width:19.056640pt;}
._9{width:20.218880pt;}
._8{width:21.120000pt;}
._1{width:22.276267pt;}
._1c{width:23.372800pt;}
._18{width:28.840533pt;}
._e{width:29.864107pt;}
._f{width:32.609280pt;}
._10{width:33.904640pt;}
._19{width:108.457387pt;}
._1b{width:190.599467pt;}
.fs2{font-size:26.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.040000pt;}
.y97{bottom:15.200000pt;}
.y85{bottom:15.293333pt;}
.y47{bottom:19.360000pt;}
.y5{bottom:19.520000pt;}
.y4{bottom:35.866667pt;}
.y82{bottom:39.013333pt;}
.y94{bottom:42.853333pt;}
.y9{bottom:49.280000pt;}
.y8{bottom:51.840000pt;}
.y3{bottom:52.346667pt;}
.y7b{bottom:55.840000pt;}
.y87{bottom:59.680000pt;}
.y79{bottom:75.840000pt;}
.y62{bottom:79.680000pt;}
.y8d{bottom:81.413333pt;}
.ybc{bottom:85.120000pt;}
.y7c{bottom:85.600000pt;}
.y31{bottom:85.760000pt;}
.y78{bottom:92.160000pt;}
.y88{bottom:94.466667pt;}
.y61{bottom:96.160000pt;}
.ybb{bottom:101.440000pt;}
.y30{bottom:102.240000pt;}
.y8e{bottom:103.173333pt;}
.y77{bottom:108.640000pt;}
.y60{bottom:112.480000pt;}
.y7d{bottom:115.386667pt;}
.y2f{bottom:115.680000pt;}
.yba{bottom:117.920000pt;}
.y8f{bottom:124.893333pt;}
.y76{bottom:125.120000pt;}
.y5f{bottom:128.960000pt;}
.y89{bottom:129.253333pt;}
.yb9{bottom:134.240000pt;}
.y75{bottom:141.440000pt;}
.y7e{bottom:145.186667pt;}
.y5e{bottom:145.280000pt;}
.y90{bottom:146.626667pt;}
.yb8{bottom:150.720000pt;}
.y74{bottom:157.920000pt;}
.y5d{bottom:161.760000pt;}
.y8a{bottom:164.026667pt;}
.yb7{bottom:167.200000pt;}
.y91{bottom:168.386667pt;}
.y73{bottom:174.240000pt;}
.y7f{bottom:174.946667pt;}
.y5c{bottom:178.240000pt;}
.yb6{bottom:183.520000pt;}
.y45{bottom:188.666667pt;}
.y92{bottom:190.106667pt;}
.y72{bottom:190.746667pt;}
.y5b{bottom:194.586667pt;}
.y8b{bottom:198.813333pt;}
.yb5{bottom:200.026667pt;}
.y80{bottom:204.733333pt;}
.y71{bottom:207.226667pt;}
.y5a{bottom:211.066667pt;}
.y93{bottom:211.840000pt;}
.yb4{bottom:216.346667pt;}
.y70{bottom:223.546667pt;}
.y59{bottom:227.386667pt;}
.yb3{bottom:232.826667pt;}
.y8c{bottom:233.573333pt;}
.y81{bottom:234.533333pt;}
.y6f{bottom:239.386667pt;}
.y86{bottom:239.680000pt;}
.y58{bottom:243.866667pt;}
.yb2{bottom:249.146667pt;}
.y96{bottom:249.440000pt;}
.y84{bottom:249.533333pt;}
.y57{bottom:260.346667pt;}
.y95{bottom:265.120000pt;}
.y83{bottom:265.213333pt;}
.yb1{bottom:265.626667pt;}
.y56{bottom:276.666667pt;}
.yb0{bottom:282.106667pt;}
.y55{bottom:293.146667pt;}
.yaf{bottom:298.426667pt;}
.y54{bottom:309.466667pt;}
.yae{bottom:324.186667pt;}
.y53{bottom:325.946667pt;}
.y2e{bottom:340.666667pt;}
.y52{bottom:342.266667pt;}
.yad{bottom:349.946667pt;}
.y2d{bottom:357.146667pt;}
.y51{bottom:358.746667pt;}
.yac{bottom:366.426667pt;}
.y2c{bottom:373.466667pt;}
.y50{bottom:375.226667pt;}
.yab{bottom:382.746667pt;}
.y2b{bottom:389.946667pt;}
.y4f{bottom:391.546667pt;}
.y2a{bottom:406.306667pt;}
.y4e{bottom:408.066667pt;}
.yaa{bottom:408.546667pt;}
.y29{bottom:422.786667pt;}
.y4d{bottom:424.386667pt;}
.ya9{bottom:425.026667pt;}
.y28{bottom:439.266667pt;}
.y4c{bottom:440.866667pt;}
.ya8{bottom:450.626667pt;}
.y27{bottom:455.586667pt;}
.y4b{bottom:457.346667pt;}
.ya7{bottom:467.106667pt;}
.y26{bottom:472.066667pt;}
.y4a{bottom:473.666667pt;}
.y25{bottom:488.386667pt;}
.y49{bottom:490.146667pt;}
.ya6{bottom:492.866667pt;}
.y24{bottom:504.866667pt;}
.y48{bottom:506.466667pt;}
.ya5{bottom:509.346667pt;}
.y46{bottom:519.906667pt;}
.y23{bottom:521.346667pt;}
.ya4{bottom:525.666667pt;}
.y6e{bottom:530.466667pt;}
.y22{bottom:537.666667pt;}
.y6d{bottom:546.946667pt;}
.ya3{bottom:551.426667pt;}
.y44{bottom:552.706667pt;}
.y21{bottom:557.506667pt;}
.y6c{bottom:563.266667pt;}
.ya2{bottom:567.906667pt;}
.y20{bottom:573.826667pt;}
.y6b{bottom:579.746667pt;}
.ya1{bottom:584.226667pt;}
.y1f{bottom:590.306667pt;}
.y6a{bottom:596.066667pt;}
.y1e{bottom:606.653333pt;}
.ya0{bottom:610.013333pt;}
.y69{bottom:612.573333pt;}
.y1d{bottom:623.133333pt;}
.y9f{bottom:626.493333pt;}
.y68{bottom:629.053333pt;}
.y1c{bottom:639.453333pt;}
.y9e{bottom:642.813333pt;}
.y67{bottom:645.373333pt;}
.y1b{bottom:655.933333pt;}
.y9d{bottom:659.293333pt;}
.y66{bottom:661.853333pt;}
.y1a{bottom:672.413333pt;}
.y9c{bottom:675.773333pt;}
.y65{bottom:678.173333pt;}
.y19{bottom:688.733333pt;}
.y9b{bottom:692.093333pt;}
.y64{bottom:697.053333pt;}
.y18{bottom:705.213333pt;}
.y9a{bottom:708.573333pt;}
.y63{bottom:712.893333pt;}
.y7a{bottom:713.120000pt;}
.y17{bottom:721.533333pt;}
.y99{bottom:724.893333pt;}
.y16{bottom:738.013333pt;}
.y98{bottom:741.373333pt;}
.y15{bottom:754.493333pt;}
.y43{bottom:757.853333pt;}
.y14{bottom:772.893333pt;}
.y42{bottom:774.173333pt;}
.y13{bottom:789.213333pt;}
.y41{bottom:790.653333pt;}
.y12{bottom:805.693333pt;}
.y40{bottom:806.973333pt;}
.y11{bottom:822.053333pt;}
.y3f{bottom:823.493333pt;}
.y10{bottom:838.533333pt;}
.y3e{bottom:839.813333pt;}
.yf{bottom:855.013333pt;}
.y3d{bottom:856.293333pt;}
.ye{bottom:871.333333pt;}
.y3c{bottom:872.773333pt;}
.yd{bottom:887.813333pt;}
.y3b{bottom:889.093333pt;}
.yc{bottom:905.573333pt;}
.y3a{bottom:921.893333pt;}
.yb{bottom:929.093333pt;}
.y39{bottom:938.373333pt;}
.y38{bottom:954.853333pt;}
.ya{bottom:961.733333pt;}
.y37{bottom:971.173333pt;}
.y7{bottom:987.493333pt;}
.y36{bottom:987.653333pt;}
.y2{bottom:993.893333pt;}
.y35{bottom:1003.973333pt;}
.y34{bottom:1020.453333pt;}
.y33{bottom:1036.800000pt;}
.y1{bottom:1059.520000pt;}
.y32{bottom:1060.800000pt;}
.h7{height:16.320000pt;}
.h5{height:26.735625pt;}
.ha{height:32.800000pt;}
.hc{height:44.975625pt;}
.hd{height:45.084000pt;}
.h4{height:47.685000pt;}
.h2{height:47.742188pt;}
.h6{height:58.563750pt;}
.h3{height:65.632000pt;}
.h8{height:67.734375pt;}
.h9{height:202.106667pt;}
.hb{height:287.840000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:7.840000pt;}
.w7{width:158.106667pt;}
.w8{width:160.666667pt;}
.w6{width:160.986667pt;}
.w3{width:324.093333pt;}
.w4{width:325.986667pt;}
.w9{width:479.773333pt;}
.wa{width:480.000000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:7.200000pt;}
.x18{left:9.440000pt;}
.x25{left:14.053333pt;}
.x1e{left:15.453333pt;}
.x24{left:28.800000pt;}
.x1d{left:30.213333pt;}
.x6{left:36.160000pt;}
.x20{left:57.693333pt;}
.x27{left:66.373333pt;}
.x1f{left:68.186667pt;}
.x2{left:72.000000pt;}
.x8{left:75.071988pt;}
.x26{left:76.960000pt;}
.x1c{left:83.871988pt;}
.x4{left:91.040000pt;}
.xf{left:95.231988pt;}
.x5{left:106.560000pt;}
.x1b{left:108.351988pt;}
.x22{left:114.880000pt;}
.x9{left:145.786655pt;}
.x29{left:150.146667pt;}
.x14{left:153.800000pt;}
.x13{left:157.146667pt;}
.xc{left:174.106655pt;}
.x21{left:202.853333pt;}
.x19{left:218.760000pt;}
.x28{left:220.320000pt;}
.xd{left:291.906655pt;}
.x10{left:303.586655pt;}
.x15{left:318.146667pt;}
.x11{left:339.106655pt;}
.xb{left:350.946655pt;}
.x3{left:396.093333pt;}
.xa{left:397.053322pt;}
.x23{left:432.800000pt;}
.x17{left:476.253333pt;}
.xe{left:563.013322pt;}
.x1a{left:637.093322pt;}
.x12{left:698.053322pt;}
.x7{left:714.240000pt;}
.x1{left:722.079988pt;}
}




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