
    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_7699fb77a5a57edb1318a8c2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_95ee99102bcb731f2b878e21.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bfbfbb2f798ac00fe4128a97.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_91a9b6f20b69bbe729bcf74e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d23ea7ba27c265a500abe1a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_15a84c36f97424942d6afd08.woff2')format("woff");}.ff6{font-family:ff6;line-height:4.193848;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_3c262b238d9502b3aa64e369.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_c61895ae6f328279c1efb440.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v5{vertical-align:-118.800000px;}
.vb{vertical-align:-43.920000px;}
.vf{vertical-align:-28.800000px;}
.va{vertical-align:-26.640000px;}
.ve{vertical-align:-17.280000px;}
.v2{vertical-align:-14.400000px;}
.v11{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v3{vertical-align:14.400000px;}
.v10{vertical-align:18.720000px;}
.v8{vertical-align:36.000000px;}
.v9{vertical-align:41.040000px;}
.v6{vertical-align:42.480000px;}
.vc{vertical-align:46.080000px;}
.v4{vertical-align:48.240000px;}
.v1{vertical-align:54.720000px;}
.vd{vertical-align:92.160000px;}
.ls22{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.272400px;}
.ls1c{letter-spacing:-0.159000px;}
.lsa{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.254400px;}
.ls0{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.385200px;}
.ls2{letter-spacing:0.613440px;}
.ls20{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.894320px;}
.ls15{letter-spacing:2.664720px;}
.ls8{letter-spacing:4.057920px;}
.ls14{letter-spacing:4.376880px;}
.ls19{letter-spacing:5.096880px;}
.ls17{letter-spacing:5.544720px;}
.ls16{letter-spacing:17.269920px;}
.lsf{letter-spacing:19.776000px;}
.ls13{letter-spacing:20.081520px;}
.ls7{letter-spacing:20.376000px;}
.ls18{letter-spacing:22.752000px;}
.ls12{letter-spacing:23.681520px;}
.ls1a{letter-spacing:27.792000px;}
.ls21{letter-spacing:188.040000px;}
.ls1f{letter-spacing:224.040000px;}
.lse{letter-spacing:898.020000px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws1{word-spacing:-21.060000px;}
.ws10{word-spacing:-18.216000px;}
.wsf{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.056000px;}
.ws7{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.480000px;}
.ws0{word-spacing:-15.238800px;}
.ws3{word-spacing:-13.505760px;}
.ws4{word-spacing:-13.447440px;}
.ws9{word-spacing:-11.500800px;}
.wsc{word-spacing:-11.246400px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:29.448360px;}
.wsd{word-spacing:106.755120px;}
._2d{margin-left:-23.478480px;}
._2e{margin-left:-15.878880px;}
._19{margin-left:-10.800000px;}
._5{margin-left:-9.504000px;}
._23{margin-left:-7.768800px;}
._3{margin-left:-6.348000px;}
._2{margin-left:-4.536000px;}
._1{margin-left:-2.568240px;}
._4{margin-left:-1.319760px;}
._0{width:1.513440px;}
._9{width:2.656800px;}
._11{width:3.815760px;}
._10{width:5.191200px;}
._a{width:7.056000px;}
._15{width:8.422560px;}
._20{width:10.152000px;}
._12{width:12.047760px;}
._c{width:13.176000px;}
._d{width:14.386800px;}
._1a{width:15.781200px;}
._18{width:16.920000px;}
._1f{width:19.080000px;}
._1e{width:20.158560px;}
._21{width:21.529440px;}
._16{width:22.680000px;}
._17{width:23.760000px;}
._2a{width:24.768000px;}
._26{width:25.776000px;}
._32{width:27.022320px;}
._1b{width:28.152000px;}
._8{width:29.808000px;}
._2b{width:30.960000px;}
._22{width:32.544000px;}
._b{width:34.272000px;}
._6{width:35.640000px;}
._7{width:36.742320px;}
._14{width:40.127760px;}
._13{width:41.256000px;}
._2f{width:42.552000px;}
._1d{width:44.087760px;}
._1c{width:45.120240px;}
._29{width:46.414080px;}
._24{width:50.904000px;}
._25{width:52.126560px;}
._27{width:53.137440px;}
._28{width:54.142560px;}
._30{width:58.104000px;}
._31{width:59.326560px;}
._e{width:68.952240px;}
._f{width:70.194720px;}
._33{width:115.344000px;}
._34{width:116.352000px;}
._2c{width:221.734560px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:69.480000px;}
.y37{bottom:93.060000px;}
.y7b{bottom:93.780000px;}
.y56{bottom:98.280000px;}
.y7a{bottom:99.000000px;}
.y36{bottom:111.420000px;}
.y35{bottom:116.640000px;}
.y79{bottom:117.360000px;}
.yb3{bottom:121.680000px;}
.y78{bottom:122.580000px;}
.y34{bottom:129.780000px;}
.y95{bottom:130.320000px;}
.y33{bottom:135.000000px;}
.y77{bottom:136.080000px;}
.yb2{bottom:145.440000px;}
.y32{bottom:148.140000px;}
.y55{bottom:148.680000px;}
.y31{bottom:166.350000px;}
.y76{bottom:169.410000px;}
.y30{bottom:171.570000px;}
.y94{bottom:172.830000px;}
.y54{bottom:178.590000px;}
.y2f{bottom:185.250000px;}
.y75{bottom:193.170000px;}
.y93{bottom:196.590000px;}
.y53{bottom:202.530000px;}
.y74{bottom:216.930000px;}
.y92{bottom:220.530000px;}
.yb1{bottom:220.710000px;}
.y52{bottom:226.290000px;}
.y2e{bottom:228.450000px;}
.y73{bottom:240.690000px;}
.y91{bottom:244.290000px;}
.yaf{bottom:244.650000px;}
.y51{bottom:250.050000px;}
.yb0{bottom:251.490000px;}
.y2d{bottom:252.210000px;}
.y72{bottom:264.630000px;}
.y8f{bottom:268.050000px;}
.yae{bottom:268.410000px;}
.y50{bottom:273.810000px;}
.y90{bottom:274.890000px;}
.y2c{bottom:275.970000px;}
.y71{bottom:288.390000px;}
.y8e{bottom:291.810000px;}
.yad{bottom:292.170000px;}
.y4f{bottom:297.750000px;}
.y2b{bottom:299.730000px;}
.y70{bottom:312.150000px;}
.y8d{bottom:315.750000px;}
.yac{bottom:315.930000px;}
.y4e{bottom:321.510000px;}
.y2a{bottom:323.670000px;}
.y6f{bottom:335.910000px;}
.y8c{bottom:339.510000px;}
.yab{bottom:339.870000px;}
.y4d{bottom:345.270000px;}
.y29{bottom:347.430000px;}
.y6e{bottom:359.670000px;}
.y8b{bottom:363.270000px;}
.yaa{bottom:363.630000px;}
.y4b{bottom:369.030000px;}
.y27{bottom:371.190000px;}
.y4c{bottom:375.870000px;}
.y28{bottom:378.030000px;}
.y6d{bottom:383.610000px;}
.y8a{bottom:387.030000px;}
.ya9{bottom:387.390000px;}
.y4a{bottom:392.970000px;}
.y26{bottom:394.950000px;}
.ya8{bottom:399.450000px;}
.y6b{bottom:407.415000px;}
.y89{bottom:411.015000px;}
.y6c{bottom:414.255000px;}
.y49{bottom:416.775000px;}
.y24{bottom:418.935000px;}
.y25{bottom:425.775000px;}
.y6a{bottom:431.175000px;}
.y88{bottom:434.775000px;}
.ya7{bottom:435.315000px;}
.y48{bottom:440.535000px;}
.y23{bottom:442.695000px;}
.y69{bottom:454.935000px;}
.y87{bottom:458.535000px;}
.ya6{bottom:459.075000px;}
.y47{bottom:464.295000px;}
.y22{bottom:466.455000px;}
.y86{bottom:478.515000px;}
.y68{bottom:478.875000px;}
.ya5{bottom:483.015000px;}
.y46{bottom:488.235000px;}
.y21{bottom:490.215000px;}
.y85{bottom:490.575000px;}
.y67{bottom:502.635000px;}
.ya4{bottom:506.775000px;}
.y44{bottom:511.995000px;}
.y20{bottom:514.155000px;}
.y45{bottom:517.935000px;}
.y84{bottom:526.035000px;}
.y66{bottom:526.395000px;}
.ya3{bottom:530.535000px;}
.y43{bottom:535.755000px;}
.y1e{bottom:537.915000px;}
.y1f{bottom:544.755000px;}
.y83{bottom:549.795000px;}
.y65{bottom:550.155000px;}
.ya2{bottom:550.515000px;}
.y42{bottom:559.515000px;}
.y1d{bottom:561.675000px;}
.ya0{bottom:571.035000px;}
.y82{bottom:573.555000px;}
.y64{bottom:574.095000px;}
.y41{bottom:579.315000px;}
.y1c{bottom:585.435000px;}
.y9e{bottom:594.075000px;}
.y81{bottom:597.315000px;}
.y63{bottom:597.855000px;}
.y1b{bottom:609.375000px;}
.y9f{bottom:620.895000px;}
.y80{bottom:621.255000px;}
.y62{bottom:621.615000px;}
.y1a{bottom:633.135000px;}
.ya1{bottom:641.415000px;}
.y7f{bottom:645.015000px;}
.y61{bottom:645.375000px;}
.y19{bottom:656.925000px;}
.y9d{bottom:657.465000px;}
.y7e{bottom:668.805000px;}
.y5f{bottom:669.345000px;}
.y60{bottom:676.185000px;}
.y18{bottom:680.685000px;}
.y9c{bottom:681.405000px;}
.y7d{bottom:692.745000px;}
.y5e{bottom:693.105000px;}
.y17{bottom:704.445000px;}
.y9b{bottom:705.165000px;}
.y5d{bottom:716.865000px;}
.y16{bottom:728.385000px;}
.y9a{bottom:728.925000px;}
.y5c{bottom:740.625000px;}
.y15{bottom:752.145000px;}
.y99{bottom:752.685000px;}
.y5b{bottom:764.565000px;}
.y14{bottom:775.905000px;}
.y98{bottom:776.625000px;}
.y5a{bottom:788.325000px;}
.y97{bottom:797.145000px;}
.y13{bottom:799.665000px;}
.y59{bottom:812.085000px;}
.y12{bottom:823.605000px;}
.y58{bottom:835.845000px;}
.y11{bottom:847.365000px;}
.y57{bottom:859.605000px;}
.y10{bottom:871.125000px;}
.y40{bottom:883.545000px;}
.yf{bottom:894.885000px;}
.y3e{bottom:907.350000px;}
.y3f{bottom:914.190000px;}
.ye{bottom:918.870000px;}
.y3d{bottom:931.110000px;}
.yd{bottom:942.630000px;}
.y3c{bottom:954.870000px;}
.yc{bottom:966.390000px;}
.y3b{bottom:978.810000px;}
.yb{bottom:990.150000px;}
.y3a{bottom:1002.570000px;}
.y7c{bottom:1009.410000px;}
.ya{bottom:1014.090000px;}
.y39{bottom:1026.330000px;}
.y9{bottom:1047.210000px;}
.y38{bottom:1050.090000px;}
.y96{bottom:1056.930000px;}
.y8{bottom:1074.030000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.hb{height:38.671172px;}
.h2{height:42.164648px;}
.ha{height:47.344922px;}
.hd{height:48.616875px;}
.h6{height:50.800781px;}
.hc{height:59.439023px;}
.h3{height:60.226875px;}
.h9{height:63.457031px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.h14{height:74.004654px;}
.h5{height:82.676953px;}
.h4{height:84.898125px;}
.h10{height:121.809375px;}
.he{height:171.562500px;}
.h13{height:220.522500px;}
.hf{height:226.282500px;}
.h12{height:226.462500px;}
.h11{height:263.722500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:84.995987px;}
.x18{left:88.055987px;}
.x11{left:89.855987px;}
.x15{left:91.835987px;}
.x6{left:94.715987px;}
.x19{left:103.535987px;}
.x14{left:105.515987px;}
.x7{left:135.575987px;}
.x16{left:143.855973px;}
.x26{left:147.995973px;}
.x17{left:149.975987px;}
.x27{left:160.229987px;}
.x1f{left:194.969973px;}
.x20{left:201.089987px;}
.x8{left:205.229987px;}
.x37{left:246.629987px;}
.x1a{left:255.989987px;}
.x2d{left:265.169987px;}
.x23{left:274.754987px;}
.x10{left:301.034987px;}
.x2f{left:309.494987px;}
.x2e{left:316.154987px;}
.x24{left:322.814987px;}
.x28{left:324.974973px;}
.x33{left:327.494987px;}
.x29{left:337.214987px;}
.x4{left:350.714987px;}
.x2a{left:370.514973px;}
.x9{left:380.954987px;}
.x2b{left:382.754987px;}
.x34{left:396.074987px;}
.x25{left:422.714987px;}
.x5{left:430.634987px;}
.x31{left:436.574987px;}
.x2{left:457.124987px;}
.x2c{left:463.424987px;}
.x30{left:470.264987px;}
.x1{left:510.404987px;}
.x1d{left:518.144973px;}
.x1e{left:524.264987px;}
.xe{left:534.704973px;}
.xf{left:540.824987px;}
.x35{left:594.284973px;}
.x36{left:606.524987px;}
.x21{left:610.484973px;}
.x22{left:616.604987px;}
.x1b{left:626.324973px;}
.x32{left:627.629987px;}
.x1c{left:632.489987px;}
.xc{left:645.449973px;}
.xd{left:651.569987px;}
.x12{left:731.669973px;}
.x13{left:737.789987px;}
.xa{left:780.449973px;}
.xb{left:786.569987px;}
@media print{
.v5{vertical-align:-105.600000pt;}
.vb{vertical-align:-39.040000pt;}
.vf{vertical-align:-25.600000pt;}
.va{vertical-align:-23.680000pt;}
.ve{vertical-align:-15.360000pt;}
.v2{vertical-align:-12.800000pt;}
.v11{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v3{vertical-align:12.800000pt;}
.v10{vertical-align:16.640000pt;}
.v8{vertical-align:32.000000pt;}
.v9{vertical-align:36.480000pt;}
.v6{vertical-align:37.760000pt;}
.vc{vertical-align:40.960000pt;}
.v4{vertical-align:42.880000pt;}
.v1{vertical-align:48.640000pt;}
.vd{vertical-align:81.920000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.242133pt;}
.ls1c{letter-spacing:-0.141333pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.226133pt;}
.ls0{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.342400pt;}
.ls2{letter-spacing:0.545280pt;}
.ls20{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.683840pt;}
.ls15{letter-spacing:2.368640pt;}
.ls8{letter-spacing:3.607040pt;}
.ls14{letter-spacing:3.890560pt;}
.ls19{letter-spacing:4.530560pt;}
.ls17{letter-spacing:4.928640pt;}
.ls16{letter-spacing:15.351040pt;}
.lsf{letter-spacing:17.578667pt;}
.ls13{letter-spacing:17.850240pt;}
.ls7{letter-spacing:18.112000pt;}
.ls18{letter-spacing:20.224000pt;}
.ls12{letter-spacing:21.050240pt;}
.ls1a{letter-spacing:24.704000pt;}
.ls21{letter-spacing:167.146667pt;}
.ls1f{letter-spacing:199.146667pt;}
.lse{letter-spacing:798.240000pt;}
.wse{word-spacing:-53.120000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws10{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.272000pt;}
.ws7{word-spacing:-14.144000pt;}
.ws6{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.760000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws3{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.953280pt;}
.ws9{word-spacing:-10.222933pt;}
.wsc{word-spacing:-9.996800pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:26.176320pt;}
.wsd{word-spacing:94.893440pt;}
._2d{margin-left:-20.869760pt;}
._2e{margin-left:-14.114560pt;}
._19{margin-left:-9.600000pt;}
._5{margin-left:-8.448000pt;}
._23{margin-left:-6.905600pt;}
._3{margin-left:-5.642667pt;}
._2{margin-left:-4.032000pt;}
._1{margin-left:-2.282880pt;}
._4{margin-left:-1.173120pt;}
._0{width:1.345280pt;}
._9{width:2.361600pt;}
._11{width:3.391787pt;}
._10{width:4.614400pt;}
._a{width:6.272000pt;}
._15{width:7.486720pt;}
._20{width:9.024000pt;}
._12{width:10.709120pt;}
._c{width:11.712000pt;}
._d{width:12.788267pt;}
._1a{width:14.027733pt;}
._18{width:15.040000pt;}
._1f{width:16.960000pt;}
._1e{width:17.918720pt;}
._21{width:19.137280pt;}
._16{width:20.160000pt;}
._17{width:21.120000pt;}
._2a{width:22.016000pt;}
._26{width:22.912000pt;}
._32{width:24.019840pt;}
._1b{width:25.024000pt;}
._8{width:26.496000pt;}
._2b{width:27.520000pt;}
._22{width:28.928000pt;}
._b{width:30.464000pt;}
._6{width:31.680000pt;}
._7{width:32.659840pt;}
._14{width:35.669120pt;}
._13{width:36.672000pt;}
._2f{width:37.824000pt;}
._1d{width:39.189120pt;}
._1c{width:40.106880pt;}
._29{width:41.256960pt;}
._24{width:45.248000pt;}
._25{width:46.334720pt;}
._27{width:47.233280pt;}
._28{width:48.126720pt;}
._30{width:51.648000pt;}
._31{width:52.734720pt;}
._e{width:61.290880pt;}
._f{width:62.395307pt;}
._33{width:102.528000pt;}
._34{width:103.424000pt;}
._2c{width:197.097387pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:61.760000pt;}
.y37{bottom:82.720000pt;}
.y7b{bottom:83.360000pt;}
.y56{bottom:87.360000pt;}
.y7a{bottom:88.000000pt;}
.y36{bottom:99.040000pt;}
.y35{bottom:103.680000pt;}
.y79{bottom:104.320000pt;}
.yb3{bottom:108.160000pt;}
.y78{bottom:108.960000pt;}
.y34{bottom:115.360000pt;}
.y95{bottom:115.840000pt;}
.y33{bottom:120.000000pt;}
.y77{bottom:120.960000pt;}
.yb2{bottom:129.280000pt;}
.y32{bottom:131.680000pt;}
.y55{bottom:132.160000pt;}
.y31{bottom:147.866667pt;}
.y76{bottom:150.586667pt;}
.y30{bottom:152.506667pt;}
.y94{bottom:153.626667pt;}
.y54{bottom:158.746667pt;}
.y2f{bottom:164.666667pt;}
.y75{bottom:171.706667pt;}
.y93{bottom:174.746667pt;}
.y53{bottom:180.026667pt;}
.y74{bottom:192.826667pt;}
.y92{bottom:196.026667pt;}
.yb1{bottom:196.186667pt;}
.y52{bottom:201.146667pt;}
.y2e{bottom:203.066667pt;}
.y73{bottom:213.946667pt;}
.y91{bottom:217.146667pt;}
.yaf{bottom:217.466667pt;}
.y51{bottom:222.266667pt;}
.yb0{bottom:223.546667pt;}
.y2d{bottom:224.186667pt;}
.y72{bottom:235.226667pt;}
.y8f{bottom:238.266667pt;}
.yae{bottom:238.586667pt;}
.y50{bottom:243.386667pt;}
.y90{bottom:244.346667pt;}
.y2c{bottom:245.306667pt;}
.y71{bottom:256.346667pt;}
.y8e{bottom:259.386667pt;}
.yad{bottom:259.706667pt;}
.y4f{bottom:264.666667pt;}
.y2b{bottom:266.426667pt;}
.y70{bottom:277.466667pt;}
.y8d{bottom:280.666667pt;}
.yac{bottom:280.826667pt;}
.y4e{bottom:285.786667pt;}
.y2a{bottom:287.706667pt;}
.y6f{bottom:298.586667pt;}
.y8c{bottom:301.786667pt;}
.yab{bottom:302.106667pt;}
.y4d{bottom:306.906667pt;}
.y29{bottom:308.826667pt;}
.y6e{bottom:319.706667pt;}
.y8b{bottom:322.906667pt;}
.yaa{bottom:323.226667pt;}
.y4b{bottom:328.026667pt;}
.y27{bottom:329.946667pt;}
.y4c{bottom:334.106667pt;}
.y28{bottom:336.026667pt;}
.y6d{bottom:340.986667pt;}
.y8a{bottom:344.026667pt;}
.ya9{bottom:344.346667pt;}
.y4a{bottom:349.306667pt;}
.y26{bottom:351.066667pt;}
.ya8{bottom:355.066667pt;}
.y6b{bottom:362.146667pt;}
.y89{bottom:365.346667pt;}
.y6c{bottom:368.226667pt;}
.y49{bottom:370.466667pt;}
.y24{bottom:372.386667pt;}
.y25{bottom:378.466667pt;}
.y6a{bottom:383.266667pt;}
.y88{bottom:386.466667pt;}
.ya7{bottom:386.946667pt;}
.y48{bottom:391.586667pt;}
.y23{bottom:393.506667pt;}
.y69{bottom:404.386667pt;}
.y87{bottom:407.586667pt;}
.ya6{bottom:408.066667pt;}
.y47{bottom:412.706667pt;}
.y22{bottom:414.626667pt;}
.y86{bottom:425.346667pt;}
.y68{bottom:425.666667pt;}
.ya5{bottom:429.346667pt;}
.y46{bottom:433.986667pt;}
.y21{bottom:435.746667pt;}
.y85{bottom:436.066667pt;}
.y67{bottom:446.786667pt;}
.ya4{bottom:450.466667pt;}
.y44{bottom:455.106667pt;}
.y20{bottom:457.026667pt;}
.y45{bottom:460.386667pt;}
.y84{bottom:467.586667pt;}
.y66{bottom:467.906667pt;}
.ya3{bottom:471.586667pt;}
.y43{bottom:476.226667pt;}
.y1e{bottom:478.146667pt;}
.y1f{bottom:484.226667pt;}
.y83{bottom:488.706667pt;}
.y65{bottom:489.026667pt;}
.ya2{bottom:489.346667pt;}
.y42{bottom:497.346667pt;}
.y1d{bottom:499.266667pt;}
.ya0{bottom:507.586667pt;}
.y82{bottom:509.826667pt;}
.y64{bottom:510.306667pt;}
.y41{bottom:514.946667pt;}
.y1c{bottom:520.386667pt;}
.y9e{bottom:528.066667pt;}
.y81{bottom:530.946667pt;}
.y63{bottom:531.426667pt;}
.y1b{bottom:541.666667pt;}
.y9f{bottom:551.906667pt;}
.y80{bottom:552.226667pt;}
.y62{bottom:552.546667pt;}
.y1a{bottom:562.786667pt;}
.ya1{bottom:570.146667pt;}
.y7f{bottom:573.346667pt;}
.y61{bottom:573.666667pt;}
.y19{bottom:583.933333pt;}
.y9d{bottom:584.413333pt;}
.y7e{bottom:594.493333pt;}
.y5f{bottom:594.973333pt;}
.y60{bottom:601.053333pt;}
.y18{bottom:605.053333pt;}
.y9c{bottom:605.693333pt;}
.y7d{bottom:615.773333pt;}
.y5e{bottom:616.093333pt;}
.y17{bottom:626.173333pt;}
.y9b{bottom:626.813333pt;}
.y5d{bottom:637.213333pt;}
.y16{bottom:647.453333pt;}
.y9a{bottom:647.933333pt;}
.y5c{bottom:658.333333pt;}
.y15{bottom:668.573333pt;}
.y99{bottom:669.053333pt;}
.y5b{bottom:679.613333pt;}
.y14{bottom:689.693333pt;}
.y98{bottom:690.333333pt;}
.y5a{bottom:700.733333pt;}
.y97{bottom:708.573333pt;}
.y13{bottom:710.813333pt;}
.y59{bottom:721.853333pt;}
.y12{bottom:732.093333pt;}
.y58{bottom:742.973333pt;}
.y11{bottom:753.213333pt;}
.y57{bottom:764.093333pt;}
.y10{bottom:774.333333pt;}
.y40{bottom:785.373333pt;}
.yf{bottom:795.453333pt;}
.y3e{bottom:806.533333pt;}
.y3f{bottom:812.613333pt;}
.ye{bottom:816.773333pt;}
.y3d{bottom:827.653333pt;}
.yd{bottom:837.893333pt;}
.y3c{bottom:848.773333pt;}
.yc{bottom:859.013333pt;}
.y3b{bottom:870.053333pt;}
.yb{bottom:880.133333pt;}
.y3a{bottom:891.173333pt;}
.y7c{bottom:897.253333pt;}
.ya{bottom:901.413333pt;}
.y39{bottom:912.293333pt;}
.y9{bottom:930.853333pt;}
.y38{bottom:933.413333pt;}
.y96{bottom:939.493333pt;}
.y8{bottom:954.693333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.hb{height:34.374375pt;}
.h2{height:37.479688pt;}
.ha{height:42.084375pt;}
.hd{height:43.215000pt;}
.h6{height:45.156250pt;}
.hc{height:52.834688pt;}
.h3{height:53.535000pt;}
.h9{height:56.406250pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.h14{height:65.781915pt;}
.h5{height:73.490625pt;}
.h4{height:75.465000pt;}
.h10{height:108.275000pt;}
.he{height:152.500000pt;}
.h13{height:196.020000pt;}
.hf{height:201.140000pt;}
.h12{height:201.300000pt;}
.h11{height:234.420000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551988pt;}
.x18{left:78.271988pt;}
.x11{left:79.871988pt;}
.x15{left:81.631988pt;}
.x6{left:84.191988pt;}
.x19{left:92.031988pt;}
.x14{left:93.791988pt;}
.x7{left:120.511988pt;}
.x16{left:127.871976pt;}
.x26{left:131.551976pt;}
.x17{left:133.311988pt;}
.x27{left:142.426655pt;}
.x1f{left:173.306643pt;}
.x20{left:178.746655pt;}
.x8{left:182.426655pt;}
.x37{left:219.226655pt;}
.x1a{left:227.546655pt;}
.x2d{left:235.706655pt;}
.x23{left:244.226655pt;}
.x10{left:267.586655pt;}
.x2f{left:275.106655pt;}
.x2e{left:281.026655pt;}
.x24{left:286.946655pt;}
.x28{left:288.866643pt;}
.x33{left:291.106655pt;}
.x29{left:299.746655pt;}
.x4{left:311.746655pt;}
.x2a{left:329.346643pt;}
.x9{left:338.626655pt;}
.x2b{left:340.226655pt;}
.x34{left:352.066655pt;}
.x25{left:375.746655pt;}
.x5{left:382.786655pt;}
.x31{left:388.066655pt;}
.x2{left:406.333322pt;}
.x2c{left:411.933322pt;}
.x30{left:418.013322pt;}
.x1{left:453.693322pt;}
.x1d{left:460.573310pt;}
.x1e{left:466.013322pt;}
.xe{left:475.293310pt;}
.xf{left:480.733322pt;}
.x35{left:528.253310pt;}
.x36{left:539.133322pt;}
.x21{left:542.653310pt;}
.x22{left:548.093322pt;}
.x1b{left:556.733310pt;}
.x32{left:557.893322pt;}
.x1c{left:562.213322pt;}
.xc{left:573.733310pt;}
.xd{left:579.173322pt;}
.x12{left:650.373310pt;}
.x13{left:655.813322pt;}
.xa{left:693.733310pt;}
.xb{left:699.173322pt;}
}




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