
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_95f179a10a54a4a0b9e96f21.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_b14c717aad85012190f6fa82.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_5885219e8bef0eda3130a0d9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_a516d003953e497186784e31.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_50543914961e87e709893495.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_b13c51ff2fa765e395b8ae4c.woff')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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.444000px;}
.lsc{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.014760px;}
.lse{letter-spacing:-0.013320px;}
.ls13{letter-spacing:-0.011160px;}
.ls10{letter-spacing:-0.009000px;}
.lsf{letter-spacing:-0.007560px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls6{letter-spacing:0.051600px;}
.ls11{letter-spacing:0.051840px;}
.ls9{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.098400px;}
.ls15{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.374760px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.369800px;}
.ws10{word-spacing:-13.324800px;}
.wse{word-spacing:-13.278240px;}
.ws2{word-spacing:-13.278000px;}
.ws9{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.218840px;}
.wsd{word-spacing:-13.217400px;}
.wsf{word-spacing:-13.215240px;}
.wsb{word-spacing:-13.213080px;}
.wsa{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._7{margin-left:-3.187202px;}
._6{margin-left:-2.164200px;}
._0{margin-left:-1.020000px;}
._2{width:1.342919px;}
._9{width:2.375768px;}
._5{width:3.426600px;}
._a{width:4.543424px;}
._4{width:5.618602px;}
._1{width:6.961788px;}
._3{width:7.969187px;}
._8{width:9.045013px;}
._d{width:10.220400px;}
._e{width:11.723400px;}
._10{width:14.488920px;}
._b{width:16.413000px;}
._c{width:17.551196px;}
._f{width:19.839600px;}
._11{width:22.394520px;}
._12{width:23.627880px;}
._14{width:50.412840px;}
._13{width:51.430440px;}
._15{width:52.522682px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:7.830000px;}
.y55{bottom:7.860000px;}
.y4f{bottom:7.920000px;}
.y2{bottom:73.350000px;}
.y2c{bottom:74.250000px;}
.y1{bottom:101.610000px;}
.y59{bottom:111.960000px;}
.y90{bottom:116.910000px;}
.y2a{bottom:127.530000px;}
.y8f{bottom:137.070000px;}
.y58{bottom:139.230000px;}
.y29{bottom:145.080000px;}
.y8e{bottom:157.320000px;}
.y71{bottom:161.640000px;}
.y28{bottom:162.720000px;}
.y57{bottom:166.590000px;}
.y70{bottom:176.670000px;}
.y27{bottom:180.270000px;}
.y8d{bottom:184.320000px;}
.y56{bottom:193.950000px;}
.y26{bottom:197.910000px;}
.y6f{bottom:204.030000px;}
.y25{bottom:215.460000px;}
.y54{bottom:221.310000px;}
.y8c{bottom:221.670000px;}
.y6e{bottom:231.330000px;}
.y24{bottom:233.040000px;}
.y53{bottom:248.610000px;}
.y23{bottom:250.680000px;}
.y6d{bottom:258.690000px;}
.y22{bottom:268.230000px;}
.y8b{bottom:269.940000px;}
.y52{bottom:275.970000px;}
.y21{bottom:285.870000px;}
.y6c{bottom:286.050000px;}
.y8a{bottom:287.490000px;}
.y51{bottom:303.330000px;}
.y89{bottom:305.130000px;}
.y20{bottom:312.690000px;}
.y6b{bottom:313.320000px;}
.y88{bottom:322.680000px;}
.y50{bottom:330.690000px;}
.y87{bottom:340.320000px;}
.y6a{bottom:340.680000px;}
.y86{bottom:357.870000px;}
.y4e{bottom:357.960000px;}
.y1f{bottom:361.290000px;}
.y69{bottom:368.040000px;}
.y85{bottom:384.780000px;}
.y4c{bottom:385.320000px;}
.y68{bottom:395.400000px;}
.y1e{bottom:398.370000px;}
.y1d{bottom:415.920000px;}
.y67{bottom:422.670000px;}
.y84{bottom:433.020000px;}
.y1c{bottom:433.560000px;}
.y4b{bottom:434.010000px;}
.y66{bottom:450.030000px;}
.y83{bottom:450.660000px;}
.y1b{bottom:451.110000px;}
.y82{bottom:468.210000px;}
.y1a{bottom:468.660000px;}
.y4a{bottom:469.560000px;}
.y65{bottom:477.390000px;}
.y81{bottom:485.850000px;}
.y19{bottom:486.300000px;}
.y49{bottom:487.200000px;}
.y80{bottom:503.400000px;}
.y18{bottom:503.850000px;}
.y48{bottom:504.750000px;}
.y7f{bottom:520.950000px;}
.y17{bottom:521.490000px;}
.y64{bottom:532.020000px;}
.y7e{bottom:538.590000px;}
.y16{bottom:539.040000px;}
.y47{bottom:540.390000px;}
.y15{bottom:556.590000px;}
.y46{bottom:557.940000px;}
.y63{bottom:559.380000px;}
.y7d{bottom:574.140000px;}
.y14{bottom:574.230000px;}
.y45{bottom:584.850000px;}
.y13{bottom:591.780000px;}
.y62{bottom:608.070000px;}
.y7c{bottom:609.330000px;}
.y12{bottom:609.420000px;}
.y7b{bottom:626.880000px;}
.y11{bottom:626.970000px;}
.y44{bottom:633.090000px;}
.ya7{bottom:637.320000px;}
.y61{bottom:643.620000px;}
.y10{bottom:644.520000px;}
.y43{bottom:650.760000px;}
.ya6{bottom:654.900000px;}
.yf{bottom:662.190000px;}
.y7a{bottom:662.550000px;}
.y42{bottom:668.310000px;}
.ya5{bottom:672.540000px;}
.y60{bottom:679.290000px;}
.ye{bottom:679.740000px;}
.y79{bottom:680.100000px;}
.y41{bottom:685.950000px;}
.yd{bottom:697.380000px;}
.y78{bottom:697.650000px;}
.ya4{bottom:699.090000px;}
.y40{bottom:703.500000px;}
.y5f{bottom:711.510000px;}
.yc{bottom:714.930000px;}
.y77{bottom:715.290000px;}
.ya3{bottom:725.730000px;}
.y3f{bottom:730.050000px;}
.yb{bottom:732.480000px;}
.y76{bottom:732.840000px;}
.y75{bottom:750.480000px;}
.ya2{bottom:752.280000px;}
.ya{bottom:759.480000px;}
.y3e{bottom:765.690000px;}
.ya1{bottom:769.830000px;}
.y74{bottom:777.390000px;}
.y3d{bottom:783.240000px;}
.ya0{bottom:787.470000px;}
.y3c{bottom:800.880000px;}
.y9{bottom:806.190000px;}
.y9f{bottom:814.020000px;}
.y3b{bottom:818.430000px;}
.y73{bottom:825.630000px;}
.y9e{bottom:831.570000px;}
.y3a{bottom:835.980000px;}
.y8{bottom:841.740000px;}
.y39{bottom:853.620000px;}
.y72{bottom:857.850000px;}
.y9d{bottom:858.210000px;}
.y9c{bottom:875.760000px;}
.y7{bottom:877.560000px;}
.y38{bottom:880.530000px;}
.y9b{bottom:893.400000px;}
.y6{bottom:913.560000px;}
.y9a{bottom:919.950000px;}
.y37{bottom:928.770000px;}
.y99{bottom:937.500000px;}
.y36{bottom:946.320000px;}
.y5{bottom:949.650000px;}
.y98{bottom:955.140000px;}
.y35{bottom:963.960000px;}
.y97{bottom:981.690000px;}
.y4{bottom:987.990000px;}
.y96{bottom:999.330000px;}
.y34{bottom:999.510000px;}
.y3{bottom:1012.650000px;}
.y95{bottom:1016.880000px;}
.y33{bottom:1017.150000px;}
.y5e{bottom:1030.560000px;}
.y94{bottom:1034.430000px;}
.y32{bottom:1034.700000px;}
.y5d{bottom:1045.500000px;}
.y31{bottom:1052.250000px;}
.y93{bottom:1061.430000px;}
.y5c{bottom:1072.890000px;}
.y30{bottom:1087.920000px;}
.y5b{bottom:1100.250000px;}
.y2f{bottom:1105.470000px;}
.y92{bottom:1112.310000px;}
.y2e{bottom:1123.110000px;}
.y5a{bottom:1127.520000px;}
.y91{bottom:1139.220000px;}
.y2d{bottom:1140.660000px;}
.y2b{bottom:1194.660000px;}
.h9{height:26.550000px;}
.hb{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hc{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:97.920000px;}
.w3{width:101.970000px;}
.w4{width:149.070000px;}
.w8{width:149.160000px;}
.wa{width:161.280000px;}
.w6{width:161.370000px;}
.w9{width:224.130000px;}
.w5{width:228.810000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:111.239987px;}
.x4{left:124.770000px;}
.xc{left:129.180000px;}
.x2{left:202.619987px;}
.x6{left:227.550000px;}
.xf{left:335.639987px;}
.xb{left:337.619987px;}
.x7{left:377.430000px;}
.x9{left:446.549987px;}
.xd{left:602.640000px;}
.x8{left:606.960000px;}
.xe{left:707.219987px;}
.xa{left:717.929987px;}
.x3{left:791.819987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.394667pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.013120pt;}
.lse{letter-spacing:-0.011840pt;}
.ls13{letter-spacing:-0.009920pt;}
.ls10{letter-spacing:-0.008000pt;}
.lsf{letter-spacing:-0.006720pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls6{letter-spacing:0.045867pt;}
.ls11{letter-spacing:0.046080pt;}
.ls9{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.087467pt;}
.ls15{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.333120pt;}
.ls14{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.884267pt;}
.ws10{word-spacing:-11.844267pt;}
.wse{word-spacing:-11.802880pt;}
.ws2{word-spacing:-11.802667pt;}
.ws9{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.750080pt;}
.wsd{word-spacing:-11.748800pt;}
.wsf{word-spacing:-11.746880pt;}
.wsb{word-spacing:-11.744960pt;}
.wsa{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._7{margin-left:-2.833068pt;}
._6{margin-left:-1.923733pt;}
._0{margin-left:-0.906667pt;}
._2{width:1.193706pt;}
._9{width:2.111794pt;}
._5{width:3.045866pt;}
._a{width:4.038599pt;}
._4{width:4.994313pt;}
._1{width:6.188256pt;}
._3{width:7.083722pt;}
._8{width:8.040012pt;}
._d{width:9.084800pt;}
._e{width:10.420800pt;}
._10{width:12.879040pt;}
._b{width:14.589334pt;}
._c{width:15.601063pt;}
._f{width:17.635200pt;}
._11{width:19.906240pt;}
._12{width:21.002560pt;}
._14{width:44.811413pt;}
._13{width:45.715947pt;}
._15{width:46.686829pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:6.960000pt;}
.y55{bottom:6.986667pt;}
.y4f{bottom:7.040000pt;}
.y2{bottom:65.200000pt;}
.y2c{bottom:66.000000pt;}
.y1{bottom:90.320000pt;}
.y59{bottom:99.520000pt;}
.y90{bottom:103.920000pt;}
.y2a{bottom:113.360000pt;}
.y8f{bottom:121.840000pt;}
.y58{bottom:123.760000pt;}
.y29{bottom:128.960000pt;}
.y8e{bottom:139.840000pt;}
.y71{bottom:143.680000pt;}
.y28{bottom:144.640000pt;}
.y57{bottom:148.080000pt;}
.y70{bottom:157.040000pt;}
.y27{bottom:160.240000pt;}
.y8d{bottom:163.840000pt;}
.y56{bottom:172.400000pt;}
.y26{bottom:175.920000pt;}
.y6f{bottom:181.360000pt;}
.y25{bottom:191.520000pt;}
.y54{bottom:196.720000pt;}
.y8c{bottom:197.040000pt;}
.y6e{bottom:205.626667pt;}
.y24{bottom:207.146667pt;}
.y53{bottom:220.986667pt;}
.y23{bottom:222.826667pt;}
.y6d{bottom:229.946667pt;}
.y22{bottom:238.426667pt;}
.y8b{bottom:239.946667pt;}
.y52{bottom:245.306667pt;}
.y21{bottom:254.106667pt;}
.y6c{bottom:254.266667pt;}
.y8a{bottom:255.546667pt;}
.y51{bottom:269.626667pt;}
.y89{bottom:271.226667pt;}
.y20{bottom:277.946667pt;}
.y6b{bottom:278.506667pt;}
.y88{bottom:286.826667pt;}
.y50{bottom:293.946667pt;}
.y87{bottom:302.506667pt;}
.y6a{bottom:302.826667pt;}
.y86{bottom:318.106667pt;}
.y4e{bottom:318.186667pt;}
.y1f{bottom:321.146667pt;}
.y69{bottom:327.146667pt;}
.y85{bottom:342.026667pt;}
.y4c{bottom:342.506667pt;}
.y68{bottom:351.466667pt;}
.y1e{bottom:354.106667pt;}
.y1d{bottom:369.706667pt;}
.y67{bottom:375.706667pt;}
.y84{bottom:384.906667pt;}
.y1c{bottom:385.386667pt;}
.y4b{bottom:385.786667pt;}
.y66{bottom:400.026667pt;}
.y83{bottom:400.586667pt;}
.y1b{bottom:400.986667pt;}
.y82{bottom:416.186667pt;}
.y1a{bottom:416.586667pt;}
.y4a{bottom:417.386667pt;}
.y65{bottom:424.346667pt;}
.y81{bottom:431.866667pt;}
.y19{bottom:432.266667pt;}
.y49{bottom:433.066667pt;}
.y80{bottom:447.466667pt;}
.y18{bottom:447.866667pt;}
.y48{bottom:448.666667pt;}
.y7f{bottom:463.066667pt;}
.y17{bottom:463.546667pt;}
.y64{bottom:472.906667pt;}
.y7e{bottom:478.746667pt;}
.y16{bottom:479.146667pt;}
.y47{bottom:480.346667pt;}
.y15{bottom:494.746667pt;}
.y46{bottom:495.946667pt;}
.y63{bottom:497.226667pt;}
.y7d{bottom:510.346667pt;}
.y14{bottom:510.426667pt;}
.y45{bottom:519.866667pt;}
.y13{bottom:526.026667pt;}
.y62{bottom:540.506667pt;}
.y7c{bottom:541.626667pt;}
.y12{bottom:541.706667pt;}
.y7b{bottom:557.226667pt;}
.y11{bottom:557.306667pt;}
.y44{bottom:562.746667pt;}
.ya7{bottom:566.506667pt;}
.y61{bottom:572.106667pt;}
.y10{bottom:572.906667pt;}
.y43{bottom:578.453333pt;}
.ya6{bottom:582.133333pt;}
.yf{bottom:588.613333pt;}
.y7a{bottom:588.933333pt;}
.y42{bottom:594.053333pt;}
.ya5{bottom:597.813333pt;}
.y60{bottom:603.813333pt;}
.ye{bottom:604.213333pt;}
.y79{bottom:604.533333pt;}
.y41{bottom:609.733333pt;}
.yd{bottom:619.893333pt;}
.y78{bottom:620.133333pt;}
.ya4{bottom:621.413333pt;}
.y40{bottom:625.333333pt;}
.y5f{bottom:632.453333pt;}
.yc{bottom:635.493333pt;}
.y77{bottom:635.813333pt;}
.ya3{bottom:645.093333pt;}
.y3f{bottom:648.933333pt;}
.yb{bottom:651.093333pt;}
.y76{bottom:651.413333pt;}
.y75{bottom:667.093333pt;}
.ya2{bottom:668.693333pt;}
.ya{bottom:675.093333pt;}
.y3e{bottom:680.613333pt;}
.ya1{bottom:684.293333pt;}
.y74{bottom:691.013333pt;}
.y3d{bottom:696.213333pt;}
.ya0{bottom:699.973333pt;}
.y3c{bottom:711.893333pt;}
.y9{bottom:716.613333pt;}
.y9f{bottom:723.573333pt;}
.y3b{bottom:727.493333pt;}
.y73{bottom:733.893333pt;}
.y9e{bottom:739.173333pt;}
.y3a{bottom:743.093333pt;}
.y8{bottom:748.213333pt;}
.y39{bottom:758.773333pt;}
.y72{bottom:762.533333pt;}
.y9d{bottom:762.853333pt;}
.y9c{bottom:778.453333pt;}
.y7{bottom:780.053333pt;}
.y38{bottom:782.693333pt;}
.y9b{bottom:794.133333pt;}
.y6{bottom:812.053333pt;}
.y9a{bottom:817.733333pt;}
.y37{bottom:825.573333pt;}
.y99{bottom:833.333333pt;}
.y36{bottom:841.173333pt;}
.y5{bottom:844.133333pt;}
.y98{bottom:849.013333pt;}
.y35{bottom:856.853333pt;}
.y97{bottom:872.613333pt;}
.y4{bottom:878.213333pt;}
.y96{bottom:888.293333pt;}
.y34{bottom:888.453333pt;}
.y3{bottom:900.133333pt;}
.y95{bottom:903.893333pt;}
.y33{bottom:904.133333pt;}
.y5e{bottom:916.053333pt;}
.y94{bottom:919.493333pt;}
.y32{bottom:919.733333pt;}
.y5d{bottom:929.333333pt;}
.y31{bottom:935.333333pt;}
.y93{bottom:943.493333pt;}
.y5c{bottom:953.680000pt;}
.y30{bottom:967.040000pt;}
.y5b{bottom:978.000000pt;}
.y2f{bottom:982.640000pt;}
.y92{bottom:988.720000pt;}
.y2e{bottom:998.320000pt;}
.y5a{bottom:1002.240000pt;}
.y91{bottom:1012.640000pt;}
.y2d{bottom:1013.920000pt;}
.y2b{bottom:1061.920000pt;}
.h9{height:23.600000pt;}
.hb{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:26.686563pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hc{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:87.040000pt;}
.w3{width:90.640000pt;}
.w4{width:132.506667pt;}
.w8{width:132.586667pt;}
.wa{width:143.360000pt;}
.w6{width:143.440000pt;}
.w9{width:199.226667pt;}
.w5{width:203.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:98.879988pt;}
.x4{left:110.906667pt;}
.xc{left:114.826667pt;}
.x2{left:180.106655pt;}
.x6{left:202.266667pt;}
.xf{left:298.346655pt;}
.xb{left:300.106655pt;}
.x7{left:335.493333pt;}
.x9{left:396.933322pt;}
.xd{left:535.680000pt;}
.x8{left:539.520000pt;}
.xe{left:628.639988pt;}
.xa{left:638.159988pt;}
.x3{left:703.839988pt;}
}




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