
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_81f0448361d552e3ea6a1651.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a09cb54d3c8061d9a3d88caa.woff')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_3197f93061f9f3bce952064b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_062c35f085003d3ab1cb5baf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_0d105c23ecba8f5520158af7.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0eff6571a9a2a52c4c1781a4.woff')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_6d2bc413565d2b4922b6e112.woff')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')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_c1df463904b9a3876bb53c69.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a875c32e0581313d5b9a0676.woff')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls4{letter-spacing:11.700000px;}
.lse{letter-spacing:16.020000px;}
.ls13{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.lsb{letter-spacing:170.964000px;}
.ls2{letter-spacing:2010.689760px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws6{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:-8.928000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.015920px;}
._2{width:2.563440px;}
._10{width:4.177920px;}
._3{width:5.330160px;}
._9{width:6.673680px;}
._8{width:8.437680px;}
._7{width:9.504000px;}
._11{width:10.702800px;}
._6{width:11.826000px;}
._e{width:13.206960px;}
._a{width:15.174000px;}
._d{width:16.553520px;}
._c{width:17.569440px;}
._f{width:19.003680px;}
._5{width:22.248000px;}
._4{width:23.814000px;}
._b{width:25.758000px;}
._12{width:31.314240px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:2.160000px;}
.y5{bottom:3.780000px;}
.y57{bottom:5.010000px;}
.y3b{bottom:5.760000px;}
.y7a{bottom:5.940000px;}
.y2{bottom:9.930000px;}
.y46{bottom:10.260000px;}
.y76{bottom:15.660000px;}
.y7b{bottom:15.840000px;}
.y53{bottom:22.500000px;}
.y4{bottom:22.710000px;}
.y3a{bottom:25.560000px;}
.y79{bottom:25.740000px;}
.y52{bottom:39.600000px;}
.y45{bottom:39.960000px;}
.y39{bottom:45.360000px;}
.y3{bottom:47.910000px;}
.y44{bottom:51.120000px;}
.y7{bottom:57.060000px;}
.y51{bottom:58.860000px;}
.y43{bottom:62.280000px;}
.y38{bottom:65.160000px;}
.y42{bottom:73.980000px;}
.y50{bottom:74.700000px;}
.y37{bottom:85.140000px;}
.y41{bottom:87.120000px;}
.y4f{bottom:91.980000px;}
.yc2{bottom:94.176000px;}
.ya0{bottom:97.776000px;}
.y40{bottom:100.080000px;}
.y36{bottom:104.940000px;}
.y4e{bottom:106.740000px;}
.y88{bottom:112.356000px;}
.yc1{bottom:113.976000px;}
.y4d{bottom:114.480000px;}
.y9f{bottom:117.756000px;}
.y55{bottom:120.276000px;}
.y3f{bottom:122.040000px;}
.y35{bottom:124.740000px;}
.y4c{bottom:130.140000px;}
.y87{bottom:132.336000px;}
.yc0{bottom:133.776000px;}
.y9e{bottom:137.556000px;}
.y54{bottom:140.256000px;}
.y34{bottom:144.540000px;}
.y4b{bottom:145.620000px;}
.y86{bottom:152.130000px;}
.ybf{bottom:153.570000px;}
.y3c{bottom:155.010000px;}
.y9d{bottom:157.350000px;}
.y4a{bottom:161.100000px;}
.y33{bottom:164.340000px;}
.y85{bottom:171.930000px;}
.ybe{bottom:173.370000px;}
.y49{bottom:176.625000px;}
.y9c{bottom:177.150000px;}
.y3e{bottom:184.185000px;}
.y32{bottom:184.320000px;}
.y84{bottom:191.730000px;}
.y48{bottom:192.285000px;}
.ybd{bottom:193.350000px;}
.y3d{bottom:194.625000px;}
.y9b{bottom:196.950000px;}
.y31{bottom:204.120000px;}
.y83{bottom:211.530000px;}
.ybc{bottom:213.150000px;}
.y9a{bottom:216.930000px;}
.y30{bottom:223.950000px;}
.y1e{bottom:229.710000px;}
.y82{bottom:231.510000px;}
.ybb{bottom:232.950000px;}
.y99{bottom:236.730000px;}
.y2f{bottom:243.750000px;}
.y81{bottom:251.310000px;}
.yba{bottom:252.750000px;}
.y1d{bottom:253.830000px;}
.y98{bottom:256.530000px;}
.y2e{bottom:263.550000px;}
.y80{bottom:271.110000px;}
.yb9{bottom:272.550000px;}
.y97{bottom:276.330000px;}
.y1c{bottom:277.950000px;}
.y2d{bottom:283.530000px;}
.y7f{bottom:290.910000px;}
.yb8{bottom:292.530000px;}
.y96{bottom:296.130000px;}
.y1b{bottom:302.250000px;}
.y2c{bottom:303.330000px;}
.y7e{bottom:310.710000px;}
.yb7{bottom:312.330000px;}
.y95{bottom:316.110000px;}
.y2b{bottom:323.130000px;}
.y1a{bottom:326.370000px;}
.y7d{bottom:330.735000px;}
.yb6{bottom:332.175000px;}
.y94{bottom:335.955000px;}
.y2a{bottom:342.930000px;}
.y7c{bottom:345.495000px;}
.y19{bottom:350.490000px;}
.yb5{bottom:351.975000px;}
.y93{bottom:355.755000px;}
.y29{bottom:362.190000px;}
.yb4{bottom:371.775000px;}
.y18{bottom:374.610000px;}
.y92{bottom:375.555000px;}
.y10{bottom:379.875000px;}
.y28{bottom:380.190000px;}
.y78{bottom:385.815000px;}
.yb3{bottom:391.755000px;}
.y91{bottom:395.355000px;}
.y27{bottom:398.010000px;}
.y17{bottom:398.730000px;}
.yb2{bottom:411.555000px;}
.y90{bottom:415.335000px;}
.y26{bottom:415.830000px;}
.y16{bottom:422.850000px;}
.y77{bottom:426.315000px;}
.yb1{bottom:431.355000px;}
.y25{bottom:433.650000px;}
.y8f{bottom:435.135000px;}
.y15{bottom:447.150000px;}
.yb0{bottom:451.155000px;}
.y24{bottom:451.470000px;}
.y8e{bottom:454.935000px;}
.y75{bottom:466.815000px;}
.y23{bottom:469.290000px;}
.yaf{bottom:470.955000px;}
.y14{bottom:471.270000px;}
.y8d{bottom:474.735000px;}
.y22{bottom:487.335000px;}
.yae{bottom:490.935000px;}
.y8c{bottom:494.535000px;}
.y13{bottom:495.435000px;}
.y21{bottom:505.155000px;}
.y74{bottom:507.135000px;}
.yad{bottom:510.735000px;}
.y8b{bottom:514.515000px;}
.y12{bottom:519.555000px;}
.y20{bottom:522.975000px;}
.yac{bottom:530.535000px;}
.y8a{bottom:534.315000px;}
.y1f{bottom:540.795000px;}
.y11{bottom:543.675000px;}
.y73{bottom:547.635000px;}
.yab{bottom:550.335000px;}
.y89{bottom:554.115000px;}
.yaa{bottom:570.135000px;}
.y72{bottom:573.915000px;}
.ya9{bottom:590.115000px;}
.y71{bottom:593.715000px;}
.ya8{bottom:609.945000px;}
.y70{bottom:613.725000px;}
.ya7{bottom:629.745000px;}
.y6f{bottom:633.525000px;}
.ya6{bottom:649.545000px;}
.y6e{bottom:653.325000px;}
.ya5{bottom:669.345000px;}
.y6d{bottom:673.125000px;}
.ya4{bottom:684.285000px;}
.y6c{bottom:692.925000px;}
.y6b{bottom:712.905000px;}
.ya3{bottom:724.605000px;}
.y6a{bottom:732.705000px;}
.y69{bottom:752.505000px;}
.ya2{bottom:765.105000px;}
.y68{bottom:772.305000px;}
.y67{bottom:792.105000px;}
.ya1{bottom:805.425000px;}
.y66{bottom:812.085000px;}
.y65{bottom:831.885000px;}
.y64{bottom:851.685000px;}
.y63{bottom:871.530000px;}
.y62{bottom:891.330000px;}
.y61{bottom:911.310000px;}
.y60{bottom:931.110000px;}
.yf{bottom:935.970000px;}
.ye{bottom:942.090000px;}
.y5f{bottom:950.910000px;}
.yd{bottom:962.070000px;}
.y5e{bottom:970.710000px;}
.yc{bottom:987.090000px;}
.y5d{bottom:990.510000px;}
.yb{bottom:1006.890000px;}
.y5c{bottom:1010.490000px;}
.ya{bottom:1021.470000px;}
.y5b{bottom:1030.290000px;}
.y9{bottom:1043.610000px;}
.y5a{bottom:1050.090000px;}
.y59{bottom:1069.890000px;}
.y8{bottom:1072.230000px;}
.y56{bottom:1075.500000px;}
.y58{bottom:1089.690000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.hc{height:4.165313px;}
.h17{height:10.088437px;}
.h1c{height:19.800000px;}
.h15{height:21.114844px;}
.h14{height:25.136719px;}
.ha{height:27.147656px;}
.h19{height:27.720000px;}
.hf{height:29.158594px;}
.he{height:29.464453px;}
.h16{height:38.100586px;}
.h10{height:38.997070px;}
.h1d{height:39.600000px;}
.h1e{height:39.780000px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.hb{height:42.164648px;}
.h1b{height:43.506914px;}
.h11{height:44.507812px;}
.h5{height:46.251562px;}
.h12{height:48.027656px;}
.h9{height:48.312422px;}
.h18{height:49.255313px;}
.h8{height:59.436914px;}
.h1a{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h13{height:223.950000px;}
.hd{height:553.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:104.076000px;}
.wb{width:123.876000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.wc{width:194.610000px;}
.w8{width:221.835000px;}
.w9{width:229.170000px;}
.wa{width:283.530000px;}
.wd{width:415.875000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x19{left:8.136000px;}
.x40{left:9.180000px;}
.x2a{left:10.620000px;}
.x30{left:11.700000px;}
.x4{left:12.780000px;}
.x39{left:14.040000px;}
.x18{left:16.056000px;}
.x1d{left:18.216000px;}
.x16{left:19.656000px;}
.x34{left:22.500000px;}
.x17{left:26.136000px;}
.x36{left:27.360000px;}
.x1f{left:29.196000px;}
.x2f{left:30.960000px;}
.x29{left:32.220000px;}
.x6{left:33.840000px;}
.x32{left:37.476000px;}
.x27{left:38.916000px;}
.x2e{left:41.796000px;}
.x33{left:44.100000px;}
.x24{left:45.396000px;}
.x1e{left:47.736000px;}
.x3b{left:49.500000px;}
.x11{left:50.796000px;}
.x2c{left:53.280000px;}
.x10{left:54.936000px;}
.x21{left:57.096000px;}
.x2b{left:58.176000px;}
.x1b{left:62.100000px;}
.x25{left:64.980000px;}
.x20{left:66.270000px;}
.x2d{left:67.320000px;}
.x28{left:71.670000px;}
.x3e{left:74.880000px;}
.x37{left:76.680000px;}
.x1{left:78.300000px;}
.x15{left:79.590000px;}
.x13{left:82.470000px;}
.x7{left:86.399987px;}
.x14{left:88.950000px;}
.x2{left:95.790000px;}
.x35{left:99.540000px;}
.x22{left:102.810000px;}
.x31{left:104.760000px;}
.x1c{left:106.770000px;}
.x38{left:113.435987px;}
.x12{left:124.590000px;}
.x3d{left:136.110000px;}
.x5{left:141.345000px;}
.x41{left:148.170000px;}
.x3f{left:172.470000px;}
.x3{left:182.370000px;}
.x3a{left:203.250000px;}
.x1a{left:219.090000px;}
.xe{left:300.314987px;}
.xb{left:365.474987px;}
.xc{left:385.094987px;}
.x3c{left:398.595000px;}
.xa{left:446.474987px;}
.x26{left:531.105000px;}
.xd{left:623.804987px;}
.x9{left:766.049987px;}
.x42{left:791.789987px;}
.x8{left:799.169987px;}
.xf{left:806.729987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls4{letter-spacing:10.400000pt;}
.lse{letter-spacing:14.240000pt;}
.ls13{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.lsb{letter-spacing:151.968000pt;}
.ls2{letter-spacing:1787.279787pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws6{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:-7.936000pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.903040pt;}
._2{width:2.278613pt;}
._10{width:3.713707pt;}
._3{width:4.737920pt;}
._9{width:5.932160pt;}
._8{width:7.500160pt;}
._7{width:8.448000pt;}
._11{width:9.513600pt;}
._6{width:10.512000pt;}
._e{width:11.739520pt;}
._a{width:13.488000pt;}
._d{width:14.714240pt;}
._c{width:15.617280pt;}
._f{width:16.892160pt;}
._5{width:19.776000pt;}
._4{width:21.168000pt;}
._b{width:22.896000pt;}
._12{width:27.834880pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:1.920000pt;}
.y5{bottom:3.360000pt;}
.y57{bottom:4.453333pt;}
.y3b{bottom:5.120000pt;}
.y7a{bottom:5.280000pt;}
.y2{bottom:8.826667pt;}
.y46{bottom:9.120000pt;}
.y76{bottom:13.920000pt;}
.y7b{bottom:14.080000pt;}
.y53{bottom:20.000000pt;}
.y4{bottom:20.186667pt;}
.y3a{bottom:22.720000pt;}
.y79{bottom:22.880000pt;}
.y52{bottom:35.200000pt;}
.y45{bottom:35.520000pt;}
.y39{bottom:40.320000pt;}
.y3{bottom:42.586667pt;}
.y44{bottom:45.440000pt;}
.y7{bottom:50.720000pt;}
.y51{bottom:52.320000pt;}
.y43{bottom:55.360000pt;}
.y38{bottom:57.920000pt;}
.y42{bottom:65.760000pt;}
.y50{bottom:66.400000pt;}
.y37{bottom:75.680000pt;}
.y41{bottom:77.440000pt;}
.y4f{bottom:81.760000pt;}
.yc2{bottom:83.712000pt;}
.ya0{bottom:86.912000pt;}
.y40{bottom:88.960000pt;}
.y36{bottom:93.280000pt;}
.y4e{bottom:94.880000pt;}
.y88{bottom:99.872000pt;}
.yc1{bottom:101.312000pt;}
.y4d{bottom:101.760000pt;}
.y9f{bottom:104.672000pt;}
.y55{bottom:106.912000pt;}
.y3f{bottom:108.480000pt;}
.y35{bottom:110.880000pt;}
.y4c{bottom:115.680000pt;}
.y87{bottom:117.632000pt;}
.yc0{bottom:118.912000pt;}
.y9e{bottom:122.272000pt;}
.y54{bottom:124.672000pt;}
.y34{bottom:128.480000pt;}
.y4b{bottom:129.440000pt;}
.y86{bottom:135.226667pt;}
.ybf{bottom:136.506667pt;}
.y3c{bottom:137.786667pt;}
.y9d{bottom:139.866667pt;}
.y4a{bottom:143.200000pt;}
.y33{bottom:146.080000pt;}
.y85{bottom:152.826667pt;}
.ybe{bottom:154.106667pt;}
.y49{bottom:157.000000pt;}
.y9c{bottom:157.466667pt;}
.y3e{bottom:163.720000pt;}
.y32{bottom:163.840000pt;}
.y84{bottom:170.426667pt;}
.y48{bottom:170.920000pt;}
.ybd{bottom:171.866667pt;}
.y3d{bottom:173.000000pt;}
.y9b{bottom:175.066667pt;}
.y31{bottom:181.440000pt;}
.y83{bottom:188.026667pt;}
.ybc{bottom:189.466667pt;}
.y9a{bottom:192.826667pt;}
.y30{bottom:199.066667pt;}
.y1e{bottom:204.186667pt;}
.y82{bottom:205.786667pt;}
.ybb{bottom:207.066667pt;}
.y99{bottom:210.426667pt;}
.y2f{bottom:216.666667pt;}
.y81{bottom:223.386667pt;}
.yba{bottom:224.666667pt;}
.y1d{bottom:225.626667pt;}
.y98{bottom:228.026667pt;}
.y2e{bottom:234.266667pt;}
.y80{bottom:240.986667pt;}
.yb9{bottom:242.266667pt;}
.y97{bottom:245.626667pt;}
.y1c{bottom:247.066667pt;}
.y2d{bottom:252.026667pt;}
.y7f{bottom:258.586667pt;}
.yb8{bottom:260.026667pt;}
.y96{bottom:263.226667pt;}
.y1b{bottom:268.666667pt;}
.y2c{bottom:269.626667pt;}
.y7e{bottom:276.186667pt;}
.yb7{bottom:277.626667pt;}
.y95{bottom:280.986667pt;}
.y2b{bottom:287.226667pt;}
.y1a{bottom:290.106667pt;}
.y7d{bottom:293.986667pt;}
.yb6{bottom:295.266667pt;}
.y94{bottom:298.626667pt;}
.y2a{bottom:304.826667pt;}
.y7c{bottom:307.106667pt;}
.y19{bottom:311.546667pt;}
.yb5{bottom:312.866667pt;}
.y93{bottom:316.226667pt;}
.y29{bottom:321.946667pt;}
.yb4{bottom:330.466667pt;}
.y18{bottom:332.986667pt;}
.y92{bottom:333.826667pt;}
.y10{bottom:337.666667pt;}
.y28{bottom:337.946667pt;}
.y78{bottom:342.946667pt;}
.yb3{bottom:348.226667pt;}
.y91{bottom:351.426667pt;}
.y27{bottom:353.786667pt;}
.y17{bottom:354.426667pt;}
.yb2{bottom:365.826667pt;}
.y90{bottom:369.186667pt;}
.y26{bottom:369.626667pt;}
.y16{bottom:375.866667pt;}
.y77{bottom:378.946667pt;}
.yb1{bottom:383.426667pt;}
.y25{bottom:385.466667pt;}
.y8f{bottom:386.786667pt;}
.y15{bottom:397.466667pt;}
.yb0{bottom:401.026667pt;}
.y24{bottom:401.306667pt;}
.y8e{bottom:404.386667pt;}
.y75{bottom:414.946667pt;}
.y23{bottom:417.146667pt;}
.yaf{bottom:418.626667pt;}
.y14{bottom:418.906667pt;}
.y8d{bottom:421.986667pt;}
.y22{bottom:433.186667pt;}
.yae{bottom:436.386667pt;}
.y8c{bottom:439.586667pt;}
.y13{bottom:440.386667pt;}
.y21{bottom:449.026667pt;}
.y74{bottom:450.786667pt;}
.yad{bottom:453.986667pt;}
.y8b{bottom:457.346667pt;}
.y12{bottom:461.826667pt;}
.y20{bottom:464.866667pt;}
.yac{bottom:471.586667pt;}
.y8a{bottom:474.946667pt;}
.y1f{bottom:480.706667pt;}
.y11{bottom:483.266667pt;}
.y73{bottom:486.786667pt;}
.yab{bottom:489.186667pt;}
.y89{bottom:492.546667pt;}
.yaa{bottom:506.786667pt;}
.y72{bottom:510.146667pt;}
.ya9{bottom:524.546667pt;}
.y71{bottom:527.746667pt;}
.ya8{bottom:542.173333pt;}
.y70{bottom:545.533333pt;}
.ya7{bottom:559.773333pt;}
.y6f{bottom:563.133333pt;}
.ya6{bottom:577.373333pt;}
.y6e{bottom:580.733333pt;}
.ya5{bottom:594.973333pt;}
.y6d{bottom:598.333333pt;}
.ya4{bottom:608.253333pt;}
.y6c{bottom:615.933333pt;}
.y6b{bottom:633.693333pt;}
.ya3{bottom:644.093333pt;}
.y6a{bottom:651.293333pt;}
.y69{bottom:668.893333pt;}
.ya2{bottom:680.093333pt;}
.y68{bottom:686.493333pt;}
.y67{bottom:704.093333pt;}
.ya1{bottom:715.933333pt;}
.y66{bottom:721.853333pt;}
.y65{bottom:739.453333pt;}
.y64{bottom:757.053333pt;}
.y63{bottom:774.693333pt;}
.y62{bottom:792.293333pt;}
.y61{bottom:810.053333pt;}
.y60{bottom:827.653333pt;}
.yf{bottom:831.973333pt;}
.ye{bottom:837.413333pt;}
.y5f{bottom:845.253333pt;}
.yd{bottom:855.173333pt;}
.y5e{bottom:862.853333pt;}
.yc{bottom:877.413333pt;}
.y5d{bottom:880.453333pt;}
.yb{bottom:895.013333pt;}
.y5c{bottom:898.213333pt;}
.ya{bottom:907.973333pt;}
.y5b{bottom:915.813333pt;}
.y9{bottom:927.653333pt;}
.y5a{bottom:933.413333pt;}
.y59{bottom:951.013333pt;}
.y8{bottom:953.093333pt;}
.y56{bottom:956.000000pt;}
.y58{bottom:968.613333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.hc{height:3.702500pt;}
.h17{height:8.967500pt;}
.h1c{height:17.600000pt;}
.h15{height:18.768750pt;}
.h14{height:22.343750pt;}
.ha{height:24.131250pt;}
.h19{height:24.640000pt;}
.hf{height:25.918750pt;}
.he{height:26.190625pt;}
.h16{height:33.867188pt;}
.h10{height:34.664062pt;}
.h1d{height:35.200000pt;}
.h1e{height:35.360000pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.hb{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h11{height:39.562500pt;}
.h5{height:41.112500pt;}
.h12{height:42.691250pt;}
.h9{height:42.944375pt;}
.h18{height:43.782500pt;}
.h8{height:52.832812pt;}
.h1a{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h13{height:199.066667pt;}
.hd{height:491.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:92.512000pt;}
.wb{width:110.112000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.wc{width:172.986667pt;}
.w8{width:197.186667pt;}
.w9{width:203.706667pt;}
.wa{width:252.026667pt;}
.wd{width:369.666667pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x19{left:7.232000pt;}
.x40{left:8.160000pt;}
.x2a{left:9.440000pt;}
.x30{left:10.400000pt;}
.x4{left:11.360000pt;}
.x39{left:12.480000pt;}
.x18{left:14.272000pt;}
.x1d{left:16.192000pt;}
.x16{left:17.472000pt;}
.x34{left:20.000000pt;}
.x17{left:23.232000pt;}
.x36{left:24.320000pt;}
.x1f{left:25.952000pt;}
.x2f{left:27.520000pt;}
.x29{left:28.640000pt;}
.x6{left:30.080000pt;}
.x32{left:33.312000pt;}
.x27{left:34.592000pt;}
.x2e{left:37.152000pt;}
.x33{left:39.200000pt;}
.x24{left:40.352000pt;}
.x1e{left:42.432000pt;}
.x3b{left:44.000000pt;}
.x11{left:45.152000pt;}
.x2c{left:47.360000pt;}
.x10{left:48.832000pt;}
.x21{left:50.752000pt;}
.x2b{left:51.712000pt;}
.x1b{left:55.200000pt;}
.x25{left:57.760000pt;}
.x20{left:58.906667pt;}
.x2d{left:59.840000pt;}
.x28{left:63.706667pt;}
.x3e{left:66.560000pt;}
.x37{left:68.160000pt;}
.x1{left:69.600000pt;}
.x15{left:70.746667pt;}
.x13{left:73.306667pt;}
.x7{left:76.799988pt;}
.x14{left:79.066667pt;}
.x2{left:85.146667pt;}
.x35{left:88.480000pt;}
.x22{left:91.386667pt;}
.x31{left:93.120000pt;}
.x1c{left:94.906667pt;}
.x38{left:100.831988pt;}
.x12{left:110.746667pt;}
.x3d{left:120.986667pt;}
.x5{left:125.640000pt;}
.x41{left:131.706667pt;}
.x3f{left:153.306667pt;}
.x3{left:162.106667pt;}
.x3a{left:180.666667pt;}
.x1a{left:194.746667pt;}
.xe{left:266.946655pt;}
.xb{left:324.866655pt;}
.xc{left:342.306655pt;}
.x3c{left:354.306667pt;}
.xa{left:396.866655pt;}
.x26{left:472.093333pt;}
.xd{left:554.493322pt;}
.x9{left:680.933322pt;}
.x42{left:703.813322pt;}
.x8{left:710.373322pt;}
.xf{left:717.093322pt;}
}




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