
    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_5ae0eeff1615b1eb1ce3a95e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6c9fd19d048c7ca3a7fb2a74.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e1025d4f62c1281bec146519.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57504dcee5f9f13bc2923e2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_de5570e83fbf97f7ab03499b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a467a2b8401c727ea1a2d524.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.924000px;}
.lsc{letter-spacing:46.026720px;}
.ls4{letter-spacing:64.170720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.864000px;}
.ws7{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.ws2{word-spacing:-14.580000px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-2.270880px;}
._2{margin-left:-1.224000px;}
._0{width:1.195200px;}
._1{width:2.925600px;}
._3{width:3.952080px;}
._8{width:5.497920px;}
._b{width:7.200720px;}
._9{width:8.396640px;}
._5{width:10.277280px;}
._4{width:11.473920px;}
._7{width:12.697920px;}
._a{width:13.866480px;}
._c{width:16.374240px;}
._e{width:24.470640px;}
._d{width:25.517520px;}
._6{width:201.204000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.240000px;}
.y5d{bottom:3.420000px;}
.y63{bottom:3.600000px;}
.y5f{bottom:3.780000px;}
.y5{bottom:4.500000px;}
.y4{bottom:24.120000px;}
.y86{bottom:59.400000px;}
.y44{bottom:67.860000px;}
.y85{bottom:77.760000px;}
.y43{bottom:85.860000px;}
.yc0{bottom:86.040000px;}
.y84{bottom:95.040000px;}
.ybf{bottom:103.356000px;}
.y42{bottom:103.536000px;}
.y83{bottom:112.356000px;}
.ybe{bottom:120.636000px;}
.y41{bottom:121.896000px;}
.y82{bottom:127.296000px;}
.ybd{bottom:137.736000px;}
.y40{bottom:140.076000px;}
.y81{bottom:146.016000px;}
.ybc{bottom:154.650000px;}
.y3f{bottom:158.430000px;}
.y80{bottom:164.730000px;}
.ybb{bottom:172.290000px;}
.y3e{bottom:176.430000px;}
.y7f{bottom:183.450000px;}
.yba{bottom:190.650000px;}
.y3d{bottom:194.070000px;}
.y7d{bottom:202.350000px;}
.yb9{bottom:209.010000px;}
.y3c{bottom:212.430000px;}
.y7c{bottom:224.490000px;}
.yb8{bottom:227.010000px;}
.y3b{bottom:230.610000px;}
.y7b{bottom:241.950000px;}
.yb7{bottom:244.470000px;}
.y3a{bottom:248.970000px;}
.y7a{bottom:259.230000px;}
.yb6{bottom:261.750000px;}
.y39{bottom:266.970000px;}
.y79{bottom:277.590000px;}
.yb5{bottom:279.030000px;}
.y38{bottom:284.250000px;}
.y78{bottom:294.870000px;}
.yb4{bottom:296.310000px;}
.y37{bottom:301.890000px;}
.y77{bottom:313.230000px;}
.yb3{bottom:313.590000px;}
.y36{bottom:320.070000px;}
.y76{bottom:330.330000px;}
.yb2{bottom:330.690000px;}
.y35{bottom:338.430000px;}
.yb1{bottom:347.970000px;}
.y75{bottom:348.690000px;}
.y34{bottom:356.430000px;}
.yb0{bottom:364.935000px;}
.y74{bottom:366.015000px;}
.y33{bottom:374.115000px;}
.yaf{bottom:382.575000px;}
.y73{bottom:384.375000px;}
.y32{bottom:391.395000px;}
.yae{bottom:399.855000px;}
.y72{bottom:401.655000px;}
.y31{bottom:408.675000px;}
.y71{bottom:416.595000px;}
.yad{bottom:417.135000px;}
.y30{bottom:425.775000px;}
.yac{bottom:434.235000px;}
.y70{bottom:435.315000px;}
.y2f{bottom:443.055000px;}
.yab{bottom:451.515000px;}
.y6f{bottom:454.035000px;}
.y2e{bottom:460.335000px;}
.yaa{bottom:468.795000px;}
.y6e{bottom:472.935000px;}
.y2d{bottom:477.255000px;}
.ya9{bottom:486.075000px;}
.y6d{bottom:491.655000px;}
.y2c{bottom:494.895000px;}
.ya8{bottom:502.995000px;}
.y2b{bottom:511.995000px;}
.y6c{bottom:513.795000px;}
.ya7{bottom:520.635000px;}
.y2a{bottom:529.275000px;}
.y6b{bottom:531.435000px;}
.ya6{bottom:538.815000px;}
.y29{bottom:546.555000px;}
.y6a{bottom:548.535000px;}
.ya5{bottom:557.175000px;}
.y28{bottom:563.835000px;}
.y69{bottom:565.815000px;}
.ya4{bottom:575.535000px;}
.y27{bottom:581.115000px;}
.y68{bottom:584.175000px;}
.ya3{bottom:593.535000px;}
.y26{bottom:598.395000px;}
.y67{bottom:602.535000px;}
.ya2{bottom:611.175000px;}
.y25{bottom:615.495000px;}
.y66{bottom:620.925000px;}
.ya1{bottom:628.305000px;}
.y24{bottom:632.805000px;}
.y65{bottom:639.105000px;}
.ya0{bottom:646.665000px;}
.y23{bottom:650.085000px;}
.y64{bottom:656.385000px;}
.y9f{bottom:663.945000px;}
.y22{bottom:667.365000px;}
.y62{bottom:671.505000px;}
.y9e{bottom:682.305000px;}
.y21{bottom:684.645000px;}
.y61{bottom:690.225000px;}
.y9d{bottom:699.585000px;}
.y20{bottom:701.565000px;}
.y60{bottom:708.945000px;}
.y9c{bottom:717.945000px;}
.y1f{bottom:719.025000px;}
.y5e{bottom:727.665000px;}
.y9b{bottom:734.685000px;}
.y1e{bottom:736.305000px;}
.y5c{bottom:746.385000px;}
.y9a{bottom:752.325000px;}
.y1d{bottom:753.585000px;}
.y5b{bottom:768.525000px;}
.y99{bottom:769.605000px;}
.y1c{bottom:770.865000px;}
.y5a{bottom:785.805000px;}
.y98{bottom:787.965000px;}
.y1b{bottom:788.145000px;}
.y59{bottom:803.445000px;}
.y97{bottom:805.245000px;}
.y1a{bottom:805.425000px;}
.y58{bottom:821.805000px;}
.y19{bottom:822.525000px;}
.y96{bottom:823.425000px;}
.y18{bottom:839.805000px;}
.y57{bottom:839.985000px;}
.y95{bottom:840.705000px;}
.y17{bottom:857.085000px;}
.y56{bottom:857.985000px;}
.y94{bottom:859.065000px;}
.y16{bottom:874.365000px;}
.y55{bottom:875.670000px;}
.y93{bottom:876.390000px;}
.y15{bottom:891.690000px;}
.y92{bottom:893.670000px;}
.y54{bottom:894.030000px;}
.y14{bottom:908.790000px;}
.y91{bottom:911.670000px;}
.y53{bottom:912.390000px;}
.ycf{bottom:924.090000px;}
.y13{bottom:926.070000px;}
.y90{bottom:929.130000px;}
.y52{bottom:930.570000px;}
.yce{bottom:941.370000px;}
.y12{bottom:942.990000px;}
.y8f{bottom:946.410000px;}
.y51{bottom:948.570000px;}
.ycd{bottom:958.650000px;}
.y11{bottom:960.990000px;}
.y8e{bottom:963.690000px;}
.y50{bottom:966.210000px;}
.ycc{bottom:975.930000px;}
.y10{bottom:978.630000px;}
.y4f{bottom:984.570000px;}
.ycb{bottom:993.210000px;}
.yf{bottom:995.910000px;}
.y8d{bottom:997.350000px;}
.y4e{bottom:1002.930000px;}
.yca{bottom:1010.490000px;}
.ye{bottom:1013.190000px;}
.y8c{bottom:1016.250000px;}
.y4d{bottom:1021.290000px;}
.yc9{bottom:1027.590000px;}
.yd{bottom:1030.290000px;}
.y8b{bottom:1034.970000px;}
.y4c{bottom:1039.470000px;}
.yc8{bottom:1044.870000px;}
.yc{bottom:1047.570000px;}
.y8a{bottom:1053.690000px;}
.y4b{bottom:1057.470000px;}
.yc7{bottom:1062.150000px;}
.yb{bottom:1064.850000px;}
.y4a{bottom:1074.750000px;}
.y89{bottom:1075.830000px;}
.yc6{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y49{bottom:1092.390000px;}
.y88{bottom:1093.470000px;}
.yc5{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y48{bottom:1110.390000px;}
.y87{bottom:1110.750000px;}
.yc4{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.y47{bottom:1127.850000px;}
.yc3{bottom:1131.090000px;}
.y7{bottom:1141.920000px;}
.y46{bottom:1146.240000px;}
.yc2{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.y45{bottom:1164.600000px;}
.yc1{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.ha{height:17.100000px;}
.h9{height:17.280000px;}
.h7{height:41.493516px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h4{height:65.884219px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:60.876000px;}
.wc{width:63.936000px;}
.w15{width:64.116000px;}
.w10{width:64.656000px;}
.w4{width:65.736000px;}
.w6{width:67.356000px;}
.w17{width:67.536000px;}
.w11{width:108.360000px;}
.w16{width:109.440000px;}
.w18{width:114.300000px;}
.w7{width:118.980000px;}
.w12{width:120.060000px;}
.wb{width:120.780000px;}
.wf{width:121.680000px;}
.wd{width:124.560000px;}
.w5{width:126.540000px;}
.w14{width:128.700000px;}
.w9{width:139.320000px;}
.w3{width:139.536000px;}
.w2{width:151.560000px;}
.w8{width:166.170000px;}
.w13{width:190.110000px;}
.we{width:196.950000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:11.340000px;}
.x36{left:14.220000px;}
.x17{left:17.280000px;}
.x10{left:19.665000px;}
.x1a{left:20.880000px;}
.x24{left:24.120000px;}
.x39{left:25.380000px;}
.x12{left:26.460000px;}
.x26{left:27.720000px;}
.x15{left:29.340000px;}
.x1d{left:31.320000px;}
.x2f{left:34.020000px;}
.x33{left:37.620000px;}
.x2b{left:38.700000px;}
.x2c{left:39.960000px;}
.x34{left:41.400000px;}
.x1c{left:42.840000px;}
.x20{left:44.454000px;}
.x1b{left:46.620000px;}
.x1f{left:48.600000px;}
.x19{left:50.580000px;}
.x2d{left:51.834000px;}
.x5{left:54.000000px;}
.x1e{left:55.125000px;}
.x18{left:57.234000px;}
.x29{left:58.680000px;}
.x2a{left:61.734000px;}
.x28{left:64.614000px;}
.xc{left:81.000000px;}
.x21{left:106.956000px;}
.x2e{left:108.036000px;}
.xd{left:109.836000px;}
.xb{left:192.270000px;}
.xa{left:200.370000px;}
.x6{left:202.350000px;}
.x3{left:254.550000px;}
.xf{left:262.110000px;}
.x7{left:266.970000px;}
.x22{left:273.855000px;}
.x1{left:291.855000px;}
.x35{left:298.515000px;}
.x2{left:300.675000px;}
.x30{left:306.075000px;}
.x11{left:402.375000px;}
.x23{left:413.895000px;}
.x8{left:428.115000px;}
.x9{left:437.295000px;}
.x13{left:468.825000px;}
.x25{left:475.485000px;}
.x37{left:492.765000px;}
.x31{left:493.845000px;}
.x14{left:596.265000px;}
.x32{left:603.105000px;}
.x27{left:661.650000px;}
.x16{left:664.350000px;}
.x38{left:671.190000px;}
.x4{left:812.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.821333pt;}
.lsc{letter-spacing:40.912640pt;}
.ls4{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.101333pt;}
.ws7{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.960000pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-2.018560pt;}
._2{margin-left:-1.088000pt;}
._0{width:1.062400pt;}
._1{width:2.600533pt;}
._3{width:3.512960pt;}
._8{width:4.887040pt;}
._b{width:6.400640pt;}
._9{width:7.463680pt;}
._5{width:9.135360pt;}
._4{width:10.199040pt;}
._7{width:11.287040pt;}
._a{width:12.325760pt;}
._c{width:14.554880pt;}
._e{width:21.751680pt;}
._d{width:22.682240pt;}
._6{width:178.848000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.880000pt;}
.y5d{bottom:3.040000pt;}
.y63{bottom:3.200000pt;}
.y5f{bottom:3.360000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:21.440000pt;}
.y86{bottom:52.800000pt;}
.y44{bottom:60.320000pt;}
.y85{bottom:69.120000pt;}
.y43{bottom:76.320000pt;}
.yc0{bottom:76.480000pt;}
.y84{bottom:84.480000pt;}
.ybf{bottom:91.872000pt;}
.y42{bottom:92.032000pt;}
.y83{bottom:99.872000pt;}
.ybe{bottom:107.232000pt;}
.y41{bottom:108.352000pt;}
.y82{bottom:113.152000pt;}
.ybd{bottom:122.432000pt;}
.y40{bottom:124.512000pt;}
.y81{bottom:129.792000pt;}
.ybc{bottom:137.466667pt;}
.y3f{bottom:140.826667pt;}
.y80{bottom:146.426667pt;}
.ybb{bottom:153.146667pt;}
.y3e{bottom:156.826667pt;}
.y7f{bottom:163.066667pt;}
.yba{bottom:169.466667pt;}
.y3d{bottom:172.506667pt;}
.y7d{bottom:179.866667pt;}
.yb9{bottom:185.786667pt;}
.y3c{bottom:188.826667pt;}
.y7c{bottom:199.546667pt;}
.yb8{bottom:201.786667pt;}
.y3b{bottom:204.986667pt;}
.y7b{bottom:215.066667pt;}
.yb7{bottom:217.306667pt;}
.y3a{bottom:221.306667pt;}
.y7a{bottom:230.426667pt;}
.yb6{bottom:232.666667pt;}
.y39{bottom:237.306667pt;}
.y79{bottom:246.746667pt;}
.yb5{bottom:248.026667pt;}
.y38{bottom:252.666667pt;}
.y78{bottom:262.106667pt;}
.yb4{bottom:263.386667pt;}
.y37{bottom:268.346667pt;}
.y77{bottom:278.426667pt;}
.yb3{bottom:278.746667pt;}
.y36{bottom:284.506667pt;}
.y76{bottom:293.626667pt;}
.yb2{bottom:293.946667pt;}
.y35{bottom:300.826667pt;}
.yb1{bottom:309.306667pt;}
.y75{bottom:309.946667pt;}
.y34{bottom:316.826667pt;}
.yb0{bottom:324.386667pt;}
.y74{bottom:325.346667pt;}
.y33{bottom:332.546667pt;}
.yaf{bottom:340.066667pt;}
.y73{bottom:341.666667pt;}
.y32{bottom:347.906667pt;}
.yae{bottom:355.426667pt;}
.y72{bottom:357.026667pt;}
.y31{bottom:363.266667pt;}
.y71{bottom:370.306667pt;}
.yad{bottom:370.786667pt;}
.y30{bottom:378.466667pt;}
.yac{bottom:385.986667pt;}
.y70{bottom:386.946667pt;}
.y2f{bottom:393.826667pt;}
.yab{bottom:401.346667pt;}
.y6f{bottom:403.586667pt;}
.y2e{bottom:409.186667pt;}
.yaa{bottom:416.706667pt;}
.y6e{bottom:420.386667pt;}
.y2d{bottom:424.226667pt;}
.ya9{bottom:432.066667pt;}
.y6d{bottom:437.026667pt;}
.y2c{bottom:439.906667pt;}
.ya8{bottom:447.106667pt;}
.y2b{bottom:455.106667pt;}
.y6c{bottom:456.706667pt;}
.ya7{bottom:462.786667pt;}
.y2a{bottom:470.466667pt;}
.y6b{bottom:472.386667pt;}
.ya6{bottom:478.946667pt;}
.y29{bottom:485.826667pt;}
.y6a{bottom:487.586667pt;}
.ya5{bottom:495.266667pt;}
.y28{bottom:501.186667pt;}
.y69{bottom:502.946667pt;}
.ya4{bottom:511.586667pt;}
.y27{bottom:516.546667pt;}
.y68{bottom:519.266667pt;}
.ya3{bottom:527.586667pt;}
.y26{bottom:531.906667pt;}
.y67{bottom:535.586667pt;}
.ya2{bottom:543.266667pt;}
.y25{bottom:547.106667pt;}
.y66{bottom:551.933333pt;}
.ya1{bottom:558.493333pt;}
.y24{bottom:562.493333pt;}
.y65{bottom:568.093333pt;}
.ya0{bottom:574.813333pt;}
.y23{bottom:577.853333pt;}
.y64{bottom:583.453333pt;}
.y9f{bottom:590.173333pt;}
.y22{bottom:593.213333pt;}
.y62{bottom:596.893333pt;}
.y9e{bottom:606.493333pt;}
.y21{bottom:608.573333pt;}
.y61{bottom:613.533333pt;}
.y9d{bottom:621.853333pt;}
.y20{bottom:623.613333pt;}
.y60{bottom:630.173333pt;}
.y9c{bottom:638.173333pt;}
.y1f{bottom:639.133333pt;}
.y5e{bottom:646.813333pt;}
.y9b{bottom:653.053333pt;}
.y1e{bottom:654.493333pt;}
.y5c{bottom:663.453333pt;}
.y9a{bottom:668.733333pt;}
.y1d{bottom:669.853333pt;}
.y5b{bottom:683.133333pt;}
.y99{bottom:684.093333pt;}
.y1c{bottom:685.213333pt;}
.y5a{bottom:698.493333pt;}
.y98{bottom:700.413333pt;}
.y1b{bottom:700.573333pt;}
.y59{bottom:714.173333pt;}
.y97{bottom:715.773333pt;}
.y1a{bottom:715.933333pt;}
.y58{bottom:730.493333pt;}
.y19{bottom:731.133333pt;}
.y96{bottom:731.933333pt;}
.y18{bottom:746.493333pt;}
.y57{bottom:746.653333pt;}
.y95{bottom:747.293333pt;}
.y17{bottom:761.853333pt;}
.y56{bottom:762.653333pt;}
.y94{bottom:763.613333pt;}
.y16{bottom:777.213333pt;}
.y55{bottom:778.373333pt;}
.y93{bottom:779.013333pt;}
.y15{bottom:792.613333pt;}
.y92{bottom:794.373333pt;}
.y54{bottom:794.693333pt;}
.y14{bottom:807.813333pt;}
.y91{bottom:810.373333pt;}
.y53{bottom:811.013333pt;}
.ycf{bottom:821.413333pt;}
.y13{bottom:823.173333pt;}
.y90{bottom:825.893333pt;}
.y52{bottom:827.173333pt;}
.yce{bottom:836.773333pt;}
.y12{bottom:838.213333pt;}
.y8f{bottom:841.253333pt;}
.y51{bottom:843.173333pt;}
.ycd{bottom:852.133333pt;}
.y11{bottom:854.213333pt;}
.y8e{bottom:856.613333pt;}
.y50{bottom:858.853333pt;}
.ycc{bottom:867.493333pt;}
.y10{bottom:869.893333pt;}
.y4f{bottom:875.173333pt;}
.ycb{bottom:882.853333pt;}
.yf{bottom:885.253333pt;}
.y8d{bottom:886.533333pt;}
.y4e{bottom:891.493333pt;}
.yca{bottom:898.213333pt;}
.ye{bottom:900.613333pt;}
.y8c{bottom:903.333333pt;}
.y4d{bottom:907.813333pt;}
.yc9{bottom:913.413333pt;}
.yd{bottom:915.813333pt;}
.y8b{bottom:919.973333pt;}
.y4c{bottom:923.973333pt;}
.yc8{bottom:928.773333pt;}
.yc{bottom:931.173333pt;}
.y8a{bottom:936.613333pt;}
.y4b{bottom:939.973333pt;}
.yc7{bottom:944.133333pt;}
.yb{bottom:946.533333pt;}
.y4a{bottom:955.333333pt;}
.y89{bottom:956.293333pt;}
.yc6{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y49{bottom:971.013333pt;}
.y88{bottom:971.973333pt;}
.yc5{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y48{bottom:987.013333pt;}
.y87{bottom:987.333333pt;}
.yc4{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.y47{bottom:1002.533333pt;}
.yc3{bottom:1005.413333pt;}
.y7{bottom:1015.040000pt;}
.y46{bottom:1018.880000pt;}
.yc2{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.y45{bottom:1035.200000pt;}
.yc1{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.ha{height:15.200000pt;}
.h9{height:15.360000pt;}
.h7{height:36.883125pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h4{height:58.563750pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:54.112000pt;}
.wc{width:56.832000pt;}
.w15{width:56.992000pt;}
.w10{width:57.472000pt;}
.w4{width:58.432000pt;}
.w6{width:59.872000pt;}
.w17{width:60.032000pt;}
.w11{width:96.320000pt;}
.w16{width:97.280000pt;}
.w18{width:101.600000pt;}
.w7{width:105.760000pt;}
.w12{width:106.720000pt;}
.wb{width:107.360000pt;}
.wf{width:108.160000pt;}
.wd{width:110.720000pt;}
.w5{width:112.480000pt;}
.w14{width:114.400000pt;}
.w9{width:123.840000pt;}
.w3{width:124.032000pt;}
.w2{width:134.720000pt;}
.w8{width:147.706667pt;}
.w13{width:168.986667pt;}
.we{width:175.066667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:10.080000pt;}
.x36{left:12.640000pt;}
.x17{left:15.360000pt;}
.x10{left:17.480000pt;}
.x1a{left:18.560000pt;}
.x24{left:21.440000pt;}
.x39{left:22.560000pt;}
.x12{left:23.520000pt;}
.x26{left:24.640000pt;}
.x15{left:26.080000pt;}
.x1d{left:27.840000pt;}
.x2f{left:30.240000pt;}
.x33{left:33.440000pt;}
.x2b{left:34.400000pt;}
.x2c{left:35.520000pt;}
.x34{left:36.800000pt;}
.x1c{left:38.080000pt;}
.x20{left:39.514667pt;}
.x1b{left:41.440000pt;}
.x1f{left:43.200000pt;}
.x19{left:44.960000pt;}
.x2d{left:46.074667pt;}
.x5{left:48.000000pt;}
.x1e{left:49.000000pt;}
.x18{left:50.874667pt;}
.x29{left:52.160000pt;}
.x2a{left:54.874667pt;}
.x28{left:57.434667pt;}
.xc{left:72.000000pt;}
.x21{left:95.072000pt;}
.x2e{left:96.032000pt;}
.xd{left:97.632000pt;}
.xb{left:170.906667pt;}
.xa{left:178.106667pt;}
.x6{left:179.866667pt;}
.x3{left:226.266667pt;}
.xf{left:232.986667pt;}
.x7{left:237.306667pt;}
.x22{left:243.426667pt;}
.x1{left:259.426667pt;}
.x35{left:265.346667pt;}
.x2{left:267.266667pt;}
.x30{left:272.066667pt;}
.x11{left:357.666667pt;}
.x23{left:367.906667pt;}
.x8{left:380.546667pt;}
.x9{left:388.706667pt;}
.x13{left:416.733333pt;}
.x25{left:422.653333pt;}
.x37{left:438.013333pt;}
.x31{left:438.973333pt;}
.x14{left:530.013333pt;}
.x32{left:536.093333pt;}
.x27{left:588.133333pt;}
.x16{left:590.533333pt;}
.x38{left:596.613333pt;}
.x4{left:721.893333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  