
    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_80e2669b0a31297041085d08.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5e83e21c08791b65d88d789c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_11fb3f05a0c99a5e147d23c0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3923848f08ea9c4eeaf7ee61.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_16ef62a7065c153672b89f41.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-3.546000px;}
.lsf{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.208200px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.lsc{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.978000px;}
.lsd{letter-spacing:8.586720px;}
.ls12{letter-spacing:11.466720px;}
.ls11{letter-spacing:41.850720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wsb{word-spacing:-15.918000px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.680200px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._11{margin-left:-6.881760px;}
._10{margin-left:-5.467680px;}
._8{margin-left:-4.449120px;}
._9{margin-left:-2.738880px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._a{width:2.250240px;}
._b{width:4.014000px;}
._d{width:5.622480px;}
._e{width:6.693120px;}
._14{width:8.586240px;}
._13{width:9.631440px;}
._12{width:10.697040px;}
._f{width:12.539520px;}
._c{width:13.874400px;}
._15{width:16.268400px;}
._16{width:18.117360px;}
._17{width:25.467600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y49{bottom:7.020000px;}
.y4c{bottom:7.200000px;}
.y45{bottom:7.380000px;}
.y47{bottom:7.560000px;}
.y51{bottom:7.740000px;}
.y43{bottom:8.460000px;}
.yd2{bottom:10.800000px;}
.y42{bottom:28.305000px;}
.yd1{bottom:30.600000px;}
.yce{bottom:34.740000px;}
.yd0{bottom:50.400000px;}
.y6{bottom:60.120000px;}
.ycf{bottom:70.200000px;}
.ycc{bottom:96.120000px;}
.y6f{bottom:100.980000px;}
.y33{bottom:109.080000px;}
.y99{bottom:114.120000px;}
.ycb{bottom:115.920000px;}
.y6e{bottom:120.960000px;}
.ycd{bottom:123.660000px;}
.y32{bottom:128.880000px;}
.y98{bottom:133.920000px;}
.yca{bottom:135.720000px;}
.y6d{bottom:140.760000px;}
.y31{bottom:148.680000px;}
.y97{bottom:153.720000px;}
.yc9{bottom:155.520000px;}
.y6c{bottom:160.560000px;}
.y30{bottom:168.480000px;}
.y96{bottom:173.520000px;}
.yc8{bottom:175.500000px;}
.y6b{bottom:180.360000px;}
.y2f{bottom:188.280000px;}
.y95{bottom:193.500000px;}
.yc7{bottom:195.300000px;}
.y6a{bottom:200.160000px;}
.y2e{bottom:208.260000px;}
.y94{bottom:213.330000px;}
.yc6{bottom:215.130000px;}
.y69{bottom:220.170000px;}
.y2d{bottom:228.090000px;}
.y93{bottom:233.130000px;}
.yc5{bottom:234.930000px;}
.y68{bottom:239.970000px;}
.y2c{bottom:247.890000px;}
.y92{bottom:252.930000px;}
.yc4{bottom:254.730000px;}
.y67{bottom:259.770000px;}
.y2b{bottom:267.690000px;}
.y91{bottom:272.730000px;}
.yc3{bottom:274.710000px;}
.y66{bottom:279.570000px;}
.y2a{bottom:287.490000px;}
.y90{bottom:292.710000px;}
.yc2{bottom:294.510000px;}
.y65{bottom:299.370000px;}
.y29{bottom:307.470000px;}
.y8f{bottom:312.510000px;}
.yc1{bottom:314.310000px;}
.y64{bottom:319.350000px;}
.y28{bottom:327.270000px;}
.y8e{bottom:332.310000px;}
.yc0{bottom:334.110000px;}
.y63{bottom:339.150000px;}
.y27{bottom:347.070000px;}
.y8d{bottom:352.110000px;}
.ybf{bottom:353.910000px;}
.y62{bottom:358.950000px;}
.y26{bottom:366.870000px;}
.y8c{bottom:371.910000px;}
.ybe{bottom:373.890000px;}
.y61{bottom:378.750000px;}
.y25{bottom:386.670000px;}
.y8b{bottom:391.890000px;}
.ybd{bottom:393.690000px;}
.y60{bottom:398.550000px;}
.y24{bottom:406.650000px;}
.y8a{bottom:411.690000px;}
.ybc{bottom:413.490000px;}
.y5f{bottom:418.530000px;}
.y23{bottom:426.450000px;}
.y89{bottom:431.490000px;}
.ybb{bottom:433.290000px;}
.y5e{bottom:438.330000px;}
.y22{bottom:446.295000px;}
.y88{bottom:451.335000px;}
.yba{bottom:453.135000px;}
.y5d{bottom:458.175000px;}
.y21{bottom:466.095000px;}
.y87{bottom:471.135000px;}
.yb9{bottom:473.115000px;}
.y5c{bottom:477.975000px;}
.y20{bottom:485.895000px;}
.y86{bottom:491.115000px;}
.yb8{bottom:492.915000px;}
.y5b{bottom:497.775000px;}
.y1f{bottom:505.875000px;}
.y85{bottom:510.915000px;}
.yb7{bottom:512.715000px;}
.y5a{bottom:517.755000px;}
.y1e{bottom:527.835000px;}
.y84{bottom:530.715000px;}
.yb6{bottom:532.515000px;}
.y59{bottom:537.555000px;}
.y83{bottom:550.515000px;}
.yb5{bottom:552.315000px;}
.y1d{bottom:556.635000px;}
.y58{bottom:557.355000px;}
.y82{bottom:570.315000px;}
.yb4{bottom:572.295000px;}
.y1c{bottom:576.615000px;}
.y57{bottom:577.155000px;}
.y81{bottom:590.295000px;}
.yb3{bottom:592.095000px;}
.y1b{bottom:596.415000px;}
.y56{bottom:596.955000px;}
.y80{bottom:610.095000px;}
.yb2{bottom:611.895000px;}
.y1a{bottom:616.215000px;}
.y55{bottom:616.935000px;}
.y7f{bottom:629.895000px;}
.yb1{bottom:631.695000px;}
.y19{bottom:636.015000px;}
.y54{bottom:636.735000px;}
.y7e{bottom:649.695000px;}
.yb0{bottom:651.495000px;}
.y18{bottom:655.815000px;}
.y53{bottom:656.535000px;}
.y7d{bottom:669.495000px;}
.y52{bottom:671.115000px;}
.y17{bottom:675.795000px;}
.yaf{bottom:680.475000px;}
.y7c{bottom:689.505000px;}
.y50{bottom:693.645000px;}
.y16{bottom:695.625000px;}
.yae{bottom:700.305000px;}
.y7b{bottom:709.305000px;}
.y15{bottom:715.425000px;}
.y4f{bottom:716.685000px;}
.yad{bottom:720.105000px;}
.y7a{bottom:729.105000px;}
.y14{bottom:735.225000px;}
.y4e{bottom:739.185000px;}
.yac{bottom:739.905000px;}
.y79{bottom:748.905000px;}
.y13{bottom:755.025000px;}
.yab{bottom:759.705000px;}
.y4d{bottom:761.865000px;}
.y78{bottom:768.705000px;}
.y12{bottom:775.005000px;}
.yaa{bottom:779.685000px;}
.y4b{bottom:784.725000px;}
.y77{bottom:788.685000px;}
.y11{bottom:794.805000px;}
.ya9{bottom:799.485000px;}
.y4a{bottom:807.225000px;}
.y76{bottom:808.485000px;}
.y10{bottom:814.605000px;}
.ya8{bottom:819.285000px;}
.y75{bottom:828.285000px;}
.y48{bottom:830.085000px;}
.yf{bottom:834.405000px;}
.ya7{bottom:839.085000px;}
.y74{bottom:848.085000px;}
.y46{bottom:852.405000px;}
.ye{bottom:854.205000px;}
.ya6{bottom:858.885000px;}
.y73{bottom:867.885000px;}
.y44{bottom:875.265000px;}
.yd{bottom:876.345000px;}
.ya5{bottom:878.865000px;}
.y72{bottom:887.865000px;}
.y41{bottom:897.945000px;}
.ya4{bottom:898.665000px;}
.yc{bottom:901.365000px;}
.y71{bottom:907.665000px;}
.ya3{bottom:918.510000px;}
.yb{bottom:921.390000px;}
.y70{bottom:927.510000px;}
.ya{bottom:936.510000px;}
.ya2{bottom:938.310000px;}
.y40{bottom:947.310000px;}
.y9{bottom:957.750000px;}
.ya1{bottom:958.110000px;}
.y3f{bottom:967.110000px;}
.ya0{bottom:978.090000px;}
.y8{bottom:981.150000px;}
.y3e{bottom:987.090000px;}
.y9f{bottom:997.890000px;}
.y3d{bottom:1006.890000px;}
.y7{bottom:1013.010000px;}
.y9e{bottom:1017.690000px;}
.y3c{bottom:1026.690000px;}
.y9d{bottom:1037.490000px;}
.y3b{bottom:1046.490000px;}
.y5{bottom:1051.350000px;}
.y9c{bottom:1057.290000px;}
.y3a{bottom:1066.290000px;}
.y9b{bottom:1077.270000px;}
.y4{bottom:1082.130000px;}
.y39{bottom:1086.270000px;}
.y9a{bottom:1097.070000px;}
.y38{bottom:1106.070000px;}
.y3{bottom:1112.910000px;}
.y37{bottom:1125.870000px;}
.y2{bottom:1143.870000px;}
.y36{bottom:1145.670000px;}
.y35{bottom:1173.240000px;}
.y1{bottom:1177.740000px;}
.y34{bottom:1193.400000px;}
.h13{height:2.010938px;}
.hd{height:21.060000px;}
.he{height:21.240000px;}
.h10{height:21.276000px;}
.hb{height:21.420000px;}
.hc{height:21.600000px;}
.hf{height:21.780000px;}
.h7{height:27.147656px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:42.336000px;}
.h11{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.h9{height:67.824844px;}
.h12{height:84.240000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:54.000000px;}
.w5{width:116.676000px;}
.w7{width:127.080000px;}
.w6{width:127.296000px;}
.w4{width:159.330000px;}
.w8{width:210.855000px;}
.w9{width:580.965000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.640000px;}
.xd{left:16.380000px;}
.x7{left:18.360000px;}
.x17{left:22.680000px;}
.x10{left:23.940000px;}
.x12{left:27.720000px;}
.x18{left:33.840000px;}
.x14{left:37.800000px;}
.x9{left:39.420000px;}
.xb{left:42.120000px;}
.x13{left:43.560000px;}
.xe{left:46.980000px;}
.x4{left:51.839987px;}
.x2{left:52.919987px;}
.x1{left:54.179987px;}
.x1f{left:57.419987px;}
.x16{left:60.120000px;}
.x15{left:62.100000px;}
.x1d{left:67.499987px;}
.x1c{left:71.639987px;}
.x5{left:73.799987px;}
.x19{left:75.599987px;}
.x1a{left:79.919987px;}
.x1b{left:81.035987px;}
.x1e{left:94.535987px;}
.x6{left:154.110000px;}
.x20{left:191.370000px;}
.x8{left:208.470000px;}
.x21{left:264.855000px;}
.xa{left:368.175000px;}
.x3{left:448.304987px;}
.xc{left:485.205000px;}
.xf{left:612.870000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-3.152000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.185067pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.lsc{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.869333pt;}
.lsd{letter-spacing:7.632640pt;}
.ls12{letter-spacing:10.192640pt;}
.ls11{letter-spacing:37.200640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wsb{word-spacing:-14.149333pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.049067pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._11{margin-left:-6.117120pt;}
._10{margin-left:-4.860160pt;}
._8{margin-left:-3.954773pt;}
._9{margin-left:-2.434560pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._a{width:2.000213pt;}
._b{width:3.568000pt;}
._d{width:4.997760pt;}
._e{width:5.949440pt;}
._14{width:7.632213pt;}
._13{width:8.561280pt;}
._12{width:9.508480pt;}
._f{width:11.146240pt;}
._c{width:12.332800pt;}
._15{width:14.460800pt;}
._16{width:16.104320pt;}
._17{width:22.637867pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:6.240000pt;}
.y4c{bottom:6.400000pt;}
.y45{bottom:6.560000pt;}
.y47{bottom:6.720000pt;}
.y51{bottom:6.880000pt;}
.y43{bottom:7.520000pt;}
.yd2{bottom:9.600000pt;}
.y42{bottom:25.160000pt;}
.yd1{bottom:27.200000pt;}
.yce{bottom:30.880000pt;}
.yd0{bottom:44.800000pt;}
.y6{bottom:53.440000pt;}
.ycf{bottom:62.400000pt;}
.ycc{bottom:85.440000pt;}
.y6f{bottom:89.760000pt;}
.y33{bottom:96.960000pt;}
.y99{bottom:101.440000pt;}
.ycb{bottom:103.040000pt;}
.y6e{bottom:107.520000pt;}
.ycd{bottom:109.920000pt;}
.y32{bottom:114.560000pt;}
.y98{bottom:119.040000pt;}
.yca{bottom:120.640000pt;}
.y6d{bottom:125.120000pt;}
.y31{bottom:132.160000pt;}
.y97{bottom:136.640000pt;}
.yc9{bottom:138.240000pt;}
.y6c{bottom:142.720000pt;}
.y30{bottom:149.760000pt;}
.y96{bottom:154.240000pt;}
.yc8{bottom:156.000000pt;}
.y6b{bottom:160.320000pt;}
.y2f{bottom:167.360000pt;}
.y95{bottom:172.000000pt;}
.yc7{bottom:173.600000pt;}
.y6a{bottom:177.920000pt;}
.y2e{bottom:185.120000pt;}
.y94{bottom:189.626667pt;}
.yc6{bottom:191.226667pt;}
.y69{bottom:195.706667pt;}
.y2d{bottom:202.746667pt;}
.y93{bottom:207.226667pt;}
.yc5{bottom:208.826667pt;}
.y68{bottom:213.306667pt;}
.y2c{bottom:220.346667pt;}
.y92{bottom:224.826667pt;}
.yc4{bottom:226.426667pt;}
.y67{bottom:230.906667pt;}
.y2b{bottom:237.946667pt;}
.y91{bottom:242.426667pt;}
.yc3{bottom:244.186667pt;}
.y66{bottom:248.506667pt;}
.y2a{bottom:255.546667pt;}
.y90{bottom:260.186667pt;}
.yc2{bottom:261.786667pt;}
.y65{bottom:266.106667pt;}
.y29{bottom:273.306667pt;}
.y8f{bottom:277.786667pt;}
.yc1{bottom:279.386667pt;}
.y64{bottom:283.866667pt;}
.y28{bottom:290.906667pt;}
.y8e{bottom:295.386667pt;}
.yc0{bottom:296.986667pt;}
.y63{bottom:301.466667pt;}
.y27{bottom:308.506667pt;}
.y8d{bottom:312.986667pt;}
.ybf{bottom:314.586667pt;}
.y62{bottom:319.066667pt;}
.y26{bottom:326.106667pt;}
.y8c{bottom:330.586667pt;}
.ybe{bottom:332.346667pt;}
.y61{bottom:336.666667pt;}
.y25{bottom:343.706667pt;}
.y8b{bottom:348.346667pt;}
.ybd{bottom:349.946667pt;}
.y60{bottom:354.266667pt;}
.y24{bottom:361.466667pt;}
.y8a{bottom:365.946667pt;}
.ybc{bottom:367.546667pt;}
.y5f{bottom:372.026667pt;}
.y23{bottom:379.066667pt;}
.y89{bottom:383.546667pt;}
.ybb{bottom:385.146667pt;}
.y5e{bottom:389.626667pt;}
.y22{bottom:396.706667pt;}
.y88{bottom:401.186667pt;}
.yba{bottom:402.786667pt;}
.y5d{bottom:407.266667pt;}
.y21{bottom:414.306667pt;}
.y87{bottom:418.786667pt;}
.yb9{bottom:420.546667pt;}
.y5c{bottom:424.866667pt;}
.y20{bottom:431.906667pt;}
.y86{bottom:436.546667pt;}
.yb8{bottom:438.146667pt;}
.y5b{bottom:442.466667pt;}
.y1f{bottom:449.666667pt;}
.y85{bottom:454.146667pt;}
.yb7{bottom:455.746667pt;}
.y5a{bottom:460.226667pt;}
.y1e{bottom:469.186667pt;}
.y84{bottom:471.746667pt;}
.yb6{bottom:473.346667pt;}
.y59{bottom:477.826667pt;}
.y83{bottom:489.346667pt;}
.yb5{bottom:490.946667pt;}
.y1d{bottom:494.786667pt;}
.y58{bottom:495.426667pt;}
.y82{bottom:506.946667pt;}
.yb4{bottom:508.706667pt;}
.y1c{bottom:512.546667pt;}
.y57{bottom:513.026667pt;}
.y81{bottom:524.706667pt;}
.yb3{bottom:526.306667pt;}
.y1b{bottom:530.146667pt;}
.y56{bottom:530.626667pt;}
.y80{bottom:542.306667pt;}
.yb2{bottom:543.906667pt;}
.y1a{bottom:547.746667pt;}
.y55{bottom:548.386667pt;}
.y7f{bottom:559.906667pt;}
.yb1{bottom:561.506667pt;}
.y19{bottom:565.346667pt;}
.y54{bottom:565.986667pt;}
.y7e{bottom:577.506667pt;}
.yb0{bottom:579.106667pt;}
.y18{bottom:582.946667pt;}
.y53{bottom:583.586667pt;}
.y7d{bottom:595.106667pt;}
.y52{bottom:596.546667pt;}
.y17{bottom:600.706667pt;}
.yaf{bottom:604.866667pt;}
.y7c{bottom:612.893333pt;}
.y50{bottom:616.573333pt;}
.y16{bottom:618.333333pt;}
.yae{bottom:622.493333pt;}
.y7b{bottom:630.493333pt;}
.y15{bottom:635.933333pt;}
.y4f{bottom:637.053333pt;}
.yad{bottom:640.093333pt;}
.y7a{bottom:648.093333pt;}
.y14{bottom:653.533333pt;}
.y4e{bottom:657.053333pt;}
.yac{bottom:657.693333pt;}
.y79{bottom:665.693333pt;}
.y13{bottom:671.133333pt;}
.yab{bottom:675.293333pt;}
.y4d{bottom:677.213333pt;}
.y78{bottom:683.293333pt;}
.y12{bottom:688.893333pt;}
.yaa{bottom:693.053333pt;}
.y4b{bottom:697.533333pt;}
.y77{bottom:701.053333pt;}
.y11{bottom:706.493333pt;}
.ya9{bottom:710.653333pt;}
.y4a{bottom:717.533333pt;}
.y76{bottom:718.653333pt;}
.y10{bottom:724.093333pt;}
.ya8{bottom:728.253333pt;}
.y75{bottom:736.253333pt;}
.y48{bottom:737.853333pt;}
.yf{bottom:741.693333pt;}
.ya7{bottom:745.853333pt;}
.y74{bottom:753.853333pt;}
.y46{bottom:757.693333pt;}
.ye{bottom:759.293333pt;}
.ya6{bottom:763.453333pt;}
.y73{bottom:771.453333pt;}
.y44{bottom:778.013333pt;}
.yd{bottom:778.973333pt;}
.ya5{bottom:781.213333pt;}
.y72{bottom:789.213333pt;}
.y41{bottom:798.173333pt;}
.ya4{bottom:798.813333pt;}
.yc{bottom:801.213333pt;}
.y71{bottom:806.813333pt;}
.ya3{bottom:816.453333pt;}
.yb{bottom:819.013333pt;}
.y70{bottom:824.453333pt;}
.ya{bottom:832.453333pt;}
.ya2{bottom:834.053333pt;}
.y40{bottom:842.053333pt;}
.y9{bottom:851.333333pt;}
.ya1{bottom:851.653333pt;}
.y3f{bottom:859.653333pt;}
.ya0{bottom:869.413333pt;}
.y8{bottom:872.133333pt;}
.y3e{bottom:877.413333pt;}
.y9f{bottom:887.013333pt;}
.y3d{bottom:895.013333pt;}
.y7{bottom:900.453333pt;}
.y9e{bottom:904.613333pt;}
.y3c{bottom:912.613333pt;}
.y9d{bottom:922.213333pt;}
.y3b{bottom:930.213333pt;}
.y5{bottom:934.533333pt;}
.y9c{bottom:939.813333pt;}
.y3a{bottom:947.813333pt;}
.y9b{bottom:957.573333pt;}
.y4{bottom:961.893333pt;}
.y39{bottom:965.573333pt;}
.y9a{bottom:975.173333pt;}
.y38{bottom:983.173333pt;}
.y3{bottom:989.253333pt;}
.y37{bottom:1000.773333pt;}
.y2{bottom:1016.773333pt;}
.y36{bottom:1018.373333pt;}
.y35{bottom:1042.880000pt;}
.y1{bottom:1046.880000pt;}
.y34{bottom:1060.800000pt;}
.h13{height:1.787500pt;}
.hd{height:18.720000pt;}
.he{height:18.880000pt;}
.h10{height:18.912000pt;}
.hb{height:19.040000pt;}
.hc{height:19.200000pt;}
.hf{height:19.360000pt;}
.h7{height:24.131250pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:37.632000pt;}
.h11{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.h9{height:60.288750pt;}
.h12{height:74.880000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:48.000000pt;}
.w5{width:103.712000pt;}
.w7{width:112.960000pt;}
.w6{width:113.152000pt;}
.w4{width:141.626667pt;}
.w8{width:187.426667pt;}
.w9{width:516.413333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.680000pt;}
.xd{left:14.560000pt;}
.x7{left:16.320000pt;}
.x17{left:20.160000pt;}
.x10{left:21.280000pt;}
.x12{left:24.640000pt;}
.x18{left:30.080000pt;}
.x14{left:33.600000pt;}
.x9{left:35.040000pt;}
.xb{left:37.440000pt;}
.x13{left:38.720000pt;}
.xe{left:41.760000pt;}
.x4{left:46.079988pt;}
.x2{left:47.039988pt;}
.x1{left:48.159988pt;}
.x1f{left:51.039988pt;}
.x16{left:53.440000pt;}
.x15{left:55.200000pt;}
.x1d{left:59.999988pt;}
.x1c{left:63.679988pt;}
.x5{left:65.599988pt;}
.x19{left:67.199988pt;}
.x1a{left:71.039988pt;}
.x1b{left:72.031988pt;}
.x1e{left:84.031988pt;}
.x6{left:136.986667pt;}
.x20{left:170.106667pt;}
.x8{left:185.306667pt;}
.x21{left:235.426667pt;}
.xa{left:327.266667pt;}
.x3{left:398.493322pt;}
.xc{left:431.293333pt;}
.xf{left:544.773333pt;}
}




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