
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5173a87952b0d703fce102c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_d94e5398b4d24190d82f2047.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_fcf686257ac1237bbf873d9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_278c6b731113d78d832e6f36.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_1392a4db0cc78482e5574dc5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_0d87860e6798b62ee9c928f3.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.065400px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:1.505520px;}
.ls13{letter-spacing:47.726640px;}
.ls12{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._e{margin-left:-4.392599px;}
._7{margin-left:-3.246600px;}
._8{margin-left:-2.222036px;}
._0{margin-left:-1.110000px;}
._1{width:1.174152px;}
._4{width:2.341296px;}
._5{width:4.268400px;}
._6{width:5.471401px;}
._2{width:7.094400px;}
._3{width:8.729999px;}
._9{width:10.401000px;}
._a{width:11.491196px;}
._b{width:15.030000px;}
._c{width:16.172400px;}
._32{width:17.795520px;}
._d{width:18.877680px;}
._f{width:20.080080px;}
._2b{width:21.282480px;}
._58{width:23.206320px;}
._33{width:24.769440px;}
._1a{width:25.851600px;}
._17{width:27.453240px;}
._39{width:28.737360px;}
._3f{width:30.448560px;}
._14{width:32.043960px;}
._21{width:33.186240px;}
._36{width:34.328520px;}
._1f{width:36.733320px;}
._3e{width:38.231880px;}
._2c{width:39.859560px;}
._45{width:41.047560px;}
._11{width:42.564960px;}
._20{width:43.767360px;}
._1b{width:44.849520px;}
._44{width:45.871560px;}
._38{width:47.073960px;}
._41{width:48.216240px;}
._2a{width:49.418640px;}
._43{width:50.861520px;}
._22{width:51.943680px;}
._42{width:53.206200px;}
._3a{width:54.949680px;}
._3b{width:55.971720px;}
._34{width:57.835440px;}
._16{width:58.857480px;}
._15{width:59.999760px;}
._13{width:62.404560px;}
._4c{width:64.568880px;}
._29{width:68.176080px;}
._2e{width:70.039800px;}
._57{width:71.121960px;}
._3d{width:73.466640px;}
._1c{width:75.450600px;}
._4d{width:76.532760px;}
._46{width:78.336360px;}
._5a{width:80.528520px;}
._26{width:81.703080px;}
._24{width:89.578800px;}
._4f{width:93.246120px;}
._56{width:94.568760px;}
._51{width:95.650920px;}
._50{width:100.400400px;}
._47{width:102.805200px;}
._48{width:103.827240px;}
._30{width:104.849280px;}
._25{width:105.996600px;}
._12{width:107.314200px;}
._18{width:111.522600px;}
._1d{width:112.845240px;}
._10{width:115.430400px;}
._2d{width:117.113760px;}
._28{width:119.698920px;}
._37{width:121.562640px;}
._54{width:127.755000px;}
._53{width:129.077640px;}
._3c{width:131.302080px;}
._4a{width:141.402240px;}
._23{width:145.971360px;}
._49{width:156.732840px;}
._31{width:172.484280px;}
._19{width:224.367840px;}
._52{width:226.712520px;}
._40{width:232.790400px;}
._2f{width:235.670400px;}
._27{width:250.399800px;}
._4e{width:276.071040px;}
._35{width:278.776440px;}
._1e{width:286.952760px;}
._59{width:305.169120px;}
._55{width:334.868400px;}
._4b{width:336.130920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.420000px;}
.y4e{bottom:7.830000px;}
.y62{bottom:7.860000px;}
.y91{bottom:7.920000px;}
.y57{bottom:16.470000px;}
.y58{bottom:20.970000px;}
.y70{bottom:25.380000px;}
.y61{bottom:25.410000px;}
.y83{bottom:25.470000px;}
.y56{bottom:38.520000px;}
.y6f{bottom:43.020000px;}
.y60{bottom:43.050000px;}
.y90{bottom:43.110000px;}
.y55{bottom:56.160000px;}
.y8e{bottom:56.190000px;}
.y6e{bottom:60.570000px;}
.y5f{bottom:60.600000px;}
.y8f{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y54{bottom:73.710000px;}
.y28{bottom:74.190000px;}
.y5e{bottom:78.150000px;}
.y6d{bottom:78.210000px;}
.y8d{bottom:78.240000px;}
.y53{bottom:91.260000px;}
.y86{bottom:91.350000px;}
.y6c{bottom:95.760000px;}
.y5d{bottom:95.790000px;}
.y8c{bottom:95.880000px;}
.y1{bottom:101.640000px;}
.y52{bottom:108.900000px;}
.y6b{bottom:113.310000px;}
.y5c{bottom:113.340000px;}
.y82{bottom:113.400000px;}
.y8b{bottom:113.430000px;}
.y4f{bottom:115.500000px;}
.ycf{bottom:119.550000px;}
.y85{bottom:122.070000px;}
.ya5{bottom:124.320000px;}
.y51{bottom:126.450000px;}
.y92{bottom:126.480000px;}
.y26{bottom:128.010000px;}
.y6a{bottom:130.950000px;}
.y5b{bottom:130.980000px;}
.yce{bottom:137.100000px;}
.ya4{bottom:141.870000px;}
.y84{bottom:144.000000px;}
.y50{bottom:144.090000px;}
.y25{bottom:145.560000px;}
.y69{bottom:148.500000px;}
.y8a{bottom:148.620000px;}
.ycd{bottom:154.740000px;}
.y24{bottom:163.200000px;}
.y68{bottom:166.140000px;}
.y89{bottom:166.170000px;}
.ya3{bottom:177.420000px;}
.y23{bottom:180.750000px;}
.ycc{bottom:181.290000px;}
.y67{bottom:183.690000px;}
.y88{bottom:183.810000px;}
.ya2{bottom:195.060000px;}
.ycb{bottom:198.840000px;}
.y66{bottom:201.240000px;}
.y81{bottom:201.330000px;}
.ya1{bottom:212.610000px;}
.y22{bottom:216.300000px;}
.y65{bottom:218.880000px;}
.yca{bottom:225.480000px;}
.ya0{bottom:230.250000px;}
.y71{bottom:232.860000px;}
.y21{bottom:233.940000px;}
.y64{bottom:236.430000px;}
.yc9{bottom:243.030000px;}
.y9f{bottom:247.800000px;}
.y20{bottom:251.490000px;}
.y80{bottom:254.100000px;}
.yc8{bottom:260.580000px;}
.y9e{bottom:265.350000px;}
.y1f{bottom:269.130000px;}
.y7f{bottom:271.650000px;}
.y4d{bottom:279.030000px;}
.y9d{bottom:282.990000px;}
.y1e{bottom:286.680000px;}
.yc7{bottom:287.490000px;}
.y7e{bottom:289.290000px;}
.y1d{bottom:304.230000px;}
.y7d{bottom:306.840000px;}
.y9c{bottom:318.540000px;}
.y1c{bottom:321.870000px;}
.y7c{bottom:324.390000px;}
.y4c{bottom:327.720000px;}
.yc6{bottom:335.820000px;}
.y9b{bottom:336.180000px;}
.y1b{bottom:339.420000px;}
.y7b{bottom:342.030000px;}
.y9a{bottom:353.730000px;}
.y7a{bottom:359.580000px;}
.yc5{bottom:362.730000px;}
.y4b{bottom:363.360000px;}
.y1a{bottom:366.330000px;}
.y99{bottom:371.280000px;}
.y79{bottom:377.220000px;}
.y4a{bottom:380.910000px;}
.y98{bottom:388.920000px;}
.y78{bottom:394.770000px;}
.y49{bottom:398.460000px;}
.yc4{bottom:400.080000px;}
.y97{bottom:406.470000px;}
.y77{bottom:412.320000px;}
.y19{bottom:414.930000px;}
.y48{bottom:416.100000px;}
.y96{bottom:424.110000px;}
.y76{bottom:429.960000px;}
.y47{bottom:433.650000px;}
.yea{bottom:442.920000px;}
.y75{bottom:447.510000px;}
.yc3{bottom:448.320000px;}
.y95{bottom:450.930000px;}
.y18{bottom:451.920000px;}
.ye9{bottom:460.470000px;}
.y46{bottom:460.560000px;}
.y74{bottom:465.150000px;}
.yc2{bottom:465.870000px;}
.y17{bottom:469.560000px;}
.y73{bottom:482.700000px;}
.yc1{bottom:483.540000px;}
.y16{bottom:487.140000px;}
.y94{bottom:496.680000px;}
.y72{bottom:500.250000px;}
.yc0{bottom:501.090000px;}
.ye8{bottom:504.690000px;}
.y15{bottom:504.780000px;}
.y45{bottom:508.830000px;}
.ybf{bottom:518.730000px;}
.y14{bottom:522.330000px;}
.y44{bottom:526.470000px;}
.ye7{bottom:531.330000px;}
.ybe{bottom:536.280000px;}
.y43{bottom:544.020000px;}
.ye6{bottom:548.880000px;}
.ybd{bottom:553.830000px;}
.y13{bottom:557.880000px;}
.y42{bottom:561.660000px;}
.ybc{bottom:571.470000px;}
.ye5{bottom:575.430000px;}
.y12{bottom:575.520000px;}
.y41{bottom:579.210000px;}
.ybb{bottom:589.020000px;}
.y11{bottom:593.070000px;}
.y40{bottom:596.760000px;}
.ye4{bottom:610.620000px;}
.y10{bottom:610.710000px;}
.yba{bottom:615.930000px;}
.y3f{bottom:623.400000px;}
.ye3{bottom:637.260000px;}
.yf{bottom:646.260000px;}
.ye2{bottom:654.810000px;}
.y3e{bottom:658.950000px;}
.yb9{bottom:664.260000px;}
.ye1{bottom:672.360000px;}
.y3d{bottom:676.590000px;}
.ye{bottom:681.810000px;}
.y3c{bottom:694.140000px;}
.ye0{bottom:699.000000px;}
.yb8{bottom:699.360000px;}
.yd{bottom:699.450000px;}
.y3b{bottom:711.690000px;}
.ydf{bottom:716.550000px;}
.yc{bottom:717.000000px;}
.y93{bottom:717.450000px;}
.yde{bottom:734.190000px;}
.yb7{bottom:734.550000px;}
.yb{bottom:734.640000px;}
.y3a{bottom:738.330000px;}
.y63{bottom:752.640000px;}
.ydd{bottom:760.740000px;}
.ya{bottom:761.550000px;}
.yb6{bottom:770.190000px;}
.y39{bottom:773.880000px;}
.ydc{bottom:778.290000px;}
.yb5{bottom:787.740000px;}
.y38{bottom:791.520000px;}
.ydb{bottom:795.930000px;}
.yb4{bottom:805.290000px;}
.y37{bottom:809.070000px;}
.y9{bottom:809.790000px;}
.yda{bottom:822.480000px;}
.yb3{bottom:822.930000px;}
.y36{bottom:826.620000px;}
.yd9{bottom:840.030000px;}
.yb2{bottom:840.480000px;}
.y8{bottom:845.610000px;}
.y35{bottom:853.260000px;}
.yd8{bottom:857.670000px;}
.yb1{bottom:876.030000px;}
.y7{bottom:881.610000px;}
.yd7{bottom:884.220000px;}
.y34{bottom:889.170000px;}
.yb0{bottom:893.670000px;}
.yd6{bottom:901.860000px;}
.yaf{bottom:911.220000px;}
.yd5{bottom:919.410000px;}
.y6{bottom:921.390000px;}
.yae{bottom:928.860000px;}
.y33{bottom:937.410000px;}
.y5{bottom:939.390000px;}
.yd4{bottom:945.960000px;}
.yad{bottom:946.410000px;}
.y32{bottom:954.960000px;}
.y87{bottom:955.770000px;}
.yac{bottom:963.960000px;}
.y4{bottom:971.700000px;}
.y31{bottom:972.600000px;}
.yab{bottom:981.600000px;}
.y30{bottom:990.150000px;}
.yaa{bottom:999.150000px;}
.y2f{bottom:1007.790000px;}
.y5a{bottom:1008.600000px;}
.y3{bottom:1009.980000px;}
.yd3{bottom:1016.820000px;}
.y2e{bottom:1025.370000px;}
.ya9{bottom:1034.820000px;}
.y2d{bottom:1042.920000px;}
.yd2{bottom:1043.370000px;}
.ya8{bottom:1052.370000px;}
.yd1{bottom:1060.920000px;}
.y2c{bottom:1069.560000px;}
.ya7{bottom:1069.920000px;}
.yd0{bottom:1078.560000px;}
.ya6{bottom:1087.560000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h13{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.hf{height:110.070000px;}
.hc{height:145.200000px;}
.hb{height:162.810000px;}
.h10{height:198.030000px;}
.h12{height:220.050000px;}
.h11{height:237.600000px;}
.hd{height:255.150000px;}
.he{height:518.970000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:160.110000px;}
.w3{width:179.400000px;}
.w4{width:205.470000px;}
.w5{width:208.560000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x8{left:111.239987px;}
.x2{left:202.799987px;}
.x5{left:248.880000px;}
.x6{left:455.070000px;}
.x7{left:664.350000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.058133pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:1.338240pt;}
.ls13{letter-spacing:42.423680pt;}
.ls12{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._e{margin-left:-3.904532pt;}
._7{margin-left:-2.885867pt;}
._8{margin-left:-1.975143pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043691pt;}
._4{width:2.081152pt;}
._5{width:3.794133pt;}
._6{width:4.863468pt;}
._2{width:6.306134pt;}
._3{width:7.759999pt;}
._9{width:9.245334pt;}
._a{width:10.214396pt;}
._b{width:13.360000pt;}
._c{width:14.375467pt;}
._32{width:15.818240pt;}
._d{width:16.780160pt;}
._f{width:17.848960pt;}
._2b{width:18.917760pt;}
._58{width:20.627840pt;}
._33{width:22.017280pt;}
._1a{width:22.979200pt;}
._17{width:24.402880pt;}
._39{width:25.544320pt;}
._3f{width:27.065387pt;}
._14{width:28.483520pt;}
._21{width:29.498880pt;}
._36{width:30.514240pt;}
._1f{width:32.651840pt;}
._3e{width:33.983893pt;}
._2c{width:35.430720pt;}
._45{width:36.486720pt;}
._11{width:37.835520pt;}
._20{width:38.904320pt;}
._1b{width:39.866240pt;}
._44{width:40.774720pt;}
._38{width:41.843520pt;}
._41{width:42.858880pt;}
._2a{width:43.927680pt;}
._43{width:45.210240pt;}
._22{width:46.172160pt;}
._42{width:47.294400pt;}
._3a{width:48.844160pt;}
._3b{width:49.752640pt;}
._34{width:51.409280pt;}
._16{width:52.317760pt;}
._15{width:53.333120pt;}
._13{width:55.470720pt;}
._4c{width:57.394560pt;}
._29{width:60.600960pt;}
._2e{width:62.257600pt;}
._57{width:63.219520pt;}
._3d{width:65.303680pt;}
._1c{width:67.067200pt;}
._4d{width:68.029120pt;}
._46{width:69.632320pt;}
._5a{width:71.580907pt;}
._26{width:72.624960pt;}
._24{width:79.625600pt;}
._4f{width:82.885440pt;}
._56{width:84.061120pt;}
._51{width:85.023040pt;}
._50{width:89.244800pt;}
._47{width:91.382400pt;}
._48{width:92.290880pt;}
._30{width:93.199360pt;}
._25{width:94.219200pt;}
._12{width:95.390400pt;}
._18{width:99.131200pt;}
._1d{width:100.306880pt;}
._10{width:102.604800pt;}
._2d{width:104.101120pt;}
._28{width:106.399040pt;}
._37{width:108.055680pt;}
._54{width:113.560000pt;}
._53{width:114.735680pt;}
._3c{width:116.712960pt;}
._4a{width:125.690880pt;}
._23{width:129.752320pt;}
._49{width:139.318080pt;}
._31{width:153.319360pt;}
._19{width:199.438080pt;}
._52{width:201.522240pt;}
._40{width:206.924800pt;}
._2f{width:209.484800pt;}
._27{width:222.577600pt;}
._4e{width:245.396480pt;}
._35{width:247.801280pt;}
._1e{width:255.069120pt;}
._59{width:271.261440pt;}
._55{width:297.660800pt;}
._4b{width:298.783040pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:3.040000pt;}
.y4e{bottom:6.960000pt;}
.y62{bottom:6.986667pt;}
.y91{bottom:7.040000pt;}
.y57{bottom:14.640000pt;}
.y58{bottom:18.640000pt;}
.y70{bottom:22.560000pt;}
.y61{bottom:22.586667pt;}
.y83{bottom:22.640000pt;}
.y56{bottom:34.240000pt;}
.y6f{bottom:38.240000pt;}
.y60{bottom:38.266667pt;}
.y90{bottom:38.320000pt;}
.y55{bottom:49.920000pt;}
.y8e{bottom:49.946667pt;}
.y6e{bottom:53.840000pt;}
.y5f{bottom:53.866667pt;}
.y8f{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y54{bottom:65.520000pt;}
.y28{bottom:65.946667pt;}
.y5e{bottom:69.466667pt;}
.y6d{bottom:69.520000pt;}
.y8d{bottom:69.546667pt;}
.y53{bottom:81.120000pt;}
.y86{bottom:81.200000pt;}
.y6c{bottom:85.120000pt;}
.y5d{bottom:85.146667pt;}
.y8c{bottom:85.226667pt;}
.y1{bottom:90.346667pt;}
.y52{bottom:96.800000pt;}
.y6b{bottom:100.720000pt;}
.y5c{bottom:100.746667pt;}
.y82{bottom:100.800000pt;}
.y8b{bottom:100.826667pt;}
.y4f{bottom:102.666667pt;}
.ycf{bottom:106.266667pt;}
.y85{bottom:108.506667pt;}
.ya5{bottom:110.506667pt;}
.y51{bottom:112.400000pt;}
.y92{bottom:112.426667pt;}
.y26{bottom:113.786667pt;}
.y6a{bottom:116.400000pt;}
.y5b{bottom:116.426667pt;}
.yce{bottom:121.866667pt;}
.ya4{bottom:126.106667pt;}
.y84{bottom:128.000000pt;}
.y50{bottom:128.080000pt;}
.y25{bottom:129.386667pt;}
.y69{bottom:132.000000pt;}
.y8a{bottom:132.106667pt;}
.ycd{bottom:137.546667pt;}
.y24{bottom:145.066667pt;}
.y68{bottom:147.680000pt;}
.y89{bottom:147.706667pt;}
.ya3{bottom:157.706667pt;}
.y23{bottom:160.666667pt;}
.ycc{bottom:161.146667pt;}
.y67{bottom:163.280000pt;}
.y88{bottom:163.386667pt;}
.ya2{bottom:173.386667pt;}
.ycb{bottom:176.746667pt;}
.y66{bottom:178.880000pt;}
.y81{bottom:178.960000pt;}
.ya1{bottom:188.986667pt;}
.y22{bottom:192.266667pt;}
.y65{bottom:194.560000pt;}
.yca{bottom:200.426667pt;}
.ya0{bottom:204.666667pt;}
.y71{bottom:206.986667pt;}
.y21{bottom:207.946667pt;}
.y64{bottom:210.160000pt;}
.yc9{bottom:216.026667pt;}
.y9f{bottom:220.266667pt;}
.y20{bottom:223.546667pt;}
.y80{bottom:225.866667pt;}
.yc8{bottom:231.626667pt;}
.y9e{bottom:235.866667pt;}
.y1f{bottom:239.226667pt;}
.y7f{bottom:241.466667pt;}
.y4d{bottom:248.026667pt;}
.y9d{bottom:251.546667pt;}
.y1e{bottom:254.826667pt;}
.yc7{bottom:255.546667pt;}
.y7e{bottom:257.146667pt;}
.y1d{bottom:270.426667pt;}
.y7d{bottom:272.746667pt;}
.y9c{bottom:283.146667pt;}
.y1c{bottom:286.106667pt;}
.y7c{bottom:288.346667pt;}
.y4c{bottom:291.306667pt;}
.yc6{bottom:298.506667pt;}
.y9b{bottom:298.826667pt;}
.y1b{bottom:301.706667pt;}
.y7b{bottom:304.026667pt;}
.y9a{bottom:314.426667pt;}
.y7a{bottom:319.626667pt;}
.yc5{bottom:322.426667pt;}
.y4b{bottom:322.986667pt;}
.y1a{bottom:325.626667pt;}
.y99{bottom:330.026667pt;}
.y79{bottom:335.306667pt;}
.y4a{bottom:338.586667pt;}
.y98{bottom:345.706667pt;}
.y78{bottom:350.906667pt;}
.y49{bottom:354.186667pt;}
.yc4{bottom:355.626667pt;}
.y97{bottom:361.306667pt;}
.y77{bottom:366.506667pt;}
.y19{bottom:368.826667pt;}
.y48{bottom:369.866667pt;}
.y96{bottom:376.986667pt;}
.y76{bottom:382.186667pt;}
.y47{bottom:385.466667pt;}
.yea{bottom:393.706667pt;}
.y75{bottom:397.786667pt;}
.yc3{bottom:398.506667pt;}
.y95{bottom:400.826667pt;}
.y18{bottom:401.706667pt;}
.ye9{bottom:409.306667pt;}
.y46{bottom:409.386667pt;}
.y74{bottom:413.466667pt;}
.yc2{bottom:414.106667pt;}
.y17{bottom:417.386667pt;}
.y73{bottom:429.066667pt;}
.yc1{bottom:429.813333pt;}
.y16{bottom:433.013333pt;}
.y94{bottom:441.493333pt;}
.y72{bottom:444.666667pt;}
.yc0{bottom:445.413333pt;}
.ye8{bottom:448.613333pt;}
.y15{bottom:448.693333pt;}
.y45{bottom:452.293333pt;}
.ybf{bottom:461.093333pt;}
.y14{bottom:464.293333pt;}
.y44{bottom:467.973333pt;}
.ye7{bottom:472.293333pt;}
.ybe{bottom:476.693333pt;}
.y43{bottom:483.573333pt;}
.ye6{bottom:487.893333pt;}
.ybd{bottom:492.293333pt;}
.y13{bottom:495.893333pt;}
.y42{bottom:499.253333pt;}
.ybc{bottom:507.973333pt;}
.ye5{bottom:511.493333pt;}
.y12{bottom:511.573333pt;}
.y41{bottom:514.853333pt;}
.ybb{bottom:523.573333pt;}
.y11{bottom:527.173333pt;}
.y40{bottom:530.453333pt;}
.ye4{bottom:542.773333pt;}
.y10{bottom:542.853333pt;}
.yba{bottom:547.493333pt;}
.y3f{bottom:554.133333pt;}
.ye3{bottom:566.453333pt;}
.yf{bottom:574.453333pt;}
.ye2{bottom:582.053333pt;}
.y3e{bottom:585.733333pt;}
.yb9{bottom:590.453333pt;}
.ye1{bottom:597.653333pt;}
.y3d{bottom:601.413333pt;}
.ye{bottom:606.053333pt;}
.y3c{bottom:617.013333pt;}
.ye0{bottom:621.333333pt;}
.yb8{bottom:621.653333pt;}
.yd{bottom:621.733333pt;}
.y3b{bottom:632.613333pt;}
.ydf{bottom:636.933333pt;}
.yc{bottom:637.333333pt;}
.y93{bottom:637.733333pt;}
.yde{bottom:652.613333pt;}
.yb7{bottom:652.933333pt;}
.yb{bottom:653.013333pt;}
.y3a{bottom:656.293333pt;}
.y63{bottom:669.013333pt;}
.ydd{bottom:676.213333pt;}
.ya{bottom:676.933333pt;}
.yb6{bottom:684.613333pt;}
.y39{bottom:687.893333pt;}
.ydc{bottom:691.813333pt;}
.yb5{bottom:700.213333pt;}
.y38{bottom:703.573333pt;}
.ydb{bottom:707.493333pt;}
.yb4{bottom:715.813333pt;}
.y37{bottom:719.173333pt;}
.y9{bottom:719.813333pt;}
.yda{bottom:731.093333pt;}
.yb3{bottom:731.493333pt;}
.y36{bottom:734.773333pt;}
.yd9{bottom:746.693333pt;}
.yb2{bottom:747.093333pt;}
.y8{bottom:751.653333pt;}
.y35{bottom:758.453333pt;}
.yd8{bottom:762.373333pt;}
.yb1{bottom:778.693333pt;}
.y7{bottom:783.653333pt;}
.yd7{bottom:785.973333pt;}
.y34{bottom:790.373333pt;}
.yb0{bottom:794.373333pt;}
.yd6{bottom:801.653333pt;}
.yaf{bottom:809.973333pt;}
.yd5{bottom:817.253333pt;}
.y6{bottom:819.013333pt;}
.yae{bottom:825.653333pt;}
.y33{bottom:833.253333pt;}
.y5{bottom:835.013333pt;}
.yd4{bottom:840.853333pt;}
.yad{bottom:841.253333pt;}
.y32{bottom:848.853333pt;}
.y87{bottom:849.573333pt;}
.yac{bottom:856.853333pt;}
.y4{bottom:863.733333pt;}
.y31{bottom:864.533333pt;}
.yab{bottom:872.533333pt;}
.y30{bottom:880.133333pt;}
.yaa{bottom:888.133333pt;}
.y2f{bottom:895.813333pt;}
.y5a{bottom:896.533333pt;}
.y3{bottom:897.760000pt;}
.yd3{bottom:903.840000pt;}
.y2e{bottom:911.440000pt;}
.ya9{bottom:919.840000pt;}
.y2d{bottom:927.040000pt;}
.yd2{bottom:927.440000pt;}
.ya8{bottom:935.440000pt;}
.yd1{bottom:943.040000pt;}
.y2c{bottom:950.720000pt;}
.ya7{bottom:951.040000pt;}
.yd0{bottom:958.720000pt;}
.ya6{bottom:966.720000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h13{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.hf{height:97.840000pt;}
.hc{height:129.066667pt;}
.hb{height:144.720000pt;}
.h10{height:176.026667pt;}
.h12{height:195.600000pt;}
.h11{height:211.200000pt;}
.hd{height:226.800000pt;}
.he{height:461.306667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:142.320000pt;}
.w3{width:159.466667pt;}
.w4{width:182.640000pt;}
.w5{width:185.386667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x8{left:98.879988pt;}
.x2{left:180.266655pt;}
.x5{left:221.226667pt;}
.x6{left:404.506667pt;}
.x7{left:590.533333pt;}
.x3{left:704.053322pt;}
}




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