
    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_3c646b4cfa229f4af7b45b1d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b0f2de620d77b37fc919301f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f3c6feafe7d954881cbf5740.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_14b27d93b45ff22a9027a8b5.woff')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_f6d91765be92bb5f40198573.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_20f7339348a57e4dc4ca5dd7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_3d993d5402d1dec0f0731b1d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.859375;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_531ac9cb8b39dc946050adeb.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-86.400000px;}
.v3{vertical-align:-73.440000px;}
.v2{vertical-align:-72.120000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.466800px;}
.ls7{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.296000px;}
.ls9{letter-spacing:1.584000px;}
.lsa{letter-spacing:2.160000px;}
.ls4{letter-spacing:28.944000px;}
.ls6{letter-spacing:131.686560px;}
.lse{letter-spacing:448.680000px;}
.ls5{letter-spacing:661.956000px;}
.ls0{letter-spacing:726.780000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws5{word-spacing:-60.480000px;}
.ws7{word-spacing:-19.584000px;}
.ws6{word-spacing:-19.296000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws1{word-spacing:-17.352000px;}
.ws8{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.120000px;}
.ws2{word-spacing:0.000000px;}
._1b{margin-left:-4.950720px;}
._16{margin-left:-3.703680px;}
._4{margin-left:-2.583360px;}
._2{margin-left:-1.059840px;}
._3{width:1.324800px;}
._5{width:2.692800px;}
._12{width:4.486560px;}
._15{width:5.832000px;}
._a{width:6.840000px;}
._9{width:8.167680px;}
._b{width:9.999360px;}
._10{width:11.309760px;}
._c{width:12.962880px;}
._d{width:14.080320px;}
._18{width:15.892320px;}
._17{width:16.894560px;}
._20{width:18.063360px;}
._11{width:19.137120px;}
._7{width:20.316000px;}
._6{width:21.801600px;}
._8{width:22.872960px;}
._1c{width:24.026400px;}
._19{width:25.632000px;}
._1a{width:27.224640px;}
._1d{width:28.552320px;}
._f{width:29.643840px;}
._e{width:31.118400px;}
._21{width:39.297600px;}
._14{width:40.315200px;}
._13{width:41.710560px;}
._1e{width:46.679520px;}
._1f{width:48.388800px;}
._22{width:93.363840px;}
._23{width:94.662720px;}
._27{width:110.891040px;}
._24{width:136.051200px;}
._25{width:137.727360px;}
._0{width:228.396000px;}
._26{width:2280.957120px;}
._1{width:2464.140000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.240000px;}
.y9{bottom:5.760000px;}
.y6{bottom:25.200000px;}
.y5{bottom:40.356000px;}
.y8{bottom:56.556000px;}
.y4{bottom:59.796000px;}
.yb9{bottom:88.236000px;}
.y93{bottom:93.636000px;}
.y5a{bottom:93.996000px;}
.yb8{bottom:94.356000px;}
.yfd{bottom:101.556000px;}
.ye8{bottom:104.076000px;}
.yb7{bottom:107.316000px;}
.y7b{bottom:111.276000px;}
.y37{bottom:111.996000px;}
.yab{bottom:116.316000px;}
.y9c{bottom:119.556000px;}
.yfc{bottom:122.436000px;}
.y59{bottom:124.956000px;}
.y7a{bottom:128.556000px;}
.y36{bottom:132.552000px;}
.ye7{bottom:135.432000px;}
.yfb{bottom:142.992000px;}
.y79{bottom:145.512000px;}
.yaa{bottom:147.312000px;}
.yd4{bottom:149.112000px;}
.y9b{bottom:150.915000px;}
.y35{bottom:153.435000px;}
.y58{bottom:155.955000px;}
.y78{bottom:163.155000px;}
.yfa{bottom:163.875000px;}
.ye6{bottom:166.395000px;}
.y34{bottom:173.955000px;}
.y8d{bottom:176.835000px;}
.ya9{bottom:178.275000px;}
.y9a{bottom:179.355000px;}
.yd3{bottom:180.075000px;}
.y77{bottom:180.435000px;}
.yf9{bottom:184.395000px;}
.y57{bottom:186.915000px;}
.y33{bottom:194.835000px;}
.y99{bottom:196.635000px;}
.ye5{bottom:197.355000px;}
.y76{bottom:198.435000px;}
.yf8{bottom:204.555000px;}
.y8c{bottom:207.795000px;}
.ya8{bottom:209.595000px;}
.yd2{bottom:211.035000px;}
.y98{bottom:213.915000px;}
.y32{bottom:215.355000px;}
.y75{bottom:217.155000px;}
.y56{bottom:218.235000px;}
.yf7{bottom:225.795000px;}
.ye4{bottom:228.315000px;}
.y97{bottom:230.835000px;}
.y74{bottom:234.075000px;}
.y31{bottom:236.235000px;}
.y8b{bottom:238.755000px;}
.ya7{bottom:240.555000px;}
.yd1{bottom:242.355000px;}
.yf6{bottom:246.315000px;}
.y96{bottom:248.115000px;}
.y55{bottom:249.195000px;}
.y30{bottom:256.755000px;}
.ye3{bottom:259.635000px;}
.y95{bottom:265.425000px;}
.yf5{bottom:267.225000px;}
.y73{bottom:269.745000px;}
.ya6{bottom:271.545000px;}
.yd0{bottom:273.345000px;}
.y2f{bottom:277.665000px;}
.y54{bottom:280.185000px;}
.y94{bottom:282.705000px;}
.yf4{bottom:287.745000px;}
.ye2{bottom:290.625000px;}
.y2e{bottom:298.185000px;}
.y72{bottom:301.065000px;}
.ya5{bottom:302.505000px;}
.ycf{bottom:304.305000px;}
.yf3{bottom:308.625000px;}
.y53{bottom:311.145000px;}
.y2d{bottom:319.065000px;}
.ye1{bottom:321.585000px;}
.yf2{bottom:329.145000px;}
.y71{bottom:332.025000px;}
.ya4{bottom:333.825000px;}
.yce{bottom:335.265000px;}
.y2c{bottom:339.585000px;}
.y52{bottom:342.465000px;}
.yf1{bottom:350.025000px;}
.ye0{bottom:352.545000px;}
.y2b{bottom:360.465000px;}
.y70{bottom:362.985000px;}
.ya3{bottom:364.785000px;}
.ycd{bottom:366.585000px;}
.yf0{bottom:370.545000px;}
.y51{bottom:373.425000px;}
.y2a{bottom:380.985000px;}
.ydf{bottom:383.865000px;}
.yef{bottom:391.425000px;}
.y6f{bottom:393.945000px;}
.ya2{bottom:395.745000px;}
.ycc{bottom:397.545000px;}
.y29{bottom:401.910000px;}
.y50{bottom:404.430000px;}
.yee{bottom:411.990000px;}
.yde{bottom:414.870000px;}
.ya1{bottom:424.230000px;}
.y6e{bottom:425.310000px;}
.ycb{bottom:428.550000px;}
.y28{bottom:432.510000px;}
.yed{bottom:433.590000px;}
.y4f{bottom:435.390000px;}
.ya0{bottom:441.510000px;}
.ydd{bottom:445.830000px;}
.y27{bottom:453.390000px;}
.yec{bottom:455.910000px;}
.y6d{bottom:456.270000px;}
.y9f{bottom:458.790000px;}
.yca{bottom:459.510000px;}
.y4e{bottom:466.710000px;}
.y9e{bottom:476.070000px;}
.ydc{bottom:476.790000px;}
.y26{bottom:484.350000px;}
.yb6{bottom:486.510000px;}
.y6c{bottom:487.230000px;}
.yc9{bottom:490.830000px;}
.y9d{bottom:493.350000px;}
.y4d{bottom:497.670000px;}
.yb5{bottom:503.430000px;}
.y25{bottom:505.230000px;}
.ydb{bottom:508.110000px;}
.yb0{bottom:517.470000px;}
.y6b{bottom:518.190000px;}
.yb4{bottom:520.710000px;}
.yc8{bottom:521.790000px;}
.y24{bottom:526.110000px;}
.y4c{bottom:528.630000px;}
.yaf{bottom:534.780000px;}
.yb3{bottom:538.020000px;}
.yda{bottom:539.100000px;}
.y6a{bottom:549.540000px;}
.yae{bottom:552.060000px;}
.yc7{bottom:552.780000px;}
.yb2{bottom:555.300000px;}
.y23{bottom:557.100000px;}
.y4b{bottom:559.620000px;}
.yad{bottom:569.340000px;}
.yd9{bottom:570.060000px;}
.y22{bottom:577.980000px;}
.y69{bottom:580.500000px;}
.yc6{bottom:583.740000px;}
.yac{bottom:586.260000px;}
.y4a{bottom:590.580000px;}
.y21{bottom:598.500000px;}
.yd8{bottom:601.020000px;}
.y68{bottom:611.460000px;}
.yc5{bottom:615.060000px;}
.y20{bottom:619.380000px;}
.y49{bottom:621.900000px;}
.yd7{bottom:631.980000px;}
.y1f{bottom:639.900000px;}
.y67{bottom:642.420000px;}
.yc4{bottom:646.020000px;}
.y48{bottom:652.860000px;}
.y1e{bottom:660.780000px;}
.yd6{bottom:662.940000px;}
.yeb{bottom:663.300000px;}
.y66{bottom:673.410000px;}
.yc3{bottom:677.010000px;}
.y1d{bottom:681.330000px;}
.yd5{bottom:683.490000px;}
.y47{bottom:683.850000px;}
.yea{bottom:693.930000px;}
.y1c{bottom:702.210000px;}
.y65{bottom:704.730000px;}
.yc2{bottom:707.970000px;}
.ye9{bottom:714.450000px;}
.y46{bottom:714.810000px;}
.y1b{bottom:722.730000px;}
.y64{bottom:735.690000px;}
.yc1{bottom:739.290000px;}
.y92{bottom:743.250000px;}
.y1a{bottom:743.610000px;}
.y45{bottom:746.130000px;}
.yc0{bottom:759.810000px;}
.y19{bottom:764.130000px;}
.y63{bottom:766.650000px;}
.y91{bottom:769.170000px;}
.y44{bottom:777.090000px;}
.ybf{bottom:779.610000px;}
.y18{bottom:785.010000px;}
.y104{bottom:787.530000px;}
.y90{bottom:795.090000px;}
.ybe{bottom:796.890000px;}
.y62{bottom:797.610000px;}
.y17{bottom:805.575000px;}
.y43{bottom:808.095000px;}
.ybd{bottom:814.215000px;}
.y8f{bottom:821.055000px;}
.y16{bottom:826.455000px;}
.y61{bottom:828.975000px;}
.ybc{bottom:831.495000px;}
.y42{bottom:839.055000px;}
.yb1{bottom:845.895000px;}
.y15{bottom:846.975000px;}
.ybb{bottom:848.775000px;}
.y103{bottom:849.495000px;}
.y8a{bottom:859.575000px;}
.y60{bottom:859.935000px;}
.yba{bottom:866.055000px;}
.y14{bottom:867.495000px;}
.y41{bottom:870.375000px;}
.y8e{bottom:872.895000px;}
.y89{bottom:880.095000px;}
.y5f{bottom:890.535000px;}
.y102{bottom:890.895000px;}
.y13{bottom:898.455000px;}
.y40{bottom:901.335000px;}
.y5e{bottom:911.415000px;}
.y88{bottom:911.775000px;}
.y12{bottom:918.975000px;}
.y87{bottom:931.575000px;}
.y3f{bottom:932.295000px;}
.y11{bottom:948.525000px;}
.y86{bottom:948.885000px;}
.y101{bottom:953.205000px;}
.y3e{bottom:963.285000px;}
.y85{bottom:965.805000px;}
.y10{bottom:967.965000px;}
.y100{bottom:973.725000px;}
.y84{bottom:983.085000px;}
.y3d{bottom:994.605000px;}
.y83{bottom:1000.365000px;}
.yf{bottom:1009.005000px;}
.yff{bottom:1015.125000px;}
.y82{bottom:1017.285000px;}
.y3c{bottom:1025.205000px;}
.y5d{bottom:1025.565000px;}
.ye{bottom:1032.405000px;}
.y81{bottom:1034.925000px;}
.yfe{bottom:1036.005000px;}
.y3b{bottom:1045.725000px;}
.y80{bottom:1052.205000px;}
.yd{bottom:1053.285000px;}
.y5c{bottom:1056.525000px;}
.y7f{bottom:1069.530000px;}
.yc{bottom:1074.210000px;}
.y3a{bottom:1077.450000px;}
.y7e{bottom:1086.450000px;}
.y5b{bottom:1087.530000px;}
.yb{bottom:1097.610000px;}
.y39{bottom:1097.970000px;}
.y7d{bottom:1103.730000px;}
.ya{bottom:1118.490000px;}
.y38{bottom:1118.850000px;}
.y7c{bottom:1121.370000px;}
.y3{bottom:1155.570000px;}
.y2{bottom:1174.290000px;}
.y1{bottom:1193.010000px;}
.h7{height:21.240000px;}
.h5{height:40.320000px;}
.h12{height:43.554375px;}
.h11{height:46.638281px;}
.h4{height:59.357813px;}
.hf{height:60.952500px;}
.h10{height:63.078750px;}
.he{height:64.546875px;}
.h6{height:64.978594px;}
.h3{height:65.010937px;}
.h8{height:66.757500px;}
.h2{height:69.086250px;}
.hb{height:70.664062px;}
.h9{height:72.562500px;}
.hd{height:74.953125px;}
.hc{height:81.970312px;}
.ha{height:84.172500px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:262.905000px;}
.w4{width:345.390000px;}
.w5{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:10.800000px;}
.x5{left:14.400000px;}
.x7{left:115.596000px;}
.x3{left:127.475987px;}
.x17{left:133.271987px;}
.x6{left:145.155000px;}
.x13{left:148.751987px;}
.xc{left:150.194987px;}
.x9{left:163.154987px;}
.x11{left:180.794987px;}
.x12{left:297.464987px;}
.xa{left:327.029987px;}
.xd{left:334.949987px;}
.x16{left:343.589987px;}
.x18{left:403.379987px;}
.x10{left:418.859987px;}
.xf{left:428.219987px;}
.xb{left:467.819987px;}
.x4{left:541.650000px;}
.xe{left:614.774987px;}
.x2{left:783.329987px;}
.x14{left:797.729973px;}
.x15{left:803.849987px;}
.x1{left:808.169987px;}
@media print{
.v1{vertical-align:-76.800000pt;}
.v3{vertical-align:-65.280000pt;}
.v2{vertical-align:-64.106667pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.414933pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.152000pt;}
.ls9{letter-spacing:1.408000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls4{letter-spacing:25.728000pt;}
.ls6{letter-spacing:117.054720pt;}
.lse{letter-spacing:398.826667pt;}
.ls5{letter-spacing:588.405333pt;}
.ls0{letter-spacing:646.026667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.760000pt;}
.ws7{word-spacing:-17.408000pt;}
.ws6{word-spacing:-17.152000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws1{word-spacing:-15.424000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws2{word-spacing:0.000000pt;}
._1b{margin-left:-4.400640pt;}
._16{margin-left:-3.292160pt;}
._4{margin-left:-2.296320pt;}
._2{margin-left:-0.942080pt;}
._3{width:1.177600pt;}
._5{width:2.393600pt;}
._12{width:3.988053pt;}
._15{width:5.184000pt;}
._a{width:6.080000pt;}
._9{width:7.260160pt;}
._b{width:8.888320pt;}
._10{width:10.053120pt;}
._c{width:11.522560pt;}
._d{width:12.515840pt;}
._18{width:14.126507pt;}
._17{width:15.017387pt;}
._20{width:16.056320pt;}
._11{width:17.010773pt;}
._7{width:18.058667pt;}
._6{width:19.379200pt;}
._8{width:20.331520pt;}
._1c{width:21.356800pt;}
._19{width:22.784000pt;}
._1a{width:24.199680pt;}
._1d{width:25.379840pt;}
._f{width:26.350080pt;}
._e{width:27.660800pt;}
._21{width:34.931200pt;}
._14{width:35.835733pt;}
._13{width:37.076053pt;}
._1e{width:41.492907pt;}
._1f{width:43.012267pt;}
._22{width:82.990080pt;}
._23{width:84.144640pt;}
._27{width:98.569813pt;}
._24{width:120.934400pt;}
._25{width:122.424320pt;}
._0{width:203.018667pt;}
._26{width:2027.517440pt;}
._1{width:2190.346667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.880000pt;}
.y9{bottom:5.120000pt;}
.y6{bottom:22.400000pt;}
.y5{bottom:35.872000pt;}
.y8{bottom:50.272000pt;}
.y4{bottom:53.152000pt;}
.yb9{bottom:78.432000pt;}
.y93{bottom:83.232000pt;}
.y5a{bottom:83.552000pt;}
.yb8{bottom:83.872000pt;}
.yfd{bottom:90.272000pt;}
.ye8{bottom:92.512000pt;}
.yb7{bottom:95.392000pt;}
.y7b{bottom:98.912000pt;}
.y37{bottom:99.552000pt;}
.yab{bottom:103.392000pt;}
.y9c{bottom:106.272000pt;}
.yfc{bottom:108.832000pt;}
.y59{bottom:111.072000pt;}
.y7a{bottom:114.272000pt;}
.y36{bottom:117.824000pt;}
.ye7{bottom:120.384000pt;}
.yfb{bottom:127.104000pt;}
.y79{bottom:129.344000pt;}
.yaa{bottom:130.944000pt;}
.yd4{bottom:132.544000pt;}
.y9b{bottom:134.146667pt;}
.y35{bottom:136.386667pt;}
.y58{bottom:138.626667pt;}
.y78{bottom:145.026667pt;}
.yfa{bottom:145.666667pt;}
.ye6{bottom:147.906667pt;}
.y34{bottom:154.626667pt;}
.y8d{bottom:157.186667pt;}
.ya9{bottom:158.466667pt;}
.y9a{bottom:159.426667pt;}
.yd3{bottom:160.066667pt;}
.y77{bottom:160.386667pt;}
.yf9{bottom:163.906667pt;}
.y57{bottom:166.146667pt;}
.y33{bottom:173.186667pt;}
.y99{bottom:174.786667pt;}
.ye5{bottom:175.426667pt;}
.y76{bottom:176.386667pt;}
.yf8{bottom:181.826667pt;}
.y8c{bottom:184.706667pt;}
.ya8{bottom:186.306667pt;}
.yd2{bottom:187.586667pt;}
.y98{bottom:190.146667pt;}
.y32{bottom:191.426667pt;}
.y75{bottom:193.026667pt;}
.y56{bottom:193.986667pt;}
.yf7{bottom:200.706667pt;}
.ye4{bottom:202.946667pt;}
.y97{bottom:205.186667pt;}
.y74{bottom:208.066667pt;}
.y31{bottom:209.986667pt;}
.y8b{bottom:212.226667pt;}
.ya7{bottom:213.826667pt;}
.yd1{bottom:215.426667pt;}
.yf6{bottom:218.946667pt;}
.y96{bottom:220.546667pt;}
.y55{bottom:221.506667pt;}
.y30{bottom:228.226667pt;}
.ye3{bottom:230.786667pt;}
.y95{bottom:235.933333pt;}
.yf5{bottom:237.533333pt;}
.y73{bottom:239.773333pt;}
.ya6{bottom:241.373333pt;}
.yd0{bottom:242.973333pt;}
.y2f{bottom:246.813333pt;}
.y54{bottom:249.053333pt;}
.y94{bottom:251.293333pt;}
.yf4{bottom:255.773333pt;}
.ye2{bottom:258.333333pt;}
.y2e{bottom:265.053333pt;}
.y72{bottom:267.613333pt;}
.ya5{bottom:268.893333pt;}
.ycf{bottom:270.493333pt;}
.yf3{bottom:274.333333pt;}
.y53{bottom:276.573333pt;}
.y2d{bottom:283.613333pt;}
.ye1{bottom:285.853333pt;}
.yf2{bottom:292.573333pt;}
.y71{bottom:295.133333pt;}
.ya4{bottom:296.733333pt;}
.yce{bottom:298.013333pt;}
.y2c{bottom:301.853333pt;}
.y52{bottom:304.413333pt;}
.yf1{bottom:311.133333pt;}
.ye0{bottom:313.373333pt;}
.y2b{bottom:320.413333pt;}
.y70{bottom:322.653333pt;}
.ya3{bottom:324.253333pt;}
.ycd{bottom:325.853333pt;}
.yf0{bottom:329.373333pt;}
.y51{bottom:331.933333pt;}
.y2a{bottom:338.653333pt;}
.ydf{bottom:341.213333pt;}
.yef{bottom:347.933333pt;}
.y6f{bottom:350.173333pt;}
.ya2{bottom:351.773333pt;}
.ycc{bottom:353.373333pt;}
.y29{bottom:357.253333pt;}
.y50{bottom:359.493333pt;}
.yee{bottom:366.213333pt;}
.yde{bottom:368.773333pt;}
.ya1{bottom:377.093333pt;}
.y6e{bottom:378.053333pt;}
.ycb{bottom:380.933333pt;}
.y28{bottom:384.453333pt;}
.yed{bottom:385.413333pt;}
.y4f{bottom:387.013333pt;}
.ya0{bottom:392.453333pt;}
.ydd{bottom:396.293333pt;}
.y27{bottom:403.013333pt;}
.yec{bottom:405.253333pt;}
.y6d{bottom:405.573333pt;}
.y9f{bottom:407.813333pt;}
.yca{bottom:408.453333pt;}
.y4e{bottom:414.853333pt;}
.y9e{bottom:423.173333pt;}
.ydc{bottom:423.813333pt;}
.y26{bottom:430.533333pt;}
.yb6{bottom:432.453333pt;}
.y6c{bottom:433.093333pt;}
.yc9{bottom:436.293333pt;}
.y9d{bottom:438.533333pt;}
.y4d{bottom:442.373333pt;}
.yb5{bottom:447.493333pt;}
.y25{bottom:449.093333pt;}
.ydb{bottom:451.653333pt;}
.yb0{bottom:459.973333pt;}
.y6b{bottom:460.613333pt;}
.yb4{bottom:462.853333pt;}
.yc8{bottom:463.813333pt;}
.y24{bottom:467.653333pt;}
.y4c{bottom:469.893333pt;}
.yaf{bottom:475.360000pt;}
.yb3{bottom:478.240000pt;}
.yda{bottom:479.200000pt;}
.y6a{bottom:488.480000pt;}
.yae{bottom:490.720000pt;}
.yc7{bottom:491.360000pt;}
.yb2{bottom:493.600000pt;}
.y23{bottom:495.200000pt;}
.y4b{bottom:497.440000pt;}
.yad{bottom:506.080000pt;}
.yd9{bottom:506.720000pt;}
.y22{bottom:513.760000pt;}
.y69{bottom:516.000000pt;}
.yc6{bottom:518.880000pt;}
.yac{bottom:521.120000pt;}
.y4a{bottom:524.960000pt;}
.y21{bottom:532.000000pt;}
.yd8{bottom:534.240000pt;}
.y68{bottom:543.520000pt;}
.yc5{bottom:546.720000pt;}
.y20{bottom:550.560000pt;}
.y49{bottom:552.800000pt;}
.yd7{bottom:561.760000pt;}
.y1f{bottom:568.800000pt;}
.y67{bottom:571.040000pt;}
.yc4{bottom:574.240000pt;}
.y48{bottom:580.320000pt;}
.y1e{bottom:587.360000pt;}
.yd6{bottom:589.280000pt;}
.yeb{bottom:589.600000pt;}
.y66{bottom:598.586667pt;}
.yc3{bottom:601.786667pt;}
.y1d{bottom:605.626667pt;}
.yd5{bottom:607.546667pt;}
.y47{bottom:607.866667pt;}
.yea{bottom:616.826667pt;}
.y1c{bottom:624.186667pt;}
.y65{bottom:626.426667pt;}
.yc2{bottom:629.306667pt;}
.ye9{bottom:635.066667pt;}
.y46{bottom:635.386667pt;}
.y1b{bottom:642.426667pt;}
.y64{bottom:653.946667pt;}
.yc1{bottom:657.146667pt;}
.y92{bottom:660.666667pt;}
.y1a{bottom:660.986667pt;}
.y45{bottom:663.226667pt;}
.yc0{bottom:675.386667pt;}
.y19{bottom:679.226667pt;}
.y63{bottom:681.466667pt;}
.y91{bottom:683.706667pt;}
.y44{bottom:690.746667pt;}
.ybf{bottom:692.986667pt;}
.y18{bottom:697.786667pt;}
.y104{bottom:700.026667pt;}
.y90{bottom:706.746667pt;}
.ybe{bottom:708.346667pt;}
.y62{bottom:708.986667pt;}
.y17{bottom:716.066667pt;}
.y43{bottom:718.306667pt;}
.ybd{bottom:723.746667pt;}
.y8f{bottom:729.826667pt;}
.y16{bottom:734.626667pt;}
.y61{bottom:736.866667pt;}
.ybc{bottom:739.106667pt;}
.y42{bottom:745.826667pt;}
.yb1{bottom:751.906667pt;}
.y15{bottom:752.866667pt;}
.ybb{bottom:754.466667pt;}
.y103{bottom:755.106667pt;}
.y8a{bottom:764.066667pt;}
.y60{bottom:764.386667pt;}
.yba{bottom:769.826667pt;}
.y14{bottom:771.106667pt;}
.y41{bottom:773.666667pt;}
.y8e{bottom:775.906667pt;}
.y89{bottom:782.306667pt;}
.y5f{bottom:791.586667pt;}
.y102{bottom:791.906667pt;}
.y13{bottom:798.626667pt;}
.y40{bottom:801.186667pt;}
.y5e{bottom:810.146667pt;}
.y88{bottom:810.466667pt;}
.y12{bottom:816.866667pt;}
.y87{bottom:828.066667pt;}
.y3f{bottom:828.706667pt;}
.y11{bottom:843.133333pt;}
.y86{bottom:843.453333pt;}
.y101{bottom:847.293333pt;}
.y3e{bottom:856.253333pt;}
.y85{bottom:858.493333pt;}
.y10{bottom:860.413333pt;}
.y100{bottom:865.533333pt;}
.y84{bottom:873.853333pt;}
.y3d{bottom:884.093333pt;}
.y83{bottom:889.213333pt;}
.yf{bottom:896.893333pt;}
.yff{bottom:902.333333pt;}
.y82{bottom:904.253333pt;}
.y3c{bottom:911.293333pt;}
.y5d{bottom:911.613333pt;}
.ye{bottom:917.693333pt;}
.y81{bottom:919.933333pt;}
.yfe{bottom:920.893333pt;}
.y3b{bottom:929.533333pt;}
.y80{bottom:935.293333pt;}
.yd{bottom:936.253333pt;}
.y5c{bottom:939.133333pt;}
.y7f{bottom:950.693333pt;}
.yc{bottom:954.853333pt;}
.y3a{bottom:957.733333pt;}
.y7e{bottom:965.733333pt;}
.y5b{bottom:966.693333pt;}
.yb{bottom:975.653333pt;}
.y39{bottom:975.973333pt;}
.y7d{bottom:981.093333pt;}
.ya{bottom:994.213333pt;}
.y38{bottom:994.533333pt;}
.y7c{bottom:996.773333pt;}
.y3{bottom:1027.173333pt;}
.y2{bottom:1043.813333pt;}
.y1{bottom:1060.453333pt;}
.h7{height:18.880000pt;}
.h5{height:35.840000pt;}
.h12{height:38.715000pt;}
.h11{height:41.456250pt;}
.h4{height:52.762500pt;}
.hf{height:54.180000pt;}
.h10{height:56.070000pt;}
.he{height:57.375000pt;}
.h6{height:57.758750pt;}
.h3{height:57.787500pt;}
.h8{height:59.340000pt;}
.h2{height:61.410000pt;}
.hb{height:62.812500pt;}
.h9{height:64.500000pt;}
.hd{height:66.625000pt;}
.hc{height:72.862500pt;}
.ha{height:74.820000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:233.693333pt;}
.w4{width:307.013333pt;}
.w5{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:9.600000pt;}
.x5{left:12.800000pt;}
.x7{left:102.752000pt;}
.x3{left:113.311988pt;}
.x17{left:118.463988pt;}
.x6{left:129.026667pt;}
.x13{left:132.223988pt;}
.xc{left:133.506655pt;}
.x9{left:145.026655pt;}
.x11{left:160.706655pt;}
.x12{left:264.413322pt;}
.xa{left:290.693322pt;}
.xd{left:297.733322pt;}
.x16{left:305.413322pt;}
.x18{left:358.559988pt;}
.x10{left:372.319988pt;}
.xf{left:380.639988pt;}
.xb{left:415.839988pt;}
.x4{left:481.466667pt;}
.xe{left:546.466655pt;}
.x2{left:696.293322pt;}
.x14{left:709.093310pt;}
.x15{left:714.533322pt;}
.x1{left:718.373322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  