
    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_ac58afbd16b7737e36ac2e6e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_5d727987c086e4c02584f687.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_e7cae65dcce6e0a8e3a9a848.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_98465cff990ef73ccdeb0858.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_2a1854aea0ea13319da53037.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_1a9f12f017da33c05a9067c3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.924000px;}
.ls0{letter-spacing:11.700000px;}
.lsb{letter-spacing:46.026720px;}
.ls6{letter-spacing:64.170720px;}
.ls7{letter-spacing:175.140000px;}
.ls1{letter-spacing:201.204000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.864000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.093600px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._3{width:2.282400px;}
._1{width:3.765840px;}
._a{width:4.860720px;}
._4{width:6.073440px;}
._c{width:7.697280px;}
._5{width:8.716320px;}
._6{width:10.039680px;}
._9{width:11.226960px;}
._8{width:12.310560px;}
._7{width:13.744800px;}
._d{width:16.835280px;}
._19{width:17.998800px;}
._f{width:20.737200px;}
._17{width:22.587120px;}
._15{width:23.794320px;}
._10{width:56.046960px;}
._11{width:68.934000px;}
._14{width:72.534000px;}
._18{width:87.229200px;}
._13{width:102.529200px;}
._e{width:155.124000px;}
._12{width:197.604000px;}
._b{width:201.204000px;}
._16{width:283.284000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:3.600000px;}
.yac{bottom:3.780000px;}
.y5{bottom:4.500000px;}
.y6e{bottom:9.000000px;}
.yf2{bottom:9.030000px;}
.y8e{bottom:9.045000px;}
.yc4{bottom:12.240000px;}
.yad{bottom:12.420000px;}
.y6b{bottom:17.460000px;}
.y73{bottom:17.640000px;}
.yf3{bottom:17.670000px;}
.y77{bottom:17.685000px;}
.yc6{bottom:20.880000px;}
.yab{bottom:21.060000px;}
.y4{bottom:24.120000px;}
.y6f{bottom:26.100000px;}
.y84{bottom:26.280000px;}
.yf6{bottom:26.310000px;}
.y76{bottom:26.325000px;}
.yca{bottom:29.520000px;}
.y75{bottom:31.860000px;}
.y8d{bottom:31.905000px;}
.yc5{bottom:38.160000px;}
.yb6{bottom:38.340000px;}
.y72{bottom:40.500000px;}
.y8b{bottom:40.545000px;}
.ye3{bottom:48.960000px;}
.y83{bottom:49.134000px;}
.y74{bottom:49.140000px;}
.y8c{bottom:49.185000px;}
.yde{bottom:59.400000px;}
.y7f{bottom:59.760000px;}
.ya8{bottom:72.360000px;}
.ydd{bottom:76.140000px;}
.y9a{bottom:77.580000px;}
.y80{bottom:77.616000px;}
.y6d{bottom:77.625000px;}
.yf5{bottom:77.760000px;}
.yc9{bottom:81.000000px;}
.y44{bottom:81.180000px;}
.y10f{bottom:84.060000px;}
.yb5{bottom:84.420000px;}
.yb1{bottom:90.000000px;}
.ydc{bottom:93.780000px;}
.y43{bottom:98.496000px;}
.y10e{bottom:101.376000px;}
.y82{bottom:105.516000px;}
.yb0{bottom:107.316000px;}
.ydb{bottom:111.096000px;}
.y42{bottom:115.776000px;}
.y10d{bottom:118.656000px;}
.yaf{bottom:124.236000px;}
.yda{bottom:128.016000px;}
.y41{bottom:132.696000px;}
.y10c{bottom:135.936000px;}
.yae{bottom:141.876000px;}
.yd9{bottom:145.656000px;}
.y40{bottom:150.330000px;}
.y81{bottom:151.410000px;}
.y10b{bottom:153.030000px;}
.ya7{bottom:156.090000px;}
.yd6{bottom:159.870000px;}
.y3f{bottom:167.430000px;}
.y10a{bottom:169.950000px;}
.y3e{bottom:184.710000px;}
.y109{bottom:187.590000px;}
.yaa{bottom:191.370000px;}
.y7e{bottom:197.130000px;}
.y3d{bottom:201.990000px;}
.y108{bottom:204.870000px;}
.yd8{bottom:205.590000px;}
.y3c{bottom:219.270000px;}
.y107{bottom:222.150000px;}
.y3b{bottom:236.550000px;}
.ya9{bottom:237.090000px;}
.y106{bottom:239.250000px;}
.y7d{bottom:246.630000px;}
.yd7{bottom:251.310000px;}
.y3a{bottom:253.830000px;}
.y105{bottom:256.530000px;}
.y7c{bottom:263.910000px;}
.y39{bottom:270.930000px;}
.y104{bottom:273.810000px;}
.y7b{bottom:281.010000px;}
.ya6{bottom:282.810000px;}
.y38{bottom:288.210000px;}
.y103{bottom:291.090000px;}
.yd5{bottom:297.030000px;}
.y7a{bottom:298.290000px;}
.y37{bottom:305.490000px;}
.y102{bottom:308.370000px;}
.y79{bottom:315.210000px;}
.y36{bottom:322.770000px;}
.y101{bottom:325.650000px;}
.ya5{bottom:332.310000px;}
.y78{bottom:332.850000px;}
.y35{bottom:340.050000px;}
.y100{bottom:342.390000px;}
.yd4{bottom:346.530000px;}
.y6c{bottom:347.070000px;}
.ya4{bottom:349.590000px;}
.y34{bottom:357.375000px;}
.yff{bottom:360.075000px;}
.yd3{bottom:363.855000px;}
.ya3{bottom:366.915000px;}
.y33{bottom:374.475000px;}
.yfe{bottom:377.355000px;}
.yd2{bottom:381.135000px;}
.ya2{bottom:384.195000px;}
.y32{bottom:391.755000px;}
.y71{bottom:392.835000px;}
.yfd{bottom:394.275000px;}
.yd1{bottom:398.415000px;}
.ya1{bottom:400.935000px;}
.y31{bottom:409.035000px;}
.yfc{bottom:411.915000px;}
.yd0{bottom:415.335000px;}
.ya0{bottom:418.575000px;}
.y30{bottom:426.315000px;}
.yfb{bottom:429.195000px;}
.ycf{bottom:432.795000px;}
.y9f{bottom:435.855000px;}
.y70{bottom:438.555000px;}
.y2f{bottom:443.595000px;}
.yfa{bottom:445.935000px;}
.yce{bottom:450.075000px;}
.y9e{bottom:452.775000px;}
.y2e{bottom:460.875000px;}
.yf9{bottom:463.575000px;}
.ycd{bottom:466.995000px;}
.y9d{bottom:470.415000px;}
.yf4{bottom:477.795000px;}
.y2d{bottom:477.975000px;}
.y6a{bottom:484.455000px;}
.y99{bottom:484.635000px;}
.y2c{bottom:495.255000px;}
.yc8{bottom:498.855000px;}
.y2b{bottom:512.535000px;}
.yf8{bottom:523.695000px;}
.y2a{bottom:529.815000px;}
.y9c{bottom:530.355000px;}
.y69{bottom:533.955000px;}
.ycc{bottom:544.575000px;}
.y29{bottom:547.095000px;}
.y68{bottom:551.055000px;}
.y28{bottom:564.195000px;}
.y67{bottom:567.975000px;}
.yf7{bottom:569.415000px;}
.y9b{bottom:576.075000px;}
.y27{bottom:581.475000px;}
.y66{bottom:585.615000px;}
.ycb{bottom:590.295000px;}
.y26{bottom:598.755000px;}
.y65{bottom:602.895000px;}
.yf1{bottom:615.135000px;}
.y25{bottom:616.065000px;}
.y64{bottom:620.205000px;}
.y98{bottom:621.825000px;}
.y24{bottom:633.345000px;}
.yc3{bottom:636.225000px;}
.y63{bottom:638.385000px;}
.y23{bottom:650.625000px;}
.y62{bottom:655.665000px;}
.yf0{bottom:664.665000px;}
.y22{bottom:667.725000px;}
.y97{bottom:671.325000px;}
.y61{bottom:674.025000px;}
.yef{bottom:681.945000px;}
.y21{bottom:685.005000px;}
.y96{bottom:688.605000px;}
.y60{bottom:692.385000px;}
.yee{bottom:699.225000px;}
.y20{bottom:702.285000px;}
.y95{bottom:705.885000px;}
.y5f{bottom:709.665000px;}
.yed{bottom:716.325000px;}
.y1f{bottom:719.565000px;}
.y94{bottom:723.165000px;}
.y5e{bottom:726.585000px;}
.yc2{bottom:726.945000px;}
.yec{bottom:733.245000px;}
.y1e{bottom:736.845000px;}
.y93{bottom:740.085000px;}
.y5d{bottom:744.045000px;}
.yc1{bottom:744.225000px;}
.yeb{bottom:750.885000px;}
.y1d{bottom:754.125000px;}
.y92{bottom:757.545000px;}
.yc0{bottom:760.965000px;}
.y5c{bottom:762.405000px;}
.yea{bottom:768.165000px;}
.y1c{bottom:770.865000px;}
.y91{bottom:774.825000px;}
.ybf{bottom:778.605000px;}
.y5b{bottom:780.765000px;}
.ye9{bottom:785.445000px;}
.y1b{bottom:788.505000px;}
.y90{bottom:791.745000px;}
.ybe{bottom:795.885000px;}
.y5a{bottom:799.125000px;}
.ye8{bottom:802.185000px;}
.y1a{bottom:805.785000px;}
.y8f{bottom:809.385000px;}
.ybd{bottom:812.805000px;}
.y59{bottom:816.405000px;}
.ye7{bottom:819.825000px;}
.y19{bottom:823.065000px;}
.y88{bottom:823.605000px;}
.ybc{bottom:830.445000px;}
.y58{bottom:833.145000px;}
.ye6{bottom:837.105000px;}
.y18{bottom:840.345000px;}
.ybb{bottom:847.545000px;}
.y57{bottom:850.785000px;}
.ye5{bottom:854.025000px;}
.y17{bottom:857.625000px;}
.yba{bottom:864.465000px;}
.y56{bottom:869.145000px;}
.y8a{bottom:869.325000px;}
.ye4{bottom:871.665000px;}
.y16{bottom:874.770000px;}
.yb9{bottom:882.150000px;}
.ye0{bottom:885.930000px;}
.y55{bottom:887.550000px;}
.y15{bottom:892.050000px;}
.yb4{bottom:896.370000px;}
.y54{bottom:905.910000px;}
.y14{bottom:908.970000px;}
.y89{bottom:915.090000px;}
.y53{bottom:924.090000px;}
.y13{bottom:928.230000px;}
.ye2{bottom:938.490000px;}
.y52{bottom:941.370000px;}
.y12{bottom:946.050000px;}
.yb8{bottom:948.930000px;}
.y51{bottom:958.290000px;}
.y87{bottom:960.990000px;}
.y11{bottom:963.330000px;}
.y50{bottom:975.930000px;}
.y10{bottom:980.610000px;}
.ye1{bottom:984.210000px;}
.y4f{bottom:992.850000px;}
.yb7{bottom:994.650000px;}
.yf{bottom:997.890000px;}
.y4e{bottom:1010.490000px;}
.ye{bottom:1014.990000px;}
.y4d{bottom:1027.590000px;}
.ydf{bottom:1029.930000px;}
.yd{bottom:1032.270000px;}
.yb3{bottom:1040.370000px;}
.y4c{bottom:1044.870000px;}
.yc{bottom:1051.890000px;}
.y4b{bottom:1062.150000px;}
.yb{bottom:1068.990000px;}
.y4a{bottom:1079.430000px;}
.ya{bottom:1086.270000px;}
.y86{bottom:1096.350000px;}
.y49{bottom:1096.710000px;}
.y9{bottom:1103.550000px;}
.y48{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.y47{bottom:1131.090000px;}
.y7{bottom:1141.920000px;}
.y85{bottom:1148.040000px;}
.y46{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.yb2{bottom:1165.320000px;}
.y45{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h11{height:34.560000px;}
.h9{height:45.000000px;}
.hc{height:45.036000px;}
.h14{height:51.660000px;}
.h12{height:51.840000px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h7{height:65.010937px;}
.h4{height:65.884219px;}
.h3{height:72.562500px;}
.hb{height:90.720000px;}
.he{height:90.756000px;}
.hd{height:90.900000px;}
.h10{height:171.720000px;}
.h16{height:182.160000px;}
.hf{height:182.190000px;}
.ha{height:182.370000px;}
.h17{height:189.000000px;}
.h15{height:189.030000px;}
.h13{height:195.840000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:32.256000px;}
.wa{width:68.220000px;}
.w9{width:68.256000px;}
.w2{width:68.400000px;}
.w4{width:68.580000px;}
.w3{width:68.616000px;}
.w5{width:68.760000px;}
.w7{width:137.196000px;}
.w8{width:137.376000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:1.800000px;}
.x24{left:4.680000px;}
.x22{left:5.940000px;}
.xf{left:8.100000px;}
.x20{left:9.540000px;}
.x23{left:10.980000px;}
.x15{left:16.020000px;}
.x1b{left:19.800000px;}
.x12{left:21.960000px;}
.x1f{left:23.580000px;}
.x1d{left:24.840000px;}
.x18{left:34.380000px;}
.x1e{left:35.640000px;}
.x5{left:54.000000px;}
.x1c{left:55.305000px;}
.xd{left:81.000000px;}
.xc{left:108.036000px;}
.xe{left:154.290000px;}
.x9{left:198.930000px;}
.x10{left:223.050000px;}
.x6{left:228.630000px;}
.x3{left:256.710000px;}
.x2{left:268.770000px;}
.x11{left:292.035000px;}
.x1{left:304.995000px;}
.x13{left:360.975000px;}
.xb{left:364.395000px;}
.x8{left:378.615000px;}
.x7{left:401.115000px;}
.xa{left:405.435000px;}
.x14{left:430.455000px;}
.x16{left:463.065000px;}
.x17{left:532.005000px;}
.x19{left:601.125000px;}
.x1a{left:670.110000px;}
.x4{left:812.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.821333pt;}
.ls0{letter-spacing:10.400000pt;}
.lsb{letter-spacing:40.912640pt;}
.ls6{letter-spacing:57.040640pt;}
.ls7{letter-spacing:155.680000pt;}
.ls1{letter-spacing:178.848000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.101333pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._3{width:2.028800pt;}
._1{width:3.347413pt;}
._a{width:4.320640pt;}
._4{width:5.398613pt;}
._c{width:6.842027pt;}
._5{width:7.747840pt;}
._6{width:8.924160pt;}
._9{width:9.979520pt;}
._8{width:10.942720pt;}
._7{width:12.217600pt;}
._d{width:14.964693pt;}
._19{width:15.998933pt;}
._f{width:18.433067pt;}
._17{width:20.077440pt;}
._15{width:21.150507pt;}
._10{width:49.819520pt;}
._11{width:61.274667pt;}
._14{width:64.474667pt;}
._18{width:77.537067pt;}
._13{width:91.137067pt;}
._e{width:137.888000pt;}
._12{width:175.648000pt;}
._b{width:178.848000pt;}
._16{width:251.808000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:3.200000pt;}
.yac{bottom:3.360000pt;}
.y5{bottom:4.000000pt;}
.y6e{bottom:8.000000pt;}
.yf2{bottom:8.026667pt;}
.y8e{bottom:8.040000pt;}
.yc4{bottom:10.880000pt;}
.yad{bottom:11.040000pt;}
.y6b{bottom:15.520000pt;}
.y73{bottom:15.680000pt;}
.yf3{bottom:15.706667pt;}
.y77{bottom:15.720000pt;}
.yc6{bottom:18.560000pt;}
.yab{bottom:18.720000pt;}
.y4{bottom:21.440000pt;}
.y6f{bottom:23.200000pt;}
.y84{bottom:23.360000pt;}
.yf6{bottom:23.386667pt;}
.y76{bottom:23.400000pt;}
.yca{bottom:26.240000pt;}
.y75{bottom:28.320000pt;}
.y8d{bottom:28.360000pt;}
.yc5{bottom:33.920000pt;}
.yb6{bottom:34.080000pt;}
.y72{bottom:36.000000pt;}
.y8b{bottom:36.040000pt;}
.ye3{bottom:43.520000pt;}
.y83{bottom:43.674667pt;}
.y74{bottom:43.680000pt;}
.y8c{bottom:43.720000pt;}
.yde{bottom:52.800000pt;}
.y7f{bottom:53.120000pt;}
.ya8{bottom:64.320000pt;}
.ydd{bottom:67.680000pt;}
.y9a{bottom:68.960000pt;}
.y80{bottom:68.992000pt;}
.y6d{bottom:69.000000pt;}
.yf5{bottom:69.120000pt;}
.yc9{bottom:72.000000pt;}
.y44{bottom:72.160000pt;}
.y10f{bottom:74.720000pt;}
.yb5{bottom:75.040000pt;}
.yb1{bottom:80.000000pt;}
.ydc{bottom:83.360000pt;}
.y43{bottom:87.552000pt;}
.y10e{bottom:90.112000pt;}
.y82{bottom:93.792000pt;}
.yb0{bottom:95.392000pt;}
.ydb{bottom:98.752000pt;}
.y42{bottom:102.912000pt;}
.y10d{bottom:105.472000pt;}
.yaf{bottom:110.432000pt;}
.yda{bottom:113.792000pt;}
.y41{bottom:117.952000pt;}
.y10c{bottom:120.832000pt;}
.yae{bottom:126.112000pt;}
.yd9{bottom:129.472000pt;}
.y40{bottom:133.626667pt;}
.y81{bottom:134.586667pt;}
.y10b{bottom:136.026667pt;}
.ya7{bottom:138.746667pt;}
.yd6{bottom:142.106667pt;}
.y3f{bottom:148.826667pt;}
.y10a{bottom:151.066667pt;}
.y3e{bottom:164.186667pt;}
.y109{bottom:166.746667pt;}
.yaa{bottom:170.106667pt;}
.y7e{bottom:175.226667pt;}
.y3d{bottom:179.546667pt;}
.y108{bottom:182.106667pt;}
.yd8{bottom:182.746667pt;}
.y3c{bottom:194.906667pt;}
.y107{bottom:197.466667pt;}
.y3b{bottom:210.266667pt;}
.ya9{bottom:210.746667pt;}
.y106{bottom:212.666667pt;}
.y7d{bottom:219.226667pt;}
.yd7{bottom:223.386667pt;}
.y3a{bottom:225.626667pt;}
.y105{bottom:228.026667pt;}
.y7c{bottom:234.586667pt;}
.y39{bottom:240.826667pt;}
.y104{bottom:243.386667pt;}
.y7b{bottom:249.786667pt;}
.ya6{bottom:251.386667pt;}
.y38{bottom:256.186667pt;}
.y103{bottom:258.746667pt;}
.yd5{bottom:264.026667pt;}
.y7a{bottom:265.146667pt;}
.y37{bottom:271.546667pt;}
.y102{bottom:274.106667pt;}
.y79{bottom:280.186667pt;}
.y36{bottom:286.906667pt;}
.y101{bottom:289.466667pt;}
.ya5{bottom:295.386667pt;}
.y78{bottom:295.866667pt;}
.y35{bottom:302.266667pt;}
.y100{bottom:304.346667pt;}
.yd4{bottom:308.026667pt;}
.y6c{bottom:308.506667pt;}
.ya4{bottom:310.746667pt;}
.y34{bottom:317.666667pt;}
.yff{bottom:320.066667pt;}
.yd3{bottom:323.426667pt;}
.ya3{bottom:326.146667pt;}
.y33{bottom:332.866667pt;}
.yfe{bottom:335.426667pt;}
.yd2{bottom:338.786667pt;}
.ya2{bottom:341.506667pt;}
.y32{bottom:348.226667pt;}
.y71{bottom:349.186667pt;}
.yfd{bottom:350.466667pt;}
.yd1{bottom:354.146667pt;}
.ya1{bottom:356.386667pt;}
.y31{bottom:363.586667pt;}
.yfc{bottom:366.146667pt;}
.yd0{bottom:369.186667pt;}
.ya0{bottom:372.066667pt;}
.y30{bottom:378.946667pt;}
.yfb{bottom:381.506667pt;}
.ycf{bottom:384.706667pt;}
.y9f{bottom:387.426667pt;}
.y70{bottom:389.826667pt;}
.y2f{bottom:394.306667pt;}
.yfa{bottom:396.386667pt;}
.yce{bottom:400.066667pt;}
.y9e{bottom:402.466667pt;}
.y2e{bottom:409.666667pt;}
.yf9{bottom:412.066667pt;}
.ycd{bottom:415.106667pt;}
.y9d{bottom:418.146667pt;}
.yf4{bottom:424.706667pt;}
.y2d{bottom:424.866667pt;}
.y6a{bottom:430.626667pt;}
.y99{bottom:430.786667pt;}
.y2c{bottom:440.226667pt;}
.yc8{bottom:443.426667pt;}
.y2b{bottom:455.586667pt;}
.yf8{bottom:465.506667pt;}
.y2a{bottom:470.946667pt;}
.y9c{bottom:471.426667pt;}
.y69{bottom:474.626667pt;}
.ycc{bottom:484.066667pt;}
.y29{bottom:486.306667pt;}
.y68{bottom:489.826667pt;}
.y28{bottom:501.506667pt;}
.y67{bottom:504.866667pt;}
.yf7{bottom:506.146667pt;}
.y9b{bottom:512.066667pt;}
.y27{bottom:516.866667pt;}
.y66{bottom:520.546667pt;}
.ycb{bottom:524.706667pt;}
.y26{bottom:532.226667pt;}
.y65{bottom:535.906667pt;}
.yf1{bottom:546.786667pt;}
.y25{bottom:547.613333pt;}
.y64{bottom:551.293333pt;}
.y98{bottom:552.733333pt;}
.y24{bottom:562.973333pt;}
.yc3{bottom:565.533333pt;}
.y63{bottom:567.453333pt;}
.y23{bottom:578.333333pt;}
.y62{bottom:582.813333pt;}
.yf0{bottom:590.813333pt;}
.y22{bottom:593.533333pt;}
.y97{bottom:596.733333pt;}
.y61{bottom:599.133333pt;}
.yef{bottom:606.173333pt;}
.y21{bottom:608.893333pt;}
.y96{bottom:612.093333pt;}
.y60{bottom:615.453333pt;}
.yee{bottom:621.533333pt;}
.y20{bottom:624.253333pt;}
.y95{bottom:627.453333pt;}
.y5f{bottom:630.813333pt;}
.yed{bottom:636.733333pt;}
.y1f{bottom:639.613333pt;}
.y94{bottom:642.813333pt;}
.y5e{bottom:645.853333pt;}
.yc2{bottom:646.173333pt;}
.yec{bottom:651.773333pt;}
.y1e{bottom:654.973333pt;}
.y93{bottom:657.853333pt;}
.y5d{bottom:661.373333pt;}
.yc1{bottom:661.533333pt;}
.yeb{bottom:667.453333pt;}
.y1d{bottom:670.333333pt;}
.y92{bottom:673.373333pt;}
.yc0{bottom:676.413333pt;}
.y5c{bottom:677.693333pt;}
.yea{bottom:682.813333pt;}
.y1c{bottom:685.213333pt;}
.y91{bottom:688.733333pt;}
.ybf{bottom:692.093333pt;}
.y5b{bottom:694.013333pt;}
.ye9{bottom:698.173333pt;}
.y1b{bottom:700.893333pt;}
.y90{bottom:703.773333pt;}
.ybe{bottom:707.453333pt;}
.y5a{bottom:710.333333pt;}
.ye8{bottom:713.053333pt;}
.y1a{bottom:716.253333pt;}
.y8f{bottom:719.453333pt;}
.ybd{bottom:722.493333pt;}
.y59{bottom:725.693333pt;}
.ye7{bottom:728.733333pt;}
.y19{bottom:731.613333pt;}
.y88{bottom:732.093333pt;}
.ybc{bottom:738.173333pt;}
.y58{bottom:740.573333pt;}
.ye6{bottom:744.093333pt;}
.y18{bottom:746.973333pt;}
.ybb{bottom:753.373333pt;}
.y57{bottom:756.253333pt;}
.ye5{bottom:759.133333pt;}
.y17{bottom:762.333333pt;}
.yba{bottom:768.413333pt;}
.y56{bottom:772.573333pt;}
.y8a{bottom:772.733333pt;}
.ye4{bottom:774.813333pt;}
.y16{bottom:777.573333pt;}
.yb9{bottom:784.133333pt;}
.ye0{bottom:787.493333pt;}
.y55{bottom:788.933333pt;}
.y15{bottom:792.933333pt;}
.yb4{bottom:796.773333pt;}
.y54{bottom:805.253333pt;}
.y14{bottom:807.973333pt;}
.y89{bottom:813.413333pt;}
.y53{bottom:821.413333pt;}
.y13{bottom:825.093333pt;}
.ye2{bottom:834.213333pt;}
.y52{bottom:836.773333pt;}
.y12{bottom:840.933333pt;}
.yb8{bottom:843.493333pt;}
.y51{bottom:851.813333pt;}
.y87{bottom:854.213333pt;}
.y11{bottom:856.293333pt;}
.y50{bottom:867.493333pt;}
.y10{bottom:871.653333pt;}
.ye1{bottom:874.853333pt;}
.y4f{bottom:882.533333pt;}
.yb7{bottom:884.133333pt;}
.yf{bottom:887.013333pt;}
.y4e{bottom:898.213333pt;}
.ye{bottom:902.213333pt;}
.y4d{bottom:913.413333pt;}
.ydf{bottom:915.493333pt;}
.yd{bottom:917.573333pt;}
.yb3{bottom:924.773333pt;}
.y4c{bottom:928.773333pt;}
.yc{bottom:935.013333pt;}
.y4b{bottom:944.133333pt;}
.yb{bottom:950.213333pt;}
.y4a{bottom:959.493333pt;}
.ya{bottom:965.573333pt;}
.y86{bottom:974.533333pt;}
.y49{bottom:974.853333pt;}
.y9{bottom:980.933333pt;}
.y48{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.y47{bottom:1005.413333pt;}
.y7{bottom:1015.040000pt;}
.y85{bottom:1020.480000pt;}
.y46{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.yb2{bottom:1035.840000pt;}
.y45{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h11{height:30.720000pt;}
.h9{height:40.000000pt;}
.hc{height:40.032000pt;}
.h14{height:45.920000pt;}
.h12{height:46.080000pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h7{height:57.787500pt;}
.h4{height:58.563750pt;}
.h3{height:64.500000pt;}
.hb{height:80.640000pt;}
.he{height:80.672000pt;}
.hd{height:80.800000pt;}
.h10{height:152.640000pt;}
.h16{height:161.920000pt;}
.hf{height:161.946667pt;}
.ha{height:162.106667pt;}
.h17{height:168.000000pt;}
.h15{height:168.026667pt;}
.h13{height:174.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:28.672000pt;}
.wa{width:60.640000pt;}
.w9{width:60.672000pt;}
.w2{width:60.800000pt;}
.w4{width:60.960000pt;}
.w3{width:60.992000pt;}
.w5{width:61.120000pt;}
.w7{width:121.952000pt;}
.w8{width:122.112000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:1.600000pt;}
.x24{left:4.160000pt;}
.x22{left:5.280000pt;}
.xf{left:7.200000pt;}
.x20{left:8.480000pt;}
.x23{left:9.760000pt;}
.x15{left:14.240000pt;}
.x1b{left:17.600000pt;}
.x12{left:19.520000pt;}
.x1f{left:20.960000pt;}
.x1d{left:22.080000pt;}
.x18{left:30.560000pt;}
.x1e{left:31.680000pt;}
.x5{left:48.000000pt;}
.x1c{left:49.160000pt;}
.xd{left:72.000000pt;}
.xc{left:96.032000pt;}
.xe{left:137.146667pt;}
.x9{left:176.826667pt;}
.x10{left:198.266667pt;}
.x6{left:203.226667pt;}
.x3{left:228.186667pt;}
.x2{left:238.906667pt;}
.x11{left:259.586667pt;}
.x1{left:271.106667pt;}
.x13{left:320.866667pt;}
.xb{left:323.906667pt;}
.x8{left:336.546667pt;}
.x7{left:356.546667pt;}
.xa{left:360.386667pt;}
.x14{left:382.626667pt;}
.x16{left:411.613333pt;}
.x17{left:472.893333pt;}
.x19{left:534.333333pt;}
.x1a{left:595.653333pt;}
.x4{left:721.893333pt;}
}




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