
    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_b140dabc1c1e7db3aee40ef9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fe0dcf103d24acb20b27cdd5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_38b3c8ed2addc98c31cb90cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ef84d47e99157bdb4b57d809.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2d2cfc58f68bd4e9a28017b0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_34f04bc3222f018947bb3f50.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fbcc9715572396597ccfd2b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:16.506720px;}
.ls9{letter-spacing:46.026720px;}
.ls7{letter-spacing:636.840000px;}
.ls4{letter-spacing:637.560000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws4{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-9.792000px;}
._0{margin-left:-7.888320px;}
._5{margin-left:-6.588240px;}
._a{margin-left:-5.289360px;}
._9{margin-left:-4.032000px;}
._b{margin-left:-2.808720px;}
._2{margin-left:-1.475760px;}
._1{width:1.077600px;}
._6{width:2.279520px;}
._3{width:3.755520px;}
._d{width:5.331840px;}
._10{width:6.573600px;}
._c{width:8.426160px;}
._e{width:9.501840px;}
._12{width:10.922640px;}
._14{width:12.081360px;}
._f{width:13.085520px;}
._11{width:16.611360px;}
._13{width:18.047520px;}
._15{width:19.057680px;}
._16{width:20.794560px;}
._1b{width:22.808160px;}
._1c{width:23.832960px;}
._1d{width:24.918000px;}
._1e{width:25.995600px;}
._21{width:27.250560px;}
._20{width:28.386000px;}
._26{width:29.995680px;}
._25{width:31.848240px;}
._18{width:33.704640px;}
._17{width:35.258400px;}
._24{width:36.391920px;}
._1f{width:46.313280px;}
._29{width:58.307520px;}
._28{width:64.899360px;}
._23{width:77.213760px;}
._22{width:78.283680px;}
._27{width:126.928320px;}
._7{width:136.877760px;}
._19{width:143.184960px;}
._1a{width:197.626320px;}
._4{width:746.796000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y97{bottom:3.240000px;}
.y99{bottom:11.880000px;}
.y9a{bottom:20.520000px;}
.yb{bottom:37.080000px;}
.ya{bottom:57.060000px;}
.y9{bottom:72.576000px;}
.yb6{bottom:111.456000px;}
.y78{bottom:115.956000px;}
.y41{bottom:116.676000px;}
.y95{bottom:118.296000px;}
.yc6{bottom:126.036000px;}
.yb5{bottom:128.736000px;}
.y77{bottom:133.236000px;}
.y40{bottom:133.956000px;}
.y94{bottom:135.396000px;}
.yc5{bottom:143.316000px;}
.yb4{bottom:146.016000px;}
.y76{bottom:150.510000px;}
.y3f{bottom:151.230000px;}
.y93{bottom:152.670000px;}
.yc4{bottom:160.590000px;}
.yb3{bottom:163.290000px;}
.y75{bottom:167.790000px;}
.y3e{bottom:168.510000px;}
.y92{bottom:169.950000px;}
.yc3{bottom:177.870000px;}
.yb2{bottom:180.570000px;}
.y74{bottom:185.070000px;}
.y3d{bottom:185.610000px;}
.y91{bottom:187.230000px;}
.yc2{bottom:195.150000px;}
.yb1{bottom:197.670000px;}
.y73{bottom:202.170000px;}
.y3c{bottom:202.890000px;}
.y90{bottom:204.510000px;}
.yc1{bottom:212.430000px;}
.yb0{bottom:214.950000px;}
.y72{bottom:219.450000px;}
.y3b{bottom:220.170000px;}
.y8f{bottom:221.790000px;}
.yc0{bottom:229.530000px;}
.yaf{bottom:232.230000px;}
.y71{bottom:236.730000px;}
.y3a{bottom:237.450000px;}
.y8e{bottom:238.890000px;}
.ybf{bottom:246.810000px;}
.yae{bottom:249.510000px;}
.y70{bottom:254.010000px;}
.y39{bottom:254.730000px;}
.y8d{bottom:256.170000px;}
.ybe{bottom:260.850000px;}
.yad{bottom:266.790000px;}
.y6f{bottom:271.290000px;}
.y38{bottom:272.010000px;}
.y8c{bottom:273.450000px;}
.yac{bottom:283.890000px;}
.y6e{bottom:288.570000px;}
.y37{bottom:289.110000px;}
.y8b{bottom:290.730000px;}
.yab{bottom:301.170000px;}
.y6d{bottom:305.670000px;}
.y36{bottom:306.390000px;}
.y8a{bottom:308.010000px;}
.yaa{bottom:318.450000px;}
.y6c{bottom:322.950000px;}
.y35{bottom:323.670000px;}
.y89{bottom:325.290000px;}
.ya9{bottom:335.730000px;}
.y6b{bottom:340.275000px;}
.y34{bottom:340.995000px;}
.y88{bottom:342.435000px;}
.ya8{bottom:353.055000px;}
.y6a{bottom:357.555000px;}
.y33{bottom:358.275000px;}
.y87{bottom:359.715000px;}
.ya7{bottom:370.335000px;}
.y69{bottom:374.835000px;}
.y32{bottom:375.375000px;}
.y86{bottom:376.995000px;}
.ya6{bottom:387.435000px;}
.y68{bottom:392.115000px;}
.y31{bottom:392.655000px;}
.y85{bottom:394.275000px;}
.ya5{bottom:404.715000px;}
.y67{bottom:409.215000px;}
.y30{bottom:409.935000px;}
.y84{bottom:411.555000px;}
.ya4{bottom:421.995000px;}
.y66{bottom:426.495000px;}
.y2f{bottom:427.215000px;}
.y83{bottom:428.655000px;}
.ya3{bottom:439.275000px;}
.y65{bottom:443.775000px;}
.y2e{bottom:444.495000px;}
.y82{bottom:445.935000px;}
.ya2{bottom:456.555000px;}
.y64{bottom:461.055000px;}
.y2d{bottom:461.775000px;}
.y81{bottom:463.215000px;}
.ya1{bottom:473.835000px;}
.y63{bottom:478.335000px;}
.y80{bottom:480.495000px;}
.y2c{bottom:481.215000px;}
.ya0{bottom:490.935000px;}
.y62{bottom:495.435000px;}
.y7f{bottom:497.775000px;}
.y2b{bottom:498.495000px;}
.y9f{bottom:508.215000px;}
.y61{bottom:512.715000px;}
.y7e{bottom:515.055000px;}
.y2a{bottom:515.775000px;}
.y9e{bottom:522.255000px;}
.y60{bottom:529.995000px;}
.y7d{bottom:532.155000px;}
.y29{bottom:532.875000px;}
.y5f{bottom:547.275000px;}
.y7c{bottom:549.435000px;}
.y28{bottom:550.155000px;}
.y5e{bottom:564.555000px;}
.y7b{bottom:566.715000px;}
.y27{bottom:567.435000px;}
.y5d{bottom:581.835000px;}
.y7a{bottom:583.995000px;}
.y26{bottom:584.715000px;}
.y79{bottom:598.035000px;}
.y5c{bottom:598.935000px;}
.y25{bottom:601.995000px;}
.ybd{bottom:613.005000px;}
.y5b{bottom:616.245000px;}
.y24{bottom:619.305000px;}
.ybc{bottom:628.845000px;}
.y5a{bottom:633.525000px;}
.y23{bottom:636.405000px;}
.ybb{bottom:649.365000px;}
.y59{bottom:650.805000px;}
.y22{bottom:653.685000px;}
.y58{bottom:668.085000px;}
.yba{bottom:670.065000px;}
.y21{bottom:670.965000px;}
.y57{bottom:685.365000px;}
.y20{bottom:688.245000px;}
.yb9{bottom:690.585000px;}
.y56{bottom:702.465000px;}
.y1f{bottom:705.525000px;}
.yb8{bottom:711.285000px;}
.y55{bottom:719.745000px;}
.y1e{bottom:722.625000px;}
.yb7{bottom:731.985000px;}
.y54{bottom:737.025000px;}
.y1d{bottom:739.905000px;}
.y53{bottom:754.305000px;}
.y1c{bottom:757.185000px;}
.y52{bottom:771.585000px;}
.y1b{bottom:774.465000px;}
.y51{bottom:788.865000px;}
.y1a{bottom:791.745000px;}
.y50{bottom:805.965000px;}
.y19{bottom:809.025000px;}
.y4f{bottom:823.245000px;}
.y18{bottom:826.125000px;}
.y4e{bottom:840.525000px;}
.y17{bottom:843.405000px;}
.y4d{bottom:857.805000px;}
.y16{bottom:860.685000px;}
.y9d{bottom:873.690000px;}
.y4c{bottom:875.130000px;}
.y15{bottom:878.010000px;}
.y4b{bottom:892.230000px;}
.y14{bottom:895.290000px;}
.y4a{bottom:909.510000px;}
.y9c{bottom:911.490000px;}
.y13{bottom:912.570000px;}
.y49{bottom:926.790000px;}
.y12{bottom:929.670000px;}
.y48{bottom:944.070000px;}
.y11{bottom:949.290000px;}
.y9b{bottom:949.470000px;}
.y47{bottom:961.350000px;}
.y10{bottom:966.930000px;}
.y46{bottom:978.630000px;}
.yf{bottom:985.830000px;}
.y98{bottom:987.270000px;}
.y45{bottom:995.730000px;}
.ye{bottom:1004.910000px;}
.y44{bottom:1013.010000px;}
.yd{bottom:1024.170000px;}
.y96{bottom:1025.250000px;}
.y43{bottom:1030.290000px;}
.yc{bottom:1044.870000px;}
.y42{bottom:1047.570000px;}
.y8{bottom:1066.470000px;}
.y7{bottom:1086.450000px;}
.y6{bottom:1102.290000px;}
.y5{bottom:1120.290000px;}
.y4{bottom:1137.030000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hb{height:17.100000px;}
.hd{height:17.280000px;}
.hc{height:34.560000px;}
.h6{height:42.164648px;}
.ha{height:43.302656px;}
.h7{height:45.061523px;}
.h8{height:46.736719px;}
.h2{height:49.868086px;}
.h5{height:50.800781px;}
.h9{height:55.275469px;}
.h4{height:60.082031px;}
.h3{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:142.596000px;}
.w4{width:175.500000px;}
.w3{width:175.530000px;}
.w5{width:178.770000px;}
.w8{width:184.530000px;}
.w9{width:192.090000px;}
.w7{width:210.990000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x7{left:109.655987px;}
.x2{left:122.975987px;}
.x20{left:131.435987px;}
.x16{left:132.875987px;}
.x24{left:135.035987px;}
.xd{left:145.115987px;}
.x19{left:151.229987px;}
.x4{left:158.429987px;}
.x10{left:160.949987px;}
.x1b{left:165.269987px;}
.x8{left:171.389987px;}
.xf{left:174.809987px;}
.x1c{left:178.049987px;}
.x1a{left:182.369987px;}
.x18{left:197.669987px;}
.x12{left:204.509987px;}
.x13{left:285.375000px;}
.x22{left:325.694987px;}
.xb{left:352.514987px;}
.x1d{left:363.675000px;}
.xa{left:376.094987px;}
.xc{left:378.974987px;}
.x21{left:384.194987px;}
.x11{left:387.794987px;}
.x6{left:396.434987px;}
.x23{left:400.214987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x14{left:461.955000px;}
.x3{left:518.504987px;}
.x1e{left:549.285000px;}
.x15{left:641.805000px;}
.x17{left:644.504987px;}
.xe{left:678.389987px;}
.x1f{left:745.889987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:14.672640pt;}
.ls9{letter-spacing:40.912640pt;}
.ls7{letter-spacing:566.080000pt;}
.ls4{letter-spacing:566.720000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-8.704000pt;}
._0{margin-left:-7.011840pt;}
._5{margin-left:-5.856213pt;}
._a{margin-left:-4.701653pt;}
._9{margin-left:-3.584000pt;}
._b{margin-left:-2.496640pt;}
._2{margin-left:-1.311787pt;}
._1{width:0.957867pt;}
._6{width:2.026240pt;}
._3{width:3.338240pt;}
._d{width:4.739413pt;}
._10{width:5.843200pt;}
._c{width:7.489920pt;}
._e{width:8.446080pt;}
._12{width:9.709013pt;}
._14{width:10.738987pt;}
._f{width:11.631573pt;}
._11{width:14.765653pt;}
._13{width:16.042240pt;}
._15{width:16.940160pt;}
._16{width:18.484053pt;}
._1b{width:20.273920pt;}
._1c{width:21.184853pt;}
._1d{width:22.149333pt;}
._1e{width:23.107200pt;}
._21{width:24.222720pt;}
._20{width:25.232000pt;}
._26{width:26.662827pt;}
._25{width:28.309547pt;}
._18{width:29.959680pt;}
._17{width:31.340800pt;}
._24{width:32.348373pt;}
._1f{width:41.167360pt;}
._29{width:51.828907pt;}
._28{width:57.688320pt;}
._23{width:68.634453pt;}
._22{width:69.585493pt;}
._27{width:112.825173pt;}
._7{width:121.669120pt;}
._19{width:127.275520pt;}
._1a{width:175.667840pt;}
._4{width:663.818667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:2.880000pt;}
.y99{bottom:10.560000pt;}
.y9a{bottom:18.240000pt;}
.yb{bottom:32.960000pt;}
.ya{bottom:50.720000pt;}
.y9{bottom:64.512000pt;}
.yb6{bottom:99.072000pt;}
.y78{bottom:103.072000pt;}
.y41{bottom:103.712000pt;}
.y95{bottom:105.152000pt;}
.yc6{bottom:112.032000pt;}
.yb5{bottom:114.432000pt;}
.y77{bottom:118.432000pt;}
.y40{bottom:119.072000pt;}
.y94{bottom:120.352000pt;}
.yc5{bottom:127.392000pt;}
.yb4{bottom:129.792000pt;}
.y76{bottom:133.786667pt;}
.y3f{bottom:134.426667pt;}
.y93{bottom:135.706667pt;}
.yc4{bottom:142.746667pt;}
.yb3{bottom:145.146667pt;}
.y75{bottom:149.146667pt;}
.y3e{bottom:149.786667pt;}
.y92{bottom:151.066667pt;}
.yc3{bottom:158.106667pt;}
.yb2{bottom:160.506667pt;}
.y74{bottom:164.506667pt;}
.y3d{bottom:164.986667pt;}
.y91{bottom:166.426667pt;}
.yc2{bottom:173.466667pt;}
.yb1{bottom:175.706667pt;}
.y73{bottom:179.706667pt;}
.y3c{bottom:180.346667pt;}
.y90{bottom:181.786667pt;}
.yc1{bottom:188.826667pt;}
.yb0{bottom:191.066667pt;}
.y72{bottom:195.066667pt;}
.y3b{bottom:195.706667pt;}
.y8f{bottom:197.146667pt;}
.yc0{bottom:204.026667pt;}
.yaf{bottom:206.426667pt;}
.y71{bottom:210.426667pt;}
.y3a{bottom:211.066667pt;}
.y8e{bottom:212.346667pt;}
.ybf{bottom:219.386667pt;}
.yae{bottom:221.786667pt;}
.y70{bottom:225.786667pt;}
.y39{bottom:226.426667pt;}
.y8d{bottom:227.706667pt;}
.ybe{bottom:231.866667pt;}
.yad{bottom:237.146667pt;}
.y6f{bottom:241.146667pt;}
.y38{bottom:241.786667pt;}
.y8c{bottom:243.066667pt;}
.yac{bottom:252.346667pt;}
.y6e{bottom:256.506667pt;}
.y37{bottom:256.986667pt;}
.y8b{bottom:258.426667pt;}
.yab{bottom:267.706667pt;}
.y6d{bottom:271.706667pt;}
.y36{bottom:272.346667pt;}
.y8a{bottom:273.786667pt;}
.yaa{bottom:283.066667pt;}
.y6c{bottom:287.066667pt;}
.y35{bottom:287.706667pt;}
.y89{bottom:289.146667pt;}
.ya9{bottom:298.426667pt;}
.y6b{bottom:302.466667pt;}
.y34{bottom:303.106667pt;}
.y88{bottom:304.386667pt;}
.ya8{bottom:313.826667pt;}
.y6a{bottom:317.826667pt;}
.y33{bottom:318.466667pt;}
.y87{bottom:319.746667pt;}
.ya7{bottom:329.186667pt;}
.y69{bottom:333.186667pt;}
.y32{bottom:333.666667pt;}
.y86{bottom:335.106667pt;}
.ya6{bottom:344.386667pt;}
.y68{bottom:348.546667pt;}
.y31{bottom:349.026667pt;}
.y85{bottom:350.466667pt;}
.ya5{bottom:359.746667pt;}
.y67{bottom:363.746667pt;}
.y30{bottom:364.386667pt;}
.y84{bottom:365.826667pt;}
.ya4{bottom:375.106667pt;}
.y66{bottom:379.106667pt;}
.y2f{bottom:379.746667pt;}
.y83{bottom:381.026667pt;}
.ya3{bottom:390.466667pt;}
.y65{bottom:394.466667pt;}
.y2e{bottom:395.106667pt;}
.y82{bottom:396.386667pt;}
.ya2{bottom:405.826667pt;}
.y64{bottom:409.826667pt;}
.y2d{bottom:410.466667pt;}
.y81{bottom:411.746667pt;}
.ya1{bottom:421.186667pt;}
.y63{bottom:425.186667pt;}
.y80{bottom:427.106667pt;}
.y2c{bottom:427.746667pt;}
.ya0{bottom:436.386667pt;}
.y62{bottom:440.386667pt;}
.y7f{bottom:442.466667pt;}
.y2b{bottom:443.106667pt;}
.y9f{bottom:451.746667pt;}
.y61{bottom:455.746667pt;}
.y7e{bottom:457.826667pt;}
.y2a{bottom:458.466667pt;}
.y9e{bottom:464.226667pt;}
.y60{bottom:471.106667pt;}
.y7d{bottom:473.026667pt;}
.y29{bottom:473.666667pt;}
.y5f{bottom:486.466667pt;}
.y7c{bottom:488.386667pt;}
.y28{bottom:489.026667pt;}
.y5e{bottom:501.826667pt;}
.y7b{bottom:503.746667pt;}
.y27{bottom:504.386667pt;}
.y5d{bottom:517.186667pt;}
.y7a{bottom:519.106667pt;}
.y26{bottom:519.746667pt;}
.y79{bottom:531.586667pt;}
.y5c{bottom:532.386667pt;}
.y25{bottom:535.106667pt;}
.ybd{bottom:544.893333pt;}
.y5b{bottom:547.773333pt;}
.y24{bottom:550.493333pt;}
.ybc{bottom:558.973333pt;}
.y5a{bottom:563.133333pt;}
.y23{bottom:565.693333pt;}
.ybb{bottom:577.213333pt;}
.y59{bottom:578.493333pt;}
.y22{bottom:581.053333pt;}
.y58{bottom:593.853333pt;}
.yba{bottom:595.613333pt;}
.y21{bottom:596.413333pt;}
.y57{bottom:609.213333pt;}
.y20{bottom:611.773333pt;}
.yb9{bottom:613.853333pt;}
.y56{bottom:624.413333pt;}
.y1f{bottom:627.133333pt;}
.yb8{bottom:632.253333pt;}
.y55{bottom:639.773333pt;}
.y1e{bottom:642.333333pt;}
.yb7{bottom:650.653333pt;}
.y54{bottom:655.133333pt;}
.y1d{bottom:657.693333pt;}
.y53{bottom:670.493333pt;}
.y1c{bottom:673.053333pt;}
.y52{bottom:685.853333pt;}
.y1b{bottom:688.413333pt;}
.y51{bottom:701.213333pt;}
.y1a{bottom:703.773333pt;}
.y50{bottom:716.413333pt;}
.y19{bottom:719.133333pt;}
.y4f{bottom:731.773333pt;}
.y18{bottom:734.333333pt;}
.y4e{bottom:747.133333pt;}
.y17{bottom:749.693333pt;}
.y4d{bottom:762.493333pt;}
.y16{bottom:765.053333pt;}
.y9d{bottom:776.613333pt;}
.y4c{bottom:777.893333pt;}
.y15{bottom:780.453333pt;}
.y4b{bottom:793.093333pt;}
.y14{bottom:795.813333pt;}
.y4a{bottom:808.453333pt;}
.y9c{bottom:810.213333pt;}
.y13{bottom:811.173333pt;}
.y49{bottom:823.813333pt;}
.y12{bottom:826.373333pt;}
.y48{bottom:839.173333pt;}
.y11{bottom:843.813333pt;}
.y9b{bottom:843.973333pt;}
.y47{bottom:854.533333pt;}
.y10{bottom:859.493333pt;}
.y46{bottom:869.893333pt;}
.yf{bottom:876.293333pt;}
.y98{bottom:877.573333pt;}
.y45{bottom:885.093333pt;}
.ye{bottom:893.253333pt;}
.y44{bottom:900.453333pt;}
.yd{bottom:910.373333pt;}
.y96{bottom:911.333333pt;}
.y43{bottom:915.813333pt;}
.yc{bottom:928.773333pt;}
.y42{bottom:931.173333pt;}
.y8{bottom:947.973333pt;}
.y7{bottom:965.733333pt;}
.y6{bottom:979.813333pt;}
.y5{bottom:995.813333pt;}
.y4{bottom:1010.693333pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hb{height:15.200000pt;}
.hd{height:15.360000pt;}
.hc{height:30.720000pt;}
.h6{height:37.479688pt;}
.ha{height:38.491250pt;}
.h7{height:40.054688pt;}
.h8{height:41.543750pt;}
.h2{height:44.327188pt;}
.h5{height:45.156250pt;}
.h9{height:49.133750pt;}
.h4{height:53.406250pt;}
.h3{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:126.752000pt;}
.w4{width:156.000000pt;}
.w3{width:156.026667pt;}
.w5{width:158.906667pt;}
.w8{width:164.026667pt;}
.w9{width:170.746667pt;}
.w7{width:187.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x7{left:97.471988pt;}
.x2{left:109.311988pt;}
.x20{left:116.831988pt;}
.x16{left:118.111988pt;}
.x24{left:120.031988pt;}
.xd{left:128.991988pt;}
.x19{left:134.426655pt;}
.x4{left:140.826655pt;}
.x10{left:143.066655pt;}
.x1b{left:146.906655pt;}
.x8{left:152.346655pt;}
.xf{left:155.386655pt;}
.x1c{left:158.266655pt;}
.x1a{left:162.106655pt;}
.x18{left:175.706655pt;}
.x12{left:181.786655pt;}
.x13{left:253.666667pt;}
.x22{left:289.506655pt;}
.xb{left:313.346655pt;}
.x1d{left:323.266667pt;}
.xa{left:334.306655pt;}
.xc{left:336.866655pt;}
.x21{left:341.506655pt;}
.x11{left:344.706655pt;}
.x6{left:352.386655pt;}
.x23{left:355.746655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x14{left:410.626667pt;}
.x3{left:460.893322pt;}
.x1e{left:488.253333pt;}
.x15{left:570.493333pt;}
.x17{left:572.893322pt;}
.xe{left:603.013322pt;}
.x1f{left:663.013322pt;}
}




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