
    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_193201eea06d5aabc80df2a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_7a65e33ed5c01f5150dccfd8.woff2')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_7338208cd3c17ff89b983865.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ca9f0f3fe979b4d6f8756e1c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5eacb5d69f670dd413f29352.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_8a057f8194c536bd449a7dda.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_289716d04f7883abfccf6aa1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_1550fabfb714a1a4f29aa0c8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f8e119b9f536b5837d951155.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c0e00312aa13188cd2df73f0.woff2')format("woff");}.ffb{font-family:ffb;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.666000px;}
.ls12{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.413400px;}
.ls7{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls8{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.620000px;}
.ls11{letter-spacing:16.506720px;}
.ls1{letter-spacing:46.026720px;}
.ls10{letter-spacing:46.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.020000px;}
.ws2{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.552000px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.479800px;}
.wsd{word-spacing:-14.274000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-461.148480px;}
._18{margin-left:-7.888320px;}
._6{margin-left:-3.645360px;}
._a{margin-left:-2.309040px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.770080px;}
._13{width:3.932880px;}
._d{width:5.497920px;}
._1b{width:6.602400px;}
._15{width:7.620480px;}
._10{width:8.813520px;}
._f{width:9.860400px;}
._e{width:11.108880px;}
._c{width:12.744720px;}
._7{width:13.804560px;}
._14{width:16.374240px;}
._20{width:17.775120px;}
._b{width:18.824400px;}
._9{width:20.437920px;}
._8{width:22.410000px;}
._12{width:23.545440px;}
._11{width:24.740640px;}
._22{width:26.135280px;}
._21{width:27.450720px;}
._4{width:28.737120px;}
._5{width:29.764800px;}
._1e{width:31.096080px;}
._1f{width:32.369040px;}
._1c{width:36.632160px;}
._1d{width:39.849360px;}
._17{width:42.287760px;}
._16{width:43.467120px;}
._19{width:79.046640px;}
._1a{width:141.234480px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fsa{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:5.220000px;}
.y27{bottom:6.120000px;}
.y4e{bottom:10.791000px;}
.y3b{bottom:10.995000px;}
.y7{bottom:14.415000px;}
.y26{bottom:25.920000px;}
.y3a{bottom:30.975000px;}
.y25{bottom:45.720000px;}
.y6{bottom:46.095000px;}
.y39{bottom:50.775000px;}
.ya{bottom:59.976000px;}
.y24{bottom:65.520000px;}
.y38{bottom:70.575000px;}
.y4d{bottom:71.685000px;}
.y5{bottom:77.595000px;}
.yd2{bottom:83.376000px;}
.y84{bottom:85.176000px;}
.y23{bottom:85.500000px;}
.y37{bottom:90.015000px;}
.yf0{bottom:92.376000px;}
.ya3{bottom:94.176000px;}
.yd1{bottom:103.176000px;}
.y83{bottom:104.976000px;}
.y22{bottom:105.300000px;}
.y4{bottom:109.305000px;}
.yef{bottom:112.176000px;}
.ya2{bottom:113.976000px;}
.y36{bottom:114.135000px;}
.y4b{bottom:117.576000px;}
.yd0{bottom:122.976000px;}
.y82{bottom:124.956000px;}
.y21{bottom:125.100000px;}
.yee{bottom:131.976000px;}
.ya1{bottom:133.956000px;}
.y35{bottom:136.665000px;}
.y4a{bottom:137.556000px;}
.y2{bottom:142.230000px;}
.ycf{bottom:142.956000px;}
.y81{bottom:144.756000px;}
.y20{bottom:144.930000px;}
.yed{bottom:151.950000px;}
.ya0{bottom:153.750000px;}
.y49{bottom:157.350000px;}
.y34{bottom:158.985000px;}
.yce{bottom:162.750000px;}
.y80{bottom:164.550000px;}
.y1f{bottom:164.730000px;}
.yec{bottom:171.750000px;}
.y9f{bottom:173.550000px;}
.y48{bottom:177.150000px;}
.y33{bottom:181.305000px;}
.ycd{bottom:182.550000px;}
.y7f{bottom:183.990000px;}
.y1e{bottom:184.710000px;}
.yeb{bottom:191.550000px;}
.y9e{bottom:193.350000px;}
.y47{bottom:196.950000px;}
.ycc{bottom:201.990000px;}
.y32{bottom:203.625000px;}
.y7e{bottom:204.150000px;}
.y1d{bottom:204.510000px;}
.yea{bottom:211.350000px;}
.y9d{bottom:213.150000px;}
.ycb{bottom:222.150000px;}
.y7d{bottom:224.130000px;}
.y1c{bottom:224.310000px;}
.y31{bottom:225.585000px;}
.y46{bottom:225.750000px;}
.ye9{bottom:231.150000px;}
.y9c{bottom:233.130000px;}
.yca{bottom:242.130000px;}
.y7c{bottom:243.930000px;}
.y1b{bottom:244.110000px;}
.y45{bottom:245.730000px;}
.y30{bottom:247.905000px;}
.ye8{bottom:251.130000px;}
.y9b{bottom:252.930000px;}
.yc9{bottom:261.930000px;}
.y7b{bottom:263.730000px;}
.y1a{bottom:263.910000px;}
.y44{bottom:265.530000px;}
.y2f{bottom:270.405000px;}
.ye7{bottom:270.930000px;}
.y9a{bottom:272.730000px;}
.yc8{bottom:281.775000px;}
.y7a{bottom:283.575000px;}
.y19{bottom:283.890000px;}
.y43{bottom:285.375000px;}
.ye6{bottom:290.775000px;}
.y99{bottom:292.575000px;}
.y2e{bottom:292.725000px;}
.yc7{bottom:301.575000px;}
.y79{bottom:303.375000px;}
.y18{bottom:303.690000px;}
.y42{bottom:305.175000px;}
.ye5{bottom:310.575000px;}
.y98{bottom:312.015000px;}
.ydf{bottom:312.375000px;}
.y2d{bottom:315.045000px;}
.yc6{bottom:321.375000px;}
.y78{bottom:323.355000px;}
.y17{bottom:323.490000px;}
.y41{bottom:324.975000px;}
.ye4{bottom:330.375000px;}
.y97{bottom:331.995000px;}
.yde{bottom:332.355000px;}
.y2c{bottom:337.905000px;}
.yc5{bottom:341.355000px;}
.y77{bottom:343.155000px;}
.y16{bottom:343.290000px;}
.y40{bottom:344.955000px;}
.ye3{bottom:350.355000px;}
.y96{bottom:352.155000px;}
.y2b{bottom:361.125000px;}
.yc4{bottom:361.155000px;}
.y15{bottom:363.090000px;}
.y3f{bottom:364.755000px;}
.ye2{bottom:370.155000px;}
.y76{bottom:371.955000px;}
.y2a{bottom:382.725000px;}
.y14{bottom:383.070000px;}
.y3e{bottom:384.555000px;}
.yc3{bottom:389.955000px;}
.y75{bottom:391.755000px;}
.y28{bottom:402.510000px;}
.y13{bottom:402.870000px;}
.y3d{bottom:403.995000px;}
.yc2{bottom:409.755000px;}
.y74{bottom:411.555000px;}
.y3c{bottom:423.795000px;}
.yc1{bottom:429.555000px;}
.y73{bottom:431.535000px;}
.y29{bottom:438.720000px;}
.y12{bottom:438.735000px;}
.yc0{bottom:449.535000px;}
.y72{bottom:451.335000px;}
.ybf{bottom:469.335000px;}
.y71{bottom:471.135000px;}
.ybe{bottom:489.135000px;}
.y70{bottom:490.935000px;}
.ybd{bottom:508.935000px;}
.y6f{bottom:510.735000px;}
.ybc{bottom:528.735000px;}
.y6e{bottom:530.715000px;}
.ybb{bottom:548.355000px;}
.ye1{bottom:548.715000px;}
.ydd{bottom:550.155000px;}
.y6d{bottom:550.515000px;}
.yba{bottom:568.545000px;}
.ydc{bottom:569.985000px;}
.y6c{bottom:570.345000px;}
.yb9{bottom:588.345000px;}
.y95{bottom:590.145000px;}
.y6b{bottom:599.145000px;}
.yb8{bottom:608.145000px;}
.y94{bottom:609.585000px;}
.ydb{bottom:609.945000px;}
.y6a{bottom:618.945000px;}
.yb7{bottom:627.945000px;}
.y93{bottom:629.565000px;}
.yda{bottom:629.925000px;}
.y69{bottom:638.925000px;}
.yb6{bottom:647.925000px;}
.y92{bottom:649.725000px;}
.y68{bottom:658.725000px;}
.yb5{bottom:667.725000px;}
.y91{bottom:669.525000px;}
.y67{bottom:678.525000px;}
.yb4{bottom:687.525000px;}
.yd9{bottom:688.965000px;}
.y90{bottom:689.325000px;}
.y66{bottom:698.325000px;}
.yb3{bottom:707.325000px;}
.yd8{bottom:708.765000px;}
.y8f{bottom:709.125000px;}
.y65{bottom:718.125000px;}
.yb2{bottom:727.125000px;}
.y8e{bottom:729.105000px;}
.y64{bottom:738.105000px;}
.yb1{bottom:747.105000px;}
.y8d{bottom:748.905000px;}
.y63{bottom:757.905000px;}
.yb0{bottom:766.905000px;}
.y8c{bottom:768.705000px;}
.y62{bottom:777.705000px;}
.yaf{bottom:786.705000px;}
.y8b{bottom:788.505000px;}
.y61{bottom:797.145000px;}
.yae{bottom:806.505000px;}
.y8a{bottom:808.305000px;}
.y60{bottom:816.945000px;}
.yad{bottom:826.305000px;}
.y89{bottom:828.285000px;}
.y5f{bottom:837.285000px;}
.yac{bottom:846.285000px;}
.yd7{bottom:848.130000px;}
.y5e{bottom:857.130000px;}
.y11{bottom:865.230000px;}
.yab{bottom:865.770000px;}
.ye0{bottom:866.130000px;}
.yd6{bottom:867.930000px;}
.y5d{bottom:876.930000px;}
.yaa{bottom:885.930000px;}
.yd5{bottom:887.730000px;}
.y10{bottom:890.250000px;}
.y5c{bottom:896.730000px;}
.ya9{bottom:905.730000px;}
.yd4{bottom:907.530000px;}
.yf{bottom:910.050000px;}
.y5b{bottom:916.530000px;}
.ye{bottom:925.350000px;}
.ya8{bottom:925.530000px;}
.y5a{bottom:936.510000px;}
.ya7{bottom:945.510000px;}
.yd{bottom:946.950000px;}
.y59{bottom:956.310000px;}
.ya6{bottom:965.310000px;}
.yc{bottom:971.610000px;}
.y58{bottom:976.110000px;}
.ya5{bottom:985.110000px;}
.y57{bottom:995.910000px;}
.yb{bottom:1003.290000px;}
.ya4{bottom:1004.910000px;}
.y88{bottom:1015.710000px;}
.y56{bottom:1024.710000px;}
.y9{bottom:1030.110000px;}
.y87{bottom:1035.690000px;}
.y55{bottom:1044.690000px;}
.y3{bottom:1047.015000px;}
.y1{bottom:1047.030000px;}
.y86{bottom:1055.490000px;}
.y54{bottom:1064.490000px;}
.y85{bottom:1075.290000px;}
.y53{bottom:1084.290000px;}
.yd3{bottom:1095.090000px;}
.y52{bottom:1104.090000px;}
.y51{bottom:1123.890000px;}
.y50{bottom:1143.900000px;}
.y4f{bottom:1163.700000px;}
.y4c{bottom:1193.040000px;}
.h6{height:2.826563px;}
.hb{height:38.158594px;}
.he{height:43.215117px;}
.h15{height:48.127500px;}
.h11{height:48.616875px;}
.h5{height:48.774375px;}
.h13{height:52.998047px;}
.h12{height:54.421875px;}
.h3{height:57.256875px;}
.hc{height:58.651172px;}
.h10{height:60.226875px;}
.h18{height:61.423863px;}
.h14{height:62.211094px;}
.h8{height:65.010937px;}
.ha{height:66.757500px;}
.h7{height:70.664062px;}
.h9{height:96.508125px;}
.h17{height:111.043828px;}
.h2{height:162.750000px;}
.h4{height:162.765000px;}
.h16{height:268.575000px;}
.hd{height:416.565000px;}
.hf{height:416.580000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:39.780000px;}
.w4{width:147.441000px;}
.w6{width:204.690000px;}
.w5{width:576.825000px;}
.w2{width:633.885000px;}
.w3{width:633.900000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.840000px;}
.x2{left:8.100000px;}
.x8{left:12.765000px;}
.xb{left:31.680000px;}
.x1{left:54.000000px;}
.x6{left:55.800000px;}
.xc{left:81.000000px;}
.xd{left:108.036000px;}
.x4{left:139.350000px;}
.x9{left:331.815000px;}
.x5{left:393.015000px;}
.x7{left:632.640000px;}
.x3{left:687.900000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.592000pt;}
.ls12{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.367467pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls8{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls9{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls1{letter-spacing:40.912640pt;}
.ls10{letter-spacing:41.040640pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.240000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws10{word-spacing:-13.824000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.ws9{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.870933pt;}
.wsd{word-spacing:-12.688000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-409.909760pt;}
._18{margin-left:-7.011840pt;}
._6{margin-left:-3.240320pt;}
._a{margin-left:-2.052480pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.462293pt;}
._13{width:3.495893pt;}
._d{width:4.887040pt;}
._1b{width:5.868800pt;}
._15{width:6.773760pt;}
._10{width:7.834240pt;}
._f{width:8.764800pt;}
._e{width:9.874560pt;}
._c{width:11.328640pt;}
._7{width:12.270720pt;}
._14{width:14.554880pt;}
._20{width:15.800107pt;}
._b{width:16.732800pt;}
._9{width:18.167040pt;}
._8{width:19.920000pt;}
._12{width:20.929280pt;}
._11{width:21.991680pt;}
._22{width:23.231360pt;}
._21{width:24.400640pt;}
._4{width:25.544107pt;}
._5{width:26.457600pt;}
._1e{width:27.640960pt;}
._1f{width:28.772480pt;}
._1c{width:32.561920pt;}
._1d{width:35.421653pt;}
._17{width:37.589120pt;}
._16{width:38.637440pt;}
._19{width:70.263680pt;}
._1a{width:125.541760pt;}
.fs2{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fsa{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.640000pt;}
.y27{bottom:5.440000pt;}
.y4e{bottom:9.592000pt;}
.y3b{bottom:9.773333pt;}
.y7{bottom:12.813333pt;}
.y26{bottom:23.040000pt;}
.y3a{bottom:27.533333pt;}
.y25{bottom:40.640000pt;}
.y6{bottom:40.973333pt;}
.y39{bottom:45.133333pt;}
.ya{bottom:53.312000pt;}
.y24{bottom:58.240000pt;}
.y38{bottom:62.733333pt;}
.y4d{bottom:63.720000pt;}
.y5{bottom:68.973333pt;}
.yd2{bottom:74.112000pt;}
.y84{bottom:75.712000pt;}
.y23{bottom:76.000000pt;}
.y37{bottom:80.013333pt;}
.yf0{bottom:82.112000pt;}
.ya3{bottom:83.712000pt;}
.yd1{bottom:91.712000pt;}
.y83{bottom:93.312000pt;}
.y22{bottom:93.600000pt;}
.y4{bottom:97.160000pt;}
.yef{bottom:99.712000pt;}
.ya2{bottom:101.312000pt;}
.y36{bottom:101.453333pt;}
.y4b{bottom:104.512000pt;}
.yd0{bottom:109.312000pt;}
.y82{bottom:111.072000pt;}
.y21{bottom:111.200000pt;}
.yee{bottom:117.312000pt;}
.ya1{bottom:119.072000pt;}
.y35{bottom:121.480000pt;}
.y4a{bottom:122.272000pt;}
.y2{bottom:126.426667pt;}
.ycf{bottom:127.072000pt;}
.y81{bottom:128.672000pt;}
.y20{bottom:128.826667pt;}
.yed{bottom:135.066667pt;}
.ya0{bottom:136.666667pt;}
.y49{bottom:139.866667pt;}
.y34{bottom:141.320000pt;}
.yce{bottom:144.666667pt;}
.y80{bottom:146.266667pt;}
.y1f{bottom:146.426667pt;}
.yec{bottom:152.666667pt;}
.y9f{bottom:154.266667pt;}
.y48{bottom:157.466667pt;}
.y33{bottom:161.160000pt;}
.ycd{bottom:162.266667pt;}
.y7f{bottom:163.546667pt;}
.y1e{bottom:164.186667pt;}
.yeb{bottom:170.266667pt;}
.y9e{bottom:171.866667pt;}
.y47{bottom:175.066667pt;}
.ycc{bottom:179.546667pt;}
.y32{bottom:181.000000pt;}
.y7e{bottom:181.466667pt;}
.y1d{bottom:181.786667pt;}
.yea{bottom:187.866667pt;}
.y9d{bottom:189.466667pt;}
.ycb{bottom:197.466667pt;}
.y7d{bottom:199.226667pt;}
.y1c{bottom:199.386667pt;}
.y31{bottom:200.520000pt;}
.y46{bottom:200.666667pt;}
.ye9{bottom:205.466667pt;}
.y9c{bottom:207.226667pt;}
.yca{bottom:215.226667pt;}
.y7c{bottom:216.826667pt;}
.y1b{bottom:216.986667pt;}
.y45{bottom:218.426667pt;}
.y30{bottom:220.360000pt;}
.ye8{bottom:223.226667pt;}
.y9b{bottom:224.826667pt;}
.yc9{bottom:232.826667pt;}
.y7b{bottom:234.426667pt;}
.y1a{bottom:234.586667pt;}
.y44{bottom:236.026667pt;}
.y2f{bottom:240.360000pt;}
.ye7{bottom:240.826667pt;}
.y9a{bottom:242.426667pt;}
.yc8{bottom:250.466667pt;}
.y7a{bottom:252.066667pt;}
.y19{bottom:252.346667pt;}
.y43{bottom:253.666667pt;}
.ye6{bottom:258.466667pt;}
.y99{bottom:260.066667pt;}
.y2e{bottom:260.200000pt;}
.yc7{bottom:268.066667pt;}
.y79{bottom:269.666667pt;}
.y18{bottom:269.946667pt;}
.y42{bottom:271.266667pt;}
.ye5{bottom:276.066667pt;}
.y98{bottom:277.346667pt;}
.ydf{bottom:277.666667pt;}
.y2d{bottom:280.040000pt;}
.yc6{bottom:285.666667pt;}
.y78{bottom:287.426667pt;}
.y17{bottom:287.546667pt;}
.y41{bottom:288.866667pt;}
.ye4{bottom:293.666667pt;}
.y97{bottom:295.106667pt;}
.yde{bottom:295.426667pt;}
.y2c{bottom:300.360000pt;}
.yc5{bottom:303.426667pt;}
.y77{bottom:305.026667pt;}
.y16{bottom:305.146667pt;}
.y40{bottom:306.626667pt;}
.ye3{bottom:311.426667pt;}
.y96{bottom:313.026667pt;}
.y2b{bottom:321.000000pt;}
.yc4{bottom:321.026667pt;}
.y15{bottom:322.746667pt;}
.y3f{bottom:324.226667pt;}
.ye2{bottom:329.026667pt;}
.y76{bottom:330.626667pt;}
.y2a{bottom:340.200000pt;}
.y14{bottom:340.506667pt;}
.y3e{bottom:341.826667pt;}
.yc3{bottom:346.626667pt;}
.y75{bottom:348.226667pt;}
.y28{bottom:357.786667pt;}
.y13{bottom:358.106667pt;}
.y3d{bottom:359.106667pt;}
.yc2{bottom:364.226667pt;}
.y74{bottom:365.826667pt;}
.y3c{bottom:376.706667pt;}
.yc1{bottom:381.826667pt;}
.y73{bottom:383.586667pt;}
.y29{bottom:389.973333pt;}
.y12{bottom:389.986667pt;}
.yc0{bottom:399.586667pt;}
.y72{bottom:401.186667pt;}
.ybf{bottom:417.186667pt;}
.y71{bottom:418.786667pt;}
.ybe{bottom:434.786667pt;}
.y70{bottom:436.386667pt;}
.ybd{bottom:452.386667pt;}
.y6f{bottom:453.986667pt;}
.ybc{bottom:469.986667pt;}
.y6e{bottom:471.746667pt;}
.ybb{bottom:487.426667pt;}
.ye1{bottom:487.746667pt;}
.ydd{bottom:489.026667pt;}
.y6d{bottom:489.346667pt;}
.yba{bottom:505.373333pt;}
.ydc{bottom:506.653333pt;}
.y6c{bottom:506.973333pt;}
.yb9{bottom:522.973333pt;}
.y95{bottom:524.573333pt;}
.y6b{bottom:532.573333pt;}
.yb8{bottom:540.573333pt;}
.y94{bottom:541.853333pt;}
.ydb{bottom:542.173333pt;}
.y6a{bottom:550.173333pt;}
.yb7{bottom:558.173333pt;}
.y93{bottom:559.613333pt;}
.yda{bottom:559.933333pt;}
.y69{bottom:567.933333pt;}
.yb6{bottom:575.933333pt;}
.y92{bottom:577.533333pt;}
.y68{bottom:585.533333pt;}
.yb5{bottom:593.533333pt;}
.y91{bottom:595.133333pt;}
.y67{bottom:603.133333pt;}
.yb4{bottom:611.133333pt;}
.yd9{bottom:612.413333pt;}
.y90{bottom:612.733333pt;}
.y66{bottom:620.733333pt;}
.yb3{bottom:628.733333pt;}
.yd8{bottom:630.013333pt;}
.y8f{bottom:630.333333pt;}
.y65{bottom:638.333333pt;}
.yb2{bottom:646.333333pt;}
.y8e{bottom:648.093333pt;}
.y64{bottom:656.093333pt;}
.yb1{bottom:664.093333pt;}
.y8d{bottom:665.693333pt;}
.y63{bottom:673.693333pt;}
.yb0{bottom:681.693333pt;}
.y8c{bottom:683.293333pt;}
.y62{bottom:691.293333pt;}
.yaf{bottom:699.293333pt;}
.y8b{bottom:700.893333pt;}
.y61{bottom:708.573333pt;}
.yae{bottom:716.893333pt;}
.y8a{bottom:718.493333pt;}
.y60{bottom:726.173333pt;}
.yad{bottom:734.493333pt;}
.y89{bottom:736.253333pt;}
.y5f{bottom:744.253333pt;}
.yac{bottom:752.253333pt;}
.yd7{bottom:753.893333pt;}
.y5e{bottom:761.893333pt;}
.y11{bottom:769.093333pt;}
.yab{bottom:769.573333pt;}
.ye0{bottom:769.893333pt;}
.yd6{bottom:771.493333pt;}
.y5d{bottom:779.493333pt;}
.yaa{bottom:787.493333pt;}
.yd5{bottom:789.093333pt;}
.y10{bottom:791.333333pt;}
.y5c{bottom:797.093333pt;}
.ya9{bottom:805.093333pt;}
.yd4{bottom:806.693333pt;}
.yf{bottom:808.933333pt;}
.y5b{bottom:814.693333pt;}
.ye{bottom:822.533333pt;}
.ya8{bottom:822.693333pt;}
.y5a{bottom:832.453333pt;}
.ya7{bottom:840.453333pt;}
.yd{bottom:841.733333pt;}
.y59{bottom:850.053333pt;}
.ya6{bottom:858.053333pt;}
.yc{bottom:863.653333pt;}
.y58{bottom:867.653333pt;}
.ya5{bottom:875.653333pt;}
.y57{bottom:885.253333pt;}
.yb{bottom:891.813333pt;}
.ya4{bottom:893.253333pt;}
.y88{bottom:902.853333pt;}
.y56{bottom:910.853333pt;}
.y9{bottom:915.653333pt;}
.y87{bottom:920.613333pt;}
.y55{bottom:928.613333pt;}
.y3{bottom:930.680000pt;}
.y1{bottom:930.693333pt;}
.y86{bottom:938.213333pt;}
.y54{bottom:946.213333pt;}
.y85{bottom:955.813333pt;}
.y53{bottom:963.813333pt;}
.yd3{bottom:973.413333pt;}
.y52{bottom:981.413333pt;}
.y51{bottom:999.013333pt;}
.y50{bottom:1016.800000pt;}
.y4f{bottom:1034.400000pt;}
.y4c{bottom:1060.480000pt;}
.h6{height:2.512500pt;}
.hb{height:33.918750pt;}
.he{height:38.413438pt;}
.h15{height:42.780000pt;}
.h11{height:43.215000pt;}
.h5{height:43.355000pt;}
.h13{height:47.109375pt;}
.h12{height:48.375000pt;}
.h3{height:50.895000pt;}
.hc{height:52.134375pt;}
.h10{height:53.535000pt;}
.h18{height:54.598989pt;}
.h14{height:55.298750pt;}
.h8{height:57.787500pt;}
.ha{height:59.340000pt;}
.h7{height:62.812500pt;}
.h9{height:85.785000pt;}
.h17{height:98.705625pt;}
.h2{height:144.666667pt;}
.h4{height:144.680000pt;}
.h16{height:238.733333pt;}
.hd{height:370.280000pt;}
.hf{height:370.293333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:35.360000pt;}
.w4{width:131.058667pt;}
.w6{width:181.946667pt;}
.w5{width:512.733333pt;}
.w2{width:563.453333pt;}
.w3{width:563.466667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.080000pt;}
.x2{left:7.200000pt;}
.x8{left:11.346667pt;}
.xb{left:28.160000pt;}
.x1{left:48.000000pt;}
.x6{left:49.600000pt;}
.xc{left:72.000000pt;}
.xd{left:96.032000pt;}
.x4{left:123.866667pt;}
.x9{left:294.946667pt;}
.x5{left:349.346667pt;}
.x7{left:562.346667pt;}
.x3{left:611.466667pt;}
}




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