
    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_4a237184351fd18cda8f0dd8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e5fd69d67fecc3bdbbe556ab.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8b5622e9becc52dc62b007e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_00348df27de59dda897369ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_aba5de3c009baa76688c3c4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_bd9dfb914c05a7f4e7c15783.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_37e44f91a79009189989fff7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c079c0e350cae9b9077d3cad.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e67caf1ed11947644542e54b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_27b66744f25f5af5eb196f69.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d78ad6689b65627bd02996a0.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff10{font-family:ff10;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.066000px;}
.ls3{letter-spacing:0.066240px;}
.lsb{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.666720px;}
.ls15{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.ls11{letter-spacing:70.506720px;}
.lsd{letter-spacing:70.650720px;}
.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:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsd{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._6{margin-left:-5.959440px;}
._4{margin-left:-3.943680px;}
._3{margin-left:-2.316000px;}
._0{margin-left:-1.086000px;}
._1{width:1.092000px;}
._5{width:2.748000px;}
._2{width:4.656000px;}
._b{width:5.898720px;}
._c{width:6.921120px;}
._a{width:8.495760px;}
._9{width:9.501840px;}
._8{width:11.039280px;}
._7{width:12.071520px;}
._f{width:13.255680px;}
._12{width:16.287360px;}
._10{width:17.314080px;}
._11{width:18.378960px;}
._d{width:19.661040px;}
._13{width:21.258240px;}
._e{width:29.624640px;}
._16{width:35.367840px;}
._17{width:37.169280px;}
._15{width:50.895840px;}
._14{width:51.931440px;}
._1b{width:55.158480px;}
._1a{width:56.293920px;}
._1c{width:57.962640px;}
._18{width:62.269920px;}
._19{width:63.853920px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y7{bottom:3.780000px;}
.y41{bottom:3.960000px;}
.y1a{bottom:4.860000px;}
.y10{bottom:9.540000px;}
.y40{bottom:10.620000px;}
.y1c{bottom:12.420000px;}
.ye{bottom:13.860000px;}
.y5{bottom:17.460000px;}
.y3{bottom:20.160000px;}
.y3c{bottom:20.520000px;}
.y6{bottom:22.140000px;}
.y3f{bottom:25.200000px;}
.y19{bottom:29.340000px;}
.yd{bottom:30.240000px;}
.y3b{bottom:37.800000px;}
.y2{bottom:41.760000px;}
.y18{bottom:45.945000px;}
.yc{bottom:46.440000px;}
.y3a{bottom:55.080000px;}
.y17{bottom:61.605000px;}
.y16{bottom:72.045000px;}
.y39{bottom:72.180000px;}
.yb{bottom:73.440000px;}
.y53{bottom:84.276000px;}
.y38{bottom:89.460000px;}
.y15{bottom:90.405000px;}
.y93{bottom:91.656000px;}
.y8e{bottom:92.376000px;}
.ya{bottom:93.090000px;}
.y2a{bottom:96.300000px;}
.y52{bottom:101.556000px;}
.y92{bottom:105.696000px;}
.y37{bottom:106.740000px;}
.y14{bottom:109.485000px;}
.y8d{bottom:109.656000px;}
.y9{bottom:111.270000px;}
.y29{bottom:111.600000px;}
.y51{bottom:118.836000px;}
.y36{bottom:124.020000px;}
.y8c{bottom:126.936000px;}
.y28{bottom:129.060000px;}
.y13{bottom:135.225000px;}
.y50{bottom:135.936000px;}
.y35{bottom:141.330000px;}
.y8b{bottom:144.216000px;}
.y27{bottom:146.370000px;}
.y4f{bottom:153.210000px;}
.y34{bottom:158.610000px;}
.y12{bottom:159.525000px;}
.y8a{bottom:161.490000px;}
.y26{bottom:163.650000px;}
.y4e{bottom:170.490000px;}
.y33{bottom:175.710000px;}
.y91{bottom:176.790000px;}
.y89{bottom:178.590000px;}
.y25{bottom:181.470000px;}
.y4d{bottom:187.770000px;}
.y32{bottom:192.990000px;}
.y88{bottom:195.870000px;}
.y24{bottom:198.750000px;}
.y4c{bottom:205.050000px;}
.y31{bottom:210.270000px;}
.y87{bottom:213.150000px;}
.y23{bottom:216.210000px;}
.y4b{bottom:222.150000px;}
.y30{bottom:227.550000px;}
.y86{bottom:230.430000px;}
.y22{bottom:233.670000px;}
.y4a{bottom:239.430000px;}
.y2f{bottom:244.830000px;}
.y85{bottom:247.710000px;}
.y21{bottom:250.950000px;}
.y49{bottom:256.710000px;}
.y2e{bottom:262.110000px;}
.y84{bottom:264.990000px;}
.y20{bottom:271.290000px;}
.y48{bottom:273.990000px;}
.y2d{bottom:279.210000px;}
.y83{bottom:282.090000px;}
.y47{bottom:291.270000px;}
.y2c{bottom:296.490000px;}
.y1f{bottom:298.650000px;}
.y82{bottom:299.370000px;}
.y46{bottom:308.550000px;}
.y2b{bottom:313.770000px;}
.y1e{bottom:316.470000px;}
.y81{bottom:316.650000px;}
.y45{bottom:325.695000px;}
.y80{bottom:333.975000px;}
.y44{bottom:342.975000px;}
.y7f{bottom:351.255000px;}
.y43{bottom:360.255000px;}
.y7e{bottom:368.535000px;}
.y42{bottom:377.535000px;}
.y7d{bottom:385.635000px;}
.y3e{bottom:391.575000px;}
.y7c{bottom:402.915000px;}
.y7b{bottom:420.195000px;}
.y1d{bottom:428.115000px;}
.y7a{bottom:437.475000px;}
.y79{bottom:454.755000px;}
.y78{bottom:471.855000px;}
.y77{bottom:489.135000px;}
.y76{bottom:506.415000px;}
.y75{bottom:523.695000px;}
.y74{bottom:540.975000px;}
.y90{bottom:557.175000px;}
.y73{bottom:558.255000px;}
.y72{bottom:575.385000px;}
.y71{bottom:592.665000px;}
.y70{bottom:609.945000px;}
.y6f{bottom:627.225000px;}
.y6e{bottom:644.505000px;}
.y6d{bottom:661.785000px;}
.y6c{bottom:678.885000px;}
.y6b{bottom:696.165000px;}
.y6a{bottom:713.445000px;}
.y69{bottom:730.725000px;}
.y68{bottom:748.005000px;}
.y1b{bottom:755.925000px;}
.y67{bottom:765.105000px;}
.y66{bottom:782.385000px;}
.y11{bottom:785.445000px;}
.y65{bottom:799.665000px;}
.y64{bottom:816.945000px;}
.y63{bottom:834.270000px;}
.y62{bottom:851.550000px;}
.y61{bottom:868.650000px;}
.y60{bottom:885.930000px;}
.y8f{bottom:887.910000px;}
.y5f{bottom:903.210000px;}
.y5e{bottom:920.490000px;}
.y5d{bottom:937.770000px;}
.y5c{bottom:955.050000px;}
.yf{bottom:960.090000px;}
.y5b{bottom:972.150000px;}
.y8{bottom:985.470000px;}
.y5a{bottom:989.430000px;}
.y59{bottom:1006.710000px;}
.y58{bottom:1023.990000px;}
.y57{bottom:1041.270000px;}
.y56{bottom:1058.550000px;}
.y55{bottom:1075.680000px;}
.y54{bottom:1092.960000px;}
.y1{bottom:1173.600000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:33.156000px;}
.h10{height:35.806641px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h19{height:38.818125px;}
.h1a{height:41.726953px;}
.h1d{height:42.164648px;}
.h4{height:43.453125px;}
.h1e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h18{height:49.255313px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.h1{height:59.439023px;}
.hf{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h7{height:71.613281px;}
.h13{height:73.722656px;}
.h6{height:121.536000px;}
.hc{height:174.630000px;}
.h14{height:327.810000px;}
.h0{height:1188.000000px;}
.w3{width:77.400000px;}
.w4{width:154.830000px;}
.w7{width:220.395000px;}
.w8{width:524.955000px;}
.w5{width:590.505000px;}
.w2{width:696.030000px;}
.w6{width:745.350000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x14{left:12.600000px;}
.xd{left:34.596000px;}
.x17{left:53.999986px;}
.x2{left:72.360000px;}
.x1{left:80.999986px;}
.x15{left:85.499986px;}
.x10{left:88.950000px;}
.x5{left:98.130000px;}
.x11{left:104.070000px;}
.x16{left:108.035986px;}
.x18{left:163.469986px;}
.x12{left:215.175000px;}
.xf{left:220.035000px;}
.x6{left:227.730000px;}
.x9{left:283.575000px;}
.x13{left:293.295000px;}
.xe{left:325.875000px;}
.x7{left:341.535000px;}
.x8{left:362.775000px;}
.xb{left:365.115000px;}
.xc{left:372.675000px;}
.xa{left:450.840000px;}
.x19{left:752.549986px;}
.x4{left:768.390000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.058667pt;}
.ls3{letter-spacing:0.058880pt;}
.lsb{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.592640pt;}
.ls15{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ls11{letter-spacing:62.672640pt;}
.lsd{letter-spacing:62.800640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._6{margin-left:-5.297280pt;}
._4{margin-left:-3.505493pt;}
._3{margin-left:-2.058667pt;}
._0{margin-left:-0.965333pt;}
._1{width:0.970667pt;}
._5{width:2.442667pt;}
._2{width:4.138667pt;}
._b{width:5.243307pt;}
._c{width:6.152107pt;}
._a{width:7.551787pt;}
._9{width:8.446080pt;}
._8{width:9.812693pt;}
._7{width:10.730240pt;}
._f{width:11.782827pt;}
._12{width:14.477653pt;}
._10{width:15.390293pt;}
._11{width:16.336853pt;}
._d{width:17.476480pt;}
._13{width:18.896213pt;}
._e{width:26.333013pt;}
._16{width:31.438080pt;}
._17{width:33.039360pt;}
._15{width:45.240747pt;}
._14{width:46.161280pt;}
._1b{width:49.029760pt;}
._1a{width:50.039040pt;}
._1c{width:51.522347pt;}
._18{width:55.351040pt;}
._19{width:56.759040pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y7{bottom:3.360000pt;}
.y41{bottom:3.520000pt;}
.y1a{bottom:4.320000pt;}
.y10{bottom:8.480000pt;}
.y40{bottom:9.440000pt;}
.y1c{bottom:11.040000pt;}
.ye{bottom:12.320000pt;}
.y5{bottom:15.520000pt;}
.y3{bottom:17.920000pt;}
.y3c{bottom:18.240000pt;}
.y6{bottom:19.680000pt;}
.y3f{bottom:22.400000pt;}
.y19{bottom:26.080000pt;}
.yd{bottom:26.880000pt;}
.y3b{bottom:33.600000pt;}
.y2{bottom:37.120000pt;}
.y18{bottom:40.840000pt;}
.yc{bottom:41.280000pt;}
.y3a{bottom:48.960000pt;}
.y17{bottom:54.760000pt;}
.y16{bottom:64.040000pt;}
.y39{bottom:64.160000pt;}
.yb{bottom:65.280000pt;}
.y53{bottom:74.912000pt;}
.y38{bottom:79.520000pt;}
.y15{bottom:80.360000pt;}
.y93{bottom:81.472000pt;}
.y8e{bottom:82.112000pt;}
.ya{bottom:82.746667pt;}
.y2a{bottom:85.600000pt;}
.y52{bottom:90.272000pt;}
.y92{bottom:93.952000pt;}
.y37{bottom:94.880000pt;}
.y14{bottom:97.320000pt;}
.y8d{bottom:97.472000pt;}
.y9{bottom:98.906667pt;}
.y29{bottom:99.200000pt;}
.y51{bottom:105.632000pt;}
.y36{bottom:110.240000pt;}
.y8c{bottom:112.832000pt;}
.y28{bottom:114.720000pt;}
.y13{bottom:120.200000pt;}
.y50{bottom:120.832000pt;}
.y35{bottom:125.626667pt;}
.y8b{bottom:128.192000pt;}
.y27{bottom:130.106667pt;}
.y4f{bottom:136.186667pt;}
.y34{bottom:140.986667pt;}
.y12{bottom:141.800000pt;}
.y8a{bottom:143.546667pt;}
.y26{bottom:145.466667pt;}
.y4e{bottom:151.546667pt;}
.y33{bottom:156.186667pt;}
.y91{bottom:157.146667pt;}
.y89{bottom:158.746667pt;}
.y25{bottom:161.306667pt;}
.y4d{bottom:166.906667pt;}
.y32{bottom:171.546667pt;}
.y88{bottom:174.106667pt;}
.y24{bottom:176.666667pt;}
.y4c{bottom:182.266667pt;}
.y31{bottom:186.906667pt;}
.y87{bottom:189.466667pt;}
.y23{bottom:192.186667pt;}
.y4b{bottom:197.466667pt;}
.y30{bottom:202.266667pt;}
.y86{bottom:204.826667pt;}
.y22{bottom:207.706667pt;}
.y4a{bottom:212.826667pt;}
.y2f{bottom:217.626667pt;}
.y85{bottom:220.186667pt;}
.y21{bottom:223.066667pt;}
.y49{bottom:228.186667pt;}
.y2e{bottom:232.986667pt;}
.y84{bottom:235.546667pt;}
.y20{bottom:241.146667pt;}
.y48{bottom:243.546667pt;}
.y2d{bottom:248.186667pt;}
.y83{bottom:250.746667pt;}
.y47{bottom:258.906667pt;}
.y2c{bottom:263.546667pt;}
.y1f{bottom:265.466667pt;}
.y82{bottom:266.106667pt;}
.y46{bottom:274.266667pt;}
.y2b{bottom:278.906667pt;}
.y1e{bottom:281.306667pt;}
.y81{bottom:281.466667pt;}
.y45{bottom:289.506667pt;}
.y80{bottom:296.866667pt;}
.y44{bottom:304.866667pt;}
.y7f{bottom:312.226667pt;}
.y43{bottom:320.226667pt;}
.y7e{bottom:327.586667pt;}
.y42{bottom:335.586667pt;}
.y7d{bottom:342.786667pt;}
.y3e{bottom:348.066667pt;}
.y7c{bottom:358.146667pt;}
.y7b{bottom:373.506667pt;}
.y1d{bottom:380.546667pt;}
.y7a{bottom:388.866667pt;}
.y79{bottom:404.226667pt;}
.y78{bottom:419.426667pt;}
.y77{bottom:434.786667pt;}
.y76{bottom:450.146667pt;}
.y75{bottom:465.506667pt;}
.y74{bottom:480.866667pt;}
.y90{bottom:495.266667pt;}
.y73{bottom:496.226667pt;}
.y72{bottom:511.453333pt;}
.y71{bottom:526.813333pt;}
.y70{bottom:542.173333pt;}
.y6f{bottom:557.533333pt;}
.y6e{bottom:572.893333pt;}
.y6d{bottom:588.253333pt;}
.y6c{bottom:603.453333pt;}
.y6b{bottom:618.813333pt;}
.y6a{bottom:634.173333pt;}
.y69{bottom:649.533333pt;}
.y68{bottom:664.893333pt;}
.y1b{bottom:671.933333pt;}
.y67{bottom:680.093333pt;}
.y66{bottom:695.453333pt;}
.y11{bottom:698.173333pt;}
.y65{bottom:710.813333pt;}
.y64{bottom:726.173333pt;}
.y63{bottom:741.573333pt;}
.y62{bottom:756.933333pt;}
.y61{bottom:772.133333pt;}
.y60{bottom:787.493333pt;}
.y8f{bottom:789.253333pt;}
.y5f{bottom:802.853333pt;}
.y5e{bottom:818.213333pt;}
.y5d{bottom:833.573333pt;}
.y5c{bottom:848.933333pt;}
.yf{bottom:853.413333pt;}
.y5b{bottom:864.133333pt;}
.y8{bottom:875.973333pt;}
.y5a{bottom:879.493333pt;}
.y59{bottom:894.853333pt;}
.y58{bottom:910.213333pt;}
.y57{bottom:925.573333pt;}
.y56{bottom:940.933333pt;}
.y55{bottom:956.160000pt;}
.y54{bottom:971.520000pt;}
.y1{bottom:1043.200000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.472000pt;}
.h10{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1a{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h4{height:38.625000pt;}
.h1e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h18{height:43.782500pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.h1{height:52.834688pt;}
.hf{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h7{height:63.656250pt;}
.h13{height:65.531250pt;}
.h6{height:108.032000pt;}
.hc{height:155.226667pt;}
.h14{height:291.386667pt;}
.h0{height:1056.000000pt;}
.w3{width:68.800000pt;}
.w4{width:137.626667pt;}
.w7{width:195.906667pt;}
.w8{width:466.626667pt;}
.w5{width:524.893333pt;}
.w2{width:618.693333pt;}
.w6{width:662.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x14{left:11.200000pt;}
.xd{left:30.752000pt;}
.x17{left:47.999988pt;}
.x2{left:64.320000pt;}
.x1{left:71.999988pt;}
.x15{left:75.999988pt;}
.x10{left:79.066667pt;}
.x5{left:87.226667pt;}
.x11{left:92.506667pt;}
.x16{left:96.031988pt;}
.x18{left:145.306655pt;}
.x12{left:191.266667pt;}
.xf{left:195.586667pt;}
.x6{left:202.426667pt;}
.x9{left:252.066667pt;}
.x13{left:260.706667pt;}
.xe{left:289.666667pt;}
.x7{left:303.586667pt;}
.x8{left:322.466667pt;}
.xb{left:324.546667pt;}
.xc{left:331.266667pt;}
.xa{left:400.746667pt;}
.x19{left:668.933321pt;}
.x4{left:683.013333pt;}
}




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