
    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_2d27e9a6b11324910f9e2c36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061035;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_73b18064de2dd67c7846ee29.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_fdae55b4b4e0095fd9114380.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b30755132e64940760a46f0d.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_a99b445b4c782683d729a1c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1b932e1f4bee1944514e4850.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_fb091d397fdfbf64a1ded8dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_75b809ea95421d7481253586.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_6a920b029425db02d2c1d3c7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9d4580d9e88d078253a0fbd2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_40c49a63c490ff73debce1c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.759766;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls4{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.lsb{letter-spacing:0.126720px;}
.ls5{letter-spacing:0.175800px;}
.ls8{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls6{letter-spacing:31.104000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws8{word-spacing:-27.000000px;}
.ws2{word-spacing:-23.940000px;}
.ws7{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-13.860000px;}
.ws1{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
.ws0{word-spacing:2.952000px;}
._18{margin-left:-5.616000px;}
._5{margin-left:-3.888000px;}
._6{margin-left:-2.448000px;}
._1{margin-left:-1.324800px;}
._2{width:1.340640px;}
._3{width:2.349120px;}
._4{width:3.816000px;}
._7{width:5.256000px;}
._a{width:6.276000px;}
._e{width:7.438080px;}
._f{width:8.459520px;}
._13{width:9.466080px;}
._10{width:10.512000px;}
._b{width:11.592000px;}
._c{width:12.627360px;}
._d{width:13.753440px;}
._17{width:14.754240px;}
._11{width:15.766560px;}
._12{width:16.907040px;}
._0{width:18.774720px;}
._9{width:20.188800px;}
._8{width:21.240000px;}
._14{width:22.752000px;}
._15{width:23.832000px;}
._16{width:25.488000px;}
._19{width:27.576000px;}
._1a{width:29.172000px;}
.fc4{color:rgb(54,95,145);}
.fc6{color:rgb(82,82,84);}
.fc3{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc2{color:rgb(4,98,193);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs7{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:58.215000px;}
.y3{bottom:79.056000px;}
.y8c{bottom:86.250000px;}
.y89{bottom:86.295000px;}
.y2{bottom:98.316000px;}
.y8b{bottom:114.150000px;}
.y88{bottom:114.225000px;}
.y5b{bottom:124.056000px;}
.y9f{bottom:131.076000px;}
.yc2{bottom:133.776000px;}
.y51{bottom:135.216000px;}
.yad{bottom:141.156000px;}
.y87{bottom:142.125000px;}
.y7d{bottom:144.036000px;}
.y37{bottom:149.976000px;}
.y5a{bottom:155.010000px;}
.y9e{bottom:162.210000px;}
.yc1{bottom:164.910000px;}
.y50{bottom:166.170000px;}
.yac{bottom:172.110000px;}
.y7c{bottom:174.990000px;}
.y36{bottom:180.930000px;}
.y59{bottom:186.150000px;}
.y82{bottom:192.990000px;}
.y9d{bottom:193.170000px;}
.y71{bottom:194.070000px;}
.yc0{bottom:195.870000px;}
.y4f{bottom:197.310000px;}
.y1e{bottom:200.370000px;}
.yd8{bottom:202.530000px;}
.yab{bottom:203.250000px;}
.y7b{bottom:206.130000px;}
.y83{bottom:209.880000px;}
.y58{bottom:217.110000px;}
.y86{bottom:219.960000px;}
.y9c{bottom:224.310000px;}
.y70{bottom:225.210000px;}
.y35{bottom:227.010000px;}
.y1d{bottom:231.690000px;}
.yd7{bottom:233.490000px;}
.yaa{bottom:234.210000px;}
.y7a{bottom:237.090000px;}
.y81{bottom:241.050000px;}
.y4e{bottom:243.390000px;}
.y85{bottom:247.860000px;}
.y57{bottom:250.410000px;}
.y9b{bottom:255.270000px;}
.y6f{bottom:256.170000px;}
.ybf{bottom:260.310000px;}
.yd6{bottom:264.630000px;}
.ya9{bottom:265.350000px;}
.y79{bottom:268.230000px;}
.y34{bottom:273.090000px;}
.y84{bottom:275.760000px;}
.y1c{bottom:277.230000px;}
.y9a{bottom:286.410000px;}
.y6e{bottom:287.310000px;}
.y4d{bottom:289.470000px;}
.yd5{bottom:295.590000px;}
.ya8{bottom:296.310000px;}
.y33{bottom:304.050000px;}
.y1b{bottom:308.370000px;}
.y78{bottom:314.310000px;}
.y99{bottom:317.415000px;}
.y6d{bottom:318.315000px;}
.y4c{bottom:320.475000px;}
.yd4{bottom:326.775000px;}
.ya7{bottom:327.495000px;}
.ybe{bottom:330.375000px;}
.y32{bottom:335.235000px;}
.y1a{bottom:339.375000px;}
.y77{bottom:345.315000px;}
.y98{bottom:348.555000px;}
.y6c{bottom:349.455000px;}
.y4b{bottom:351.615000px;}
.yd3{bottom:357.735000px;}
.ya6{bottom:358.455000px;}
.ybd{bottom:361.335000px;}
.y31{bottom:368.535000px;}
.y19{bottom:370.515000px;}
.y76{bottom:376.275000px;}
.y97{bottom:379.515000px;}
.y6b{bottom:380.415000px;}
.y4a{bottom:382.575000px;}
.yd2{bottom:388.875000px;}
.ya5{bottom:391.755000px;}
.ybc{bottom:392.475000px;}
.y18{bottom:401.475000px;}
.y75{bottom:407.415000px;}
.y96{bottom:410.655000px;}
.y6a{bottom:411.555000px;}
.y49{bottom:413.715000px;}
.yd1{bottom:419.835000px;}
.ybb{bottom:423.435000px;}
.y17{bottom:432.615000px;}
.y30{bottom:438.375000px;}
.y95{bottom:441.615000px;}
.y69{bottom:442.515000px;}
.y56{bottom:444.675000px;}
.yd0{bottom:450.975000px;}
.yd9{bottom:452.595000px;}
.yba{bottom:454.575000px;}
.y48{bottom:459.615000px;}
.ya4{bottom:461.775000px;}
.y16{bottom:463.575000px;}
.y2f{bottom:469.515000px;}
.y94{bottom:472.755000px;}
.y68{bottom:473.655000px;}
.y55{bottom:475.815000px;}
.ycf{bottom:481.935000px;}
.yb9{bottom:485.535000px;}
.ya3{bottom:492.735000px;}
.y15{bottom:494.715000px;}
.y2e{bottom:500.475000px;}
.y93{bottom:503.715000px;}
.y67{bottom:504.615000px;}
.y47{bottom:505.695000px;}
.y54{bottom:506.775000px;}
.yce{bottom:513.075000px;}
.yb8{bottom:516.675000px;}
.y14{bottom:525.675000px;}
.y2d{bottom:531.615000px;}
.y92{bottom:534.855000px;}
.y66{bottom:535.755000px;}
.y46{bottom:536.835000px;}
.y53{bottom:537.735000px;}
.ycd{bottom:544.035000px;}
.ya2{bottom:544.935000px;}
.yb7{bottom:547.635000px;}
.y13{bottom:556.815000px;}
.y2c{bottom:562.575000px;}
.y65{bottom:566.715000px;}
.y45{bottom:567.795000px;}
.ycc{bottom:575.205000px;}
.yb6{bottom:578.805000px;}
.y52{bottom:583.845000px;}
.y91{bottom:586.905000px;}
.y12{bottom:587.805000px;}
.y2b{bottom:593.745000px;}
.ya1{bottom:596.985000px;}
.y64{bottom:597.885000px;}
.y44{bottom:598.965000px;}
.ycb{bottom:606.165000px;}
.y74{bottom:608.685000px;}
.yb5{bottom:609.765000px;}
.y90{bottom:617.865000px;}
.y11{bottom:618.945000px;}
.y80{bottom:624.885000px;}
.y63{bottom:628.845000px;}
.y43{bottom:629.925000px;}
.yca{bottom:637.305000px;}
.y2a{bottom:639.825000px;}
.yb4{bottom:640.905000px;}
.y8f{bottom:649.005000px;}
.y10{bottom:649.905000px;}
.y62{bottom:659.985000px;}
.y42{bottom:661.065000px;}
.yc9{bottom:668.265000px;}
.y29{bottom:670.785000px;}
.yb3{bottom:671.865000px;}
.y8e{bottom:679.965000px;}
.yf{bottom:680.865000px;}
.y61{bottom:690.945000px;}
.y41{bottom:692.025000px;}
.yc8{bottom:699.405000px;}
.ya0{bottom:701.025000px;}
.y28{bottom:701.925000px;}
.yb2{bottom:702.825000px;}
.ye{bottom:712.005000px;}
.y60{bottom:722.085000px;}
.y40{bottom:723.165000px;}
.yc7{bottom:730.365000px;}
.y8d{bottom:732.165000px;}
.y27{bottom:732.885000px;}
.yb1{bottom:733.965000px;}
.yd{bottom:742.965000px;}
.y5f{bottom:753.045000px;}
.y3f{bottom:754.125000px;}
.yc6{bottom:761.505000px;}
.y26{bottom:764.025000px;}
.yc{bottom:776.265000px;}
.y73{bottom:778.965000px;}
.yb0{bottom:782.205000px;}
.y5e{bottom:784.185000px;}
.y3e{bottom:785.265000px;}
.yc5{bottom:792.465000px;}
.y25{bottom:794.985000px;}
.y72{bottom:809.925000px;}
.y5d{bottom:815.145000px;}
.yc4{bottom:823.470000px;}
.y3d{bottom:831.210000px;}
.yb{bottom:839.130000px;}
.y24{bottom:841.110000px;}
.y5c{bottom:846.330000px;}
.ya{bottom:861.450000px;}
.yaf{bottom:862.350000px;}
.yc3{bottom:869.370000px;}
.y23{bottom:872.070000px;}
.y3c{bottom:877.290000px;}
.yae{bottom:893.310000px;}
.y9{bottom:895.290000px;}
.y22{bottom:903.210000px;}
.y3b{bottom:908.430000px;}
.y8{bottom:910.230000px;}
.y7f{bottom:913.290000px;}
.y7{bottom:918.150000px;}
.y21{bottom:934.170000px;}
.y3a{bottom:939.390000px;}
.y7e{bottom:944.250000px;}
.y6{bottom:953.250000px;}
.y5{bottom:964.230000px;}
.y20{bottom:965.310000px;}
.y39{bottom:970.530000px;}
.y4{bottom:995.910000px;}
.y1f{bottom:998.610000px;}
.y38{bottom:1001.490000px;}
.y1{bottom:1022.010000px;}
.h5{height:4.747500px;}
.h3{height:4.854375px;}
.h6{height:39.760312px;}
.hc{height:50.800781px;}
.hb{height:54.596250px;}
.h1{height:55.825312px;}
.h7{height:59.343750px;}
.h9{height:59.436914px;}
.h8{height:60.082031px;}
.ha{height:60.679688px;}
.h2{height:67.565039px;}
.h4{height:68.340586px;}
.he{height:76.201172px;}
.h10{height:76.302773px;}
.hf{height:90.123047px;}
.hd{height:342.720000px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x22{left:101.915986px;}
.x1f{left:108.035986px;}
.x20{left:110.915986px;}
.xa{left:113.795986px;}
.x21{left:124.415986px;}
.x1{left:135.035986px;}
.xe{left:143.315986px;}
.x3{left:145.655986px;}
.x7{left:175.889986px;}
.x4{left:182.549986px;}
.x8{left:244.649986px;}
.x1a{left:262.439986px;}
.x19{left:265.499986px;}
.x10{left:266.969986px;}
.x18{left:275.399986px;}
.xf{left:283.529986px;}
.x9{left:286.814986px;}
.x11{left:297.029986px;}
.xc{left:332.714986px;}
.x5{left:352.514986px;}
.x14{left:423.104986px;}
.x12{left:425.264986px;}
.x13{left:444.164986px;}
.x1c{left:452.444986px;}
.x1b{left:460.724986px;}
.x6{left:469.874986px;}
.x1e{left:580.859986px;}
.x16{left:582.479986px;}
.x1d{left:594.179986px;}
.x15{left:602.639986px;}
.x17{left:611.639986px;}
.x2{left:691.529986px;}
.xd{left:696.029986px;}
.xb{left:728.069986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls4{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.lsb{letter-spacing:0.112640pt;}
.ls5{letter-spacing:0.156267pt;}
.ls8{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls6{letter-spacing:27.648000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws8{word-spacing:-24.000000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws7{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws1{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
.ws0{word-spacing:2.624000pt;}
._18{margin-left:-4.992000pt;}
._5{margin-left:-3.456000pt;}
._6{margin-left:-2.176000pt;}
._1{margin-left:-1.177600pt;}
._2{width:1.191680pt;}
._3{width:2.088107pt;}
._4{width:3.392000pt;}
._7{width:4.672000pt;}
._a{width:5.578667pt;}
._e{width:6.611627pt;}
._f{width:7.519573pt;}
._13{width:8.414293pt;}
._10{width:9.344000pt;}
._b{width:10.304000pt;}
._c{width:11.224320pt;}
._d{width:12.225280pt;}
._17{width:13.114880pt;}
._11{width:14.014720pt;}
._12{width:15.028480pt;}
._0{width:16.688640pt;}
._9{width:17.945600pt;}
._8{width:18.880000pt;}
._14{width:20.224000pt;}
._15{width:21.184000pt;}
._16{width:22.656000pt;}
._19{width:24.512000pt;}
._1a{width:25.930667pt;}
.fs2{font-size:5.120000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs7{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:51.746667pt;}
.y3{bottom:70.272000pt;}
.y8c{bottom:76.666667pt;}
.y89{bottom:76.706667pt;}
.y2{bottom:87.392000pt;}
.y8b{bottom:101.466667pt;}
.y88{bottom:101.533333pt;}
.y5b{bottom:110.272000pt;}
.y9f{bottom:116.512000pt;}
.yc2{bottom:118.912000pt;}
.y51{bottom:120.192000pt;}
.yad{bottom:125.472000pt;}
.y87{bottom:126.333333pt;}
.y7d{bottom:128.032000pt;}
.y37{bottom:133.312000pt;}
.y5a{bottom:137.786667pt;}
.y9e{bottom:144.186667pt;}
.yc1{bottom:146.586667pt;}
.y50{bottom:147.706667pt;}
.yac{bottom:152.986667pt;}
.y7c{bottom:155.546667pt;}
.y36{bottom:160.826667pt;}
.y59{bottom:165.466667pt;}
.y82{bottom:171.546667pt;}
.y9d{bottom:171.706667pt;}
.y71{bottom:172.506667pt;}
.yc0{bottom:174.106667pt;}
.y4f{bottom:175.386667pt;}
.y1e{bottom:178.106667pt;}
.yd8{bottom:180.026667pt;}
.yab{bottom:180.666667pt;}
.y7b{bottom:183.226667pt;}
.y83{bottom:186.560000pt;}
.y58{bottom:192.986667pt;}
.y86{bottom:195.520000pt;}
.y9c{bottom:199.386667pt;}
.y70{bottom:200.186667pt;}
.y35{bottom:201.786667pt;}
.y1d{bottom:205.946667pt;}
.yd7{bottom:207.546667pt;}
.yaa{bottom:208.186667pt;}
.y7a{bottom:210.746667pt;}
.y81{bottom:214.266667pt;}
.y4e{bottom:216.346667pt;}
.y85{bottom:220.320000pt;}
.y57{bottom:222.586667pt;}
.y9b{bottom:226.906667pt;}
.y6f{bottom:227.706667pt;}
.ybf{bottom:231.386667pt;}
.yd6{bottom:235.226667pt;}
.ya9{bottom:235.866667pt;}
.y79{bottom:238.426667pt;}
.y34{bottom:242.746667pt;}
.y84{bottom:245.120000pt;}
.y1c{bottom:246.426667pt;}
.y9a{bottom:254.586667pt;}
.y6e{bottom:255.386667pt;}
.y4d{bottom:257.306667pt;}
.yd5{bottom:262.746667pt;}
.ya8{bottom:263.386667pt;}
.y33{bottom:270.266667pt;}
.y1b{bottom:274.106667pt;}
.y78{bottom:279.386667pt;}
.y99{bottom:282.146667pt;}
.y6d{bottom:282.946667pt;}
.y4c{bottom:284.866667pt;}
.yd4{bottom:290.466667pt;}
.ya7{bottom:291.106667pt;}
.ybe{bottom:293.666667pt;}
.y32{bottom:297.986667pt;}
.y1a{bottom:301.666667pt;}
.y77{bottom:306.946667pt;}
.y98{bottom:309.826667pt;}
.y6c{bottom:310.626667pt;}
.y4b{bottom:312.546667pt;}
.yd3{bottom:317.986667pt;}
.ya6{bottom:318.626667pt;}
.ybd{bottom:321.186667pt;}
.y31{bottom:327.586667pt;}
.y19{bottom:329.346667pt;}
.y76{bottom:334.466667pt;}
.y97{bottom:337.346667pt;}
.y6b{bottom:338.146667pt;}
.y4a{bottom:340.066667pt;}
.yd2{bottom:345.666667pt;}
.ya5{bottom:348.226667pt;}
.ybc{bottom:348.866667pt;}
.y18{bottom:356.866667pt;}
.y75{bottom:362.146667pt;}
.y96{bottom:365.026667pt;}
.y6a{bottom:365.826667pt;}
.y49{bottom:367.746667pt;}
.yd1{bottom:373.186667pt;}
.ybb{bottom:376.386667pt;}
.y17{bottom:384.546667pt;}
.y30{bottom:389.666667pt;}
.y95{bottom:392.546667pt;}
.y69{bottom:393.346667pt;}
.y56{bottom:395.266667pt;}
.yd0{bottom:400.866667pt;}
.yd9{bottom:402.306667pt;}
.yba{bottom:404.066667pt;}
.y48{bottom:408.546667pt;}
.ya4{bottom:410.466667pt;}
.y16{bottom:412.066667pt;}
.y2f{bottom:417.346667pt;}
.y94{bottom:420.226667pt;}
.y68{bottom:421.026667pt;}
.y55{bottom:422.946667pt;}
.ycf{bottom:428.386667pt;}
.yb9{bottom:431.586667pt;}
.ya3{bottom:437.986667pt;}
.y15{bottom:439.746667pt;}
.y2e{bottom:444.866667pt;}
.y93{bottom:447.746667pt;}
.y67{bottom:448.546667pt;}
.y47{bottom:449.506667pt;}
.y54{bottom:450.466667pt;}
.yce{bottom:456.066667pt;}
.yb8{bottom:459.266667pt;}
.y14{bottom:467.266667pt;}
.y2d{bottom:472.546667pt;}
.y92{bottom:475.426667pt;}
.y66{bottom:476.226667pt;}
.y46{bottom:477.186667pt;}
.y53{bottom:477.986667pt;}
.ycd{bottom:483.586667pt;}
.ya2{bottom:484.386667pt;}
.yb7{bottom:486.786667pt;}
.y13{bottom:494.946667pt;}
.y2c{bottom:500.066667pt;}
.y65{bottom:503.746667pt;}
.y45{bottom:504.706667pt;}
.ycc{bottom:511.293333pt;}
.yb6{bottom:514.493333pt;}
.y52{bottom:518.973333pt;}
.y91{bottom:521.693333pt;}
.y12{bottom:522.493333pt;}
.y2b{bottom:527.773333pt;}
.ya1{bottom:530.653333pt;}
.y64{bottom:531.453333pt;}
.y44{bottom:532.413333pt;}
.ycb{bottom:538.813333pt;}
.y74{bottom:541.053333pt;}
.yb5{bottom:542.013333pt;}
.y90{bottom:549.213333pt;}
.y11{bottom:550.173333pt;}
.y80{bottom:555.453333pt;}
.y63{bottom:558.973333pt;}
.y43{bottom:559.933333pt;}
.yca{bottom:566.493333pt;}
.y2a{bottom:568.733333pt;}
.yb4{bottom:569.693333pt;}
.y8f{bottom:576.893333pt;}
.y10{bottom:577.693333pt;}
.y62{bottom:586.653333pt;}
.y42{bottom:587.613333pt;}
.yc9{bottom:594.013333pt;}
.y29{bottom:596.253333pt;}
.yb3{bottom:597.213333pt;}
.y8e{bottom:604.413333pt;}
.yf{bottom:605.213333pt;}
.y61{bottom:614.173333pt;}
.y41{bottom:615.133333pt;}
.yc8{bottom:621.693333pt;}
.ya0{bottom:623.133333pt;}
.y28{bottom:623.933333pt;}
.yb2{bottom:624.733333pt;}
.ye{bottom:632.893333pt;}
.y60{bottom:641.853333pt;}
.y40{bottom:642.813333pt;}
.yc7{bottom:649.213333pt;}
.y8d{bottom:650.813333pt;}
.y27{bottom:651.453333pt;}
.yb1{bottom:652.413333pt;}
.yd{bottom:660.413333pt;}
.y5f{bottom:669.373333pt;}
.y3f{bottom:670.333333pt;}
.yc6{bottom:676.893333pt;}
.y26{bottom:679.133333pt;}
.yc{bottom:690.013333pt;}
.y73{bottom:692.413333pt;}
.yb0{bottom:695.293333pt;}
.y5e{bottom:697.053333pt;}
.y3e{bottom:698.013333pt;}
.yc5{bottom:704.413333pt;}
.y25{bottom:706.653333pt;}
.y72{bottom:719.933333pt;}
.y5d{bottom:724.573333pt;}
.yc4{bottom:731.973333pt;}
.y3d{bottom:738.853333pt;}
.yb{bottom:745.893333pt;}
.y24{bottom:747.653333pt;}
.y5c{bottom:752.293333pt;}
.ya{bottom:765.733333pt;}
.yaf{bottom:766.533333pt;}
.yc3{bottom:772.773333pt;}
.y23{bottom:775.173333pt;}
.y3c{bottom:779.813333pt;}
.yae{bottom:794.053333pt;}
.y9{bottom:795.813333pt;}
.y22{bottom:802.853333pt;}
.y3b{bottom:807.493333pt;}
.y8{bottom:809.093333pt;}
.y7f{bottom:811.813333pt;}
.y7{bottom:816.133333pt;}
.y21{bottom:830.373333pt;}
.y3a{bottom:835.013333pt;}
.y7e{bottom:839.333333pt;}
.y6{bottom:847.333333pt;}
.y5{bottom:857.093333pt;}
.y20{bottom:858.053333pt;}
.y39{bottom:862.693333pt;}
.y4{bottom:885.253333pt;}
.y1f{bottom:887.653333pt;}
.y38{bottom:890.213333pt;}
.y1{bottom:908.453333pt;}
.h5{height:4.220000pt;}
.h3{height:4.315000pt;}
.h6{height:35.342500pt;}
.hc{height:45.156250pt;}
.hb{height:48.530000pt;}
.h1{height:49.622500pt;}
.h7{height:52.750000pt;}
.h9{height:52.832812pt;}
.h8{height:53.406250pt;}
.ha{height:53.937500pt;}
.h2{height:60.057813pt;}
.h4{height:60.747187pt;}
.he{height:67.734375pt;}
.h10{height:67.824688pt;}
.hf{height:80.109375pt;}
.hd{height:304.640000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x22{left:90.591988pt;}
.x1f{left:96.031988pt;}
.x20{left:98.591988pt;}
.xa{left:101.151988pt;}
.x21{left:110.591988pt;}
.x1{left:120.031988pt;}
.xe{left:127.391988pt;}
.x3{left:129.471988pt;}
.x7{left:156.346655pt;}
.x4{left:162.266655pt;}
.x8{left:217.466655pt;}
.x1a{left:233.279988pt;}
.x19{left:235.999988pt;}
.x10{left:237.306655pt;}
.x18{left:244.799988pt;}
.xf{left:252.026655pt;}
.x9{left:254.946655pt;}
.x11{left:264.026655pt;}
.xc{left:295.746655pt;}
.x5{left:313.346655pt;}
.x14{left:376.093321pt;}
.x12{left:378.013321pt;}
.x13{left:394.813321pt;}
.x1c{left:402.173321pt;}
.x1b{left:409.533321pt;}
.x6{left:417.666655pt;}
.x1e{left:516.319988pt;}
.x16{left:517.759988pt;}
.x1d{left:528.159988pt;}
.x15{left:535.679988pt;}
.x17{left:543.679988pt;}
.x2{left:614.693321pt;}
.xd{left:618.693321pt;}
.xb{left:647.173321pt;}
}




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