
    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_2b6d7c36e2dcfc842225a12c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_4fe7f9a31fba5b8c11120e86.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_7d436b8e27c7a16da691152f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bbe706b775fd5eedcb3541c8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_053ddd4d3f7b8c270516514b.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_edcba0f41438af033f178c6a.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7d1b282e8ff0b49e14ccfb6d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1c4ecdf417d5802d6d5bbd2b.woff')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.141600px;}
.ls8{letter-spacing:-0.135000px;}
.ls16{letter-spacing:-0.125400px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.082200px;}
.ls14{letter-spacing:-0.067200px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls1{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.118200px;}
.ls10{letter-spacing:0.118440px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.181200px;}
.ls2{letter-spacing:0.425520px;}
.ls3{letter-spacing:14.160000px;}
.ls18{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-54.000000px;}
.ws5{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws13{word-spacing:-13.407600px;}
.wsa{word-spacing:-13.399800px;}
.wse{word-spacing:-13.344600px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.159200px;}
.ws14{word-spacing:-13.101000px;}
.wsd{word-spacing:-13.084800px;}
.ws9{word-spacing:-13.039800px;}
.ws10{word-spacing:-10.707000px;}
.ws11{word-spacing:-10.533600px;}
.wsf{word-spacing:-10.451400px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws6{word-spacing:-8.625600px;}
.ws7{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._4{margin-left:-3.847800px;}
._3{margin-left:-2.404800px;}
._0{margin-left:-1.110000px;}
._1{width:1.864080px;}
._8{width:3.195960px;}
._2{width:4.336080px;}
._9{width:5.358122px;}
._a{width:6.371255px;}
._b{width:8.176200px;}
._6{width:9.619200px;}
._7{width:11.098680px;}
._5{width:12.142080px;}
._11{width:15.390720px;}
._c{width:20.080080px;}
._10{width:22.184280px;}
._e{width:24.589080px;}
._d{width:28.076040px;}
._f{width:44.308440px;}
._13{width:135.330120px;}
._12{width:269.998920px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs1{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y55{bottom:7.830000px;}
.y4b{bottom:7.860000px;}
.y52{bottom:7.920000px;}
.y6f{bottom:7.950000px;}
.y57{bottom:12.330000px;}
.y51{bottom:12.420000px;}
.ya0{bottom:16.410000px;}
.y9e{bottom:20.910000px;}
.y5a{bottom:25.380000px;}
.y62{bottom:25.410000px;}
.y54{bottom:25.470000px;}
.y6e{bottom:25.500000px;}
.y7e{bottom:29.880000px;}
.y4a{bottom:29.910000px;}
.y50{bottom:29.970000px;}
.y9b{bottom:34.470000px;}
.y9f{bottom:38.550000px;}
.y61{bottom:43.050000px;}
.y6b{bottom:47.610000px;}
.y4f{bottom:52.020000px;}
.y9a{bottom:52.110000px;}
.y9d{bottom:60.600000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y4e{bottom:79.410000px;}
.y1{bottom:96.060000px;}
.y4d{bottom:101.460000px;}
.y46{bottom:117.840000px;}
.yca{bottom:120.720000px;}
.y69{bottom:127.560000px;}
.y80{bottom:128.730000px;}
.y98{bottom:139.170000px;}
.yc9{bottom:147.360000px;}
.y45{bottom:153.390000px;}
.y97{bottom:156.720000px;}
.yc8{bottom:164.910000px;}
.y7f{bottom:173.640000px;}
.y24{bottom:176.790000px;}
.y68{bottom:176.970000px;}
.yc7{bottom:182.550000px;}
.y44{bottom:188.940000px;}
.y96{bottom:192.360000px;}
.y23{bottom:194.340000px;}
.y43{bottom:206.580000px;}
.yc6{bottom:209.100000px;}
.y95{bottom:209.910000px;}
.y67{bottom:221.880000px;}
.y42{bottom:224.130000px;}
.yc5{bottom:226.650000px;}
.y94{bottom:227.460000px;}
.y22{bottom:229.980000px;}
.y41{bottom:241.770000px;}
.y93{bottom:245.100000px;}
.y7d{bottom:245.190000px;}
.y21{bottom:247.530000px;}
.yc4{bottom:253.290000px;}
.y92{bottom:262.650000px;}
.y20{bottom:265.170000px;}
.yc3{bottom:270.840000px;}
.y66{bottom:271.290000px;}
.y40{bottom:277.320000px;}
.y91{bottom:280.290000px;}
.y1f{bottom:282.720000px;}
.yc2{bottom:297.480000px;}
.y90{bottom:297.840000px;}
.y1e{bottom:300.270000px;}
.yc1{bottom:315.030000px;}
.y8f{bottom:315.390000px;}
.y1d{bottom:317.910000px;}
.y3f{bottom:319.890000px;}
.y65{bottom:320.700000px;}
.y7c{bottom:322.680000px;}
.yc0{bottom:332.580000px;}
.y7b{bottom:349.320000px;}
.y8e{bottom:351.030000px;}
.y1c{bottom:353.460000px;}
.ybf{bottom:359.220000px;}
.y64{bottom:365.610000px;}
.y8d{bottom:368.580000px;}
.y1b{bottom:371.100000px;}
.ybe{bottom:376.770000px;}
.y7a{bottom:384.870000px;}
.y8c{bottom:386.220000px;}
.y1a{bottom:388.650000px;}
.y79{bottom:402.420000px;}
.ybd{bottom:403.410000px;}
.y8b{bottom:403.770000px;}
.y19{bottom:406.200000px;}
.y63{bottom:415.020000px;}
.y78{bottom:420.060000px;}
.ybc{bottom:420.960000px;}
.y8a{bottom:421.320000px;}
.y18{bottom:423.840000px;}
.y77{bottom:437.610000px;}
.y89{bottom:438.960000px;}
.ybb{bottom:447.510000px;}
.y17{bottom:450.750000px;}
.y76{bottom:455.250000px;}
.y88{bottom:456.510000px;}
.y60{bottom:460.020000px;}
.yba{bottom:465.150000px;}
.y87{bottom:474.180000px;}
.y75{bottom:490.830000px;}
.yb9{bottom:491.730000px;}
.y16{bottom:499.020000px;}
.y86{bottom:501.000000px;}
.yb8{bottom:509.370000px;}
.y15{bottom:516.930000px;}
.y5f{bottom:522.510000px;}
.y74{bottom:533.400000px;}
.yb7{bottom:536.190000px;}
.y85{bottom:549.330000px;}
.y14{bottom:553.920000px;}
.y84{bottom:566.880000px;}
.y13{bottom:571.560000px;}
.y5e{bottom:571.920000px;}
.y83{bottom:584.520000px;}
.y3e{bottom:591.000000px;}
.y82{bottom:602.070000px;}
.y12{bottom:607.110000px;}
.yb6{bottom:611.430000px;}
.y5d{bottom:616.830000px;}
.y11{bottom:624.750000px;}
.y3d{bottom:626.640000px;}
.y81{bottom:636.900000px;}
.y10{bottom:642.300000px;}
.y3c{bottom:644.190000px;}
.yb5{bottom:648.420000px;}
.ya6{bottom:649.140000px;}
.yf{bottom:659.850000px;}
.y5c{bottom:661.740000px;}
.y3b{bottom:670.830000px;}
.yb4{bottom:675.330000px;}
.ye{bottom:677.490000px;}
.yd{bottom:695.040000px;}
.ya5{bottom:698.550000px;}
.y3a{bottom:706.650000px;}
.y5b{bottom:706.740000px;}
.yb3{bottom:712.410000px;}
.yc{bottom:712.680000px;}
.yb2{bottom:729.960000px;}
.yb{bottom:739.590000px;}
.y59{bottom:751.650000px;}
.y39{bottom:754.980000px;}
.yb1{bottom:756.870000px;}
.ya4{bottom:770.010000px;}
.y38{bottom:772.530000px;}
.ya{bottom:787.830000px;}
.y37{bottom:790.170000px;}
.yb0{bottom:794.220000px;}
.y58{bottom:796.560000px;}
.y36{bottom:807.720000px;}
.ya3{bottom:814.920000px;}
.y9{bottom:823.380000px;}
.y35{bottom:825.270000px;}
.yd7{bottom:831.480000px;}
.y56{bottom:841.470000px;}
.yaf{bottom:842.460000px;}
.y34{bottom:842.910000px;}
.yd6{bottom:849.030000px;}
.y73{bottom:856.230000px;}
.y8{bottom:859.200000px;}
.yae{bottom:860.100000px;}
.y33{bottom:860.460000px;}
.yd5{bottom:866.670000px;}
.y32{bottom:878.100000px;}
.ya2{bottom:886.470000px;}
.y53{bottom:890.880000px;}
.y72{bottom:891.150000px;}
.yd4{bottom:893.220000px;}
.y31{bottom:895.650000px;}
.y7{bottom:898.980000px;}
.y71{bottom:903.300000px;}
.yd3{bottom:910.860000px;}
.y30{bottom:913.200000px;}
.y6{bottom:916.980000px;}
.yd2{bottom:928.410000px;}
.yad{bottom:930.840000px;}
.y4c{bottom:935.790000px;}
.y2f{bottom:940.110000px;}
.yac{bottom:948.390000px;}
.y5{bottom:949.290000px;}
.y70{bottom:952.710000px;}
.yd1{bottom:954.960000px;}
.ya1{bottom:957.930000px;}
.yab{bottom:966.030000px;}
.yd0{bottom:972.600000px;}
.yaa{bottom:983.580000px;}
.y4{bottom:987.630000px;}
.y2e{bottom:988.440000px;}
.ycf{bottom:999.150000px;}
.y6d{bottom:1002.120000px;}
.y9c{bottom:1002.930000px;}
.y2d{bottom:1005.990000px;}
.y49{bottom:1007.340000px;}
.ya9{bottom:1010.520000px;}
.y3{bottom:1012.320000px;}
.yce{bottom:1016.820000px;}
.y2c{bottom:1023.570000px;}
.ycd{bottom:1043.370000px;}
.y6c{bottom:1047.060000px;}
.y2b{bottom:1050.480000px;}
.ya8{bottom:1058.760000px;}
.ycc{bottom:1060.920000px;}
.y48{bottom:1078.110000px;}
.ycb{bottom:1078.560000px;}
.y99{bottom:1082.970000px;}
.ya7{bottom:1085.670000px;}
.y2a{bottom:1087.560000px;}
.y6a{bottom:1091.970000px;}
.y47{bottom:1104.750000px;}
.y29{bottom:1105.110000px;}
.y28{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h1a{height:41.661211px;}
.h13{height:44.100000px;}
.h11{height:44.190000px;}
.h16{height:44.220000px;}
.h2{height:46.986328px;}
.h19{height:48.600000px;}
.hd{height:48.630000px;}
.h12{height:48.690000px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h14{height:61.770000px;}
.h1d{height:61.793886px;}
.h15{height:61.830000px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h10{height:70.740000px;}
.h1b{height:70.830000px;}
.h17{height:71.019492px;}
.h4{height:72.985430px;}
.hc{height:74.004654px;}
.h18{height:74.953125px;}
.h1c{height:79.320000px;}
.hf{height:120.180000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:36.090000px;}
.w11{width:37.800000px;}
.w4{width:48.600000px;}
.w18{width:54.900000px;}
.w19{width:54.930000px;}
.wb{width:55.080000px;}
.w1a{width:55.800000px;}
.w17{width:56.430000px;}
.wd{width:57.990000px;}
.wa{width:58.050000px;}
.we{width:63.270000px;}
.wf{width:63.360000px;}
.wc{width:63.450000px;}
.w5{width:71.760000px;}
.w14{width:112.050000px;}
.w15{width:112.080000px;}
.w16{width:112.950000px;}
.w13{width:113.580000px;}
.w8{width:116.760000px;}
.w6{width:116.820000px;}
.w7{width:119.160000px;}
.w10{width:121.080000px;}
.w9{width:122.040000px;}
.w12{width:149.160000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x7{left:105.570000px;}
.x15{left:107.370000px;}
.x21{left:111.239987px;}
.x8{left:154.890000px;}
.x13{left:157.769987px;}
.x20{left:159.929987px;}
.x2{left:192.719987px;}
.x5{left:208.199987px;}
.x9{left:227.460000px;}
.x16{left:257.250000px;}
.xe{left:286.230000px;}
.x1b{left:314.400000px;}
.xa{left:345.000000px;}
.x17{left:371.550000px;}
.xf{left:400.800000px;}
.x1c{left:428.700000px;}
.xb{left:464.970000px;}
.x18{left:484.410000px;}
.x10{left:523.680000px;}
.x1d{left:540.060000px;}
.xc{left:582.450000px;}
.x19{left:597.210000px;}
.x11{left:646.530000px;}
.x1e{left:654.360000px;}
.xd{left:705.300000px;}
.x1a{left:711.510000px;}
.x14{left:727.889987px;}
.x4{left:733.199987px;}
.x12{left:761.100000px;}
.x1f{left:768.030000px;}
.x3{left:800.339987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.125867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls16{letter-spacing:-0.111467pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.073067pt;}
.ls14{letter-spacing:-0.059733pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls1{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.105067pt;}
.ls10{letter-spacing:0.105280pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.161067pt;}
.ls2{letter-spacing:0.378240pt;}
.ls3{letter-spacing:12.586667pt;}
.ls18{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws0{word-spacing:-48.000000pt;}
.ws5{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws13{word-spacing:-11.917867pt;}
.wsa{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.861867pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.697067pt;}
.ws14{word-spacing:-11.645333pt;}
.wsd{word-spacing:-11.630933pt;}
.ws9{word-spacing:-11.590933pt;}
.ws10{word-spacing:-9.517333pt;}
.ws11{word-spacing:-9.363200pt;}
.wsf{word-spacing:-9.290133pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws6{word-spacing:-7.667200pt;}
.ws7{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._4{margin-left:-3.420267pt;}
._3{margin-left:-2.137600pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.656960pt;}
._8{width:2.840853pt;}
._2{width:3.854293pt;}
._9{width:4.762775pt;}
._a{width:5.663337pt;}
._b{width:7.267733pt;}
._6{width:8.550400pt;}
._7{width:9.865493pt;}
._5{width:10.792960pt;}
._11{width:13.680640pt;}
._c{width:17.848960pt;}
._10{width:19.719360pt;}
._e{width:21.856960pt;}
._d{width:24.956480pt;}
._f{width:39.385280pt;}
._13{width:120.293440pt;}
._12{width:239.999040pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs1{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:6.960000pt;}
.y4b{bottom:6.986667pt;}
.y52{bottom:7.040000pt;}
.y6f{bottom:7.066667pt;}
.y57{bottom:10.960000pt;}
.y51{bottom:11.040000pt;}
.ya0{bottom:14.586667pt;}
.y9e{bottom:18.586667pt;}
.y5a{bottom:22.560000pt;}
.y62{bottom:22.586667pt;}
.y54{bottom:22.640000pt;}
.y6e{bottom:22.666667pt;}
.y7e{bottom:26.560000pt;}
.y4a{bottom:26.586667pt;}
.y50{bottom:26.640000pt;}
.y9b{bottom:30.640000pt;}
.y9f{bottom:34.266667pt;}
.y61{bottom:38.266667pt;}
.y6b{bottom:42.320000pt;}
.y4f{bottom:46.240000pt;}
.y9a{bottom:46.320000pt;}
.y9d{bottom:53.866667pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y4e{bottom:70.586667pt;}
.y1{bottom:85.386667pt;}
.y4d{bottom:90.186667pt;}
.y46{bottom:104.746667pt;}
.yca{bottom:107.306667pt;}
.y69{bottom:113.386667pt;}
.y80{bottom:114.426667pt;}
.y98{bottom:123.706667pt;}
.yc9{bottom:130.986667pt;}
.y45{bottom:136.346667pt;}
.y97{bottom:139.306667pt;}
.yc8{bottom:146.586667pt;}
.y7f{bottom:154.346667pt;}
.y24{bottom:157.146667pt;}
.y68{bottom:157.306667pt;}
.yc7{bottom:162.266667pt;}
.y44{bottom:167.946667pt;}
.y96{bottom:170.986667pt;}
.y23{bottom:172.746667pt;}
.y43{bottom:183.626667pt;}
.yc6{bottom:185.866667pt;}
.y95{bottom:186.586667pt;}
.y67{bottom:197.226667pt;}
.y42{bottom:199.226667pt;}
.yc5{bottom:201.466667pt;}
.y94{bottom:202.186667pt;}
.y22{bottom:204.426667pt;}
.y41{bottom:214.906667pt;}
.y93{bottom:217.866667pt;}
.y7d{bottom:217.946667pt;}
.y21{bottom:220.026667pt;}
.yc4{bottom:225.146667pt;}
.y92{bottom:233.466667pt;}
.y20{bottom:235.706667pt;}
.yc3{bottom:240.746667pt;}
.y66{bottom:241.146667pt;}
.y40{bottom:246.506667pt;}
.y91{bottom:249.146667pt;}
.y1f{bottom:251.306667pt;}
.yc2{bottom:264.426667pt;}
.y90{bottom:264.746667pt;}
.y1e{bottom:266.906667pt;}
.yc1{bottom:280.026667pt;}
.y8f{bottom:280.346667pt;}
.y1d{bottom:282.586667pt;}
.y3f{bottom:284.346667pt;}
.y65{bottom:285.066667pt;}
.y7c{bottom:286.826667pt;}
.yc0{bottom:295.626667pt;}
.y7b{bottom:310.506667pt;}
.y8e{bottom:312.026667pt;}
.y1c{bottom:314.186667pt;}
.ybf{bottom:319.306667pt;}
.y64{bottom:324.986667pt;}
.y8d{bottom:327.626667pt;}
.y1b{bottom:329.866667pt;}
.ybe{bottom:334.906667pt;}
.y7a{bottom:342.106667pt;}
.y8c{bottom:343.306667pt;}
.y1a{bottom:345.466667pt;}
.y79{bottom:357.706667pt;}
.ybd{bottom:358.586667pt;}
.y8b{bottom:358.906667pt;}
.y19{bottom:361.066667pt;}
.y63{bottom:368.906667pt;}
.y78{bottom:373.386667pt;}
.ybc{bottom:374.186667pt;}
.y8a{bottom:374.506667pt;}
.y18{bottom:376.746667pt;}
.y77{bottom:388.986667pt;}
.y89{bottom:390.186667pt;}
.ybb{bottom:397.786667pt;}
.y17{bottom:400.666667pt;}
.y76{bottom:404.666667pt;}
.y88{bottom:405.786667pt;}
.y60{bottom:408.906667pt;}
.yba{bottom:413.466667pt;}
.y87{bottom:421.493333pt;}
.y75{bottom:436.293333pt;}
.yb9{bottom:437.093333pt;}
.y16{bottom:443.573333pt;}
.y86{bottom:445.333333pt;}
.yb8{bottom:452.773333pt;}
.y15{bottom:459.493333pt;}
.y5f{bottom:464.453333pt;}
.y74{bottom:474.133333pt;}
.yb7{bottom:476.613333pt;}
.y85{bottom:488.293333pt;}
.y14{bottom:492.373333pt;}
.y84{bottom:503.893333pt;}
.y13{bottom:508.053333pt;}
.y5e{bottom:508.373333pt;}
.y83{bottom:519.573333pt;}
.y3e{bottom:525.333333pt;}
.y82{bottom:535.173333pt;}
.y12{bottom:539.653333pt;}
.yb6{bottom:543.493333pt;}
.y5d{bottom:548.293333pt;}
.y11{bottom:555.333333pt;}
.y3d{bottom:557.013333pt;}
.y81{bottom:566.133333pt;}
.y10{bottom:570.933333pt;}
.y3c{bottom:572.613333pt;}
.yb5{bottom:576.373333pt;}
.ya6{bottom:577.013333pt;}
.yf{bottom:586.533333pt;}
.y5c{bottom:588.213333pt;}
.y3b{bottom:596.293333pt;}
.yb4{bottom:600.293333pt;}
.ye{bottom:602.213333pt;}
.yd{bottom:617.813333pt;}
.ya5{bottom:620.933333pt;}
.y3a{bottom:628.133333pt;}
.y5b{bottom:628.213333pt;}
.yb3{bottom:633.253333pt;}
.yc{bottom:633.493333pt;}
.yb2{bottom:648.853333pt;}
.yb{bottom:657.413333pt;}
.y59{bottom:668.133333pt;}
.y39{bottom:671.093333pt;}
.yb1{bottom:672.773333pt;}
.ya4{bottom:684.453333pt;}
.y38{bottom:686.693333pt;}
.ya{bottom:700.293333pt;}
.y37{bottom:702.373333pt;}
.yb0{bottom:705.973333pt;}
.y58{bottom:708.053333pt;}
.y36{bottom:717.973333pt;}
.ya3{bottom:724.373333pt;}
.y9{bottom:731.893333pt;}
.y35{bottom:733.573333pt;}
.yd7{bottom:739.093333pt;}
.y56{bottom:747.973333pt;}
.yaf{bottom:748.853333pt;}
.y34{bottom:749.253333pt;}
.yd6{bottom:754.693333pt;}
.y73{bottom:761.093333pt;}
.y8{bottom:763.733333pt;}
.yae{bottom:764.533333pt;}
.y33{bottom:764.853333pt;}
.yd5{bottom:770.373333pt;}
.y32{bottom:780.533333pt;}
.ya2{bottom:787.973333pt;}
.y53{bottom:791.893333pt;}
.y72{bottom:792.133333pt;}
.yd4{bottom:793.973333pt;}
.y31{bottom:796.133333pt;}
.y7{bottom:799.093333pt;}
.y71{bottom:802.933333pt;}
.yd3{bottom:809.653333pt;}
.y30{bottom:811.733333pt;}
.y6{bottom:815.093333pt;}
.yd2{bottom:825.253333pt;}
.yad{bottom:827.413333pt;}
.y4c{bottom:831.813333pt;}
.y2f{bottom:835.653333pt;}
.yac{bottom:843.013333pt;}
.y5{bottom:843.813333pt;}
.y70{bottom:846.853333pt;}
.yd1{bottom:848.853333pt;}
.ya1{bottom:851.493333pt;}
.yab{bottom:858.693333pt;}
.yd0{bottom:864.533333pt;}
.yaa{bottom:874.293333pt;}
.y4{bottom:877.893333pt;}
.y2e{bottom:878.613333pt;}
.ycf{bottom:888.133333pt;}
.y6d{bottom:890.773333pt;}
.y9c{bottom:891.493333pt;}
.y2d{bottom:894.213333pt;}
.y49{bottom:895.413333pt;}
.ya9{bottom:898.240000pt;}
.y3{bottom:899.840000pt;}
.yce{bottom:903.840000pt;}
.y2c{bottom:909.840000pt;}
.ycd{bottom:927.440000pt;}
.y6c{bottom:930.720000pt;}
.y2b{bottom:933.760000pt;}
.ya8{bottom:941.120000pt;}
.ycc{bottom:943.040000pt;}
.y48{bottom:958.320000pt;}
.ycb{bottom:958.720000pt;}
.y99{bottom:962.640000pt;}
.ya7{bottom:965.040000pt;}
.y2a{bottom:966.720000pt;}
.y6a{bottom:970.640000pt;}
.y47{bottom:982.000000pt;}
.y29{bottom:982.320000pt;}
.y28{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h1a{height:37.032187pt;}
.h13{height:39.200000pt;}
.h11{height:39.280000pt;}
.h16{height:39.306667pt;}
.h2{height:41.765625pt;}
.h19{height:43.200000pt;}
.hd{height:43.226667pt;}
.h12{height:43.280000pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h14{height:54.906667pt;}
.h1d{height:54.927899pt;}
.h15{height:54.960000pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h10{height:62.880000pt;}
.h1b{height:62.960000pt;}
.h17{height:63.128437pt;}
.h4{height:64.875937pt;}
.hc{height:65.781915pt;}
.h18{height:66.625000pt;}
.h1c{height:70.506667pt;}
.hf{height:106.826667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:32.080000pt;}
.w11{width:33.600000pt;}
.w4{width:43.200000pt;}
.w18{width:48.800000pt;}
.w19{width:48.826667pt;}
.wb{width:48.960000pt;}
.w1a{width:49.600000pt;}
.w17{width:50.160000pt;}
.wd{width:51.546667pt;}
.wa{width:51.600000pt;}
.we{width:56.240000pt;}
.wf{width:56.320000pt;}
.wc{width:56.400000pt;}
.w5{width:63.786667pt;}
.w14{width:99.600000pt;}
.w15{width:99.626667pt;}
.w16{width:100.400000pt;}
.w13{width:100.960000pt;}
.w8{width:103.786667pt;}
.w6{width:103.840000pt;}
.w7{width:105.920000pt;}
.w10{width:107.626667pt;}
.w9{width:108.480000pt;}
.w12{width:132.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x7{left:93.840000pt;}
.x15{left:95.440000pt;}
.x21{left:98.879988pt;}
.x8{left:137.680000pt;}
.x13{left:140.239988pt;}
.x20{left:142.159988pt;}
.x2{left:171.306655pt;}
.x5{left:185.066655pt;}
.x9{left:202.186667pt;}
.x16{left:228.666667pt;}
.xe{left:254.426667pt;}
.x1b{left:279.466667pt;}
.xa{left:306.666667pt;}
.x17{left:330.266667pt;}
.xf{left:356.266667pt;}
.x1c{left:381.066667pt;}
.xb{left:413.306667pt;}
.x18{left:430.586667pt;}
.x10{left:465.493333pt;}
.x1d{left:480.053333pt;}
.xc{left:517.733333pt;}
.x19{left:530.853333pt;}
.x11{left:574.693333pt;}
.x1e{left:581.653333pt;}
.xd{left:626.933333pt;}
.x1a{left:632.453333pt;}
.x14{left:647.013322pt;}
.x4{left:651.733322pt;}
.x12{left:676.533333pt;}
.x1f{left:682.693333pt;}
.x3{left:711.413322pt;}
}




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