
    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_ccd34523944a8c90874b3a47.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_70851744e1676cea67b9cf4a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_945ac91bf1d1bc11a9cd31f2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e0b0a126872d354b6d624e57.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_cd8af0cf8e4590fb9b757940.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_d20a75e896f81f0892befd99.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_51d7697c73b3f292a1678398.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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:-84.960000px;}
.v4{vertical-align:-75.600000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.414600px;}
.lsb{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.034560px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.070560px;}
.ls0{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.262080px;}
.ls3{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.305400px;}
.ls12{letter-spacing:1.025280px;}
.ls13{letter-spacing:69.401280px;}
.ls2{letter-spacing:89.101440px;}
.lse{letter-spacing:89.585280px;}
.lsd{letter-spacing:160.841280px;}
.ls4{letter-spacing:197.561280px;}
.ls5{letter-spacing:1142.405280px;}
.ls1{letter-spacing:1374.024000px;}
.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;}
}
.wsc{word-spacing:-21.582720px;}
.wsb{word-spacing:-18.720120px;}
.ws4{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.305520px;}
.ws1{word-spacing:-18.152520px;}
.ws5{word-spacing:-18.109320px;}
.wsa{word-spacing:-17.956920px;}
.ws6{word-spacing:-17.586720px;}
.ws0{word-spacing:-16.272000px;}
.ws2{word-spacing:-11.609280px;}
.ws9{word-spacing:-0.066240px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:476.508000px;}
._11{margin-left:-4.901760px;}
._14{margin-left:-3.634080px;}
._b{margin-left:-2.587680px;}
._1{margin-left:-1.188000px;}
._0{width:1.020000px;}
._6{width:2.355840px;}
._4{width:3.833280px;}
._3{width:5.100480px;}
._5{width:6.250080px;}
._9{width:8.081280px;}
._d{width:9.170880px;}
._a{width:10.435200px;}
._1d{width:11.856960px;}
._f{width:13.049280px;}
._10{width:14.109120px;}
._7{width:15.698880px;}
._8{width:16.824960px;}
._13{width:19.474560px;}
._e{width:20.733120px;}
._21{width:21.934080px;}
._1b{width:23.175360px;}
._19{width:24.508800px;}
._1a{width:25.692480px;}
._1c{width:27.113760px;}
._c{width:29.741760px;}
._15{width:31.260960px;}
._20{width:32.948160px;}
._16{width:34.047360px;}
._22{width:43.241760px;}
._18{width:44.513280px;}
._17{width:45.568800px;}
._23{width:48.417120px;}
._1f{width:49.841280px;}
._1e{width:67.503360px;}
._2{width:88.880160px;}
._12{width:197.561280px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.760000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y89{bottom:3.420000px;}
.y8f{bottom:3.600000px;}
.yed{bottom:22.320000px;}
.y8b{bottom:22.500000px;}
.y92{bottom:41.400000px;}
.yf0{bottom:41.445000px;}
.y8e{bottom:41.580000px;}
.y4{bottom:58.680000px;}
.yb8{bottom:60.480000px;}
.yb5{bottom:60.510000px;}
.yb7{bottom:79.380000px;}
.yb4{bottom:79.410000px;}
.y34{bottom:79.956000px;}
.yb3{bottom:98.490000px;}
.y3{bottom:101.196000px;}
.yb2{bottom:117.390000px;}
.y2{bottom:118.656000px;}
.y66{bottom:123.516000px;}
.yc3{bottom:125.136000px;}
.ya3{bottom:128.916000px;}
.yd7{bottom:130.356000px;}
.y70{bottom:130.536000px;}
.yea{bottom:134.136000px;}
.y87{bottom:134.316000px;}
.yb1{bottom:136.470000px;}
.y65{bottom:142.416000px;}
.yc2{bottom:144.036000px;}
.ya2{bottom:147.816000px;}
.y7f{bottom:151.770000px;}
.ye9{bottom:153.030000px;}
.yb0{bottom:155.370000px;}
.y32{bottom:158.070000px;}
.y64{bottom:161.310000px;}
.yc1{bottom:162.930000px;}
.ya1{bottom:166.710000px;}
.yd6{bottom:168.330000px;}
.ye8{bottom:171.930000px;}
.y86{bottom:172.290000px;}
.yaf{bottom:174.270000px;}
.y31{bottom:177.150000px;}
.y63{bottom:180.390000px;}
.ya0{bottom:185.790000px;}
.yd5{bottom:187.410000px;}
.y7e{bottom:189.750000px;}
.ye7{bottom:191.010000px;}
.y85{bottom:191.370000px;}
.yae{bottom:193.350000px;}
.y30{bottom:196.050000px;}
.y62{bottom:199.290000px;}
.yc0{bottom:200.910000px;}
.y9f{bottom:204.690000px;}
.yd4{bottom:206.310000px;}
.y7d{bottom:208.830000px;}
.y102{bottom:209.910000px;}
.y84{bottom:210.270000px;}
.yad{bottom:212.250000px;}
.y2f{bottom:214.950000px;}
.y61{bottom:218.370000px;}
.ybf{bottom:219.990000px;}
.yff{bottom:223.770000px;}
.yd3{bottom:225.390000px;}
.y7c{bottom:227.730000px;}
.ye6{bottom:228.990000px;}
.y83{bottom:229.170000px;}
.y2e{bottom:234.030000px;}
.y60{bottom:237.270000px;}
.y9e{bottom:242.670000px;}
.yd2{bottom:244.290000px;}
.y7b{bottom:246.630000px;}
.ye5{bottom:247.890000px;}
.y82{bottom:248.250000px;}
.y5f{bottom:256.170000px;}
.ybe{bottom:257.970000px;}
.y9d{bottom:261.570000px;}
.yd1{bottom:263.190000px;}
.y7a{bottom:265.710000px;}
.ye4{bottom:266.970000px;}
.y81{bottom:267.150000px;}
.y2d{bottom:272.010000px;}
.y5e{bottom:275.250000px;}
.ybd{bottom:276.870000px;}
.y9c{bottom:280.650000px;}
.y79{bottom:281.190000px;}
.y80{bottom:282.630000px;}
.ye3{bottom:285.870000px;}
.y2c{bottom:290.910000px;}
.y5d{bottom:294.150000px;}
.ybc{bottom:295.770000px;}
.y9b{bottom:299.550000px;}
.yd0{bottom:301.170000px;}
.ye2{bottom:304.770000px;}
.y2b{bottom:309.810000px;}
.y5c{bottom:313.230000px;}
.ybb{bottom:314.850000px;}
.y9a{bottom:318.675000px;}
.ycf{bottom:320.295000px;}
.ye1{bottom:323.895000px;}
.y2a{bottom:330.555000px;}
.y5b{bottom:332.175000px;}
.yba{bottom:333.795000px;}
.y99{bottom:337.575000px;}
.yce{bottom:339.195000px;}
.y101{bottom:342.795000px;}
.yb9{bottom:349.995000px;}
.y5a{bottom:351.075000px;}
.y98{bottom:356.475000px;}
.ycd{bottom:358.095000px;}
.y29{bottom:358.455000px;}
.ye0{bottom:361.875000px;}
.y59{bottom:370.155000px;}
.y97{bottom:375.555000px;}
.ycc{bottom:377.175000px;}
.y28{bottom:377.535000px;}
.ydf{bottom:380.775000px;}
.y58{bottom:389.055000px;}
.y96{bottom:394.455000px;}
.ycb{bottom:396.075000px;}
.y27{bottom:396.435000px;}
.yde{bottom:399.675000px;}
.y57{bottom:408.135000px;}
.yfe{bottom:413.535000px;}
.yca{bottom:415.155000px;}
.y26{bottom:415.515000px;}
.ydd{bottom:418.755000px;}
.yb6{bottom:426.675000px;}
.y56{bottom:427.035000px;}
.y95{bottom:432.435000px;}
.yc9{bottom:434.055000px;}
.y25{bottom:434.415000px;}
.ydc{bottom:437.655000px;}
.y55{bottom:445.935000px;}
.y94{bottom:451.335000px;}
.y24{bottom:453.315000px;}
.ydb{bottom:456.735000px;}
.y54{bottom:465.015000px;}
.y93{bottom:470.415000px;}
.yc8{bottom:472.035000px;}
.y23{bottom:472.395000px;}
.yda{bottom:475.635000px;}
.y53{bottom:483.915000px;}
.y91{bottom:486.615000px;}
.yfd{bottom:489.315000px;}
.yc7{bottom:490.935000px;}
.y22{bottom:491.295000px;}
.yd9{bottom:494.535000px;}
.y52{bottom:502.995000px;}
.yfc{bottom:508.395000px;}
.yc6{bottom:510.015000px;}
.y21{bottom:510.375000px;}
.y100{bottom:513.615000px;}
.y51{bottom:521.895000px;}
.yac{bottom:522.255000px;}
.yfb{bottom:527.295000px;}
.yc5{bottom:528.915000px;}
.y20{bottom:529.275000px;}
.y78{bottom:532.515000px;}
.y50{bottom:540.795000px;}
.y90{bottom:544.215000px;}
.yc4{bottom:544.395000px;}
.yfa{bottom:546.195000px;}
.y1f{bottom:548.175000px;}
.yd8{bottom:551.595000px;}
.y4f{bottom:559.875000px;}
.yf9{bottom:565.275000px;}
.y1e{bottom:567.255000px;}
.y77{bottom:570.525000px;}
.y4e{bottom:578.805000px;}
.y8d{bottom:582.945000px;}
.yf8{bottom:584.205000px;}
.y1d{bottom:586.185000px;}
.y76{bottom:589.425000px;}
.y4d{bottom:597.885000px;}
.yf7{bottom:603.285000px;}
.y1c{bottom:605.265000px;}
.y75{bottom:608.505000px;}
.y4c{bottom:616.785000px;}
.y1b{bottom:624.165000px;}
.y74{bottom:627.405000px;}
.y4b{bottom:635.865000px;}
.y8c{bottom:640.725000px;}
.yf6{bottom:641.265000px;}
.y1a{bottom:643.065000px;}
.y73{bottom:646.485000px;}
.y4a{bottom:654.765000px;}
.yf5{bottom:660.165000px;}
.y72{bottom:665.385000px;}
.y49{bottom:673.665000px;}
.yf4{bottom:679.065000px;}
.y8a{bottom:679.425000px;}
.y19{bottom:681.045000px;}
.y71{bottom:684.465000px;}
.y48{bottom:692.745000px;}
.yf3{bottom:698.145000px;}
.y18{bottom:700.125000px;}
.y6f{bottom:703.365000px;}
.y47{bottom:711.645000px;}
.yf2{bottom:714.345000px;}
.y88{bottom:718.125000px;}
.y17{bottom:719.025000px;}
.y6e{bottom:722.265000px;}
.y46{bottom:730.725000px;}
.y16{bottom:735.765000px;}
.y6d{bottom:741.345000px;}
.y15{bottom:746.565000px;}
.y45{bottom:749.625000px;}
.yab{bottom:750.705000px;}
.yf1{bottom:753.045000px;}
.y14{bottom:753.405000px;}
.y6c{bottom:760.245000px;}
.y13{bottom:762.405000px;}
.y44{bottom:768.525000px;}
.y6b{bottom:779.325000px;}
.y12{bottom:781.485000px;}
.y43{bottom:787.605000px;}
.yaa{bottom:789.405000px;}
.yef{bottom:791.745000px;}
.y6a{bottom:798.225000px;}
.y11{bottom:806.325000px;}
.y42{bottom:806.505000px;}
.y69{bottom:817.125000px;}
.y10{bottom:819.510000px;}
.y41{bottom:825.630000px;}
.ya9{bottom:828.150000px;}
.y68{bottom:836.250000px;}
.yf{bottom:838.410000px;}
.y40{bottom:844.530000px;}
.yee{bottom:849.390000px;}
.y67{bottom:855.150000px;}
.ye{bottom:863.250000px;}
.y3f{bottom:865.050000px;}
.y3e{bottom:874.230000px;}
.yd{bottom:876.390000px;}
.ya8{bottom:885.930000px;}
.y3d{bottom:893.130000px;}
.yc{bottom:895.290000px;}
.yec{bottom:907.170000px;}
.y3c{bottom:912.030000px;}
.yb{bottom:920.130000px;}
.ya7{bottom:924.630000px;}
.y3b{bottom:931.110000px;}
.ya{bottom:939.030000px;}
.y3a{bottom:950.010000px;}
.y9{bottom:957.930000px;}
.yeb{bottom:964.770000px;}
.y39{bottom:969.090000px;}
.y8{bottom:977.010000px;}
.ya6{bottom:982.230000px;}
.y38{bottom:987.990000px;}
.y7{bottom:995.910000px;}
.ya5{bottom:1002.030000px;}
.y37{bottom:1006.890000px;}
.y6{bottom:1014.990000px;}
.y36{bottom:1025.970000px;}
.y5{bottom:1033.890000px;}
.ya4{bottom:1040.730000px;}
.y35{bottom:1044.870000px;}
.y1{bottom:1049.370000px;}
.y33{bottom:1087.200000px;}
.h8{height:18.900000px;}
.hd{height:19.080000px;}
.h5{height:24.780937px;}
.h9{height:37.980000px;}
.hb{height:38.016000px;}
.h4{height:47.853281px;}
.h2{height:56.320312px;}
.hc{height:56.880000px;}
.h11{height:56.916000px;}
.ha{height:57.060000px;}
.h7{height:59.383125px;}
.h3{height:69.086250px;}
.h1{height:71.613281px;}
.h10{height:75.960000px;}
.h6{height:81.101250px;}
.hf{height:94.860000px;}
.he{height:227.730000px;}
.h0{height:1188.000000px;}
.w2{width:43.560000px;}
.w8{width:52.020000px;}
.w5{width:112.860000px;}
.w6{width:189.570000px;}
.w9{width:286.410000px;}
.w3{width:303.150000px;}
.w4{width:355.575000px;}
.wa{width:371.415000px;}
.w7{width:407.415000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.xf{left:8.820000px;}
.x1e{left:12.600000px;}
.x15{left:40.320000px;}
.x17{left:47.520000px;}
.x11{left:93.780000px;}
.x2{left:106.415986px;}
.x7{left:115.955986px;}
.x13{left:120.270000px;}
.x1f{left:121.680000px;}
.x9{left:124.235986px;}
.xe{left:133.415986px;}
.x1b{left:138.455986px;}
.x4{left:142.235986px;}
.x10{left:151.410000px;}
.x1c{left:160.409986px;}
.x19{left:177.690000px;}
.xd{left:187.409986px;}
.x6{left:205.049986px;}
.x16{left:220.710000px;}
.xa{left:283.349986px;}
.x8{left:391.214986px;}
.x5{left:401.654986px;}
.x18{left:411.015000px;}
.x20{left:447.015000px;}
.x1d{left:448.094986px;}
.xb{left:453.674986px;}
.x12{left:455.475000px;}
.x3{left:459.074986px;}
.x1{left:569.984986px;}
.xc{left:811.769986px;}
.x1a{left:831.749986px;}
@media print{
.v1{vertical-align:-75.520000pt;}
.v4{vertical-align:-67.200000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.368533pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.030720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.062720pt;}
.ls0{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.232960pt;}
.ls3{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.911360pt;}
.ls13{letter-spacing:61.690027pt;}
.ls2{letter-spacing:79.201280pt;}
.lse{letter-spacing:79.631360pt;}
.lsd{letter-spacing:142.970027pt;}
.ls4{letter-spacing:175.610027pt;}
.ls5{letter-spacing:1015.471360pt;}
.ls1{letter-spacing:1221.354667pt;}
.wsc{word-spacing:-19.184640pt;}
.wsb{word-spacing:-16.640107pt;}
.ws4{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.271573pt;}
.ws1{word-spacing:-16.135573pt;}
.ws5{word-spacing:-16.097173pt;}
.wsa{word-spacing:-15.961707pt;}
.ws6{word-spacing:-15.632640pt;}
.ws0{word-spacing:-14.464000pt;}
.ws2{word-spacing:-10.319360pt;}
.ws9{word-spacing:-0.058880pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:423.562667pt;}
._11{margin-left:-4.357120pt;}
._14{margin-left:-3.230293pt;}
._b{margin-left:-2.300160pt;}
._1{margin-left:-1.056000pt;}
._0{width:0.906667pt;}
._6{width:2.094080pt;}
._4{width:3.407360pt;}
._3{width:4.533760pt;}
._5{width:5.555627pt;}
._9{width:7.183360pt;}
._d{width:8.151893pt;}
._a{width:9.275733pt;}
._1d{width:10.539520pt;}
._f{width:11.599360pt;}
._10{width:12.541440pt;}
._7{width:13.954560pt;}
._8{width:14.955520pt;}
._13{width:17.310720pt;}
._e{width:18.429440pt;}
._21{width:19.496960pt;}
._1b{width:20.600320pt;}
._19{width:21.785600pt;}
._1a{width:22.837760pt;}
._1c{width:24.101120pt;}
._c{width:26.437120pt;}
._15{width:27.787520pt;}
._20{width:29.287253pt;}
._16{width:30.264320pt;}
._22{width:38.437120pt;}
._18{width:39.567360pt;}
._17{width:40.505600pt;}
._23{width:43.037440pt;}
._1f{width:44.303360pt;}
._1e{width:60.002987pt;}
._2{width:79.004587pt;}
._12{width:175.610027pt;}
.fs5{font-size:21.120000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:3.040000pt;}
.y8f{bottom:3.200000pt;}
.yed{bottom:19.840000pt;}
.y8b{bottom:20.000000pt;}
.y92{bottom:36.800000pt;}
.yf0{bottom:36.840000pt;}
.y8e{bottom:36.960000pt;}
.y4{bottom:52.160000pt;}
.yb8{bottom:53.760000pt;}
.yb5{bottom:53.786667pt;}
.yb7{bottom:70.560000pt;}
.yb4{bottom:70.586667pt;}
.y34{bottom:71.072000pt;}
.yb3{bottom:87.546667pt;}
.y3{bottom:89.952000pt;}
.yb2{bottom:104.346667pt;}
.y2{bottom:105.472000pt;}
.y66{bottom:109.792000pt;}
.yc3{bottom:111.232000pt;}
.ya3{bottom:114.592000pt;}
.yd7{bottom:115.872000pt;}
.y70{bottom:116.032000pt;}
.yea{bottom:119.232000pt;}
.y87{bottom:119.392000pt;}
.yb1{bottom:121.306667pt;}
.y65{bottom:126.592000pt;}
.yc2{bottom:128.032000pt;}
.ya2{bottom:131.392000pt;}
.y7f{bottom:134.906667pt;}
.ye9{bottom:136.026667pt;}
.yb0{bottom:138.106667pt;}
.y32{bottom:140.506667pt;}
.y64{bottom:143.386667pt;}
.yc1{bottom:144.826667pt;}
.ya1{bottom:148.186667pt;}
.yd6{bottom:149.626667pt;}
.ye8{bottom:152.826667pt;}
.y86{bottom:153.146667pt;}
.yaf{bottom:154.906667pt;}
.y31{bottom:157.466667pt;}
.y63{bottom:160.346667pt;}
.ya0{bottom:165.146667pt;}
.yd5{bottom:166.586667pt;}
.y7e{bottom:168.666667pt;}
.ye7{bottom:169.786667pt;}
.y85{bottom:170.106667pt;}
.yae{bottom:171.866667pt;}
.y30{bottom:174.266667pt;}
.y62{bottom:177.146667pt;}
.yc0{bottom:178.586667pt;}
.y9f{bottom:181.946667pt;}
.yd4{bottom:183.386667pt;}
.y7d{bottom:185.626667pt;}
.y102{bottom:186.586667pt;}
.y84{bottom:186.906667pt;}
.yad{bottom:188.666667pt;}
.y2f{bottom:191.066667pt;}
.y61{bottom:194.106667pt;}
.ybf{bottom:195.546667pt;}
.yff{bottom:198.906667pt;}
.yd3{bottom:200.346667pt;}
.y7c{bottom:202.426667pt;}
.ye6{bottom:203.546667pt;}
.y83{bottom:203.706667pt;}
.y2e{bottom:208.026667pt;}
.y60{bottom:210.906667pt;}
.y9e{bottom:215.706667pt;}
.yd2{bottom:217.146667pt;}
.y7b{bottom:219.226667pt;}
.ye5{bottom:220.346667pt;}
.y82{bottom:220.666667pt;}
.y5f{bottom:227.706667pt;}
.ybe{bottom:229.306667pt;}
.y9d{bottom:232.506667pt;}
.yd1{bottom:233.946667pt;}
.y7a{bottom:236.186667pt;}
.ye4{bottom:237.306667pt;}
.y81{bottom:237.466667pt;}
.y2d{bottom:241.786667pt;}
.y5e{bottom:244.666667pt;}
.ybd{bottom:246.106667pt;}
.y9c{bottom:249.466667pt;}
.y79{bottom:249.946667pt;}
.y80{bottom:251.226667pt;}
.ye3{bottom:254.106667pt;}
.y2c{bottom:258.586667pt;}
.y5d{bottom:261.466667pt;}
.ybc{bottom:262.906667pt;}
.y9b{bottom:266.266667pt;}
.yd0{bottom:267.706667pt;}
.ye2{bottom:270.906667pt;}
.y2b{bottom:275.386667pt;}
.y5c{bottom:278.426667pt;}
.ybb{bottom:279.866667pt;}
.y9a{bottom:283.266667pt;}
.ycf{bottom:284.706667pt;}
.ye1{bottom:287.906667pt;}
.y2a{bottom:293.826667pt;}
.y5b{bottom:295.266667pt;}
.yba{bottom:296.706667pt;}
.y99{bottom:300.066667pt;}
.yce{bottom:301.506667pt;}
.y101{bottom:304.706667pt;}
.yb9{bottom:311.106667pt;}
.y5a{bottom:312.066667pt;}
.y98{bottom:316.866667pt;}
.ycd{bottom:318.306667pt;}
.y29{bottom:318.626667pt;}
.ye0{bottom:321.666667pt;}
.y59{bottom:329.026667pt;}
.y97{bottom:333.826667pt;}
.ycc{bottom:335.266667pt;}
.y28{bottom:335.586667pt;}
.ydf{bottom:338.466667pt;}
.y58{bottom:345.826667pt;}
.y96{bottom:350.626667pt;}
.ycb{bottom:352.066667pt;}
.y27{bottom:352.386667pt;}
.yde{bottom:355.266667pt;}
.y57{bottom:362.786667pt;}
.yfe{bottom:367.586667pt;}
.yca{bottom:369.026667pt;}
.y26{bottom:369.346667pt;}
.ydd{bottom:372.226667pt;}
.yb6{bottom:379.266667pt;}
.y56{bottom:379.586667pt;}
.y95{bottom:384.386667pt;}
.yc9{bottom:385.826667pt;}
.y25{bottom:386.146667pt;}
.ydc{bottom:389.026667pt;}
.y55{bottom:396.386667pt;}
.y94{bottom:401.186667pt;}
.y24{bottom:402.946667pt;}
.ydb{bottom:405.986667pt;}
.y54{bottom:413.346667pt;}
.y93{bottom:418.146667pt;}
.yc8{bottom:419.586667pt;}
.y23{bottom:419.906667pt;}
.yda{bottom:422.786667pt;}
.y53{bottom:430.146667pt;}
.y91{bottom:432.546667pt;}
.yfd{bottom:434.946667pt;}
.yc7{bottom:436.386667pt;}
.y22{bottom:436.706667pt;}
.yd9{bottom:439.586667pt;}
.y52{bottom:447.106667pt;}
.yfc{bottom:451.906667pt;}
.yc6{bottom:453.346667pt;}
.y21{bottom:453.666667pt;}
.y100{bottom:456.546667pt;}
.y51{bottom:463.906667pt;}
.yac{bottom:464.226667pt;}
.yfb{bottom:468.706667pt;}
.yc5{bottom:470.146667pt;}
.y20{bottom:470.466667pt;}
.y78{bottom:473.346667pt;}
.y50{bottom:480.706667pt;}
.y90{bottom:483.746667pt;}
.yc4{bottom:483.906667pt;}
.yfa{bottom:485.506667pt;}
.y1f{bottom:487.266667pt;}
.yd8{bottom:490.306667pt;}
.y4f{bottom:497.666667pt;}
.yf9{bottom:502.466667pt;}
.y1e{bottom:504.226667pt;}
.y77{bottom:507.133333pt;}
.y4e{bottom:514.493333pt;}
.y8d{bottom:518.173333pt;}
.yf8{bottom:519.293333pt;}
.y1d{bottom:521.053333pt;}
.y76{bottom:523.933333pt;}
.y4d{bottom:531.453333pt;}
.yf7{bottom:536.253333pt;}
.y1c{bottom:538.013333pt;}
.y75{bottom:540.893333pt;}
.y4c{bottom:548.253333pt;}
.y1b{bottom:554.813333pt;}
.y74{bottom:557.693333pt;}
.y4b{bottom:565.213333pt;}
.y8c{bottom:569.533333pt;}
.yf6{bottom:570.013333pt;}
.y1a{bottom:571.613333pt;}
.y73{bottom:574.653333pt;}
.y4a{bottom:582.013333pt;}
.yf5{bottom:586.813333pt;}
.y72{bottom:591.453333pt;}
.y49{bottom:598.813333pt;}
.yf4{bottom:603.613333pt;}
.y8a{bottom:603.933333pt;}
.y19{bottom:605.373333pt;}
.y71{bottom:608.413333pt;}
.y48{bottom:615.773333pt;}
.yf3{bottom:620.573333pt;}
.y18{bottom:622.333333pt;}
.y6f{bottom:625.213333pt;}
.y47{bottom:632.573333pt;}
.yf2{bottom:634.973333pt;}
.y88{bottom:638.333333pt;}
.y17{bottom:639.133333pt;}
.y6e{bottom:642.013333pt;}
.y46{bottom:649.533333pt;}
.y16{bottom:654.013333pt;}
.y6d{bottom:658.973333pt;}
.y15{bottom:663.613333pt;}
.y45{bottom:666.333333pt;}
.yab{bottom:667.293333pt;}
.yf1{bottom:669.373333pt;}
.y14{bottom:669.693333pt;}
.y6c{bottom:675.773333pt;}
.y13{bottom:677.693333pt;}
.y44{bottom:683.133333pt;}
.y6b{bottom:692.733333pt;}
.y12{bottom:694.653333pt;}
.y43{bottom:700.093333pt;}
.yaa{bottom:701.693333pt;}
.yef{bottom:703.773333pt;}
.y6a{bottom:709.533333pt;}
.y11{bottom:716.733333pt;}
.y42{bottom:716.893333pt;}
.y69{bottom:726.333333pt;}
.y10{bottom:728.453333pt;}
.y41{bottom:733.893333pt;}
.ya9{bottom:736.133333pt;}
.y68{bottom:743.333333pt;}
.yf{bottom:745.253333pt;}
.y40{bottom:750.693333pt;}
.yee{bottom:755.013333pt;}
.y67{bottom:760.133333pt;}
.ye{bottom:767.333333pt;}
.y3f{bottom:768.933333pt;}
.y3e{bottom:777.093333pt;}
.yd{bottom:779.013333pt;}
.ya8{bottom:787.493333pt;}
.y3d{bottom:793.893333pt;}
.yc{bottom:795.813333pt;}
.yec{bottom:806.373333pt;}
.y3c{bottom:810.693333pt;}
.yb{bottom:817.893333pt;}
.ya7{bottom:821.893333pt;}
.y3b{bottom:827.653333pt;}
.ya{bottom:834.693333pt;}
.y3a{bottom:844.453333pt;}
.y9{bottom:851.493333pt;}
.yeb{bottom:857.573333pt;}
.y39{bottom:861.413333pt;}
.y8{bottom:868.453333pt;}
.ya6{bottom:873.093333pt;}
.y38{bottom:878.213333pt;}
.y7{bottom:885.253333pt;}
.ya5{bottom:890.693333pt;}
.y37{bottom:895.013333pt;}
.y6{bottom:902.213333pt;}
.y36{bottom:911.973333pt;}
.y5{bottom:919.013333pt;}
.ya4{bottom:925.093333pt;}
.y35{bottom:928.773333pt;}
.y1{bottom:932.773333pt;}
.y33{bottom:966.400000pt;}
.h8{height:16.800000pt;}
.hd{height:16.960000pt;}
.h5{height:22.027500pt;}
.h9{height:33.760000pt;}
.hb{height:33.792000pt;}
.h4{height:42.536250pt;}
.h2{height:50.062500pt;}
.hc{height:50.560000pt;}
.h11{height:50.592000pt;}
.ha{height:50.720000pt;}
.h7{height:52.785000pt;}
.h3{height:61.410000pt;}
.h1{height:63.656250pt;}
.h10{height:67.520000pt;}
.h6{height:72.090000pt;}
.hf{height:84.320000pt;}
.he{height:202.426667pt;}
.h0{height:1056.000000pt;}
.w2{width:38.720000pt;}
.w8{width:46.240000pt;}
.w5{width:100.320000pt;}
.w6{width:168.506667pt;}
.w9{width:254.586667pt;}
.w3{width:269.466667pt;}
.w4{width:316.066667pt;}
.wa{width:330.146667pt;}
.w7{width:362.146667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.xf{left:7.840000pt;}
.x1e{left:11.200000pt;}
.x15{left:35.840000pt;}
.x17{left:42.240000pt;}
.x11{left:83.360000pt;}
.x2{left:94.591988pt;}
.x7{left:103.071988pt;}
.x13{left:106.906667pt;}
.x1f{left:108.160000pt;}
.x9{left:110.431988pt;}
.xe{left:118.591988pt;}
.x1b{left:123.071988pt;}
.x4{left:126.431988pt;}
.x10{left:134.586667pt;}
.x1c{left:142.586655pt;}
.x19{left:157.946667pt;}
.xd{left:166.586655pt;}
.x6{left:182.266655pt;}
.x16{left:196.186667pt;}
.xa{left:251.866655pt;}
.x8{left:347.746655pt;}
.x5{left:357.026655pt;}
.x18{left:365.346667pt;}
.x20{left:397.346667pt;}
.x1d{left:398.306655pt;}
.xb{left:403.266655pt;}
.x12{left:404.866667pt;}
.x3{left:408.066655pt;}
.x1{left:506.653321pt;}
.xc{left:721.573321pt;}
.x1a{left:739.333321pt;}
}




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