
    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_6ef4355abbcfd68ba47ba391.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_788cfa3b5d422540d04e769f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.746094;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_7d2eef857963487c25058634.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_f75bce98e882a4df945c76b0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.250000;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_584181279ec9d0df03c9bce1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.872559;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_e85556544ff14553c2ff79aa.woff')format("woff");}.ff6{font-family:ff6;line-height:0.866699;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;}
.m2{transform:matrix(0.240219,-0.069243,0.069179,0.240238,0,0);-ms-transform:matrix(0.240219,-0.069243,0.069179,0.240238,0,0);-webkit-transform:matrix(0.240219,-0.069243,0.069179,0.240238,0,0);}
.m3{transform:matrix(0.250000,0.000611,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000611,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000611,0.000000,0.250000,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);}
.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:-2.628225px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.056869px;}
.ls4{letter-spacing:0.089865px;}
.ls0{letter-spacing:1.500003px;}
.ls3{letter-spacing:108.000426px;}
.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;}
}
.ws1{word-spacing:-79.776003px;}
.wsc{word-spacing:-64.800002px;}
.ws5{word-spacing:-41.882401px;}
.wsb{word-spacing:-29.916001px;}
.wsd{word-spacing:-27.672300px;}
.ws10{word-spacing:-25.428603px;}
.ws7{word-spacing:-23.268000px;}
.ws3{word-spacing:-23.184898px;}
.ws9{word-spacing:-21.606002px;}
.ws4{word-spacing:-20.941201px;}
.ws2{word-spacing:-19.944001px;}
.ws8{word-spacing:-18.282001px;}
.wse{word-spacing:-14.958000px;}
.wsa{word-spacing:-0.084000px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:82.546307px;}
.ws6{word-spacing:84.704021px;}
._1{margin-left:-20.779200px;}
._0{margin-left:-15.444000px;}
._c{margin-left:-11.748167px;}
._4{margin-left:-10.656000px;}
._9{margin-left:-9.206999px;}
._5{margin-left:-7.992000px;}
._b{margin-left:-6.216000px;}
._6{margin-left:-5.208000px;}
._2{margin-left:-3.108000px;}
._3{margin-left:-2.075833px;}
._e{width:1.018800px;}
._7{width:2.032650px;}
._8{width:3.328314px;}
._a{width:107.972021px;}
._d{width:162.829893px;}
.fc5{color:rgb(204,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,151,167);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(183,183,183);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:54.000002px;}
.fs3{font-size:56.103599px;}
.fs5{font-size:66.000004px;}
.fs9{font-size:72.000002px;}
.fsb{font-size:75.600002px;}
.fsd{font-size:78.000005px;}
.fsa{font-size:83.699994px;}
.fs2{font-size:83.999999px;}
.fs1{font-size:84.000000px;}
.fsf{font-size:90.000003px;}
.fs12{font-size:91.800012px;}
.fs10{font-size:99.899999px;}
.fs8{font-size:108.000003px;}
.fsc{font-size:145.200020px;}
.fs7{font-size:151.200005px;}
.fse{font-size:167.999999px;}
.fs6{font-size:216.000007px;}
.fs0{font-size:280.800000px;}
.fs4{font-size:288.000009px;}
.y0{bottom:0.000000px;}
.y4b{bottom:7.113693px;}
.y3c{bottom:7.348931px;}
.y36{bottom:7.717031px;}
.y1c{bottom:8.366673px;}
.y4a{bottom:8.855756px;}
.y49{bottom:9.506433px;}
.ya{bottom:12.020403px;}
.y9e{bottom:12.235925px;}
.y56{bottom:15.624094px;}
.yad{bottom:16.213110px;}
.y38{bottom:16.439854px;}
.y6f{bottom:21.327866px;}
.y76{bottom:21.372990px;}
.y39{bottom:23.432561px;}
.y64{bottom:26.181015px;}
.y23{bottom:27.439598px;}
.y9d{bottom:28.435927px;}
.y35{bottom:29.317031px;}
.yac{bottom:34.385854px;}
.y9{bottom:37.220393px;}
.y37{bottom:38.039854px;}
.y55{bottom:39.024094px;}
.y75{bottom:41.172991px;}
.y28{bottom:43.202131px;}
.y9c{bottom:44.635930px;}
.y63{bottom:47.781016px;}
.y78{bottom:50.723948px;}
.y22{bottom:52.279598px;}
.yb3{bottom:59.273251px;}
.y9b{bottom:60.835933px;}
.y74{bottom:60.972991px;}
.y8{bottom:62.420388px;}
.y48{bottom:62.738285px;}
.yab{bottom:63.302866px;}
.y21{bottom:77.119599px;}
.yb2{bottom:84.473246px;}
.y27{bottom:85.056626px;}
.y7{bottom:87.620395px;}
.yaa{bottom:92.219890px;}
.y12{bottom:92.589857px;}
.y16{bottom:96.680372px;}
.y47{bottom:96.758275px;}
.y29{bottom:98.076473px;}
.y6e{bottom:99.550829px;}
.y77{bottom:99.995890px;}
.y4{bottom:100.285861px;}
.y82{bottom:106.367485px;}
.y26{bottom:108.911122px;}
.yb1{bottom:109.673253px;}
.y6{bottom:112.820389px;}
.y15{bottom:113.546816px;}
.y14{bottom:116.125181px;}
.y6b{bottom:117.130957px;}
.ya9{bottom:121.136891px;}
.y6d{bottom:122.950829px;}
.y13{bottom:123.569806px;}
.y34{bottom:123.575925px;}
.y46{bottom:130.778298px;}
.y25{bottom:132.765622px;}
.yb0{bottom:134.873247px;}
.y62{bottom:137.255891px;}
.y81{bottom:137.836020px;}
.y5{bottom:138.020387px;}
.y73{bottom:142.835891px;}
.y6c{bottom:146.350830px;}
.y6a{bottom:149.530958px;}
.ya8{bottom:150.053892px;}
.y24{bottom:156.620123px;}
.yaf{bottom:160.073245px;}
.y18{bottom:162.258432px;}
.y89{bottom:164.082991px;}
.y52{bottom:164.257692px;}
.y45{bottom:164.798300px;}
.y80{bottom:169.304521px;}
.y33{bottom:170.555937px;}
.y8e{bottom:174.230795px;}
.y61{bottom:174.515926px;}
.ya7{bottom:178.970915px;}
.y17{bottom:179.133433px;}
.y69{bottom:181.930966px;}
.y51{bottom:189.007693px;}
.y72{bottom:193.775916px;}
.yae{bottom:196.454160px;}
.y44{bottom:198.818289px;}
.y7f{bottom:200.773022px;}
.y88{bottom:201.342992px;}
.ya6{bottom:207.887927px;}
.y9a{bottom:209.900091px;}
.y3{bottom:210.285977px;}
.y8d{bottom:211.490785px;}
.y60{bottom:211.775916px;}
.y50{bottom:213.757694px;}
.y68{bottom:214.330971px;}
.y32{bottom:216.275939px;}
.y94{bottom:223.341040px;}
.y71{bottom:231.035917px;}
.y7e{bottom:232.241523px;}
.y43{bottom:232.838291px;}
.ya5{bottom:236.804917px;}
.y4f{bottom:238.507694px;}
.y87{bottom:238.602982px;}
.y31{bottom:241.115940px;}
.y54{bottom:243.629997px;}
.y99{bottom:247.160081px;}
.y67{bottom:247.230020px;}
.y8c{bottom:248.750775px;}
.y5f{bottom:249.035917px;}
.yb{bottom:252.123682px;}
.yf{bottom:258.506099px;}
.y93{bottom:260.601030px;}
.y4e{bottom:263.257695px;}
.y7d{bottom:263.710024px;}
.ya4{bottom:265.721918px;}
.y42{bottom:266.858280px;}
.y30{bottom:267.215929px;}
.y70{bottom:268.295907px;}
.y86{bottom:275.862972px;}
.ye{bottom:283.243285px;}
.y1d{bottom:284.309995px;}
.y98{bottom:284.420071px;}
.y8b{bottom:286.010765px;}
.y5e{bottom:286.295907px;}
.yd{bottom:287.617783px;}
.y4d{bottom:288.007696px;}
.y2{bottom:294.525973px;}
.ya3{bottom:294.638907px;}
.y7c{bottom:295.178525px;}
.y2f{bottom:296.195930px;}
.y66{bottom:297.629999px;}
.y92{bottom:297.861020px;}
.yc{bottom:298.260641px;}
.y41{bottom:300.878265px;}
.y5a{bottom:305.555897px;}
.y85{bottom:313.122962px;}
.y1b{bottom:313.829979px;}
.y97{bottom:321.680061px;}
.y8a{bottom:323.270777px;}
.y5d{bottom:323.555897px;}
.y2e{bottom:325.175920px;}
.y7b{bottom:326.647026px;}
.y53{bottom:330.029989px;}
.y40{bottom:334.898260px;}
.y91{bottom:335.121010px;}
.y4c{bottom:337.507698px;}
.y59{bottom:342.815887px;}
.y65{bottom:348.029989px;}
.y84{bottom:350.382974px;}
.ya2{bottom:352.472898px;}
.y2d{bottom:354.155921px;}
.y11{bottom:356.691457px;}
.y7a{bottom:358.115527px;}
.y96{bottom:358.940073px;}
.y3b{bottom:360.535627px;}
.y5c{bottom:360.815887px;}
.y3f{bottom:368.918261px;}
.y90{bottom:372.381022px;}
.y1{bottom:378.765960px;}
.y58{bottom:380.075899px;}
.ya1{bottom:381.389895px;}
.y10{bottom:381.441460px;}
.y2c{bottom:383.135910px;}
.y3a{bottom:389.515622px;}
.y95{bottom:396.200074px;}
.y5b{bottom:398.075900px;}
.y1a{bottom:400.229993px;}
.y3e{bottom:402.938262px;}
.y83{bottom:405.642976px;}
.y79{bottom:407.584031px;}
.y8f{bottom:409.641024px;}
.ya0{bottom:410.306898px;}
.y2b{bottom:412.115908px;}
.y20{bottom:413.991129px;}
.y57{bottom:435.335901px;}
.y9f{bottom:439.223899px;}
.y2a{bottom:441.095903px;}
.y1f{bottom:451.251130px;}
.y19{bottom:486.629996px;}
.y1e{bottom:508.524991px;}
.y3d{bottom:509.964981px;}
.h17{height:39.366212px;}
.h4{height:40.899743px;}
.h6{height:48.114260px;}
.ha{height:52.488283px;}
.hc{height:55.112697px;}
.hf{height:56.862309px;}
.hb{height:61.017622px;}
.hd{height:61.154297px;}
.h2{height:61.236328px;}
.h3{height:61.359375px;}
.h12{height:65.522463px;}
.h18{height:66.922567px;}
.h15{height:72.729931px;}
.h16{height:72.827489px;}
.h13{height:73.248049px;}
.h14{height:78.626956px;}
.h9{height:78.732424px;}
.h10{height:84.000000px;}
.he{height:105.851382px;}
.h8{height:110.225394px;}
.h11{height:122.472656px;}
.h7{height:157.464849px;}
.h1{height:204.704297px;}
.h5{height:209.953132px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1d{left:2.941722px;}
.x1e{left:10.125000px;}
.x2c{left:16.080709px;}
.x1a{left:17.875985px;}
.x5{left:19.184055px;}
.x19{left:21.126970px;}
.x18{left:27.599410px;}
.x14{left:29.831695px;}
.x2f{left:30.894687px;}
.x1f{left:32.479493px;}
.x17{left:46.939963px;}
.x11{left:55.145444px;}
.x2{left:56.197375px;}
.x2e{left:57.631857px;}
.x10{left:58.647884px;}
.x1b{left:61.262959px;}
.x27{left:68.028550px;}
.xa{left:72.713054px;}
.x9{left:77.960125px;}
.x28{left:100.939964px;}
.x35{left:102.171262px;}
.x1c{left:117.067897px;}
.x1{left:156.392966px;}
.x16{left:195.341328px;}
.xd{left:225.406266px;}
.x6{left:327.620604px;}
.xe{left:372.310406px;}
.xf{left:407.409836px;}
.x2d{left:495.623041px;}
.x3{left:506.842649px;}
.x15{left:515.483274px;}
.x12{left:543.511289px;}
.x13{left:545.464315px;}
.x7{left:547.728122px;}
.x2b{left:580.880944px;}
.x32{left:589.786417px;}
.x34{left:591.572838px;}
.x29{left:595.203940px;}
.x8{left:600.164512px;}
.x36{left:617.695782px;}
.x23{left:627.956683px;}
.x33{left:633.094524px;}
.x2a{left:634.880945px;}
.x20{left:655.662441px;}
.x30{left:659.716559px;}
.x37{left:665.738993px;}
.x21{left:689.356266px;}
.x31{left:696.498997px;}
.x38{left:706.594523px;}
.x25{left:715.555285px;}
.x22{left:732.664373px;}
.x4{left:740.955995px;}
.x39{left:742.452211px;}
.x26{left:755.232290px;}
.x24{left:796.196799px;}
.xb{left:803.910463px;}
.xc{left:806.836319px;}
@media print{
.v1{vertical-align:-2.336200pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.050550pt;}
.ls4{letter-spacing:0.079880pt;}
.ls0{letter-spacing:1.333336pt;}
.ls3{letter-spacing:96.000379pt;}
.ws1{word-spacing:-70.912002pt;}
.wsc{word-spacing:-57.600002pt;}
.ws5{word-spacing:-37.228801pt;}
.wsb{word-spacing:-26.592001pt;}
.wsd{word-spacing:-24.597600pt;}
.ws10{word-spacing:-22.603203pt;}
.ws7{word-spacing:-20.682667pt;}
.ws3{word-spacing:-20.608798pt;}
.ws9{word-spacing:-19.205335pt;}
.ws4{word-spacing:-18.614401pt;}
.ws2{word-spacing:-17.728001pt;}
.ws8{word-spacing:-16.250668pt;}
.wse{word-spacing:-13.296000pt;}
.wsa{word-spacing:-0.074667pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:73.374495pt;}
.ws6{word-spacing:75.292463pt;}
._1{margin-left:-18.470400pt;}
._0{margin-left:-13.728000pt;}
._c{margin-left:-10.442815pt;}
._4{margin-left:-9.472000pt;}
._9{margin-left:-8.183999pt;}
._5{margin-left:-7.104000pt;}
._b{margin-left:-5.525333pt;}
._6{margin-left:-4.629334pt;}
._2{margin-left:-2.762667pt;}
._3{margin-left:-1.845185pt;}
._e{width:0.905600pt;}
._7{width:1.806800pt;}
._8{width:2.958501pt;}
._a{width:95.975130pt;}
._d{width:144.737683pt;}
.fs11{font-size:48.000002pt;}
.fs3{font-size:49.869866pt;}
.fs5{font-size:58.666670pt;}
.fs9{font-size:64.000002pt;}
.fsb{font-size:67.200002pt;}
.fsd{font-size:69.333338pt;}
.fsa{font-size:74.399994pt;}
.fs2{font-size:74.666665pt;}
.fs1{font-size:74.666666pt;}
.fsf{font-size:80.000003pt;}
.fs12{font-size:81.600011pt;}
.fs10{font-size:88.799999pt;}
.fs8{font-size:96.000003pt;}
.fsc{font-size:129.066684pt;}
.fs7{font-size:134.400004pt;}
.fse{font-size:149.333333pt;}
.fs6{font-size:192.000006pt;}
.fs0{font-size:249.600000pt;}
.fs4{font-size:256.000008pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:6.323283pt;}
.y3c{bottom:6.532383pt;}
.y36{bottom:6.859583pt;}
.y1c{bottom:7.437043pt;}
.y4a{bottom:7.871783pt;}
.y49{bottom:8.450163pt;}
.ya{bottom:10.684803pt;}
.y9e{bottom:10.876378pt;}
.y56{bottom:13.888083pt;}
.yad{bottom:14.411653pt;}
.y38{bottom:14.613203pt;}
.y6f{bottom:18.958103pt;}
.y76{bottom:18.998213pt;}
.y39{bottom:20.828943pt;}
.y64{bottom:23.272013pt;}
.y23{bottom:24.390754pt;}
.y9d{bottom:25.276380pt;}
.y35{bottom:26.059584pt;}
.yac{bottom:30.565204pt;}
.y9{bottom:33.084794pt;}
.y37{bottom:33.813204pt;}
.y55{bottom:34.688084pt;}
.y75{bottom:36.598214pt;}
.y28{bottom:38.401894pt;}
.y9c{bottom:39.676382pt;}
.y63{bottom:42.472014pt;}
.y78{bottom:45.087954pt;}
.y22{bottom:46.470754pt;}
.yb3{bottom:52.687334pt;}
.y9b{bottom:54.076384pt;}
.y74{bottom:54.198214pt;}
.y8{bottom:55.484789pt;}
.y48{bottom:55.767365pt;}
.yab{bottom:56.269215pt;}
.y21{bottom:68.550755pt;}
.yb2{bottom:75.087330pt;}
.y27{bottom:75.605890pt;}
.y7{bottom:77.884795pt;}
.yaa{bottom:81.973235pt;}
.y12{bottom:82.302095pt;}
.y16{bottom:85.938109pt;}
.y47{bottom:86.007355pt;}
.y29{bottom:87.179088pt;}
.y6e{bottom:88.489626pt;}
.y77{bottom:88.885236pt;}
.y4{bottom:89.142988pt;}
.y82{bottom:94.548876pt;}
.y26{bottom:96.809886pt;}
.yb1{bottom:97.487336pt;}
.y6{bottom:100.284790pt;}
.y15{bottom:100.930503pt;}
.y14{bottom:103.222383pt;}
.y6b{bottom:104.116406pt;}
.ya9{bottom:107.677236pt;}
.y6d{bottom:109.289626pt;}
.y13{bottom:109.839827pt;}
.y34{bottom:109.845266pt;}
.y46{bottom:116.247376pt;}
.y25{bottom:118.013886pt;}
.yb0{bottom:119.887331pt;}
.y62{bottom:122.005237pt;}
.y81{bottom:122.520907pt;}
.y5{bottom:122.684789pt;}
.y73{bottom:126.965237pt;}
.y6c{bottom:130.089627pt;}
.y6a{bottom:132.916407pt;}
.ya8{bottom:133.381237pt;}
.y24{bottom:139.217887pt;}
.yaf{bottom:142.287329pt;}
.y18{bottom:144.229717pt;}
.y89{bottom:145.851547pt;}
.y52{bottom:146.006837pt;}
.y45{bottom:146.487377pt;}
.y80{bottom:150.492908pt;}
.y33{bottom:151.605278pt;}
.y8e{bottom:154.871818pt;}
.y61{bottom:155.125268pt;}
.ya7{bottom:159.085258pt;}
.y17{bottom:159.229718pt;}
.y69{bottom:161.716414pt;}
.y51{bottom:168.006838pt;}
.y72{bottom:172.245258pt;}
.yae{bottom:174.625920pt;}
.y44{bottom:176.727368pt;}
.y7f{bottom:178.464908pt;}
.y88{bottom:178.971548pt;}
.ya6{bottom:184.789269pt;}
.y9a{bottom:186.577859pt;}
.y3{bottom:186.920869pt;}
.y8d{bottom:187.991809pt;}
.y60{bottom:188.245259pt;}
.y50{bottom:190.006839pt;}
.y68{bottom:190.516419pt;}
.y32{bottom:192.245279pt;}
.y94{bottom:198.525369pt;}
.y71{bottom:205.365259pt;}
.y7e{bottom:206.436909pt;}
.y43{bottom:206.967369pt;}
.ya5{bottom:210.493259pt;}
.y4f{bottom:212.006840pt;}
.y87{bottom:212.091540pt;}
.y31{bottom:214.325280pt;}
.y54{bottom:216.559998pt;}
.y99{bottom:219.697850pt;}
.y67{bottom:219.760018pt;}
.y8c{bottom:221.111800pt;}
.y5f{bottom:221.365260pt;}
.yb{bottom:224.109940pt;}
.yf{bottom:229.783199pt;}
.y93{bottom:231.645360pt;}
.y4e{bottom:234.006840pt;}
.y7d{bottom:234.408910pt;}
.ya4{bottom:236.197260pt;}
.y42{bottom:237.207360pt;}
.y30{bottom:237.525270pt;}
.y70{bottom:238.485250pt;}
.y86{bottom:245.211531pt;}
.ye{bottom:251.771809pt;}
.y1d{bottom:252.719996pt;}
.y98{bottom:252.817841pt;}
.y8b{bottom:254.231791pt;}
.y5e{bottom:254.485251pt;}
.yd{bottom:255.660252pt;}
.y4d{bottom:256.006841pt;}
.y2{bottom:261.800865pt;}
.ya3{bottom:261.901251pt;}
.y7c{bottom:262.380911pt;}
.y2f{bottom:263.285271pt;}
.y66{bottom:264.559999pt;}
.y92{bottom:264.765351pt;}
.yc{bottom:265.120569pt;}
.y41{bottom:267.447346pt;}
.y5a{bottom:271.605241pt;}
.y85{bottom:278.331522pt;}
.y1b{bottom:278.959982pt;}
.y97{bottom:285.937832pt;}
.y8a{bottom:287.351802pt;}
.y5d{bottom:287.605242pt;}
.y2e{bottom:289.045262pt;}
.y7b{bottom:290.352912pt;}
.y53{bottom:293.359990pt;}
.y40{bottom:297.687342pt;}
.y91{bottom:297.885342pt;}
.y4c{bottom:300.006842pt;}
.y59{bottom:304.725232pt;}
.y65{bottom:309.359991pt;}
.y84{bottom:311.451533pt;}
.ya2{bottom:313.309243pt;}
.y2d{bottom:314.805263pt;}
.y11{bottom:317.059073pt;}
.y7a{bottom:318.324913pt;}
.y96{bottom:319.057843pt;}
.y3b{bottom:320.476113pt;}
.y5c{bottom:320.725233pt;}
.y3f{bottom:327.927343pt;}
.y90{bottom:331.005353pt;}
.y1{bottom:336.680853pt;}
.y58{bottom:337.845244pt;}
.ya1{bottom:339.013240pt;}
.y10{bottom:339.059076pt;}
.y2c{bottom:340.565254pt;}
.y3a{bottom:346.236109pt;}
.y95{bottom:352.177844pt;}
.y5b{bottom:353.845244pt;}
.y1a{bottom:355.759994pt;}
.y3e{bottom:358.167344pt;}
.y83{bottom:360.571534pt;}
.y79{bottom:362.296916pt;}
.y8f{bottom:364.125354pt;}
.ya0{bottom:364.717242pt;}
.y2b{bottom:366.325251pt;}
.y20{bottom:367.992114pt;}
.y57{bottom:386.965245pt;}
.y9f{bottom:390.421243pt;}
.y2a{bottom:392.085247pt;}
.y1f{bottom:401.112116pt;}
.y19{bottom:432.559997pt;}
.y1e{bottom:452.022214pt;}
.y3d{bottom:453.302205pt;}
.h17{height:34.992189pt;}
.h4{height:36.355327pt;}
.h6{height:42.768232pt;}
.ha{height:46.656251pt;}
.hc{height:48.989064pt;}
.hf{height:50.544274pt;}
.hb{height:54.237887pt;}
.hd{height:54.359375pt;}
.h2{height:54.432291pt;}
.h3{height:54.541666pt;}
.h12{height:58.242189pt;}
.h18{height:59.486726pt;}
.h15{height:64.648827pt;}
.h16{height:64.735546pt;}
.h13{height:65.109377pt;}
.h14{height:69.890627pt;}
.h9{height:69.984377pt;}
.h10{height:74.666666pt;}
.he{height:94.090117pt;}
.h8{height:97.978128pt;}
.h11{height:108.864583pt;}
.h7{height:139.968754pt;}
.h1{height:181.959375pt;}
.h5{height:186.625006pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:2.614864pt;}
.x1e{left:9.000000pt;}
.x2c{left:14.293964pt;}
.x1a{left:15.889765pt;}
.x5{left:17.052494pt;}
.x19{left:18.779529pt;}
.x18{left:24.532809pt;}
.x14{left:26.517062pt;}
.x2f{left:27.461944pt;}
.x1f{left:28.870661pt;}
.x17{left:41.724411pt;}
.x11{left:49.018172pt;}
.x2{left:49.953223pt;}
.x2e{left:51.228318pt;}
.x10{left:52.131452pt;}
.x1b{left:54.455964pt;}
.x27{left:60.469822pt;}
.xa{left:64.633826pt;}
.x9{left:69.297888pt;}
.x28{left:89.724413pt;}
.x35{left:90.818900pt;}
.x1c{left:104.060353pt;}
.x1{left:139.015969pt;}
.x16{left:173.636736pt;}
.xd{left:200.361125pt;}
.x6{left:291.218314pt;}
.xe{left:330.942583pt;}
.xf{left:362.142076pt;}
.x2d{left:440.553814pt;}
.x3{left:450.526799pt;}
.x15{left:458.207355pt;}
.x12{left:483.121145pt;}
.x13{left:484.857169pt;}
.x7{left:486.869441pt;}
.x2b{left:516.338617pt;}
.x32{left:524.254593pt;}
.x34{left:525.842523pt;}
.x29{left:529.070169pt;}
.x8{left:533.479566pt;}
.x36{left:549.062918pt;}
.x23{left:558.183718pt;}
.x33{left:562.750688pt;}
.x2a{left:564.338618pt;}
.x20{left:582.811059pt;}
.x30{left:586.414719pt;}
.x37{left:591.767994pt;}
.x21{left:612.761126pt;}
.x31{left:619.110220pt;}
.x38{left:628.084020pt;}
.x25{left:636.049142pt;}
.x22{left:651.257221pt;}
.x4{left:658.627551pt;}
.x39{left:659.957521pt;}
.x26{left:671.317591pt;}
.x24{left:707.730488pt;}
.xb{left:714.587078pt;}
.xc{left:717.187839pt;}
}




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