
    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_a4c4609155cb5d7d40d8bd08.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.480469;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_5a8b2eba3fa0b1d268db6583.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_a10fa13687d989e147809630.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.568848;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_929338e71302512cc3e19493.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_06fd94ecc65870567437bcb7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.480469;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_95fe474fda60737a6b1632bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.568848;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_4d78db65dcee1dbb0a91fbb9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.219238;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_edab628b570235773058ffea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.592000;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_411be2c26bb0bb0c2e97732a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.480469;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_2c056626e065ecc2980ded8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-87.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:123.600000px;}
.ls2{letter-spacing:-21.000000px;}
.lsf{letter-spacing:-6.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.810000px;}
.ls10{letter-spacing:1.455000px;}
.ls14{letter-spacing:2.655000px;}
.ls5{letter-spacing:3.000000px;}
.lsc{letter-spacing:3.108000px;}
.lsd{letter-spacing:3.690000px;}
.ls9{letter-spacing:4.290000px;}
.ls11{letter-spacing:4.671000px;}
.ls12{letter-spacing:5.055000px;}
.lse{letter-spacing:6.570000px;}
.lsa{letter-spacing:7.080000px;}
.lsb{letter-spacing:7.671000px;}
.ls15{letter-spacing:7.680000px;}
.ls7{letter-spacing:8.871000px;}
.ls13{letter-spacing:9.921000px;}
.ls8{letter-spacing:10.080000px;}
.ls6{letter-spacing:11.109000px;}
.ls17{letter-spacing:11.280000px;}
.ls16{letter-spacing:12.345000px;}
.ls0{letter-spacing:12.471000px;}
.ls1{letter-spacing:59.064000px;}
.ls3{letter-spacing:72.000000px;}
.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;}
}
.ws0{word-spacing:-72.165000px;}
.ws4{word-spacing:-52.056000px;}
.ws2{word-spacing:-15.183000px;}
.wsa{word-spacing:-14.460000px;}
.ws5{word-spacing:-13.737000px;}
.wsc{word-spacing:-12.276000px;}
.ws9{word-spacing:-7.737000px;}
.ws1{word-spacing:-0.087000px;}
.ws3{word-spacing:-0.045600px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:5.088000px;}
.ws8{word-spacing:5.943000px;}
.ws7{word-spacing:5.954400px;}
._16{margin-left:-62.568000px;}
._17{margin-left:-49.698000px;}
._1b{margin-left:-38.814000px;}
._20{margin-left:-37.224000px;}
._18{margin-left:-33.630000px;}
._15{margin-left:-32.340000px;}
._1c{margin-left:-28.578000px;}
._2b{margin-left:-26.448000px;}
._3a{margin-left:-24.624000px;}
._22{margin-left:-23.448000px;}
._1f{margin-left:-21.756000px;}
._30{margin-left:-20.469000px;}
._3f{margin-left:-19.065000px;}
._21{margin-left:-17.490000px;}
._14{margin-left:-16.206000px;}
._3b{margin-left:-14.721000px;}
._23{margin-left:-13.293000px;}
._4{margin-left:-11.880000px;}
._5{margin-left:-10.560000px;}
._6{margin-left:-9.240000px;}
._1d{margin-left:-7.380000px;}
._1a{margin-left:-6.267000px;}
._19{margin-left:-4.908000px;}
._3{margin-left:-3.864000px;}
._2{margin-left:-1.932000px;}
._12{width:1.254000px;}
._9{width:3.186000px;}
._c{width:4.398000px;}
._f{width:5.895000px;}
._d{width:6.981000px;}
._8{width:8.532000px;}
._7{width:9.936000px;}
._0{width:11.592000px;}
._10{width:12.696000px;}
._11{width:14.838000px;}
._a{width:16.200000px;}
._24{width:17.292000px;}
._b{width:18.576000px;}
._2e{width:19.854000px;}
._13{width:21.309000px;}
._40{width:22.365000px;}
._2c{width:23.415000px;}
._31{width:24.588000px;}
._e{width:25.659000px;}
._2d{width:27.597000px;}
._2a{width:28.857000px;}
._33{width:32.208000px;}
._35{width:33.843000px;}
._28{width:38.574000px;}
._39{width:41.943000px;}
._27{width:50.328000px;}
._2f{width:60.678000px;}
._26{width:69.957000px;}
._45{width:93.606000px;}
._36{width:96.177000px;}
._1e{width:106.953000px;}
._34{width:111.717000px;}
._29{width:125.796000px;}
._42{width:142.023000px;}
._41{width:153.810000px;}
._3e{width:179.205000px;}
._37{width:217.581000px;}
._38{width:284.991000px;}
._3c{width:328.335000px;}
._44{width:381.243000px;}
._43{width:480.192000px;}
._32{width:835.356000px;}
._3d{width:923.685000px;}
._1{width:1041.900000px;}
._25{width:1366.101600px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs7{font-size:45.600000px;}
.fsa{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fsd{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fse{font-size:74.400000px;}
.fsf{font-size:78.000000px;}
.fsb{font-size:84.000000px;}
.fs4{font-size:87.000000px;}
.fsc{font-size:93.000000px;}
.fs0{font-size:138.000000px;}
.fs1{font-size:165.000000px;}
.fs6{font-size:198.000000px;}
.fs8{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.105000px;}
.y64{bottom:7.228363px;}
.y31{bottom:7.228369px;}
.yc2{bottom:10.050000px;}
.y63{bottom:22.650000px;}
.y30{bottom:28.020000px;}
.y95{bottom:30.270000px;}
.yc1{bottom:30.750000px;}
.y62{bottom:42.150000px;}
.y2f{bottom:46.920000px;}
.yc0{bottom:48.300000px;}
.y94{bottom:50.220000px;}
.y61{bottom:61.650000px;}
.y2e{bottom:66.720000px;}
.y93{bottom:68.820000px;}
.ybf{bottom:69.150000px;}
.y60{bottom:80.550000px;}
.y2d{bottom:85.620000px;}
.y92{bottom:88.020000px;}
.y5f{bottom:99.600000px;}
.y2c{bottom:103.920000px;}
.y91{bottom:106.620000px;}
.ybe{bottom:108.900000px;}
.y5e{bottom:117.750000px;}
.y2b{bottom:122.820000px;}
.y90{bottom:125.520000px;}
.ybd{bottom:127.800000px;}
.y5d{bottom:136.650000px;}
.y2a{bottom:141.720000px;}
.y8f{bottom:144.720000px;}
.ybc{bottom:146.700000px;}
.y5c{bottom:155.850000px;}
.y29{bottom:160.620000px;}
.y8e{bottom:163.620000px;}
.ybb{bottom:165.600000px;}
.y27{bottom:166.920000px;}
.y5b{bottom:174.450000px;}
.y28{bottom:179.220000px;}
.y8d{bottom:182.220000px;}
.yba{bottom:184.500000px;}
.y5a{bottom:193.050000px;}
.y8c{bottom:201.120000px;}
.yb9{bottom:203.400000px;}
.y59{bottom:211.950000px;}
.y26{bottom:214.920000px;}
.y8b{bottom:220.320000px;}
.yb8{bottom:222.000000px;}
.y58{bottom:230.850000px;}
.y8a{bottom:238.620000px;}
.y25{bottom:239.220000px;}
.yb7{bottom:240.900000px;}
.y57{bottom:249.450000px;}
.y24{bottom:256.470000px;}
.y89{bottom:257.220000px;}
.yb6{bottom:259.500000px;}
.y56{bottom:268.650000px;}
.y23{bottom:272.370000px;}
.y88{bottom:276.120000px;}
.yb5{bottom:277.650000px;}
.y55{bottom:287.100000px;}
.y22{bottom:292.170000px;}
.y87{bottom:294.570000px;}
.y54{bottom:306.000000px;}
.y21{bottom:311.070000px;}
.y86{bottom:313.170000px;}
.y53{bottom:324.900000px;}
.y20{bottom:329.370000px;}
.y85{bottom:332.070000px;}
.yb4{bottom:334.350000px;}
.y52{bottom:343.200000px;}
.y1f{bottom:347.970000px;}
.y84{bottom:350.970000px;}
.yb3{bottom:353.400000px;}
.y51{bottom:362.100000px;}
.y1e{bottom:366.420000px;}
.y83{bottom:368.820000px;}
.yb2{bottom:372.600000px;}
.y50{bottom:381.300000px;}
.y1d{bottom:385.320000px;}
.y82{bottom:388.170000px;}
.yb1{bottom:391.050000px;}
.y4f{bottom:400.200000px;}
.y1c{bottom:403.620000px;}
.y81{bottom:407.070000px;}
.y1a{bottom:409.770000px;}
.yb0{bottom:409.950000px;}
.y4e{bottom:418.500000px;}
.y1b{bottom:422.520000px;}
.y80{bottom:426.570000px;}
.yaf{bottom:428.850000px;}
.y4d{bottom:437.400000px;}
.y7f{bottom:444.420000px;}
.yae{bottom:447.450000px;}
.y4c{bottom:456.000000px;}
.y19{bottom:457.620000px;}
.y7e{bottom:463.320000px;}
.yad{bottom:466.800000px;}
.y4b{bottom:474.900000px;}
.y18{bottom:478.620000px;}
.y7d{bottom:482.220000px;}
.yac{bottom:485.250000px;}
.y4a{bottom:493.800000px;}
.y17{bottom:497.820000px;}
.y7c{bottom:501.120000px;}
.yab{bottom:504.150000px;}
.y49{bottom:512.700000px;}
.y16{bottom:516.270000px;}
.y7b{bottom:519.720000px;}
.y48{bottom:530.250000px;}
.y15{bottom:534.270000px;}
.y7a{bottom:536.670000px;}
.yaa{bottom:540.000000px;}
.y47{bottom:549.450000px;}
.y14{bottom:553.170000px;}
.y79{bottom:555.120000px;}
.ya9{bottom:558.900000px;}
.y46{bottom:567.900000px;}
.y13{bottom:572.070000px;}
.y78{bottom:573.720000px;}
.ya8{bottom:577.500000px;}
.y45{bottom:586.500000px;}
.y12{bottom:589.920000px;}
.y77{bottom:592.620000px;}
.ya7{bottom:596.250000px;}
.y44{bottom:605.700000px;}
.y11{bottom:608.820000px;}
.y76{bottom:610.920000px;}
.ya6{bottom:614.850000px;}
.y43{bottom:624.300000px;}
.y10{bottom:627.420000px;}
.y75{bottom:629.820000px;}
.ya5{bottom:633.750000px;}
.y42{bottom:642.900000px;}
.yf{bottom:646.020000px;}
.y74{bottom:648.570000px;}
.ya4{bottom:652.350000px;}
.yd{bottom:652.470000px;}
.y41{bottom:661.500000px;}
.ye{bottom:664.920000px;}
.y73{bottom:667.170000px;}
.ya3{bottom:670.950000px;}
.y40{bottom:680.250000px;}
.y72{bottom:685.770000px;}
.ya2{bottom:689.550000px;}
.yc{bottom:697.620000px;}
.y3f{bottom:699.000000px;}
.y71{bottom:704.670000px;}
.ya1{bottom:708.300000px;}
.y3e{bottom:717.750000px;}
.yb{bottom:720.120000px;}
.y70{bottom:722.970000px;}
.ya0{bottom:726.900000px;}
.y3d{bottom:736.050000px;}
.ya{bottom:739.170000px;}
.y6f{bottom:741.720000px;}
.y9f{bottom:745.500000px;}
.y3c{bottom:754.950000px;}
.y9{bottom:760.020000px;}
.y6e{bottom:760.320000px;}
.y9e{bottom:764.400000px;}
.y3b{bottom:773.550000px;}
.y8{bottom:776.520000px;}
.y6d{bottom:779.220000px;}
.y9d{bottom:782.550000px;}
.y3a{bottom:792.150000px;}
.y7{bottom:795.720000px;}
.y6c{bottom:797.520000px;}
.y9c{bottom:801.150000px;}
.y39{bottom:810.750000px;}
.y6{bottom:813.420000px;}
.y6b{bottom:816.120000px;}
.y9b{bottom:819.750000px;}
.y38{bottom:829.200000px;}
.y5{bottom:832.170000px;}
.y6a{bottom:834.870000px;}
.y9a{bottom:838.350000px;}
.y37{bottom:847.800000px;}
.y4{bottom:850.770000px;}
.y69{bottom:853.470000px;}
.y99{bottom:856.800000px;}
.y36{bottom:866.250000px;}
.y3{bottom:869.070000px;}
.y68{bottom:871.770000px;}
.y98{bottom:875.100000px;}
.y35{bottom:884.700000px;}
.y67{bottom:890.370000px;}
.y2{bottom:893.070000px;}
.y97{bottom:893.400000px;}
.y34{bottom:903.450000px;}
.y66{bottom:908.820000px;}
.y1{bottom:910.470000px;}
.y96{bottom:911.700000px;}
.y33{bottom:922.050000px;}
.y65{bottom:928.020000px;}
.ha{height:13.200073px;}
.hb{height:43.804688px;}
.h8{height:66.713379px;}
.h5{height:72.168457px;}
.h7{height:73.735840px;}
.he{height:91.056000px;}
.h4{height:92.829000px;}
.hf{height:99.231000px;}
.h2{height:161.516602px;}
.h3{height:176.055000px;}
.h6{height:250.690430px;}
.h9{height:273.480469px;}
.h12{height:934.200000px;}
.h13{height:934.500000px;}
.h1{height:945.750000px;}
.h0{height:946.050000px;}
.hc{height:946.350000px;}
.hd{height:946.500000px;}
.h10{height:950.100000px;}
.h11{height:950.250000px;}
.w2{width:121.434000px;}
.w7{width:633.675000px;}
.w8{width:633.750000px;}
.w4{width:634.500000px;}
.w3{width:634.800000px;}
.w1{width:645.000000px;}
.w0{width:645.300000px;}
.w6{width:648.750000px;}
.w5{width:648.825000px;}
.x0{left:0.000000px;}
.xd{left:8.400000px;}
.xf{left:9.450000px;}
.x3{left:10.500000px;}
.x6{left:11.850000px;}
.x8{left:13.050000px;}
.x1f{left:14.100000px;}
.x14{left:15.150000px;}
.x15{left:16.200000px;}
.x16{left:17.250000px;}
.x17{left:18.450000px;}
.x1d{left:19.500000px;}
.x1b{left:20.850000px;}
.x26{left:21.900000px;}
.x4{left:27.600000px;}
.xc{left:36.750000px;}
.x29{left:38.850000px;}
.x13{left:40.500000px;}
.x20{left:42.900000px;}
.x28{left:44.850000px;}
.x2a{left:46.650000px;}
.x12{left:47.850000px;}
.x1c{left:54.900000px;}
.x18{left:56.400000px;}
.x21{left:66.450000px;}
.xa{left:68.550000px;}
.xe{left:69.900000px;}
.x10{left:75.600000px;}
.x22{left:78.300000px;}
.x23{left:85.350000px;}
.x5{left:101.550000px;}
.x24{left:109.950000px;}
.x7{left:111.000000px;}
.x2b{left:149.250000px;}
.x1a{left:168.600000px;}
.x2{left:181.200000px;}
.x9{left:182.250000px;}
.x11{left:247.350000px;}
.x25{left:260.934998px;}
.xb{left:262.500000px;}
.x1e{left:266.184998px;}
.x27{left:267.947479px;}
.x1{left:307.800000px;}
.x19{left:372.150000px;}
@media print{
.v2{vertical-align:-77.866667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:109.866667pt;}
.ls2{letter-spacing:-18.666667pt;}
.lsf{letter-spacing:-5.333333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.720000pt;}
.ls10{letter-spacing:1.293333pt;}
.ls14{letter-spacing:2.360000pt;}
.ls5{letter-spacing:2.666667pt;}
.lsc{letter-spacing:2.762667pt;}
.lsd{letter-spacing:3.280000pt;}
.ls9{letter-spacing:3.813333pt;}
.ls11{letter-spacing:4.152000pt;}
.ls12{letter-spacing:4.493333pt;}
.lse{letter-spacing:5.840000pt;}
.lsa{letter-spacing:6.293333pt;}
.lsb{letter-spacing:6.818667pt;}
.ls15{letter-spacing:6.826667pt;}
.ls7{letter-spacing:7.885333pt;}
.ls13{letter-spacing:8.818667pt;}
.ls8{letter-spacing:8.960000pt;}
.ls6{letter-spacing:9.874667pt;}
.ls17{letter-spacing:10.026667pt;}
.ls16{letter-spacing:10.973333pt;}
.ls0{letter-spacing:11.085333pt;}
.ls1{letter-spacing:52.501333pt;}
.ls3{letter-spacing:64.000000pt;}
.ws0{word-spacing:-64.146667pt;}
.ws4{word-spacing:-46.272000pt;}
.ws2{word-spacing:-13.496000pt;}
.wsa{word-spacing:-12.853333pt;}
.ws5{word-spacing:-12.210667pt;}
.wsc{word-spacing:-10.912000pt;}
.ws9{word-spacing:-6.877333pt;}
.ws1{word-spacing:-0.077333pt;}
.ws3{word-spacing:-0.040533pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:4.522667pt;}
.ws8{word-spacing:5.282667pt;}
.ws7{word-spacing:5.292800pt;}
._16{margin-left:-55.616000pt;}
._17{margin-left:-44.176000pt;}
._1b{margin-left:-34.501333pt;}
._20{margin-left:-33.088000pt;}
._18{margin-left:-29.893333pt;}
._15{margin-left:-28.746667pt;}
._1c{margin-left:-25.402667pt;}
._2b{margin-left:-23.509333pt;}
._3a{margin-left:-21.888000pt;}
._22{margin-left:-20.842667pt;}
._1f{margin-left:-19.338667pt;}
._30{margin-left:-18.194667pt;}
._3f{margin-left:-16.946667pt;}
._21{margin-left:-15.546667pt;}
._14{margin-left:-14.405333pt;}
._3b{margin-left:-13.085333pt;}
._23{margin-left:-11.816000pt;}
._4{margin-left:-10.560000pt;}
._5{margin-left:-9.386667pt;}
._6{margin-left:-8.213333pt;}
._1d{margin-left:-6.560000pt;}
._1a{margin-left:-5.570667pt;}
._19{margin-left:-4.362667pt;}
._3{margin-left:-3.434667pt;}
._2{margin-left:-1.717333pt;}
._12{width:1.114667pt;}
._9{width:2.832000pt;}
._c{width:3.909333pt;}
._f{width:5.240000pt;}
._d{width:6.205333pt;}
._8{width:7.584000pt;}
._7{width:8.832000pt;}
._0{width:10.304000pt;}
._10{width:11.285333pt;}
._11{width:13.189333pt;}
._a{width:14.400000pt;}
._24{width:15.370667pt;}
._b{width:16.512000pt;}
._2e{width:17.648000pt;}
._13{width:18.941333pt;}
._40{width:19.880000pt;}
._2c{width:20.813333pt;}
._31{width:21.856000pt;}
._e{width:22.808000pt;}
._2d{width:24.530667pt;}
._2a{width:25.650667pt;}
._33{width:28.629333pt;}
._35{width:30.082667pt;}
._28{width:34.288000pt;}
._39{width:37.282667pt;}
._27{width:44.736000pt;}
._2f{width:53.936000pt;}
._26{width:62.184000pt;}
._45{width:83.205333pt;}
._36{width:85.490667pt;}
._1e{width:95.069333pt;}
._34{width:99.304000pt;}
._29{width:111.818667pt;}
._42{width:126.242667pt;}
._41{width:136.720000pt;}
._3e{width:159.293333pt;}
._37{width:193.405333pt;}
._38{width:253.325333pt;}
._3c{width:291.853333pt;}
._44{width:338.882667pt;}
._43{width:426.837333pt;}
._32{width:742.538667pt;}
._3d{width:821.053333pt;}
._1{width:926.133333pt;}
._25{width:1214.312533pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:40.533333pt;}
.fsa{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fsd{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fse{font-size:66.133333pt;}
.fsf{font-size:69.333333pt;}
.fsb{font-size:74.666667pt;}
.fs4{font-size:77.333333pt;}
.fsc{font-size:82.666667pt;}
.fs0{font-size:122.666667pt;}
.fs1{font-size:146.666667pt;}
.fs6{font-size:176.000000pt;}
.fs8{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:2.760000pt;}
.y64{bottom:6.425212pt;}
.y31{bottom:6.425217pt;}
.yc2{bottom:8.933333pt;}
.y63{bottom:20.133333pt;}
.y30{bottom:24.906667pt;}
.y95{bottom:26.906667pt;}
.yc1{bottom:27.333333pt;}
.y62{bottom:37.466667pt;}
.y2f{bottom:41.706667pt;}
.yc0{bottom:42.933333pt;}
.y94{bottom:44.640000pt;}
.y61{bottom:54.800000pt;}
.y2e{bottom:59.306667pt;}
.y93{bottom:61.173333pt;}
.ybf{bottom:61.466667pt;}
.y60{bottom:71.600000pt;}
.y2d{bottom:76.106667pt;}
.y92{bottom:78.240000pt;}
.y5f{bottom:88.533333pt;}
.y2c{bottom:92.373333pt;}
.y91{bottom:94.773333pt;}
.ybe{bottom:96.800000pt;}
.y5e{bottom:104.666667pt;}
.y2b{bottom:109.173333pt;}
.y90{bottom:111.573333pt;}
.ybd{bottom:113.600000pt;}
.y5d{bottom:121.466667pt;}
.y2a{bottom:125.973333pt;}
.y8f{bottom:128.640000pt;}
.ybc{bottom:130.400000pt;}
.y5c{bottom:138.533333pt;}
.y29{bottom:142.773333pt;}
.y8e{bottom:145.440000pt;}
.ybb{bottom:147.200000pt;}
.y27{bottom:148.373333pt;}
.y5b{bottom:155.066667pt;}
.y28{bottom:159.306667pt;}
.y8d{bottom:161.973333pt;}
.yba{bottom:164.000000pt;}
.y5a{bottom:171.600000pt;}
.y8c{bottom:178.773333pt;}
.yb9{bottom:180.800000pt;}
.y59{bottom:188.400000pt;}
.y26{bottom:191.040000pt;}
.y8b{bottom:195.840000pt;}
.yb8{bottom:197.333333pt;}
.y58{bottom:205.200000pt;}
.y8a{bottom:212.106667pt;}
.y25{bottom:212.640000pt;}
.yb7{bottom:214.133333pt;}
.y57{bottom:221.733333pt;}
.y24{bottom:227.973333pt;}
.y89{bottom:228.640000pt;}
.yb6{bottom:230.666667pt;}
.y56{bottom:238.800000pt;}
.y23{bottom:242.106667pt;}
.y88{bottom:245.440000pt;}
.yb5{bottom:246.800000pt;}
.y55{bottom:255.200000pt;}
.y22{bottom:259.706667pt;}
.y87{bottom:261.840000pt;}
.y54{bottom:272.000000pt;}
.y21{bottom:276.506667pt;}
.y86{bottom:278.373333pt;}
.y53{bottom:288.800000pt;}
.y20{bottom:292.773333pt;}
.y85{bottom:295.173333pt;}
.yb4{bottom:297.200000pt;}
.y52{bottom:305.066667pt;}
.y1f{bottom:309.306667pt;}
.y84{bottom:311.973333pt;}
.yb3{bottom:314.133333pt;}
.y51{bottom:321.866667pt;}
.y1e{bottom:325.706667pt;}
.y83{bottom:327.840000pt;}
.yb2{bottom:331.200000pt;}
.y50{bottom:338.933333pt;}
.y1d{bottom:342.506667pt;}
.y82{bottom:345.040000pt;}
.yb1{bottom:347.600000pt;}
.y4f{bottom:355.733333pt;}
.y1c{bottom:358.773333pt;}
.y81{bottom:361.840000pt;}
.y1a{bottom:364.240000pt;}
.yb0{bottom:364.400000pt;}
.y4e{bottom:372.000000pt;}
.y1b{bottom:375.573333pt;}
.y80{bottom:379.173333pt;}
.yaf{bottom:381.200000pt;}
.y4d{bottom:388.800000pt;}
.y7f{bottom:395.040000pt;}
.yae{bottom:397.733333pt;}
.y4c{bottom:405.333333pt;}
.y19{bottom:406.773333pt;}
.y7e{bottom:411.840000pt;}
.yad{bottom:414.933333pt;}
.y4b{bottom:422.133333pt;}
.y18{bottom:425.440000pt;}
.y7d{bottom:428.640000pt;}
.yac{bottom:431.333333pt;}
.y4a{bottom:438.933333pt;}
.y17{bottom:442.506667pt;}
.y7c{bottom:445.440000pt;}
.yab{bottom:448.133333pt;}
.y49{bottom:455.733333pt;}
.y16{bottom:458.906667pt;}
.y7b{bottom:461.973333pt;}
.y48{bottom:471.333333pt;}
.y15{bottom:474.906667pt;}
.y7a{bottom:477.040000pt;}
.yaa{bottom:480.000000pt;}
.y47{bottom:488.400000pt;}
.y14{bottom:491.706667pt;}
.y79{bottom:493.440000pt;}
.ya9{bottom:496.800000pt;}
.y46{bottom:504.800000pt;}
.y13{bottom:508.506667pt;}
.y78{bottom:509.973333pt;}
.ya8{bottom:513.333333pt;}
.y45{bottom:521.333333pt;}
.y12{bottom:524.373333pt;}
.y77{bottom:526.773333pt;}
.ya7{bottom:530.000000pt;}
.y44{bottom:538.400000pt;}
.y11{bottom:541.173333pt;}
.y76{bottom:543.040000pt;}
.ya6{bottom:546.533333pt;}
.y43{bottom:554.933333pt;}
.y10{bottom:557.706667pt;}
.y75{bottom:559.840000pt;}
.ya5{bottom:563.333333pt;}
.y42{bottom:571.466667pt;}
.yf{bottom:574.240000pt;}
.y74{bottom:576.506667pt;}
.ya4{bottom:579.866667pt;}
.yd{bottom:579.973333pt;}
.y41{bottom:588.000000pt;}
.ye{bottom:591.040000pt;}
.y73{bottom:593.040000pt;}
.ya3{bottom:596.400000pt;}
.y40{bottom:604.666667pt;}
.y72{bottom:609.573333pt;}
.ya2{bottom:612.933333pt;}
.yc{bottom:620.106667pt;}
.y3f{bottom:621.333333pt;}
.y71{bottom:626.373333pt;}
.ya1{bottom:629.600000pt;}
.y3e{bottom:638.000000pt;}
.yb{bottom:640.106667pt;}
.y70{bottom:642.640000pt;}
.ya0{bottom:646.133333pt;}
.y3d{bottom:654.266667pt;}
.ya{bottom:657.040000pt;}
.y6f{bottom:659.306667pt;}
.y9f{bottom:662.666667pt;}
.y3c{bottom:671.066667pt;}
.y9{bottom:675.573333pt;}
.y6e{bottom:675.840000pt;}
.y9e{bottom:679.466667pt;}
.y3b{bottom:687.600000pt;}
.y8{bottom:690.240000pt;}
.y6d{bottom:692.640000pt;}
.y9d{bottom:695.600000pt;}
.y3a{bottom:704.133333pt;}
.y7{bottom:707.306667pt;}
.y6c{bottom:708.906667pt;}
.y9c{bottom:712.133333pt;}
.y39{bottom:720.666667pt;}
.y6{bottom:723.040000pt;}
.y6b{bottom:725.440000pt;}
.y9b{bottom:728.666667pt;}
.y38{bottom:737.066667pt;}
.y5{bottom:739.706667pt;}
.y6a{bottom:742.106667pt;}
.y9a{bottom:745.200000pt;}
.y37{bottom:753.600000pt;}
.y4{bottom:756.240000pt;}
.y69{bottom:758.640000pt;}
.y99{bottom:761.600000pt;}
.y36{bottom:770.000000pt;}
.y3{bottom:772.506667pt;}
.y68{bottom:774.906667pt;}
.y98{bottom:777.866667pt;}
.y35{bottom:786.400000pt;}
.y67{bottom:791.440000pt;}
.y2{bottom:793.840000pt;}
.y97{bottom:794.133333pt;}
.y34{bottom:803.066667pt;}
.y66{bottom:807.840000pt;}
.y1{bottom:809.306667pt;}
.y96{bottom:810.400000pt;}
.y33{bottom:819.600000pt;}
.y65{bottom:824.906667pt;}
.ha{height:11.733399pt;}
.hb{height:38.937500pt;}
.h8{height:59.300781pt;}
.h5{height:64.149740pt;}
.h7{height:65.542969pt;}
.he{height:80.938667pt;}
.h4{height:82.514667pt;}
.hf{height:88.205333pt;}
.h2{height:143.570312pt;}
.h3{height:156.493333pt;}
.h6{height:222.835938pt;}
.h9{height:243.093750pt;}
.h12{height:830.400000pt;}
.h13{height:830.666667pt;}
.h1{height:840.666667pt;}
.h0{height:840.933333pt;}
.hc{height:841.200000pt;}
.hd{height:841.333333pt;}
.h10{height:844.533333pt;}
.h11{height:844.666667pt;}
.w2{width:107.941333pt;}
.w7{width:563.266667pt;}
.w8{width:563.333333pt;}
.w4{width:564.000000pt;}
.w3{width:564.266667pt;}
.w1{width:573.333333pt;}
.w0{width:573.600000pt;}
.w6{width:576.666667pt;}
.w5{width:576.733333pt;}
.x0{left:0.000000pt;}
.xd{left:7.466667pt;}
.xf{left:8.400000pt;}
.x3{left:9.333333pt;}
.x6{left:10.533333pt;}
.x8{left:11.600000pt;}
.x1f{left:12.533333pt;}
.x14{left:13.466667pt;}
.x15{left:14.400000pt;}
.x16{left:15.333333pt;}
.x17{left:16.400000pt;}
.x1d{left:17.333333pt;}
.x1b{left:18.533333pt;}
.x26{left:19.466667pt;}
.x4{left:24.533333pt;}
.xc{left:32.666667pt;}
.x29{left:34.533333pt;}
.x13{left:36.000000pt;}
.x20{left:38.133333pt;}
.x28{left:39.866667pt;}
.x2a{left:41.466667pt;}
.x12{left:42.533333pt;}
.x1c{left:48.800000pt;}
.x18{left:50.133333pt;}
.x21{left:59.066667pt;}
.xa{left:60.933333pt;}
.xe{left:62.133333pt;}
.x10{left:67.200000pt;}
.x22{left:69.600000pt;}
.x23{left:75.866667pt;}
.x5{left:90.266667pt;}
.x24{left:97.733333pt;}
.x7{left:98.666667pt;}
.x2b{left:132.666667pt;}
.x1a{left:149.866667pt;}
.x2{left:161.066667pt;}
.x9{left:162.000000pt;}
.x11{left:219.866667pt;}
.x25{left:231.942220pt;}
.xb{left:233.333333pt;}
.x1e{left:236.608887pt;}
.x27{left:238.175537pt;}
.x1{left:273.600000pt;}
.x19{left:330.800000pt;}
}




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