
    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_e43ddaef5092616b85507eda.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922333;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_9a6697a0c5493aff4e61139a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922333;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_8e93a500282ef29eab9ba614.woff')format("woff");}.ff3{font-family:ff3;line-height:0.917286;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_f921d617c68f5b9201cceb70.woff')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v6{vertical-align:-51.840000px;}
.v3{vertical-align:-37.946952px;}
.v5{vertical-align:-19.020000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:10.224000px;}
.v4{vertical-align:37.946952px;}
.v1{vertical-align:43.200000px;}
.ls13{letter-spacing:-3.570000px;}
.ls12{letter-spacing:-2.130000px;}
.ls10{letter-spacing:-0.876000px;}
.ls17{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.164400px;}
.ls11{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.021250px;}
.lsd{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.011520px;}
.ls1{letter-spacing:0.029520px;}
.ls2{letter-spacing:0.058320px;}
.lsb{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.118800px;}
.ls4{letter-spacing:0.231000px;}
.ls3{letter-spacing:0.249840px;}
.ls6{letter-spacing:12.516423px;}
.ls8{letter-spacing:12.684907px;}
.ls5{letter-spacing:12.759283px;}
.ls9{letter-spacing:12.772185px;}
.ls7{letter-spacing:31.754010px;}
.lsa{letter-spacing:31.943745px;}
.ls0{letter-spacing:89.280000px;}
.lsc{letter-spacing:200.638320px;}
.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;}
}
.ws1{word-spacing:-47.675520px;}
.ws16{word-spacing:-29.699280px;}
.ws15{word-spacing:-26.856000px;}
.ws20{word-spacing:-20.891520px;}
.ws13{word-spacing:-2.427120px;}
.ws11{word-spacing:-1.651680px;}
.ws22{word-spacing:-1.627200px;}
.ws12{word-spacing:-0.190080px;}
.ws26{word-spacing:0.000000px;}
.ws25{word-spacing:0.406080px;}
.ws14{word-spacing:0.618480px;}
.ws21{word-spacing:0.732240px;}
.ws23{word-spacing:1.340640px;}
.ws24{word-spacing:1.694160px;}
.wsc{word-spacing:12.537840px;}
.wsa{word-spacing:13.107600px;}
.wsf{word-spacing:13.215600px;}
.wse{word-spacing:13.323600px;}
.ws10{word-spacing:13.344480px;}
.wsb{word-spacing:13.935600px;}
.wsd{word-spacing:14.115600px;}
.ws7{word-spacing:35.762400px;}
.ws8{word-spacing:35.931600px;}
.ws0{word-spacing:36.406560px;}
.ws5{word-spacing:36.478080px;}
.ws6{word-spacing:36.975600px;}
.ws18{word-spacing:37.404000px;}
.ws2{word-spacing:37.969721px;}
.ws9{word-spacing:38.579040px;}
.ws4{word-spacing:38.633792px;}
.ws3{word-spacing:38.645682px;}
.ws1c{word-spacing:38.664000px;}
.ws1a{word-spacing:39.084000px;}
.ws1f{word-spacing:42.084000px;}
.ws19{word-spacing:145.926240px;}
.ws1b{word-spacing:164.676960px;}
.ws17{word-spacing:165.861888px;}
.ws1e{word-spacing:168.096960px;}
.ws1d{word-spacing:182.321040px;}
._18{margin-left:-4882.433520px;}
._a{margin-left:-12.647065px;}
._8{margin-left:-2.411280px;}
._1{margin-left:-1.080000px;}
._0{width:1.080000px;}
._7{width:2.286000px;}
._17{width:3.480480px;}
._6{width:46.337760px;}
._4{width:47.530800px;}
._5{width:48.553440px;}
._3{width:61.839120px;}
._e{width:78.636000px;}
._12{width:80.136000px;}
._16{width:83.196000px;}
._2{width:85.322640px;}
._b{width:89.520000px;}
._f{width:91.020000px;}
._13{width:94.140000px;}
._c{width:105.240000px;}
._10{width:106.800000px;}
._14{width:109.860000px;}
._d{width:120.336000px;}
._11{width:121.836000px;}
._15{width:125.016000px;}
._9{width:1082.247840px;}
.fc7{color:transparent;}
.fc3{color:rgb(108,165,217);}
.fc2{color:rgb(109,165,213);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(127,127,127);}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(242,148,0);}
.fs9{font-size:7.200000px;}
.fse{font-size:63.360000px;}
.fs10{font-size:84.240000px;}
.fsb{font-size:84.242234px;}
.fs2{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fsa{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fsc{font-size:126.742821px;}
.fs6{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.fs3{font-size:192.240000px;}
.fs4{font-size:202.636726px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:16.230000px;}
.y62{bottom:16.275000px;}
.y81{bottom:16.305000px;}
.y8f{bottom:23.940000px;}
.y91{bottom:44.640000px;}
.y90{bottom:48.960000px;}
.y5c{bottom:52.530000px;}
.y7d{bottom:52.590000px;}
.y48{bottom:61.560000px;}
.y86{bottom:62.280000px;}
.y85{bottom:66.600000px;}
.y66{bottom:69.735000px;}
.y7c{bottom:69.810000px;}
.y67{bottom:78.480000px;}
.y84{bottom:81.540000px;}
.y4a{bottom:87.660000px;}
.y77{bottom:90.510000px;}
.y5b{bottom:90.540000px;}
.y47{bottom:91.620000px;}
.y71{bottom:94.065000px;}
.y5d{bottom:94.110000px;}
.y65{bottom:95.685000px;}
.y7b{bottom:104.400000px;}
.y68{bottom:104.430000px;}
.y33{bottom:115.665000px;}
.y45{bottom:115.740000px;}
.y49{bottom:117.504000px;}
.y5a{bottom:121.710000px;}
.y7e{bottom:121.830000px;}
.y69{bottom:130.395000px;}
.y72{bottom:135.615000px;}
.y5e{bottom:135.645000px;}
.ya{bottom:138.705000px;}
.y76{bottom:152.820000px;}
.y6a{bottom:156.345000px;}
.y70{bottom:173.595000px;}
.y79{bottom:173.670000px;}
.y73{bottom:177.120000px;}
.y5f{bottom:177.225000px;}
.y6b{bottom:182.340000px;}
.y7f{bottom:191.055000px;}
.y75{bottom:194.370000px;}
.y8a{bottom:194.940000px;}
.y7a{bottom:208.260000px;}
.y6c{bottom:208.290000px;}
.y83{bottom:212.580000px;}
.y74{bottom:218.670000px;}
.y60{bottom:218.775000px;}
.y89{bottom:220.140000px;}
.y31{bottom:223.665000px;}
.y3e{bottom:223.740000px;}
.y2c{bottom:223.770000px;}
.y59{bottom:225.615000px;}
.y6d{bottom:234.255000px;}
.y16{bottom:234.465000px;}
.y36{bottom:234.540000px;}
.ye{bottom:234.570000px;}
.y64{bottom:256.215000px;}
.y58{bottom:256.350000px;}
.y41{bottom:257.040000px;}
.y30{bottom:259.665000px;}
.y3d{bottom:259.740000px;}
.y2a{bottom:259.770000px;}
.y6e{bottom:260.205000px;}
.y80{bottom:260.280000px;}
.y61{bottom:260.355000px;}
.y15{bottom:271.185000px;}
.y35{bottom:271.260000px;}
.yd{bottom:271.290000px;}
.y8e{bottom:285.195000px;}
.y21{bottom:331.665000px;}
.y3b{bottom:331.740000px;}
.y13{bottom:331.770000px;}
.y8d{bottom:338.115000px;}
.y20{bottom:367.665000px;}
.y3a{bottom:367.740000px;}
.y12{bottom:367.770000px;}
.y3f{bottom:370.440000px;}
.y37{bottom:381.960000px;}
.y8c{bottom:391.035000px;}
.y43{bottom:401.040000px;}
.y1f{bottom:403.665000px;}
.y38{bottom:403.740000px;}
.y10{bottom:403.770000px;}
.y44{bottom:419.940000px;}
.y1c{bottom:439.665000px;}
.y28{bottom:439.740000px;}
.y8b{bottom:443.955000px;}
.y1b{bottom:475.665000px;}
.y26{bottom:475.770000px;}
.y23{bottom:491.580000px;}
.y34{bottom:495.360000px;}
.y1a{bottom:511.665000px;}
.y25{bottom:511.770000px;}
.y3c{bottom:525.960000px;}
.y46{bottom:535.680000px;}
.y19{bottom:547.665000px;}
.y24{bottom:547.770000px;}
.y2d{bottom:604.260000px;}
.y40{bottom:604.905000px;}
.y2f{bottom:618.660000px;}
.y42{bottom:624.705000px;}
.y18{bottom:652.680000px;}
.y22{bottom:730.980000px;}
.y32{bottom:762.660000px;}
.y29{bottom:779.580000px;}
.y39{bottom:785.700000px;}
.y1e{bottom:796.680000px;}
.y2e{bottom:838.725000px;}
.y14{bottom:892.080000px;}
.yf{bottom:921.600000px;}
.y27{bottom:967.350000px;}
.yc{bottom:1035.000000px;}
.y2b{bottom:1039.350000px;}
.y1d{bottom:1092.345000px;}
.y17{bottom:1126.545000px;}
.y9{bottom:1241.100000px;}
.y11{bottom:1325.370000px;}
.yb{bottom:1379.805000px;}
.y88{bottom:1434.345000px;}
.y87{bottom:1473.450000px;}
.y56{bottom:1566.435000px;}
.y53{bottom:1572.735000px;}
.y52{bottom:1608.735000px;}
.y55{bottom:1615.035000px;}
.y51{bottom:1644.735000px;}
.y54{bottom:1651.035000px;}
.y57{bottom:1691.280000px;}
.y78{bottom:1694.700000px;}
.y63{bottom:1695.600000px;}
.y4c{bottom:2001.345000px;}
.y82{bottom:2027.805000px;}
.y4b{bottom:2037.705000px;}
.y50{bottom:2152.545000px;}
.y4f{bottom:2205.465000px;}
.y8{bottom:2327.250000px;}
.y7{bottom:2398.170000px;}
.y6{bottom:2493.150000px;}
.y5{bottom:2550.750000px;}
.y4{bottom:2608.350000px;}
.y4e{bottom:2708.385000px;}
.y4d{bottom:2744.385000px;}
.y3{bottom:2787.630000px;}
.y2{bottom:2876.115000px;}
.y1{bottom:2984.115000px;}
.h13{height:7.161328px;}
.h1c{height:45.619200px;}
.h23{height:50.580000px;}
.h22{height:60.652800px;}
.h17{height:60.654409px;}
.h12{height:63.180000px;}
.h20{height:68.220000px;}
.h1a{height:68.947200px;}
.h1b{height:69.050880px;}
.h1d{height:77.004000px;}
.h15{height:77.760000px;}
.h18{height:85.731120px;}
.hc{height:86.572800px;}
.hf{height:86.676480px;}
.h14{height:87.984000px;}
.hb{height:93.944880px;}
.h8{height:102.672000px;}
.h9{height:103.680000px;}
.h3{height:112.147200px;}
.h16{height:119.612880px;}
.h21{height:119.715552px;}
.h6{height:120.787200px;}
.h4{height:138.412800px;}
.h5{height:145.898443px;}
.h1f{height:214.200000px;}
.h11{height:252.180000px;}
.h2{height:259.200000px;}
.h1e{height:281.520000px;}
.h19{height:281.700000px;}
.h7{height:302.580000px;}
.h10{height:504.180000px;}
.ha{height:529.380000px;}
.hd{height:756.180000px;}
.he{height:1008.180000px;}
.h0{height:3576.420000px;}
.h1{height:3576.750000px;}
.wa{width:194.040000px;}
.w9{width:214.200000px;}
.wb{width:286.020000px;}
.w5{width:384.120000px;}
.w8{width:408.600000px;}
.w4{width:874.260000px;}
.w3{width:895.680000px;}
.w7{width:933.555000px;}
.w6{width:2153.700000px;}
.w2{width:2525.939962px;}
.w0{width:2525.940000px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.x6{left:4.395000px;}
.x2d{left:9.795000px;}
.x3d{left:11.055000px;}
.x2c{left:12.705000px;}
.x32{left:14.505000px;}
.x33{left:15.510000px;}
.xb{left:17.130000px;}
.x3e{left:46.695000px;}
.x34{left:50.790000px;}
.x2e{left:52.845000px;}
.x30{left:56.805000px;}
.x27{left:58.710000px;}
.x36{left:60.660000px;}
.x3b{left:116.250000px;}
.x28{left:117.825000px;}
.x37{left:119.910000px;}
.x38{left:178.815000px;}
.x29{left:180.180000px;}
.x16{left:191.880000px;}
.xa{left:199.800000px;}
.x17{left:210.029962px;}
.x1{left:221.249962px;}
.x4{left:222.764962px;}
.x19{left:232.049962px;}
.x3c{left:236.085000px;}
.x31{left:237.855000px;}
.x2a{left:239.475000px;}
.x1c{left:276.584962px;}
.x1b{left:295.844962px;}
.x2b{left:298.050000px;}
.x12{left:310.319962px;}
.xd{left:321.119962px;}
.x1a{left:330.044962px;}
.x11{left:365.010000px;}
.x2{left:460.769962px;}
.x15{left:464.939962px;}
.x5{left:583.740000px;}
.x2f{left:628.200000px;}
.x13{left:640.469962px;}
.x1d{left:684.899962px;}
.x1f{left:703.799962px;}
.x1e{left:749.159962px;}
.x14{left:794.414962px;}
.x7{left:832.064962px;}
.xe{left:836.174962px;}
.x3{left:948.419962px;}
.xf{left:982.334962px;}
.x35{left:1062.360000px;}
.x18{left:1114.484962px;}
.x21{left:1129.574962px;}
.x20{left:1197.614962px;}
.xc{left:1303.844962px;}
.x8{left:1479.240000px;}
.x39{left:1492.380000px;}
.x22{left:1512.869962px;}
.x24{left:1552.859962px;}
.x23{left:1626.839962px;}
.x10{left:1693.004962px;}
.x9{left:1750.289962px;}
.x3a{left:1926.360000px;}
.x25{left:1983.134962px;}
.x26{left:1989.254962px;}
.x41{left:2063.670000px;}
.x42{left:2105.819962px;}
.x3f{left:2139.450000px;}
.x40{left:2141.250000px;}
@media print{
.v6{vertical-align:-46.080000pt;}
.v3{vertical-align:-33.730624pt;}
.v5{vertical-align:-16.906667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:9.088000pt;}
.v4{vertical-align:33.730624pt;}
.v1{vertical-align:38.400000pt;}
.ls13{letter-spacing:-3.173333pt;}
.ls12{letter-spacing:-1.893333pt;}
.ls10{letter-spacing:-0.778667pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.146133pt;}
.ls11{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.018889pt;}
.lsd{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.010240pt;}
.ls1{letter-spacing:0.026240pt;}
.ls2{letter-spacing:0.051840pt;}
.lsb{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.105600pt;}
.ls4{letter-spacing:0.205333pt;}
.ls3{letter-spacing:0.222080pt;}
.ls6{letter-spacing:11.125709pt;}
.ls8{letter-spacing:11.275473pt;}
.ls5{letter-spacing:11.341585pt;}
.ls9{letter-spacing:11.353054pt;}
.ls7{letter-spacing:28.225787pt;}
.lsa{letter-spacing:28.394440pt;}
.ls0{letter-spacing:79.360000pt;}
.lsc{letter-spacing:178.345173pt;}
.ws1{word-spacing:-42.378240pt;}
.ws16{word-spacing:-26.399360pt;}
.ws15{word-spacing:-23.872000pt;}
.ws20{word-spacing:-18.570240pt;}
.ws13{word-spacing:-2.157440pt;}
.ws11{word-spacing:-1.468160pt;}
.ws22{word-spacing:-1.446400pt;}
.ws12{word-spacing:-0.168960pt;}
.ws26{word-spacing:0.000000pt;}
.ws25{word-spacing:0.360960pt;}
.ws14{word-spacing:0.549760pt;}
.ws21{word-spacing:0.650880pt;}
.ws23{word-spacing:1.191680pt;}
.ws24{word-spacing:1.505920pt;}
.wsc{word-spacing:11.144747pt;}
.wsa{word-spacing:11.651200pt;}
.wsf{word-spacing:11.747200pt;}
.wse{word-spacing:11.843200pt;}
.ws10{word-spacing:11.861760pt;}
.wsb{word-spacing:12.387200pt;}
.wsd{word-spacing:12.547200pt;}
.ws7{word-spacing:31.788800pt;}
.ws8{word-spacing:31.939200pt;}
.ws0{word-spacing:32.361387pt;}
.ws5{word-spacing:32.424960pt;}
.ws6{word-spacing:32.867200pt;}
.ws18{word-spacing:33.248000pt;}
.ws2{word-spacing:33.750863pt;}
.ws9{word-spacing:34.292480pt;}
.ws4{word-spacing:34.341149pt;}
.ws3{word-spacing:34.351718pt;}
.ws1c{word-spacing:34.368000pt;}
.ws1a{word-spacing:34.741333pt;}
.ws1f{word-spacing:37.408000pt;}
.ws19{word-spacing:129.712213pt;}
.ws1b{word-spacing:146.379520pt;}
.ws17{word-spacing:147.432789pt;}
.ws1e{word-spacing:149.419520pt;}
.ws1d{word-spacing:162.063147pt;}
._18{margin-left:-4339.940907pt;}
._a{margin-left:-11.241835pt;}
._8{margin-left:-2.143360pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.960000pt;}
._7{width:2.032000pt;}
._17{width:3.093760pt;}
._6{width:41.189120pt;}
._4{width:42.249600pt;}
._5{width:43.158613pt;}
._3{width:54.968107pt;}
._e{width:69.898667pt;}
._12{width:71.232000pt;}
._16{width:73.952000pt;}
._2{width:75.842347pt;}
._b{width:79.573333pt;}
._f{width:80.906667pt;}
._13{width:83.680000pt;}
._c{width:93.546667pt;}
._10{width:94.933333pt;}
._14{width:97.653333pt;}
._d{width:106.965333pt;}
._11{width:108.298667pt;}
._15{width:111.125333pt;}
._9{width:961.998080pt;}
.fs9{font-size:6.400000pt;}
.fse{font-size:56.320000pt;}
.fs10{font-size:74.880000pt;}
.fsb{font-size:74.881986pt;}
.fs2{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fsa{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fsc{font-size:112.660286pt;}
.fs6{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.fs3{font-size:170.880000pt;}
.fs4{font-size:180.121534pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:14.426667pt;}
.y62{bottom:14.466667pt;}
.y81{bottom:14.493333pt;}
.y8f{bottom:21.280000pt;}
.y91{bottom:39.680000pt;}
.y90{bottom:43.520000pt;}
.y5c{bottom:46.693333pt;}
.y7d{bottom:46.746667pt;}
.y48{bottom:54.720000pt;}
.y86{bottom:55.360000pt;}
.y85{bottom:59.200000pt;}
.y66{bottom:61.986667pt;}
.y7c{bottom:62.053333pt;}
.y67{bottom:69.760000pt;}
.y84{bottom:72.480000pt;}
.y4a{bottom:77.920000pt;}
.y77{bottom:80.453333pt;}
.y5b{bottom:80.480000pt;}
.y47{bottom:81.440000pt;}
.y71{bottom:83.613333pt;}
.y5d{bottom:83.653333pt;}
.y65{bottom:85.053333pt;}
.y7b{bottom:92.800000pt;}
.y68{bottom:92.826667pt;}
.y33{bottom:102.813333pt;}
.y45{bottom:102.880000pt;}
.y49{bottom:104.448000pt;}
.y5a{bottom:108.186667pt;}
.y7e{bottom:108.293333pt;}
.y69{bottom:115.906667pt;}
.y72{bottom:120.546667pt;}
.y5e{bottom:120.573333pt;}
.ya{bottom:123.293333pt;}
.y76{bottom:135.840000pt;}
.y6a{bottom:138.973333pt;}
.y70{bottom:154.306667pt;}
.y79{bottom:154.373333pt;}
.y73{bottom:157.440000pt;}
.y5f{bottom:157.533333pt;}
.y6b{bottom:162.080000pt;}
.y7f{bottom:169.826667pt;}
.y75{bottom:172.773333pt;}
.y8a{bottom:173.280000pt;}
.y7a{bottom:185.120000pt;}
.y6c{bottom:185.146667pt;}
.y83{bottom:188.960000pt;}
.y74{bottom:194.373333pt;}
.y60{bottom:194.466667pt;}
.y89{bottom:195.680000pt;}
.y31{bottom:198.813333pt;}
.y3e{bottom:198.880000pt;}
.y2c{bottom:198.906667pt;}
.y59{bottom:200.546667pt;}
.y6d{bottom:208.226667pt;}
.y16{bottom:208.413333pt;}
.y36{bottom:208.480000pt;}
.ye{bottom:208.506667pt;}
.y64{bottom:227.746667pt;}
.y58{bottom:227.866667pt;}
.y41{bottom:228.480000pt;}
.y30{bottom:230.813333pt;}
.y3d{bottom:230.880000pt;}
.y2a{bottom:230.906667pt;}
.y6e{bottom:231.293333pt;}
.y80{bottom:231.360000pt;}
.y61{bottom:231.426667pt;}
.y15{bottom:241.053333pt;}
.y35{bottom:241.120000pt;}
.yd{bottom:241.146667pt;}
.y8e{bottom:253.506667pt;}
.y21{bottom:294.813333pt;}
.y3b{bottom:294.880000pt;}
.y13{bottom:294.906667pt;}
.y8d{bottom:300.546667pt;}
.y20{bottom:326.813333pt;}
.y3a{bottom:326.880000pt;}
.y12{bottom:326.906667pt;}
.y3f{bottom:329.280000pt;}
.y37{bottom:339.520000pt;}
.y8c{bottom:347.586667pt;}
.y43{bottom:356.480000pt;}
.y1f{bottom:358.813333pt;}
.y38{bottom:358.880000pt;}
.y10{bottom:358.906667pt;}
.y44{bottom:373.280000pt;}
.y1c{bottom:390.813333pt;}
.y28{bottom:390.880000pt;}
.y8b{bottom:394.626667pt;}
.y1b{bottom:422.813333pt;}
.y26{bottom:422.906667pt;}
.y23{bottom:436.960000pt;}
.y34{bottom:440.320000pt;}
.y1a{bottom:454.813333pt;}
.y25{bottom:454.906667pt;}
.y3c{bottom:467.520000pt;}
.y46{bottom:476.160000pt;}
.y19{bottom:486.813333pt;}
.y24{bottom:486.906667pt;}
.y2d{bottom:537.120000pt;}
.y40{bottom:537.693333pt;}
.y2f{bottom:549.920000pt;}
.y42{bottom:555.293333pt;}
.y18{bottom:580.160000pt;}
.y22{bottom:649.760000pt;}
.y32{bottom:677.920000pt;}
.y29{bottom:692.960000pt;}
.y39{bottom:698.400000pt;}
.y1e{bottom:708.160000pt;}
.y2e{bottom:745.533333pt;}
.y14{bottom:792.960000pt;}
.yf{bottom:819.200000pt;}
.y27{bottom:859.866667pt;}
.yc{bottom:920.000000pt;}
.y2b{bottom:923.866667pt;}
.y1d{bottom:970.973333pt;}
.y17{bottom:1001.373333pt;}
.y9{bottom:1103.200000pt;}
.y11{bottom:1178.106667pt;}
.yb{bottom:1226.493333pt;}
.y88{bottom:1274.973333pt;}
.y87{bottom:1309.733333pt;}
.y56{bottom:1392.386667pt;}
.y53{bottom:1397.986667pt;}
.y52{bottom:1429.986667pt;}
.y55{bottom:1435.586667pt;}
.y51{bottom:1461.986667pt;}
.y54{bottom:1467.586667pt;}
.y57{bottom:1503.360000pt;}
.y78{bottom:1506.400000pt;}
.y63{bottom:1507.200000pt;}
.y4c{bottom:1778.973333pt;}
.y82{bottom:1802.493333pt;}
.y4b{bottom:1811.293333pt;}
.y50{bottom:1913.373333pt;}
.y4f{bottom:1960.413333pt;}
.y8{bottom:2068.666667pt;}
.y7{bottom:2131.706667pt;}
.y6{bottom:2216.133333pt;}
.y5{bottom:2267.333333pt;}
.y4{bottom:2318.533333pt;}
.y4e{bottom:2407.453333pt;}
.y4d{bottom:2439.453333pt;}
.y3{bottom:2477.893333pt;}
.y2{bottom:2556.546667pt;}
.y1{bottom:2652.546667pt;}
.h13{height:6.365625pt;}
.h1c{height:40.550400pt;}
.h23{height:44.960000pt;}
.h22{height:53.913600pt;}
.h17{height:53.915030pt;}
.h12{height:56.160000pt;}
.h20{height:60.640000pt;}
.h1a{height:61.286400pt;}
.h1b{height:61.378560pt;}
.h1d{height:68.448000pt;}
.h15{height:69.120000pt;}
.h18{height:76.205440pt;}
.hc{height:76.953600pt;}
.hf{height:77.045760pt;}
.h14{height:78.208000pt;}
.hb{height:83.506560pt;}
.h8{height:91.264000pt;}
.h9{height:92.160000pt;}
.h3{height:99.686400pt;}
.h16{height:106.322560pt;}
.h21{height:106.413824pt;}
.h6{height:107.366400pt;}
.h4{height:123.033600pt;}
.h5{height:129.687505pt;}
.h1f{height:190.400000pt;}
.h11{height:224.160000pt;}
.h2{height:230.400000pt;}
.h1e{height:250.240000pt;}
.h19{height:250.400000pt;}
.h7{height:268.960000pt;}
.h10{height:448.160000pt;}
.ha{height:470.560000pt;}
.hd{height:672.160000pt;}
.he{height:896.160000pt;}
.h0{height:3179.040000pt;}
.h1{height:3179.333333pt;}
.wa{width:172.480000pt;}
.w9{width:190.400000pt;}
.wb{width:254.240000pt;}
.w5{width:341.440000pt;}
.w8{width:363.200000pt;}
.w4{width:777.120000pt;}
.w3{width:796.160000pt;}
.w7{width:829.826667pt;}
.w6{width:1914.400000pt;}
.w2{width:2245.279967pt;}
.w0{width:2245.280000pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x6{left:3.906667pt;}
.x2d{left:8.706667pt;}
.x3d{left:9.826667pt;}
.x2c{left:11.293333pt;}
.x32{left:12.893333pt;}
.x33{left:13.786667pt;}
.xb{left:15.226667pt;}
.x3e{left:41.506667pt;}
.x34{left:45.146667pt;}
.x2e{left:46.973333pt;}
.x30{left:50.493333pt;}
.x27{left:52.186667pt;}
.x36{left:53.920000pt;}
.x3b{left:103.333333pt;}
.x28{left:104.733333pt;}
.x37{left:106.586667pt;}
.x38{left:158.946667pt;}
.x29{left:160.160000pt;}
.x16{left:170.560000pt;}
.xa{left:177.600000pt;}
.x17{left:186.693300pt;}
.x1{left:196.666633pt;}
.x4{left:198.013300pt;}
.x19{left:206.266633pt;}
.x3c{left:209.853333pt;}
.x31{left:211.426667pt;}
.x2a{left:212.866667pt;}
.x1c{left:245.853300pt;}
.x1b{left:262.973300pt;}
.x2b{left:264.933333pt;}
.x12{left:275.839967pt;}
.xd{left:285.439967pt;}
.x1a{left:293.373300pt;}
.x11{left:324.453333pt;}
.x2{left:409.573300pt;}
.x15{left:413.279967pt;}
.x5{left:518.880000pt;}
.x2f{left:558.400000pt;}
.x13{left:569.306633pt;}
.x1d{left:608.799967pt;}
.x1f{left:625.599967pt;}
.x1e{left:665.919967pt;}
.x14{left:706.146633pt;}
.x7{left:739.613300pt;}
.xe{left:743.266633pt;}
.x3{left:843.039967pt;}
.xf{left:873.186633pt;}
.x35{left:944.320000pt;}
.x18{left:990.653300pt;}
.x21{left:1004.066633pt;}
.x20{left:1064.546633pt;}
.xc{left:1158.973300pt;}
.x8{left:1314.880000pt;}
.x39{left:1326.560000pt;}
.x22{left:1344.773300pt;}
.x24{left:1380.319967pt;}
.x23{left:1446.079967pt;}
.x10{left:1504.893300pt;}
.x9{left:1555.813300pt;}
.x3a{left:1712.320000pt;}
.x25{left:1762.786633pt;}
.x26{left:1768.226633pt;}
.x41{left:1834.373333pt;}
.x42{left:1871.839967pt;}
.x3f{left:1901.733333pt;}
.x40{left:1903.333333pt;}
}




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