
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0b6e64b1ed307675a8509093.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_47b372571c8b521c3b90b12e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1ad7fc0f313bb41cc6b25d3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_86edbf4436dd3033a7d10d70.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_8d91a0999d16454cfa5735cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_cc2bc5651103113b3fe7e550.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_437d5430fa7a2387f29a782c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9758d400672cd3649ba49b82.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e3c1d559de77a766c8060800.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_89fd882441ffd7bd6ff72ecf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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;}
.lsd{letter-spacing:-0.378600px;}
.lsf{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.037440px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.148080px;}
.lsb{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.504000px;}
.lsa{letter-spacing:9.180000px;}
.ls0{letter-spacing:12.960000px;}
.ls11{letter-spacing:33.984000px;}
.ls2{letter-spacing:41.760000px;}
.ls10{letter-spacing:64.026720px;}
.ls7{letter-spacing:129.221280px;}
.ls5{letter-spacing:237.365280px;}
.ls4{letter-spacing:280.170720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws5{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.401400px;}
.wsa{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws8{word-spacing:-21.022560px;}
.ws9{word-spacing:-20.700000px;}
.ws7{word-spacing:-20.681400px;}
.wsc{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.272000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._1{width:1.197600px;}
._4{width:2.304000px;}
._5{width:3.607200px;}
._1c{width:4.968000px;}
._28{width:6.098880px;}
._e{width:7.200000px;}
._20{width:8.208480px;}
._f{width:9.216000px;}
._3{width:10.296000px;}
._2{width:11.424000px;}
._12{width:13.152000px;}
._6{width:14.184000px;}
._9{width:15.654240px;}
._8{width:16.776000px;}
._27{width:17.990640px;}
._21{width:19.224000px;}
._11{width:21.456000px;}
._10{width:22.752000px;}
._1b{width:24.408000px;}
._25{width:25.440480px;}
._22{width:27.061440px;}
._1f{width:28.200000px;}
._d{width:29.907120px;}
._7{width:31.392000px;}
._26{width:32.411520px;}
._15{width:36.087120px;}
._a{width:37.512000px;}
._18{width:38.592000px;}
._17{width:39.672000px;}
._19{width:41.112000px;}
._1a{width:42.336000px;}
._13{width:44.295120px;}
._b{width:46.152000px;}
._14{width:47.160000px;}
._c{width:48.168000px;}
._1e{width:49.680000px;}
._1d{width:51.768000px;}
._16{width:52.920000px;}
._23{width:53.926800px;}
._24{width:55.092960px;}
._29{width:56.188080px;}
._38{width:60.222240px;}
._30{width:61.632000px;}
._2e{width:62.640000px;}
._2f{width:64.107120px;}
._34{width:74.091120px;}
._32{width:83.432880px;}
._31{width:84.759120px;}
._35{width:91.974240px;}
._2c{width:93.540000px;}
._36{width:158.271120px;}
._37{width:159.665760px;}
._2b{width:177.612000px;}
._2d{width:350.784000px;}
._33{width:623.592000px;}
._2a{width:886.577520px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:35.856000px;}
.y2{bottom:55.476000px;}
.yac{bottom:83.916000px;}
.y8e{bottom:85.356000px;}
.y34{bottom:92.016000px;}
.y7f{bottom:94.536000px;}
.yab{bottom:103.536000px;}
.y8d{bottom:106.056000px;}
.y33{bottom:112.716000px;}
.y7e{bottom:122.256000px;}
.yaa{bottom:124.236000px;}
.y5c{bottom:124.956000px;}
.y8c{bottom:126.756000px;}
.y32{bottom:133.416000px;}
.ya9{bottom:144.936000px;}
.y8b{bottom:147.456000px;}
.y7d{bottom:149.976000px;}
.y5b{bottom:152.670000px;}
.y31{bottom:154.110000px;}
.ya8{bottom:165.630000px;}
.y8a{bottom:168.150000px;}
.y30{bottom:174.810000px;}
.y7c{bottom:177.870000px;}
.y5a{bottom:180.390000px;}
.ya7{bottom:186.330000px;}
.y89{bottom:188.850000px;}
.y2f{bottom:195.510000px;}
.y7b{bottom:205.590000px;}
.ya6{bottom:207.030000px;}
.y59{bottom:208.110000px;}
.y88{bottom:209.550000px;}
.y2e{bottom:216.210000px;}
.ya5{bottom:227.730000px;}
.y87{bottom:230.250000px;}
.y7a{bottom:233.310000px;}
.y58{bottom:236.010000px;}
.y2d{bottom:236.910000px;}
.ya4{bottom:248.430000px;}
.y86{bottom:250.950000px;}
.y2c{bottom:257.610000px;}
.y79{bottom:261.210000px;}
.y57{bottom:263.730000px;}
.ya3{bottom:269.130000px;}
.y85{bottom:271.650000px;}
.y2b{bottom:278.310000px;}
.y78{bottom:288.975000px;}
.ya2{bottom:289.875000px;}
.y56{bottom:291.495000px;}
.y84{bottom:292.395000px;}
.y2a{bottom:299.055000px;}
.ya1{bottom:310.575000px;}
.y83{bottom:313.095000px;}
.y77{bottom:316.695000px;}
.y55{bottom:319.215000px;}
.y29{bottom:319.755000px;}
.ya0{bottom:331.275000px;}
.y82{bottom:333.795000px;}
.y28{bottom:340.455000px;}
.y76{bottom:344.415000px;}
.y54{bottom:347.115000px;}
.y9f{bottom:351.975000px;}
.y81{bottom:354.495000px;}
.y27{bottom:361.155000px;}
.y75{bottom:372.315000px;}
.y9e{bottom:372.675000px;}
.y53{bottom:374.835000px;}
.y80{bottom:375.195000px;}
.y26{bottom:381.855000px;}
.y9d{bottom:393.375000px;}
.y74{bottom:400.035000px;}
.y25{bottom:402.555000px;}
.y9c{bottom:414.075000px;}
.y24{bottom:423.255000px;}
.y73{bottom:427.755000px;}
.y52{bottom:430.455000px;}
.y9b{bottom:434.775000px;}
.y23{bottom:443.955000px;}
.y9a{bottom:455.475000px;}
.y72{bottom:455.655000px;}
.y51{bottom:458.175000px;}
.y22{bottom:464.655000px;}
.y99{bottom:476.175000px;}
.y71{bottom:483.375000px;}
.y21{bottom:485.355000px;}
.y50{bottom:485.895000px;}
.y98{bottom:496.875000px;}
.y20{bottom:506.055000px;}
.y70{bottom:511.095000px;}
.y4f{bottom:513.615000px;}
.y97{bottom:517.575000px;}
.y1f{bottom:526.755000px;}
.y96{bottom:538.275000px;}
.y6f{bottom:538.815000px;}
.y4e{bottom:541.515000px;}
.y1e{bottom:547.455000px;}
.y95{bottom:558.975000px;}
.y6e{bottom:566.745000px;}
.y1d{bottom:568.185000px;}
.y4d{bottom:569.265000px;}
.y94{bottom:579.705000px;}
.y1c{bottom:588.885000px;}
.y6d{bottom:594.465000px;}
.y4c{bottom:596.985000px;}
.y93{bottom:600.405000px;}
.y1b{bottom:609.585000px;}
.y92{bottom:621.105000px;}
.y6c{bottom:622.185000px;}
.y4b{bottom:624.885000px;}
.y1a{bottom:630.285000px;}
.y91{bottom:641.805000px;}
.y6b{bottom:649.905000px;}
.y19{bottom:650.985000px;}
.y4a{bottom:652.605000px;}
.y90{bottom:662.505000px;}
.y18{bottom:671.685000px;}
.y6a{bottom:677.805000px;}
.y49{bottom:680.325000px;}
.y8f{bottom:683.205000px;}
.y17{bottom:692.385000px;}
.y48{bottom:703.905000px;}
.y69{bottom:705.525000px;}
.y16{bottom:713.085000px;}
.y47{bottom:724.605000px;}
.y68{bottom:733.245000px;}
.y15{bottom:733.785000px;}
.y46{bottom:745.305000px;}
.y14{bottom:754.485000px;}
.y67{bottom:761.145000px;}
.y45{bottom:766.005000px;}
.y13{bottom:776.085000px;}
.y44{bottom:786.705000px;}
.y66{bottom:788.865000px;}
.y12{bottom:797.145000px;}
.y43{bottom:807.405000px;}
.y65{bottom:816.585000px;}
.y11{bottom:817.845000px;}
.y42{bottom:828.105000px;}
.y10{bottom:838.545000px;}
.y64{bottom:844.305000px;}
.y41{bottom:848.850000px;}
.yf{bottom:859.290000px;}
.y40{bottom:869.550000px;}
.y63{bottom:872.250000px;}
.ye{bottom:879.990000px;}
.y3f{bottom:890.250000px;}
.y62{bottom:899.970000px;}
.yd{bottom:900.690000px;}
.y3e{bottom:910.950000px;}
.yc{bottom:921.390000px;}
.y61{bottom:927.690000px;}
.y3d{bottom:931.650000px;}
.yb{bottom:941.910000px;}
.y3c{bottom:952.350000px;}
.y60{bottom:955.590000px;}
.ya{bottom:962.610000px;}
.y3b{bottom:973.050000px;}
.y9{bottom:983.310000px;}
.y3a{bottom:993.750000px;}
.y8{bottom:1004.010000px;}
.y5f{bottom:1011.030000px;}
.y39{bottom:1014.450000px;}
.y7{bottom:1024.710000px;}
.y38{bottom:1035.150000px;}
.y5e{bottom:1038.750000px;}
.y6{bottom:1046.130000px;}
.y37{bottom:1055.850000px;}
.y5d{bottom:1066.650000px;}
.y5{bottom:1070.250000px;}
.y36{bottom:1076.550000px;}
.y4{bottom:1094.370000px;}
.y35{bottom:1097.250000px;}
.y1{bottom:1194.120000px;}
.h7{height:58.819922px;}
.h6{height:59.343750px;}
.h2{height:65.884219px;}
.h5{height:70.628906px;}
.hb{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:74.004654px;}
.h8{height:82.676953px;}
.h4{height:84.898125px;}
.h9{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:42.479987px;}
.x12{left:57.959987px;}
.x11{left:84.959987px;}
.x5{left:98.315987px;}
.x13{left:111.995987px;}
.x6{left:126.215987px;}
.x4{left:138.995987px;}
.xb{left:194.429987px;}
.xf{left:198.929987px;}
.xa{left:293.834987px;}
.xc{left:297.434987px;}
.xe{left:340.814987px;}
.x8{left:346.754987px;}
.x9{left:365.654987px;}
.x14{left:378.974987px;}
.x2{left:380.054987px;}
.xd{left:418.934987px;}
.x3{left:457.094987px;}
.x10{left:465.194987px;}
.x7{left:483.764987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.336533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.033280pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.131627pt;}
.lsb{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.448000pt;}
.lsa{letter-spacing:8.160000pt;}
.ls0{letter-spacing:11.520000pt;}
.ls11{letter-spacing:30.208000pt;}
.ls2{letter-spacing:37.120000pt;}
.ls10{letter-spacing:56.912640pt;}
.ls7{letter-spacing:114.863360pt;}
.ls5{letter-spacing:210.991360pt;}
.ls4{letter-spacing:249.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.023467pt;}
.wsa{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.686720pt;}
.ws9{word-spacing:-18.400000pt;}
.ws7{word-spacing:-18.383467pt;}
.wsc{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.064533pt;}
._4{width:2.048000pt;}
._5{width:3.206400pt;}
._1c{width:4.416000pt;}
._28{width:5.421227pt;}
._e{width:6.400000pt;}
._20{width:7.296427pt;}
._f{width:8.192000pt;}
._3{width:9.152000pt;}
._2{width:10.154667pt;}
._12{width:11.690667pt;}
._6{width:12.608000pt;}
._9{width:13.914880pt;}
._8{width:14.912000pt;}
._27{width:15.991680pt;}
._21{width:17.088000pt;}
._11{width:19.072000pt;}
._10{width:20.224000pt;}
._1b{width:21.696000pt;}
._25{width:22.613760pt;}
._22{width:24.054613pt;}
._1f{width:25.066667pt;}
._d{width:26.584107pt;}
._7{width:27.904000pt;}
._26{width:28.810240pt;}
._15{width:32.077440pt;}
._a{width:33.344000pt;}
._18{width:34.304000pt;}
._17{width:35.264000pt;}
._19{width:36.544000pt;}
._1a{width:37.632000pt;}
._13{width:39.373440pt;}
._b{width:41.024000pt;}
._14{width:41.920000pt;}
._c{width:42.816000pt;}
._1e{width:44.160000pt;}
._1d{width:46.016000pt;}
._16{width:47.040000pt;}
._23{width:47.934933pt;}
._24{width:48.971520pt;}
._29{width:49.944960pt;}
._38{width:53.530880pt;}
._30{width:54.784000pt;}
._2e{width:55.680000pt;}
._2f{width:56.984107pt;}
._34{width:65.858773pt;}
._32{width:74.162560pt;}
._31{width:75.341440pt;}
._35{width:81.754880pt;}
._2c{width:83.146667pt;}
._36{width:140.685440pt;}
._37{width:141.925120pt;}
._2b{width:157.877333pt;}
._2d{width:311.808000pt;}
._33{width:554.304000pt;}
._2a{width:788.068907pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:31.872000pt;}
.y2{bottom:49.312000pt;}
.yac{bottom:74.592000pt;}
.y8e{bottom:75.872000pt;}
.y34{bottom:81.792000pt;}
.y7f{bottom:84.032000pt;}
.yab{bottom:92.032000pt;}
.y8d{bottom:94.272000pt;}
.y33{bottom:100.192000pt;}
.y7e{bottom:108.672000pt;}
.yaa{bottom:110.432000pt;}
.y5c{bottom:111.072000pt;}
.y8c{bottom:112.672000pt;}
.y32{bottom:118.592000pt;}
.ya9{bottom:128.832000pt;}
.y8b{bottom:131.072000pt;}
.y7d{bottom:133.312000pt;}
.y5b{bottom:135.706667pt;}
.y31{bottom:136.986667pt;}
.ya8{bottom:147.226667pt;}
.y8a{bottom:149.466667pt;}
.y30{bottom:155.386667pt;}
.y7c{bottom:158.106667pt;}
.y5a{bottom:160.346667pt;}
.ya7{bottom:165.626667pt;}
.y89{bottom:167.866667pt;}
.y2f{bottom:173.786667pt;}
.y7b{bottom:182.746667pt;}
.ya6{bottom:184.026667pt;}
.y59{bottom:184.986667pt;}
.y88{bottom:186.266667pt;}
.y2e{bottom:192.186667pt;}
.ya5{bottom:202.426667pt;}
.y87{bottom:204.666667pt;}
.y7a{bottom:207.386667pt;}
.y58{bottom:209.786667pt;}
.y2d{bottom:210.586667pt;}
.ya4{bottom:220.826667pt;}
.y86{bottom:223.066667pt;}
.y2c{bottom:228.986667pt;}
.y79{bottom:232.186667pt;}
.y57{bottom:234.426667pt;}
.ya3{bottom:239.226667pt;}
.y85{bottom:241.466667pt;}
.y2b{bottom:247.386667pt;}
.y78{bottom:256.866667pt;}
.ya2{bottom:257.666667pt;}
.y56{bottom:259.106667pt;}
.y84{bottom:259.906667pt;}
.y2a{bottom:265.826667pt;}
.ya1{bottom:276.066667pt;}
.y83{bottom:278.306667pt;}
.y77{bottom:281.506667pt;}
.y55{bottom:283.746667pt;}
.y29{bottom:284.226667pt;}
.ya0{bottom:294.466667pt;}
.y82{bottom:296.706667pt;}
.y28{bottom:302.626667pt;}
.y76{bottom:306.146667pt;}
.y54{bottom:308.546667pt;}
.y9f{bottom:312.866667pt;}
.y81{bottom:315.106667pt;}
.y27{bottom:321.026667pt;}
.y75{bottom:330.946667pt;}
.y9e{bottom:331.266667pt;}
.y53{bottom:333.186667pt;}
.y80{bottom:333.506667pt;}
.y26{bottom:339.426667pt;}
.y9d{bottom:349.666667pt;}
.y74{bottom:355.586667pt;}
.y25{bottom:357.826667pt;}
.y9c{bottom:368.066667pt;}
.y24{bottom:376.226667pt;}
.y73{bottom:380.226667pt;}
.y52{bottom:382.626667pt;}
.y9b{bottom:386.466667pt;}
.y23{bottom:394.626667pt;}
.y9a{bottom:404.866667pt;}
.y72{bottom:405.026667pt;}
.y51{bottom:407.266667pt;}
.y22{bottom:413.026667pt;}
.y99{bottom:423.266667pt;}
.y71{bottom:429.666667pt;}
.y21{bottom:431.426667pt;}
.y50{bottom:431.906667pt;}
.y98{bottom:441.666667pt;}
.y20{bottom:449.826667pt;}
.y70{bottom:454.306667pt;}
.y4f{bottom:456.546667pt;}
.y97{bottom:460.066667pt;}
.y1f{bottom:468.226667pt;}
.y96{bottom:478.466667pt;}
.y6f{bottom:478.946667pt;}
.y4e{bottom:481.346667pt;}
.y1e{bottom:486.626667pt;}
.y95{bottom:496.866667pt;}
.y6e{bottom:503.773333pt;}
.y1d{bottom:505.053333pt;}
.y4d{bottom:506.013333pt;}
.y94{bottom:515.293333pt;}
.y1c{bottom:523.453333pt;}
.y6d{bottom:528.413333pt;}
.y4c{bottom:530.653333pt;}
.y93{bottom:533.693333pt;}
.y1b{bottom:541.853333pt;}
.y92{bottom:552.093333pt;}
.y6c{bottom:553.053333pt;}
.y4b{bottom:555.453333pt;}
.y1a{bottom:560.253333pt;}
.y91{bottom:570.493333pt;}
.y6b{bottom:577.693333pt;}
.y19{bottom:578.653333pt;}
.y4a{bottom:580.093333pt;}
.y90{bottom:588.893333pt;}
.y18{bottom:597.053333pt;}
.y6a{bottom:602.493333pt;}
.y49{bottom:604.733333pt;}
.y8f{bottom:607.293333pt;}
.y17{bottom:615.453333pt;}
.y48{bottom:625.693333pt;}
.y69{bottom:627.133333pt;}
.y16{bottom:633.853333pt;}
.y47{bottom:644.093333pt;}
.y68{bottom:651.773333pt;}
.y15{bottom:652.253333pt;}
.y46{bottom:662.493333pt;}
.y14{bottom:670.653333pt;}
.y67{bottom:676.573333pt;}
.y45{bottom:680.893333pt;}
.y13{bottom:689.853333pt;}
.y44{bottom:699.293333pt;}
.y66{bottom:701.213333pt;}
.y12{bottom:708.573333pt;}
.y43{bottom:717.693333pt;}
.y65{bottom:725.853333pt;}
.y11{bottom:726.973333pt;}
.y42{bottom:736.093333pt;}
.y10{bottom:745.373333pt;}
.y64{bottom:750.493333pt;}
.y41{bottom:754.533333pt;}
.yf{bottom:763.813333pt;}
.y40{bottom:772.933333pt;}
.y63{bottom:775.333333pt;}
.ye{bottom:782.213333pt;}
.y3f{bottom:791.333333pt;}
.y62{bottom:799.973333pt;}
.yd{bottom:800.613333pt;}
.y3e{bottom:809.733333pt;}
.yc{bottom:819.013333pt;}
.y61{bottom:824.613333pt;}
.y3d{bottom:828.133333pt;}
.yb{bottom:837.253333pt;}
.y3c{bottom:846.533333pt;}
.y60{bottom:849.413333pt;}
.ya{bottom:855.653333pt;}
.y3b{bottom:864.933333pt;}
.y9{bottom:874.053333pt;}
.y3a{bottom:883.333333pt;}
.y8{bottom:892.453333pt;}
.y5f{bottom:898.693333pt;}
.y39{bottom:901.733333pt;}
.y7{bottom:910.853333pt;}
.y38{bottom:920.133333pt;}
.y5e{bottom:923.333333pt;}
.y6{bottom:929.893333pt;}
.y37{bottom:938.533333pt;}
.y5d{bottom:948.133333pt;}
.y5{bottom:951.333333pt;}
.y36{bottom:956.933333pt;}
.y4{bottom:972.773333pt;}
.y35{bottom:975.333333pt;}
.y1{bottom:1061.440000pt;}
.h7{height:52.284375pt;}
.h6{height:52.750000pt;}
.h2{height:58.563750pt;}
.h5{height:62.781250pt;}
.hb{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:65.781915pt;}
.h8{height:73.490625pt;}
.h4{height:75.465000pt;}
.h9{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:37.759988pt;}
.x12{left:51.519988pt;}
.x11{left:75.519988pt;}
.x5{left:87.391988pt;}
.x13{left:99.551988pt;}
.x6{left:112.191988pt;}
.x4{left:123.551988pt;}
.xb{left:172.826655pt;}
.xf{left:176.826655pt;}
.xa{left:261.186655pt;}
.xc{left:264.386655pt;}
.xe{left:302.946655pt;}
.x8{left:308.226655pt;}
.x9{left:325.026655pt;}
.x14{left:336.866655pt;}
.x2{left:337.826655pt;}
.xd{left:372.386655pt;}
.x3{left:406.306655pt;}
.x10{left:413.506655pt;}
.x7{left:430.013322pt;}
}




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