
    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_36222bdca510b35a6f67d3c2.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_a3011527098b129992df7be3.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_7cb660459d608fc363800f18.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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7a474783ecbd54bf6ea209b8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0e837d21852c2cc7d8448596.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_1a3c1abf45171f4a71c67e55.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_16d417b76ff964b9fcd93573.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_30cb06ee98274992b6b08ff9.woff')format("woff");}.ffb{font-family:ffb;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:-77.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls4{letter-spacing:-1.728000px;}
.ls12{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.630000px;}
.ls10{letter-spacing:-0.466800px;}
.ls7{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.493920px;}
.ls11{letter-spacing:0.714000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.350000px;}
.lsd{letter-spacing:2.160000px;}
.lsf{letter-spacing:3.600000px;}
.lse{letter-spacing:16.306560px;}
.lsc{letter-spacing:46.546560px;}
.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;}
}
.ws6{word-spacing:-54.720000px;}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.606600px;}
.ws1{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.653200px;}
.ws8{word-spacing:-13.050000px;}
.ws5{word-spacing:-11.790000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.434000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._10{margin-left:-3.479040px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._7{width:4.979520px;}
._6{width:6.661440px;}
._8{width:7.989120px;}
._f{width:9.031680px;}
._c{width:10.808640px;}
._9{width:11.969280px;}
._18{width:12.994560px;}
._d{width:15.540480px;}
._e{width:16.565760px;}
._11{width:18.509760px;}
._12{width:20.050560px;}
._a{width:24.186240px;}
._b{width:25.963200px;}
._1a{width:41.912640px;}
._19{width:43.099200px;}
._1b{width:44.421120px;}
._14{width:63.895680px;}
._5{width:133.669920px;}
._15{width:138.830400px;}
._17{width:140.544000px;}
._13{width:152.712000px;}
._16{width:185.904000px;}
.fc4{color:rgb(255,0,0);}
.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;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.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;}
.fsb{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;}
.y62{bottom:4.680000px;}
.y6c{bottom:5.025000px;}
.y65{bottom:5.040000px;}
.y5b{bottom:5.370000px;}
.y6e{bottom:5.385000px;}
.y63{bottom:5.400000px;}
.y2{bottom:10.080000px;}
.y4b{bottom:10.435500px;}
.y58{bottom:14.395500px;}
.y41{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.y6b{bottom:23.745000px;}
.y71{bottom:24.105000px;}
.y60{bottom:24.120000px;}
.y57{bottom:31.714500px;}
.y40{bottom:38.520000px;}
.y4a{bottom:39.994500px;}
.y3{bottom:47.880000px;}
.y56{bottom:50.074500px;}
.y49{bottom:51.874500px;}
.y3f{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y48{bottom:64.834500px;}
.y55{bottom:65.914500px;}
.y3e{bottom:72.360000px;}
.y47{bottom:78.154500px;}
.y54{bottom:81.754500px;}
.y53{bottom:94.354500px;}
.y94{bottom:97.596000px;}
.y3d{bottom:99.045000px;}
.y46{bottom:99.754500px;}
.y52{bottom:100.834500px;}
.y59{bottom:104.796000px;}
.y93{bottom:114.876000px;}
.y3c{bottom:116.325000px;}
.y51{bottom:116.674500px;}
.y43{bottom:119.560500px;}
.y50{bottom:132.154500px;}
.y92{bottom:132.156000px;}
.y3b{bottom:133.605000px;}
.y4f{bottom:147.634500px;}
.y91{bottom:149.472000px;}
.y3a{bottom:150.525000px;}
.y45{bottom:162.064500px;}
.y4e{bottom:163.144500px;}
.y90{bottom:166.755000px;}
.y44{bottom:172.864500px;}
.y39{bottom:177.165000px;}
.y4d{bottom:178.264500px;}
.y8f{bottom:184.035000px;}
.y38{bottom:194.445000px;}
.y8e{bottom:201.315000px;}
.y37{bottom:211.365000px;}
.y8d{bottom:218.595000px;}
.y8c{bottom:235.875000px;}
.y36{bottom:238.035000px;}
.y8b{bottom:252.795000px;}
.y35{bottom:255.315000px;}
.y8a{bottom:270.075000px;}
.y34{bottom:272.595000px;}
.y89{bottom:287.385000px;}
.y33{bottom:289.875000px;}
.y88{bottom:304.665000px;}
.y32{bottom:306.795000px;}
.y1c{bottom:312.915000px;}
.yd{bottom:321.945000px;}
.y31{bottom:324.075000px;}
.y1b{bottom:337.035000px;}
.y87{bottom:339.225000px;}
.y30{bottom:341.355000px;}
.y86{bottom:356.505000px;}
.y2f{bottom:358.305000px;}
.y1a{bottom:361.185000px;}
.y85{bottom:373.785000px;}
.y2e{bottom:384.225000px;}
.y19{bottom:385.665000px;}
.y84{bottom:391.065000px;}
.y2d{bottom:399.705000px;}
.y83{bottom:408.390000px;}
.y18{bottom:409.785000px;}
.y2c{bottom:415.545000px;}
.y82{bottom:425.670000px;}
.y2b{bottom:431.025000px;}
.y17{bottom:433.905000px;}
.y81{bottom:442.950000px;}
.y2a{bottom:446.505000px;}
.y16{bottom:458.025000px;}
.y80{bottom:459.870000px;}
.y29{bottom:461.985000px;}
.y7f{bottom:476.790000px;}
.y28{bottom:477.465000px;}
.y15{bottom:482.190000px;}
.y27{bottom:492.990000px;}
.y7e{bottom:503.430000px;}
.y14{bottom:506.310000px;}
.y26{bottom:508.470000px;}
.y7d{bottom:520.710000px;}
.y25{bottom:523.950000px;}
.y13{bottom:530.430000px;}
.y7c{bottom:538.020000px;}
.y24{bottom:539.790000px;}
.y12{bottom:554.550000px;}
.y23{bottom:555.270000px;}
.y7b{bottom:555.300000px;}
.y22{bottom:570.750000px;}
.y7a{bottom:572.580000px;}
.y11{bottom:578.670000px;}
.y21{bottom:586.230000px;}
.y79{bottom:589.860000px;}
.y20{bottom:601.710000px;}
.y10{bottom:602.790000px;}
.y78{bottom:607.140000px;}
.y1f{bottom:617.220000px;}
.y77{bottom:624.420000px;}
.yf{bottom:626.940000px;}
.y1e{bottom:632.700000px;}
.y76{bottom:641.700000px;}
.y1d{bottom:647.820000px;}
.ye{bottom:651.060000px;}
.y75{bottom:658.620000px;}
.y74{bottom:675.570000px;}
.y73{bottom:698.985000px;}
.y72{bottom:737.145000px;}
.y70{bottom:774.945000px;}
.y6f{bottom:813.150000px;}
.y6d{bottom:850.950000px;}
.y6a{bottom:870.390000px;}
.y69{bottom:912.135000px;}
.y68{bottom:935.565000px;}
.y67{bottom:955.005000px;}
.y66{bottom:974.085000px;}
.yc{bottom:985.245000px;}
.yb{bottom:990.645000px;}
.y64{bottom:993.525000px;}
.ya{bottom:1007.925000px;}
.y5f{bottom:1012.965000px;}
.y61{bottom:1032.405000px;}
.y9{bottom:1044.285000px;}
.y5e{bottom:1055.085000px;}
.y8{bottom:1072.050000px;}
.y5d{bottom:1072.770000px;}
.y5a{bottom:1075.320000px;}
.y5c{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h13{height:5.650313px;}
.h18{height:18.345000px;}
.h19{height:18.705000px;}
.h15{height:27.720000px;}
.h11{height:29.678906px;}
.h10{height:35.332031px;}
.h1b{height:37.065000px;}
.h1a{height:37.425000px;}
.h1c{height:37.461000px;}
.h17{height:37.785000px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.hd{height:53.677969px;}
.h12{height:55.147500px;}
.h7{height:58.050000px;}
.h14{height:59.328281px;}
.h6{height:59.357813px;}
.h9{height:60.952500px;}
.h1d{height:62.163910px;}
.h16{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h1e{height:65.499609px;}
.h1f{height:65.511609px;}
.he{height:65.518594px;}
.h3{height:65.884219px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.hf{height:201.645000px;}
.ha{height:660.405000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:32.745000px;}
.w12{width:39.585000px;}
.wc{width:39.600000px;}
.w13{width:39.622500px;}
.wa{width:39.945000px;}
.wd{width:39.960000px;}
.wf{width:46.461000px;}
.wb{width:46.470000px;}
.we{width:46.476000px;}
.w10{width:46.785000px;}
.w2{width:103.702500px;}
.w14{width:114.120000px;}
.w17{width:114.141000px;}
.w15{width:127.470000px;}
.w16{width:127.512000px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w7{width:168.165000px;}
.w18{width:174.645000px;}
.w9{width:208.485000px;}
.w8{width:215.355000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x18{left:8.295000px;}
.x4{left:13.305000px;}
.x14{left:16.906500px;}
.x1a{left:18.346500px;}
.x16{left:19.426500px;}
.x15{left:23.746500px;}
.x6{left:28.785000px;}
.xe{left:43.906500px;}
.x1b{left:47.542500px;}
.xf{left:50.782500px;}
.xd{left:55.102500px;}
.x13{left:56.182500px;}
.x1d{left:57.262500px;}
.x1c{left:66.265500px;}
.x1{left:78.529500px;}
.x12{left:83.905500px;}
.x7{left:86.436000px;}
.x11{left:92.905500px;}
.x2{left:95.425500px;}
.x2c{left:100.489500px;}
.x1e{left:102.985500px;}
.x19{left:106.945500px;}
.x31{left:113.436000px;}
.x10{left:124.585500px;}
.x5{left:141.540000px;}
.x21{left:149.854500px;}
.x3{left:182.250000px;}
.x17{left:218.970000px;}
.x2d{left:255.705000px;}
.xa{left:311.190000px;}
.x20{left:318.750000px;}
.x2b{left:343.950000px;}
.x23{left:359.430000px;}
.x2e{left:383.910000px;}
.x24{left:406.620000px;}
.x25{left:446.940000px;}
.x26{left:487.620000px;}
.x2f{left:512.145000px;}
.x22{left:534.825000px;}
.xb{left:566.130000px;}
.x27{left:582.030000px;}
.x30{left:627.030000px;}
.x28{left:629.550000px;}
.x29{left:663.030000px;}
.x2a{left:703.725000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xc{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls4{letter-spacing:-1.536000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls10{letter-spacing:-0.414933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.439040pt;}
.ls11{letter-spacing:0.634667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.200000pt;}
.lsd{letter-spacing:1.920000pt;}
.lsf{letter-spacing:3.200000pt;}
.lse{letter-spacing:14.494720pt;}
.lsc{letter-spacing:41.374720pt;}
.ws6{word-spacing:-48.640000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.872533pt;}
.ws1{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.025067pt;}
.ws8{word-spacing:-11.600000pt;}
.ws5{word-spacing:-10.480000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.274667pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._10{margin-left:-3.092480pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._7{width:4.426240pt;}
._6{width:5.921280pt;}
._8{width:7.101440pt;}
._f{width:8.028160pt;}
._c{width:9.607680pt;}
._9{width:10.639360pt;}
._18{width:11.550720pt;}
._d{width:13.813760pt;}
._e{width:14.725120pt;}
._11{width:16.453120pt;}
._12{width:17.822720pt;}
._a{width:21.498880pt;}
._b{width:23.078400pt;}
._1a{width:37.255680pt;}
._19{width:38.310400pt;}
._1b{width:39.485440pt;}
._14{width:56.796160pt;}
._5{width:118.817707pt;}
._15{width:123.404800pt;}
._17{width:124.928000pt;}
._13{width:135.744000pt;}
._16{width:165.248000pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.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;}
.fsb{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;}
.y62{bottom:4.160000pt;}
.y6c{bottom:4.466667pt;}
.y65{bottom:4.480000pt;}
.y5b{bottom:4.773333pt;}
.y6e{bottom:4.786667pt;}
.y63{bottom:4.800000pt;}
.y2{bottom:8.960000pt;}
.y4b{bottom:9.276000pt;}
.y58{bottom:12.796000pt;}
.y41{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.y6b{bottom:21.106667pt;}
.y71{bottom:21.426667pt;}
.y60{bottom:21.440000pt;}
.y57{bottom:28.190667pt;}
.y40{bottom:34.240000pt;}
.y4a{bottom:35.550667pt;}
.y3{bottom:42.560000pt;}
.y56{bottom:44.510667pt;}
.y49{bottom:46.110667pt;}
.y3f{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y48{bottom:57.630667pt;}
.y55{bottom:58.590667pt;}
.y3e{bottom:64.320000pt;}
.y47{bottom:69.470667pt;}
.y54{bottom:72.670667pt;}
.y53{bottom:83.870667pt;}
.y94{bottom:86.752000pt;}
.y3d{bottom:88.040000pt;}
.y46{bottom:88.670667pt;}
.y52{bottom:89.630667pt;}
.y59{bottom:93.152000pt;}
.y93{bottom:102.112000pt;}
.y3c{bottom:103.400000pt;}
.y51{bottom:103.710667pt;}
.y43{bottom:106.276000pt;}
.y50{bottom:117.470667pt;}
.y92{bottom:117.472000pt;}
.y3b{bottom:118.760000pt;}
.y4f{bottom:131.230667pt;}
.y91{bottom:132.864000pt;}
.y3a{bottom:133.800000pt;}
.y45{bottom:144.057333pt;}
.y4e{bottom:145.017333pt;}
.y90{bottom:148.226667pt;}
.y44{bottom:153.657333pt;}
.y39{bottom:157.480000pt;}
.y4d{bottom:158.457333pt;}
.y8f{bottom:163.586667pt;}
.y38{bottom:172.840000pt;}
.y8e{bottom:178.946667pt;}
.y37{bottom:187.880000pt;}
.y8d{bottom:194.306667pt;}
.y8c{bottom:209.666667pt;}
.y36{bottom:211.586667pt;}
.y8b{bottom:224.706667pt;}
.y35{bottom:226.946667pt;}
.y8a{bottom:240.066667pt;}
.y34{bottom:242.306667pt;}
.y89{bottom:255.453333pt;}
.y33{bottom:257.666667pt;}
.y88{bottom:270.813333pt;}
.y32{bottom:272.706667pt;}
.y1c{bottom:278.146667pt;}
.yd{bottom:286.173333pt;}
.y31{bottom:288.066667pt;}
.y1b{bottom:299.586667pt;}
.y87{bottom:301.533333pt;}
.y30{bottom:303.426667pt;}
.y86{bottom:316.893333pt;}
.y2f{bottom:318.493333pt;}
.y1a{bottom:321.053333pt;}
.y85{bottom:332.253333pt;}
.y2e{bottom:341.533333pt;}
.y19{bottom:342.813333pt;}
.y84{bottom:347.613333pt;}
.y2d{bottom:355.293333pt;}
.y83{bottom:363.013333pt;}
.y18{bottom:364.253333pt;}
.y2c{bottom:369.373333pt;}
.y82{bottom:378.373333pt;}
.y2b{bottom:383.133333pt;}
.y17{bottom:385.693333pt;}
.y81{bottom:393.733333pt;}
.y2a{bottom:396.893333pt;}
.y16{bottom:407.133333pt;}
.y80{bottom:408.773333pt;}
.y29{bottom:410.653333pt;}
.y7f{bottom:423.813333pt;}
.y28{bottom:424.413333pt;}
.y15{bottom:428.613333pt;}
.y27{bottom:438.213333pt;}
.y7e{bottom:447.493333pt;}
.y14{bottom:450.053333pt;}
.y26{bottom:451.973333pt;}
.y7d{bottom:462.853333pt;}
.y25{bottom:465.733333pt;}
.y13{bottom:471.493333pt;}
.y7c{bottom:478.240000pt;}
.y24{bottom:479.813333pt;}
.y12{bottom:492.933333pt;}
.y23{bottom:493.573333pt;}
.y7b{bottom:493.600000pt;}
.y22{bottom:507.333333pt;}
.y7a{bottom:508.960000pt;}
.y11{bottom:514.373333pt;}
.y21{bottom:521.093333pt;}
.y79{bottom:524.320000pt;}
.y20{bottom:534.853333pt;}
.y10{bottom:535.813333pt;}
.y78{bottom:539.680000pt;}
.y1f{bottom:548.640000pt;}
.y77{bottom:555.040000pt;}
.yf{bottom:557.280000pt;}
.y1e{bottom:562.400000pt;}
.y76{bottom:570.400000pt;}
.y1d{bottom:575.840000pt;}
.ye{bottom:578.720000pt;}
.y75{bottom:585.440000pt;}
.y74{bottom:600.506667pt;}
.y73{bottom:621.320000pt;}
.y72{bottom:655.240000pt;}
.y70{bottom:688.840000pt;}
.y6f{bottom:722.800000pt;}
.y6d{bottom:756.400000pt;}
.y6a{bottom:773.680000pt;}
.y69{bottom:810.786667pt;}
.y68{bottom:831.613333pt;}
.y67{bottom:848.893333pt;}
.y66{bottom:865.853333pt;}
.yc{bottom:875.773333pt;}
.yb{bottom:880.573333pt;}
.y64{bottom:883.133333pt;}
.ya{bottom:895.933333pt;}
.y5f{bottom:900.413333pt;}
.y61{bottom:917.693333pt;}
.y9{bottom:928.253333pt;}
.y5e{bottom:937.853333pt;}
.y8{bottom:952.933333pt;}
.y5d{bottom:953.573333pt;}
.y5a{bottom:955.840000pt;}
.y5c{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h13{height:5.022500pt;}
.h18{height:16.306667pt;}
.h19{height:16.626667pt;}
.h15{height:24.640000pt;}
.h11{height:26.381250pt;}
.h10{height:31.406250pt;}
.h1b{height:32.946667pt;}
.h1a{height:33.266667pt;}
.h1c{height:33.298667pt;}
.h17{height:33.586667pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.hd{height:47.713750pt;}
.h12{height:49.020000pt;}
.h7{height:51.600000pt;}
.h14{height:52.736250pt;}
.h6{height:52.762500pt;}
.h9{height:54.180000pt;}
.h1d{height:55.256809pt;}
.h16{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h1e{height:58.221875pt;}
.h1f{height:58.232542pt;}
.he{height:58.238750pt;}
.h3{height:58.563750pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.hf{height:179.240000pt;}
.ha{height:587.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:29.106667pt;}
.w12{width:35.186667pt;}
.wc{width:35.200000pt;}
.w13{width:35.220000pt;}
.wa{width:35.506667pt;}
.wd{width:35.520000pt;}
.wf{width:41.298667pt;}
.wb{width:41.306667pt;}
.we{width:41.312000pt;}
.w10{width:41.586667pt;}
.w2{width:92.180000pt;}
.w14{width:101.440000pt;}
.w17{width:101.458667pt;}
.w15{width:113.306667pt;}
.w16{width:113.344000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w7{width:149.480000pt;}
.w18{width:155.240000pt;}
.w9{width:185.320000pt;}
.w8{width:191.426667pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x18{left:7.373333pt;}
.x4{left:11.826667pt;}
.x14{left:15.028000pt;}
.x1a{left:16.308000pt;}
.x16{left:17.268000pt;}
.x15{left:21.108000pt;}
.x6{left:25.586667pt;}
.xe{left:39.028000pt;}
.x1b{left:42.260000pt;}
.xf{left:45.140000pt;}
.xd{left:48.980000pt;}
.x13{left:49.940000pt;}
.x1d{left:50.900000pt;}
.x1c{left:58.902667pt;}
.x1{left:69.804000pt;}
.x12{left:74.582667pt;}
.x7{left:76.832000pt;}
.x11{left:82.582667pt;}
.x2{left:84.822667pt;}
.x2c{left:89.324000pt;}
.x1e{left:91.542667pt;}
.x19{left:95.062667pt;}
.x31{left:100.832000pt;}
.x10{left:110.742667pt;}
.x5{left:125.813333pt;}
.x21{left:133.204000pt;}
.x3{left:162.000000pt;}
.x17{left:194.640000pt;}
.x2d{left:227.293333pt;}
.xa{left:276.613333pt;}
.x20{left:283.333333pt;}
.x2b{left:305.733333pt;}
.x23{left:319.493333pt;}
.x2e{left:341.253333pt;}
.x24{left:361.440000pt;}
.x25{left:397.280000pt;}
.x26{left:433.440000pt;}
.x2f{left:455.240000pt;}
.x22{left:475.400000pt;}
.xb{left:503.226667pt;}
.x27{left:517.360000pt;}
.x30{left:557.360000pt;}
.x28{left:559.600000pt;}
.x29{left:589.360000pt;}
.x2a{left:625.533333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xc{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; }
  