
    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_8cec0edb3459c147bf7f1cfd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_03cc77fe17ab344f04e39b91.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_5943e6dfefc8a3833433a5ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_e6658e3b6f09e6ad8e299e3b.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_326a6b585b93453e457d50b2.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_adfe467786729baf502b3ab1.woff2')format("woff");}.ff6{font-family:ff6;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:34.055251px;}
.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;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-4.597723px;}
._e{margin-left:-3.407753px;}
._4{margin-left:-2.215058px;}
._1{margin-left:-1.104185px;}
._0{width:1.079997px;}
._d{width:2.817741px;}
._2{width:4.664655px;}
._3{width:5.832833px;}
._b{width:7.022822px;}
._6{width:8.050759px;}
._5{width:9.550202px;}
._1a{width:10.936817px;}
._1b{width:12.508501px;}
._11{width:14.423604px;}
._19{width:15.719091px;}
._10{width:16.933292px;}
._24{width:19.282792px;}
._15{width:20.808825px;}
._16{width:21.810134px;}
._31{width:23.030590px;}
._9{width:24.107687px;}
._a{width:25.285887px;}
._c{width:26.354736px;}
._21{width:27.360614px;}
._7{width:28.438862px;}
._8{width:29.513471px;}
._17{width:31.650857px;}
._18{width:33.158370px;}
._39{width:34.344727px;}
._38{width:35.492833px;}
._20{width:38.077661px;}
._1e{width:39.613344px;}
._33{width:41.043186px;}
._1f{width:42.963958px;}
._13{width:44.971639px;}
._14{width:46.301027px;}
._3c{width:47.527069px;}
._3a{width:49.177221px;}
._23{width:50.322859px;}
._22{width:51.542124px;}
._3b{width:58.262044px;}
._1d{width:71.562425px;}
._1c{width:72.828204px;}
._32{width:74.360967px;}
._35{width:79.333761px;}
._2a{width:118.208190px;}
._36{width:148.487577px;}
._34{width:160.115452px;}
._37{width:166.579945px;}
._29{width:174.136291px;}
._28{width:187.482948px;}
._12{width:194.407302px;}
._2e{width:238.341046px;}
._2b{width:242.000527px;}
._27{width:262.317947px;}
._26{width:267.154222px;}
._25{width:315.699796px;}
._2c{width:399.400127px;}
._2f{width:434.681452px;}
._2d{width:541.245455px;}
._30{width:577.966834px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y99{bottom:3.959953px;}
.y92{bottom:3.959954px;}
.y7b{bottom:3.960006px;}
.y6b{bottom:3.960022px;}
.y97{bottom:4.319962px;}
.y7e{bottom:4.319996px;}
.y67{bottom:4.320030px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y76{bottom:102.960022px;}
.y3d{bottom:109.080093px;}
.y75{bottom:123.660049px;}
.yc2{bottom:126.720085px;}
.y3c{bottom:130.140060px;}
.yb3{bottom:139.860077px;}
.y74{bottom:144.360077px;}
.yc1{bottom:147.420043px;}
.y3b{bottom:150.840088px;}
.yb2{bottom:160.560036px;}
.y73{bottom:165.060036px;}
.yc0{bottom:168.120072px;}
.y3a{bottom:171.540047px;}
.yb1{bottom:181.260064px;}
.y72{bottom:185.760064px;}
.ybf{bottom:188.820099px;}
.y39{bottom:192.240074px;}
.yb0{bottom:201.960091px;}
.y71{bottom:206.460091px;}
.ybe{bottom:209.160049px;}
.y38{bottom:212.940033px;}
.yaf{bottom:222.660049px;}
.y70{bottom:227.160049px;}
.ybd{bottom:230.220085px;}
.y37{bottom:233.640060px;}
.yae{bottom:243.360077px;}
.y6f{bottom:247.860077px;}
.ybc{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.yad{bottom:264.060036px;}
.y6e{bottom:268.560036px;}
.ybb{bottom:271.620072px;}
.y35{bottom:275.040047px;}
.yac{bottom:284.760064px;}
.y6d{bottom:289.260064px;}
.yba{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.yab{bottom:305.460091px;}
.y6c{bottom:309.960091px;}
.yb9{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.yaa{bottom:326.160049px;}
.y69{bottom:327.060036px;}
.y6a{bottom:327.420043px;}
.y68{bottom:331.380066px;}
.yb8{bottom:333.720085px;}
.y32{bottom:336.780052px;}
.ya9{bottom:346.860077px;}
.y66{bottom:348.660049px;}
.y65{bottom:352.980079px;}
.yb7{bottom:354.420043px;}
.y31{bottom:357.840088px;}
.ya8{bottom:367.560036px;}
.y64{bottom:374.040047px;}
.yb6{bottom:375.120072px;}
.y30{bottom:378.540047px;}
.ya7{bottom:388.260064px;}
.y63{bottom:395.460091px;}
.yb5{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.ya6{bottom:408.960091px;}
.y62{bottom:416.160049px;}
.yb4{bottom:416.520058px;}
.y2e{bottom:419.940033px;}
.ya5{bottom:429.660049px;}
.y61{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.ya4{bottom:450.360077px;}
.y60{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.ya3{bottom:471.060036px;}
.y5f{bottom:478.620072px;}
.y2b{bottom:482.040047px;}
.ya2{bottom:491.760064px;}
.y5e{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.ya1{bottom:512.460091px;}
.y5d{bottom:520.020058px;}
.y29{bottom:523.440033px;}
.ya0{bottom:533.160049px;}
.y5c{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.y9f{bottom:553.860077px;}
.y5b{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.y9e{bottom:570.960091px;}
.y9d{bottom:575.280052px;}
.y5a{bottom:582.120072px;}
.y26{bottom:585.180039px;}
.y9b{bottom:592.380066px;}
.y9c{bottom:592.740074px;}
.y9a{bottom:596.700096px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.y96{bottom:613.980079px;}
.y98{bottom:614.340088px;}
.y95{bottom:618.300041px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.y94{bottom:635.400055px;}
.y93{bottom:639.720085px;}
.y57{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.y91{bottom:656.820099px;}
.y90{bottom:660.780052px;}
.y56{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.y8f{bottom:682.200096px;}
.y55{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.y8e{bottom:702.900055px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.y8d{bottom:723.960056px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.y8c{bottom:744.660049px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.y8b{bottom:765.360077px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.y8a{bottom:786.060070px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.y89{bottom:806.760064px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:813.240074px;}
.y88{bottom:827.460056px;}
.y4e{bottom:830.520058px;}
.y1a{bottom:833.580059px;}
.y87{bottom:848.160049px;}
.y4d{bottom:851.220051px;}
.y19{bottom:853.920078px;}
.y86{bottom:868.860077px;}
.y18{bottom:871.200061px;}
.y4c{bottom:871.920078px;}
.y17{bottom:888.480079px;}
.y85{bottom:889.560070px;}
.y4b{bottom:892.620072px;}
.y16{bottom:906.120072px;}
.y84{bottom:910.260064px;}
.y4a{bottom:913.320065px;}
.y15{bottom:927.180073px;}
.y83{bottom:930.960056px;}
.y49{bottom:934.020058px;}
.y14{bottom:947.880066px;}
.y82{bottom:951.660049px;}
.y48{bottom:954.720051px;}
.y13{bottom:968.220051px;}
.y81{bottom:972.360077px;}
.y47{bottom:975.420061px;}
.y12{bottom:989.280069px;}
.y80{bottom:989.460074px;}
.y7f{bottom:993.780069px;}
.y46{bottom:996.120072px;}
.y11{bottom:1009.620072px;}
.y7d{bottom:1010.880066px;}
.y7c{bottom:1015.200061px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.y7a{bottom:1032.300058px;}
.y79{bottom:1036.260064px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.y78{bottom:1057.860060px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.y77{bottom:1078.560070px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.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;}
.h12{height:20.159980px;}
.h13{height:20.159981px;}
.he{height:20.160049px;}
.h11{height:20.519989px;}
.hc{height:20.519990px;}
.h10{height:20.520006px;}
.hf{height:20.520007px;}
.hd{height:20.520057px;}
.h6{height:33.825793px;}
.hb{height:41.903609px;}
.h4{height:47.982689px;}
.h2{height:50.486271px;}
.h9{height:51.998047px;}
.h14{height:52.419938px;}
.ha{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.wc{width:7.739937px;}
.w8{width:7.739988px;}
.wb{width:7.740005px;}
.w5{width:7.740006px;}
.wa{width:7.919975px;}
.w6{width:7.920009px;}
.wd{width:7.920010px;}
.w9{width:8.819997px;}
.w7{width:40.500000px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x8{left:86.035912px;}
.x34{left:111.959997px;}
.xc{left:121.140000px;}
.x11{left:127.439999px;}
.x12{left:138.060001px;}
.x20{left:147.240006px;}
.x1e{left:148.860008px;}
.x27{left:167.219999px;}
.x28{left:204.840002px;}
.x14{left:207.719999px;}
.x15{left:213.120002px;}
.x1f{left:217.800007px;}
.x10{left:219.960005px;}
.x21{left:224.280001px;}
.xd{left:301.860008px;}
.x31{left:327.060001px;}
.x1a{left:340.379998px;}
.x32{left:344.339985px;}
.x1b{left:356.759994px;}
.x9{left:366.300810px;}
.xb{left:374.040012px;}
.x33{left:398.160015px;}
.x22{left:402.120002px;}
.x23{left:418.500000px;}
.x29{left:425.160015px;}
.x2d{left:426.240006px;}
.x2{left:437.399987px;}
.x2a{left:442.439999px;}
.xa{left:446.399987px;}
.x16{left:453.959988px;}
.xf{left:520.379998px;}
.x2b{left:524.160015px;}
.xe{left:534.959988px;}
.x2c{left:540.540012px;}
.x17{left:551.160015px;}
.x18{left:614.159981px;}
.x2e{left:622.440033px;}
.x19{left:630.360008px;}
.x24{left:632.159981px;}
.x2f{left:638.639992px;}
.x25{left:648.360008px;}
.x1c{left:670.860008px;}
.x1d{left:679.860008px;}
.x30{left:688.139992px;}
.x26{left:696.059967px;}
.x13{left:720.000000px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:30.271334pt;}
.ws1{word-spacing:-16.000601pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-4.086865pt;}
._e{margin-left:-3.029114pt;}
._4{margin-left:-1.968940pt;}
._1{margin-left:-0.981498pt;}
._0{width:0.959998pt;}
._d{width:2.504659pt;}
._2{width:4.146360pt;}
._3{width:5.184741pt;}
._b{width:6.242508pt;}
._6{width:7.156230pt;}
._5{width:8.489069pt;}
._1a{width:9.721615pt;}
._1b{width:11.118668pt;}
._11{width:12.820982pt;}
._19{width:13.972525pt;}
._10{width:15.051815pt;}
._24{width:17.140260pt;}
._15{width:18.496733pt;}
._16{width:19.386785pt;}
._31{width:20.471635pt;}
._9{width:21.429055pt;}
._a{width:22.476344pt;}
._c{width:23.426432pt;}
._21{width:24.320545pt;}
._7{width:25.278988pt;}
._8{width:26.234197pt;}
._17{width:28.134095pt;}
._18{width:29.474106pt;}
._39{width:30.528647pt;}
._38{width:31.549185pt;}
._20{width:33.846810pt;}
._1e{width:35.211861pt;}
._33{width:36.482832pt;}
._1f{width:38.190185pt;}
._13{width:39.974790pt;}
._14{width:41.156469pt;}
._3c{width:42.246284pt;}
._3a{width:43.713085pt;}
._23{width:44.731430pt;}
._22{width:45.815221pt;}
._3b{width:51.788484pt;}
._1d{width:63.611044pt;}
._1c{width:64.736182pt;}
._32{width:66.098637pt;}
._35{width:70.518899pt;}
._2a{width:105.073947pt;}
._36{width:131.988958pt;}
._34{width:142.324846pt;}
._37{width:148.071062pt;}
._29{width:154.787814pt;}
._28{width:166.651510pt;}
._12{width:172.806491pt;}
._2e{width:211.858708pt;}
._2b{width:215.111580pt;}
._27{width:233.171508pt;}
._26{width:237.470420pt;}
._25{width:280.622041pt;}
._2c{width:355.022335pt;}
._2f{width:386.383513pt;}
._2d{width:481.107071pt;}
._30{width:513.748297pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y99{bottom:3.519958pt;}
.y92{bottom:3.519959pt;}
.y7b{bottom:3.520005pt;}
.y6b{bottom:3.520020pt;}
.y97{bottom:3.839966pt;}
.y7e{bottom:3.839996pt;}
.y67{bottom:3.840027pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y76{bottom:91.520020pt;}
.y3d{bottom:96.960083pt;}
.y75{bottom:109.920044pt;}
.yc2{bottom:112.640076pt;}
.y3c{bottom:115.680054pt;}
.yb3{bottom:124.320069pt;}
.y74{bottom:128.320069pt;}
.yc1{bottom:131.040039pt;}
.y3b{bottom:134.080079pt;}
.yb2{bottom:142.720032pt;}
.y73{bottom:146.720032pt;}
.yc0{bottom:149.440064pt;}
.y3a{bottom:152.480042pt;}
.yb1{bottom:161.120057pt;}
.y72{bottom:165.120057pt;}
.ybf{bottom:167.840088pt;}
.y39{bottom:170.880066pt;}
.yb0{bottom:179.520081pt;}
.y71{bottom:183.520081pt;}
.ybe{bottom:185.920044pt;}
.y38{bottom:189.280030pt;}
.yaf{bottom:197.920044pt;}
.y70{bottom:201.920044pt;}
.ybd{bottom:204.640076pt;}
.y37{bottom:207.680054pt;}
.yae{bottom:216.320069pt;}
.y6f{bottom:220.320069pt;}
.ybc{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.yad{bottom:234.720032pt;}
.y6e{bottom:238.720032pt;}
.ybb{bottom:241.440064pt;}
.y35{bottom:244.480042pt;}
.yac{bottom:253.120057pt;}
.y6d{bottom:257.120057pt;}
.yba{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.yab{bottom:271.520081pt;}
.y6c{bottom:275.520081pt;}
.yb9{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.yaa{bottom:289.920044pt;}
.y69{bottom:290.720032pt;}
.y6a{bottom:291.040039pt;}
.y68{bottom:294.560059pt;}
.yb8{bottom:296.640076pt;}
.y32{bottom:299.360047pt;}
.ya9{bottom:308.320069pt;}
.y66{bottom:309.920044pt;}
.y65{bottom:313.760071pt;}
.yb7{bottom:315.040039pt;}
.y31{bottom:318.080079pt;}
.ya8{bottom:326.720032pt;}
.y64{bottom:332.480042pt;}
.yb6{bottom:333.440064pt;}
.y30{bottom:336.480042pt;}
.ya7{bottom:345.120057pt;}
.y63{bottom:351.520081pt;}
.yb5{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.ya6{bottom:363.520081pt;}
.y62{bottom:369.920044pt;}
.yb4{bottom:370.240052pt;}
.y2e{bottom:373.280030pt;}
.ya5{bottom:381.920044pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.ya4{bottom:400.320069pt;}
.y60{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.ya3{bottom:418.720032pt;}
.y5f{bottom:425.440064pt;}
.y2b{bottom:428.480042pt;}
.ya2{bottom:437.120057pt;}
.y5e{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.ya1{bottom:455.520081pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:465.280030pt;}
.ya0{bottom:473.920044pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.y9f{bottom:492.320069pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.y9e{bottom:507.520081pt;}
.y9d{bottom:511.360047pt;}
.y5a{bottom:517.440064pt;}
.y26{bottom:520.160035pt;}
.y9b{bottom:526.560059pt;}
.y9c{bottom:526.880066pt;}
.y9a{bottom:530.400086pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.y96{bottom:545.760071pt;}
.y98{bottom:546.080079pt;}
.y95{bottom:549.600037pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.y94{bottom:564.800049pt;}
.y93{bottom:568.640076pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.y91{bottom:583.840088pt;}
.y90{bottom:587.360047pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.y8f{bottom:606.400086pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.y8e{bottom:624.800049pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.y8d{bottom:643.520050pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.y8c{bottom:661.920044pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.y8b{bottom:680.320069pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.y8a{bottom:698.720063pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.y89{bottom:717.120057pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.880066pt;}
.y88{bottom:735.520050pt;}
.y4e{bottom:738.240052pt;}
.y1a{bottom:740.960053pt;}
.y87{bottom:753.920044pt;}
.y4d{bottom:756.640046pt;}
.y19{bottom:759.040070pt;}
.y86{bottom:772.320069pt;}
.y18{bottom:774.400055pt;}
.y4c{bottom:775.040070pt;}
.y17{bottom:789.760071pt;}
.y85{bottom:790.720063pt;}
.y4b{bottom:793.440064pt;}
.y16{bottom:805.440064pt;}
.y84{bottom:809.120057pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:824.160065pt;}
.y83{bottom:827.520050pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:842.560059pt;}
.y82{bottom:845.920044pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:860.640046pt;}
.y81{bottom:864.320069pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:879.360062pt;}
.y80{bottom:879.520066pt;}
.y7f{bottom:883.360062pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:897.440064pt;}
.y7d{bottom:898.560059pt;}
.y7c{bottom:902.400055pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.y7a{bottom:917.600052pt;}
.y79{bottom:921.120057pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.y78{bottom:940.320054pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.y77{bottom:958.720063pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.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;}
.h12{height:17.919982pt;}
.h13{height:17.919983pt;}
.he{height:17.920044pt;}
.h11{height:18.239990pt;}
.hc{height:18.239991pt;}
.h10{height:18.240005pt;}
.hf{height:18.240006pt;}
.hd{height:18.240051pt;}
.h6{height:30.067372pt;}
.hb{height:37.247652pt;}
.h4{height:42.651279pt;}
.h2{height:44.876686pt;}
.h9{height:46.220486pt;}
.h14{height:46.595500pt;}
.ha{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.wc{width:6.879944pt;}
.w8{width:6.879989pt;}
.wb{width:6.880004pt;}
.w5{width:6.880005pt;}
.wa{width:7.039978pt;}
.w6{width:7.040008pt;}
.wd{width:7.040009pt;}
.w9{width:7.839997pt;}
.w7{width:36.000000pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x8{left:76.476366pt;}
.x34{left:99.519997pt;}
.xc{left:107.680000pt;}
.x11{left:113.279999pt;}
.x12{left:122.720001pt;}
.x20{left:130.880005pt;}
.x1e{left:132.320007pt;}
.x27{left:148.639999pt;}
.x28{left:182.080002pt;}
.x14{left:184.639999pt;}
.x15{left:189.440002pt;}
.x1f{left:193.600006pt;}
.x10{left:195.520004pt;}
.x21{left:199.360001pt;}
.xd{left:268.320007pt;}
.x31{left:290.720001pt;}
.x1a{left:302.559998pt;}
.x32{left:306.079987pt;}
.x1b{left:317.119995pt;}
.x9{left:325.600720pt;}
.xb{left:332.480011pt;}
.x33{left:353.920013pt;}
.x22{left:357.440002pt;}
.x23{left:372.000000pt;}
.x29{left:377.920013pt;}
.x2d{left:378.880005pt;}
.x2{left:388.799988pt;}
.x2a{left:393.279999pt;}
.xa{left:396.799988pt;}
.x16{left:403.519989pt;}
.xf{left:462.559998pt;}
.x2b{left:465.920013pt;}
.xe{left:475.519989pt;}
.x2c{left:480.480011pt;}
.x17{left:489.920013pt;}
.x18{left:545.919983pt;}
.x2e{left:553.280029pt;}
.x19{left:560.320007pt;}
.x24{left:561.919983pt;}
.x2f{left:567.679993pt;}
.x25{left:576.320007pt;}
.x1c{left:596.320007pt;}
.x1d{left:604.320007pt;}
.x30{left:611.679993pt;}
.x26{left:618.719971pt;}
.x13{left:640.000000pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.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; }
  