
    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_ca9acdc29701bbb83a40a6e4.woff')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_8aba6c5fdf095d4c09d1b382.woff')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_ad4efe24ebac4fecfcebf295.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_424b91223b67bf68920e9207.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2a1854aea0ea13319da53037.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_12a7ff983f400eb56dc7ecd1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cd93d107c740bac4e8cf7faa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.106800px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.153600px;}
.ls4{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.900000px;}
.ls0{letter-spacing:19.620000px;}
.lse{letter-spacing:46.026720px;}
.ls7{letter-spacing:64.170720px;}
.ls8{letter-spacing:80.964000px;}
.ls9{letter-spacing:201.204000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.093600px;}
.ws1{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.833200px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-1.224000px;}
._0{width:1.195200px;}
._a{width:2.256720px;}
._1{width:3.278400px;}
._6{width:4.840560px;}
._d{width:6.215040px;}
._b{width:7.350480px;}
._c{width:8.412480px;}
._8{width:9.434880px;}
._7{width:11.473920px;}
._e{width:12.773760px;}
._9{width:13.804560px;}
._f{width:16.434000px;}
._12{width:17.478720px;}
._5{width:19.123200px;}
._4{width:20.208720px;}
._3{width:21.274560px;}
._10{width:30.708720px;}
._11{width:44.035200px;}
._14{width:61.843680px;}
._17{width:138.366720px;}
._24{width:141.477840px;}
._20{width:157.393920px;}
._1d{width:160.680720px;}
._1a{width:174.007200px;}
._22{width:198.867360px;}
._13{width:201.204000px;}
._15{width:261.169680px;}
._1f{width:265.479840px;}
._1c{width:278.686800px;}
._19{width:313.586640px;}
._16{width:337.869120px;}
._18{width:533.398080px;}
._21{width:601.464720px;}
._1b{width:636.304800px;}
._1e{width:660.775440px;}
._23{width:666.244560px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yab{bottom:3.780000px;}
.y5{bottom:3.960000px;}
.yb0{bottom:11.880000px;}
.ya7{bottom:12.420000px;}
.yad{bottom:20.520000px;}
.yb1{bottom:20.745000px;}
.yaa{bottom:21.060000px;}
.y4{bottom:24.660000px;}
.ya8{bottom:29.700000px;}
.ya9{bottom:38.340000px;}
.yaf{bottom:46.665000px;}
.y45{bottom:63.720000px;}
.ybf{bottom:65.520000px;}
.y82{bottom:73.080000px;}
.y44{bottom:81.180000px;}
.ybe{bottom:82.800000px;}
.y81{bottom:90.720000px;}
.y43{bottom:98.496000px;}
.ybd{bottom:99.936000px;}
.y80{bottom:108.036000px;}
.y42{bottom:115.776000px;}
.ybc{bottom:117.216000px;}
.y7f{bottom:125.316000px;}
.y41{bottom:133.056000px;}
.ybb{bottom:134.136000px;}
.y7e{bottom:142.056000px;}
.y40{bottom:150.330000px;}
.yba{bottom:151.770000px;}
.y7d{bottom:159.690000px;}
.y3f{bottom:167.430000px;}
.yb9{bottom:169.050000px;}
.y7c{bottom:176.610000px;}
.y3e{bottom:184.710000px;}
.yb8{bottom:186.330000px;}
.y7b{bottom:194.250000px;}
.y3d{bottom:201.990000px;}
.yb7{bottom:204.510000px;}
.y7a{bottom:211.530000px;}
.y3c{bottom:219.270000px;}
.yb6{bottom:222.870000px;}
.y79{bottom:228.810000px;}
.y3b{bottom:236.550000px;}
.yb5{bottom:241.230000px;}
.y78{bottom:245.910000px;}
.y3a{bottom:253.830000px;}
.yb4{bottom:259.590000px;}
.y77{bottom:262.830000px;}
.y39{bottom:270.930000px;}
.yb3{bottom:277.590000px;}
.y76{bottom:280.470000px;}
.y38{bottom:288.210000px;}
.yb2{bottom:292.170000px;}
.y75{bottom:297.390000px;}
.y37{bottom:305.490000px;}
.y74{bottom:315.030000px;}
.y36{bottom:322.770000px;}
.y73{bottom:332.310000px;}
.y35{bottom:340.050000px;}
.yae{bottom:343.830000px;}
.y72{bottom:349.410000px;}
.y34{bottom:357.015000px;}
.y71{bottom:366.375000px;}
.y33{bottom:374.475000px;}
.y70{bottom:384.015000px;}
.y32{bottom:391.755000px;}
.yac{bottom:395.715000px;}
.y6f{bottom:400.935000px;}
.y31{bottom:409.035000px;}
.y6e{bottom:418.215000px;}
.y30{bottom:426.315000px;}
.y6d{bottom:435.675000px;}
.y2f{bottom:443.595000px;}
.ya6{bottom:447.375000px;}
.y6c{bottom:452.955000px;}
.y2e{bottom:460.875000px;}
.y6b{bottom:470.235000px;}
.y2d{bottom:477.975000px;}
.y6a{bottom:487.515000px;}
.y2c{bottom:495.255000px;}
.ya5{bottom:503.715000px;}
.y69{bottom:504.795000px;}
.y2b{bottom:512.535000px;}
.ya4{bottom:520.995000px;}
.y68{bottom:522.075000px;}
.y2a{bottom:529.815000px;}
.ya3{bottom:538.095000px;}
.y67{bottom:538.815000px;}
.y29{bottom:547.095000px;}
.ya2{bottom:555.375000px;}
.y66{bottom:556.455000px;}
.y28{bottom:564.195000px;}
.ya1{bottom:572.655000px;}
.y65{bottom:573.735000px;}
.y27{bottom:581.475000px;}
.ya0{bottom:589.935000px;}
.y64{bottom:591.015000px;}
.y26{bottom:598.755000px;}
.y9f{bottom:606.855000px;}
.y63{bottom:608.295000px;}
.y25{bottom:615.675000px;}
.y9e{bottom:624.525000px;}
.y62{bottom:625.605000px;}
.y24{bottom:633.345000px;}
.y9d{bottom:641.625000px;}
.y61{bottom:642.345000px;}
.y23{bottom:650.625000px;}
.y9c{bottom:658.905000px;}
.y60{bottom:659.985000px;}
.y22{bottom:667.725000px;}
.y5f{bottom:677.265000px;}
.y21{bottom:685.005000px;}
.y5e{bottom:694.185000px;}
.y9b{bottom:695.625000px;}
.y20{bottom:702.285000px;}
.y5d{bottom:711.825000px;}
.y9a{bottom:713.985000px;}
.y1f{bottom:719.565000px;}
.y5c{bottom:728.925000px;}
.y99{bottom:731.085000px;}
.y1e{bottom:736.845000px;}
.y5b{bottom:745.845000px;}
.y98{bottom:749.445000px;}
.y1d{bottom:754.125000px;}
.y5a{bottom:763.485000px;}
.y97{bottom:767.805000px;}
.y1c{bottom:771.225000px;}
.y59{bottom:780.765000px;}
.y96{bottom:785.805000px;}
.y1b{bottom:788.505000px;}
.y58{bottom:797.685000px;}
.y95{bottom:803.445000px;}
.y1a{bottom:805.785000px;}
.y57{bottom:815.325000px;}
.y94{bottom:820.725000px;}
.y19{bottom:823.065000px;}
.y56{bottom:832.425000px;}
.y93{bottom:837.825000px;}
.y18{bottom:840.345000px;}
.y55{bottom:849.345000px;}
.y17{bottom:857.625000px;}
.y54{bottom:866.985000px;}
.y92{bottom:872.025000px;}
.y16{bottom:874.770000px;}
.y53{bottom:883.950000px;}
.y91{bottom:889.710000px;}
.y15{bottom:892.050000px;}
.y52{bottom:901.590000px;}
.y90{bottom:906.990000px;}
.y14{bottom:908.970000px;}
.y8f{bottom:924.090000px;}
.y13{bottom:928.230000px;}
.y51{bottom:935.610000px;}
.y8e{bottom:941.370000px;}
.y12{bottom:946.050000px;}
.y50{bottom:953.250000px;}
.y11{bottom:963.330000px;}
.y8d{bottom:975.570000px;}
.y10{bottom:980.610000px;}
.y4f{bottom:987.450000px;}
.y8c{bottom:993.210000px;}
.yf{bottom:997.890000px;}
.y8b{bottom:1010.490000px;}
.ye{bottom:1014.990000px;}
.y4e{bottom:1022.010000px;}
.y8a{bottom:1027.590000px;}
.yd{bottom:1032.270000px;}
.y4d{bottom:1039.470000px;}
.y89{bottom:1044.510000px;}
.yc2{bottom:1044.870000px;}
.yc{bottom:1051.890000px;}
.y4c{bottom:1056.390000px;}
.y88{bottom:1062.150000px;}
.yb{bottom:1068.990000px;}
.y4b{bottom:1074.030000px;}
.y87{bottom:1079.070000px;}
.yc1{bottom:1079.430000px;}
.ya{bottom:1086.270000px;}
.y4a{bottom:1092.390000px;}
.y86{bottom:1096.710000px;}
.y9{bottom:1103.550000px;}
.y49{bottom:1110.750000px;}
.y85{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.y48{bottom:1128.930000px;}
.y84{bottom:1130.730000px;}
.yc0{bottom:1131.090000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1147.320000px;}
.y83{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.y46{bottom:1165.320000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h7{height:41.493516px;}
.h9{height:50.940000px;}
.hb{height:51.156000px;}
.h8{height:51.840000px;}
.h2{height:58.621992px;}
.h4{height:58.651172px;}
.h5{height:60.226875px;}
.h6{height:61.423863px;}
.h3{height:72.562500px;}
.ha{height:102.816000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:71.640000px;}
.w3{width:71.856000px;}
.w4{width:75.420000px;}
.w5{width:144.216000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:12.270000px;}
.x1d{left:15.660000px;}
.x1e{left:20.010000px;}
.x16{left:21.420000px;}
.x17{left:23.400000px;}
.x19{left:25.950000px;}
.x14{left:35.640000px;}
.x1c{left:37.620000px;}
.x5{left:54.000000px;}
.xe{left:81.000000px;}
.x12{left:96.516000px;}
.xd{left:108.036000px;}
.xb{left:220.710000px;}
.x6{left:224.310000px;}
.x9{left:254.010000px;}
.x3{left:256.710000px;}
.x10{left:263.730000px;}
.x2{left:268.770000px;}
.xf{left:270.210000px;}
.x11{left:278.895000px;}
.x13{left:300.315000px;}
.x1{left:309.315000px;}
.x15{left:372.675000px;}
.x8{left:384.195000px;}
.xc{left:388.875000px;}
.xa{left:432.795000px;}
.x18{left:445.035000px;}
.x7{left:464.685000px;}
.x1b{left:517.605000px;}
.x4{left:821.160000px;}
@media print{
.v1{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.136533pt;}
.ls4{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls0{letter-spacing:17.440000pt;}
.lse{letter-spacing:40.912640pt;}
.ls7{letter-spacing:57.040640pt;}
.ls8{letter-spacing:71.968000pt;}
.ls9{letter-spacing:178.848000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.185067pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-1.088000pt;}
._0{width:1.062400pt;}
._a{width:2.005973pt;}
._1{width:2.914133pt;}
._6{width:4.302720pt;}
._d{width:5.524480pt;}
._b{width:6.533760pt;}
._c{width:7.477760pt;}
._8{width:8.386560pt;}
._7{width:10.199040pt;}
._e{width:11.354453pt;}
._9{width:12.270720pt;}
._f{width:14.608000pt;}
._12{width:15.536640pt;}
._5{width:16.998400pt;}
._4{width:17.963307pt;}
._3{width:18.910720pt;}
._10{width:27.296640pt;}
._11{width:39.142400pt;}
._14{width:54.972160pt;}
._17{width:122.992640pt;}
._24{width:125.758080pt;}
._20{width:139.905707pt;}
._1d{width:142.827307pt;}
._1a{width:154.673067pt;}
._22{width:176.770987pt;}
._13{width:178.848000pt;}
._15{width:232.150827pt;}
._1f{width:235.982080pt;}
._1c{width:247.721600pt;}
._19{width:278.743680pt;}
._16{width:300.328107pt;}
._18{width:474.131627pt;}
._21{width:534.635307pt;}
._1b{width:565.604267pt;}
._1e{width:587.355947pt;}
._23{width:592.217387pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:3.360000pt;}
.y5{bottom:3.520000pt;}
.yb0{bottom:10.560000pt;}
.ya7{bottom:11.040000pt;}
.yad{bottom:18.240000pt;}
.yb1{bottom:18.440000pt;}
.yaa{bottom:18.720000pt;}
.y4{bottom:21.920000pt;}
.ya8{bottom:26.400000pt;}
.ya9{bottom:34.080000pt;}
.yaf{bottom:41.480000pt;}
.y45{bottom:56.640000pt;}
.ybf{bottom:58.240000pt;}
.y82{bottom:64.960000pt;}
.y44{bottom:72.160000pt;}
.ybe{bottom:73.600000pt;}
.y81{bottom:80.640000pt;}
.y43{bottom:87.552000pt;}
.ybd{bottom:88.832000pt;}
.y80{bottom:96.032000pt;}
.y42{bottom:102.912000pt;}
.ybc{bottom:104.192000pt;}
.y7f{bottom:111.392000pt;}
.y41{bottom:118.272000pt;}
.ybb{bottom:119.232000pt;}
.y7e{bottom:126.272000pt;}
.y40{bottom:133.626667pt;}
.yba{bottom:134.906667pt;}
.y7d{bottom:141.946667pt;}
.y3f{bottom:148.826667pt;}
.yb9{bottom:150.266667pt;}
.y7c{bottom:156.986667pt;}
.y3e{bottom:164.186667pt;}
.yb8{bottom:165.626667pt;}
.y7b{bottom:172.666667pt;}
.y3d{bottom:179.546667pt;}
.yb7{bottom:181.786667pt;}
.y7a{bottom:188.026667pt;}
.y3c{bottom:194.906667pt;}
.yb6{bottom:198.106667pt;}
.y79{bottom:203.386667pt;}
.y3b{bottom:210.266667pt;}
.yb5{bottom:214.426667pt;}
.y78{bottom:218.586667pt;}
.y3a{bottom:225.626667pt;}
.yb4{bottom:230.746667pt;}
.y77{bottom:233.626667pt;}
.y39{bottom:240.826667pt;}
.yb3{bottom:246.746667pt;}
.y76{bottom:249.306667pt;}
.y38{bottom:256.186667pt;}
.yb2{bottom:259.706667pt;}
.y75{bottom:264.346667pt;}
.y37{bottom:271.546667pt;}
.y74{bottom:280.026667pt;}
.y36{bottom:286.906667pt;}
.y73{bottom:295.386667pt;}
.y35{bottom:302.266667pt;}
.yae{bottom:305.626667pt;}
.y72{bottom:310.586667pt;}
.y34{bottom:317.346667pt;}
.y71{bottom:325.666667pt;}
.y33{bottom:332.866667pt;}
.y70{bottom:341.346667pt;}
.y32{bottom:348.226667pt;}
.yac{bottom:351.746667pt;}
.y6f{bottom:356.386667pt;}
.y31{bottom:363.586667pt;}
.y6e{bottom:371.746667pt;}
.y30{bottom:378.946667pt;}
.y6d{bottom:387.266667pt;}
.y2f{bottom:394.306667pt;}
.ya6{bottom:397.666667pt;}
.y6c{bottom:402.626667pt;}
.y2e{bottom:409.666667pt;}
.y6b{bottom:417.986667pt;}
.y2d{bottom:424.866667pt;}
.y6a{bottom:433.346667pt;}
.y2c{bottom:440.226667pt;}
.ya5{bottom:447.746667pt;}
.y69{bottom:448.706667pt;}
.y2b{bottom:455.586667pt;}
.ya4{bottom:463.106667pt;}
.y68{bottom:464.066667pt;}
.y2a{bottom:470.946667pt;}
.ya3{bottom:478.306667pt;}
.y67{bottom:478.946667pt;}
.y29{bottom:486.306667pt;}
.ya2{bottom:493.666667pt;}
.y66{bottom:494.626667pt;}
.y28{bottom:501.506667pt;}
.ya1{bottom:509.026667pt;}
.y65{bottom:509.986667pt;}
.y27{bottom:516.866667pt;}
.ya0{bottom:524.386667pt;}
.y64{bottom:525.346667pt;}
.y26{bottom:532.226667pt;}
.y9f{bottom:539.426667pt;}
.y63{bottom:540.706667pt;}
.y25{bottom:547.266667pt;}
.y9e{bottom:555.133333pt;}
.y62{bottom:556.093333pt;}
.y24{bottom:562.973333pt;}
.y9d{bottom:570.333333pt;}
.y61{bottom:570.973333pt;}
.y23{bottom:578.333333pt;}
.y9c{bottom:585.693333pt;}
.y60{bottom:586.653333pt;}
.y22{bottom:593.533333pt;}
.y5f{bottom:602.013333pt;}
.y21{bottom:608.893333pt;}
.y5e{bottom:617.053333pt;}
.y9b{bottom:618.333333pt;}
.y20{bottom:624.253333pt;}
.y5d{bottom:632.733333pt;}
.y9a{bottom:634.653333pt;}
.y1f{bottom:639.613333pt;}
.y5c{bottom:647.933333pt;}
.y99{bottom:649.853333pt;}
.y1e{bottom:654.973333pt;}
.y5b{bottom:662.973333pt;}
.y98{bottom:666.173333pt;}
.y1d{bottom:670.333333pt;}
.y5a{bottom:678.653333pt;}
.y97{bottom:682.493333pt;}
.y1c{bottom:685.533333pt;}
.y59{bottom:694.013333pt;}
.y96{bottom:698.493333pt;}
.y1b{bottom:700.893333pt;}
.y58{bottom:709.053333pt;}
.y95{bottom:714.173333pt;}
.y1a{bottom:716.253333pt;}
.y57{bottom:724.733333pt;}
.y94{bottom:729.533333pt;}
.y19{bottom:731.613333pt;}
.y56{bottom:739.933333pt;}
.y93{bottom:744.733333pt;}
.y18{bottom:746.973333pt;}
.y55{bottom:754.973333pt;}
.y17{bottom:762.333333pt;}
.y54{bottom:770.653333pt;}
.y92{bottom:775.133333pt;}
.y16{bottom:777.573333pt;}
.y53{bottom:785.733333pt;}
.y91{bottom:790.853333pt;}
.y15{bottom:792.933333pt;}
.y52{bottom:801.413333pt;}
.y90{bottom:806.213333pt;}
.y14{bottom:807.973333pt;}
.y8f{bottom:821.413333pt;}
.y13{bottom:825.093333pt;}
.y51{bottom:831.653333pt;}
.y8e{bottom:836.773333pt;}
.y12{bottom:840.933333pt;}
.y50{bottom:847.333333pt;}
.y11{bottom:856.293333pt;}
.y8d{bottom:867.173333pt;}
.y10{bottom:871.653333pt;}
.y4f{bottom:877.733333pt;}
.y8c{bottom:882.853333pt;}
.yf{bottom:887.013333pt;}
.y8b{bottom:898.213333pt;}
.ye{bottom:902.213333pt;}
.y4e{bottom:908.453333pt;}
.y8a{bottom:913.413333pt;}
.yd{bottom:917.573333pt;}
.y4d{bottom:923.973333pt;}
.y89{bottom:928.453333pt;}
.yc2{bottom:928.773333pt;}
.yc{bottom:935.013333pt;}
.y4c{bottom:939.013333pt;}
.y88{bottom:944.133333pt;}
.yb{bottom:950.213333pt;}
.y4b{bottom:954.693333pt;}
.y87{bottom:959.173333pt;}
.yc1{bottom:959.493333pt;}
.ya{bottom:965.573333pt;}
.y4a{bottom:971.013333pt;}
.y86{bottom:974.853333pt;}
.y9{bottom:980.933333pt;}
.y49{bottom:987.333333pt;}
.y85{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.y48{bottom:1003.493333pt;}
.y84{bottom:1005.093333pt;}
.yc0{bottom:1005.413333pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1019.840000pt;}
.y83{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.y46{bottom:1035.840000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h7{height:36.883125pt;}
.h9{height:45.280000pt;}
.hb{height:45.472000pt;}
.h8{height:46.080000pt;}
.h2{height:52.108438pt;}
.h4{height:52.134375pt;}
.h5{height:53.535000pt;}
.h6{height:54.598989pt;}
.h3{height:64.500000pt;}
.ha{height:91.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:63.680000pt;}
.w3{width:63.872000pt;}
.w4{width:67.040000pt;}
.w5{width:128.192000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:10.906667pt;}
.x1d{left:13.920000pt;}
.x1e{left:17.786667pt;}
.x16{left:19.040000pt;}
.x17{left:20.800000pt;}
.x19{left:23.066667pt;}
.x14{left:31.680000pt;}
.x1c{left:33.440000pt;}
.x5{left:48.000000pt;}
.xe{left:72.000000pt;}
.x12{left:85.792000pt;}
.xd{left:96.032000pt;}
.xb{left:196.186667pt;}
.x6{left:199.386667pt;}
.x9{left:225.786667pt;}
.x3{left:228.186667pt;}
.x10{left:234.426667pt;}
.x2{left:238.906667pt;}
.xf{left:240.186667pt;}
.x11{left:247.906667pt;}
.x13{left:266.946667pt;}
.x1{left:274.946667pt;}
.x15{left:331.266667pt;}
.x8{left:341.506667pt;}
.xc{left:345.666667pt;}
.xa{left:384.706667pt;}
.x18{left:395.586667pt;}
.x7{left:413.053333pt;}
.x1b{left:460.093333pt;}
.x4{left:729.920000pt;}
}




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