
    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_b88b664e14e7bf61e2c627da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_24613841b55049ab0aa08db7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a9cc7b53d56aea1abe96d7f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e32a820ba8e2f3a9febd0ff0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7cd75957415473416d18fd68.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4149607b65eb2927212f0799.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_3c8ee88b1410518a3d9a7cea.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls12{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.369600px;}
.ls1b{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.350400px;}
.ls28{letter-spacing:-0.341400px;}
.ls8{letter-spacing:-0.271200px;}
.lsd{letter-spacing:-0.225600px;}
.ls1a{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.028080px;}
.ls7{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.034560px;}
.lsc{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.106560px;}
.ls27{letter-spacing:0.148200px;}
.ls24{letter-spacing:0.151920px;}
.ls18{letter-spacing:0.169920px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.217440px;}
.ls16{letter-spacing:0.252720px;}
.ls17{letter-spacing:0.257760px;}
.ls9{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.306720px;}
.ls23{letter-spacing:0.354720px;}
.lsa{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.369360px;}
.lsb{letter-spacing:0.369600px;}
.ls2a{letter-spacing:0.378600px;}
.ls22{letter-spacing:0.378720px;}
.ls25{letter-spacing:0.489360px;}
.ls19{letter-spacing:0.900000px;}
.lsf{letter-spacing:8.460000px;}
.ls4{letter-spacing:11.340000px;}
.ls14{letter-spacing:13.500000px;}
.ls11{letter-spacing:16.380000px;}
.ls10{letter-spacing:21.420000px;}
.ls1d{letter-spacing:32.940000px;}
.ls13{letter-spacing:50.220000px;}
.ls1f{letter-spacing:107.100000px;}
.ls26{letter-spacing:169.517280px;}
.ls20{letter-spacing:211.277280px;}
.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;}
}
.wsf{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.429600px;}
.wsb{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.312720px;}
.wsc{word-spacing:-21.208200px;}
.ws3{word-spacing:-21.060000px;}
.wse{word-spacing:-21.031920px;}
.wsd{word-spacing:-20.718600px;}
.ws8{word-spacing:-19.500960px;}
.ws0{word-spacing:-19.455360px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.wsa{word-spacing:-13.860000px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-5.981040px;}
._9{margin-left:-4.885920px;}
._a{margin-left:-3.875040px;}
._c{margin-left:-2.611440px;}
._2{margin-left:-1.432080px;}
._3{width:1.149120px;}
._4{width:2.866080px;}
._e{width:4.212000px;}
._d{width:5.307120px;}
._27{width:6.318000px;}
._10{width:7.750080px;}
._7{width:9.013680px;}
._8{width:10.024560px;}
._24{width:11.119680px;}
._12{width:12.214800px;}
._13{width:13.309920px;}
._6{width:15.078960px;}
._5{width:16.174080px;}
._11{width:18.111600px;}
._14{width:19.459440px;}
._f{width:23.166000px;}
._2c{width:24.261120px;}
._19{width:26.198640px;}
._25{width:27.967680px;}
._26{width:29.820960px;}
._1a{width:30.916080px;}
._15{width:32.685120px;}
._16{width:33.696000px;}
._1b{width:34.928880px;}
._23{width:36.036000px;}
._2e{width:37.065600px;}
._2d{width:38.581920px;}
._29{width:40.687920px;}
._28{width:41.951520px;}
._1d{width:44.226000px;}
._1c{width:45.405360px;}
._36{width:46.753200px;}
._18{width:47.969040px;}
._17{width:49.346400px;}
._22{width:50.574240px;}
._1f{width:51.713280px;}
._1e{width:52.907760px;}
._42{width:54.637680px;}
._20{width:55.682640px;}
._38{width:57.957120px;}
._39{width:59.389200px;}
._32{width:60.568560px;}
._31{width:61.579440px;}
._2b{width:65.622960px;}
._2a{width:67.139280px;}
._34{width:68.402880px;}
._33{width:69.444000px;}
._3e{width:70.647120px;}
._41{width:72.193680px;}
._2f{width:73.288800px;}
._30{width:74.468160px;}
._35{width:75.647520px;}
._37{width:77.163840px;}
._40{width:103.615200px;}
._21{width:113.218560px;}
._3c{width:134.278560px;}
._3b{width:221.551200px;}
._3a{width:245.559600px;}
._3d{width:258.279840px;}
._0{width:292.222560px;}
._3f{width:409.237920px;}
._1{width:1213.426560px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(0,128,0);}
.fc6{color:rgb(71,71,71);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:8.100000px;}
.y61{bottom:8.280000px;}
.y6{bottom:10.440000px;}
.y6f{bottom:15.660000px;}
.y66{bottom:21.960000px;}
.y63{bottom:22.005000px;}
.y5d{bottom:22.140000px;}
.y5{bottom:31.140000px;}
.y67{bottom:35.820000px;}
.y64{bottom:35.865000px;}
.y5e{bottom:36.000000px;}
.y74{bottom:49.905000px;}
.y72{bottom:63.720000px;}
.y75{bottom:63.765000px;}
.y30{bottom:66.960000px;}
.y2f{bottom:72.180000px;}
.y2e{bottom:84.240000px;}
.y91{bottom:85.500000px;}
.y2d{bottom:89.460000px;}
.y90{bottom:90.720000px;}
.y42{bottom:101.340000px;}
.y2c{bottom:102.600000px;}
.y41{bottom:106.560000px;}
.y8f{bottom:108.360000px;}
.y8e{bottom:113.580000px;}
.y40{bottom:118.620000px;}
.y4c{bottom:119.880000px;}
.y3f{bottom:123.840000px;}
.y4b{bottom:125.100000px;}
.y8d{bottom:125.640000px;}
.y8c{bottom:130.860000px;}
.y3e{bottom:135.900000px;}
.y52{bottom:141.120000px;}
.y4a{bottom:142.740000px;}
.y49{bottom:147.960000px;}
.y3d{bottom:153.210000px;}
.y51{bottom:154.470000px;}
.y3c{bottom:158.430000px;}
.y48{bottom:161.310000px;}
.y3b{bottom:170.490000px;}
.y2b{bottom:170.850000px;}
.y57{bottom:171.750000px;}
.y3a{bottom:175.710000px;}
.y39{bottom:187.770000px;}
.y55{bottom:189.030000px;}
.y38{bottom:192.990000px;}
.y8b{bottom:194.070000px;}
.y6d{bottom:194.250000px;}
.y2a{bottom:198.570000px;}
.y37{bottom:206.130000px;}
.y6c{bottom:211.890000px;}
.y6b{bottom:217.110000px;}
.y8a{bottom:221.970000px;}
.y29{bottom:226.470000px;}
.y6a{bottom:229.170000px;}
.y47{bottom:234.030000px;}
.y69{bottom:234.390000px;}
.y68{bottom:247.530000px;}
.y89{bottom:249.690000px;}
.y28{bottom:254.190000px;}
.y36{bottom:261.750000px;}
.y88{bottom:277.410000px;}
.y27{bottom:281.910000px;}
.y50{bottom:289.470000px;}
.y87{bottom:305.310000px;}
.y25{bottom:309.810000px;}
.y26{bottom:317.370000px;}
.y65{bottom:326.370000px;}
.y86{bottom:333.030000px;}
.y24{bottom:337.530000px;}
.y85{bottom:360.750000px;}
.y23{bottom:365.250000px;}
.y46{bottom:372.810000px;}
.y62{bottom:382.710000px;}
.y84{bottom:388.470000px;}
.y22{bottom:392.970000px;}
.y83{bottom:416.415000px;}
.y20{bottom:420.915000px;}
.y21{bottom:428.475000px;}
.y60{bottom:438.915000px;}
.y82{bottom:444.135000px;}
.y1f{bottom:448.635000px;}
.y81{bottom:471.855000px;}
.y1e{bottom:476.355000px;}
.y4f{bottom:483.915000px;}
.y5c{bottom:495.255000px;}
.y80{bottom:499.755000px;}
.y1d{bottom:504.255000px;}
.y45{bottom:511.815000px;}
.y7f{bottom:527.475000px;}
.y1c{bottom:531.975000px;}
.y35{bottom:539.535000px;}
.y7e{bottom:555.195000px;}
.y1b{bottom:559.695000px;}
.y5b{bottom:567.255000px;}
.y7d{bottom:582.915000px;}
.y1a{bottom:587.415000px;}
.y7c{bottom:610.815000px;}
.y19{bottom:615.315000px;}
.y54{bottom:622.875000px;}
.y7b{bottom:638.535000px;}
.y18{bottom:643.035000px;}
.y44{bottom:650.625000px;}
.y7a{bottom:666.285000px;}
.y17{bottom:670.785000px;}
.y34{bottom:678.345000px;}
.y79{bottom:694.005000px;}
.y16{bottom:698.505000px;}
.y5a{bottom:706.065000px;}
.y78{bottom:721.905000px;}
.y15{bottom:726.405000px;}
.y77{bottom:749.625000px;}
.y14{bottom:754.125000px;}
.y53{bottom:761.685000px;}
.y76{bottom:769.965000px;}
.y13{bottom:781.845000px;}
.y56{bottom:789.405000px;}
.y12{bottom:809.745000px;}
.y43{bottom:817.305000px;}
.y11{bottom:837.465000px;}
.y33{bottom:845.025000px;}
.y73{bottom:854.025000px;}
.y10{bottom:865.185000px;}
.y4e{bottom:872.745000px;}
.yf{bottom:892.905000px;}
.ye{bottom:920.850000px;}
.y71{bottom:938.130000px;}
.yd{bottom:948.570000px;}
.y59{bottom:956.130000px;}
.yc{bottom:976.290000px;}
.y32{bottom:983.850000px;}
.yb{bottom:1004.190000px;}
.y4d{bottom:1011.750000px;}
.y70{bottom:1022.190000px;}
.ya{bottom:1031.910000px;}
.y9{bottom:1059.630000px;}
.y6e{bottom:1078.530000px;}
.y8{bottom:1087.350000px;}
.y58{bottom:1094.910000px;}
.y7{bottom:1115.250000px;}
.y31{bottom:1122.810000px;}
.y4{bottom:1139.370000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1183.320000px;}
.y1{bottom:1210.680000px;}
.he{height:38.158594px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.hc{height:52.998047px;}
.h11{height:54.421875px;}
.h15{height:55.440000px;}
.h13{height:55.476000px;}
.h12{height:55.620000px;}
.h10{height:58.651172px;}
.h8{height:59.436914px;}
.hf{height:59.439023px;}
.hd{height:65.884219px;}
.h4{height:67.169883px;}
.hb{height:74.244727px;}
.h2{height:76.355508px;}
.ha{height:82.676953px;}
.h14{height:83.238047px;}
.h16{height:83.340000px;}
.h17{height:83.376000px;}
.h9{height:84.898125px;}
.h18{height:86.585445px;}
.h6{height:95.874961px;}
.h3{height:105.060586px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:169.410000px;}
.w4{width:174.450000px;}
.w5{width:259.590000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x51{left:7.734000px;}
.x4e{left:14.220000px;}
.x50{left:39.060000px;}
.x5{left:42.479987px;}
.x4b{left:51.654000px;}
.x4f{left:55.485000px;}
.x4d{left:66.960000px;}
.x4{left:84.995987px;}
.x10{left:89.855987px;}
.x26{left:94.715987px;}
.x1{left:106.415987px;}
.x6{left:113.795987px;}
.x4a{left:144.036000px;}
.x1d{left:153.749973px;}
.x1e{left:160.589987px;}
.x9{left:164.369987px;}
.x47{left:165.809987px;}
.x34{left:174.809973px;}
.x21{left:178.049987px;}
.x13{left:180.569973px;}
.x14{left:187.409987px;}
.x35{left:188.489987px;}
.x24{left:191.909987px;}
.x30{left:198.209973px;}
.x40{left:202.529987px;}
.x19{left:204.509973px;}
.x1a{left:211.349987px;}
.x38{left:269.894973px;}
.x39{left:283.574987px;}
.x2b{left:286.814973px;}
.xf{left:301.034987px;}
.x1f{left:302.114973px;}
.x20{left:315.794987px;}
.x15{left:318.314973px;}
.x4c{left:319.395000px;}
.x16{left:325.154987px;}
.xa{left:326.234987px;}
.x7{left:328.214987px;}
.x33{left:356.834973px;}
.xd{left:362.774973px;}
.xe{left:369.614987px;}
.x1b{left:382.574973px;}
.x1c{left:389.414987px;}
.x3e{left:393.554973px;}
.x3f{left:395.534987px;}
.x3a{left:406.874973px;}
.x36{left:412.094973px;}
.x3b{left:420.554987px;}
.x37{left:425.774987px;}
.x8{left:446.504987px;}
.x2{left:521.564987px;}
.x29{left:535.784973px;}
.x2a{left:549.464987px;}
.x3c{left:577.364973px;}
.x22{left:579.524973px;}
.x3d{left:591.044987px;}
.x23{left:593.204987px;}
.x11{left:607.244973px;}
.x12{left:614.084987px;}
.x43{left:621.104987px;}
.x2e{left:634.649973px;}
.x3{left:641.669987px;}
.x27{left:643.289973px;}
.x2f{left:648.329987px;}
.x28{left:656.969987px;}
.xb{left:677.129973px;}
.x44{left:680.549973px;}
.xc{left:683.969987px;}
.x45{left:694.229987px;}
.x25{left:697.109987px;}
.x31{left:702.689973px;}
.x48{left:713.309973px;}
.x32{left:716.369987px;}
.x49{left:726.989987px;}
.x46{left:734.549987px;}
.x17{left:742.469973px;}
.x18{left:749.309987px;}
.x41{left:786.029973px;}
.x2c{left:789.269973px;}
.x42{left:799.709987px;}
.x2d{left:802.949987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls12{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.328533pt;}
.ls1b{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.311467pt;}
.ls28{letter-spacing:-0.303467pt;}
.ls8{letter-spacing:-0.241067pt;}
.lsd{letter-spacing:-0.200533pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.024960pt;}
.ls7{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.030720pt;}
.lsc{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.094720pt;}
.ls27{letter-spacing:0.131733pt;}
.ls24{letter-spacing:0.135040pt;}
.ls18{letter-spacing:0.151040pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.193280pt;}
.ls16{letter-spacing:0.224640pt;}
.ls17{letter-spacing:0.229120pt;}
.ls9{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.272640pt;}
.ls23{letter-spacing:0.315307pt;}
.lsa{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.328320pt;}
.lsb{letter-spacing:0.328533pt;}
.ls2a{letter-spacing:0.336533pt;}
.ls22{letter-spacing:0.336640pt;}
.ls25{letter-spacing:0.434987pt;}
.ls19{letter-spacing:0.800000pt;}
.lsf{letter-spacing:7.520000pt;}
.ls4{letter-spacing:10.080000pt;}
.ls14{letter-spacing:12.000000pt;}
.ls11{letter-spacing:14.560000pt;}
.ls10{letter-spacing:19.040000pt;}
.ls1d{letter-spacing:29.280000pt;}
.ls13{letter-spacing:44.640000pt;}
.ls1f{letter-spacing:95.200000pt;}
.ls26{letter-spacing:150.682027pt;}
.ls20{letter-spacing:187.802027pt;}
.wsf{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.048533pt;}
.wsb{word-spacing:-19.040000pt;}
.ws9{word-spacing:-18.944640pt;}
.wsc{word-spacing:-18.851733pt;}
.ws3{word-spacing:-18.720000pt;}
.wse{word-spacing:-18.695040pt;}
.wsd{word-spacing:-18.416533pt;}
.ws8{word-spacing:-17.334187pt;}
.ws0{word-spacing:-17.293653pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-5.316480pt;}
._9{margin-left:-4.343040pt;}
._a{margin-left:-3.444480pt;}
._c{margin-left:-2.321280pt;}
._2{margin-left:-1.272960pt;}
._3{width:1.021440pt;}
._4{width:2.547627pt;}
._e{width:3.744000pt;}
._d{width:4.717440pt;}
._27{width:5.616000pt;}
._10{width:6.888960pt;}
._7{width:8.012160pt;}
._8{width:8.910720pt;}
._24{width:9.884160pt;}
._12{width:10.857600pt;}
._13{width:11.831040pt;}
._6{width:13.403520pt;}
._5{width:14.376960pt;}
._11{width:16.099200pt;}
._14{width:17.297280pt;}
._f{width:20.592000pt;}
._2c{width:21.565440pt;}
._19{width:23.287680pt;}
._25{width:24.860160pt;}
._26{width:26.507520pt;}
._1a{width:27.480960pt;}
._15{width:29.053440pt;}
._16{width:29.952000pt;}
._1b{width:31.047893pt;}
._23{width:32.032000pt;}
._2e{width:32.947200pt;}
._2d{width:34.295040pt;}
._29{width:36.167040pt;}
._28{width:37.290240pt;}
._1d{width:39.312000pt;}
._1c{width:40.360320pt;}
._36{width:41.558400pt;}
._18{width:42.639147pt;}
._17{width:43.863467pt;}
._22{width:44.954880pt;}
._1f{width:45.967360pt;}
._1e{width:47.029120pt;}
._42{width:48.566827pt;}
._20{width:49.495680pt;}
._38{width:51.517440pt;}
._39{width:52.790400pt;}
._32{width:53.838720pt;}
._31{width:54.737280pt;}
._2b{width:58.331520pt;}
._2a{width:59.679360pt;}
._34{width:60.802560pt;}
._33{width:61.728000pt;}
._3e{width:62.797440pt;}
._41{width:64.172160pt;}
._2f{width:65.145600pt;}
._30{width:66.193920pt;}
._35{width:67.242240pt;}
._37{width:68.590080pt;}
._40{width:92.102400pt;}
._21{width:100.638720pt;}
._3c{width:119.358720pt;}
._3b{width:196.934400pt;}
._3a{width:218.275200pt;}
._3d{width:229.582080pt;}
._0{width:259.753387pt;}
._3f{width:363.767040pt;}
._1{width:1078.601387pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:7.200000pt;}
.y61{bottom:7.360000pt;}
.y6{bottom:9.280000pt;}
.y6f{bottom:13.920000pt;}
.y66{bottom:19.520000pt;}
.y63{bottom:19.560000pt;}
.y5d{bottom:19.680000pt;}
.y5{bottom:27.680000pt;}
.y67{bottom:31.840000pt;}
.y64{bottom:31.880000pt;}
.y5e{bottom:32.000000pt;}
.y74{bottom:44.360000pt;}
.y72{bottom:56.640000pt;}
.y75{bottom:56.680000pt;}
.y30{bottom:59.520000pt;}
.y2f{bottom:64.160000pt;}
.y2e{bottom:74.880000pt;}
.y91{bottom:76.000000pt;}
.y2d{bottom:79.520000pt;}
.y90{bottom:80.640000pt;}
.y42{bottom:90.080000pt;}
.y2c{bottom:91.200000pt;}
.y41{bottom:94.720000pt;}
.y8f{bottom:96.320000pt;}
.y8e{bottom:100.960000pt;}
.y40{bottom:105.440000pt;}
.y4c{bottom:106.560000pt;}
.y3f{bottom:110.080000pt;}
.y4b{bottom:111.200000pt;}
.y8d{bottom:111.680000pt;}
.y8c{bottom:116.320000pt;}
.y3e{bottom:120.800000pt;}
.y52{bottom:125.440000pt;}
.y4a{bottom:126.880000pt;}
.y49{bottom:131.520000pt;}
.y3d{bottom:136.186667pt;}
.y51{bottom:137.306667pt;}
.y3c{bottom:140.826667pt;}
.y48{bottom:143.386667pt;}
.y3b{bottom:151.546667pt;}
.y2b{bottom:151.866667pt;}
.y57{bottom:152.666667pt;}
.y3a{bottom:156.186667pt;}
.y39{bottom:166.906667pt;}
.y55{bottom:168.026667pt;}
.y38{bottom:171.546667pt;}
.y8b{bottom:172.506667pt;}
.y6d{bottom:172.666667pt;}
.y2a{bottom:176.506667pt;}
.y37{bottom:183.226667pt;}
.y6c{bottom:188.346667pt;}
.y6b{bottom:192.986667pt;}
.y8a{bottom:197.306667pt;}
.y29{bottom:201.306667pt;}
.y6a{bottom:203.706667pt;}
.y47{bottom:208.026667pt;}
.y69{bottom:208.346667pt;}
.y68{bottom:220.026667pt;}
.y89{bottom:221.946667pt;}
.y28{bottom:225.946667pt;}
.y36{bottom:232.666667pt;}
.y88{bottom:246.586667pt;}
.y27{bottom:250.586667pt;}
.y50{bottom:257.306667pt;}
.y87{bottom:271.386667pt;}
.y25{bottom:275.386667pt;}
.y26{bottom:282.106667pt;}
.y65{bottom:290.106667pt;}
.y86{bottom:296.026667pt;}
.y24{bottom:300.026667pt;}
.y85{bottom:320.666667pt;}
.y23{bottom:324.666667pt;}
.y46{bottom:331.386667pt;}
.y62{bottom:340.186667pt;}
.y84{bottom:345.306667pt;}
.y22{bottom:349.306667pt;}
.y83{bottom:370.146667pt;}
.y20{bottom:374.146667pt;}
.y21{bottom:380.866667pt;}
.y60{bottom:390.146667pt;}
.y82{bottom:394.786667pt;}
.y1f{bottom:398.786667pt;}
.y81{bottom:419.426667pt;}
.y1e{bottom:423.426667pt;}
.y4f{bottom:430.146667pt;}
.y5c{bottom:440.226667pt;}
.y80{bottom:444.226667pt;}
.y1d{bottom:448.226667pt;}
.y45{bottom:454.946667pt;}
.y7f{bottom:468.866667pt;}
.y1c{bottom:472.866667pt;}
.y35{bottom:479.586667pt;}
.y7e{bottom:493.506667pt;}
.y1b{bottom:497.506667pt;}
.y5b{bottom:504.226667pt;}
.y7d{bottom:518.146667pt;}
.y1a{bottom:522.146667pt;}
.y7c{bottom:542.946667pt;}
.y19{bottom:546.946667pt;}
.y54{bottom:553.666667pt;}
.y7b{bottom:567.586667pt;}
.y18{bottom:571.586667pt;}
.y44{bottom:578.333333pt;}
.y7a{bottom:592.253333pt;}
.y17{bottom:596.253333pt;}
.y34{bottom:602.973333pt;}
.y79{bottom:616.893333pt;}
.y16{bottom:620.893333pt;}
.y5a{bottom:627.613333pt;}
.y78{bottom:641.693333pt;}
.y15{bottom:645.693333pt;}
.y77{bottom:666.333333pt;}
.y14{bottom:670.333333pt;}
.y53{bottom:677.053333pt;}
.y76{bottom:684.413333pt;}
.y13{bottom:694.973333pt;}
.y56{bottom:701.693333pt;}
.y12{bottom:719.773333pt;}
.y43{bottom:726.493333pt;}
.y11{bottom:744.413333pt;}
.y33{bottom:751.133333pt;}
.y73{bottom:759.133333pt;}
.y10{bottom:769.053333pt;}
.y4e{bottom:775.773333pt;}
.yf{bottom:793.693333pt;}
.ye{bottom:818.533333pt;}
.y71{bottom:833.893333pt;}
.yd{bottom:843.173333pt;}
.y59{bottom:849.893333pt;}
.yc{bottom:867.813333pt;}
.y32{bottom:874.533333pt;}
.yb{bottom:892.613333pt;}
.y4d{bottom:899.333333pt;}
.y70{bottom:908.613333pt;}
.ya{bottom:917.253333pt;}
.y9{bottom:941.893333pt;}
.y6e{bottom:958.693333pt;}
.y8{bottom:966.533333pt;}
.y58{bottom:973.253333pt;}
.y7{bottom:991.333333pt;}
.y31{bottom:998.053333pt;}
.y4{bottom:1012.773333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1051.840000pt;}
.y1{bottom:1076.160000pt;}
.he{height:33.918750pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.hc{height:47.109375pt;}
.h11{height:48.375000pt;}
.h15{height:49.280000pt;}
.h13{height:49.312000pt;}
.h12{height:49.440000pt;}
.h10{height:52.134375pt;}
.h8{height:52.832812pt;}
.hf{height:52.834688pt;}
.hd{height:58.563750pt;}
.h4{height:59.706562pt;}
.hb{height:65.995312pt;}
.h2{height:67.871563pt;}
.ha{height:73.490625pt;}
.h14{height:73.989375pt;}
.h16{height:74.080000pt;}
.h17{height:74.112000pt;}
.h9{height:75.465000pt;}
.h18{height:76.964840pt;}
.h6{height:85.222187pt;}
.h3{height:93.387187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:150.586667pt;}
.w4{width:155.066667pt;}
.w5{width:230.746667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x51{left:6.874667pt;}
.x4e{left:12.640000pt;}
.x50{left:34.720000pt;}
.x5{left:37.759988pt;}
.x4b{left:45.914667pt;}
.x4f{left:49.320000pt;}
.x4d{left:59.520000pt;}
.x4{left:75.551988pt;}
.x10{left:79.871988pt;}
.x26{left:84.191988pt;}
.x1{left:94.591988pt;}
.x6{left:101.151988pt;}
.x4a{left:128.032000pt;}
.x1d{left:136.666643pt;}
.x1e{left:142.746655pt;}
.x9{left:146.106655pt;}
.x47{left:147.386655pt;}
.x34{left:155.386643pt;}
.x21{left:158.266655pt;}
.x13{left:160.506643pt;}
.x14{left:166.586655pt;}
.x35{left:167.546655pt;}
.x24{left:170.586655pt;}
.x30{left:176.186643pt;}
.x40{left:180.026655pt;}
.x19{left:181.786643pt;}
.x1a{left:187.866655pt;}
.x38{left:239.906643pt;}
.x39{left:252.066655pt;}
.x2b{left:254.946643pt;}
.xf{left:267.586655pt;}
.x1f{left:268.546643pt;}
.x20{left:280.706655pt;}
.x15{left:282.946643pt;}
.x4c{left:283.906667pt;}
.x16{left:289.026655pt;}
.xa{left:289.986655pt;}
.x7{left:291.746655pt;}
.x33{left:317.186643pt;}
.xd{left:322.466643pt;}
.xe{left:328.546655pt;}
.x1b{left:340.066643pt;}
.x1c{left:346.146655pt;}
.x3e{left:349.826643pt;}
.x3f{left:351.586655pt;}
.x3a{left:361.666643pt;}
.x36{left:366.306643pt;}
.x3b{left:373.826655pt;}
.x37{left:378.466655pt;}
.x8{left:396.893322pt;}
.x2{left:463.613322pt;}
.x29{left:476.253310pt;}
.x2a{left:488.413322pt;}
.x3c{left:513.213310pt;}
.x22{left:515.133310pt;}
.x3d{left:525.373322pt;}
.x23{left:527.293322pt;}
.x11{left:539.773310pt;}
.x12{left:545.853322pt;}
.x43{left:552.093322pt;}
.x2e{left:564.133310pt;}
.x3{left:570.373322pt;}
.x27{left:571.813310pt;}
.x2f{left:576.293322pt;}
.x28{left:583.973322pt;}
.xb{left:601.893310pt;}
.x44{left:604.933310pt;}
.xc{left:607.973322pt;}
.x45{left:617.093322pt;}
.x25{left:619.653322pt;}
.x31{left:624.613310pt;}
.x48{left:634.053310pt;}
.x32{left:636.773322pt;}
.x49{left:646.213322pt;}
.x46{left:652.933322pt;}
.x17{left:659.973310pt;}
.x18{left:666.053322pt;}
.x41{left:698.693310pt;}
.x2c{left:701.573310pt;}
.x42{left:710.853322pt;}
.x2d{left:713.733322pt;}
}




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