
    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_2fa0e5b6812656e905eef8e1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_88222d71b842ac4a2c27a69c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_244960999d9165c027ab8c2e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.853027;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_4575844b6990b8085099a1f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7b78f991b67f45f4c995036f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089355;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_f2b9512794cbd6ac1290793b.woff2')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_e5ba87db9236989ae24bce72.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4c731bdc68ca1e8410a6979d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937012;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_0e9f72171c58ce5ae71262c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.201172;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_a0b07cc906028d6c66b8d09a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.201172;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_f1682bdcc243906e4eca55a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9cce98fdeaeb0edc6f9f693e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937012;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_6277fd30ce1177bc060ddbc8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.766602;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);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.852000px;}
.lse{letter-spacing:-0.618000px;}
.ls18{letter-spacing:-0.590400px;}
.ls17{letter-spacing:-0.310800px;}
.ls23{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.164400px;}
.lsf{letter-spacing:-0.132600px;}
.ls29{letter-spacing:-0.115200px;}
.ls14{letter-spacing:-0.017280px;}
.lsd{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.017280px;}
.ls11{letter-spacing:0.020160px;}
.ls22{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.129600px;}
.ls1f{letter-spacing:0.132480px;}
.ls8{letter-spacing:0.149760px;}
.ls15{letter-spacing:0.256200px;}
.ls25{letter-spacing:0.256320px;}
.ls1c{letter-spacing:0.299520px;}
.ls21{letter-spacing:0.313800px;}
.lsb{letter-spacing:0.371520px;}
.ls1{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.869760px;}
.ls6{letter-spacing:2.309760px;}
.ls5{letter-spacing:2.489760px;}
.ls3{letter-spacing:3.029760px;}
.ls28{letter-spacing:3.749760px;}
.ls1e{letter-spacing:7.349760px;}
.ls19{letter-spacing:10.229760px;}
.ls9{letter-spacing:14.549760px;}
.ls4{letter-spacing:17.429760px;}
.ls16{letter-spacing:18.120000px;}
.ls7{letter-spacing:19.589760px;}
.ls10{letter-spacing:20.309760px;}
.ls12{letter-spacing:21.029760px;}
.ls1d{letter-spacing:21.749760px;}
.ls20{letter-spacing:33.960000px;}
.ls1a{letter-spacing:35.429760px;}
.ls13{letter-spacing:36.281280px;}
.lsc{letter-spacing:849.209760px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws3{word-spacing:-19.457280px;}
.ws2{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.284040px;}
.ws6{word-spacing:-15.226440px;}
.ws8{word-spacing:-15.099840px;}
.wsc{word-spacing:-14.978880px;}
.ws4{word-spacing:-14.970240px;}
.wse{word-spacing:-14.855040px;}
.wsd{word-spacing:-14.805840px;}
.wsb{word-spacing:-14.754240px;}
.ws7{word-spacing:-14.659440px;}
.ws5{word-spacing:-14.352240px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-4.714560px;}
._1{margin-left:-3.245760px;}
._11{margin-left:-2.145120px;}
._2{margin-left:-1.126080px;}
._0{width:1.875360px;}
._18{width:2.903520px;}
._6{width:3.908160px;}
._19{width:5.232960px;}
._14{width:6.425280px;}
._e{width:7.683840px;}
._15{width:9.339840px;}
._16{width:10.644000px;}
._5{width:12.029760px;}
._12{width:13.584000px;}
._d{width:16.228800px;}
._c{width:17.553600px;}
._b{width:18.679680px;}
._f{width:19.739520px;}
._17{width:20.803200px;}
._3{width:22.057920px;}
._13{width:23.173920px;}
._4{width:24.345600px;}
._a{width:27.688320px;}
._9{width:28.915200px;}
._8{width:30.384480px;}
._7{width:31.530240px;}
._1c{width:33.050400px;}
._1a{width:34.643520px;}
._1b{width:35.985600px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:61.236000px;}
.y2{bottom:86.076000px;}
.y31{bottom:133.236000px;}
.y8{bottom:135.216000px;}
.ya7{bottom:140.076000px;}
.y42{bottom:142.236000px;}
.y4f{bottom:152.490000px;}
.y6a{bottom:153.030000px;}
.y81{bottom:155.190000px;}
.y30{bottom:156.450000px;}
.yc3{bottom:161.130000px;}
.ya6{bottom:163.290000px;}
.y41{bottom:169.770000px;}
.y69{bottom:176.250000px;}
.y2f{bottom:179.670000px;}
.y4e{bottom:180.210000px;}
.ya5{bottom:186.510000px;}
.yc2{bottom:188.850000px;}
.y80{bottom:191.370000px;}
.yb5{bottom:194.070000px;}
.y68{bottom:199.470000px;}
.y2e{bottom:202.710000px;}
.yb4{bottom:217.290000px;}
.y7f{bottom:219.090000px;}
.ya4{bottom:221.070000px;}
.y67{bottom:222.510000px;}
.y2d{bottom:234.930000px;}
.yb3{bottom:240.510000px;}
.y62{bottom:244.290000px;}
.y66{bottom:245.730000px;}
.ya3{bottom:254.370000px;}
.y2c{bottom:258.150000px;}
.y61{bottom:267.330000px;}
.y65{bottom:268.950000px;}
.yb2{bottom:272.550000px;}
.ya2{bottom:277.410000px;}
.y2b{bottom:281.190000px;}
.y60{bottom:290.595000px;}
.yb1{bottom:300.315000px;}
.ya1{bottom:300.675000px;}
.y64{bottom:301.035000px;}
.y2a{bottom:304.455000px;}
.y5f{bottom:313.815000px;}
.ya0{bottom:323.895000px;}
.y29{bottom:327.675000px;}
.y63{bottom:328.755000px;}
.y5e{bottom:336.855000px;}
.y9f{bottom:347.115000px;}
.y28{bottom:359.715000px;}
.y5d{bottom:360.075000px;}
.y9e{bottom:370.155000px;}
.y27{bottom:382.935000px;}
.y5c{bottom:383.295000px;}
.y9d{bottom:393.375000px;}
.y26{bottom:406.155000px;}
.y5b{bottom:415.335000px;}
.y9c{bottom:416.595000px;}
.y25{bottom:429.375000px;}
.y5a{bottom:438.555000px;}
.y9b{bottom:439.635000px;}
.y24{bottom:452.415000px;}
.y59{bottom:461.775000px;}
.y9a{bottom:462.855000px;}
.y23{bottom:484.635000px;}
.y58{bottom:484.815000px;}
.y99{bottom:486.075000px;}
.y22{bottom:507.855000px;}
.y57{bottom:508.035000px;}
.y98{bottom:520.635000px;}
.y21{bottom:530.895000px;}
.y56{bottom:531.255000px;}
.yd9{bottom:536.835000px;}
.y4d{bottom:550.875000px;}
.y20{bottom:554.115000px;}
.y55{bottom:554.295000px;}
.y97{bottom:554.835000px;}
.yd8{bottom:560.955000px;}
.y4c{bottom:574.125000px;}
.y1f{bottom:577.365000px;}
.y54{bottom:577.545000px;}
.yd7{bottom:585.105000px;}
.y96{bottom:587.985000px;}
.y4b{bottom:597.345000px;}
.y1e{bottom:600.405000px;}
.y53{bottom:600.765000px;}
.yd6{bottom:609.405000px;}
.y95{bottom:612.285000px;}
.y4a{bottom:620.385000px;}
.y1d{bottom:623.625000px;}
.y52{bottom:623.805000px;}
.yc1{bottom:624.885000px;}
.yd5{bottom:633.525000px;}
.y94{bottom:636.405000px;}
.y40{bottom:643.245000px;}
.y1c{bottom:646.845000px;}
.yc0{bottom:648.105000px;}
.y49{bottom:652.605000px;}
.y51{bottom:656.025000px;}
.y7e{bottom:657.105000px;}
.yd4{bottom:657.645000px;}
.y93{bottom:660.525000px;}
.y3f{bottom:666.465000px;}
.ybf{bottom:671.145000px;}
.y48{bottom:675.825000px;}
.y1b{bottom:678.885000px;}
.y7d{bottom:680.145000px;}
.yd3{bottom:681.765000px;}
.y50{bottom:683.745000px;}
.y92{bottom:684.825000px;}
.y3e{bottom:689.505000px;}
.ybe{bottom:694.365000px;}
.y47{bottom:698.865000px;}
.y1a{bottom:702.105000px;}
.y7c{bottom:703.365000px;}
.yd2{bottom:706.065000px;}
.y3d{bottom:712.725000px;}
.ybd{bottom:717.585000px;}
.y91{bottom:717.945000px;}
.y46{bottom:722.085000px;}
.y19{bottom:725.325000px;}
.y7b{bottom:726.585000px;}
.yd1{bottom:730.185000px;}
.y3c{bottom:735.945000px;}
.ybc{bottom:740.625000px;}
.y90{bottom:742.065000px;}
.y45{bottom:745.305000px;}
.y18{bottom:748.365000px;}
.y7a{bottom:749.625000px;}
.yd0{bottom:754.305000px;}
.y3b{bottom:758.985000px;}
.ybb{bottom:763.845000px;}
.y8f{bottom:766.185000px;}
.y17{bottom:771.585000px;}
.y79{bottom:772.845000px;}
.ycf{bottom:778.605000px;}
.y44{bottom:780.405000px;}
.y3a{bottom:782.205000px;}
.yba{bottom:787.065000px;}
.y8e{bottom:790.485000px;}
.y16{bottom:794.805000px;}
.y78{bottom:796.065000px;}
.yce{bottom:802.725000px;}
.y43{bottom:807.945000px;}
.yb9{bottom:810.105000px;}
.y39{bottom:814.425000px;}
.y15{bottom:817.845000px;}
.y77{bottom:819.105000px;}
.y8d{bottom:823.605000px;}
.ycd{bottom:826.845000px;}
.yb8{bottom:833.325000px;}
.y38{bottom:837.465000px;}
.y14{bottom:841.065000px;}
.y76{bottom:842.325000px;}
.y8c{bottom:847.770000px;}
.ycc{bottom:851.010000px;}
.yb7{bottom:856.590000px;}
.y37{bottom:860.730000px;}
.y75{bottom:865.590000px;}
.y8b{bottom:872.070000px;}
.y13{bottom:873.330000px;}
.ycb{bottom:875.310000px;}
.y36{bottom:883.950000px;}
.y74{bottom:888.630000px;}
.yb6{bottom:891.150000px;}
.y12{bottom:896.370000px;}
.yca{bottom:899.430000px;}
.y8a{bottom:905.190000px;}
.y73{bottom:911.850000px;}
.y35{bottom:918.510000px;}
.y11{bottom:919.590000px;}
.yc9{bottom:923.550000px;}
.yb0{bottom:924.450000px;}
.y89{bottom:929.310000px;}
.y72{bottom:935.070000px;}
.y10{bottom:942.810000px;}
.yaf{bottom:947.490000px;}
.yc8{bottom:947.670000px;}
.y34{bottom:951.810000px;}
.y88{bottom:953.430000px;}
.y71{bottom:958.290000px;}
.yf{bottom:966.030000px;}
.yae{bottom:970.710000px;}
.yc7{bottom:971.970000px;}
.y33{bottom:975.030000px;}
.y70{bottom:981.330000px;}
.y87{bottom:986.730000px;}
.ye{bottom:989.070000px;}
.yad{bottom:993.930000px;}
.yc6{bottom:996.090000px;}
.y7{bottom:996.270000px;}
.y32{bottom:998.070000px;}
.y6f{bottom:1004.550000px;}
.y86{bottom:1010.850000px;}
.yac{bottom:1017.150000px;}
.yc5{bottom:1020.210000px;}
.yd{bottom:1021.290000px;}
.y6{bottom:1024.710000px;}
.y6e{bottom:1027.770000px;}
.y85{bottom:1034.970000px;}
.yab{bottom:1040.190000px;}
.yc{bottom:1044.510000px;}
.y5{bottom:1050.450000px;}
.y6d{bottom:1050.810000px;}
.y84{bottom:1059.090000px;}
.yaa{bottom:1063.410000px;}
.yb{bottom:1067.550000px;}
.y6c{bottom:1074.030000px;}
.yc4{bottom:1079.970000px;}
.y83{bottom:1083.390000px;}
.ya9{bottom:1086.630000px;}
.ya{bottom:1103.010000px;}
.y82{bottom:1108.230000px;}
.y6b{bottom:1108.590000px;}
.ya8{bottom:1109.670000px;}
.y4{bottom:1119.750000px;}
.y1{bottom:1146.600000px;}
.y9{bottom:1166.580000px;}
.ha{height:50.294531px;}
.h4{height:55.825312px;}
.h6{height:65.884219px;}
.h8{height:67.824844px;}
.h9{height:68.084282px;}
.h3{height:68.956875px;}
.h2{height:70.664062px;}
.h7{height:72.562500px;}
.hb{height:73.722656px;}
.hc{height:74.953125px;}
.h5{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.415987px;}
.x1{left:122.615987px;}
.xa{left:133.415987px;}
.x9{left:159.509987px;}
.x6{left:169.769987px;}
.x13{left:267.689987px;}
.xe{left:272.009987px;}
.xc{left:301.934987px;}
.x17{left:315.434987px;}
.x10{left:321.914987px;}
.x15{left:331.274987px;}
.x11{left:339.734987px;}
.x1a{left:367.094987px;}
.x5{left:409.214987px;}
.x18{left:440.354987px;}
.x7{left:444.854987px;}
.x3{left:446.474987px;}
.x2{left:459.974987px;}
.xf{left:602.744987px;}
.x4{left:638.204987px;}
.x19{left:659.804987px;}
.xb{left:672.224987px;}
.x16{left:704.309987px;}
.xd{left:758.129987px;}
.x14{left:764.969987px;}
.x12{left:839.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.757333pt;}
.lse{letter-spacing:-0.549333pt;}
.ls18{letter-spacing:-0.524800pt;}
.ls17{letter-spacing:-0.276267pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.146133pt;}
.lsf{letter-spacing:-0.117867pt;}
.ls29{letter-spacing:-0.102400pt;}
.ls14{letter-spacing:-0.015360pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.015360pt;}
.ls11{letter-spacing:0.017920pt;}
.ls22{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.115200pt;}
.ls1f{letter-spacing:0.117760pt;}
.ls8{letter-spacing:0.133120pt;}
.ls15{letter-spacing:0.227733pt;}
.ls25{letter-spacing:0.227840pt;}
.ls1c{letter-spacing:0.266240pt;}
.ls21{letter-spacing:0.278933pt;}
.lsb{letter-spacing:0.330240pt;}
.ls1{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.773120pt;}
.ls6{letter-spacing:2.053120pt;}
.ls5{letter-spacing:2.213120pt;}
.ls3{letter-spacing:2.693120pt;}
.ls28{letter-spacing:3.333120pt;}
.ls1e{letter-spacing:6.533120pt;}
.ls19{letter-spacing:9.093120pt;}
.ls9{letter-spacing:12.933120pt;}
.ls4{letter-spacing:15.493120pt;}
.ls16{letter-spacing:16.106667pt;}
.ls7{letter-spacing:17.413120pt;}
.ls10{letter-spacing:18.053120pt;}
.ls12{letter-spacing:18.693120pt;}
.ls1d{letter-spacing:19.333120pt;}
.ls20{letter-spacing:30.186667pt;}
.ls1a{letter-spacing:31.493120pt;}
.ls13{letter-spacing:32.250027pt;}
.lsc{letter-spacing:754.853120pt;}
.ws1{word-spacing:-21.280000pt;}
.ws3{word-spacing:-17.295360pt;}
.ws2{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws9{word-spacing:-13.585813pt;}
.ws6{word-spacing:-13.534613pt;}
.ws8{word-spacing:-13.422080pt;}
.wsc{word-spacing:-13.314560pt;}
.ws4{word-spacing:-13.306880pt;}
.wse{word-spacing:-13.204480pt;}
.wsd{word-spacing:-13.160747pt;}
.wsb{word-spacing:-13.114880pt;}
.ws7{word-spacing:-13.030613pt;}
.ws5{word-spacing:-12.757547pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-4.190720pt;}
._1{margin-left:-2.885120pt;}
._11{margin-left:-1.906773pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.666987pt;}
._18{width:2.580907pt;}
._6{width:3.473920pt;}
._19{width:4.651520pt;}
._14{width:5.711360pt;}
._e{width:6.830080pt;}
._15{width:8.302080pt;}
._16{width:9.461333pt;}
._5{width:10.693120pt;}
._12{width:12.074667pt;}
._d{width:14.425600pt;}
._c{width:15.603200pt;}
._b{width:16.604160pt;}
._f{width:17.546240pt;}
._17{width:18.491733pt;}
._3{width:19.607040pt;}
._13{width:20.599040pt;}
._4{width:21.640533pt;}
._a{width:24.611840pt;}
._9{width:25.702400pt;}
._8{width:27.008427pt;}
._7{width:28.026880pt;}
._1c{width:29.378133pt;}
._1a{width:30.794240pt;}
._1b{width:31.987200pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:54.432000pt;}
.y2{bottom:76.512000pt;}
.y31{bottom:118.432000pt;}
.y8{bottom:120.192000pt;}
.ya7{bottom:124.512000pt;}
.y42{bottom:126.432000pt;}
.y4f{bottom:135.546667pt;}
.y6a{bottom:136.026667pt;}
.y81{bottom:137.946667pt;}
.y30{bottom:139.066667pt;}
.yc3{bottom:143.226667pt;}
.ya6{bottom:145.146667pt;}
.y41{bottom:150.906667pt;}
.y69{bottom:156.666667pt;}
.y2f{bottom:159.706667pt;}
.y4e{bottom:160.186667pt;}
.ya5{bottom:165.786667pt;}
.yc2{bottom:167.866667pt;}
.y80{bottom:170.106667pt;}
.yb5{bottom:172.506667pt;}
.y68{bottom:177.306667pt;}
.y2e{bottom:180.186667pt;}
.yb4{bottom:193.146667pt;}
.y7f{bottom:194.746667pt;}
.ya4{bottom:196.506667pt;}
.y67{bottom:197.786667pt;}
.y2d{bottom:208.826667pt;}
.yb3{bottom:213.786667pt;}
.y62{bottom:217.146667pt;}
.y66{bottom:218.426667pt;}
.ya3{bottom:226.106667pt;}
.y2c{bottom:229.466667pt;}
.y61{bottom:237.626667pt;}
.y65{bottom:239.066667pt;}
.yb2{bottom:242.266667pt;}
.ya2{bottom:246.586667pt;}
.y2b{bottom:249.946667pt;}
.y60{bottom:258.306667pt;}
.yb1{bottom:266.946667pt;}
.ya1{bottom:267.266667pt;}
.y64{bottom:267.586667pt;}
.y2a{bottom:270.626667pt;}
.y5f{bottom:278.946667pt;}
.ya0{bottom:287.906667pt;}
.y29{bottom:291.266667pt;}
.y63{bottom:292.226667pt;}
.y5e{bottom:299.426667pt;}
.y9f{bottom:308.546667pt;}
.y28{bottom:319.746667pt;}
.y5d{bottom:320.066667pt;}
.y9e{bottom:329.026667pt;}
.y27{bottom:340.386667pt;}
.y5c{bottom:340.706667pt;}
.y9d{bottom:349.666667pt;}
.y26{bottom:361.026667pt;}
.y5b{bottom:369.186667pt;}
.y9c{bottom:370.306667pt;}
.y25{bottom:381.666667pt;}
.y5a{bottom:389.826667pt;}
.y9b{bottom:390.786667pt;}
.y24{bottom:402.146667pt;}
.y59{bottom:410.466667pt;}
.y9a{bottom:411.426667pt;}
.y23{bottom:430.786667pt;}
.y58{bottom:430.946667pt;}
.y99{bottom:432.066667pt;}
.y22{bottom:451.426667pt;}
.y57{bottom:451.586667pt;}
.y98{bottom:462.786667pt;}
.y21{bottom:471.906667pt;}
.y56{bottom:472.226667pt;}
.yd9{bottom:477.186667pt;}
.y4d{bottom:489.666667pt;}
.y20{bottom:492.546667pt;}
.y55{bottom:492.706667pt;}
.y97{bottom:493.186667pt;}
.yd8{bottom:498.626667pt;}
.y4c{bottom:510.333333pt;}
.y1f{bottom:513.213333pt;}
.y54{bottom:513.373333pt;}
.yd7{bottom:520.093333pt;}
.y96{bottom:522.653333pt;}
.y4b{bottom:530.973333pt;}
.y1e{bottom:533.693333pt;}
.y53{bottom:534.013333pt;}
.yd6{bottom:541.693333pt;}
.y95{bottom:544.253333pt;}
.y4a{bottom:551.453333pt;}
.y1d{bottom:554.333333pt;}
.y52{bottom:554.493333pt;}
.yc1{bottom:555.453333pt;}
.yd5{bottom:563.133333pt;}
.y94{bottom:565.693333pt;}
.y40{bottom:571.773333pt;}
.y1c{bottom:574.973333pt;}
.yc0{bottom:576.093333pt;}
.y49{bottom:580.093333pt;}
.y51{bottom:583.133333pt;}
.y7e{bottom:584.093333pt;}
.yd4{bottom:584.573333pt;}
.y93{bottom:587.133333pt;}
.y3f{bottom:592.413333pt;}
.ybf{bottom:596.573333pt;}
.y48{bottom:600.733333pt;}
.y1b{bottom:603.453333pt;}
.y7d{bottom:604.573333pt;}
.yd3{bottom:606.013333pt;}
.y50{bottom:607.773333pt;}
.y92{bottom:608.733333pt;}
.y3e{bottom:612.893333pt;}
.ybe{bottom:617.213333pt;}
.y47{bottom:621.213333pt;}
.y1a{bottom:624.093333pt;}
.y7c{bottom:625.213333pt;}
.yd2{bottom:627.613333pt;}
.y3d{bottom:633.533333pt;}
.ybd{bottom:637.853333pt;}
.y91{bottom:638.173333pt;}
.y46{bottom:641.853333pt;}
.y19{bottom:644.733333pt;}
.y7b{bottom:645.853333pt;}
.yd1{bottom:649.053333pt;}
.y3c{bottom:654.173333pt;}
.ybc{bottom:658.333333pt;}
.y90{bottom:659.613333pt;}
.y45{bottom:662.493333pt;}
.y18{bottom:665.213333pt;}
.y7a{bottom:666.333333pt;}
.yd0{bottom:670.493333pt;}
.y3b{bottom:674.653333pt;}
.ybb{bottom:678.973333pt;}
.y8f{bottom:681.053333pt;}
.y17{bottom:685.853333pt;}
.y79{bottom:686.973333pt;}
.ycf{bottom:692.093333pt;}
.y44{bottom:693.693333pt;}
.y3a{bottom:695.293333pt;}
.yba{bottom:699.613333pt;}
.y8e{bottom:702.653333pt;}
.y16{bottom:706.493333pt;}
.y78{bottom:707.613333pt;}
.yce{bottom:713.533333pt;}
.y43{bottom:718.173333pt;}
.yb9{bottom:720.093333pt;}
.y39{bottom:723.933333pt;}
.y15{bottom:726.973333pt;}
.y77{bottom:728.093333pt;}
.y8d{bottom:732.093333pt;}
.ycd{bottom:734.973333pt;}
.yb8{bottom:740.733333pt;}
.y38{bottom:744.413333pt;}
.y14{bottom:747.613333pt;}
.y76{bottom:748.733333pt;}
.y8c{bottom:753.573333pt;}
.ycc{bottom:756.453333pt;}
.yb7{bottom:761.413333pt;}
.y37{bottom:765.093333pt;}
.y75{bottom:769.413333pt;}
.y8b{bottom:775.173333pt;}
.y13{bottom:776.293333pt;}
.ycb{bottom:778.053333pt;}
.y36{bottom:785.733333pt;}
.y74{bottom:789.893333pt;}
.yb6{bottom:792.133333pt;}
.y12{bottom:796.773333pt;}
.yca{bottom:799.493333pt;}
.y8a{bottom:804.613333pt;}
.y73{bottom:810.533333pt;}
.y35{bottom:816.453333pt;}
.y11{bottom:817.413333pt;}
.yc9{bottom:820.933333pt;}
.yb0{bottom:821.733333pt;}
.y89{bottom:826.053333pt;}
.y72{bottom:831.173333pt;}
.y10{bottom:838.053333pt;}
.yaf{bottom:842.213333pt;}
.yc8{bottom:842.373333pt;}
.y34{bottom:846.053333pt;}
.y88{bottom:847.493333pt;}
.y71{bottom:851.813333pt;}
.yf{bottom:858.693333pt;}
.yae{bottom:862.853333pt;}
.yc7{bottom:863.973333pt;}
.y33{bottom:866.693333pt;}
.y70{bottom:872.293333pt;}
.y87{bottom:877.093333pt;}
.ye{bottom:879.173333pt;}
.yad{bottom:883.493333pt;}
.yc6{bottom:885.413333pt;}
.y7{bottom:885.573333pt;}
.y32{bottom:887.173333pt;}
.y6f{bottom:892.933333pt;}
.y86{bottom:898.533333pt;}
.yac{bottom:904.133333pt;}
.yc5{bottom:906.853333pt;}
.yd{bottom:907.813333pt;}
.y6{bottom:910.853333pt;}
.y6e{bottom:913.573333pt;}
.y85{bottom:919.973333pt;}
.yab{bottom:924.613333pt;}
.yc{bottom:928.453333pt;}
.y5{bottom:933.733333pt;}
.y6d{bottom:934.053333pt;}
.y84{bottom:941.413333pt;}
.yaa{bottom:945.253333pt;}
.yb{bottom:948.933333pt;}
.y6c{bottom:954.693333pt;}
.yc4{bottom:959.973333pt;}
.y83{bottom:963.013333pt;}
.ya9{bottom:965.893333pt;}
.ya{bottom:980.453333pt;}
.y82{bottom:985.093333pt;}
.y6b{bottom:985.413333pt;}
.ya8{bottom:986.373333pt;}
.y4{bottom:995.333333pt;}
.y1{bottom:1019.200000pt;}
.y9{bottom:1036.960000pt;}
.ha{height:44.706250pt;}
.h4{height:49.622500pt;}
.h6{height:58.563750pt;}
.h8{height:60.288750pt;}
.h9{height:60.519362pt;}
.h3{height:61.295000pt;}
.h2{height:62.812500pt;}
.h7{height:64.500000pt;}
.hb{height:65.531250pt;}
.hc{height:66.625000pt;}
.h5{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.591988pt;}
.x1{left:108.991988pt;}
.xa{left:118.591988pt;}
.x9{left:141.786655pt;}
.x6{left:150.906655pt;}
.x13{left:237.946655pt;}
.xe{left:241.786655pt;}
.xc{left:268.386655pt;}
.x17{left:280.386655pt;}
.x10{left:286.146655pt;}
.x15{left:294.466655pt;}
.x11{left:301.986655pt;}
.x1a{left:326.306655pt;}
.x5{left:363.746655pt;}
.x18{left:391.426655pt;}
.x7{left:395.426655pt;}
.x3{left:396.866655pt;}
.x2{left:408.866655pt;}
.xf{left:535.773322pt;}
.x4{left:567.293322pt;}
.x19{left:586.493322pt;}
.xb{left:597.533322pt;}
.x16{left:626.053322pt;}
.xd{left:673.893322pt;}
.x14{left:679.973322pt;}
.x12{left:746.373322pt;}
}




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