
    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_5394197c8fb43071a3531487.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965820;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_9b8b9d5f655212b852d76aac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776367;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_7eadb23ec87ecea2ded3e18a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9e30e6bea899dde92cb9ed98.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dd93f7e8c7eb0c7a39f367d2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d4dd25bb73242324710d754b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_db2afb3932dede7368985037.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c5d41d692164f8d7a326f7a6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_24cca902959f49d0d33d0057.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d0fa8eb5b65a0e2e4b25dd24.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v5{vertical-align:-85.650000px;}
.v4{vertical-align:-76.620000px;}
.v3{vertical-align:-72.120000px;}
.v2{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.lsb{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.852000px;}
.ls9{letter-spacing:-0.468000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.128000px;}
.lsc{letter-spacing:1.488000px;}
.ls0{letter-spacing:2.250000px;}
.ls1{letter-spacing:2.310000px;}
.ls7{letter-spacing:6.984000px;}
.ls8{letter-spacing:11.484000px;}
.lsa{letter-spacing:144.120000px;}
.ls2{letter-spacing:1123.125000px;}
.ls3{letter-spacing:1132.125000px;}
.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;}
}
.ws2{word-spacing:-21.127500px;}
.ws1{word-spacing:-20.275500px;}
.ws0{word-spacing:-19.777500px;}
.ws9{word-spacing:-19.125000px;}
.ws8{word-spacing:-18.363000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.532000px;}
.ws7{word-spacing:-16.992000px;}
.ws3{word-spacing:-16.875000px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-9.544200px;}
._8{margin-left:-8.242950px;}
._1{margin-left:-7.155000px;}
._5{margin-left:-5.467500px;}
._2{margin-left:-3.577500px;}
._3{margin-left:-2.497500px;}
._4{margin-left:-1.080000px;}
._7{width:1.153800px;}
._0{width:2.160000px;}
._6{width:3.210000px;}
._9{width:5.209200px;}
._a{width:6.406800px;}
._b{width:8.083800px;}
._14{width:9.441300px;}
._c{width:10.755900px;}
._13{width:11.871000px;}
._e{width:13.153500px;}
._d{width:14.799000px;}
._17{width:16.995000px;}
._19{width:20.059200px;}
._11{width:21.723000px;}
._f{width:23.326500px;}
._21{width:24.471900px;}
._12{width:26.905500px;}
._1e{width:27.918000px;}
._10{width:31.399800px;}
._16{width:32.402700px;}
._1d{width:35.034300px;}
._15{width:36.062100px;}
._1c{width:39.772800px;}
._1a{width:41.089500px;}
._1f{width:43.384500px;}
._1b{width:45.457200px;}
._20{width:49.114200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:67.500000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y2{bottom:23.625000px;}
.y6{bottom:56.287500px;}
.y5{bottom:75.450000px;}
.y9a{bottom:126.112500px;}
.y67{bottom:132.862500px;}
.y37{bottom:141.862500px;}
.y99{bottom:145.237500px;}
.y66{bottom:154.275000px;}
.y36{bottom:162.150000px;}
.y98{bottom:163.275000px;}
.y65{bottom:174.525000px;}
.y97{bottom:182.400000px;}
.y35{bottom:183.525000px;}
.y64{bottom:194.775000px;}
.y96{bottom:201.570000px;}
.y34{bottom:203.820000px;}
.y63{bottom:216.195000px;}
.y95{bottom:220.695000px;}
.y33{bottom:225.195000px;}
.y62{bottom:236.445000px;}
.y94{bottom:239.850000px;}
.y32{bottom:245.475000px;}
.y61{bottom:257.850000px;}
.y93{bottom:258.975000px;}
.y31{bottom:265.725000px;}
.y60{bottom:278.100000px;}
.y30{bottom:287.130000px;}
.y92{bottom:297.255000px;}
.y5f{bottom:298.395000px;}
.y2f{bottom:307.380000px;}
.y91{bottom:315.270000px;}
.y5e{bottom:319.755000px;}
.y2e{bottom:328.800000px;}
.y90{bottom:334.425000px;}
.y5d{bottom:340.050000px;}
.y2d{bottom:349.050000px;}
.y8f{bottom:353.550000px;}
.y5c{bottom:361.425000px;}
.y2c{bottom:369.345000px;}
.y8e{bottom:372.720000px;}
.y5b{bottom:381.705000px;}
.y2b{bottom:388.455000px;}
.y8d{bottom:391.830000px;}
.y5a{bottom:401.955000px;}
.y2a{bottom:407.625000px;}
.y8c{bottom:411.000000px;}
.y59{bottom:423.375000px;}
.y29{bottom:426.750000px;}
.y8b{bottom:430.125000px;}
.y58{bottom:443.625000px;}
.y28{bottom:444.750000px;}
.y8a{bottom:448.155000px;}
.y27{bottom:463.920000px;}
.y57{bottom:465.030000px;}
.y89{bottom:467.295000px;}
.y26{bottom:483.045000px;}
.y56{bottom:485.280000px;}
.y88{bottom:486.420000px;}
.y25{bottom:502.200000px;}
.y55{bottom:505.575000px;}
.y24{bottom:521.325000px;}
.y87{bottom:524.700000px;}
.y54{bottom:526.950000px;}
.y23{bottom:540.495000px;}
.y86{bottom:543.870000px;}
.y53{bottom:547.245000px;}
.y22{bottom:559.620000px;}
.y85{bottom:562.995000px;}
.y52{bottom:568.605000px;}
.y21{bottom:577.650000px;}
.y84{bottom:582.150000px;}
.y51{bottom:588.900000px;}
.y20{bottom:596.775000px;}
.y83{bottom:600.150000px;}
.y50{bottom:609.150000px;}
.y1f{bottom:615.945000px;}
.y82{bottom:619.320000px;}
.y4f{bottom:630.570000px;}
.y1e{bottom:635.070000px;}
.y81{bottom:638.445000px;}
.y4e{bottom:650.820000px;}
.ya2{bottom:654.195000px;}
.y80{bottom:657.600000px;}
.y4d{bottom:672.225000px;}
.y1d{bottom:673.350000px;}
.y7f{bottom:676.725000px;}
.y1c{bottom:692.475000px;}
.y7e{bottom:695.850000px;}
.y1b{bottom:710.505000px;}
.y4c{bottom:712.770000px;}
.y7d{bottom:715.005000px;}
.y1a{bottom:729.645000px;}
.y7c{bottom:733.020000px;}
.y4b{bottom:734.130000px;}
.y19{bottom:748.800000px;}
.y7b{bottom:752.175000px;}
.y4a{bottom:754.425000px;}
.y18{bottom:767.925000px;}
.y7a{bottom:771.300000px;}
.y49{bottom:775.800000px;}
.y17{bottom:787.080000px;}
.y79{bottom:790.455000px;}
.y48{bottom:796.080000px;}
.y16{bottom:806.205000px;}
.y78{bottom:809.580000px;}
.y47{bottom:816.330000px;}
.y15{bottom:825.375000px;}
.y77{bottom:828.750000px;}
.y46{bottom:837.750000px;}
.y14{bottom:844.500000px;}
.y76{bottom:847.875000px;}
.y45{bottom:858.000000px;}
.y13{bottom:862.500000px;}
.y75{bottom:865.875000px;}
.y44{bottom:879.420000px;}
.y12{bottom:881.670000px;}
.y74{bottom:885.045000px;}
.y43{bottom:899.670000px;}
.y11{bottom:900.795000px;}
.y73{bottom:904.170000px;}
.y10{bottom:919.950000px;}
.y72{bottom:923.325000px;}
.yf{bottom:939.075000px;}
.y42{bottom:941.325000px;}
.y71{bottom:942.450000px;}
.ye{bottom:958.245000px;}
.y41{bottom:961.620000px;}
.y70{bottom:963.870000px;}
.ya1{bottom:977.370000px;}
.y40{bottom:982.995000px;}
.y6f{bottom:984.120000px;}
.yd{bottom:995.400000px;}
.y3f{bottom:1003.275000px;}
.y6e{bottom:1005.525000px;}
.ya0{bottom:1014.525000px;}
.yc{bottom:1015.650000px;}
.y3e{bottom:1023.525000px;}
.y6d{bottom:1025.775000px;}
.y9f{bottom:1033.650000px;}
.yb{bottom:1035.945000px;}
.y3d{bottom:1044.945000px;}
.y6c{bottom:1046.070000px;}
.y9e{bottom:1052.820000px;}
.ya{bottom:1055.070000px;}
.y3c{bottom:1065.195000px;}
.y6b{bottom:1067.445000px;}
.y9d{bottom:1071.945000px;}
.y9{bottom:1076.475000px;}
.y3b{bottom:1086.600000px;}
.y6a{bottom:1087.725000px;}
.y9c{bottom:1091.100000px;}
.y8{bottom:1101.225000px;}
.y3a{bottom:1106.850000px;}
.y69{bottom:1109.100000px;}
.y9b{bottom:1110.225000px;}
.y7{bottom:1124.880000px;}
.y39{bottom:1127.130000px;}
.y68{bottom:1129.380000px;}
.y4{bottom:1154.130000px;}
.y1{bottom:1169.925000px;}
.y38{bottom:1193.550000px;}
.h2{height:40.537500px;}
.h10{height:47.131348px;}
.hd{height:50.273438px;}
.h4{height:51.284180px;}
.h3{height:51.613770px;}
.h5{height:53.015625px;}
.h6{height:60.431763px;}
.ha{height:66.214600px;}
.h9{height:66.247559px;}
.hb{height:68.027344px;}
.hc{height:70.664062px;}
.h8{height:72.562500px;}
.he{height:74.004654px;}
.hf{height:74.953125px;}
.h7{height:86.319141px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:327.780000px;}
.w2{width:327.795000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.xd{left:23.662487px;}
.x4{left:108.150000px;}
.x1{left:119.400000px;}
.xf{left:139.687487px;}
.xc{left:159.929987px;}
.x8{left:182.474987px;}
.x5{left:188.100000px;}
.xa{left:209.519987px;}
.x9{left:238.799987px;}
.xb{left:306.374987px;}
.x7{left:433.694987px;}
.x3{left:447.195000px;}
.xe{left:749.069987px;}
.x6{left:768.224987px;}
@media print{
.v5{vertical-align:-76.133333pt;}
.v4{vertical-align:-68.106667pt;}
.v3{vertical-align:-64.106667pt;}
.v2{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.lsb{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.757333pt;}
.ls9{letter-spacing:-0.416000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.002667pt;}
.lsc{letter-spacing:1.322667pt;}
.ls0{letter-spacing:2.000000pt;}
.ls1{letter-spacing:2.053333pt;}
.ls7{letter-spacing:6.208000pt;}
.ls8{letter-spacing:10.208000pt;}
.lsa{letter-spacing:128.106667pt;}
.ls2{letter-spacing:998.333333pt;}
.ls3{letter-spacing:1006.333333pt;}
.ws2{word-spacing:-18.780000pt;}
.ws1{word-spacing:-18.022667pt;}
.ws0{word-spacing:-17.580000pt;}
.ws9{word-spacing:-17.000000pt;}
.ws8{word-spacing:-16.322667pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.584000pt;}
.ws7{word-spacing:-15.104000pt;}
.ws3{word-spacing:-15.000000pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-8.483733pt;}
._8{margin-left:-7.327067pt;}
._1{margin-left:-6.360000pt;}
._5{margin-left:-4.860000pt;}
._2{margin-left:-3.180000pt;}
._3{margin-left:-2.220000pt;}
._4{margin-left:-0.960000pt;}
._7{width:1.025600pt;}
._0{width:1.920000pt;}
._6{width:2.853333pt;}
._9{width:4.630400pt;}
._a{width:5.694933pt;}
._b{width:7.185600pt;}
._14{width:8.392267pt;}
._c{width:9.560800pt;}
._13{width:10.552000pt;}
._e{width:11.692000pt;}
._d{width:13.154667pt;}
._17{width:15.106667pt;}
._19{width:17.830400pt;}
._11{width:19.309333pt;}
._f{width:20.734667pt;}
._21{width:21.752800pt;}
._12{width:23.916000pt;}
._1e{width:24.816000pt;}
._10{width:27.910933pt;}
._16{width:28.802400pt;}
._1d{width:31.141600pt;}
._15{width:32.055200pt;}
._1c{width:35.353600pt;}
._1a{width:36.524000pt;}
._1f{width:38.564000pt;}
._1b{width:40.406400pt;}
._20{width:43.657067pt;}
.fs4{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:60.000000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y2{bottom:21.000000pt;}
.y6{bottom:50.033333pt;}
.y5{bottom:67.066667pt;}
.y9a{bottom:112.100000pt;}
.y67{bottom:118.100000pt;}
.y37{bottom:126.100000pt;}
.y99{bottom:129.100000pt;}
.y66{bottom:137.133333pt;}
.y36{bottom:144.133333pt;}
.y98{bottom:145.133333pt;}
.y65{bottom:155.133333pt;}
.y97{bottom:162.133333pt;}
.y35{bottom:163.133333pt;}
.y64{bottom:173.133333pt;}
.y96{bottom:179.173333pt;}
.y34{bottom:181.173333pt;}
.y63{bottom:192.173333pt;}
.y95{bottom:196.173333pt;}
.y33{bottom:200.173333pt;}
.y62{bottom:210.173333pt;}
.y94{bottom:213.200000pt;}
.y32{bottom:218.200000pt;}
.y61{bottom:229.200000pt;}
.y93{bottom:230.200000pt;}
.y31{bottom:236.200000pt;}
.y60{bottom:247.200000pt;}
.y30{bottom:255.226667pt;}
.y92{bottom:264.226667pt;}
.y5f{bottom:265.240000pt;}
.y2f{bottom:273.226667pt;}
.y91{bottom:280.240000pt;}
.y5e{bottom:284.226667pt;}
.y2e{bottom:292.266667pt;}
.y90{bottom:297.266667pt;}
.y5d{bottom:302.266667pt;}
.y2d{bottom:310.266667pt;}
.y8f{bottom:314.266667pt;}
.y5c{bottom:321.266667pt;}
.y2c{bottom:328.306667pt;}
.y8e{bottom:331.306667pt;}
.y5b{bottom:339.293333pt;}
.y2b{bottom:345.293333pt;}
.y8d{bottom:348.293333pt;}
.y5a{bottom:357.293333pt;}
.y2a{bottom:362.333333pt;}
.y8c{bottom:365.333333pt;}
.y59{bottom:376.333333pt;}
.y29{bottom:379.333333pt;}
.y8b{bottom:382.333333pt;}
.y58{bottom:394.333333pt;}
.y28{bottom:395.333333pt;}
.y8a{bottom:398.360000pt;}
.y27{bottom:412.373333pt;}
.y57{bottom:413.360000pt;}
.y89{bottom:415.373333pt;}
.y26{bottom:429.373333pt;}
.y56{bottom:431.360000pt;}
.y88{bottom:432.373333pt;}
.y25{bottom:446.400000pt;}
.y55{bottom:449.400000pt;}
.y24{bottom:463.400000pt;}
.y87{bottom:466.400000pt;}
.y54{bottom:468.400000pt;}
.y23{bottom:480.440000pt;}
.y86{bottom:483.440000pt;}
.y53{bottom:486.440000pt;}
.y22{bottom:497.440000pt;}
.y85{bottom:500.440000pt;}
.y52{bottom:505.426667pt;}
.y21{bottom:513.466667pt;}
.y84{bottom:517.466667pt;}
.y51{bottom:523.466667pt;}
.y20{bottom:530.466667pt;}
.y83{bottom:533.466667pt;}
.y50{bottom:541.466667pt;}
.y1f{bottom:547.506667pt;}
.y82{bottom:550.506667pt;}
.y4f{bottom:560.506667pt;}
.y1e{bottom:564.506667pt;}
.y81{bottom:567.506667pt;}
.y4e{bottom:578.506667pt;}
.ya2{bottom:581.506667pt;}
.y80{bottom:584.533333pt;}
.y4d{bottom:597.533333pt;}
.y1d{bottom:598.533333pt;}
.y7f{bottom:601.533333pt;}
.y1c{bottom:615.533333pt;}
.y7e{bottom:618.533333pt;}
.y1b{bottom:631.560000pt;}
.y4c{bottom:633.573333pt;}
.y7d{bottom:635.560000pt;}
.y1a{bottom:648.573333pt;}
.y7c{bottom:651.573333pt;}
.y4b{bottom:652.560000pt;}
.y19{bottom:665.600000pt;}
.y7b{bottom:668.600000pt;}
.y4a{bottom:670.600000pt;}
.y18{bottom:682.600000pt;}
.y7a{bottom:685.600000pt;}
.y49{bottom:689.600000pt;}
.y17{bottom:699.626667pt;}
.y79{bottom:702.626667pt;}
.y48{bottom:707.626667pt;}
.y16{bottom:716.626667pt;}
.y78{bottom:719.626667pt;}
.y47{bottom:725.626667pt;}
.y15{bottom:733.666667pt;}
.y77{bottom:736.666667pt;}
.y46{bottom:744.666667pt;}
.y14{bottom:750.666667pt;}
.y76{bottom:753.666667pt;}
.y45{bottom:762.666667pt;}
.y13{bottom:766.666667pt;}
.y75{bottom:769.666667pt;}
.y44{bottom:781.706667pt;}
.y12{bottom:783.706667pt;}
.y74{bottom:786.706667pt;}
.y43{bottom:799.706667pt;}
.y11{bottom:800.706667pt;}
.y73{bottom:803.706667pt;}
.y10{bottom:817.733333pt;}
.y72{bottom:820.733333pt;}
.yf{bottom:834.733333pt;}
.y42{bottom:836.733333pt;}
.y71{bottom:837.733333pt;}
.ye{bottom:851.773333pt;}
.y41{bottom:854.773333pt;}
.y70{bottom:856.773333pt;}
.ya1{bottom:868.773333pt;}
.y40{bottom:873.773333pt;}
.y6f{bottom:874.773333pt;}
.yd{bottom:884.800000pt;}
.y3f{bottom:891.800000pt;}
.y6e{bottom:893.800000pt;}
.ya0{bottom:901.800000pt;}
.yc{bottom:902.800000pt;}
.y3e{bottom:909.800000pt;}
.y6d{bottom:911.800000pt;}
.y9f{bottom:918.800000pt;}
.yb{bottom:920.840000pt;}
.y3d{bottom:928.840000pt;}
.y6c{bottom:929.840000pt;}
.y9e{bottom:935.840000pt;}
.ya{bottom:937.840000pt;}
.y3c{bottom:946.840000pt;}
.y6b{bottom:948.840000pt;}
.y9d{bottom:952.840000pt;}
.y9{bottom:956.866667pt;}
.y3b{bottom:965.866667pt;}
.y6a{bottom:966.866667pt;}
.y9c{bottom:969.866667pt;}
.y8{bottom:978.866667pt;}
.y3a{bottom:983.866667pt;}
.y69{bottom:985.866667pt;}
.y9b{bottom:986.866667pt;}
.y7{bottom:999.893333pt;}
.y39{bottom:1001.893333pt;}
.y68{bottom:1003.893333pt;}
.y4{bottom:1025.893333pt;}
.y1{bottom:1039.933333pt;}
.y38{bottom:1060.933333pt;}
.h2{height:36.033333pt;}
.h10{height:41.894531pt;}
.hd{height:44.687500pt;}
.h4{height:45.585938pt;}
.h3{height:45.878906pt;}
.h5{height:47.125000pt;}
.h6{height:53.717122pt;}
.ha{height:58.857422pt;}
.h9{height:58.886719pt;}
.hb{height:60.468750pt;}
.hc{height:62.812500pt;}
.h8{height:64.500000pt;}
.he{height:65.781915pt;}
.hf{height:66.625000pt;}
.h7{height:76.728125pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:291.360000pt;}
.w2{width:291.373333pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.xd{left:21.033322pt;}
.x4{left:96.133333pt;}
.x1{left:106.133333pt;}
.xf{left:124.166655pt;}
.xc{left:142.159988pt;}
.x8{left:162.199988pt;}
.x5{left:167.200000pt;}
.xa{left:186.239988pt;}
.x9{left:212.266655pt;}
.xb{left:272.333322pt;}
.x7{left:385.506655pt;}
.x3{left:397.506667pt;}
.xe{left:665.839988pt;}
.x6{left:682.866655pt;}
}




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