
    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_d6ce1931a27985beef0803c6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_38186a1ba7e0574a0d703539.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a33cfbfb1ca7d937ea678490.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c2f1c92dfd2406c223bcc683.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f95bd358d3c8c0cc93d8a7ee.woff')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_5d04e5aa236e3498c293fd2a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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);}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.860000px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:39.480000px;}
.ls2{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:16.560000px;}
.ls1{letter-spacing:30.240000px;}
.ls4{letter-spacing:33.984000px;}
.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;}
}
.wsb{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.504000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.319360px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.934784px;}
.ws4{word-spacing:-10.902240px;}
.ws6{word-spacing:-9.437760px;}
.ws9{word-spacing:-8.136000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:1.746000px;}
._b{margin-left:-4.608000px;}
._c{margin-left:-3.540000px;}
._d{margin-left:-2.508000px;}
._0{margin-left:-1.224000px;}
._1{width:1.968000px;}
._2{width:3.000000px;}
._5{width:4.896000px;}
._6{width:5.904000px;}
._8{width:6.984000px;}
._7{width:8.064000px;}
._f{width:9.648000px;}
._10{width:10.728000px;}
._3{width:12.240000px;}
._4{width:13.536000px;}
._13{width:15.408000px;}
._e{width:16.416000px;}
._11{width:19.728000px;}
._17{width:21.684000px;}
._12{width:23.040000px;}
._16{width:24.120000px;}
._24{width:25.200000px;}
._26{width:26.496000px;}
._18{width:27.864000px;}
._1f{width:28.872000px;}
._9{width:30.312000px;}
._a{width:31.320000px;}
._27{width:32.592000px;}
._19{width:33.816000px;}
._1a{width:34.992000px;}
._1e{width:36.000000px;}
._20{width:37.080000px;}
._21{width:38.136000px;}
._1d{width:41.400000px;}
._1b{width:42.408000px;}
._1c{width:43.920000px;}
._25{width:44.928000px;}
._23{width:46.008000px;}
._22{width:47.016000px;}
._28{width:60.876000px;}
._15{width:144.744000px;}
._14{width:208.764000px;}
._29{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fsa{font-size:41.904000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:48.384000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yce{bottom:3.240000px;}
.y65{bottom:5.580000px;}
.y61{bottom:13.575000px;}
.y5d{bottom:18.510000px;}
.y62{bottom:23.295000px;}
.y60{bottom:23.475000px;}
.ycd{bottom:27.000000px;}
.y5c{bottom:28.230000px;}
.y64{bottom:29.520000px;}
.y4f{bottom:33.090000px;}
.y5f{bottom:33.195000px;}
.y5b{bottom:38.130000px;}
.y51{bottom:42.090000px;}
.y5e{bottom:43.095000px;}
.yca{bottom:47.850000px;}
.y4e{bottom:51.270000px;}
.yc6{bottom:53.610000px;}
.y50{bottom:55.410000px;}
.y2{bottom:58.320000px;}
.yc9{bottom:59.370000px;}
.y4d{bottom:64.590000px;}
.yc5{bottom:65.130000px;}
.yc8{bottom:70.890000px;}
.yc4{bottom:76.650000px;}
.ycb{bottom:76.830000px;}
.y1{bottom:78.516000px;}
.yc7{bottom:82.590000px;}
.y5a{bottom:84.495000px;}
.yc3{bottom:88.350000px;}
.y59{bottom:100.875000px;}
.y92{bottom:101.196000px;}
.y2f{bottom:101.736000px;}
.y44{bottom:104.616000px;}
.y63{bottom:107.676000px;}
.ye4{bottom:111.636000px;}
.y4c{bottom:115.950000px;}
.y58{bottom:117.435000px;}
.yc0{bottom:118.296000px;}
.y91{bottom:121.896000px;}
.y2e{bottom:122.436000px;}
.y48{bottom:125.175000px;}
.y43{bottom:125.316000px;}
.yc2{bottom:127.440000px;}
.y4b{bottom:129.270000px;}
.ye3{bottom:132.156000px;}
.y57{bottom:133.815000px;}
.ybf{bottom:138.996000px;}
.y90{bottom:142.596000px;}
.y2d{bottom:143.136000px;}
.y42{bottom:146.016000px;}
.y47{bottom:149.115000px;}
.y56{bottom:150.375000px;}
.ye2{bottom:152.850000px;}
.ybe{bottom:159.690000px;}
.y55{bottom:162.900000px;}
.y41{bottom:162.930000px;}
.y8f{bottom:163.290000px;}
.y2c{bottom:163.830000px;}
.y46{bottom:166.395000px;}
.ye1{bottom:173.550000px;}
.ybd{bottom:180.390000px;}
.y8e{bottom:183.990000px;}
.y2b{bottom:184.530000px;}
.ye0{bottom:194.250000px;}
.ybc{bottom:201.090000px;}
.y54{bottom:201.240000px;}
.y8d{bottom:204.690000px;}
.y2a{bottom:205.230000px;}
.ydf{bottom:213.150000px;}
.y4a{bottom:214.740000px;}
.y53{bottom:217.260000px;}
.ybb{bottom:221.790000px;}
.y8c{bottom:225.390000px;}
.y29{bottom:225.930000px;}
.y52{bottom:228.960000px;}
.yba{bottom:240.510000px;}
.y8b{bottom:246.090000px;}
.y28{bottom:246.630000px;}
.yb9{bottom:252.750000px;}
.y49{bottom:262.335000px;}
.y8a{bottom:266.790000px;}
.y27{bottom:267.330000px;}
.yb8{bottom:273.450000px;}
.y26{bottom:286.230000px;}
.y89{bottom:287.490000px;}
.yb7{bottom:294.195000px;}
.y25{bottom:298.515000px;}
.y88{bottom:306.255000px;}
.y9d{bottom:308.235000px;}
.yb6{bottom:314.895000px;}
.y87{bottom:318.495000px;}
.y24{bottom:319.215000px;}
.yd5{bottom:326.955000px;}
.y9c{bottom:328.935000px;}
.yb5{bottom:335.595000px;}
.y86{bottom:339.195000px;}
.y23{bottom:339.915000px;}
.y40{bottom:345.135000px;}
.y9b{bottom:349.635000px;}
.yb4{bottom:356.295000px;}
.y22{bottom:358.635000px;}
.y85{bottom:359.895000px;}
.y3f{bottom:363.855000px;}
.y9a{bottom:370.335000px;}
.y21{bottom:370.875000px;}
.y3e{bottom:376.095000px;}
.yb3{bottom:376.995000px;}
.y84{bottom:380.595000px;}
.y99{bottom:391.035000px;}
.y20{bottom:391.575000px;}
.y3d{bottom:396.795000px;}
.yb2{bottom:397.695000px;}
.y83{bottom:401.295000px;}
.y98{bottom:411.735000px;}
.y1f{bottom:412.275000px;}
.y3c{bottom:417.495000px;}
.yb1{bottom:418.395000px;}
.y82{bottom:421.995000px;}
.y97{bottom:430.455000px;}
.yde{bottom:432.435000px;}
.y1e{bottom:432.975000px;}
.y3b{bottom:438.195000px;}
.yb0{bottom:439.095000px;}
.y81{bottom:442.695000px;}
.ydd{bottom:453.135000px;}
.y1d{bottom:453.675000px;}
.y3a{bottom:458.895000px;}
.yaf{bottom:459.795000px;}
.y80{bottom:463.395000px;}
.ydc{bottom:473.835000px;}
.y1c{bottom:474.375000px;}
.y39{bottom:479.595000px;}
.yae{bottom:480.495000px;}
.yd4{bottom:482.295000px;}
.y7f{bottom:484.095000px;}
.yd3{bottom:494.535000px;}
.y1b{bottom:495.075000px;}
.y38{bottom:500.295000px;}
.yad{bottom:501.195000px;}
.y7e{bottom:504.795000px;}
.yd2{bottom:515.235000px;}
.y1a{bottom:515.775000px;}
.yac{bottom:520.095000px;}
.y37{bottom:520.995000px;}
.y7d{bottom:525.525000px;}
.ycc{bottom:530.025000px;}
.yab{bottom:532.365000px;}
.ydb{bottom:533.985000px;}
.yd1{bottom:535.965000px;}
.y19{bottom:536.505000px;}
.y36{bottom:541.725000px;}
.y7c{bottom:546.225000px;}
.yaa{bottom:553.065000px;}
.yd0{bottom:556.665000px;}
.y18{bottom:557.205000px;}
.y35{bottom:560.625000px;}
.y7b{bottom:566.925000px;}
.ya9{bottom:569.805000px;}
.yc1{bottom:569.880000px;}
.y34{bottom:575.025000px;}
.ycf{bottom:577.365000px;}
.y17{bottom:577.905000px;}
.y7a{bottom:585.825000px;}
.y96{bottom:587.625000px;}
.y33{bottom:595.725000px;}
.y79{bottom:598.065000px;}
.y16{bottom:598.605000px;}
.y95{bottom:608.325000px;}
.y32{bottom:616.605000px;}
.y78{bottom:618.765000px;}
.y15{bottom:619.305000px;}
.y94{bottom:629.025000px;}
.y31{bottom:637.485000px;}
.y77{bottom:639.465000px;}
.y14{bottom:640.005000px;}
.y30{bottom:645.765000px;}
.y45{bottom:645.840000px;}
.y93{bottom:647.925000px;}
.yda{bottom:649.725000px;}
.y76{bottom:660.165000px;}
.y13{bottom:660.705000px;}
.yd9{bottom:670.425000px;}
.y75{bottom:680.865000px;}
.y12{bottom:681.405000px;}
.yd8{bottom:691.125000px;}
.y74{bottom:701.565000px;}
.y11{bottom:702.105000px;}
.yd7{bottom:710.025000px;}
.ye6{bottom:711.825000px;}
.y73{bottom:722.265000px;}
.y10{bottom:722.805000px;}
.ye5{bottom:732.525000px;}
.ya8{bottom:740.985000px;}
.y72{bottom:742.965000px;}
.yf{bottom:743.505000px;}
.ya7{bottom:753.225000px;}
.y71{bottom:763.710000px;}
.ye{bottom:764.250000px;}
.ya6{bottom:773.970000px;}
.y70{bottom:784.410000px;}
.yd{bottom:784.950000px;}
.ya5{bottom:794.670000px;}
.y6f{bottom:805.110000px;}
.yc{bottom:805.650000px;}
.ya4{bottom:815.370000px;}
.y6e{bottom:825.810000px;}
.yb{bottom:826.350000px;}
.ya3{bottom:836.070000px;}
.y6d{bottom:846.510000px;}
.ya{bottom:847.050000px;}
.ya2{bottom:856.770000px;}
.y9{bottom:865.770000px;}
.y6c{bottom:867.210000px;}
.ya1{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.y6b{bottom:887.910000px;}
.ya0{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.y6a{bottom:908.610000px;}
.y9f{bottom:918.870000px;}
.y6{bottom:924.450000px;}
.y69{bottom:929.310000px;}
.y9e{bottom:939.570000px;}
.y5{bottom:943.170000px;}
.yd6{bottom:948.030000px;}
.y68{bottom:950.010000px;}
.y4{bottom:960.270000px;}
.y67{bottom:970.710000px;}
.y3{bottom:980.970000px;}
.y66{bottom:989.460000px;}
.h4{height:25.400391px;}
.h7{height:32.273438px;}
.hf{height:36.861328px;}
.hc{height:41.535703px;}
.h16{height:42.759141px;}
.h17{height:42.906586px;}
.h18{height:43.740000px;}
.h11{height:46.260000px;}
.ha{height:47.980898px;}
.hb{height:48.124125px;}
.h3{height:50.800781px;}
.h13{height:52.417969px;}
.he{height:61.189805px;}
.h9{height:63.019687px;}
.h5{height:64.546875px;}
.h12{height:65.884219px;}
.h2{height:67.824844px;}
.h6{height:70.606406px;}
.h15{height:86.255508px;}
.h10{height:96.201328px;}
.h14{height:148.500000px;}
.hd{height:178.380000px;}
.h8{height:310.500000px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w4{width:565.125000px;}
.w3{width:580.605000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.x2d{left:40.320000px;}
.x49{left:42.300000px;}
.x8{left:95.075988px;}
.x2c{left:96.696000px;}
.x2e{left:102.954000px;}
.x48{left:106.236000px;}
.x23{left:109.439988px;}
.xa{left:112.535988px;}
.x4{left:116.315988px;}
.x22{left:120.599988px;}
.x30{left:122.075988px;}
.x32{left:129.779988px;}
.xb{left:131.795988px;}
.xc{left:154.469988px;}
.x31{left:171.284988px;}
.x34{left:179.999988px;}
.x36{left:182.879988px;}
.x33{left:185.399988px;}
.x35{left:190.799988px;}
.x4a{left:211.179000px;}
.x26{left:219.779988px;}
.x24{left:221.579988px;}
.x25{left:229.499988px;}
.x7{left:252.974988px;}
.x19{left:254.774988px;}
.x1a{left:259.994988px;}
.x37{left:262.079988px;}
.x38{left:264.419988px;}
.x1d{left:270.974988px;}
.x1c{left:282.854988px;}
.x1b{left:284.834988px;}
.x6{left:301.934988px;}
.x27{left:311.729988px;}
.x18{left:313.199988px;}
.x3a{left:322.379988px;}
.x17{left:323.999988px;}
.x39{left:326.519988px;}
.x3{left:330.914988px;}
.x5{left:341.174988px;}
.x3b{left:343.439988px;}
.xf{left:347.144988px;}
.x11{left:357.629988px;}
.xe{left:359.384988px;}
.x1f{left:369.824988px;}
.x10{left:372.884988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
.x3d{left:394.019988px;}
.x20{left:397.769988px;}
.x21{left:401.369988px;}
.x3c{left:403.379988px;}
.x1e{left:405.329988px;}
.x3e{left:408.419988px;}
.x16{left:409.574988px;}
.x15{left:416.954988px;}
.x12{left:449.849988px;}
.x14{left:464.939988px;}
.x40{left:467.459988px;}
.x3f{left:473.039988px;}
.x13{left:474.119988px;}
.x28{left:519.734988px;}
.x29{left:537.914988px;}
.x42{left:539.819988px;}
.x43{left:546.299988px;}
.x41{left:561.779988px;}
.x9{left:600.989988px;}
.x44{left:615.419988px;}
.x47{left:616.859988px;}
.x2a{left:620.309988px;}
.x46{left:621.539988px;}
.x2b{left:626.609988px;}
.x45{left:627.659988px;}
.x2f{left:684.689988px;}
.xd{left:695.849988px;}
@media print{
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.653333pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:35.093333pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:14.720000pt;}
.ls1{letter-spacing:26.880000pt;}
.ls4{letter-spacing:30.208000pt;}
.wsb{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.728320pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.719808pt;}
.ws4{word-spacing:-9.690880pt;}
.ws6{word-spacing:-8.389120pt;}
.ws9{word-spacing:-7.232000pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:1.552000pt;}
._b{margin-left:-4.096000pt;}
._c{margin-left:-3.146667pt;}
._d{margin-left:-2.229333pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.749333pt;}
._2{width:2.666667pt;}
._5{width:4.352000pt;}
._6{width:5.248000pt;}
._8{width:6.208000pt;}
._7{width:7.168000pt;}
._f{width:8.576000pt;}
._10{width:9.536000pt;}
._3{width:10.880000pt;}
._4{width:12.032000pt;}
._13{width:13.696000pt;}
._e{width:14.592000pt;}
._11{width:17.536000pt;}
._17{width:19.274667pt;}
._12{width:20.480000pt;}
._16{width:21.440000pt;}
._24{width:22.400000pt;}
._26{width:23.552000pt;}
._18{width:24.768000pt;}
._1f{width:25.664000pt;}
._9{width:26.944000pt;}
._a{width:27.840000pt;}
._27{width:28.970667pt;}
._19{width:30.058667pt;}
._1a{width:31.104000pt;}
._1e{width:32.000000pt;}
._20{width:32.960000pt;}
._21{width:33.898667pt;}
._1d{width:36.800000pt;}
._1b{width:37.696000pt;}
._1c{width:39.040000pt;}
._25{width:39.936000pt;}
._23{width:40.896000pt;}
._22{width:41.792000pt;}
._28{width:54.112000pt;}
._15{width:128.661333pt;}
._14{width:185.568000pt;}
._29{width:752.138667pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fsa{font-size:37.248000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:43.008000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:2.880000pt;}
.y65{bottom:4.960000pt;}
.y61{bottom:12.066667pt;}
.y5d{bottom:16.453333pt;}
.y62{bottom:20.706667pt;}
.y60{bottom:20.866667pt;}
.ycd{bottom:24.000000pt;}
.y5c{bottom:25.093333pt;}
.y64{bottom:26.240000pt;}
.y4f{bottom:29.413333pt;}
.y5f{bottom:29.506667pt;}
.y5b{bottom:33.893333pt;}
.y51{bottom:37.413333pt;}
.y5e{bottom:38.306667pt;}
.yca{bottom:42.533333pt;}
.y4e{bottom:45.573333pt;}
.yc6{bottom:47.653333pt;}
.y50{bottom:49.253333pt;}
.y2{bottom:51.840000pt;}
.yc9{bottom:52.773333pt;}
.y4d{bottom:57.413333pt;}
.yc5{bottom:57.893333pt;}
.yc8{bottom:63.013333pt;}
.yc4{bottom:68.133333pt;}
.ycb{bottom:68.293333pt;}
.y1{bottom:69.792000pt;}
.yc7{bottom:73.413333pt;}
.y5a{bottom:75.106667pt;}
.yc3{bottom:78.533333pt;}
.y59{bottom:89.666667pt;}
.y92{bottom:89.952000pt;}
.y2f{bottom:90.432000pt;}
.y44{bottom:92.992000pt;}
.y63{bottom:95.712000pt;}
.ye4{bottom:99.232000pt;}
.y4c{bottom:103.066667pt;}
.y58{bottom:104.386667pt;}
.yc0{bottom:105.152000pt;}
.y91{bottom:108.352000pt;}
.y2e{bottom:108.832000pt;}
.y48{bottom:111.266667pt;}
.y43{bottom:111.392000pt;}
.yc2{bottom:113.280000pt;}
.y4b{bottom:114.906667pt;}
.ye3{bottom:117.472000pt;}
.y57{bottom:118.946667pt;}
.ybf{bottom:123.552000pt;}
.y90{bottom:126.752000pt;}
.y2d{bottom:127.232000pt;}
.y42{bottom:129.792000pt;}
.y47{bottom:132.546667pt;}
.y56{bottom:133.666667pt;}
.ye2{bottom:135.866667pt;}
.ybe{bottom:141.946667pt;}
.y55{bottom:144.800000pt;}
.y41{bottom:144.826667pt;}
.y8f{bottom:145.146667pt;}
.y2c{bottom:145.626667pt;}
.y46{bottom:147.906667pt;}
.ye1{bottom:154.266667pt;}
.ybd{bottom:160.346667pt;}
.y8e{bottom:163.546667pt;}
.y2b{bottom:164.026667pt;}
.ye0{bottom:172.666667pt;}
.ybc{bottom:178.746667pt;}
.y54{bottom:178.880000pt;}
.y8d{bottom:181.946667pt;}
.y2a{bottom:182.426667pt;}
.ydf{bottom:189.466667pt;}
.y4a{bottom:190.880000pt;}
.y53{bottom:193.120000pt;}
.ybb{bottom:197.146667pt;}
.y8c{bottom:200.346667pt;}
.y29{bottom:200.826667pt;}
.y52{bottom:203.520000pt;}
.yba{bottom:213.786667pt;}
.y8b{bottom:218.746667pt;}
.y28{bottom:219.226667pt;}
.yb9{bottom:224.666667pt;}
.y49{bottom:233.186667pt;}
.y8a{bottom:237.146667pt;}
.y27{bottom:237.626667pt;}
.yb8{bottom:243.066667pt;}
.y26{bottom:254.426667pt;}
.y89{bottom:255.546667pt;}
.yb7{bottom:261.506667pt;}
.y25{bottom:265.346667pt;}
.y88{bottom:272.226667pt;}
.y9d{bottom:273.986667pt;}
.yb6{bottom:279.906667pt;}
.y87{bottom:283.106667pt;}
.y24{bottom:283.746667pt;}
.yd5{bottom:290.626667pt;}
.y9c{bottom:292.386667pt;}
.yb5{bottom:298.306667pt;}
.y86{bottom:301.506667pt;}
.y23{bottom:302.146667pt;}
.y40{bottom:306.786667pt;}
.y9b{bottom:310.786667pt;}
.yb4{bottom:316.706667pt;}
.y22{bottom:318.786667pt;}
.y85{bottom:319.906667pt;}
.y3f{bottom:323.426667pt;}
.y9a{bottom:329.186667pt;}
.y21{bottom:329.666667pt;}
.y3e{bottom:334.306667pt;}
.yb3{bottom:335.106667pt;}
.y84{bottom:338.306667pt;}
.y99{bottom:347.586667pt;}
.y20{bottom:348.066667pt;}
.y3d{bottom:352.706667pt;}
.yb2{bottom:353.506667pt;}
.y83{bottom:356.706667pt;}
.y98{bottom:365.986667pt;}
.y1f{bottom:366.466667pt;}
.y3c{bottom:371.106667pt;}
.yb1{bottom:371.906667pt;}
.y82{bottom:375.106667pt;}
.y97{bottom:382.626667pt;}
.yde{bottom:384.386667pt;}
.y1e{bottom:384.866667pt;}
.y3b{bottom:389.506667pt;}
.yb0{bottom:390.306667pt;}
.y81{bottom:393.506667pt;}
.ydd{bottom:402.786667pt;}
.y1d{bottom:403.266667pt;}
.y3a{bottom:407.906667pt;}
.yaf{bottom:408.706667pt;}
.y80{bottom:411.906667pt;}
.ydc{bottom:421.186667pt;}
.y1c{bottom:421.666667pt;}
.y39{bottom:426.306667pt;}
.yae{bottom:427.106667pt;}
.yd4{bottom:428.706667pt;}
.y7f{bottom:430.306667pt;}
.yd3{bottom:439.586667pt;}
.y1b{bottom:440.066667pt;}
.y38{bottom:444.706667pt;}
.yad{bottom:445.506667pt;}
.y7e{bottom:448.706667pt;}
.yd2{bottom:457.986667pt;}
.y1a{bottom:458.466667pt;}
.yac{bottom:462.306667pt;}
.y37{bottom:463.106667pt;}
.y7d{bottom:467.133333pt;}
.ycc{bottom:471.133333pt;}
.yab{bottom:473.213333pt;}
.ydb{bottom:474.653333pt;}
.yd1{bottom:476.413333pt;}
.y19{bottom:476.893333pt;}
.y36{bottom:481.533333pt;}
.y7c{bottom:485.533333pt;}
.yaa{bottom:491.613333pt;}
.yd0{bottom:494.813333pt;}
.y18{bottom:495.293333pt;}
.y35{bottom:498.333333pt;}
.y7b{bottom:503.933333pt;}
.ya9{bottom:506.493333pt;}
.yc1{bottom:506.560000pt;}
.y34{bottom:511.133333pt;}
.ycf{bottom:513.213333pt;}
.y17{bottom:513.693333pt;}
.y7a{bottom:520.733333pt;}
.y96{bottom:522.333333pt;}
.y33{bottom:529.533333pt;}
.y79{bottom:531.613333pt;}
.y16{bottom:532.093333pt;}
.y95{bottom:540.733333pt;}
.y32{bottom:548.093333pt;}
.y78{bottom:550.013333pt;}
.y15{bottom:550.493333pt;}
.y94{bottom:559.133333pt;}
.y31{bottom:566.653333pt;}
.y77{bottom:568.413333pt;}
.y14{bottom:568.893333pt;}
.y30{bottom:574.013333pt;}
.y45{bottom:574.080000pt;}
.y93{bottom:575.933333pt;}
.yda{bottom:577.533333pt;}
.y76{bottom:586.813333pt;}
.y13{bottom:587.293333pt;}
.yd9{bottom:595.933333pt;}
.y75{bottom:605.213333pt;}
.y12{bottom:605.693333pt;}
.yd8{bottom:614.333333pt;}
.y74{bottom:623.613333pt;}
.y11{bottom:624.093333pt;}
.yd7{bottom:631.133333pt;}
.ye6{bottom:632.733333pt;}
.y73{bottom:642.013333pt;}
.y10{bottom:642.493333pt;}
.ye5{bottom:651.133333pt;}
.ya8{bottom:658.653333pt;}
.y72{bottom:660.413333pt;}
.yf{bottom:660.893333pt;}
.ya7{bottom:669.533333pt;}
.y71{bottom:678.853333pt;}
.ye{bottom:679.333333pt;}
.ya6{bottom:687.973333pt;}
.y70{bottom:697.253333pt;}
.yd{bottom:697.733333pt;}
.ya5{bottom:706.373333pt;}
.y6f{bottom:715.653333pt;}
.yc{bottom:716.133333pt;}
.ya4{bottom:724.773333pt;}
.y6e{bottom:734.053333pt;}
.yb{bottom:734.533333pt;}
.ya3{bottom:743.173333pt;}
.y6d{bottom:752.453333pt;}
.ya{bottom:752.933333pt;}
.ya2{bottom:761.573333pt;}
.y9{bottom:769.573333pt;}
.y6c{bottom:770.853333pt;}
.ya1{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.y6b{bottom:789.253333pt;}
.ya0{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.y6a{bottom:807.653333pt;}
.y9f{bottom:816.773333pt;}
.y6{bottom:821.733333pt;}
.y69{bottom:826.053333pt;}
.y9e{bottom:835.173333pt;}
.y5{bottom:838.373333pt;}
.yd6{bottom:842.693333pt;}
.y68{bottom:844.453333pt;}
.y4{bottom:853.573333pt;}
.y67{bottom:862.853333pt;}
.y3{bottom:871.973333pt;}
.y66{bottom:879.520000pt;}
.h4{height:22.578125pt;}
.h7{height:28.687500pt;}
.hf{height:32.765625pt;}
.hc{height:36.920625pt;}
.h16{height:38.008125pt;}
.h17{height:38.139187pt;}
.h18{height:38.880000pt;}
.h11{height:41.120000pt;}
.ha{height:42.649687pt;}
.hb{height:42.777000pt;}
.h3{height:45.156250pt;}
.h13{height:46.593750pt;}
.he{height:54.390938pt;}
.h9{height:56.017500pt;}
.h5{height:57.375000pt;}
.h12{height:58.563750pt;}
.h2{height:60.288750pt;}
.h6{height:62.761250pt;}
.h15{height:76.671562pt;}
.h10{height:85.512292pt;}
.h14{height:132.000000pt;}
.hd{height:158.560000pt;}
.h8{height:276.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w4{width:502.333333pt;}
.w3{width:516.093333pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:35.840000pt;}
.x49{left:37.600000pt;}
.x8{left:84.511990pt;}
.x2c{left:85.952000pt;}
.x2e{left:91.514667pt;}
.x48{left:94.432000pt;}
.x23{left:97.279990pt;}
.xa{left:100.031990pt;}
.x4{left:103.391990pt;}
.x22{left:107.199990pt;}
.x30{left:108.511990pt;}
.x32{left:115.359990pt;}
.xb{left:117.151990pt;}
.xc{left:137.306656pt;}
.x31{left:152.253323pt;}
.x34{left:159.999990pt;}
.x36{left:162.559990pt;}
.x33{left:164.799990pt;}
.x35{left:169.599990pt;}
.x4a{left:187.714667pt;}
.x26{left:195.359990pt;}
.x24{left:196.959990pt;}
.x25{left:203.999990pt;}
.x7{left:224.866656pt;}
.x19{left:226.466656pt;}
.x1a{left:231.106656pt;}
.x37{left:232.959990pt;}
.x38{left:235.039990pt;}
.x1d{left:240.866656pt;}
.x1c{left:251.426656pt;}
.x1b{left:253.186656pt;}
.x6{left:268.386656pt;}
.x27{left:277.093323pt;}
.x18{left:278.399990pt;}
.x3a{left:286.559990pt;}
.x17{left:287.999990pt;}
.x39{left:290.239990pt;}
.x3{left:294.146656pt;}
.x5{left:303.266656pt;}
.x3b{left:305.279990pt;}
.xf{left:308.573323pt;}
.x11{left:317.893323pt;}
.xe{left:319.453323pt;}
.x1f{left:328.733323pt;}
.x10{left:331.453323pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
.x3d{left:350.239990pt;}
.x20{left:353.573323pt;}
.x21{left:356.773323pt;}
.x3c{left:358.559990pt;}
.x1e{left:360.293323pt;}
.x3e{left:363.039990pt;}
.x16{left:364.066656pt;}
.x15{left:370.626656pt;}
.x12{left:399.866656pt;}
.x14{left:413.279990pt;}
.x40{left:415.519990pt;}
.x3f{left:420.479990pt;}
.x13{left:421.439990pt;}
.x28{left:461.986656pt;}
.x29{left:478.146656pt;}
.x42{left:479.839990pt;}
.x43{left:485.599990pt;}
.x41{left:499.359990pt;}
.x9{left:534.213323pt;}
.x44{left:547.039990pt;}
.x47{left:548.319990pt;}
.x2a{left:551.386656pt;}
.x46{left:552.479990pt;}
.x2b{left:556.986656pt;}
.x45{left:557.919990pt;}
.x2f{left:608.613323pt;}
.xd{left:618.533323pt;}
}




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