
    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_997aba8200135d85c5a814b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_d54e62c8bf4805d869c3b45b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_a3b9b80c4390516bacacbcb4.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_3a96b1f71756da4a06ed3536.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_9b9efda67608c445821fa516.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_5fab21a796b3593f8545877d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_d7ac00d0c3e7f515a1bbd832.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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;}
.ls1a{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.618000px;}
.ls10{letter-spacing:-0.529200px;}
.ls18{letter-spacing:-0.285000px;}
.lsa{letter-spacing:-0.270600px;}
.ls3{letter-spacing:-0.247800px;}
.lsb{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.193200px;}
.ls4{letter-spacing:-0.172800px;}
.ls19{letter-spacing:-0.109200px;}
.ls12{letter-spacing:-0.103800px;}
.lsd{letter-spacing:-0.094800px;}
.lsf{letter-spacing:-0.085200px;}
.ls5{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.023040px;}
.ls13{letter-spacing:0.075000px;}
.lse{letter-spacing:0.100800px;}
.ls0{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.187200px;}
.lsc{letter-spacing:0.328200px;}
.ls7{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.907200px;}
.ls9{letter-spacing:2.347200px;}
.ls8{letter-spacing:3.067200px;}
.ls6{letter-spacing:4.507200px;}
.ls11{letter-spacing:10.267200px;}
.ls16{letter-spacing:10.987200px;}
.ls1{letter-spacing:201.427200px;}
.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;}
}
.wsa{word-spacing:-14.932800px;}
.wse{word-spacing:-14.595840px;}
.ws9{word-spacing:-14.572800px;}
.ws8{word-spacing:-14.469000px;}
.wsc{word-spacing:-14.463600px;}
.wsd{word-spacing:-13.780800px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.612800px;}
.ws7{word-spacing:-10.527600px;}
.ws4{word-spacing:-10.342200px;}
.wsb{word-spacing:-10.327800px;}
.ws6{word-spacing:-9.092400px;}
.ws2{word-spacing:-7.884000px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-201.247200px;}
._4{margin-left:-74.883840px;}
._1d{margin-left:-3.841920px;}
._1a{margin-left:-2.272080px;}
._2{margin-left:-1.242000px;}
._1{width:1.092000px;}
._6{width:2.748960px;}
._14{width:3.857520px;}
._f{width:5.236080px;}
._8{width:6.513840px;}
._7{width:7.768800px;}
._d{width:8.811840px;}
._15{width:9.868560px;}
._9{width:10.979520px;}
._a{width:12.071520px;}
._1e{width:13.562640px;}
._13{width:15.059520px;}
._b{width:16.135200px;}
._c{width:17.158800px;}
._16{width:18.987360px;}
._17{width:20.000400px;}
._1f{width:21.309360px;}
._25{width:22.316400px;}
._12{width:23.366160px;}
._18{width:25.220880px;}
._21{width:26.270400px;}
._24{width:27.358080px;}
._20{width:29.609280px;}
._19{width:31.199040px;}
._e{width:32.569200px;}
._10{width:33.824160px;}
._11{width:34.959600px;}
._23{width:38.338560px;}
._22{width:44.910720px;}
._27{width:45.970560px;}
._1b{width:47.279160px;}
._0{width:75.000000px;}
._26{width:117.228240px;}
._3{width:181.620000px;}
._1c{width:1056.007200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y51{bottom:48.060000px;}
.y7{bottom:56.340000px;}
.y53{bottom:56.520000px;}
.y50{bottom:61.380000px;}
.y6{bottom:70.056000px;}
.y4f{bottom:71.820000px;}
.y4e{bottom:82.440000px;}
.y4d{bottom:100.080000px;}
.y8c{bottom:110.556000px;}
.ybd{bottom:113.616000px;}
.y3d{bottom:121.356000px;}
.y8b{bottom:124.596000px;}
.ycf{bottom:125.856000px;}
.y8a{bottom:127.656000px;}
.y89{bottom:138.636000px;}
.yc8{bottom:139.896000px;}
.yc5{bottom:141.696000px;}
.y3c{bottom:143.496000px;}
.y88{bottom:152.670000px;}
.y4c{bottom:154.260000px;}
.y87{bottom:155.730000px;}
.yce{bottom:158.610000px;}
.yd2{bottom:160.050000px;}
.y3b{bottom:165.810000px;}
.y86{bottom:166.890000px;}
.ybc{bottom:167.970000px;}
.yc4{bottom:169.950000px;}
.y4b{bottom:174.060000px;}
.y85{bottom:180.930000px;}
.yc3{bottom:182.190000px;}
.yd1{bottom:182.370000px;}
.y84{bottom:183.990000px;}
.y4a{bottom:188.100000px;}
.y3a{bottom:188.130000px;}
.y83{bottom:194.970000px;}
.ycc{bottom:196.230000px;}
.y49{bottom:202.140000px;}
.yc6{bottom:203.070000px;}
.yd0{bottom:204.510000px;}
.yc7{bottom:206.850000px;}
.y82{bottom:209.010000px;}
.y39{bottom:210.270000px;}
.y48{bottom:216.180000px;}
.y81{bottom:223.050000px;}
.ybb{bottom:225.390000px;}
.y80{bottom:226.110000px;}
.yc2{bottom:226.830000px;}
.y47{bottom:230.400000px;}
.y38{bottom:232.590000px;}
.y7f{bottom:238.350000px;}
.y46{bottom:243.045000px;}
.yba{bottom:247.530000px;}
.yc1{bottom:249.150000px;}
.y45{bottom:251.505000px;}
.y37{bottom:254.730000px;}
.y44{bottom:265.545000px;}
.yb8{bottom:269.850000px;}
.yc0{bottom:271.290000px;}
.yb9{bottom:273.630000px;}
.y36{bottom:277.050000px;}
.y43{bottom:279.585000px;}
.yb7{bottom:292.170000px;}
.y7e{bottom:293.610000px;}
.y42{bottom:293.625000px;}
.y35{bottom:299.370000px;}
.y41{bottom:307.665000px;}
.yb6{bottom:314.310000px;}
.y7d{bottom:315.750000px;}
.y34{bottom:318.810000px;}
.y40{bottom:320.445000px;}
.y3f{bottom:331.425000px;}
.yb5{bottom:336.675000px;}
.y7c{bottom:338.115000px;}
.y33{bottom:340.455000px;}
.y32{bottom:358.095000px;}
.yb4{bottom:358.815000px;}
.y7b{bottom:360.255000px;}
.y31{bottom:375.735000px;}
.yb3{bottom:381.135000px;}
.y7a{bottom:382.575000px;}
.y30{bottom:393.375000px;}
.yb2{bottom:403.455000px;}
.y79{bottom:404.895000px;}
.y2f{bottom:410.835000px;}
.yb1{bottom:425.595000px;}
.y78{bottom:427.035000px;}
.y2e{bottom:428.475000px;}
.y2d{bottom:446.115000px;}
.yb0{bottom:447.915000px;}
.y77{bottom:449.355000px;}
.ybf{bottom:453.135000px;}
.y2c{bottom:463.755000px;}
.yaf{bottom:470.055000px;}
.y76{bottom:471.495000px;}
.y2b{bottom:481.215000px;}
.yae{bottom:492.375000px;}
.y75{bottom:493.815000px;}
.y2a{bottom:498.855000px;}
.yad{bottom:514.515000px;}
.y74{bottom:516.135000px;}
.y29{bottom:516.495000px;}
.y28{bottom:533.955000px;}
.yac{bottom:536.835000px;}
.y73{bottom:538.275000px;}
.y27{bottom:551.595000px;}
.yab{bottom:559.155000px;}
.y72{bottom:560.595000px;}
.ycb{bottom:564.375000px;}
.y26{bottom:571.395000px;}
.ya9{bottom:581.295000px;}
.y71{bottom:582.735000px;}
.yaa{bottom:585.075000px;}
.y25{bottom:589.035000px;}
.ya8{bottom:603.645000px;}
.y70{bottom:605.085000px;}
.y24{bottom:606.705000px;}
.y23{bottom:624.165000px;}
.ya7{bottom:625.785000px;}
.y6e{bottom:627.405000px;}
.y3e{bottom:628.845000px;}
.y6f{bottom:631.185000px;}
.y22{bottom:641.805000px;}
.ya6{bottom:648.105000px;}
.y6d{bottom:649.545000px;}
.y21{bottom:659.445000px;}
.ya5{bottom:670.425000px;}
.y6c{bottom:671.865000px;}
.y20{bottom:676.905000px;}
.ya4{bottom:692.565000px;}
.y6a{bottom:694.005000px;}
.y1f{bottom:694.545000px;}
.y6b{bottom:697.785000px;}
.y1e{bottom:712.185000px;}
.ya3{bottom:714.885000px;}
.y69{bottom:716.325000px;}
.y1d{bottom:729.645000px;}
.ya2{bottom:737.025000px;}
.y68{bottom:738.465000px;}
.y1c{bottom:747.285000px;}
.ya1{bottom:759.345000px;}
.y67{bottom:760.785000px;}
.yca{bottom:764.565000px;}
.y1b{bottom:764.925000px;}
.ya0{bottom:781.485000px;}
.y1a{bottom:782.565000px;}
.y66{bottom:783.105000px;}
.ybe{bottom:786.885000px;}
.y19{bottom:800.025000px;}
.y9f{bottom:803.805000px;}
.y65{bottom:805.245000px;}
.y18{bottom:817.665000px;}
.y9e{bottom:826.125000px;}
.y64{bottom:827.565000px;}
.y17{bottom:835.305000px;}
.y9d{bottom:848.265000px;}
.y63{bottom:849.705000px;}
.y16{bottom:852.765000px;}
.y15{bottom:870.405000px;}
.y9c{bottom:870.630000px;}
.y62{bottom:872.070000px;}
.y14{bottom:888.090000px;}
.y9b{bottom:892.770000px;}
.y61{bottom:894.390000px;}
.y13{bottom:905.550000px;}
.y9a{bottom:915.090000px;}
.y60{bottom:916.530000px;}
.y12{bottom:923.190000px;}
.y99{bottom:937.410000px;}
.y5f{bottom:938.850000px;}
.y11{bottom:940.830000px;}
.y10{bottom:958.650000px;}
.y98{bottom:959.550000px;}
.y5e{bottom:960.990000px;}
.yf{bottom:977.910000px;}
.y97{bottom:981.870000px;}
.y5d{bottom:983.310000px;}
.yc9{bottom:987.090000px;}
.ye{bottom:996.990000px;}
.y96{bottom:1004.010000px;}
.y5c{bottom:1005.450000px;}
.yd{bottom:1014.990000px;}
.y95{bottom:1026.330000px;}
.y5b{bottom:1027.770000px;}
.yc{bottom:1034.250000px;}
.y94{bottom:1048.650000px;}
.y5a{bottom:1050.090000px;}
.ycd{bottom:1052.430000px;}
.yb{bottom:1053.690000px;}
.y93{bottom:1070.790000px;}
.ya{bottom:1072.050000px;}
.y59{bottom:1072.230000px;}
.y9{bottom:1087.710000px;}
.y92{bottom:1093.110000px;}
.y57{bottom:1094.550000px;}
.y58{bottom:1098.330000px;}
.y8{bottom:1112.550000px;}
.y91{bottom:1115.250000px;}
.y56{bottom:1116.690000px;}
.y5{bottom:1135.050000px;}
.y8f{bottom:1137.570000px;}
.y54{bottom:1139.040000px;}
.y90{bottom:1141.380000px;}
.y55{bottom:1142.820000px;}
.y4{bottom:1150.740000px;}
.y8e{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y8d{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y52{bottom:1197.540000px;}
.hc{height:20.024297px;}
.hd{height:20.117109px;}
.h12{height:25.603594px;}
.hf{height:30.480469px;}
.h4{height:33.683203px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.h7{height:40.843828px;}
.hb{height:45.720703px;}
.h11{height:50.273438px;}
.h9{height:50.364141px;}
.h8{height:50.597578px;}
.h5{height:56.084062px;}
.h10{height:58.819922px;}
.he{height:60.960938px;}
.h6{height:65.837812px;}
.ha{height:344.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:221.970000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x12{left:112.175987px;}
.x20{left:116.315987px;}
.x9{left:134.994000px;}
.x8{left:162.029987px;}
.x25{left:195.509973px;}
.x26{left:207.029987px;}
.x4{left:218.189987px;}
.x1c{left:222.509973px;}
.x1d{left:228.269987px;}
.x16{left:253.469973px;}
.x17{left:259.229987px;}
.x10{left:265.529973px;}
.x11{left:271.289987px;}
.x5{left:305.354987px;}
.x27{left:310.394973px;}
.x28{left:321.914987px;}
.x6{left:323.174987px;}
.x7{left:342.614987px;}
.x18{left:360.974973px;}
.x19{left:366.734987px;}
.x3{left:446.654987px;}
.x13{left:468.824987px;}
.x14{left:491.864973px;}
.x15{left:497.624987px;}
.xe{left:536.684973px;}
.x1e{left:537.764973px;}
.xf{left:542.444987px;}
.x21{left:545.504973px;}
.x1f{left:549.284987px;}
.x23{left:551.084973px;}
.x22{left:557.024987px;}
.x24{left:562.604987px;}
.xa{left:607.064973px;}
.xb{left:612.824987px;}
.xc{left:719.609973px;}
.xd{left:725.369987px;}
.x1a{left:775.949973px;}
.x1b{left:781.709987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.549333pt;}
.ls10{letter-spacing:-0.470400pt;}
.ls18{letter-spacing:-0.253333pt;}
.lsa{letter-spacing:-0.240533pt;}
.ls3{letter-spacing:-0.220267pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.171733pt;}
.ls4{letter-spacing:-0.153600pt;}
.ls19{letter-spacing:-0.097067pt;}
.ls12{letter-spacing:-0.092267pt;}
.lsd{letter-spacing:-0.084267pt;}
.lsf{letter-spacing:-0.075733pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.020480pt;}
.ls13{letter-spacing:0.066667pt;}
.lse{letter-spacing:0.089600pt;}
.ls0{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.166400pt;}
.lsc{letter-spacing:0.291733pt;}
.ls7{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.806400pt;}
.ls9{letter-spacing:2.086400pt;}
.ls8{letter-spacing:2.726400pt;}
.ls6{letter-spacing:4.006400pt;}
.ls11{letter-spacing:9.126400pt;}
.ls16{letter-spacing:9.766400pt;}
.ls1{letter-spacing:179.046400pt;}
.wsa{word-spacing:-13.273600pt;}
.wse{word-spacing:-12.974080pt;}
.ws9{word-spacing:-12.953600pt;}
.ws8{word-spacing:-12.861333pt;}
.wsc{word-spacing:-12.856533pt;}
.wsd{word-spacing:-12.249600pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.433600pt;}
.ws7{word-spacing:-9.357867pt;}
.ws4{word-spacing:-9.193067pt;}
.wsb{word-spacing:-9.180267pt;}
.ws6{word-spacing:-8.082133pt;}
.ws2{word-spacing:-7.008000pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-178.886400pt;}
._4{margin-left:-66.563413pt;}
._1d{margin-left:-3.415040pt;}
._1a{margin-left:-2.019627pt;}
._2{margin-left:-1.104000pt;}
._1{width:0.970667pt;}
._6{width:2.443520pt;}
._14{width:3.428907pt;}
._f{width:4.654293pt;}
._8{width:5.790080pt;}
._7{width:6.905600pt;}
._d{width:7.832747pt;}
._15{width:8.772053pt;}
._9{width:9.759573pt;}
._a{width:10.730240pt;}
._1e{width:12.055680pt;}
._13{width:13.386240pt;}
._b{width:14.342400pt;}
._c{width:15.252267pt;}
._16{width:16.877653pt;}
._17{width:17.778133pt;}
._1f{width:18.941653pt;}
._25{width:19.836800pt;}
._12{width:20.769920pt;}
._18{width:22.418560pt;}
._21{width:23.351467pt;}
._24{width:24.318293pt;}
._20{width:26.319360pt;}
._19{width:27.732480pt;}
._e{width:28.950400pt;}
._10{width:30.065920pt;}
._11{width:31.075200pt;}
._23{width:34.078720pt;}
._22{width:39.920640pt;}
._27{width:40.862720pt;}
._1b{width:42.025920pt;}
._0{width:66.666667pt;}
._26{width:104.202880pt;}
._3{width:161.440000pt;}
._1c{width:938.673067pt;}
.fs7{font-size:21.120000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:42.720000pt;}
.y7{bottom:50.080000pt;}
.y53{bottom:50.240000pt;}
.y50{bottom:54.560000pt;}
.y6{bottom:62.272000pt;}
.y4f{bottom:63.840000pt;}
.y4e{bottom:73.280000pt;}
.y4d{bottom:88.960000pt;}
.y8c{bottom:98.272000pt;}
.ybd{bottom:100.992000pt;}
.y3d{bottom:107.872000pt;}
.y8b{bottom:110.752000pt;}
.ycf{bottom:111.872000pt;}
.y8a{bottom:113.472000pt;}
.y89{bottom:123.232000pt;}
.yc8{bottom:124.352000pt;}
.yc5{bottom:125.952000pt;}
.y3c{bottom:127.552000pt;}
.y88{bottom:135.706667pt;}
.y4c{bottom:137.120000pt;}
.y87{bottom:138.426667pt;}
.yce{bottom:140.986667pt;}
.yd2{bottom:142.266667pt;}
.y3b{bottom:147.386667pt;}
.y86{bottom:148.346667pt;}
.ybc{bottom:149.306667pt;}
.yc4{bottom:151.066667pt;}
.y4b{bottom:154.720000pt;}
.y85{bottom:160.826667pt;}
.yc3{bottom:161.946667pt;}
.yd1{bottom:162.106667pt;}
.y84{bottom:163.546667pt;}
.y4a{bottom:167.200000pt;}
.y3a{bottom:167.226667pt;}
.y83{bottom:173.306667pt;}
.ycc{bottom:174.426667pt;}
.y49{bottom:179.680000pt;}
.yc6{bottom:180.506667pt;}
.yd0{bottom:181.786667pt;}
.yc7{bottom:183.866667pt;}
.y82{bottom:185.786667pt;}
.y39{bottom:186.906667pt;}
.y48{bottom:192.160000pt;}
.y81{bottom:198.266667pt;}
.ybb{bottom:200.346667pt;}
.y80{bottom:200.986667pt;}
.yc2{bottom:201.626667pt;}
.y47{bottom:204.800000pt;}
.y38{bottom:206.746667pt;}
.y7f{bottom:211.866667pt;}
.y46{bottom:216.040000pt;}
.yba{bottom:220.026667pt;}
.yc1{bottom:221.466667pt;}
.y45{bottom:223.560000pt;}
.y37{bottom:226.426667pt;}
.y44{bottom:236.040000pt;}
.yb8{bottom:239.866667pt;}
.yc0{bottom:241.146667pt;}
.yb9{bottom:243.226667pt;}
.y36{bottom:246.266667pt;}
.y43{bottom:248.520000pt;}
.yb7{bottom:259.706667pt;}
.y7e{bottom:260.986667pt;}
.y42{bottom:261.000000pt;}
.y35{bottom:266.106667pt;}
.y41{bottom:273.480000pt;}
.yb6{bottom:279.386667pt;}
.y7d{bottom:280.666667pt;}
.y34{bottom:283.386667pt;}
.y40{bottom:284.840000pt;}
.y3f{bottom:294.600000pt;}
.yb5{bottom:299.266667pt;}
.y7c{bottom:300.546667pt;}
.y33{bottom:302.626667pt;}
.y32{bottom:318.306667pt;}
.yb4{bottom:318.946667pt;}
.y7b{bottom:320.226667pt;}
.y31{bottom:333.986667pt;}
.yb3{bottom:338.786667pt;}
.y7a{bottom:340.066667pt;}
.y30{bottom:349.666667pt;}
.yb2{bottom:358.626667pt;}
.y79{bottom:359.906667pt;}
.y2f{bottom:365.186667pt;}
.yb1{bottom:378.306667pt;}
.y78{bottom:379.586667pt;}
.y2e{bottom:380.866667pt;}
.y2d{bottom:396.546667pt;}
.yb0{bottom:398.146667pt;}
.y77{bottom:399.426667pt;}
.ybf{bottom:402.786667pt;}
.y2c{bottom:412.226667pt;}
.yaf{bottom:417.826667pt;}
.y76{bottom:419.106667pt;}
.y2b{bottom:427.746667pt;}
.yae{bottom:437.666667pt;}
.y75{bottom:438.946667pt;}
.y2a{bottom:443.426667pt;}
.yad{bottom:457.346667pt;}
.y74{bottom:458.786667pt;}
.y29{bottom:459.106667pt;}
.y28{bottom:474.626667pt;}
.yac{bottom:477.186667pt;}
.y73{bottom:478.466667pt;}
.y27{bottom:490.306667pt;}
.yab{bottom:497.026667pt;}
.y72{bottom:498.306667pt;}
.ycb{bottom:501.666667pt;}
.y26{bottom:507.906667pt;}
.ya9{bottom:516.706667pt;}
.y71{bottom:517.986667pt;}
.yaa{bottom:520.066667pt;}
.y25{bottom:523.586667pt;}
.ya8{bottom:536.573333pt;}
.y70{bottom:537.853333pt;}
.y24{bottom:539.293333pt;}
.y23{bottom:554.813333pt;}
.ya7{bottom:556.253333pt;}
.y6e{bottom:557.693333pt;}
.y3e{bottom:558.973333pt;}
.y6f{bottom:561.053333pt;}
.y22{bottom:570.493333pt;}
.ya6{bottom:576.093333pt;}
.y6d{bottom:577.373333pt;}
.y21{bottom:586.173333pt;}
.ya5{bottom:595.933333pt;}
.y6c{bottom:597.213333pt;}
.y20{bottom:601.693333pt;}
.ya4{bottom:615.613333pt;}
.y6a{bottom:616.893333pt;}
.y1f{bottom:617.373333pt;}
.y6b{bottom:620.253333pt;}
.y1e{bottom:633.053333pt;}
.ya3{bottom:635.453333pt;}
.y69{bottom:636.733333pt;}
.y1d{bottom:648.573333pt;}
.ya2{bottom:655.133333pt;}
.y68{bottom:656.413333pt;}
.y1c{bottom:664.253333pt;}
.ya1{bottom:674.973333pt;}
.y67{bottom:676.253333pt;}
.yca{bottom:679.613333pt;}
.y1b{bottom:679.933333pt;}
.ya0{bottom:694.653333pt;}
.y1a{bottom:695.613333pt;}
.y66{bottom:696.093333pt;}
.ybe{bottom:699.453333pt;}
.y19{bottom:711.133333pt;}
.y9f{bottom:714.493333pt;}
.y65{bottom:715.773333pt;}
.y18{bottom:726.813333pt;}
.y9e{bottom:734.333333pt;}
.y64{bottom:735.613333pt;}
.y17{bottom:742.493333pt;}
.y9d{bottom:754.013333pt;}
.y63{bottom:755.293333pt;}
.y16{bottom:758.013333pt;}
.y15{bottom:773.693333pt;}
.y9c{bottom:773.893333pt;}
.y62{bottom:775.173333pt;}
.y14{bottom:789.413333pt;}
.y9b{bottom:793.573333pt;}
.y61{bottom:795.013333pt;}
.y13{bottom:804.933333pt;}
.y9a{bottom:813.413333pt;}
.y60{bottom:814.693333pt;}
.y12{bottom:820.613333pt;}
.y99{bottom:833.253333pt;}
.y5f{bottom:834.533333pt;}
.y11{bottom:836.293333pt;}
.y10{bottom:852.133333pt;}
.y98{bottom:852.933333pt;}
.y5e{bottom:854.213333pt;}
.yf{bottom:869.253333pt;}
.y97{bottom:872.773333pt;}
.y5d{bottom:874.053333pt;}
.yc9{bottom:877.413333pt;}
.ye{bottom:886.213333pt;}
.y96{bottom:892.453333pt;}
.y5c{bottom:893.733333pt;}
.yd{bottom:902.213333pt;}
.y95{bottom:912.293333pt;}
.y5b{bottom:913.573333pt;}
.yc{bottom:919.333333pt;}
.y94{bottom:932.133333pt;}
.y5a{bottom:933.413333pt;}
.ycd{bottom:935.493333pt;}
.yb{bottom:936.613333pt;}
.y93{bottom:951.813333pt;}
.ya{bottom:952.933333pt;}
.y59{bottom:953.093333pt;}
.y9{bottom:966.853333pt;}
.y92{bottom:971.653333pt;}
.y57{bottom:972.933333pt;}
.y58{bottom:976.293333pt;}
.y8{bottom:988.933333pt;}
.y91{bottom:991.333333pt;}
.y56{bottom:992.613333pt;}
.y5{bottom:1008.933333pt;}
.y8f{bottom:1011.173333pt;}
.y54{bottom:1012.480000pt;}
.y90{bottom:1014.560000pt;}
.y55{bottom:1015.840000pt;}
.y4{bottom:1022.880000pt;}
.y8e{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y8d{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y52{bottom:1064.480000pt;}
.hc{height:17.799375pt;}
.hd{height:17.881875pt;}
.h12{height:22.758750pt;}
.hf{height:27.093750pt;}
.h4{height:29.940625pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.h7{height:36.305625pt;}
.hb{height:40.640625pt;}
.h11{height:44.687500pt;}
.h9{height:44.768125pt;}
.h8{height:44.975625pt;}
.h5{height:49.852500pt;}
.h10{height:52.284375pt;}
.he{height:54.187500pt;}
.h6{height:58.522500pt;}
.ha{height:305.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.306667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x12{left:99.711988pt;}
.x20{left:103.391988pt;}
.x9{left:119.994667pt;}
.x8{left:144.026655pt;}
.x25{left:173.786643pt;}
.x26{left:184.026655pt;}
.x4{left:193.946655pt;}
.x1c{left:197.786643pt;}
.x1d{left:202.906655pt;}
.x16{left:225.306643pt;}
.x17{left:230.426655pt;}
.x10{left:236.026643pt;}
.x11{left:241.146655pt;}
.x5{left:271.426655pt;}
.x27{left:275.906643pt;}
.x28{left:286.146655pt;}
.x6{left:287.266655pt;}
.x7{left:304.546655pt;}
.x18{left:320.866643pt;}
.x19{left:325.986655pt;}
.x3{left:397.026655pt;}
.x13{left:416.733322pt;}
.x14{left:437.213310pt;}
.x15{left:442.333322pt;}
.xe{left:477.053310pt;}
.x1e{left:478.013310pt;}
.xf{left:482.173322pt;}
.x21{left:484.893310pt;}
.x1f{left:488.253322pt;}
.x23{left:489.853310pt;}
.x22{left:495.133322pt;}
.x24{left:500.093322pt;}
.xa{left:539.613310pt;}
.xb{left:544.733322pt;}
.xc{left:639.653310pt;}
.xd{left:644.773322pt;}
.x1a{left:689.733310pt;}
.x1b{left:694.853322pt;}
}




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