
    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_07b2d4a8fa3fd823dbcb1f5b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ed6deb4fcbdedb74e6e069c6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c269f145c73b73525338da30.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_613fa88f133ed7c2ffef83fa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2e0bef2b609e8c6df811b7de.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls13{letter-spacing:-3.546000px;}
.ls18{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.037440px;}
.ls1c{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.460200px;}
.lsc{letter-spacing:0.511800px;}
.ls14{letter-spacing:0.513600px;}
.lsf{letter-spacing:0.666000px;}
.ls9{letter-spacing:0.756000px;}
.ls11{letter-spacing:0.828000px;}
.ls16{letter-spacing:0.900000px;}
.ls1e{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.134720px;}
.ls2{letter-spacing:1.330560px;}
.ls1{letter-spacing:1.440000px;}
.ls6{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls5{letter-spacing:1.620000px;}
.ls4{letter-spacing:1.702080px;}
.ls3{letter-spacing:1.745280px;}
.ls1b{letter-spacing:11.466720px;}
.ls1a{letter-spacing:41.850720px;}
.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;}
}
.ws3{word-spacing:-23.977440px;}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.020000px;}
.ws9{word-spacing:-15.606000px;}
.wsb{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-2598.726000px;}
._9{margin-left:-1589.253840px;}
._6{margin-left:-1365.863040px;}
._8{margin-left:-989.048880px;}
._a{margin-left:-574.511760px;}
._7{margin-left:-8.213760px;}
._1d{margin-left:-6.264000px;}
._b{margin-left:-5.022960px;}
._e{margin-left:-3.906720px;}
._1{margin-left:-2.862000px;}
._2{margin-left:-1.620000px;}
._0{width:1.296000px;}
._16{width:2.319840px;}
._4{width:3.330000px;}
._3{width:4.404000px;}
._f{width:5.755200px;}
._11{width:7.455840px;}
._10{width:8.485920px;}
._14{width:9.561600px;}
._13{width:10.756800px;}
._15{width:12.590400px;}
._1b{width:13.692000px;}
._1c{width:16.912080px;}
._18{width:18.239040px;}
._17{width:20.378160px;}
._12{width:21.752640px;}
._19{width:23.430720px;}
._1a{width:24.564000px;}
._20{width:27.620640px;}
._21{width:30.350880px;}
._1f{width:31.739760px;}
._22{width:33.028560px;}
._1e{width:44.222400px;}
._c{width:61.502880px;}
._d{width:63.297360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:3.780000px;}
.ye0{bottom:21.060000px;}
.y6{bottom:61.056000px;}
.yf5{bottom:89.316000px;}
.y9f{bottom:91.116000px;}
.y6a{bottom:94.716000px;}
.y34{bottom:100.296000px;}
.yf4{bottom:109.116000px;}
.y9e{bottom:110.916000px;}
.y69{bottom:114.696000px;}
.y33{bottom:120.276000px;}
.yf3{bottom:128.916000px;}
.y9d{bottom:130.716000px;}
.y68{bottom:134.496000px;}
.y32{bottom:140.076000px;}
.yf2{bottom:148.716000px;}
.y9c{bottom:150.690000px;}
.y67{bottom:154.290000px;}
.y31{bottom:159.870000px;}
.yf1{bottom:168.690000px;}
.y9b{bottom:170.490000px;}
.y66{bottom:174.090000px;}
.y30{bottom:179.670000px;}
.yf0{bottom:188.490000px;}
.y9a{bottom:190.290000px;}
.y65{bottom:193.890000px;}
.y2f{bottom:199.470000px;}
.yef{bottom:208.290000px;}
.y99{bottom:210.090000px;}
.yc0{bottom:213.510000px;}
.y64{bottom:213.870000px;}
.y2e{bottom:219.450000px;}
.yee{bottom:228.090000px;}
.y98{bottom:229.890000px;}
.y63{bottom:233.670000px;}
.y2d{bottom:239.250000px;}
.ybf{bottom:242.670000px;}
.yed{bottom:247.890000px;}
.y97{bottom:249.870000px;}
.y62{bottom:253.470000px;}
.y2c{bottom:259.050000px;}
.ybe{bottom:262.470000px;}
.yec{bottom:267.870000px;}
.y96{bottom:269.670000px;}
.y61{bottom:273.270000px;}
.y2b{bottom:278.850000px;}
.ybd{bottom:282.270000px;}
.yeb{bottom:287.670000px;}
.y95{bottom:289.470000px;}
.y60{bottom:293.070000px;}
.y2a{bottom:298.650000px;}
.ybc{bottom:302.070000px;}
.yea{bottom:307.470000px;}
.y94{bottom:309.270000px;}
.y5f{bottom:313.050000px;}
.y29{bottom:318.630000px;}
.ybb{bottom:322.050000px;}
.ye9{bottom:327.270000px;}
.y93{bottom:329.115000px;}
.y5e{bottom:332.895000px;}
.y28{bottom:338.475000px;}
.yba{bottom:341.895000px;}
.ye8{bottom:347.115000px;}
.y92{bottom:349.095000px;}
.y5d{bottom:352.335000px;}
.y27{bottom:358.275000px;}
.yb9{bottom:361.695000px;}
.ye7{bottom:367.095000px;}
.y91{bottom:368.895000px;}
.y26{bottom:378.075000px;}
.y5c{bottom:381.495000px;}
.ye6{bottom:386.535000px;}
.y90{bottom:388.695000px;}
.y25{bottom:397.875000px;}
.y5b{bottom:401.295000px;}
.ye5{bottom:406.335000px;}
.yf9{bottom:408.135000px;}
.y8f{bottom:408.495000px;}
.y24{bottom:417.855000px;}
.yb8{bottom:420.915000px;}
.ye4{bottom:421.095000px;}
.y5a{bottom:421.275000px;}
.y8e{bottom:428.295000px;}
.y23{bottom:437.655000px;}
.y59{bottom:441.075000px;}
.y8d{bottom:448.275000px;}
.yb7{bottom:450.075000px;}
.ye3{bottom:456.375000px;}
.y22{bottom:457.455000px;}
.y58{bottom:460.875000px;}
.y8c{bottom:468.075000px;}
.yb6{bottom:469.875000px;}
.ye2{bottom:474.375000px;}
.y21{bottom:476.895000px;}
.y57{bottom:480.675000px;}
.y8b{bottom:487.875000px;}
.yb5{bottom:489.675000px;}
.ye1{bottom:492.375000px;}
.y20{bottom:497.055000px;}
.y56{bottom:500.475000px;}
.y8a{bottom:507.315000px;}
.yf8{bottom:507.675000px;}
.yb4{bottom:509.475000px;}
.ydf{bottom:510.375000px;}
.y1f{bottom:519.195000px;}
.y55{bottom:520.455000px;}
.y89{bottom:527.475000px;}
.yb3{bottom:529.455000px;}
.y1e{bottom:538.995000px;}
.y54{bottom:539.895000px;}
.y88{bottom:547.455000px;}
.yb2{bottom:549.255000px;}
.yde{bottom:551.775000px;}
.y1d{bottom:557.535000px;}
.y87{bottom:567.255000px;}
.yb1{bottom:568.695000px;}
.y53{bottom:569.055000px;}
.ydd{bottom:571.575000px;}
.y1c{bottom:574.815000px;}
.y86{bottom:587.055000px;}
.y52{bottom:588.855000px;}
.ydc{bottom:591.015000px;}
.y1b{bottom:594.615000px;}
.yb0{bottom:597.885000px;}
.y85{bottom:606.885000px;}
.y51{bottom:608.685000px;}
.ydb{bottom:611.025000px;}
.y1a{bottom:614.445000px;}
.yaf{bottom:617.685000px;}
.y84{bottom:626.685000px;}
.y50{bottom:628.665000px;}
.yda{bottom:630.825000px;}
.y19{bottom:634.245000px;}
.yae{bottom:637.665000px;}
.y83{bottom:646.665000px;}
.y4f{bottom:648.465000px;}
.yd9{bottom:650.625000px;}
.y18{bottom:654.045000px;}
.yad{bottom:657.465000px;}
.y82{bottom:666.465000px;}
.y4e{bottom:668.265000px;}
.yd8{bottom:670.425000px;}
.y17{bottom:674.025000px;}
.yac{bottom:677.265000px;}
.yd7{bottom:685.185000px;}
.yfa{bottom:685.905000px;}
.y81{bottom:686.265000px;}
.y4d{bottom:688.065000px;}
.y16{bottom:693.825000px;}
.yab{bottom:697.065000px;}
.yd6{bottom:703.185000px;}
.y80{bottom:706.065000px;}
.y4c{bottom:707.865000px;}
.y15{bottom:713.625000px;}
.yaa{bottom:716.865000px;}
.yd5{bottom:721.185000px;}
.y7f{bottom:725.865000px;}
.y4b{bottom:727.845000px;}
.y14{bottom:733.425000px;}
.ya9{bottom:736.845000px;}
.yd4{bottom:739.185000px;}
.y7e{bottom:745.845000px;}
.y4a{bottom:747.645000px;}
.y13{bottom:753.225000px;}
.ya8{bottom:756.645000px;}
.yd3{bottom:763.305000px;}
.y7d{bottom:765.645000px;}
.y49{bottom:767.445000px;}
.y12{bottom:773.205000px;}
.ya7{bottom:776.445000px;}
.yd2{bottom:783.285000px;}
.y7c{bottom:785.445000px;}
.y48{bottom:787.245000px;}
.y11{bottom:793.005000px;}
.ya6{bottom:796.245000px;}
.yd1{bottom:802.725000px;}
.yf7{bottom:804.885000px;}
.y7b{bottom:805.245000px;}
.y47{bottom:807.045000px;}
.y10{bottom:812.805000px;}
.ya5{bottom:816.045000px;}
.yd0{bottom:822.885000px;}
.y7a{bottom:825.045000px;}
.y46{bottom:827.025000px;}
.yf{bottom:834.945000px;}
.ya4{bottom:836.025000px;}
.ycf{bottom:842.685000px;}
.y79{bottom:845.025000px;}
.y45{bottom:846.825000px;}
.ya3{bottom:855.825000px;}
.ye{bottom:859.965000px;}
.yce{bottom:862.170000px;}
.y78{bottom:864.870000px;}
.y44{bottom:866.670000px;}
.ya2{bottom:875.670000px;}
.yd{bottom:879.810000px;}
.ycd{bottom:882.150000px;}
.y77{bottom:884.670000px;}
.y43{bottom:886.470000px;}
.ya1{bottom:895.110000px;}
.ycc{bottom:896.910000px;}
.yc{bottom:899.610000px;}
.y76{bottom:904.470000px;}
.y42{bottom:905.910000px;}
.yb{bottom:914.730000px;}
.ycb{bottom:914.910000px;}
.y75{bottom:924.270000px;}
.yca{bottom:932.910000px;}
.y41{bottom:935.250000px;}
.ya{bottom:941.370000px;}
.y74{bottom:944.250000px;}
.yc9{bottom:950.910000px;}
.y40{bottom:955.050000px;}
.y9{bottom:959.190000px;}
.y73{bottom:964.050000px;}
.yc8{bottom:968.910000px;}
.y3f{bottom:974.850000px;}
.y72{bottom:983.850000px;}
.yc7{bottom:986.910000px;}
.y8{bottom:990.870000px;}
.y3e{bottom:994.650000px;}
.y71{bottom:1003.650000px;}
.yc6{bottom:1004.910000px;}
.y3d{bottom:1014.450000px;}
.y7{bottom:1022.730000px;}
.yc5{bottom:1022.910000px;}
.y70{bottom:1023.450000px;}
.y3c{bottom:1034.430000px;}
.yc4{bottom:1040.910000px;}
.y6f{bottom:1043.430000px;}
.y3b{bottom:1054.230000px;}
.yc2{bottom:1058.910000px;}
.y5{bottom:1061.610000px;}
.ya0{bottom:1062.870000px;}
.y6e{bottom:1063.230000px;}
.y3a{bottom:1074.030000px;}
.yf6{bottom:1082.670000px;}
.y6d{bottom:1083.030000px;}
.y4{bottom:1092.390000px;}
.y39{bottom:1093.470000px;}
.y6c{bottom:1102.830000px;}
.y38{bottom:1113.270000px;}
.y6b{bottom:1122.630000px;}
.y3{bottom:1123.350000px;}
.yc1{bottom:1142.280000px;}
.y37{bottom:1142.640000px;}
.y2{bottom:1154.160000px;}
.y36{bottom:1171.800000px;}
.y1{bottom:1184.580000px;}
.y35{bottom:1193.580000px;}
.he{height:17.280000px;}
.h10{height:34.560000px;}
.h8{height:37.771172px;}
.h6{height:38.158594px;}
.hf{height:42.164648px;}
.ha{height:42.894141px;}
.hc{height:46.736719px;}
.hb{height:47.344922px;}
.h9{height:58.651172px;}
.h11{height:61.423863px;}
.hd{height:62.211094px;}
.h3{height:65.010937px;}
.h7{height:67.232813px;}
.h4{height:67.565039px;}
.h2{height:68.956875px;}
.h5{height:93.983203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:126.360000px;}
.w6{width:222.690000px;}
.w3{width:349.770000px;}
.w4{width:349.995000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:3.599987px;}
.x3{left:7.560000px;}
.x1{left:54.179987px;}
.x5{left:59.579987px;}
.x8{left:62.639987px;}
.xc{left:80.999987px;}
.x2{left:96.336000px;}
.x6{left:101.555987px;}
.xd{left:108.035987px;}
.xa{left:223.410000px;}
.x7{left:271.829987px;}
.x9{left:365.114987px;}
.xb{left:383.474987px;}
.x4{left:446.835000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-3.152000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.033280pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.409067pt;}
.lsc{letter-spacing:0.454933pt;}
.ls14{letter-spacing:0.456533pt;}
.lsf{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.672000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.008640pt;}
.ls2{letter-spacing:1.182720pt;}
.ls1{letter-spacing:1.280000pt;}
.ls6{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls5{letter-spacing:1.440000pt;}
.ls4{letter-spacing:1.512960pt;}
.ls3{letter-spacing:1.551360pt;}
.ls1b{letter-spacing:10.192640pt;}
.ls1a{letter-spacing:37.200640pt;}
.ws3{word-spacing:-21.313280pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.240000pt;}
.ws9{word-spacing:-13.872000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-2309.978667pt;}
._9{margin-left:-1412.670080pt;}
._6{margin-left:-1214.100480pt;}
._8{margin-left:-879.154560pt;}
._a{margin-left:-510.677120pt;}
._7{margin-left:-7.301120pt;}
._1d{margin-left:-5.568000pt;}
._b{margin-left:-4.464853pt;}
._e{margin-left:-3.472640pt;}
._1{margin-left:-2.544000pt;}
._2{margin-left:-1.440000pt;}
._0{width:1.152000pt;}
._16{width:2.062080pt;}
._4{width:2.960000pt;}
._3{width:3.914667pt;}
._f{width:5.115733pt;}
._11{width:6.627413pt;}
._10{width:7.543040pt;}
._14{width:8.499200pt;}
._13{width:9.561600pt;}
._15{width:11.191467pt;}
._1b{width:12.170667pt;}
._1c{width:15.032960pt;}
._18{width:16.212480pt;}
._17{width:18.113920pt;}
._12{width:19.335680pt;}
._19{width:20.827307pt;}
._1a{width:21.834667pt;}
._20{width:24.551680pt;}
._21{width:26.978560pt;}
._1f{width:28.213120pt;}
._22{width:29.358720pt;}
._1e{width:39.308800pt;}
._c{width:54.669227pt;}
._d{width:56.264320pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:3.360000pt;}
.ye0{bottom:18.720000pt;}
.y6{bottom:54.272000pt;}
.yf5{bottom:79.392000pt;}
.y9f{bottom:80.992000pt;}
.y6a{bottom:84.192000pt;}
.y34{bottom:89.152000pt;}
.yf4{bottom:96.992000pt;}
.y9e{bottom:98.592000pt;}
.y69{bottom:101.952000pt;}
.y33{bottom:106.912000pt;}
.yf3{bottom:114.592000pt;}
.y9d{bottom:116.192000pt;}
.y68{bottom:119.552000pt;}
.y32{bottom:124.512000pt;}
.yf2{bottom:132.192000pt;}
.y9c{bottom:133.946667pt;}
.y67{bottom:137.146667pt;}
.y31{bottom:142.106667pt;}
.yf1{bottom:149.946667pt;}
.y9b{bottom:151.546667pt;}
.y66{bottom:154.746667pt;}
.y30{bottom:159.706667pt;}
.yf0{bottom:167.546667pt;}
.y9a{bottom:169.146667pt;}
.y65{bottom:172.346667pt;}
.y2f{bottom:177.306667pt;}
.yef{bottom:185.146667pt;}
.y99{bottom:186.746667pt;}
.yc0{bottom:189.786667pt;}
.y64{bottom:190.106667pt;}
.y2e{bottom:195.066667pt;}
.yee{bottom:202.746667pt;}
.y98{bottom:204.346667pt;}
.y63{bottom:207.706667pt;}
.y2d{bottom:212.666667pt;}
.ybf{bottom:215.706667pt;}
.yed{bottom:220.346667pt;}
.y97{bottom:222.106667pt;}
.y62{bottom:225.306667pt;}
.y2c{bottom:230.266667pt;}
.ybe{bottom:233.306667pt;}
.yec{bottom:238.106667pt;}
.y96{bottom:239.706667pt;}
.y61{bottom:242.906667pt;}
.y2b{bottom:247.866667pt;}
.ybd{bottom:250.906667pt;}
.yeb{bottom:255.706667pt;}
.y95{bottom:257.306667pt;}
.y60{bottom:260.506667pt;}
.y2a{bottom:265.466667pt;}
.ybc{bottom:268.506667pt;}
.yea{bottom:273.306667pt;}
.y94{bottom:274.906667pt;}
.y5f{bottom:278.266667pt;}
.y29{bottom:283.226667pt;}
.ybb{bottom:286.266667pt;}
.ye9{bottom:290.906667pt;}
.y93{bottom:292.546667pt;}
.y5e{bottom:295.906667pt;}
.y28{bottom:300.866667pt;}
.yba{bottom:303.906667pt;}
.ye8{bottom:308.546667pt;}
.y92{bottom:310.306667pt;}
.y5d{bottom:313.186667pt;}
.y27{bottom:318.466667pt;}
.yb9{bottom:321.506667pt;}
.ye7{bottom:326.306667pt;}
.y91{bottom:327.906667pt;}
.y26{bottom:336.066667pt;}
.y5c{bottom:339.106667pt;}
.ye6{bottom:343.586667pt;}
.y90{bottom:345.506667pt;}
.y25{bottom:353.666667pt;}
.y5b{bottom:356.706667pt;}
.ye5{bottom:361.186667pt;}
.yf9{bottom:362.786667pt;}
.y8f{bottom:363.106667pt;}
.y24{bottom:371.426667pt;}
.yb8{bottom:374.146667pt;}
.ye4{bottom:374.306667pt;}
.y5a{bottom:374.466667pt;}
.y8e{bottom:380.706667pt;}
.y23{bottom:389.026667pt;}
.y59{bottom:392.066667pt;}
.y8d{bottom:398.466667pt;}
.yb7{bottom:400.066667pt;}
.ye3{bottom:405.666667pt;}
.y22{bottom:406.626667pt;}
.y58{bottom:409.666667pt;}
.y8c{bottom:416.066667pt;}
.yb6{bottom:417.666667pt;}
.ye2{bottom:421.666667pt;}
.y21{bottom:423.906667pt;}
.y57{bottom:427.266667pt;}
.y8b{bottom:433.666667pt;}
.yb5{bottom:435.266667pt;}
.ye1{bottom:437.666667pt;}
.y20{bottom:441.826667pt;}
.y56{bottom:444.866667pt;}
.y8a{bottom:450.946667pt;}
.yf8{bottom:451.266667pt;}
.yb4{bottom:452.866667pt;}
.ydf{bottom:453.666667pt;}
.y1f{bottom:461.506667pt;}
.y55{bottom:462.626667pt;}
.y89{bottom:468.866667pt;}
.yb3{bottom:470.626667pt;}
.y1e{bottom:479.106667pt;}
.y54{bottom:479.906667pt;}
.y88{bottom:486.626667pt;}
.yb2{bottom:488.226667pt;}
.yde{bottom:490.466667pt;}
.y1d{bottom:495.586667pt;}
.y87{bottom:504.226667pt;}
.yb1{bottom:505.506667pt;}
.y53{bottom:505.826667pt;}
.ydd{bottom:508.066667pt;}
.y1c{bottom:510.946667pt;}
.y86{bottom:521.826667pt;}
.y52{bottom:523.426667pt;}
.ydc{bottom:525.346667pt;}
.y1b{bottom:528.546667pt;}
.yb0{bottom:531.453333pt;}
.y85{bottom:539.453333pt;}
.y51{bottom:541.053333pt;}
.ydb{bottom:543.133333pt;}
.y1a{bottom:546.173333pt;}
.yaf{bottom:549.053333pt;}
.y84{bottom:557.053333pt;}
.y50{bottom:558.813333pt;}
.yda{bottom:560.733333pt;}
.y19{bottom:563.773333pt;}
.yae{bottom:566.813333pt;}
.y83{bottom:574.813333pt;}
.y4f{bottom:576.413333pt;}
.yd9{bottom:578.333333pt;}
.y18{bottom:581.373333pt;}
.yad{bottom:584.413333pt;}
.y82{bottom:592.413333pt;}
.y4e{bottom:594.013333pt;}
.yd8{bottom:595.933333pt;}
.y17{bottom:599.133333pt;}
.yac{bottom:602.013333pt;}
.yd7{bottom:609.053333pt;}
.yfa{bottom:609.693333pt;}
.y81{bottom:610.013333pt;}
.y4d{bottom:611.613333pt;}
.y16{bottom:616.733333pt;}
.yab{bottom:619.613333pt;}
.yd6{bottom:625.053333pt;}
.y80{bottom:627.613333pt;}
.y4c{bottom:629.213333pt;}
.y15{bottom:634.333333pt;}
.yaa{bottom:637.213333pt;}
.yd5{bottom:641.053333pt;}
.y7f{bottom:645.213333pt;}
.y4b{bottom:646.973333pt;}
.y14{bottom:651.933333pt;}
.ya9{bottom:654.973333pt;}
.yd4{bottom:657.053333pt;}
.y7e{bottom:662.973333pt;}
.y4a{bottom:664.573333pt;}
.y13{bottom:669.533333pt;}
.ya8{bottom:672.573333pt;}
.yd3{bottom:678.493333pt;}
.y7d{bottom:680.573333pt;}
.y49{bottom:682.173333pt;}
.y12{bottom:687.293333pt;}
.ya7{bottom:690.173333pt;}
.yd2{bottom:696.253333pt;}
.y7c{bottom:698.173333pt;}
.y48{bottom:699.773333pt;}
.y11{bottom:704.893333pt;}
.ya6{bottom:707.773333pt;}
.yd1{bottom:713.533333pt;}
.yf7{bottom:715.453333pt;}
.y7b{bottom:715.773333pt;}
.y47{bottom:717.373333pt;}
.y10{bottom:722.493333pt;}
.ya5{bottom:725.373333pt;}
.yd0{bottom:731.453333pt;}
.y7a{bottom:733.373333pt;}
.y46{bottom:735.133333pt;}
.yf{bottom:742.173333pt;}
.ya4{bottom:743.133333pt;}
.ycf{bottom:749.053333pt;}
.y79{bottom:751.133333pt;}
.y45{bottom:752.733333pt;}
.ya3{bottom:760.733333pt;}
.ye{bottom:764.413333pt;}
.yce{bottom:766.373333pt;}
.y78{bottom:768.773333pt;}
.y44{bottom:770.373333pt;}
.ya2{bottom:778.373333pt;}
.yd{bottom:782.053333pt;}
.ycd{bottom:784.133333pt;}
.y77{bottom:786.373333pt;}
.y43{bottom:787.973333pt;}
.ya1{bottom:795.653333pt;}
.ycc{bottom:797.253333pt;}
.yc{bottom:799.653333pt;}
.y76{bottom:803.973333pt;}
.y42{bottom:805.253333pt;}
.yb{bottom:813.093333pt;}
.ycb{bottom:813.253333pt;}
.y75{bottom:821.573333pt;}
.yca{bottom:829.253333pt;}
.y41{bottom:831.333333pt;}
.ya{bottom:836.773333pt;}
.y74{bottom:839.333333pt;}
.yc9{bottom:845.253333pt;}
.y40{bottom:848.933333pt;}
.y9{bottom:852.613333pt;}
.y73{bottom:856.933333pt;}
.yc8{bottom:861.253333pt;}
.y3f{bottom:866.533333pt;}
.y72{bottom:874.533333pt;}
.yc7{bottom:877.253333pt;}
.y8{bottom:880.773333pt;}
.y3e{bottom:884.133333pt;}
.y71{bottom:892.133333pt;}
.yc6{bottom:893.253333pt;}
.y3d{bottom:901.733333pt;}
.y7{bottom:909.093333pt;}
.yc5{bottom:909.253333pt;}
.y70{bottom:909.733333pt;}
.y3c{bottom:919.493333pt;}
.yc4{bottom:925.253333pt;}
.y6f{bottom:927.493333pt;}
.y3b{bottom:937.093333pt;}
.yc2{bottom:941.253333pt;}
.y5{bottom:943.653333pt;}
.ya0{bottom:944.773333pt;}
.y6e{bottom:945.093333pt;}
.y3a{bottom:954.693333pt;}
.yf6{bottom:962.373333pt;}
.y6d{bottom:962.693333pt;}
.y4{bottom:971.013333pt;}
.y39{bottom:971.973333pt;}
.y6c{bottom:980.293333pt;}
.y38{bottom:989.573333pt;}
.y6b{bottom:997.893333pt;}
.y3{bottom:998.533333pt;}
.yc1{bottom:1015.360000pt;}
.y37{bottom:1015.680000pt;}
.y2{bottom:1025.920000pt;}
.y36{bottom:1041.600000pt;}
.y1{bottom:1052.960000pt;}
.y35{bottom:1060.960000pt;}
.he{height:15.360000pt;}
.h10{height:30.720000pt;}
.h8{height:33.574375pt;}
.h6{height:33.918750pt;}
.hf{height:37.479688pt;}
.ha{height:38.128125pt;}
.hc{height:41.543750pt;}
.hb{height:42.084375pt;}
.h9{height:52.134375pt;}
.h11{height:54.598989pt;}
.hd{height:55.298750pt;}
.h3{height:57.787500pt;}
.h7{height:59.762500pt;}
.h4{height:60.057813pt;}
.h2{height:61.295000pt;}
.h5{height:83.540625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:112.320000pt;}
.w6{width:197.946667pt;}
.w3{width:310.906667pt;}
.w4{width:311.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.199988pt;}
.x3{left:6.720000pt;}
.x1{left:48.159988pt;}
.x5{left:52.959988pt;}
.x8{left:55.679988pt;}
.xc{left:71.999988pt;}
.x2{left:85.632000pt;}
.x6{left:90.271988pt;}
.xd{left:96.031988pt;}
.xa{left:198.586667pt;}
.x7{left:241.626655pt;}
.x9{left:324.546655pt;}
.xb{left:340.866655pt;}
.x4{left:397.186667pt;}
}




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