
    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_7a3c10642cdf5974e6490650.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_aa85de96f00840fdf29977bc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.014160;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_e65e86dc2b09d4feb548980d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_dcdae2d5eac153be6fe2510e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f88bc07ea6ebb81f27c7ac53.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_f7cd03b6d76dfa7d62e54f52.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006836;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_7a27733c23e7aff03a0a9eae.woff')format("woff");}.ff8{font-family:ff8;line-height:1.021484;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_2e1dfed4035782dc904d59d7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.021484;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.ls9{letter-spacing:33.984000px;}
.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;}
}
.ws4{word-spacing:-18.360000px;}
.ws0{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.784000px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-6.095280px;}
._1a{margin-left:-5.028240px;}
._9{margin-left:-3.816000px;}
._1{margin-left:-2.736000px;}
._0{margin-left:-1.235760px;}
._2{width:1.319760px;}
._3{width:2.520000px;}
._d{width:3.960000px;}
._13{width:5.256000px;}
._14{width:6.600240px;}
._19{width:8.328240px;}
._8{width:9.432000px;}
._a{width:10.440000px;}
._3d{width:11.448000px;}
._c{width:12.456000px;}
._16{width:13.752000px;}
._11{width:14.904000px;}
._21{width:16.595280px;}
._18{width:19.944000px;}
._20{width:21.216240px;}
._4{width:22.464000px;}
._15{width:24.048000px;}
._2f{width:25.560000px;}
._10{width:27.000000px;}
._1d{width:28.056240px;}
._1c{width:29.160000px;}
._22{width:30.528000px;}
._5{width:31.536000px;}
._6{width:32.544000px;}
._7{width:33.552000px;}
._12{width:34.859760px;}
._e{width:36.504000px;}
._f{width:37.512000px;}
._2d{width:38.952000px;}
._2e{width:40.176000px;}
._25{width:42.192000px;}
._17{width:45.072000px;}
._2a{width:46.080000px;}
._29{width:47.808000px;}
._26{width:49.104000px;}
._28{width:50.855520px;}
._27{width:52.056000px;}
._33{width:53.208000px;}
._34{width:55.080000px;}
._31{width:58.176000px;}
._32{width:59.195520px;}
._3a{width:60.912000px;}
._38{width:62.640000px;}
._37{width:63.720000px;}
._24{width:65.808000px;}
._23{width:67.392000px;}
._2b{width:68.760000px;}
._2c{width:69.840000px;}
._30{width:71.136000px;}
._35{width:72.216000px;}
._39{width:73.667760px;}
._3b{width:74.952000px;}
._3c{width:76.548000px;}
._1f{width:86.196000px;}
._1e{width:87.419760px;}
._b{width:92.736000px;}
._36{width:119.016000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y40{bottom:5.400000px;}
.y5f{bottom:29.520000px;}
.y3f{bottom:29.700000px;}
.y59{bottom:29.745000px;}
.y51{bottom:53.820000px;}
.y3e{bottom:53.994000px;}
.y3{bottom:58.356000px;}
.y50{bottom:78.120000px;}
.y2{bottom:78.516000px;}
.y4f{bottom:102.450000px;}
.y5c{bottom:104.976000px;}
.y3d{bottom:107.316000px;}
.y57{bottom:107.496000px;}
.y79{bottom:108.936000px;}
.y3c{bottom:113.436000px;}
.y1f{bottom:120.096000px;}
.y4e{bottom:126.750000px;}
.y5b{bottom:130.176000px;}
.y56{bottom:131.796000px;}
.y78{bottom:133.236000px;}
.y3b{bottom:137.736000px;}
.y1e{bottom:144.396000px;}
.y5a{bottom:155.190000px;}
.y55{bottom:156.090000px;}
.y77{bottom:157.530000px;}
.y7a{bottom:159.150000px;}
.y3a{bottom:162.030000px;}
.y1d{bottom:168.690000px;}
.y58{bottom:180.210000px;}
.y54{bottom:180.390000px;}
.y76{bottom:181.830000px;}
.y39{bottom:186.330000px;}
.y1c{bottom:192.990000px;}
.y53{bottom:200.055000px;}
.y75{bottom:206.175000px;}
.y38{bottom:210.675000px;}
.y1b{bottom:217.335000px;}
.y74{bottom:230.475000px;}
.y37{bottom:234.975000px;}
.y1a{bottom:241.635000px;}
.y52{bottom:249.375000px;}
.y73{bottom:254.775000px;}
.y36{bottom:259.275000px;}
.y19{bottom:265.935000px;}
.y72{bottom:279.075000px;}
.y35{bottom:283.575000px;}
.y18{bottom:290.055000px;}
.y4d{bottom:298.695000px;}
.y71{bottom:303.195000px;}
.y34{bottom:307.695000px;}
.y17{bottom:314.355000px;}
.y70{bottom:327.495000px;}
.y33{bottom:331.995000px;}
.y16{bottom:338.655000px;}
.y6f{bottom:351.795000px;}
.y32{bottom:356.295000px;}
.y15{bottom:362.955000px;}
.y6e{bottom:376.095000px;}
.y31{bottom:380.595000px;}
.y14{bottom:387.255000px;}
.y6d{bottom:400.425000px;}
.y30{bottom:404.925000px;}
.y13{bottom:411.585000px;}
.y6c{bottom:424.725000px;}
.y2f{bottom:429.225000px;}
.y12{bottom:435.885000px;}
.y6b{bottom:449.025000px;}
.y4c{bottom:450.465000px;}
.y2e{bottom:453.525000px;}
.y11{bottom:460.185000px;}
.y6a{bottom:473.325000px;}
.y4b{bottom:474.765000px;}
.y2d{bottom:477.825000px;}
.y10{bottom:484.485000px;}
.y69{bottom:497.625000px;}
.y4a{bottom:499.065000px;}
.y2c{bottom:502.125000px;}
.yf{bottom:508.785000px;}
.y68{bottom:521.925000px;}
.y49{bottom:523.365000px;}
.y2b{bottom:526.425000px;}
.ye{bottom:533.085000px;}
.y67{bottom:546.225000px;}
.y48{bottom:547.665000px;}
.y2a{bottom:550.725000px;}
.yd{bottom:559.185000px;}
.y66{bottom:570.345000px;}
.y47{bottom:571.965000px;}
.y29{bottom:574.845000px;}
.yc{bottom:583.485000px;}
.y65{bottom:594.645000px;}
.y46{bottom:596.265000px;}
.y28{bottom:599.190000px;}
.yb{bottom:612.690000px;}
.y64{bottom:618.990000px;}
.y45{bottom:620.610000px;}
.y27{bottom:623.490000px;}
.ya{bottom:636.990000px;}
.y63{bottom:643.290000px;}
.y44{bottom:644.910000px;}
.y26{bottom:647.790000px;}
.y9{bottom:661.290000px;}
.y62{bottom:662.910000px;}
.y43{bottom:664.530000px;}
.y25{bottom:672.090000px;}
.y8{bottom:685.590000px;}
.y61{bottom:687.930000px;}
.y24{bottom:696.390000px;}
.y7{bottom:709.890000px;}
.y60{bottom:712.950000px;}
.y42{bottom:713.850000px;}
.y23{bottom:720.690000px;}
.y5e{bottom:738.150000px;}
.y6{bottom:739.050000px;}
.y22{bottom:744.990000px;}
.y41{bottom:763.170000px;}
.y5{bottom:763.350000px;}
.y21{bottom:769.290000px;}
.y5d{bottom:787.470000px;}
.y4{bottom:788.550000px;}
.y20{bottom:793.590000px;}
.y1{bottom:820.080000px;}
.he{height:24.120000px;}
.hf{height:24.156000px;}
.hd{height:24.300000px;}
.ha{height:48.420000px;}
.h9{height:48.456000px;}
.hc{height:48.636000px;}
.h7{height:52.558594px;}
.h2{height:52.769531px;}
.h6{height:53.015625px;}
.h5{height:62.028281px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h8{height:72.900000px;}
.hb{height:145.656000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w8{width:40.536000px;}
.w10{width:41.796000px;}
.wc{width:49.716000px;}
.w9{width:52.740000px;}
.w11{width:54.360000px;}
.w7{width:61.920000px;}
.w3{width:62.460000px;}
.w4{width:63.396000px;}
.wf{width:63.900000px;}
.wb{width:64.440000px;}
.w6{width:67.716000px;}
.w5{width:68.760000px;}
.we{width:69.876000px;}
.wd{width:71.100000px;}
.wa{width:75.456000px;}
.w12{width:78.156000px;}
.w16{width:82.656000px;}
.w17{width:82.836000px;}
.w15{width:100.440000px;}
.w14{width:100.476000px;}
.w13{width:129.096000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x3{left:64.835991px;}
.x9{left:78.695991px;}
.x5{left:87.695991px;}
.x1d{left:91.835991px;}
.xe{left:128.736000px;}
.x13{left:130.716000px;}
.x6{left:162.389991px;}
.x14{left:181.155000px;}
.xf{left:192.855000px;}
.xb{left:194.474991px;}
.xa{left:197.894991px;}
.x8{left:216.794991px;}
.x15{left:252.975000px;}
.x4{left:262.154991px;}
.x1e{left:286.634991px;}
.x1a{left:296.565000px;}
.x2{left:302.144991px;}
.x7{left:314.744991px;}
.x16{left:323.565000px;}
.x10{left:330.765000px;}
.x1{left:373.604991px;}
.x17{left:388.185000px;}
.xc{left:392.504991px;}
.x1b{left:397.725000px;}
.x18{left:430.710000px;}
.x11{left:434.850000px;}
.x1c{left:481.110000px;}
.x19{left:485.790000px;}
.x12{left:488.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls9{letter-spacing:30.208000pt;}
.ws4{word-spacing:-16.320000pt;}
.ws0{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-5.418027pt;}
._1a{margin-left:-4.469547pt;}
._9{margin-left:-3.392000pt;}
._1{margin-left:-2.432000pt;}
._0{margin-left:-1.098453pt;}
._2{width:1.173120pt;}
._3{width:2.240000pt;}
._d{width:3.520000pt;}
._13{width:4.672000pt;}
._14{width:5.866880pt;}
._19{width:7.402880pt;}
._8{width:8.384000pt;}
._a{width:9.280000pt;}
._3d{width:10.176000pt;}
._c{width:11.072000pt;}
._16{width:12.224000pt;}
._11{width:13.248000pt;}
._21{width:14.751360pt;}
._18{width:17.728000pt;}
._20{width:18.858880pt;}
._4{width:19.968000pt;}
._15{width:21.376000pt;}
._2f{width:22.720000pt;}
._10{width:24.000000pt;}
._1d{width:24.938880pt;}
._1c{width:25.920000pt;}
._22{width:27.136000pt;}
._5{width:28.032000pt;}
._6{width:28.928000pt;}
._7{width:29.824000pt;}
._12{width:30.986453pt;}
._e{width:32.448000pt;}
._f{width:33.344000pt;}
._2d{width:34.624000pt;}
._2e{width:35.712000pt;}
._25{width:37.504000pt;}
._17{width:40.064000pt;}
._2a{width:40.960000pt;}
._29{width:42.496000pt;}
._26{width:43.648000pt;}
._28{width:45.204907pt;}
._27{width:46.272000pt;}
._33{width:47.296000pt;}
._34{width:48.960000pt;}
._31{width:51.712000pt;}
._32{width:52.618240pt;}
._3a{width:54.144000pt;}
._38{width:55.680000pt;}
._37{width:56.640000pt;}
._24{width:58.496000pt;}
._23{width:59.904000pt;}
._2b{width:61.120000pt;}
._2c{width:62.080000pt;}
._30{width:63.232000pt;}
._35{width:64.192000pt;}
._39{width:65.482453pt;}
._3b{width:66.624000pt;}
._3c{width:68.042667pt;}
._1f{width:76.618667pt;}
._1e{width:77.706453pt;}
._b{width:82.432000pt;}
._36{width:105.792000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:4.800000pt;}
.y5f{bottom:26.240000pt;}
.y3f{bottom:26.400000pt;}
.y59{bottom:26.440000pt;}
.y51{bottom:47.840000pt;}
.y3e{bottom:47.994667pt;}
.y3{bottom:51.872000pt;}
.y50{bottom:69.440000pt;}
.y2{bottom:69.792000pt;}
.y4f{bottom:91.066667pt;}
.y5c{bottom:93.312000pt;}
.y3d{bottom:95.392000pt;}
.y57{bottom:95.552000pt;}
.y79{bottom:96.832000pt;}
.y3c{bottom:100.832000pt;}
.y1f{bottom:106.752000pt;}
.y4e{bottom:112.666667pt;}
.y5b{bottom:115.712000pt;}
.y56{bottom:117.152000pt;}
.y78{bottom:118.432000pt;}
.y3b{bottom:122.432000pt;}
.y1e{bottom:128.352000pt;}
.y5a{bottom:137.946667pt;}
.y55{bottom:138.746667pt;}
.y77{bottom:140.026667pt;}
.y7a{bottom:141.466667pt;}
.y3a{bottom:144.026667pt;}
.y1d{bottom:149.946667pt;}
.y58{bottom:160.186667pt;}
.y54{bottom:160.346667pt;}
.y76{bottom:161.626667pt;}
.y39{bottom:165.626667pt;}
.y1c{bottom:171.546667pt;}
.y53{bottom:177.826667pt;}
.y75{bottom:183.266667pt;}
.y38{bottom:187.266667pt;}
.y1b{bottom:193.186667pt;}
.y74{bottom:204.866667pt;}
.y37{bottom:208.866667pt;}
.y1a{bottom:214.786667pt;}
.y52{bottom:221.666667pt;}
.y73{bottom:226.466667pt;}
.y36{bottom:230.466667pt;}
.y19{bottom:236.386667pt;}
.y72{bottom:248.066667pt;}
.y35{bottom:252.066667pt;}
.y18{bottom:257.826667pt;}
.y4d{bottom:265.506667pt;}
.y71{bottom:269.506667pt;}
.y34{bottom:273.506667pt;}
.y17{bottom:279.426667pt;}
.y70{bottom:291.106667pt;}
.y33{bottom:295.106667pt;}
.y16{bottom:301.026667pt;}
.y6f{bottom:312.706667pt;}
.y32{bottom:316.706667pt;}
.y15{bottom:322.626667pt;}
.y6e{bottom:334.306667pt;}
.y31{bottom:338.306667pt;}
.y14{bottom:344.226667pt;}
.y6d{bottom:355.933333pt;}
.y30{bottom:359.933333pt;}
.y13{bottom:365.853333pt;}
.y6c{bottom:377.533333pt;}
.y2f{bottom:381.533333pt;}
.y12{bottom:387.453333pt;}
.y6b{bottom:399.133333pt;}
.y4c{bottom:400.413333pt;}
.y2e{bottom:403.133333pt;}
.y11{bottom:409.053333pt;}
.y6a{bottom:420.733333pt;}
.y4b{bottom:422.013333pt;}
.y2d{bottom:424.733333pt;}
.y10{bottom:430.653333pt;}
.y69{bottom:442.333333pt;}
.y4a{bottom:443.613333pt;}
.y2c{bottom:446.333333pt;}
.yf{bottom:452.253333pt;}
.y68{bottom:463.933333pt;}
.y49{bottom:465.213333pt;}
.y2b{bottom:467.933333pt;}
.ye{bottom:473.853333pt;}
.y67{bottom:485.533333pt;}
.y48{bottom:486.813333pt;}
.y2a{bottom:489.533333pt;}
.yd{bottom:497.053333pt;}
.y66{bottom:506.973333pt;}
.y47{bottom:508.413333pt;}
.y29{bottom:510.973333pt;}
.yc{bottom:518.653333pt;}
.y65{bottom:528.573333pt;}
.y46{bottom:530.013333pt;}
.y28{bottom:532.613333pt;}
.yb{bottom:544.613333pt;}
.y64{bottom:550.213333pt;}
.y45{bottom:551.653333pt;}
.y27{bottom:554.213333pt;}
.ya{bottom:566.213333pt;}
.y63{bottom:571.813333pt;}
.y44{bottom:573.253333pt;}
.y26{bottom:575.813333pt;}
.y9{bottom:587.813333pt;}
.y62{bottom:589.253333pt;}
.y43{bottom:590.693333pt;}
.y25{bottom:597.413333pt;}
.y8{bottom:609.413333pt;}
.y61{bottom:611.493333pt;}
.y24{bottom:619.013333pt;}
.y7{bottom:631.013333pt;}
.y60{bottom:633.733333pt;}
.y42{bottom:634.533333pt;}
.y23{bottom:640.613333pt;}
.y5e{bottom:656.133333pt;}
.y6{bottom:656.933333pt;}
.y22{bottom:662.213333pt;}
.y41{bottom:678.373333pt;}
.y5{bottom:678.533333pt;}
.y21{bottom:683.813333pt;}
.y5d{bottom:699.973333pt;}
.y4{bottom:700.933333pt;}
.y20{bottom:705.413333pt;}
.y1{bottom:728.960000pt;}
.he{height:21.440000pt;}
.hf{height:21.472000pt;}
.hd{height:21.600000pt;}
.ha{height:43.040000pt;}
.h9{height:43.072000pt;}
.hc{height:43.232000pt;}
.h7{height:46.718750pt;}
.h2{height:46.906250pt;}
.h6{height:47.125000pt;}
.h5{height:55.136250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h8{height:64.800000pt;}
.hb{height:129.472000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w8{width:36.032000pt;}
.w10{width:37.152000pt;}
.wc{width:44.192000pt;}
.w9{width:46.880000pt;}
.w11{width:48.320000pt;}
.w7{width:55.040000pt;}
.w3{width:55.520000pt;}
.w4{width:56.352000pt;}
.wf{width:56.800000pt;}
.wb{width:57.280000pt;}
.w6{width:60.192000pt;}
.w5{width:61.120000pt;}
.we{width:62.112000pt;}
.wd{width:63.200000pt;}
.wa{width:67.072000pt;}
.w12{width:69.472000pt;}
.w16{width:73.472000pt;}
.w17{width:73.632000pt;}
.w15{width:89.280000pt;}
.w14{width:89.312000pt;}
.w13{width:114.752000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x3{left:57.631992pt;}
.x9{left:69.951992pt;}
.x5{left:77.951992pt;}
.x1d{left:81.631992pt;}
.xe{left:114.432000pt;}
.x13{left:116.192000pt;}
.x6{left:144.346658pt;}
.x14{left:161.026667pt;}
.xf{left:171.426667pt;}
.xb{left:172.866658pt;}
.xa{left:175.906658pt;}
.x8{left:192.706658pt;}
.x15{left:224.866667pt;}
.x4{left:233.026658pt;}
.x1e{left:254.786658pt;}
.x1a{left:263.613333pt;}
.x2{left:268.573325pt;}
.x7{left:279.773325pt;}
.x16{left:287.613333pt;}
.x10{left:294.013333pt;}
.x1{left:332.093325pt;}
.x17{left:345.053333pt;}
.xc{left:348.893325pt;}
.x1b{left:353.533333pt;}
.x18{left:382.853333pt;}
.x11{left:386.533333pt;}
.x1c{left:427.653333pt;}
.x19{left:431.813333pt;}
.x12{left:434.213333pt;}
}




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