
    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_32ec64436357b3c6758d8d36.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_0fe9e79611e35d0c1f26c431.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_bc076afcecc91929accd08a7.woff')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_59e3d8e4a3e9e43599631445.woff')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_04fc63ce452a0dfbe792a6a6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_0c0a9e137d584d19d16e04d3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_999cc013e924405146c43560.woff')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_50fce8a0b245c333e254e99c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_75e5064a94a76d4f2661eb8d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_701bd61b4725b040cd49984c.woff')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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.690000px;}
.lsd{letter-spacing:-0.684000px;}
.ls4{letter-spacing:-0.262200px;}
.lsc{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.024480px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.187200px;}
.ls5{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.540000px;}
.lse{letter-spacing:4.140000px;}
.ls19{letter-spacing:8.460000px;}
.ls1a{letter-spacing:9.180000px;}
.ls13{letter-spacing:15.660000px;}
.lsb{letter-spacing:18.540000px;}
.ls2{letter-spacing:18.720000px;}
.ls15{letter-spacing:19.980000px;}
.ls17{letter-spacing:26.460000px;}
.ls10{letter-spacing:29.340000px;}
.ls16{letter-spacing:37.260000px;}
.ls11{letter-spacing:43.740000px;}
.ls14{letter-spacing:44.460000px;}
.ls7{letter-spacing:83.340000px;}
.ls18{letter-spacing:87.461280px;}
.ls12{letter-spacing:129.221280px;}
.ls8{letter-spacing:172.026720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-21.795720px;}
.ws2{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.097440px;}
.ws8{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-21.035520px;}
.ws3{word-spacing:-20.370000px;}
.ws4{word-spacing:0.000000px;}
._3d{margin-left:-6.251040px;}
._14{margin-left:-5.206320px;}
._4c{margin-left:-4.204080px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.869840px;}
._2{width:1.221840px;}
._3{width:2.273760px;}
._10{width:4.044240px;}
._f{width:5.196960px;}
._2e{width:6.233760px;}
._15{width:7.555680px;}
._5{width:8.936880px;}
._4{width:10.024560px;}
._24{width:11.246400px;}
._23{width:12.458160px;}
._29{width:14.068080px;}
._28{width:15.264000px;}
._49{width:16.384320px;}
._2d{width:17.454240px;}
._7{width:18.786000px;}
._6{width:19.897200px;}
._36{width:22.407840px;}
._21{width:23.435280px;}
._25{width:25.187760px;}
._22{width:26.553600px;}
._11{width:27.967680px;}
._12{width:29.386560px;}
._31{width:30.427200px;}
._33{width:31.443600px;}
._18{width:33.174720px;}
._16{width:34.259760px;}
._17{width:35.313120px;}
._19{width:36.967680px;}
._27{width:37.992240px;}
._26{width:39.356640px;}
._a{width:41.024880px;}
._b{width:42.305040px;}
._46{width:43.498560px;}
._30{width:45.118560px;}
._4b{width:46.550880px;}
._32{width:48.247680px;}
._1f{width:49.692240px;}
._1e{width:50.813280px;}
._2c{width:52.750800px;}
._48{width:53.762400px;}
._38{width:54.822960px;}
._13{width:56.120400px;}
._d{width:57.805200px;}
._c{width:58.816080px;}
._3c{width:60.121440px;}
._2a{width:61.326720px;}
._2b{width:62.337600px;}
._2f{width:64.527840px;}
._44{width:65.623440px;}
._43{width:66.653760px;}
._e{width:69.303600px;}
._37{width:70.845840px;}
._4a{width:72.614880px;}
._40{width:74.299680px;}
._41{width:76.035120px;}
._47{width:77.456400px;}
._1b{width:82.908720px;}
._1a{width:84.071520px;}
._1c{width:86.235840px;}
._1d{width:87.289200px;}
._20{width:89.010000px;}
._45{width:90.019200px;}
._3e{width:96.091920px;}
._3f{width:98.580480px;}
._42{width:102.996720px;}
._3a{width:105.040560px;}
._3b{width:106.149120px;}
._39{width:107.257440px;}
._34{width:111.281040px;}
._35{width:112.392720px;}
._9{width:128.145600px;}
._8{width:130.083120px;}
.fc2{color:rgb(79,97,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,192,0);}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:8.100000px;}
.y63{bottom:8.145000px;}
.y66{bottom:8.280000px;}
.y7{bottom:12.960000px;}
.y5e{bottom:35.820000px;}
.y6{bottom:39.420000px;}
.y5{bottom:57.600000px;}
.y5d{bottom:63.540000px;}
.y5c{bottom:91.440000px;}
.y2b{bottom:102.456000px;}
.y5a{bottom:108.576000px;}
.y7e{bottom:110.736000px;}
.ybd{bottom:113.076000px;}
.y81{bottom:129.636000px;}
.y2a{bottom:130.356000px;}
.y9f{bottom:135.576000px;}
.y59{bottom:136.296000px;}
.y7d{bottom:138.636000px;}
.ybc{bottom:148.356000px;}
.y80{bottom:157.350000px;}
.y29{bottom:158.070000px;}
.y9e{bottom:163.290000px;}
.y58{bottom:164.190000px;}
.y45{bottom:164.910000px;}
.y7c{bottom:166.350000px;}
.ybb{bottom:176.070000px;}
.y28{bottom:185.790000px;}
.y9d{bottom:191.190000px;}
.y57{bottom:191.910000px;}
.y44{bottom:192.630000px;}
.y7b{bottom:194.070000px;}
.yba{bottom:203.790000px;}
.y27{bottom:213.510000px;}
.y9c{bottom:218.910000px;}
.y56{bottom:219.630000px;}
.y43{bottom:220.350000px;}
.y7a{bottom:221.970000px;}
.yb9{bottom:231.690000px;}
.y26{bottom:241.410000px;}
.y9b{bottom:246.630000px;}
.y55{bottom:247.530000px;}
.y42{bottom:248.070000px;}
.y79{bottom:249.690000px;}
.yb8{bottom:259.410000px;}
.y25{bottom:269.130000px;}
.y9a{bottom:274.530000px;}
.y54{bottom:275.250000px;}
.y41{bottom:275.970000px;}
.y78{bottom:277.410000px;}
.yb7{bottom:287.130000px;}
.y24{bottom:296.850000px;}
.y99{bottom:302.250000px;}
.y53{bottom:302.970000px;}
.y40{bottom:303.690000px;}
.y77{bottom:305.130000px;}
.yb6{bottom:315.030000px;}
.y23{bottom:324.750000px;}
.y98{bottom:329.970000px;}
.y3f{bottom:331.410000px;}
.yb5{bottom:342.795000px;}
.y52{bottom:351.795000px;}
.y22{bottom:352.515000px;}
.y76{bottom:353.955000px;}
.y97{bottom:357.735000px;}
.y3e{bottom:359.175000px;}
.yb4{bottom:370.515000px;}
.y51{bottom:379.515000px;}
.y21{bottom:380.235000px;}
.y75{bottom:381.855000px;}
.y96{bottom:385.455000px;}
.y3d{bottom:387.075000px;}
.yb3{bottom:398.235000px;}
.y50{bottom:407.415000px;}
.y20{bottom:407.955000px;}
.y74{bottom:409.575000px;}
.y3c{bottom:414.795000px;}
.yb2{bottom:426.135000px;}
.y95{bottom:434.415000px;}
.y4f{bottom:435.135000px;}
.y1f{bottom:435.855000px;}
.y73{bottom:437.295000px;}
.y3b{bottom:442.515000px;}
.yb1{bottom:453.855000px;}
.y94{bottom:462.135000px;}
.y4e{bottom:462.855000px;}
.y1e{bottom:463.575000px;}
.y72{bottom:465.015000px;}
.y3a{bottom:470.415000px;}
.yb0{bottom:481.575000px;}
.y93{bottom:489.855000px;}
.y1d{bottom:491.295000px;}
.y71{bottom:492.915000px;}
.y39{bottom:498.135000px;}
.yaf{bottom:509.295000px;}
.y4d{bottom:511.635000px;}
.y92{bottom:517.575000px;}
.y1c{bottom:519.195000px;}
.y70{bottom:520.635000px;}
.y38{bottom:525.855000px;}
.yae{bottom:537.195000px;}
.y4c{bottom:539.355000px;}
.y91{bottom:545.475000px;}
.y1b{bottom:546.915000px;}
.y6f{bottom:548.355000px;}
.y37{bottom:553.575000px;}
.yad{bottom:564.915000px;}
.y4b{bottom:567.255000px;}
.y90{bottom:573.195000px;}
.y1a{bottom:574.635000px;}
.y6e{bottom:576.255000px;}
.y36{bottom:581.475000px;}
.yac{bottom:592.635000px;}
.y4a{bottom:594.975000px;}
.y8f{bottom:600.915000px;}
.y19{bottom:602.355000px;}
.y6d{bottom:603.975000px;}
.y35{bottom:609.225000px;}
.yab{bottom:620.565000px;}
.y49{bottom:622.725000px;}
.y8e{bottom:628.845000px;}
.y18{bottom:630.285000px;}
.y6c{bottom:631.725000px;}
.y34{bottom:636.945000px;}
.yaa{bottom:648.285000px;}
.y8d{bottom:656.565000px;}
.y17{bottom:658.005000px;}
.y6b{bottom:659.445000px;}
.y33{bottom:664.845000px;}
.y48{bottom:671.505000px;}
.ya9{bottom:683.565000px;}
.y8c{bottom:684.285000px;}
.y16{bottom:685.725000px;}
.y6a{bottom:687.345000px;}
.y32{bottom:692.565000px;}
.ya8{bottom:711.285000px;}
.y8b{bottom:712.005000px;}
.y15{bottom:713.445000px;}
.y69{bottom:715.065000px;}
.y31{bottom:720.285000px;}
.y14{bottom:741.345000px;}
.ya7{bottom:746.565000px;}
.y30{bottom:748.005000px;}
.y8a{bottom:760.785000px;}
.y68{bottom:763.845000px;}
.y13{bottom:769.065000px;}
.ya6{bottom:774.285000px;}
.y2f{bottom:775.905000px;}
.y89{bottom:788.685000px;}
.y67{bottom:791.565000px;}
.yc1{bottom:794.625000px;}
.y12{bottom:796.785000px;}
.ya5{bottom:802.005000px;}
.y2e{bottom:803.625000px;}
.y65{bottom:811.905000px;}
.y88{bottom:816.405000px;}
.yc0{bottom:822.345000px;}
.y11{bottom:824.685000px;}
.y2d{bottom:831.345000px;}
.ya4{bottom:837.465000px;}
.y64{bottom:840.525000px;}
.y87{bottom:844.125000px;}
.y10{bottom:852.405000px;}
.ybf{bottom:857.625000px;}
.y2c{bottom:859.065000px;}
.ya3{bottom:865.185000px;}
.y62{bottom:868.965000px;}
.y86{bottom:871.890000px;}
.yf{bottom:880.170000px;}
.ybe{bottom:885.390000px;}
.y47{bottom:887.010000px;}
.ya2{bottom:892.950000px;}
.y61{bottom:897.630000px;}
.ye{bottom:907.890000px;}
.y46{bottom:914.730000px;}
.y85{bottom:920.670000px;}
.y60{bottom:926.070000px;}
.ya1{bottom:928.230000px;}
.yd{bottom:935.790000px;}
.y7f{bottom:942.450000px;}
.y84{bottom:948.390000px;}
.y5b{bottom:954.690000px;}
.ya0{bottom:955.950000px;}
.yc{bottom:963.510000px;}
.y83{bottom:983.850000px;}
.yb{bottom:991.230000px;}
.y82{bottom:1011.570000px;}
.ya{bottom:1019.130000px;}
.y9{bottom:1046.850000px;}
.y8{bottom:1074.570000px;}
.y4{bottom:1098.330000px;}
.y3{bottom:1126.230000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1198.440000px;}
.hd{height:27.720000px;}
.he{height:27.756000px;}
.hf{height:27.900000px;}
.h5{height:36.396000px;}
.h2{height:48.224531px;}
.ha{height:58.490859px;}
.h4{height:65.010937px;}
.h7{height:72.846211px;}
.h9{height:74.244727px;}
.h6{height:82.676953px;}
.hb{height:84.034336px;}
.h8{height:84.898125px;}
.h10{height:86.585445px;}
.h3{height:108.843750px;}
.hc{height:111.060000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:55.296000px;}
.w4{width:115.740000px;}
.w5{width:116.136000px;}
.w7{width:122.616000px;}
.w8{width:135.936000px;}
.w6{width:232.950000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x7{left:11.880000px;}
.x6{left:27.000000px;}
.x5{left:84.995987px;}
.x8{left:122.795987px;}
.xb{left:176.609987px;}
.xe{left:187.589987px;}
.x14{left:202.530000px;}
.x3{left:213.689987px;}
.xf{left:258.374987px;}
.x2{left:267.734987px;}
.x10{left:292.034987px;}
.xc{left:297.254987px;}
.x15{left:319.395000px;}
.x9{left:374.294987px;}
.xd{left:386.534987px;}
.x11{left:393.554987px;}
.x12{left:402.554987px;}
.x4{left:445.244987px;}
.xa{left:446.684987px;}
.x16{left:553.065000px;}
.x1{left:600.809987px;}
.x17{left:676.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.613333pt;}
.lsd{letter-spacing:-0.608000pt;}
.ls4{letter-spacing:-0.233067pt;}
.lsc{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.021760pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.166400pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.480000pt;}
.lse{letter-spacing:3.680000pt;}
.ls19{letter-spacing:7.520000pt;}
.ls1a{letter-spacing:8.160000pt;}
.ls13{letter-spacing:13.920000pt;}
.lsb{letter-spacing:16.480000pt;}
.ls2{letter-spacing:16.640000pt;}
.ls15{letter-spacing:17.760000pt;}
.ls17{letter-spacing:23.520000pt;}
.ls10{letter-spacing:26.080000pt;}
.ls16{letter-spacing:33.120000pt;}
.ls11{letter-spacing:38.880000pt;}
.ls14{letter-spacing:39.520000pt;}
.ls7{letter-spacing:74.080000pt;}
.ls18{letter-spacing:77.743360pt;}
.ls12{letter-spacing:114.863360pt;}
.ls8{letter-spacing:152.912640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-19.373973pt;}
.ws2{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.753280pt;}
.ws8{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.698240pt;}
.ws3{word-spacing:-18.106667pt;}
.ws4{word-spacing:0.000000pt;}
._3d{margin-left:-5.556480pt;}
._14{margin-left:-4.627840pt;}
._4c{margin-left:-3.736960pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.662080pt;}
._2{width:1.086080pt;}
._3{width:2.021120pt;}
._10{width:3.594880pt;}
._f{width:4.619520pt;}
._2e{width:5.541120pt;}
._15{width:6.716160pt;}
._5{width:7.943893pt;}
._4{width:8.910720pt;}
._24{width:9.996800pt;}
._23{width:11.073920pt;}
._29{width:12.504960pt;}
._28{width:13.568000pt;}
._49{width:14.563840pt;}
._2d{width:15.514880pt;}
._7{width:16.698667pt;}
._6{width:17.686400pt;}
._36{width:19.918080pt;}
._21{width:20.831360pt;}
._25{width:22.389120pt;}
._22{width:23.603200pt;}
._11{width:24.860160pt;}
._12{width:26.121387pt;}
._31{width:27.046400pt;}
._33{width:27.949867pt;}
._18{width:29.488640pt;}
._16{width:30.453120pt;}
._17{width:31.389440pt;}
._19{width:32.860160pt;}
._27{width:33.770880pt;}
._26{width:34.983680pt;}
._a{width:36.466560pt;}
._b{width:37.604480pt;}
._46{width:38.665387pt;}
._30{width:40.105387pt;}
._4b{width:41.378560pt;}
._32{width:42.886827pt;}
._1f{width:44.170880pt;}
._1e{width:45.167360pt;}
._2c{width:46.889600pt;}
._48{width:47.788800pt;}
._38{width:48.731520pt;}
._13{width:49.884800pt;}
._d{width:51.382400pt;}
._c{width:52.280960pt;}
._3c{width:53.441280pt;}
._2a{width:54.512640pt;}
._2b{width:55.411200pt;}
._2f{width:57.358080pt;}
._44{width:58.331947pt;}
._43{width:59.247787pt;}
._e{width:61.603200pt;}
._37{width:62.974080pt;}
._4a{width:64.546560pt;}
._40{width:66.044160pt;}
._41{width:67.586773pt;}
._47{width:68.850133pt;}
._1b{width:73.696640pt;}
._1a{width:74.730240pt;}
._1c{width:76.654080pt;}
._1d{width:77.590400pt;}
._20{width:79.120000pt;}
._45{width:80.017067pt;}
._3e{width:85.415040pt;}
._3f{width:87.627093pt;}
._42{width:91.552640pt;}
._3a{width:93.369387pt;}
._3b{width:94.354773pt;}
._39{width:95.339947pt;}
._34{width:98.916480pt;}
._35{width:99.904640pt;}
._9{width:113.907200pt;}
._8{width:115.629440pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:7.200000pt;}
.y63{bottom:7.240000pt;}
.y66{bottom:7.360000pt;}
.y7{bottom:11.520000pt;}
.y5e{bottom:31.840000pt;}
.y6{bottom:35.040000pt;}
.y5{bottom:51.200000pt;}
.y5d{bottom:56.480000pt;}
.y5c{bottom:81.280000pt;}
.y2b{bottom:91.072000pt;}
.y5a{bottom:96.512000pt;}
.y7e{bottom:98.432000pt;}
.ybd{bottom:100.512000pt;}
.y81{bottom:115.232000pt;}
.y2a{bottom:115.872000pt;}
.y9f{bottom:120.512000pt;}
.y59{bottom:121.152000pt;}
.y7d{bottom:123.232000pt;}
.ybc{bottom:131.872000pt;}
.y80{bottom:139.866667pt;}
.y29{bottom:140.506667pt;}
.y9e{bottom:145.146667pt;}
.y58{bottom:145.946667pt;}
.y45{bottom:146.586667pt;}
.y7c{bottom:147.866667pt;}
.ybb{bottom:156.506667pt;}
.y28{bottom:165.146667pt;}
.y9d{bottom:169.946667pt;}
.y57{bottom:170.586667pt;}
.y44{bottom:171.226667pt;}
.y7b{bottom:172.506667pt;}
.yba{bottom:181.146667pt;}
.y27{bottom:189.786667pt;}
.y9c{bottom:194.586667pt;}
.y56{bottom:195.226667pt;}
.y43{bottom:195.866667pt;}
.y7a{bottom:197.306667pt;}
.yb9{bottom:205.946667pt;}
.y26{bottom:214.586667pt;}
.y9b{bottom:219.226667pt;}
.y55{bottom:220.026667pt;}
.y42{bottom:220.506667pt;}
.y79{bottom:221.946667pt;}
.yb8{bottom:230.586667pt;}
.y25{bottom:239.226667pt;}
.y9a{bottom:244.026667pt;}
.y54{bottom:244.666667pt;}
.y41{bottom:245.306667pt;}
.y78{bottom:246.586667pt;}
.yb7{bottom:255.226667pt;}
.y24{bottom:263.866667pt;}
.y99{bottom:268.666667pt;}
.y53{bottom:269.306667pt;}
.y40{bottom:269.946667pt;}
.y77{bottom:271.226667pt;}
.yb6{bottom:280.026667pt;}
.y23{bottom:288.666667pt;}
.y98{bottom:293.306667pt;}
.y3f{bottom:294.586667pt;}
.yb5{bottom:304.706667pt;}
.y52{bottom:312.706667pt;}
.y22{bottom:313.346667pt;}
.y76{bottom:314.626667pt;}
.y97{bottom:317.986667pt;}
.y3e{bottom:319.266667pt;}
.yb4{bottom:329.346667pt;}
.y51{bottom:337.346667pt;}
.y21{bottom:337.986667pt;}
.y75{bottom:339.426667pt;}
.y96{bottom:342.626667pt;}
.y3d{bottom:344.066667pt;}
.yb3{bottom:353.986667pt;}
.y50{bottom:362.146667pt;}
.y20{bottom:362.626667pt;}
.y74{bottom:364.066667pt;}
.y3c{bottom:368.706667pt;}
.yb2{bottom:378.786667pt;}
.y95{bottom:386.146667pt;}
.y4f{bottom:386.786667pt;}
.y1f{bottom:387.426667pt;}
.y73{bottom:388.706667pt;}
.y3b{bottom:393.346667pt;}
.yb1{bottom:403.426667pt;}
.y94{bottom:410.786667pt;}
.y4e{bottom:411.426667pt;}
.y1e{bottom:412.066667pt;}
.y72{bottom:413.346667pt;}
.y3a{bottom:418.146667pt;}
.yb0{bottom:428.066667pt;}
.y93{bottom:435.426667pt;}
.y1d{bottom:436.706667pt;}
.y71{bottom:438.146667pt;}
.y39{bottom:442.786667pt;}
.yaf{bottom:452.706667pt;}
.y4d{bottom:454.786667pt;}
.y92{bottom:460.066667pt;}
.y1c{bottom:461.506667pt;}
.y70{bottom:462.786667pt;}
.y38{bottom:467.426667pt;}
.yae{bottom:477.506667pt;}
.y4c{bottom:479.426667pt;}
.y91{bottom:484.866667pt;}
.y1b{bottom:486.146667pt;}
.y6f{bottom:487.426667pt;}
.y37{bottom:492.066667pt;}
.yad{bottom:502.146667pt;}
.y4b{bottom:504.226667pt;}
.y90{bottom:509.506667pt;}
.y1a{bottom:510.786667pt;}
.y6e{bottom:512.226667pt;}
.y36{bottom:516.866667pt;}
.yac{bottom:526.786667pt;}
.y4a{bottom:528.866667pt;}
.y8f{bottom:534.146667pt;}
.y19{bottom:535.426667pt;}
.y6d{bottom:536.866667pt;}
.y35{bottom:541.533333pt;}
.yab{bottom:551.613333pt;}
.y49{bottom:553.533333pt;}
.y8e{bottom:558.973333pt;}
.y18{bottom:560.253333pt;}
.y6c{bottom:561.533333pt;}
.y34{bottom:566.173333pt;}
.yaa{bottom:576.253333pt;}
.y8d{bottom:583.613333pt;}
.y17{bottom:584.893333pt;}
.y6b{bottom:586.173333pt;}
.y33{bottom:590.973333pt;}
.y48{bottom:596.893333pt;}
.ya9{bottom:607.613333pt;}
.y8c{bottom:608.253333pt;}
.y16{bottom:609.533333pt;}
.y6a{bottom:610.973333pt;}
.y32{bottom:615.613333pt;}
.ya8{bottom:632.253333pt;}
.y8b{bottom:632.893333pt;}
.y15{bottom:634.173333pt;}
.y69{bottom:635.613333pt;}
.y31{bottom:640.253333pt;}
.y14{bottom:658.973333pt;}
.ya7{bottom:663.613333pt;}
.y30{bottom:664.893333pt;}
.y8a{bottom:676.253333pt;}
.y68{bottom:678.973333pt;}
.y13{bottom:683.613333pt;}
.ya6{bottom:688.253333pt;}
.y2f{bottom:689.693333pt;}
.y89{bottom:701.053333pt;}
.y67{bottom:703.613333pt;}
.yc1{bottom:706.333333pt;}
.y12{bottom:708.253333pt;}
.ya5{bottom:712.893333pt;}
.y2e{bottom:714.333333pt;}
.y65{bottom:721.693333pt;}
.y88{bottom:725.693333pt;}
.yc0{bottom:730.973333pt;}
.y11{bottom:733.053333pt;}
.y2d{bottom:738.973333pt;}
.ya4{bottom:744.413333pt;}
.y64{bottom:747.133333pt;}
.y87{bottom:750.333333pt;}
.y10{bottom:757.693333pt;}
.ybf{bottom:762.333333pt;}
.y2c{bottom:763.613333pt;}
.ya3{bottom:769.053333pt;}
.y62{bottom:772.413333pt;}
.y86{bottom:775.013333pt;}
.yf{bottom:782.373333pt;}
.ybe{bottom:787.013333pt;}
.y47{bottom:788.453333pt;}
.ya2{bottom:793.733333pt;}
.y61{bottom:797.893333pt;}
.ye{bottom:807.013333pt;}
.y46{bottom:813.093333pt;}
.y85{bottom:818.373333pt;}
.y60{bottom:823.173333pt;}
.ya1{bottom:825.093333pt;}
.yd{bottom:831.813333pt;}
.y7f{bottom:837.733333pt;}
.y84{bottom:843.013333pt;}
.y5b{bottom:848.613333pt;}
.ya0{bottom:849.733333pt;}
.yc{bottom:856.453333pt;}
.y83{bottom:874.533333pt;}
.yb{bottom:881.093333pt;}
.y82{bottom:899.173333pt;}
.ya{bottom:905.893333pt;}
.y9{bottom:930.533333pt;}
.y8{bottom:955.173333pt;}
.y4{bottom:976.293333pt;}
.y3{bottom:1001.093333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1065.280000pt;}
.hd{height:24.640000pt;}
.he{height:24.672000pt;}
.hf{height:24.800000pt;}
.h5{height:32.352000pt;}
.h2{height:42.866250pt;}
.ha{height:51.991875pt;}
.h4{height:57.787500pt;}
.h7{height:64.752187pt;}
.h9{height:65.995312pt;}
.h6{height:73.490625pt;}
.hb{height:74.697187pt;}
.h8{height:75.465000pt;}
.h10{height:76.964840pt;}
.h3{height:96.750000pt;}
.hc{height:98.720000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:49.152000pt;}
.w4{width:102.880000pt;}
.w5{width:103.232000pt;}
.w7{width:108.992000pt;}
.w8{width:120.832000pt;}
.w6{width:207.066667pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x7{left:10.560000pt;}
.x6{left:24.000000pt;}
.x5{left:75.551988pt;}
.x8{left:109.151988pt;}
.xb{left:156.986655pt;}
.xe{left:166.746655pt;}
.x14{left:180.026667pt;}
.x3{left:189.946655pt;}
.xf{left:229.666655pt;}
.x2{left:237.986655pt;}
.x10{left:259.586655pt;}
.xc{left:264.226655pt;}
.x15{left:283.906667pt;}
.x9{left:332.706655pt;}
.xd{left:343.586655pt;}
.x11{left:349.826655pt;}
.x12{left:357.826655pt;}
.x4{left:395.773321pt;}
.xa{left:397.053321pt;}
.x16{left:491.613333pt;}
.x1{left:534.053322pt;}
.x17{left:601.253333pt;}
}




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