
    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_653566344c063698c4d02515.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_e746d18da37fa6d2a609ba2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_544c1bb820a30eb996f34d5e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_edd5601b5e0ef8986f817ec6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5c68c5663c91f86e6f4c0d34.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_07ae93438e45119b55e51b45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102051;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_5e87d61a5da33190678be2fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e181673e0f9f87aaaf2a9711.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.851562;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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;}
.ls7{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.252000px;}
.ls6{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.792000px;}
.lsa{letter-spacing:2.880000px;}
.lsd{letter-spacing:14.343948px;}
.lse{letter-spacing:14.419842px;}
.lsb{letter-spacing:64.397280px;}
.ls5{letter-spacing:147.197280px;}
.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;}
}
.ws6{word-spacing:-90.237853px;}
.ws4{word-spacing:-75.893905px;}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws2{word-spacing:0.000000px;}
._22{margin-left:-14.306001px;}
._20{margin-left:-5.334960px;}
._10{margin-left:-4.320000px;}
._18{margin-left:-2.419200px;}
._0{margin-left:-1.324800px;}
._3{width:1.518960px;}
._e{width:3.168000px;}
._d{width:4.536000px;}
._9{width:6.292800px;}
._8{width:7.488000px;}
._13{width:8.568000px;}
._16{width:9.648000px;}
._21{width:10.728000px;}
._19{width:11.952000px;}
._4{width:13.706880px;}
._5{width:14.760240px;}
._1a{width:15.982560px;}
._1f{width:16.993440px;}
._14{width:19.440000px;}
._15{width:20.880000px;}
._f{width:22.536000px;}
._6{width:23.832000px;}
._7{width:24.912000px;}
._1b{width:26.856000px;}
._1c{width:28.008000px;}
._1d{width:29.016000px;}
._1e{width:30.168000px;}
._c{width:31.464000px;}
._a{width:33.552000px;}
._11{width:34.681680px;}
._b{width:35.933040px;}
._17{width:47.664000px;}
._12{width:61.920000px;}
._2{width:74.884320px;}
._1{width:76.512240px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:102.636000px;}
.y3{bottom:121.536000px;}
.y2{bottom:146.736000px;}
.ya1{bottom:173.370000px;}
.y4f{bottom:179.670000px;}
.y31{bottom:187.050000px;}
.ya0{bottom:194.070000px;}
.y7c{bottom:194.430000px;}
.y30{bottom:207.750000px;}
.y4e{bottom:210.630000px;}
.y9f{bottom:214.770000px;}
.y61{bottom:218.010000px;}
.y7b{bottom:225.390000px;}
.y2f{bottom:228.450000px;}
.y9e{bottom:235.470000px;}
.y4d{bottom:241.770000px;}
.y2e{bottom:249.150000px;}
.y9d{bottom:256.170000px;}
.y7a{bottom:256.350000px;}
.y2d{bottom:269.850000px;}
.y4c{bottom:272.730000px;}
.y9c{bottom:276.870000px;}
.y60{bottom:280.110000px;}
.y79{bottom:287.490000px;}
.y2c{bottom:290.550000px;}
.y9b{bottom:298.830000px;}
.y4b{bottom:303.870000px;}
.y2b{bottom:311.250000px;}
.y78{bottom:318.450000px;}
.y9a{bottom:320.970000px;}
.y2a{bottom:331.950000px;}
.y4a{bottom:334.830000px;}
.y99{bottom:341.715000px;}
.y5f{bottom:342.255000px;}
.y77{bottom:349.635000px;}
.y29{bottom:352.695000px;}
.y98{bottom:362.415000px;}
.y49{bottom:366.015000px;}
.y28{bottom:373.395000px;}
.y76{bottom:380.595000px;}
.y97{bottom:383.115000px;}
.y27{bottom:394.095000px;}
.y48{bottom:396.975000px;}
.y96{bottom:403.815000px;}
.y5e{bottom:404.355000px;}
.y75{bottom:411.735000px;}
.y26{bottom:414.795000px;}
.y7d{bottom:423.615000px;}
.y95{bottom:424.515000px;}
.y47{bottom:428.115000px;}
.y25{bottom:435.495000px;}
.y74{bottom:442.695000px;}
.y94{bottom:445.215000px;}
.y24{bottom:456.195000px;}
.y46{bottom:459.075000px;}
.y93{bottom:465.915000px;}
.y5d{bottom:466.455000px;}
.y73{bottom:473.835000px;}
.y23{bottom:476.895000px;}
.y92{bottom:486.615000px;}
.ybd{bottom:486.975000px;}
.y45{bottom:490.215000px;}
.y22{bottom:497.595000px;}
.y72{bottom:504.795000px;}
.y91{bottom:507.315000px;}
.ybc{bottom:507.675000px;}
.y21{bottom:518.295000px;}
.y44{bottom:521.175000px;}
.y90{bottom:528.015000px;}
.ybb{bottom:528.375000px;}
.y5c{bottom:528.555000px;}
.y71{bottom:535.935000px;}
.y20{bottom:538.995000px;}
.yba{bottom:549.075000px;}
.y8f{bottom:549.975000px;}
.y43{bottom:552.315000px;}
.y1f{bottom:559.695000px;}
.y70{bottom:566.895000px;}
.yb9{bottom:569.775000px;}
.y8e{bottom:573.195000px;}
.y1e{bottom:580.395000px;}
.y42{bottom:583.275000px;}
.yb8{bottom:590.475000px;}
.y5b{bottom:590.655000px;}
.y8d{bottom:595.335000px;}
.y6f{bottom:598.035000px;}
.y1d{bottom:601.095000px;}
.yb7{bottom:611.205000px;}
.y41{bottom:614.445000px;}
.y8c{bottom:616.065000px;}
.y1c{bottom:621.645000px;}
.y6e{bottom:629.025000px;}
.yb6{bottom:631.905000px;}
.y8b{bottom:636.765000px;}
.y1b{bottom:642.345000px;}
.y40{bottom:645.405000px;}
.yb5{bottom:652.605000px;}
.y5a{bottom:652.785000px;}
.y8a{bottom:657.465000px;}
.y6d{bottom:660.165000px;}
.y1a{bottom:663.045000px;}
.yb4{bottom:673.305000px;}
.y3f{bottom:676.545000px;}
.y89{bottom:678.165000px;}
.y19{bottom:683.745000px;}
.y6c{bottom:691.125000px;}
.yb3{bottom:694.005000px;}
.y88{bottom:698.865000px;}
.y18{bottom:704.445000px;}
.y3e{bottom:707.505000px;}
.yb2{bottom:714.705000px;}
.y59{bottom:714.885000px;}
.y87{bottom:719.565000px;}
.y6b{bottom:722.265000px;}
.y17{bottom:725.145000px;}
.yb1{bottom:735.405000px;}
.y86{bottom:740.265000px;}
.y16{bottom:745.845000px;}
.y3d{bottom:750.345000px;}
.y6a{bottom:753.225000px;}
.yb0{bottom:756.105000px;}
.y85{bottom:760.965000px;}
.y15{bottom:766.545000px;}
.yaf{bottom:776.805000px;}
.y58{bottom:776.985000px;}
.y69{bottom:784.365000px;}
.y14{bottom:787.245000px;}
.y84{bottom:788.145000px;}
.y3c{bottom:793.365000px;}
.yae{bottom:797.505000px;}
.y13{bottom:807.945000px;}
.y68{bottom:815.325000px;}
.yad{bottom:818.205000px;}
.y3b{bottom:824.325000px;}
.y12{bottom:828.645000px;}
.y83{bottom:831.165000px;}
.y57{bottom:839.085000px;}
.yac{bottom:840.165000px;}
.y67{bottom:846.465000px;}
.y11{bottom:849.345000px;}
.y3a{bottom:855.465000px;}
.y82{bottom:862.125000px;}
.yab{bottom:863.385000px;}
.y10{bottom:870.045000px;}
.y66{bottom:877.470000px;}
.yaa{bottom:885.570000px;}
.y39{bottom:886.470000px;}
.yf{bottom:890.790000px;}
.y81{bottom:893.310000px;}
.y56{bottom:901.230000px;}
.ya9{bottom:906.270000px;}
.y65{bottom:908.610000px;}
.ye{bottom:911.490000px;}
.y38{bottom:917.610000px;}
.y80{bottom:924.270000px;}
.ya8{bottom:928.230000px;}
.yd{bottom:932.190000px;}
.y64{bottom:939.570000px;}
.y37{bottom:948.570000px;}
.ya7{bottom:951.630000px;}
.yc{bottom:952.890000px;}
.y7f{bottom:957.930000px;}
.y55{bottom:963.330000px;}
.y63{bottom:970.710000px;}
.ya6{bottom:973.590000px;}
.yb{bottom:975.030000px;}
.y36{bottom:979.710000px;}
.y7e{bottom:992.850000px;}
.y54{bottom:994.290000px;}
.ya{bottom:1002.570000px;}
.y35{bottom:1010.670000px;}
.y62{bottom:1013.550000px;}
.ya5{bottom:1014.990000px;}
.y53{bottom:1025.430000px;}
.y9{bottom:1030.110000px;}
.ya4{bottom:1035.690000px;}
.y34{bottom:1041.810000px;}
.y52{bottom:1056.390000px;}
.y8{bottom:1057.830000px;}
.y33{bottom:1072.770000px;}
.ya3{bottom:1077.090000px;}
.y7{bottom:1085.370000px;}
.y51{bottom:1087.530000px;}
.ya2{bottom:1097.790000px;}
.y6{bottom:1112.910000px;}
.y32{bottom:1115.610000px;}
.y50{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h5{height:59.343750px;}
.h3{height:59.383125px;}
.h7{height:62.553179px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.655987px;}
.x2{left:170.129987px;}
.x6{left:183.629987px;}
.x8{left:286.994987px;}
.x12{left:289.874987px;}
.x17{left:296.174987px;}
.x13{left:361.874987px;}
.x18{left:368.894987px;}
.x5{left:378.074987px;}
.x19{left:422.894987px;}
.x7{left:433.694987px;}
.x1{left:489.164987px;}
.xd{left:517.064987px;}
.xb{left:537.764987px;}
.xa{left:548.204987px;}
.xe{left:568.544987px;}
.xf{left:587.804987px;}
.x10{left:609.224987px;}
.x11{left:619.124987px;}
.x9{left:645.764987px;}
.x14{left:658.949987px;}
.xc{left:681.809987px;}
.x15{left:695.129987px;}
.x16{left:699.989987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.224000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.704000pt;}
.lsa{letter-spacing:2.560000pt;}
.lsd{letter-spacing:12.750176pt;}
.lse{letter-spacing:12.817637pt;}
.lsb{letter-spacing:57.242027pt;}
.ls5{letter-spacing:130.842027pt;}
.ws6{word-spacing:-80.211425pt;}
.ws4{word-spacing:-67.461249pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws2{word-spacing:0.000000pt;}
._22{margin-left:-12.716445pt;}
._20{margin-left:-4.742187pt;}
._10{margin-left:-3.840000pt;}
._18{margin-left:-2.150400pt;}
._0{margin-left:-1.177600pt;}
._3{width:1.350187pt;}
._e{width:2.816000pt;}
._d{width:4.032000pt;}
._9{width:5.593600pt;}
._8{width:6.656000pt;}
._13{width:7.616000pt;}
._16{width:8.576000pt;}
._21{width:9.536000pt;}
._19{width:10.624000pt;}
._4{width:12.183893pt;}
._5{width:13.120213pt;}
._1a{width:14.206720pt;}
._1f{width:15.105280pt;}
._14{width:17.280000pt;}
._15{width:18.560000pt;}
._f{width:20.032000pt;}
._6{width:21.184000pt;}
._7{width:22.144000pt;}
._1b{width:23.872000pt;}
._1c{width:24.896000pt;}
._1d{width:25.792000pt;}
._1e{width:26.816000pt;}
._c{width:27.968000pt;}
._a{width:29.824000pt;}
._11{width:30.828160pt;}
._b{width:31.940480pt;}
._17{width:42.368000pt;}
._12{width:55.040000pt;}
._2{width:66.563840pt;}
._1{width:68.010880pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:91.232000pt;}
.y3{bottom:108.032000pt;}
.y2{bottom:130.432000pt;}
.ya1{bottom:154.106667pt;}
.y4f{bottom:159.706667pt;}
.y31{bottom:166.266667pt;}
.ya0{bottom:172.506667pt;}
.y7c{bottom:172.826667pt;}
.y30{bottom:184.666667pt;}
.y4e{bottom:187.226667pt;}
.y9f{bottom:190.906667pt;}
.y61{bottom:193.786667pt;}
.y7b{bottom:200.346667pt;}
.y2f{bottom:203.066667pt;}
.y9e{bottom:209.306667pt;}
.y4d{bottom:214.906667pt;}
.y2e{bottom:221.466667pt;}
.y9d{bottom:227.706667pt;}
.y7a{bottom:227.866667pt;}
.y2d{bottom:239.866667pt;}
.y4c{bottom:242.426667pt;}
.y9c{bottom:246.106667pt;}
.y60{bottom:248.986667pt;}
.y79{bottom:255.546667pt;}
.y2c{bottom:258.266667pt;}
.y9b{bottom:265.626667pt;}
.y4b{bottom:270.106667pt;}
.y2b{bottom:276.666667pt;}
.y78{bottom:283.066667pt;}
.y9a{bottom:285.306667pt;}
.y2a{bottom:295.066667pt;}
.y4a{bottom:297.626667pt;}
.y99{bottom:303.746667pt;}
.y5f{bottom:304.226667pt;}
.y77{bottom:310.786667pt;}
.y29{bottom:313.506667pt;}
.y98{bottom:322.146667pt;}
.y49{bottom:325.346667pt;}
.y28{bottom:331.906667pt;}
.y76{bottom:338.306667pt;}
.y97{bottom:340.546667pt;}
.y27{bottom:350.306667pt;}
.y48{bottom:352.866667pt;}
.y96{bottom:358.946667pt;}
.y5e{bottom:359.426667pt;}
.y75{bottom:365.986667pt;}
.y26{bottom:368.706667pt;}
.y7d{bottom:376.546667pt;}
.y95{bottom:377.346667pt;}
.y47{bottom:380.546667pt;}
.y25{bottom:387.106667pt;}
.y74{bottom:393.506667pt;}
.y94{bottom:395.746667pt;}
.y24{bottom:405.506667pt;}
.y46{bottom:408.066667pt;}
.y93{bottom:414.146667pt;}
.y5d{bottom:414.626667pt;}
.y73{bottom:421.186667pt;}
.y23{bottom:423.906667pt;}
.y92{bottom:432.546667pt;}
.ybd{bottom:432.866667pt;}
.y45{bottom:435.746667pt;}
.y22{bottom:442.306667pt;}
.y72{bottom:448.706667pt;}
.y91{bottom:450.946667pt;}
.ybc{bottom:451.266667pt;}
.y21{bottom:460.706667pt;}
.y44{bottom:463.266667pt;}
.y90{bottom:469.346667pt;}
.ybb{bottom:469.666667pt;}
.y5c{bottom:469.826667pt;}
.y71{bottom:476.386667pt;}
.y20{bottom:479.106667pt;}
.yba{bottom:488.066667pt;}
.y8f{bottom:488.866667pt;}
.y43{bottom:490.946667pt;}
.y1f{bottom:497.506667pt;}
.y70{bottom:503.906667pt;}
.yb9{bottom:506.466667pt;}
.y8e{bottom:509.506667pt;}
.y1e{bottom:515.906667pt;}
.y42{bottom:518.466667pt;}
.yb8{bottom:524.866667pt;}
.y5b{bottom:525.026667pt;}
.y8d{bottom:529.186667pt;}
.y6f{bottom:531.586667pt;}
.y1d{bottom:534.306667pt;}
.yb7{bottom:543.293333pt;}
.y41{bottom:546.173333pt;}
.y8c{bottom:547.613333pt;}
.y1c{bottom:552.573333pt;}
.y6e{bottom:559.133333pt;}
.yb6{bottom:561.693333pt;}
.y8b{bottom:566.013333pt;}
.y1b{bottom:570.973333pt;}
.y40{bottom:573.693333pt;}
.yb5{bottom:580.093333pt;}
.y5a{bottom:580.253333pt;}
.y8a{bottom:584.413333pt;}
.y6d{bottom:586.813333pt;}
.y1a{bottom:589.373333pt;}
.yb4{bottom:598.493333pt;}
.y3f{bottom:601.373333pt;}
.y89{bottom:602.813333pt;}
.y19{bottom:607.773333pt;}
.y6c{bottom:614.333333pt;}
.yb3{bottom:616.893333pt;}
.y88{bottom:621.213333pt;}
.y18{bottom:626.173333pt;}
.y3e{bottom:628.893333pt;}
.yb2{bottom:635.293333pt;}
.y59{bottom:635.453333pt;}
.y87{bottom:639.613333pt;}
.y6b{bottom:642.013333pt;}
.y17{bottom:644.573333pt;}
.yb1{bottom:653.693333pt;}
.y86{bottom:658.013333pt;}
.y16{bottom:662.973333pt;}
.y3d{bottom:666.973333pt;}
.y6a{bottom:669.533333pt;}
.yb0{bottom:672.093333pt;}
.y85{bottom:676.413333pt;}
.y15{bottom:681.373333pt;}
.yaf{bottom:690.493333pt;}
.y58{bottom:690.653333pt;}
.y69{bottom:697.213333pt;}
.y14{bottom:699.773333pt;}
.y84{bottom:700.573333pt;}
.y3c{bottom:705.213333pt;}
.yae{bottom:708.893333pt;}
.y13{bottom:718.173333pt;}
.y68{bottom:724.733333pt;}
.yad{bottom:727.293333pt;}
.y3b{bottom:732.733333pt;}
.y12{bottom:736.573333pt;}
.y83{bottom:738.813333pt;}
.y57{bottom:745.853333pt;}
.yac{bottom:746.813333pt;}
.y67{bottom:752.413333pt;}
.y11{bottom:754.973333pt;}
.y3a{bottom:760.413333pt;}
.y82{bottom:766.333333pt;}
.yab{bottom:767.453333pt;}
.y10{bottom:773.373333pt;}
.y66{bottom:779.973333pt;}
.yaa{bottom:787.173333pt;}
.y39{bottom:787.973333pt;}
.yf{bottom:791.813333pt;}
.y81{bottom:794.053333pt;}
.y56{bottom:801.093333pt;}
.ya9{bottom:805.573333pt;}
.y65{bottom:807.653333pt;}
.ye{bottom:810.213333pt;}
.y38{bottom:815.653333pt;}
.y80{bottom:821.573333pt;}
.ya8{bottom:825.093333pt;}
.yd{bottom:828.613333pt;}
.y64{bottom:835.173333pt;}
.y37{bottom:843.173333pt;}
.ya7{bottom:845.893333pt;}
.yc{bottom:847.013333pt;}
.y7f{bottom:851.493333pt;}
.y55{bottom:856.293333pt;}
.y63{bottom:862.853333pt;}
.ya6{bottom:865.413333pt;}
.yb{bottom:866.693333pt;}
.y36{bottom:870.853333pt;}
.y7e{bottom:882.533333pt;}
.y54{bottom:883.813333pt;}
.ya{bottom:891.173333pt;}
.y35{bottom:898.373333pt;}
.y62{bottom:900.933333pt;}
.ya5{bottom:902.213333pt;}
.y53{bottom:911.493333pt;}
.y9{bottom:915.653333pt;}
.ya4{bottom:920.613333pt;}
.y34{bottom:926.053333pt;}
.y52{bottom:939.013333pt;}
.y8{bottom:940.293333pt;}
.y33{bottom:953.573333pt;}
.ya3{bottom:957.413333pt;}
.y7{bottom:964.773333pt;}
.y51{bottom:966.693333pt;}
.ya2{bottom:975.813333pt;}
.y6{bottom:989.253333pt;}
.y32{bottom:991.653333pt;}
.y50{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h5{height:52.750000pt;}
.h3{height:52.785000pt;}
.h7{height:55.602826pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.471988pt;}
.x2{left:151.226655pt;}
.x6{left:163.226655pt;}
.x8{left:255.106655pt;}
.x12{left:257.666655pt;}
.x17{left:263.266655pt;}
.x13{left:321.666655pt;}
.x18{left:327.906655pt;}
.x5{left:336.066655pt;}
.x19{left:375.906655pt;}
.x7{left:385.506655pt;}
.x1{left:434.813322pt;}
.xd{left:459.613322pt;}
.xb{left:478.013322pt;}
.xa{left:487.293322pt;}
.xe{left:505.373322pt;}
.xf{left:522.493322pt;}
.x10{left:541.533322pt;}
.x11{left:550.333322pt;}
.x9{left:574.013322pt;}
.x14{left:585.733322pt;}
.xc{left:606.053322pt;}
.x15{left:617.893322pt;}
.x16{left:622.213322pt;}
.x3{left:718.373322pt;}
}




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