
    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_8f4e68f5423ab9048c8b3623.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_09ff1c1a663a6eeba0f1becc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_f25a57069d031f19171d6d8b.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_f471df0c87d2e0b0d3f925a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_f35132fff14b1a00410ca8a9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.751953;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_d3d7113f988b99f5db16511e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_66bc334323eba66de1e1d6de.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.752441;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:ffd;src:url('chunks/assets/font_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.751953;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:ffe;src:url('chunks/assets/font_631b6748a5bf32cd69bb507e.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-1.332000px;}
.ls8{letter-spacing:-0.702000px;}
.ls16{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.253200px;}
.lse{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.106560px;}
.ls10{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.161760px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.900000px;}
.ls13{letter-spacing:5.220000px;}
.lsd{letter-spacing:7.380000px;}
.ls14{letter-spacing:24.660000px;}
.lsa{letter-spacing:28.980000px;}
.ls4{letter-spacing:37.566720px;}
.ls2{letter-spacing:42.048000px;}
.ls17{letter-spacing:46.026720px;}
.ls18{letter-spacing:64.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-59.760000px;}
.ws5{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.300000px;}
.wse{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.093600px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.686800px;}
.wsf{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.ws8{word-spacing:-12.798000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-1.376160px;}
._1{width:1.135440px;}
._5{width:2.286480px;}
._b{width:4.192320px;}
._a{width:5.293920px;}
._d{width:6.331680px;}
._e{width:7.642320px;}
._13{width:8.911200px;}
._8{width:9.979920px;}
._7{width:11.115360px;}
._9{width:12.290880px;}
._c{width:13.529280px;}
._16{width:16.553520px;}
._17{width:17.569440px;}
._15{width:19.473120px;}
._10{width:20.699760px;}
._f{width:22.543920px;}
._12{width:23.904000px;}
._1c{width:25.278480px;}
._20{width:26.413920px;}
._19{width:27.431520px;}
._18{width:28.923840px;}
._14{width:30.298320px;}
._1b{width:31.672800px;}
._1f{width:33.585120px;}
._1d{width:34.660800px;}
._1e{width:35.736480px;}
._22{width:38.427360px;}
._21{width:39.740400px;}
._1a{width:41.954400px;}
._11{width:45.054000px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._6{width:917.851200px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y4b{bottom:2.556000px;}
.y3c{bottom:2.880000px;}
.y16{bottom:3.240000px;}
.y35{bottom:6.120000px;}
.y7{bottom:8.316000px;}
.y49{bottom:8.496000px;}
.y33{bottom:10.800000px;}
.yc{bottom:14.040000px;}
.y3a{bottom:15.300000px;}
.y8{bottom:16.236000px;}
.ydb{bottom:16.380000px;}
.ye2{bottom:16.410000px;}
.y4a{bottom:16.416000px;}
.yd6{bottom:20.565000px;}
.y2a{bottom:24.885000px;}
.y32{bottom:27.180000px;}
.yda{bottom:30.240000px;}
.ye1{bottom:30.270000px;}
.y39{bottom:30.780000px;}
.ya{bottom:35.460000px;}
.yd5{bottom:37.665000px;}
.y29{bottom:40.725000px;}
.y4c{bottom:41.400000px;}
.y31{bottom:42.840000px;}
.yd9{bottom:43.920000px;}
.ye0{bottom:43.950000px;}
.y38{bottom:46.440000px;}
.yd4{bottom:54.945000px;}
.yd8{bottom:57.780000px;}
.ydf{bottom:57.810000px;}
.y28{bottom:58.005000px;}
.y6{bottom:58.140000px;}
.y30{bottom:58.350000px;}
.y37{bottom:61.920000px;}
.y48{bottom:64.080000px;}
.yd3{bottom:72.225000px;}
.y2f{bottom:73.830000px;}
.y27{bottom:75.285000px;}
.y2e{bottom:89.310000px;}
.yd2{bottom:89.505000px;}
.y26{bottom:92.385000px;}
.y2d{bottom:104.790000px;}
.y3b{bottom:106.245000px;}
.yd1{bottom:106.785000px;}
.y25{bottom:109.665000px;}
.ya9{bottom:114.156000px;}
.y7b{bottom:116.856000px;}
.y2c{bottom:120.450000px;}
.y47{bottom:123.876000px;}
.y24{bottom:126.945000px;}
.ya8{bottom:134.136000px;}
.y7a{bottom:136.656000px;}
.y46{bottom:138.456000px;}
.y23{bottom:144.225000px;}
.ya7{bottom:153.930000px;}
.y45{bottom:155.730000px;}
.y79{bottom:156.450000px;}
.y22{bottom:161.505000px;}
.y44{bottom:172.830000px;}
.ya6{bottom:173.730000px;}
.y78{bottom:176.250000px;}
.y21{bottom:178.785000px;}
.y43{bottom:190.110000px;}
.ya5{bottom:193.530000px;}
.y20{bottom:195.885000px;}
.y77{bottom:196.230000px;}
.y42{bottom:207.390000px;}
.y1f{bottom:213.165000px;}
.ya4{bottom:213.330000px;}
.y76{bottom:216.030000px;}
.y41{bottom:224.670000px;}
.y1e{bottom:230.445000px;}
.ydc{bottom:231.150000px;}
.ya3{bottom:233.310000px;}
.y75{bottom:235.830000px;}
.y40{bottom:241.950000px;}
.yd7{bottom:242.310000px;}
.y1d{bottom:247.725000px;}
.ya2{bottom:253.110000px;}
.y74{bottom:255.630000px;}
.y3f{bottom:259.230000px;}
.y1c{bottom:265.035000px;}
.ya1{bottom:272.910000px;}
.y73{bottom:275.430000px;}
.y3e{bottom:276.870000px;}
.y1b{bottom:282.135000px;}
.ya0{bottom:292.710000px;}
.y72{bottom:295.410000px;}
.y3d{bottom:295.950000px;}
.y1a{bottom:299.415000px;}
.y17{bottom:309.450000px;}
.yd0{bottom:312.150000px;}
.y9f{bottom:312.510000px;}
.y71{bottom:315.210000px;}
.y19{bottom:316.695000px;}
.y9e{bottom:332.535000px;}
.y18{bottom:334.155000px;}
.y70{bottom:335.055000px;}
.y9d{bottom:352.335000px;}
.y6f{bottom:354.855000px;}
.y9c{bottom:372.135000px;}
.y6e{bottom:374.655000px;}
.y9b{bottom:391.935000px;}
.y6d{bottom:394.635000px;}
.y9a{bottom:411.735000px;}
.y6c{bottom:414.435000px;}
.y36{bottom:429.015000px;}
.y99{bottom:431.715000px;}
.y6b{bottom:434.235000px;}
.yb0{bottom:436.215000px;}
.ycf{bottom:440.355000px;}
.y98{bottom:451.515000px;}
.yaf{bottom:453.315000px;}
.y6a{bottom:454.035000px;}
.yce{bottom:457.455000px;}
.yae{bottom:470.595000px;}
.y97{bottom:471.315000px;}
.y69{bottom:473.835000px;}
.ycd{bottom:474.735000px;}
.yad{bottom:487.875000px;}
.y96{bottom:491.115000px;}
.ycc{bottom:492.015000px;}
.y68{bottom:493.815000px;}
.y34{bottom:504.255000px;}
.yac{bottom:505.155000px;}
.ycb{bottom:509.295000px;}
.y95{bottom:510.915000px;}
.y67{bottom:513.615000px;}
.yab{bottom:522.435000px;}
.y2b{bottom:525.135000px;}
.yca{bottom:526.575000px;}
.y94{bottom:530.895000px;}
.y66{bottom:533.415000px;}
.yaa{bottom:539.535000px;}
.yc9{bottom:543.855000px;}
.y93{bottom:550.695000px;}
.y65{bottom:553.215000px;}
.yde{bottom:554.295000px;}
.yc8{bottom:560.955000px;}
.y92{bottom:570.525000px;}
.y64{bottom:573.045000px;}
.yc7{bottom:578.265000px;}
.y91{bottom:590.325000px;}
.y63{bottom:593.025000px;}
.yc6{bottom:595.545000px;}
.y90{bottom:610.125000px;}
.y62{bottom:612.825000px;}
.ydd{bottom:624.165000px;}
.y8f{bottom:630.105000px;}
.y61{bottom:632.625000px;}
.yc5{bottom:647.385000px;}
.y8e{bottom:649.905000px;}
.y60{bottom:652.425000px;}
.y15{bottom:658.905000px;}
.yc4{bottom:664.485000px;}
.y8d{bottom:669.705000px;}
.y5f{bottom:672.225000px;}
.yc3{bottom:681.765000px;}
.y8c{bottom:689.505000px;}
.y5e{bottom:692.205000px;}
.y14{bottom:693.465000px;}
.yc2{bottom:699.045000px;}
.y8b{bottom:709.305000px;}
.y5d{bottom:712.005000px;}
.y13{bottom:713.265000px;}
.yc1{bottom:716.325000px;}
.y8a{bottom:729.285000px;}
.y5c{bottom:731.805000px;}
.yc0{bottom:733.605000px;}
.y12{bottom:741.705000px;}
.y89{bottom:749.085000px;}
.ybf{bottom:750.885000px;}
.y5b{bottom:751.605000px;}
.y11{bottom:759.525000px;}
.ybe{bottom:767.985000px;}
.y88{bottom:768.885000px;}
.y5a{bottom:771.405000px;}
.y10{bottom:780.585000px;}
.ybd{bottom:785.265000px;}
.y87{bottom:788.685000px;}
.y59{bottom:791.385000px;}
.ybc{bottom:802.545000px;}
.y86{bottom:808.485000px;}
.y58{bottom:811.185000px;}
.yf{bottom:811.725000px;}
.ybb{bottom:819.870000px;}
.y85{bottom:828.510000px;}
.y57{bottom:831.030000px;}
.yba{bottom:837.150000px;}
.ye{bottom:842.730000px;}
.y84{bottom:848.310000px;}
.y56{bottom:850.830000px;}
.yb9{bottom:854.250000px;}
.y83{bottom:868.110000px;}
.y55{bottom:870.630000px;}
.yb8{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.yb{bottom:887.010000px;}
.y82{bottom:887.910000px;}
.yb7{bottom:888.810000px;}
.y54{bottom:890.610000px;}
.yb6{bottom:906.090000px;}
.y81{bottom:907.710000px;}
.y53{bottom:910.410000px;}
.yb5{bottom:923.370000px;}
.y80{bottom:927.690000px;}
.y52{bottom:930.210000px;}
.yb4{bottom:940.650000px;}
.y7f{bottom:947.490000px;}
.y51{bottom:950.010000px;}
.yb3{bottom:957.750000px;}
.y7e{bottom:967.290000px;}
.y50{bottom:969.810000px;}
.yb2{bottom:975.030000px;}
.y7d{bottom:987.090000px;}
.y4f{bottom:989.790000px;}
.yb1{bottom:992.310000px;}
.y7c{bottom:1006.890000px;}
.y4e{bottom:1009.590000px;}
.y4d{bottom:1026.870000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h20{height:13.860000px;}
.hf{height:17.280000px;}
.h17{height:19.980000px;}
.h4{height:27.576000px;}
.h6{height:33.683203px;}
.h1f{height:34.036523px;}
.h13{height:37.705078px;}
.h1a{height:38.100586px;}
.h11{height:39.972656px;}
.h15{height:39.999023px;}
.h5{height:41.726953px;}
.he{height:42.164648px;}
.h1c{height:43.506914px;}
.h16{height:44.265586px;}
.h19{height:44.507812px;}
.h8{height:46.251562px;}
.h2{height:48.496641px;}
.h12{height:49.255313px;}
.h3{height:50.800781px;}
.hc{height:53.224453px;}
.h9{height:53.755312px;}
.h1{height:58.429688px;}
.h1e{height:69.120000px;}
.h21{height:69.156000px;}
.h18{height:74.520000px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.hb{height:87.644531px;}
.h1b{height:118.836000px;}
.h1d{height:120.816000px;}
.h14{height:133.056000px;}
.h7{height:153.900000px;}
.h10{height:348.735000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w6{width:211.710000px;}
.w8{width:329.250000px;}
.w5{width:596.805000px;}
.w3{width:783.510000px;}
.w7{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.480000px;}
.x14{left:7.560000px;}
.x5{left:8.640000px;}
.x1d{left:12.420000px;}
.x11{left:19.980000px;}
.x16{left:23.265000px;}
.x13{left:29.745000px;}
.x15{left:31.725000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x1b{left:58.680000px;}
.x3{left:60.659986px;}
.x17{left:65.519986px;}
.xb{left:74.159986px;}
.x1e{left:80.094000px;}
.x19{left:86.759986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.x1{left:150.509986px;}
.x2{left:220.709986px;}
.xe{left:223.769986px;}
.x1c{left:295.635000px;}
.xd{left:388.874986px;}
.xa{left:459.074986px;}
.xc{left:464.294986px;}
.xf{left:465.374986px;}
.x18{left:478.334986px;}
.x1a{left:526.604986px;}
.x10{left:650.805000px;}
.x9{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-1.184000pt;}
.ls8{letter-spacing:-0.624000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.225067pt;}
.lse{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.094720pt;}
.ls10{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.143787pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls13{letter-spacing:4.640000pt;}
.lsd{letter-spacing:6.560000pt;}
.ls14{letter-spacing:21.920000pt;}
.lsa{letter-spacing:25.760000pt;}
.ls4{letter-spacing:33.392640pt;}
.ls2{letter-spacing:37.376000pt;}
.ls17{letter-spacing:40.912640pt;}
.ls18{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.416533pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.054933pt;}
.wsf{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws8{word-spacing:-11.376000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-1.223253pt;}
._1{width:1.009280pt;}
._5{width:2.032427pt;}
._b{width:3.726507pt;}
._a{width:4.705707pt;}
._d{width:5.628160pt;}
._e{width:6.793173pt;}
._13{width:7.921067pt;}
._8{width:8.871040pt;}
._7{width:9.880320pt;}
._9{width:10.925227pt;}
._c{width:12.026027pt;}
._16{width:14.714240pt;}
._17{width:15.617280pt;}
._15{width:17.309440pt;}
._10{width:18.399787pt;}
._f{width:20.039040pt;}
._12{width:21.248000pt;}
._1c{width:22.469760pt;}
._20{width:23.479040pt;}
._19{width:24.383573pt;}
._18{width:25.710080pt;}
._14{width:26.931840pt;}
._1b{width:28.153600pt;}
._1f{width:29.853440pt;}
._1d{width:30.809600pt;}
._1e{width:31.765760pt;}
._22{width:34.157653pt;}
._21{width:35.324800pt;}
._1a{width:37.292800pt;}
._11{width:40.048000pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._6{width:815.867733pt;}
._0{width:2539.573333pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y4b{bottom:2.272000pt;}
.y3c{bottom:2.560000pt;}
.y16{bottom:2.880000pt;}
.y35{bottom:5.440000pt;}
.y7{bottom:7.392000pt;}
.y49{bottom:7.552000pt;}
.y33{bottom:9.600000pt;}
.yc{bottom:12.480000pt;}
.y3a{bottom:13.600000pt;}
.y8{bottom:14.432000pt;}
.ydb{bottom:14.560000pt;}
.ye2{bottom:14.586667pt;}
.y4a{bottom:14.592000pt;}
.yd6{bottom:18.280000pt;}
.y2a{bottom:22.120000pt;}
.y32{bottom:24.160000pt;}
.yda{bottom:26.880000pt;}
.ye1{bottom:26.906667pt;}
.y39{bottom:27.360000pt;}
.ya{bottom:31.520000pt;}
.yd5{bottom:33.480000pt;}
.y29{bottom:36.200000pt;}
.y4c{bottom:36.800000pt;}
.y31{bottom:38.080000pt;}
.yd9{bottom:39.040000pt;}
.ye0{bottom:39.066667pt;}
.y38{bottom:41.280000pt;}
.yd4{bottom:48.840000pt;}
.yd8{bottom:51.360000pt;}
.ydf{bottom:51.386667pt;}
.y28{bottom:51.560000pt;}
.y6{bottom:51.680000pt;}
.y30{bottom:51.866667pt;}
.y37{bottom:55.040000pt;}
.y48{bottom:56.960000pt;}
.yd3{bottom:64.200000pt;}
.y2f{bottom:65.626667pt;}
.y27{bottom:66.920000pt;}
.y2e{bottom:79.386667pt;}
.yd2{bottom:79.560000pt;}
.y26{bottom:82.120000pt;}
.y2d{bottom:93.146667pt;}
.y3b{bottom:94.440000pt;}
.yd1{bottom:94.920000pt;}
.y25{bottom:97.480000pt;}
.ya9{bottom:101.472000pt;}
.y7b{bottom:103.872000pt;}
.y2c{bottom:107.066667pt;}
.y47{bottom:110.112000pt;}
.y24{bottom:112.840000pt;}
.ya8{bottom:119.232000pt;}
.y7a{bottom:121.472000pt;}
.y46{bottom:123.072000pt;}
.y23{bottom:128.200000pt;}
.ya7{bottom:136.826667pt;}
.y45{bottom:138.426667pt;}
.y79{bottom:139.066667pt;}
.y22{bottom:143.560000pt;}
.y44{bottom:153.626667pt;}
.ya6{bottom:154.426667pt;}
.y78{bottom:156.666667pt;}
.y21{bottom:158.920000pt;}
.y43{bottom:168.986667pt;}
.ya5{bottom:172.026667pt;}
.y20{bottom:174.120000pt;}
.y77{bottom:174.426667pt;}
.y42{bottom:184.346667pt;}
.y1f{bottom:189.480000pt;}
.ya4{bottom:189.626667pt;}
.y76{bottom:192.026667pt;}
.y41{bottom:199.706667pt;}
.y1e{bottom:204.840000pt;}
.ydc{bottom:205.466667pt;}
.ya3{bottom:207.386667pt;}
.y75{bottom:209.626667pt;}
.y40{bottom:215.066667pt;}
.yd7{bottom:215.386667pt;}
.y1d{bottom:220.200000pt;}
.ya2{bottom:224.986667pt;}
.y74{bottom:227.226667pt;}
.y3f{bottom:230.426667pt;}
.y1c{bottom:235.586667pt;}
.ya1{bottom:242.586667pt;}
.y73{bottom:244.826667pt;}
.y3e{bottom:246.106667pt;}
.y1b{bottom:250.786667pt;}
.ya0{bottom:260.186667pt;}
.y72{bottom:262.586667pt;}
.y3d{bottom:263.066667pt;}
.y1a{bottom:266.146667pt;}
.y17{bottom:275.066667pt;}
.yd0{bottom:277.466667pt;}
.y9f{bottom:277.786667pt;}
.y71{bottom:280.186667pt;}
.y19{bottom:281.506667pt;}
.y9e{bottom:295.586667pt;}
.y18{bottom:297.026667pt;}
.y70{bottom:297.826667pt;}
.y9d{bottom:313.186667pt;}
.y6f{bottom:315.426667pt;}
.y9c{bottom:330.786667pt;}
.y6e{bottom:333.026667pt;}
.y9b{bottom:348.386667pt;}
.y6d{bottom:350.786667pt;}
.y9a{bottom:365.986667pt;}
.y6c{bottom:368.386667pt;}
.y36{bottom:381.346667pt;}
.y99{bottom:383.746667pt;}
.y6b{bottom:385.986667pt;}
.yb0{bottom:387.746667pt;}
.ycf{bottom:391.426667pt;}
.y98{bottom:401.346667pt;}
.yaf{bottom:402.946667pt;}
.y6a{bottom:403.586667pt;}
.yce{bottom:406.626667pt;}
.yae{bottom:418.306667pt;}
.y97{bottom:418.946667pt;}
.y69{bottom:421.186667pt;}
.ycd{bottom:421.986667pt;}
.yad{bottom:433.666667pt;}
.y96{bottom:436.546667pt;}
.ycc{bottom:437.346667pt;}
.y68{bottom:438.946667pt;}
.y34{bottom:448.226667pt;}
.yac{bottom:449.026667pt;}
.ycb{bottom:452.706667pt;}
.y95{bottom:454.146667pt;}
.y67{bottom:456.546667pt;}
.yab{bottom:464.386667pt;}
.y2b{bottom:466.786667pt;}
.yca{bottom:468.066667pt;}
.y94{bottom:471.906667pt;}
.y66{bottom:474.146667pt;}
.yaa{bottom:479.586667pt;}
.yc9{bottom:483.426667pt;}
.y93{bottom:489.506667pt;}
.y65{bottom:491.746667pt;}
.yde{bottom:492.706667pt;}
.yc8{bottom:498.626667pt;}
.y92{bottom:507.133333pt;}
.y64{bottom:509.373333pt;}
.yc7{bottom:514.013333pt;}
.y91{bottom:524.733333pt;}
.y63{bottom:527.133333pt;}
.yc6{bottom:529.373333pt;}
.y90{bottom:542.333333pt;}
.y62{bottom:544.733333pt;}
.ydd{bottom:554.813333pt;}
.y8f{bottom:560.093333pt;}
.y61{bottom:562.333333pt;}
.yc5{bottom:575.453333pt;}
.y8e{bottom:577.693333pt;}
.y60{bottom:579.933333pt;}
.y15{bottom:585.693333pt;}
.yc4{bottom:590.653333pt;}
.y8d{bottom:595.293333pt;}
.y5f{bottom:597.533333pt;}
.yc3{bottom:606.013333pt;}
.y8c{bottom:612.893333pt;}
.y5e{bottom:615.293333pt;}
.y14{bottom:616.413333pt;}
.yc2{bottom:621.373333pt;}
.y8b{bottom:630.493333pt;}
.y5d{bottom:632.893333pt;}
.y13{bottom:634.013333pt;}
.yc1{bottom:636.733333pt;}
.y8a{bottom:648.253333pt;}
.y5c{bottom:650.493333pt;}
.yc0{bottom:652.093333pt;}
.y12{bottom:659.293333pt;}
.y89{bottom:665.853333pt;}
.ybf{bottom:667.453333pt;}
.y5b{bottom:668.093333pt;}
.y11{bottom:675.133333pt;}
.ybe{bottom:682.653333pt;}
.y88{bottom:683.453333pt;}
.y5a{bottom:685.693333pt;}
.y10{bottom:693.853333pt;}
.ybd{bottom:698.013333pt;}
.y87{bottom:701.053333pt;}
.y59{bottom:703.453333pt;}
.ybc{bottom:713.373333pt;}
.y86{bottom:718.653333pt;}
.y58{bottom:721.053333pt;}
.yf{bottom:721.533333pt;}
.ybb{bottom:728.773333pt;}
.y85{bottom:736.453333pt;}
.y57{bottom:738.693333pt;}
.yba{bottom:744.133333pt;}
.ye{bottom:749.093333pt;}
.y84{bottom:754.053333pt;}
.y56{bottom:756.293333pt;}
.yb9{bottom:759.333333pt;}
.y83{bottom:771.653333pt;}
.y55{bottom:773.893333pt;}
.yb8{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.yb{bottom:788.453333pt;}
.y82{bottom:789.253333pt;}
.yb7{bottom:790.053333pt;}
.y54{bottom:791.653333pt;}
.yb6{bottom:805.413333pt;}
.y81{bottom:806.853333pt;}
.y53{bottom:809.253333pt;}
.yb5{bottom:820.773333pt;}
.y80{bottom:824.613333pt;}
.y52{bottom:826.853333pt;}
.yb4{bottom:836.133333pt;}
.y7f{bottom:842.213333pt;}
.y51{bottom:844.453333pt;}
.yb3{bottom:851.333333pt;}
.y7e{bottom:859.813333pt;}
.y50{bottom:862.053333pt;}
.yb2{bottom:866.693333pt;}
.y7d{bottom:877.413333pt;}
.y4f{bottom:879.813333pt;}
.yb1{bottom:882.053333pt;}
.y7c{bottom:895.013333pt;}
.y4e{bottom:897.413333pt;}
.y4d{bottom:912.773333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h20{height:12.320000pt;}
.hf{height:15.360000pt;}
.h17{height:17.760000pt;}
.h4{height:24.512000pt;}
.h6{height:29.940625pt;}
.h1f{height:30.254687pt;}
.h13{height:33.515625pt;}
.h1a{height:33.867188pt;}
.h11{height:35.531250pt;}
.h15{height:35.554688pt;}
.h5{height:37.090625pt;}
.he{height:37.479688pt;}
.h1c{height:38.672812pt;}
.h16{height:39.347188pt;}
.h19{height:39.562500pt;}
.h8{height:41.112500pt;}
.h2{height:43.108125pt;}
.h12{height:43.782500pt;}
.h3{height:45.156250pt;}
.hc{height:47.310625pt;}
.h9{height:47.782500pt;}
.h1{height:51.937500pt;}
.h1e{height:61.440000pt;}
.h21{height:61.472000pt;}
.h18{height:66.240000pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.hb{height:77.906250pt;}
.h1b{height:105.632000pt;}
.h1d{height:107.392000pt;}
.h14{height:118.272000pt;}
.h7{height:136.800000pt;}
.h10{height:309.986667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w6{width:188.186667pt;}
.w8{width:292.666667pt;}
.w5{width:530.493333pt;}
.w3{width:696.453333pt;}
.w7{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.760000pt;}
.x14{left:6.720000pt;}
.x5{left:7.680000pt;}
.x1d{left:11.040000pt;}
.x11{left:17.760000pt;}
.x16{left:20.680000pt;}
.x13{left:26.440000pt;}
.x15{left:28.200000pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x1b{left:52.160000pt;}
.x3{left:53.919988pt;}
.x17{left:58.239988pt;}
.xb{left:65.919988pt;}
.x1e{left:71.194667pt;}
.x19{left:77.119988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.x1{left:133.786655pt;}
.x2{left:196.186655pt;}
.xe{left:198.906655pt;}
.x1c{left:262.786667pt;}
.xd{left:345.666655pt;}
.xa{left:408.066655pt;}
.xc{left:412.706655pt;}
.xf{left:413.666655pt;}
.x18{left:425.186655pt;}
.x1a{left:468.093321pt;}
.x10{left:578.493333pt;}
.x9{left:722.213333pt;}
}




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