
    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_03139db3ea1b94f02cb86149.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_b358b456f5ccc8610f7f81e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_7da1de35c74d49c915e4b090.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_49c12d6dcca0c8fe01a2c707.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_f941dc708e4517a7afe7903b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_fc1766ec211a3355060e6ed6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_a9c0bb585c20701ad899f24c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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.246391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246391,0.000000,0.000000,0.250000,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;}
.ls30{letter-spacing:-3.600000px;}
.ls2f{letter-spacing:-0.280800px;}
.ls8{letter-spacing:-0.122400px;}
.lsa{letter-spacing:-0.115200px;}
.lsf{letter-spacing:-0.108000px;}
.ls29{letter-spacing:-0.100800px;}
.ls28{letter-spacing:-0.086400px;}
.ls12{letter-spacing:-0.079200px;}
.lsc{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.061560px;}
.ls1d{letter-spacing:-0.057600px;}
.lse{letter-spacing:-0.050400px;}
.ls11{letter-spacing:-0.043200px;}
.ls9{letter-spacing:-0.036000px;}
.ls1e{letter-spacing:-0.028800px;}
.ls27{letter-spacing:-0.021600px;}
.lsb{letter-spacing:-0.014400px;}
.lsd{letter-spacing:-0.007200px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.007200px;}
.ls14{letter-spacing:0.014400px;}
.ls3{letter-spacing:0.016776px;}
.ls13{letter-spacing:0.021600px;}
.ls1a{letter-spacing:0.028800px;}
.ls2{letter-spacing:0.033552px;}
.ls19{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.043200px;}
.ls15{letter-spacing:0.050400px;}
.ls18{letter-spacing:0.057600px;}
.ls24{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.067104px;}
.ls26{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.079200px;}
.ls1{letter-spacing:0.083880px;}
.ls4{letter-spacing:0.085644px;}
.ls16{letter-spacing:0.086400px;}
.ls1b{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.115200px;}
.ls22{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.151200px;}
.ls0{letter-spacing:0.158400px;}
.ls20{letter-spacing:0.331200px;}
.ls21{letter-spacing:0.360000px;}
.ls1f{letter-spacing:8.553600px;}
.ls32{letter-spacing:12.168000px;}
.ls2e{letter-spacing:27.864000px;}
.ls2d{letter-spacing:32.184000px;}
.ls2b{letter-spacing:33.984000px;}
.ls31{letter-spacing:54.864000px;}
.ls23{letter-spacing:63.864000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.086400px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.935200px;}
.ws0{word-spacing:-0.151524px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-13.118400px;}
._21{margin-left:-11.894400px;}
._2{margin-left:-9.849600px;}
._14{margin-left:-8.316000px;}
._3{margin-left:-7.272000px;}
._15{margin-left:-5.040000px;}
._4{margin-left:-3.830400px;}
._0{margin-left:-2.520000px;}
._5{margin-left:-1.124208px;}
._1{width:1.224000px;}
._d{width:2.565216px;}
._6{width:3.643200px;}
._a{width:4.996800px;}
._9{width:6.098400px;}
._17{width:7.200000px;}
._13{width:8.265600px;}
._12{width:9.295200px;}
._8{width:10.987200px;}
._7{width:12.168000px;}
._11{width:13.708800px;}
._1e{width:15.148800px;}
._1d{width:16.516800px;}
._20{width:20.116800px;}
._1b{width:28.526400px;}
._b{width:29.649600px;}
._c{width:30.931200px;}
._16{width:32.349600px;}
._18{width:39.412800px;}
._f{width:40.435200px;}
._10{width:42.696000px;}
._e{width:47.577600px;}
._19{width:63.720000px;}
._1f{width:65.088000px;}
._1a{width:89.784000px;}
._1c{width:228.528000px;}
.fc1{color:rgb(88,88,90);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:20.880000px;}
.fs1{font-size:60.120000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs9{font-size:87.120000px;}
.fs6{font-size:92.880000px;}
.fs3{font-size:101.880000px;}
.fs5{font-size:123.120000px;}
.y0{bottom:0.000000px;}
.y45{bottom:30.180450px;}
.y68{bottom:46.650450px;}
.y44{bottom:70.230450px;}
.y67{bottom:77.700450px;}
.y43{bottom:101.280450px;}
.y66{bottom:108.750450px;}
.y42{bottom:132.330450px;}
.y65{bottom:143.850450px;}
.y41{bottom:163.380450px;}
.y64{bottom:174.990450px;}
.y40{bottom:203.430450px;}
.y63{bottom:206.040450px;}
.y3f{bottom:234.480450px;}
.y62{bottom:237.180450px;}
.y19{bottom:237.360450px;}
.y18{bottom:257.790657px;}
.y3e{bottom:265.530450px;}
.y61{bottom:268.230450px;}
.y17{bottom:275.070648px;}
.y16{bottom:292.350639px;}
.y60{bottom:299.370450px;}
.y3d{bottom:305.580450px;}
.y15{bottom:309.540450px;}
.y5f{bottom:330.510450px;}
.y3c{bottom:336.630450px;}
.y14{bottom:342.300450px;}
.y5e{bottom:361.650450px;}
.y3b{bottom:367.680450px;}
.y13{bottom:378.480450px;}
.y86{bottom:386.490450px;}
.y5d{bottom:392.790450px;}
.y3a{bottom:398.730450px;}
.y12{bottom:414.660450px;}
.y85{bottom:416.640450px;}
.y5c{bottom:423.840450px;}
.y39{bottom:438.780450px;}
.y84{bottom:447.690450px;}
.y11{bottom:450.930450px;}
.y5b{bottom:454.800450px;}
.y38{bottom:469.830450px;}
.y83{bottom:478.740450px;}
.y10{bottom:486.390450px;}
.y5a{bottom:486.930450px;}
.y37{bottom:500.880450px;}
.y82{bottom:509.790450px;}
.yf{bottom:522.660450px;}
.y59{bottom:528.330450px;}
.y36{bottom:531.930450px;}
.y81{bottom:540.840450px;}
.ye{bottom:558.210450px;}
.y80{bottom:562.260450px;}
.y35{bottom:562.980450px;}
.y58{bottom:569.550450px;}
.y7f{bottom:587.280450px;}
.yd{bottom:593.760450px;}
.y34{bottom:593.940450px;}
.y57{bottom:600.600450px;}
.yc{bottom:615.900450px;}
.y7e{bottom:618.330450px;}
.y56{bottom:632.100450px;}
.y33{bottom:633.990450px;}
.yb{bottom:644.070450px;}
.y7d{bottom:649.290450px;}
.ya{bottom:664.680450px;}
.y32{bottom:665.040450px;}
.y95{bottom:675.570450px;}
.y55{bottom:678.450450px;}
.y7c{bottom:680.790450px;}
.y31{bottom:696.090450px;}
.y9{bottom:701.490450px;}
.y94{bottom:706.890450px;}
.y54{bottom:709.500450px;}
.y7b{bottom:711.840450px;}
.y30{bottom:727.140450px;}
.y8{bottom:737.040450px;}
.y93{bottom:737.130450px;}
.y53{bottom:740.550450px;}
.y7a{bottom:742.890450px;}
.y2f{bottom:758.190450px;}
.y92{bottom:768.540450px;}
.y52{bottom:771.600450px;}
.y79{bottom:773.940450px;}
.y7{bottom:777.720450px;}
.y91{bottom:798.780450px;}
.y2e{bottom:799.950450px;}
.y78{bottom:804.990450px;}
.y51{bottom:811.650450px;}
.y6{bottom:813.270450px;}
.y77{bottom:826.410450px;}
.y90{bottom:830.190450px;}
.y2d{bottom:831.000450px;}
.y5{bottom:839.100450px;}
.y50{bottom:842.700450px;}
.y76{bottom:850.980450px;}
.y4{bottom:859.260126px;}
.y8f{bottom:860.430450px;}
.y2c{bottom:862.050450px;}
.y4f{bottom:873.660450px;}
.y3{bottom:876.540117px;}
.y8e{bottom:890.670450px;}
.y2b{bottom:893.100450px;}
.y4e{bottom:894.810450px;}
.y75{bottom:897.420450px;}
.y4d{bottom:915.510450px;}
.y21{bottom:918.300450px;}
.y8d{bottom:922.080450px;}
.y2a{bottom:924.150450px;}
.y74{bottom:928.470450px;}
.y2{bottom:943.590450px;}
.y4c{bottom:946.200450px;}
.y20{bottom:951.689829px;}
.y8c{bottom:952.320450px;}
.y29{bottom:955.200450px;}
.y73{bottom:974.820450px;}
.y4b{bottom:977.070450px;}
.y8b{bottom:983.730450px;}
.y28{bottom:986.250450px;}
.y1f{bottom:1003.890450px;}
.y72{bottom:1005.870450px;}
.y4a{bottom:1012.080450px;}
.y6c{bottom:1012.170450px;}
.y8a{bottom:1015.230450px;}
.y27{bottom:1017.300450px;}
.y71{bottom:1036.920450px;}
.y6b{bottom:1043.220450px;}
.y89{bottom:1046.730450px;}
.y49{bottom:1047.090450px;}
.y26{bottom:1048.350450px;}
.y1e{bottom:1055.010450px;}
.y70{bottom:1058.250450px;}
.y25{bottom:1070.490450px;}
.y6a{bottom:1074.270450px;}
.y88{bottom:1076.880450px;}
.y1d{bottom:1079.580450px;}
.y48{bottom:1082.370450px;}
.y6f{bottom:1082.640450px;}
.y87{bottom:1098.570450px;}
.y24{bottom:1098.660450px;}
.y6e{bottom:1103.340450px;}
.y1c{bottom:1106.400450px;}
.y69{bottom:1109.370450px;}
.y47{bottom:1113.420450px;}
.y23{bottom:1119.360450px;}
.y6d{bottom:1123.770450px;}
.y22{bottom:1140.060450px;}
.y46{bottom:1144.470450px;}
.y1b{bottom:1145.910450px;}
.y1{bottom:1157.610450px;}
.y1a{bottom:1179.120450px;}
.h1{height:18.320977px;}
.hd{height:43.909277px;}
.h2{height:52.751777px;}
.ha{height:60.648750px;}
.he{height:61.391250px;}
.h3{height:63.175781px;}
.h4{height:63.949219px;}
.h8{height:73.599785px;}
.h6{height:74.500840px;}
.hc{height:76.442695px;}
.hb{height:77.378555px;}
.h9{height:81.496758px;}
.h5{height:90.488145px;}
.h7{height:108.030586px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:110.970000px;}
.x10{left:120.330000px;}
.x1d{left:126.000000px;}
.x1b{left:127.530000px;}
.x18{left:129.060000px;}
.x1c{left:146.970000px;}
.x1a{left:154.530000px;}
.x16{left:156.060000px;}
.x11{left:157.500000px;}
.xe{left:160.740000px;}
.x14{left:162.630729px;}
.x19{left:173.970000px;}
.x17{left:182.160000px;}
.x4{left:189.990000px;}
.x3{left:252.630000px;}
.x15{left:274.680000px;}
.x5{left:278.190000px;}
.xa{left:307.440000px;}
.xc{left:310.500000px;}
.x9{left:321.660000px;}
.xb{left:337.950000px;}
.x6{left:351.990000px;}
.x13{left:353.880000px;}
.xd{left:358.020000px;}
.x8{left:360.630000px;}
.x7{left:364.320000px;}
.xf{left:447.390000px;}
.x12{left:737.280000px;}
.x2{left:775.979850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls30{letter-spacing:-3.200000pt;}
.ls2f{letter-spacing:-0.249600pt;}
.ls8{letter-spacing:-0.108800pt;}
.lsa{letter-spacing:-0.102400pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls29{letter-spacing:-0.089600pt;}
.ls28{letter-spacing:-0.076800pt;}
.ls12{letter-spacing:-0.070400pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.054720pt;}
.ls1d{letter-spacing:-0.051200pt;}
.lse{letter-spacing:-0.044800pt;}
.ls11{letter-spacing:-0.038400pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls1e{letter-spacing:-0.025600pt;}
.ls27{letter-spacing:-0.019200pt;}
.lsb{letter-spacing:-0.012800pt;}
.lsd{letter-spacing:-0.006400pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.006400pt;}
.ls14{letter-spacing:0.012800pt;}
.ls3{letter-spacing:0.014912pt;}
.ls13{letter-spacing:0.019200pt;}
.ls1a{letter-spacing:0.025600pt;}
.ls2{letter-spacing:0.029824pt;}
.ls19{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.038400pt;}
.ls15{letter-spacing:0.044800pt;}
.ls18{letter-spacing:0.051200pt;}
.ls24{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.059648pt;}
.ls26{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.070400pt;}
.ls1{letter-spacing:0.074560pt;}
.ls4{letter-spacing:0.076128pt;}
.ls16{letter-spacing:0.076800pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.102400pt;}
.ls22{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.134400pt;}
.ls0{letter-spacing:0.140800pt;}
.ls20{letter-spacing:0.294400pt;}
.ls21{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:7.603200pt;}
.ls32{letter-spacing:10.816000pt;}
.ls2e{letter-spacing:24.768000pt;}
.ls2d{letter-spacing:28.608000pt;}
.ls2b{letter-spacing:30.208000pt;}
.ls31{letter-spacing:48.768000pt;}
.ls23{letter-spacing:56.768000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.076800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.942400pt;}
.ws0{word-spacing:-0.134688pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-11.660800pt;}
._21{margin-left:-10.572800pt;}
._2{margin-left:-8.755200pt;}
._14{margin-left:-7.392000pt;}
._3{margin-left:-6.464000pt;}
._15{margin-left:-4.480000pt;}
._4{margin-left:-3.404800pt;}
._0{margin-left:-2.240000pt;}
._5{margin-left:-0.999296pt;}
._1{width:1.088000pt;}
._d{width:2.280192pt;}
._6{width:3.238400pt;}
._a{width:4.441600pt;}
._9{width:5.420800pt;}
._17{width:6.400000pt;}
._13{width:7.347200pt;}
._12{width:8.262400pt;}
._8{width:9.766400pt;}
._7{width:10.816000pt;}
._11{width:12.185600pt;}
._1e{width:13.465600pt;}
._1d{width:14.681600pt;}
._20{width:17.881600pt;}
._1b{width:25.356800pt;}
._b{width:26.355200pt;}
._c{width:27.494400pt;}
._16{width:28.755200pt;}
._18{width:35.033600pt;}
._f{width:35.942400pt;}
._10{width:37.952000pt;}
._e{width:42.291200pt;}
._19{width:56.640000pt;}
._1f{width:57.856000pt;}
._1a{width:79.808000pt;}
._1c{width:203.136000pt;}
.fs0{font-size:18.560000pt;}
.fs1{font-size:53.440000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs9{font-size:77.440000pt;}
.fs6{font-size:82.560000pt;}
.fs3{font-size:90.560000pt;}
.fs5{font-size:109.440000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:26.827067pt;}
.y68{bottom:41.467067pt;}
.y44{bottom:62.427067pt;}
.y67{bottom:69.067067pt;}
.y43{bottom:90.027067pt;}
.y66{bottom:96.667067pt;}
.y42{bottom:117.627067pt;}
.y65{bottom:127.867067pt;}
.y41{bottom:145.227067pt;}
.y64{bottom:155.547067pt;}
.y40{bottom:180.827067pt;}
.y63{bottom:183.147067pt;}
.y3f{bottom:208.427067pt;}
.y62{bottom:210.827067pt;}
.y19{bottom:210.987067pt;}
.y18{bottom:229.147251pt;}
.y3e{bottom:236.027067pt;}
.y61{bottom:238.427067pt;}
.y17{bottom:244.507243pt;}
.y16{bottom:259.867235pt;}
.y60{bottom:266.107067pt;}
.y3d{bottom:271.627067pt;}
.y15{bottom:275.147067pt;}
.y5f{bottom:293.787067pt;}
.y3c{bottom:299.227067pt;}
.y14{bottom:304.267067pt;}
.y5e{bottom:321.467067pt;}
.y3b{bottom:326.827067pt;}
.y13{bottom:336.427067pt;}
.y86{bottom:343.547067pt;}
.y5d{bottom:349.147067pt;}
.y3a{bottom:354.427067pt;}
.y12{bottom:368.587067pt;}
.y85{bottom:370.347067pt;}
.y5c{bottom:376.747067pt;}
.y39{bottom:390.027067pt;}
.y84{bottom:397.947067pt;}
.y11{bottom:400.827067pt;}
.y5b{bottom:404.267067pt;}
.y38{bottom:417.627067pt;}
.y83{bottom:425.547067pt;}
.y10{bottom:432.347067pt;}
.y5a{bottom:432.827067pt;}
.y37{bottom:445.227067pt;}
.y82{bottom:453.147067pt;}
.yf{bottom:464.587067pt;}
.y59{bottom:469.627067pt;}
.y36{bottom:472.827067pt;}
.y81{bottom:480.747067pt;}
.ye{bottom:496.187067pt;}
.y80{bottom:499.787067pt;}
.y35{bottom:500.427067pt;}
.y58{bottom:506.267067pt;}
.y7f{bottom:522.027067pt;}
.yd{bottom:527.787067pt;}
.y34{bottom:527.947067pt;}
.y57{bottom:533.867067pt;}
.yc{bottom:547.467067pt;}
.y7e{bottom:549.627067pt;}
.y56{bottom:561.867067pt;}
.y33{bottom:563.547067pt;}
.yb{bottom:572.507067pt;}
.y7d{bottom:577.147067pt;}
.ya{bottom:590.827067pt;}
.y32{bottom:591.147067pt;}
.y95{bottom:600.507067pt;}
.y55{bottom:603.067067pt;}
.y7c{bottom:605.147067pt;}
.y31{bottom:618.747067pt;}
.y9{bottom:623.547067pt;}
.y94{bottom:628.347067pt;}
.y54{bottom:630.667067pt;}
.y7b{bottom:632.747067pt;}
.y30{bottom:646.347067pt;}
.y8{bottom:655.147067pt;}
.y93{bottom:655.227067pt;}
.y53{bottom:658.267067pt;}
.y7a{bottom:660.347067pt;}
.y2f{bottom:673.947067pt;}
.y92{bottom:683.147067pt;}
.y52{bottom:685.867067pt;}
.y79{bottom:687.947067pt;}
.y7{bottom:691.307067pt;}
.y91{bottom:710.027067pt;}
.y2e{bottom:711.067067pt;}
.y78{bottom:715.547067pt;}
.y51{bottom:721.467067pt;}
.y6{bottom:722.907067pt;}
.y77{bottom:734.587067pt;}
.y90{bottom:737.947067pt;}
.y2d{bottom:738.667067pt;}
.y5{bottom:745.867067pt;}
.y50{bottom:749.067067pt;}
.y76{bottom:756.427067pt;}
.y4{bottom:763.786779pt;}
.y8f{bottom:764.827067pt;}
.y2c{bottom:766.267067pt;}
.y4f{bottom:776.587067pt;}
.y3{bottom:779.146771pt;}
.y8e{bottom:791.707067pt;}
.y2b{bottom:793.867067pt;}
.y4e{bottom:795.387067pt;}
.y75{bottom:797.707067pt;}
.y4d{bottom:813.787067pt;}
.y21{bottom:816.267067pt;}
.y8d{bottom:819.627067pt;}
.y2a{bottom:821.467067pt;}
.y74{bottom:825.307067pt;}
.y2{bottom:838.747067pt;}
.y4c{bottom:841.067067pt;}
.y20{bottom:845.946515pt;}
.y8c{bottom:846.507067pt;}
.y29{bottom:849.067067pt;}
.y73{bottom:866.507067pt;}
.y4b{bottom:868.507067pt;}
.y8b{bottom:874.427067pt;}
.y28{bottom:876.667067pt;}
.y1f{bottom:892.347067pt;}
.y72{bottom:894.107067pt;}
.y4a{bottom:899.627067pt;}
.y6c{bottom:899.707067pt;}
.y8a{bottom:902.427067pt;}
.y27{bottom:904.267067pt;}
.y71{bottom:921.707067pt;}
.y6b{bottom:927.307067pt;}
.y89{bottom:930.427067pt;}
.y49{bottom:930.747067pt;}
.y26{bottom:931.867067pt;}
.y1e{bottom:937.787067pt;}
.y70{bottom:940.667067pt;}
.y25{bottom:951.547067pt;}
.y6a{bottom:954.907067pt;}
.y88{bottom:957.227067pt;}
.y1d{bottom:959.627067pt;}
.y48{bottom:962.107067pt;}
.y6f{bottom:962.347067pt;}
.y87{bottom:976.507067pt;}
.y24{bottom:976.587067pt;}
.y6e{bottom:980.747067pt;}
.y1c{bottom:983.467067pt;}
.y69{bottom:986.107067pt;}
.y47{bottom:989.707067pt;}
.y23{bottom:994.987067pt;}
.y6d{bottom:998.907067pt;}
.y22{bottom:1013.387067pt;}
.y46{bottom:1017.307067pt;}
.y1b{bottom:1018.587067pt;}
.y1{bottom:1028.987067pt;}
.y1a{bottom:1048.107067pt;}
.h1{height:16.285312pt;}
.hd{height:39.030469pt;}
.h2{height:46.890469pt;}
.ha{height:53.910000pt;}
.he{height:54.570000pt;}
.h3{height:56.156250pt;}
.h4{height:56.843750pt;}
.h8{height:65.422031pt;}
.h6{height:66.222969pt;}
.hc{height:67.949062pt;}
.hb{height:68.780937pt;}
.h9{height:72.441562pt;}
.h5{height:80.433906pt;}
.h7{height:96.027187pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:98.640000pt;}
.x10{left:106.960000pt;}
.x1d{left:112.000000pt;}
.x1b{left:113.360000pt;}
.x18{left:114.720000pt;}
.x1c{left:130.640000pt;}
.x1a{left:137.360000pt;}
.x16{left:138.720000pt;}
.x11{left:140.000000pt;}
.xe{left:142.880000pt;}
.x14{left:144.560648pt;}
.x19{left:154.640000pt;}
.x17{left:161.920000pt;}
.x4{left:168.880000pt;}
.x3{left:224.560000pt;}
.x15{left:244.160000pt;}
.x5{left:247.280000pt;}
.xa{left:273.280000pt;}
.xc{left:276.000000pt;}
.x9{left:285.920000pt;}
.xb{left:300.400000pt;}
.x6{left:312.880000pt;}
.x13{left:314.560000pt;}
.xd{left:318.240000pt;}
.x8{left:320.560000pt;}
.x7{left:323.840000pt;}
.xf{left:397.680000pt;}
.x12{left:655.360000pt;}
.x2{left:689.759867pt;}
}




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