
    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_0bba4cd8025fd1ddb24bd83b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_57c47d3759bfe901e638c3f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_fc814b13feaf176abdd433f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_ecc14afbc6616377a838be4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_d378801f63a0804fe3e94599.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bbd9884ad27a4d22dee1aac5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752441;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_35e277a893fb00b885ccfb07.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.776855;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_a30c3541630a3ed7d88c84d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933105;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_2b50bbfb2fe437d5f9e82ab0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_fae2e06d96431eb2b9f7e587.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:50.400000px;}
.ls14{letter-spacing:-7.200000px;}
.ls12{letter-spacing:-2.160000px;}
.ls25{letter-spacing:-1.938000px;}
.ls1a{letter-spacing:-1.482000px;}
.lsc{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.296000px;}
.ls26{letter-spacing:-1.218000px;}
.ls1b{letter-spacing:-0.954000px;}
.ls11{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.666000px;}
.ls22{letter-spacing:-0.654000px;}
.ls13{letter-spacing:-0.576000px;}
.ls29{letter-spacing:-0.541200px;}
.ls16{letter-spacing:-0.424800px;}
.lsd{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.258600px;}
.ls20{letter-spacing:-0.234000px;}
.ls1e{letter-spacing:-0.187200px;}
.ls17{letter-spacing:-0.094200px;}
.ls2c{letter-spacing:-0.041760px;}
.lsb{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.041040px;}
.ls23{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.064800px;}
.lse{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.150600px;}
.ls2d{letter-spacing:0.204600px;}
.ls2b{letter-spacing:0.211200px;}
.ls2e{letter-spacing:0.283200px;}
.ls0{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.295200px;}
.ls2a{letter-spacing:0.348600px;}
.ls1d{letter-spacing:0.388200px;}
.ls10{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.486000px;}
.ls1f{letter-spacing:0.543000px;}
.ls5{letter-spacing:0.565200px;}
.ls1c{letter-spacing:0.870000px;}
.ls28{letter-spacing:1.002000px;}
.ls19{letter-spacing:1.014000px;}
.ls4{letter-spacing:3.846240px;}
.lsa{letter-spacing:5.286240px;}
.ls9{letter-spacing:8.609760px;}
.ls6{letter-spacing:22.289760px;}
.ls1{letter-spacing:28.326240px;}
.ls2{letter-spacing:56.406240px;}
.ls3{letter-spacing:179.526240px;}
.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;}
}
.ws10{word-spacing:-167.760000px;}
.ws0{word-spacing:-144.000000px;}
.wsa{word-spacing:-122.976000px;}
.ws13{word-spacing:-38.927760px;}
.ws24{word-spacing:-38.915760px;}
.ws16{word-spacing:-38.783760px;}
.ws19{word-spacing:-38.456760px;}
.ws23{word-spacing:-38.399760px;}
.ws17{word-spacing:-38.301960px;}
.ws12{word-spacing:-38.208960px;}
.ws28{word-spacing:-38.196960px;}
.ws27{word-spacing:-38.118360px;}
.wse{word-spacing:-38.064360px;}
.ws11{word-spacing:-37.819560px;}
.ws1a{word-spacing:-37.679760px;}
.wsf{word-spacing:-37.488960px;}
.ws25{word-spacing:-37.372560px;}
.ws15{word-spacing:-36.959760px;}
.ws14{word-spacing:-36.431760px;}
.ws1f{word-spacing:-35.375040px;}
.ws1e{word-spacing:-35.364240px;}
.ws1c{word-spacing:-35.351280px;}
.ws1b{word-spacing:-35.051640px;}
.ws1d{word-spacing:-34.656240px;}
.ws20{word-spacing:-34.644240px;}
.ws22{word-spacing:-34.092240px;}
.ws21{word-spacing:-33.372240px;}
.ws5{word-spacing:-32.976000px;}
.ws3{word-spacing:-32.688000px;}
.ws6{word-spacing:-32.544000px;}
.ws2{word-spacing:-32.256000px;}
.ws9{word-spacing:-31.968000px;}
.ws7{word-spacing:-31.824000px;}
.ws4{word-spacing:-31.248000px;}
.ws1{word-spacing:-31.104000px;}
.ws8{word-spacing:-30.384000px;}
.ws18{word-spacing:-25.197120px;}
.ws26{word-spacing:-21.852960px;}
.wsd{word-spacing:-15.984000px;}
.wsb{word-spacing:-0.084240px;}
.wsc{word-spacing:-0.072000px;}
.ws29{word-spacing:0.000000px;}
._30{margin-left:-19.188000px;}
._2a{margin-left:-17.424480px;}
._28{margin-left:-15.269520px;}
._1c{margin-left:-13.573200px;}
._b{margin-left:-11.640000px;}
._c{margin-left:-10.512000px;}
._3{margin-left:-9.216000px;}
._11{margin-left:-7.909200px;}
._10{margin-left:-6.488640px;}
._f{margin-left:-5.281200px;}
._4{margin-left:-3.456000px;}
._0{margin-left:-2.160000px;}
._1{margin-left:-1.008000px;}
._6{width:1.992000px;}
._3b{width:3.336480px;}
._7{width:4.356000px;}
._2{width:5.472000px;}
._5{width:6.480000px;}
._36{width:7.751760px;}
._37{width:8.952480px;}
._a{width:10.080000px;}
._8{width:11.664000px;}
._9{width:12.840000px;}
._d{width:14.664000px;}
._e{width:15.936000px;}
._20{width:19.368000px;}
._1f{width:20.412000px;}
._34{width:21.954000px;}
._1e{width:25.244880px;}
._1d{width:27.056880px;}
._15{width:28.278720px;}
._14{width:29.304720px;}
._2f{width:31.101600px;}
._2e{width:32.395680px;}
._29{width:34.639200px;}
._27{width:35.785200px;}
._32{width:37.002480px;}
._2c{width:40.363200px;}
._43{width:42.199920px;}
._3d{width:45.796080px;}
._26{width:46.851600px;}
._25{width:47.968560px;}
._42{width:51.889200px;}
._41{width:53.337600px;}
._21{width:56.135520px;}
._31{width:58.029840px;}
._22{width:59.836320px;}
._3a{width:62.005680px;}
._33{width:63.093600px;}
._13{width:64.812000px;}
._12{width:65.888640px;}
._35{width:67.178880px;}
._2d{width:68.616000px;}
._3e{width:70.244400px;}
._16{width:80.349120px;}
._3c{width:82.753680px;}
._1a{width:92.709360px;}
._1b{width:93.781440px;}
._39{width:97.475040px;}
._19{width:110.744400px;}
._18{width:111.777120px;}
._17{width:123.802560px;}
._38{width:126.048240px;}
._2b{width:147.150000px;}
._3f{width:148.547280px;}
._23{width:178.742640px;}
._24{width:180.336960px;}
._40{width:834.953040px;}
.fc3{color:rgb(85,142,213);}
.fc1{color:rgb(23,55,94);}
.fc5{color:rgb(13,13,13);}
.fc4{color:rgb(33,33,33);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fs9{font-size:112.320000px;}
.fs0{font-size:144.000000px;}
.fsc{font-size:156.240000px;}
.fs8{font-size:167.760000px;}
.fsa{font-size:192.240000px;}
.fsb{font-size:216.000000px;}
.fs1{font-size:300.240000px;}
.fs7{font-size:360.000000px;}
.fs2{font-size:383.760000px;}
.fs4{font-size:576.000000px;}
.fs3{font-size:576.144000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:53.028000px;}
.y17{bottom:71.136000px;}
.y19{bottom:74.628000px;}
.y16{bottom:92.736000px;}
.y18{bottom:96.228000px;}
.y31{bottom:119.556000px;}
.y6c{bottom:186.765000px;}
.y6b{bottom:237.165000px;}
.y6a{bottom:287.565000px;}
.y69{bottom:337.965000px;}
.y12{bottom:425.085000px;}
.y66{bottom:581.040000px;}
.y65{bottom:609.840000px;}
.y64{bottom:618.300000px;}
.y4f{bottom:646.410000px;}
.y63{bottom:668.700000px;}
.y4e{bottom:693.210000px;}
.y62{bottom:719.100000px;}
.y4d{bottom:740.010000px;}
.y61{bottom:769.500000px;}
.y4c{bottom:786.810000px;}
.y60{bottom:819.900000px;}
.y4b{bottom:833.655000px;}
.y5f{bottom:870.300000px;}
.y4a{bottom:880.455000px;}
.y5e{bottom:920.700000px;}
.y49{bottom:927.255000px;}
.y5d{bottom:971.130000px;}
.y48{bottom:974.055000px;}
.y47{bottom:1020.855000px;}
.y5c{bottom:1021.530000px;}
.y46{bottom:1067.655000px;}
.y5b{bottom:1071.930000px;}
.y45{bottom:1114.455000px;}
.y5a{bottom:1122.330000px;}
.y44{bottom:1161.255000px;}
.y59{bottom:1172.730000px;}
.y43{bottom:1208.055000px;}
.y58{bottom:1223.130000px;}
.y42{bottom:1254.855000px;}
.y57{bottom:1261.080000px;}
.y41{bottom:1301.655000px;}
.y56{bottom:1307.880000px;}
.y40{bottom:1348.455000px;}
.y55{bottom:1354.680000px;}
.y30{bottom:1359.030000px;}
.y3f{bottom:1395.255000px;}
.y54{bottom:1401.480000px;}
.y3e{bottom:1442.055000px;}
.y53{bottom:1448.280000px;}
.y3d{bottom:1488.855000px;}
.y52{bottom:1495.080000px;}
.y51{bottom:1541.880000px;}
.y50{bottom:1589.580000px;}
.y1b{bottom:1595.160000px;}
.y2f{bottom:1710.105000px;}
.y68{bottom:1746.255000px;}
.y2e{bottom:1760.505000px;}
.y67{bottom:1775.055000px;}
.y2d{bottom:1810.905000px;}
.y2c{bottom:1861.305000px;}
.y2b{bottom:1911.750000px;}
.y2a{bottom:1962.150000px;}
.y29{bottom:2012.550000px;}
.y28{bottom:2062.950000px;}
.y27{bottom:2113.350000px;}
.y26{bottom:2163.750000px;}
.y25{bottom:2214.150000px;}
.y3a{bottom:2243.730000px;}
.y24{bottom:2264.550000px;}
.y39{bottom:2305.470000px;}
.y23{bottom:2314.950000px;}
.y38{bottom:2355.870000px;}
.y22{bottom:2365.350000px;}
.y37{bottom:2406.270000px;}
.y21{bottom:2415.750000px;}
.y36{bottom:2456.715000px;}
.y20{bottom:2466.150000px;}
.y35{bottom:2507.115000px;}
.y1f{bottom:2516.550000px;}
.y34{bottom:2557.515000px;}
.y1e{bottom:2566.950000px;}
.y33{bottom:2607.915000px;}
.y1d{bottom:2617.350000px;}
.y32{bottom:2658.315000px;}
.y1c{bottom:2726.355000px;}
.y3c{bottom:2778.630000px;}
.y6d{bottom:2847.450000px;}
.y3b{bottom:2893.830000px;}
.yc{bottom:3001.755000px;}
.yb{bottom:3044.955000px;}
.ya{bottom:3088.155000px;}
.y9{bottom:3131.355000px;}
.y8{bottom:3174.555000px;}
.y7{bottom:3217.755000px;}
.y11{bottom:3221.820000px;}
.y6{bottom:3260.955000px;}
.y10{bottom:3265.020000px;}
.y5{bottom:3304.155000px;}
.yf{bottom:3308.220000px;}
.y4{bottom:3347.385000px;}
.ye{bottom:3353.580000px;}
.y3{bottom:3390.585000px;}
.y2{bottom:3433.785000px;}
.y1{bottom:3476.985000px;}
.y13{bottom:3544.890000px;}
.yd{bottom:3698.310000px;}
.y15{bottom:3854.370000px;}
.y14{bottom:4027.170000px;}
.h8{height:59.378906px;}
.h7{height:62.357344px;}
.h9{height:74.953125px;}
.h11{height:78.973945px;}
.h3{height:108.000000px;}
.h1{height:118.757812px;}
.hf{height:128.852227px;}
.hb{height:138.352852px;}
.hc{height:143.031094px;}
.hd{height:158.541680px;}
.he{height:178.136719px;}
.h10{height:188.152852px;}
.h2{height:247.610039px;}
.ha{height:274.570312px;}
.h4{height:292.691953px;}
.h6{height:439.875000px;}
.h5{height:439.984969px;}
.h0{height:4252.500000px;}
.w1{width:3827.250000px;}
.w0{width:3827.340000px;}
.x0{left:0.000000px;}
.xe{left:197.925000px;}
.x16{left:223.455000px;}
.xc{left:240.480000px;}
.x1{left:266.010000px;}
.xb{left:274.500000px;}
.x9{left:282.990000px;}
.x7{left:826.485000px;}
.x17{left:932.190000px;}
.x15{left:1082.490000px;}
.x2{left:1103.550000px;}
.xf{left:1108.005000px;}
.x12{left:1116.510000px;}
.x14{left:1133.535000px;}
.x8{left:1302.990000px;}
.x5{left:1598.115000px;}
.x6{left:1765.905000px;}
.xa{left:1822.470000px;}
.x3{left:1936.725000px;}
.x4{left:1941.225000px;}
.x13{left:2018.085000px;}
.x11{left:2467.515000px;}
.x10{left:2533.935000px;}
.xd{left:2564.610000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:44.800000pt;}
.ls14{letter-spacing:-6.400000pt;}
.ls12{letter-spacing:-1.920000pt;}
.ls25{letter-spacing:-1.722667pt;}
.ls1a{letter-spacing:-1.317333pt;}
.lsc{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.152000pt;}
.ls26{letter-spacing:-1.082667pt;}
.ls1b{letter-spacing:-0.848000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.592000pt;}
.ls22{letter-spacing:-0.581333pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls29{letter-spacing:-0.481067pt;}
.ls16{letter-spacing:-0.377600pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.229867pt;}
.ls20{letter-spacing:-0.208000pt;}
.ls1e{letter-spacing:-0.166400pt;}
.ls17{letter-spacing:-0.083733pt;}
.ls2c{letter-spacing:-0.037120pt;}
.lsb{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.036480pt;}
.ls23{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.057600pt;}
.lse{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.133867pt;}
.ls2d{letter-spacing:0.181867pt;}
.ls2b{letter-spacing:0.187733pt;}
.ls2e{letter-spacing:0.251733pt;}
.ls0{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.262400pt;}
.ls2a{letter-spacing:0.309867pt;}
.ls1d{letter-spacing:0.345067pt;}
.ls10{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.432000pt;}
.ls1f{letter-spacing:0.482667pt;}
.ls5{letter-spacing:0.502400pt;}
.ls1c{letter-spacing:0.773333pt;}
.ls28{letter-spacing:0.890667pt;}
.ls19{letter-spacing:0.901333pt;}
.ls4{letter-spacing:3.418880pt;}
.lsa{letter-spacing:4.698880pt;}
.ls9{letter-spacing:7.653120pt;}
.ls6{letter-spacing:19.813120pt;}
.ls1{letter-spacing:25.178880pt;}
.ls2{letter-spacing:50.138880pt;}
.ls3{letter-spacing:159.578880pt;}
.ws10{word-spacing:-149.120000pt;}
.ws0{word-spacing:-128.000000pt;}
.wsa{word-spacing:-109.312000pt;}
.ws13{word-spacing:-34.602453pt;}
.ws24{word-spacing:-34.591787pt;}
.ws16{word-spacing:-34.474453pt;}
.ws19{word-spacing:-34.183787pt;}
.ws23{word-spacing:-34.133120pt;}
.ws17{word-spacing:-34.046187pt;}
.ws12{word-spacing:-33.963520pt;}
.ws28{word-spacing:-33.952853pt;}
.ws27{word-spacing:-33.882987pt;}
.wse{word-spacing:-33.834987pt;}
.ws11{word-spacing:-33.617387pt;}
.ws1a{word-spacing:-33.493120pt;}
.wsf{word-spacing:-33.323520pt;}
.ws25{word-spacing:-33.220053pt;}
.ws15{word-spacing:-32.853120pt;}
.ws14{word-spacing:-32.383787pt;}
.ws1f{word-spacing:-31.444480pt;}
.ws1e{word-spacing:-31.434880pt;}
.ws1c{word-spacing:-31.423360pt;}
.ws1b{word-spacing:-31.157013pt;}
.ws1d{word-spacing:-30.805547pt;}
.ws20{word-spacing:-30.794880pt;}
.ws22{word-spacing:-30.304213pt;}
.ws21{word-spacing:-29.664213pt;}
.ws5{word-spacing:-29.312000pt;}
.ws3{word-spacing:-29.056000pt;}
.ws6{word-spacing:-28.928000pt;}
.ws2{word-spacing:-28.672000pt;}
.ws9{word-spacing:-28.416000pt;}
.ws7{word-spacing:-28.288000pt;}
.ws4{word-spacing:-27.776000pt;}
.ws1{word-spacing:-27.648000pt;}
.ws8{word-spacing:-27.008000pt;}
.ws18{word-spacing:-22.397440pt;}
.ws26{word-spacing:-19.424853pt;}
.wsd{word-spacing:-14.208000pt;}
.wsb{word-spacing:-0.074880pt;}
.wsc{word-spacing:-0.064000pt;}
.ws29{word-spacing:0.000000pt;}
._30{margin-left:-17.056000pt;}
._2a{margin-left:-15.488427pt;}
._28{margin-left:-13.572907pt;}
._1c{margin-left:-12.065067pt;}
._b{margin-left:-10.346667pt;}
._c{margin-left:-9.344000pt;}
._3{margin-left:-8.192000pt;}
._11{margin-left:-7.030400pt;}
._10{margin-left:-5.767680pt;}
._f{margin-left:-4.694400pt;}
._4{margin-left:-3.072000pt;}
._0{margin-left:-1.920000pt;}
._1{margin-left:-0.896000pt;}
._6{width:1.770667pt;}
._3b{width:2.965760pt;}
._7{width:3.872000pt;}
._2{width:4.864000pt;}
._5{width:5.760000pt;}
._36{width:6.890453pt;}
._37{width:7.957760pt;}
._a{width:8.960000pt;}
._8{width:10.368000pt;}
._9{width:11.413333pt;}
._d{width:13.034667pt;}
._e{width:14.165333pt;}
._20{width:17.216000pt;}
._1f{width:18.144000pt;}
._34{width:19.514667pt;}
._1e{width:22.439893pt;}
._1d{width:24.050560pt;}
._15{width:25.136640pt;}
._14{width:26.048640pt;}
._2f{width:27.645867pt;}
._2e{width:28.796160pt;}
._29{width:30.790400pt;}
._27{width:31.809067pt;}
._32{width:32.891093pt;}
._2c{width:35.878400pt;}
._43{width:37.511040pt;}
._3d{width:40.707627pt;}
._26{width:41.645867pt;}
._25{width:42.638720pt;}
._42{width:46.123733pt;}
._41{width:47.411200pt;}
._21{width:49.898240pt;}
._31{width:51.582080pt;}
._22{width:53.187840pt;}
._3a{width:55.116160pt;}
._33{width:56.083200pt;}
._13{width:57.610667pt;}
._12{width:58.567680pt;}
._35{width:59.714560pt;}
._2d{width:60.992000pt;}
._3e{width:62.439467pt;}
._16{width:71.421440pt;}
._3c{width:73.558827pt;}
._1a{width:82.408320pt;}
._1b{width:83.361280pt;}
._39{width:86.644480pt;}
._19{width:98.439467pt;}
._18{width:99.357440pt;}
._17{width:110.046720pt;}
._38{width:112.042880pt;}
._2b{width:130.800000pt;}
._3f{width:132.042027pt;}
._23{width:158.882347pt;}
._24{width:160.299520pt;}
._40{width:742.180480pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fs9{font-size:99.840000pt;}
.fs0{font-size:128.000000pt;}
.fsc{font-size:138.880000pt;}
.fs8{font-size:149.120000pt;}
.fsa{font-size:170.880000pt;}
.fsb{font-size:192.000000pt;}
.fs1{font-size:266.880000pt;}
.fs7{font-size:320.000000pt;}
.fs2{font-size:341.120000pt;}
.fs4{font-size:512.000000pt;}
.fs3{font-size:512.128000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:47.136000pt;}
.y17{bottom:63.232000pt;}
.y19{bottom:66.336000pt;}
.y16{bottom:82.432000pt;}
.y18{bottom:85.536000pt;}
.y31{bottom:106.272000pt;}
.y6c{bottom:166.013333pt;}
.y6b{bottom:210.813333pt;}
.y6a{bottom:255.613333pt;}
.y69{bottom:300.413333pt;}
.y12{bottom:377.853333pt;}
.y66{bottom:516.480000pt;}
.y65{bottom:542.080000pt;}
.y64{bottom:549.600000pt;}
.y4f{bottom:574.586667pt;}
.y63{bottom:594.400000pt;}
.y4e{bottom:616.186667pt;}
.y62{bottom:639.200000pt;}
.y4d{bottom:657.786667pt;}
.y61{bottom:684.000000pt;}
.y4c{bottom:699.386667pt;}
.y60{bottom:728.800000pt;}
.y4b{bottom:741.026667pt;}
.y5f{bottom:773.600000pt;}
.y4a{bottom:782.626667pt;}
.y5e{bottom:818.400000pt;}
.y49{bottom:824.226667pt;}
.y5d{bottom:863.226667pt;}
.y48{bottom:865.826667pt;}
.y47{bottom:907.426667pt;}
.y5c{bottom:908.026667pt;}
.y46{bottom:949.026667pt;}
.y5b{bottom:952.826667pt;}
.y45{bottom:990.626667pt;}
.y5a{bottom:997.626667pt;}
.y44{bottom:1032.226667pt;}
.y59{bottom:1042.426667pt;}
.y43{bottom:1073.826667pt;}
.y58{bottom:1087.226667pt;}
.y42{bottom:1115.426667pt;}
.y57{bottom:1120.960000pt;}
.y41{bottom:1157.026667pt;}
.y56{bottom:1162.560000pt;}
.y40{bottom:1198.626667pt;}
.y55{bottom:1204.160000pt;}
.y30{bottom:1208.026667pt;}
.y3f{bottom:1240.226667pt;}
.y54{bottom:1245.760000pt;}
.y3e{bottom:1281.826667pt;}
.y53{bottom:1287.360000pt;}
.y3d{bottom:1323.426667pt;}
.y52{bottom:1328.960000pt;}
.y51{bottom:1370.560000pt;}
.y50{bottom:1412.960000pt;}
.y1b{bottom:1417.920000pt;}
.y2f{bottom:1520.093333pt;}
.y68{bottom:1552.226667pt;}
.y2e{bottom:1564.893333pt;}
.y67{bottom:1577.826667pt;}
.y2d{bottom:1609.693333pt;}
.y2c{bottom:1654.493333pt;}
.y2b{bottom:1699.333333pt;}
.y2a{bottom:1744.133333pt;}
.y29{bottom:1788.933333pt;}
.y28{bottom:1833.733333pt;}
.y27{bottom:1878.533333pt;}
.y26{bottom:1923.333333pt;}
.y25{bottom:1968.133333pt;}
.y3a{bottom:1994.426667pt;}
.y24{bottom:2012.933333pt;}
.y39{bottom:2049.306667pt;}
.y23{bottom:2057.733333pt;}
.y38{bottom:2094.106667pt;}
.y22{bottom:2102.533333pt;}
.y37{bottom:2138.906667pt;}
.y21{bottom:2147.333333pt;}
.y36{bottom:2183.746667pt;}
.y20{bottom:2192.133333pt;}
.y35{bottom:2228.546667pt;}
.y1f{bottom:2236.933333pt;}
.y34{bottom:2273.346667pt;}
.y1e{bottom:2281.733333pt;}
.y33{bottom:2318.146667pt;}
.y1d{bottom:2326.533333pt;}
.y32{bottom:2362.946667pt;}
.y1c{bottom:2423.426667pt;}
.y3c{bottom:2469.893333pt;}
.y6d{bottom:2531.066667pt;}
.y3b{bottom:2572.293333pt;}
.yc{bottom:2668.226667pt;}
.yb{bottom:2706.626667pt;}
.ya{bottom:2745.026667pt;}
.y9{bottom:2783.426667pt;}
.y8{bottom:2821.826667pt;}
.y7{bottom:2860.226667pt;}
.y11{bottom:2863.840000pt;}
.y6{bottom:2898.626667pt;}
.y10{bottom:2902.240000pt;}
.y5{bottom:2937.026667pt;}
.yf{bottom:2940.640000pt;}
.y4{bottom:2975.453333pt;}
.ye{bottom:2980.960000pt;}
.y3{bottom:3013.853333pt;}
.y2{bottom:3052.253333pt;}
.y1{bottom:3090.653333pt;}
.y13{bottom:3151.013333pt;}
.yd{bottom:3287.386667pt;}
.y15{bottom:3426.106667pt;}
.y14{bottom:3579.706667pt;}
.h8{height:52.781250pt;}
.h7{height:55.428750pt;}
.h9{height:66.625000pt;}
.h11{height:70.199062pt;}
.h3{height:96.000000pt;}
.h1{height:105.562500pt;}
.hf{height:114.535313pt;}
.hb{height:122.980312pt;}
.hc{height:127.138750pt;}
.hd{height:140.925938pt;}
.he{height:158.343750pt;}
.h10{height:167.246979pt;}
.h2{height:220.097813pt;}
.ha{height:244.062500pt;}
.h4{height:260.170625pt;}
.h6{height:391.000000pt;}
.h5{height:391.097750pt;}
.h0{height:3780.000000pt;}
.w1{width:3402.000000pt;}
.w0{width:3402.080000pt;}
.x0{left:0.000000pt;}
.xe{left:175.933333pt;}
.x16{left:198.626667pt;}
.xc{left:213.760000pt;}
.x1{left:236.453333pt;}
.xb{left:244.000000pt;}
.x9{left:251.546667pt;}
.x7{left:734.653333pt;}
.x17{left:828.613333pt;}
.x15{left:962.213333pt;}
.x2{left:980.933333pt;}
.xf{left:984.893333pt;}
.x12{left:992.453333pt;}
.x14{left:1007.586667pt;}
.x8{left:1158.213333pt;}
.x5{left:1420.546667pt;}
.x6{left:1569.693333pt;}
.xa{left:1619.973333pt;}
.x3{left:1721.533333pt;}
.x4{left:1725.533333pt;}
.x13{left:1793.853333pt;}
.x11{left:2193.346667pt;}
.x10{left:2252.386667pt;}
.xd{left:2279.653333pt;}
}




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