
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_3e0794f40c41cd6beea5a65c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ee1dfbe35478ffe064d631cf.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_403e39f96b83f52cb44e77f9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_b30eb2d7e7efd866540b7911.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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:ff8;src:url('chunks/assets/font_436eab73a76ee026c9329ace.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e53e0052044b3616734f3e6b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8efcc8c6c5b532b4eb030c2b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5bab7a4accac7ccbc3727ff4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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:ffc;src:url('chunks/assets/font_6e3c3bda83a0c53f13be01b5.woff')format("woff");}.ffc{font-family:ffc;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);}
.v1{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.728000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.630000px;}
.ls5{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.313800px;}
.ls4{letter-spacing:-0.089400px;}
.ls7{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.080000px;}
.lsc{letter-spacing:46.546560px;}
.lsb{letter-spacing:69.586560px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.120000px;}
.ws5{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.366200px;}
.ws7{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._14{margin-left:-3.301920px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._f{width:4.433280px;}
._5{width:5.720640px;}
._c{width:7.266240px;}
._b{width:8.517600px;}
._13{width:10.281600px;}
._11{width:11.672640px;}
._12{width:13.474080px;}
._6{width:17.026560px;}
._a{width:18.262080px;}
._16{width:19.416960px;}
._15{width:21.237120px;}
._e{width:22.746240px;}
._d{width:24.462720px;}
._9{width:26.236800px;}
._7{width:27.400320px;}
._8{width:28.457280px;}
._10{width:200.880000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsa{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:2.515500px;}
.y42{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y5b{bottom:5.370000px;}
.y2{bottom:10.080000px;}
.y4b{bottom:10.435500px;}
.y58{bottom:15.475500px;}
.y41{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.y57{bottom:30.991500px;}
.y40{bottom:38.520000px;}
.y4a{bottom:39.994500px;}
.y3{bottom:47.880000px;}
.y56{bottom:48.634500px;}
.y49{bottom:51.874500px;}
.y3f{bottom:55.440000px;}
.y7{bottom:57.636000px;}
.y55{bottom:64.474500px;}
.y48{bottom:65.194500px;}
.y3e{bottom:73.080000px;}
.y47{bottom:78.154500px;}
.y54{bottom:79.954500px;}
.y3d{bottom:90.000000px;}
.y53{bottom:92.914500px;}
.y59{bottom:96.156000px;}
.y94{bottom:96.876000px;}
.y52{bottom:99.034500px;}
.y46{bottom:99.754500px;}
.ya5{bottom:106.596000px;}
.y3c{bottom:107.325000px;}
.y43{bottom:110.920500px;}
.y93{bottom:114.156000px;}
.y51{bottom:114.874500px;}
.y3b{bottom:124.245000px;}
.y50{bottom:130.354500px;}
.y92{bottom:131.076000px;}
.ya4{bottom:133.236000px;}
.y3a{bottom:141.525000px;}
.y4f{bottom:145.834500px;}
.y91{bottom:148.752000px;}
.ya3{bottom:150.555000px;}
.y4e{bottom:161.314500px;}
.y45{bottom:162.034500px;}
.y90{bottom:166.035000px;}
.ya2{bottom:167.835000px;}
.y39{bottom:168.165000px;}
.y44{bottom:172.864500px;}
.y4d{bottom:176.824500px;}
.y8f{bottom:182.955000px;}
.ya1{bottom:184.755000px;}
.y38{bottom:185.445000px;}
.y8e{bottom:200.595000px;}
.y37{bottom:202.725000px;}
.ya0{bottom:211.395000px;}
.y8d{bottom:217.515000px;}
.y36{bottom:220.005000px;}
.y9f{bottom:228.675000px;}
.y8c{bottom:234.795000px;}
.y35{bottom:237.315000px;}
.y9e{bottom:245.235000px;}
.y8b{bottom:251.715000px;}
.y34{bottom:254.235000px;}
.y9d{bottom:262.515000px;}
.y8a{bottom:269.355000px;}
.y33{bottom:280.875000px;}
.y89{bottom:286.665000px;}
.y9c{bottom:289.185000px;}
.y32{bottom:297.795000px;}
.y88{bottom:303.585000px;}
.y9b{bottom:306.465000px;}
.ye{bottom:313.305000px;}
.y31{bottom:315.075000px;}
.y87{bottom:321.225000px;}
.y1d{bottom:321.555000px;}
.y9a{bottom:323.385000px;}
.y30{bottom:332.355000px;}
.y99{bottom:337.425000px;}
.y86{bottom:338.505000px;}
.y1c{bottom:345.675000px;}
.y2f{bottom:349.635000px;}
.y85{bottom:355.785000px;}
.y2e{bottom:366.945000px;}
.y1b{bottom:369.825000px;}
.y84{bottom:372.705000px;}
.y2d{bottom:384.225000px;}
.y83{bottom:389.985000px;}
.y1a{bottom:394.305000px;}
.y2c{bottom:401.505000px;}
.y82{bottom:416.670000px;}
.y19{bottom:418.425000px;}
.y2b{bottom:418.785000px;}
.y81{bottom:433.590000px;}
.y2a{bottom:435.705000px;}
.y18{bottom:442.545000px;}
.y80{bottom:450.510000px;}
.y29{bottom:461.625000px;}
.y17{bottom:466.665000px;}
.y7f{bottom:468.150000px;}
.y28{bottom:477.105000px;}
.y7e{bottom:485.430000px;}
.y16{bottom:490.830000px;}
.y27{bottom:492.630000px;}
.y7d{bottom:502.710000px;}
.y26{bottom:508.110000px;}
.y15{bottom:514.950000px;}
.y25{bottom:523.590000px;}
.y7c{bottom:528.630000px;}
.y14{bottom:539.070000px;}
.y24{bottom:539.430000px;}
.y7b{bottom:546.300000px;}
.y23{bottom:554.910000px;}
.yc0{bottom:562.500000px;}
.y13{bottom:563.190000px;}
.y7a{bottom:563.580000px;}
.y22{bottom:570.390000px;}
.ybf{bottom:580.140000px;}
.y79{bottom:580.500000px;}
.y21{bottom:585.870000px;}
.y12{bottom:587.310000px;}
.ybe{bottom:597.420000px;}
.y78{bottom:598.140000px;}
.y20{bottom:601.350000px;}
.y11{bottom:611.430000px;}
.ybd{bottom:614.340000px;}
.y77{bottom:615.420000px;}
.y1f{bottom:616.830000px;}
.ybc{bottom:631.620000px;}
.y76{bottom:632.340000px;}
.y10{bottom:635.580000px;}
.y1e{bottom:647.460000px;}
.ybb{bottom:648.540000px;}
.y75{bottom:649.260000px;}
.yf{bottom:659.700000px;}
.y74{bottom:666.900000px;}
.yba{bottom:675.210000px;}
.y73{bottom:684.210000px;}
.yb9{bottom:692.490000px;}
.y72{bottom:701.130000px;}
.yb8{bottom:709.770000px;}
.y71{bottom:718.770000px;}
.yb7{bottom:727.050000px;}
.y70{bottom:736.050000px;}
.yb6{bottom:744.330000px;}
.y6f{bottom:753.330000px;}
.yb5{bottom:761.610000px;}
.y6e{bottom:770.250000px;}
.yb4{bottom:778.890000px;}
.y6d{bottom:787.890000px;}
.yb3{bottom:796.170000px;}
.y6c{bottom:805.215000px;}
.yb2{bottom:813.495000px;}
.y6b{bottom:822.495000px;}
.yb1{bottom:830.415000px;}
.y6a{bottom:839.055000px;}
.yb0{bottom:847.695000px;}
.y69{bottom:856.335000px;}
.yaf{bottom:864.975000px;}
.yae{bottom:881.895000px;}
.y68{bottom:882.975000px;}
.y67{bottom:900.255000px;}
.yad{bottom:908.535000px;}
.y66{bottom:917.175000px;}
.yac{bottom:925.815000px;}
.y65{bottom:934.845000px;}
.yab{bottom:943.125000px;}
.y64{bottom:952.125000px;}
.yaa{bottom:960.405000px;}
.y63{bottom:969.045000px;}
.ya9{bottom:977.685000px;}
.yd{bottom:985.245000px;}
.y62{bottom:986.685000px;}
.yc{bottom:990.645000px;}
.y98{bottom:994.605000px;}
.ya8{bottom:994.965000px;}
.y61{bottom:1003.965000px;}
.yb{bottom:1007.925000px;}
.ya7{bottom:1012.245000px;}
.y60{bottom:1021.245000px;}
.ya{bottom:1024.845000px;}
.ya6{bottom:1028.805000px;}
.y5f{bottom:1037.805000px;}
.y97{bottom:1038.165000px;}
.y9{bottom:1044.285000px;}
.y5e{bottom:1055.445000px;}
.y8{bottom:1072.050000px;}
.y96{bottom:1072.410000px;}
.y5d{bottom:1072.770000px;}
.y5a{bottom:1075.320000px;}
.y5c{bottom:1089.690000px;}
.y95{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h13{height:5.650313px;}
.h16{height:27.720000px;}
.h11{height:29.678906px;}
.h10{height:35.332031px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.h14{height:45.101250px;}
.hd{height:53.677969px;}
.h12{height:55.147500px;}
.h7{height:58.050000px;}
.h15{height:59.328281px;}
.h6{height:59.357813px;}
.he{height:60.155156px;}
.h9{height:60.952500px;}
.h18{height:62.163910px;}
.h17{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.hf{height:201.645000px;}
.ha{height:669.045000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.876000px;}
.x1a{left:8.295000px;}
.x4{left:13.305000px;}
.x15{left:14.386500px;}
.x18{left:16.186500px;}
.x1c{left:18.346500px;}
.x17{left:19.426500px;}
.x16{left:26.266500px;}
.x6{left:28.785000px;}
.xf{left:43.906500px;}
.x1d{left:47.542500px;}
.x10{left:50.782500px;}
.x14{left:53.302500px;}
.xe{left:55.102500px;}
.x1f{left:57.262500px;}
.x1e{left:66.265500px;}
.x1{left:78.529500px;}
.x13{left:83.905500px;}
.x7{left:86.436000px;}
.x23{left:91.836000px;}
.x12{left:92.905500px;}
.x2{left:95.425500px;}
.x20{left:102.985500px;}
.x1b{left:106.945500px;}
.x24{left:118.836000px;}
.x11{left:124.585500px;}
.x5{left:141.540000px;}
.x3{left:182.250000px;}
.x19{left:218.970000px;}
.xb{left:234.105000px;}
.xc{left:605.415000px;}
.xa{left:691.845000px;}
.x22{left:755.250000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.536000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.560000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.278933pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.960000pt;}
.lsc{letter-spacing:41.374720pt;}
.lsb{letter-spacing:61.854720pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.881067pt;}
.ws7{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._14{margin-left:-2.935040pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._f{width:3.940693pt;}
._5{width:5.085013pt;}
._c{width:6.458880pt;}
._b{width:7.571200pt;}
._13{width:9.139200pt;}
._11{width:10.375680pt;}
._12{width:11.976960pt;}
._6{width:15.134720pt;}
._a{width:16.232960pt;}
._16{width:17.259520pt;}
._15{width:18.877440pt;}
._e{width:20.218880pt;}
._d{width:21.744640pt;}
._9{width:23.321600pt;}
._7{width:24.355840pt;}
._8{width:25.295360pt;}
._10{width:178.560000pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsa{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.236000pt;}
.y42{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y5b{bottom:4.773333pt;}
.y2{bottom:8.960000pt;}
.y4b{bottom:9.276000pt;}
.y58{bottom:13.756000pt;}
.y41{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.y57{bottom:27.548000pt;}
.y40{bottom:34.240000pt;}
.y4a{bottom:35.550667pt;}
.y3{bottom:42.560000pt;}
.y56{bottom:43.230667pt;}
.y49{bottom:46.110667pt;}
.y3f{bottom:49.280000pt;}
.y7{bottom:51.232000pt;}
.y55{bottom:57.310667pt;}
.y48{bottom:57.950667pt;}
.y3e{bottom:64.960000pt;}
.y47{bottom:69.470667pt;}
.y54{bottom:71.070667pt;}
.y3d{bottom:80.000000pt;}
.y53{bottom:82.590667pt;}
.y59{bottom:85.472000pt;}
.y94{bottom:86.112000pt;}
.y52{bottom:88.030667pt;}
.y46{bottom:88.670667pt;}
.ya5{bottom:94.752000pt;}
.y3c{bottom:95.400000pt;}
.y43{bottom:98.596000pt;}
.y93{bottom:101.472000pt;}
.y51{bottom:102.110667pt;}
.y3b{bottom:110.440000pt;}
.y50{bottom:115.870667pt;}
.y92{bottom:116.512000pt;}
.ya4{bottom:118.432000pt;}
.y3a{bottom:125.800000pt;}
.y4f{bottom:129.630667pt;}
.y91{bottom:132.224000pt;}
.ya3{bottom:133.826667pt;}
.y4e{bottom:143.390667pt;}
.y45{bottom:144.030667pt;}
.y90{bottom:147.586667pt;}
.ya2{bottom:149.186667pt;}
.y39{bottom:149.480000pt;}
.y44{bottom:153.657333pt;}
.y4d{bottom:157.177333pt;}
.y8f{bottom:162.626667pt;}
.ya1{bottom:164.226667pt;}
.y38{bottom:164.840000pt;}
.y8e{bottom:178.306667pt;}
.y37{bottom:180.200000pt;}
.ya0{bottom:187.906667pt;}
.y8d{bottom:193.346667pt;}
.y36{bottom:195.560000pt;}
.y9f{bottom:203.266667pt;}
.y8c{bottom:208.706667pt;}
.y35{bottom:210.946667pt;}
.y9e{bottom:217.986667pt;}
.y8b{bottom:223.746667pt;}
.y34{bottom:225.986667pt;}
.y9d{bottom:233.346667pt;}
.y8a{bottom:239.426667pt;}
.y33{bottom:249.666667pt;}
.y89{bottom:254.813333pt;}
.y9c{bottom:257.053333pt;}
.y32{bottom:264.706667pt;}
.y88{bottom:269.853333pt;}
.y9b{bottom:272.413333pt;}
.ye{bottom:278.493333pt;}
.y31{bottom:280.066667pt;}
.y87{bottom:285.533333pt;}
.y1d{bottom:285.826667pt;}
.y9a{bottom:287.453333pt;}
.y30{bottom:295.426667pt;}
.y99{bottom:299.933333pt;}
.y86{bottom:300.893333pt;}
.y1c{bottom:307.266667pt;}
.y2f{bottom:310.786667pt;}
.y85{bottom:316.253333pt;}
.y2e{bottom:326.173333pt;}
.y1b{bottom:328.733333pt;}
.y84{bottom:331.293333pt;}
.y2d{bottom:341.533333pt;}
.y83{bottom:346.653333pt;}
.y1a{bottom:350.493333pt;}
.y2c{bottom:356.893333pt;}
.y82{bottom:370.373333pt;}
.y19{bottom:371.933333pt;}
.y2b{bottom:372.253333pt;}
.y81{bottom:385.413333pt;}
.y2a{bottom:387.293333pt;}
.y18{bottom:393.373333pt;}
.y80{bottom:400.453333pt;}
.y29{bottom:410.333333pt;}
.y17{bottom:414.813333pt;}
.y7f{bottom:416.133333pt;}
.y28{bottom:424.093333pt;}
.y7e{bottom:431.493333pt;}
.y16{bottom:436.293333pt;}
.y27{bottom:437.893333pt;}
.y7d{bottom:446.853333pt;}
.y26{bottom:451.653333pt;}
.y15{bottom:457.733333pt;}
.y25{bottom:465.413333pt;}
.y7c{bottom:469.893333pt;}
.y14{bottom:479.173333pt;}
.y24{bottom:479.493333pt;}
.y7b{bottom:485.600000pt;}
.y23{bottom:493.253333pt;}
.yc0{bottom:500.000000pt;}
.y13{bottom:500.613333pt;}
.y7a{bottom:500.960000pt;}
.y22{bottom:507.013333pt;}
.ybf{bottom:515.680000pt;}
.y79{bottom:516.000000pt;}
.y21{bottom:520.773333pt;}
.y12{bottom:522.053333pt;}
.ybe{bottom:531.040000pt;}
.y78{bottom:531.680000pt;}
.y20{bottom:534.533333pt;}
.y11{bottom:543.493333pt;}
.ybd{bottom:546.080000pt;}
.y77{bottom:547.040000pt;}
.y1f{bottom:548.293333pt;}
.ybc{bottom:561.440000pt;}
.y76{bottom:562.080000pt;}
.y10{bottom:564.960000pt;}
.y1e{bottom:575.520000pt;}
.ybb{bottom:576.480000pt;}
.y75{bottom:577.120000pt;}
.yf{bottom:586.400000pt;}
.y74{bottom:592.800000pt;}
.yba{bottom:600.186667pt;}
.y73{bottom:608.186667pt;}
.yb9{bottom:615.546667pt;}
.y72{bottom:623.226667pt;}
.yb8{bottom:630.906667pt;}
.y71{bottom:638.906667pt;}
.yb7{bottom:646.266667pt;}
.y70{bottom:654.266667pt;}
.yb6{bottom:661.626667pt;}
.y6f{bottom:669.626667pt;}
.yb5{bottom:676.986667pt;}
.y6e{bottom:684.666667pt;}
.yb4{bottom:692.346667pt;}
.y6d{bottom:700.346667pt;}
.yb3{bottom:707.706667pt;}
.y6c{bottom:715.746667pt;}
.yb2{bottom:723.106667pt;}
.y6b{bottom:731.106667pt;}
.yb1{bottom:738.146667pt;}
.y6a{bottom:745.826667pt;}
.yb0{bottom:753.506667pt;}
.y69{bottom:761.186667pt;}
.yaf{bottom:768.866667pt;}
.yae{bottom:783.906667pt;}
.y68{bottom:784.866667pt;}
.y67{bottom:800.226667pt;}
.yad{bottom:807.586667pt;}
.y66{bottom:815.266667pt;}
.yac{bottom:822.946667pt;}
.y65{bottom:830.973333pt;}
.yab{bottom:838.333333pt;}
.y64{bottom:846.333333pt;}
.yaa{bottom:853.693333pt;}
.y63{bottom:861.373333pt;}
.ya9{bottom:869.053333pt;}
.yd{bottom:875.773333pt;}
.y62{bottom:877.053333pt;}
.yc{bottom:880.573333pt;}
.y98{bottom:884.093333pt;}
.ya8{bottom:884.413333pt;}
.y61{bottom:892.413333pt;}
.yb{bottom:895.933333pt;}
.ya7{bottom:899.773333pt;}
.y60{bottom:907.773333pt;}
.ya{bottom:910.973333pt;}
.ya6{bottom:914.493333pt;}
.y5f{bottom:922.493333pt;}
.y97{bottom:922.813333pt;}
.y9{bottom:928.253333pt;}
.y5e{bottom:938.173333pt;}
.y8{bottom:952.933333pt;}
.y96{bottom:953.253333pt;}
.y5d{bottom:953.573333pt;}
.y5a{bottom:955.840000pt;}
.y5c{bottom:968.613333pt;}
.y95{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h13{height:5.022500pt;}
.h16{height:24.640000pt;}
.h11{height:26.381250pt;}
.h10{height:31.406250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.h14{height:40.090000pt;}
.hd{height:47.713750pt;}
.h12{height:49.020000pt;}
.h7{height:51.600000pt;}
.h15{height:52.736250pt;}
.h6{height:52.762500pt;}
.he{height:53.471250pt;}
.h9{height:54.180000pt;}
.h18{height:55.256809pt;}
.h17{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.hf{height:179.240000pt;}
.ha{height:594.706667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.112000pt;}
.x1a{left:7.373333pt;}
.x4{left:11.826667pt;}
.x15{left:12.788000pt;}
.x18{left:14.388000pt;}
.x1c{left:16.308000pt;}
.x17{left:17.268000pt;}
.x16{left:23.348000pt;}
.x6{left:25.586667pt;}
.xf{left:39.028000pt;}
.x1d{left:42.260000pt;}
.x10{left:45.140000pt;}
.x14{left:47.380000pt;}
.xe{left:48.980000pt;}
.x1f{left:50.900000pt;}
.x1e{left:58.902667pt;}
.x1{left:69.804000pt;}
.x13{left:74.582667pt;}
.x7{left:76.832000pt;}
.x23{left:81.632000pt;}
.x12{left:82.582667pt;}
.x2{left:84.822667pt;}
.x20{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x24{left:105.632000pt;}
.x11{left:110.742667pt;}
.x5{left:125.813333pt;}
.x3{left:162.000000pt;}
.x19{left:194.640000pt;}
.xb{left:208.093333pt;}
.xc{left:538.146667pt;}
.xa{left:614.973333pt;}
.x22{left:671.333333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xd{left:717.413333pt;}
}




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