
    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_15c41a9ded8559a50f05e70a.woff')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_fbc1d4b02b3504bd8b3b6d6d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.053223;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_ab6e7c76053211e9990dfb5c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f9df413901804324ad6ae188.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_86f80fc10f112ee21628d8e7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_1e1ffae1091838dc926233c8.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_f63af9f95d39852d934b5079.woff')format("woff");}.ff7{font-family:ff7;line-height:0.776855;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_40b3079959820268bdba05dd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_80b15abcb53d40b04f2eb253.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dfbf7e51a4f64d007fc36d2e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_12ac47b1419079fe809394c4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.731445;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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.864000px;}
.lse{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.264960px;}
.ls26{letter-spacing:-0.231178px;}
.ls1e{letter-spacing:-0.218592px;}
.ls8{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.211968px;}
.ls27{letter-spacing:-0.199382px;}
.ls21{letter-spacing:-0.192096px;}
.ls24{letter-spacing:-0.186134px;}
.ls25{letter-spacing:-0.178848px;}
.ls20{letter-spacing:-0.171562px;}
.ls22{letter-spacing:-0.165600px;}
.ls1d{letter-spacing:-0.158976px;}
.ls1f{letter-spacing:-0.152352px;}
.ls23{letter-spacing:-0.145728px;}
.ls7{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.468000px;}
.ls18{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.936000px;}
.ls1a{letter-spacing:33.960000px;}
.ls19{letter-spacing:65.640000px;}
.lsf{letter-spacing:199.704000px;}
.ls13{letter-spacing:847.884000px;}
.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;}
}
.ws16{word-spacing:-18.144000px;}
.ws15{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.208000px;}
.ws13{word-spacing:-17.136000px;}
.ws6{word-spacing:-16.632000px;}
.wsd{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.506480px;}
.ws7{word-spacing:-16.488000px;}
.ws4{word-spacing:-16.416000px;}
.ws1{word-spacing:-16.344000px;}
.ws0{word-spacing:-16.272000px;}
.wsb{word-spacing:-16.200000px;}
.ws9{word-spacing:-16.128000px;}
.wsf{word-spacing:-16.056000px;}
.ws14{word-spacing:-15.984000px;}
.ws8{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.768000px;}
.wsa{word-spacing:-15.696000px;}
.ws3{word-spacing:-15.624000px;}
.wsc{word-spacing:-15.552000px;}
.ws12{word-spacing:-15.480000px;}
.wse{word-spacing:-12.204000px;}
.ws1b{word-spacing:-0.178848px;}
.ws2{word-spacing:0.000000px;}
.ws19{word-spacing:0.463680px;}
.ws20{word-spacing:0.476928px;}
.ws1c{word-spacing:0.482890px;}
.ws1a{word-spacing:0.490176px;}
.ws1f{word-spacing:0.497462px;}
.ws1d{word-spacing:0.503424px;}
.ws22{word-spacing:0.510710px;}
.ws21{word-spacing:0.516672px;}
.ws1e{word-spacing:0.523296px;}
.ws24{word-spacing:0.529920px;}
.ws17{word-spacing:0.542506px;}
.ws23{word-spacing:0.563040px;}
.ws18{word-spacing:0.596160px;}
._c{margin-left:-15.732000px;}
._8{margin-left:-14.364000px;}
._7{margin-left:-12.924000px;}
._b{margin-left:-11.268000px;}
._9{margin-left:-9.324000px;}
._6{margin-left:-7.884000px;}
._5{margin-left:-5.832000px;}
._2e{margin-left:-4.716000px;}
._a{margin-left:-3.708000px;}
._4{margin-left:-2.136000px;}
._0{margin-left:-1.080000px;}
._1{width:1.236000px;}
._3{width:2.688000px;}
._12{width:3.768000px;}
._3d{width:6.876000px;}
._43{width:8.928000px;}
._1d{width:11.376000px;}
._10{width:13.680000px;}
._42{width:17.400000px;}
._3f{width:23.520000px;}
._2f{width:26.208000px;}
._3a{width:31.056000px;}
._1a{width:38.640000px;}
._19{width:40.500000px;}
._31{width:45.144000px;}
._41{width:48.276000px;}
._e{width:50.184000px;}
._45{width:52.308000px;}
._40{width:53.352000px;}
._21{width:62.592000px;}
._13{width:70.128000px;}
._1e{width:75.204000px;}
._32{width:77.052000px;}
._33{width:82.452000px;}
._26{width:84.528000px;}
._39{width:88.668000px;}
._2b{width:90.612000px;}
._46{width:96.264000px;}
._3e{width:97.956000px;}
._d{width:101.964000px;}
._34{width:104.664000px;}
._2a{width:107.244000px;}
._1f{width:110.484000px;}
._2c{width:111.900000px;}
._27{width:115.476000px;}
._1c{width:117.624000px;}
._23{width:118.740000px;}
._14{width:126.468000px;}
._18{width:130.284000px;}
._2d{width:131.652000px;}
._1b{width:134.460000px;}
._22{width:139.056000px;}
._3b{width:142.200000px;}
._35{width:145.884000px;}
._15{width:155.592000px;}
._16{width:158.400000px;}
._38{width:161.640000px;}
._17{width:164.124000px;}
._3c{width:165.252000px;}
._20{width:166.476000px;}
._25{width:170.964000px;}
._44{width:174.900000px;}
._28{width:181.668000px;}
._37{width:183.636000px;}
._29{width:187.800000px;}
._24{width:192.972000px;}
._36{width:194.040000px;}
._30{width:197.172000px;}
._11{width:199.704000px;}
._48{width:406.260000px;}
._f{width:505.092000px;}
._2{width:847.884000px;}
._47{width:2055.180000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(149,79,114);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(128,0,0);}
.fc5{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:58.680000px;}
.y18{bottom:80.676000px;}
.y7d{bottom:113.796000px;}
.y55{bottom:121.536000px;}
.y3b{bottom:123.156000px;}
.y1d{bottom:139.896000px;}
.y3c{bottom:140.256000px;}
.y6b{bottom:146.916000px;}
.y54{bottom:157.350000px;}
.y7c{bottom:157.710000px;}
.y3a{bottom:167.070000px;}
.y9c{bottom:178.510095px;}
.y1c{bottom:183.810000px;}
.y6a{bottom:188.670000px;}
.y30{bottom:191.910000px;}
.y53{bottom:192.990000px;}
.y9b{bottom:197.405055px;}
.y7b{bottom:201.630000px;}
.y39{bottom:210.990000px;}
.y9a{bottom:216.300015px;}
.y69{bottom:223.950000px;}
.y1b{bottom:227.730000px;}
.y52{bottom:228.630000px;}
.y99{bottom:235.377135px;}
.y2f{bottom:235.830000px;}
.y7a{bottom:245.730000px;}
.y38{bottom:254.910000px;}
.y68{bottom:259.590000px;}
.y51{bottom:264.450000px;}
.y1a{bottom:271.650000px;}
.y2e{bottom:279.750000px;}
.y79{bottom:289.650000px;}
.y37{bottom:298.830000px;}
.y50{bottom:299.190000px;}
.y67{bottom:301.350000px;}
.y98{bottom:311.139135px;}
.y19{bottom:315.750000px;}
.y2d{bottom:323.670000px;}
.y78{bottom:324.210000px;}
.y8a{bottom:326.235000px;}
.y97{bottom:330.216255px;}
.y4f{bottom:334.515000px;}
.y17{bottom:337.755000px;}
.y36{bottom:342.975000px;}
.y66{bottom:345.135000px;}
.y16{bottom:359.715000px;}
.y2c{bottom:367.635000px;}
.y77{bottom:367.995000px;}
.y4e{bottom:370.155000px;}
.y15{bottom:381.675000px;}
.y35{bottom:386.895000px;}
.y96{bottom:387.083295px;}
.y65{bottom:389.055000px;}
.y4d{bottom:393.915000px;}
.y14{bottom:403.635000px;}
.y95{bottom:405.978255px;}
.y89{bottom:409.035000px;}
.y2b{bottom:411.555000px;}
.y76{bottom:411.915000px;}
.y13{bottom:425.595000px;}
.y4c{bottom:429.735000px;}
.y34{bottom:430.815000px;}
.y12{bottom:447.555000px;}
.y88{bottom:452.595000px;}
.y75{bottom:453.675000px;}
.y2a{bottom:455.475000px;}
.y94{bottom:463.027455px;}
.y4b{bottom:465.375000px;}
.y64{bottom:472.215000px;}
.y33{bottom:474.735000px;}
.y74{bottom:475.995000px;}
.y93{bottom:481.922415px;}
.y11{bottom:491.475000px;}
.y87{bottom:494.355000px;}
.y29{bottom:499.575000px;}
.y92{bottom:500.817375px;}
.y4a{bottom:501.015000px;}
.y63{bottom:513.615000px;}
.y32{bottom:518.655000px;}
.y73{bottom:519.555000px;}
.y91{bottom:519.894495px;}
.y10{bottom:535.395000px;}
.y86{bottom:535.755000px;}
.y49{bottom:536.835000px;}
.y28{bottom:543.495000px;}
.y72{bottom:554.295000px;}
.y62{bottom:557.175000px;}
.y31{bottom:557.715000px;}
.y85{bottom:558.075000px;}
.y48{bottom:572.475000px;}
.y90{bottom:576.761535px;}
.yf{bottom:579.345000px;}
.y27{bottom:582.585000px;}
.y71{bottom:589.605000px;}
.y9e{bottom:595.500000px;}
.y8f{bottom:595.838655px;}
.y61{bottom:598.965000px;}
.y84{bottom:599.505000px;}
.y47{bottom:608.325000px;}
.ye{bottom:623.445000px;}
.y70{bottom:631.365000px;}
.y60{bottom:634.245000px;}
.y83{bottom:640.905000px;}
.y46{bottom:642.885000px;}
.y26{bottom:645.405000px;}
.yd{bottom:667.365000px;}
.y5f{bottom:670.065000px;}
.y6f{bottom:672.765000px;}
.y82{bottom:682.305000px;}
.y45{bottom:686.445000px;}
.y25{bottom:689.325000px;}
.y5e{bottom:705.705000px;}
.yc{bottom:711.285000px;}
.y6e{bottom:716.325000px;}
.y81{bottom:723.705000px;}
.y44{bottom:730.545000px;}
.y24{bottom:733.245000px;}
.y5d{bottom:741.345000px;}
.yb{bottom:755.205000px;}
.y6d{bottom:758.085000px;}
.y80{bottom:765.105000px;}
.y43{bottom:774.465000px;}
.y23{bottom:777.165000px;}
.ya{bottom:799.125000px;}
.y6c{bottom:799.485000px;}
.y7f{bottom:808.845000px;}
.y5c{bottom:812.805000px;}
.y42{bottom:818.385000px;}
.y22{bottom:821.085000px;}
.y9{bottom:843.090000px;}
.y5b{bottom:848.670000px;}
.y7e{bottom:852.810000px;}
.y41{bottom:853.170000px;}
.y21{bottom:865.050000px;}
.y5a{bottom:884.310000px;}
.y8{bottom:887.010000px;}
.y40{bottom:896.730000px;}
.y8e{bottom:904.699215px;}
.y20{bottom:909.150000px;}
.y59{bottom:919.950000px;}
.y8d{bottom:923.776335px;}
.y7{bottom:931.110000px;}
.y3f{bottom:940.650000px;}
.y8c{bottom:942.671295px;}
.y1f{bottom:953.070000px;}
.y58{bottom:955.770000px;}
.y6{bottom:975.030000px;}
.y3e{bottom:984.570000px;}
.y57{bottom:991.410000px;}
.y1e{bottom:996.990000px;}
.y9d{bottom:999.000000px;}
.y8b{bottom:999.538335px;}
.y5{bottom:1018.950000px;}
.y3d{bottom:1019.310000px;}
.y56{bottom:1027.230000px;}
.y4{bottom:1062.870000px;}
.y2{bottom:1094.940000px;}
.y1{bottom:1116.900000px;}
.h9{height:43.125000px;}
.h8{height:48.222720px;}
.h5{height:54.914062px;}
.h2{height:62.964844px;}
.h7{height:70.664062px;}
.h1{height:71.613281px;}
.h3{height:73.722656px;}
.h6{height:75.093750px;}
.h4{height:1080.000000px;}
.h0{height:1188.000000px;}
.w2{width:834.480000px;}
.w3{width:834.750000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:108.035986px;}
.x21{left:135.035986px;}
.x2a{left:143.101410px;}
.x2b{left:155.339250px;}
.x2f{left:158.038530px;}
.x2{left:162.029986px;}
.x2c{left:168.670050px;}
.x26{left:176.022690px;}
.x30{left:186.124290px;}
.x29{left:188.277090px;}
.x4{left:206.489986px;}
.x2d{left:214.011330px;}
.x22{left:216.029986px;}
.xb{left:229.889986px;}
.x27{left:242.809170px;}
.x2e{left:253.970610px;}
.x6{left:268.769986px;}
.x1a{left:284.249986px;}
.xf{left:295.454986px;}
.xe{left:312.014986px;}
.x1c{left:316.514986px;}
.x28{left:325.443570px;}
.x19{left:327.674986px;}
.x33{left:337.880130px;}
.x25{left:339.652050px;}
.x7{left:342.794986px;}
.x1e{left:346.394986px;}
.x24{left:350.995650px;}
.x8{left:356.114986px;}
.xd{left:366.554986px;}
.x17{left:371.414986px;}
.xa{left:380.594986px;}
.x1b{left:387.254986px;}
.x13{left:389.954986px;}
.x14{left:393.194986px;}
.x1f{left:394.274986px;}
.xc{left:400.034986px;}
.x32{left:405.378690px;}
.x31{left:406.637250px;}
.x15{left:407.774986px;}
.x1d{left:417.674986px;}
.x11{left:427.574986px;}
.x9{left:450.254986px;}
.x12{left:452.774986px;}
.x10{left:454.934986px;}
.x5{left:459.074986px;}
.x20{left:486.074986px;}
.x34{left:492.000000px;}
.x35{left:547.500000px;}
.x23{left:782.789986px;}
.x18{left:791.969986px;}
.x16{left:800.969986px;}
.x1{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.768000pt;}
.lse{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.235520pt;}
.ls26{letter-spacing:-0.205491pt;}
.ls1e{letter-spacing:-0.194304pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.188416pt;}
.ls27{letter-spacing:-0.177229pt;}
.ls21{letter-spacing:-0.170752pt;}
.ls24{letter-spacing:-0.165453pt;}
.ls25{letter-spacing:-0.158976pt;}
.ls20{letter-spacing:-0.152499pt;}
.ls22{letter-spacing:-0.147200pt;}
.ls1d{letter-spacing:-0.141312pt;}
.ls1f{letter-spacing:-0.135424pt;}
.ls23{letter-spacing:-0.129536pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.416000pt;}
.ls18{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.832000pt;}
.ls1a{letter-spacing:30.186667pt;}
.ls19{letter-spacing:58.346667pt;}
.lsf{letter-spacing:177.514667pt;}
.ls13{letter-spacing:753.674667pt;}
.ws16{word-spacing:-16.128000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.296000pt;}
.ws13{word-spacing:-15.232000pt;}
.ws6{word-spacing:-14.784000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.672427pt;}
.ws7{word-spacing:-14.656000pt;}
.ws4{word-spacing:-14.592000pt;}
.ws1{word-spacing:-14.528000pt;}
.ws0{word-spacing:-14.464000pt;}
.wsb{word-spacing:-14.400000pt;}
.ws9{word-spacing:-14.336000pt;}
.wsf{word-spacing:-14.272000pt;}
.ws14{word-spacing:-14.208000pt;}
.ws8{word-spacing:-14.144000pt;}
.ws5{word-spacing:-14.016000pt;}
.wsa{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.888000pt;}
.wsc{word-spacing:-13.824000pt;}
.ws12{word-spacing:-13.760000pt;}
.wse{word-spacing:-10.848000pt;}
.ws1b{word-spacing:-0.158976pt;}
.ws2{word-spacing:0.000000pt;}
.ws19{word-spacing:0.412160pt;}
.ws20{word-spacing:0.423936pt;}
.ws1c{word-spacing:0.429235pt;}
.ws1a{word-spacing:0.435712pt;}
.ws1f{word-spacing:0.442189pt;}
.ws1d{word-spacing:0.447488pt;}
.ws22{word-spacing:0.453965pt;}
.ws21{word-spacing:0.459264pt;}
.ws1e{word-spacing:0.465152pt;}
.ws24{word-spacing:0.471040pt;}
.ws17{word-spacing:0.482227pt;}
.ws23{word-spacing:0.500480pt;}
.ws18{word-spacing:0.529920pt;}
._c{margin-left:-13.984000pt;}
._8{margin-left:-12.768000pt;}
._7{margin-left:-11.488000pt;}
._b{margin-left:-10.016000pt;}
._9{margin-left:-8.288000pt;}
._6{margin-left:-7.008000pt;}
._5{margin-left:-5.184000pt;}
._2e{margin-left:-4.192000pt;}
._a{margin-left:-3.296000pt;}
._4{margin-left:-1.898667pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.098667pt;}
._3{width:2.389333pt;}
._12{width:3.349333pt;}
._3d{width:6.112000pt;}
._43{width:7.936000pt;}
._1d{width:10.112000pt;}
._10{width:12.160000pt;}
._42{width:15.466667pt;}
._3f{width:20.906667pt;}
._2f{width:23.296000pt;}
._3a{width:27.605333pt;}
._1a{width:34.346667pt;}
._19{width:36.000000pt;}
._31{width:40.128000pt;}
._41{width:42.912000pt;}
._e{width:44.608000pt;}
._45{width:46.496000pt;}
._40{width:47.424000pt;}
._21{width:55.637333pt;}
._13{width:62.336000pt;}
._1e{width:66.848000pt;}
._32{width:68.490667pt;}
._33{width:73.290667pt;}
._26{width:75.136000pt;}
._39{width:78.816000pt;}
._2b{width:80.544000pt;}
._46{width:85.568000pt;}
._3e{width:87.072000pt;}
._d{width:90.634667pt;}
._34{width:93.034667pt;}
._2a{width:95.328000pt;}
._1f{width:98.208000pt;}
._2c{width:99.466667pt;}
._27{width:102.645333pt;}
._1c{width:104.554667pt;}
._23{width:105.546667pt;}
._14{width:112.416000pt;}
._18{width:115.808000pt;}
._2d{width:117.024000pt;}
._1b{width:119.520000pt;}
._22{width:123.605333pt;}
._3b{width:126.400000pt;}
._35{width:129.674667pt;}
._15{width:138.304000pt;}
._16{width:140.800000pt;}
._38{width:143.680000pt;}
._17{width:145.888000pt;}
._3c{width:146.890667pt;}
._20{width:147.978667pt;}
._25{width:151.968000pt;}
._44{width:155.466667pt;}
._28{width:161.482667pt;}
._37{width:163.232000pt;}
._29{width:166.933333pt;}
._24{width:171.530667pt;}
._36{width:172.480000pt;}
._30{width:175.264000pt;}
._11{width:177.514667pt;}
._48{width:361.120000pt;}
._f{width:448.970667pt;}
._2{width:753.674667pt;}
._47{width:1826.826667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:52.160000pt;}
.y18{bottom:71.712000pt;}
.y7d{bottom:101.152000pt;}
.y55{bottom:108.032000pt;}
.y3b{bottom:109.472000pt;}
.y1d{bottom:124.352000pt;}
.y3c{bottom:124.672000pt;}
.y6b{bottom:130.592000pt;}
.y54{bottom:139.866667pt;}
.y7c{bottom:140.186667pt;}
.y3a{bottom:148.506667pt;}
.y9c{bottom:158.675640pt;}
.y1c{bottom:163.386667pt;}
.y6a{bottom:167.706667pt;}
.y30{bottom:170.586667pt;}
.y53{bottom:171.546667pt;}
.y9b{bottom:175.471160pt;}
.y7b{bottom:179.226667pt;}
.y39{bottom:187.546667pt;}
.y9a{bottom:192.266680pt;}
.y69{bottom:199.066667pt;}
.y1b{bottom:202.426667pt;}
.y52{bottom:203.226667pt;}
.y99{bottom:209.224120pt;}
.y2f{bottom:209.626667pt;}
.y7a{bottom:218.426667pt;}
.y38{bottom:226.586667pt;}
.y68{bottom:230.746667pt;}
.y51{bottom:235.066667pt;}
.y1a{bottom:241.466667pt;}
.y2e{bottom:248.666667pt;}
.y79{bottom:257.466667pt;}
.y37{bottom:265.626667pt;}
.y50{bottom:265.946667pt;}
.y67{bottom:267.866667pt;}
.y98{bottom:276.568120pt;}
.y19{bottom:280.666667pt;}
.y2d{bottom:287.706667pt;}
.y78{bottom:288.186667pt;}
.y8a{bottom:289.986667pt;}
.y97{bottom:293.525560pt;}
.y4f{bottom:297.346667pt;}
.y17{bottom:300.226667pt;}
.y36{bottom:304.866667pt;}
.y66{bottom:306.786667pt;}
.y16{bottom:319.746667pt;}
.y2c{bottom:326.786667pt;}
.y77{bottom:327.106667pt;}
.y4e{bottom:329.026667pt;}
.y15{bottom:339.266667pt;}
.y35{bottom:343.906667pt;}
.y96{bottom:344.074040pt;}
.y65{bottom:345.826667pt;}
.y4d{bottom:350.146667pt;}
.y14{bottom:358.786667pt;}
.y95{bottom:360.869560pt;}
.y89{bottom:363.586667pt;}
.y2b{bottom:365.826667pt;}
.y76{bottom:366.146667pt;}
.y13{bottom:378.306667pt;}
.y4c{bottom:381.986667pt;}
.y34{bottom:382.946667pt;}
.y12{bottom:397.826667pt;}
.y88{bottom:402.306667pt;}
.y75{bottom:403.266667pt;}
.y2a{bottom:404.866667pt;}
.y94{bottom:411.579960pt;}
.y4b{bottom:413.666667pt;}
.y64{bottom:419.746667pt;}
.y33{bottom:421.986667pt;}
.y74{bottom:423.106667pt;}
.y93{bottom:428.375480pt;}
.y11{bottom:436.866667pt;}
.y87{bottom:439.426667pt;}
.y29{bottom:444.066667pt;}
.y92{bottom:445.171000pt;}
.y4a{bottom:445.346667pt;}
.y63{bottom:456.546667pt;}
.y32{bottom:461.026667pt;}
.y73{bottom:461.826667pt;}
.y91{bottom:462.128440pt;}
.y10{bottom:475.906667pt;}
.y86{bottom:476.226667pt;}
.y49{bottom:477.186667pt;}
.y28{bottom:483.106667pt;}
.y72{bottom:492.706667pt;}
.y62{bottom:495.266667pt;}
.y31{bottom:495.746667pt;}
.y85{bottom:496.066667pt;}
.y48{bottom:508.866667pt;}
.y90{bottom:512.676920pt;}
.yf{bottom:514.973333pt;}
.y27{bottom:517.853333pt;}
.y71{bottom:524.093333pt;}
.y9e{bottom:529.333333pt;}
.y8f{bottom:529.634360pt;}
.y61{bottom:532.413333pt;}
.y84{bottom:532.893333pt;}
.y47{bottom:540.733333pt;}
.ye{bottom:554.173333pt;}
.y70{bottom:561.213333pt;}
.y60{bottom:563.773333pt;}
.y83{bottom:569.693333pt;}
.y46{bottom:571.453333pt;}
.y26{bottom:573.693333pt;}
.yd{bottom:593.213333pt;}
.y5f{bottom:595.613333pt;}
.y6f{bottom:598.013333pt;}
.y82{bottom:606.493333pt;}
.y45{bottom:610.173333pt;}
.y25{bottom:612.733333pt;}
.y5e{bottom:627.293333pt;}
.yc{bottom:632.253333pt;}
.y6e{bottom:636.733333pt;}
.y81{bottom:643.293333pt;}
.y44{bottom:649.373333pt;}
.y24{bottom:651.773333pt;}
.y5d{bottom:658.973333pt;}
.yb{bottom:671.293333pt;}
.y6d{bottom:673.853333pt;}
.y80{bottom:680.093333pt;}
.y43{bottom:688.413333pt;}
.y23{bottom:690.813333pt;}
.ya{bottom:710.333333pt;}
.y6c{bottom:710.653333pt;}
.y7f{bottom:718.973333pt;}
.y5c{bottom:722.493333pt;}
.y42{bottom:727.453333pt;}
.y22{bottom:729.853333pt;}
.y9{bottom:749.413333pt;}
.y5b{bottom:754.373333pt;}
.y7e{bottom:758.053333pt;}
.y41{bottom:758.373333pt;}
.y21{bottom:768.933333pt;}
.y5a{bottom:786.053333pt;}
.y8{bottom:788.453333pt;}
.y40{bottom:797.093333pt;}
.y8e{bottom:804.177080pt;}
.y20{bottom:808.133333pt;}
.y59{bottom:817.733333pt;}
.y8d{bottom:821.134520pt;}
.y7{bottom:827.653333pt;}
.y3f{bottom:836.133333pt;}
.y8c{bottom:837.930040pt;}
.y1f{bottom:847.173333pt;}
.y58{bottom:849.573333pt;}
.y6{bottom:866.693333pt;}
.y3e{bottom:875.173333pt;}
.y57{bottom:881.253333pt;}
.y1e{bottom:886.213333pt;}
.y9d{bottom:888.000000pt;}
.y8b{bottom:888.478520pt;}
.y5{bottom:905.733333pt;}
.y3d{bottom:906.053333pt;}
.y56{bottom:913.093333pt;}
.y4{bottom:944.773333pt;}
.y2{bottom:973.280000pt;}
.y1{bottom:992.800000pt;}
.h9{height:38.333333pt;}
.h8{height:42.864640pt;}
.h5{height:48.812500pt;}
.h2{height:55.968750pt;}
.h7{height:62.812500pt;}
.h1{height:63.656250pt;}
.h3{height:65.531250pt;}
.h6{height:66.750000pt;}
.h4{height:960.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:741.760000pt;}
.w3{width:742.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.031988pt;}
.x21{left:120.031988pt;}
.x2a{left:127.201253pt;}
.x2b{left:138.079333pt;}
.x2f{left:140.478693pt;}
.x2{left:144.026655pt;}
.x2c{left:149.928933pt;}
.x26{left:156.464613pt;}
.x30{left:165.443813pt;}
.x29{left:167.357413pt;}
.x4{left:183.546655pt;}
.x2d{left:190.232293pt;}
.x22{left:192.026655pt;}
.xb{left:204.346655pt;}
.x27{left:215.830373pt;}
.x2e{left:225.751653pt;}
.x6{left:238.906655pt;}
.x1a{left:252.666655pt;}
.xf{left:262.626655pt;}
.xe{left:277.346655pt;}
.x1c{left:281.346655pt;}
.x28{left:289.283173pt;}
.x19{left:291.266655pt;}
.x33{left:300.337893pt;}
.x25{left:301.912933pt;}
.x7{left:304.706655pt;}
.x1e{left:307.906655pt;}
.x24{left:311.996133pt;}
.x8{left:316.546655pt;}
.xd{left:325.826655pt;}
.x17{left:330.146655pt;}
.xa{left:338.306655pt;}
.x1b{left:344.226655pt;}
.x13{left:346.626655pt;}
.x14{left:349.506655pt;}
.x1f{left:350.466655pt;}
.xc{left:355.586655pt;}
.x32{left:360.336613pt;}
.x31{left:361.455333pt;}
.x15{left:362.466655pt;}
.x1d{left:371.266655pt;}
.x11{left:380.066655pt;}
.x9{left:400.226655pt;}
.x12{left:402.466655pt;}
.x10{left:404.386655pt;}
.x5{left:408.066655pt;}
.x20{left:432.066655pt;}
.x34{left:437.333333pt;}
.x35{left:486.666667pt;}
.x23{left:695.813321pt;}
.x18{left:703.973321pt;}
.x16{left:711.973321pt;}
.x1{left:720.133321pt;}
}




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