
    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_5eeea0a29c830fc63e63c91b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_5bb25af8f9fa8ec375620e78.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_aa7e76c9290289311d568bff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_e26a35d4bfb34523748f2ed0.woff')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.ls11{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.000001px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.lse{letter-spacing:5.040000px;}
.ls2{letter-spacing:10.944000px;}
.ls9{letter-spacing:18.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;}
}
.wsa{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsc{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.580000px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-4.325040px;}
._8{margin-left:-3.168000px;}
._4{margin-left:-1.170960px;}
._0{width:1.254960px;}
._3{width:2.793120px;}
._5{width:4.279920px;}
._a{width:5.976000px;}
._9{width:7.272000px;}
._6{width:9.144000px;}
._7{width:10.253040px;}
._10{width:12.168000px;}
._d{width:14.112000px;}
._c{width:15.912000px;}
._f{width:16.992000px;}
._e{width:19.632000px;}
._b{width:21.384000px;}
._15{width:22.536000px;}
._11{width:24.840000px;}
._12{width:26.033040px;}
._1c{width:27.294960px;}
._1d{width:33.624000px;}
._1a{width:38.088000px;}
._1b{width:39.372000px;}
._13{width:43.272000px;}
._14{width:44.616000px;}
._20{width:51.094800px;}
._1e{width:52.170480px;}
._1f{width:54.189120px;}
._23{width:97.157040px;}
._24{width:99.541200px;}
._22{width:131.770800px;}
._21{width:132.906240px;}
._1{width:168.715200px;}
._17{width:217.080000px;}
._18{width:218.141040px;}
._19{width:485.208000px;}
._2{width:899.760000px;}
.fc6{color:rgb(238,0,0);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc5{color:rgb(0,0,204);}
.fc1{color:rgb(4,98,194);}
.fc4{color:rgb(147,147,147);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs6{font-size:23.760000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y114{bottom:14.580000px;}
.y4{bottom:23.400000px;}
.y113{bottom:31.860000px;}
.y112{bottom:48.960000px;}
.y3{bottom:49.320000px;}
.y111{bottom:66.285000px;}
.y2{bottom:79.020000px;}
.y110{bottom:83.565000px;}
.y38{bottom:99.000000px;}
.ye9{bottom:101.340000px;}
.yc0{bottom:103.140000px;}
.y82{bottom:107.280000px;}
.y10f{bottom:110.565000px;}
.y8b{bottom:116.820000px;}
.ye8{bottom:118.440000px;}
.y37{bottom:119.520000px;}
.ybf{bottom:123.840000px;}
.y81{bottom:127.980000px;}
.y10e{bottom:130.005000px;}
.y9a{bottom:132.120000px;}
.ye7{bottom:135.720000px;}
.y8a{bottom:137.520000px;}
.y36{bottom:140.220000px;}
.ybe{bottom:144.540000px;}
.y10d{bottom:147.285000px;}
.y80{bottom:148.680000px;}
.y99{bottom:152.820000px;}
.ye6{bottom:153.000000px;}
.y89{bottom:158.220000px;}
.y35{bottom:160.920000px;}
.y10c{bottom:164.565000px;}
.ybd{bottom:165.240000px;}
.y7f{bottom:169.380000px;}
.ye5{bottom:170.280000px;}
.y98{bottom:173.520000px;}
.y88{bottom:178.920000px;}
.y34{bottom:181.620000px;}
.y10b{bottom:181.665000px;}
.ybc{bottom:185.940000px;}
.yb0{bottom:186.120000px;}
.ye4{bottom:187.560000px;}
.y7e{bottom:190.080000px;}
.y97{bottom:194.220000px;}
.y10a{bottom:198.945000px;}
.y87{bottom:199.650000px;}
.y33{bottom:202.350000px;}
.ye3{bottom:204.870000px;}
.ybb{bottom:206.670000px;}
.yaf{bottom:206.850000px;}
.y7d{bottom:210.810000px;}
.y96{bottom:214.950000px;}
.y86{bottom:220.350000px;}
.ye2{bottom:221.970000px;}
.y32{bottom:223.050000px;}
.yae{bottom:223.590000px;}
.y109{bottom:226.305000px;}
.yba{bottom:227.370000px;}
.y7c{bottom:231.510000px;}
.y95{bottom:235.650000px;}
.ye1{bottom:239.250000px;}
.y85{bottom:241.050000px;}
.y31{bottom:243.750000px;}
.y108{bottom:247.185000px;}
.yb9{bottom:248.070000px;}
.y7b{bottom:252.210000px;}
.y94{bottom:256.350000px;}
.ye0{bottom:256.530000px;}
.y84{bottom:261.750000px;}
.y30{bottom:264.450000px;}
.y107{bottom:264.465000px;}
.yb8{bottom:268.770000px;}
.y7a{bottom:272.910000px;}
.y93{bottom:273.090000px;}
.ydf{bottom:273.810000px;}
.y83{bottom:278.490000px;}
.y106{bottom:281.565000px;}
.y2f{bottom:285.150000px;}
.y63{bottom:288.390000px;}
.yb7{bottom:289.470000px;}
.yde{bottom:291.090000px;}
.y79{bottom:293.610000px;}
.y105{bottom:298.875000px;}
.y2e{bottom:305.850000px;}
.ydd{bottom:308.190000px;}
.y62{bottom:308.910000px;}
.yb6{bottom:310.170000px;}
.y78{bottom:314.310000px;}
.y104{bottom:316.155000px;}
.ydc{bottom:325.470000px;}
.y2d{bottom:326.550000px;}
.yb5{bottom:326.910000px;}
.y61{bottom:329.610000px;}
.y103{bottom:333.435000px;}
.y77{bottom:335.010000px;}
.ydb{bottom:342.750000px;}
.y2c{bottom:347.250000px;}
.y60{bottom:350.310000px;}
.y102{bottom:350.715000px;}
.y76{bottom:355.710000px;}
.yda{bottom:360.030000px;}
.y2b{bottom:367.950000px;}
.y5f{bottom:371.010000px;}
.y75{bottom:376.410000px;}
.yd9{bottom:377.310000px;}
.y101{bottom:381.450000px;}
.y2a{bottom:388.650000px;}
.y5e{bottom:391.710000px;}
.yd8{bottom:394.590000px;}
.y74{bottom:397.110000px;}
.y29{bottom:409.350000px;}
.yd7{bottom:411.690000px;}
.y5d{bottom:412.410000px;}
.y73{bottom:417.810000px;}
.yd6{bottom:428.970000px;}
.y28{bottom:430.050000px;}
.y5c{bottom:433.110000px;}
.y72{bottom:438.555000px;}
.yd5{bottom:446.295000px;}
.y27{bottom:450.795000px;}
.y5b{bottom:453.855000px;}
.y71{bottom:459.255000px;}
.yd4{bottom:463.575000px;}
.y26{bottom:471.495000px;}
.y5a{bottom:474.555000px;}
.y70{bottom:479.955000px;}
.yd3{bottom:480.855000px;}
.y92{bottom:481.755000px;}
.y25{bottom:492.195000px;}
.y59{bottom:495.255000px;}
.yd2{bottom:498.135000px;}
.y6f{bottom:500.655000px;}
.y91{bottom:502.455000px;}
.y24{bottom:512.895000px;}
.yd1{bottom:515.235000px;}
.y58{bottom:515.955000px;}
.y6e{bottom:521.355000px;}
.y90{bottom:523.155000px;}
.yd0{bottom:532.515000px;}
.y23{bottom:533.595000px;}
.y57{bottom:536.655000px;}
.y6d{bottom:542.055000px;}
.y8f{bottom:543.855000px;}
.ycf{bottom:549.795000px;}
.yad{bottom:552.315000px;}
.y22{bottom:554.295000px;}
.y56{bottom:557.355000px;}
.y6c{bottom:562.755000px;}
.y8e{bottom:564.555000px;}
.yce{bottom:567.075000px;}
.yac{bottom:573.015000px;}
.y21{bottom:574.995000px;}
.y55{bottom:578.055000px;}
.y6b{bottom:583.455000px;}
.ycd{bottom:584.355000px;}
.y8d{bottom:585.255000px;}
.yab{bottom:593.715000px;}
.y20{bottom:595.695000px;}
.y54{bottom:598.755000px;}
.ycc{bottom:601.635000px;}
.y8c{bottom:601.995000px;}
.y6a{bottom:604.155000px;}
.yaa{bottom:614.415000px;}
.ycb{bottom:618.735000px;}
.y1f{bottom:618.915000px;}
.y53{bottom:619.455000px;}
.y69{bottom:624.855000px;}
.y1e{bottom:634.035000px;}
.ya9{bottom:635.115000px;}
.yca{bottom:636.015000px;}
.y52{bottom:640.155000px;}
.y68{bottom:645.555000px;}
.y1d{bottom:653.295000px;}
.ya8{bottom:655.815000px;}
.y51{bottom:660.855000px;}
.y67{bottom:666.255000px;}
.y1c{bottom:668.415000px;}
.yc9{bottom:670.575000px;}
.ya7{bottom:676.545000px;}
.y50{bottom:681.585000px;}
.y66{bottom:686.985000px;}
.yc8{bottom:687.885000px;}
.y1b{bottom:689.145000px;}
.ya6{bottom:697.245000px;}
.y4f{bottom:702.285000px;}
.yc7{bottom:704.985000px;}
.y65{bottom:707.685000px;}
.y1a{bottom:709.845000px;}
.ya5{bottom:717.945000px;}
.yc6{bottom:722.265000px;}
.y4e{bottom:722.985000px;}
.y64{bottom:724.425000px;}
.y19{bottom:730.545000px;}
.ya4{bottom:738.645000px;}
.yc5{bottom:739.545000px;}
.yb4{bottom:742.785000px;}
.y4d{bottom:743.685000px;}
.y18{bottom:751.245000px;}
.yc4{bottom:756.825000px;}
.ya3{bottom:759.345000px;}
.yb3{bottom:763.485000px;}
.y4c{bottom:764.385000px;}
.y100{bottom:768.885000px;}
.y17{bottom:771.945000px;}
.yc3{bottom:774.105000px;}
.ya2{bottom:780.045000px;}
.yb2{bottom:784.185000px;}
.y4b{bottom:785.085000px;}
.yff{bottom:786.165000px;}
.yc2{bottom:791.385000px;}
.y16{bottom:792.645000px;}
.ya1{bottom:800.745000px;}
.yb1{bottom:800.925000px;}
.y4a{bottom:805.785000px;}
.yc1{bottom:808.485000px;}
.y15{bottom:813.345000px;}
.yfe{bottom:815.505000px;}
.ya0{bottom:821.445000px;}
.y49{bottom:826.485000px;}
.yfd{bottom:832.785000px;}
.y14{bottom:834.045000px;}
.y9f{bottom:842.145000px;}
.y48{bottom:847.185000px;}
.yfc{bottom:849.885000px;}
.y13{bottom:854.745000px;}
.y9e{bottom:861.225000px;}
.yfb{bottom:867.165000px;}
.y47{bottom:867.885000px;}
.y9d{bottom:874.725000px;}
.y12{bottom:875.445000px;}
.yfa{bottom:884.445000px;}
.y46{bottom:888.585000px;}
.y9c{bottom:893.625000px;}
.y11{bottom:896.145000px;}
.yf9{bottom:901.725000px;}
.y9b{bottom:908.925000px;}
.y45{bottom:909.285000px;}
.y10{bottom:916.890000px;}
.yf8{bottom:919.050000px;}
.y44{bottom:930.030000px;}
.yf7{bottom:936.330000px;}
.yf{bottom:937.590000px;}
.y43{bottom:950.730000px;}
.yf6{bottom:953.430000px;}
.ye{bottom:956.850000px;}
.yf5{bottom:970.710000px;}
.y42{bottom:971.430000px;}
.yd{bottom:974.310000px;}
.yc{bottom:987.630000px;}
.yf4{bottom:987.990000px;}
.y41{bottom:992.130000px;}
.yf3{bottom:1005.270000px;}
.yb{bottom:1006.710000px;}
.y40{bottom:1012.830000px;}
.yf2{bottom:1022.550000px;}
.y3f{bottom:1033.530000px;}
.yf1{bottom:1039.650000px;}
.ya{bottom:1040.370000px;}
.y9{bottom:1053.510000px;}
.y3e{bottom:1054.230000px;}
.yf0{bottom:1056.930000px;}
.yef{bottom:1074.210000px;}
.y3d{bottom:1074.930000px;}
.y8{bottom:1078.710000px;}
.yee{bottom:1091.490000px;}
.y7{bottom:1093.470000px;}
.y3c{bottom:1095.630000px;}
.yed{bottom:1108.770000px;}
.y3b{bottom:1116.330000px;}
.y6{bottom:1124.610000px;}
.yec{bottom:1126.050000px;}
.y3a{bottom:1137.030000px;}
.yeb{bottom:1143.150000px;}
.y5{bottom:1152.180000px;}
.y39{bottom:1157.760000px;}
.yea{bottom:1160.460000px;}
.y1{bottom:1194.840000px;}
.h12{height:13.016602px;}
.h11{height:17.181914px;}
.h7{height:29.464453px;}
.h8{height:30.198516px;}
.h5{height:34.036523px;}
.h9{height:34.884492px;}
.h10{height:42.164648px;}
.h2{height:43.215117px;}
.h6{height:47.901094px;}
.he{height:49.255313px;}
.hd{height:50.800781px;}
.ha{height:52.066406px;}
.hb{height:52.417969px;}
.h4{height:57.796523px;}
.hc{height:59.343750px;}
.h3{height:67.565039px;}
.hf{height:364.755000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:685.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:10.800000px;}
.x11{left:99.576000px;}
.x1{left:108.035987px;}
.xc{left:129.275987px;}
.x6{left:131.435987px;}
.x4{left:142.775987px;}
.x10{left:162.029987px;}
.x8{left:214.229987px;}
.xa{left:281.234987px;}
.x3{left:322.094987px;}
.x5{left:336.134987px;}
.x9{left:344.774987px;}
.x7{left:400.754987px;}
.x2{left:785.129987px;}
.xf{left:800.609987px;}
.xd{left:810.149987px;}
.xe{left:857.339987px;}
.xb{left:862.019987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.000001pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.lse{letter-spacing:4.480000pt;}
.ls2{letter-spacing:9.728000pt;}
.ls9{letter-spacing:16.128000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.960000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-3.844480pt;}
._8{margin-left:-2.816000pt;}
._4{margin-left:-1.040853pt;}
._0{width:1.115520pt;}
._3{width:2.482773pt;}
._5{width:3.804373pt;}
._a{width:5.312000pt;}
._9{width:6.464000pt;}
._6{width:8.128000pt;}
._7{width:9.113813pt;}
._10{width:10.816000pt;}
._d{width:12.544000pt;}
._c{width:14.144000pt;}
._f{width:15.104000pt;}
._e{width:17.450667pt;}
._b{width:19.008000pt;}
._15{width:20.032000pt;}
._11{width:22.080000pt;}
._12{width:23.140480pt;}
._1c{width:24.262187pt;}
._1d{width:29.888000pt;}
._1a{width:33.856000pt;}
._1b{width:34.997333pt;}
._13{width:38.464000pt;}
._14{width:39.658667pt;}
._20{width:45.417600pt;}
._1e{width:46.373760pt;}
._1f{width:48.168107pt;}
._23{width:86.361813pt;}
._24{width:88.481067pt;}
._22{width:117.129600pt;}
._21{width:118.138880pt;}
._1{width:149.969067pt;}
._17{width:192.960000pt;}
._18{width:193.903147pt;}
._19{width:431.296000pt;}
._2{width:799.786667pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:21.120000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:12.960000pt;}
.y4{bottom:20.800000pt;}
.y113{bottom:28.320000pt;}
.y112{bottom:43.520000pt;}
.y3{bottom:43.840000pt;}
.y111{bottom:58.920000pt;}
.y2{bottom:70.240000pt;}
.y110{bottom:74.280000pt;}
.y38{bottom:88.000000pt;}
.ye9{bottom:90.080000pt;}
.yc0{bottom:91.680000pt;}
.y82{bottom:95.360000pt;}
.y10f{bottom:98.280000pt;}
.y8b{bottom:103.840000pt;}
.ye8{bottom:105.280000pt;}
.y37{bottom:106.240000pt;}
.ybf{bottom:110.080000pt;}
.y81{bottom:113.760000pt;}
.y10e{bottom:115.560000pt;}
.y9a{bottom:117.440000pt;}
.ye7{bottom:120.640000pt;}
.y8a{bottom:122.240000pt;}
.y36{bottom:124.640000pt;}
.ybe{bottom:128.480000pt;}
.y10d{bottom:130.920000pt;}
.y80{bottom:132.160000pt;}
.y99{bottom:135.840000pt;}
.ye6{bottom:136.000000pt;}
.y89{bottom:140.640000pt;}
.y35{bottom:143.040000pt;}
.y10c{bottom:146.280000pt;}
.ybd{bottom:146.880000pt;}
.y7f{bottom:150.560000pt;}
.ye5{bottom:151.360000pt;}
.y98{bottom:154.240000pt;}
.y88{bottom:159.040000pt;}
.y34{bottom:161.440000pt;}
.y10b{bottom:161.480000pt;}
.ybc{bottom:165.280000pt;}
.yb0{bottom:165.440000pt;}
.ye4{bottom:166.720000pt;}
.y7e{bottom:168.960000pt;}
.y97{bottom:172.640000pt;}
.y10a{bottom:176.840000pt;}
.y87{bottom:177.466667pt;}
.y33{bottom:179.866667pt;}
.ye3{bottom:182.106667pt;}
.ybb{bottom:183.706667pt;}
.yaf{bottom:183.866667pt;}
.y7d{bottom:187.386667pt;}
.y96{bottom:191.066667pt;}
.y86{bottom:195.866667pt;}
.ye2{bottom:197.306667pt;}
.y32{bottom:198.266667pt;}
.yae{bottom:198.746667pt;}
.y109{bottom:201.160000pt;}
.yba{bottom:202.106667pt;}
.y7c{bottom:205.786667pt;}
.y95{bottom:209.466667pt;}
.ye1{bottom:212.666667pt;}
.y85{bottom:214.266667pt;}
.y31{bottom:216.666667pt;}
.y108{bottom:219.720000pt;}
.yb9{bottom:220.506667pt;}
.y7b{bottom:224.186667pt;}
.y94{bottom:227.866667pt;}
.ye0{bottom:228.026667pt;}
.y84{bottom:232.666667pt;}
.y30{bottom:235.066667pt;}
.y107{bottom:235.080000pt;}
.yb8{bottom:238.906667pt;}
.y7a{bottom:242.586667pt;}
.y93{bottom:242.746667pt;}
.ydf{bottom:243.386667pt;}
.y83{bottom:247.546667pt;}
.y106{bottom:250.280000pt;}
.y2f{bottom:253.466667pt;}
.y63{bottom:256.346667pt;}
.yb7{bottom:257.306667pt;}
.yde{bottom:258.746667pt;}
.y79{bottom:260.986667pt;}
.y105{bottom:265.666667pt;}
.y2e{bottom:271.866667pt;}
.ydd{bottom:273.946667pt;}
.y62{bottom:274.586667pt;}
.yb6{bottom:275.706667pt;}
.y78{bottom:279.386667pt;}
.y104{bottom:281.026667pt;}
.ydc{bottom:289.306667pt;}
.y2d{bottom:290.266667pt;}
.yb5{bottom:290.586667pt;}
.y61{bottom:292.986667pt;}
.y103{bottom:296.386667pt;}
.y77{bottom:297.786667pt;}
.ydb{bottom:304.666667pt;}
.y2c{bottom:308.666667pt;}
.y60{bottom:311.386667pt;}
.y102{bottom:311.746667pt;}
.y76{bottom:316.186667pt;}
.yda{bottom:320.026667pt;}
.y2b{bottom:327.066667pt;}
.y5f{bottom:329.786667pt;}
.y75{bottom:334.586667pt;}
.yd9{bottom:335.386667pt;}
.y101{bottom:339.066667pt;}
.y2a{bottom:345.466667pt;}
.y5e{bottom:348.186667pt;}
.yd8{bottom:350.746667pt;}
.y74{bottom:352.986667pt;}
.y29{bottom:363.866667pt;}
.yd7{bottom:365.946667pt;}
.y5d{bottom:366.586667pt;}
.y73{bottom:371.386667pt;}
.yd6{bottom:381.306667pt;}
.y28{bottom:382.266667pt;}
.y5c{bottom:384.986667pt;}
.y72{bottom:389.826667pt;}
.yd5{bottom:396.706667pt;}
.y27{bottom:400.706667pt;}
.y5b{bottom:403.426667pt;}
.y71{bottom:408.226667pt;}
.yd4{bottom:412.066667pt;}
.y26{bottom:419.106667pt;}
.y5a{bottom:421.826667pt;}
.y70{bottom:426.626667pt;}
.yd3{bottom:427.426667pt;}
.y92{bottom:428.226667pt;}
.y25{bottom:437.506667pt;}
.y59{bottom:440.226667pt;}
.yd2{bottom:442.786667pt;}
.y6f{bottom:445.026667pt;}
.y91{bottom:446.626667pt;}
.y24{bottom:455.906667pt;}
.yd1{bottom:457.986667pt;}
.y58{bottom:458.626667pt;}
.y6e{bottom:463.426667pt;}
.y90{bottom:465.026667pt;}
.yd0{bottom:473.346667pt;}
.y23{bottom:474.306667pt;}
.y57{bottom:477.026667pt;}
.y6d{bottom:481.826667pt;}
.y8f{bottom:483.426667pt;}
.ycf{bottom:488.706667pt;}
.yad{bottom:490.946667pt;}
.y22{bottom:492.706667pt;}
.y56{bottom:495.426667pt;}
.y6c{bottom:500.226667pt;}
.y8e{bottom:501.826667pt;}
.yce{bottom:504.066667pt;}
.yac{bottom:509.346667pt;}
.y21{bottom:511.106667pt;}
.y55{bottom:513.826667pt;}
.y6b{bottom:518.626667pt;}
.ycd{bottom:519.426667pt;}
.y8d{bottom:520.226667pt;}
.yab{bottom:527.746667pt;}
.y20{bottom:529.506667pt;}
.y54{bottom:532.226667pt;}
.ycc{bottom:534.786667pt;}
.y8c{bottom:535.106667pt;}
.y6a{bottom:537.026667pt;}
.yaa{bottom:546.146667pt;}
.ycb{bottom:549.986667pt;}
.y1f{bottom:550.146667pt;}
.y53{bottom:550.626667pt;}
.y69{bottom:555.426667pt;}
.y1e{bottom:563.586667pt;}
.ya9{bottom:564.546667pt;}
.yca{bottom:565.346667pt;}
.y52{bottom:569.026667pt;}
.y68{bottom:573.826667pt;}
.y1d{bottom:580.706667pt;}
.ya8{bottom:582.946667pt;}
.y51{bottom:587.426667pt;}
.y67{bottom:592.226667pt;}
.y1c{bottom:594.146667pt;}
.yc9{bottom:596.066667pt;}
.ya7{bottom:601.373333pt;}
.y50{bottom:605.853333pt;}
.y66{bottom:610.653333pt;}
.yc8{bottom:611.453333pt;}
.y1b{bottom:612.573333pt;}
.ya6{bottom:619.773333pt;}
.y4f{bottom:624.253333pt;}
.yc7{bottom:626.653333pt;}
.y65{bottom:629.053333pt;}
.y1a{bottom:630.973333pt;}
.ya5{bottom:638.173333pt;}
.yc6{bottom:642.013333pt;}
.y4e{bottom:642.653333pt;}
.y64{bottom:643.933333pt;}
.y19{bottom:649.373333pt;}
.ya4{bottom:656.573333pt;}
.yc5{bottom:657.373333pt;}
.yb4{bottom:660.253333pt;}
.y4d{bottom:661.053333pt;}
.y18{bottom:667.773333pt;}
.yc4{bottom:672.733333pt;}
.ya3{bottom:674.973333pt;}
.yb3{bottom:678.653333pt;}
.y4c{bottom:679.453333pt;}
.y100{bottom:683.453333pt;}
.y17{bottom:686.173333pt;}
.yc3{bottom:688.093333pt;}
.ya2{bottom:693.373333pt;}
.yb2{bottom:697.053333pt;}
.y4b{bottom:697.853333pt;}
.yff{bottom:698.813333pt;}
.yc2{bottom:703.453333pt;}
.y16{bottom:704.573333pt;}
.ya1{bottom:711.773333pt;}
.yb1{bottom:711.933333pt;}
.y4a{bottom:716.253333pt;}
.yc1{bottom:718.653333pt;}
.y15{bottom:722.973333pt;}
.yfe{bottom:724.893333pt;}
.ya0{bottom:730.173333pt;}
.y49{bottom:734.653333pt;}
.yfd{bottom:740.253333pt;}
.y14{bottom:741.373333pt;}
.y9f{bottom:748.573333pt;}
.y48{bottom:753.053333pt;}
.yfc{bottom:755.453333pt;}
.y13{bottom:759.773333pt;}
.y9e{bottom:765.533333pt;}
.yfb{bottom:770.813333pt;}
.y47{bottom:771.453333pt;}
.y9d{bottom:777.533333pt;}
.y12{bottom:778.173333pt;}
.yfa{bottom:786.173333pt;}
.y46{bottom:789.853333pt;}
.y9c{bottom:794.333333pt;}
.y11{bottom:796.573333pt;}
.yf9{bottom:801.533333pt;}
.y9b{bottom:807.933333pt;}
.y45{bottom:808.253333pt;}
.y10{bottom:815.013333pt;}
.yf8{bottom:816.933333pt;}
.y44{bottom:826.693333pt;}
.yf7{bottom:832.293333pt;}
.yf{bottom:833.413333pt;}
.y43{bottom:845.093333pt;}
.yf6{bottom:847.493333pt;}
.ye{bottom:850.533333pt;}
.yf5{bottom:862.853333pt;}
.y42{bottom:863.493333pt;}
.yd{bottom:866.053333pt;}
.yc{bottom:877.893333pt;}
.yf4{bottom:878.213333pt;}
.y41{bottom:881.893333pt;}
.yf3{bottom:893.573333pt;}
.yb{bottom:894.853333pt;}
.y40{bottom:900.293333pt;}
.yf2{bottom:908.933333pt;}
.y3f{bottom:918.693333pt;}
.yf1{bottom:924.133333pt;}
.ya{bottom:924.773333pt;}
.y9{bottom:936.453333pt;}
.y3e{bottom:937.093333pt;}
.yf0{bottom:939.493333pt;}
.yef{bottom:954.853333pt;}
.y3d{bottom:955.493333pt;}
.y8{bottom:958.853333pt;}
.yee{bottom:970.213333pt;}
.y7{bottom:971.973333pt;}
.y3c{bottom:973.893333pt;}
.yed{bottom:985.573333pt;}
.y3b{bottom:992.293333pt;}
.y6{bottom:999.653333pt;}
.yec{bottom:1000.933333pt;}
.y3a{bottom:1010.693333pt;}
.yeb{bottom:1016.133333pt;}
.y5{bottom:1024.160000pt;}
.y39{bottom:1029.120000pt;}
.yea{bottom:1031.520000pt;}
.y1{bottom:1062.080000pt;}
.h12{height:11.570312pt;}
.h11{height:15.272812pt;}
.h7{height:26.190625pt;}
.h8{height:26.843125pt;}
.h5{height:30.254687pt;}
.h9{height:31.008437pt;}
.h10{height:37.479688pt;}
.h2{height:38.413438pt;}
.h6{height:42.578750pt;}
.he{height:43.782500pt;}
.hd{height:45.156250pt;}
.ha{height:46.281250pt;}
.hb{height:46.593750pt;}
.h4{height:51.374687pt;}
.hc{height:52.750000pt;}
.h3{height:60.057813pt;}
.hf{height:324.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:609.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:9.600000pt;}
.x11{left:88.512000pt;}
.x1{left:96.031988pt;}
.xc{left:114.911988pt;}
.x6{left:116.831988pt;}
.x4{left:126.911988pt;}
.x10{left:144.026655pt;}
.x8{left:190.426655pt;}
.xa{left:249.986655pt;}
.x3{left:286.306655pt;}
.x5{left:298.786655pt;}
.x9{left:306.466655pt;}
.x7{left:356.226655pt;}
.x2{left:697.893322pt;}
.xf{left:711.653322pt;}
.xd{left:720.133322pt;}
.xe{left:762.079988pt;}
.xb{left:766.239988pt;}
}




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