
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6103aa5b534e75ca16dd2f4b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_0fb1daae9c396a2fd8bab035.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_869e19478a0d4928a75e866c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_35d7c4438962b5ebeb36a8c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_bc45f57d9b4ffc14ab7cca2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_ba84874194b3cdcc08ee473e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_05c5da292a01a6cb68f065e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_62388fdb30a1090cb7f5398e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_15d2a5d100e3ea92e44eb7c0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.341400px;}
.ls5{letter-spacing:-0.037440px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.256200px;}
.ls6{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.540000px;}
.ls7{letter-spacing:21.221280px;}
.ls3{letter-spacing:40.320000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws6{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.022560px;}
.ws7{word-spacing:-20.700000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-0.322440px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._2a{margin-left:-19.628880px;}
._1c{margin-left:-2.169840px;}
._1{margin-left:-1.126080px;}
._3{width:1.244880px;}
._1e{width:2.278320px;}
._4{width:3.377040px;}
._d{width:4.495680px;}
._13{width:5.506560px;}
._12{width:6.570720px;}
._17{width:8.051040px;}
._9{width:9.266400px;}
._1d{width:10.275600px;}
._27{width:11.330160px;}
._6{width:12.364800px;}
._5{width:13.532160px;}
._1f{width:14.706720px;}
._e{width:15.783840px;}
._23{width:17.333040px;}
._1b{width:18.704400px;}
._a{width:20.023680px;}
._20{width:22.229040px;}
._8{width:23.418720px;}
._7{width:24.713280px;}
._16{width:26.601600px;}
._26{width:28.136160px;}
._b{width:29.315520px;}
._c{width:30.441600px;}
._11{width:31.789440px;}
._19{width:33.022080px;}
._1a{width:34.285680px;}
._15{width:36.338400px;}
._14{width:37.433520px;}
._18{width:38.834640px;}
._10{width:40.097280px;}
._f{width:43.889040px;}
._22{width:46.312080px;}
._21{width:47.358720px;}
._2b{width:49.394880px;}
._2f{width:65.401200px;}
._30{width:66.950400px;}
._31{width:88.367760px;}
._28{width:89.775600px;}
._29{width:91.043040px;}
._2c{width:94.464000px;}
._33{width:98.507520px;}
._32{width:142.984560px;}
._2e{width:168.564240px;}
._2d{width:169.891680px;}
._2{width:638.842080px;}
._24{width:869.439360px;}
._25{width:870.600000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.yc5{bottom:82.440000px;}
.y57{bottom:86.400000px;}
.y9d{bottom:87.120000px;}
.y1f{bottom:88.200000px;}
.y3b{bottom:96.120000px;}
.y88{bottom:97.740000px;}
.y6d{bottom:106.920000px;}
.yb4{bottom:110.160000px;}
.yc4{bottom:118.620000px;}
.y56{bottom:122.400000px;}
.y9c{bottom:123.480000px;}
.y3a{bottom:132.336000px;}
.y87{bottom:133.956000px;}
.y1e{bottom:142.956000px;}
.y6c{bottom:143.136000px;}
.yb3{bottom:146.376000px;}
.yc3{bottom:155.010000px;}
.y55{bottom:158.610000px;}
.y86{bottom:170.130000px;}
.y1d{bottom:178.950000px;}
.y6b{bottom:179.310000px;}
.y9b{bottom:180.930000px;}
.yb2{bottom:182.550000px;}
.y39{bottom:189.750000px;}
.yc2{bottom:191.190000px;}
.y54{bottom:194.790000px;}
.y85{bottom:206.490000px;}
.y1c{bottom:215.310000px;}
.y6a{bottom:215.490000px;}
.y9a{bottom:216.930000px;}
.yb1{bottom:218.910000px;}
.y38{bottom:225.750000px;}
.yc1{bottom:227.370000px;}
.y53{bottom:231.150000px;}
.y84{bottom:242.670000px;}
.y69{bottom:251.850000px;}
.y99{bottom:253.110000px;}
.y1b{bottom:253.470000px;}
.yb0{bottom:255.090000px;}
.y37{bottom:261.930000px;}
.yc0{bottom:263.550000px;}
.y52{bottom:266.970000px;}
.y83{bottom:278.850000px;}
.y68{bottom:288.030000px;}
.y98{bottom:289.290000px;}
.yaf{bottom:291.270000px;}
.y36{bottom:298.290000px;}
.ybf{bottom:299.910000px;}
.y1a{bottom:311.430000px;}
.y82{bottom:315.030000px;}
.y67{bottom:324.210000px;}
.y51{bottom:324.750000px;}
.y97{bottom:325.650000px;}
.yae{bottom:327.450000px;}
.y35{bottom:334.470000px;}
.ybe{bottom:336.090000px;}
.y81{bottom:351.210000px;}
.y66{bottom:360.390000px;}
.y50{bottom:360.750000px;}
.y96{bottom:361.830000px;}
.yad{bottom:363.810000px;}
.y19{bottom:365.250000px;}
.ybd{bottom:372.270000px;}
.y80{bottom:387.615000px;}
.y34{bottom:391.935000px;}
.y4f{bottom:396.615000px;}
.y65{bottom:396.795000px;}
.y95{bottom:398.055000px;}
.ybc{bottom:408.495000px;}
.yac{bottom:408.675000px;}
.y18{bottom:422.535000px;}
.y7f{bottom:423.795000px;}
.y33{bottom:427.935000px;}
.y64{bottom:432.975000px;}
.y4e{bottom:433.155000px;}
.ybb{bottom:444.855000px;}
.yab{bottom:453.855000px;}
.y94{bottom:455.475000px;}
.y17{bottom:458.535000px;}
.y7e{bottom:459.975000px;}
.y32{bottom:464.115000px;}
.y63{bottom:469.155000px;}
.y4d{bottom:469.515000px;}
.yba{bottom:481.035000px;}
.y93{bottom:491.475000px;}
.y16{bottom:494.715000px;}
.y7d{bottom:496.155000px;}
.y31{bottom:500.475000px;}
.y62{bottom:505.335000px;}
.y4c{bottom:505.695000px;}
.yaa{bottom:511.635000px;}
.yb9{bottom:517.215000px;}
.y92{bottom:527.655000px;}
.y15{bottom:531.075000px;}
.y7c{bottom:532.515000px;}
.y30{bottom:536.655000px;}
.y61{bottom:541.515000px;}
.ya9{bottom:547.635000px;}
.yb8{bottom:553.395000px;}
.y4b{bottom:563.115000px;}
.y91{bottom:564.015000px;}
.y14{bottom:567.255000px;}
.y7b{bottom:568.695000px;}
.y2f{bottom:573.015000px;}
.y60{bottom:577.875000px;}
.ya8{bottom:583.455000px;}
.yb7{bottom:589.755000px;}
.y4a{bottom:599.115000px;}
.y13{bottom:603.435000px;}
.y7a{bottom:604.875000px;}
.y5f{bottom:614.055000px;}
.ya7{bottom:620.175000px;}
.y2e{bottom:621.255000px;}
.yb6{bottom:625.935000px;}
.y49{bottom:635.325000px;}
.y12{bottom:639.645000px;}
.y5e{bottom:650.265000px;}
.ya6{bottom:656.385000px;}
.y90{bottom:657.465000px;}
.yb5{bottom:662.145000px;}
.y79{bottom:662.325000px;}
.y11{bottom:675.825000px;}
.y2d{bottom:679.065000px;}
.y5d{bottom:686.625000px;}
.ya5{bottom:692.565000px;}
.y48{bottom:692.745000px;}
.y8f{bottom:693.645000px;}
.y78{bottom:698.325000px;}
.y10{bottom:712.185000px;}
.y2c{bottom:715.065000px;}
.y47{bottom:728.745000px;}
.y8e{bottom:729.825000px;}
.y77{bottom:734.505000px;}
.y5c{bottom:745.845000px;}
.yf{bottom:748.365000px;}
.y2b{bottom:751.245000px;}
.y46{bottom:765.105000px;}
.y8d{bottom:766.185000px;}
.y76{bottom:770.865000px;}
.ye{bottom:786.705000px;}
.y2a{bottom:787.605000px;}
.y5b{bottom:796.245000px;}
.ya4{bottom:800.925000px;}
.y45{bottom:801.285000px;}
.y75{bottom:807.045000px;}
.y29{bottom:823.785000px;}
.y8c{bottom:825.405000px;}
.ya3{bottom:837.465000px;}
.y74{bottom:843.225000px;}
.yd{bottom:846.645000px;}
.y44{bottom:858.705000px;}
.y28{bottom:859.965000px;}
.y8b{bottom:873.285000px;}
.ya2{bottom:873.645000px;}
.y73{bottom:879.405000px;}
.yc{bottom:883.365000px;}
.y5a{bottom:892.590000px;}
.y43{bottom:894.750000px;}
.y27{bottom:896.190000px;}
.ya1{bottom:910.050000px;}
.y72{bottom:915.810000px;}
.yb{bottom:928.590000px;}
.y42{bottom:930.930000px;}
.y8a{bottom:931.110000px;}
.y26{bottom:932.370000px;}
.y59{bottom:945.870000px;}
.y71{bottom:951.990000px;}
.yc8{bottom:965.310000px;}
.y41{bottom:967.110000px;}
.ya0{bottom:967.290000px;}
.y25{bottom:968.730000px;}
.ya{bottom:973.950000px;}
.y70{bottom:988.170000px;}
.y89{bottom:988.350000px;}
.y58{bottom:1003.110000px;}
.y40{bottom:1003.470000px;}
.yc7{bottom:1004.730000px;}
.y24{bottom:1004.910000px;}
.y9{bottom:1019.130000px;}
.y6f{bottom:1024.350000px;}
.y9f{bottom:1039.650000px;}
.y23{bottom:1041.090000px;}
.yc6{bottom:1047.750000px;}
.y6e{bottom:1060.710000px;}
.y3f{bottom:1060.890000px;}
.y8{bottom:1064.310000px;}
.y22{bottom:1077.450000px;}
.y3e{bottom:1096.890000px;}
.y9e{bottom:1097.070000px;}
.y7{bottom:1109.490000px;}
.y21{bottom:1126.770000px;}
.y3d{bottom:1133.070000px;}
.y6{bottom:1157.220000px;}
.y3c{bottom:1169.280000px;}
.y20{bottom:1172.880000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h8{height:59.066719px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h9{height:70.664062px;}
.h7{height:82.676953px;}
.hb{height:83.787539px;}
.h6{height:84.898125px;}
.ha{height:86.585445px;}
.h5{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:16.410000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.xd{left:122.796000px;}
.x5{left:144.036000px;}
.xe{left:149.796000px;}
.x8{left:246.990000px;}
.xc{left:308.955000px;}
.x6{left:325.515000px;}
.xf{left:413.535000px;}
.x3{left:438.915000px;}
.xa{left:503.205000px;}
.x9{left:531.285000px;}
.xb{left:553.785000px;}
.x7{left:579.165000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.303467pt;}
.ls5{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.227733pt;}
.ls6{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls7{letter-spacing:18.863360pt;}
.ls3{letter-spacing:35.840000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws3{word-spacing:-21.280000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.686720pt;}
.ws7{word-spacing:-18.400000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-0.286613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._2a{margin-left:-17.447893pt;}
._1c{margin-left:-1.928747pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.106560pt;}
._1e{width:2.025173pt;}
._4{width:3.001813pt;}
._d{width:3.996160pt;}
._13{width:4.894720pt;}
._12{width:5.840640pt;}
._17{width:7.156480pt;}
._9{width:8.236800pt;}
._1d{width:9.133867pt;}
._27{width:10.071253pt;}
._6{width:10.990933pt;}
._5{width:12.028587pt;}
._1f{width:13.072640pt;}
._e{width:14.030080pt;}
._23{width:15.407147pt;}
._1b{width:16.626133pt;}
._a{width:17.798827pt;}
._20{width:19.759147pt;}
._8{width:20.816640pt;}
._7{width:21.967360pt;}
._16{width:23.645867pt;}
._26{width:25.009920pt;}
._b{width:26.058240pt;}
._c{width:27.059200pt;}
._11{width:28.257280pt;}
._19{width:29.352960pt;}
._1a{width:30.476160pt;}
._15{width:32.300800pt;}
._14{width:33.274240pt;}
._18{width:34.519680pt;}
._10{width:35.642027pt;}
._f{width:39.012480pt;}
._22{width:41.166293pt;}
._21{width:42.096640pt;}
._2b{width:43.906560pt;}
._2f{width:58.134400pt;}
._30{width:59.511467pt;}
._31{width:78.549120pt;}
._28{width:79.800533pt;}
._29{width:80.927147pt;}
._2c{width:83.968000pt;}
._33{width:87.562240pt;}
._32{width:127.097387pt;}
._2e{width:149.834880pt;}
._2d{width:151.014827pt;}
._2{width:567.859627pt;}
._24{width:772.834987pt;}
._25{width:773.866667pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.yc5{bottom:73.280000pt;}
.y57{bottom:76.800000pt;}
.y9d{bottom:77.440000pt;}
.y1f{bottom:78.400000pt;}
.y3b{bottom:85.440000pt;}
.y88{bottom:86.880000pt;}
.y6d{bottom:95.040000pt;}
.yb4{bottom:97.920000pt;}
.yc4{bottom:105.440000pt;}
.y56{bottom:108.800000pt;}
.y9c{bottom:109.760000pt;}
.y3a{bottom:117.632000pt;}
.y87{bottom:119.072000pt;}
.y1e{bottom:127.072000pt;}
.y6c{bottom:127.232000pt;}
.yb3{bottom:130.112000pt;}
.yc3{bottom:137.786667pt;}
.y55{bottom:140.986667pt;}
.y86{bottom:151.226667pt;}
.y1d{bottom:159.066667pt;}
.y6b{bottom:159.386667pt;}
.y9b{bottom:160.826667pt;}
.yb2{bottom:162.266667pt;}
.y39{bottom:168.666667pt;}
.yc2{bottom:169.946667pt;}
.y54{bottom:173.146667pt;}
.y85{bottom:183.546667pt;}
.y1c{bottom:191.386667pt;}
.y6a{bottom:191.546667pt;}
.y9a{bottom:192.826667pt;}
.yb1{bottom:194.586667pt;}
.y38{bottom:200.666667pt;}
.yc1{bottom:202.106667pt;}
.y53{bottom:205.466667pt;}
.y84{bottom:215.706667pt;}
.y69{bottom:223.866667pt;}
.y99{bottom:224.986667pt;}
.y1b{bottom:225.306667pt;}
.yb0{bottom:226.746667pt;}
.y37{bottom:232.826667pt;}
.yc0{bottom:234.266667pt;}
.y52{bottom:237.306667pt;}
.y83{bottom:247.866667pt;}
.y68{bottom:256.026667pt;}
.y98{bottom:257.146667pt;}
.yaf{bottom:258.906667pt;}
.y36{bottom:265.146667pt;}
.ybf{bottom:266.586667pt;}
.y1a{bottom:276.826667pt;}
.y82{bottom:280.026667pt;}
.y67{bottom:288.186667pt;}
.y51{bottom:288.666667pt;}
.y97{bottom:289.466667pt;}
.yae{bottom:291.066667pt;}
.y35{bottom:297.306667pt;}
.ybe{bottom:298.746667pt;}
.y81{bottom:312.186667pt;}
.y66{bottom:320.346667pt;}
.y50{bottom:320.666667pt;}
.y96{bottom:321.626667pt;}
.yad{bottom:323.386667pt;}
.y19{bottom:324.666667pt;}
.ybd{bottom:330.906667pt;}
.y80{bottom:344.546667pt;}
.y34{bottom:348.386667pt;}
.y4f{bottom:352.546667pt;}
.y65{bottom:352.706667pt;}
.y95{bottom:353.826667pt;}
.ybc{bottom:363.106667pt;}
.yac{bottom:363.266667pt;}
.y18{bottom:375.586667pt;}
.y7f{bottom:376.706667pt;}
.y33{bottom:380.386667pt;}
.y64{bottom:384.866667pt;}
.y4e{bottom:385.026667pt;}
.ybb{bottom:395.426667pt;}
.yab{bottom:403.426667pt;}
.y94{bottom:404.866667pt;}
.y17{bottom:407.586667pt;}
.y7e{bottom:408.866667pt;}
.y32{bottom:412.546667pt;}
.y63{bottom:417.026667pt;}
.y4d{bottom:417.346667pt;}
.yba{bottom:427.586667pt;}
.y93{bottom:436.866667pt;}
.y16{bottom:439.746667pt;}
.y7d{bottom:441.026667pt;}
.y31{bottom:444.866667pt;}
.y62{bottom:449.186667pt;}
.y4c{bottom:449.506667pt;}
.yaa{bottom:454.786667pt;}
.yb9{bottom:459.746667pt;}
.y92{bottom:469.026667pt;}
.y15{bottom:472.066667pt;}
.y7c{bottom:473.346667pt;}
.y30{bottom:477.026667pt;}
.y61{bottom:481.346667pt;}
.ya9{bottom:486.786667pt;}
.yb8{bottom:491.906667pt;}
.y4b{bottom:500.546667pt;}
.y91{bottom:501.346667pt;}
.y14{bottom:504.226667pt;}
.y7b{bottom:505.506667pt;}
.y2f{bottom:509.346667pt;}
.y60{bottom:513.666667pt;}
.ya8{bottom:518.626667pt;}
.yb7{bottom:524.226667pt;}
.y4a{bottom:532.546667pt;}
.y13{bottom:536.386667pt;}
.y7a{bottom:537.666667pt;}
.y5f{bottom:545.826667pt;}
.ya7{bottom:551.266667pt;}
.y2e{bottom:552.226667pt;}
.yb6{bottom:556.386667pt;}
.y49{bottom:564.733333pt;}
.y12{bottom:568.573333pt;}
.y5e{bottom:578.013333pt;}
.ya6{bottom:583.453333pt;}
.y90{bottom:584.413333pt;}
.yb5{bottom:588.573333pt;}
.y79{bottom:588.733333pt;}
.y11{bottom:600.733333pt;}
.y2d{bottom:603.613333pt;}
.y5d{bottom:610.333333pt;}
.ya5{bottom:615.613333pt;}
.y48{bottom:615.773333pt;}
.y8f{bottom:616.573333pt;}
.y78{bottom:620.733333pt;}
.y10{bottom:633.053333pt;}
.y2c{bottom:635.613333pt;}
.y47{bottom:647.773333pt;}
.y8e{bottom:648.733333pt;}
.y77{bottom:652.893333pt;}
.y5c{bottom:662.973333pt;}
.yf{bottom:665.213333pt;}
.y2b{bottom:667.773333pt;}
.y46{bottom:680.093333pt;}
.y8d{bottom:681.053333pt;}
.y76{bottom:685.213333pt;}
.ye{bottom:699.293333pt;}
.y2a{bottom:700.093333pt;}
.y5b{bottom:707.773333pt;}
.ya4{bottom:711.933333pt;}
.y45{bottom:712.253333pt;}
.y75{bottom:717.373333pt;}
.y29{bottom:732.253333pt;}
.y8c{bottom:733.693333pt;}
.ya3{bottom:744.413333pt;}
.y74{bottom:749.533333pt;}
.yd{bottom:752.573333pt;}
.y44{bottom:763.293333pt;}
.y28{bottom:764.413333pt;}
.y8b{bottom:776.253333pt;}
.ya2{bottom:776.573333pt;}
.y73{bottom:781.693333pt;}
.yc{bottom:785.213333pt;}
.y5a{bottom:793.413333pt;}
.y43{bottom:795.333333pt;}
.y27{bottom:796.613333pt;}
.ya1{bottom:808.933333pt;}
.y72{bottom:814.053333pt;}
.yb{bottom:825.413333pt;}
.y42{bottom:827.493333pt;}
.y8a{bottom:827.653333pt;}
.y26{bottom:828.773333pt;}
.y59{bottom:840.773333pt;}
.y71{bottom:846.213333pt;}
.yc8{bottom:858.053333pt;}
.y41{bottom:859.653333pt;}
.ya0{bottom:859.813333pt;}
.y25{bottom:861.093333pt;}
.ya{bottom:865.733333pt;}
.y70{bottom:878.373333pt;}
.y89{bottom:878.533333pt;}
.y58{bottom:891.653333pt;}
.y40{bottom:891.973333pt;}
.yc7{bottom:893.093333pt;}
.y24{bottom:893.253333pt;}
.y9{bottom:905.893333pt;}
.y6f{bottom:910.533333pt;}
.y9f{bottom:924.133333pt;}
.y23{bottom:925.413333pt;}
.yc6{bottom:931.333333pt;}
.y6e{bottom:942.853333pt;}
.y3f{bottom:943.013333pt;}
.y8{bottom:946.053333pt;}
.y22{bottom:957.733333pt;}
.y3e{bottom:975.013333pt;}
.y9e{bottom:975.173333pt;}
.y7{bottom:986.213333pt;}
.y21{bottom:1001.573333pt;}
.y3d{bottom:1007.173333pt;}
.y6{bottom:1028.640000pt;}
.y3c{bottom:1039.360000pt;}
.y20{bottom:1042.560000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h8{height:52.503750pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h9{height:62.812500pt;}
.h7{height:73.490625pt;}
.hb{height:74.477812pt;}
.h6{height:75.465000pt;}
.ha{height:76.964840pt;}
.h5{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:14.586667pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.xd{left:109.152000pt;}
.x5{left:128.032000pt;}
.xe{left:133.152000pt;}
.x8{left:219.546667pt;}
.xc{left:274.626667pt;}
.x6{left:289.346667pt;}
.xf{left:367.586667pt;}
.x3{left:390.146667pt;}
.xa{left:447.293333pt;}
.x9{left:472.253333pt;}
.xb{left:492.253333pt;}
.x7{left:514.813333pt;}
}




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