
    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_c37feb2fe7e13125b14b8fb6.woff2')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_8087e584763f78d1b9bd5937.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_53194b80ec7943519956bcec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_2e15c1f100178d3b3c40e276.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_53c924bf3eb686ff380ef308.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9abfc6b7a435f61361ba50f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_22335300e03723eee49d79ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.098145;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c33f07023d97dac49f67fb27.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.098145;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);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.269400px;}
.ls10{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.036000px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.162000px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls19{letter-spacing:7.380000px;}
.ls1a{letter-spacing:16.506720px;}
.ls17{letter-spacing:21.780000px;}
.ls8{letter-spacing:46.026720px;}
.ls4{letter-spacing:967.260000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-26.964000px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.254600px;}
.ws0{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.wsd{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.608000px;}
.wsb{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.ws8{word-spacing:-10.440000px;}
.ws10{word-spacing:0.000000px;}
._f{margin-left:-6.372000px;}
._2{margin-left:-1.194720px;}
._0{width:1.048320px;}
._3{width:2.086560px;}
._9{width:3.444960px;}
._7{width:5.106960px;}
._d{width:6.303840px;}
._c{width:7.350480px;}
._1c{width:8.409840px;}
._b{width:9.516240px;}
._a{width:10.676880px;}
._16{width:11.952000px;}
._e{width:13.633200px;}
._6{width:16.070400px;}
._5{width:17.307600px;}
._4{width:18.313920px;}
._10{width:20.034000px;}
._1f{width:21.052080px;}
._8{width:22.078800px;}
._18{width:23.214240px;}
._23{width:24.501600px;}
._22{width:26.115120px;}
._21{width:27.576720px;}
._26{width:28.715520px;}
._15{width:29.760000px;}
._27{width:31.113120px;}
._13{width:32.178240px;}
._14{width:33.322080px;}
._12{width:34.614000px;}
._11{width:35.964000px;}
._1b{width:37.565760px;}
._1a{width:38.811600px;}
._1e{width:40.228320px;}
._17{width:41.500800px;}
._25{width:43.146720px;}
._31{width:44.152560px;}
._2d{width:45.390240px;}
._2c{width:46.580400px;}
._33{width:48.047040px;}
._24{width:49.541040px;}
._1d{width:50.883120px;}
._20{width:52.409520px;}
._30{width:53.480160px;}
._28{width:54.680400px;}
._19{width:57.608640px;}
._2b{width:61.400880px;}
._32{width:65.703600px;}
._29{width:71.201520px;}
._2a{width:72.222480px;}
._35{width:116.880960px;}
._34{width:117.966240px;}
._2f{width:385.930080px;}
._2e{width:386.946000px;}
._1{width:435.331680px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsd{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs7{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y20{bottom:0.360000px;}
.y7{bottom:2.520000px;}
.y3a{bottom:2.880000px;}
.y23{bottom:3.240000px;}
.y10{bottom:3.960000px;}
.y24{bottom:4.680000px;}
.y3f{bottom:8.280000px;}
.y5{bottom:8.460000px;}
.y51{bottom:8.496000px;}
.y6{bottom:16.380000px;}
.y52{bottom:16.416000px;}
.y39{bottom:18.360000px;}
.y31{bottom:20.520000px;}
.yf{bottom:22.320000px;}
.y3e{bottom:23.760000px;}
.y8f{bottom:30.054000px;}
.ye{bottom:33.120000px;}
.y38{bottom:33.840000px;}
.y53{bottom:35.640000px;}
.y30{bottom:37.620000px;}
.y3d{bottom:39.420000px;}
.y8e{bottom:43.914000px;}
.y8{bottom:49.140000px;}
.y37{bottom:49.500000px;}
.yd{bottom:51.480000px;}
.y2f{bottom:54.900000px;}
.y8d{bottom:57.774000px;}
.y50{bottom:59.940000px;}
.y36{bottom:64.980000px;}
.yc{bottom:65.700000px;}
.y3c{bottom:70.380000px;}
.y2e{bottom:72.180000px;}
.y4{bottom:73.476000px;}
.y35{bottom:80.490000px;}
.y2d{bottom:89.460000px;}
.y34{bottom:95.970000px;}
.yb{bottom:103.680000px;}
.y11{bottom:103.860000px;}
.y2c{bottom:106.740000px;}
.y33{bottom:111.630000px;}
.y8a{bottom:116.136000px;}
.y89{bottom:123.876000px;}
.y2b{bottom:124.020000px;}
.y4f{bottom:126.216000px;}
.y8c{bottom:130.896000px;}
.ya{bottom:136.110000px;}
.y2a{bottom:141.120000px;}
.y88{bottom:141.156000px;}
.y4e{bottom:143.496000px;}
.y29{bottom:158.400000px;}
.y87{bottom:158.430000px;}
.y4d{bottom:160.590000px;}
.y28{bottom:175.710000px;}
.y4c{bottom:177.870000px;}
.y27{bottom:192.990000px;}
.y4b{bottom:195.150000px;}
.y8b{bottom:200.550000px;}
.y86{bottom:210.090000px;}
.y26{bottom:210.270000px;}
.y4a{bottom:212.430000px;}
.y85{bottom:227.370000px;}
.y49{bottom:229.710000px;}
.y84{bottom:244.650000px;}
.y48{bottom:246.990000px;}
.y83{bottom:261.930000px;}
.y47{bottom:264.090000px;}
.y82{bottom:279.210000px;}
.y46{bottom:281.370000px;}
.y81{bottom:296.490000px;}
.y45{bottom:298.650000px;}
.y80{bottom:313.590000px;}
.y44{bottom:315.930000px;}
.y7f{bottom:330.915000px;}
.y43{bottom:333.255000px;}
.y7e{bottom:348.195000px;}
.y42{bottom:350.535000px;}
.y7d{bottom:365.475000px;}
.y41{bottom:367.635000px;}
.y7c{bottom:382.755000px;}
.y40{bottom:384.555000px;}
.y25{bottom:397.155000px;}
.y7b{bottom:399.855000px;}
.y7a{bottom:417.135000px;}
.y79{bottom:434.415000px;}
.y78{bottom:451.695000px;}
.y77{bottom:468.975000px;}
.y3b{bottom:480.855000px;}
.y76{bottom:486.255000px;}
.y32{bottom:497.235000px;}
.y75{bottom:503.355000px;}
.y74{bottom:520.635000px;}
.y73{bottom:537.915000px;}
.y72{bottom:555.195000px;}
.y71{bottom:572.505000px;}
.y70{bottom:589.785000px;}
.y6f{bottom:606.885000px;}
.y22{bottom:622.185000px;}
.y6e{bottom:624.165000px;}
.y6d{bottom:641.445000px;}
.y21{bottom:652.965000px;}
.y1f{bottom:655.845000px;}
.y6c{bottom:658.725000px;}
.y1e{bottom:661.605000px;}
.y6b{bottom:676.005000px;}
.y1d{bottom:678.885000px;}
.y6a{bottom:693.285000px;}
.y1c{bottom:698.685000px;}
.y69{bottom:710.385000px;}
.y1b{bottom:727.485000px;}
.y68{bottom:727.665000px;}
.y67{bottom:744.945000px;}
.y1a{bottom:752.505000px;}
.y66{bottom:762.225000px;}
.y19{bottom:771.405000px;}
.y65{bottom:779.505000px;}
.y18{bottom:784.545000px;}
.y64{bottom:796.605000px;}
.y17{bottom:805.605000px;}
.y63{bottom:813.885000px;}
.y62{bottom:831.210000px;}
.y16{bottom:836.790000px;}
.y61{bottom:848.490000px;}
.y60{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y5f{bottom:883.050000px;}
.y14{bottom:898.890000px;}
.y5e{bottom:900.150000px;}
.y5d{bottom:917.430000px;}
.y13{bottom:927.330000px;}
.y5c{bottom:934.710000px;}
.y5b{bottom:951.990000px;}
.y12{bottom:953.610000px;}
.y9{bottom:955.950000px;}
.y5a{bottom:969.270000px;}
.y59{bottom:986.550000px;}
.y58{bottom:1003.650000px;}
.y57{bottom:1020.930000px;}
.y56{bottom:1038.210000px;}
.y55{bottom:1055.490000px;}
.y54{bottom:1072.800000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.600000px;}
.y1{bottom:1137.600000px;}
.h16{height:1.800000px;}
.hf{height:4.064063px;}
.h17{height:4.803750px;}
.h18{height:8.636133px;}
.h24{height:13.860000px;}
.h20{height:15.480000px;}
.h19{height:17.280000px;}
.h9{height:21.336328px;}
.hb{height:25.219688px;}
.h4{height:27.540000px;}
.h23{height:27.576000px;}
.h25{height:34.036523px;}
.h13{height:34.827188px;}
.h22{height:36.068555px;}
.h1a{height:38.100586px;}
.h6{height:40.231406px;}
.h1f{height:41.343750px;}
.h3{height:42.164648px;}
.h2{height:45.024258px;}
.h1e{height:45.035156px;}
.h5{height:49.838906px;}
.h1{height:50.800781px;}
.h1c{height:52.727695px;}
.h12{height:53.224453px;}
.h14{height:55.243125px;}
.hd{height:60.046875px;}
.h7{height:65.884219px;}
.h26{height:68.940000px;}
.hc{height:72.147305px;}
.h10{height:76.201172px;}
.h11{height:81.369141px;}
.h21{height:82.980000px;}
.h15{height:90.070312px;}
.ha{height:92.965430px;}
.he{height:118.365820px;}
.h1d{height:124.236000px;}
.h8{height:143.136000px;}
.h1b{height:224.310000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w5{width:165.960000px;}
.w8{width:217.695000px;}
.wa{width:349.815000px;}
.w7{width:603.105000px;}
.w4{width:648.150000px;}
.w9{width:745.350000px;}
.w3{width:745.530000px;}
.w6{width:901.440000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x14{left:3.240000px;}
.x4{left:4.320000px;}
.x1c{left:6.839986px;}
.x15{left:8.100000px;}
.x19{left:38.205000px;}
.x6{left:45.540000px;}
.x16{left:46.800000px;}
.x1d{left:52.200000px;}
.x1{left:53.999986px;}
.x18{left:59.445000px;}
.x1a{left:60.839986px;}
.xa{left:70.416000px;}
.x1f{left:76.500000px;}
.xe{left:85.319986px;}
.x1e{left:87.300000px;}
.x3{left:99.396000px;}
.x20{left:103.170000px;}
.x9{left:105.510000px;}
.x2{left:108.035986px;}
.x5{left:134.496000px;}
.x8{left:200.190000px;}
.xb{left:231.690000px;}
.x11{left:248.609986px;}
.x12{left:275.969986px;}
.xf{left:300.314986px;}
.x7{left:324.075000px;}
.x10{left:464.294986px;}
.x13{left:466.274986px;}
.x1b{left:486.104986px;}
.x17{left:650.805000px;}
.xc{left:693.690000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.239467pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls19{letter-spacing:6.560000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls17{letter-spacing:19.360000pt;}
.ls8{letter-spacing:40.912640pt;}
.ls4{letter-spacing:859.786667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-23.968000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.448533pt;}
.ws0{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.096000pt;}
.wsb{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws8{word-spacing:-9.280000pt;}
.ws10{word-spacing:0.000000pt;}
._f{margin-left:-5.664000pt;}
._2{margin-left:-1.061973pt;}
._0{width:0.931840pt;}
._3{width:1.854720pt;}
._9{width:3.062187pt;}
._7{width:4.539520pt;}
._d{width:5.603413pt;}
._c{width:6.533760pt;}
._1c{width:7.475413pt;}
._b{width:8.458880pt;}
._a{width:9.490560pt;}
._16{width:10.624000pt;}
._e{width:12.118400pt;}
._6{width:14.284800pt;}
._5{width:15.384533pt;}
._4{width:16.279040pt;}
._10{width:17.808000pt;}
._1f{width:18.712960pt;}
._8{width:19.625600pt;}
._18{width:20.634880pt;}
._23{width:21.779200pt;}
._22{width:23.213440pt;}
._21{width:24.512640pt;}
._26{width:25.524907pt;}
._15{width:26.453333pt;}
._27{width:27.656107pt;}
._13{width:28.602880pt;}
._14{width:29.619627pt;}
._12{width:30.768000pt;}
._11{width:31.968000pt;}
._1b{width:33.391787pt;}
._1a{width:34.499200pt;}
._1e{width:35.758507pt;}
._17{width:36.889600pt;}
._25{width:38.352640pt;}
._31{width:39.246720pt;}
._2d{width:40.346880pt;}
._2c{width:41.404800pt;}
._33{width:42.708480pt;}
._24{width:44.036480pt;}
._1d{width:45.229440pt;}
._20{width:46.586240pt;}
._30{width:47.537920pt;}
._28{width:48.604800pt;}
._19{width:51.207680pt;}
._2b{width:54.578560pt;}
._32{width:58.403200pt;}
._29{width:63.290240pt;}
._2a{width:64.197760pt;}
._35{width:103.894187pt;}
._34{width:104.858880pt;}
._2f{width:343.048960pt;}
._2e{width:343.952000pt;}
._1{width:386.961493pt;}
.fs8{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsd{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs7{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:0.320000pt;}
.y7{bottom:2.240000pt;}
.y3a{bottom:2.560000pt;}
.y23{bottom:2.880000pt;}
.y10{bottom:3.520000pt;}
.y24{bottom:4.160000pt;}
.y3f{bottom:7.360000pt;}
.y5{bottom:7.520000pt;}
.y51{bottom:7.552000pt;}
.y6{bottom:14.560000pt;}
.y52{bottom:14.592000pt;}
.y39{bottom:16.320000pt;}
.y31{bottom:18.240000pt;}
.yf{bottom:19.840000pt;}
.y3e{bottom:21.120000pt;}
.y8f{bottom:26.714667pt;}
.ye{bottom:29.440000pt;}
.y38{bottom:30.080000pt;}
.y53{bottom:31.680000pt;}
.y30{bottom:33.440000pt;}
.y3d{bottom:35.040000pt;}
.y8e{bottom:39.034667pt;}
.y8{bottom:43.680000pt;}
.y37{bottom:44.000000pt;}
.yd{bottom:45.760000pt;}
.y2f{bottom:48.800000pt;}
.y8d{bottom:51.354667pt;}
.y50{bottom:53.280000pt;}
.y36{bottom:57.760000pt;}
.yc{bottom:58.400000pt;}
.y3c{bottom:62.560000pt;}
.y2e{bottom:64.160000pt;}
.y4{bottom:65.312000pt;}
.y35{bottom:71.546667pt;}
.y2d{bottom:79.520000pt;}
.y34{bottom:85.306667pt;}
.yb{bottom:92.160000pt;}
.y11{bottom:92.320000pt;}
.y2c{bottom:94.880000pt;}
.y33{bottom:99.226667pt;}
.y8a{bottom:103.232000pt;}
.y89{bottom:110.112000pt;}
.y2b{bottom:110.240000pt;}
.y4f{bottom:112.192000pt;}
.y8c{bottom:116.352000pt;}
.ya{bottom:120.986667pt;}
.y2a{bottom:125.440000pt;}
.y88{bottom:125.472000pt;}
.y4e{bottom:127.552000pt;}
.y29{bottom:140.800000pt;}
.y87{bottom:140.826667pt;}
.y4d{bottom:142.746667pt;}
.y28{bottom:156.186667pt;}
.y4c{bottom:158.106667pt;}
.y27{bottom:171.546667pt;}
.y4b{bottom:173.466667pt;}
.y8b{bottom:178.266667pt;}
.y86{bottom:186.746667pt;}
.y26{bottom:186.906667pt;}
.y4a{bottom:188.826667pt;}
.y85{bottom:202.106667pt;}
.y49{bottom:204.186667pt;}
.y84{bottom:217.466667pt;}
.y48{bottom:219.546667pt;}
.y83{bottom:232.826667pt;}
.y47{bottom:234.746667pt;}
.y82{bottom:248.186667pt;}
.y46{bottom:250.106667pt;}
.y81{bottom:263.546667pt;}
.y45{bottom:265.466667pt;}
.y80{bottom:278.746667pt;}
.y44{bottom:280.826667pt;}
.y7f{bottom:294.146667pt;}
.y43{bottom:296.226667pt;}
.y7e{bottom:309.506667pt;}
.y42{bottom:311.586667pt;}
.y7d{bottom:324.866667pt;}
.y41{bottom:326.786667pt;}
.y7c{bottom:340.226667pt;}
.y40{bottom:341.826667pt;}
.y25{bottom:353.026667pt;}
.y7b{bottom:355.426667pt;}
.y7a{bottom:370.786667pt;}
.y79{bottom:386.146667pt;}
.y78{bottom:401.506667pt;}
.y77{bottom:416.866667pt;}
.y3b{bottom:427.426667pt;}
.y76{bottom:432.226667pt;}
.y32{bottom:441.986667pt;}
.y75{bottom:447.426667pt;}
.y74{bottom:462.786667pt;}
.y73{bottom:478.146667pt;}
.y72{bottom:493.506667pt;}
.y71{bottom:508.893333pt;}
.y70{bottom:524.253333pt;}
.y6f{bottom:539.453333pt;}
.y22{bottom:553.053333pt;}
.y6e{bottom:554.813333pt;}
.y6d{bottom:570.173333pt;}
.y21{bottom:580.413333pt;}
.y1f{bottom:582.973333pt;}
.y6c{bottom:585.533333pt;}
.y1e{bottom:588.093333pt;}
.y6b{bottom:600.893333pt;}
.y1d{bottom:603.453333pt;}
.y6a{bottom:616.253333pt;}
.y1c{bottom:621.053333pt;}
.y69{bottom:631.453333pt;}
.y1b{bottom:646.653333pt;}
.y68{bottom:646.813333pt;}
.y67{bottom:662.173333pt;}
.y1a{bottom:668.893333pt;}
.y66{bottom:677.533333pt;}
.y19{bottom:685.693333pt;}
.y65{bottom:692.893333pt;}
.y18{bottom:697.373333pt;}
.y64{bottom:708.093333pt;}
.y17{bottom:716.093333pt;}
.y63{bottom:723.453333pt;}
.y62{bottom:738.853333pt;}
.y16{bottom:743.813333pt;}
.y61{bottom:754.213333pt;}
.y60{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y5f{bottom:784.933333pt;}
.y14{bottom:799.013333pt;}
.y5e{bottom:800.133333pt;}
.y5d{bottom:815.493333pt;}
.y13{bottom:824.293333pt;}
.y5c{bottom:830.853333pt;}
.y5b{bottom:846.213333pt;}
.y12{bottom:847.653333pt;}
.y9{bottom:849.733333pt;}
.y5a{bottom:861.573333pt;}
.y59{bottom:876.933333pt;}
.y58{bottom:892.133333pt;}
.y57{bottom:907.493333pt;}
.y56{bottom:922.853333pt;}
.y55{bottom:938.213333pt;}
.y54{bottom:953.600000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.200000pt;}
.y1{bottom:1011.200000pt;}
.h16{height:1.600000pt;}
.hf{height:3.612500pt;}
.h17{height:4.270000pt;}
.h18{height:7.676562pt;}
.h24{height:12.320000pt;}
.h20{height:13.760000pt;}
.h19{height:15.360000pt;}
.h9{height:18.965625pt;}
.hb{height:22.417500pt;}
.h4{height:24.480000pt;}
.h23{height:24.512000pt;}
.h25{height:30.254687pt;}
.h13{height:30.957500pt;}
.h22{height:32.060937pt;}
.h1a{height:33.867188pt;}
.h6{height:35.761250pt;}
.h1f{height:36.750000pt;}
.h3{height:37.479688pt;}
.h2{height:40.021563pt;}
.h1e{height:40.031250pt;}
.h5{height:44.301250pt;}
.h1{height:45.156250pt;}
.h1c{height:46.869062pt;}
.h12{height:47.310625pt;}
.h14{height:49.105000pt;}
.hd{height:53.375000pt;}
.h7{height:58.563750pt;}
.h26{height:61.280000pt;}
.hc{height:64.130938pt;}
.h10{height:67.734375pt;}
.h11{height:72.328125pt;}
.h21{height:73.760000pt;}
.h15{height:80.062500pt;}
.ha{height:82.635937pt;}
.he{height:105.214062pt;}
.h1d{height:110.432000pt;}
.h8{height:127.232000pt;}
.h1b{height:199.386667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w5{width:147.520000pt;}
.w8{width:193.506667pt;}
.wa{width:310.946667pt;}
.w7{width:536.093333pt;}
.w4{width:576.133333pt;}
.w9{width:662.533333pt;}
.w3{width:662.693333pt;}
.w6{width:801.280000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x14{left:2.880000pt;}
.x4{left:3.840000pt;}
.x1c{left:6.079988pt;}
.x15{left:7.200000pt;}
.x19{left:33.960000pt;}
.x6{left:40.480000pt;}
.x16{left:41.600000pt;}
.x1d{left:46.400000pt;}
.x1{left:47.999988pt;}
.x18{left:52.840000pt;}
.x1a{left:54.079988pt;}
.xa{left:62.592000pt;}
.x1f{left:68.000000pt;}
.xe{left:75.839988pt;}
.x1e{left:77.600000pt;}
.x3{left:88.352000pt;}
.x20{left:91.706667pt;}
.x9{left:93.786667pt;}
.x2{left:96.031988pt;}
.x5{left:119.552000pt;}
.x8{left:177.946667pt;}
.xb{left:205.946667pt;}
.x11{left:220.986655pt;}
.x12{left:245.306655pt;}
.xf{left:266.946655pt;}
.x7{left:288.066667pt;}
.x10{left:412.706655pt;}
.x13{left:414.466655pt;}
.x1b{left:432.093321pt;}
.x17{left:578.493333pt;}
.xc{left:616.613333pt;}
}




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