
    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_764a686dcf10d7e736a99c9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f0dd67b1256a361ed7ce78d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_a48487482fe8f51389bcefb8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5c6edd36b1277497f87049c3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a2de62059f6d9b0bde6c5ac4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.696000px;}
.ls20{letter-spacing:-0.579600px;}
.ls13{letter-spacing:-0.544800px;}
.ls7{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.414000px;}
.lsd{letter-spacing:-0.326400px;}
.ls9{letter-spacing:-0.310800px;}
.ls11{letter-spacing:-0.240600px;}
.ls21{letter-spacing:-0.226800px;}
.ls1a{letter-spacing:-0.175800px;}
.ls6{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.078600px;}
.ls12{letter-spacing:-0.064800px;}
.ls19{letter-spacing:-0.058320px;}
.ls1b{letter-spacing:-0.041040px;}
.lsb{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.038880px;}
.ls15{letter-spacing:0.131040px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.186600px;}
.ls8{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.269760px;}
.ls18{letter-spacing:0.288600px;}
.ls14{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.433440px;}
.ls1d{letter-spacing:0.479520px;}
.ls1e{letter-spacing:0.604080px;}
.ls3{letter-spacing:1.026000px;}
.ls23{letter-spacing:12.186720px;}
.ls1c{letter-spacing:34.506720px;}
.ls22{letter-spacing:42.570720px;}
.ls16{letter-spacing:65.466720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws5{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.wsb{word-spacing:-13.794360px;}
.wsd{word-spacing:-13.692360px;}
.ws6{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.464720px;}
.wsa{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.265160px;}
.ws8{word-spacing:-12.960960px;}
.ws7{word-spacing:0.000000px;}
._20{margin-left:-532.198560px;}
._22{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._14{margin-left:-292.890240px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-240.510240px;}
._1a{margin-left:-237.337200px;}
._19{margin-left:-220.314240px;}
._24{margin-left:-207.008640px;}
._11{margin-left:-202.290240px;}
._1b{margin-left:-199.946880px;}
._23{margin-left:-188.893440px;}
._2a{margin-left:-178.662240px;}
._10{margin-left:-171.054720px;}
._f{margin-left:-165.490560px;}
._27{margin-left:-154.885440px;}
._b{margin-left:-153.774720px;}
._12{margin-left:-152.099040px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._29{margin-left:-142.570800px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-115.522560px;}
._28{margin-left:-110.198880px;}
._1f{margin-left:-102.529440px;}
._25{margin-left:-100.799760px;}
._8{margin-left:-91.638240px;}
._1e{margin-left:-86.399760px;}
._1d{margin-left:-83.520000px;}
._15{margin-left:-81.979200px;}
._17{margin-left:-66.703680px;}
._26{margin-left:-53.743680px;}
._16{margin-left:-49.735920px;}
._18{margin-left:-48.703680px;}
._1c{margin-left:-30.597360px;}
._40{margin-left:-7.255440px;}
._35{margin-left:-6.171360px;}
._2c{margin-left:-5.171040px;}
._2b{margin-left:-4.052640px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._21{width:1.082160px;}
._2d{width:2.586960px;}
._31{width:3.672240px;}
._2e{width:5.662320px;}
._2f{width:7.205040px;}
._30{width:8.704080px;}
._36{width:9.842880px;}
._34{width:10.855200px;}
._33{width:12.399120px;}
._32{width:15.418080px;}
._3b{width:17.270640px;}
._38{width:18.552240px;}
._37{width:19.645200px;}
._3f{width:21.274560px;}
._3e{width:22.589280px;}
._41{width:27.889200px;}
._39{width:29.401920px;}
._3a{width:30.955680px;}
._3d{width:48.644640px;}
._3c{width:64.327680px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y73{bottom:3.960000px;}
.y79{bottom:12.960000px;}
.y71{bottom:13.140000px;}
.y81{bottom:13.170000px;}
.y6f{bottom:14.760000px;}
.y75{bottom:22.140000px;}
.y72{bottom:22.320000px;}
.y82{bottom:22.350000px;}
.y6{bottom:60.660000px;}
.y7f{bottom:88.596000px;}
.ybd{bottom:92.016000px;}
.y7e{bottom:93.816000px;}
.y65{bottom:104.076000px;}
.y31{bottom:105.696000px;}
.yb1{bottom:106.956000px;}
.y7d{bottom:107.496000px;}
.ybe{bottom:109.656000px;}
.yb0{bottom:112.176000px;}
.ybc{bottom:113.076000px;}
.y64{bottom:125.136000px;}
.yaf{bottom:125.676000px;}
.y30{bottom:126.756000px;}
.ybb{bottom:134.136000px;}
.y7c{bottom:140.436000px;}
.y63{bottom:146.196000px;}
.y2f{bottom:147.816000px;}
.yba{bottom:155.190000px;}
.y7b{bottom:159.330000px;}
.y62{bottom:167.250000px;}
.y2e{bottom:168.870000px;}
.yb9{bottom:176.250000px;}
.yae{bottom:187.230000px;}
.y61{bottom:188.310000px;}
.y2d{bottom:189.930000px;}
.y7a{bottom:196.770000px;}
.yb8{bottom:197.310000px;}
.yac{bottom:208.290000px;}
.y60{bottom:209.370000px;}
.y2c{bottom:210.990000px;}
.yad{bottom:213.510000px;}
.yb7{bottom:218.370000px;}
.yaa{bottom:221.250000px;}
.yab{bottom:225.390000px;}
.y5f{bottom:230.430000px;}
.y2b{bottom:232.050000px;}
.y78{bottom:234.210000px;}
.yb6{bottom:239.430000px;}
.ya9{bottom:242.310000px;}
.y5e{bottom:251.490000px;}
.y2a{bottom:253.110000px;}
.yb5{bottom:260.490000px;}
.ya8{bottom:263.370000px;}
.y77{bottom:271.470000px;}
.y5d{bottom:272.550000px;}
.y29{bottom:274.170000px;}
.yb4{bottom:281.550000px;}
.ya7{bottom:284.430000px;}
.y5c{bottom:293.610000px;}
.y28{bottom:295.230000px;}
.yb3{bottom:302.610000px;}
.ya6{bottom:305.490000px;}
.y76{bottom:308.910000px;}
.y5b{bottom:314.670000px;}
.y27{bottom:316.290000px;}
.yb2{bottom:323.670000px;}
.ya5{bottom:326.550000px;}
.y74{bottom:328.035000px;}
.y6c{bottom:335.775000px;}
.y26{bottom:337.395000px;}
.y5a{bottom:344.775000px;}
.ya4{bottom:347.655000px;}
.y6b{bottom:356.835000px;}
.y25{bottom:358.275000px;}
.y70{bottom:365.295000px;}
.y59{bottom:365.835000px;}
.ya3{bottom:368.715000px;}
.y6a{bottom:377.895000px;}
.y24{bottom:379.335000px;}
.y58{bottom:386.895000px;}
.ya2{bottom:389.775000px;}
.y69{bottom:398.955000px;}
.y23{bottom:400.395000px;}
.y6e{bottom:402.735000px;}
.y57{bottom:407.955000px;}
.ya1{bottom:410.835000px;}
.y68{bottom:420.015000px;}
.y22{bottom:421.455000px;}
.y56{bottom:429.015000px;}
.ya0{bottom:431.895000px;}
.y67{bottom:441.075000px;}
.y21{bottom:442.515000px;}
.y55{bottom:450.075000px;}
.y9f{bottom:452.955000px;}
.y6d{bottom:455.295000px;}
.y66{bottom:462.135000px;}
.y20{bottom:463.575000px;}
.y54{bottom:471.135000px;}
.y9e{bottom:474.015000px;}
.y1f{bottom:484.635000px;}
.y53{bottom:492.195000px;}
.y9d{bottom:495.075000px;}
.y1e{bottom:505.695000px;}
.y52{bottom:513.255000px;}
.y9c{bottom:516.135000px;}
.y1d{bottom:526.755000px;}
.y51{bottom:534.315000px;}
.y9b{bottom:537.195000px;}
.y1c{bottom:547.815000px;}
.y50{bottom:555.375000px;}
.y9a{bottom:558.255000px;}
.y1b{bottom:568.875000px;}
.y4f{bottom:576.435000px;}
.y99{bottom:579.315000px;}
.y1a{bottom:589.935000px;}
.y4e{bottom:597.525000px;}
.y98{bottom:600.405000px;}
.y19{bottom:611.025000px;}
.y4d{bottom:618.585000px;}
.y97{bottom:621.465000px;}
.y18{bottom:634.605000px;}
.y4c{bottom:639.645000px;}
.y96{bottom:642.525000px;}
.y17{bottom:655.485000px;}
.y4b{bottom:660.705000px;}
.y95{bottom:663.585000px;}
.y4a{bottom:681.765000px;}
.y94{bottom:684.645000px;}
.y16{bottom:685.545000px;}
.y49{bottom:702.825000px;}
.y93{bottom:705.705000px;}
.y15{bottom:706.605000px;}
.y48{bottom:723.885000px;}
.y14{bottom:727.665000px;}
.y92{bottom:735.765000px;}
.y47{bottom:744.945000px;}
.y13{bottom:748.725000px;}
.y91{bottom:756.825000px;}
.y46{bottom:766.005000px;}
.y12{bottom:769.785000px;}
.y90{bottom:777.885000px;}
.y45{bottom:787.065000px;}
.y11{bottom:790.845000px;}
.y8f{bottom:798.945000px;}
.y44{bottom:808.125000px;}
.y10{bottom:811.905000px;}
.y8e{bottom:820.005000px;}
.y43{bottom:829.185000px;}
.yf{bottom:832.965000px;}
.y8d{bottom:841.065000px;}
.y42{bottom:850.245000px;}
.ye{bottom:854.025000px;}
.y8c{bottom:862.125000px;}
.y41{bottom:871.350000px;}
.yd{bottom:875.130000px;}
.y8b{bottom:883.230000px;}
.y40{bottom:892.410000px;}
.yc{bottom:896.190000px;}
.y8a{bottom:898.350000px;}
.y3f{bottom:913.470000px;}
.y89{bottom:917.430000px;}
.yb{bottom:919.410000px;}
.y3e{bottom:934.530000px;}
.y88{bottom:936.510000px;}
.ya{bottom:940.470000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:962.430000px;}
.y87{bottom:973.950000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:984.750000px;}
.y86{bottom:992.850000px;}
.y3b{bottom:997.710000px;}
.y7{bottom:1009.950000px;}
.y3a{bottom:1018.770000px;}
.y85{bottom:1030.290000px;}
.y39{bottom:1039.830000px;}
.y5{bottom:1050.090000px;}
.y38{bottom:1060.890000px;}
.y84{bottom:1067.730000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1082.130000px;}
.y83{bottom:1086.810000px;}
.y36{bottom:1103.010000px;}
.y3{bottom:1114.350000px;}
.y35{bottom:1124.070000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1146.600000px;}
.y80{bottom:1161.540000px;}
.y33{bottom:1166.220000px;}
.y1{bottom:1180.620000px;}
.y32{bottom:1194.120000px;}
.h10{height:18.180000px;}
.hf{height:18.360000px;}
.he{height:36.540000px;}
.hd{height:36.720000px;}
.h11{height:36.756000px;}
.hb{height:38.671172px;}
.h12{height:39.810234px;}
.hc{height:39.960000px;}
.h6{height:45.140977px;}
.h9{height:45.316055px;}
.h8{height:59.439023px;}
.ha{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:64.476000px;}
.w5{width:147.996000px;}
.w6{width:172.110000px;}
.w7{width:324.750000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.776000px;}
.xd{left:20.916000px;}
.x6{left:53.999987px;}
.xf{left:58.859987px;}
.x16{left:79.559987px;}
.x9{left:90.720000px;}
.x8{left:101.735973px;}
.x7{left:107.135987px;}
.x10{left:117.935987px;}
.xb{left:155.910000px;}
.x5{left:172.649987px;}
.xe{left:270.029987px;}
.x3{left:286.274987px;}
.x12{left:292.394987px;}
.xc{left:304.815000px;}
.x2{left:350.534987px;}
.x4{left:418.214987px;}
.x15{left:446.474987px;}
.x1{left:478.544987px;}
.x13{left:595.904973px;}
.x14{left:600.764987px;}
.x11{left:794.489987px;}
.x17{left:839.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.618667pt;}
.ls20{letter-spacing:-0.515200pt;}
.ls13{letter-spacing:-0.484267pt;}
.ls7{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.368000pt;}
.lsd{letter-spacing:-0.290133pt;}
.ls9{letter-spacing:-0.276267pt;}
.ls11{letter-spacing:-0.213867pt;}
.ls21{letter-spacing:-0.201600pt;}
.ls1a{letter-spacing:-0.156267pt;}
.ls6{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.069867pt;}
.ls12{letter-spacing:-0.057600pt;}
.ls19{letter-spacing:-0.051840pt;}
.ls1b{letter-spacing:-0.036480pt;}
.lsb{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.034560pt;}
.ls15{letter-spacing:0.116480pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.165867pt;}
.ls8{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.239787pt;}
.ls18{letter-spacing:0.256533pt;}
.ls14{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.385280pt;}
.ls1d{letter-spacing:0.426240pt;}
.ls1e{letter-spacing:0.536960pt;}
.ls3{letter-spacing:0.912000pt;}
.ls23{letter-spacing:10.832640pt;}
.ls1c{letter-spacing:30.672640pt;}
.ls22{letter-spacing:37.840640pt;}
.ls16{letter-spacing:58.192640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws5{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.wsb{word-spacing:-12.261653pt;}
.wsd{word-spacing:-12.170987pt;}
.ws6{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.968640pt;}
.wsa{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.791253pt;}
.ws8{word-spacing:-11.520853pt;}
.ws7{word-spacing:0.000000pt;}
._20{margin-left:-473.065387pt;}
._22{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._14{margin-left:-260.346880pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-213.786880pt;}
._1a{margin-left:-210.966400pt;}
._19{margin-left:-195.834880pt;}
._24{margin-left:-184.007680pt;}
._11{margin-left:-179.813547pt;}
._1b{margin-left:-177.730560pt;}
._23{margin-left:-167.905280pt;}
._2a{margin-left:-158.810880pt;}
._10{margin-left:-152.048640pt;}
._f{margin-left:-147.102720pt;}
._27{margin-left:-137.675947pt;}
._b{margin-left:-136.688640pt;}
._12{margin-left:-135.199147pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._29{margin-left:-126.729600pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-102.686720pt;}
._28{margin-left:-97.954560pt;}
._1f{margin-left:-91.137280pt;}
._25{margin-left:-89.599787pt;}
._8{margin-left:-81.456213pt;}
._1e{margin-left:-76.799787pt;}
._1d{margin-left:-74.240000pt;}
._15{margin-left:-72.870400pt;}
._17{margin-left:-59.292160pt;}
._26{margin-left:-47.772160pt;}
._16{margin-left:-44.209707pt;}
._18{margin-left:-43.292160pt;}
._1c{margin-left:-27.197653pt;}
._40{margin-left:-6.449280pt;}
._35{margin-left:-5.485653pt;}
._2c{margin-left:-4.596480pt;}
._2b{margin-left:-3.602347pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._21{width:0.961920pt;}
._2d{width:2.299520pt;}
._31{width:3.264213pt;}
._2e{width:5.033173pt;}
._2f{width:6.404480pt;}
._30{width:7.736960pt;}
._36{width:8.749227pt;}
._34{width:9.649067pt;}
._33{width:11.021440pt;}
._32{width:13.704960pt;}
._3b{width:15.351680pt;}
._38{width:16.490880pt;}
._37{width:17.462400pt;}
._3f{width:18.910720pt;}
._3e{width:20.079360pt;}
._41{width:24.790400pt;}
._39{width:26.135040pt;}
._3a{width:27.516160pt;}
._3d{width:43.239680pt;}
._3c{width:57.180160pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:3.520000pt;}
.y79{bottom:11.520000pt;}
.y71{bottom:11.680000pt;}
.y81{bottom:11.706667pt;}
.y6f{bottom:13.120000pt;}
.y75{bottom:19.680000pt;}
.y72{bottom:19.840000pt;}
.y82{bottom:19.866667pt;}
.y6{bottom:53.920000pt;}
.y7f{bottom:78.752000pt;}
.ybd{bottom:81.792000pt;}
.y7e{bottom:83.392000pt;}
.y65{bottom:92.512000pt;}
.y31{bottom:93.952000pt;}
.yb1{bottom:95.072000pt;}
.y7d{bottom:95.552000pt;}
.ybe{bottom:97.472000pt;}
.yb0{bottom:99.712000pt;}
.ybc{bottom:100.512000pt;}
.y64{bottom:111.232000pt;}
.yaf{bottom:111.712000pt;}
.y30{bottom:112.672000pt;}
.ybb{bottom:119.232000pt;}
.y7c{bottom:124.832000pt;}
.y63{bottom:129.952000pt;}
.y2f{bottom:131.392000pt;}
.yba{bottom:137.946667pt;}
.y7b{bottom:141.626667pt;}
.y62{bottom:148.666667pt;}
.y2e{bottom:150.106667pt;}
.yb9{bottom:156.666667pt;}
.yae{bottom:166.426667pt;}
.y61{bottom:167.386667pt;}
.y2d{bottom:168.826667pt;}
.y7a{bottom:174.906667pt;}
.yb8{bottom:175.386667pt;}
.yac{bottom:185.146667pt;}
.y60{bottom:186.106667pt;}
.y2c{bottom:187.546667pt;}
.yad{bottom:189.786667pt;}
.yb7{bottom:194.106667pt;}
.yaa{bottom:196.666667pt;}
.yab{bottom:200.346667pt;}
.y5f{bottom:204.826667pt;}
.y2b{bottom:206.266667pt;}
.y78{bottom:208.186667pt;}
.yb6{bottom:212.826667pt;}
.ya9{bottom:215.386667pt;}
.y5e{bottom:223.546667pt;}
.y2a{bottom:224.986667pt;}
.yb5{bottom:231.546667pt;}
.ya8{bottom:234.106667pt;}
.y77{bottom:241.306667pt;}
.y5d{bottom:242.266667pt;}
.y29{bottom:243.706667pt;}
.yb4{bottom:250.266667pt;}
.ya7{bottom:252.826667pt;}
.y5c{bottom:260.986667pt;}
.y28{bottom:262.426667pt;}
.yb3{bottom:268.986667pt;}
.ya6{bottom:271.546667pt;}
.y76{bottom:274.586667pt;}
.y5b{bottom:279.706667pt;}
.y27{bottom:281.146667pt;}
.yb2{bottom:287.706667pt;}
.ya5{bottom:290.266667pt;}
.y74{bottom:291.586667pt;}
.y6c{bottom:298.466667pt;}
.y26{bottom:299.906667pt;}
.y5a{bottom:306.466667pt;}
.ya4{bottom:309.026667pt;}
.y6b{bottom:317.186667pt;}
.y25{bottom:318.466667pt;}
.y70{bottom:324.706667pt;}
.y59{bottom:325.186667pt;}
.ya3{bottom:327.746667pt;}
.y6a{bottom:335.906667pt;}
.y24{bottom:337.186667pt;}
.y58{bottom:343.906667pt;}
.ya2{bottom:346.466667pt;}
.y69{bottom:354.626667pt;}
.y23{bottom:355.906667pt;}
.y6e{bottom:357.986667pt;}
.y57{bottom:362.626667pt;}
.ya1{bottom:365.186667pt;}
.y68{bottom:373.346667pt;}
.y22{bottom:374.626667pt;}
.y56{bottom:381.346667pt;}
.ya0{bottom:383.906667pt;}
.y67{bottom:392.066667pt;}
.y21{bottom:393.346667pt;}
.y55{bottom:400.066667pt;}
.y9f{bottom:402.626667pt;}
.y6d{bottom:404.706667pt;}
.y66{bottom:410.786667pt;}
.y20{bottom:412.066667pt;}
.y54{bottom:418.786667pt;}
.y9e{bottom:421.346667pt;}
.y1f{bottom:430.786667pt;}
.y53{bottom:437.506667pt;}
.y9d{bottom:440.066667pt;}
.y1e{bottom:449.506667pt;}
.y52{bottom:456.226667pt;}
.y9c{bottom:458.786667pt;}
.y1d{bottom:468.226667pt;}
.y51{bottom:474.946667pt;}
.y9b{bottom:477.506667pt;}
.y1c{bottom:486.946667pt;}
.y50{bottom:493.666667pt;}
.y9a{bottom:496.226667pt;}
.y1b{bottom:505.666667pt;}
.y4f{bottom:512.386667pt;}
.y99{bottom:514.946667pt;}
.y1a{bottom:524.386667pt;}
.y4e{bottom:531.133333pt;}
.y98{bottom:533.693333pt;}
.y19{bottom:543.133333pt;}
.y4d{bottom:549.853333pt;}
.y97{bottom:552.413333pt;}
.y18{bottom:564.093333pt;}
.y4c{bottom:568.573333pt;}
.y96{bottom:571.133333pt;}
.y17{bottom:582.653333pt;}
.y4b{bottom:587.293333pt;}
.y95{bottom:589.853333pt;}
.y4a{bottom:606.013333pt;}
.y94{bottom:608.573333pt;}
.y16{bottom:609.373333pt;}
.y49{bottom:624.733333pt;}
.y93{bottom:627.293333pt;}
.y15{bottom:628.093333pt;}
.y48{bottom:643.453333pt;}
.y14{bottom:646.813333pt;}
.y92{bottom:654.013333pt;}
.y47{bottom:662.173333pt;}
.y13{bottom:665.533333pt;}
.y91{bottom:672.733333pt;}
.y46{bottom:680.893333pt;}
.y12{bottom:684.253333pt;}
.y90{bottom:691.453333pt;}
.y45{bottom:699.613333pt;}
.y11{bottom:702.973333pt;}
.y8f{bottom:710.173333pt;}
.y44{bottom:718.333333pt;}
.y10{bottom:721.693333pt;}
.y8e{bottom:728.893333pt;}
.y43{bottom:737.053333pt;}
.yf{bottom:740.413333pt;}
.y8d{bottom:747.613333pt;}
.y42{bottom:755.773333pt;}
.ye{bottom:759.133333pt;}
.y8c{bottom:766.333333pt;}
.y41{bottom:774.533333pt;}
.yd{bottom:777.893333pt;}
.y8b{bottom:785.093333pt;}
.y40{bottom:793.253333pt;}
.yc{bottom:796.613333pt;}
.y8a{bottom:798.533333pt;}
.y3f{bottom:811.973333pt;}
.y89{bottom:815.493333pt;}
.yb{bottom:817.253333pt;}
.y3e{bottom:830.693333pt;}
.y88{bottom:832.453333pt;}
.ya{bottom:835.973333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:855.493333pt;}
.y87{bottom:865.733333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:875.333333pt;}
.y86{bottom:882.533333pt;}
.y3b{bottom:886.853333pt;}
.y7{bottom:897.733333pt;}
.y3a{bottom:905.573333pt;}
.y85{bottom:915.813333pt;}
.y39{bottom:924.293333pt;}
.y5{bottom:933.413333pt;}
.y38{bottom:943.013333pt;}
.y84{bottom:949.093333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:961.893333pt;}
.y83{bottom:966.053333pt;}
.y36{bottom:980.453333pt;}
.y3{bottom:990.533333pt;}
.y35{bottom:999.173333pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1019.200000pt;}
.y80{bottom:1032.480000pt;}
.y33{bottom:1036.640000pt;}
.y1{bottom:1049.440000pt;}
.y32{bottom:1061.440000pt;}
.h10{height:16.160000pt;}
.hf{height:16.320000pt;}
.he{height:32.480000pt;}
.hd{height:32.640000pt;}
.h11{height:32.672000pt;}
.hb{height:34.374375pt;}
.h12{height:35.386875pt;}
.hc{height:35.520000pt;}
.h6{height:40.125312pt;}
.h9{height:40.280938pt;}
.h8{height:52.834688pt;}
.ha{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:57.312000pt;}
.w5{width:131.552000pt;}
.w6{width:152.986667pt;}
.w7{width:288.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.912000pt;}
.xd{left:18.592000pt;}
.x6{left:47.999988pt;}
.xf{left:52.319988pt;}
.x16{left:70.719988pt;}
.x9{left:80.640000pt;}
.x8{left:90.431976pt;}
.x7{left:95.231988pt;}
.x10{left:104.831988pt;}
.xb{left:138.586667pt;}
.x5{left:153.466655pt;}
.xe{left:240.026655pt;}
.x3{left:254.466655pt;}
.x12{left:259.906655pt;}
.xc{left:270.946667pt;}
.x2{left:311.586655pt;}
.x4{left:371.746655pt;}
.x15{left:396.866655pt;}
.x1{left:425.373322pt;}
.x13{left:529.693310pt;}
.x14{left:534.013322pt;}
.x11{left:706.213322pt;}
.x17{left:746.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; }
  