
    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_80f6ab57fc7e886d8417e79c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108887;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_f7a517cf1946ed31993eedbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_407ef6d6b01b3d0bad25c5a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108887;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_88a5ae5e14de9b819bb1e5b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117676;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_6d2bb39f9458cab3d2816a28.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117676;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_dd040283d98799407344322e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.012207;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-18.120000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.744000px;}
.lse{letter-spacing:-0.024000px;}
.ls4{letter-spacing:-0.012000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.lsc{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.390000px;}
.ls6{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.744000px;}
.lsb{letter-spacing:1.476000px;}
.lsf{letter-spacing:1.740000px;}
.lsa{letter-spacing:4.800000px;}
.lsd{letter-spacing:19.740000px;}
.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;}
}
.ws8{word-spacing:-19.116000px;}
.ws6{word-spacing:-18.384000px;}
.ws0{word-spacing:-18.360000px;}
.ws1{word-spacing:-17.640000px;}
.ws7{word-spacing:-17.616000px;}
.ws4{word-spacing:-16.896000px;}
.ws5{word-spacing:-14.700000px;}
.ws2{word-spacing:-13.965000px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-5.946000px;}
._c{margin-left:-4.320000px;}
._9{margin-left:-2.796000px;}
._1{margin-left:-1.518000px;}
._0{width:1.650000px;}
._7{width:2.832000px;}
._8{width:4.680000px;}
._12{width:5.820000px;}
._f{width:7.560000px;}
._5{width:8.934000px;}
._4{width:10.236000px;}
._2{width:11.376000px;}
._3{width:12.396000px;}
._16{width:13.758000px;}
._19{width:14.790000px;}
._15{width:15.918000px;}
._1d{width:18.678000px;}
._6{width:19.728000px;}
._17{width:21.210000px;}
._b{width:22.446000px;}
._a{width:23.784000px;}
._e{width:25.782000px;}
._20{width:27.864000px;}
._10{width:29.520000px;}
._11{width:30.756000px;}
._18{width:32.196000px;}
._1a{width:33.540000px;}
._1f{width:36.822000px;}
._1e{width:37.860000px;}
._27{width:41.622000px;}
._28{width:42.792000px;}
._26{width:44.802000px;}
._24{width:45.864000px;}
._25{width:47.028000px;}
._21{width:48.078000px;}
._1c{width:49.080000px;}
._1b{width:50.130000px;}
._14{width:53.850000px;}
._13{width:55.800000px;}
._23{width:61.278000px;}
._22{width:62.280000px;}
.fc5{color:transparent;}
.fc3{color:rgb(31,55,99);}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs5{font-size:39.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.250000px;}
.y3{bottom:52.162500px;}
.y2{bottom:56.662500px;}
.y32{bottom:131.662500px;}
.y51{bottom:135.412500px;}
.y31{bottom:149.662500px;}
.y30{bottom:153.420000px;}
.y2f{bottom:167.670000px;}
.y2e{bottom:171.420000px;}
.ya6{bottom:185.325000px;}
.y2d{bottom:185.700000px;}
.y2c{bottom:189.450000px;}
.y2b{bottom:203.325000px;}
.y2a{bottom:207.075000px;}
.y29{bottom:221.325000px;}
.y28{bottom:225.075000px;}
.y27{bottom:239.325000px;}
.y26{bottom:243.075000px;}
.ya5{bottom:245.325000px;}
.y25{bottom:257.325000px;}
.y24{bottom:261.075000px;}
.y70{bottom:270.075000px;}
.y23{bottom:275.325000px;}
.ya0{bottom:277.950000px;}
.y8c{bottom:279.075000px;}
.y50{bottom:284.700000px;}
.y8b{bottom:293.325000px;}
.y6f{bottom:302.745000px;}
.y9e{bottom:310.245000px;}
.y9f{bottom:314.730000px;}
.y4f{bottom:321.480000px;}
.y6e{bottom:334.980000px;}
.y8a{bottom:342.495000px;}
.y21{bottom:353.370000px;}
.y22{bottom:357.855000px;}
.y4e{bottom:358.230000px;}
.y6d{bottom:367.245000px;}
.y89{bottom:375.105000px;}
.y20{bottom:385.605000px;}
.y6c{bottom:399.870000px;}
.y4c{bottom:402.870000px;}
.y4d{bottom:407.370000px;}
.y9d{bottom:410.370000px;}
.y1f{bottom:418.245000px;}
.y6a{bottom:432.150000px;}
.y4b{bottom:435.150000px;}
.y6b{bottom:436.650000px;}
.ya4{bottom:439.650000px;}
.y9c{bottom:447.150000px;}
.y1d{bottom:450.525000px;}
.y87{bottom:451.650000px;}
.y1e{bottom:455.025000px;}
.y88{bottom:456.150000px;}
.y69{bottom:464.400000px;}
.y4a{bottom:467.400000px;}
.ya3{bottom:474.900000px;}
.y1c{bottom:482.775000px;}
.y85{bottom:484.275000px;}
.y86{bottom:488.775000px;}
.y9b{bottom:491.400000px;}
.y68{bottom:497.025000px;}
.y49{bottom:500.025000px;}
.ya2{bottom:512.025000px;}
.y84{bottom:516.525000px;}
.y9a{bottom:524.025000px;}
.y1a{bottom:527.400000px;}
.y1b{bottom:531.900000px;}
.y48{bottom:532.275000px;}
.y67{bottom:541.275000px;}
.y82{bottom:548.775000px;}
.y83{bottom:553.275000px;}
.y98{bottom:556.275000px;}
.y19{bottom:559.650000px;}
.y99{bottom:560.820000px;}
.y66{bottom:573.945000px;}
.y46{bottom:576.570000px;}
.y47{bottom:581.070000px;}
.y81{bottom:581.445000px;}
.y97{bottom:588.570000px;}
.y18{bottom:591.945000px;}
.y64{bottom:607.320000px;}
.y45{bottom:609.195000px;}
.y65{bottom:611.820000px;}
.y80{bottom:613.695000px;}
.y95{bottom:621.195000px;}
.y17{bottom:624.570000px;}
.y96{bottom:625.695000px;}
.y63{bottom:629.070000px;}
.y44{bottom:641.445000px;}
.y7e{bottom:645.945000px;}
.y7f{bottom:650.445000px;}
.y62{bottom:650.820000px;}
.y94{bottom:653.445000px;}
.y16{bottom:656.820000px;}
.y61{bottom:672.195000px;}
.y43{bottom:673.695000px;}
.y7d{bottom:678.570000px;}
.y92{bottom:685.695000px;}
.y15{bottom:689.100000px;}
.y93{bottom:690.225000px;}
.y60{bottom:693.975000px;}
.y42{bottom:706.350000px;}
.y7c{bottom:710.850000px;}
.yab{bottom:713.850000px;}
.y5f{bottom:715.350000px;}
.y91{bottom:718.350000px;}
.y14{bottom:721.725000px;}
.y5e{bottom:737.100000px;}
.y41{bottom:738.600000px;}
.y7b{bottom:743.100000px;}
.y90{bottom:750.600000px;}
.y13{bottom:753.975000px;}
.ya1{bottom:755.100000px;}
.y5d{bottom:758.475000px;}
.y40{bottom:770.850000px;}
.y7a{bottom:778.725000px;}
.y5c{bottom:780.225000px;}
.y8e{bottom:782.850000px;}
.y11{bottom:786.225000px;}
.y8f{bottom:787.350000px;}
.y12{bottom:790.725000px;}
.yaa{bottom:794.850000px;}
.y5b{bottom:801.975000px;}
.y3f{bottom:815.475000px;}
.yf{bottom:818.895000px;}
.y10{bottom:823.380000px;}
.ya9{bottom:827.505000px;}
.y5a{bottom:845.130000px;}
.y3d{bottom:847.755000px;}
.yd{bottom:851.130000px;}
.y3e{bottom:852.270000px;}
.ye{bottom:855.645000px;}
.y79{bottom:859.770000px;}
.ya8{bottom:864.255000px;}
.y3c{bottom:880.005000px;}
.yb{bottom:883.755000px;}
.yc{bottom:888.255000px;}
.y58{bottom:889.380000px;}
.y77{bottom:892.005000px;}
.y59{bottom:893.880000px;}
.y78{bottom:896.505000px;}
.y3b{bottom:912.630000px;}
.ya{bottom:916.005000px;}
.y57{bottom:921.630000px;}
.y76{bottom:924.630000px;}
.y39{bottom:944.880000px;}
.y3a{bottom:949.425000px;}
.y9{bottom:951.300000px;}
.y56{bottom:953.925000px;}
.y75{bottom:956.925000px;}
.y38{bottom:977.175000px;}
.y54{bottom:986.550000px;}
.y74{bottom:989.175000px;}
.y55{bottom:991.050000px;}
.y8{bottom:1004.550000px;}
.y36{bottom:1009.800000px;}
.y37{bottom:1014.300000px;}
.y53{bottom:1018.800000px;}
.y72{bottom:1021.800000px;}
.y73{bottom:1026.300000px;}
.y35{bottom:1042.050000px;}
.y7{bottom:1051.050000px;}
.y71{bottom:1054.050000px;}
.y8d{bottom:1058.550000px;}
.y6{bottom:1082.205000px;}
.y52{bottom:1083.705000px;}
.y34{bottom:1086.330000px;}
.ya7{bottom:1090.830000px;}
.y5{bottom:1113.330000px;}
.y33{bottom:1118.955000px;}
.y1{bottom:1194.330000px;}
.h3{height:21.375000px;}
.h8{height:33.572754px;}
.h7{height:40.804688px;}
.hb{height:43.087031px;}
.hc{height:43.207031px;}
.h9{height:51.005859px;}
.ha{height:51.650391px;}
.h1{height:56.106445px;}
.h4{height:61.207031px;}
.h6{height:61.980469px;}
.h2{height:74.004654px;}
.h5{height:81.609375px;}
.h0{height:1263.000000px;}
.w3{width:26.625000px;}
.w4{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.537487px;}
.x17{left:132.449987px;}
.x22{left:137.324987px;}
.x3{left:142.574987px;}
.x4{left:148.949987px;}
.x7{left:180.824987px;}
.x1b{left:186.449973px;}
.x12{left:191.699973px;}
.x45{left:195.449973px;}
.x13{left:197.699987px;}
.x2b{left:205.574973px;}
.x20{left:208.199973px;}
.x36{left:209.324987px;}
.x2d{left:210.449987px;}
.x2c{left:217.574987px;}
.x21{left:220.244987px;}
.x27{left:226.994973px;}
.x2e{left:232.244987px;}
.x28{left:238.994987px;}
.x14{left:302.744973px;}
.x15{left:308.774987px;}
.x37{left:311.024973px;}
.x5{left:312.524987px;}
.x29{left:319.274973px;}
.x38{left:323.024987px;}
.x2a{left:331.274987px;}
.x23{left:335.399973px;}
.x6{left:340.649987px;}
.x16{left:343.649987px;}
.x24{left:347.399987px;}
.x8{left:354.899973px;}
.x18{left:358.649987px;}
.x9{left:360.899987px;}
.x33{left:364.274973px;}
.xe{left:370.649973px;}
.xc{left:371.774973px;}
.xf{left:376.649987px;}
.xd{left:377.774987px;}
.x3f{left:389.024973px;}
.x40{left:401.069987px;}
.x1c{left:404.069973px;}
.x1d{left:416.069987px;}
.x10{left:425.069973px;}
.x11{left:431.069987px;}
.x2{left:433.320000px;}
.x31{left:447.569973px;}
.x32{left:459.569987px;}
.x39{left:465.569973px;}
.x43{left:471.944973px;}
.x3a{left:477.569987px;}
.x44{left:483.974987px;}
.xa{left:527.849973px;}
.xb{left:533.849987px;}
.x19{left:544.349973px;}
.x2f{left:548.474973px;}
.x1a{left:550.349987px;}
.x30{left:560.474987px;}
.x3d{left:562.349973px;}
.x41{left:571.004973px;}
.x3e{left:574.379987px;}
.x42{left:583.004987px;}
.x34{left:638.504973px;}
.x3b{left:641.129973px;}
.x35{left:650.504987px;}
.x3c{left:653.129987px;}
.x25{left:670.049973px;}
.x26{left:682.049987px;}
.x1e{left:686.549973px;}
.x1f{left:698.549987px;}
@media print{
.v1{vertical-align:-16.106667pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.661333pt;}
.lse{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:-0.010667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.lsc{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.346667pt;}
.ls6{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.661333pt;}
.lsb{letter-spacing:1.312000pt;}
.lsf{letter-spacing:1.546667pt;}
.lsa{letter-spacing:4.266667pt;}
.lsd{letter-spacing:17.546667pt;}
.ws8{word-spacing:-16.992000pt;}
.ws6{word-spacing:-16.341333pt;}
.ws0{word-spacing:-16.320000pt;}
.ws1{word-spacing:-15.680000pt;}
.ws7{word-spacing:-15.658667pt;}
.ws4{word-spacing:-15.018667pt;}
.ws5{word-spacing:-13.066667pt;}
.ws2{word-spacing:-12.413333pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-5.285333pt;}
._c{margin-left:-3.840000pt;}
._9{margin-left:-2.485333pt;}
._1{margin-left:-1.349333pt;}
._0{width:1.466667pt;}
._7{width:2.517333pt;}
._8{width:4.160000pt;}
._12{width:5.173333pt;}
._f{width:6.720000pt;}
._5{width:7.941333pt;}
._4{width:9.098667pt;}
._2{width:10.112000pt;}
._3{width:11.018667pt;}
._16{width:12.229333pt;}
._19{width:13.146667pt;}
._15{width:14.149333pt;}
._1d{width:16.602667pt;}
._6{width:17.536000pt;}
._17{width:18.853333pt;}
._b{width:19.952000pt;}
._a{width:21.141333pt;}
._e{width:22.917333pt;}
._20{width:24.768000pt;}
._10{width:26.240000pt;}
._11{width:27.338667pt;}
._18{width:28.618667pt;}
._1a{width:29.813333pt;}
._1f{width:32.730667pt;}
._1e{width:33.653333pt;}
._27{width:36.997333pt;}
._28{width:38.037333pt;}
._26{width:39.824000pt;}
._24{width:40.768000pt;}
._25{width:41.802667pt;}
._21{width:42.736000pt;}
._1c{width:43.626667pt;}
._1b{width:44.560000pt;}
._14{width:47.866667pt;}
._13{width:49.600000pt;}
._23{width:54.469333pt;}
._22{width:55.360000pt;}
.fs5{font-size:34.666667pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.666667pt;}
.y3{bottom:46.366667pt;}
.y2{bottom:50.366667pt;}
.y32{bottom:117.033333pt;}
.y51{bottom:120.366667pt;}
.y31{bottom:133.033333pt;}
.y30{bottom:136.373333pt;}
.y2f{bottom:149.040000pt;}
.y2e{bottom:152.373333pt;}
.ya6{bottom:164.733333pt;}
.y2d{bottom:165.066667pt;}
.y2c{bottom:168.400000pt;}
.y2b{bottom:180.733333pt;}
.y2a{bottom:184.066667pt;}
.y29{bottom:196.733333pt;}
.y28{bottom:200.066667pt;}
.y27{bottom:212.733333pt;}
.y26{bottom:216.066667pt;}
.ya5{bottom:218.066667pt;}
.y25{bottom:228.733333pt;}
.y24{bottom:232.066667pt;}
.y70{bottom:240.066667pt;}
.y23{bottom:244.733333pt;}
.ya0{bottom:247.066667pt;}
.y8c{bottom:248.066667pt;}
.y50{bottom:253.066667pt;}
.y8b{bottom:260.733333pt;}
.y6f{bottom:269.106667pt;}
.y9e{bottom:275.773333pt;}
.y9f{bottom:279.760000pt;}
.y4f{bottom:285.760000pt;}
.y6e{bottom:297.760000pt;}
.y8a{bottom:304.440000pt;}
.y21{bottom:314.106667pt;}
.y22{bottom:318.093333pt;}
.y4e{bottom:318.426667pt;}
.y6d{bottom:326.440000pt;}
.y89{bottom:333.426667pt;}
.y20{bottom:342.760000pt;}
.y6c{bottom:355.440000pt;}
.y4c{bottom:358.106667pt;}
.y4d{bottom:362.106667pt;}
.y9d{bottom:364.773333pt;}
.y1f{bottom:371.773333pt;}
.y6a{bottom:384.133333pt;}
.y4b{bottom:386.800000pt;}
.y6b{bottom:388.133333pt;}
.ya4{bottom:390.800000pt;}
.y9c{bottom:397.466667pt;}
.y1d{bottom:400.466667pt;}
.y87{bottom:401.466667pt;}
.y1e{bottom:404.466667pt;}
.y88{bottom:405.466667pt;}
.y69{bottom:412.800000pt;}
.y4a{bottom:415.466667pt;}
.ya3{bottom:422.133333pt;}
.y1c{bottom:429.133333pt;}
.y85{bottom:430.466667pt;}
.y86{bottom:434.466667pt;}
.y9b{bottom:436.800000pt;}
.y68{bottom:441.800000pt;}
.y49{bottom:444.466667pt;}
.ya2{bottom:455.133333pt;}
.y84{bottom:459.133333pt;}
.y9a{bottom:465.800000pt;}
.y1a{bottom:468.800000pt;}
.y1b{bottom:472.800000pt;}
.y48{bottom:473.133333pt;}
.y67{bottom:481.133333pt;}
.y82{bottom:487.800000pt;}
.y83{bottom:491.800000pt;}
.y98{bottom:494.466667pt;}
.y19{bottom:497.466667pt;}
.y99{bottom:498.506667pt;}
.y66{bottom:510.173333pt;}
.y46{bottom:512.506667pt;}
.y47{bottom:516.506667pt;}
.y81{bottom:516.840000pt;}
.y97{bottom:523.173333pt;}
.y18{bottom:526.173333pt;}
.y64{bottom:539.840000pt;}
.y45{bottom:541.506667pt;}
.y65{bottom:543.840000pt;}
.y80{bottom:545.506667pt;}
.y95{bottom:552.173333pt;}
.y17{bottom:555.173333pt;}
.y96{bottom:556.173333pt;}
.y63{bottom:559.173333pt;}
.y44{bottom:570.173333pt;}
.y7e{bottom:574.173333pt;}
.y7f{bottom:578.173333pt;}
.y62{bottom:578.506667pt;}
.y94{bottom:580.840000pt;}
.y16{bottom:583.840000pt;}
.y61{bottom:597.506667pt;}
.y43{bottom:598.840000pt;}
.y7d{bottom:603.173333pt;}
.y92{bottom:609.506667pt;}
.y15{bottom:612.533333pt;}
.y93{bottom:613.533333pt;}
.y60{bottom:616.866667pt;}
.y42{bottom:627.866667pt;}
.y7c{bottom:631.866667pt;}
.yab{bottom:634.533333pt;}
.y5f{bottom:635.866667pt;}
.y91{bottom:638.533333pt;}
.y14{bottom:641.533333pt;}
.y5e{bottom:655.200000pt;}
.y41{bottom:656.533333pt;}
.y7b{bottom:660.533333pt;}
.y90{bottom:667.200000pt;}
.y13{bottom:670.200000pt;}
.ya1{bottom:671.200000pt;}
.y5d{bottom:674.200000pt;}
.y40{bottom:685.200000pt;}
.y7a{bottom:692.200000pt;}
.y5c{bottom:693.533333pt;}
.y8e{bottom:695.866667pt;}
.y11{bottom:698.866667pt;}
.y8f{bottom:699.866667pt;}
.y12{bottom:702.866667pt;}
.yaa{bottom:706.533333pt;}
.y5b{bottom:712.866667pt;}
.y3f{bottom:724.866667pt;}
.yf{bottom:727.906667pt;}
.y10{bottom:731.893333pt;}
.ya9{bottom:735.560000pt;}
.y5a{bottom:751.226667pt;}
.y3d{bottom:753.560000pt;}
.yd{bottom:756.560000pt;}
.y3e{bottom:757.573333pt;}
.ye{bottom:760.573333pt;}
.y79{bottom:764.240000pt;}
.ya8{bottom:768.226667pt;}
.y3c{bottom:782.226667pt;}
.yb{bottom:785.560000pt;}
.yc{bottom:789.560000pt;}
.y58{bottom:790.560000pt;}
.y77{bottom:792.893333pt;}
.y59{bottom:794.560000pt;}
.y78{bottom:796.893333pt;}
.y3b{bottom:811.226667pt;}
.ya{bottom:814.226667pt;}
.y57{bottom:819.226667pt;}
.y76{bottom:821.893333pt;}
.y39{bottom:839.893333pt;}
.y3a{bottom:843.933333pt;}
.y9{bottom:845.600000pt;}
.y56{bottom:847.933333pt;}
.y75{bottom:850.600000pt;}
.y38{bottom:868.600000pt;}
.y54{bottom:876.933333pt;}
.y74{bottom:879.266667pt;}
.y55{bottom:880.933333pt;}
.y8{bottom:892.933333pt;}
.y36{bottom:897.600000pt;}
.y37{bottom:901.600000pt;}
.y53{bottom:905.600000pt;}
.y72{bottom:908.266667pt;}
.y73{bottom:912.266667pt;}
.y35{bottom:926.266667pt;}
.y7{bottom:934.266667pt;}
.y71{bottom:936.933333pt;}
.y8d{bottom:940.933333pt;}
.y6{bottom:961.960000pt;}
.y52{bottom:963.293333pt;}
.y34{bottom:965.626667pt;}
.ya7{bottom:969.626667pt;}
.y5{bottom:989.626667pt;}
.y33{bottom:994.626667pt;}
.y1{bottom:1061.626667pt;}
.h3{height:19.000000pt;}
.h8{height:29.842448pt;}
.h7{height:36.270833pt;}
.hb{height:38.299583pt;}
.hc{height:38.406250pt;}
.h9{height:45.338542pt;}
.ha{height:45.911458pt;}
.h1{height:49.872396pt;}
.h4{height:54.406250pt;}
.h6{height:55.093750pt;}
.h2{height:65.781915pt;}
.h5{height:72.541667pt;}
.h0{height:1122.666667pt;}
.w3{width:23.666667pt;}
.w4{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.366655pt;}
.x17{left:117.733322pt;}
.x22{left:122.066655pt;}
.x3{left:126.733322pt;}
.x4{left:132.399988pt;}
.x7{left:160.733322pt;}
.x1b{left:165.733310pt;}
.x12{left:170.399976pt;}
.x45{left:173.733310pt;}
.x13{left:175.733322pt;}
.x2b{left:182.733310pt;}
.x20{left:185.066643pt;}
.x36{left:186.066655pt;}
.x2d{left:187.066655pt;}
.x2c{left:193.399988pt;}
.x21{left:195.773322pt;}
.x27{left:201.773310pt;}
.x2e{left:206.439988pt;}
.x28{left:212.439988pt;}
.x14{left:269.106643pt;}
.x15{left:274.466655pt;}
.x37{left:276.466643pt;}
.x5{left:277.799988pt;}
.x29{left:283.799976pt;}
.x38{left:287.133322pt;}
.x2a{left:294.466655pt;}
.x23{left:298.133310pt;}
.x6{left:302.799988pt;}
.x16{left:305.466655pt;}
.x24{left:308.799988pt;}
.x8{left:315.466643pt;}
.x18{left:318.799988pt;}
.x9{left:320.799988pt;}
.x33{left:323.799976pt;}
.xe{left:329.466643pt;}
.xc{left:330.466643pt;}
.xf{left:334.799988pt;}
.xd{left:335.799988pt;}
.x3f{left:345.799976pt;}
.x40{left:356.506655pt;}
.x1c{left:359.173310pt;}
.x1d{left:369.839988pt;}
.x10{left:377.839976pt;}
.x11{left:383.173322pt;}
.x2{left:385.173333pt;}
.x31{left:397.839976pt;}
.x32{left:408.506655pt;}
.x39{left:413.839976pt;}
.x43{left:419.506643pt;}
.x3a{left:424.506655pt;}
.x44{left:430.199988pt;}
.xa{left:469.199976pt;}
.xb{left:474.533322pt;}
.x19{left:483.866643pt;}
.x2f{left:487.533310pt;}
.x1a{left:489.199988pt;}
.x30{left:498.199988pt;}
.x3d{left:499.866643pt;}
.x41{left:507.559976pt;}
.x3e{left:510.559988pt;}
.x42{left:518.226655pt;}
.x34{left:567.559976pt;}
.x3b{left:569.893310pt;}
.x35{left:578.226655pt;}
.x3c{left:580.559988pt;}
.x25{left:595.599976pt;}
.x26{left:606.266655pt;}
.x1e{left:610.266643pt;}
.x1f{left:620.933322pt;}
}




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