
    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_cb831bfc45030f6d94299355.woff')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_d9a235825d1a07d3021ee8e2.woff')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_4ea6d6ac6ea89ce8e6953d98.woff')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_31e75d050d51c8b368cb2c2e.woff')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_7c343b16cd073dd7b028d3dd.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9f5252665adedf275b1bcbdb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.747070;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7587e6f189f87ff76d2bae8f.woff')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_907ad1a95079652e13e65ec4.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9bf955d80c60ebed66f9216d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_3d3711a090acb1de24bedaaa.woff')format("woff");}.ffb{font-family:ffb;line-height:1.057129;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_55ea74f437f3f5e0d0fa7769.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_009dd615173c418defa9ccbe.woff')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v2{vertical-align:-69.120000px;}
.v1{vertical-align:-66.240000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.728000px;}
.ls10{letter-spacing:-1.458000px;}
.ls7{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.630000px;}
.ls11{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.313920px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.350000px;}
.lsf{letter-spacing:16.306560px;}
.ls2{letter-spacing:16.560000px;}
.lse{letter-spacing:46.546560px;}
.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;}
}
.ws7{word-spacing:-54.720000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.653200px;}
.ws6{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.662000px;}
.ws9{word-spacing:-13.050000px;}
.ws5{word-spacing:-11.790000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._a{margin-left:-3.202080px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._9{width:4.473120px;}
._5{width:5.517600px;}
._6{width:7.208640px;}
._8{width:8.225280px;}
._7{width:9.419040px;}
._11{width:10.831680px;}
._10{width:12.160800px;}
._14{width:13.966080px;}
._12{width:15.963840px;}
._e{width:17.164320px;}
._f{width:18.355200px;}
._c{width:20.200320px;}
._b{width:21.473280px;}
._d{width:22.671840px;}
._13{width:24.423840px;}
._16{width:34.216800px;}
._15{width:35.262720px;}
._26{width:42.880320px;}
._25{width:43.917120px;}
._1f{width:46.267200px;}
._20{width:47.479680px;}
._17{width:48.723840px;}
._18{width:50.322240px;}
._1b{width:52.332960px;}
._19{width:53.956800px;}
._1a{width:55.597920px;}
._21{width:75.381120px;}
._22{width:77.634720px;}
._1e{width:79.269120px;}
._1c{width:81.192960px;}
._1d{width:82.894560px;}
._24{width:88.966080px;}
._23{width:90.685920px;}
._27{width:91.877760px;}
._28{width:1194.688320px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsa{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:2.875500px;}
.y40{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y58{bottom:5.370000px;}
.y2{bottom:10.080000px;}
.y49{bottom:10.795500px;}
.y3f{bottom:21.240000px;}
.y55{bottom:22.315500px;}
.y4{bottom:23.400000px;}
.y3e{bottom:38.520000px;}
.y54{bottom:39.634500px;}
.y48{bottom:40.354500px;}
.y3{bottom:47.880000px;}
.y47{bottom:52.234500px;}
.y3d{bottom:55.440000px;}
.y7{bottom:57.636000px;}
.y53{bottom:58.354500px;}
.y46{bottom:65.194500px;}
.y3c{bottom:72.720000px;}
.y52{bottom:74.194500px;}
.y45{bottom:78.514500px;}
.y51{bottom:87.154500px;}
.y3b{bottom:90.045000px;}
.y50{bottom:93.274500px;}
.yb6{bottom:95.436000px;}
.y44{bottom:100.114500px;}
.y56{bottom:103.356000px;}
.y8c{bottom:104.076000px;}
.y3a{bottom:107.325000px;}
.y4f{bottom:109.114500px;}
.yb5{bottom:114.156000px;}
.y41{bottom:117.400500px;}
.yea{bottom:122.436000px;}
.y4e{bottom:124.594500px;}
.y39{bottom:125.685000px;}
.y8b{bottom:131.796000px;}
.yb4{bottom:132.876000px;}
.ye9{bottom:139.716000px;}
.y4d{bottom:140.074500px;}
.yb3{bottom:151.275000px;}
.y38{bottom:153.765000px;}
.y4c{bottom:155.554500px;}
.ye8{bottom:157.035000px;}
.y8a{bottom:159.915000px;}
.y43{bottom:162.424500px;}
.yb2{bottom:169.995000px;}
.y4b{bottom:171.064500px;}
.y37{bottom:172.125000px;}
.y42{bottom:173.224500px;}
.ye7{bottom:174.315000px;}
.y89{bottom:178.275000px;}
.yb1{bottom:188.715000px;}
.y36{bottom:190.845000px;}
.ye6{bottom:191.595000px;}
.y88{bottom:196.995000px;}
.yb0{bottom:207.075000px;}
.ye5{bottom:208.875000px;}
.y35{bottom:209.565000px;}
.y87{bottom:215.715000px;}
.yaf{bottom:225.795000px;}
.ye4{bottom:226.155000px;}
.y34{bottom:227.955000px;}
.y86{bottom:234.075000px;}
.ye3{bottom:243.435000px;}
.yae{bottom:244.155000px;}
.y33{bottom:246.675000px;}
.y85{bottom:252.795000px;}
.ye2{bottom:260.715000px;}
.y32{bottom:265.395000px;}
.y84{bottom:271.515000px;}
.yad{bottom:272.235000px;}
.ye1{bottom:278.025000px;}
.y31{bottom:284.115000px;}
.y83{bottom:290.265000px;}
.yac{bottom:290.625000px;}
.ye0{bottom:294.945000px;}
.y30{bottom:302.475000px;}
.y82{bottom:308.625000px;}
.y1d{bottom:308.955000px;}
.yab{bottom:309.345000px;}
.ydf{bottom:312.225000px;}
.ye{bottom:320.145000px;}
.y2f{bottom:321.195000px;}
.y81{bottom:327.345000px;}
.yaa{bottom:328.065000px;}
.yde{bottom:329.505000px;}
.y1c{bottom:333.075000px;}
.y2e{bottom:339.915000px;}
.y80{bottom:346.065000px;}
.ya9{bottom:346.425000px;}
.ydd{bottom:346.785000px;}
.y1b{bottom:357.225000px;}
.y2d{bottom:358.305000px;}
.ydc{bottom:364.065000px;}
.y7f{bottom:364.425000px;}
.ya8{bottom:365.145000px;}
.y2c{bottom:377.025000px;}
.y1a{bottom:381.345000px;}
.y7e{bottom:383.145000px;}
.ya7{bottom:383.865000px;}
.y2b{bottom:395.745000px;}
.ydb{bottom:398.625000px;}
.y7d{bottom:401.865000px;}
.ya6{bottom:402.225000px;}
.y19{bottom:405.465000px;}
.y2a{bottom:414.105000px;}
.yda{bottom:415.950000px;}
.y7c{bottom:420.270000px;}
.ya5{bottom:420.630000px;}
.y18{bottom:429.585000px;}
.y29{bottom:432.465000px;}
.yd9{bottom:433.230000px;}
.y7b{bottom:438.990000px;}
.ya4{bottom:448.710000px;}
.yd8{bottom:450.510000px;}
.y17{bottom:453.705000px;}
.y7a{bottom:457.710000px;}
.y28{bottom:459.825000px;}
.ya3{bottom:467.430000px;}
.yd7{bottom:467.790000px;}
.y27{bottom:476.385000px;}
.y79{bottom:476.430000px;}
.y16{bottom:477.825000px;}
.yd6{bottom:484.710000px;}
.ya2{bottom:485.790000px;}
.y26{bottom:493.350000px;}
.y78{bottom:494.790000px;}
.y15{bottom:501.990000px;}
.ya1{bottom:504.510000px;}
.y25{bottom:509.910000px;}
.y77{bottom:513.150000px;}
.yd5{bottom:519.270000px;}
.ya0{bottom:523.230000px;}
.y14{bottom:526.110000px;}
.y24{bottom:526.830000px;}
.yd4{bottom:536.550000px;}
.y76{bottom:541.260000px;}
.y23{bottom:543.390000px;}
.y13{bottom:550.230000px;}
.yd3{bottom:553.860000px;}
.y75{bottom:559.620000px;}
.y22{bottom:560.310000px;}
.y9f{bottom:569.340000px;}
.yd2{bottom:571.140000px;}
.y12{bottom:574.350000px;}
.y21{bottom:576.870000px;}
.y74{bottom:578.340000px;}
.y9e{bottom:588.060000px;}
.yd1{bottom:588.420000px;}
.y20{bottom:593.790000px;}
.y73{bottom:597.060000px;}
.y11{bottom:598.470000px;}
.yd0{bottom:605.700000px;}
.y9d{bottom:606.780000px;}
.y1f{bottom:610.710000px;}
.y72{bottom:615.780000px;}
.y10{bottom:622.980000px;}
.y9c{bottom:625.140000px;}
.y71{bottom:634.140000px;}
.ycf{bottom:640.260000px;}
.y1e{bottom:643.860000px;}
.yf{bottom:647.100000px;}
.y70{bottom:652.860000px;}
.yce{bottom:657.540000px;}
.y9b{bottom:662.580000px;}
.y6f{bottom:671.610000px;}
.ycd{bottom:674.850000px;}
.y9a{bottom:680.970000px;}
.y6e{bottom:689.970000px;}
.ycc{bottom:691.770000px;}
.y99{bottom:699.690000px;}
.y6d{bottom:708.690000px;}
.ycb{bottom:709.050000px;}
.y98{bottom:718.410000px;}
.yca{bottom:726.330000px;}
.y6c{bottom:727.410000px;}
.y97{bottom:736.410000px;}
.yc9{bottom:743.610000px;}
.y6b{bottom:745.770000px;}
.yc8{bottom:760.890000px;}
.yfd{bottom:762.330000px;}
.y6a{bottom:764.130000px;}
.y96{bottom:764.490000px;}
.yc7{bottom:778.170000px;}
.yfc{bottom:779.610000px;}
.y95{bottom:783.210000px;}
.y69{bottom:792.210000px;}
.yc6{bottom:795.450000px;}
.yfb{bottom:796.890000px;}
.y94{bottom:801.975000px;}
.y68{bottom:810.975000px;}
.yc5{bottom:812.775000px;}
.yfa{bottom:814.215000px;}
.y93{bottom:820.335000px;}
.y67{bottom:829.335000px;}
.yc4{bottom:830.055000px;}
.yf9{bottom:831.495000px;}
.y92{bottom:839.055000px;}
.yc3{bottom:847.335000px;}
.y66{bottom:848.055000px;}
.yf8{bottom:848.415000px;}
.y91{bottom:857.775000px;}
.yc2{bottom:864.615000px;}
.yf7{bottom:865.695000px;}
.y65{bottom:866.775000px;}
.y90{bottom:876.135000px;}
.yc1{bottom:881.535000px;}
.yf6{bottom:882.975000px;}
.y64{bottom:885.135000px;}
.y8f{bottom:894.495000px;}
.yc0{bottom:898.815000px;}
.yf5{bottom:900.255000px;}
.y63{bottom:903.855000px;}
.ybf{bottom:916.095000px;}
.yf4{bottom:917.535000px;}
.y62{bottom:922.575000px;}
.ybe{bottom:933.405000px;}
.yf3{bottom:934.845000px;}
.y61{bottom:941.325000px;}
.ybd{bottom:950.685000px;}
.yf2{bottom:952.125000px;}
.y60{bottom:959.685000px;}
.ybc{bottom:967.965000px;}
.yf1{bottom:969.405000px;}
.y5f{bottom:978.405000px;}
.yd{bottom:979.125000px;}
.ybb{bottom:985.245000px;}
.yc{bottom:985.965000px;}
.yf0{bottom:986.685000px;}
.y5e{bottom:997.125000px;}
.yba{bottom:1002.525000px;}
.yef{bottom:1003.965000px;}
.yb{bottom:1004.685000px;}
.y5d{bottom:1015.485000px;}
.yb9{bottom:1019.805000px;}
.yee{bottom:1021.245000px;}
.ya{bottom:1023.045000px;}
.y5c{bottom:1034.205000px;}
.yb8{bottom:1037.085000px;}
.yed{bottom:1038.165000px;}
.y9{bottom:1043.925000px;}
.y5b{bottom:1052.925000px;}
.yb7{bottom:1054.365000px;}
.yec{bottom:1055.445000px;}
.y8e{bottom:1070.970000px;}
.y5a{bottom:1071.330000px;}
.y8{bottom:1072.050000px;}
.yeb{bottom:1072.770000px;}
.y57{bottom:1075.320000px;}
.y8d{bottom:1089.690000px;}
.y59{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h13{height:5.650313px;}
.h15{height:27.720000px;}
.h11{height:29.678906px;}
.h10{height:35.332031px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.h18{height:50.232656px;}
.hd{height:53.677969px;}
.h12{height:55.147500px;}
.h7{height:58.050000px;}
.h14{height:59.328281px;}
.h6{height:59.357813px;}
.he{height:60.155156px;}
.h9{height:60.952500px;}
.h17{height:62.163910px;}
.h16{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.hf{height:202.005000px;}
.ha{height:656.445000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.876000px;}
.x19{left:8.295000px;}
.x4{left:13.305000px;}
.x15{left:16.906500px;}
.x1c{left:18.346500px;}
.x17{left:19.426500px;}
.x16{left:23.746500px;}
.x6{left:28.785000px;}
.xf{left:43.906500px;}
.x1d{left:47.542500px;}
.x10{left:50.782500px;}
.xe{left:55.102500px;}
.x14{left:56.182500px;}
.x1f{left:57.262500px;}
.x1a{left:62.295000px;}
.x1e{left:66.265500px;}
.x1{left:78.529500px;}
.x13{left:83.905500px;}
.x7{left:86.436000px;}
.x12{left:92.905500px;}
.x2{left:95.425500px;}
.x20{left:102.985500px;}
.x1b{left:106.945500px;}
.x22{left:113.436000px;}
.x11{left:124.585500px;}
.x5{left:141.540000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.xb{left:270.105000px;}
.xc{left:620.535000px;}
.xa{left:709.125000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xd{left:807.090000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v1{vertical-align:-58.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.536000pt;}
.ls10{letter-spacing:-1.296000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls11{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.279040pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.200000pt;}
.lsf{letter-spacing:14.494720pt;}
.ls2{letter-spacing:14.720000pt;}
.lse{letter-spacing:41.374720pt;}
.ws7{word-spacing:-48.640000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.025067pt;}
.ws6{word-spacing:-12.160000pt;}
.wsb{word-spacing:-12.144000pt;}
.ws9{word-spacing:-11.600000pt;}
.ws5{word-spacing:-10.480000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._a{margin-left:-2.846293pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._9{width:3.976107pt;}
._5{width:4.904533pt;}
._6{width:6.407680pt;}
._8{width:7.311360pt;}
._7{width:8.372480pt;}
._11{width:9.628160pt;}
._10{width:10.809600pt;}
._14{width:12.414293pt;}
._12{width:14.190080pt;}
._e{width:15.257173pt;}
._f{width:16.315733pt;}
._c{width:17.955840pt;}
._b{width:19.087360pt;}
._d{width:20.152747pt;}
._13{width:21.710080pt;}
._16{width:30.414933pt;}
._15{width:31.344640pt;}
._26{width:38.115840pt;}
._25{width:39.037440pt;}
._1f{width:41.126400pt;}
._20{width:42.204160pt;}
._17{width:43.310080pt;}
._18{width:44.730880pt;}
._1b{width:46.518187pt;}
._19{width:47.961600pt;}
._1a{width:49.420373pt;}
._21{width:67.005440pt;}
._22{width:69.008640pt;}
._1e{width:70.461440pt;}
._1c{width:72.171520pt;}
._1d{width:73.684053pt;}
._24{width:79.080960pt;}
._23{width:80.609707pt;}
._27{width:81.669120pt;}
._28{width:1061.945173pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsa{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.556000pt;}
.y40{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y58{bottom:4.773333pt;}
.y2{bottom:8.960000pt;}
.y49{bottom:9.596000pt;}
.y3f{bottom:18.880000pt;}
.y55{bottom:19.836000pt;}
.y4{bottom:20.800000pt;}
.y3e{bottom:34.240000pt;}
.y54{bottom:35.230667pt;}
.y48{bottom:35.870667pt;}
.y3{bottom:42.560000pt;}
.y47{bottom:46.430667pt;}
.y3d{bottom:49.280000pt;}
.y7{bottom:51.232000pt;}
.y53{bottom:51.870667pt;}
.y46{bottom:57.950667pt;}
.y3c{bottom:64.640000pt;}
.y52{bottom:65.950667pt;}
.y45{bottom:69.790667pt;}
.y51{bottom:77.470667pt;}
.y3b{bottom:80.040000pt;}
.y50{bottom:82.910667pt;}
.yb6{bottom:84.832000pt;}
.y44{bottom:88.990667pt;}
.y56{bottom:91.872000pt;}
.y8c{bottom:92.512000pt;}
.y3a{bottom:95.400000pt;}
.y4f{bottom:96.990667pt;}
.yb5{bottom:101.472000pt;}
.y41{bottom:104.356000pt;}
.yea{bottom:108.832000pt;}
.y4e{bottom:110.750667pt;}
.y39{bottom:111.720000pt;}
.y8b{bottom:117.152000pt;}
.yb4{bottom:118.112000pt;}
.ye9{bottom:124.192000pt;}
.y4d{bottom:124.510667pt;}
.yb3{bottom:134.466667pt;}
.y38{bottom:136.680000pt;}
.y4c{bottom:138.270667pt;}
.ye8{bottom:139.586667pt;}
.y8a{bottom:142.146667pt;}
.y43{bottom:144.377333pt;}
.yb2{bottom:151.106667pt;}
.y4b{bottom:152.057333pt;}
.y37{bottom:153.000000pt;}
.y42{bottom:153.977333pt;}
.ye7{bottom:154.946667pt;}
.y89{bottom:158.466667pt;}
.yb1{bottom:167.746667pt;}
.y36{bottom:169.640000pt;}
.ye6{bottom:170.306667pt;}
.y88{bottom:175.106667pt;}
.yb0{bottom:184.066667pt;}
.ye5{bottom:185.666667pt;}
.y35{bottom:186.280000pt;}
.y87{bottom:191.746667pt;}
.yaf{bottom:200.706667pt;}
.ye4{bottom:201.026667pt;}
.y34{bottom:202.626667pt;}
.y86{bottom:208.066667pt;}
.ye3{bottom:216.386667pt;}
.yae{bottom:217.026667pt;}
.y33{bottom:219.266667pt;}
.y85{bottom:224.706667pt;}
.ye2{bottom:231.746667pt;}
.y32{bottom:235.906667pt;}
.y84{bottom:241.346667pt;}
.yad{bottom:241.986667pt;}
.ye1{bottom:247.133333pt;}
.y31{bottom:252.546667pt;}
.y83{bottom:258.013333pt;}
.yac{bottom:258.333333pt;}
.ye0{bottom:262.173333pt;}
.y30{bottom:268.866667pt;}
.y82{bottom:274.333333pt;}
.y1d{bottom:274.626667pt;}
.yab{bottom:274.973333pt;}
.ydf{bottom:277.533333pt;}
.ye{bottom:284.573333pt;}
.y2f{bottom:285.506667pt;}
.y81{bottom:290.973333pt;}
.yaa{bottom:291.613333pt;}
.yde{bottom:292.893333pt;}
.y1c{bottom:296.066667pt;}
.y2e{bottom:302.146667pt;}
.y80{bottom:307.613333pt;}
.ya9{bottom:307.933333pt;}
.ydd{bottom:308.253333pt;}
.y1b{bottom:317.533333pt;}
.y2d{bottom:318.493333pt;}
.ydc{bottom:323.613333pt;}
.y7f{bottom:323.933333pt;}
.ya8{bottom:324.573333pt;}
.y2c{bottom:335.133333pt;}
.y1a{bottom:338.973333pt;}
.y7e{bottom:340.573333pt;}
.ya7{bottom:341.213333pt;}
.y2b{bottom:351.773333pt;}
.ydb{bottom:354.333333pt;}
.y7d{bottom:357.213333pt;}
.ya6{bottom:357.533333pt;}
.y19{bottom:360.413333pt;}
.y2a{bottom:368.093333pt;}
.yda{bottom:369.733333pt;}
.y7c{bottom:373.573333pt;}
.ya5{bottom:373.893333pt;}
.y18{bottom:381.853333pt;}
.y29{bottom:384.413333pt;}
.yd9{bottom:385.093333pt;}
.y7b{bottom:390.213333pt;}
.ya4{bottom:398.853333pt;}
.yd8{bottom:400.453333pt;}
.y17{bottom:403.293333pt;}
.y7a{bottom:406.853333pt;}
.y28{bottom:408.733333pt;}
.ya3{bottom:415.493333pt;}
.yd7{bottom:415.813333pt;}
.y27{bottom:423.453333pt;}
.y79{bottom:423.493333pt;}
.y16{bottom:424.733333pt;}
.yd6{bottom:430.853333pt;}
.ya2{bottom:431.813333pt;}
.y26{bottom:438.533333pt;}
.y78{bottom:439.813333pt;}
.y15{bottom:446.213333pt;}
.ya1{bottom:448.453333pt;}
.y25{bottom:453.253333pt;}
.y77{bottom:456.133333pt;}
.yd5{bottom:461.573333pt;}
.ya0{bottom:465.093333pt;}
.y14{bottom:467.653333pt;}
.y24{bottom:468.293333pt;}
.yd4{bottom:476.933333pt;}
.y76{bottom:481.120000pt;}
.y23{bottom:483.013333pt;}
.y13{bottom:489.093333pt;}
.yd3{bottom:492.320000pt;}
.y75{bottom:497.440000pt;}
.y22{bottom:498.053333pt;}
.y9f{bottom:506.080000pt;}
.yd2{bottom:507.680000pt;}
.y12{bottom:510.533333pt;}
.y21{bottom:512.773333pt;}
.y74{bottom:514.080000pt;}
.y9e{bottom:522.720000pt;}
.yd1{bottom:523.040000pt;}
.y20{bottom:527.813333pt;}
.y73{bottom:530.720000pt;}
.y11{bottom:531.973333pt;}
.yd0{bottom:538.400000pt;}
.y9d{bottom:539.360000pt;}
.y1f{bottom:542.853333pt;}
.y72{bottom:547.360000pt;}
.y10{bottom:553.760000pt;}
.y9c{bottom:555.680000pt;}
.y71{bottom:563.680000pt;}
.ycf{bottom:569.120000pt;}
.y1e{bottom:572.320000pt;}
.yf{bottom:575.200000pt;}
.y70{bottom:580.320000pt;}
.yce{bottom:584.480000pt;}
.y9b{bottom:588.960000pt;}
.y6f{bottom:596.986667pt;}
.ycd{bottom:599.866667pt;}
.y9a{bottom:605.306667pt;}
.y6e{bottom:613.306667pt;}
.ycc{bottom:614.906667pt;}
.y99{bottom:621.946667pt;}
.y6d{bottom:629.946667pt;}
.ycb{bottom:630.266667pt;}
.y98{bottom:638.586667pt;}
.yca{bottom:645.626667pt;}
.y6c{bottom:646.586667pt;}
.y97{bottom:654.586667pt;}
.yc9{bottom:660.986667pt;}
.y6b{bottom:662.906667pt;}
.yc8{bottom:676.346667pt;}
.yfd{bottom:677.626667pt;}
.y6a{bottom:679.226667pt;}
.y96{bottom:679.546667pt;}
.yc7{bottom:691.706667pt;}
.yfc{bottom:692.986667pt;}
.y95{bottom:696.186667pt;}
.y69{bottom:704.186667pt;}
.yc6{bottom:707.066667pt;}
.yfb{bottom:708.346667pt;}
.y94{bottom:712.866667pt;}
.y68{bottom:720.866667pt;}
.yc5{bottom:722.466667pt;}
.yfa{bottom:723.746667pt;}
.y93{bottom:729.186667pt;}
.y67{bottom:737.186667pt;}
.yc4{bottom:737.826667pt;}
.yf9{bottom:739.106667pt;}
.y92{bottom:745.826667pt;}
.yc3{bottom:753.186667pt;}
.y66{bottom:753.826667pt;}
.yf8{bottom:754.146667pt;}
.y91{bottom:762.466667pt;}
.yc2{bottom:768.546667pt;}
.yf7{bottom:769.506667pt;}
.y65{bottom:770.466667pt;}
.y90{bottom:778.786667pt;}
.yc1{bottom:783.586667pt;}
.yf6{bottom:784.866667pt;}
.y64{bottom:786.786667pt;}
.y8f{bottom:795.106667pt;}
.yc0{bottom:798.946667pt;}
.yf5{bottom:800.226667pt;}
.y63{bottom:803.426667pt;}
.ybf{bottom:814.306667pt;}
.yf4{bottom:815.586667pt;}
.y62{bottom:820.066667pt;}
.ybe{bottom:829.693333pt;}
.yf3{bottom:830.973333pt;}
.y61{bottom:836.733333pt;}
.ybd{bottom:845.053333pt;}
.yf2{bottom:846.333333pt;}
.y60{bottom:853.053333pt;}
.ybc{bottom:860.413333pt;}
.yf1{bottom:861.693333pt;}
.y5f{bottom:869.693333pt;}
.yd{bottom:870.333333pt;}
.ybb{bottom:875.773333pt;}
.yc{bottom:876.413333pt;}
.yf0{bottom:877.053333pt;}
.y5e{bottom:886.333333pt;}
.yba{bottom:891.133333pt;}
.yef{bottom:892.413333pt;}
.yb{bottom:893.053333pt;}
.y5d{bottom:902.653333pt;}
.yb9{bottom:906.493333pt;}
.yee{bottom:907.773333pt;}
.ya{bottom:909.373333pt;}
.y5c{bottom:919.293333pt;}
.yb8{bottom:921.853333pt;}
.yed{bottom:922.813333pt;}
.y9{bottom:927.933333pt;}
.y5b{bottom:935.933333pt;}
.yb7{bottom:937.213333pt;}
.yec{bottom:938.173333pt;}
.y8e{bottom:951.973333pt;}
.y5a{bottom:952.293333pt;}
.y8{bottom:952.933333pt;}
.yeb{bottom:953.573333pt;}
.y57{bottom:955.840000pt;}
.y8d{bottom:968.613333pt;}
.y59{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h13{height:5.022500pt;}
.h15{height:24.640000pt;}
.h11{height:26.381250pt;}
.h10{height:31.406250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.h18{height:44.651250pt;}
.hd{height:47.713750pt;}
.h12{height:49.020000pt;}
.h7{height:51.600000pt;}
.h14{height:52.736250pt;}
.h6{height:52.762500pt;}
.he{height:53.471250pt;}
.h9{height:54.180000pt;}
.h17{height:55.256809pt;}
.h16{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.hf{height:179.560000pt;}
.ha{height:583.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.112000pt;}
.x19{left:7.373333pt;}
.x4{left:11.826667pt;}
.x15{left:15.028000pt;}
.x1c{left:16.308000pt;}
.x17{left:17.268000pt;}
.x16{left:21.108000pt;}
.x6{left:25.586667pt;}
.xf{left:39.028000pt;}
.x1d{left:42.260000pt;}
.x10{left:45.140000pt;}
.xe{left:48.980000pt;}
.x14{left:49.940000pt;}
.x1f{left:50.900000pt;}
.x1a{left:55.373333pt;}
.x1e{left:58.902667pt;}
.x1{left:69.804000pt;}
.x13{left:74.582667pt;}
.x7{left:76.832000pt;}
.x12{left:82.582667pt;}
.x2{left:84.822667pt;}
.x20{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x22{left:100.832000pt;}
.x11{left:110.742667pt;}
.x5{left:125.813333pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.xb{left:240.093333pt;}
.xc{left:551.586667pt;}
.xa{left:630.333333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xd{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; }
  