
    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_34ef3363dd5d24a306f9e9cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_f2a99f16ca3237c079377e26.woff2')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_fcfea1fca426bd1959ae096a.woff2')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_244a07ef46e5c85916bf78c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57c659558db0ccd4f2e7e099.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ee3fde03957abf196fde298b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_91b76d3940c08a870cd18c59.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_253567372c968bc759c1f238.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:20.880000px;}
.ls8{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.630000px;}
.ls17{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.253200px;}
.lsa{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.089400px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.262080px;}
.ls11{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls16{letter-spacing:20.907360px;}
.ls3{letter-spacing:46.026720px;}
.ls15{letter-spacing:49.707360px;}
.lsf{letter-spacing:64.026720px;}
.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;}
.ws1{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.686800px;}
.wsd{word-spacing:-14.580000px;}
.wse{word-spacing:-14.220000px;}
.ws6{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.140000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws7{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.651200px;}
._4{width:2.827680px;}
._8{width:4.050000px;}
._3{width:5.346000px;}
._2{width:6.372000px;}
._e{width:8.328720px;}
._f{width:9.793200px;}
._d{width:10.875600px;}
._b{width:12.061920px;}
._14{width:13.505760px;}
._5{width:14.850000px;}
._13{width:16.298880px;}
._12{width:17.351040px;}
._c{width:19.142640px;}
._9{width:20.538000px;}
._a{width:21.757680px;}
._7{width:23.033040px;}
._6{width:24.264000px;}
._11{width:29.292720px;}
._10{width:30.477600px;}
._15{width:50.322240px;}
._16{width:52.045200px;}
.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);}
.fs7{font-size:5.760000px;}
.fs9{font-size:12.240000px;}
.fs2{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y45{bottom:0.360000px;}
.y4e{bottom:0.720000px;}
.y5{bottom:3.780000px;}
.y86{bottom:4.500000px;}
.y88{bottom:4.680000px;}
.y44{bottom:4.860000px;}
.y5e{bottom:5.010000px;}
.y90{bottom:5.760000px;}
.y59{bottom:7.020000px;}
.y2{bottom:9.900000px;}
.y93{bottom:19.800000px;}
.y43{bottom:22.140000px;}
.y4{bottom:22.710000px;}
.y58{bottom:24.300000px;}
.y4d{bottom:30.420000px;}
.y42{bottom:39.420000px;}
.y57{bottom:45.000000px;}
.y3{bottom:47.910000px;}
.y4c{bottom:51.300000px;}
.y41{bottom:56.700000px;}
.y56{bottom:60.510000px;}
.y4b{bottom:64.290000px;}
.y8{bottom:71.820000px;}
.y40{bottom:73.800000px;}
.y55{bottom:75.990000px;}
.y4a{bottom:86.250000px;}
.y7{bottom:90.720000px;}
.y3f{bottom:91.080000px;}
.y54{bottom:93.810000px;}
.y3e{bottom:108.405000px;}
.y53{bottom:109.290000px;}
.y5c{bottom:112.320000px;}
.y9a{bottom:117.720000px;}
.y52{bottom:124.770000px;}
.y3d{bottom:125.685000px;}
.y5b{bottom:126.360000px;}
.y99{bottom:135.000000px;}
.y51{bottom:140.430000px;}
.y3c{bottom:142.965000px;}
.y47{bottom:144.360000px;}
.y49{bottom:148.350000px;}
.ycf{bottom:149.220000px;}
.y98{bottom:152.100000px;}
.y50{bottom:155.910000px;}
.y48{bottom:158.790000px;}
.y3b{bottom:160.245000px;}
.yce{bottom:165.600000px;}
.y97{bottom:169.380000px;}
.y4f{bottom:171.390000px;}
.y5a{bottom:175.530000px;}
.y3a{bottom:177.345000px;}
.ycd{bottom:181.980000px;}
.y96{bottom:186.660000px;}
.y39{bottom:194.625000px;}
.ycc{bottom:198.360000px;}
.y95{bottom:203.970000px;}
.y38{bottom:211.905000px;}
.ycb{bottom:214.770000px;}
.y94{bottom:218.730000px;}
.y37{bottom:229.185000px;}
.yca{bottom:231.150000px;}
.y92{bottom:239.250000px;}
.y36{bottom:246.465000px;}
.yc9{bottom:247.530000px;}
.y91{bottom:259.770000px;}
.y35{bottom:263.745000px;}
.yc8{bottom:263.910000px;}
.y8f{bottom:280.290000px;}
.y34{bottom:280.845000px;}
.yc7{bottom:296.670000px;}
.y33{bottom:298.125000px;}
.y20{bottom:302.985000px;}
.y8e{bottom:304.050000px;}
.yc6{bottom:313.050000px;}
.y32{bottom:315.405000px;}
.y1f{bottom:320.265000px;}
.y8d{bottom:321.330000px;}
.yc5{bottom:329.430000px;}
.y31{bottom:332.685000px;}
.y12{bottom:333.390000px;}
.y8c{bottom:338.610000px;}
.y1e{bottom:344.415000px;}
.yc4{bottom:345.810000px;}
.y30{bottom:349.995000px;}
.y8b{bottom:355.890000px;}
.yc3{bottom:362.190000px;}
.y2f{bottom:367.275000px;}
.y1d{bottom:368.535000px;}
.y8a{bottom:370.650000px;}
.yc2{bottom:378.570000px;}
.y2e{bottom:384.375000px;}
.y89{bottom:390.090000px;}
.y1c{bottom:392.655000px;}
.yc1{bottom:394.950000px;}
.y2d{bottom:401.655000px;}
.y87{bottom:409.350000px;}
.yc0{bottom:411.330000px;}
.y1b{bottom:416.775000px;}
.y2c{bottom:418.575000px;}
.ybf{bottom:427.710000px;}
.y85{bottom:428.790000px;}
.y2b{bottom:434.055000px;}
.y1a{bottom:441.075000px;}
.ybe{bottom:444.135000px;}
.y2a{bottom:449.715000px;}
.y84{bottom:451.335000px;}
.ybd{bottom:460.695000px;}
.y19{bottom:465.195000px;}
.y83{bottom:468.615000px;}
.ybc{bottom:477.075000px;}
.y29{bottom:480.675000px;}
.y82{bottom:485.895000px;}
.y18{bottom:489.315000px;}
.ybb{bottom:493.455000px;}
.y28{bottom:496.155000px;}
.y81{bottom:503.175000px;}
.yba{bottom:509.835000px;}
.y27{bottom:511.815000px;}
.y17{bottom:513.435000px;}
.y80{bottom:520.455000px;}
.yb9{bottom:526.215000px;}
.y26{bottom:527.295000px;}
.y16{bottom:537.555000px;}
.y7f{bottom:538.635000px;}
.yb8{bottom:542.595000px;}
.y25{bottom:542.775000px;}
.y7e{bottom:556.995000px;}
.y24{bottom:558.255000px;}
.yb7{bottom:558.975000px;}
.y15{bottom:561.675000px;}
.y23{bottom:573.915000px;}
.y7d{bottom:575.355000px;}
.y14{bottom:586.020000px;}
.y22{bottom:589.440000px;}
.yb6{bottom:591.735000px;}
.y7c{bottom:593.715000px;}
.y21{bottom:604.920000px;}
.y46{bottom:607.260000px;}
.yb5{bottom:608.115000px;}
.y13{bottom:610.140000px;}
.y7b{bottom:610.995000px;}
.yb4{bottom:624.495000px;}
.y7a{bottom:629.175000px;}
.yb3{bottom:640.875000px;}
.y79{bottom:647.535000px;}
.yb2{bottom:657.255000px;}
.y78{bottom:665.895000px;}
.yb1{bottom:673.665000px;}
.y77{bottom:683.205000px;}
.yb0{bottom:690.225000px;}
.y76{bottom:700.485000px;}
.yaf{bottom:707.505000px;}
.y75{bottom:717.765000px;}
.yae{bottom:724.785000px;}
.y74{bottom:734.865000px;}
.yad{bottom:741.885000px;}
.y73{bottom:752.145000px;}
.yac{bottom:759.165000px;}
.y72{bottom:770.505000px;}
.yab{bottom:776.445000px;}
.y71{bottom:788.865000px;}
.yaa{bottom:793.725000px;}
.y70{bottom:807.225000px;}
.ya9{bottom:811.005000px;}
.y6f{bottom:824.325000px;}
.ya8{bottom:828.285000px;}
.y6e{bottom:841.605000px;}
.ya7{bottom:845.385000px;}
.y6d{bottom:858.885000px;}
.ya6{bottom:862.665000px;}
.y6c{bottom:876.165000px;}
.ya5{bottom:879.945000px;}
.y6b{bottom:893.445000px;}
.ya4{bottom:897.225000px;}
.y6a{bottom:910.770000px;}
.ya3{bottom:914.550000px;}
.y69{bottom:927.870000px;}
.ya2{bottom:931.650000px;}
.y68{bottom:945.150000px;}
.ya1{bottom:948.930000px;}
.y11{bottom:953.610000px;}
.y10{bottom:955.230000px;}
.yf{bottom:959.910000px;}
.y67{bottom:962.430000px;}
.ya0{bottom:963.690000px;}
.ye{bottom:977.190000px;}
.y66{bottom:979.710000px;}
.y9f{bottom:983.130000px;}
.yd{bottom:994.290000px;}
.y65{bottom:996.990000px;}
.y9e{bottom:1002.390000px;}
.yc{bottom:1011.570000px;}
.y64{bottom:1014.090000px;}
.y9d{bottom:1021.830000px;}
.yb{bottom:1030.110000px;}
.y63{bottom:1031.370000px;}
.y9c{bottom:1041.270000px;}
.y62{bottom:1048.650000px;}
.ya{bottom:1054.230000px;}
.y9b{bottom:1060.530000px;}
.y61{bottom:1065.930000px;}
.y9{bottom:1082.850000px;}
.y60{bottom:1083.210000px;}
.y5d{bottom:1086.300000px;}
.y5f{bottom:1100.490000px;}
.y6{bottom:1116.330000px;}
.y1{bottom:1123.530000px;}
.hc{height:4.021875px;}
.h10{height:8.546484px;}
.h1b{height:18.540000px;}
.h19{height:18.576000px;}
.h1a{height:18.720000px;}
.h1c{height:19.800000px;}
.h15{height:21.114844px;}
.h17{height:27.720000px;}
.hf{height:29.158594px;}
.he{height:29.464453px;}
.h6{height:30.077578px;}
.h16{height:38.100586px;}
.h11{height:38.997070px;}
.h1e{height:39.716016px;}
.h8{height:40.132617px;}
.h1f{height:41.410195px;}
.h7{height:41.726953px;}
.hb{height:42.164648px;}
.h13{height:43.506914px;}
.h12{height:44.507812px;}
.h5{height:46.251562px;}
.h1d{height:46.881563px;}
.ha{height:48.312422px;}
.h9{height:59.436914px;}
.h18{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h14{height:188.130000px;}
.hd{height:619.845000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:31.320000px;}
.w10{width:69.156000px;}
.w12{width:75.816000px;}
.w7{width:77.580000px;}
.w14{width:78.516000px;}
.w15{width:80.100000px;}
.w16{width:82.620000px;}
.w11{width:89.460000px;}
.wf{width:102.960000px;}
.w2{width:104.076000px;}
.we{width:123.516000px;}
.wd{width:123.696000px;}
.w9{width:128.556000px;}
.w5{width:132.696000px;}
.wb{width:137.556000px;}
.wc{width:142.560000px;}
.w8{width:162.900000px;}
.w13{width:251.310000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.056000px;}
.x19{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1e{left:18.216000px;}
.x17{left:20.016000px;}
.x16{left:29.016000px;}
.x1b{left:35.100000px;}
.x10{left:43.776000px;}
.x1f{left:47.736000px;}
.x11{left:50.796000px;}
.xf{left:54.936000px;}
.x20{left:57.096000px;}
.x1a{left:62.145000px;}
.x15{left:67.170000px;}
.x13{left:71.850000px;}
.x14{left:73.290000px;}
.x1{left:78.300000px;}
.x8{left:86.399987px;}
.x2{left:95.790000px;}
.x21{left:102.810000px;}
.x1d{left:106.770000px;}
.x32{left:113.435987px;}
.x12{left:124.590000px;}
.x5{left:141.345000px;}
.x2d{left:159.690000px;}
.x23{left:163.290000px;}
.x3{left:182.370000px;}
.x18{left:219.090000px;}
.x28{left:286.995000px;}
.x24{left:292.575000px;}
.x25{left:324.615000px;}
.x29{left:390.675000px;}
.x2e{left:411.735000px;}
.xc{left:434.414987px;}
.x2a{left:460.545000px;}
.x26{left:462.885000px;}
.x2f{left:490.965000px;}
.xb{left:539.384987px;}
.x2b{left:550.905000px;}
.x30{left:571.785000px;}
.xd{left:601.484987px;}
.x27{left:606.345000px;}
.x2c{left:627.450000px;}
.x31{left:651.030000px;}
.xa{left:694.409987px;}
.x9{left:766.049987px;}
.x7{left:784.409987px;}
.xe{left:806.939987px;}
.x1c{left:815.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.225067pt;}
.lsa{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.079467pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.232960pt;}
.ls11{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls16{letter-spacing:18.584320pt;}
.ls3{letter-spacing:40.912640pt;}
.ls15{letter-spacing:44.184320pt;}
.lsf{letter-spacing:56.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.185067pt;}
.wsc{word-spacing:-13.054933pt;}
.wsd{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.640000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws7{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.467733pt;}
._4{width:2.513493pt;}
._8{width:3.600000pt;}
._3{width:4.752000pt;}
._2{width:5.664000pt;}
._e{width:7.403307pt;}
._f{width:8.705067pt;}
._d{width:9.667200pt;}
._b{width:10.721707pt;}
._14{width:12.005120pt;}
._5{width:13.200000pt;}
._13{width:14.487893pt;}
._12{width:15.423147pt;}
._c{width:17.015680pt;}
._9{width:18.256000pt;}
._a{width:19.340160pt;}
._7{width:20.473813pt;}
._6{width:21.568000pt;}
._11{width:26.037973pt;}
._10{width:27.091200pt;}
._15{width:44.730880pt;}
._16{width:46.262400pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:10.880000pt;}
.fs2{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:0.320000pt;}
.y4e{bottom:0.640000pt;}
.y5{bottom:3.360000pt;}
.y86{bottom:4.000000pt;}
.y88{bottom:4.160000pt;}
.y44{bottom:4.320000pt;}
.y5e{bottom:4.453333pt;}
.y90{bottom:5.120000pt;}
.y59{bottom:6.240000pt;}
.y2{bottom:8.800000pt;}
.y93{bottom:17.600000pt;}
.y43{bottom:19.680000pt;}
.y4{bottom:20.186667pt;}
.y58{bottom:21.600000pt;}
.y4d{bottom:27.040000pt;}
.y42{bottom:35.040000pt;}
.y57{bottom:40.000000pt;}
.y3{bottom:42.586667pt;}
.y4c{bottom:45.600000pt;}
.y41{bottom:50.400000pt;}
.y56{bottom:53.786667pt;}
.y4b{bottom:57.146667pt;}
.y8{bottom:63.840000pt;}
.y40{bottom:65.600000pt;}
.y55{bottom:67.546667pt;}
.y4a{bottom:76.666667pt;}
.y7{bottom:80.640000pt;}
.y3f{bottom:80.960000pt;}
.y54{bottom:83.386667pt;}
.y3e{bottom:96.360000pt;}
.y53{bottom:97.146667pt;}
.y5c{bottom:99.840000pt;}
.y9a{bottom:104.640000pt;}
.y52{bottom:110.906667pt;}
.y3d{bottom:111.720000pt;}
.y5b{bottom:112.320000pt;}
.y99{bottom:120.000000pt;}
.y51{bottom:124.826667pt;}
.y3c{bottom:127.080000pt;}
.y47{bottom:128.320000pt;}
.y49{bottom:131.866667pt;}
.ycf{bottom:132.640000pt;}
.y98{bottom:135.200000pt;}
.y50{bottom:138.586667pt;}
.y48{bottom:141.146667pt;}
.y3b{bottom:142.440000pt;}
.yce{bottom:147.200000pt;}
.y97{bottom:150.560000pt;}
.y4f{bottom:152.346667pt;}
.y5a{bottom:156.026667pt;}
.y3a{bottom:157.640000pt;}
.ycd{bottom:161.760000pt;}
.y96{bottom:165.920000pt;}
.y39{bottom:173.000000pt;}
.ycc{bottom:176.320000pt;}
.y95{bottom:181.306667pt;}
.y38{bottom:188.360000pt;}
.ycb{bottom:190.906667pt;}
.y94{bottom:194.426667pt;}
.y37{bottom:203.720000pt;}
.yca{bottom:205.466667pt;}
.y92{bottom:212.666667pt;}
.y36{bottom:219.080000pt;}
.yc9{bottom:220.026667pt;}
.y91{bottom:230.906667pt;}
.y35{bottom:234.440000pt;}
.yc8{bottom:234.586667pt;}
.y8f{bottom:249.146667pt;}
.y34{bottom:249.640000pt;}
.yc7{bottom:263.706667pt;}
.y33{bottom:265.000000pt;}
.y20{bottom:269.320000pt;}
.y8e{bottom:270.266667pt;}
.yc6{bottom:278.266667pt;}
.y32{bottom:280.360000pt;}
.y1f{bottom:284.680000pt;}
.y8d{bottom:285.626667pt;}
.yc5{bottom:292.826667pt;}
.y31{bottom:295.720000pt;}
.y12{bottom:296.346667pt;}
.y8c{bottom:300.986667pt;}
.y1e{bottom:306.146667pt;}
.yc4{bottom:307.386667pt;}
.y30{bottom:311.106667pt;}
.y8b{bottom:316.346667pt;}
.yc3{bottom:321.946667pt;}
.y2f{bottom:326.466667pt;}
.y1d{bottom:327.586667pt;}
.y8a{bottom:329.466667pt;}
.yc2{bottom:336.506667pt;}
.y2e{bottom:341.666667pt;}
.y89{bottom:346.746667pt;}
.y1c{bottom:349.026667pt;}
.yc1{bottom:351.066667pt;}
.y2d{bottom:357.026667pt;}
.y87{bottom:363.866667pt;}
.yc0{bottom:365.626667pt;}
.y1b{bottom:370.466667pt;}
.y2c{bottom:372.066667pt;}
.ybf{bottom:380.186667pt;}
.y85{bottom:381.146667pt;}
.y2b{bottom:385.826667pt;}
.y1a{bottom:392.066667pt;}
.ybe{bottom:394.786667pt;}
.y2a{bottom:399.746667pt;}
.y84{bottom:401.186667pt;}
.ybd{bottom:409.506667pt;}
.y19{bottom:413.506667pt;}
.y83{bottom:416.546667pt;}
.ybc{bottom:424.066667pt;}
.y29{bottom:427.266667pt;}
.y82{bottom:431.906667pt;}
.y18{bottom:434.946667pt;}
.ybb{bottom:438.626667pt;}
.y28{bottom:441.026667pt;}
.y81{bottom:447.266667pt;}
.yba{bottom:453.186667pt;}
.y27{bottom:454.946667pt;}
.y17{bottom:456.386667pt;}
.y80{bottom:462.626667pt;}
.yb9{bottom:467.746667pt;}
.y26{bottom:468.706667pt;}
.y16{bottom:477.826667pt;}
.y7f{bottom:478.786667pt;}
.yb8{bottom:482.306667pt;}
.y25{bottom:482.466667pt;}
.y7e{bottom:495.106667pt;}
.y24{bottom:496.226667pt;}
.yb7{bottom:496.866667pt;}
.y15{bottom:499.266667pt;}
.y23{bottom:510.146667pt;}
.y7d{bottom:511.426667pt;}
.y14{bottom:520.906667pt;}
.y22{bottom:523.946667pt;}
.yb6{bottom:525.986667pt;}
.y7c{bottom:527.746667pt;}
.y21{bottom:537.706667pt;}
.y46{bottom:539.786667pt;}
.yb5{bottom:540.546667pt;}
.y13{bottom:542.346667pt;}
.y7b{bottom:543.106667pt;}
.yb4{bottom:555.106667pt;}
.y7a{bottom:559.266667pt;}
.yb3{bottom:569.666667pt;}
.y79{bottom:575.586667pt;}
.yb2{bottom:584.226667pt;}
.y78{bottom:591.906667pt;}
.yb1{bottom:598.813333pt;}
.y77{bottom:607.293333pt;}
.yb0{bottom:613.533333pt;}
.y76{bottom:622.653333pt;}
.yaf{bottom:628.893333pt;}
.y75{bottom:638.013333pt;}
.yae{bottom:644.253333pt;}
.y74{bottom:653.213333pt;}
.yad{bottom:659.453333pt;}
.y73{bottom:668.573333pt;}
.yac{bottom:674.813333pt;}
.y72{bottom:684.893333pt;}
.yab{bottom:690.173333pt;}
.y71{bottom:701.213333pt;}
.yaa{bottom:705.533333pt;}
.y70{bottom:717.533333pt;}
.ya9{bottom:720.893333pt;}
.y6f{bottom:732.733333pt;}
.ya8{bottom:736.253333pt;}
.y6e{bottom:748.093333pt;}
.ya7{bottom:751.453333pt;}
.y6d{bottom:763.453333pt;}
.ya6{bottom:766.813333pt;}
.y6c{bottom:778.813333pt;}
.ya5{bottom:782.173333pt;}
.y6b{bottom:794.173333pt;}
.ya4{bottom:797.533333pt;}
.y6a{bottom:809.573333pt;}
.ya3{bottom:812.933333pt;}
.y69{bottom:824.773333pt;}
.ya2{bottom:828.133333pt;}
.y68{bottom:840.133333pt;}
.ya1{bottom:843.493333pt;}
.y11{bottom:847.653333pt;}
.y10{bottom:849.093333pt;}
.yf{bottom:853.253333pt;}
.y67{bottom:855.493333pt;}
.ya0{bottom:856.613333pt;}
.ye{bottom:868.613333pt;}
.y66{bottom:870.853333pt;}
.y9f{bottom:873.893333pt;}
.yd{bottom:883.813333pt;}
.y65{bottom:886.213333pt;}
.y9e{bottom:891.013333pt;}
.yc{bottom:899.173333pt;}
.y64{bottom:901.413333pt;}
.y9d{bottom:908.293333pt;}
.yb{bottom:915.653333pt;}
.y63{bottom:916.773333pt;}
.y9c{bottom:925.573333pt;}
.y62{bottom:932.133333pt;}
.ya{bottom:937.093333pt;}
.y9b{bottom:942.693333pt;}
.y61{bottom:947.493333pt;}
.y9{bottom:962.533333pt;}
.y60{bottom:962.853333pt;}
.y5d{bottom:965.600000pt;}
.y5f{bottom:978.213333pt;}
.y6{bottom:992.293333pt;}
.y1{bottom:998.693333pt;}
.hc{height:3.575000pt;}
.h10{height:7.596875pt;}
.h1b{height:16.480000pt;}
.h19{height:16.512000pt;}
.h1a{height:16.640000pt;}
.h1c{height:17.600000pt;}
.h15{height:18.768750pt;}
.h17{height:24.640000pt;}
.hf{height:25.918750pt;}
.he{height:26.190625pt;}
.h6{height:26.735625pt;}
.h16{height:33.867188pt;}
.h11{height:34.664062pt;}
.h1e{height:35.303125pt;}
.h8{height:35.673437pt;}
.h1f{height:36.809062pt;}
.h7{height:37.090625pt;}
.hb{height:37.479688pt;}
.h13{height:38.672812pt;}
.h12{height:39.562500pt;}
.h5{height:41.112500pt;}
.h1d{height:41.672500pt;}
.ha{height:42.944375pt;}
.h9{height:52.832812pt;}
.h18{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h14{height:167.226667pt;}
.hd{height:550.973333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:27.840000pt;}
.w10{width:61.472000pt;}
.w12{width:67.392000pt;}
.w7{width:68.960000pt;}
.w14{width:69.792000pt;}
.w15{width:71.200000pt;}
.w16{width:73.440000pt;}
.w11{width:79.520000pt;}
.wf{width:91.520000pt;}
.w2{width:92.512000pt;}
.we{width:109.792000pt;}
.wd{width:109.952000pt;}
.w9{width:114.272000pt;}
.w5{width:117.952000pt;}
.wb{width:122.272000pt;}
.wc{width:126.720000pt;}
.w8{width:144.800000pt;}
.w13{width:223.386667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.272000pt;}
.x19{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1e{left:16.192000pt;}
.x17{left:17.792000pt;}
.x16{left:25.792000pt;}
.x1b{left:31.200000pt;}
.x10{left:38.912000pt;}
.x1f{left:42.432000pt;}
.x11{left:45.152000pt;}
.xf{left:48.832000pt;}
.x20{left:50.752000pt;}
.x1a{left:55.240000pt;}
.x15{left:59.706667pt;}
.x13{left:63.866667pt;}
.x14{left:65.146667pt;}
.x1{left:69.600000pt;}
.x8{left:76.799988pt;}
.x2{left:85.146667pt;}
.x21{left:91.386667pt;}
.x1d{left:94.906667pt;}
.x32{left:100.831988pt;}
.x12{left:110.746667pt;}
.x5{left:125.640000pt;}
.x2d{left:141.946667pt;}
.x23{left:145.146667pt;}
.x3{left:162.106667pt;}
.x18{left:194.746667pt;}
.x28{left:255.106667pt;}
.x24{left:260.066667pt;}
.x25{left:288.546667pt;}
.x29{left:347.266667pt;}
.x2e{left:365.986667pt;}
.xc{left:386.146655pt;}
.x2a{left:409.373333pt;}
.x26{left:411.453333pt;}
.x2f{left:436.413333pt;}
.xb{left:479.453322pt;}
.x2b{left:489.693333pt;}
.x30{left:508.253333pt;}
.xd{left:534.653322pt;}
.x27{left:538.973333pt;}
.x2c{left:557.733333pt;}
.x31{left:578.693333pt;}
.xa{left:617.253322pt;}
.x9{left:680.933322pt;}
.x7{left:697.253322pt;}
.xe{left:717.279988pt;}
.x1c{left:724.960000pt;}
}




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