
    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_c394620e52662b372adc2d08.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_ff86fb33381a622cd207e5f7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3e7c118315b6d5e577d76e28.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_71d995aa91a58a56afee5d44.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.000003px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.ls2{letter-spacing:10.944000px;}
.ls9{letter-spacing:33.984000px;}
.lsd{letter-spacing:54.144000px;}
.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;}
}
.ws2{word-spacing:-21.060000px;}
.wsb{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.999997px;}
.wsa{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.568000px;}
.wsd{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.580000px;}
.ws3{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._14{margin-left:-5.276160px;}
._8{margin-left:-3.960000px;}
._9{margin-left:-2.592000px;}
._4{margin-left:-1.347840px;}
._0{width:1.254960px;}
._3{width:2.793120px;}
._5{width:3.934800px;}
._6{width:5.440560px;}
._7{width:6.984000px;}
._a{width:8.640000px;}
._15{width:9.843840px;}
._b{width:10.872000px;}
._c{width:12.024000px;}
._13{width:13.080000px;}
._10{width:14.544000px;}
._11{width:15.624000px;}
._f{width:16.632000px;}
._29{width:17.867520px;}
._1e{width:19.080000px;}
._19{width:21.024000px;}
._d{width:22.680000px;}
._e{width:23.751840px;}
._23{width:28.563840px;}
._18{width:29.736000px;}
._12{width:31.608000px;}
._16{width:33.408000px;}
._17{width:35.998080px;}
._24{width:38.016000px;}
._1f{width:40.512000px;}
._20{width:42.504000px;}
._25{width:44.568000px;}
._26{width:45.792000px;}
._21{width:47.952000px;}
._22{width:49.104000px;}
._1a{width:65.016000px;}
._1b{width:66.252000px;}
._27{width:86.929920px;}
._28{width:88.001280px;}
._1c{width:91.452000px;}
._1d{width:92.880000px;}
._1{width:168.715200px;}
._2{width:899.760000px;}
.fc6{color:rgb(238,0,0);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(0,0,204);}
.fc1{color:rgb(4,98,194);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y97{bottom:3.960000px;}
.y9a{bottom:6.660000px;}
.yab{bottom:6.690000px;}
.ya1{bottom:6.705000px;}
.y9f{bottom:6.840000px;}
.y95{bottom:7.380000px;}
.y108{bottom:21.240000px;}
.y5{bottom:26.100000px;}
.y107{bottom:38.520000px;}
.y4{bottom:52.020000px;}
.y106{bottom:55.845000px;}
.y3{bottom:69.300000px;}
.y105{bottom:73.125000px;}
.y104{bottom:90.405000px;}
.y2{bottom:98.820000px;}
.y103{bottom:107.685000px;}
.y93{bottom:117.000000px;}
.y38{bottom:121.320000px;}
.y102{bottom:124.785000px;}
.yb2{bottom:125.100000px;}
.y92{bottom:137.700000px;}
.yf7{bottom:138.060000px;}
.yb1{bottom:141.840000px;}
.y37{bottom:142.020000px;}
.y101{bottom:142.065000px;}
.yad{bottom:143.460000px;}
.ybe{bottom:145.800000px;}
.y83{bottom:154.080000px;}
.yf6{bottom:156.240000px;}
.y69{bottom:156.780000px;}
.y91{bottom:158.400000px;}
.y100{bottom:159.345000px;}
.y36{bottom:162.720000px;}
.ybd{bottom:163.980000px;}
.yac{bottom:167.580000px;}
.yf5{bottom:174.240000px;}
.y82{bottom:174.780000px;}
.yff{bottom:176.625000px;}
.y68{bottom:177.480000px;}
.y90{bottom:179.100000px;}
.ybc{bottom:182.160000px;}
.y35{bottom:183.420000px;}
.yaa{bottom:191.880000px;}
.yf4{bottom:192.420000px;}
.yfe{bottom:193.905000px;}
.y81{bottom:195.480000px;}
.y67{bottom:198.210000px;}
.y8f{bottom:199.830000px;}
.ybb{bottom:200.190000px;}
.y34{bottom:204.150000px;}
.yf3{bottom:210.630000px;}
.yfd{bottom:211.185000px;}
.ya9{bottom:216.030000px;}
.y80{bottom:216.210000px;}
.yba{bottom:218.370000px;}
.y66{bottom:218.910000px;}
.y8e{bottom:220.530000px;}
.y33{bottom:224.850000px;}
.yfc{bottom:228.285000px;}
.yf2{bottom:228.630000px;}
.yb9{bottom:236.370000px;}
.y7f{bottom:236.910000px;}
.y65{bottom:239.610000px;}
.ya8{bottom:240.150000px;}
.y8d{bottom:241.230000px;}
.y32{bottom:245.550000px;}
.yfb{bottom:245.565000px;}
.yf1{bottom:246.810000px;}
.yb8{bottom:254.550000px;}
.y7e{bottom:257.610000px;}
.y64{bottom:260.310000px;}
.y8c{bottom:261.930000px;}
.yfa{bottom:262.845000px;}
.ya7{bottom:264.270000px;}
.yf0{bottom:264.990000px;}
.y31{bottom:266.250000px;}
.yb7{bottom:272.730000px;}
.y7d{bottom:278.310000px;}
.yf9{bottom:280.125000px;}
.y63{bottom:281.010000px;}
.y8b{bottom:282.630000px;}
.yef{bottom:282.990000px;}
.y30{bottom:286.950000px;}
.ya6{bottom:288.390000px;}
.yb6{bottom:290.730000px;}
.y7c{bottom:299.010000px;}
.yee{bottom:301.170000px;}
.y62{bottom:301.710000px;}
.y8a{bottom:303.330000px;}
.y2f{bottom:307.650000px;}
.yb5{bottom:308.910000px;}
.ya5{bottom:312.510000px;}
.yed{bottom:319.170000px;}
.y7b{bottom:319.530000px;}
.y61{bottom:322.410000px;}
.y89{bottom:324.030000px;}
.yb4{bottom:326.910000px;}
.y2e{bottom:328.350000px;}
.ya4{bottom:336.810000px;}
.yec{bottom:337.350000px;}
.y7a{bottom:340.230000px;}
.y60{bottom:343.110000px;}
.y88{bottom:344.730000px;}
.yb3{bottom:345.090000px;}
.y2d{bottom:349.050000px;}
.yeb{bottom:355.530000px;}
.y79{bottom:360.930000px;}
.y87{bottom:361.470000px;}
.y5f{bottom:363.810000px;}
.y2c{bottom:369.750000px;}
.yea{bottom:373.530000px;}
.y78{bottom:381.630000px;}
.y5e{bottom:384.510000px;}
.ya3{bottom:385.050000px;}
.y2b{bottom:390.450000px;}
.ye9{bottom:391.710000px;}
.yf8{bottom:393.330000px;}
.y77{bottom:402.330000px;}
.y5d{bottom:405.210000px;}
.ya2{bottom:409.170000px;}
.ye8{bottom:409.710000px;}
.y2a{bottom:411.150000px;}
.y76{bottom:423.030000px;}
.y5c{bottom:425.910000px;}
.ye7{bottom:427.890000px;}
.y29{bottom:431.850000px;}
.ya0{bottom:433.290000px;}
.y75{bottom:443.775000px;}
.ye6{bottom:446.115000px;}
.y5b{bottom:446.655000px;}
.y28{bottom:452.595000px;}
.y9e{bottom:457.455000px;}
.ye5{bottom:464.115000px;}
.y74{bottom:464.475000px;}
.y5a{bottom:467.355000px;}
.y27{bottom:473.295000px;}
.y9d{bottom:481.755000px;}
.ye4{bottom:482.295000px;}
.y73{bottom:485.175000px;}
.y59{bottom:488.055000px;}
.y26{bottom:493.995000px;}
.ye3{bottom:500.475000px;}
.y72{bottom:505.875000px;}
.y58{bottom:508.755000px;}
.y25{bottom:514.695000px;}
.ye2{bottom:518.475000px;}
.y71{bottom:526.575000px;}
.y57{bottom:529.455000px;}
.y9c{bottom:529.995000px;}
.y24{bottom:535.395000px;}
.ye1{bottom:536.655000px;}
.y70{bottom:547.275000px;}
.y56{bottom:550.155000px;}
.y9b{bottom:554.115000px;}
.ye0{bottom:554.655000px;}
.y23{bottom:556.095000px;}
.y6f{bottom:567.975000px;}
.y55{bottom:570.855000px;}
.ydf{bottom:572.835000px;}
.y22{bottom:576.795000px;}
.y99{bottom:578.235000px;}
.y6e{bottom:588.675000px;}
.yde{bottom:591.015000px;}
.y54{bottom:591.555000px;}
.y21{bottom:597.495000px;}
.y98{bottom:602.535000px;}
.ydd{bottom:609.015000px;}
.y6d{bottom:609.375000px;}
.y53{bottom:612.255000px;}
.y20{bottom:616.755000px;}
.yb0{bottom:622.875000px;}
.y96{bottom:623.955000px;}
.ydc{bottom:627.195000px;}
.y6c{bottom:630.075000px;}
.y52{bottom:632.955000px;}
.y1f{bottom:634.395000px;}
.yaf{bottom:643.575000px;}
.ydb{bottom:645.195000px;}
.y94{bottom:645.375000px;}
.y1e{bottom:649.515000px;}
.y6b{bottom:650.775000px;}
.y51{bottom:653.655000px;}
.yae{bottom:660.315000px;}
.yda{bottom:663.375000px;}
.y6a{bottom:667.515000px;}
.y1d{bottom:668.775000px;}
.y50{bottom:674.385000px;}
.yd9{bottom:681.585000px;}
.y1c{bottom:683.925000px;}
.y4f{bottom:695.085000px;}
.yd8{bottom:699.585000px;}
.y1b{bottom:704.625000px;}
.y4e{bottom:715.785000px;}
.yd7{bottom:717.765000px;}
.y1a{bottom:725.325000px;}
.yd6{bottom:735.945000px;}
.y4d{bottom:736.485000px;}
.y19{bottom:746.025000px;}
.y86{bottom:753.405000px;}
.yd5{bottom:753.945000px;}
.y4c{bottom:757.185000px;}
.y18{bottom:766.725000px;}
.yd4{bottom:772.125000px;}
.y85{bottom:774.105000px;}
.y4b{bottom:777.885000px;}
.y17{bottom:787.425000px;}
.yd3{bottom:790.125000px;}
.y84{bottom:790.845000px;}
.y4a{bottom:798.585000px;}
.y16{bottom:808.125000px;}
.yd2{bottom:808.305000px;}
.y49{bottom:819.105000px;}
.yd1{bottom:826.485000px;}
.y15{bottom:828.825000px;}
.y48{bottom:839.805000px;}
.yd0{bottom:844.485000px;}
.y14{bottom:849.525000px;}
.y47{bottom:860.505000px;}
.ycf{bottom:862.665000px;}
.y13{bottom:870.225000px;}
.yce{bottom:880.665000px;}
.y46{bottom:881.205000px;}
.y12{bottom:890.925000px;}
.ycd{bottom:898.845000px;}
.y45{bottom:901.905000px;}
.y11{bottom:911.625000px;}
.ycc{bottom:917.070000px;}
.y44{bottom:922.650000px;}
.y10{bottom:932.370000px;}
.ycb{bottom:935.070000px;}
.y43{bottom:943.350000px;}
.yca{bottom:953.250000px;}
.yf{bottom:955.230000px;}
.y42{bottom:964.050000px;}
.ye{bottom:968.910000px;}
.yc9{bottom:971.430000px;}
.y41{bottom:984.750000px;}
.yc8{bottom:989.430000px;}
.yd{bottom:995.550000px;}
.y40{bottom:1005.450000px;}
.yc7{bottom:1007.610000px;}
.yc{bottom:1016.250000px;}
.yc6{bottom:1025.610000px;}
.y3f{bottom:1026.150000px;}
.yb{bottom:1031.010000px;}
.yc5{bottom:1043.790000px;}
.y3e{bottom:1046.850000px;}
.ya{bottom:1057.650000px;}
.yc4{bottom:1061.970000px;}
.y3d{bottom:1067.550000px;}
.y9{bottom:1072.410000px;}
.yc3{bottom:1079.970000px;}
.y3c{bottom:1088.250000px;}
.y8{bottom:1093.110000px;}
.yc2{bottom:1098.150000px;}
.y3b{bottom:1108.950000px;}
.yc1{bottom:1116.150000px;}
.y7{bottom:1123.350000px;}
.y3a{bottom:1129.650000px;}
.yc0{bottom:1134.330000px;}
.y6{bottom:1147.470000px;}
.y39{bottom:1150.350000px;}
.ybf{bottom:1152.540000px;}
.y1{bottom:1194.840000px;}
.hf{height:20.520000px;}
.he{height:20.700000px;}
.h10{height:23.400000px;}
.h12{height:23.436000px;}
.h11{height:23.580000px;}
.hd{height:24.120000px;}
.h8{height:29.158594px;}
.hb{height:33.683203px;}
.h7{height:34.036523px;}
.h3{height:41.726953px;}
.h2{height:42.164648px;}
.h13{height:44.240625px;}
.h16{height:49.255313px;}
.h6{height:50.273438px;}
.h9{height:50.800781px;}
.h14{height:52.222500px;}
.hc{height:52.417969px;}
.h5{height:57.796523px;}
.ha{height:59.343750px;}
.h4{height:59.436914px;}
.h15{height:294.195000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:71.640000px;}
.w7{width:116.316000px;}
.w8{width:126.720000px;}
.w6{width:192.990000px;}
.w5{width:198.750000px;}
.w9{width:685.365000px;}
.w3{width:709.485000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x20{left:10.800000px;}
.x1d{left:34.740000px;}
.xd{left:86.759987px;}
.x1f{left:103.536000px;}
.x1{left:108.035987px;}
.x10{left:129.275987px;}
.x8{left:134.855987px;}
.x1e{left:140.075987px;}
.x4{left:153.209987px;}
.x16{left:156.989987px;}
.x11{left:162.029987px;}
.xf{left:165.089987px;}
.x19{left:180.750000px;}
.x13{left:189.929987px;}
.x6{left:191.549987px;}
.xa{left:192.989987px;}
.x15{left:201.269987px;}
.x17{left:250.419000px;}
.xb{left:264.989987px;}
.xc{left:266.069987px;}
.x3{left:322.094987px;}
.x9{left:367.994987px;}
.x1a{left:380.415000px;}
.x5{left:401.654987px;}
.x7{left:446.474987px;}
.x1b{left:574.125000px;}
.x1c{left:691.170000px;}
.xe{left:783.149987px;}
.x2{left:785.129987px;}
.x14{left:791.429987px;}
.x12{left:794.849987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.000003pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls2{letter-spacing:9.728000pt;}
.ls9{letter-spacing:30.208000pt;}
.lsd{letter-spacing:48.128000pt;}
.ws2{word-spacing:-18.720000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.999997pt;}
.wsa{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.616000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.960000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._14{margin-left:-4.689920pt;}
._8{margin-left:-3.520000pt;}
._9{margin-left:-2.304000pt;}
._4{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._3{width:2.482773pt;}
._5{width:3.497600pt;}
._6{width:4.836053pt;}
._7{width:6.208000pt;}
._a{width:7.680000pt;}
._15{width:8.750080pt;}
._b{width:9.664000pt;}
._c{width:10.688000pt;}
._13{width:11.626667pt;}
._10{width:12.928000pt;}
._11{width:13.888000pt;}
._f{width:14.784000pt;}
._29{width:15.882240pt;}
._1e{width:16.960000pt;}
._19{width:18.688000pt;}
._d{width:20.160000pt;}
._e{width:21.112747pt;}
._23{width:25.390080pt;}
._18{width:26.432000pt;}
._12{width:28.096000pt;}
._16{width:29.696000pt;}
._17{width:31.998293pt;}
._24{width:33.792000pt;}
._1f{width:36.010667pt;}
._20{width:37.781333pt;}
._25{width:39.616000pt;}
._26{width:40.704000pt;}
._21{width:42.624000pt;}
._22{width:43.648000pt;}
._1a{width:57.792000pt;}
._1b{width:58.890667pt;}
._27{width:77.271040pt;}
._28{width:78.223360pt;}
._1c{width:81.290667pt;}
._1d{width:82.560000pt;}
._1{width:149.969067pt;}
._2{width:799.786667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:3.520000pt;}
.y9a{bottom:5.920000pt;}
.yab{bottom:5.946667pt;}
.ya1{bottom:5.960000pt;}
.y9f{bottom:6.080000pt;}
.y95{bottom:6.560000pt;}
.y108{bottom:18.880000pt;}
.y5{bottom:23.200000pt;}
.y107{bottom:34.240000pt;}
.y4{bottom:46.240000pt;}
.y106{bottom:49.640000pt;}
.y3{bottom:61.600000pt;}
.y105{bottom:65.000000pt;}
.y104{bottom:80.360000pt;}
.y2{bottom:87.840000pt;}
.y103{bottom:95.720000pt;}
.y93{bottom:104.000000pt;}
.y38{bottom:107.840000pt;}
.y102{bottom:110.920000pt;}
.yb2{bottom:111.200000pt;}
.y92{bottom:122.400000pt;}
.yf7{bottom:122.720000pt;}
.yb1{bottom:126.080000pt;}
.y37{bottom:126.240000pt;}
.y101{bottom:126.280000pt;}
.yad{bottom:127.520000pt;}
.ybe{bottom:129.600000pt;}
.y83{bottom:136.960000pt;}
.yf6{bottom:138.880000pt;}
.y69{bottom:139.360000pt;}
.y91{bottom:140.800000pt;}
.y100{bottom:141.640000pt;}
.y36{bottom:144.640000pt;}
.ybd{bottom:145.760000pt;}
.yac{bottom:148.960000pt;}
.yf5{bottom:154.880000pt;}
.y82{bottom:155.360000pt;}
.yff{bottom:157.000000pt;}
.y68{bottom:157.760000pt;}
.y90{bottom:159.200000pt;}
.ybc{bottom:161.920000pt;}
.y35{bottom:163.040000pt;}
.yaa{bottom:170.560000pt;}
.yf4{bottom:171.040000pt;}
.yfe{bottom:172.360000pt;}
.y81{bottom:173.760000pt;}
.y67{bottom:176.186667pt;}
.y8f{bottom:177.626667pt;}
.ybb{bottom:177.946667pt;}
.y34{bottom:181.466667pt;}
.yf3{bottom:187.226667pt;}
.yfd{bottom:187.720000pt;}
.ya9{bottom:192.026667pt;}
.y80{bottom:192.186667pt;}
.yba{bottom:194.106667pt;}
.y66{bottom:194.586667pt;}
.y8e{bottom:196.026667pt;}
.y33{bottom:199.866667pt;}
.yfc{bottom:202.920000pt;}
.yf2{bottom:203.226667pt;}
.yb9{bottom:210.106667pt;}
.y7f{bottom:210.586667pt;}
.y65{bottom:212.986667pt;}
.ya8{bottom:213.466667pt;}
.y8d{bottom:214.426667pt;}
.y32{bottom:218.266667pt;}
.yfb{bottom:218.280000pt;}
.yf1{bottom:219.386667pt;}
.yb8{bottom:226.266667pt;}
.y7e{bottom:228.986667pt;}
.y64{bottom:231.386667pt;}
.y8c{bottom:232.826667pt;}
.yfa{bottom:233.640000pt;}
.ya7{bottom:234.906667pt;}
.yf0{bottom:235.546667pt;}
.y31{bottom:236.666667pt;}
.yb7{bottom:242.426667pt;}
.y7d{bottom:247.386667pt;}
.yf9{bottom:249.000000pt;}
.y63{bottom:249.786667pt;}
.y8b{bottom:251.226667pt;}
.yef{bottom:251.546667pt;}
.y30{bottom:255.066667pt;}
.ya6{bottom:256.346667pt;}
.yb6{bottom:258.426667pt;}
.y7c{bottom:265.786667pt;}
.yee{bottom:267.706667pt;}
.y62{bottom:268.186667pt;}
.y8a{bottom:269.626667pt;}
.y2f{bottom:273.466667pt;}
.yb5{bottom:274.586667pt;}
.ya5{bottom:277.786667pt;}
.yed{bottom:283.706667pt;}
.y7b{bottom:284.026667pt;}
.y61{bottom:286.586667pt;}
.y89{bottom:288.026667pt;}
.yb4{bottom:290.586667pt;}
.y2e{bottom:291.866667pt;}
.ya4{bottom:299.386667pt;}
.yec{bottom:299.866667pt;}
.y7a{bottom:302.426667pt;}
.y60{bottom:304.986667pt;}
.y88{bottom:306.426667pt;}
.yb3{bottom:306.746667pt;}
.y2d{bottom:310.266667pt;}
.yeb{bottom:316.026667pt;}
.y79{bottom:320.826667pt;}
.y87{bottom:321.306667pt;}
.y5f{bottom:323.386667pt;}
.y2c{bottom:328.666667pt;}
.yea{bottom:332.026667pt;}
.y78{bottom:339.226667pt;}
.y5e{bottom:341.786667pt;}
.ya3{bottom:342.266667pt;}
.y2b{bottom:347.066667pt;}
.ye9{bottom:348.186667pt;}
.yf8{bottom:349.626667pt;}
.y77{bottom:357.626667pt;}
.y5d{bottom:360.186667pt;}
.ya2{bottom:363.706667pt;}
.ye8{bottom:364.186667pt;}
.y2a{bottom:365.466667pt;}
.y76{bottom:376.026667pt;}
.y5c{bottom:378.586667pt;}
.ye7{bottom:380.346667pt;}
.y29{bottom:383.866667pt;}
.ya0{bottom:385.146667pt;}
.y75{bottom:394.466667pt;}
.ye6{bottom:396.546667pt;}
.y5b{bottom:397.026667pt;}
.y28{bottom:402.306667pt;}
.y9e{bottom:406.626667pt;}
.ye5{bottom:412.546667pt;}
.y74{bottom:412.866667pt;}
.y5a{bottom:415.426667pt;}
.y27{bottom:420.706667pt;}
.y9d{bottom:428.226667pt;}
.ye4{bottom:428.706667pt;}
.y73{bottom:431.266667pt;}
.y59{bottom:433.826667pt;}
.y26{bottom:439.106667pt;}
.ye3{bottom:444.866667pt;}
.y72{bottom:449.666667pt;}
.y58{bottom:452.226667pt;}
.y25{bottom:457.506667pt;}
.ye2{bottom:460.866667pt;}
.y71{bottom:468.066667pt;}
.y57{bottom:470.626667pt;}
.y9c{bottom:471.106667pt;}
.y24{bottom:475.906667pt;}
.ye1{bottom:477.026667pt;}
.y70{bottom:486.466667pt;}
.y56{bottom:489.026667pt;}
.y9b{bottom:492.546667pt;}
.ye0{bottom:493.026667pt;}
.y23{bottom:494.306667pt;}
.y6f{bottom:504.866667pt;}
.y55{bottom:507.426667pt;}
.ydf{bottom:509.186667pt;}
.y22{bottom:512.706667pt;}
.y99{bottom:513.986667pt;}
.y6e{bottom:523.266667pt;}
.yde{bottom:525.346667pt;}
.y54{bottom:525.826667pt;}
.y21{bottom:531.106667pt;}
.y98{bottom:535.586667pt;}
.ydd{bottom:541.346667pt;}
.y6d{bottom:541.666667pt;}
.y53{bottom:544.226667pt;}
.y20{bottom:548.226667pt;}
.yb0{bottom:553.666667pt;}
.y96{bottom:554.626667pt;}
.ydc{bottom:557.506667pt;}
.y6c{bottom:560.066667pt;}
.y52{bottom:562.626667pt;}
.y1f{bottom:563.906667pt;}
.yaf{bottom:572.066667pt;}
.ydb{bottom:573.506667pt;}
.y94{bottom:573.666667pt;}
.y1e{bottom:577.346667pt;}
.y6b{bottom:578.466667pt;}
.y51{bottom:581.026667pt;}
.yae{bottom:586.946667pt;}
.yda{bottom:589.666667pt;}
.y6a{bottom:593.346667pt;}
.y1d{bottom:594.466667pt;}
.y50{bottom:599.453333pt;}
.yd9{bottom:605.853333pt;}
.y1c{bottom:607.933333pt;}
.y4f{bottom:617.853333pt;}
.yd8{bottom:621.853333pt;}
.y1b{bottom:626.333333pt;}
.y4e{bottom:636.253333pt;}
.yd7{bottom:638.013333pt;}
.y1a{bottom:644.733333pt;}
.yd6{bottom:654.173333pt;}
.y4d{bottom:654.653333pt;}
.y19{bottom:663.133333pt;}
.y86{bottom:669.693333pt;}
.yd5{bottom:670.173333pt;}
.y4c{bottom:673.053333pt;}
.y18{bottom:681.533333pt;}
.yd4{bottom:686.333333pt;}
.y85{bottom:688.093333pt;}
.y4b{bottom:691.453333pt;}
.y17{bottom:699.933333pt;}
.yd3{bottom:702.333333pt;}
.y84{bottom:702.973333pt;}
.y4a{bottom:709.853333pt;}
.y16{bottom:718.333333pt;}
.yd2{bottom:718.493333pt;}
.y49{bottom:728.093333pt;}
.yd1{bottom:734.653333pt;}
.y15{bottom:736.733333pt;}
.y48{bottom:746.493333pt;}
.yd0{bottom:750.653333pt;}
.y14{bottom:755.133333pt;}
.y47{bottom:764.893333pt;}
.ycf{bottom:766.813333pt;}
.y13{bottom:773.533333pt;}
.yce{bottom:782.813333pt;}
.y46{bottom:783.293333pt;}
.y12{bottom:791.933333pt;}
.ycd{bottom:798.973333pt;}
.y45{bottom:801.693333pt;}
.y11{bottom:810.333333pt;}
.ycc{bottom:815.173333pt;}
.y44{bottom:820.133333pt;}
.y10{bottom:828.773333pt;}
.ycb{bottom:831.173333pt;}
.y43{bottom:838.533333pt;}
.yca{bottom:847.333333pt;}
.yf{bottom:849.093333pt;}
.y42{bottom:856.933333pt;}
.ye{bottom:861.253333pt;}
.yc9{bottom:863.493333pt;}
.y41{bottom:875.333333pt;}
.yc8{bottom:879.493333pt;}
.yd{bottom:884.933333pt;}
.y40{bottom:893.733333pt;}
.yc7{bottom:895.653333pt;}
.yc{bottom:903.333333pt;}
.yc6{bottom:911.653333pt;}
.y3f{bottom:912.133333pt;}
.yb{bottom:916.453333pt;}
.yc5{bottom:927.813333pt;}
.y3e{bottom:930.533333pt;}
.ya{bottom:940.133333pt;}
.yc4{bottom:943.973333pt;}
.y3d{bottom:948.933333pt;}
.y9{bottom:953.253333pt;}
.yc3{bottom:959.973333pt;}
.y3c{bottom:967.333333pt;}
.y8{bottom:971.653333pt;}
.yc2{bottom:976.133333pt;}
.y3b{bottom:985.733333pt;}
.yc1{bottom:992.133333pt;}
.y7{bottom:998.533333pt;}
.y3a{bottom:1004.133333pt;}
.yc0{bottom:1008.293333pt;}
.y6{bottom:1019.973333pt;}
.y39{bottom:1022.533333pt;}
.ybf{bottom:1024.480000pt;}
.y1{bottom:1062.080000pt;}
.hf{height:18.240000pt;}
.he{height:18.400000pt;}
.h10{height:20.800000pt;}
.h12{height:20.832000pt;}
.h11{height:20.960000pt;}
.hd{height:21.440000pt;}
.h8{height:25.918750pt;}
.hb{height:29.940625pt;}
.h7{height:30.254687pt;}
.h3{height:37.090625pt;}
.h2{height:37.479688pt;}
.h13{height:39.325000pt;}
.h16{height:43.782500pt;}
.h6{height:44.687500pt;}
.h9{height:45.156250pt;}
.h14{height:46.420000pt;}
.hc{height:46.593750pt;}
.h5{height:51.374688pt;}
.ha{height:52.750000pt;}
.h4{height:52.832812pt;}
.h15{height:261.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:63.680000pt;}
.w7{width:103.392000pt;}
.w8{width:112.640000pt;}
.w6{width:171.546667pt;}
.w5{width:176.666667pt;}
.w9{width:609.213333pt;}
.w3{width:630.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x20{left:9.600000pt;}
.x1d{left:30.880000pt;}
.xd{left:77.119988pt;}
.x1f{left:92.032000pt;}
.x1{left:96.031988pt;}
.x10{left:114.911988pt;}
.x8{left:119.871988pt;}
.x1e{left:124.511988pt;}
.x4{left:136.186655pt;}
.x16{left:139.546655pt;}
.x11{left:144.026655pt;}
.xf{left:146.746655pt;}
.x19{left:160.666667pt;}
.x13{left:168.826655pt;}
.x6{left:170.266655pt;}
.xa{left:171.546655pt;}
.x15{left:178.906655pt;}
.x17{left:222.594667pt;}
.xb{left:235.546655pt;}
.xc{left:236.506655pt;}
.x3{left:286.306655pt;}
.x9{left:327.106655pt;}
.x1a{left:338.146667pt;}
.x5{left:357.026655pt;}
.x7{left:396.866655pt;}
.x1b{left:510.333333pt;}
.x1c{left:614.373333pt;}
.xe{left:696.133322pt;}
.x2{left:697.893322pt;}
.x14{left:703.493322pt;}
.x12{left:706.533322pt;}
}




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