
    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_9ddfe36fcbd02b2a9cc72099.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_fce22540416ae1c12c4e3fcd.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_f532601ca09778d7ae2b98c6.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_19c02aa5c9506f7b682e4937.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_791694993a4c3cfa8e940d58.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_fdfc16fcefe0c0d08d4e652a.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;}
.ls14{letter-spacing:-0.513600px;}
.ls16{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls10{letter-spacing:-0.114000px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.067200px;}
.ls15{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.116400px;}
.lsf{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.374760px;}
.ls3{letter-spacing:5.756760px;}
.ls18{letter-spacing:47.726640px;}
.ls17{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;}
}
.ws2{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.379600px;}
.ws9{word-spacing:-14.372400px;}
.wsd{word-spacing:-13.424400px;}
.ws7{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342800px;}
.ws4{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.159200px;}
.ws11{word-spacing:-13.072800px;}
.ws8{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.982800px;}
.wse{word-spacing:-12.712800px;}
.ws3{word-spacing:-11.880000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._c{margin-left:-4.027800px;}
._6{margin-left:-2.124000px;}
._0{margin-left:-1.110000px;}
._4{width:1.131610px;}
._d{width:2.886000px;}
._2{width:4.632120px;}
._1{width:6.153840px;}
._f{width:8.056080px;}
._a{width:9.499200px;}
._b{width:10.558678px;}
._e{width:11.986322px;}
._10{width:14.729400px;}
._2d{width:15.871680px;}
._1e{width:17.494680px;}
._5{width:18.517200px;}
._11{width:20.060759px;}
._9{width:22.003800px;}
._8{width:23.026200px;}
._7{width:24.067800px;}
._2e{width:25.350840px;}
._3{width:27.092988px;}
._1f{width:28.097172px;}
._22{width:29.879640px;}
._23{width:30.921480px;}
._1b{width:34.388640px;}
._1a{width:35.530920px;}
._2c{width:37.454760px;}
._18{width:43.466760px;}
._28{width:44.488800px;}
._12{width:55.791360px;}
._17{width:56.841120px;}
._14{width:59.037840px;}
._15{width:69.760680px;}
._29{width:73.767240px;}
._2a{width:74.909520px;}
._16{width:79.358400px;}
._1d{width:82.244160px;}
._20{width:89.218080px;}
._13{width:102.985560px;}
._25{width:112.965480px;}
._27{width:122.584680px;}
._2f{width:126.372240px;}
._26{width:131.963400px;}
._32{width:156.071520px;}
._33{width:157.334040px;}
._24{width:159.558480px;}
._1c{width:162.684720px;}
._19{width:173.496600px;}
._21{width:174.588480px;}
._30{width:200.921040px;}
._31{width:202.003200px;}
._2b{width:237.293640px;}
.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;}
.fs4{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:7.830000px;}
.y5a{bottom:7.920000px;}
.y61{bottom:25.380000px;}
.y59{bottom:25.470000px;}
.y5c{bottom:43.020000px;}
.y8a{bottom:43.110000px;}
.y5f{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yaf{bottom:117.570000px;}
.y95{bottom:124.860000px;}
.yae{bottom:135.120000px;}
.yc0{bottom:137.370000px;}
.y94{bottom:142.500000px;}
.y81{bottom:142.860000px;}
.y28{bottom:143.400000px;}
.ybf{bottom:154.920000px;}
.y80{bottom:160.500000px;}
.y27{bottom:160.950000px;}
.yad{bottom:170.760000px;}
.ybe{bottom:172.470000px;}
.y7f{bottom:178.050000px;}
.y26{bottom:178.500000px;}
.yf3{bottom:184.980000px;}
.yac{bottom:188.310000px;}
.ybd{bottom:190.110000px;}
.y7e{bottom:195.600000px;}
.y25{bottom:196.140000px;}
.y57{bottom:200.460000px;}
.yf2{bottom:202.530000px;}
.yab{bottom:205.950000px;}
.ybc{bottom:207.660000px;}
.y7d{bottom:213.240000px;}
.y24{bottom:213.690000px;}
.yf1{bottom:220.170000px;}
.yaa{bottom:223.500000px;}
.ybb{bottom:225.300000px;}
.y7c{bottom:230.790000px;}
.y56{bottom:236.100000px;}
.yf0{bottom:237.720000px;}
.ya9{bottom:241.050000px;}
.yba{bottom:242.850000px;}
.y7b{bottom:248.430000px;}
.y23{bottom:249.330000px;}
.yef{bottom:255.270000px;}
.ya8{bottom:258.690000px;}
.yb9{bottom:260.400000px;}
.y7a{bottom:265.980000px;}
.y22{bottom:266.880000px;}
.y55{bottom:271.650000px;}
.yee{bottom:272.910000px;}
.ya7{bottom:276.240000px;}
.yb8{bottom:278.040000px;}
.y79{bottom:283.530000px;}
.y21{bottom:284.430000px;}
.yed{bottom:290.460000px;}
.ya6{bottom:293.880000px;}
.yb7{bottom:295.590000px;}
.y93{bottom:301.170000px;}
.y20{bottom:302.070000px;}
.y54{bottom:307.200000px;}
.yec{bottom:308.100000px;}
.ya5{bottom:311.430000px;}
.yb6{bottom:313.230000px;}
.y92{bottom:318.720000px;}
.y78{bottom:319.170000px;}
.y1f{bottom:319.620000px;}
.y53{bottom:324.840000px;}
.yeb{bottom:325.650000px;}
.ya4{bottom:328.980000px;}
.yb5{bottom:330.780000px;}
.y77{bottom:336.720000px;}
.y52{bottom:342.390000px;}
.yea{bottom:343.200000px;}
.y10b{bottom:346.530000px;}
.ya3{bottom:346.620000px;}
.yb4{bottom:348.330000px;}
.y76{bottom:354.360000px;}
.y1e{bottom:355.260000px;}
.y51{bottom:359.940000px;}
.ye9{bottom:360.840000px;}
.ya2{bottom:364.170000px;}
.y75{bottom:371.910000px;}
.y1d{bottom:372.810000px;}
.y10a{bottom:373.170000px;}
.y50{bottom:377.580000px;}
.ye8{bottom:378.390000px;}
.yb3{bottom:383.970000px;}
.y74{bottom:389.460000px;}
.y1c{bottom:390.360000px;}
.y109{bottom:390.720000px;}
.ya1{bottom:391.080000px;}
.y4f{bottom:395.130000px;}
.ye7{bottom:395.940000px;}
.y73{bottom:407.100000px;}
.y1b{bottom:408.000000px;}
.y4e{bottom:412.770000px;}
.yb2{bottom:416.190000px;}
.y108{bottom:417.360000px;}
.y72{bottom:424.650000px;}
.y1a{bottom:425.550000px;}
.y4d{bottom:430.320000px;}
.ye6{bottom:431.580000px;}
.y107{bottom:434.910000px;}
.ya0{bottom:439.410000px;}
.y71{bottom:442.290000px;}
.y4c{bottom:447.870000px;}
.ye5{bottom:449.130000px;}
.y19{bottom:452.460000px;}
.y70{bottom:459.840000px;}
.ye4{bottom:466.770000px;}
.y106{bottom:470.130000px;}
.y9f{bottom:471.660000px;}
.y6f{bottom:477.420000px;}
.y4b{bottom:483.540000px;}
.ye3{bottom:484.350000px;}
.y91{bottom:495.060000px;}
.y105{bottom:496.680000px;}
.y18{bottom:500.730000px;}
.y4a{bottom:501.090000px;}
.ye2{bottom:501.900000px;}
.y90{bottom:512.610000px;}
.y6e{bottom:513.060000px;}
.y104{bottom:514.230000px;}
.y17{bottom:518.640000px;}
.y49{bottom:518.730000px;}
.ye1{bottom:519.540000px;}
.y6d{bottom:530.610000px;}
.y48{bottom:536.280000px;}
.ye0{bottom:537.090000px;}
.y8f{bottom:539.520000px;}
.y103{bottom:540.870000px;}
.y6c{bottom:548.160000px;}
.y47{bottom:553.830000px;}
.ydf{bottom:554.730000px;}
.y16{bottom:555.720000px;}
.y102{bottom:558.420000px;}
.y6b{bottom:565.800000px;}
.y46{bottom:571.470000px;}
.yde{bottom:572.280000px;}
.y15{bottom:573.270000px;}
.y6a{bottom:583.350000px;}
.y101{bottom:585.060000px;}
.y8e{bottom:585.150000px;}
.y45{bottom:589.020000px;}
.ydd{bottom:589.830000px;}
.y14{bottom:590.910000px;}
.y69{bottom:600.990000px;}
.y100{bottom:602.610000px;}
.y44{bottom:606.660000px;}
.ydc{bottom:607.470000px;}
.y13{bottom:608.460000px;}
.y68{bottom:618.540000px;}
.yff{bottom:620.160000px;}
.ydb{bottom:625.020000px;}
.y12{bottom:626.010000px;}
.y67{bottom:636.090000px;}
.y43{bottom:642.210000px;}
.y11{bottom:643.650000px;}
.yfe{bottom:646.800000px;}
.y8d{bottom:647.700000px;}
.y66{bottom:653.730000px;}
.y42{bottom:659.760000px;}
.yda{bottom:660.660000px;}
.y10{bottom:661.200000px;}
.yfd{bottom:664.350000px;}
.y65{bottom:671.280000px;}
.y41{bottom:677.400000px;}
.yd9{bottom:678.210000px;}
.yf{bottom:678.840000px;}
.yfc{bottom:681.990000px;}
.y40{bottom:694.950000px;}
.yd8{bottom:695.760000px;}
.ye{bottom:696.390000px;}
.y64{bottom:698.190000px;}
.yfb{bottom:708.540000px;}
.y8c{bottom:710.160000px;}
.y3f{bottom:712.590000px;}
.yd7{bottom:713.400000px;}
.yd{bottom:713.940000px;}
.yfa{bottom:726.090000px;}
.y3e{bottom:730.140000px;}
.yd6{bottom:730.950000px;}
.yc{bottom:731.580000px;}
.y63{bottom:743.910000px;}
.y3d{bottom:747.690000px;}
.yd5{bottom:748.590000px;}
.yf9{bottom:752.730000px;}
.yb{bottom:758.490000px;}
.y3c{bottom:765.330000px;}
.yd4{bottom:766.140000px;}
.yf8{bottom:770.280000px;}
.yb1{bottom:770.550000px;}
.y8b{bottom:772.710000px;}
.yd3{bottom:783.690000px;}
.yb0{bottom:788.190000px;}
.yf7{bottom:796.920000px;}
.y3b{bottom:800.880000px;}
.yd2{bottom:801.330000px;}
.y9e{bottom:805.740000px;}
.y62{bottom:806.370000px;}
.ya{bottom:806.730000px;}
.yf6{bottom:814.470000px;}
.y3a{bottom:818.520000px;}
.yd1{bottom:818.880000px;}
.y9d{bottom:823.290000px;}
.yf5{bottom:832.020000px;}
.y89{bottom:835.170000px;}
.y39{bottom:836.070000px;}
.yd0{bottom:836.520000px;}
.y9c{bottom:840.930000px;}
.y9{bottom:842.280000px;}
.y38{bottom:853.620000px;}
.ycf{bottom:854.070000px;}
.y9b{bottom:858.480000px;}
.yf4{bottom:858.930000px;}
.y60{bottom:868.920000px;}
.y37{bottom:871.260000px;}
.y9a{bottom:876.030000px;}
.y8{bottom:878.100000px;}
.y36{bottom:888.810000px;}
.yce{bottom:889.620000px;}
.y99{bottom:893.670000px;}
.y88{bottom:897.720000px;}
.y35{bottom:906.450000px;}
.ycd{bottom:907.260000px;}
.y98{bottom:911.220000px;}
.y7{bottom:914.100000px;}
.ycc{bottom:924.810000px;}
.y97{bottom:928.860000px;}
.y5e{bottom:931.380000px;}
.y34{bottom:933.270000px;}
.ycb{bottom:942.450000px;}
.y87{bottom:946.410000px;}
.y6{bottom:950.190000px;}
.yca{bottom:960.000000px;}
.y96{bottom:963.960000px;}
.yc9{bottom:977.550000px;}
.y33{bottom:981.600000px;}
.y86{bottom:981.960000px;}
.y5{bottom:988.530000px;}
.yc8{bottom:995.190000px;}
.y32{bottom:999.150000px;}
.y85{bottom:999.600000px;}
.y5b{bottom:1011.510000px;}
.yc7{bottom:1012.770000px;}
.y4{bottom:1013.220000px;}
.y31{bottom:1016.820000px;}
.y84{bottom:1017.180000px;}
.yc6{bottom:1030.320000px;}
.y30{bottom:1034.370000px;}
.y83{bottom:1034.820000px;}
.yc5{bottom:1047.960000px;}
.y82{bottom:1052.370000px;}
.y3{bottom:1054.800000px;}
.yc4{bottom:1065.510000px;}
.y2f{bottom:1069.920000px;}
.y58{bottom:1073.970000px;}
.yc3{bottom:1083.150000px;}
.y2e{bottom:1087.560000px;}
.yc2{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.yc1{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h9{height:44.190000px;}
.h6{height:50.902383px;}
.h4{height:55.779258px;}
.h7{height:60.960938px;}
.ha{height:61.740000px;}
.he{height:61.793886px;}
.hd{height:61.830000px;}
.h8{height:68.582109px;}
.h5{height:71.019492px;}
.hb{height:79.410000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:153.750000px;}
.w3{width:156.540000px;}
.w7{width:255.690000px;}
.w5{width:287.280000px;}
.w4{width:310.260000px;}
.w8{width:344.820000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:111.239987px;}
.xb{left:151.829987px;}
.xa{left:194.699987px;}
.x2{left:202.799987px;}
.x7{left:223.230000px;}
.x5{left:226.110000px;}
.x8{left:479.640000px;}
.x6{left:537.180000px;}
.x3{left:792.059987px;}
.x9{left:799.889987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.456533pt;}
.ls16{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls10{letter-spacing:-0.101333pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.059733pt;}
.ls15{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.103467pt;}
.lsf{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.333120pt;}
.ls3{letter-spacing:5.117120pt;}
.ls18{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws2{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.781867pt;}
.ws9{word-spacing:-12.775467pt;}
.wsd{word-spacing:-11.932800pt;}
.ws7{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.860267pt;}
.ws4{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.697067pt;}
.ws11{word-spacing:-11.620267pt;}
.ws8{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.540267pt;}
.wse{word-spacing:-11.300267pt;}
.ws3{word-spacing:-10.560000pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._c{margin-left:-3.580266pt;}
._6{margin-left:-1.888000pt;}
._0{margin-left:-0.986667pt;}
._4{width:1.005876pt;}
._d{width:2.565334pt;}
._2{width:4.117440pt;}
._1{width:5.470080pt;}
._f{width:7.160960pt;}
._a{width:8.443734pt;}
._b{width:9.385492pt;}
._e{width:10.654508pt;}
._10{width:13.092800pt;}
._2d{width:14.108160pt;}
._1e{width:15.550826pt;}
._5{width:16.459734pt;}
._11{width:17.831786pt;}
._9{width:19.558933pt;}
._8{width:20.467734pt;}
._7{width:21.393600pt;}
._2e{width:22.534080pt;}
._3{width:24.082656pt;}
._1f{width:24.975264pt;}
._22{width:26.559680pt;}
._23{width:27.485760pt;}
._1b{width:30.567680pt;}
._1a{width:31.583040pt;}
._2c{width:33.293120pt;}
._18{width:38.637120pt;}
._28{width:39.545600pt;}
._12{width:49.592320pt;}
._17{width:50.525440pt;}
._14{width:52.478080pt;}
._15{width:62.009493pt;}
._29{width:65.570880pt;}
._2a{width:66.586240pt;}
._16{width:70.540800pt;}
._1d{width:73.105920pt;}
._20{width:79.304960pt;}
._13{width:91.542720pt;}
._25{width:100.413760pt;}
._27{width:108.964160pt;}
._2f{width:112.330880pt;}
._26{width:117.300800pt;}
._32{width:138.730240pt;}
._33{width:139.852480pt;}
._24{width:141.829760pt;}
._1c{width:144.608640pt;}
._19{width:154.219200pt;}
._21{width:155.189760pt;}
._30{width:178.596480pt;}
._31{width:179.558400pt;}
._2b{width:210.927680pt;}
.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;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:6.960000pt;}
.y5a{bottom:7.040000pt;}
.y61{bottom:22.560000pt;}
.y59{bottom:22.640000pt;}
.y5c{bottom:38.240000pt;}
.y8a{bottom:38.320000pt;}
.y5f{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yaf{bottom:104.506667pt;}
.y95{bottom:110.986667pt;}
.yae{bottom:120.106667pt;}
.yc0{bottom:122.106667pt;}
.y94{bottom:126.666667pt;}
.y81{bottom:126.986667pt;}
.y28{bottom:127.466667pt;}
.ybf{bottom:137.706667pt;}
.y80{bottom:142.666667pt;}
.y27{bottom:143.066667pt;}
.yad{bottom:151.786667pt;}
.ybe{bottom:153.306667pt;}
.y7f{bottom:158.266667pt;}
.y26{bottom:158.666667pt;}
.yf3{bottom:164.426667pt;}
.yac{bottom:167.386667pt;}
.ybd{bottom:168.986667pt;}
.y7e{bottom:173.866667pt;}
.y25{bottom:174.346667pt;}
.y57{bottom:178.186667pt;}
.yf2{bottom:180.026667pt;}
.yab{bottom:183.066667pt;}
.ybc{bottom:184.586667pt;}
.y7d{bottom:189.546667pt;}
.y24{bottom:189.946667pt;}
.yf1{bottom:195.706667pt;}
.yaa{bottom:198.666667pt;}
.ybb{bottom:200.266667pt;}
.y7c{bottom:205.146667pt;}
.y56{bottom:209.866667pt;}
.yf0{bottom:211.306667pt;}
.ya9{bottom:214.266667pt;}
.yba{bottom:215.866667pt;}
.y7b{bottom:220.826667pt;}
.y23{bottom:221.626667pt;}
.yef{bottom:226.906667pt;}
.ya8{bottom:229.946667pt;}
.yb9{bottom:231.466667pt;}
.y7a{bottom:236.426667pt;}
.y22{bottom:237.226667pt;}
.y55{bottom:241.466667pt;}
.yee{bottom:242.586667pt;}
.ya7{bottom:245.546667pt;}
.yb8{bottom:247.146667pt;}
.y79{bottom:252.026667pt;}
.y21{bottom:252.826667pt;}
.yed{bottom:258.186667pt;}
.ya6{bottom:261.226667pt;}
.yb7{bottom:262.746667pt;}
.y93{bottom:267.706667pt;}
.y20{bottom:268.506667pt;}
.y54{bottom:273.066667pt;}
.yec{bottom:273.866667pt;}
.ya5{bottom:276.826667pt;}
.yb6{bottom:278.426667pt;}
.y92{bottom:283.306667pt;}
.y78{bottom:283.706667pt;}
.y1f{bottom:284.106667pt;}
.y53{bottom:288.746667pt;}
.yeb{bottom:289.466667pt;}
.ya4{bottom:292.426667pt;}
.yb5{bottom:294.026667pt;}
.y77{bottom:299.306667pt;}
.y52{bottom:304.346667pt;}
.yea{bottom:305.066667pt;}
.y10b{bottom:308.026667pt;}
.ya3{bottom:308.106667pt;}
.yb4{bottom:309.626667pt;}
.y76{bottom:314.986667pt;}
.y1e{bottom:315.786667pt;}
.y51{bottom:319.946667pt;}
.ye9{bottom:320.746667pt;}
.ya2{bottom:323.706667pt;}
.y75{bottom:330.586667pt;}
.y1d{bottom:331.386667pt;}
.y10a{bottom:331.706667pt;}
.y50{bottom:335.626667pt;}
.ye8{bottom:336.346667pt;}
.yb3{bottom:341.306667pt;}
.y74{bottom:346.186667pt;}
.y1c{bottom:346.986667pt;}
.y109{bottom:347.306667pt;}
.ya1{bottom:347.626667pt;}
.y4f{bottom:351.226667pt;}
.ye7{bottom:351.946667pt;}
.y73{bottom:361.866667pt;}
.y1b{bottom:362.666667pt;}
.y4e{bottom:366.906667pt;}
.yb2{bottom:369.946667pt;}
.y108{bottom:370.986667pt;}
.y72{bottom:377.466667pt;}
.y1a{bottom:378.266667pt;}
.y4d{bottom:382.506667pt;}
.ye6{bottom:383.626667pt;}
.y107{bottom:386.586667pt;}
.ya0{bottom:390.586667pt;}
.y71{bottom:393.146667pt;}
.y4c{bottom:398.106667pt;}
.ye5{bottom:399.226667pt;}
.y19{bottom:402.186667pt;}
.y70{bottom:408.746667pt;}
.ye4{bottom:414.906667pt;}
.y106{bottom:417.893333pt;}
.y9f{bottom:419.253333pt;}
.y6f{bottom:424.373333pt;}
.y4b{bottom:429.813333pt;}
.ye3{bottom:430.533333pt;}
.y91{bottom:440.053333pt;}
.y105{bottom:441.493333pt;}
.y18{bottom:445.093333pt;}
.y4a{bottom:445.413333pt;}
.ye2{bottom:446.133333pt;}
.y90{bottom:455.653333pt;}
.y6e{bottom:456.053333pt;}
.y104{bottom:457.093333pt;}
.y17{bottom:461.013333pt;}
.y49{bottom:461.093333pt;}
.ye1{bottom:461.813333pt;}
.y6d{bottom:471.653333pt;}
.y48{bottom:476.693333pt;}
.ye0{bottom:477.413333pt;}
.y8f{bottom:479.573333pt;}
.y103{bottom:480.773333pt;}
.y6c{bottom:487.253333pt;}
.y47{bottom:492.293333pt;}
.ydf{bottom:493.093333pt;}
.y16{bottom:493.973333pt;}
.y102{bottom:496.373333pt;}
.y6b{bottom:502.933333pt;}
.y46{bottom:507.973333pt;}
.yde{bottom:508.693333pt;}
.y15{bottom:509.573333pt;}
.y6a{bottom:518.533333pt;}
.y101{bottom:520.053333pt;}
.y8e{bottom:520.133333pt;}
.y45{bottom:523.573333pt;}
.ydd{bottom:524.293333pt;}
.y14{bottom:525.253333pt;}
.y69{bottom:534.213333pt;}
.y100{bottom:535.653333pt;}
.y44{bottom:539.253333pt;}
.ydc{bottom:539.973333pt;}
.y13{bottom:540.853333pt;}
.y68{bottom:549.813333pt;}
.yff{bottom:551.253333pt;}
.ydb{bottom:555.573333pt;}
.y12{bottom:556.453333pt;}
.y67{bottom:565.413333pt;}
.y43{bottom:570.853333pt;}
.y11{bottom:572.133333pt;}
.yfe{bottom:574.933333pt;}
.y8d{bottom:575.733333pt;}
.y66{bottom:581.093333pt;}
.y42{bottom:586.453333pt;}
.yda{bottom:587.253333pt;}
.y10{bottom:587.733333pt;}
.yfd{bottom:590.533333pt;}
.y65{bottom:596.693333pt;}
.y41{bottom:602.133333pt;}
.yd9{bottom:602.853333pt;}
.yf{bottom:603.413333pt;}
.yfc{bottom:606.213333pt;}
.y40{bottom:617.733333pt;}
.yd8{bottom:618.453333pt;}
.ye{bottom:619.013333pt;}
.y64{bottom:620.613333pt;}
.yfb{bottom:629.813333pt;}
.y8c{bottom:631.253333pt;}
.y3f{bottom:633.413333pt;}
.yd7{bottom:634.133333pt;}
.yd{bottom:634.613333pt;}
.yfa{bottom:645.413333pt;}
.y3e{bottom:649.013333pt;}
.yd6{bottom:649.733333pt;}
.yc{bottom:650.293333pt;}
.y63{bottom:661.253333pt;}
.y3d{bottom:664.613333pt;}
.yd5{bottom:665.413333pt;}
.yf9{bottom:669.093333pt;}
.yb{bottom:674.213333pt;}
.y3c{bottom:680.293333pt;}
.yd4{bottom:681.013333pt;}
.yf8{bottom:684.693333pt;}
.yb1{bottom:684.933333pt;}
.y8b{bottom:686.853333pt;}
.yd3{bottom:696.613333pt;}
.yb0{bottom:700.613333pt;}
.yf7{bottom:708.373333pt;}
.y3b{bottom:711.893333pt;}
.yd2{bottom:712.293333pt;}
.y9e{bottom:716.213333pt;}
.y62{bottom:716.773333pt;}
.ya{bottom:717.093333pt;}
.yf6{bottom:723.973333pt;}
.y3a{bottom:727.573333pt;}
.yd1{bottom:727.893333pt;}
.y9d{bottom:731.813333pt;}
.yf5{bottom:739.573333pt;}
.y89{bottom:742.373333pt;}
.y39{bottom:743.173333pt;}
.yd0{bottom:743.573333pt;}
.y9c{bottom:747.493333pt;}
.y9{bottom:748.693333pt;}
.y38{bottom:758.773333pt;}
.ycf{bottom:759.173333pt;}
.y9b{bottom:763.093333pt;}
.yf4{bottom:763.493333pt;}
.y60{bottom:772.373333pt;}
.y37{bottom:774.453333pt;}
.y9a{bottom:778.693333pt;}
.y8{bottom:780.533333pt;}
.y36{bottom:790.053333pt;}
.yce{bottom:790.773333pt;}
.y99{bottom:794.373333pt;}
.y88{bottom:797.973333pt;}
.y35{bottom:805.733333pt;}
.ycd{bottom:806.453333pt;}
.y98{bottom:809.973333pt;}
.y7{bottom:812.533333pt;}
.ycc{bottom:822.053333pt;}
.y97{bottom:825.653333pt;}
.y5e{bottom:827.893333pt;}
.y34{bottom:829.573333pt;}
.ycb{bottom:837.733333pt;}
.y87{bottom:841.253333pt;}
.y6{bottom:844.613333pt;}
.yca{bottom:853.333333pt;}
.y96{bottom:856.853333pt;}
.yc9{bottom:868.933333pt;}
.y33{bottom:872.533333pt;}
.y86{bottom:872.853333pt;}
.y5{bottom:878.693333pt;}
.yc8{bottom:884.613333pt;}
.y32{bottom:888.133333pt;}
.y85{bottom:888.533333pt;}
.y5b{bottom:899.120000pt;}
.yc7{bottom:900.240000pt;}
.y4{bottom:900.640000pt;}
.y31{bottom:903.840000pt;}
.y84{bottom:904.160000pt;}
.yc6{bottom:915.840000pt;}
.y30{bottom:919.440000pt;}
.y83{bottom:919.840000pt;}
.yc5{bottom:931.520000pt;}
.y82{bottom:935.440000pt;}
.y3{bottom:937.600000pt;}
.yc4{bottom:947.120000pt;}
.y2f{bottom:951.040000pt;}
.y58{bottom:954.640000pt;}
.yc3{bottom:962.800000pt;}
.y2e{bottom:966.720000pt;}
.yc2{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.yc1{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h9{height:39.280000pt;}
.h6{height:45.246562pt;}
.h4{height:49.581562pt;}
.h7{height:54.187500pt;}
.ha{height:54.880000pt;}
.he{height:54.927899pt;}
.hd{height:54.960000pt;}
.h8{height:60.961875pt;}
.h5{height:63.128437pt;}
.hb{height:70.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:136.666667pt;}
.w3{width:139.146667pt;}
.w7{width:227.280000pt;}
.w5{width:255.360000pt;}
.w4{width:275.786667pt;}
.w8{width:306.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:98.879988pt;}
.xb{left:134.959988pt;}
.xa{left:173.066655pt;}
.x2{left:180.266655pt;}
.x7{left:198.426667pt;}
.x5{left:200.986667pt;}
.x8{left:426.346667pt;}
.x6{left:477.493333pt;}
.x3{left:704.053322pt;}
.x9{left:711.013322pt;}
}




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