
    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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_39bf090a9d2cddfe2ebca6c0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4c0b4bb9865a69ee5b1e1257.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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_ac1f005a1ef366f347ab33ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_3ee6b364cc70d8a58d1174af.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0f97de5d1e0de3e38fb275ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_be4e873a01a5617936bcb978.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_7422c2eea773eeb2c2a91cf5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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);}
.v1{vertical-align:-73.440000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.630000px;}
.ls7{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.466800px;}
.lsb{letter-spacing:-0.313800px;}
.ls9{letter-spacing:-0.089400px;}
.lsd{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.178800px;}
.lsf{letter-spacing:0.200160px;}
.lsc{letter-spacing:0.466800px;}
.ls10{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.493920px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.869760px;}
.ls2{letter-spacing:1.080000px;}
.ls13{letter-spacing:16.306560px;}
.ls3{letter-spacing:46.546560px;}
.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:-21.058800px;}
.wsb{word-spacing:-15.606600px;}
.ws7{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.653200px;}
.ws6{word-spacing:-13.680000px;}
.ws5{word-spacing:-13.366200px;}
.ws9{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._15{margin-left:-3.703680px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._10{width:4.507200px;}
._11{width:5.955360px;}
._12{width:7.223040px;}
._13{width:8.591040px;}
._a{width:10.114560px;}
._c{width:11.217600px;}
._b{width:12.281760px;}
._14{width:13.426080px;}
._6{width:16.591680px;}
._17{width:19.293120px;}
._16{width:21.228480px;}
._1a{width:23.895360px;}
._19{width:25.133760px;}
._8{width:30.977280px;}
._9{width:32.115120px;}
._7{width:33.131280px;}
._f{width:35.790720px;}
._e{width:37.123200px;}
._d{width:38.459520px;}
._18{width:41.127360px;}
._5{width:1538.240160px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y47{bottom:2.865000px;}
.y5{bottom:3.960000px;}
.y57{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y46{bottom:10.425000px;}
.y52{bottom:15.825000px;}
.y4{bottom:21.240000px;}
.y51{bottom:33.465000px;}
.y3d{bottom:38.565000px;}
.y45{bottom:39.945000px;}
.y3{bottom:44.280000px;}
.y44{bottom:52.185000px;}
.y50{bottom:55.065000px;}
.y3c{bottom:55.845000px;}
.y8{bottom:57.636000px;}
.y43{bottom:65.145000px;}
.y3b{bottom:72.765000px;}
.y4f{bottom:74.145000px;}
.y7{bottom:74.916000px;}
.y42{bottom:78.105000px;}
.y4e{bottom:89.625000px;}
.ycc{bottom:94.356000px;}
.y4d{bottom:98.985000px;}
.y3a{bottom:99.405000px;}
.y41{bottom:99.705000px;}
.y8f{bottom:104.076000px;}
.ycb{bottom:111.636000px;}
.y55{bottom:112.716000px;}
.y39{bottom:116.685000px;}
.y4c{bottom:118.095000px;}
.y8e{bottom:121.356000px;}
.yca{bottom:128.916000px;}
.y54{bottom:131.076000px;}
.y4b{bottom:133.575000px;}
.y38{bottom:133.965000px;}
.y8d{bottom:138.636000px;}
.yc9{bottom:146.232000px;}
.y4a{bottom:149.055000px;}
.y53{bottom:149.472000px;}
.y37{bottom:151.245000px;}
.y8c{bottom:155.955000px;}
.y40{bottom:162.015000px;}
.yc8{bottom:163.515000px;}
.y3e{bottom:164.250000px;}
.y49{bottom:164.535000px;}
.y36{bottom:168.165000px;}
.y3f{bottom:172.815000px;}
.y8b{bottom:173.235000px;}
.ya5{bottom:178.275000px;}
.y48{bottom:179.655000px;}
.yc7{bottom:180.795000px;}
.y35{bottom:185.475000px;}
.y8a{bottom:190.515000px;}
.yc6{bottom:198.075000px;}
.y34{bottom:202.755000px;}
.ya4{bottom:204.555000px;}
.y89{bottom:207.795000px;}
.yc5{bottom:215.355000px;}
.y33{bottom:220.035000px;}
.y88{bottom:225.075000px;}
.ya3{bottom:230.835000px;}
.yc4{bottom:231.915000px;}
.y32{bottom:236.955000px;}
.y87{bottom:242.355000px;}
.ya2{bottom:257.475000px;}
.yc3{bottom:258.555000px;}
.y86{bottom:259.275000px;}
.y31{bottom:263.595000px;}
.ya1{bottom:274.785000px;}
.yc2{bottom:275.865000px;}
.y85{bottom:276.225000px;}
.y30{bottom:280.875000px;}
.y1d{bottom:285.195000px;}
.ya0{bottom:291.705000px;}
.yc1{bottom:293.145000px;}
.y2f{bottom:298.155000px;}
.y84{bottom:302.865000px;}
.y9f{bottom:308.985000px;}
.y1c{bottom:309.345000px;}
.yc0{bottom:310.425000px;}
.y2e{bottom:315.465000px;}
.y83{bottom:320.145000px;}
.ybf{bottom:327.705000px;}
.y2d{bottom:332.745000px;}
.y1b{bottom:333.465000px;}
.y82{bottom:337.425000px;}
.ybe{bottom:344.985000px;}
.y2c{bottom:350.025000px;}
.y81{bottom:354.705000px;}
.y1a{bottom:357.585000px;}
.ybd{bottom:362.265000px;}
.yf{bottom:366.585000px;}
.y2b{bottom:366.945000px;}
.y80{bottom:371.985000px;}
.ybc{bottom:379.545000px;}
.y19{bottom:381.705000px;}
.y2a{bottom:383.865000px;}
.y7f{bottom:389.265000px;}
.ybb{bottom:396.825000px;}
.y18{bottom:405.825000px;}
.y7e{bottom:406.590000px;}
.y29{bottom:409.785000px;}
.yba{bottom:414.150000px;}
.y7d{bottom:423.870000px;}
.y28{bottom:425.625000px;}
.y17{bottom:429.945000px;}
.yb9{bottom:431.070000px;}
.y27{bottom:441.150000px;}
.yb8{bottom:448.350000px;}
.y16{bottom:454.110000px;}
.y26{bottom:456.630000px;}
.y7c{bottom:458.430000px;}
.yb7{bottom:465.630000px;}
.y25{bottom:472.110000px;}
.y7b{bottom:474.990000px;}
.y15{bottom:478.590000px;}
.yb6{bottom:482.910000px;}
.y24{bottom:487.590000px;}
.yb5{bottom:500.190000px;}
.y7a{bottom:501.630000px;}
.y14{bottom:502.710000px;}
.y23{bottom:503.070000px;}
.yb4{bottom:517.470000px;}
.y22{bottom:518.550000px;}
.y79{bottom:518.910000px;}
.y13{bottom:526.830000px;}
.y21{bottom:534.030000px;}
.yb3{bottom:534.750000px;}
.y78{bottom:536.190000px;}
.y20{bottom:549.870000px;}
.y12{bottom:550.950000px;}
.yb2{bottom:552.060000px;}
.y77{bottom:553.500000px;}
.y1f{bottom:565.350000px;}
.yb1{bottom:569.340000px;}
.y76{bottom:570.780000px;}
.y11{bottom:575.100000px;}
.yb0{bottom:586.620000px;}
.y75{bottom:588.060000px;}
.y1e{bottom:595.980000px;}
.y10{bottom:599.220000px;}
.yaf{bottom:603.900000px;}
.y74{bottom:605.340000px;}
.yae{bottom:620.820000px;}
.y73{bottom:622.620000px;}
.yad{bottom:638.100000px;}
.y72{bottom:639.540000px;}
.yac{bottom:655.380000px;}
.y9e{bottom:657.180000px;}
.y71{bottom:666.180000px;}
.yab{bottom:672.690000px;}
.y9d{bottom:674.130000px;}
.y70{bottom:683.130000px;}
.yaa{bottom:689.970000px;}
.y9c{bottom:691.410000px;}
.y6f{bottom:700.410000px;}
.ya9{bottom:707.250000px;}
.y9b{bottom:708.690000px;}
.y6e{bottom:717.690000px;}
.ya8{bottom:724.170000px;}
.y9a{bottom:725.970000px;}
.y6d{bottom:734.970000px;}
.y99{bottom:742.890000px;}
.ya7{bottom:750.450000px;}
.y6c{bottom:752.250000px;}
.y6b{bottom:769.170000px;}
.y98{bottom:769.530000px;}
.ya6{bottom:773.130000px;}
.y97{bottom:786.810000px;}
.y6a{bottom:795.810000px;}
.y96{bottom:804.135000px;}
.y69{bottom:813.135000px;}
.y95{bottom:821.415000px;}
.y68{bottom:830.415000px;}
.y94{bottom:838.695000px;}
.y67{bottom:847.695000px;}
.y93{bottom:855.975000px;}
.y66{bottom:864.975000px;}
.y92{bottom:873.255000px;}
.y65{bottom:882.255000px;}
.y91{bottom:890.175000px;}
.y64{bottom:899.175000px;}
.y90{bottom:907.095000px;}
.y63{bottom:916.455000px;}
.y62{bottom:933.765000px;}
.y61{bottom:951.045000px;}
.yce{bottom:967.605000px;}
.y60{bottom:968.325000px;}
.ye{bottom:977.685000px;}
.yd{bottom:983.085000px;}
.y5f{bottom:985.605000px;}
.yc{bottom:1000.365000px;}
.y5e{bottom:1002.885000px;}
.y5d{bottom:1020.165000px;}
.yb{bottom:1035.645000px;}
.y5c{bottom:1037.445000px;}
.y5b{bottom:1054.725000px;}
.ya{bottom:1059.765000px;}
.y5a{bottom:1072.050000px;}
.y9{bottom:1088.250000px;}
.y59{bottom:1088.970000px;}
.y56{bottom:1091.520000px;}
.y58{bottom:1105.890000px;}
.ycd{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h14{height:5.650313px;}
.ha{height:5.653125px;}
.h7{height:24.348516px;}
.h17{height:27.720000px;}
.h12{height:29.678906px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h19{height:43.410938px;}
.he{height:53.677969px;}
.h13{height:55.147500px;}
.h8{height:58.050000px;}
.h15{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.hf{height:60.952500px;}
.h16{height:61.927031px;}
.h10{height:62.163910px;}
.h18{height:63.455625px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h4{height:116.640000px;}
.h11{height:201.600000px;}
.hb{height:608.565000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x16{left:8.295000px;}
.x4{left:13.305000px;}
.x14{left:16.546500px;}
.x1a{left:18.346500px;}
.x5{left:19.425000px;}
.x13{left:29.146500px;}
.x18{left:35.295000px;}
.x6{left:43.575000px;}
.x1b{left:47.542500px;}
.xe{left:50.782500px;}
.xd{left:55.102500px;}
.x1d{left:57.262500px;}
.x17{left:62.295000px;}
.x1c{left:66.265500px;}
.x10{left:76.705500px;}
.x1{left:78.529500px;}
.x12{left:80.305500px;}
.x11{left:83.905500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x1e{left:102.985500px;}
.x19{left:106.945500px;}
.xf{left:124.585500px;}
.x20{left:140.472000px;}
.x3{left:182.250000px;}
.x15{left:218.970000px;}
.xc{left:526.170000px;}
.xb{left:650.415000px;}
.x21{left:701.205000px;}
.xa{left:766.050000px;}
.x8{left:791.970000px;}
.x9{left:807.090000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.560000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.414933pt;}
.lsb{letter-spacing:-0.278933pt;}
.ls9{letter-spacing:-0.079467pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.158933pt;}
.lsf{letter-spacing:0.177920pt;}
.lsc{letter-spacing:0.414933pt;}
.ls10{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.439040pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.773120pt;}
.ls2{letter-spacing:0.960000pt;}
.ls13{letter-spacing:14.494720pt;}
.ls3{letter-spacing:41.374720pt;}
.ws1{word-spacing:-18.718933pt;}
.wsb{word-spacing:-13.872533pt;}
.ws7{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.025067pt;}
.ws6{word-spacing:-12.160000pt;}
.ws5{word-spacing:-11.881067pt;}
.ws9{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._15{margin-left:-3.292160pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._10{width:4.006400pt;}
._11{width:5.293653pt;}
._12{width:6.420480pt;}
._13{width:7.636480pt;}
._a{width:8.990720pt;}
._c{width:9.971200pt;}
._b{width:10.917120pt;}
._14{width:11.934293pt;}
._6{width:14.748160pt;}
._17{width:17.149440pt;}
._16{width:18.869760pt;}
._1a{width:21.240320pt;}
._19{width:22.341120pt;}
._8{width:27.535360pt;}
._9{width:28.546773pt;}
._7{width:29.450027pt;}
._f{width:31.813973pt;}
._e{width:32.998400pt;}
._d{width:34.186240pt;}
._18{width:36.557653pt;}
._5{width:1367.324587pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.546667pt;}
.y5{bottom:3.520000pt;}
.y57{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y46{bottom:9.266667pt;}
.y52{bottom:14.066667pt;}
.y4{bottom:18.880000pt;}
.y51{bottom:29.746667pt;}
.y3d{bottom:34.280000pt;}
.y45{bottom:35.506667pt;}
.y3{bottom:39.360000pt;}
.y44{bottom:46.386667pt;}
.y50{bottom:48.946667pt;}
.y3c{bottom:49.640000pt;}
.y8{bottom:51.232000pt;}
.y43{bottom:57.906667pt;}
.y3b{bottom:64.680000pt;}
.y4f{bottom:65.906667pt;}
.y7{bottom:66.592000pt;}
.y42{bottom:69.426667pt;}
.y4e{bottom:79.666667pt;}
.ycc{bottom:83.872000pt;}
.y4d{bottom:87.986667pt;}
.y3a{bottom:88.360000pt;}
.y41{bottom:88.626667pt;}
.y8f{bottom:92.512000pt;}
.ycb{bottom:99.232000pt;}
.y55{bottom:100.192000pt;}
.y39{bottom:103.720000pt;}
.y4c{bottom:104.973333pt;}
.y8e{bottom:107.872000pt;}
.yca{bottom:114.592000pt;}
.y54{bottom:116.512000pt;}
.y4b{bottom:118.733333pt;}
.y38{bottom:119.080000pt;}
.y8d{bottom:123.232000pt;}
.yc9{bottom:129.984000pt;}
.y4a{bottom:132.493333pt;}
.y53{bottom:132.864000pt;}
.y37{bottom:134.440000pt;}
.y8c{bottom:138.626667pt;}
.y40{bottom:144.013333pt;}
.yc8{bottom:145.346667pt;}
.y3e{bottom:146.000000pt;}
.y49{bottom:146.253333pt;}
.y36{bottom:149.480000pt;}
.y3f{bottom:153.613333pt;}
.y8b{bottom:153.986667pt;}
.ya5{bottom:158.466667pt;}
.y48{bottom:159.693333pt;}
.yc7{bottom:160.706667pt;}
.y35{bottom:164.866667pt;}
.y8a{bottom:169.346667pt;}
.yc6{bottom:176.066667pt;}
.y34{bottom:180.226667pt;}
.ya4{bottom:181.826667pt;}
.y89{bottom:184.706667pt;}
.yc5{bottom:191.426667pt;}
.y33{bottom:195.586667pt;}
.y88{bottom:200.066667pt;}
.ya3{bottom:205.186667pt;}
.yc4{bottom:206.146667pt;}
.y32{bottom:210.626667pt;}
.y87{bottom:215.426667pt;}
.ya2{bottom:228.866667pt;}
.yc3{bottom:229.826667pt;}
.y86{bottom:230.466667pt;}
.y31{bottom:234.306667pt;}
.ya1{bottom:244.253333pt;}
.yc2{bottom:245.213333pt;}
.y85{bottom:245.533333pt;}
.y30{bottom:249.666667pt;}
.y1d{bottom:253.506667pt;}
.ya0{bottom:259.293333pt;}
.yc1{bottom:260.573333pt;}
.y2f{bottom:265.026667pt;}
.y84{bottom:269.213333pt;}
.y9f{bottom:274.653333pt;}
.y1c{bottom:274.973333pt;}
.yc0{bottom:275.933333pt;}
.y2e{bottom:280.413333pt;}
.y83{bottom:284.573333pt;}
.ybf{bottom:291.293333pt;}
.y2d{bottom:295.773333pt;}
.y1b{bottom:296.413333pt;}
.y82{bottom:299.933333pt;}
.ybe{bottom:306.653333pt;}
.y2c{bottom:311.133333pt;}
.y81{bottom:315.293333pt;}
.y1a{bottom:317.853333pt;}
.ybd{bottom:322.013333pt;}
.yf{bottom:325.853333pt;}
.y2b{bottom:326.173333pt;}
.y80{bottom:330.653333pt;}
.ybc{bottom:337.373333pt;}
.y19{bottom:339.293333pt;}
.y2a{bottom:341.213333pt;}
.y7f{bottom:346.013333pt;}
.ybb{bottom:352.733333pt;}
.y18{bottom:360.733333pt;}
.y7e{bottom:361.413333pt;}
.y29{bottom:364.253333pt;}
.yba{bottom:368.133333pt;}
.y7d{bottom:376.773333pt;}
.y28{bottom:378.333333pt;}
.y17{bottom:382.173333pt;}
.yb9{bottom:383.173333pt;}
.y27{bottom:392.133333pt;}
.yb8{bottom:398.533333pt;}
.y16{bottom:403.653333pt;}
.y26{bottom:405.893333pt;}
.y7c{bottom:407.493333pt;}
.yb7{bottom:413.893333pt;}
.y25{bottom:419.653333pt;}
.y7b{bottom:422.213333pt;}
.y15{bottom:425.413333pt;}
.yb6{bottom:429.253333pt;}
.y24{bottom:433.413333pt;}
.yb5{bottom:444.613333pt;}
.y7a{bottom:445.893333pt;}
.y14{bottom:446.853333pt;}
.y23{bottom:447.173333pt;}
.yb4{bottom:459.973333pt;}
.y22{bottom:460.933333pt;}
.y79{bottom:461.253333pt;}
.y13{bottom:468.293333pt;}
.y21{bottom:474.693333pt;}
.yb3{bottom:475.333333pt;}
.y78{bottom:476.613333pt;}
.y20{bottom:488.773333pt;}
.y12{bottom:489.733333pt;}
.yb2{bottom:490.720000pt;}
.y77{bottom:492.000000pt;}
.y1f{bottom:502.533333pt;}
.yb1{bottom:506.080000pt;}
.y76{bottom:507.360000pt;}
.y11{bottom:511.200000pt;}
.yb0{bottom:521.440000pt;}
.y75{bottom:522.720000pt;}
.y1e{bottom:529.760000pt;}
.y10{bottom:532.640000pt;}
.yaf{bottom:536.800000pt;}
.y74{bottom:538.080000pt;}
.yae{bottom:551.840000pt;}
.y73{bottom:553.440000pt;}
.yad{bottom:567.200000pt;}
.y72{bottom:568.480000pt;}
.yac{bottom:582.560000pt;}
.y9e{bottom:584.160000pt;}
.y71{bottom:592.160000pt;}
.yab{bottom:597.946667pt;}
.y9d{bottom:599.226667pt;}
.y70{bottom:607.226667pt;}
.yaa{bottom:613.306667pt;}
.y9c{bottom:614.586667pt;}
.y6f{bottom:622.586667pt;}
.ya9{bottom:628.666667pt;}
.y9b{bottom:629.946667pt;}
.y6e{bottom:637.946667pt;}
.ya8{bottom:643.706667pt;}
.y9a{bottom:645.306667pt;}
.y6d{bottom:653.306667pt;}
.y99{bottom:660.346667pt;}
.ya7{bottom:667.066667pt;}
.y6c{bottom:668.666667pt;}
.y6b{bottom:683.706667pt;}
.y98{bottom:684.026667pt;}
.ya6{bottom:687.226667pt;}
.y97{bottom:699.386667pt;}
.y6a{bottom:707.386667pt;}
.y96{bottom:714.786667pt;}
.y69{bottom:722.786667pt;}
.y95{bottom:730.146667pt;}
.y68{bottom:738.146667pt;}
.y94{bottom:745.506667pt;}
.y67{bottom:753.506667pt;}
.y93{bottom:760.866667pt;}
.y66{bottom:768.866667pt;}
.y92{bottom:776.226667pt;}
.y65{bottom:784.226667pt;}
.y91{bottom:791.266667pt;}
.y64{bottom:799.266667pt;}
.y90{bottom:806.306667pt;}
.y63{bottom:814.626667pt;}
.y62{bottom:830.013333pt;}
.y61{bottom:845.373333pt;}
.yce{bottom:860.093333pt;}
.y60{bottom:860.733333pt;}
.ye{bottom:869.053333pt;}
.yd{bottom:873.853333pt;}
.y5f{bottom:876.093333pt;}
.yc{bottom:889.213333pt;}
.y5e{bottom:891.453333pt;}
.y5d{bottom:906.813333pt;}
.yb{bottom:920.573333pt;}
.y5c{bottom:922.173333pt;}
.y5b{bottom:937.533333pt;}
.ya{bottom:942.013333pt;}
.y5a{bottom:952.933333pt;}
.y9{bottom:967.333333pt;}
.y59{bottom:967.973333pt;}
.y56{bottom:970.240000pt;}
.y58{bottom:983.013333pt;}
.ycd{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h14{height:5.022500pt;}
.ha{height:5.025000pt;}
.h7{height:21.643125pt;}
.h17{height:24.640000pt;}
.h12{height:26.381250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h19{height:38.587500pt;}
.he{height:47.713750pt;}
.h13{height:49.020000pt;}
.h8{height:51.600000pt;}
.h15{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.hf{height:54.180000pt;}
.h16{height:55.046250pt;}
.h10{height:55.256809pt;}
.h18{height:56.405000pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h4{height:103.680000pt;}
.h11{height:179.200000pt;}
.hb{height:540.946667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x16{left:7.373333pt;}
.x4{left:11.826667pt;}
.x14{left:14.708000pt;}
.x1a{left:16.308000pt;}
.x5{left:17.266667pt;}
.x13{left:25.908000pt;}
.x18{left:31.373333pt;}
.x6{left:38.733333pt;}
.x1b{left:42.260000pt;}
.xe{left:45.140000pt;}
.xd{left:48.980000pt;}
.x1d{left:50.900000pt;}
.x17{left:55.373333pt;}
.x1c{left:58.902667pt;}
.x10{left:68.182667pt;}
.x1{left:69.804000pt;}
.x12{left:71.382667pt;}
.x11{left:74.582667pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x1e{left:91.542667pt;}
.x19{left:95.062667pt;}
.xf{left:110.742667pt;}
.x20{left:124.864000pt;}
.x3{left:162.000000pt;}
.x15{left:194.640000pt;}
.xc{left:467.706667pt;}
.xb{left:578.146667pt;}
.x21{left:623.293333pt;}
.xa{left:680.933333pt;}
.x8{left:703.973333pt;}
.x9{left:717.413333pt;}
}




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