
    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_09d0da8f8520f4a166077e52.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_b91e95a9b7b7cd18ddc4c221.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_45315546f00fdacddc306cc3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_99b402828bbc8f41dc58060e.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_19ef740766779d50836dbe45.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_569b775e9fd511661424b00a.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;}
.ls15{letter-spacing:-0.409800px;}
.lsd{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.049680px;}
.lse{letter-spacing:-0.003240px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.049200px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:47.726640px;}
.ls11{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;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.324800px;}
.ws5{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.176720px;}
.ws8{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.816600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._5{margin-left:-3.592202px;}
._3{margin-left:-2.487000px;}
._0{margin-left:-1.110000px;}
._2{width:1.121967px;}
._6{width:2.344800px;}
._8{width:3.539388px;}
._7{width:5.290800px;}
._9{width:7.214400px;}
._b{width:8.476800px;}
._c{width:9.499802px;}
._d{width:10.501024px;}
._4{width:11.904000px;}
._19{width:15.229320px;}
._18{width:16.292520px;}
._1a{width:17.494920px;}
._a{width:18.947976px;}
._1{width:20.299212px;}
._f{width:21.583080px;}
._e{width:22.665240px;}
._1b{width:23.867640px;}
._10{width:26.753400px;}
._1e{width:28.683000px;}
._1c{width:29.723040px;}
._11{width:31.082040px;}
._12{width:32.344560px;}
._1d{width:36.252360px;}
._22{width:38.296440px;}
._14{width:45.090000px;}
._16{width:46.532880px;}
._17{width:47.735280px;}
._15{width:55.611000px;}
._1f{width:60.203880px;}
._20{width:61.383960px;}
._21{width:62.509560px;}
._13{width:139.358160px;}
.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;}
.y43{bottom:7.830000px;}
.y4b{bottom:7.920000px;}
.y49{bottom:25.380000px;}
.y47{bottom:25.410000px;}
.y45{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yb6{bottom:111.720000px;}
.y87{bottom:111.810000px;}
.y115{bottom:116.130000px;}
.yff{bottom:124.680000px;}
.yb5{bottom:129.270000px;}
.y114{bottom:133.680000px;}
.yd8{bottom:136.290000px;}
.yfe{bottom:142.320000px;}
.yb4{bottom:146.910000px;}
.y86{bottom:147.450000px;}
.yd7{bottom:153.840000px;}
.y25{bottom:156.990000px;}
.y113{bottom:160.320000px;}
.yfd{bottom:168.870000px;}
.y24{bottom:174.540000px;}
.y112{bottom:177.870000px;}
.yd6{bottom:180.480000px;}
.yb3{bottom:182.460000px;}
.y85{bottom:183.000000px;}
.y41{bottom:184.980000px;}
.yfc{bottom:186.510000px;}
.y23{bottom:192.090000px;}
.y111{bottom:195.510000px;}
.yd5{bottom:198.030000px;}
.yb2{bottom:200.100000px;}
.y84{bottom:200.550000px;}
.y67{bottom:204.420000px;}
.y22{bottom:209.730000px;}
.yfb{bottom:213.060000px;}
.yb1{bottom:217.650000px;}
.y83{bottom:218.190000px;}
.y40{bottom:220.530000px;}
.y66{bottom:221.970000px;}
.y110{bottom:222.060000px;}
.yd4{bottom:224.580000px;}
.yfa{bottom:230.610000px;}
.yb0{bottom:235.200000px;}
.y65{bottom:239.610000px;}
.yd3{bottom:242.220000px;}
.y82{bottom:244.740000px;}
.y21{bottom:245.280000px;}
.yaf{bottom:252.840000px;}
.y3f{bottom:256.080000px;}
.y64{bottom:257.160000px;}
.yf9{bottom:257.250000px;}
.yd2{bottom:259.770000px;}
.y20{bottom:262.920000px;}
.y10f{bottom:266.250000px;}
.yae{bottom:270.390000px;}
.y63{bottom:274.710000px;}
.yf8{bottom:274.800000px;}
.y81{bottom:280.380000px;}
.y1f{bottom:280.470000px;}
.y10e{bottom:283.800000px;}
.yd1{bottom:286.410000px;}
.yad{bottom:287.940000px;}
.y3e{bottom:291.720000px;}
.y62{bottom:292.350000px;}
.y80{bottom:297.930000px;}
.y1e{bottom:298.020000px;}
.yf7{bottom:301.440000px;}
.yd0{bottom:303.960000px;}
.yac{bottom:305.580000px;}
.y61{bottom:309.900000px;}
.y7f{bottom:315.480000px;}
.y1d{bottom:315.660000px;}
.yf6{bottom:318.990000px;}
.yab{bottom:323.130000px;}
.y3d{bottom:323.940000px;}
.y10d{bottom:327.990000px;}
.ycf{bottom:330.510000px;}
.y1c{bottom:333.210000px;}
.yf5{bottom:336.540000px;}
.y7e{bottom:342.120000px;}
.y60{bottom:345.540000px;}
.yaa{bottom:349.770000px;}
.yce{bottom:357.150000px;}
.y5f{bottom:363.090000px;}
.yf4{bottom:363.180000px;}
.y1b{bottom:368.850000px;}
.ycd{bottom:374.700000px;}
.y7d{bottom:377.670000px;}
.y5e{bottom:380.640000px;}
.yf3{bottom:380.730000px;}
.ya9{bottom:385.320000px;}
.y1a{bottom:386.400000px;}
.y10c{bottom:389.730000px;}
.y7c{bottom:395.310000px;}
.yf2{bottom:398.370000px;}
.ycc{bottom:401.340000px;}
.ya8{bottom:402.870000px;}
.y19{bottom:403.950000px;}
.y10b{bottom:407.370000px;}
.y5d{bottom:416.280000px;}
.ycb{bottom:418.890000px;}
.ya7{bottom:420.510000px;}
.y18{bottom:421.590000px;}
.y7b{bottom:421.860000px;}
.yf1{bottom:424.920000px;}
.y5c{bottom:433.830000px;}
.ya6{bottom:438.060000px;}
.yf0{bottom:442.470000px;}
.yca{bottom:445.800000px;}
.y17{bottom:448.140000px;}
.y5b{bottom:451.470000px;}
.y7a{bottom:457.410000px;}
.y5a{bottom:469.020000px;}
.yef{bottom:469.110000px;}
.ya5{bottom:473.730000px;}
.y79{bottom:475.080000px;}
.y16{bottom:484.080000px;}
.y59{bottom:486.600000px;}
.yee{bottom:486.690000px;}
.ya4{bottom:491.280000px;}
.yc9{bottom:494.070000px;}
.y10a{bottom:495.690000px;}
.y78{bottom:501.630000px;}
.y58{bottom:504.240000px;}
.yed{bottom:504.330000px;}
.ya3{bottom:508.830000px;}
.y109{bottom:513.330000px;}
.yc8{bottom:520.980000px;}
.ya2{bottom:526.470000px;}
.yec{bottom:530.880000px;}
.y15{bottom:532.680000px;}
.y77{bottom:537.270000px;}
.y57{bottom:539.790000px;}
.ya1{bottom:544.020000px;}
.yeb{bottom:548.430000px;}
.y76{bottom:554.820000px;}
.y56{bottom:557.340000px;}
.y108{bottom:557.430000px;}
.yc7{bottom:558.330000px;}
.yea{bottom:566.070000px;}
.y14{bottom:569.670000px;}
.y75{bottom:572.370000px;}
.y55{bottom:574.980000px;}
.y107{bottom:575.070000px;}
.ya0{bottom:579.660000px;}
.y13{bottom:587.310000px;}
.y74{bottom:590.010000px;}
.y54{bottom:592.530000px;}
.ye9{bottom:592.620000px;}
.y9f{bottom:597.210000px;}
.y106{bottom:601.620000px;}
.y12{bottom:604.860000px;}
.yc6{bottom:606.660000px;}
.y73{bottom:607.560000px;}
.y53{bottom:610.170000px;}
.ye8{bottom:610.260000px;}
.y9e{bottom:614.760000px;}
.y105{bottom:619.260000px;}
.y11{bottom:622.500000px;}
.yc5{bottom:624.210000px;}
.y72{bottom:625.200000px;}
.y52{bottom:627.720000px;}
.y9d{bottom:632.400000px;}
.ye7{bottom:636.810000px;}
.y10{bottom:640.050000px;}
.yc4{bottom:641.760000px;}
.y9c{bottom:649.950000px;}
.y71{bottom:651.750000px;}
.y51{bottom:654.270000px;}
.y104{bottom:654.360000px;}
.yf{bottom:657.600000px;}
.yc3{bottom:659.400000px;}
.ye6{bottom:663.360000px;}
.y9b{bottom:667.590000px;}
.ye{bottom:675.240000px;}
.yc2{bottom:676.950000px;}
.ye5{bottom:681.000000px;}
.y9a{bottom:685.140000px;}
.y50{bottom:687.300000px;}
.y11e{bottom:690.000000px;}
.yd{bottom:692.790000px;}
.yc1{bottom:694.590000px;}
.y103{bottom:698.550000px;}
.y70{bottom:704.940000px;}
.y3c{bottom:707.550000px;}
.yc{bottom:710.430000px;}
.y11d{bottom:716.550000px;}
.y99{bottom:720.690000px;}
.y6f{bottom:722.490000px;}
.y3b{bottom:725.190000px;}
.yb{bottom:727.980000px;}
.yc0{bottom:730.140000px;}
.y4f{bottom:732.210000px;}
.y11c{bottom:734.190000px;}
.y98{bottom:738.330000px;}
.y6e{bottom:740.040000px;}
.ye4{bottom:742.740000px;}
.ybf{bottom:747.690000px;}
.y3a{bottom:751.740000px;}
.ya{bottom:754.890000px;}
.y97{bottom:755.880000px;}
.y6d{bottom:757.680000px;}
.y11b{bottom:760.740000px;}
.ybe{bottom:765.330000px;}
.ye3{bottom:769.290000px;}
.y96{bottom:773.520000px;}
.y6c{bottom:775.230000px;}
.y4e{bottom:777.120000px;}
.y11a{bottom:778.290000px;}
.ybd{bottom:782.880000px;}
.ye2{bottom:786.930000px;}
.y39{bottom:787.290000px;}
.y95{bottom:791.070000px;}
.y6b{bottom:801.870000px;}
.y9{bottom:803.130000px;}
.y38{bottom:804.930000px;}
.y94{bottom:808.620000px;}
.ybc{bottom:809.790000px;}
.ye1{bottom:813.480000px;}
.y4d{bottom:822.030000px;}
.y37{bottom:822.480000px;}
.ye0{bottom:831.030000px;}
.y93{bottom:835.530000px;}
.y6a{bottom:837.780000px;}
.y8{bottom:838.950000px;}
.y36{bottom:840.030000px;}
.y119{bottom:849.030000px;}
.ydf{bottom:857.670000px;}
.ybb{bottom:858.030000px;}
.y118{bottom:866.670000px;}
.y4c{bottom:866.940000px;}
.y7{bottom:874.950000px;}
.yde{bottom:875.220000px;}
.y35{bottom:875.670000px;}
.y92{bottom:883.860000px;}
.y117{bottom:884.220000px;}
.y69{bottom:886.020000px;}
.y102{bottom:892.860000px;}
.y34{bottom:893.220000px;}
.y91{bottom:901.410000px;}
.ydd{bottom:901.860000px;}
.y33{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y4a{bottom:911.850000px;}
.y68{bottom:918.240000px;}
.y90{bottom:918.960000px;}
.ydc{bottom:919.410000px;}
.y32{bottom:928.410000px;}
.y101{bottom:936.960000px;}
.y8f{bottom:945.600000px;}
.y31{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y48{bottom:956.850000px;}
.ydb{bottom:963.600000px;}
.y116{bottom:972.600000px;}
.y8e{bottom:981.150000px;}
.y30{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.yda{bottom:990.150000px;}
.y8d{bottom:998.790000px;}
.y2f{bottom:999.150000px;}
.y46{bottom:1001.760000px;}
.yd9{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y8c{bottom:1016.370000px;}
.y2e{bottom:1016.820000px;}
.y100{bottom:1025.370000px;}
.yba{bottom:1034.370000px;}
.y8b{bottom:1042.920000px;}
.y44{bottom:1046.700000px;}
.yb9{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.yb8{bottom:1069.560000px;}
.y2c{bottom:1069.920000px;}
.y8a{bottom:1078.560000px;}
.yb7{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.y42{bottom:1091.610000px;}
.y89{bottom:1096.110000px;}
.y2a{bottom:1105.110000px;}
.y88{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h9{height:26.550000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.100000px;}
.hb{height:44.130000px;}
.ha{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.he{height:61.793886px;}
.h8{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:91.980000px;}
.w3{width:138.090000px;}
.w4{width:169.380000px;}
.w5{width:353.820000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:111.239987px;}
.x7{left:207.660000px;}
.x2{left:211.079987px;}
.x5{left:269.939987px;}
.xb{left:357.779987px;}
.x8{left:377.850000px;}
.xa{left:565.889987px;}
.x4{left:717.809987px;}
.x9{left:732.480000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.364267pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.044160pt;}
.lse{letter-spacing:-0.002880pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.043733pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.844267pt;}
.ws5{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.712640pt;}
.ws8{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.392533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._5{margin-left:-3.193069pt;}
._3{margin-left:-2.210666pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.997304pt;}
._6{width:2.084267pt;}
._8{width:3.146122pt;}
._7{width:4.702934pt;}
._9{width:6.412800pt;}
._b{width:7.534933pt;}
._c{width:8.444268pt;}
._d{width:9.334244pt;}
._4{width:10.581334pt;}
._19{width:13.537173pt;}
._18{width:14.482240pt;}
._1a{width:15.551040pt;}
._a{width:16.842646pt;}
._1{width:18.043744pt;}
._f{width:19.184960pt;}
._e{width:20.146880pt;}
._1b{width:21.215680pt;}
._10{width:23.780800pt;}
._1e{width:25.496000pt;}
._1c{width:26.420480pt;}
._11{width:27.628480pt;}
._12{width:28.750720pt;}
._1d{width:32.224320pt;}
._22{width:34.041280pt;}
._14{width:40.080000pt;}
._16{width:41.362560pt;}
._17{width:42.431360pt;}
._15{width:49.432000pt;}
._1f{width:53.514560pt;}
._20{width:54.563520pt;}
._21{width:55.564053pt;}
._13{width:123.873920pt;}
.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;}
.y43{bottom:6.960000pt;}
.y4b{bottom:7.040000pt;}
.y49{bottom:22.560000pt;}
.y47{bottom:22.586667pt;}
.y45{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yb6{bottom:99.306667pt;}
.y87{bottom:99.386667pt;}
.y115{bottom:103.226667pt;}
.yff{bottom:110.826667pt;}
.yb5{bottom:114.906667pt;}
.y114{bottom:118.826667pt;}
.yd8{bottom:121.146667pt;}
.yfe{bottom:126.506667pt;}
.yb4{bottom:130.586667pt;}
.y86{bottom:131.066667pt;}
.yd7{bottom:136.746667pt;}
.y25{bottom:139.546667pt;}
.y113{bottom:142.506667pt;}
.yfd{bottom:150.106667pt;}
.y24{bottom:155.146667pt;}
.y112{bottom:158.106667pt;}
.yd6{bottom:160.426667pt;}
.yb3{bottom:162.186667pt;}
.y85{bottom:162.666667pt;}
.y41{bottom:164.426667pt;}
.yfc{bottom:165.786667pt;}
.y23{bottom:170.746667pt;}
.y111{bottom:173.786667pt;}
.yd5{bottom:176.026667pt;}
.yb2{bottom:177.866667pt;}
.y84{bottom:178.266667pt;}
.y67{bottom:181.706667pt;}
.y22{bottom:186.426667pt;}
.yfb{bottom:189.386667pt;}
.yb1{bottom:193.466667pt;}
.y83{bottom:193.946667pt;}
.y40{bottom:196.026667pt;}
.y66{bottom:197.306667pt;}
.y110{bottom:197.386667pt;}
.yd4{bottom:199.626667pt;}
.yfa{bottom:204.986667pt;}
.yb0{bottom:209.066667pt;}
.y65{bottom:212.986667pt;}
.yd3{bottom:215.306667pt;}
.y82{bottom:217.546667pt;}
.y21{bottom:218.026667pt;}
.yaf{bottom:224.746667pt;}
.y3f{bottom:227.626667pt;}
.y64{bottom:228.586667pt;}
.yf9{bottom:228.666667pt;}
.yd2{bottom:230.906667pt;}
.y20{bottom:233.706667pt;}
.y10f{bottom:236.666667pt;}
.yae{bottom:240.346667pt;}
.y63{bottom:244.186667pt;}
.yf8{bottom:244.266667pt;}
.y81{bottom:249.226667pt;}
.y1f{bottom:249.306667pt;}
.y10e{bottom:252.266667pt;}
.yd1{bottom:254.586667pt;}
.yad{bottom:255.946667pt;}
.y3e{bottom:259.306667pt;}
.y62{bottom:259.866667pt;}
.y80{bottom:264.826667pt;}
.y1e{bottom:264.906667pt;}
.yf7{bottom:267.946667pt;}
.yd0{bottom:270.186667pt;}
.yac{bottom:271.626667pt;}
.y61{bottom:275.466667pt;}
.y7f{bottom:280.426667pt;}
.y1d{bottom:280.586667pt;}
.yf6{bottom:283.546667pt;}
.yab{bottom:287.226667pt;}
.y3d{bottom:287.946667pt;}
.y10d{bottom:291.546667pt;}
.ycf{bottom:293.786667pt;}
.y1c{bottom:296.186667pt;}
.yf5{bottom:299.146667pt;}
.y7e{bottom:304.106667pt;}
.y60{bottom:307.146667pt;}
.yaa{bottom:310.906667pt;}
.yce{bottom:317.466667pt;}
.y5f{bottom:322.746667pt;}
.yf4{bottom:322.826667pt;}
.y1b{bottom:327.866667pt;}
.ycd{bottom:333.066667pt;}
.y7d{bottom:335.706667pt;}
.y5e{bottom:338.346667pt;}
.yf3{bottom:338.426667pt;}
.ya9{bottom:342.506667pt;}
.y1a{bottom:343.466667pt;}
.y10c{bottom:346.426667pt;}
.y7c{bottom:351.386667pt;}
.yf2{bottom:354.106667pt;}
.ycc{bottom:356.746667pt;}
.ya8{bottom:358.106667pt;}
.y19{bottom:359.066667pt;}
.y10b{bottom:362.106667pt;}
.y5d{bottom:370.026667pt;}
.ycb{bottom:372.346667pt;}
.ya7{bottom:373.786667pt;}
.y18{bottom:374.746667pt;}
.y7b{bottom:374.986667pt;}
.yf1{bottom:377.706667pt;}
.y5c{bottom:385.626667pt;}
.ya6{bottom:389.386667pt;}
.yf0{bottom:393.306667pt;}
.yca{bottom:396.266667pt;}
.y17{bottom:398.346667pt;}
.y5b{bottom:401.306667pt;}
.y7a{bottom:406.586667pt;}
.y5a{bottom:416.906667pt;}
.yef{bottom:416.986667pt;}
.ya5{bottom:421.093333pt;}
.y79{bottom:422.293333pt;}
.y16{bottom:430.293333pt;}
.y59{bottom:432.533333pt;}
.yee{bottom:432.613333pt;}
.ya4{bottom:436.693333pt;}
.yc9{bottom:439.173333pt;}
.y10a{bottom:440.613333pt;}
.y78{bottom:445.893333pt;}
.y58{bottom:448.213333pt;}
.yed{bottom:448.293333pt;}
.ya3{bottom:452.293333pt;}
.y109{bottom:456.293333pt;}
.yc8{bottom:463.093333pt;}
.ya2{bottom:467.973333pt;}
.yec{bottom:471.893333pt;}
.y15{bottom:473.493333pt;}
.y77{bottom:477.573333pt;}
.y57{bottom:479.813333pt;}
.ya1{bottom:483.573333pt;}
.yeb{bottom:487.493333pt;}
.y76{bottom:493.173333pt;}
.y56{bottom:495.413333pt;}
.y108{bottom:495.493333pt;}
.yc7{bottom:496.293333pt;}
.yea{bottom:503.173333pt;}
.y14{bottom:506.373333pt;}
.y75{bottom:508.773333pt;}
.y55{bottom:511.093333pt;}
.y107{bottom:511.173333pt;}
.ya0{bottom:515.253333pt;}
.y13{bottom:522.053333pt;}
.y74{bottom:524.453333pt;}
.y54{bottom:526.693333pt;}
.ye9{bottom:526.773333pt;}
.y9f{bottom:530.853333pt;}
.y106{bottom:534.773333pt;}
.y12{bottom:537.653333pt;}
.yc6{bottom:539.253333pt;}
.y73{bottom:540.053333pt;}
.y53{bottom:542.373333pt;}
.ye8{bottom:542.453333pt;}
.y9e{bottom:546.453333pt;}
.y105{bottom:550.453333pt;}
.y11{bottom:553.333333pt;}
.yc5{bottom:554.853333pt;}
.y72{bottom:555.733333pt;}
.y52{bottom:557.973333pt;}
.y9d{bottom:562.133333pt;}
.ye7{bottom:566.053333pt;}
.y10{bottom:568.933333pt;}
.yc4{bottom:570.453333pt;}
.y9c{bottom:577.733333pt;}
.y71{bottom:579.333333pt;}
.y51{bottom:581.573333pt;}
.y104{bottom:581.653333pt;}
.yf{bottom:584.533333pt;}
.yc3{bottom:586.133333pt;}
.ye6{bottom:589.653333pt;}
.y9b{bottom:593.413333pt;}
.ye{bottom:600.213333pt;}
.yc2{bottom:601.733333pt;}
.ye5{bottom:605.333333pt;}
.y9a{bottom:609.013333pt;}
.y50{bottom:610.933333pt;}
.y11e{bottom:613.333333pt;}
.yd{bottom:615.813333pt;}
.yc1{bottom:617.413333pt;}
.y103{bottom:620.933333pt;}
.y70{bottom:626.613333pt;}
.y3c{bottom:628.933333pt;}
.yc{bottom:631.493333pt;}
.y11d{bottom:636.933333pt;}
.y99{bottom:640.613333pt;}
.y6f{bottom:642.213333pt;}
.y3b{bottom:644.613333pt;}
.yb{bottom:647.093333pt;}
.yc0{bottom:649.013333pt;}
.y4f{bottom:650.853333pt;}
.y11c{bottom:652.613333pt;}
.y98{bottom:656.293333pt;}
.y6e{bottom:657.813333pt;}
.ye4{bottom:660.213333pt;}
.ybf{bottom:664.613333pt;}
.y3a{bottom:668.213333pt;}
.ya{bottom:671.013333pt;}
.y97{bottom:671.893333pt;}
.y6d{bottom:673.493333pt;}
.y11b{bottom:676.213333pt;}
.ybe{bottom:680.293333pt;}
.ye3{bottom:683.813333pt;}
.y96{bottom:687.573333pt;}
.y6c{bottom:689.093333pt;}
.y4e{bottom:690.773333pt;}
.y11a{bottom:691.813333pt;}
.ybd{bottom:695.893333pt;}
.ye2{bottom:699.493333pt;}
.y39{bottom:699.813333pt;}
.y95{bottom:703.173333pt;}
.y6b{bottom:712.773333pt;}
.y9{bottom:713.893333pt;}
.y38{bottom:715.493333pt;}
.y94{bottom:718.773333pt;}
.ybc{bottom:719.813333pt;}
.ye1{bottom:723.093333pt;}
.y4d{bottom:730.693333pt;}
.y37{bottom:731.093333pt;}
.ye0{bottom:738.693333pt;}
.y93{bottom:742.693333pt;}
.y6a{bottom:744.693333pt;}
.y8{bottom:745.733333pt;}
.y36{bottom:746.693333pt;}
.y119{bottom:754.693333pt;}
.ydf{bottom:762.373333pt;}
.ybb{bottom:762.693333pt;}
.y118{bottom:770.373333pt;}
.y4c{bottom:770.613333pt;}
.y7{bottom:777.733333pt;}
.yde{bottom:777.973333pt;}
.y35{bottom:778.373333pt;}
.y92{bottom:785.653333pt;}
.y117{bottom:785.973333pt;}
.y69{bottom:787.573333pt;}
.y102{bottom:793.653333pt;}
.y34{bottom:793.973333pt;}
.y91{bottom:801.253333pt;}
.ydd{bottom:801.653333pt;}
.y33{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y4a{bottom:810.533333pt;}
.y68{bottom:816.213333pt;}
.y90{bottom:816.853333pt;}
.ydc{bottom:817.253333pt;}
.y32{bottom:825.253333pt;}
.y101{bottom:832.853333pt;}
.y8f{bottom:840.533333pt;}
.y31{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y48{bottom:850.533333pt;}
.ydb{bottom:856.533333pt;}
.y116{bottom:864.533333pt;}
.y8e{bottom:872.133333pt;}
.y30{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.yda{bottom:880.133333pt;}
.y8d{bottom:887.813333pt;}
.y2f{bottom:888.133333pt;}
.y46{bottom:890.453333pt;}
.yd9{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y8c{bottom:903.440000pt;}
.y2e{bottom:903.840000pt;}
.y100{bottom:911.440000pt;}
.yba{bottom:919.440000pt;}
.y8b{bottom:927.040000pt;}
.y44{bottom:930.400000pt;}
.yb9{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.yb8{bottom:950.720000pt;}
.y2c{bottom:951.040000pt;}
.y8a{bottom:958.720000pt;}
.yb7{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.y42{bottom:970.320000pt;}
.y89{bottom:974.320000pt;}
.y2a{bottom:982.320000pt;}
.y88{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.200000pt;}
.hb{height:39.226667pt;}
.ha{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.he{height:54.927899pt;}
.h8{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:81.760000pt;}
.w3{width:122.746667pt;}
.w4{width:150.560000pt;}
.w5{width:314.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:98.879988pt;}
.x7{left:184.586667pt;}
.x2{left:187.626655pt;}
.x5{left:239.946655pt;}
.xb{left:318.026655pt;}
.x8{left:335.866667pt;}
.xa{left:503.013322pt;}
.x4{left:638.053322pt;}
.x9{left:651.093333pt;}
.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; }
  