
    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_5869a428fd4e4bd9b398cbb1.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_248a2fe60359121626f069fc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c1a5a4af0d064224a5f3c410.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_c243faca368072489c711697.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_ebbf4e8494bb76119630d436.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_b00cf94a4bbc38867684ecb0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_83b1e551c1be577d9a668694.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_3bac9253e548ba6e359ea9a2.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls10{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.031680px;}
.ls12{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.045000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.113400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.339800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.wsc{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.ws3{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._b{margin-left:-3.547200px;}
._6{margin-left:-2.169000px;}
._0{margin-left:-1.110000px;}
._2{width:1.574040px;}
._7{width:2.731800px;}
._1{width:4.026072px;}
._a{width:5.202361px;}
._4{width:6.281208px;}
._3{width:7.371000px;}
._8{width:8.777400px;}
._9{width:9.912603px;}
._5{width:11.663160px;}
._c{width:14.248440px;}
._d{width:15.372120px;}
._e{width:16.533000px;}
._12{width:19.148040px;}
._f{width:20.500920px;}
._10{width:23.987880px;}
._11{width:25.310520px;}
.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;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:7.830000px;}
.y85{bottom:7.860000px;}
.y73{bottom:7.920000px;}
.y6d{bottom:35.190000px;}
.y71{bottom:35.280000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y82{bottom:89.940000px;}
.y1{bottom:101.640000px;}
.y9a{bottom:112.800000px;}
.yee{bottom:123.150000px;}
.y56{bottom:128.460000px;}
.y7e{bottom:137.190000px;}
.yed{bottom:140.700000px;}
.y55{bottom:146.100000px;}
.y99{bottom:148.350000px;}
.yec{bottom:158.250000px;}
.y98{bottom:165.990000px;}
.y54{bottom:172.650000px;}
.y7d{bottom:172.830000px;}
.y27{bottom:177.600000px;}
.yc1{bottom:178.050000px;}
.y97{bottom:183.540000px;}
.yeb{bottom:184.890000px;}
.y26{bottom:195.240000px;}
.yc0{bottom:195.600000px;}
.y96{bottom:201.090000px;}
.yea{bottom:202.440000px;}
.y53{bottom:205.230000px;}
.y7c{bottom:208.380000px;}
.y25{bottom:212.790000px;}
.ybf{bottom:213.240000px;}
.ye9{bottom:220.080000px;}
.y95{bottom:227.730000px;}
.y24{bottom:230.340000px;}
.ybe{bottom:230.790000px;}
.y52{bottom:240.780000px;}
.y7b{bottom:244.020000px;}
.ye8{bottom:246.630000px;}
.y23{bottom:247.980000px;}
.ybd{bottom:257.700000px;}
.y51{bottom:258.420000px;}
.y7a{bottom:261.570000px;}
.y94{bottom:262.560000px;}
.ye7{bottom:264.180000px;}
.y22{bottom:265.530000px;}
.y50{bottom:275.970000px;}
.ye6{bottom:281.820000px;}
.y21{bottom:283.170000px;}
.y79{bottom:288.120000px;}
.y4f{bottom:293.610000px;}
.y93{bottom:295.410000px;}
.y20{bottom:300.720000px;}
.ybc{bottom:305.940000px;}
.ye5{bottom:308.370000px;}
.y1f{bottom:318.270000px;}
.y4e{bottom:320.160000px;}
.ybb{bottom:323.580000px;}
.y78{bottom:323.760000px;}
.ye4{bottom:326.010000px;}
.y92{bottom:327.630000px;}
.y1e{bottom:335.910000px;}
.yba{bottom:341.130000px;}
.y77{bottom:341.310000px;}
.ye3{bottom:343.560000px;}
.y1d{bottom:353.460000px;}
.y4d{bottom:355.710000px;}
.yb9{bottom:358.770000px;}
.y76{bottom:358.950000px;}
.ye2{bottom:370.110000px;}
.y1c{bottom:371.100000px;}
.y4c{bottom:373.350000px;}
.y75{bottom:376.500000px;}
.ye1{bottom:387.750000px;}
.y1b{bottom:388.650000px;}
.y4b{bottom:390.900000px;}
.yb8{bottom:394.320000px;}
.y74{bottom:403.050000px;}
.y1a{bottom:406.200000px;}
.y4a{bottom:408.540000px;}
.yb7{bottom:411.870000px;}
.ye0{bottom:414.300000px;}
.yb6{bottom:429.510000px;}
.ydf{bottom:431.940000px;}
.y70{bottom:433.020000px;}
.y19{bottom:433.110000px;}
.y49{bottom:435.090000px;}
.yb5{bottom:447.060000px;}
.yde{bottom:458.490000px;}
.y72{bottom:460.380000px;}
.y48{bottom:467.670000px;}
.ydd{bottom:476.070000px;}
.y18{bottom:481.740000px;}
.yb4{bottom:482.730000px;}
.y6c{bottom:487.770000px;}
.yb3{bottom:500.280000px;}
.ydc{bottom:502.710000px;}
.y47{bottom:503.250000px;}
.y6e{bottom:515.130000px;}
.yb2{bottom:517.830000px;}
.y17{bottom:518.820000px;}
.ydb{bottom:520.260000px;}
.y46{bottom:520.890000px;}
.yb1{bottom:535.470000px;}
.y16{bottom:536.370000px;}
.y45{bottom:538.440000px;}
.yda{bottom:546.900000px;}
.y15{bottom:553.920000px;}
.y44{bottom:556.080000px;}
.y6b{bottom:563.820000px;}
.yd9{bottom:564.450000px;}
.y107{bottom:566.880000px;}
.yb0{bottom:571.020000px;}
.y14{bottom:571.560000px;}
.y43{bottom:573.630000px;}
.yd8{bottom:582.000000px;}
.y106{bottom:584.430000px;}
.yaf{bottom:588.660000px;}
.y13{bottom:589.110000px;}
.y6a{bottom:599.370000px;}
.y42{bottom:600.180000px;}
.y105{bottom:602.070000px;}
.y12{bottom:606.750000px;}
.yd7{bottom:608.640000px;}
.y69{bottom:617.010000px;}
.y104{bottom:619.620000px;}
.yae{bottom:624.210000px;}
.y11{bottom:624.300000px;}
.yd6{bottom:626.190000px;}
.y68{bottom:634.560000px;}
.y41{bottom:635.820000px;}
.yad{bottom:641.760000px;}
.y10{bottom:641.850000px;}
.yd5{bottom:643.830000px;}
.y103{bottom:646.260000px;}
.y91{bottom:650.490000px;}
.y40{bottom:653.370000px;}
.yac{bottom:659.400000px;}
.yf{bottom:659.490000px;}
.y67{bottom:661.110000px;}
.y102{bottom:663.810000px;}
.y90{bottom:668.040000px;}
.yd4{bottom:670.380000px;}
.y3f{bottom:671.010000px;}
.yab{bottom:676.950000px;}
.ye{bottom:677.040000px;}
.y101{bottom:681.360000px;}
.yd3{bottom:687.930000px;}
.y3e{bottom:688.560000px;}
.yaa{bottom:694.590000px;}
.y8f{bottom:694.680000px;}
.y66{bottom:697.020000px;}
.yd{bottom:703.950000px;}
.y100{bottom:708.000000px;}
.yd2{bottom:714.570000px;}
.y3d{bottom:715.110000px;}
.yff{bottom:725.550000px;}
.ya9{bottom:730.140000px;}
.y8e{bottom:730.230000px;}
.yd1{bottom:732.120000px;}
.yfe{bottom:743.190000px;}
.y65{bottom:745.350000px;}
.y3c{bottom:747.690000px;}
.y8d{bottom:747.780000px;}
.yc{bottom:752.280000px;}
.yd0{bottom:758.670000px;}
.y64{bottom:762.900000px;}
.ya8{bottom:765.330000px;}
.y8c{bottom:765.420000px;}
.yfd{bottom:769.740000px;}
.ycf{bottom:776.310000px;}
.y63{bottom:780.450000px;}
.ya7{bottom:782.880000px;}
.y3b{bottom:783.330000px;}
.yfc{bottom:787.290000px;}
.yb{bottom:787.830000px;}
.y8b{bottom:791.970000px;}
.y62{bottom:798.090000px;}
.ya6{bottom:800.520000px;}
.y3a{bottom:800.880000px;}
.yce{bottom:802.860000px;}
.yfb{bottom:804.930000px;}
.y39{bottom:818.520000px;}
.ycd{bottom:820.500000px;}
.ya{bottom:823.650000px;}
.y61{bottom:824.640000px;}
.y8a{bottom:827.610000px;}
.yfa{bottom:831.480000px;}
.y38{bottom:836.070000px;}
.ycc{bottom:838.050000px;}
.y89{bottom:845.160000px;}
.yf9{bottom:849.030000px;}
.y37{bottom:853.620000px;}
.y60{bottom:860.280000px;}
.y88{bottom:862.710000px;}
.y9{bottom:863.430000px;}
.ycb{bottom:864.600000px;}
.yf8{bottom:866.670000px;}
.y36{bottom:871.260000px;}
.y8{bottom:877.650000px;}
.y5f{bottom:877.830000px;}
.yca{bottom:882.240000px;}
.ya5{bottom:888.810000px;}
.y87{bottom:889.350000px;}
.yf7{bottom:893.220000px;}
.y5e{bottom:895.380000px;}
.y35{bottom:897.810000px;}
.y7{bottom:899.430000px;}
.yc9{bottom:908.790000px;}
.yf6{bottom:910.860000px;}
.y5d{bottom:921.930000px;}
.ya4{bottom:924.450000px;}
.yc8{bottom:926.430000px;}
.yf5{bottom:928.410000px;}
.y6{bottom:931.560000px;}
.y34{bottom:933.720000px;}
.ya3{bottom:942.000000px;}
.y5{bottom:950.010000px;}
.yc7{bottom:952.980000px;}
.y5c{bottom:954.600000px;}
.y81{bottom:954.870000px;}
.yf4{bottom:954.960000px;}
.ya2{bottom:959.550000px;}
.yc6{bottom:970.530000px;}
.yf3{bottom:972.600000px;}
.ya1{bottom:977.190000px;}
.y33{bottom:981.960000px;}
.y86{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.yc5{bottom:988.170000px;}
.y5b{bottom:990.150000px;}
.ya0{bottom:994.740000px;}
.yf2{bottom:999.150000px;}
.y32{bottom:999.600000px;}
.y5a{bottom:1007.790000px;}
.y84{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.yc4{bottom:1015.110000px;}
.yf1{bottom:1016.820000px;}
.y31{bottom:1017.180000px;}
.y59{bottom:1025.370000px;}
.y9f{bottom:1029.960000px;}
.y30{bottom:1034.820000px;}
.y83{bottom:1036.890000px;}
.y58{bottom:1042.920000px;}
.yf0{bottom:1043.370000px;}
.y9e{bottom:1047.510000px;}
.y2f{bottom:1052.370000px;}
.yef{bottom:1060.920000px;}
.yc3{bottom:1063.350000px;}
.y7f{bottom:1064.250000px;}
.y57{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y9d{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.yc2{bottom:1090.260000px;}
.y80{bottom:1091.610000px;}
.y9c{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y9b{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h14{height:26.580000px;}
.h12{height:26.640000px;}
.h11{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.he{height:53.910000px;}
.h10{height:54.030000px;}
.h5{height:54.817383px;}
.h9{height:55.779258px;}
.hd{height:59.973223px;}
.ha{height:60.960938px;}
.h15{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h13{height:108.660000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:49.050000px;}
.w5{width:51.750000px;}
.w7{width:51.840000px;}
.w8{width:52.050000px;}
.w6{width:63.990000px;}
.we{width:67.050000px;}
.w9{width:80.190000px;}
.wa{width:81.030000px;}
.wf{width:82.350000px;}
.wb{width:115.020000px;}
.w3{width:129.330000px;}
.wd{width:132.120000px;}
.wc{width:219.720000px;}
.w4{width:250.230000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:74.519987px;}
.x14{left:111.239987px;}
.xb{left:137.700000px;}
.x2{left:211.079987px;}
.xc{left:219.450000px;}
.x4{left:230.250000px;}
.x12{left:235.829987px;}
.xd{left:335.190000px;}
.x6{left:360.300000px;}
.x8{left:425.010000px;}
.x9{left:477.570000px;}
.xa{left:530.340000px;}
.xe{left:555.630000px;}
.x7{left:611.250000px;}
.x10{left:638.700000px;}
.xf{left:688.470000px;}
.x11{left:736.889987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls10{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.028160pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.040000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.100800pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.857600pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.wsc{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws3{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._b{margin-left:-3.153067pt;}
._6{margin-left:-1.928000pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.399147pt;}
._7{width:2.428267pt;}
._1{width:3.578731pt;}
._a{width:4.624321pt;}
._4{width:5.583296pt;}
._3{width:6.552000pt;}
._8{width:7.802133pt;}
._9{width:8.811202pt;}
._5{width:10.367254pt;}
._c{width:12.665280pt;}
._d{width:13.664107pt;}
._e{width:14.696000pt;}
._12{width:17.020480pt;}
._f{width:18.223040pt;}
._10{width:21.322560pt;}
._11{width:22.498240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:6.960000pt;}
.y85{bottom:6.986667pt;}
.y73{bottom:7.040000pt;}
.y6d{bottom:31.280000pt;}
.y71{bottom:31.360000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y82{bottom:79.946667pt;}
.y1{bottom:90.346667pt;}
.y9a{bottom:100.266667pt;}
.yee{bottom:109.466667pt;}
.y56{bottom:114.186667pt;}
.y7e{bottom:121.946667pt;}
.yed{bottom:125.066667pt;}
.y55{bottom:129.866667pt;}
.y99{bottom:131.866667pt;}
.yec{bottom:140.666667pt;}
.y98{bottom:147.546667pt;}
.y54{bottom:153.466667pt;}
.y7d{bottom:153.626667pt;}
.y27{bottom:157.866667pt;}
.yc1{bottom:158.266667pt;}
.y97{bottom:163.146667pt;}
.yeb{bottom:164.346667pt;}
.y26{bottom:173.546667pt;}
.yc0{bottom:173.866667pt;}
.y96{bottom:178.746667pt;}
.yea{bottom:179.946667pt;}
.y53{bottom:182.426667pt;}
.y7c{bottom:185.226667pt;}
.y25{bottom:189.146667pt;}
.ybf{bottom:189.546667pt;}
.ye9{bottom:195.626667pt;}
.y95{bottom:202.426667pt;}
.y24{bottom:204.746667pt;}
.ybe{bottom:205.146667pt;}
.y52{bottom:214.026667pt;}
.y7b{bottom:216.906667pt;}
.ye8{bottom:219.226667pt;}
.y23{bottom:220.426667pt;}
.ybd{bottom:229.066667pt;}
.y51{bottom:229.706667pt;}
.y7a{bottom:232.506667pt;}
.y94{bottom:233.386667pt;}
.ye7{bottom:234.826667pt;}
.y22{bottom:236.026667pt;}
.y50{bottom:245.306667pt;}
.ye6{bottom:250.506667pt;}
.y21{bottom:251.706667pt;}
.y79{bottom:256.106667pt;}
.y4f{bottom:260.986667pt;}
.y93{bottom:262.586667pt;}
.y20{bottom:267.306667pt;}
.ybc{bottom:271.946667pt;}
.ye5{bottom:274.106667pt;}
.y1f{bottom:282.906667pt;}
.y4e{bottom:284.586667pt;}
.ybb{bottom:287.626667pt;}
.y78{bottom:287.786667pt;}
.ye4{bottom:289.786667pt;}
.y92{bottom:291.226667pt;}
.y1e{bottom:298.586667pt;}
.yba{bottom:303.226667pt;}
.y77{bottom:303.386667pt;}
.ye3{bottom:305.386667pt;}
.y1d{bottom:314.186667pt;}
.y4d{bottom:316.186667pt;}
.yb9{bottom:318.906667pt;}
.y76{bottom:319.066667pt;}
.ye2{bottom:328.986667pt;}
.y1c{bottom:329.866667pt;}
.y4c{bottom:331.866667pt;}
.y75{bottom:334.666667pt;}
.ye1{bottom:344.666667pt;}
.y1b{bottom:345.466667pt;}
.y4b{bottom:347.466667pt;}
.yb8{bottom:350.506667pt;}
.y74{bottom:358.266667pt;}
.y1a{bottom:361.066667pt;}
.y4a{bottom:363.146667pt;}
.yb7{bottom:366.106667pt;}
.ye0{bottom:368.266667pt;}
.yb6{bottom:381.786667pt;}
.ydf{bottom:383.946667pt;}
.y70{bottom:384.906667pt;}
.y19{bottom:384.986667pt;}
.y49{bottom:386.746667pt;}
.yb5{bottom:397.386667pt;}
.yde{bottom:407.546667pt;}
.y72{bottom:409.226667pt;}
.y48{bottom:415.706667pt;}
.ydd{bottom:423.173333pt;}
.y18{bottom:428.213333pt;}
.yb4{bottom:429.093333pt;}
.y6c{bottom:433.573333pt;}
.yb3{bottom:444.693333pt;}
.ydc{bottom:446.853333pt;}
.y47{bottom:447.333333pt;}
.y6e{bottom:457.893333pt;}
.yb2{bottom:460.293333pt;}
.y17{bottom:461.173333pt;}
.ydb{bottom:462.453333pt;}
.y46{bottom:463.013333pt;}
.yb1{bottom:475.973333pt;}
.y16{bottom:476.773333pt;}
.y45{bottom:478.613333pt;}
.yda{bottom:486.133333pt;}
.y15{bottom:492.373333pt;}
.y44{bottom:494.293333pt;}
.y6b{bottom:501.173333pt;}
.yd9{bottom:501.733333pt;}
.y107{bottom:503.893333pt;}
.yb0{bottom:507.573333pt;}
.y14{bottom:508.053333pt;}
.y43{bottom:509.893333pt;}
.yd8{bottom:517.333333pt;}
.y106{bottom:519.493333pt;}
.yaf{bottom:523.253333pt;}
.y13{bottom:523.653333pt;}
.y6a{bottom:532.773333pt;}
.y42{bottom:533.493333pt;}
.y105{bottom:535.173333pt;}
.y12{bottom:539.333333pt;}
.yd7{bottom:541.013333pt;}
.y69{bottom:548.453333pt;}
.y104{bottom:550.773333pt;}
.yae{bottom:554.853333pt;}
.y11{bottom:554.933333pt;}
.yd6{bottom:556.613333pt;}
.y68{bottom:564.053333pt;}
.y41{bottom:565.173333pt;}
.yad{bottom:570.453333pt;}
.y10{bottom:570.533333pt;}
.yd5{bottom:572.293333pt;}
.y103{bottom:574.453333pt;}
.y91{bottom:578.213333pt;}
.y40{bottom:580.773333pt;}
.yac{bottom:586.133333pt;}
.yf{bottom:586.213333pt;}
.y67{bottom:587.653333pt;}
.y102{bottom:590.053333pt;}
.y90{bottom:593.813333pt;}
.yd4{bottom:595.893333pt;}
.y3f{bottom:596.453333pt;}
.yab{bottom:601.733333pt;}
.ye{bottom:601.813333pt;}
.y101{bottom:605.653333pt;}
.yd3{bottom:611.493333pt;}
.y3e{bottom:612.053333pt;}
.yaa{bottom:617.413333pt;}
.y8f{bottom:617.493333pt;}
.y66{bottom:619.573333pt;}
.yd{bottom:625.733333pt;}
.y100{bottom:629.333333pt;}
.yd2{bottom:635.173333pt;}
.y3d{bottom:635.653333pt;}
.yff{bottom:644.933333pt;}
.ya9{bottom:649.013333pt;}
.y8e{bottom:649.093333pt;}
.yd1{bottom:650.773333pt;}
.yfe{bottom:660.613333pt;}
.y65{bottom:662.533333pt;}
.y3c{bottom:664.613333pt;}
.y8d{bottom:664.693333pt;}
.yc{bottom:668.693333pt;}
.yd0{bottom:674.373333pt;}
.y64{bottom:678.133333pt;}
.ya8{bottom:680.293333pt;}
.y8c{bottom:680.373333pt;}
.yfd{bottom:684.213333pt;}
.ycf{bottom:690.053333pt;}
.y63{bottom:693.733333pt;}
.ya7{bottom:695.893333pt;}
.y3b{bottom:696.293333pt;}
.yfc{bottom:699.813333pt;}
.yb{bottom:700.293333pt;}
.y8b{bottom:703.973333pt;}
.y62{bottom:709.413333pt;}
.ya6{bottom:711.573333pt;}
.y3a{bottom:711.893333pt;}
.yce{bottom:713.653333pt;}
.yfb{bottom:715.493333pt;}
.y39{bottom:727.573333pt;}
.ycd{bottom:729.333333pt;}
.ya{bottom:732.133333pt;}
.y61{bottom:733.013333pt;}
.y8a{bottom:735.653333pt;}
.yfa{bottom:739.093333pt;}
.y38{bottom:743.173333pt;}
.ycc{bottom:744.933333pt;}
.y89{bottom:751.253333pt;}
.yf9{bottom:754.693333pt;}
.y37{bottom:758.773333pt;}
.y60{bottom:764.693333pt;}
.y88{bottom:766.853333pt;}
.y9{bottom:767.493333pt;}
.ycb{bottom:768.533333pt;}
.yf8{bottom:770.373333pt;}
.y36{bottom:774.453333pt;}
.y8{bottom:780.133333pt;}
.y5f{bottom:780.293333pt;}
.yca{bottom:784.213333pt;}
.ya5{bottom:790.053333pt;}
.y87{bottom:790.533333pt;}
.yf7{bottom:793.973333pt;}
.y5e{bottom:795.893333pt;}
.y35{bottom:798.053333pt;}
.y7{bottom:799.493333pt;}
.yc9{bottom:807.813333pt;}
.yf6{bottom:809.653333pt;}
.y5d{bottom:819.493333pt;}
.ya4{bottom:821.733333pt;}
.yc8{bottom:823.493333pt;}
.yf5{bottom:825.253333pt;}
.y6{bottom:828.053333pt;}
.y34{bottom:829.973333pt;}
.ya3{bottom:837.333333pt;}
.y5{bottom:844.453333pt;}
.yc7{bottom:847.093333pt;}
.y5c{bottom:848.533333pt;}
.y81{bottom:848.773333pt;}
.yf4{bottom:848.853333pt;}
.ya2{bottom:852.933333pt;}
.yc6{bottom:862.693333pt;}
.yf3{bottom:864.533333pt;}
.ya1{bottom:868.613333pt;}
.y33{bottom:872.853333pt;}
.y86{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.yc5{bottom:878.373333pt;}
.y5b{bottom:880.133333pt;}
.ya0{bottom:884.213333pt;}
.yf2{bottom:888.133333pt;}
.y32{bottom:888.533333pt;}
.y5a{bottom:895.813333pt;}
.y84{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.yc4{bottom:902.320000pt;}
.yf1{bottom:903.840000pt;}
.y31{bottom:904.160000pt;}
.y59{bottom:911.440000pt;}
.y9f{bottom:915.520000pt;}
.y30{bottom:919.840000pt;}
.y83{bottom:921.680000pt;}
.y58{bottom:927.040000pt;}
.yf0{bottom:927.440000pt;}
.y9e{bottom:931.120000pt;}
.y2f{bottom:935.440000pt;}
.yef{bottom:943.040000pt;}
.yc3{bottom:945.200000pt;}
.y7f{bottom:946.000000pt;}
.y57{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y9d{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.yc2{bottom:969.120000pt;}
.y80{bottom:970.320000pt;}
.y9c{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y9b{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h14{height:23.626667pt;}
.h12{height:23.680000pt;}
.h11{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.he{height:47.920000pt;}
.h10{height:48.026667pt;}
.h5{height:48.726562pt;}
.h9{height:49.581562pt;}
.hd{height:53.309531pt;}
.ha{height:54.187500pt;}
.h15{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h13{height:96.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:43.600000pt;}
.w5{width:46.000000pt;}
.w7{width:46.080000pt;}
.w8{width:46.266667pt;}
.w6{width:56.880000pt;}
.we{width:59.600000pt;}
.w9{width:71.280000pt;}
.wa{width:72.026667pt;}
.wf{width:73.200000pt;}
.wb{width:102.240000pt;}
.w3{width:114.960000pt;}
.wd{width:117.440000pt;}
.wc{width:195.306667pt;}
.w4{width:222.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:66.239988pt;}
.x14{left:98.879988pt;}
.xb{left:122.400000pt;}
.x2{left:187.626655pt;}
.xc{left:195.066667pt;}
.x4{left:204.666667pt;}
.x12{left:209.626655pt;}
.xd{left:297.946667pt;}
.x6{left:320.266667pt;}
.x8{left:377.786667pt;}
.x9{left:424.506667pt;}
.xa{left:471.413333pt;}
.xe{left:493.893333pt;}
.x7{left:543.333333pt;}
.x10{left:567.733333pt;}
.xf{left:611.973333pt;}
.x11{left:655.013322pt;}
.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; }
  