
    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_e23e5c6f1f1184212afc611a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_8f279444885edf79fbb35dc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_0a58e9ac982f0caf301ad89c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_a426955031dc0f52f617d27d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_d81c0c214884bea284e8405a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_893d64c9e5ba893e8ab41046.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ca6723cc59db0ad13b713857.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.070759px;}
.ls4{letter-spacing:34.055251px;}
.ls5{letter-spacing:39.250754px;}
.ls3{letter-spacing:51.335269px;}
.ls0{letter-spacing:194.399342px;}
.ls6{letter-spacing:845.999288px;}
.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:-18.000676px;}
.ws3{word-spacing:-14.970850px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._1a{margin-left:-4.857372px;}
._b{margin-left:-3.600135px;}
._c{margin-left:-2.391229px;}
._1{margin-left:-1.007997px;}
._0{width:1.079997px;}
._f{width:2.230181px;}
._4{width:3.266560px;}
._5{width:4.536669px;}
._16{width:5.582368px;}
._a{width:7.323422px;}
._9{width:9.144906px;}
._8{width:10.182195px;}
._19{width:11.712252px;}
._d{width:12.972018px;}
._10{width:14.053790px;}
._15{width:15.237291px;}
._1b{width:16.479662px;}
._1d{width:19.176388px;}
._6{width:20.222353px;}
._7{width:21.515633px;}
._20{width:22.558499px;}
._1e{width:23.687765px;}
._1f{width:24.737381px;}
._2e{width:26.378866px;}
._e{width:28.426404px;}
._11{width:29.534653px;}
._2c{width:31.488481px;}
._3{width:35.891668px;}
._2{width:37.359415px;}
._17{width:50.326515px;}
._14{width:52.641008px;}
._13{width:56.693649px;}
._12{width:57.738056px;}
._2f{width:60.004691px;}
._30{width:61.399859px;}
._18{width:80.492836px;}
._31{width:152.684266px;}
._22{width:165.966237px;}
._23{width:170.861815px;}
._2d{width:172.375037px;}
._28{width:185.949797px;}
._1c{width:194.407302px;}
._32{width:201.448634px;}
._33{width:203.253255px;}
._2b{width:247.955657px;}
._29{width:251.633702px;}
._27{width:289.451435px;}
._2a{width:290.891489px;}
._25{width:313.931792px;}
._26{width:326.172814px;}
._24{width:457.286645px;}
._21{width:541.073886px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y3d{bottom:109.440033px;}
.ya9{bottom:109.800110px;}
.y70{bottom:111.240074px;}
.y87{bottom:121.320099px;}
.y3c{bottom:130.140060px;}
.ya8{bottom:130.500068px;}
.y6f{bottom:131.940033px;}
.yc6{bottom:141.120072px;}
.y86{bottom:142.020058px;}
.y3b{bottom:150.840088px;}
.ya7{bottom:151.200096px;}
.y6e{bottom:152.640060px;}
.yc5{bottom:161.820099px;}
.y85{bottom:162.720085px;}
.y3a{bottom:171.540047px;}
.ya6{bottom:171.900055px;}
.y6d{bottom:173.340088px;}
.yc4{bottom:182.520058px;}
.y84{bottom:183.420043px;}
.y39{bottom:192.240074px;}
.ya5{bottom:192.600083px;}
.y6c{bottom:194.040047px;}
.yc3{bottom:203.220085px;}
.y83{bottom:204.120072px;}
.y38{bottom:212.940033px;}
.ya4{bottom:213.300041px;}
.y6b{bottom:214.560036px;}
.yc2{bottom:223.920043px;}
.y82{bottom:224.820099px;}
.y37{bottom:233.640060px;}
.ya3{bottom:234.000068px;}
.y6a{bottom:236.520058px;}
.yc1{bottom:244.620072px;}
.y81{bottom:245.520058px;}
.y36{bottom:254.340088px;}
.ya2{bottom:254.700096px;}
.y69{bottom:258.480079px;}
.yc0{bottom:265.320099px;}
.y80{bottom:266.220085px;}
.y35{bottom:275.040047px;}
.ya1{bottom:275.400055px;}
.y68{bottom:280.620072px;}
.ybf{bottom:286.020058px;}
.y7f{bottom:286.920043px;}
.y34{bottom:295.740074px;}
.ya0{bottom:297.720085px;}
.y67{bottom:301.140060px;}
.ybe{bottom:306.720085px;}
.y7e{bottom:307.620072px;}
.y33{bottom:316.440033px;}
.y9f{bottom:320.040047px;}
.y66{bottom:323.280052px;}
.ybd{bottom:327.420043px;}
.y7d{bottom:328.320099px;}
.y32{bottom:337.140060px;}
.y9e{bottom:342.360077px;}
.y65{bottom:345.240074px;}
.ybc{bottom:347.760064px;}
.y7c{bottom:349.020058px;}
.y31{bottom:357.840088px;}
.y9d{bottom:363.780052px;}
.y64{bottom:367.020058px;}
.ybb{bottom:368.460091px;}
.y7b{bottom:369.720085px;}
.y30{bottom:378.540047px;}
.y9c{bottom:384.480079px;}
.y63{bottom:387.900055px;}
.yba{bottom:389.520058px;}
.y7a{bottom:390.420043px;}
.y2f{bottom:399.240074px;}
.y9b{bottom:406.800041px;}
.y62{bottom:409.860077px;}
.yb9{bottom:410.220085px;}
.y79{bottom:411.120072px;}
.y2e{bottom:419.940033px;}
.y9a{bottom:428.940033px;}
.yb8{bottom:430.920043px;}
.y61{bottom:431.820099px;}
.y2d{bottom:440.640060px;}
.y99{bottom:450.360077px;}
.yb7{bottom:451.620072px;}
.y78{bottom:452.520058px;}
.y60{bottom:453.780052px;}
.y2c{bottom:461.340088px;}
.y98{bottom:471.060036px;}
.yb6{bottom:472.320099px;}
.y77{bottom:473.220085px;}
.y5f{bottom:475.920043px;}
.y2b{bottom:482.040047px;}
.y97{bottom:491.760064px;}
.yb5{bottom:493.020058px;}
.y76{bottom:493.920043px;}
.y5e{bottom:497.880066px;}
.y2a{bottom:502.740074px;}
.y96{bottom:512.820099px;}
.yb4{bottom:513.720085px;}
.y75{bottom:514.620072px;}
.y5d{bottom:519.660049px;}
.y29{bottom:523.440033px;}
.y74{bottom:530.820099px;}
.y95{bottom:533.520058px;}
.yb3{bottom:534.420043px;}
.y5c{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.y94{bottom:554.220085px;}
.yb2{bottom:555.120072px;}
.y5b{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.y93{bottom:574.920043px;}
.yb1{bottom:575.820099px;}
.y5a{bottom:582.120072px;}
.y26{bottom:585.540047px;}
.y92{bottom:595.620072px;}
.yb0{bottom:596.520058px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.y91{bottom:616.320099px;}
.yaf{bottom:617.220085px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.y90{bottom:637.020058px;}
.yae{bottom:637.920043px;}
.y57{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.y8f{bottom:657.720085px;}
.yad{bottom:658.620072px;}
.y56{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.y8e{bottom:678.420043px;}
.yac{bottom:679.320099px;}
.y55{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.yab{bottom:695.520058px;}
.y8d{bottom:699.120072px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.y8c{bottom:719.820065px;}
.y73{bottom:726.660049px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.y8b{bottom:740.520058px;}
.y72{bottom:747.360077px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.y8a{bottom:761.220051px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.y89{bottom:777.420078px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:812.520058px;}
.y1a{bottom:829.800076px;}
.y4e{bottom:830.520058px;}
.y19{bottom:847.080059px;}
.y4d{bottom:851.220051px;}
.y18{bottom:865.080059px;}
.y4c{bottom:871.920078px;}
.y17{bottom:885.780052px;}
.y4b{bottom:892.620072px;}
.yc7{bottom:893.160049px;}
.y16{bottom:906.480079px;}
.y4a{bottom:913.320065px;}
.y15{bottom:926.820065px;}
.y49{bottom:934.020058px;}
.y14{bottom:947.880066px;}
.y48{bottom:954.360077px;}
.y71{bottom:954.720051px;}
.y13{bottom:968.220051px;}
.y47{bottom:975.420061px;}
.y12{bottom:989.280069px;}
.y46{bottom:996.120072px;}
.y11{bottom:1009.620072px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.yaa{bottom:1078.560070px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y88{bottom:1119.960065px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1136.159694px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.h6{height:33.684460px;}
.hb{height:41.728524px;}
.h4{height:47.982689px;}
.h2{height:50.275326px;}
.h7{height:50.800650px;}
.h8{height:50.802689px;}
.h9{height:51.998047px;}
.hc{height:52.419938px;}
.ha{height:59.345979px;}
.hd{height:65.886904px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x15{left:89.280001px;}
.x8{left:93.603276px;}
.x13{left:95.579999px;}
.x14{left:111.959997px;}
.xe{left:138.959997px;}
.xb{left:146.879998px;}
.x18{left:155.879998px;}
.xd{left:168.120002px;}
.x1c{left:206.819996px;}
.x1e{left:213.120002px;}
.xc{left:323.819996px;}
.x9{left:352.976623px;}
.x1d{left:360.720017px;}
.x20{left:404.459988px;}
.x16{left:417.420010px;}
.x2{left:432.899987px;}
.x1a{left:446.399987px;}
.x12{left:470.339985px;}
.xa{left:473.399987px;}
.x10{left:522.180005px;}
.x11{left:526.860008px;}
.xf{left:584.820030px;}
.x19{left:681.480011px;}
.x1f{left:689.399987px;}
.x1b{left:744.299973px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x17{left:783.899987px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.062897pt;}
.ls4{letter-spacing:30.271334pt;}
.ls5{letter-spacing:34.889559pt;}
.ls3{letter-spacing:45.631350pt;}
.ls0{letter-spacing:172.799415pt;}
.ls6{letter-spacing:751.999367pt;}
.ws1{word-spacing:-16.000601pt;}
.ws3{word-spacing:-13.307422pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._1a{margin-left:-4.317664pt;}
._b{margin-left:-3.200120pt;}
._c{margin-left:-2.125537pt;}
._1{margin-left:-0.895998pt;}
._0{width:0.959998pt;}
._f{width:1.982383pt;}
._4{width:2.903609pt;}
._5{width:4.032595pt;}
._16{width:4.962105pt;}
._a{width:6.509708pt;}
._9{width:8.128805pt;}
._8{width:9.050840pt;}
._19{width:10.410891pt;}
._d{width:11.530683pt;}
._10{width:12.492258pt;}
._15{width:13.544259pt;}
._1b{width:14.648589pt;}
._1d{width:17.045678pt;}
._6{width:17.975425pt;}
._7{width:19.125007pt;}
._20{width:20.051999pt;}
._1e{width:21.055791pt;}
._1f{width:21.988783pt;}
._2e{width:23.447881pt;}
._e{width:25.267914pt;}
._11{width:26.253025pt;}
._2c{width:27.989761pt;}
._3{width:31.903705pt;}
._2{width:33.208369pt;}
._17{width:44.734680pt;}
._14{width:46.792008pt;}
._13{width:50.394354pt;}
._12{width:51.322716pt;}
._2f{width:53.337503pt;}
._30{width:54.577653pt;}
._18{width:71.549187pt;}
._31{width:135.719348pt;}
._22{width:147.525544pt;}
._23{width:151.877169pt;}
._2d{width:153.222255pt;}
._28{width:165.288708pt;}
._1c{width:172.806491pt;}
._32{width:179.065452pt;}
._33{width:180.669560pt;}
._2b{width:220.405029pt;}
._29{width:223.674401pt;}
._27{width:257.290164pt;}
._2a{width:258.570212pt;}
._25{width:279.050481pt;}
._26{width:289.931390pt;}
._24{width:406.477018pt;}
._21{width:480.954565pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y3d{bottom:97.280030pt;}
.ya9{bottom:97.600098pt;}
.y70{bottom:98.880066pt;}
.y87{bottom:107.840088pt;}
.y3c{bottom:115.680054pt;}
.ya8{bottom:116.000061pt;}
.y6f{bottom:117.280030pt;}
.yc6{bottom:125.440064pt;}
.y86{bottom:126.240052pt;}
.y3b{bottom:134.080079pt;}
.ya7{bottom:134.400086pt;}
.y6e{bottom:135.680054pt;}
.yc5{bottom:143.840088pt;}
.y85{bottom:144.640076pt;}
.y3a{bottom:152.480042pt;}
.ya6{bottom:152.800049pt;}
.y6d{bottom:154.080079pt;}
.yc4{bottom:162.240052pt;}
.y84{bottom:163.040039pt;}
.y39{bottom:170.880066pt;}
.ya5{bottom:171.200074pt;}
.y6c{bottom:172.480042pt;}
.yc3{bottom:180.640076pt;}
.y83{bottom:181.440064pt;}
.y38{bottom:189.280030pt;}
.ya4{bottom:189.600037pt;}
.y6b{bottom:190.720032pt;}
.yc2{bottom:199.040039pt;}
.y82{bottom:199.840088pt;}
.y37{bottom:207.680054pt;}
.ya3{bottom:208.000061pt;}
.y6a{bottom:210.240052pt;}
.yc1{bottom:217.440064pt;}
.y81{bottom:218.240052pt;}
.y36{bottom:226.080079pt;}
.ya2{bottom:226.400086pt;}
.y69{bottom:229.760071pt;}
.yc0{bottom:235.840088pt;}
.y80{bottom:236.640076pt;}
.y35{bottom:244.480042pt;}
.ya1{bottom:244.800049pt;}
.y68{bottom:249.440064pt;}
.ybf{bottom:254.240052pt;}
.y7f{bottom:255.040039pt;}
.y34{bottom:262.880066pt;}
.ya0{bottom:264.640076pt;}
.y67{bottom:267.680054pt;}
.ybe{bottom:272.640076pt;}
.y7e{bottom:273.440064pt;}
.y33{bottom:281.280030pt;}
.y9f{bottom:284.480042pt;}
.y66{bottom:287.360047pt;}
.ybd{bottom:291.040039pt;}
.y7d{bottom:291.840088pt;}
.y32{bottom:299.680054pt;}
.y9e{bottom:304.320069pt;}
.y65{bottom:306.880066pt;}
.ybc{bottom:309.120057pt;}
.y7c{bottom:310.240052pt;}
.y31{bottom:318.080079pt;}
.y9d{bottom:323.360047pt;}
.y64{bottom:326.240052pt;}
.ybb{bottom:327.520081pt;}
.y7b{bottom:328.640076pt;}
.y30{bottom:336.480042pt;}
.y9c{bottom:341.760071pt;}
.y63{bottom:344.800049pt;}
.yba{bottom:346.240052pt;}
.y7a{bottom:347.040039pt;}
.y2f{bottom:354.880066pt;}
.y9b{bottom:361.600037pt;}
.y62{bottom:364.320069pt;}
.yb9{bottom:364.640076pt;}
.y79{bottom:365.440064pt;}
.y2e{bottom:373.280030pt;}
.y9a{bottom:381.280030pt;}
.yb8{bottom:383.040039pt;}
.y61{bottom:383.840088pt;}
.y2d{bottom:391.680054pt;}
.y99{bottom:400.320069pt;}
.yb7{bottom:401.440064pt;}
.y78{bottom:402.240052pt;}
.y60{bottom:403.360047pt;}
.y2c{bottom:410.080079pt;}
.y98{bottom:418.720032pt;}
.yb6{bottom:419.840088pt;}
.y77{bottom:420.640076pt;}
.y5f{bottom:423.040039pt;}
.y2b{bottom:428.480042pt;}
.y97{bottom:437.120057pt;}
.yb5{bottom:438.240052pt;}
.y76{bottom:439.040039pt;}
.y5e{bottom:442.560059pt;}
.y2a{bottom:446.880066pt;}
.y96{bottom:455.840088pt;}
.yb4{bottom:456.640076pt;}
.y75{bottom:457.440064pt;}
.y5d{bottom:461.920044pt;}
.y29{bottom:465.280030pt;}
.y74{bottom:471.840088pt;}
.y95{bottom:474.240052pt;}
.yb3{bottom:475.040039pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.y94{bottom:492.640076pt;}
.yb2{bottom:493.440064pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.y93{bottom:511.040039pt;}
.yb1{bottom:511.840088pt;}
.y5a{bottom:517.440064pt;}
.y26{bottom:520.480042pt;}
.y92{bottom:529.440064pt;}
.yb0{bottom:530.240052pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.y91{bottom:547.840088pt;}
.yaf{bottom:548.640076pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.y90{bottom:566.240052pt;}
.yae{bottom:567.040039pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.y8f{bottom:584.640076pt;}
.yad{bottom:585.440064pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.y8e{bottom:603.040039pt;}
.yac{bottom:603.840088pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.yab{bottom:618.240052pt;}
.y8d{bottom:621.440064pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.y8c{bottom:639.840058pt;}
.y73{bottom:645.920044pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.y8b{bottom:658.240052pt;}
.y72{bottom:664.320069pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.y8a{bottom:676.640046pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.y89{bottom:691.040070pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.240052pt;}
.y1a{bottom:737.600068pt;}
.y4e{bottom:738.240052pt;}
.y19{bottom:752.960053pt;}
.y4d{bottom:756.640046pt;}
.y18{bottom:768.960053pt;}
.y4c{bottom:775.040070pt;}
.y17{bottom:787.360047pt;}
.y4b{bottom:793.440064pt;}
.yc7{bottom:793.920044pt;}
.y16{bottom:805.760071pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:823.840058pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:842.560059pt;}
.y48{bottom:848.320069pt;}
.y71{bottom:848.640046pt;}
.y13{bottom:860.640046pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:879.360062pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:897.440064pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.yaa{bottom:958.720063pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y88{bottom:995.520058pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1009.919728pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.h6{height:29.941742pt;}
.hb{height:37.092021pt;}
.h4{height:42.651279pt;}
.h2{height:44.689179pt;}
.h7{height:45.156133pt;}
.h8{height:45.157946pt;}
.h9{height:46.220486pt;}
.hc{height:46.595500pt;}
.ha{height:52.751981pt;}
.hd{height:58.566137pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x15{left:79.360001pt;}
.x8{left:83.202912pt;}
.x13{left:84.959999pt;}
.x14{left:99.519997pt;}
.xe{left:123.519997pt;}
.xb{left:130.559998pt;}
.x18{left:138.559998pt;}
.xd{left:149.440002pt;}
.x1c{left:183.839996pt;}
.x1e{left:189.440002pt;}
.xc{left:287.839996pt;}
.x9{left:313.756998pt;}
.x1d{left:320.640015pt;}
.x20{left:359.519989pt;}
.x16{left:371.040009pt;}
.x2{left:384.799988pt;}
.x1a{left:396.799988pt;}
.x12{left:418.079987pt;}
.xa{left:420.799988pt;}
.x10{left:464.160004pt;}
.x11{left:468.320007pt;}
.xf{left:519.840027pt;}
.x19{left:605.760010pt;}
.x1f{left:612.799988pt;}
.x1b{left:661.599976pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x17{left:696.799988pt;}
.x7{left:698.880005pt;}
.x4{left:722.559998pt;}
}




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