
    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_cb1768598bd7a28545b37410.woff2')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_33751d034a618e16eb47a10b.woff2')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_983ad5ad7d9796c6b287bcb9.woff2')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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_25761909387a4feabf5b765b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5b23509d73ebf198dcef62cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_7cd8cff431fe5d88973006cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_d267b4e8c0cade2aec31990b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_5cbc206f7419c4564f7ed9c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls7{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.216000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls9{letter-spacing:2.160000px;}
.ls11{letter-spacing:5.040000px;}
.ls2{letter-spacing:8.640000px;}
.lsd{letter-spacing:9.360000px;}
.lsb{letter-spacing:15.840000px;}
.ls12{letter-spacing:18.144000px;}
.lsa{letter-spacing:28.080000px;}
.lsc{letter-spacing:32.400000px;}
.lse{letter-spacing:49.680000px;}
.ls3{letter-spacing:51.840000px;}
.lsf{letter-spacing:54.144000px;}
.ls1{letter-spacing:59.309760px;}
.ls0{letter-spacing:93.029760px;}
.ls4{letter-spacing:138.960000px;}
.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;}
}
.ws1{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-12.257280px;}
._4{margin-left:-8.618400px;}
._1{margin-left:-6.990480px;}
._5{margin-left:-4.692240px;}
._7{margin-left:-3.660000px;}
._2{margin-left:-2.585520px;}
._0{margin-left:-1.188000px;}
._3{width:1.226880px;}
._1b{width:2.340480px;}
._22{width:3.456000px;}
._16{width:4.680000px;}
._17{width:5.682240px;}
._2d{width:6.996000px;}
._f{width:8.340000px;}
._e{width:9.648000px;}
._1f{width:10.944000px;}
._15{width:12.852000px;}
._14{width:14.400000px;}
._1a{width:16.344000px;}
._1d{width:19.728000px;}
._1e{width:20.736000px;}
._20{width:22.680000px;}
._2a{width:24.048000px;}
._1c{width:25.200000px;}
._9{width:26.580000px;}
._8{width:27.624000px;}
._12{width:29.016000px;}
._23{width:30.672000px;}
._26{width:32.076000px;}
._25{width:33.120000px;}
._28{width:34.158240px;}
._30{width:35.784000px;}
._31{width:36.797760px;}
._32{width:38.160000px;}
._27{width:39.384000px;}
._2e{width:40.392000px;}
._2b{width:44.856000px;}
._2f{width:45.861120px;}
._21{width:46.920000px;}
._33{width:47.952000px;}
._29{width:48.960000px;}
._a{width:50.184000px;}
._b{width:51.192000px;}
._11{width:52.248000px;}
._24{width:53.442240px;}
._36{width:55.584000px;}
._2c{width:57.600000px;}
._19{width:58.896000px;}
._10{width:59.976000px;}
._c{width:61.848000px;}
._d{width:63.072000px;}
._34{width:90.000000px;}
._35{width:91.368000px;}
._13{width:94.248000px;}
._18{width:138.384000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc5{color:rgb(10,10,10);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,56,100);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:6.120000px;}
.y70{bottom:6.300000px;}
.y68{bottom:7.740000px;}
.y5{bottom:10.260000px;}
.y6{bottom:11.340000px;}
.y7b{bottom:11.880000px;}
.y6a{bottom:14.760000px;}
.y81{bottom:18.000000px;}
.y74{bottom:28.440000px;}
.y72{bottom:28.650000px;}
.y7e{bottom:28.800000px;}
.y7c{bottom:30.420000px;}
.y7f{bottom:30.960000px;}
.y79{bottom:32.220000px;}
.y78{bottom:50.760000px;}
.y7{bottom:55.440000px;}
.y4{bottom:57.600000px;}
.y5c{bottom:115.416000px;}
.y96{bottom:115.776000px;}
.y32{bottom:116.136000px;}
.y66{bottom:127.656000px;}
.y5b{bottom:139.176000px;}
.y95{bottom:139.536000px;}
.y31{bottom:139.896000px;}
.y65{bottom:151.410000px;}
.y5a{bottom:162.930000px;}
.y94{bottom:163.290000px;}
.y30{bottom:163.650000px;}
.y64{bottom:175.170000px;}
.y59{bottom:186.690000px;}
.y93{bottom:187.230000px;}
.y2f{bottom:187.590000px;}
.y63{bottom:199.110000px;}
.y58{bottom:210.630000px;}
.y92{bottom:210.990000px;}
.y2e{bottom:211.350000px;}
.y62{bottom:222.870000px;}
.y57{bottom:234.390000px;}
.y91{bottom:234.750000px;}
.y2d{bottom:235.110000px;}
.y61{bottom:246.630000px;}
.y56{bottom:258.150000px;}
.y90{bottom:258.510000px;}
.y2c{bottom:258.870000px;}
.y60{bottom:270.390000px;}
.y55{bottom:281.910000px;}
.y8f{bottom:282.270000px;}
.y2b{bottom:282.810000px;}
.y5f{bottom:294.330000px;}
.y54{bottom:305.850000px;}
.y8e{bottom:306.210000px;}
.y2a{bottom:306.570000px;}
.y53{bottom:329.610000px;}
.y8d{bottom:329.970000px;}
.y29{bottom:330.330000px;}
.y5e{bottom:330.510000px;}
.y52{bottom:353.415000px;}
.y8c{bottom:353.775000px;}
.y28{bottom:354.135000px;}
.y5d{bottom:366.195000px;}
.y51{bottom:377.175000px;}
.y8b{bottom:377.535000px;}
.y27{bottom:378.075000px;}
.y7d{bottom:383.115000px;}
.y80{bottom:383.295000px;}
.y7a{bottom:384.555000px;}
.y50{bottom:401.115000px;}
.y8a{bottom:401.475000px;}
.y26{bottom:401.835000px;}
.y4f{bottom:424.875000px;}
.y89{bottom:425.235000px;}
.y25{bottom:425.595000px;}
.y4e{bottom:448.635000px;}
.y88{bottom:448.995000px;}
.y24{bottom:449.355000px;}
.y4d{bottom:472.395000px;}
.y87{bottom:472.755000px;}
.y23{bottom:473.115000px;}
.y77{bottom:475.815000px;}
.y4c{bottom:496.335000px;}
.y86{bottom:496.695000px;}
.y22{bottom:497.055000px;}
.y73{bottom:515.955000px;}
.y4b{bottom:520.095000px;}
.y85{bottom:520.455000px;}
.y21{bottom:520.815000px;}
.y4a{bottom:543.855000px;}
.y84{bottom:544.215000px;}
.y20{bottom:544.575000px;}
.y76{bottom:565.275000px;}
.y49{bottom:567.615000px;}
.y83{bottom:567.975000px;}
.y1f{bottom:568.335000px;}
.y71{bottom:584.175000px;}
.y48{bottom:591.555000px;}
.y82{bottom:591.915000px;}
.y1e{bottom:592.275000px;}
.y75{bottom:607.785000px;}
.y47{bottom:615.705000px;}
.y1d{bottom:616.065000px;}
.y46{bottom:639.465000px;}
.y1c{bottom:639.825000px;}
.y6f{bottom:650.265000px;}
.y45{bottom:663.225000px;}
.y1b{bottom:663.585000px;}
.y44{bottom:687.165000px;}
.y1a{bottom:687.525000px;}
.y6e{bottom:692.745000px;}
.y43{bottom:710.925000px;}
.y19{bottom:711.285000px;}
.y42{bottom:734.685000px;}
.y18{bottom:735.045000px;}
.y6d{bottom:735.225000px;}
.y41{bottom:758.445000px;}
.y17{bottom:758.805000px;}
.y6b{bottom:776.805000px;}
.y40{bottom:782.385000px;}
.y16{bottom:782.745000px;}
.y3f{bottom:806.145000px;}
.y15{bottom:806.505000px;}
.y3e{bottom:829.905000px;}
.y14{bottom:830.265000px;}
.y69{bottom:838.725000px;}
.y3d{bottom:853.665000px;}
.y13{bottom:854.025000px;}
.y3c{bottom:877.470000px;}
.y12{bottom:878.010000px;}
.y3b{bottom:901.410000px;}
.y11{bottom:901.770000px;}
.y67{bottom:909.870000px;}
.y3a{bottom:925.170000px;}
.y10{bottom:925.530000px;}
.y39{bottom:948.930000px;}
.yf{bottom:949.290000px;}
.y38{bottom:972.690000px;}
.ye{bottom:973.050000px;}
.y37{bottom:996.630000px;}
.yd{bottom:996.990000px;}
.yc{bottom:1020.750000px;}
.yb{bottom:1044.510000px;}
.y36{bottom:1068.270000px;}
.ya{bottom:1070.790000px;}
.y35{bottom:1092.210000px;}
.y9{bottom:1102.470000px;}
.y34{bottom:1115.970000px;}
.y8{bottom:1134.150000px;}
.y33{bottom:1139.760000px;}
.y3{bottom:1185.120000px;}
.y2{bottom:1200.780000px;}
.y1{bottom:1216.260000px;}
.h6{height:4.021875px;}
.he{height:20.160000px;}
.hf{height:20.340000px;}
.ha{height:21.780000px;}
.h3{height:27.036000px;}
.hc{height:28.800000px;}
.h2{height:38.100586px;}
.hd{height:41.726953px;}
.hb{height:42.164648px;}
.h11{height:42.480000px;}
.h10{height:42.696000px;}
.h4{height:50.273438px;}
.h8{height:50.800781px;}
.h16{height:52.417969px;}
.h9{height:52.628906px;}
.h12{height:64.800000px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h13{height:108.180000px;}
.h15{height:110.880000px;}
.h14{height:111.060000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:31.860000px;}
.wd{width:32.040000px;}
.we{width:33.300000px;}
.wb{width:57.960000px;}
.w4{width:105.516000px;}
.wa{width:252.390000px;}
.w9{width:254.910000px;}
.w7{width:256.350000px;}
.w8{width:257.250000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w6{width:374.115000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x28{left:14.214000px;}
.x1d{left:22.140000px;}
.x25{left:33.660000px;}
.x18{left:49.680000px;}
.x1c{left:60.120000px;}
.x1b{left:65.520000px;}
.x19{left:68.400000px;}
.x1a{left:77.220000px;}
.x1f{left:80.460000px;}
.x23{left:83.880000px;}
.x21{left:86.400000px;}
.x4{left:87.660000px;}
.x22{left:91.080000px;}
.x9{left:95.795987px;}
.x26{left:98.280000px;}
.x1{left:99.395987px;}
.x20{left:103.320000px;}
.x16{left:108.180000px;}
.x2{left:122.615987px;}
.x2c{left:127.835987px;}
.xa{left:133.055987px;}
.xe{left:143.495987px;}
.x27{left:146.556000px;}
.xf{left:148.175987px;}
.x17{left:162.750000px;}
.x10{left:172.289987px;}
.xb{left:189.569987px;}
.x29{left:241.770000px;}
.x15{left:284.295000px;}
.x11{left:295.814987px;}
.x5{left:297.795000px;}
.x2a{left:308.595000px;}
.x14{left:351.434987px;}
.xc{left:357.914987px;}
.x2b{left:375.555000px;}
.x3{left:378.434987px;}
.x6{left:393.915000px;}
.xd{left:446.474987px;}
.x13{left:478.544987px;}
.x1e{left:499.065000px;}
.x8{left:500.145000px;}
.x24{left:501.405000px;}
.x12{left:797.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls11{letter-spacing:4.480000pt;}
.ls2{letter-spacing:7.680000pt;}
.lsd{letter-spacing:8.320000pt;}
.lsb{letter-spacing:14.080000pt;}
.ls12{letter-spacing:16.128000pt;}
.lsa{letter-spacing:24.960000pt;}
.lsc{letter-spacing:28.800000pt;}
.lse{letter-spacing:44.160000pt;}
.ls3{letter-spacing:46.080000pt;}
.lsf{letter-spacing:48.128000pt;}
.ls1{letter-spacing:52.719787pt;}
.ls0{letter-spacing:82.693120pt;}
.ls4{letter-spacing:123.520000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-10.895360pt;}
._4{margin-left:-7.660800pt;}
._1{margin-left:-6.213760pt;}
._5{margin-left:-4.170880pt;}
._7{margin-left:-3.253333pt;}
._2{margin-left:-2.298240pt;}
._0{margin-left:-1.056000pt;}
._3{width:1.090560pt;}
._1b{width:2.080427pt;}
._22{width:3.072000pt;}
._16{width:4.160000pt;}
._17{width:5.050880pt;}
._2d{width:6.218667pt;}
._f{width:7.413333pt;}
._e{width:8.576000pt;}
._1f{width:9.728000pt;}
._15{width:11.424000pt;}
._14{width:12.800000pt;}
._1a{width:14.528000pt;}
._1d{width:17.536000pt;}
._1e{width:18.432000pt;}
._20{width:20.160000pt;}
._2a{width:21.376000pt;}
._1c{width:22.400000pt;}
._9{width:23.626667pt;}
._8{width:24.554667pt;}
._12{width:25.792000pt;}
._23{width:27.264000pt;}
._26{width:28.512000pt;}
._25{width:29.440000pt;}
._28{width:30.362880pt;}
._30{width:31.808000pt;}
._31{width:32.709120pt;}
._32{width:33.920000pt;}
._27{width:35.008000pt;}
._2e{width:35.904000pt;}
._2b{width:39.872000pt;}
._2f{width:40.765440pt;}
._21{width:41.706667pt;}
._33{width:42.624000pt;}
._29{width:43.520000pt;}
._a{width:44.608000pt;}
._b{width:45.504000pt;}
._11{width:46.442667pt;}
._24{width:47.504213pt;}
._36{width:49.408000pt;}
._2c{width:51.200000pt;}
._19{width:52.352000pt;}
._10{width:53.312000pt;}
._c{width:54.976000pt;}
._d{width:56.064000pt;}
._34{width:80.000000pt;}
._35{width:81.216000pt;}
._13{width:83.776000pt;}
._18{width:123.008000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:5.440000pt;}
.y70{bottom:5.600000pt;}
.y68{bottom:6.880000pt;}
.y5{bottom:9.120000pt;}
.y6{bottom:10.080000pt;}
.y7b{bottom:10.560000pt;}
.y6a{bottom:13.120000pt;}
.y81{bottom:16.000000pt;}
.y74{bottom:25.280000pt;}
.y72{bottom:25.466667pt;}
.y7e{bottom:25.600000pt;}
.y7c{bottom:27.040000pt;}
.y7f{bottom:27.520000pt;}
.y79{bottom:28.640000pt;}
.y78{bottom:45.120000pt;}
.y7{bottom:49.280000pt;}
.y4{bottom:51.200000pt;}
.y5c{bottom:102.592000pt;}
.y96{bottom:102.912000pt;}
.y32{bottom:103.232000pt;}
.y66{bottom:113.472000pt;}
.y5b{bottom:123.712000pt;}
.y95{bottom:124.032000pt;}
.y31{bottom:124.352000pt;}
.y65{bottom:134.586667pt;}
.y5a{bottom:144.826667pt;}
.y94{bottom:145.146667pt;}
.y30{bottom:145.466667pt;}
.y64{bottom:155.706667pt;}
.y59{bottom:165.946667pt;}
.y93{bottom:166.426667pt;}
.y2f{bottom:166.746667pt;}
.y63{bottom:176.986667pt;}
.y58{bottom:187.226667pt;}
.y92{bottom:187.546667pt;}
.y2e{bottom:187.866667pt;}
.y62{bottom:198.106667pt;}
.y57{bottom:208.346667pt;}
.y91{bottom:208.666667pt;}
.y2d{bottom:208.986667pt;}
.y61{bottom:219.226667pt;}
.y56{bottom:229.466667pt;}
.y90{bottom:229.786667pt;}
.y2c{bottom:230.106667pt;}
.y60{bottom:240.346667pt;}
.y55{bottom:250.586667pt;}
.y8f{bottom:250.906667pt;}
.y2b{bottom:251.386667pt;}
.y5f{bottom:261.626667pt;}
.y54{bottom:271.866667pt;}
.y8e{bottom:272.186667pt;}
.y2a{bottom:272.506667pt;}
.y53{bottom:292.986667pt;}
.y8d{bottom:293.306667pt;}
.y29{bottom:293.626667pt;}
.y5e{bottom:293.786667pt;}
.y52{bottom:314.146667pt;}
.y8c{bottom:314.466667pt;}
.y28{bottom:314.786667pt;}
.y5d{bottom:325.506667pt;}
.y51{bottom:335.266667pt;}
.y8b{bottom:335.586667pt;}
.y27{bottom:336.066667pt;}
.y7d{bottom:340.546667pt;}
.y80{bottom:340.706667pt;}
.y7a{bottom:341.826667pt;}
.y50{bottom:356.546667pt;}
.y8a{bottom:356.866667pt;}
.y26{bottom:357.186667pt;}
.y4f{bottom:377.666667pt;}
.y89{bottom:377.986667pt;}
.y25{bottom:378.306667pt;}
.y4e{bottom:398.786667pt;}
.y88{bottom:399.106667pt;}
.y24{bottom:399.426667pt;}
.y4d{bottom:419.906667pt;}
.y87{bottom:420.226667pt;}
.y23{bottom:420.546667pt;}
.y77{bottom:422.946667pt;}
.y4c{bottom:441.186667pt;}
.y86{bottom:441.506667pt;}
.y22{bottom:441.826667pt;}
.y73{bottom:458.626667pt;}
.y4b{bottom:462.306667pt;}
.y85{bottom:462.626667pt;}
.y21{bottom:462.946667pt;}
.y4a{bottom:483.426667pt;}
.y84{bottom:483.746667pt;}
.y20{bottom:484.066667pt;}
.y76{bottom:502.466667pt;}
.y49{bottom:504.546667pt;}
.y83{bottom:504.866667pt;}
.y1f{bottom:505.186667pt;}
.y71{bottom:519.266667pt;}
.y48{bottom:525.826667pt;}
.y82{bottom:526.146667pt;}
.y1e{bottom:526.466667pt;}
.y75{bottom:540.253333pt;}
.y47{bottom:547.293333pt;}
.y1d{bottom:547.613333pt;}
.y46{bottom:568.413333pt;}
.y1c{bottom:568.733333pt;}
.y6f{bottom:578.013333pt;}
.y45{bottom:589.533333pt;}
.y1b{bottom:589.853333pt;}
.y44{bottom:610.813333pt;}
.y1a{bottom:611.133333pt;}
.y6e{bottom:615.773333pt;}
.y43{bottom:631.933333pt;}
.y19{bottom:632.253333pt;}
.y42{bottom:653.053333pt;}
.y18{bottom:653.373333pt;}
.y6d{bottom:653.533333pt;}
.y41{bottom:674.173333pt;}
.y17{bottom:674.493333pt;}
.y6b{bottom:690.493333pt;}
.y40{bottom:695.453333pt;}
.y16{bottom:695.773333pt;}
.y3f{bottom:716.573333pt;}
.y15{bottom:716.893333pt;}
.y3e{bottom:737.693333pt;}
.y14{bottom:738.013333pt;}
.y69{bottom:745.533333pt;}
.y3d{bottom:758.813333pt;}
.y13{bottom:759.133333pt;}
.y3c{bottom:779.973333pt;}
.y12{bottom:780.453333pt;}
.y3b{bottom:801.253333pt;}
.y11{bottom:801.573333pt;}
.y67{bottom:808.773333pt;}
.y3a{bottom:822.373333pt;}
.y10{bottom:822.693333pt;}
.y39{bottom:843.493333pt;}
.yf{bottom:843.813333pt;}
.y38{bottom:864.613333pt;}
.ye{bottom:864.933333pt;}
.y37{bottom:885.893333pt;}
.yd{bottom:886.213333pt;}
.yc{bottom:907.333333pt;}
.yb{bottom:928.453333pt;}
.y36{bottom:949.573333pt;}
.ya{bottom:951.813333pt;}
.y35{bottom:970.853333pt;}
.y9{bottom:979.973333pt;}
.y34{bottom:991.973333pt;}
.y8{bottom:1008.133333pt;}
.y33{bottom:1013.120000pt;}
.y3{bottom:1053.440000pt;}
.y2{bottom:1067.360000pt;}
.y1{bottom:1081.120000pt;}
.h6{height:3.575000pt;}
.he{height:17.920000pt;}
.hf{height:18.080000pt;}
.ha{height:19.360000pt;}
.h3{height:24.032000pt;}
.hc{height:25.600000pt;}
.h2{height:33.867188pt;}
.hd{height:37.090625pt;}
.hb{height:37.479688pt;}
.h11{height:37.760000pt;}
.h10{height:37.952000pt;}
.h4{height:44.687500pt;}
.h8{height:45.156250pt;}
.h16{height:46.593750pt;}
.h9{height:46.781250pt;}
.h12{height:57.600000pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h13{height:96.160000pt;}
.h15{height:98.560000pt;}
.h14{height:98.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:28.320000pt;}
.wd{width:28.480000pt;}
.we{width:29.600000pt;}
.wb{width:51.520000pt;}
.w4{width:93.792000pt;}
.wa{width:224.346667pt;}
.w9{width:226.586667pt;}
.w7{width:227.866667pt;}
.w8{width:228.666667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w6{width:332.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x28{left:12.634667pt;}
.x1d{left:19.680000pt;}
.x25{left:29.920000pt;}
.x18{left:44.160000pt;}
.x1c{left:53.440000pt;}
.x1b{left:58.240000pt;}
.x19{left:60.800000pt;}
.x1a{left:68.640000pt;}
.x1f{left:71.520000pt;}
.x23{left:74.560000pt;}
.x21{left:76.800000pt;}
.x4{left:77.920000pt;}
.x22{left:80.960000pt;}
.x9{left:85.151988pt;}
.x26{left:87.360000pt;}
.x1{left:88.351988pt;}
.x20{left:91.840000pt;}
.x16{left:96.160000pt;}
.x2{left:108.991988pt;}
.x2c{left:113.631988pt;}
.xa{left:118.271988pt;}
.xe{left:127.551988pt;}
.x27{left:130.272000pt;}
.xf{left:131.711988pt;}
.x17{left:144.666667pt;}
.x10{left:153.146655pt;}
.xb{left:168.506655pt;}
.x29{left:214.906667pt;}
.x15{left:252.706667pt;}
.x11{left:262.946655pt;}
.x5{left:264.706667pt;}
.x2a{left:274.306667pt;}
.x14{left:312.386655pt;}
.xc{left:318.146655pt;}
.x2b{left:333.826667pt;}
.x3{left:336.386655pt;}
.x6{left:350.146667pt;}
.xd{left:396.866655pt;}
.x13{left:425.373322pt;}
.x1e{left:443.613333pt;}
.x8{left:444.573333pt;}
.x24{left:445.693333pt;}
.x12{left:708.773322pt;}
}




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