
    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_a8a92eb0bd03b5f650d766a7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4cdc63ec9747fd2c3ddf1622.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_10a8428a0668b5f32da9c26a.woff')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_35d2ed572bad7295ff858778.woff')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_cf9a6a10cc162c1c89c1a1b3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21ca1036724802bcdf26d5da.woff')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_85b0b73a9da1c8afd9319367.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_269f147dc1768d21704ce311.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1a99a7fe7c3720f9ac857e51.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.800000px;}
.v3{vertical-align:30.240000px;}
.ls5{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.690000px;}
.ls6{letter-spacing:-0.378600px;}
.ls3{letter-spacing:-0.369600px;}
.ls12{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.341400px;}
.ls4{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.100800px;}
.lsc{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.037440px;}
.ls7{letter-spacing:0.120000px;}
.lse{letter-spacing:0.148080px;}
.ls19{letter-spacing:0.172080px;}
.ls11{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.378720px;}
.ls16{letter-spacing:1.260000px;}
.ls8{letter-spacing:2.106720px;}
.ls1a{letter-spacing:2.700000px;}
.ls10{letter-spacing:4.140000px;}
.lsf{letter-spacing:8.460000px;}
.ls15{letter-spacing:13.500000px;}
.ls18{letter-spacing:17.100000px;}
.ls9{letter-spacing:19.440000px;}
.ls17{letter-spacing:20.160000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws1{word-spacing:-27.000000px;}
.ws3{word-spacing:-21.420000px;}
.wsd{word-spacing:-21.401400px;}
.wsf{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.wsa{word-spacing:-21.031920px;}
.ws9{word-spacing:-20.959200px;}
.wsc{word-spacing:-20.718600px;}
.wsb{word-spacing:-20.700000px;}
.ws4{word-spacing:-20.690400px;}
.ws5{word-spacing:-20.681400px;}
.wse{word-spacing:-20.370000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-5.670720px;}
._f{margin-left:-4.380480px;}
._10{margin-left:-2.751120px;}
._1{margin-left:-1.460880px;}
._0{width:1.212000px;}
._16{width:2.729760px;}
._15{width:3.819600px;}
._1b{width:5.514240px;}
._17{width:6.570720px;}
._18{width:7.976160px;}
._c{width:9.591600px;}
._8{width:10.866960px;}
._14{width:11.877840px;}
._e{width:13.394160px;}
._d{width:14.405040px;}
._22{width:15.668640px;}
._20{width:16.953360px;}
._11{width:18.954000px;}
._25{width:20.025600px;}
._a{width:23.473200px;}
._b{width:24.498480px;}
._31{width:25.717200px;}
._2{width:27.478560px;}
._3{width:28.569840px;}
._7{width:32.040000px;}
._1c{width:33.960720px;}
._12{width:35.453520px;}
._4{width:36.841680px;}
._13{width:38.613360px;}
._30{width:40.211040px;}
._9{width:41.471760px;}
._19{width:42.654240px;}
._1a{width:43.665120px;}
._2a{width:45.304320px;}
._27{width:46.568880px;}
._26{width:47.584800px;}
._21{width:49.870080px;}
._5{width:57.915360px;}
._6{width:59.178720px;}
._2b{width:61.663680px;}
._2c{width:62.956080px;}
._2e{width:64.612080px;}
._2f{width:66.348960px;}
._29{width:67.476240px;}
._24{width:94.096080px;}
._32{width:96.114000px;}
._23{width:126.865440px;}
._2d{width:134.362800px;}
._1e{width:253.309680px;}
._1f{width:254.433600px;}
._28{width:264.176640px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.800000px;}
.y2{bottom:4.320000px;}
.y32{bottom:4.500000px;}
.y8d{bottom:4.545000px;}
.y4a{bottom:4.680000px;}
.y9{bottom:5.760000px;}
.y3{bottom:5.940000px;}
.y8{bottom:9.000000px;}
.ya{bottom:9.540000px;}
.y63{bottom:10.080000px;}
.y67{bottom:10.440000px;}
.y71{bottom:12.960000px;}
.y73{bottom:13.500000px;}
.ya0{bottom:13.860000px;}
.y9d{bottom:14.040000px;}
.y38{bottom:14.574000px;}
.y62{bottom:15.480000px;}
.y6b{bottom:15.660000px;}
.y69{bottom:15.690000px;}
.y66{bottom:16.380000px;}
.y98{bottom:16.560000px;}
.y9c{bottom:16.740000px;}
.y46{bottom:22.320000px;}
.y7c{bottom:28.620000px;}
.y7{bottom:37.800000px;}
.y37{bottom:38.694000px;}
.y61{bottom:42.120000px;}
.y41{bottom:46.440000px;}
.y44{bottom:49.680000px;}
.y88{bottom:52.740000px;}
.y7b{bottom:52.920000px;}
.y34{bottom:62.814000px;}
.y48{bottom:63.360000px;}
.y60{bottom:66.240000px;}
.y40{bottom:70.560000px;}
.y43{bottom:73.800000px;}
.y36{bottom:86.934000px;}
.y5f{bottom:90.360000px;}
.y3a{bottom:92.916000px;}
.y3f{bottom:94.680000px;}
.y42{bottom:97.920000px;}
.y5b{bottom:98.316000px;}
.ya8{bottom:100.116000px;}
.y86{bottom:106.956000px;}
.y35{bottom:111.234000px;}
.y5e{bottom:114.480000px;}
.y27{bottom:115.236000px;}
.y3e{bottom:119.025000px;}
.y85{bottom:127.296000px;}
.y39{bottom:129.096000px;}
.y5a{bottom:134.496000px;}
.ya7{bottom:136.476000px;}
.y5d{bottom:138.825000px;}
.y79{bottom:140.436000px;}
.y3d{bottom:143.145000px;}
.y33{bottom:149.436000px;}
.y26{bottom:151.410000px;}
.y84{bottom:152.130000px;}
.y59{bottom:170.670000px;}
.ya6{bottom:172.650000px;}
.y78{bottom:176.610000px;}
.y83{bottom:177.150000px;}
.y3b{bottom:187.590000px;}
.y25{bottom:187.770000px;}
.y82{bottom:201.990000px;}
.y58{bottom:207.030000px;}
.ya5{bottom:208.830000px;}
.y77{bottom:212.790000px;}
.y24{bottom:223.950000px;}
.y81{bottom:226.830000px;}
.y57{bottom:243.210000px;}
.ya4{bottom:245.010000px;}
.y76{bottom:249.150000px;}
.y80{bottom:251.850000px;}
.y23{bottom:260.130000px;}
.y7f{bottom:276.690000px;}
.y56{bottom:279.390000px;}
.ya3{bottom:281.370000px;}
.y75{bottom:285.330000px;}
.y31{bottom:291.090000px;}
.y22{bottom:296.310000px;}
.y7e{bottom:301.530000px;}
.ya2{bottom:301.710000px;}
.y74{bottom:305.670000px;}
.y55{bottom:315.570000px;}
.y7d{bottom:326.550000px;}
.y30{bottom:332.490000px;}
.y21{bottom:332.670000px;}
.ya1{bottom:338.655000px;}
.y72{bottom:341.715000px;}
.y7a{bottom:351.435000px;}
.y54{bottom:351.975000px;}
.y2f{bottom:368.715000px;}
.y20{bottom:368.895000px;}
.y70{bottom:375.555000px;}
.y9f{bottom:375.735000px;}
.y53{bottom:388.155000px;}
.y1f{bottom:405.075000px;}
.y6f{bottom:411.555000px;}
.y9e{bottom:412.635000px;}
.y52{bottom:424.335000px;}
.y1e{bottom:441.255000px;}
.y6e{bottom:447.555000px;}
.y9b{bottom:449.535000px;}
.y51{bottom:460.515000px;}
.y2e{bottom:477.435000px;}
.y1d{bottom:477.615000px;}
.y6d{bottom:483.555000px;}
.y9a{bottom:486.615000px;}
.y50{bottom:496.875000px;}
.y2d{bottom:513.615000px;}
.y1c{bottom:513.795000px;}
.y6c{bottom:519.555000px;}
.y99{bottom:523.515000px;}
.y4f{bottom:533.055000px;}
.y1b{bottom:549.975000px;}
.y6a{bottom:555.555000px;}
.y97{bottom:560.595000px;}
.y4e{bottom:569.235000px;}
.y1a{bottom:586.155000px;}
.y68{bottom:591.555000px;}
.y4d{bottom:605.445000px;}
.y96{bottom:614.085000px;}
.y19{bottom:622.365000px;}
.y47{bottom:625.785000px;}
.y65{bottom:627.585000px;}
.y95{bottom:650.265000px;}
.y4c{bottom:650.805000px;}
.y2c{bottom:658.545000px;}
.y18{bottom:658.725000px;}
.y64{bottom:664.485000px;}
.y4b{bottom:675.645000px;}
.y94{bottom:686.625000px;}
.y17{bottom:694.905000px;}
.y49{bottom:700.485000px;}
.y93{bottom:722.805000px;}
.y45{bottom:725.505000px;}
.y16{bottom:731.085000px;}
.y5c{bottom:736.485000px;}
.y92{bottom:743.145000px;}
.y15{bottom:767.265000px;}
.y91{bottom:767.985000px;}
.y3c{bottom:768.345000px;}
.y90{bottom:793.005000px;}
.y2b{bottom:803.445000px;}
.y14{bottom:803.625000px;}
.y8f{bottom:817.845000px;}
.y2a{bottom:839.625000px;}
.y13{bottom:839.805000px;}
.y8e{bottom:842.685000px;}
.y8c{bottom:867.705000px;}
.y12{bottom:876.030000px;}
.y8b{bottom:892.590000px;}
.y11{bottom:912.210000px;}
.y8a{bottom:917.430000px;}
.y89{bottom:942.450000px;}
.y29{bottom:948.390000px;}
.y10{bottom:948.570000px;}
.y87{bottom:967.290000px;}
.y28{bottom:984.570000px;}
.yf{bottom:984.750000px;}
.ye{bottom:1020.930000px;}
.yd{bottom:1057.110000px;}
.yc{bottom:1093.290000px;}
.yb{bottom:1129.470000px;}
.y6{bottom:1153.800000px;}
.y4{bottom:1173.420000px;}
.y1{bottom:1198.620000px;}
.h5{height:14.400000px;}
.h2{height:21.420000px;}
.he{height:24.120000px;}
.h1d{height:24.156000px;}
.h15{height:24.300000px;}
.h7{height:30.960000px;}
.h1b{height:33.120000px;}
.h17{height:35.100000px;}
.h1a{height:35.280000px;}
.h19{height:35.316000px;}
.h18{height:36.000000px;}
.h1f{height:36.180000px;}
.h21{height:36.216000px;}
.h20{height:36.360000px;}
.h13{height:41.940000px;}
.h4{height:52.998047px;}
.h22{height:59.436914px;}
.hd{height:63.591328px;}
.hc{height:64.208320px;}
.h8{height:70.664062px;}
.h1e{height:72.360000px;}
.h1c{height:72.540000px;}
.h3{height:72.562500px;}
.hb{height:82.635820px;}
.h6{height:82.676953px;}
.h10{height:83.238047px;}
.ha{height:84.898125px;}
.h23{height:86.585445px;}
.hf{height:93.476953px;}
.h9{height:108.843750px;}
.h11{height:140.760000px;}
.h14{height:141.660000px;}
.h16{height:158.430000px;}
.h12{height:162.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:39.636000px;}
.w11{width:41.436000px;}
.w3{width:44.100000px;}
.w7{width:47.700000px;}
.wb{width:48.276000px;}
.wa{width:52.380000px;}
.wc{width:55.800000px;}
.wd{width:55.980000px;}
.w6{width:63.036000px;}
.w1f{width:63.216000px;}
.w10{width:66.060000px;}
.we{width:67.896000px;}
.w17{width:73.080000px;}
.wf{width:74.160000px;}
.w8{width:76.320000px;}
.w9{width:76.356000px;}
.w15{width:84.240000px;}
.w16{width:84.276000px;}
.w12{width:116.280000px;}
.w13{width:126.756000px;}
.w1e{width:148.176000px;}
.w1c{width:148.716000px;}
.w19{width:160.410000px;}
.w14{width:169.230000px;}
.w1a{width:169.560000px;}
.w1b{width:180.030000px;}
.w22{width:200.730000px;}
.w20{width:201.270000px;}
.w25{width:203.610000px;}
.w26{width:218.730000px;}
.w21{width:243.930000px;}
.w24{width:297.615000px;}
.w27{width:423.075000px;}
.w23{width:509.865000px;}
.w1d{width:511.455000px;}
.w5{width:728.430000px;}
.w2{width:840.240000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.320000px;}
.x18{left:7.560000px;}
.x5{left:8.640000px;}
.x8{left:14.040000px;}
.xa{left:18.000000px;}
.x1d{left:26.820000px;}
.x22{left:31.680000px;}
.x21{left:33.840000px;}
.x4{left:35.640000px;}
.x23{left:40.680000px;}
.x7{left:54.720000px;}
.x2{left:72.540000px;}
.x2e{left:74.700000px;}
.x6{left:84.959987px;}
.x15{left:93.996000px;}
.xc{left:99.395987px;}
.x35{left:106.235987px;}
.x33{left:118.115987px;}
.x28{left:126.216000px;}
.xb{left:127.475987px;}
.x2f{left:138.636000px;}
.x16{left:142.416000px;}
.x2c{left:160.959000px;}
.xd{left:189.929987px;}
.x17{left:219.630000px;}
.x2d{left:228.639000px;}
.x24{left:245.010000px;}
.x11{left:263.009987px;}
.x29{left:287.355000px;}
.x12{left:295.454987px;}
.x19{left:296.715000px;}
.xe{left:332.894987px;}
.x30{left:340.635000px;}
.x10{left:345.494987px;}
.x34{left:372.314987px;}
.x13{left:373.574987px;}
.x32{left:384.195000px;}
.x14{left:392.654987px;}
.x1a{left:427.035000px;}
.xf{left:446.474987px;}
.x2a{left:457.635000px;}
.x1b{left:476.205000px;}
.x1c{left:532.725000px;}
.x25{left:542.805000px;}
.x31{left:585.285000px;}
.x1e{left:589.425000px;}
.x26{left:627.765000px;}
.x2b{left:638.385000px;}
.x1f{left:658.050000px;}
.x27{left:712.950000px;}
.x20{left:732.930000px;}
.x9{left:783.150000px;}
.x3{left:844.560000px;}
@media print{
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.600000pt;}
.v3{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.613333pt;}
.ls6{letter-spacing:-0.336533pt;}
.ls3{letter-spacing:-0.328533pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.303467pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.089600pt;}
.lsc{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.033280pt;}
.ls7{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.131627pt;}
.ls19{letter-spacing:0.152960pt;}
.ls11{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.336640pt;}
.ls16{letter-spacing:1.120000pt;}
.ls8{letter-spacing:1.872640pt;}
.ls1a{letter-spacing:2.400000pt;}
.ls10{letter-spacing:3.680000pt;}
.lsf{letter-spacing:7.520000pt;}
.ls15{letter-spacing:12.000000pt;}
.ls18{letter-spacing:15.200000pt;}
.ls9{letter-spacing:17.280000pt;}
.ls17{letter-spacing:17.920000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws3{word-spacing:-19.040000pt;}
.wsd{word-spacing:-19.023467pt;}
.wsf{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.695040pt;}
.ws9{word-spacing:-18.630400pt;}
.wsc{word-spacing:-18.416533pt;}
.wsb{word-spacing:-18.400000pt;}
.ws4{word-spacing:-18.391467pt;}
.ws5{word-spacing:-18.383467pt;}
.wse{word-spacing:-18.106667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-5.040640pt;}
._f{margin-left:-3.893760pt;}
._10{margin-left:-2.445440pt;}
._1{margin-left:-1.298560pt;}
._0{width:1.077333pt;}
._16{width:2.426453pt;}
._15{width:3.395200pt;}
._1b{width:4.901547pt;}
._17{width:5.840640pt;}
._18{width:7.089920pt;}
._c{width:8.525867pt;}
._8{width:9.659520pt;}
._14{width:10.558080pt;}
._e{width:11.905920pt;}
._d{width:12.804480pt;}
._22{width:13.927680pt;}
._20{width:15.069653pt;}
._11{width:16.848000pt;}
._25{width:17.800533pt;}
._a{width:20.865067pt;}
._b{width:21.776427pt;}
._31{width:22.859733pt;}
._2{width:24.425387pt;}
._3{width:25.395413pt;}
._7{width:28.480000pt;}
._1c{width:30.187307pt;}
._12{width:31.514240pt;}
._4{width:32.748160pt;}
._13{width:34.322987pt;}
._30{width:35.743147pt;}
._9{width:36.863787pt;}
._19{width:37.914880pt;}
._1a{width:38.813440pt;}
._2a{width:40.270507pt;}
._27{width:41.394560pt;}
._26{width:42.297600pt;}
._21{width:44.328960pt;}
._5{width:51.480320pt;}
._6{width:52.603307pt;}
._2b{width:54.812160pt;}
._2c{width:55.960960pt;}
._2e{width:57.432960pt;}
._2f{width:58.976853pt;}
._29{width:59.978880pt;}
._24{width:83.640960pt;}
._32{width:85.434667pt;}
._23{width:112.769280pt;}
._2d{width:119.433600pt;}
._1e{width:225.164160pt;}
._1f{width:226.163200pt;}
._28{width:234.823680pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.600000pt;}
.y2{bottom:3.840000pt;}
.y32{bottom:4.000000pt;}
.y8d{bottom:4.040000pt;}
.y4a{bottom:4.160000pt;}
.y9{bottom:5.120000pt;}
.y3{bottom:5.280000pt;}
.y8{bottom:8.000000pt;}
.ya{bottom:8.480000pt;}
.y63{bottom:8.960000pt;}
.y67{bottom:9.280000pt;}
.y71{bottom:11.520000pt;}
.y73{bottom:12.000000pt;}
.ya0{bottom:12.320000pt;}
.y9d{bottom:12.480000pt;}
.y38{bottom:12.954667pt;}
.y62{bottom:13.760000pt;}
.y6b{bottom:13.920000pt;}
.y69{bottom:13.946667pt;}
.y66{bottom:14.560000pt;}
.y98{bottom:14.720000pt;}
.y9c{bottom:14.880000pt;}
.y46{bottom:19.840000pt;}
.y7c{bottom:25.440000pt;}
.y7{bottom:33.600000pt;}
.y37{bottom:34.394667pt;}
.y61{bottom:37.440000pt;}
.y41{bottom:41.280000pt;}
.y44{bottom:44.160000pt;}
.y88{bottom:46.880000pt;}
.y7b{bottom:47.040000pt;}
.y34{bottom:55.834667pt;}
.y48{bottom:56.320000pt;}
.y60{bottom:58.880000pt;}
.y40{bottom:62.720000pt;}
.y43{bottom:65.600000pt;}
.y36{bottom:77.274667pt;}
.y5f{bottom:80.320000pt;}
.y3a{bottom:82.592000pt;}
.y3f{bottom:84.160000pt;}
.y42{bottom:87.040000pt;}
.y5b{bottom:87.392000pt;}
.ya8{bottom:88.992000pt;}
.y86{bottom:95.072000pt;}
.y35{bottom:98.874667pt;}
.y5e{bottom:101.760000pt;}
.y27{bottom:102.432000pt;}
.y3e{bottom:105.800000pt;}
.y85{bottom:113.152000pt;}
.y39{bottom:114.752000pt;}
.y5a{bottom:119.552000pt;}
.ya7{bottom:121.312000pt;}
.y5d{bottom:123.400000pt;}
.y79{bottom:124.832000pt;}
.y3d{bottom:127.240000pt;}
.y33{bottom:132.832000pt;}
.y26{bottom:134.586667pt;}
.y84{bottom:135.226667pt;}
.y59{bottom:151.706667pt;}
.ya6{bottom:153.466667pt;}
.y78{bottom:156.986667pt;}
.y83{bottom:157.466667pt;}
.y3b{bottom:166.746667pt;}
.y25{bottom:166.906667pt;}
.y82{bottom:179.546667pt;}
.y58{bottom:184.026667pt;}
.ya5{bottom:185.626667pt;}
.y77{bottom:189.146667pt;}
.y24{bottom:199.066667pt;}
.y81{bottom:201.626667pt;}
.y57{bottom:216.186667pt;}
.ya4{bottom:217.786667pt;}
.y76{bottom:221.466667pt;}
.y80{bottom:223.866667pt;}
.y23{bottom:231.226667pt;}
.y7f{bottom:245.946667pt;}
.y56{bottom:248.346667pt;}
.ya3{bottom:250.106667pt;}
.y75{bottom:253.626667pt;}
.y31{bottom:258.746667pt;}
.y22{bottom:263.386667pt;}
.y7e{bottom:268.026667pt;}
.ya2{bottom:268.186667pt;}
.y74{bottom:271.706667pt;}
.y55{bottom:280.506667pt;}
.y7d{bottom:290.266667pt;}
.y30{bottom:295.546667pt;}
.y21{bottom:295.706667pt;}
.ya1{bottom:301.026667pt;}
.y72{bottom:303.746667pt;}
.y7a{bottom:312.386667pt;}
.y54{bottom:312.866667pt;}
.y2f{bottom:327.746667pt;}
.y20{bottom:327.906667pt;}
.y70{bottom:333.826667pt;}
.y9f{bottom:333.986667pt;}
.y53{bottom:345.026667pt;}
.y1f{bottom:360.066667pt;}
.y6f{bottom:365.826667pt;}
.y9e{bottom:366.786667pt;}
.y52{bottom:377.186667pt;}
.y1e{bottom:392.226667pt;}
.y6e{bottom:397.826667pt;}
.y9b{bottom:399.586667pt;}
.y51{bottom:409.346667pt;}
.y2e{bottom:424.386667pt;}
.y1d{bottom:424.546667pt;}
.y6d{bottom:429.826667pt;}
.y9a{bottom:432.546667pt;}
.y50{bottom:441.666667pt;}
.y2d{bottom:456.546667pt;}
.y1c{bottom:456.706667pt;}
.y6c{bottom:461.826667pt;}
.y99{bottom:465.346667pt;}
.y4f{bottom:473.826667pt;}
.y1b{bottom:488.866667pt;}
.y6a{bottom:493.826667pt;}
.y97{bottom:498.306667pt;}
.y4e{bottom:505.986667pt;}
.y1a{bottom:521.026667pt;}
.y68{bottom:525.826667pt;}
.y4d{bottom:538.173333pt;}
.y96{bottom:545.853333pt;}
.y19{bottom:553.213333pt;}
.y47{bottom:556.253333pt;}
.y65{bottom:557.853333pt;}
.y95{bottom:578.013333pt;}
.y4c{bottom:578.493333pt;}
.y2c{bottom:585.373333pt;}
.y18{bottom:585.533333pt;}
.y64{bottom:590.653333pt;}
.y4b{bottom:600.573333pt;}
.y94{bottom:610.333333pt;}
.y17{bottom:617.693333pt;}
.y49{bottom:622.653333pt;}
.y93{bottom:642.493333pt;}
.y45{bottom:644.893333pt;}
.y16{bottom:649.853333pt;}
.y5c{bottom:654.653333pt;}
.y92{bottom:660.573333pt;}
.y15{bottom:682.013333pt;}
.y91{bottom:682.653333pt;}
.y3c{bottom:682.973333pt;}
.y90{bottom:704.893333pt;}
.y2b{bottom:714.173333pt;}
.y14{bottom:714.333333pt;}
.y8f{bottom:726.973333pt;}
.y2a{bottom:746.333333pt;}
.y13{bottom:746.493333pt;}
.y8e{bottom:749.053333pt;}
.y8c{bottom:771.293333pt;}
.y12{bottom:778.693333pt;}
.y8b{bottom:793.413333pt;}
.y11{bottom:810.853333pt;}
.y8a{bottom:815.493333pt;}
.y89{bottom:837.733333pt;}
.y29{bottom:843.013333pt;}
.y10{bottom:843.173333pt;}
.y87{bottom:859.813333pt;}
.y28{bottom:875.173333pt;}
.yf{bottom:875.333333pt;}
.ye{bottom:907.493333pt;}
.yd{bottom:939.653333pt;}
.yc{bottom:971.813333pt;}
.yb{bottom:1003.973333pt;}
.y6{bottom:1025.600000pt;}
.y4{bottom:1043.040000pt;}
.y1{bottom:1065.440000pt;}
.h5{height:12.800000pt;}
.h2{height:19.040000pt;}
.he{height:21.440000pt;}
.h1d{height:21.472000pt;}
.h15{height:21.600000pt;}
.h7{height:27.520000pt;}
.h1b{height:29.440000pt;}
.h17{height:31.200000pt;}
.h1a{height:31.360000pt;}
.h19{height:31.392000pt;}
.h18{height:32.000000pt;}
.h1f{height:32.160000pt;}
.h21{height:32.192000pt;}
.h20{height:32.320000pt;}
.h13{height:37.280000pt;}
.h4{height:47.109375pt;}
.h22{height:52.832812pt;}
.hd{height:56.525625pt;}
.hc{height:57.074062pt;}
.h8{height:62.812500pt;}
.h1e{height:64.320000pt;}
.h1c{height:64.480000pt;}
.h3{height:64.500000pt;}
.hb{height:73.454062pt;}
.h6{height:73.490625pt;}
.h10{height:73.989375pt;}
.ha{height:75.465000pt;}
.h23{height:76.964840pt;}
.hf{height:83.090625pt;}
.h9{height:96.750000pt;}
.h11{height:125.120000pt;}
.h14{height:125.920000pt;}
.h16{height:140.826667pt;}
.h12{height:144.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:35.232000pt;}
.w11{width:36.832000pt;}
.w3{width:39.200000pt;}
.w7{width:42.400000pt;}
.wb{width:42.912000pt;}
.wa{width:46.560000pt;}
.wc{width:49.600000pt;}
.wd{width:49.760000pt;}
.w6{width:56.032000pt;}
.w1f{width:56.192000pt;}
.w10{width:58.720000pt;}
.we{width:60.352000pt;}
.w17{width:64.960000pt;}
.wf{width:65.920000pt;}
.w8{width:67.840000pt;}
.w9{width:67.872000pt;}
.w15{width:74.880000pt;}
.w16{width:74.912000pt;}
.w12{width:103.360000pt;}
.w13{width:112.672000pt;}
.w1e{width:131.712000pt;}
.w1c{width:132.192000pt;}
.w19{width:142.586667pt;}
.w14{width:150.426667pt;}
.w1a{width:150.720000pt;}
.w1b{width:160.026667pt;}
.w22{width:178.426667pt;}
.w20{width:178.906667pt;}
.w25{width:180.986667pt;}
.w26{width:194.426667pt;}
.w21{width:216.826667pt;}
.w24{width:264.546667pt;}
.w27{width:376.066667pt;}
.w23{width:453.213333pt;}
.w1d{width:454.626667pt;}
.w5{width:647.493333pt;}
.w2{width:746.880000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:3.840000pt;}
.x18{left:6.720000pt;}
.x5{left:7.680000pt;}
.x8{left:12.480000pt;}
.xa{left:16.000000pt;}
.x1d{left:23.840000pt;}
.x22{left:28.160000pt;}
.x21{left:30.080000pt;}
.x4{left:31.680000pt;}
.x23{left:36.160000pt;}
.x7{left:48.640000pt;}
.x2{left:64.480000pt;}
.x2e{left:66.400000pt;}
.x6{left:75.519988pt;}
.x15{left:83.552000pt;}
.xc{left:88.351988pt;}
.x35{left:94.431988pt;}
.x33{left:104.991988pt;}
.x28{left:112.192000pt;}
.xb{left:113.311988pt;}
.x2f{left:123.232000pt;}
.x16{left:126.592000pt;}
.x2c{left:143.074667pt;}
.xd{left:168.826655pt;}
.x17{left:195.226667pt;}
.x2d{left:203.234667pt;}
.x24{left:217.786667pt;}
.x11{left:233.786655pt;}
.x29{left:255.426667pt;}
.x12{left:262.626655pt;}
.x19{left:263.746667pt;}
.xe{left:295.906655pt;}
.x30{left:302.786667pt;}
.x10{left:307.106655pt;}
.x34{left:330.946655pt;}
.x13{left:332.066655pt;}
.x32{left:341.506667pt;}
.x14{left:349.026655pt;}
.x1a{left:379.586667pt;}
.xf{left:396.866655pt;}
.x2a{left:406.786667pt;}
.x1b{left:423.293333pt;}
.x1c{left:473.533333pt;}
.x25{left:482.493333pt;}
.x31{left:520.253333pt;}
.x1e{left:523.933333pt;}
.x26{left:558.013333pt;}
.x2b{left:567.453333pt;}
.x1f{left:584.933333pt;}
.x27{left:633.733333pt;}
.x20{left:651.493333pt;}
.x9{left:696.133333pt;}
.x3{left:750.720000pt;}
}




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