
    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_ccb33ed9babcd20a053aa00e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d44af400ecd968df9fdb9f9b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9f36eb9af26f14a735617e72.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c37bcd0a0b2107c4b4f5ccf.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_39543c06d1669f8c7da6a897.woff')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_67dd679102fcb9e8b40bd5c0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_c9710fd64163ba0672cf5a75.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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:ff8;src:url('chunks/assets/font_9ccb9b554838b4b121bd02ce.woff')format("woff");}.ff8{font-family:ff8;line-height:0.877441;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:ff9;src:url('chunks/assets/font_cc151f21f4ea5ae8e21330d7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.ls2{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.lse{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.828000px;}
.ls9{letter-spacing:2.340000px;}
.ls8{letter-spacing:3.780000px;}
.ls13{letter-spacing:11.466720px;}
.ls11{letter-spacing:41.706720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws6{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.580000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._19{margin-left:-6.685920px;}
._8{margin-left:-5.587920px;}
._9{margin-left:-4.365360px;}
._13{margin-left:-2.509920px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._e{width:2.629440px;}
._f{width:3.944160px;}
._c{width:4.970160px;}
._d{width:6.080880px;}
._17{width:7.424640px;}
._16{width:8.485920px;}
._10{width:9.979920px;}
._b{width:11.533680px;}
._a{width:12.848400px;}
._11{width:13.937760px;}
._14{width:16.025760px;}
._15{width:17.217120px;}
._12{width:18.638880px;}
._18{width:20.736720px;}
._1f{width:25.474080px;}
._1a{width:43.684560px;}
._1b{width:44.760240px;}
._1c{width:46.685760px;}
._1e{width:54.680400px;}
._1d{width:56.234160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:5.760000px;}
.y88{bottom:5.940000px;}
.y92{bottom:6.120000px;}
.y96{bottom:6.660000px;}
.y9a{bottom:9.000000px;}
.y87{bottom:9.540000px;}
.yc9{bottom:10.800000px;}
.y83{bottom:14.220000px;}
.y8a{bottom:25.560000px;}
.y8e{bottom:25.605000px;}
.y91{bottom:26.100000px;}
.y95{bottom:26.460000px;}
.y85{bottom:29.520000px;}
.yc8{bottom:30.600000px;}
.yc5{bottom:34.740000px;}
.yc7{bottom:50.430000px;}
.y6{bottom:59.220000px;}
.yc6{bottom:70.230000px;}
.yc3{bottom:95.220000px;}
.ya2{bottom:98.100000px;}
.y33{bottom:109.800000px;}
.yc4{bottom:112.140000px;}
.y6a{bottom:115.200000px;}
.ya1{bottom:118.080000px;}
.y32{bottom:129.600000px;}
.y69{bottom:135.000000px;}
.ya0{bottom:137.880000px;}
.y31{bottom:149.400000px;}
.y68{bottom:154.830000px;}
.y9f{bottom:157.710000px;}
.y30{bottom:169.230000px;}
.y67{bottom:174.630000px;}
.yc2{bottom:178.410000px;}
.y9e{bottom:186.510000px;}
.y2f{bottom:189.030000px;}
.y66{bottom:194.430000px;}
.yc1{bottom:198.210000px;}
.y9d{bottom:206.310000px;}
.y2e{bottom:209.010000px;}
.y65{bottom:214.410000px;}
.yc0{bottom:218.010000px;}
.y9c{bottom:226.290000px;}
.y2d{bottom:228.810000px;}
.y64{bottom:234.210000px;}
.ybf{bottom:237.810000px;}
.y9b{bottom:246.090000px;}
.y2c{bottom:248.610000px;}
.y63{bottom:254.010000px;}
.ybe{bottom:257.610000px;}
.y98{bottom:260.850000px;}
.y2b{bottom:268.410000px;}
.y62{bottom:273.810000px;}
.ybd{bottom:277.590000px;}
.y99{bottom:284.610000px;}
.y2a{bottom:288.210000px;}
.y61{bottom:293.610000px;}
.ybc{bottom:297.390000px;}
.y94{bottom:305.130000px;}
.y29{bottom:308.190000px;}
.y60{bottom:313.590000px;}
.ybb{bottom:317.190000px;}
.y97{bottom:325.830000px;}
.y28{bottom:327.990000px;}
.y5f{bottom:333.390000px;}
.yba{bottom:336.990000px;}
.y90{bottom:345.630000px;}
.y27{bottom:347.790000px;}
.y5e{bottom:353.190000px;}
.yb9{bottom:356.790000px;}
.y93{bottom:366.150000px;}
.y26{bottom:367.590000px;}
.y5d{bottom:372.990000px;}
.yb8{bottom:376.770000px;}
.y8d{bottom:386.130000px;}
.y25{bottom:387.390000px;}
.y5c{bottom:392.790000px;}
.yb7{bottom:396.570000px;}
.y8f{bottom:405.975000px;}
.y24{bottom:407.415000px;}
.y5b{bottom:412.815000px;}
.yb6{bottom:425.415000px;}
.y89{bottom:425.775000px;}
.y23{bottom:427.215000px;}
.y5a{bottom:432.615000px;}
.yb5{bottom:445.215000px;}
.y8c{bottom:445.575000px;}
.y22{bottom:447.015000px;}
.y59{bottom:452.415000px;}
.yb4{bottom:465.015000px;}
.y84{bottom:465.375000px;}
.y21{bottom:466.815000px;}
.y58{bottom:472.215000px;}
.yb3{bottom:484.995000px;}
.y86{bottom:485.355000px;}
.y20{bottom:486.615000px;}
.y57{bottom:492.015000px;}
.yb2{bottom:504.795000px;}
.y1f{bottom:506.595000px;}
.y82{bottom:509.655000px;}
.y56{bottom:511.995000px;}
.yb1{bottom:524.595000px;}
.y1e{bottom:526.395000px;}
.y55{bottom:531.795000px;}
.y81{bottom:544.395000px;}
.y1d{bottom:546.195000px;}
.y54{bottom:551.595000px;}
.y80{bottom:564.195000px;}
.y1c{bottom:565.995000px;}
.y53{bottom:571.395000px;}
.y7f{bottom:584.175000px;}
.y1b{bottom:585.795000px;}
.y52{bottom:591.195000px;}
.y7e{bottom:603.975000px;}
.y1a{bottom:607.935000px;}
.y51{bottom:611.175000px;}
.yb0{bottom:612.975000px;}
.y7d{bottom:623.775000px;}
.y50{bottom:630.975000px;}
.yaf{bottom:632.775000px;}
.y19{bottom:636.735000px;}
.y7c{bottom:643.575000px;}
.y4f{bottom:650.805000px;}
.yae{bottom:652.605000px;}
.y18{bottom:656.565000px;}
.y7b{bottom:663.405000px;}
.y4e{bottom:670.605000px;}
.yad{bottom:672.405000px;}
.y17{bottom:676.545000px;}
.y7a{bottom:683.385000px;}
.y4d{bottom:690.405000px;}
.yac{bottom:692.385000px;}
.y16{bottom:696.345000px;}
.y79{bottom:703.185000px;}
.y4c{bottom:710.385000px;}
.yab{bottom:712.185000px;}
.y15{bottom:716.145000px;}
.y78{bottom:722.985000px;}
.y4b{bottom:730.185000px;}
.yaa{bottom:731.985000px;}
.y14{bottom:735.945000px;}
.y77{bottom:742.785000px;}
.y4a{bottom:749.985000px;}
.ya9{bottom:751.785000px;}
.y13{bottom:755.745000px;}
.y76{bottom:762.585000px;}
.y49{bottom:769.785000px;}
.ya8{bottom:771.585000px;}
.y12{bottom:775.725000px;}
.y48{bottom:789.585000px;}
.y75{bottom:791.565000px;}
.y11{bottom:795.525000px;}
.ya7{bottom:800.565000px;}
.y47{bottom:809.565000px;}
.y74{bottom:811.365000px;}
.y10{bottom:815.325000px;}
.ya6{bottom:820.365000px;}
.y46{bottom:829.365000px;}
.y73{bottom:831.165000px;}
.yf{bottom:835.125000px;}
.ya5{bottom:840.165000px;}
.y45{bottom:849.165000px;}
.y72{bottom:850.965000px;}
.ye{bottom:854.925000px;}
.ya4{bottom:859.965000px;}
.y44{bottom:868.965000px;}
.y71{bottom:870.765000px;}
.yd{bottom:874.725000px;}
.ya3{bottom:879.765000px;}
.y43{bottom:888.765000px;}
.yc{bottom:896.865000px;}
.y70{bottom:899.790000px;}
.y42{bottom:908.790000px;}
.yb{bottom:916.890000px;}
.y6f{bottom:919.590000px;}
.y41{bottom:928.590000px;}
.ya{bottom:937.230000px;}
.y6e{bottom:939.390000px;}
.y40{bottom:948.390000px;}
.y9{bottom:958.470000px;}
.y6d{bottom:959.190000px;}
.y3f{bottom:968.190000px;}
.y6c{bottom:978.990000px;}
.y8{bottom:981.870000px;}
.y3e{bottom:987.990000px;}
.y6b{bottom:998.970000px;}
.y3d{bottom:1007.970000px;}
.y7{bottom:1013.730000px;}
.y3c{bottom:1027.770000px;}
.y3b{bottom:1047.570000px;}
.y5{bottom:1052.070000px;}
.y3a{bottom:1067.370000px;}
.y4{bottom:1082.850000px;}
.y39{bottom:1087.170000px;}
.y38{bottom:1107.150000px;}
.y3{bottom:1113.630000px;}
.y37{bottom:1126.950000px;}
.y2{bottom:1144.590000px;}
.y36{bottom:1146.780000px;}
.y35{bottom:1166.580000px;}
.y1{bottom:1178.460000px;}
.y34{bottom:1194.120000px;}
.h15{height:2.010938px;}
.he{height:19.800000px;}
.h10{height:19.836000px;}
.hc{height:19.980000px;}
.h12{height:23.040000px;}
.hb{height:23.580000px;}
.h9{height:28.260000px;}
.hd{height:39.600000px;}
.hf{height:39.636000px;}
.h11{height:40.500000px;}
.h6{height:41.726953px;}
.h5{height:42.164648px;}
.h13{height:43.506914px;}
.ha{height:43.560000px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h7{height:49.255313px;}
.h2{height:67.565039px;}
.h8{height:67.824844px;}
.h14{height:84.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:42.480000px;}
.w6{width:42.516000px;}
.w7{width:42.660000px;}
.w4{width:117.000000px;}
.w8{width:210.810000px;}
.w3{width:361.515000px;}
.w9{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.xb{left:80.999987px;}
.x2{left:101.016000px;}
.xc{left:108.035987px;}
.xa{left:138.995987px;}
.xd{left:191.370000px;}
.xe{left:264.810000px;}
.x4{left:462.525000px;}
.x5{left:579.525000px;}
.x6{left:622.005000px;}
.x7{left:664.530000px;}
.x8{left:707.190000px;}
.x9{left:749.670000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls2{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.736000pt;}
.ls9{letter-spacing:2.080000pt;}
.ls8{letter-spacing:3.360000pt;}
.ls13{letter-spacing:10.192640pt;}
.ls11{letter-spacing:37.072640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws6{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._19{margin-left:-5.943040pt;}
._8{margin-left:-4.967040pt;}
._9{margin-left:-3.880320pt;}
._13{margin-left:-2.231040pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._e{width:2.337280pt;}
._f{width:3.505920pt;}
._c{width:4.417920pt;}
._d{width:5.405227pt;}
._17{width:6.599680pt;}
._16{width:7.543040pt;}
._10{width:8.871040pt;}
._b{width:10.252160pt;}
._a{width:11.420800pt;}
._11{width:12.389120pt;}
._14{width:14.245120pt;}
._15{width:15.304107pt;}
._12{width:16.567893pt;}
._18{width:18.432640pt;}
._1f{width:22.643627pt;}
._1a{width:38.830720pt;}
._1b{width:39.786880pt;}
._1c{width:41.498453pt;}
._1e{width:48.604800pt;}
._1d{width:49.985920pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:5.120000pt;}
.y88{bottom:5.280000pt;}
.y92{bottom:5.440000pt;}
.y96{bottom:5.920000pt;}
.y9a{bottom:8.000000pt;}
.y87{bottom:8.480000pt;}
.yc9{bottom:9.600000pt;}
.y83{bottom:12.640000pt;}
.y8a{bottom:22.720000pt;}
.y8e{bottom:22.760000pt;}
.y91{bottom:23.200000pt;}
.y95{bottom:23.520000pt;}
.y85{bottom:26.240000pt;}
.yc8{bottom:27.200000pt;}
.yc5{bottom:30.880000pt;}
.yc7{bottom:44.826667pt;}
.y6{bottom:52.640000pt;}
.yc6{bottom:62.426667pt;}
.yc3{bottom:84.640000pt;}
.ya2{bottom:87.200000pt;}
.y33{bottom:97.600000pt;}
.yc4{bottom:99.680000pt;}
.y6a{bottom:102.400000pt;}
.ya1{bottom:104.960000pt;}
.y32{bottom:115.200000pt;}
.y69{bottom:120.000000pt;}
.ya0{bottom:122.560000pt;}
.y31{bottom:132.800000pt;}
.y68{bottom:137.626667pt;}
.y9f{bottom:140.186667pt;}
.y30{bottom:150.426667pt;}
.y67{bottom:155.226667pt;}
.yc2{bottom:158.586667pt;}
.y9e{bottom:165.786667pt;}
.y2f{bottom:168.026667pt;}
.y66{bottom:172.826667pt;}
.yc1{bottom:176.186667pt;}
.y9d{bottom:183.386667pt;}
.y2e{bottom:185.786667pt;}
.y65{bottom:190.586667pt;}
.yc0{bottom:193.786667pt;}
.y9c{bottom:201.146667pt;}
.y2d{bottom:203.386667pt;}
.y64{bottom:208.186667pt;}
.ybf{bottom:211.386667pt;}
.y9b{bottom:218.746667pt;}
.y2c{bottom:220.986667pt;}
.y63{bottom:225.786667pt;}
.ybe{bottom:228.986667pt;}
.y98{bottom:231.866667pt;}
.y2b{bottom:238.586667pt;}
.y62{bottom:243.386667pt;}
.ybd{bottom:246.746667pt;}
.y99{bottom:252.986667pt;}
.y2a{bottom:256.186667pt;}
.y61{bottom:260.986667pt;}
.ybc{bottom:264.346667pt;}
.y94{bottom:271.226667pt;}
.y29{bottom:273.946667pt;}
.y60{bottom:278.746667pt;}
.ybb{bottom:281.946667pt;}
.y97{bottom:289.626667pt;}
.y28{bottom:291.546667pt;}
.y5f{bottom:296.346667pt;}
.yba{bottom:299.546667pt;}
.y90{bottom:307.226667pt;}
.y27{bottom:309.146667pt;}
.y5e{bottom:313.946667pt;}
.yb9{bottom:317.146667pt;}
.y93{bottom:325.466667pt;}
.y26{bottom:326.746667pt;}
.y5d{bottom:331.546667pt;}
.yb8{bottom:334.906667pt;}
.y8d{bottom:343.226667pt;}
.y25{bottom:344.346667pt;}
.y5c{bottom:349.146667pt;}
.yb7{bottom:352.506667pt;}
.y8f{bottom:360.866667pt;}
.y24{bottom:362.146667pt;}
.y5b{bottom:366.946667pt;}
.yb6{bottom:378.146667pt;}
.y89{bottom:378.466667pt;}
.y23{bottom:379.746667pt;}
.y5a{bottom:384.546667pt;}
.yb5{bottom:395.746667pt;}
.y8c{bottom:396.066667pt;}
.y22{bottom:397.346667pt;}
.y59{bottom:402.146667pt;}
.yb4{bottom:413.346667pt;}
.y84{bottom:413.666667pt;}
.y21{bottom:414.946667pt;}
.y58{bottom:419.746667pt;}
.yb3{bottom:431.106667pt;}
.y86{bottom:431.426667pt;}
.y20{bottom:432.546667pt;}
.y57{bottom:437.346667pt;}
.yb2{bottom:448.706667pt;}
.y1f{bottom:450.306667pt;}
.y82{bottom:453.026667pt;}
.y56{bottom:455.106667pt;}
.yb1{bottom:466.306667pt;}
.y1e{bottom:467.906667pt;}
.y55{bottom:472.706667pt;}
.y81{bottom:483.906667pt;}
.y1d{bottom:485.506667pt;}
.y54{bottom:490.306667pt;}
.y80{bottom:501.506667pt;}
.y1c{bottom:503.106667pt;}
.y53{bottom:507.906667pt;}
.y7f{bottom:519.266667pt;}
.y1b{bottom:520.706667pt;}
.y52{bottom:525.506667pt;}
.y7e{bottom:536.866667pt;}
.y1a{bottom:540.386667pt;}
.y51{bottom:543.266667pt;}
.yb0{bottom:544.866667pt;}
.y7d{bottom:554.466667pt;}
.y50{bottom:560.866667pt;}
.yaf{bottom:562.466667pt;}
.y19{bottom:565.986667pt;}
.y7c{bottom:572.066667pt;}
.y4f{bottom:578.493333pt;}
.yae{bottom:580.093333pt;}
.y18{bottom:583.613333pt;}
.y7b{bottom:589.693333pt;}
.y4e{bottom:596.093333pt;}
.yad{bottom:597.693333pt;}
.y17{bottom:601.373333pt;}
.y7a{bottom:607.453333pt;}
.y4d{bottom:613.693333pt;}
.yac{bottom:615.453333pt;}
.y16{bottom:618.973333pt;}
.y79{bottom:625.053333pt;}
.y4c{bottom:631.453333pt;}
.yab{bottom:633.053333pt;}
.y15{bottom:636.573333pt;}
.y78{bottom:642.653333pt;}
.y4b{bottom:649.053333pt;}
.yaa{bottom:650.653333pt;}
.y14{bottom:654.173333pt;}
.y77{bottom:660.253333pt;}
.y4a{bottom:666.653333pt;}
.ya9{bottom:668.253333pt;}
.y13{bottom:671.773333pt;}
.y76{bottom:677.853333pt;}
.y49{bottom:684.253333pt;}
.ya8{bottom:685.853333pt;}
.y12{bottom:689.533333pt;}
.y48{bottom:701.853333pt;}
.y75{bottom:703.613333pt;}
.y11{bottom:707.133333pt;}
.ya7{bottom:711.613333pt;}
.y47{bottom:719.613333pt;}
.y74{bottom:721.213333pt;}
.y10{bottom:724.733333pt;}
.ya6{bottom:729.213333pt;}
.y46{bottom:737.213333pt;}
.y73{bottom:738.813333pt;}
.yf{bottom:742.333333pt;}
.ya5{bottom:746.813333pt;}
.y45{bottom:754.813333pt;}
.y72{bottom:756.413333pt;}
.ye{bottom:759.933333pt;}
.ya4{bottom:764.413333pt;}
.y44{bottom:772.413333pt;}
.y71{bottom:774.013333pt;}
.yd{bottom:777.533333pt;}
.ya3{bottom:782.013333pt;}
.y43{bottom:790.013333pt;}
.yc{bottom:797.213333pt;}
.y70{bottom:799.813333pt;}
.y42{bottom:807.813333pt;}
.yb{bottom:815.013333pt;}
.y6f{bottom:817.413333pt;}
.y41{bottom:825.413333pt;}
.ya{bottom:833.093333pt;}
.y6e{bottom:835.013333pt;}
.y40{bottom:843.013333pt;}
.y9{bottom:851.973333pt;}
.y6d{bottom:852.613333pt;}
.y3f{bottom:860.613333pt;}
.y6c{bottom:870.213333pt;}
.y8{bottom:872.773333pt;}
.y3e{bottom:878.213333pt;}
.y6b{bottom:887.973333pt;}
.y3d{bottom:895.973333pt;}
.y7{bottom:901.093333pt;}
.y3c{bottom:913.573333pt;}
.y3b{bottom:931.173333pt;}
.y5{bottom:935.173333pt;}
.y3a{bottom:948.773333pt;}
.y4{bottom:962.533333pt;}
.y39{bottom:966.373333pt;}
.y38{bottom:984.133333pt;}
.y3{bottom:989.893333pt;}
.y37{bottom:1001.733333pt;}
.y2{bottom:1017.413333pt;}
.y36{bottom:1019.360000pt;}
.y35{bottom:1036.960000pt;}
.y1{bottom:1047.520000pt;}
.y34{bottom:1061.440000pt;}
.h15{height:1.787500pt;}
.he{height:17.600000pt;}
.h10{height:17.632000pt;}
.hc{height:17.760000pt;}
.h12{height:20.480000pt;}
.hb{height:20.960000pt;}
.h9{height:25.120000pt;}
.hd{height:35.200000pt;}
.hf{height:35.232000pt;}
.h11{height:36.000000pt;}
.h6{height:37.090625pt;}
.h5{height:37.479688pt;}
.h13{height:38.672812pt;}
.ha{height:38.720000pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h7{height:43.782500pt;}
.h2{height:60.057813pt;}
.h8{height:60.288750pt;}
.h14{height:74.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:37.760000pt;}
.w6{width:37.792000pt;}
.w7{width:37.920000pt;}
.w4{width:104.000000pt;}
.w8{width:187.386667pt;}
.w3{width:321.346667pt;}
.w9{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.xb{left:71.999988pt;}
.x2{left:89.792000pt;}
.xc{left:96.031988pt;}
.xa{left:123.551988pt;}
.xd{left:170.106667pt;}
.xe{left:235.386667pt;}
.x4{left:411.133333pt;}
.x5{left:515.133333pt;}
.x6{left:552.893333pt;}
.x7{left:590.693333pt;}
.x8{left:628.613333pt;}
.x9{left:666.373333pt;}
}




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