
    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_caa276dd1d9d4a2c6296d581.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094238;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_a8d818343c4524b59344c3f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.094238;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_296fb6baa8681d66e55c8cc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_5bc75c46035e60254a619fd0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148926;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_5e03b6900613bba4374d20af.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.148926;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_212241bcd6f2dc511bf082f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_f86022fb05aaf7a955928685.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_d6fb36bc4cf03f059c2549c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_6fb4a4e3d53884ddd4fcebd3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_577b6d379838aade0a2f5460.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls21{letter-spacing:-3.120000px;}
.ls22{letter-spacing:-2.892000px;}
.ls15{letter-spacing:-0.384600px;}
.lsa{letter-spacing:-0.192600px;}
.ls20{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.060600px;}
.ls25{letter-spacing:-0.042480px;}
.ls24{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.061800px;}
.lsc{letter-spacing:0.106560px;}
.lse{letter-spacing:0.106800px;}
.ls26{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.235200px;}
.ls13{letter-spacing:0.276600px;}
.ls23{letter-spacing:28.080000px;}
.ls1b{letter-spacing:31.264128px;}
.ls19{letter-spacing:31.306080px;}
.ls12{letter-spacing:31.320000px;}
.ls1a{letter-spacing:31.325040px;}
.ls5{letter-spacing:31.330080px;}
.ls18{letter-spacing:31.474080px;}
.ls1d{letter-spacing:36.870048px;}
.ls7{letter-spacing:36.882048px;}
.ls1c{letter-spacing:36.936000px;}
.ls6{letter-spacing:36.948000px;}
.ls1e{letter-spacing:36.990048px;}
.ls1f{letter-spacing:37.056000px;}
.lsf{letter-spacing:37.638048px;}
.ls10{letter-spacing:37.662048px;}
.ls2{letter-spacing:37.704000px;}
.ls11{letter-spacing:37.728000px;}
.ls17{letter-spacing:37.872000px;}
.ls16{letter-spacing:44.280000px;}
.ls8{letter-spacing:47.818080px;}
.ls4{letter-spacing:48.960000px;}
.ls0{letter-spacing:56.448000px;}
.ls3{letter-spacing:60.613920px;}
.lsd{letter-spacing:120.009600px;}
.lsb{letter-spacing:120.060000px;}
.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;}
}
.ws19{word-spacing:-94.052160px;}
.ws3{word-spacing:-54.662400px;}
.ws20{word-spacing:-43.655040px;}
.wsd{word-spacing:-37.913760px;}
.ws13{word-spacing:-37.477440px;}
.ws4{word-spacing:-37.440000px;}
.ws5{word-spacing:-34.257600px;}
.wsc{word-spacing:-33.533520px;}
.ws6{word-spacing:-31.262400px;}
.ws22{word-spacing:-28.352640px;}
.ws7{word-spacing:-28.179240px;}
.ws8{word-spacing:-28.117440px;}
.ws16{word-spacing:-28.080000px;}
.ws21{word-spacing:-24.897600px;}
.ws0{word-spacing:-21.902400px;}
.ws1b{word-spacing:-18.720000px;}
.ws1a{word-spacing:-18.576000px;}
.ws2{word-spacing:-12.204000px;}
.ws18{word-spacing:-7.914192px;}
.ws1d{word-spacing:-5.478336px;}
.ws15{word-spacing:-1.450800px;}
.ws14{word-spacing:-1.440000px;}
.ws12{word-spacing:-0.793440px;}
.wse{word-spacing:-0.756000px;}
.ws23{word-spacing:-0.648000px;}
.wsa{word-spacing:-0.288000px;}
.wsb{word-spacing:-0.120240px;}
.ws9{word-spacing:-0.097008px;}
.ws1{word-spacing:0.000000px;}
.ws1f{word-spacing:0.008928px;}
.ws1e{word-spacing:0.188928px;}
.ws10{word-spacing:0.213480px;}
.wsf{word-spacing:0.247680px;}
.ws1c{word-spacing:0.692448px;}
.ws11{word-spacing:1.106280px;}
.ws17{word-spacing:27.000000px;}
._d{margin-left:-38.478624px;}
._e{margin-left:-20.391840px;}
._a{margin-left:-12.078720px;}
._6{margin-left:-8.058528px;}
._8{margin-left:-6.105792px;}
._5{margin-left:-4.126848px;}
._0{margin-left:-3.118752px;}
._1{margin-left:-1.919232px;}
._2{width:1.179360px;}
._3{width:2.576400px;}
._4{width:3.788352px;}
._f{width:26.112000px;}
._b{width:29.785152px;}
._7{width:32.238912px;}
._c{width:43.238736px;}
._9{width:47.773920px;}
._10{width:61.831968px;}
.fc7{color:rgb(41,152,227);}
.fc5{color:rgb(78,76,79);}
.fc4{color:rgb(228,131,18);}
.fc3{color:rgb(185,41,0);}
.fc8{color:rgb(0,176,80);}
.fc6{color:rgb(26,23,27);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(192,0,0);}
.fs5{font-size:54.000000px;}
.fs18{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs14{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs15{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs3{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs8{font-size:131.760000px;}
.fs16{font-size:138.240000px;}
.fs7{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fsb{font-size:149.760000px;}
.fsd{font-size:167.760000px;}
.fs11{font-size:167.904000px;}
.fsf{font-size:192.240000px;}
.fs6{font-size:210.240000px;}
.fs10{font-size:210.384000px;}
.fs1{font-size:239.760000px;}
.fs0{font-size:239.904000px;}
.fs17{font-size:257.760000px;}
.fs12{font-size:416.160000px;}
.fs13{font-size:416.304000px;}
.y0{bottom:0.000000px;}
.y4{bottom:21.492000px;}
.ya{bottom:36.216000px;}
.y97{bottom:60.696000px;}
.y9{bottom:61.416000px;}
.y81{bottom:67.644000px;}
.y9c{bottom:68.256000px;}
.y45{bottom:70.812000px;}
.y44{bottom:74.880000px;}
.y8{bottom:86.616000px;}
.ya3{bottom:94.572000px;}
.y9b{bottom:97.056000px;}
.y54{bottom:101.160000px;}
.y42{bottom:106.308000px;}
.y7f{bottom:106.488000px;}
.y43{bottom:107.280000px;}
.y84{bottom:109.908000px;}
.y25{bottom:112.428000px;}
.y9d{bottom:112.536000px;}
.y2f{bottom:115.056000px;}
.y64{bottom:115.344000px;}
.y38{bottom:116.748000px;}
.y90{bottom:131.004000px;}
.yb0{bottom:134.964000px;}
.y53{bottom:137.160000px;}
.y24{bottom:147.384000px;}
.y63{bottom:147.564000px;}
.y6a{bottom:147.744000px;}
.y2e{bottom:151.095000px;}
.yaf{bottom:164.130000px;}
.y41{bottom:166.245000px;}
.y8f{bottom:169.170000px;}
.y96{bottom:170.460000px;}
.y52{bottom:173.160000px;}
.y23{bottom:179.970000px;}
.y2d{bottom:187.095000px;}
.y37{bottom:188.310000px;}
.y7{bottom:199.410000px;}
.y8e{bottom:207.330000px;}
.y15{bottom:208.050000px;}
.y51{bottom:209.190000px;}
.y75{bottom:222.990000px;}
.y2c{bottom:223.095000px;}
.y6{bottom:224.610000px;}
.y40{bottom:226.230000px;}
.y36{bottom:227.235000px;}
.ya1{bottom:229.530000px;}
.y62{bottom:231.150000px;}
.y22{bottom:231.990000px;}
.yae{bottom:240.450000px;}
.y7e{bottom:242.355000px;}
.y50{bottom:245.190000px;}
.y8d{bottom:245.490000px;}
.y5{bottom:252.150000px;}
.y74{bottom:255.390000px;}
.y21{bottom:257.910000px;}
.y2b{bottom:259.095000px;}
.y3f{bottom:265.110000px;}
.y14{bottom:267.990000px;}
.yad{bottom:269.610000px;}
.y61{bottom:270.030000px;}
.y8c{bottom:274.650000px;}
.y95{bottom:276.510000px;}
.y7d{bottom:280.515000px;}
.y4f{bottom:281.190000px;}
.y91{bottom:283.680000px;}
.y98{bottom:285.765000px;}
.y35{bottom:286.995000px;}
.y20{bottom:292.860000px;}
.yac{bottom:298.800000px;}
.y3e{bottom:303.990000px;}
.y73{bottom:308.880000px;}
.y69{bottom:308.910000px;}
.y7c{bottom:309.675000px;}
.y5d{bottom:311.970000px;}
.y8b{bottom:312.840000px;}
.ya0{bottom:315.975000px;}
.y4e{bottom:317.190000px;}
.y1f{bottom:325.620000px;}
.y34{bottom:325.875000px;}
.y60{bottom:329.970000px;}
.y13{bottom:330.120000px;}
.yab{bottom:336.960000px;}
.y72{bottom:341.280000px;}
.y68{bottom:347.835000px;}
.y9f{bottom:348.375000px;}
.y8a{bottom:348.660000px;}
.y5c{bottom:350.895000px;}
.y4d{bottom:353.235000px;}
.y3d{bottom:363.780000px;}
.y33{bottom:364.785000px;}
.y3{bottom:366.150000px;}
.ya7{bottom:368.820000px;}
.y5f{bottom:368.895000px;}
.y71{bottom:373.680000px;}
.y12{bottom:374.760000px;}
.yaa{bottom:375.120000px;}
.y1e{bottom:377.640000px;}
.y2a{bottom:377.745000px;}
.y94{bottom:382.575000px;}
.y7b{bottom:383.685000px;}
.y4c{bottom:389.235000px;}
.y5b{bottom:389.775000px;}
.y3c{bottom:402.660000px;}
.y67{bottom:407.775000px;}
.y1d{bottom:412.560000px;}
.ya9{bottom:413.280000px;}
.y11{bottom:419.400000px;}
.y29{bottom:422.745000px;}
.y32{bottom:424.725000px;}
.y70{bottom:427.170000px;}
.ya6{bottom:428.610000px;}
.y5a{bottom:428.655000px;}
.y7a{bottom:437.145000px;}
.y2{bottom:438.150000px;}
.y89{bottom:442.470000px;}
.y1c{bottom:445.170000px;}
.y66{bottom:446.655000px;}
.ya8{bottom:451.470000px;}
.y6f{bottom:459.570000px;}
.y4b{bottom:461.235000px;}
.y3b{bottom:462.600000px;}
.y31{bottom:463.605000px;}
.y10{bottom:464.070000px;}
.ya5{bottom:467.490000px;}
.y5e{bottom:467.535000px;}
.y28{bottom:467.790000px;}
.y79{bottom:469.365000px;}
.y88{bottom:480.630000px;}
.y59{bottom:488.625000px;}
.y93{bottom:488.805000px;}
.yb2{bottom:489.630000px;}
.y6e{bottom:491.970000px;}
.y1b{bottom:495.930000px;}
.y4a{bottom:497.265000px;}
.y3a{bottom:501.510000px;}
.yf{bottom:506.370000px;}
.y65{bottom:506.445000px;}
.y1{bottom:510.195000px;}
.y27{bottom:512.790000px;}
.y1a{bottom:516.090000px;}
.y87{bottom:518.790000px;}
.y78{bottom:523.005000px;}
.ya4{bottom:527.430000px;}
.y58{bottom:527.505000px;}
.yb1{bottom:527.790000px;}
.y49{bottom:533.265000px;}
.y6d{bottom:545.250000px;}
.y19{bottom:546.690000px;}
.y86{bottom:556.950000px;}
.y26{bottom:557.790000px;}
.ye{bottom:566.310000px;}
.y57{bottom:566.385000px;}
.y48{bottom:569.265000px;}
.y82{bottom:570.570000px;}
.y77{bottom:576.330000px;}
.y18{bottom:581.655000px;}
.y92{bottom:594.825000px;}
.y85{bottom:595.155000px;}
.y6c{bottom:598.755000px;}
.y47{bottom:605.265000px;}
.y9e{bottom:606.675000px;}
.y30{bottom:610.770000px;}
.y17{bottom:616.575000px;}
.yd{bottom:626.295000px;}
.y56{bottom:626.370000px;}
.y39{bottom:627.840000px;}
.y76{bottom:629.790000px;}
.y6b{bottom:631.155000px;}
.y46{bottom:641.265000px;}
.y16{bottom:649.155000px;}
.y80{bottom:710.790000px;}
.y9a{bottom:719.280000px;}
.yb{bottom:723.420000px;}
.y83{bottom:732.990000px;}
.y55{bottom:734.610000px;}
.yc{bottom:735.810000px;}
.ya2{bottom:738.900000px;}
.y99{bottom:762.120000px;}
.h6{height:53.709961px;}
.h20{height:54.186680px;}
.h3{height:63.019687px;}
.h1a{height:65.285156px;}
.h5{height:76.383633px;}
.h1c{height:86.829258px;}
.ha{height:97.927734px;}
.hb{height:98.058305px;}
.h4{height:102.685430px;}
.h1e{height:107.419922px;}
.h12{height:109.026211px;}
.h13{height:109.156781px;}
.h9{height:119.471836px;}
.h15{height:123.099539px;}
.h1d{height:125.347500px;}
.he{height:125.406562px;}
.hf{height:125.556750px;}
.h8{height:130.570312px;}
.h11{height:130.700883px;}
.hc{height:134.330625px;}
.h1b{height:152.114414px;}
.h17{height:152.244984px;}
.hd{height:156.195000px;}
.h10{height:166.858945px;}
.h14{height:174.311367px;}
.h7{height:190.632656px;}
.h16{height:190.763227px;}
.h2{height:204.755977px;}
.h1{height:204.878953px;}
.h1f{height:233.720859px;}
.h18{height:413.924766px;}
.h19{height:414.067992px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x24{left:10.799979px;}
.x8{left:29.591979px;}
.x2d{left:41.507979px;}
.x11{left:99.323979px;}
.x1e{left:107.279979px;}
.x2f{left:119.663979px;}
.xd{left:124.271979px;}
.xb{left:129.635979px;}
.x13{left:134.171979px;}
.x14{left:136.835979px;}
.xa{left:140.435979px;}
.xe{left:148.031979px;}
.xc{left:153.389979px;}
.x23{left:164.729979px;}
.xf{left:169.634979px;}
.x26{left:174.989979px;}
.x10{left:191.234979px;}
.x31{left:378.689979px;}
.x2{left:393.869979px;}
.x2e{left:433.544979px;}
.x6{left:470.054979px;}
.x1{left:510.014979px;}
.x3{left:518.474979px;}
.x7{left:529.094979px;}
.x12{left:596.729979px;}
.x28{left:673.454979px;}
.x2a{left:686.444979px;}
.x2b{left:696.164979px;}
.x29{left:700.484979px;}
.x32{left:720.104979px;}
.x5{left:737.924979px;}
.x1c{left:744.629979px;}
.x33{left:765.464979px;}
.x1d{left:779.729979px;}
.x17{left:791.279979px;}
.x1f{left:801.074979px;}
.x18{left:802.079979px;}
.x27{left:804.029979px;}
.x20{left:811.874979px;}
.x21{left:824.834979px;}
.x22{left:846.434979px;}
.x16{left:952.049979px;}
.x15{left:970.409979px;}
.x19{left:975.629979px;}
.x1a{left:1082.129979px;}
.x25{left:1085.249979px;}
.x30{left:1190.669979px;}
.x9{left:1221.329979px;}
.x2c{left:1369.439979px;}
.x1b{left:1413.149979px;}
.x4{left:1421.309979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-2.773333pt;}
.ls22{letter-spacing:-2.570667pt;}
.ls15{letter-spacing:-0.341867pt;}
.lsa{letter-spacing:-0.171200pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.053867pt;}
.ls25{letter-spacing:-0.037760pt;}
.ls24{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.054933pt;}
.lsc{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.094933pt;}
.ls26{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.209067pt;}
.ls13{letter-spacing:0.245867pt;}
.ls23{letter-spacing:24.960000pt;}
.ls1b{letter-spacing:27.790336pt;}
.ls19{letter-spacing:27.827627pt;}
.ls12{letter-spacing:27.840000pt;}
.ls1a{letter-spacing:27.844480pt;}
.ls5{letter-spacing:27.848960pt;}
.ls18{letter-spacing:27.976960pt;}
.ls1d{letter-spacing:32.773376pt;}
.ls7{letter-spacing:32.784043pt;}
.ls1c{letter-spacing:32.832000pt;}
.ls6{letter-spacing:32.842667pt;}
.ls1e{letter-spacing:32.880043pt;}
.ls1f{letter-spacing:32.938667pt;}
.lsf{letter-spacing:33.456043pt;}
.ls10{letter-spacing:33.477376pt;}
.ls2{letter-spacing:33.514667pt;}
.ls11{letter-spacing:33.536000pt;}
.ls17{letter-spacing:33.664000pt;}
.ls16{letter-spacing:39.360000pt;}
.ls8{letter-spacing:42.504960pt;}
.ls4{letter-spacing:43.520000pt;}
.ls0{letter-spacing:50.176000pt;}
.ls3{letter-spacing:53.879040pt;}
.lsd{letter-spacing:106.675200pt;}
.lsb{letter-spacing:106.720000pt;}
.ws19{word-spacing:-83.601920pt;}
.ws3{word-spacing:-48.588800pt;}
.ws20{word-spacing:-38.804480pt;}
.wsd{word-spacing:-33.701120pt;}
.ws13{word-spacing:-33.313280pt;}
.ws4{word-spacing:-33.280000pt;}
.ws5{word-spacing:-30.451200pt;}
.wsc{word-spacing:-29.807573pt;}
.ws6{word-spacing:-27.788800pt;}
.ws22{word-spacing:-25.202347pt;}
.ws7{word-spacing:-25.048213pt;}
.ws8{word-spacing:-24.993280pt;}
.ws16{word-spacing:-24.960000pt;}
.ws21{word-spacing:-22.131200pt;}
.ws0{word-spacing:-19.468800pt;}
.ws1b{word-spacing:-16.640000pt;}
.ws1a{word-spacing:-16.512000pt;}
.ws2{word-spacing:-10.848000pt;}
.ws18{word-spacing:-7.034837pt;}
.ws1d{word-spacing:-4.869632pt;}
.ws15{word-spacing:-1.289600pt;}
.ws14{word-spacing:-1.280000pt;}
.ws12{word-spacing:-0.705280pt;}
.wse{word-spacing:-0.672000pt;}
.ws23{word-spacing:-0.576000pt;}
.wsa{word-spacing:-0.256000pt;}
.wsb{word-spacing:-0.106880pt;}
.ws9{word-spacing:-0.086229pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.007936pt;}
.ws1e{word-spacing:0.167936pt;}
.ws10{word-spacing:0.189760pt;}
.wsf{word-spacing:0.220160pt;}
.ws1c{word-spacing:0.615509pt;}
.ws11{word-spacing:0.983360pt;}
.ws17{word-spacing:24.000000pt;}
._d{margin-left:-34.203221pt;}
._e{margin-left:-18.126080pt;}
._a{margin-left:-10.736640pt;}
._6{margin-left:-7.163136pt;}
._8{margin-left:-5.427371pt;}
._5{margin-left:-3.668309pt;}
._0{margin-left:-2.772224pt;}
._1{margin-left:-1.705984pt;}
._2{width:1.048320pt;}
._3{width:2.290133pt;}
._4{width:3.367424pt;}
._f{width:23.210667pt;}
._b{width:26.475691pt;}
._7{width:28.656811pt;}
._c{width:38.434432pt;}
._9{width:42.465707pt;}
._10{width:54.961749pt;}
.fs5{font-size:48.000000pt;}
.fs18{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs14{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs15{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs3{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs8{font-size:117.120000pt;}
.fs16{font-size:122.880000pt;}
.fs7{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fsb{font-size:133.120000pt;}
.fsd{font-size:149.120000pt;}
.fs11{font-size:149.248000pt;}
.fsf{font-size:170.880000pt;}
.fs6{font-size:186.880000pt;}
.fs10{font-size:187.008000pt;}
.fs1{font-size:213.120000pt;}
.fs0{font-size:213.248000pt;}
.fs17{font-size:229.120000pt;}
.fs12{font-size:369.920000pt;}
.fs13{font-size:370.048000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:19.104000pt;}
.ya{bottom:32.192000pt;}
.y97{bottom:53.952000pt;}
.y9{bottom:54.592000pt;}
.y81{bottom:60.128000pt;}
.y9c{bottom:60.672000pt;}
.y45{bottom:62.944000pt;}
.y44{bottom:66.560000pt;}
.y8{bottom:76.992000pt;}
.ya3{bottom:84.064000pt;}
.y9b{bottom:86.272000pt;}
.y54{bottom:89.920000pt;}
.y42{bottom:94.496000pt;}
.y7f{bottom:94.656000pt;}
.y43{bottom:95.360000pt;}
.y84{bottom:97.696000pt;}
.y25{bottom:99.936000pt;}
.y9d{bottom:100.032000pt;}
.y2f{bottom:102.272000pt;}
.y64{bottom:102.528000pt;}
.y38{bottom:103.776000pt;}
.y90{bottom:116.448000pt;}
.yb0{bottom:119.968000pt;}
.y53{bottom:121.920000pt;}
.y24{bottom:131.008000pt;}
.y63{bottom:131.168000pt;}
.y6a{bottom:131.328000pt;}
.y2e{bottom:134.306667pt;}
.yaf{bottom:145.893333pt;}
.y41{bottom:147.773333pt;}
.y8f{bottom:150.373333pt;}
.y96{bottom:151.520000pt;}
.y52{bottom:153.920000pt;}
.y23{bottom:159.973333pt;}
.y2d{bottom:166.306667pt;}
.y37{bottom:167.386667pt;}
.y7{bottom:177.253333pt;}
.y8e{bottom:184.293333pt;}
.y15{bottom:184.933333pt;}
.y51{bottom:185.946667pt;}
.y75{bottom:198.213333pt;}
.y2c{bottom:198.306667pt;}
.y6{bottom:199.653333pt;}
.y40{bottom:201.093333pt;}
.y36{bottom:201.986667pt;}
.ya1{bottom:204.026667pt;}
.y62{bottom:205.466667pt;}
.y22{bottom:206.213333pt;}
.yae{bottom:213.733333pt;}
.y7e{bottom:215.426667pt;}
.y50{bottom:217.946667pt;}
.y8d{bottom:218.213333pt;}
.y5{bottom:224.133333pt;}
.y74{bottom:227.013333pt;}
.y21{bottom:229.253333pt;}
.y2b{bottom:230.306667pt;}
.y3f{bottom:235.653333pt;}
.y14{bottom:238.213333pt;}
.yad{bottom:239.653333pt;}
.y61{bottom:240.026667pt;}
.y8c{bottom:244.133333pt;}
.y95{bottom:245.786667pt;}
.y7d{bottom:249.346667pt;}
.y4f{bottom:249.946667pt;}
.y91{bottom:252.160000pt;}
.y98{bottom:254.013333pt;}
.y35{bottom:255.106667pt;}
.y20{bottom:260.320000pt;}
.yac{bottom:265.600000pt;}
.y3e{bottom:270.213333pt;}
.y73{bottom:274.560000pt;}
.y69{bottom:274.586667pt;}
.y7c{bottom:275.266667pt;}
.y5d{bottom:277.306667pt;}
.y8b{bottom:278.080000pt;}
.ya0{bottom:280.866667pt;}
.y4e{bottom:281.946667pt;}
.y1f{bottom:289.440000pt;}
.y34{bottom:289.666667pt;}
.y60{bottom:293.306667pt;}
.y13{bottom:293.440000pt;}
.yab{bottom:299.520000pt;}
.y72{bottom:303.360000pt;}
.y68{bottom:309.186667pt;}
.y9f{bottom:309.666667pt;}
.y8a{bottom:309.920000pt;}
.y5c{bottom:311.906667pt;}
.y4d{bottom:313.986667pt;}
.y3d{bottom:323.360000pt;}
.y33{bottom:324.253333pt;}
.y3{bottom:325.466667pt;}
.ya7{bottom:327.840000pt;}
.y5f{bottom:327.906667pt;}
.y71{bottom:332.160000pt;}
.y12{bottom:333.120000pt;}
.yaa{bottom:333.440000pt;}
.y1e{bottom:335.680000pt;}
.y2a{bottom:335.773333pt;}
.y94{bottom:340.066667pt;}
.y7b{bottom:341.053333pt;}
.y4c{bottom:345.986667pt;}
.y5b{bottom:346.466667pt;}
.y3c{bottom:357.920000pt;}
.y67{bottom:362.466667pt;}
.y1d{bottom:366.720000pt;}
.ya9{bottom:367.360000pt;}
.y11{bottom:372.800000pt;}
.y29{bottom:375.773333pt;}
.y32{bottom:377.533333pt;}
.y70{bottom:379.706667pt;}
.ya6{bottom:380.986667pt;}
.y5a{bottom:381.026667pt;}
.y7a{bottom:388.573333pt;}
.y2{bottom:389.466667pt;}
.y89{bottom:393.306667pt;}
.y1c{bottom:395.706667pt;}
.y66{bottom:397.026667pt;}
.ya8{bottom:401.306667pt;}
.y6f{bottom:408.506667pt;}
.y4b{bottom:409.986667pt;}
.y3b{bottom:411.200000pt;}
.y31{bottom:412.093333pt;}
.y10{bottom:412.506667pt;}
.ya5{bottom:415.546667pt;}
.y5e{bottom:415.586667pt;}
.y28{bottom:415.813333pt;}
.y79{bottom:417.213333pt;}
.y88{bottom:427.226667pt;}
.y59{bottom:434.333333pt;}
.y93{bottom:434.493333pt;}
.yb2{bottom:435.226667pt;}
.y6e{bottom:437.306667pt;}
.y1b{bottom:440.826667pt;}
.y4a{bottom:442.013333pt;}
.y3a{bottom:445.786667pt;}
.yf{bottom:450.106667pt;}
.y65{bottom:450.173333pt;}
.y1{bottom:453.506667pt;}
.y27{bottom:455.813333pt;}
.y1a{bottom:458.746667pt;}
.y87{bottom:461.146667pt;}
.y78{bottom:464.893333pt;}
.ya4{bottom:468.826667pt;}
.y58{bottom:468.893333pt;}
.yb1{bottom:469.146667pt;}
.y49{bottom:474.013333pt;}
.y6d{bottom:484.666667pt;}
.y19{bottom:485.946667pt;}
.y86{bottom:495.066667pt;}
.y26{bottom:495.813333pt;}
.ye{bottom:503.386667pt;}
.y57{bottom:503.453333pt;}
.y48{bottom:506.013333pt;}
.y82{bottom:507.173333pt;}
.y77{bottom:512.293333pt;}
.y18{bottom:517.026667pt;}
.y92{bottom:528.733333pt;}
.y85{bottom:529.026667pt;}
.y6c{bottom:532.226667pt;}
.y47{bottom:538.013333pt;}
.y9e{bottom:539.266667pt;}
.y30{bottom:542.906667pt;}
.y17{bottom:548.066667pt;}
.yd{bottom:556.706667pt;}
.y56{bottom:556.773333pt;}
.y39{bottom:558.080000pt;}
.y76{bottom:559.813333pt;}
.y6b{bottom:561.026667pt;}
.y46{bottom:570.013333pt;}
.y16{bottom:577.026667pt;}
.y80{bottom:631.813333pt;}
.y9a{bottom:639.360000pt;}
.yb{bottom:643.040000pt;}
.y83{bottom:651.546667pt;}
.y55{bottom:652.986667pt;}
.yc{bottom:654.053333pt;}
.ya2{bottom:656.800000pt;}
.y99{bottom:677.440000pt;}
.h6{height:47.742188pt;}
.h20{height:48.165937pt;}
.h3{height:56.017500pt;}
.h1a{height:58.031250pt;}
.h5{height:67.896562pt;}
.h1c{height:77.181562pt;}
.ha{height:87.046875pt;}
.hb{height:87.162937pt;}
.h4{height:91.275937pt;}
.h1e{height:95.484375pt;}
.h12{height:96.912187pt;}
.h13{height:97.028250pt;}
.h9{height:106.197187pt;}
.h15{height:109.421812pt;}
.h1d{height:111.420000pt;}
.he{height:111.472500pt;}
.hf{height:111.606000pt;}
.h8{height:116.062500pt;}
.h11{height:116.178562pt;}
.hc{height:119.405000pt;}
.h1b{height:135.212812pt;}
.h17{height:135.328875pt;}
.hd{height:138.840000pt;}
.h10{height:148.319063pt;}
.h14{height:154.943437pt;}
.h7{height:169.451250pt;}
.h16{height:169.567313pt;}
.h2{height:182.005312pt;}
.h1{height:182.114625pt;}
.h1f{height:207.751875pt;}
.h18{height:367.933125pt;}
.h19{height:368.060437pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x24{left:9.599981pt;}
.x8{left:26.303981pt;}
.x2d{left:36.895981pt;}
.x11{left:88.287981pt;}
.x1e{left:95.359981pt;}
.x2f{left:106.367981pt;}
.xd{left:110.463981pt;}
.xb{left:115.231981pt;}
.x13{left:119.263981pt;}
.x14{left:121.631981pt;}
.xa{left:124.831981pt;}
.xe{left:131.583981pt;}
.xc{left:136.346648pt;}
.x23{left:146.426648pt;}
.xf{left:150.786648pt;}
.x26{left:155.546648pt;}
.x10{left:169.986648pt;}
.x31{left:336.613314pt;}
.x2{left:350.106648pt;}
.x2e{left:385.373314pt;}
.x6{left:417.826648pt;}
.x1{left:453.346648pt;}
.x3{left:460.866648pt;}
.x7{left:470.306648pt;}
.x12{left:530.426648pt;}
.x28{left:598.626648pt;}
.x2a{left:610.173314pt;}
.x2b{left:618.813314pt;}
.x29{left:622.653314pt;}
.x32{left:640.093314pt;}
.x5{left:655.933314pt;}
.x1c{left:661.893314pt;}
.x33{left:680.413314pt;}
.x1d{left:693.093314pt;}
.x17{left:703.359981pt;}
.x1f{left:712.066648pt;}
.x18{left:712.959981pt;}
.x27{left:714.693314pt;}
.x20{left:721.666648pt;}
.x21{left:733.186648pt;}
.x22{left:752.386648pt;}
.x16{left:846.266648pt;}
.x15{left:862.586648pt;}
.x19{left:867.226648pt;}
.x1a{left:961.893314pt;}
.x25{left:964.666648pt;}
.x30{left:1058.373314pt;}
.x9{left:1085.626648pt;}
.x2c{left:1217.279981pt;}
.x1b{left:1256.133314pt;}
.x4{left:1263.386648pt;}
}




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