
    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_8f59bd8e9b8744ccded4eaec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_d8a8f19c9951cfab920d3791.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d21567cb3aed2928dafddd9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_74343d1c6300c71dd9901129.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_83a03c81dffcac43b097b097.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_975ae0b6a529741d34b8bb5c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c09c20726c19b853e83fd495.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_62d0709129c776b2b6268283.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_967a7d1e753d7063eeaa33e2.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_e97ef3921b9a128354341213.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.288600px;}
.ls0{letter-spacing:0.661680px;}
.ls2{letter-spacing:0.702000px;}
.lsb{letter-spacing:33.960000px;}
.lsc{letter-spacing:64.002720px;}
.ls4{letter-spacing:1757.274240px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-59.760000px;}
.ws5{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws4{word-spacing:-12.060000px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:2.868480px;}
._7{margin-left:-11.302560px;}
._8{margin-left:-6.912000px;}
._6{margin-left:-5.611680px;}
._5{margin-left:-4.569120px;}
._4{margin-left:-2.885760px;}
._1{margin-left:-1.242000px;}
._0{width:1.496640px;}
._e{width:3.183360px;}
._12{width:4.320000px;}
._13{width:5.487360px;}
._10{width:6.744000px;}
._11{width:8.016000px;}
._a{width:9.720000px;}
._b{width:10.887360px;}
._14{width:12.368640px;}
._9{width:14.256000px;}
._16{width:15.284400px;}
._15{width:16.372800px;}
._2{width:17.463600px;}
._3{width:19.209360px;}
._17{width:22.608000px;}
._18{width:23.688000px;}
._d{width:29.322000px;}
._c{width:30.384000px;}
._f{width:32.976000px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:4.500000px;}
.ya{bottom:5.760000px;}
.y7{bottom:6.480000px;}
.y69{bottom:9.360000px;}
.y55{bottom:13.500000px;}
.y5a{bottom:13.545000px;}
.y8{bottom:14.940000px;}
.y4{bottom:16.380000px;}
.y5{bottom:17.640000px;}
.y2{bottom:23.610000px;}
.ye{bottom:56.880000px;}
.yd{bottom:74.880000px;}
.yc{bottom:91.476000px;}
.y53{bottom:140.976000px;}
.y33{bottom:155.910000px;}
.y75{bottom:165.090000px;}
.y52{bottom:182.550000px;}
.y74{bottom:185.790000px;}
.y94{bottom:196.410000px;}
.y32{bottom:197.670000px;}
.y73{bottom:206.490000px;}
.y31{bottom:218.370000px;}
.y51{bottom:224.310000px;}
.y93{bottom:237.990000px;}
.y30{bottom:239.070000px;}
.y72{bottom:248.250000px;}
.y92{bottom:258.690000px;}
.y50{bottom:266.070000px;}
.y71{bottom:268.950000px;}
.y91{bottom:279.390000px;}
.y2f{bottom:280.650000px;}
.y4f{bottom:286.770000px;}
.y70{bottom:289.650000px;}
.y90{bottom:300.090000px;}
.y2e{bottom:301.350000px;}
.y4e{bottom:307.470000px;}
.y6f{bottom:310.350000px;}
.y8f{bottom:320.790000px;}
.y2d{bottom:322.050000px;}
.y4d{bottom:328.170000px;}
.y8e{bottom:341.490000px;}
.y2c{bottom:342.750000px;}
.y4c{bottom:348.870000px;}
.y6e{bottom:355.395000px;}
.y8d{bottom:362.235000px;}
.y2b{bottom:363.495000px;}
.y4b{bottom:369.615000px;}
.y6d{bottom:372.855000px;}
.y2a{bottom:384.195000px;}
.y6c{bottom:399.675000px;}
.y8c{bottom:403.995000px;}
.y4a{bottom:411.195000px;}
.y29{bottom:425.955000px;}
.y6b{bottom:426.495000px;}
.y8b{bottom:445.755000px;}
.y49{bottom:452.955000px;}
.y6a{bottom:453.315000px;}
.y28{bottom:467.715000px;}
.y48{bottom:473.655000px;}
.y68{bottom:480.315000px;}
.y8a{bottom:487.335000px;}
.y27{bottom:488.415000px;}
.y47{bottom:494.355000px;}
.y89{bottom:508.035000px;}
.y46{bottom:515.055000px;}
.y67{bottom:526.395000px;}
.y88{bottom:528.735000px;}
.y26{bottom:529.995000px;}
.y87{bottom:549.435000px;}
.y25{bottom:550.695000px;}
.y45{bottom:556.635000px;}
.y66{bottom:562.215000px;}
.y24{bottom:571.395000px;}
.y86{bottom:591.015000px;}
.y23{bottom:592.095000px;}
.y65{bottom:598.215000px;}
.y44{bottom:598.395000px;}
.y22{bottom:612.795000px;}
.y64{bottom:622.365000px;}
.y85{bottom:632.805000px;}
.y21{bottom:633.525000px;}
.y43{bottom:640.185000px;}
.y63{bottom:646.305000px;}
.y84{bottom:653.505000px;}
.y20{bottom:654.225000px;}
.y42{bottom:660.885000px;}
.y62{bottom:670.245000px;}
.y83{bottom:674.205000px;}
.y1f{bottom:674.925000px;}
.y41{bottom:681.585000px;}
.y61{bottom:694.185000px;}
.y82{bottom:694.905000px;}
.y1e{bottom:695.625000px;}
.y40{bottom:702.285000px;}
.y81{bottom:715.605000px;}
.y1d{bottom:716.325000px;}
.y60{bottom:718.125000px;}
.y3f{bottom:722.985000px;}
.y80{bottom:736.305000px;}
.y1c{bottom:737.025000px;}
.y5f{bottom:742.245000px;}
.y3e{bottom:743.685000px;}
.y5e{bottom:766.185000px;}
.y7f{bottom:778.065000px;}
.y1b{bottom:778.785000px;}
.y3d{bottom:785.265000px;}
.y5d{bottom:790.125000px;}
.y7e{bottom:798.765000px;}
.y5c{bottom:814.065000px;}
.y7d{bottom:819.465000px;}
.y1a{bottom:820.545000px;}
.y3c{bottom:830.265000px;}
.y7c{bottom:840.165000px;}
.y19{bottom:841.245000px;}
.y5b{bottom:850.065000px;}
.y7b{bottom:860.865000px;}
.y18{bottom:861.945000px;}
.y3b{bottom:866.265000px;}
.y59{bottom:867.525000px;}
.y17{bottom:882.690000px;}
.y58{bottom:898.710000px;}
.y3a{bottom:902.310000px;}
.y7a{bottom:902.670000px;}
.y16{bottom:903.390000px;}
.y15{bottom:924.090000px;}
.y57{bottom:929.670000px;}
.y39{bottom:944.070000px;}
.y79{bottom:944.250000px;}
.y14{bottom:944.790000px;}
.y56{bottom:960.810000px;}
.y78{bottom:964.950000px;}
.y13{bottom:965.490000px;}
.y38{bottom:985.650000px;}
.y12{bottom:986.190000px;}
.y54{bottom:991.770000px;}
.y37{bottom:1006.350000px;}
.y11{bottom:1007.430000px;}
.y36{bottom:1027.050000px;}
.y10{bottom:1040.910000px;}
.y35{bottom:1047.750000px;}
.y77{bottom:1048.110000px;}
.y76{bottom:1068.810000px;}
.yf{bottom:1077.810000px;}
.y34{bottom:1089.510000px;}
.yb{bottom:1111.110000px;}
.y1{bottom:1128.210000px;}
.y6{bottom:1148.400000px;}
.y3{bottom:1177.740000px;}
.h8{height:20.196000px;}
.h15{height:26.100000px;}
.h6{height:29.340000px;}
.h13{height:30.240000px;}
.h14{height:30.276000px;}
.h4{height:32.040000px;}
.hf{height:50.273438px;}
.h10{height:50.800781px;}
.h12{height:52.417969px;}
.hb{height:53.709961px;}
.he{height:57.796523px;}
.h11{height:59.343750px;}
.hd{height:59.436914px;}
.h5{height:61.189805px;}
.h9{height:65.884219px;}
.h3{height:67.824844px;}
.ha{height:71.613281px;}
.h2{height:81.576000px;}
.h7{height:95.245664px;}
.hc{height:114.486328px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:82.800000px;}
.w4{width:143.496000px;}
.w9{width:181.830000px;}
.w7{width:217.830000px;}
.w6{width:227.595000px;}
.w8{width:256.215000px;}
.w3{width:470.085000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x8{left:11.340000px;}
.x6{left:22.320000px;}
.x9{left:33.120000px;}
.x7{left:47.160000px;}
.x1c{left:56.340000px;}
.x1f{left:59.400000px;}
.x1e{left:62.865000px;}
.x2{left:66.954000px;}
.x14{left:72.540000px;}
.x12{left:75.645000px;}
.x1d{left:79.065000px;}
.x18{left:86.805000px;}
.x15{left:91.305000px;}
.x16{left:92.340000px;}
.x17{left:93.825000px;}
.x1a{left:105.165000px;}
.x1{left:108.036000px;}
.x10{left:135.035987px;}
.xa{left:158.789987px;}
.x20{left:162.029987px;}
.x3{left:190.830000px;}
.xf{left:216.569987px;}
.x11{left:223.410000px;}
.x19{left:227.190000px;}
.xb{left:242.309987px;}
.xe{left:276.554987px;}
.xd{left:340.094987px;}
.xc{left:446.504987px;}
.x13{left:451.905000px;}
.x1b{left:484.125000px;}
.x5{left:660.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.256533pt;}
.ls0{letter-spacing:0.588160pt;}
.ls2{letter-spacing:0.624000pt;}
.lsb{letter-spacing:30.186667pt;}
.lsc{letter-spacing:56.891307pt;}
.ls4{letter-spacing:1562.021547pt;}
.ws8{word-spacing:-53.120000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:2.549760pt;}
._7{margin-left:-10.046720pt;}
._8{margin-left:-6.144000pt;}
._6{margin-left:-4.988160pt;}
._5{margin-left:-4.061440pt;}
._4{margin-left:-2.565120pt;}
._1{margin-left:-1.104000pt;}
._0{width:1.330347pt;}
._e{width:2.829653pt;}
._12{width:3.840000pt;}
._13{width:4.877653pt;}
._10{width:5.994667pt;}
._11{width:7.125333pt;}
._a{width:8.640000pt;}
._b{width:9.677653pt;}
._14{width:10.994347pt;}
._9{width:12.672000pt;}
._16{width:13.586133pt;}
._15{width:14.553600pt;}
._2{width:15.523200pt;}
._3{width:17.074987pt;}
._17{width:20.096000pt;}
._18{width:21.056000pt;}
._d{width:26.064000pt;}
._c{width:27.008000pt;}
._f{width:29.312000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.000000pt;}
.ya{bottom:5.120000pt;}
.y7{bottom:5.760000pt;}
.y69{bottom:8.320000pt;}
.y55{bottom:12.000000pt;}
.y5a{bottom:12.040000pt;}
.y8{bottom:13.280000pt;}
.y4{bottom:14.560000pt;}
.y5{bottom:15.680000pt;}
.y2{bottom:20.986667pt;}
.ye{bottom:50.560000pt;}
.yd{bottom:66.560000pt;}
.yc{bottom:81.312000pt;}
.y53{bottom:125.312000pt;}
.y33{bottom:138.586667pt;}
.y75{bottom:146.746667pt;}
.y52{bottom:162.266667pt;}
.y74{bottom:165.146667pt;}
.y94{bottom:174.586667pt;}
.y32{bottom:175.706667pt;}
.y73{bottom:183.546667pt;}
.y31{bottom:194.106667pt;}
.y51{bottom:199.386667pt;}
.y93{bottom:211.546667pt;}
.y30{bottom:212.506667pt;}
.y72{bottom:220.666667pt;}
.y92{bottom:229.946667pt;}
.y50{bottom:236.506667pt;}
.y71{bottom:239.066667pt;}
.y91{bottom:248.346667pt;}
.y2f{bottom:249.466667pt;}
.y4f{bottom:254.906667pt;}
.y70{bottom:257.466667pt;}
.y90{bottom:266.746667pt;}
.y2e{bottom:267.866667pt;}
.y4e{bottom:273.306667pt;}
.y6f{bottom:275.866667pt;}
.y8f{bottom:285.146667pt;}
.y2d{bottom:286.266667pt;}
.y4d{bottom:291.706667pt;}
.y8e{bottom:303.546667pt;}
.y2c{bottom:304.666667pt;}
.y4c{bottom:310.106667pt;}
.y6e{bottom:315.906667pt;}
.y8d{bottom:321.986667pt;}
.y2b{bottom:323.106667pt;}
.y4b{bottom:328.546667pt;}
.y6d{bottom:331.426667pt;}
.y2a{bottom:341.506667pt;}
.y6c{bottom:355.266667pt;}
.y8c{bottom:359.106667pt;}
.y4a{bottom:365.506667pt;}
.y29{bottom:378.626667pt;}
.y6b{bottom:379.106667pt;}
.y8b{bottom:396.226667pt;}
.y49{bottom:402.626667pt;}
.y6a{bottom:402.946667pt;}
.y28{bottom:415.746667pt;}
.y48{bottom:421.026667pt;}
.y68{bottom:426.946667pt;}
.y8a{bottom:433.186667pt;}
.y27{bottom:434.146667pt;}
.y47{bottom:439.426667pt;}
.y89{bottom:451.586667pt;}
.y46{bottom:457.826667pt;}
.y67{bottom:467.906667pt;}
.y88{bottom:469.986667pt;}
.y26{bottom:471.106667pt;}
.y87{bottom:488.386667pt;}
.y25{bottom:489.506667pt;}
.y45{bottom:494.786667pt;}
.y66{bottom:499.746667pt;}
.y24{bottom:507.906667pt;}
.y86{bottom:525.346667pt;}
.y23{bottom:526.306667pt;}
.y65{bottom:531.746667pt;}
.y44{bottom:531.906667pt;}
.y22{bottom:544.706667pt;}
.y64{bottom:553.213333pt;}
.y85{bottom:562.493333pt;}
.y21{bottom:563.133333pt;}
.y43{bottom:569.053333pt;}
.y63{bottom:574.493333pt;}
.y84{bottom:580.893333pt;}
.y20{bottom:581.533333pt;}
.y42{bottom:587.453333pt;}
.y62{bottom:595.773333pt;}
.y83{bottom:599.293333pt;}
.y1f{bottom:599.933333pt;}
.y41{bottom:605.853333pt;}
.y61{bottom:617.053333pt;}
.y82{bottom:617.693333pt;}
.y1e{bottom:618.333333pt;}
.y40{bottom:624.253333pt;}
.y81{bottom:636.093333pt;}
.y1d{bottom:636.733333pt;}
.y60{bottom:638.333333pt;}
.y3f{bottom:642.653333pt;}
.y80{bottom:654.493333pt;}
.y1c{bottom:655.133333pt;}
.y5f{bottom:659.773333pt;}
.y3e{bottom:661.053333pt;}
.y5e{bottom:681.053333pt;}
.y7f{bottom:691.613333pt;}
.y1b{bottom:692.253333pt;}
.y3d{bottom:698.013333pt;}
.y5d{bottom:702.333333pt;}
.y7e{bottom:710.013333pt;}
.y5c{bottom:723.613333pt;}
.y7d{bottom:728.413333pt;}
.y1a{bottom:729.373333pt;}
.y3c{bottom:738.013333pt;}
.y7c{bottom:746.813333pt;}
.y19{bottom:747.773333pt;}
.y5b{bottom:755.613333pt;}
.y7b{bottom:765.213333pt;}
.y18{bottom:766.173333pt;}
.y3b{bottom:770.013333pt;}
.y59{bottom:771.133333pt;}
.y17{bottom:784.613333pt;}
.y58{bottom:798.853333pt;}
.y3a{bottom:802.053333pt;}
.y7a{bottom:802.373333pt;}
.y16{bottom:803.013333pt;}
.y15{bottom:821.413333pt;}
.y57{bottom:826.373333pt;}
.y39{bottom:839.173333pt;}
.y79{bottom:839.333333pt;}
.y14{bottom:839.813333pt;}
.y56{bottom:854.053333pt;}
.y78{bottom:857.733333pt;}
.y13{bottom:858.213333pt;}
.y38{bottom:876.133333pt;}
.y12{bottom:876.613333pt;}
.y54{bottom:881.573333pt;}
.y37{bottom:894.533333pt;}
.y11{bottom:895.493333pt;}
.y36{bottom:912.933333pt;}
.y10{bottom:925.253333pt;}
.y35{bottom:931.333333pt;}
.y77{bottom:931.653333pt;}
.y76{bottom:950.053333pt;}
.yf{bottom:958.053333pt;}
.y34{bottom:968.453333pt;}
.yb{bottom:987.653333pt;}
.y1{bottom:1002.853333pt;}
.y6{bottom:1020.800000pt;}
.y3{bottom:1046.880000pt;}
.h8{height:17.952000pt;}
.h15{height:23.200000pt;}
.h6{height:26.080000pt;}
.h13{height:26.880000pt;}
.h14{height:26.912000pt;}
.h4{height:28.480000pt;}
.hf{height:44.687500pt;}
.h10{height:45.156250pt;}
.h12{height:46.593750pt;}
.hb{height:47.742188pt;}
.he{height:51.374688pt;}
.h11{height:52.750000pt;}
.hd{height:52.832812pt;}
.h5{height:54.390938pt;}
.h9{height:58.563750pt;}
.h3{height:60.288750pt;}
.ha{height:63.656250pt;}
.h2{height:72.512000pt;}
.h7{height:84.662813pt;}
.hc{height:101.765625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:73.600000pt;}
.w4{width:127.552000pt;}
.w9{width:161.626667pt;}
.w7{width:193.626667pt;}
.w6{width:202.306667pt;}
.w8{width:227.746667pt;}
.w3{width:417.853333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x8{left:10.080000pt;}
.x6{left:19.840000pt;}
.x9{left:29.440000pt;}
.x7{left:41.920000pt;}
.x1c{left:50.080000pt;}
.x1f{left:52.800000pt;}
.x1e{left:55.880000pt;}
.x2{left:59.514667pt;}
.x14{left:64.480000pt;}
.x12{left:67.240000pt;}
.x1d{left:70.280000pt;}
.x18{left:77.160000pt;}
.x15{left:81.160000pt;}
.x16{left:82.080000pt;}
.x17{left:83.400000pt;}
.x1a{left:93.480000pt;}
.x1{left:96.032000pt;}
.x10{left:120.031988pt;}
.xa{left:141.146655pt;}
.x20{left:144.026655pt;}
.x3{left:169.626667pt;}
.xf{left:192.506655pt;}
.x11{left:198.586667pt;}
.x19{left:201.946667pt;}
.xb{left:215.386655pt;}
.xe{left:245.826655pt;}
.xd{left:302.306655pt;}
.xc{left:396.893322pt;}
.x13{left:401.693333pt;}
.x1b{left:430.333333pt;}
.x5{left:587.493333pt;}
}




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