
    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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_928d959412ccc968651ef47a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_01bba38d47a513bef2537761.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_cbaaecbf267a46a8f409aa9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_098cc5c841a8f76815141c75.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_46cc5bb09ecf595fd17b36b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854004;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_6a6e3c4cad36f2fe94e3dc8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls9{letter-spacing:2.160000px;}
.ls0{letter-spacing:8.640000px;}
.ls5{letter-spacing:104.929680px;}
.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:-23.921280px;}
.ws4{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-4.913280px;}
._d{margin-left:-3.366720px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._b{width:3.033360px;}
._3{width:4.909440px;}
._2{width:6.320160px;}
._a{width:8.190960px;}
._c{width:9.215280px;}
._f{width:10.457760px;}
._10{width:11.664960px;}
._15{width:13.464000px;}
._16{width:14.819040px;}
._18{width:15.996960px;}
._19{width:19.042560px;}
._1a{width:20.520000px;}
._1b{width:21.887040px;}
._1f{width:23.038560px;}
._11{width:24.120000px;}
._12{width:25.128000px;}
._17{width:26.496000px;}
._13{width:28.512000px;}
._14{width:29.969280px;}
._20{width:33.768000px;}
._1e{width:35.280000px;}
._1c{width:43.272000px;}
._1d{width:44.297280px;}
._5{width:52.693680px;}
._4{width:53.721360px;}
._9{width:74.022480px;}
._8{width:75.458880px;}
._6{width:142.612320px;}
._7{width:144.284640px;}
.fc2{color:rgb(15,71,97);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:3.960000px;}
.y2{bottom:5.580000px;}
.yae{bottom:17.100000px;}
.ya4{bottom:20.340000px;}
.y90{bottom:23.040000px;}
.y6d{bottom:24.660000px;}
.y9e{bottom:27.900000px;}
.y8e{bottom:28.080000px;}
.yad{bottom:37.800000px;}
.ya3{bottom:41.040000px;}
.y76{bottom:45.360000px;}
.y9d{bottom:50.220000px;}
.y8d{bottom:50.400000px;}
.yac{bottom:58.500000px;}
.y8{bottom:58.860000px;}
.ya2{bottom:61.740000px;}
.y75{bottom:66.060000px;}
.y9c{bottom:72.540000px;}
.y8c{bottom:72.720000px;}
.yab{bottom:79.200000px;}
.y7{bottom:80.856000px;}
.ya1{bottom:82.440000px;}
.y74{bottom:86.760000px;}
.ya5{bottom:94.860000px;}
.y8b{bottom:95.040000px;}
.yaa{bottom:99.930000px;}
.y6{bottom:101.556000px;}
.y97{bottom:103.140000px;}
.y7a{bottom:104.040000px;}
.y84{bottom:106.560000px;}
.y73{bottom:107.460000px;}
.y9b{bottom:117.360000px;}
.yb0{bottom:117.390000px;}
.y8a{bottom:117.405000px;}
.y5{bottom:120.456000px;}
.ya9{bottom:120.630000px;}
.y96{bottom:123.840000px;}
.y79{bottom:126.390000px;}
.y83{bottom:127.305000px;}
.y72{bottom:128.160000px;}
.y7b{bottom:128.190000px;}
.y4{bottom:139.536000px;}
.y9a{bottom:139.680000px;}
.yaf{bottom:139.710000px;}
.y89{bottom:139.725000px;}
.ya8{bottom:141.330000px;}
.y95{bottom:144.540000px;}
.y82{bottom:148.005000px;}
.y71{bottom:148.860000px;}
.y78{bottom:148.890000px;}
.y8f{bottom:160.230000px;}
.y30{bottom:161.310000px;}
.y99{bottom:162.000000px;}
.ya7{bottom:162.030000px;}
.y88{bottom:162.045000px;}
.y94{bottom:165.240000px;}
.y81{bottom:168.705000px;}
.y70{bottom:169.560000px;}
.ybb{bottom:173.730000px;}
.yda{bottom:175.890000px;}
.y98{bottom:184.320000px;}
.y87{bottom:184.365000px;}
.y93{bottom:185.940000px;}
.ya0{bottom:185.985000px;}
.yd7{bottom:187.050000px;}
.y80{bottom:189.405000px;}
.y2f{bottom:197.490000px;}
.y4d{bottom:200.010000px;}
.yba{bottom:204.870000px;}
.y92{bottom:206.640000px;}
.y86{bottom:206.685000px;}
.yd9{bottom:207.030000px;}
.y7f{bottom:210.105000px;}
.yd6{bottom:218.010000px;}
.y2e{bottom:221.430000px;}
.y7c{bottom:223.050000px;}
.y85{bottom:229.005000px;}
.y7e{bottom:230.805000px;}
.y4c{bottom:231.150000px;}
.yb9{bottom:235.830000px;}
.y69{bottom:237.990000px;}
.y2d{bottom:245.550000px;}
.yd5{bottom:249.150000px;}
.y7d{bottom:251.325000px;}
.y4b{bottom:262.110000px;}
.yb8{bottom:266.970000px;}
.y68{bottom:269.130000px;}
.y2c{bottom:269.670000px;}
.yd4{bottom:280.110000px;}
.y4a{bottom:293.070000px;}
.y2b{bottom:293.610000px;}
.yb7{bottom:297.930000px;}
.y67{bottom:300.090000px;}
.yd3{bottom:311.250000px;}
.y2a{bottom:317.730000px;}
.y49{bottom:324.210000px;}
.yb6{bottom:328.890000px;}
.y66{bottom:331.230000px;}
.y29{bottom:341.895000px;}
.yd2{bottom:342.255000px;}
.y48{bottom:355.215000px;}
.yb5{bottom:360.075000px;}
.y65{bottom:362.235000px;}
.y28{bottom:365.835000px;}
.yd1{bottom:373.395000px;}
.y47{bottom:386.355000px;}
.yfb{bottom:388.155000px;}
.y27{bottom:389.955000px;}
.yb4{bottom:391.035000px;}
.y64{bottom:393.375000px;}
.yd8{bottom:396.435000px;}
.yd0{bottom:404.355000px;}
.yfa{bottom:411.735000px;}
.y26{bottom:414.075000px;}
.y46{bottom:417.315000px;}
.yb3{bottom:422.175000px;}
.y63{bottom:424.335000px;}
.yf9{bottom:432.435000px;}
.y25{bottom:434.775000px;}
.ycf{bottom:435.495000px;}
.y45{bottom:448.455000px;}
.yb2{bottom:453.135000px;}
.y24{bottom:455.475000px;}
.yce{bottom:466.455000px;}
.yf8{bottom:473.835000px;}
.y44{bottom:479.415000px;}
.y62{bottom:486.435000px;}
.y23{bottom:488.055000px;}
.yb1{bottom:489.315000px;}
.y77{bottom:492.015000px;}
.yf7{bottom:494.535000px;}
.ycd{bottom:497.595000px;}
.ya6{bottom:507.135000px;}
.y22{bottom:508.755000px;}
.y43{bottom:510.555000px;}
.yf6{bottom:515.235000px;}
.y61{bottom:517.575000px;}
.ycc{bottom:528.555000px;}
.y21{bottom:529.455000px;}
.yf5{bottom:535.935000px;}
.y42{bottom:541.515000px;}
.y60{bottom:548.535000px;}
.y20{bottom:550.155000px;}
.yf4{bottom:556.635000px;}
.ycb{bottom:559.695000px;}
.y1f{bottom:570.855000px;}
.y41{bottom:572.655000px;}
.yf3{bottom:577.335000px;}
.y5f{bottom:579.675000px;}
.yca{bottom:590.655000px;}
.y1e{bottom:591.555000px;}
.yf2{bottom:598.035000px;}
.y40{bottom:603.645000px;}
.y5e{bottom:610.665000px;}
.y1d{bottom:612.285000px;}
.yf1{bottom:618.765000px;}
.yc9{bottom:621.645000px;}
.y1c{bottom:632.985000px;}
.y3f{bottom:634.785000px;}
.yf0{bottom:639.465000px;}
.y5d{bottom:641.805000px;}
.yc8{bottom:652.785000px;}
.y1b{bottom:653.685000px;}
.y6f{bottom:658.365000px;}
.yef{bottom:660.165000px;}
.y3e{bottom:665.745000px;}
.y5c{bottom:672.765000px;}
.y1a{bottom:674.385000px;}
.yee{bottom:680.865000px;}
.yc7{bottom:683.745000px;}
.y9f{bottom:686.625000px;}
.y19{bottom:695.085000px;}
.y3d{bottom:696.885000px;}
.yed{bottom:701.565000px;}
.y5b{bottom:703.905000px;}
.yc6{bottom:714.885000px;}
.y18{bottom:715.785000px;}
.yec{bottom:722.265000px;}
.y3c{bottom:727.845000px;}
.y5a{bottom:734.865000px;}
.y17{bottom:736.485000px;}
.yeb{bottom:742.785000px;}
.yc5{bottom:745.845000px;}
.y16{bottom:757.185000px;}
.y3b{bottom:758.985000px;}
.yea{bottom:763.485000px;}
.y59{bottom:766.005000px;}
.yc4{bottom:776.985000px;}
.ye9{bottom:784.185000px;}
.y3a{bottom:789.945000px;}
.y15{bottom:793.185000px;}
.y58{bottom:796.965000px;}
.ye8{bottom:804.885000px;}
.yc3{bottom:807.945000px;}
.y14{bottom:817.305000px;}
.y39{bottom:821.085000px;}
.ye7{bottom:825.585000px;}
.y57{bottom:828.105000px;}
.yc2{bottom:839.085000px;}
.y13{bottom:841.425000px;}
.y6c{bottom:845.385000px;}
.ye6{bottom:846.285000px;}
.y56{bottom:859.065000px;}
.y38{bottom:864.105000px;}
.y12{bottom:864.645000px;}
.ye5{bottom:866.985000px;}
.yc1{bottom:870.045000px;}
.ye4{bottom:887.730000px;}
.y11{bottom:889.530000px;}
.y55{bottom:890.250000px;}
.y37{bottom:895.110000px;}
.yc0{bottom:901.230000px;}
.ye3{bottom:908.430000px;}
.y91{bottom:910.770000px;}
.y6b{bottom:914.190000px;}
.y10{bottom:917.070000px;}
.y54{bottom:921.210000px;}
.y36{bottom:926.250000px;}
.ye2{bottom:929.130000px;}
.ybf{bottom:932.190000px;}
.yf{bottom:944.790000px;}
.y6a{bottom:945.330000px;}
.ye1{bottom:949.830000px;}
.y53{bottom:952.170000px;}
.y35{bottom:957.210000px;}
.ybe{bottom:963.330000px;}
.ye0{bottom:970.530000px;}
.ye{bottom:974.490000px;}
.y52{bottom:983.310000px;}
.y34{bottom:988.350000px;}
.ydf{bottom:991.230000px;}
.ybd{bottom:994.290000px;}
.yd{bottom:1002.030000px;}
.yde{bottom:1011.930000px;}
.y51{bottom:1017.510000px;}
.y33{bottom:1019.310000px;}
.ybc{bottom:1025.430000px;}
.yc{bottom:1029.750000px;}
.ydd{bottom:1032.630000px;}
.y32{bottom:1050.450000px;}
.ydc{bottom:1053.330000px;}
.y50{bottom:1056.390000px;}
.yb{bottom:1057.290000px;}
.ydb{bottom:1078.530000px;}
.y31{bottom:1081.410000px;}
.ya{bottom:1084.830000px;}
.y4f{bottom:1087.530000px;}
.y9{bottom:1115.610000px;}
.y4e{bottom:1118.490000px;}
.y3{bottom:1169.460000px;}
.y1{bottom:1186.380000px;}
.h2{height:22.500000px;}
.ha{height:41.436000px;}
.h8{height:54.773438px;}
.h4{height:59.383125px;}
.h3{height:60.855469px;}
.he{height:62.100000px;}
.h7{height:64.546875px;}
.h5{height:74.820586px;}
.h6{height:85.052461px;}
.h9{height:101.628633px;}
.hc{height:165.630000px;}
.h11{height:178.770000px;}
.hb{height:186.300000px;}
.hf{height:223.380000px;}
.h10{height:223.410000px;}
.hd{height:268.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:59.976000px;}
.w4{width:107.100000px;}
.w6{width:134.100000px;}
.w7{width:151.050000px;}
.w2{width:225.390000px;}
.w8{width:227.550000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.380000px;}
.x3{left:112.680000px;}
.x1{left:127.656000px;}
.xa{left:128.736000px;}
.x9{left:170.129987px;}
.x7{left:180.749987px;}
.x5{left:225.945000px;}
.xc{left:236.550000px;}
.xd{left:297.435000px;}
.x8{left:340.094987px;}
.x2{left:353.055000px;}
.xe{left:432.435000px;}
.x4{left:578.445000px;}
.xf{left:584.205000px;}
.x6{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls0{letter-spacing:7.680000pt;}
.ls5{letter-spacing:93.270827pt;}
.ws0{word-spacing:-21.263360pt;}
.ws4{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-4.367360pt;}
._d{margin-left:-2.992640pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._b{width:2.696320pt;}
._3{width:4.363947pt;}
._2{width:5.617920pt;}
._a{width:7.280853pt;}
._c{width:8.191360pt;}
._f{width:9.295787pt;}
._10{width:10.368853pt;}
._15{width:11.968000pt;}
._16{width:13.172480pt;}
._18{width:14.219520pt;}
._19{width:16.926720pt;}
._1a{width:18.240000pt;}
._1b{width:19.455147pt;}
._1f{width:20.478720pt;}
._11{width:21.440000pt;}
._12{width:22.336000pt;}
._17{width:23.552000pt;}
._13{width:25.344000pt;}
._14{width:26.639360pt;}
._20{width:30.016000pt;}
._1e{width:31.360000pt;}
._1c{width:38.464000pt;}
._1d{width:39.375360pt;}
._5{width:46.838827pt;}
._4{width:47.752320pt;}
._9{width:65.797760pt;}
._8{width:67.074560pt;}
._6{width:126.766507pt;}
._7{width:128.253013pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:3.520000pt;}
.y2{bottom:4.960000pt;}
.yae{bottom:15.200000pt;}
.ya4{bottom:18.080000pt;}
.y90{bottom:20.480000pt;}
.y6d{bottom:21.920000pt;}
.y9e{bottom:24.800000pt;}
.y8e{bottom:24.960000pt;}
.yad{bottom:33.600000pt;}
.ya3{bottom:36.480000pt;}
.y76{bottom:40.320000pt;}
.y9d{bottom:44.640000pt;}
.y8d{bottom:44.800000pt;}
.yac{bottom:52.000000pt;}
.y8{bottom:52.320000pt;}
.ya2{bottom:54.880000pt;}
.y75{bottom:58.720000pt;}
.y9c{bottom:64.480000pt;}
.y8c{bottom:64.640000pt;}
.yab{bottom:70.400000pt;}
.y7{bottom:71.872000pt;}
.ya1{bottom:73.280000pt;}
.y74{bottom:77.120000pt;}
.ya5{bottom:84.320000pt;}
.y8b{bottom:84.480000pt;}
.yaa{bottom:88.826667pt;}
.y6{bottom:90.272000pt;}
.y97{bottom:91.680000pt;}
.y7a{bottom:92.480000pt;}
.y84{bottom:94.720000pt;}
.y73{bottom:95.520000pt;}
.y9b{bottom:104.320000pt;}
.yb0{bottom:104.346667pt;}
.y8a{bottom:104.360000pt;}
.y5{bottom:107.072000pt;}
.ya9{bottom:107.226667pt;}
.y96{bottom:110.080000pt;}
.y79{bottom:112.346667pt;}
.y83{bottom:113.160000pt;}
.y72{bottom:113.920000pt;}
.y7b{bottom:113.946667pt;}
.y4{bottom:124.032000pt;}
.y9a{bottom:124.160000pt;}
.yaf{bottom:124.186667pt;}
.y89{bottom:124.200000pt;}
.ya8{bottom:125.626667pt;}
.y95{bottom:128.480000pt;}
.y82{bottom:131.560000pt;}
.y71{bottom:132.320000pt;}
.y78{bottom:132.346667pt;}
.y8f{bottom:142.426667pt;}
.y30{bottom:143.386667pt;}
.y99{bottom:144.000000pt;}
.ya7{bottom:144.026667pt;}
.y88{bottom:144.040000pt;}
.y94{bottom:146.880000pt;}
.y81{bottom:149.960000pt;}
.y70{bottom:150.720000pt;}
.ybb{bottom:154.426667pt;}
.yda{bottom:156.346667pt;}
.y98{bottom:163.840000pt;}
.y87{bottom:163.880000pt;}
.y93{bottom:165.280000pt;}
.ya0{bottom:165.320000pt;}
.yd7{bottom:166.266667pt;}
.y80{bottom:168.360000pt;}
.y2f{bottom:175.546667pt;}
.y4d{bottom:177.786667pt;}
.yba{bottom:182.106667pt;}
.y92{bottom:183.680000pt;}
.y86{bottom:183.720000pt;}
.yd9{bottom:184.026667pt;}
.y7f{bottom:186.760000pt;}
.yd6{bottom:193.786667pt;}
.y2e{bottom:196.826667pt;}
.y7c{bottom:198.266667pt;}
.y85{bottom:203.560000pt;}
.y7e{bottom:205.160000pt;}
.y4c{bottom:205.466667pt;}
.yb9{bottom:209.626667pt;}
.y69{bottom:211.546667pt;}
.y2d{bottom:218.266667pt;}
.yd5{bottom:221.466667pt;}
.y7d{bottom:223.400000pt;}
.y4b{bottom:232.986667pt;}
.yb8{bottom:237.306667pt;}
.y68{bottom:239.226667pt;}
.y2c{bottom:239.706667pt;}
.yd4{bottom:248.986667pt;}
.y4a{bottom:260.506667pt;}
.y2b{bottom:260.986667pt;}
.yb7{bottom:264.826667pt;}
.y67{bottom:266.746667pt;}
.yd3{bottom:276.666667pt;}
.y2a{bottom:282.426667pt;}
.y49{bottom:288.186667pt;}
.yb6{bottom:292.346667pt;}
.y66{bottom:294.426667pt;}
.y29{bottom:303.906667pt;}
.yd2{bottom:304.226667pt;}
.y48{bottom:315.746667pt;}
.yb5{bottom:320.066667pt;}
.y65{bottom:321.986667pt;}
.y28{bottom:325.186667pt;}
.yd1{bottom:331.906667pt;}
.y47{bottom:343.426667pt;}
.yfb{bottom:345.026667pt;}
.y27{bottom:346.626667pt;}
.yb4{bottom:347.586667pt;}
.y64{bottom:349.666667pt;}
.yd8{bottom:352.386667pt;}
.yd0{bottom:359.426667pt;}
.yfa{bottom:365.986667pt;}
.y26{bottom:368.066667pt;}
.y46{bottom:370.946667pt;}
.yb3{bottom:375.266667pt;}
.y63{bottom:377.186667pt;}
.yf9{bottom:384.386667pt;}
.y25{bottom:386.466667pt;}
.ycf{bottom:387.106667pt;}
.y45{bottom:398.626667pt;}
.yb2{bottom:402.786667pt;}
.y24{bottom:404.866667pt;}
.yce{bottom:414.626667pt;}
.yf8{bottom:421.186667pt;}
.y44{bottom:426.146667pt;}
.y62{bottom:432.386667pt;}
.y23{bottom:433.826667pt;}
.yb1{bottom:434.946667pt;}
.y77{bottom:437.346667pt;}
.yf7{bottom:439.586667pt;}
.ycd{bottom:442.306667pt;}
.ya6{bottom:450.786667pt;}
.y22{bottom:452.226667pt;}
.y43{bottom:453.826667pt;}
.yf6{bottom:457.986667pt;}
.y61{bottom:460.066667pt;}
.ycc{bottom:469.826667pt;}
.y21{bottom:470.626667pt;}
.yf5{bottom:476.386667pt;}
.y42{bottom:481.346667pt;}
.y60{bottom:487.586667pt;}
.y20{bottom:489.026667pt;}
.yf4{bottom:494.786667pt;}
.ycb{bottom:497.506667pt;}
.y1f{bottom:507.426667pt;}
.y41{bottom:509.026667pt;}
.yf3{bottom:513.186667pt;}
.y5f{bottom:515.266667pt;}
.yca{bottom:525.026667pt;}
.y1e{bottom:525.826667pt;}
.yf2{bottom:531.586667pt;}
.y40{bottom:536.573333pt;}
.y5e{bottom:542.813333pt;}
.y1d{bottom:544.253333pt;}
.yf1{bottom:550.013333pt;}
.yc9{bottom:552.573333pt;}
.y1c{bottom:562.653333pt;}
.y3f{bottom:564.253333pt;}
.yf0{bottom:568.413333pt;}
.y5d{bottom:570.493333pt;}
.yc8{bottom:580.253333pt;}
.y1b{bottom:581.053333pt;}
.y6f{bottom:585.213333pt;}
.yef{bottom:586.813333pt;}
.y3e{bottom:591.773333pt;}
.y5c{bottom:598.013333pt;}
.y1a{bottom:599.453333pt;}
.yee{bottom:605.213333pt;}
.yc7{bottom:607.773333pt;}
.y9f{bottom:610.333333pt;}
.y19{bottom:617.853333pt;}
.y3d{bottom:619.453333pt;}
.yed{bottom:623.613333pt;}
.y5b{bottom:625.693333pt;}
.yc6{bottom:635.453333pt;}
.y18{bottom:636.253333pt;}
.yec{bottom:642.013333pt;}
.y3c{bottom:646.973333pt;}
.y5a{bottom:653.213333pt;}
.y17{bottom:654.653333pt;}
.yeb{bottom:660.253333pt;}
.yc5{bottom:662.973333pt;}
.y16{bottom:673.053333pt;}
.y3b{bottom:674.653333pt;}
.yea{bottom:678.653333pt;}
.y59{bottom:680.893333pt;}
.yc4{bottom:690.653333pt;}
.ye9{bottom:697.053333pt;}
.y3a{bottom:702.173333pt;}
.y15{bottom:705.053333pt;}
.y58{bottom:708.413333pt;}
.ye8{bottom:715.453333pt;}
.yc3{bottom:718.173333pt;}
.y14{bottom:726.493333pt;}
.y39{bottom:729.853333pt;}
.ye7{bottom:733.853333pt;}
.y57{bottom:736.093333pt;}
.yc2{bottom:745.853333pt;}
.y13{bottom:747.933333pt;}
.y6c{bottom:751.453333pt;}
.ye6{bottom:752.253333pt;}
.y56{bottom:763.613333pt;}
.y38{bottom:768.093333pt;}
.y12{bottom:768.573333pt;}
.ye5{bottom:770.653333pt;}
.yc1{bottom:773.373333pt;}
.ye4{bottom:789.093333pt;}
.y11{bottom:790.693333pt;}
.y55{bottom:791.333333pt;}
.y37{bottom:795.653333pt;}
.yc0{bottom:801.093333pt;}
.ye3{bottom:807.493333pt;}
.y91{bottom:809.573333pt;}
.y6b{bottom:812.613333pt;}
.y10{bottom:815.173333pt;}
.y54{bottom:818.853333pt;}
.y36{bottom:823.333333pt;}
.ye2{bottom:825.893333pt;}
.ybf{bottom:828.613333pt;}
.yf{bottom:839.813333pt;}
.y6a{bottom:840.293333pt;}
.ye1{bottom:844.293333pt;}
.y53{bottom:846.373333pt;}
.y35{bottom:850.853333pt;}
.ybe{bottom:856.293333pt;}
.ye0{bottom:862.693333pt;}
.ye{bottom:866.213333pt;}
.y52{bottom:874.053333pt;}
.y34{bottom:878.533333pt;}
.ydf{bottom:881.093333pt;}
.ybd{bottom:883.813333pt;}
.yd{bottom:890.693333pt;}
.yde{bottom:899.493333pt;}
.y51{bottom:904.453333pt;}
.y33{bottom:906.053333pt;}
.ybc{bottom:911.493333pt;}
.yc{bottom:915.333333pt;}
.ydd{bottom:917.893333pt;}
.y32{bottom:933.733333pt;}
.ydc{bottom:936.293333pt;}
.y50{bottom:939.013333pt;}
.yb{bottom:939.813333pt;}
.ydb{bottom:958.693333pt;}
.y31{bottom:961.253333pt;}
.ya{bottom:964.293333pt;}
.y4f{bottom:966.693333pt;}
.y9{bottom:991.653333pt;}
.y4e{bottom:994.213333pt;}
.y3{bottom:1039.520000pt;}
.y1{bottom:1054.560000pt;}
.h2{height:20.000000pt;}
.ha{height:36.832000pt;}
.h8{height:48.687500pt;}
.h4{height:52.785000pt;}
.h3{height:54.093750pt;}
.he{height:55.200000pt;}
.h7{height:57.375000pt;}
.h5{height:66.507188pt;}
.h6{height:75.602187pt;}
.h9{height:90.336562pt;}
.hc{height:147.226667pt;}
.h11{height:158.906667pt;}
.hb{height:165.600000pt;}
.hf{height:198.560000pt;}
.h10{height:198.586667pt;}
.hd{height:238.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:53.312000pt;}
.w4{width:95.200000pt;}
.w6{width:119.200000pt;}
.w7{width:134.266667pt;}
.w2{width:200.346667pt;}
.w8{width:202.266667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.560000pt;}
.x3{left:100.160000pt;}
.x1{left:113.472000pt;}
.xa{left:114.432000pt;}
.x9{left:151.226655pt;}
.x7{left:160.666655pt;}
.x5{left:200.840000pt;}
.xc{left:210.266667pt;}
.xd{left:264.386667pt;}
.x8{left:302.306655pt;}
.x2{left:313.826667pt;}
.xe{left:384.386667pt;}
.x4{left:514.173333pt;}
.xf{left:519.293333pt;}
.x6{left:718.373322pt;}
}




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