
    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_412c937c85d29b2d4e5b2aab.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_55ee91516e37e01709e032ba.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7893db360dc4fe2a296bbac2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.067383;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_ed1234ef9db97b2ad3247c56.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.067383;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_65f0e4a51477cfb8138eedf5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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;}
.ls8{letter-spacing:-0.229800px;}
.ls5{letter-spacing:-0.207600px;}
.ls6{letter-spacing:-0.172200px;}
.ls10{letter-spacing:-0.105600px;}
.lsb{letter-spacing:-0.052560px;}
.ls3{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.023040px;}
.ls9{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.305400px;}
.lsc{letter-spacing:0.310320px;}
.lsa{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.547200px;}
.ls1{letter-spacing:0.720000px;}
.lse{letter-spacing:46.026720px;}
.lsd{letter-spacing:176.212800px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-84.240000px;}
.ws2{word-spacing:-19.038240px;}
.ws9{word-spacing:-18.932640px;}
.ws6{word-spacing:-18.808440px;}
.ws1{word-spacing:-14.878200px;}
.ws7{word-spacing:-14.679600px;}
.ws0{word-spacing:-14.572800px;}
.wsa{word-spacing:-13.160160px;}
.ws3{word-spacing:-13.147200px;}
.ws8{word-spacing:-13.094640px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-3.645360px;}
._e{margin-left:-2.211120px;}
._0{margin-left:-1.095120px;}
._1{width:1.002720px;}
._2{width:2.004720px;}
._3{width:3.042960px;}
._4{width:4.780800px;}
._7{width:6.467280px;}
._9{width:7.589520px;}
._5{width:9.131760px;}
._6{width:10.162080px;}
._8{width:11.304960px;}
._11{width:14.842080px;}
._10{width:16.015680px;}
._18{width:17.091360px;}
._12{width:18.346320px;}
._13{width:20.105760px;}
._d{width:22.423200px;}
._c{width:23.605200px;}
._a{width:24.753840px;}
._b{width:25.862880px;}
._17{width:33.107040px;}
._15{width:44.579520px;}
._1b{width:140.568720px;}
._1a{width:141.631200px;}
._19{width:176.212800px;}
._16{width:1337.152800px;}
._14{width:2808.412800px;}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:5.220000px;}
.y56{bottom:7.560000px;}
.y5c{bottom:8.640000px;}
.y58{bottom:18.000000px;}
.y59{bottom:28.440000px;}
.y5b{bottom:29.520000px;}
.y7{bottom:57.420000px;}
.y6{bottom:76.896000px;}
.y5{bottom:96.156000px;}
.ybd{bottom:117.576000px;}
.y4b{bottom:130.896000px;}
.y52{bottom:131.076000px;}
.y9a{bottom:131.436000px;}
.ybc{bottom:136.476000px;}
.y2e{bottom:136.656000px;}
.y4a{bottom:149.976000px;}
.y99{bottom:150.510000px;}
.y7f{bottom:151.410000px;}
.y2d{bottom:155.550000px;}
.y49{bottom:168.870000px;}
.y98{bottom:169.410000px;}
.y2c{bottom:174.450000px;}
.y7e{bottom:182.370000px;}
.y48{bottom:187.950000px;}
.y2b{bottom:193.530000px;}
.y97{bottom:200.370000px;}
.y7d{bottom:201.450000px;}
.y47{bottom:206.850000px;}
.y2a{bottom:212.430000px;}
.y96{bottom:219.450000px;}
.y7c{bottom:220.350000px;}
.ybb{bottom:231.330000px;}
.y29{bottom:231.510000px;}
.y46{bottom:237.810000px;}
.y95{bottom:238.350000px;}
.y7b{bottom:239.430000px;}
.y28{bottom:250.410000px;}
.y94{bottom:257.430000px;}
.y45{bottom:265.350000px;}
.y27{bottom:269.490000px;}
.y7a{bottom:270.390000px;}
.yba{bottom:284.250000px;}
.y26{bottom:288.390000px;}
.y79{bottom:289.290000px;}
.y93{bottom:307.290000px;}
.y25{bottom:307.470000px;}
.y78{bottom:308.370000px;}
.yb9{bottom:320.970000px;}
.y24{bottom:326.370000px;}
.y77{bottom:327.270000px;}
.y23{bottom:345.315000px;}
.y76{bottom:346.395000px;}
.yb8{bottom:351.975000px;}
.y92{bottom:364.215000px;}
.y22{bottom:364.395000px;}
.y75{bottom:365.295000px;}
.yb7{bottom:371.055000px;}
.y21{bottom:383.295000px;}
.y74{bottom:384.195000px;}
.yb6{bottom:389.955000px;}
.y91{bottom:402.195000px;}
.y20{bottom:402.375000px;}
.y73{bottom:403.275000px;}
.yb5{bottom:421.095000px;}
.y1f{bottom:421.275000px;}
.y72{bottom:422.175000px;}
.yb4{bottom:438.735000px;}
.y90{bottom:440.175000px;}
.y1e{bottom:440.355000px;}
.y71{bottom:441.255000px;}
.yb3{bottom:456.375000px;}
.y8f{bottom:459.255000px;}
.y70{bottom:460.155000px;}
.yb2{bottom:473.835000px;}
.y1d{bottom:474.195000px;}
.y8e{bottom:478.155000px;}
.y6f{bottom:479.235000px;}
.yb1{bottom:491.475000px;}
.y8d{bottom:497.055000px;}
.yb0{bottom:509.115000px;}
.y6e{bottom:510.195000px;}
.y1c{bottom:514.695000px;}
.y8c{bottom:516.135000px;}
.y1b{bottom:533.595000px;}
.y8b{bottom:535.035000px;}
.yaf{bottom:540.075000px;}
.y6d{bottom:544.035000px;}
.y8a{bottom:554.115000px;}
.yae{bottom:557.715000px;}
.y1a{bottom:567.615000px;}
.y89{bottom:573.015000px;}
.yad{bottom:575.355000px;}
.y6c{bottom:580.755000px;}
.yac{bottom:592.995000px;}
.y6b{bottom:599.835000px;}
.y88{bottom:604.005000px;}
.y19{bottom:604.365000px;}
.y51{bottom:610.305000px;}
.yab{bottom:610.485000px;}
.y6a{bottom:618.765000px;}
.y18{bottom:623.265000px;}
.y87{bottom:631.545000px;}
.y69{bottom:637.665000px;}
.y50{bottom:641.265000px;}
.y17{bottom:642.345000px;}
.yaa{bottom:645.945000px;}
.y68{bottom:656.745000px;}
.y44{bottom:658.005000px;}
.y16{bottom:661.245000px;}
.y4f{bottom:672.225000px;}
.y67{bottom:675.645000px;}
.y43{bottom:677.085000px;}
.y15{bottom:680.145000px;}
.ya9{bottom:682.665000px;}
.y66{bottom:694.725000px;}
.y42{bottom:695.985000px;}
.y14{bottom:699.225000px;}
.y4e{bottom:699.945000px;}
.y65{bottom:713.625000px;}
.y41{bottom:714.885000px;}
.y13{bottom:718.125000px;}
.y64{bottom:732.705000px;}
.y40{bottom:733.965000px;}
.y12{bottom:737.205000px;}
.ya8{bottom:744.585000px;}
.y3f{bottom:752.865000px;}
.y11{bottom:756.105000px;}
.y63{bottom:763.665000px;}
.y3e{bottom:771.945000px;}
.ya7{bottom:775.545000px;}
.y10{bottom:777.885000px;}
.y62{bottom:782.565000px;}
.y3d{bottom:790.845000px;}
.ya6{bottom:794.625000px;}
.y61{bottom:801.645000px;}
.yf{bottom:810.645000px;}
.y60{bottom:820.545000px;}
.y3c{bottom:824.865000px;}
.ya5{bottom:825.585000px;}
.ye{bottom:841.065000px;}
.y5f{bottom:851.505000px;}
.yc1{bottom:856.185000px;}
.ya4{bottom:859.425000px;}
.y3b{bottom:861.585000px;}
.yd{bottom:873.690000px;}
.yc0{bottom:875.310000px;}
.y3a{bottom:880.530000px;}
.y5e{bottom:882.510000px;}
.ybf{bottom:894.210000px;}
.ya3{bottom:896.190000px;}
.y39{bottom:899.430000px;}
.y5d{bottom:901.590000px;}
.yc{bottom:904.110000px;}
.ybe{bottom:913.290000px;}
.ya2{bottom:915.270000px;}
.y38{bottom:918.510000px;}
.y86{bottom:932.190000px;}
.ya1{bottom:934.170000px;}
.y37{bottom:937.410000px;}
.yb{bottom:947.310000px;}
.y85{bottom:951.270000px;}
.ya0{bottom:953.070000px;}
.y57{bottom:956.130000px;}
.y36{bottom:956.490000px;}
.y84{bottom:970.170000px;}
.y35{bottom:975.390000px;}
.y9f{bottom:984.030000px;}
.y83{bottom:989.070000px;}
.y34{bottom:994.470000px;}
.ya{bottom:994.830000px;}
.y82{bottom:1008.150000px;}
.y55{bottom:1010.670000px;}
.y33{bottom:1013.370000px;}
.y9e{bottom:1015.170000px;}
.y81{bottom:1027.050000px;}
.y32{bottom:1032.450000px;}
.y9d{bottom:1034.070000px;}
.y9{bottom:1042.530000px;}
.y80{bottom:1046.130000px;}
.y9c{bottom:1052.970000px;}
.y54{bottom:1059.990000px;}
.y4d{bottom:1065.030000px;}
.y31{bottom:1066.290000px;}
.y9b{bottom:1072.050000px;}
.y4c{bottom:1084.110000px;}
.y8{bottom:1090.050000px;}
.y53{bottom:1090.950000px;}
.y30{bottom:1103.010000px;}
.y2f{bottom:1121.910000px;}
.y4{bottom:1140.660000px;}
.y3{bottom:1160.100000px;}
.y2{bottom:1179.360000px;}
.y1{bottom:1199.700000px;}
.h8{height:27.720000px;}
.h9{height:48.600000px;}
.h7{height:50.597578px;}
.h3{height:56.084062px;}
.h4{height:65.884219px;}
.h2{height:71.324297px;}
.h6{height:86.255508px;}
.h5{height:159.978164px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.860000px;}
.w5{width:241.410000px;}
.w4{width:405.795000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.080000px;}
.x4{left:86.399987px;}
.x9{left:89.856000px;}
.xd{left:113.435987px;}
.xe{left:140.435987px;}
.x1{left:150.329987px;}
.xb{left:152.490000px;}
.x2{left:237.269987px;}
.x3{left:327.134987px;}
.xc{left:562.065000px;}
.x7{left:590.504987px;}
.x8{left:707.549987px;}
.x6{left:788.369987px;}
.x5{left:806.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.204267pt;}
.ls5{letter-spacing:-0.184533pt;}
.ls6{letter-spacing:-0.153067pt;}
.ls10{letter-spacing:-0.093867pt;}
.lsb{letter-spacing:-0.046720pt;}
.ls3{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.020480pt;}
.ls9{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.271467pt;}
.lsc{letter-spacing:0.275840pt;}
.lsa{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.486400pt;}
.ls1{letter-spacing:0.640000pt;}
.lse{letter-spacing:40.912640pt;}
.lsd{letter-spacing:156.633600pt;}
.ws5{word-spacing:-74.880000pt;}
.ws2{word-spacing:-16.922880pt;}
.ws9{word-spacing:-16.829013pt;}
.ws6{word-spacing:-16.718613pt;}
.ws1{word-spacing:-13.225067pt;}
.ws7{word-spacing:-13.048533pt;}
.ws0{word-spacing:-12.953600pt;}
.wsa{word-spacing:-11.697920pt;}
.ws3{word-spacing:-11.686400pt;}
.ws8{word-spacing:-11.639680pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-3.240320pt;}
._e{margin-left:-1.965440pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.891307pt;}
._2{width:1.781973pt;}
._3{width:2.704853pt;}
._4{width:4.249600pt;}
._7{width:5.748693pt;}
._9{width:6.746240pt;}
._5{width:8.117120pt;}
._6{width:9.032960pt;}
._8{width:10.048853pt;}
._11{width:13.192960pt;}
._10{width:14.236160pt;}
._18{width:15.192320pt;}
._12{width:16.307840pt;}
._13{width:17.871787pt;}
._d{width:19.931733pt;}
._c{width:20.982400pt;}
._a{width:22.003413pt;}
._b{width:22.989227pt;}
._17{width:29.428480pt;}
._15{width:39.626240pt;}
._1b{width:124.949973pt;}
._1a{width:125.894400pt;}
._19{width:156.633600pt;}
._16{width:1188.580267pt;}
._14{width:2496.366933pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:4.640000pt;}
.y56{bottom:6.720000pt;}
.y5c{bottom:7.680000pt;}
.y58{bottom:16.000000pt;}
.y59{bottom:25.280000pt;}
.y5b{bottom:26.240000pt;}
.y7{bottom:51.040000pt;}
.y6{bottom:68.352000pt;}
.y5{bottom:85.472000pt;}
.ybd{bottom:104.512000pt;}
.y4b{bottom:116.352000pt;}
.y52{bottom:116.512000pt;}
.y9a{bottom:116.832000pt;}
.ybc{bottom:121.312000pt;}
.y2e{bottom:121.472000pt;}
.y4a{bottom:133.312000pt;}
.y99{bottom:133.786667pt;}
.y7f{bottom:134.586667pt;}
.y2d{bottom:138.266667pt;}
.y49{bottom:150.106667pt;}
.y98{bottom:150.586667pt;}
.y2c{bottom:155.066667pt;}
.y7e{bottom:162.106667pt;}
.y48{bottom:167.066667pt;}
.y2b{bottom:172.026667pt;}
.y97{bottom:178.106667pt;}
.y7d{bottom:179.066667pt;}
.y47{bottom:183.866667pt;}
.y2a{bottom:188.826667pt;}
.y96{bottom:195.066667pt;}
.y7c{bottom:195.866667pt;}
.ybb{bottom:205.626667pt;}
.y29{bottom:205.786667pt;}
.y46{bottom:211.386667pt;}
.y95{bottom:211.866667pt;}
.y7b{bottom:212.826667pt;}
.y28{bottom:222.586667pt;}
.y94{bottom:228.826667pt;}
.y45{bottom:235.866667pt;}
.y27{bottom:239.546667pt;}
.y7a{bottom:240.346667pt;}
.yba{bottom:252.666667pt;}
.y26{bottom:256.346667pt;}
.y79{bottom:257.146667pt;}
.y93{bottom:273.146667pt;}
.y25{bottom:273.306667pt;}
.y78{bottom:274.106667pt;}
.yb9{bottom:285.306667pt;}
.y24{bottom:290.106667pt;}
.y77{bottom:290.906667pt;}
.y23{bottom:306.946667pt;}
.y76{bottom:307.906667pt;}
.yb8{bottom:312.866667pt;}
.y92{bottom:323.746667pt;}
.y22{bottom:323.906667pt;}
.y75{bottom:324.706667pt;}
.yb7{bottom:329.826667pt;}
.y21{bottom:340.706667pt;}
.y74{bottom:341.506667pt;}
.yb6{bottom:346.626667pt;}
.y91{bottom:357.506667pt;}
.y20{bottom:357.666667pt;}
.y73{bottom:358.466667pt;}
.yb5{bottom:374.306667pt;}
.y1f{bottom:374.466667pt;}
.y72{bottom:375.266667pt;}
.yb4{bottom:389.986667pt;}
.y90{bottom:391.266667pt;}
.y1e{bottom:391.426667pt;}
.y71{bottom:392.226667pt;}
.yb3{bottom:405.666667pt;}
.y8f{bottom:408.226667pt;}
.y70{bottom:409.026667pt;}
.yb2{bottom:421.186667pt;}
.y1d{bottom:421.506667pt;}
.y8e{bottom:425.026667pt;}
.y6f{bottom:425.986667pt;}
.yb1{bottom:436.866667pt;}
.y8d{bottom:441.826667pt;}
.yb0{bottom:452.546667pt;}
.y6e{bottom:453.506667pt;}
.y1c{bottom:457.506667pt;}
.y8c{bottom:458.786667pt;}
.y1b{bottom:474.306667pt;}
.y8b{bottom:475.586667pt;}
.yaf{bottom:480.066667pt;}
.y6d{bottom:483.586667pt;}
.y8a{bottom:492.546667pt;}
.yae{bottom:495.746667pt;}
.y1a{bottom:504.546667pt;}
.y89{bottom:509.346667pt;}
.yad{bottom:511.426667pt;}
.y6c{bottom:516.226667pt;}
.yac{bottom:527.106667pt;}
.y6b{bottom:533.186667pt;}
.y88{bottom:536.893333pt;}
.y19{bottom:537.213333pt;}
.y51{bottom:542.493333pt;}
.yab{bottom:542.653333pt;}
.y6a{bottom:550.013333pt;}
.y18{bottom:554.013333pt;}
.y87{bottom:561.373333pt;}
.y69{bottom:566.813333pt;}
.y50{bottom:570.013333pt;}
.y17{bottom:570.973333pt;}
.yaa{bottom:574.173333pt;}
.y68{bottom:583.773333pt;}
.y44{bottom:584.893333pt;}
.y16{bottom:587.773333pt;}
.y4f{bottom:597.533333pt;}
.y67{bottom:600.573333pt;}
.y43{bottom:601.853333pt;}
.y15{bottom:604.573333pt;}
.ya9{bottom:606.813333pt;}
.y66{bottom:617.533333pt;}
.y42{bottom:618.653333pt;}
.y14{bottom:621.533333pt;}
.y4e{bottom:622.173333pt;}
.y65{bottom:634.333333pt;}
.y41{bottom:635.453333pt;}
.y13{bottom:638.333333pt;}
.y64{bottom:651.293333pt;}
.y40{bottom:652.413333pt;}
.y12{bottom:655.293333pt;}
.ya8{bottom:661.853333pt;}
.y3f{bottom:669.213333pt;}
.y11{bottom:672.093333pt;}
.y63{bottom:678.813333pt;}
.y3e{bottom:686.173333pt;}
.ya7{bottom:689.373333pt;}
.y10{bottom:691.453333pt;}
.y62{bottom:695.613333pt;}
.y3d{bottom:702.973333pt;}
.ya6{bottom:706.333333pt;}
.y61{bottom:712.573333pt;}
.yf{bottom:720.573333pt;}
.y60{bottom:729.373333pt;}
.y3c{bottom:733.213333pt;}
.ya5{bottom:733.853333pt;}
.ye{bottom:747.613333pt;}
.y5f{bottom:756.893333pt;}
.yc1{bottom:761.053333pt;}
.ya4{bottom:763.933333pt;}
.y3b{bottom:765.853333pt;}
.yd{bottom:776.613333pt;}
.yc0{bottom:778.053333pt;}
.y3a{bottom:782.693333pt;}
.y5e{bottom:784.453333pt;}
.ybf{bottom:794.853333pt;}
.ya3{bottom:796.613333pt;}
.y39{bottom:799.493333pt;}
.y5d{bottom:801.413333pt;}
.yc{bottom:803.653333pt;}
.ybe{bottom:811.813333pt;}
.ya2{bottom:813.573333pt;}
.y38{bottom:816.453333pt;}
.y86{bottom:828.613333pt;}
.ya1{bottom:830.373333pt;}
.y37{bottom:833.253333pt;}
.yb{bottom:842.053333pt;}
.y85{bottom:845.573333pt;}
.ya0{bottom:847.173333pt;}
.y57{bottom:849.893333pt;}
.y36{bottom:850.213333pt;}
.y84{bottom:862.373333pt;}
.y35{bottom:867.013333pt;}
.y9f{bottom:874.693333pt;}
.y83{bottom:879.173333pt;}
.y34{bottom:883.973333pt;}
.ya{bottom:884.293333pt;}
.y82{bottom:896.133333pt;}
.y55{bottom:898.373333pt;}
.y33{bottom:900.773333pt;}
.y9e{bottom:902.373333pt;}
.y81{bottom:912.933333pt;}
.y32{bottom:917.733333pt;}
.y9d{bottom:919.173333pt;}
.y9{bottom:926.693333pt;}
.y80{bottom:929.893333pt;}
.y9c{bottom:935.973333pt;}
.y54{bottom:942.213333pt;}
.y4d{bottom:946.693333pt;}
.y31{bottom:947.813333pt;}
.y9b{bottom:952.933333pt;}
.y4c{bottom:963.653333pt;}
.y8{bottom:968.933333pt;}
.y53{bottom:969.733333pt;}
.y30{bottom:980.453333pt;}
.y2f{bottom:997.253333pt;}
.y4{bottom:1013.920000pt;}
.y3{bottom:1031.200000pt;}
.y2{bottom:1048.320000pt;}
.y1{bottom:1066.400000pt;}
.h8{height:24.640000pt;}
.h9{height:43.200000pt;}
.h7{height:44.975625pt;}
.h3{height:49.852500pt;}
.h4{height:58.563750pt;}
.h2{height:63.399375pt;}
.h6{height:76.671562pt;}
.h5{height:142.202812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.320000pt;}
.w5{width:214.586667pt;}
.w4{width:360.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:0.960000pt;}
.x4{left:76.799988pt;}
.x9{left:79.872000pt;}
.xd{left:100.831988pt;}
.xe{left:124.831988pt;}
.x1{left:133.626655pt;}
.xb{left:135.546667pt;}
.x2{left:210.906655pt;}
.x3{left:290.786655pt;}
.xc{left:499.613333pt;}
.x7{left:524.893322pt;}
.x8{left:628.933322pt;}
.x6{left:700.773322pt;}
.x5{left:717.093322pt;}
}




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