
    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_78c9eef897d7ee7fe129be0a.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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a92a2591475f63c5e504f77c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7aca984081e356a142e8c487.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0042fcc0e00b88ca2a169acc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b7e132716f0ba05799ee603e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b3db74f87eb82c3d7872dbb6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7b787c3f1097cd5769af8f2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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_323dfc15eb73f69b222f22e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_db160403b7473e28c017882c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_500d60c294999cb502e0fe9f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-69.120000px;}
.v1{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.422000px;}
.lsd{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.630000px;}
.lsb{letter-spacing:-0.486600px;}
.ls7{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.869760px;}
.ls2{letter-spacing:1.080000px;}
.ls11{letter-spacing:7.920000px;}
.ls12{letter-spacing:16.306560px;}
.ls3{letter-spacing:16.560000px;}
.ls10{letter-spacing:46.546560px;}
.lse{letter-spacing:340.692000px;}
.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;}
}
.ws9{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.184000px;}
.wsb{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.ws5{word-spacing:-0.054720px;}
.ws8{word-spacing:0.000000px;}
._1f{margin-left:-6.264000px;}
._e{margin-left:-3.778560px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._8{width:4.459680px;}
._c{width:5.581440px;}
._b{width:6.917760px;}
._f{width:8.841600px;}
._9{width:9.878400px;}
._a{width:11.272320px;}
._6{width:12.703680px;}
._5{width:13.985280px;}
._7{width:15.048000px;}
._d{width:16.845120px;}
._26{width:18.512640px;}
._17{width:19.981440px;}
._1e{width:21.349440px;}
._13{width:22.732800px;}
._14{width:23.739360px;}
._12{width:25.029600px;}
._10{width:26.691840px;}
._11{width:28.240800px;}
._23{width:29.624640px;}
._15{width:31.075200px;}
._1a{width:38.016000px;}
._1d{width:39.432960px;}
._1c{width:41.342400px;}
._25{width:49.657920px;}
._24{width:51.716160px;}
._21{width:66.044160px;}
._22{width:67.782720px;}
._1b{width:72.576000px;}
._16{width:80.256960px;}
._20{width:93.769920px;}
._19{width:115.303680px;}
._18{width:116.847360px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y47{bottom:2.875500px;}
.y93{bottom:3.225000px;}
.y3d{bottom:3.600000px;}
.y97{bottom:3.945000px;}
.y5{bottom:3.960000px;}
.y55{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y46{bottom:10.435500px;}
.y95{bottom:11.865000px;}
.ya5{bottom:12.225000px;}
.ya0{bottom:12.585000px;}
.y9b{bottom:12.630000px;}
.y52{bottom:14.755500px;}
.y3c{bottom:17.280000px;}
.y96{bottom:20.865000px;}
.ya7{bottom:20.880000px;}
.y99{bottom:20.910000px;}
.ya2{bottom:21.225000px;}
.y4{bottom:21.240000px;}
.y9d{bottom:21.270000px;}
.ya4{bottom:29.505000px;}
.y9f{bottom:29.865000px;}
.y9a{bottom:29.910000px;}
.y51{bottom:32.071500px;}
.ya1{bottom:38.505000px;}
.y9c{bottom:38.550000px;}
.y45{bottom:39.994500px;}
.y3{bottom:44.280000px;}
.y44{bottom:51.874500px;}
.y50{bottom:53.314500px;}
.y7{bottom:57.636000px;}
.y43{bottom:65.194500px;}
.y4f{bottom:72.394500px;}
.y42{bottom:78.154500px;}
.y4e{bottom:88.234500px;}
.y53{bottom:91.476000px;}
.y4d{bottom:97.234500px;}
.y41{bottom:99.754500px;}
.y8c{bottom:104.076000px;}
.y3e{bottom:114.880500px;}
.y4c{bottom:116.314500px;}
.yc3{bottom:116.316000px;}
.y8b{bottom:121.356000px;}
.y4b{bottom:131.794500px;}
.yc2{bottom:133.596000px;}
.y8a{bottom:138.636000px;}
.y3b{bottom:140.445000px;}
.y4a{bottom:147.274500px;}
.yc1{bottom:150.555000px;}
.y89{bottom:155.955000px;}
.y3a{bottom:157.725000px;}
.y40{bottom:162.064500px;}
.y49{bottom:163.144500px;}
.yc0{bottom:167.835000px;}
.y3f{bottom:172.864500px;}
.y88{bottom:173.235000px;}
.y39{bottom:175.005000px;}
.y48{bottom:178.264500px;}
.ybf{bottom:184.755000px;}
.y87{bottom:190.515000px;}
.y38{bottom:192.285000px;}
.y86{bottom:207.795000px;}
.y37{bottom:209.565000px;}
.ybe{bottom:211.395000px;}
.y85{bottom:225.075000px;}
.y36{bottom:226.875000px;}
.ybd{bottom:228.675000px;}
.y84{bottom:241.995000px;}
.y35{bottom:244.155000px;}
.ybc{bottom:245.955000px;}
.y34{bottom:261.435000px;}
.ybb{bottom:263.235000px;}
.y83{bottom:268.275000px;}
.y33{bottom:278.355000px;}
.yba{bottom:280.185000px;}
.y82{bottom:285.585000px;}
.y32{bottom:295.635000px;}
.y81{bottom:302.865000px;}
.yb9{bottom:306.825000px;}
.y31{bottom:312.915000px;}
.ye{bottom:317.265000px;}
.y80{bottom:320.145000px;}
.yb8{bottom:324.105000px;}
.y30{bottom:330.195000px;}
.y7f{bottom:337.425000px;}
.yb7{bottom:341.385000px;}
.y1c{bottom:342.435000px;}
.ye6{bottom:346.785000px;}
.y2f{bottom:347.115000px;}
.y7e{bottom:354.705000px;}
.yb6{bottom:358.305000px;}
.ye5{bottom:364.425000px;}
.y1b{bottom:366.585000px;}
.y7d{bottom:371.985000px;}
.y2e{bottom:373.785000px;}
.yb5{bottom:375.585000px;}
.ye4{bottom:381.705000px;}
.y7c{bottom:389.265000px;}
.y2d{bottom:389.625000px;}
.y1a{bottom:390.705000px;}
.yb4{bottom:392.865000px;}
.ye3{bottom:398.985000px;}
.y2c{bottom:405.105000px;}
.y7b{bottom:406.590000px;}
.yb3{bottom:410.190000px;}
.y19{bottom:414.825000px;}
.ye2{bottom:416.310000px;}
.y2b{bottom:420.585000px;}
.y7a{bottom:423.870000px;}
.yb2{bottom:427.470000px;}
.ye1{bottom:433.590000px;}
.y2a{bottom:436.065000px;}
.y18{bottom:438.945000px;}
.y79{bottom:441.150000px;}
.yb1{bottom:444.390000px;}
.ye0{bottom:450.870000px;}
.y29{bottom:451.545000px;}
.y78{bottom:458.430000px;}
.y17{bottom:463.065000px;}
.y28{bottom:467.385000px;}
.ydf{bottom:468.150000px;}
.yb0{bottom:471.030000px;}
.y77{bottom:475.350000px;}
.y27{bottom:482.865000px;}
.yde{bottom:485.430000px;}
.y16{bottom:487.230000px;}
.yaf{bottom:488.310000px;}
.y76{bottom:492.630000px;}
.y26{bottom:498.390000px;}
.ydd{bottom:502.350000px;}
.yae{bottom:505.590000px;}
.y75{bottom:509.550000px;}
.y15{bottom:511.710000px;}
.y25{bottom:513.870000px;}
.ydc{bottom:519.630000px;}
.yad{bottom:522.870000px;}
.y24{bottom:529.350000px;}
.y14{bottom:535.830000px;}
.y74{bottom:536.190000px;}
.ydb{bottom:536.910000px;}
.yac{bottom:540.180000px;}
.y23{bottom:544.830000px;}
.y73{bottom:553.500000px;}
.yda{bottom:554.220000px;}
.yab{bottom:557.460000px;}
.y13{bottom:559.950000px;}
.y22{bottom:560.310000px;}
.y72{bottom:570.780000px;}
.yd9{bottom:571.500000px;}
.yaa{bottom:574.380000px;}
.y21{bottom:575.790000px;}
.y12{bottom:584.070000px;}
.y71{bottom:588.060000px;}
.yd8{bottom:588.780000px;}
.y20{bottom:591.630000px;}
.ya9{bottom:591.660000px;}
.y70{bottom:605.340000px;}
.yd7{bottom:606.060000px;}
.y1f{bottom:607.110000px;}
.y11{bottom:608.190000px;}
.ya8{bottom:608.580000px;}
.y1e{bottom:622.620000px;}
.yd6{bottom:623.340000px;}
.ya6{bottom:631.980000px;}
.y10{bottom:632.340000px;}
.y6f{bottom:639.540000px;}
.yd5{bottom:640.620000px;}
.y1d{bottom:653.220000px;}
.yf{bottom:656.460000px;}
.yd4{bottom:657.900000px;}
.y6e{bottom:666.180000px;}
.yd3{bottom:675.210000px;}
.y6d{bottom:683.130000px;}
.ya3{bottom:684.585000px;}
.yd2{bottom:692.130000px;}
.y6c{bottom:700.410000px;}
.yd1{bottom:709.410000px;}
.y6b{bottom:717.690000px;}
.yd0{bottom:726.690000px;}
.y6a{bottom:734.970000px;}
.y9e{bottom:737.145000px;}
.ycf{bottom:743.970000px;}
.y69{bottom:752.250000px;}
.yce{bottom:761.250000px;}
.y68{bottom:769.530000px;}
.ycd{bottom:778.530000px;}
.y67{bottom:786.810000px;}
.y98{bottom:789.705000px;}
.ycc{bottom:795.810000px;}
.y66{bottom:804.135000px;}
.ycb{bottom:813.135000px;}
.yca{bottom:830.415000px;}
.y65{bottom:838.695000px;}
.y94{bottom:842.310000px;}
.yc9{bottom:847.695000px;}
.y64{bottom:855.975000px;}
.yc8{bottom:864.975000px;}
.y63{bottom:873.255000px;}
.y92{bottom:877.590000px;}
.yc7{bottom:882.255000px;}
.y62{bottom:890.175000px;}
.y91{bottom:898.815000px;}
.yc6{bottom:899.175000px;}
.y61{bottom:907.455000px;}
.yc5{bottom:916.455000px;}
.y60{bottom:924.735000px;}
.y90{bottom:933.405000px;}
.yc4{bottom:933.765000px;}
.y5f{bottom:942.045000px;}
.y8f{bottom:951.045000px;}
.y5e{bottom:958.965000px;}
.y8e{bottom:968.325000px;}
.y5d{bottom:985.605000px;}
.yd{bottom:985.965000px;}
.yc{bottom:991.365000px;}
.y5c{bottom:1002.885000px;}
.yb{bottom:1008.285000px;}
.y5b{bottom:1020.165000px;}
.ya{bottom:1035.645000px;}
.y5a{bottom:1037.445000px;}
.y59{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.y58{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y57{bottom:1088.970000px;}
.y54{bottom:1091.520000px;}
.y56{bottom:1105.890000px;}
.y8d{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.hc{height:4.165313px;}
.h14{height:5.650313px;}
.h19{height:16.905000px;}
.h7{height:24.348516px;}
.h16{height:27.720000px;}
.h12{height:29.678906px;}
.h1a{height:34.185000px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h18{height:42.229688px;}
.h1d{height:42.672656px;}
.h1c{height:51.825000px;}
.h1b{height:51.861000px;}
.h1e{height:51.876000px;}
.h10{height:53.677969px;}
.h13{height:55.147500px;}
.h8{height:58.050000px;}
.h9{height:58.928906px;}
.h15{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.hb{height:60.952500px;}
.h1f{height:62.960625px;}
.h17{height:63.455625px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.ha{height:84.172500px;}
.h4{height:116.640000px;}
.h11{height:201.645000px;}
.hd{height:665.805000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w8{width:244.515000px;}
.w7{width:244.890000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x16{left:8.295000px;}
.x4{left:13.305000px;}
.x14{left:16.546500px;}
.x1a{left:18.346500px;}
.x5{left:19.425000px;}
.x13{left:29.146500px;}
.x6{left:43.575000px;}
.x1b{left:47.542500px;}
.xe{left:50.782500px;}
.xd{left:55.102500px;}
.x1d{left:57.262500px;}
.x1c{left:66.265500px;}
.x11{left:73.105500px;}
.x10{left:76.705500px;}
.x1{left:78.529500px;}
.x12{left:80.305500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x1e{left:102.985500px;}
.x19{left:106.945500px;}
.x23{left:113.436000px;}
.xf{left:124.585500px;}
.x20{left:140.472000px;}
.x3{left:182.250000px;}
.x18{left:186.930000px;}
.x15{left:218.970000px;}
.x21{left:324.510000px;}
.x17{left:449.835000px;}
.xb{left:490.170000px;}
.xa{left:552.090000px;}
.x22{left:569.745000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xc{left:807.090000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.264000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.560000pt;}
.lsb{letter-spacing:-0.432533pt;}
.ls7{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.773120pt;}
.ls2{letter-spacing:0.960000pt;}
.ls11{letter-spacing:7.040000pt;}
.ls12{letter-spacing:14.494720pt;}
.ls3{letter-spacing:14.720000pt;}
.ls10{letter-spacing:41.374720pt;}
.lse{letter-spacing:302.837333pt;}
.ws9{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.440000pt;}
.wsa{word-spacing:-12.608000pt;}
.wsb{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws5{word-spacing:-0.048640pt;}
.ws8{word-spacing:0.000000pt;}
._1f{margin-left:-5.568000pt;}
._e{margin-left:-3.358720pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._8{width:3.964160pt;}
._c{width:4.961280pt;}
._b{width:6.149120pt;}
._f{width:7.859200pt;}
._9{width:8.780800pt;}
._a{width:10.019840pt;}
._6{width:11.292160pt;}
._5{width:12.431360pt;}
._7{width:13.376000pt;}
._d{width:14.973440pt;}
._26{width:16.455680pt;}
._17{width:17.761280pt;}
._1e{width:18.977280pt;}
._13{width:20.206933pt;}
._14{width:21.101653pt;}
._12{width:22.248533pt;}
._10{width:23.726080pt;}
._11{width:25.102933pt;}
._23{width:26.333013pt;}
._15{width:27.622400pt;}
._1a{width:33.792000pt;}
._1d{width:35.051520pt;}
._1c{width:36.748800pt;}
._25{width:44.140373pt;}
._24{width:45.969920pt;}
._21{width:58.705920pt;}
._22{width:60.251307pt;}
._1b{width:64.512000pt;}
._16{width:71.339520pt;}
._20{width:83.351040pt;}
._19{width:102.492160pt;}
._18{width:103.864320pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.556000pt;}
.y93{bottom:2.866667pt;}
.y3d{bottom:3.200000pt;}
.y97{bottom:3.506667pt;}
.y5{bottom:3.520000pt;}
.y55{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y46{bottom:9.276000pt;}
.y95{bottom:10.546667pt;}
.ya5{bottom:10.866667pt;}
.ya0{bottom:11.186667pt;}
.y9b{bottom:11.226667pt;}
.y52{bottom:13.116000pt;}
.y3c{bottom:15.360000pt;}
.y96{bottom:18.546667pt;}
.ya7{bottom:18.560000pt;}
.y99{bottom:18.586667pt;}
.ya2{bottom:18.866667pt;}
.y4{bottom:18.880000pt;}
.y9d{bottom:18.906667pt;}
.ya4{bottom:26.226667pt;}
.y9f{bottom:26.546667pt;}
.y9a{bottom:26.586667pt;}
.y51{bottom:28.508000pt;}
.ya1{bottom:34.226667pt;}
.y9c{bottom:34.266667pt;}
.y45{bottom:35.550667pt;}
.y3{bottom:39.360000pt;}
.y44{bottom:46.110667pt;}
.y50{bottom:47.390667pt;}
.y7{bottom:51.232000pt;}
.y43{bottom:57.950667pt;}
.y4f{bottom:64.350667pt;}
.y42{bottom:69.470667pt;}
.y4e{bottom:78.430667pt;}
.y53{bottom:81.312000pt;}
.y4d{bottom:86.430667pt;}
.y41{bottom:88.670667pt;}
.y8c{bottom:92.512000pt;}
.y3e{bottom:102.116000pt;}
.y4c{bottom:103.390667pt;}
.yc3{bottom:103.392000pt;}
.y8b{bottom:107.872000pt;}
.y4b{bottom:117.150667pt;}
.yc2{bottom:118.752000pt;}
.y8a{bottom:123.232000pt;}
.y3b{bottom:124.840000pt;}
.y4a{bottom:130.910667pt;}
.yc1{bottom:133.826667pt;}
.y89{bottom:138.626667pt;}
.y3a{bottom:140.200000pt;}
.y40{bottom:144.057333pt;}
.y49{bottom:145.017333pt;}
.yc0{bottom:149.186667pt;}
.y3f{bottom:153.657333pt;}
.y88{bottom:153.986667pt;}
.y39{bottom:155.560000pt;}
.y48{bottom:158.457333pt;}
.ybf{bottom:164.226667pt;}
.y87{bottom:169.346667pt;}
.y38{bottom:170.920000pt;}
.y86{bottom:184.706667pt;}
.y37{bottom:186.280000pt;}
.ybe{bottom:187.906667pt;}
.y85{bottom:200.066667pt;}
.y36{bottom:201.666667pt;}
.ybd{bottom:203.266667pt;}
.y84{bottom:215.106667pt;}
.y35{bottom:217.026667pt;}
.ybc{bottom:218.626667pt;}
.y34{bottom:232.386667pt;}
.ybb{bottom:233.986667pt;}
.y83{bottom:238.466667pt;}
.y33{bottom:247.426667pt;}
.yba{bottom:249.053333pt;}
.y82{bottom:253.853333pt;}
.y32{bottom:262.786667pt;}
.y81{bottom:269.213333pt;}
.yb9{bottom:272.733333pt;}
.y31{bottom:278.146667pt;}
.ye{bottom:282.013333pt;}
.y80{bottom:284.573333pt;}
.yb8{bottom:288.093333pt;}
.y30{bottom:293.506667pt;}
.y7f{bottom:299.933333pt;}
.yb7{bottom:303.453333pt;}
.y1c{bottom:304.386667pt;}
.ye6{bottom:308.253333pt;}
.y2f{bottom:308.546667pt;}
.y7e{bottom:315.293333pt;}
.yb6{bottom:318.493333pt;}
.ye5{bottom:323.933333pt;}
.y1b{bottom:325.853333pt;}
.y7d{bottom:330.653333pt;}
.y2e{bottom:332.253333pt;}
.yb5{bottom:333.853333pt;}
.ye4{bottom:339.293333pt;}
.y7c{bottom:346.013333pt;}
.y2d{bottom:346.333333pt;}
.y1a{bottom:347.293333pt;}
.yb4{bottom:349.213333pt;}
.ye3{bottom:354.653333pt;}
.y2c{bottom:360.093333pt;}
.y7b{bottom:361.413333pt;}
.yb3{bottom:364.613333pt;}
.y19{bottom:368.733333pt;}
.ye2{bottom:370.053333pt;}
.y2b{bottom:373.853333pt;}
.y7a{bottom:376.773333pt;}
.yb2{bottom:379.973333pt;}
.ye1{bottom:385.413333pt;}
.y2a{bottom:387.613333pt;}
.y18{bottom:390.173333pt;}
.y79{bottom:392.133333pt;}
.yb1{bottom:395.013333pt;}
.ye0{bottom:400.773333pt;}
.y29{bottom:401.373333pt;}
.y78{bottom:407.493333pt;}
.y17{bottom:411.613333pt;}
.y28{bottom:415.453333pt;}
.ydf{bottom:416.133333pt;}
.yb0{bottom:418.693333pt;}
.y77{bottom:422.533333pt;}
.y27{bottom:429.213333pt;}
.yde{bottom:431.493333pt;}
.y16{bottom:433.093333pt;}
.yaf{bottom:434.053333pt;}
.y76{bottom:437.893333pt;}
.y26{bottom:443.013333pt;}
.ydd{bottom:446.533333pt;}
.yae{bottom:449.413333pt;}
.y75{bottom:452.933333pt;}
.y15{bottom:454.853333pt;}
.y25{bottom:456.773333pt;}
.ydc{bottom:461.893333pt;}
.yad{bottom:464.773333pt;}
.y24{bottom:470.533333pt;}
.y14{bottom:476.293333pt;}
.y74{bottom:476.613333pt;}
.ydb{bottom:477.253333pt;}
.yac{bottom:480.160000pt;}
.y23{bottom:484.293333pt;}
.y73{bottom:492.000000pt;}
.yda{bottom:492.640000pt;}
.yab{bottom:495.520000pt;}
.y13{bottom:497.733333pt;}
.y22{bottom:498.053333pt;}
.y72{bottom:507.360000pt;}
.yd9{bottom:508.000000pt;}
.yaa{bottom:510.560000pt;}
.y21{bottom:511.813333pt;}
.y12{bottom:519.173333pt;}
.y71{bottom:522.720000pt;}
.yd8{bottom:523.360000pt;}
.y20{bottom:525.893333pt;}
.ya9{bottom:525.920000pt;}
.y70{bottom:538.080000pt;}
.yd7{bottom:538.720000pt;}
.y1f{bottom:539.653333pt;}
.y11{bottom:540.613333pt;}
.ya8{bottom:540.960000pt;}
.y1e{bottom:553.440000pt;}
.yd6{bottom:554.080000pt;}
.ya6{bottom:561.760000pt;}
.y10{bottom:562.080000pt;}
.y6f{bottom:568.480000pt;}
.yd5{bottom:569.440000pt;}
.y1d{bottom:580.640000pt;}
.yf{bottom:583.520000pt;}
.yd4{bottom:584.800000pt;}
.y6e{bottom:592.160000pt;}
.yd3{bottom:600.186667pt;}
.y6d{bottom:607.226667pt;}
.ya3{bottom:608.520000pt;}
.yd2{bottom:615.226667pt;}
.y6c{bottom:622.586667pt;}
.yd1{bottom:630.586667pt;}
.y6b{bottom:637.946667pt;}
.yd0{bottom:645.946667pt;}
.y6a{bottom:653.306667pt;}
.y9e{bottom:655.240000pt;}
.ycf{bottom:661.306667pt;}
.y69{bottom:668.666667pt;}
.yce{bottom:676.666667pt;}
.y68{bottom:684.026667pt;}
.ycd{bottom:692.026667pt;}
.y67{bottom:699.386667pt;}
.y98{bottom:701.960000pt;}
.ycc{bottom:707.386667pt;}
.y66{bottom:714.786667pt;}
.ycb{bottom:722.786667pt;}
.yca{bottom:738.146667pt;}
.y65{bottom:745.506667pt;}
.y94{bottom:748.720000pt;}
.yc9{bottom:753.506667pt;}
.y64{bottom:760.866667pt;}
.yc8{bottom:768.866667pt;}
.y63{bottom:776.226667pt;}
.y92{bottom:780.080000pt;}
.yc7{bottom:784.226667pt;}
.y62{bottom:791.266667pt;}
.y91{bottom:798.946667pt;}
.yc6{bottom:799.266667pt;}
.y61{bottom:806.626667pt;}
.yc5{bottom:814.626667pt;}
.y60{bottom:821.986667pt;}
.y90{bottom:829.693333pt;}
.yc4{bottom:830.013333pt;}
.y5f{bottom:837.373333pt;}
.y8f{bottom:845.373333pt;}
.y5e{bottom:852.413333pt;}
.y8e{bottom:860.733333pt;}
.y5d{bottom:876.093333pt;}
.yd{bottom:876.413333pt;}
.yc{bottom:881.213333pt;}
.y5c{bottom:891.453333pt;}
.yb{bottom:896.253333pt;}
.y5b{bottom:906.813333pt;}
.ya{bottom:920.573333pt;}
.y5a{bottom:922.173333pt;}
.y59{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.y58{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y57{bottom:967.973333pt;}
.y54{bottom:970.240000pt;}
.y56{bottom:983.013333pt;}
.y8d{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.hc{height:3.702500pt;}
.h14{height:5.022500pt;}
.h19{height:15.026667pt;}
.h7{height:21.643125pt;}
.h16{height:24.640000pt;}
.h12{height:26.381250pt;}
.h1a{height:30.386667pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h18{height:37.537500pt;}
.h1d{height:37.931250pt;}
.h1c{height:46.066667pt;}
.h1b{height:46.098667pt;}
.h1e{height:46.112000pt;}
.h10{height:47.713750pt;}
.h13{height:49.020000pt;}
.h8{height:51.600000pt;}
.h9{height:52.381250pt;}
.h15{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.hb{height:54.180000pt;}
.h1f{height:55.965000pt;}
.h17{height:56.405000pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.ha{height:74.820000pt;}
.h4{height:103.680000pt;}
.h11{height:179.240000pt;}
.hd{height:591.826667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w8{width:217.346667pt;}
.w7{width:217.680000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x16{left:7.373333pt;}
.x4{left:11.826667pt;}
.x14{left:14.708000pt;}
.x1a{left:16.308000pt;}
.x5{left:17.266667pt;}
.x13{left:25.908000pt;}
.x6{left:38.733333pt;}
.x1b{left:42.260000pt;}
.xe{left:45.140000pt;}
.xd{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x1c{left:58.902667pt;}
.x11{left:64.982667pt;}
.x10{left:68.182667pt;}
.x1{left:69.804000pt;}
.x12{left:71.382667pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x1e{left:91.542667pt;}
.x19{left:95.062667pt;}
.x23{left:100.832000pt;}
.xf{left:110.742667pt;}
.x20{left:124.864000pt;}
.x3{left:162.000000pt;}
.x18{left:166.160000pt;}
.x15{left:194.640000pt;}
.x21{left:288.453333pt;}
.x17{left:399.853333pt;}
.xb{left:435.706667pt;}
.xa{left:490.746667pt;}
.x22{left:506.440000pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xc{left:717.413333pt;}
}




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