
    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_ff30b4a3af3cc4f3eec7d0bc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_c68b57c6158a756e568319b8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_e65e86dc2b09d4feb548980d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_dcdae2d5eac153be6fe2510e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_be1b23f6000da8c68c3c8698.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000488;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_723f364c6caa38b83ee1c3de.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000488;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_ba320076caf7988975ea735a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_1860c30fa51e234d75399c1f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_919e5ed02e02aae169634172.woff')format("woff");}.ffa{font-family:ffa;line-height:0.940918;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_fe325471f0a26b718aa7c4bf.woff')format("woff");}.ffb{font-family:ffb;line-height:0.892578;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_1f04443754db4b8122ffd9f3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.970703;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_00c9fcefa23a13becf4cb301.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;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;}
.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;}
.ls2{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.288000px;}
.ls6{letter-spacing:13.824000px;}
.ls7{letter-spacing:33.984000px;}
.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;}
}
.ws5{word-spacing:-36.288000px;}
.ws7{word-spacing:-36.216000px;}
.ws6{word-spacing:-36.000000px;}
.ws2{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws0{word-spacing:-15.226440px;}
.ws4{word-spacing:0.000000px;}
._33{margin-left:-6.696000px;}
._1d{margin-left:-5.616000px;}
._5{margin-left:-4.320000px;}
._2{margin-left:-2.880000px;}
._0{margin-left:-1.152000px;}
._1{width:1.572000px;}
._6{width:3.024000px;}
._15{width:4.392000px;}
._19{width:5.616000px;}
._14{width:7.344000px;}
._7{width:8.568000px;}
._8{width:9.648000px;}
._f{width:11.520000px;}
._3{width:12.600000px;}
._4{width:13.608000px;}
._2c{width:14.760000px;}
._9{width:16.776000px;}
._2a{width:17.928000px;}
._16{width:19.224000px;}
._22{width:20.448000px;}
._1e{width:21.600000px;}
._11{width:23.040000px;}
._10{width:24.048000px;}
._1a{width:25.776000px;}
._1b{width:27.864000px;}
._a{width:29.448000px;}
._1c{width:30.456000px;}
._c{width:31.476000px;}
._b{width:32.904000px;}
._23{width:33.912000px;}
._12{width:35.064000px;}
._13{width:36.180000px;}
._20{width:37.656000px;}
._2d{width:38.808000px;}
._1f{width:42.120000px;}
._30{width:43.176000px;}
._31{width:44.292000px;}
._2b{width:45.432000px;}
._d{width:48.240000px;}
._e{width:49.248000px;}
._18{width:50.784000px;}
._17{width:51.888000px;}
._26{width:53.424000px;}
._24{width:55.224000px;}
._25{width:56.880000px;}
._2f{width:64.584000px;}
._2e{width:65.592000px;}
._32{width:94.320000px;}
._29{width:110.448000px;}
._28{width:113.328000px;}
._27{width:123.840000px;}
._36{width:129.240000px;}
._21{width:131.112000px;}
._37{width:213.480000px;}
._38{width:215.568000px;}
._35{width:393.912000px;}
._34{width:395.136000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:58.356000px;}
.y2{bottom:78.516000px;}
.y5a{bottom:101.916000px;}
.y82{bottom:102.456000px;}
.y97{bottom:109.296000px;}
.y50{bottom:113.796000px;}
.y67{bottom:120.816000px;}
.yd3{bottom:121.176000px;}
.y59{bottom:126.216000px;}
.y81{bottom:126.756000px;}
.ya9{bottom:130.176000px;}
.y3a{bottom:132.156000px;}
.y96{bottom:136.116000px;}
.y4f{bottom:138.096000px;}
.ycb{bottom:145.476000px;}
.y66{bottom:147.636000px;}
.y1e{bottom:150.330000px;}
.y58{bottom:150.510000px;}
.y80{bottom:151.050000px;}
.y39{bottom:156.450000px;}
.ya8{bottom:160.410000px;}
.y4e{bottom:162.390000px;}
.yb7{bottom:163.830000px;}
.y95{bottom:166.350000px;}
.yd2{bottom:169.770000px;}
.yca{bottom:172.290000px;}
.y1d{bottom:174.630000px;}
.y57{bottom:174.810000px;}
.y65{bottom:175.350000px;}
.y38{bottom:180.750000px;}
.y4d{bottom:186.690000px;}
.ya7{bottom:188.130000px;}
.yb6{bottom:190.650000px;}
.y94{bottom:194.070000px;}
.y1c{bottom:198.975000px;}
.y56{bottom:199.155000px;}
.y7f{bottom:199.515000px;}
.yc9{bottom:200.055000px;}
.y64{bottom:202.035000px;}
.y37{bottom:205.095000px;}
.y4c{bottom:211.035000px;}
.ya6{bottom:214.995000px;}
.y93{bottom:218.415000px;}
.y1b{bottom:223.275000px;}
.y55{bottom:223.455000px;}
.y7e{bottom:223.815000px;}
.yc8{bottom:226.875000px;}
.y36{bottom:229.395000px;}
.y63{bottom:229.755000px;}
.y4b{bottom:235.335000px;}
.y92{bottom:242.715000px;}
.ya5{bottom:245.235000px;}
.y1a{bottom:247.575000px;}
.y54{bottom:247.755000px;}
.y7d{bottom:250.635000px;}
.y35{bottom:253.695000px;}
.yc7{bottom:254.595000px;}
.y62{bottom:256.575000px;}
.y4a{bottom:259.635000px;}
.y91{bottom:269.535000px;}
.y19{bottom:271.875000px;}
.yb5{bottom:272.955000px;}
.ya4{bottom:275.475000px;}
.y34{bottom:277.995000px;}
.y7c{bottom:278.355000px;}
.yc6{bottom:281.415000px;}
.y49{bottom:283.935000px;}
.y61{bottom:284.295000px;}
.y18{bottom:296.175000px;}
.y90{bottom:297.255000px;}
.yb4{bottom:299.775000px;}
.y33{bottom:302.115000px;}
.y7b{bottom:302.655000px;}
.ya3{bottom:303.195000px;}
.y48{bottom:308.235000px;}
.yc5{bottom:309.135000px;}
.y60{bottom:311.115000px;}
.y17{bottom:320.295000px;}
.y53{bottom:320.475000px;}
.y8f{bottom:324.075000px;}
.y32{bottom:326.415000px;}
.ya2{bottom:327.495000px;}
.y7a{bottom:329.475000px;}
.y47{bottom:332.355000px;}
.yc4{bottom:335.955000px;}
.y5f{bottom:338.835000px;}
.y16{bottom:344.595000px;}
.y52{bottom:347.295000px;}
.y31{bottom:350.715000px;}
.y8e{bottom:351.795000px;}
.yb3{bottom:354.315000px;}
.y46{bottom:356.655000px;}
.y79{bottom:357.195000px;}
.yc3{bottom:363.675000px;}
.y5e{bottom:365.655000px;}
.y15{bottom:368.895000px;}
.y30{bottom:375.015000px;}
.ya1{bottom:376.095000px;}
.y8d{bottom:378.615000px;}
.y45{bottom:380.955000px;}
.y78{bottom:381.495000px;}
.yb2{bottom:382.035000px;}
.yc2{bottom:390.495000px;}
.y14{bottom:393.195000px;}
.y5d{bottom:393.375000px;}
.y2f{bottom:399.345000px;}
.y51{bottom:401.865000px;}
.ya0{bottom:402.765000px;}
.y44{bottom:405.285000px;}
.y8c{bottom:406.365000px;}
.y77{bottom:408.345000px;}
.yb1{bottom:408.885000px;}
.y13{bottom:417.525000px;}
.yc1{bottom:418.245000px;}
.y5c{bottom:420.225000px;}
.y2e{bottom:423.645000px;}
.y43{bottom:429.585000px;}
.y9f{bottom:430.485000px;}
.y8b{bottom:433.005000px;}
.y76{bottom:436.065000px;}
.yb0{bottom:436.605000px;}
.y12{bottom:441.825000px;}
.yc0{bottom:445.065000px;}
.y2d{bottom:447.945000px;}
.y42{bottom:453.885000px;}
.y9e{bottom:457.305000px;}
.y75{bottom:460.365000px;}
.y8a{bottom:460.725000px;}
.yaf{bottom:463.245000px;}
.y11{bottom:466.125000px;}
.y2c{bottom:472.245000px;}
.ybf{bottom:472.785000px;}
.y5b{bottom:474.765000px;}
.y41{bottom:478.185000px;}
.y74{bottom:484.665000px;}
.y9d{bottom:485.025000px;}
.y89{bottom:487.545000px;}
.y10{bottom:490.425000px;}
.yae{bottom:490.965000px;}
.y2b{bottom:496.545000px;}
.ybe{bottom:499.425000px;}
.y40{bottom:502.485000px;}
.y73{bottom:508.965000px;}
.y9c{bottom:511.845000px;}
.yf{bottom:514.725000px;}
.y88{bottom:515.265000px;}
.yad{bottom:517.785000px;}
.y2a{bottom:520.845000px;}
.y3f{bottom:526.785000px;}
.ybd{bottom:527.145000px;}
.y72{bottom:533.085000px;}
.ye{bottom:539.025000px;}
.y87{bottom:542.085000px;}
.y29{bottom:545.145000px;}
.yac{bottom:545.505000px;}
.yd1{bottom:548.025000px;}
.y3e{bottom:551.085000px;}
.ybc{bottom:553.965000px;}
.y71{bottom:557.385000px;}
.yd{bottom:563.325000px;}
.y28{bottom:569.265000px;}
.y86{bottom:569.805000px;}
.y3d{bottom:575.385000px;}
.yd0{bottom:578.265000px;}
.y70{bottom:581.685000px;}
.yc{bottom:587.625000px;}
.y27{bottom:593.565000px;}
.yab{bottom:594.105000px;}
.y85{bottom:596.625000px;}
.y3c{bottom:599.550000px;}
.y6f{bottom:606.030000px;}
.ybb{bottom:608.550000px;}
.yb{bottom:611.790000px;}
.y26{bottom:620.430000px;}
.yaa{bottom:620.970000px;}
.y3b{bottom:623.850000px;}
.y84{bottom:624.390000px;}
.y6e{bottom:630.330000px;}
.ycf{bottom:632.850000px;}
.yba{bottom:636.270000px;}
.ya{bottom:640.950000px;}
.y25{bottom:648.150000px;}
.y83{bottom:651.210000px;}
.y6d{bottom:654.630000px;}
.yb9{bottom:660.570000px;}
.y9{bottom:665.250000px;}
.y24{bottom:672.450000px;}
.y9b{bottom:678.930000px;}
.y6c{bottom:681.450000px;}
.yb8{bottom:684.870000px;}
.yce{bottom:687.390000px;}
.y8{bottom:689.550000px;}
.y23{bottom:696.750000px;}
.y9a{bottom:705.750000px;}
.y6b{bottom:709.170000px;}
.y7{bottom:713.850000px;}
.ycd{bottom:715.110000px;}
.y22{bottom:721.050000px;}
.y99{bottom:733.470000px;}
.y6a{bottom:735.990000px;}
.ycc{bottom:739.410000px;}
.y6{bottom:743.010000px;}
.y21{bottom:745.350000px;}
.y98{bottom:760.290000px;}
.y69{bottom:763.710000px;}
.y5{bottom:767.310000px;}
.y20{bottom:769.650000px;}
.y68{bottom:790.530000px;}
.y4{bottom:791.610000px;}
.y1f{bottom:793.950000px;}
.y1{bottom:820.080000px;}
.h5{height:52.558594px;}
.h2{height:52.769531px;}
.h6{height:53.367188px;}
.h7{height:54.246094px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x3{left:64.835991px;}
.xc{left:71.675991px;}
.x9{left:95.975991px;}
.xd{left:98.675991px;}
.x5{left:101.735991px;}
.xb{left:183.674991px;}
.x6{left:201.494991px;}
.xa{left:232.094991px;}
.x8{left:241.274991px;}
.x4{left:269.714991px;}
.xe{left:290.234991px;}
.x2{left:306.284991px;}
.x7{left:314.744991px;}
.x1{left:373.604991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.256000pt;}
.ls6{letter-spacing:12.288000pt;}
.ls7{letter-spacing:30.208000pt;}
.ws5{word-spacing:-32.256000pt;}
.ws7{word-spacing:-32.192000pt;}
.ws6{word-spacing:-32.000000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws4{word-spacing:0.000000pt;}
._33{margin-left:-5.952000pt;}
._1d{margin-left:-4.992000pt;}
._5{margin-left:-3.840000pt;}
._2{margin-left:-2.560000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.397333pt;}
._6{width:2.688000pt;}
._15{width:3.904000pt;}
._19{width:4.992000pt;}
._14{width:6.528000pt;}
._7{width:7.616000pt;}
._8{width:8.576000pt;}
._f{width:10.240000pt;}
._3{width:11.200000pt;}
._4{width:12.096000pt;}
._2c{width:13.120000pt;}
._9{width:14.912000pt;}
._2a{width:15.936000pt;}
._16{width:17.088000pt;}
._22{width:18.176000pt;}
._1e{width:19.200000pt;}
._11{width:20.480000pt;}
._10{width:21.376000pt;}
._1a{width:22.912000pt;}
._1b{width:24.768000pt;}
._a{width:26.176000pt;}
._1c{width:27.072000pt;}
._c{width:27.978667pt;}
._b{width:29.248000pt;}
._23{width:30.144000pt;}
._12{width:31.168000pt;}
._13{width:32.160000pt;}
._20{width:33.472000pt;}
._2d{width:34.496000pt;}
._1f{width:37.440000pt;}
._30{width:38.378667pt;}
._31{width:39.370667pt;}
._2b{width:40.384000pt;}
._d{width:42.880000pt;}
._e{width:43.776000pt;}
._18{width:45.141333pt;}
._17{width:46.122667pt;}
._26{width:47.488000pt;}
._24{width:49.088000pt;}
._25{width:50.560000pt;}
._2f{width:57.408000pt;}
._2e{width:58.304000pt;}
._32{width:83.840000pt;}
._29{width:98.176000pt;}
._28{width:100.736000pt;}
._27{width:110.080000pt;}
._36{width:114.880000pt;}
._21{width:116.544000pt;}
._37{width:189.760000pt;}
._38{width:191.616000pt;}
._35{width:350.144000pt;}
._34{width:351.232000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.872000pt;}
.y2{bottom:69.792000pt;}
.y5a{bottom:90.592000pt;}
.y82{bottom:91.072000pt;}
.y97{bottom:97.152000pt;}
.y50{bottom:101.152000pt;}
.y67{bottom:107.392000pt;}
.yd3{bottom:107.712000pt;}
.y59{bottom:112.192000pt;}
.y81{bottom:112.672000pt;}
.ya9{bottom:115.712000pt;}
.y3a{bottom:117.472000pt;}
.y96{bottom:120.992000pt;}
.y4f{bottom:122.752000pt;}
.ycb{bottom:129.312000pt;}
.y66{bottom:131.232000pt;}
.y1e{bottom:133.626667pt;}
.y58{bottom:133.786667pt;}
.y80{bottom:134.266667pt;}
.y39{bottom:139.066667pt;}
.ya8{bottom:142.586667pt;}
.y4e{bottom:144.346667pt;}
.yb7{bottom:145.626667pt;}
.y95{bottom:147.866667pt;}
.yd2{bottom:150.906667pt;}
.yca{bottom:153.146667pt;}
.y1d{bottom:155.226667pt;}
.y57{bottom:155.386667pt;}
.y65{bottom:155.866667pt;}
.y38{bottom:160.666667pt;}
.y4d{bottom:165.946667pt;}
.ya7{bottom:167.226667pt;}
.yb6{bottom:169.466667pt;}
.y94{bottom:172.506667pt;}
.y1c{bottom:176.866667pt;}
.y56{bottom:177.026667pt;}
.y7f{bottom:177.346667pt;}
.yc9{bottom:177.826667pt;}
.y64{bottom:179.586667pt;}
.y37{bottom:182.306667pt;}
.y4c{bottom:187.586667pt;}
.ya6{bottom:191.106667pt;}
.y93{bottom:194.146667pt;}
.y1b{bottom:198.466667pt;}
.y55{bottom:198.626667pt;}
.y7e{bottom:198.946667pt;}
.yc8{bottom:201.666667pt;}
.y36{bottom:203.906667pt;}
.y63{bottom:204.226667pt;}
.y4b{bottom:209.186667pt;}
.y92{bottom:215.746667pt;}
.ya5{bottom:217.986667pt;}
.y1a{bottom:220.066667pt;}
.y54{bottom:220.226667pt;}
.y7d{bottom:222.786667pt;}
.y35{bottom:225.506667pt;}
.yc7{bottom:226.306667pt;}
.y62{bottom:228.066667pt;}
.y4a{bottom:230.786667pt;}
.y91{bottom:239.586667pt;}
.y19{bottom:241.666667pt;}
.yb5{bottom:242.626667pt;}
.ya4{bottom:244.866667pt;}
.y34{bottom:247.106667pt;}
.y7c{bottom:247.426667pt;}
.yc6{bottom:250.146667pt;}
.y49{bottom:252.386667pt;}
.y61{bottom:252.706667pt;}
.y18{bottom:263.266667pt;}
.y90{bottom:264.226667pt;}
.yb4{bottom:266.466667pt;}
.y33{bottom:268.546667pt;}
.y7b{bottom:269.026667pt;}
.ya3{bottom:269.506667pt;}
.y48{bottom:273.986667pt;}
.yc5{bottom:274.786667pt;}
.y60{bottom:276.546667pt;}
.y17{bottom:284.706667pt;}
.y53{bottom:284.866667pt;}
.y8f{bottom:288.066667pt;}
.y32{bottom:290.146667pt;}
.ya2{bottom:291.106667pt;}
.y7a{bottom:292.866667pt;}
.y47{bottom:295.426667pt;}
.yc4{bottom:298.626667pt;}
.y5f{bottom:301.186667pt;}
.y16{bottom:306.306667pt;}
.y52{bottom:308.706667pt;}
.y31{bottom:311.746667pt;}
.y8e{bottom:312.706667pt;}
.yb3{bottom:314.946667pt;}
.y46{bottom:317.026667pt;}
.y79{bottom:317.506667pt;}
.yc3{bottom:323.266667pt;}
.y5e{bottom:325.026667pt;}
.y15{bottom:327.906667pt;}
.y30{bottom:333.346667pt;}
.ya1{bottom:334.306667pt;}
.y8d{bottom:336.546667pt;}
.y45{bottom:338.626667pt;}
.y78{bottom:339.106667pt;}
.yb2{bottom:339.586667pt;}
.yc2{bottom:347.106667pt;}
.y14{bottom:349.506667pt;}
.y5d{bottom:349.666667pt;}
.y2f{bottom:354.973333pt;}
.y51{bottom:357.213333pt;}
.ya0{bottom:358.013333pt;}
.y44{bottom:360.253333pt;}
.y8c{bottom:361.213333pt;}
.y77{bottom:362.973333pt;}
.yb1{bottom:363.453333pt;}
.y13{bottom:371.133333pt;}
.yc1{bottom:371.773333pt;}
.y5c{bottom:373.533333pt;}
.y2e{bottom:376.573333pt;}
.y43{bottom:381.853333pt;}
.y9f{bottom:382.653333pt;}
.y8b{bottom:384.893333pt;}
.y76{bottom:387.613333pt;}
.yb0{bottom:388.093333pt;}
.y12{bottom:392.733333pt;}
.yc0{bottom:395.613333pt;}
.y2d{bottom:398.173333pt;}
.y42{bottom:403.453333pt;}
.y9e{bottom:406.493333pt;}
.y75{bottom:409.213333pt;}
.y8a{bottom:409.533333pt;}
.yaf{bottom:411.773333pt;}
.y11{bottom:414.333333pt;}
.y2c{bottom:419.773333pt;}
.ybf{bottom:420.253333pt;}
.y5b{bottom:422.013333pt;}
.y41{bottom:425.053333pt;}
.y74{bottom:430.813333pt;}
.y9d{bottom:431.133333pt;}
.y89{bottom:433.373333pt;}
.y10{bottom:435.933333pt;}
.yae{bottom:436.413333pt;}
.y2b{bottom:441.373333pt;}
.ybe{bottom:443.933333pt;}
.y40{bottom:446.653333pt;}
.y73{bottom:452.413333pt;}
.y9c{bottom:454.973333pt;}
.yf{bottom:457.533333pt;}
.y88{bottom:458.013333pt;}
.yad{bottom:460.253333pt;}
.y2a{bottom:462.973333pt;}
.y3f{bottom:468.253333pt;}
.ybd{bottom:468.573333pt;}
.y72{bottom:473.853333pt;}
.ye{bottom:479.133333pt;}
.y87{bottom:481.853333pt;}
.y29{bottom:484.573333pt;}
.yac{bottom:484.893333pt;}
.yd1{bottom:487.133333pt;}
.y3e{bottom:489.853333pt;}
.ybc{bottom:492.413333pt;}
.y71{bottom:495.453333pt;}
.yd{bottom:500.733333pt;}
.y28{bottom:506.013333pt;}
.y86{bottom:506.493333pt;}
.y3d{bottom:511.453333pt;}
.yd0{bottom:514.013333pt;}
.y70{bottom:517.053333pt;}
.yc{bottom:522.333333pt;}
.y27{bottom:527.613333pt;}
.yab{bottom:528.093333pt;}
.y85{bottom:530.333333pt;}
.y3c{bottom:532.933333pt;}
.y6f{bottom:538.693333pt;}
.ybb{bottom:540.933333pt;}
.yb{bottom:543.813333pt;}
.y26{bottom:551.493333pt;}
.yaa{bottom:551.973333pt;}
.y3b{bottom:554.533333pt;}
.y84{bottom:555.013333pt;}
.y6e{bottom:560.293333pt;}
.ycf{bottom:562.533333pt;}
.yba{bottom:565.573333pt;}
.ya{bottom:569.733333pt;}
.y25{bottom:576.133333pt;}
.y83{bottom:578.853333pt;}
.y6d{bottom:581.893333pt;}
.yb9{bottom:587.173333pt;}
.y9{bottom:591.333333pt;}
.y24{bottom:597.733333pt;}
.y9b{bottom:603.493333pt;}
.y6c{bottom:605.733333pt;}
.yb8{bottom:608.773333pt;}
.yce{bottom:611.013333pt;}
.y8{bottom:612.933333pt;}
.y23{bottom:619.333333pt;}
.y9a{bottom:627.333333pt;}
.y6b{bottom:630.373333pt;}
.y7{bottom:634.533333pt;}
.ycd{bottom:635.653333pt;}
.y22{bottom:640.933333pt;}
.y99{bottom:651.973333pt;}
.y6a{bottom:654.213333pt;}
.ycc{bottom:657.253333pt;}
.y6{bottom:660.453333pt;}
.y21{bottom:662.533333pt;}
.y98{bottom:675.813333pt;}
.y69{bottom:678.853333pt;}
.y5{bottom:682.053333pt;}
.y20{bottom:684.133333pt;}
.y68{bottom:702.693333pt;}
.y4{bottom:703.653333pt;}
.y1f{bottom:705.733333pt;}
.y1{bottom:728.960000pt;}
.h5{height:46.718750pt;}
.h2{height:46.906250pt;}
.h6{height:47.437500pt;}
.h7{height:48.218750pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x3{left:57.631992pt;}
.xc{left:63.711992pt;}
.x9{left:85.311992pt;}
.xd{left:87.711992pt;}
.x5{left:90.431992pt;}
.xb{left:163.266658pt;}
.x6{left:179.106658pt;}
.xa{left:206.306658pt;}
.x8{left:214.466658pt;}
.x4{left:239.746658pt;}
.xe{left:257.986658pt;}
.x2{left:272.253325pt;}
.x7{left:279.773325pt;}
.x1{left:332.093325pt;}
}




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