
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_d998581a1d7a00ff2e9db1b0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_fe93beb0113dc419f516b726.woff')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_3c259f03b318919eac7e463a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_ed32d51b5e7edbd638829036.woff')format("woff");}.ff5{font-family:ff5;line-height:1.109375;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_cf744b2330a40b674653a68c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_da1b2d8c3478f91903f85a40.woff')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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls11{letter-spacing:-0.114000px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.057000px;}
.ls10{letter-spacing:-0.048960px;}
.ls12{letter-spacing:-0.023400px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls14{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-60.120000px;}
.ws2{word-spacing:-18.396600px;}
.ws8{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.379600px;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.203000px;}
.wsc{word-spacing:-13.177440px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._5{margin-left:-3.612001px;}
._2{margin-left:-2.464800px;}
._0{margin-left:-1.110000px;}
._1{width:1.118292px;}
._4{width:3.090108px;}
._8{width:4.424892px;}
._c{width:5.470800px;}
._d{width:6.794402px;}
._10{width:7.837905px;}
._9{width:9.619200px;}
._e{width:10.701600px;}
._3{width:12.144000px;}
._6{width:14.729400px;}
._7{width:16.413000px;}
._13{width:17.735400px;}
._f{width:19.418760px;}
._1e{width:20.488438px;}
._a{width:21.523200px;}
._b{width:22.603797px;}
._14{width:54.288360px;}
._11{width:56.512800px;}
._18{width:62.656200px;}
._1b{width:85.340160px;}
._19{width:86.632920px;}
._1d{width:92.224080px;}
._12{width:93.694800px;}
._17{width:102.925440px;}
._1f{width:110.981520px;}
._15{width:121.863240px;}
._16{width:146.993400px;}
._1a{width:160.760880px;}
._1c{width:569.336400px;}
._20{width:573.484680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:7.830000px;}
.y5e{bottom:7.920000px;}
.y3c{bottom:25.380000px;}
.y39{bottom:25.470000px;}
.y61{bottom:43.020000px;}
.y5d{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y28{bottom:129.630000px;}
.y56{bottom:132.240000px;}
.ybc{bottom:132.960000px;}
.ya2{bottom:141.150000px;}
.y27{bottom:147.270000px;}
.y55{bottom:149.790000px;}
.ybb{bottom:150.600000px;}
.y26{bottom:164.820000px;}
.y54{bottom:167.430000px;}
.yba{bottom:168.150000px;}
.ya1{bottom:176.700000px;}
.y25{bottom:182.370000px;}
.y53{bottom:184.980000px;}
.yb9{bottom:185.700000px;}
.y7c{bottom:187.320000px;}
.yeb{bottom:188.310000px;}
.y52{bottom:202.530000px;}
.yb8{bottom:203.340000px;}
.y7b{bottom:204.870000px;}
.yea{bottom:205.860000px;}
.ya0{bottom:212.340000px;}
.y24{bottom:218.010000px;}
.y7a{bottom:222.510000px;}
.y51{bottom:229.170000px;}
.y9f{bottom:229.890000px;}
.ye9{bottom:232.500000px;}
.y23{bottom:235.560000px;}
.yb7{bottom:238.890000px;}
.y79{bottom:240.060000px;}
.y9e{bottom:247.440000px;}
.ye8{bottom:250.050000px;}
.y22{bottom:253.200000px;}
.yb6{bottom:256.440000px;}
.y78{bottom:257.610000px;}
.y50{bottom:264.720000px;}
.y9d{bottom:265.080000px;}
.ye7{bottom:267.600000px;}
.y21{bottom:270.750000px;}
.yb5{bottom:274.080000px;}
.y77{bottom:275.250000px;}
.y4f{bottom:282.360000px;}
.y9c{bottom:282.630000px;}
.ye6{bottom:285.240000px;}
.y20{bottom:288.300000px;}
.yb4{bottom:291.630000px;}
.y76{bottom:292.800000px;}
.y4e{bottom:299.910000px;}
.y1f{bottom:305.940000px;}
.yb3{bottom:309.270000px;}
.y75{bottom:310.440000px;}
.ye5{bottom:311.790000px;}
.y4d{bottom:317.460000px;}
.y9b{bottom:318.270000px;}
.ye4{bottom:329.430000px;}
.y4c{bottom:335.100000px;}
.y9a{bottom:335.820000px;}
.y1e{bottom:341.490000px;}
.y74{bottom:345.990000px;}
.ye3{bottom:346.980000px;}
.y99{bottom:353.370000px;}
.y1d{bottom:359.130000px;}
.y73{bottom:363.540000px;}
.ye2{bottom:364.530000px;}
.y4b{bottom:370.650000px;}
.y98{bottom:371.010000px;}
.yb2{bottom:371.370000px;}
.y1c{bottom:376.680000px;}
.y72{bottom:381.180000px;}
.y4a{bottom:388.290000px;}
.yb1{bottom:389.010000px;}
.ye1{bottom:391.170000px;}
.y1b{bottom:394.230000px;}
.y71{bottom:398.730000px;}
.y49{bottom:405.840000px;}
.y97{bottom:406.560000px;}
.ye0{bottom:408.720000px;}
.y1a{bottom:411.870000px;}
.y48{bottom:423.390000px;}
.y96{bottom:424.200000px;}
.y70{bottom:425.370000px;}
.ydf{bottom:426.360000px;}
.y19{bottom:438.780000px;}
.y47{bottom:441.030000px;}
.y95{bottom:441.750000px;}
.yde{bottom:452.910000px;}
.y94{bottom:459.300000px;}
.y6f{bottom:460.920000px;}
.ydd{bottom:470.490000px;}
.y46{bottom:476.610000px;}
.y93{bottom:476.970000px;}
.y6e{bottom:478.500000px;}
.y18{bottom:487.410000px;}
.ydc{bottom:488.130000px;}
.y45{bottom:494.160000px;}
.yb0{bottom:494.970000px;}
.y6d{bottom:496.140000px;}
.y92{bottom:503.520000px;}
.y44{bottom:511.800000px;}
.yaf{bottom:512.520000px;}
.y6c{bottom:513.690000px;}
.ydb{bottom:514.680000px;}
.y17{bottom:524.400000px;}
.y43{bottom:529.350000px;}
.yae{bottom:530.160000px;}
.y6b{bottom:531.330000px;}
.yda{bottom:532.230000px;}
.y91{bottom:539.160000px;}
.y16{bottom:541.950000px;}
.y42{bottom:546.990000px;}
.yad{bottom:547.710000px;}
.y6a{bottom:548.880000px;}
.yd9{bottom:549.870000px;}
.y90{bottom:556.710000px;}
.y15{bottom:559.590000px;}
.yd8{bottom:567.420000px;}
.y41{bottom:573.900000px;}
.y8f{bottom:574.260000px;}
.y14{bottom:577.140000px;}
.y69{bottom:584.430000px;}
.y8e{bottom:591.900000px;}
.yd7{bottom:594.060000px;}
.y13{bottom:594.780000px;}
.y68{bottom:602.070000px;}
.yac{bottom:609.900000px;}
.yd6{bottom:611.610000px;}
.y12{bottom:612.330000px;}
.y40{bottom:619.530000px;}
.y67{bottom:619.620000px;}
.y8d{bottom:627.450000px;}
.y11{bottom:629.880000px;}
.y66{bottom:637.260000px;}
.yd5{bottom:638.160000px;}
.y8c{bottom:645.090000px;}
.y10{bottom:647.520000px;}
.y65{bottom:654.810000px;}
.yd4{bottom:655.800000px;}
.y8b{bottom:662.640000px;}
.y3f{bottom:664.440000px;}
.yf{bottom:665.070000px;}
.y8a{bottom:680.190000px;}
.y64{bottom:681.360000px;}
.yd3{bottom:682.350000px;}
.ye{bottom:682.710000px;}
.y3e{bottom:691.800000px;}
.y89{bottom:697.830000px;}
.yd2{bottom:699.990000px;}
.yd{bottom:700.260000px;}
.yab{bottom:715.380000px;}
.y63{bottom:717.270000px;}
.yd1{bottom:717.540000px;}
.yc{bottom:717.810000px;}
.y3d{bottom:719.160000px;}
.y88{bottom:733.380000px;}
.yb{bottom:735.450000px;}
.yd0{bottom:744.090000px;}
.y87{bottom:751.020000px;}
.ya{bottom:753.000000px;}
.ycf{bottom:761.730000px;}
.y62{bottom:762.990000px;}
.y3b{bottom:764.070000px;}
.y86{bottom:768.570000px;}
.y9{bottom:779.910000px;}
.y85{bottom:786.120000px;}
.yce{bottom:788.640000px;}
.y84{bottom:803.760000px;}
.y60{bottom:807.900000px;}
.y38{bottom:808.980000px;}
.yaa{bottom:821.310000px;}
.y8{bottom:828.240000px;}
.y83{bottom:830.310000px;}
.ycd{bottom:836.880000px;}
.ya9{bottom:838.950000px;}
.ycc{bottom:854.520000px;}
.y7{bottom:863.790000px;}
.ya8{bottom:865.500000px;}
.y82{bottom:866.220000px;}
.y5f{bottom:870.360000px;}
.ycb{bottom:872.070000px;}
.y37{bottom:875.220000px;}
.yca{bottom:889.620000px;}
.y6{bottom:899.610000px;}
.ya7{bottom:901.410000px;}
.yc9{bottom:907.260000px;}
.y36{bottom:910.860000px;}
.y81{bottom:911.850000px;}
.y5c{bottom:915.270000px;}
.yc8{bottom:924.810000px;}
.y35{bottom:928.410000px;}
.y5{bottom:935.610000px;}
.yc7{bottom:942.450000px;}
.y34{bottom:945.960000px;}
.ya6{bottom:947.040000px;}
.y80{bottom:956.850000px;}
.yc6{bottom:960.000000px;}
.y33{bottom:963.600000px;}
.y4{bottom:971.700000px;}
.ya5{bottom:974.400000px;}
.yc5{bottom:977.550000px;}
.yc4{bottom:995.190000px;}
.y32{bottom:999.150000px;}
.y7f{bottom:1001.760000px;}
.y3{bottom:1009.980000px;}
.yc3{bottom:1012.770000px;}
.y31{bottom:1016.820000px;}
.ya4{bottom:1019.340000px;}
.y7e{bottom:1029.060000px;}
.yc2{bottom:1030.320000px;}
.y30{bottom:1034.370000px;}
.y5b{bottom:1034.820000px;}
.ya3{bottom:1046.700000px;}
.yc1{bottom:1047.960000px;}
.y2f{bottom:1051.920000px;}
.y5a{bottom:1052.370000px;}
.yc0{bottom:1065.510000px;}
.y2e{bottom:1069.560000px;}
.y59{bottom:1069.920000px;}
.y7d{bottom:1073.970000px;}
.ybf{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.y58{bottom:1087.560000px;}
.ybe{bottom:1100.700000px;}
.y57{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.ybd{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h12{height:26.580000px;}
.h14{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:40.100098px;}
.hc{height:44.100000px;}
.ha{height:44.190000px;}
.h13{height:44.220000px;}
.h6{height:50.667539px;}
.hb{height:50.902383px;}
.h7{height:53.573730px;}
.h8{height:55.779258px;}
.h5{height:58.706543px;}
.h9{height:60.960938px;}
.h11{height:61.740000px;}
.h15{height:61.793886px;}
.h10{height:61.830000px;}
.hf{height:62.585859px;}
.he{height:68.582109px;}
.h4{height:74.746582px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:107.010000px;}
.wc{width:111.420000px;}
.w16{width:113.220000px;}
.w8{width:123.060000px;}
.w10{width:124.830000px;}
.w13{width:132.930000px;}
.w5{width:134.010000px;}
.w3{width:134.490000px;}
.w11{width:136.530000px;}
.wd{width:141.240000px;}
.w7{width:146.970000px;}
.wa{width:150.060000px;}
.w14{width:158.340000px;}
.w12{width:158.790000px;}
.we{width:166.140000px;}
.wb{width:183.870000px;}
.wf{width:183.900000px;}
.w9{width:184.320000px;}
.w15{width:189.270000px;}
.w6{width:230.070000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x14{left:111.239987px;}
.x9{left:192.540000px;}
.x2{left:201.539987px;}
.x5{left:204.060000px;}
.xd{left:210.720000px;}
.x10{left:228.360000px;}
.x6{left:311.790000px;}
.x11{left:362.100000px;}
.xa{left:377.580000px;}
.x7{left:446.610000px;}
.x12{left:521.160000px;}
.xb{left:528.360000px;}
.xe{left:562.290000px;}
.x8{left:677.490000px;}
.xf{left:687.930000px;}
.x13{left:711.240000px;}
.xc{left:713.040000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls11{letter-spacing:-0.101333pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls10{letter-spacing:-0.043520pt;}
.ls12{letter-spacing:-0.020800pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls14{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws2{word-spacing:-16.352533pt;}
.ws8{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.781867pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.736000pt;}
.wsc{word-spacing:-11.713280pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._5{margin-left:-3.210667pt;}
._2{margin-left:-2.190933pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.994037pt;}
._4{width:2.746763pt;}
._8{width:3.933237pt;}
._c{width:4.862933pt;}
._d{width:6.039468pt;}
._10{width:6.967027pt;}
._9{width:8.550400pt;}
._e{width:9.512534pt;}
._3{width:10.794666pt;}
._6{width:13.092800pt;}
._7{width:14.589334pt;}
._13{width:15.764800pt;}
._f{width:17.261120pt;}
._1e{width:18.211945pt;}
._a{width:19.131734pt;}
._b{width:20.092264pt;}
._14{width:48.256320pt;}
._11{width:50.233600pt;}
._18{width:55.694400pt;}
._1b{width:75.857920pt;}
._19{width:77.007040pt;}
._1d{width:81.976960pt;}
._12{width:83.284267pt;}
._17{width:91.489280pt;}
._1f{width:98.650240pt;}
._15{width:108.322880pt;}
._16{width:130.660800pt;}
._1a{width:142.898560pt;}
._1c{width:506.076800pt;}
._20{width:509.764160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:6.960000pt;}
.y5e{bottom:7.040000pt;}
.y3c{bottom:22.560000pt;}
.y39{bottom:22.640000pt;}
.y61{bottom:38.240000pt;}
.y5d{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y28{bottom:115.226667pt;}
.y56{bottom:117.546667pt;}
.ybc{bottom:118.186667pt;}
.ya2{bottom:125.466667pt;}
.y27{bottom:130.906667pt;}
.y55{bottom:133.146667pt;}
.ybb{bottom:133.866667pt;}
.y26{bottom:146.506667pt;}
.y54{bottom:148.826667pt;}
.yba{bottom:149.466667pt;}
.ya1{bottom:157.066667pt;}
.y25{bottom:162.106667pt;}
.y53{bottom:164.426667pt;}
.yb9{bottom:165.066667pt;}
.y7c{bottom:166.506667pt;}
.yeb{bottom:167.386667pt;}
.y52{bottom:180.026667pt;}
.yb8{bottom:180.746667pt;}
.y7b{bottom:182.106667pt;}
.yea{bottom:182.986667pt;}
.ya0{bottom:188.746667pt;}
.y24{bottom:193.786667pt;}
.y7a{bottom:197.786667pt;}
.y51{bottom:203.706667pt;}
.y9f{bottom:204.346667pt;}
.ye9{bottom:206.666667pt;}
.y23{bottom:209.386667pt;}
.yb7{bottom:212.346667pt;}
.y79{bottom:213.386667pt;}
.y9e{bottom:219.946667pt;}
.ye8{bottom:222.266667pt;}
.y22{bottom:225.066667pt;}
.yb6{bottom:227.946667pt;}
.y78{bottom:228.986667pt;}
.y50{bottom:235.306667pt;}
.y9d{bottom:235.626667pt;}
.ye7{bottom:237.866667pt;}
.y21{bottom:240.666667pt;}
.yb5{bottom:243.626667pt;}
.y77{bottom:244.666667pt;}
.y4f{bottom:250.986667pt;}
.y9c{bottom:251.226667pt;}
.ye6{bottom:253.546667pt;}
.y20{bottom:256.266667pt;}
.yb4{bottom:259.226667pt;}
.y76{bottom:260.266667pt;}
.y4e{bottom:266.586667pt;}
.y1f{bottom:271.946667pt;}
.yb3{bottom:274.906667pt;}
.y75{bottom:275.946667pt;}
.ye5{bottom:277.146667pt;}
.y4d{bottom:282.186667pt;}
.y9b{bottom:282.906667pt;}
.ye4{bottom:292.826667pt;}
.y4c{bottom:297.866667pt;}
.y9a{bottom:298.506667pt;}
.y1e{bottom:303.546667pt;}
.y74{bottom:307.546667pt;}
.ye3{bottom:308.426667pt;}
.y99{bottom:314.106667pt;}
.y1d{bottom:319.226667pt;}
.y73{bottom:323.146667pt;}
.ye2{bottom:324.026667pt;}
.y4b{bottom:329.466667pt;}
.y98{bottom:329.786667pt;}
.yb2{bottom:330.106667pt;}
.y1c{bottom:334.826667pt;}
.y72{bottom:338.826667pt;}
.y4a{bottom:345.146667pt;}
.yb1{bottom:345.786667pt;}
.ye1{bottom:347.706667pt;}
.y1b{bottom:350.426667pt;}
.y71{bottom:354.426667pt;}
.y49{bottom:360.746667pt;}
.y97{bottom:361.386667pt;}
.ye0{bottom:363.306667pt;}
.y1a{bottom:366.106667pt;}
.y48{bottom:376.346667pt;}
.y96{bottom:377.066667pt;}
.y70{bottom:378.106667pt;}
.ydf{bottom:378.986667pt;}
.y19{bottom:390.026667pt;}
.y47{bottom:392.026667pt;}
.y95{bottom:392.666667pt;}
.yde{bottom:402.586667pt;}
.y94{bottom:408.266667pt;}
.y6f{bottom:409.706667pt;}
.ydd{bottom:418.213333pt;}
.y46{bottom:423.653333pt;}
.y93{bottom:423.973333pt;}
.y6e{bottom:425.333333pt;}
.y18{bottom:433.253333pt;}
.ydc{bottom:433.893333pt;}
.y45{bottom:439.253333pt;}
.yb0{bottom:439.973333pt;}
.y6d{bottom:441.013333pt;}
.y92{bottom:447.573333pt;}
.y44{bottom:454.933333pt;}
.yaf{bottom:455.573333pt;}
.y6c{bottom:456.613333pt;}
.ydb{bottom:457.493333pt;}
.y17{bottom:466.133333pt;}
.y43{bottom:470.533333pt;}
.yae{bottom:471.253333pt;}
.y6b{bottom:472.293333pt;}
.yda{bottom:473.093333pt;}
.y91{bottom:479.253333pt;}
.y16{bottom:481.733333pt;}
.y42{bottom:486.213333pt;}
.yad{bottom:486.853333pt;}
.y6a{bottom:487.893333pt;}
.yd9{bottom:488.773333pt;}
.y90{bottom:494.853333pt;}
.y15{bottom:497.413333pt;}
.yd8{bottom:504.373333pt;}
.y41{bottom:510.133333pt;}
.y8f{bottom:510.453333pt;}
.y14{bottom:513.013333pt;}
.y69{bottom:519.493333pt;}
.y8e{bottom:526.133333pt;}
.yd7{bottom:528.053333pt;}
.y13{bottom:528.693333pt;}
.y68{bottom:535.173333pt;}
.yac{bottom:542.133333pt;}
.yd6{bottom:543.653333pt;}
.y12{bottom:544.293333pt;}
.y40{bottom:550.693333pt;}
.y67{bottom:550.773333pt;}
.y8d{bottom:557.733333pt;}
.y11{bottom:559.893333pt;}
.y66{bottom:566.453333pt;}
.yd5{bottom:567.253333pt;}
.y8c{bottom:573.413333pt;}
.y10{bottom:575.573333pt;}
.y65{bottom:582.053333pt;}
.yd4{bottom:582.933333pt;}
.y8b{bottom:589.013333pt;}
.y3f{bottom:590.613333pt;}
.yf{bottom:591.173333pt;}
.y8a{bottom:604.613333pt;}
.y64{bottom:605.653333pt;}
.yd3{bottom:606.533333pt;}
.ye{bottom:606.853333pt;}
.y3e{bottom:614.933333pt;}
.y89{bottom:620.293333pt;}
.yd2{bottom:622.213333pt;}
.yd{bottom:622.453333pt;}
.yab{bottom:635.893333pt;}
.y63{bottom:637.573333pt;}
.yd1{bottom:637.813333pt;}
.yc{bottom:638.053333pt;}
.y3d{bottom:639.253333pt;}
.y88{bottom:651.893333pt;}
.yb{bottom:653.733333pt;}
.yd0{bottom:661.413333pt;}
.y87{bottom:667.573333pt;}
.ya{bottom:669.333333pt;}
.ycf{bottom:677.093333pt;}
.y62{bottom:678.213333pt;}
.y3b{bottom:679.173333pt;}
.y86{bottom:683.173333pt;}
.y9{bottom:693.253333pt;}
.y85{bottom:698.773333pt;}
.yce{bottom:701.013333pt;}
.y84{bottom:714.453333pt;}
.y60{bottom:718.133333pt;}
.y38{bottom:719.093333pt;}
.yaa{bottom:730.053333pt;}
.y8{bottom:736.213333pt;}
.y83{bottom:738.053333pt;}
.ycd{bottom:743.893333pt;}
.ya9{bottom:745.733333pt;}
.ycc{bottom:759.573333pt;}
.y7{bottom:767.813333pt;}
.ya8{bottom:769.333333pt;}
.y82{bottom:769.973333pt;}
.y5f{bottom:773.653333pt;}
.ycb{bottom:775.173333pt;}
.y37{bottom:777.973333pt;}
.yca{bottom:790.773333pt;}
.y6{bottom:799.653333pt;}
.ya7{bottom:801.253333pt;}
.yc9{bottom:806.453333pt;}
.y36{bottom:809.653333pt;}
.y81{bottom:810.533333pt;}
.y5c{bottom:813.573333pt;}
.yc8{bottom:822.053333pt;}
.y35{bottom:825.253333pt;}
.y5{bottom:831.653333pt;}
.yc7{bottom:837.733333pt;}
.y34{bottom:840.853333pt;}
.ya6{bottom:841.813333pt;}
.y80{bottom:850.533333pt;}
.yc6{bottom:853.333333pt;}
.y33{bottom:856.533333pt;}
.y4{bottom:863.733333pt;}
.ya5{bottom:866.133333pt;}
.yc5{bottom:868.933333pt;}
.yc4{bottom:884.613333pt;}
.y32{bottom:888.133333pt;}
.y7f{bottom:890.453333pt;}
.y3{bottom:897.760000pt;}
.yc3{bottom:900.240000pt;}
.y31{bottom:903.840000pt;}
.ya4{bottom:906.080000pt;}
.y7e{bottom:914.720000pt;}
.yc2{bottom:915.840000pt;}
.y30{bottom:919.440000pt;}
.y5b{bottom:919.840000pt;}
.ya3{bottom:930.400000pt;}
.yc1{bottom:931.520000pt;}
.y2f{bottom:935.040000pt;}
.y5a{bottom:935.440000pt;}
.yc0{bottom:947.120000pt;}
.y2e{bottom:950.720000pt;}
.y59{bottom:951.040000pt;}
.y7d{bottom:954.640000pt;}
.ybf{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.y58{bottom:966.720000pt;}
.ybe{bottom:978.400000pt;}
.y57{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.ybd{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h12{height:23.626667pt;}
.h14{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:35.644531pt;}
.hc{height:39.200000pt;}
.ha{height:39.280000pt;}
.h13{height:39.306667pt;}
.h6{height:45.037812pt;}
.hb{height:45.246562pt;}
.h7{height:47.621094pt;}
.h8{height:49.581562pt;}
.h5{height:52.183594pt;}
.h9{height:54.187500pt;}
.h11{height:54.880000pt;}
.h15{height:54.927899pt;}
.h10{height:54.960000pt;}
.hf{height:55.631875pt;}
.he{height:60.961875pt;}
.h4{height:66.441406pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:95.120000pt;}
.wc{width:99.040000pt;}
.w16{width:100.640000pt;}
.w8{width:109.386667pt;}
.w10{width:110.960000pt;}
.w13{width:118.160000pt;}
.w5{width:119.120000pt;}
.w3{width:119.546667pt;}
.w11{width:121.360000pt;}
.wd{width:125.546667pt;}
.w7{width:130.640000pt;}
.wa{width:133.386667pt;}
.w14{width:140.746667pt;}
.w12{width:141.146667pt;}
.we{width:147.680000pt;}
.wb{width:163.440000pt;}
.wf{width:163.466667pt;}
.w9{width:163.840000pt;}
.w15{width:168.240000pt;}
.w6{width:204.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x14{left:98.879988pt;}
.x9{left:171.146667pt;}
.x2{left:179.146655pt;}
.x5{left:181.386667pt;}
.xd{left:187.306667pt;}
.x10{left:202.986667pt;}
.x6{left:277.146667pt;}
.x11{left:321.866667pt;}
.xa{left:335.626667pt;}
.x7{left:396.986667pt;}
.x12{left:463.253333pt;}
.xb{left:469.653333pt;}
.xe{left:499.813333pt;}
.x8{left:602.213333pt;}
.xf{left:611.493333pt;}
.x13{left:632.213333pt;}
.xc{left:633.813333pt;}
.x3{left:704.053322pt;}
}




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