
    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_18e1706ee729ceb0a19513b8.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_e5d6fedb6f6cf5aca306a283.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_01d9527666fd0e6a77531095.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_44746b16c7968ef2dd47889d.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_5dcf5178c9dfa35422289f99.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_dab059489c9c297a417dce87.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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v4{vertical-align:-58.326456px;}
.v1{vertical-align:-15.877294px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.517219px;}
.v3{vertical-align:15.095760px;}
.v5{vertical-align:25.187048px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013698px;}
.ls0{letter-spacing:4.319351px;}
.ls4{letter-spacing:32.615251px;}
.ls2{letter-spacing:331.536145px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-21.060034px;}
.ws1{word-spacing:-18.000676px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:279.004278px;}
.ws3{word-spacing:279.004403px;}
.ws5{word-spacing:311.417007px;}
._1c{margin-left:-5.896810px;}
._17{margin-left:-4.797743px;}
._d{margin-left:-3.576555px;}
._c{margin-left:-2.564815px;}
._1{margin-left:-1.262251px;}
._0{width:1.151997px;}
._e{width:2.385510px;}
._2{width:3.897079px;}
._3{width:4.987729px;}
._a{width:5.999850px;}
._1b{width:7.045997px;}
._6{width:8.052209px;}
._7{width:9.062589px;}
._9{width:11.037089px;}
._10{width:12.330505px;}
._13{width:13.740802px;}
._5{width:15.430143px;}
._4{width:16.691971px;}
._18{width:19.799383px;}
._f{width:21.046728px;}
._b{width:22.296134px;}
._16{width:24.137643px;}
._12{width:25.732903px;}
._11{width:26.760818px;}
._19{width:28.746610px;}
._15{width:31.916794px;}
._14{width:32.961710px;}
._1f{width:34.383399px;}
._1a{width:35.402267px;}
._1d{width:39.661396px;}
._1e{width:41.011493px;}
._24{width:42.624698px;}
._8{width:46.885292px;}
._20{width:51.971830px;}
._22{width:57.784139px;}
._23{width:59.196676px;}
._21{width:163.579871px;}
._25{width:846.031778px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(31,73,125);}
.fc1{color:rgb(54,95,145);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs5{font-size:56.160091px;}
.fs3{font-size:59.762250px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.fs4{font-size:84.240136px;}
.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;}
.y71{bottom:106.020127px;}
.y3d{bottom:109.440033px;}
.y70{bottom:126.720085px;}
.y3c{bottom:130.140060px;}
.yc1{bottom:139.680039px;}
.y6f{bottom:147.420043px;}
.y3b{bottom:150.840088px;}
.yc0{bottom:160.380066px;}
.y6e{bottom:168.120072px;}
.y3a{bottom:171.540047px;}
.ybf{bottom:181.080093px;}
.y6d{bottom:188.820099px;}
.y39{bottom:192.240074px;}
.y91{bottom:199.980079px;}
.ybe{bottom:201.780052px;}
.y6c{bottom:209.520058px;}
.y38{bottom:212.940033px;}
.y90{bottom:220.680039px;}
.ybd{bottom:222.480079px;}
.y6b{bottom:230.220085px;}
.y37{bottom:233.640060px;}
.y8f{bottom:241.380066px;}
.ybc{bottom:243.180039px;}
.y6a{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.y8e{bottom:262.080093px;}
.ybb{bottom:263.880066px;}
.y69{bottom:271.620072px;}
.y35{bottom:275.040047px;}
.y8d{bottom:282.780052px;}
.yba{bottom:284.580093px;}
.y68{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.y8c{bottom:303.480079px;}
.yb9{bottom:305.280052px;}
.y67{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.y8b{bottom:324.180039px;}
.yb8{bottom:325.620072px;}
.y66{bottom:333.720085px;}
.y32{bottom:337.140060px;}
.y8a{bottom:344.880066px;}
.yb7{bottom:346.320099px;}
.y65{bottom:354.420043px;}
.y31{bottom:357.840088px;}
.y89{bottom:365.580093px;}
.yb6{bottom:367.380066px;}
.y64{bottom:375.120072px;}
.y30{bottom:378.540047px;}
.y88{bottom:386.280052px;}
.yb5{bottom:388.080093px;}
.y63{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.y87{bottom:406.980079px;}
.yb4{bottom:408.780052px;}
.y62{bottom:416.520058px;}
.y2e{bottom:419.940033px;}
.y86{bottom:427.680039px;}
.yb3{bottom:429.480079px;}
.y61{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.y85{bottom:448.380066px;}
.yb2{bottom:450.180039px;}
.y60{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.y84{bottom:469.080093px;}
.yb1{bottom:470.880066px;}
.y5f{bottom:478.620072px;}
.y2b{bottom:482.040047px;}
.y83{bottom:489.780052px;}
.yb0{bottom:491.580093px;}
.y5e{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.y82{bottom:510.480079px;}
.yaf{bottom:512.280052px;}
.y5d{bottom:520.020058px;}
.y29{bottom:523.440033px;}
.y81{bottom:531.180039px;}
.yae{bottom:532.980079px;}
.y5c{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.y80{bottom:551.880066px;}
.yad{bottom:553.680039px;}
.y5b{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.y7f{bottom:572.580093px;}
.yac{bottom:574.380066px;}
.y5a{bottom:582.120072px;}
.y26{bottom:585.180039px;}
.y7e{bottom:593.280052px;}
.yab{bottom:595.080093px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.y7d{bottom:613.980079px;}
.yaa{bottom:615.780052px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.y7c{bottom:634.680039px;}
.ya9{bottom:636.480079px;}
.y57{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.y7b{bottom:655.380066px;}
.ya8{bottom:657.180039px;}
.y56{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.y7a{bottom:676.080093px;}
.ya7{bottom:677.880066px;}
.y55{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.y79{bottom:696.780052px;}
.ya6{bottom:698.580059px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.y78{bottom:717.480079px;}
.ya5{bottom:719.280052px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.y77{bottom:738.180073px;}
.ya4{bottom:739.980079px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.y76{bottom:758.880066px;}
.ya3{bottom:760.680073px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.y75{bottom:779.580059px;}
.ya2{bottom:781.380066px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.y74{bottom:800.280052px;}
.ya1{bottom:802.080059px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:813.240074px;}
.y73{bottom:820.980079px;}
.ya0{bottom:822.780052px;}
.y4e{bottom:830.520058px;}
.y1a{bottom:833.580059px;}
.y72{bottom:837.360077px;}
.y9f{bottom:843.480079px;}
.yc6{bottom:851.040081px;}
.y4d{bottom:851.220051px;}
.y19{bottom:853.920078px;}
.y9a{bottom:861.659657px;}
.y9e{bottom:864.180073px;}
.y18{bottom:871.200061px;}
.y4c{bottom:871.920078px;}
.y99{bottom:873.536795px;}
.y9d{bottom:884.880066px;}
.y17{bottom:888.480079px;}
.y4b{bottom:892.620072px;}
.y9c{bottom:901.260064px;}
.y16{bottom:906.120072px;}
.y4a{bottom:913.320065px;}
.yc5{bottom:919.800992px;}
.y15{bottom:927.180073px;}
.y49{bottom:934.020058px;}
.y14{bottom:947.880066px;}
.y48{bottom:954.720051px;}
.y13{bottom:968.220051px;}
.y47{bottom:975.420061px;}
.y93{bottom:977.037398px;}
.y12{bottom:988.920061px;}
.y46{bottom:996.120072px;}
.y94{bottom:996.297881px;}
.yc3{bottom:1002.241565px;}
.y11{bottom:1009.620072px;}
.y92{bottom:1010.704666px;}
.y95{bottom:1015.558347px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.y96{bottom:1034.644001px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.y97{bottom:1053.904468px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.y98{bottom:1073.154657px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y41{bottom:1099.620072px;}
.y9b{bottom:1105.557078px;}
.yc{bottom:1113.300058px;}
.y40{bottom:1120.320065px;}
.yc2{bottom:1120.323782px;}
.yc4{bottom:1135.614933px;}
.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;}
.h9{height:51.998047px;}
.hf{height:52.419938px;}
.hd{height:58.820017px;}
.ha{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.he{height:64.400393px;}
.hc{height:73.915777px;}
.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;}
.xa{left:96.659998px;}
.xd{left:99.180005px;}
.x8{left:107.463589px;}
.x1f{left:111.780001px;}
.x13{left:138.060001px;}
.xb{left:144.539996px;}
.x19{left:178.917750px;}
.x18{left:187.915568px;}
.x17{left:198.363308px;}
.x9{left:201.058074px;}
.x1b{left:216.903952px;}
.xe{left:225.000000px;}
.x23{left:248.576273px;}
.x16{left:264.237612px;}
.x15{left:269.280001px;}
.x1d{left:318.240006px;}
.x1e{left:341.639992px;}
.x1a{left:385.918972px;}
.x12{left:394.019989px;}
.x21{left:421.200697px;}
.x22{left:425.344834px;}
.x2{left:432.899987px;}
.xc{left:446.399987px;}
.x20{left:448.379240px;}
.x11{left:522.180005px;}
.x10{left:549.360008px;}
.x1c{left:720.899987px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x14{left:752.399987px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.xf{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.v4{vertical-align:-51.845739pt;}
.v1{vertical-align:-14.113150pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.237528pt;}
.v3{vertical-align:13.418453pt;}
.v5{vertical-align:22.388487pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.012176pt;}
.ls0{letter-spacing:3.839423pt;}
.ls4{letter-spacing:28.991334pt;}
.ls2{letter-spacing:294.698796pt;}
.ws6{word-spacing:-18.720030pt;}
.ws1{word-spacing:-16.000601pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:248.003802pt;}
.ws3{word-spacing:248.003914pt;}
.ws5{word-spacing:276.815117pt;}
._1c{margin-left:-5.241608pt;}
._17{margin-left:-4.264660pt;}
._d{margin-left:-3.179160pt;}
._c{margin-left:-2.279836pt;}
._1{margin-left:-1.122001pt;}
._0{width:1.023997pt;}
._e{width:2.120453pt;}
._2{width:3.464070pt;}
._3{width:4.433537pt;}
._a{width:5.333200pt;}
._1b{width:6.263109pt;}
._6{width:7.157519pt;}
._7{width:8.055635pt;}
._9{width:9.810746pt;}
._10{width:10.960449pt;}
._13{width:12.214046pt;}
._5{width:13.715683pt;}
._4{width:14.837307pt;}
._18{width:17.599452pt;}
._f{width:18.708203pt;}
._b{width:19.818786pt;}
._16{width:21.455683pt;}
._12{width:22.873691pt;}
._11{width:23.787393pt;}
._19{width:25.552542pt;}
._15{width:28.370484pt;}
._14{width:29.299298pt;}
._1f{width:30.563021pt;}
._1a{width:31.468682pt;}
._1d{width:35.254574pt;}
._1e{width:36.454660pt;}
._24{width:37.888620pt;}
._8{width:41.675815pt;}
._20{width:46.197182pt;}
._22{width:51.363679pt;}
._23{width:52.619267pt;}
._21{width:145.404330pt;}
._25{width:752.028247pt;}
.fs1{font-size:42.881600pt;}
.fs5{font-size:49.920081pt;}
.fs3{font-size:53.122000pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.fs4{font-size:74.880121pt;}
.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;}
.y71{bottom:94.240113pt;}
.y3d{bottom:97.280030pt;}
.y70{bottom:112.640076pt;}
.y3c{bottom:115.680054pt;}
.yc1{bottom:124.160035pt;}
.y6f{bottom:131.040039pt;}
.y3b{bottom:134.080079pt;}
.yc0{bottom:142.560059pt;}
.y6e{bottom:149.440064pt;}
.y3a{bottom:152.480042pt;}
.ybf{bottom:160.960083pt;}
.y6d{bottom:167.840088pt;}
.y39{bottom:170.880066pt;}
.y91{bottom:177.760071pt;}
.ybe{bottom:179.360047pt;}
.y6c{bottom:186.240052pt;}
.y38{bottom:189.280030pt;}
.y90{bottom:196.160035pt;}
.ybd{bottom:197.760071pt;}
.y6b{bottom:204.640076pt;}
.y37{bottom:207.680054pt;}
.y8f{bottom:214.560059pt;}
.ybc{bottom:216.160035pt;}
.y6a{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.y8e{bottom:232.960083pt;}
.ybb{bottom:234.560059pt;}
.y69{bottom:241.440064pt;}
.y35{bottom:244.480042pt;}
.y8d{bottom:251.360047pt;}
.yba{bottom:252.960083pt;}
.y68{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.y8c{bottom:269.760071pt;}
.yb9{bottom:271.360047pt;}
.y67{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.y8b{bottom:288.160035pt;}
.yb8{bottom:289.440064pt;}
.y66{bottom:296.640076pt;}
.y32{bottom:299.680054pt;}
.y8a{bottom:306.560059pt;}
.yb7{bottom:307.840088pt;}
.y65{bottom:315.040039pt;}
.y31{bottom:318.080079pt;}
.y89{bottom:324.960083pt;}
.yb6{bottom:326.560059pt;}
.y64{bottom:333.440064pt;}
.y30{bottom:336.480042pt;}
.y88{bottom:343.360047pt;}
.yb5{bottom:344.960083pt;}
.y63{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.y87{bottom:361.760071pt;}
.yb4{bottom:363.360047pt;}
.y62{bottom:370.240052pt;}
.y2e{bottom:373.280030pt;}
.y86{bottom:380.160035pt;}
.yb3{bottom:381.760071pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.y85{bottom:398.560059pt;}
.yb2{bottom:400.160035pt;}
.y60{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.y84{bottom:416.960083pt;}
.yb1{bottom:418.560059pt;}
.y5f{bottom:425.440064pt;}
.y2b{bottom:428.480042pt;}
.y83{bottom:435.360047pt;}
.yb0{bottom:436.960083pt;}
.y5e{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.y82{bottom:453.760071pt;}
.yaf{bottom:455.360047pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:465.280030pt;}
.y81{bottom:472.160035pt;}
.yae{bottom:473.760071pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.y80{bottom:490.560059pt;}
.yad{bottom:492.160035pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.y7f{bottom:508.960083pt;}
.yac{bottom:510.560059pt;}
.y5a{bottom:517.440064pt;}
.y26{bottom:520.160035pt;}
.y7e{bottom:527.360047pt;}
.yab{bottom:528.960083pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.y7d{bottom:545.760071pt;}
.yaa{bottom:547.360047pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.y7c{bottom:564.160035pt;}
.ya9{bottom:565.760071pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.y7b{bottom:582.560059pt;}
.ya8{bottom:584.160035pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.y7a{bottom:600.960083pt;}
.ya7{bottom:602.560059pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.y79{bottom:619.360047pt;}
.ya6{bottom:620.960053pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.y78{bottom:637.760071pt;}
.ya5{bottom:639.360047pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.y77{bottom:656.160065pt;}
.ya4{bottom:657.760071pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.y76{bottom:674.560059pt;}
.ya3{bottom:676.160065pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.y75{bottom:692.960053pt;}
.ya2{bottom:694.560059pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.y74{bottom:711.360047pt;}
.ya1{bottom:712.960053pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.880066pt;}
.y73{bottom:729.760071pt;}
.ya0{bottom:731.360047pt;}
.y4e{bottom:738.240052pt;}
.y1a{bottom:740.960053pt;}
.y72{bottom:744.320069pt;}
.y9f{bottom:749.760071pt;}
.yc6{bottom:756.480072pt;}
.y4d{bottom:756.640046pt;}
.y19{bottom:759.040070pt;}
.y9a{bottom:765.919696pt;}
.y9e{bottom:768.160065pt;}
.y18{bottom:774.400055pt;}
.y4c{bottom:775.040070pt;}
.y99{bottom:776.477151pt;}
.y9d{bottom:786.560059pt;}
.y17{bottom:789.760071pt;}
.y4b{bottom:793.440064pt;}
.y9c{bottom:801.120057pt;}
.y16{bottom:805.440064pt;}
.y4a{bottom:811.840058pt;}
.yc5{bottom:817.600882pt;}
.y15{bottom:824.160065pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:842.560059pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:860.640046pt;}
.y47{bottom:867.040055pt;}
.y93{bottom:868.477687pt;}
.y12{bottom:879.040055pt;}
.y46{bottom:885.440064pt;}
.y94{bottom:885.598116pt;}
.yc3{bottom:890.881391pt;}
.y11{bottom:897.440064pt;}
.y92{bottom:898.404148pt;}
.y95{bottom:902.718531pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.y96{bottom:919.683557pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.y97{bottom:936.803971pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.y98{bottom:953.915251pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y41{bottom:977.440064pt;}
.y9b{bottom:982.717402pt;}
.yc{bottom:989.600052pt;}
.y40{bottom:995.840058pt;}
.yc2{bottom:995.843362pt;}
.yc4{bottom:1009.435496pt;}
.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;}
.h9{height:46.220486pt;}
.hf{height:46.595500pt;}
.hd{height:52.284460pt;}
.ha{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.he{height:57.244793pt;}
.hc{height:65.702913pt;}
.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;}
.xa{left:85.919998pt;}
.xd{left:88.160004pt;}
.x8{left:95.523190pt;}
.x1f{left:99.360001pt;}
.x13{left:122.720001pt;}
.xb{left:128.479996pt;}
.x19{left:159.038000pt;}
.x18{left:167.036060pt;}
.x17{left:176.322940pt;}
.x9{left:178.718288pt;}
.x1b{left:192.803513pt;}
.xe{left:200.000000pt;}
.x23{left:220.956687pt;}
.x16{left:234.877878pt;}
.x15{left:239.360001pt;}
.x1d{left:282.880005pt;}
.x1e{left:303.679993pt;}
.x1a{left:343.039086pt;}
.x12{left:350.239990pt;}
.x21{left:374.400620pt;}
.x22{left:378.084297pt;}
.x2{left:384.799988pt;}
.xc{left:396.799988pt;}
.x20{left:398.559325pt;}
.x11{left:464.160004pt;}
.x10{left:488.320007pt;}
.x1c{left:640.799988pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x14{left:668.799988pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.xf{left:718.080017pt;}
.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; }
  