
    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_a553c5deb1c4f6d76ea8dbe1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_673ac47c8a318a99428e9707.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8b5868c5975edd35531d940e.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_6f08dc6429b260e08d99ec48.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d3b8722fcb7f952a40ffb467.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854492;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_f2161d29880a5e534ab25291.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4aed1876e9042bfed5b05ebb.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.086400px;}
.lsa{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.031680px;}
.ls17{letter-spacing:-0.014760px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls8{letter-spacing:0.065400px;}
.ls2{letter-spacing:0.065520px;}
.ls12{letter-spacing:0.074400px;}
.ls1{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.425520px;}
.ls19{letter-spacing:0.434400px;}
.ls14{letter-spacing:0.453600px;}
.ls0{letter-spacing:13.347360px;}
.ls16{letter-spacing:47.726640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.353600px;}
.ws9{word-spacing:-13.300800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.211640px;}
.wse{word-spacing:-13.194720px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._11{margin-left:-3.186360px;}
._c{margin-left:-2.169000px;}
._0{margin-left:-1.110000px;}
._3{width:1.191000px;}
._f{width:2.404800px;}
._5{width:4.024622px;}
._4{width:5.731824px;}
._6{width:7.139486px;}
._d{width:8.254970px;}
._8{width:9.258600px;}
._9{width:10.531320px;}
._e{width:12.073680px;}
._7{width:14.248200px;}
._2{width:16.020828px;}
._1{width:17.279364px;}
._12{width:18.788257px;}
._a{width:22.905600px;}
._b{width:24.169202px;}
._10{width:28.557000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:7.830000px;}
.y6f{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.yfa{bottom:111.540000px;}
.y4d{bottom:115.320000px;}
.y8e{bottom:121.170000px;}
.ya7{bottom:122.520000px;}
.y75{bottom:131.070000px;}
.yd1{bottom:131.790000px;}
.y4c{bottom:132.870000px;}
.yf9{bottom:138.090000px;}
.ya6{bottom:140.070000px;}
.y74{bottom:143.310000px;}
.yd0{bottom:149.340000px;}
.y8d{bottom:153.390000px;}
.y27{bottom:157.440000px;}
.ya5{bottom:157.710000px;}
.y4b{bottom:159.510000px;}
.yf8{bottom:164.730000px;}
.ycf{bottom:166.980000px;}
.y73{bottom:170.580000px;}
.y26{bottom:175.080000px;}
.yce{bottom:184.530000px;}
.yf7{bottom:191.280000px;}
.y25{bottom:192.630000px;}
.ya4{bottom:193.260000px;}
.y4a{bottom:195.060000px;}
.y72{bottom:197.940000px;}
.ycd{bottom:202.170000px;}
.y24{bottom:210.180000px;}
.ya3{bottom:210.810000px;}
.y49{bottom:212.700000px;}
.yf6{bottom:217.830000px;}
.ycc{bottom:219.720000px;}
.y71{bottom:225.300000px;}
.y23{bottom:227.820000px;}
.ya2{bottom:228.450000px;}
.y48{bottom:230.250000px;}
.yf5{bottom:235.470000px;}
.ycb{bottom:237.270000px;}
.ya1{bottom:246.000000px;}
.y47{bottom:247.800000px;}
.y70{bottom:252.660000px;}
.yf4{bottom:262.020000px;}
.y22{bottom:263.370000px;}
.yca{bottom:264.180000px;}
.y46{bottom:265.440000px;}
.yf3{bottom:279.660000px;}
.y6e{bottom:279.930000px;}
.y21{bottom:281.010000px;}
.ya0{bottom:281.640000px;}
.y45{bottom:291.990000px;}
.yf2{bottom:297.210000px;}
.y20{bottom:298.560000px;}
.y9f{bottom:299.190000px;}
.y6d{bottom:307.290000px;}
.yc9{bottom:312.510000px;}
.y1f{bottom:316.110000px;}
.y9e{bottom:316.740000px;}
.yf1{bottom:323.760000px;}
.y44{bottom:327.630000px;}
.yc8{bottom:330.060000px;}
.y1e{bottom:333.750000px;}
.y9d{bottom:334.380000px;}
.y6c{bottom:334.650000px;}
.yf0{bottom:341.400000px;}
.y43{bottom:345.180000px;}
.yc7{bottom:347.610000px;}
.y1d{bottom:351.300000px;}
.y9c{bottom:351.930000px;}
.yef{bottom:358.950000px;}
.y6a{bottom:362.010000px;}
.y42{bottom:362.730000px;}
.yc6{bottom:365.250000px;}
.y1c{bottom:368.850000px;}
.y9b{bottom:369.570000px;}
.yc5{bottom:382.800000px;}
.yee{bottom:385.590000px;}
.y1b{bottom:386.490000px;}
.y41{bottom:389.370000px;}
.y9a{bottom:396.480000px;}
.yc4{bottom:400.440000px;}
.yed{bottom:403.140000px;}
.y1a{bottom:404.040000px;}
.y69{bottom:410.700000px;}
.yc3{bottom:417.990000px;}
.y40{bottom:424.920000px;}
.yec{bottom:429.690000px;}
.y19{bottom:430.950000px;}
.yc2{bottom:435.540000px;}
.y3f{bottom:442.560000px;}
.y99{bottom:444.720000px;}
.y68{bottom:446.250000px;}
.yeb{bottom:447.330000px;}
.y3e{bottom:460.110000px;}
.y67{bottom:463.800000px;}
.y8c{bottom:468.750000px;}
.yc1{bottom:471.210000px;}
.yea{bottom:473.910000px;}
.y98{bottom:476.970000px;}
.y3d{bottom:477.690000px;}
.y18{bottom:479.580000px;}
.y8b{bottom:480.930000px;}
.yc0{bottom:488.760000px;}
.y66{bottom:490.470000px;}
.ye9{bottom:491.550000px;}
.y3c{bottom:504.330000px;}
.ybf{bottom:506.400000px;}
.y8a{bottom:508.290000px;}
.y17{bottom:516.660000px;}
.ye8{bottom:518.100000px;}
.ybe{bottom:523.950000px;}
.y65{bottom:526.380000px;}
.y16{bottom:534.210000px;}
.y89{bottom:535.650000px;}
.y3b{bottom:540.240000px;}
.ybd{bottom:541.500000px;}
.y15{bottom:551.760000px;}
.ye7{bottom:553.290000px;}
.ybc{bottom:559.140000px;}
.y88{bottom:562.920000px;}
.y14{bottom:569.400000px;}
.y64{bottom:574.620000px;}
.ybb{bottom:576.690000px;}
.ye6{bottom:579.840000px;}
.y13{bottom:586.950000px;}
.y3a{bottom:588.480000px;}
.y87{bottom:590.280000px;}
.y63{bottom:592.260000px;}
.yba{bottom:594.330000px;}
.ye5{bottom:597.480000px;}
.y12{bottom:604.590000px;}
.yb9{bottom:611.880000px;}
.y86{bottom:617.640000px;}
.y62{bottom:618.810000px;}
.y39{bottom:620.700000px;}
.y11{bottom:622.140000px;}
.ye4{bottom:624.030000px;}
.yb8{bottom:629.430000px;}
.y10{bottom:639.690000px;}
.ye3{bottom:641.580000px;}
.y85{bottom:645.000000px;}
.yb7{bottom:647.070000px;}
.y61{bottom:654.360000px;}
.yf{bottom:657.330000px;}
.yb6{bottom:664.620000px;}
.ye2{bottom:668.220000px;}
.y60{bottom:672.000000px;}
.ye{bottom:674.880000px;}
.yb5{bottom:682.260000px;}
.ye1{bottom:685.770000px;}
.y5f{bottom:689.550000px;}
.y84{bottom:693.690000px;}
.yb4{bottom:699.810000px;}
.yd{bottom:701.790000px;}
.ye0{bottom:703.410000px;}
.y5e{bottom:707.190000px;}
.yb3{bottom:717.360000px;}
.y5d{bottom:724.740000px;}
.y83{bottom:729.240000px;}
.ydf{bottom:729.960000px;}
.yb2{bottom:735.000000px;}
.y5c{bottom:742.290000px;}
.y82{bottom:746.880000px;}
.yde{bottom:747.510000px;}
.yc{bottom:750.030000px;}
.yb1{bottom:752.550000px;}
.y5b{bottom:759.930000px;}
.yb0{bottom:770.190000px;}
.y81{bottom:773.430000px;}
.ydd{bottom:774.150000px;}
.yb{bottom:785.850000px;}
.y5a{bottom:786.480000px;}
.yaf{bottom:787.740000px;}
.ydc{bottom:791.700000px;}
.yae{bottom:805.290000px;}
.y80{bottom:808.260000px;}
.ydb{bottom:818.340000px;}
.y7f{bottom:820.500000px;}
.ya{bottom:821.850000px;}
.y59{bottom:822.030000px;}
.yad{bottom:822.930000px;}
.yda{bottom:835.890000px;}
.y102{bottom:840.030000px;}
.yac{bottom:840.480000px;}
.y7e{bottom:847.770000px;}
.y97{bottom:853.800000px;}
.y58{bottom:857.670000px;}
.y9{bottom:861.630000px;}
.yd9{bottom:862.800000px;}
.y96{bottom:868.830000px;}
.y7d{bottom:875.130000px;}
.y57{bottom:875.220000px;}
.y8{bottom:875.850000px;}
.y38{bottom:876.030000px;}
.y101{bottom:884.220000px;}
.y56{bottom:892.860000px;}
.y37{bottom:893.670000px;}
.y95{bottom:896.100000px;}
.y7{bottom:897.630000px;}
.y100{bottom:901.860000px;}
.y7c{bottom:902.490000px;}
.y55{bottom:910.410000px;}
.yd8{bottom:911.040000px;}
.y36{bottom:911.220000px;}
.y94{bottom:923.460000px;}
.y54{bottom:927.960000px;}
.yff{bottom:928.410000px;}
.yd7{bottom:928.680000px;}
.y35{bottom:928.860000px;}
.y7b{bottom:929.850000px;}
.y6{bottom:929.940000px;}
.y53{bottom:945.600000px;}
.yfe{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yd6{bottom:955.590000px;}
.y7a{bottom:957.120000px;}
.y52{bottom:963.150000px;}
.y33{bottom:963.960000px;}
.y93{bottom:972.150000px;}
.yfd{bottom:972.600000px;}
.y51{bottom:980.790000px;}
.y32{bottom:981.600000px;}
.y79{bottom:984.480000px;}
.y4{bottom:987.630000px;}
.yfc{bottom:990.150000px;}
.yd5{bottom:992.580000px;}
.y31{bottom:999.150000px;}
.y50{bottom:1007.340000px;}
.y92{bottom:1007.790000px;}
.yd4{bottom:1010.160000px;}
.y78{bottom:1011.870000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.yab{bottom:1017.180000px;}
.y91{bottom:1025.370000px;}
.y2f{bottom:1034.370000px;}
.yaa{bottom:1034.820000px;}
.yd3{bottom:1037.070000px;}
.y4f{bottom:1042.920000px;}
.y2e{bottom:1051.920000px;}
.ya9{bottom:1052.370000px;}
.y4e{bottom:1060.560000px;}
.y2d{bottom:1069.560000px;}
.ya8{bottom:1069.920000px;}
.yd2{bottom:1074.420000px;}
.yfb{bottom:1078.560000px;}
.y2c{bottom:1087.110000px;}
.y90{bottom:1087.560000px;}
.y77{bottom:1096.110000px;}
.y8f{bottom:1105.110000px;}
.y76{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hf{height:26.580000px;}
.hd{height:26.640000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.he{height:41.661211px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:94.680000px;}
.w9{width:94.710000px;}
.wa{width:94.770000px;}
.w3{width:102.600000px;}
.w4{width:120.900000px;}
.w6{width:120.990000px;}
.w5{width:144.270000px;}
.w7{width:167.850000px;}
.wb{width:223.020000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x17{left:111.239987px;}
.x16{left:134.909987px;}
.x5{left:169.229987px;}
.x12{left:188.129987px;}
.x2{left:192.719987px;}
.xd{left:219.450000px;}
.x13{left:274.260000px;}
.xa{left:313.680000px;}
.xc{left:321.239987px;}
.x6{left:334.470000px;}
.x9{left:364.529987px;}
.xe{left:388.110000px;}
.x8{left:437.880000px;}
.xb{left:458.670000px;}
.xf{left:483.600000px;}
.x14{left:498.090000px;}
.x4{left:577.139987px;}
.x10{left:579.030000px;}
.x11{left:614.309987px;}
.x15{left:717.089987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.076800pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.028160pt;}
.ls17{letter-spacing:-0.013120pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls8{letter-spacing:0.058133pt;}
.ls2{letter-spacing:0.058240pt;}
.ls12{letter-spacing:0.066133pt;}
.ls1{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.378240pt;}
.ls19{letter-spacing:0.386133pt;}
.ls14{letter-spacing:0.403200pt;}
.ls0{letter-spacing:11.864320pt;}
.ls16{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.869867pt;}
.ws9{word-spacing:-11.822933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.728640pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._11{margin-left:-2.832320pt;}
._c{margin-left:-1.928000pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.058667pt;}
._f{width:2.137600pt;}
._5{width:3.577442pt;}
._4{width:5.094954pt;}
._6{width:6.346210pt;}
._d{width:7.337751pt;}
._8{width:8.229867pt;}
._9{width:9.361173pt;}
._e{width:10.732160pt;}
._7{width:12.665066pt;}
._2{width:14.240736pt;}
._1{width:15.359435pt;}
._12{width:16.700673pt;}
._a{width:20.360533pt;}
._b{width:21.483735pt;}
._10{width:25.384000pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:6.960000pt;}
.y6f{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.yfa{bottom:99.146667pt;}
.y4d{bottom:102.506667pt;}
.y8e{bottom:107.706667pt;}
.ya7{bottom:108.906667pt;}
.y75{bottom:116.506667pt;}
.yd1{bottom:117.146667pt;}
.y4c{bottom:118.106667pt;}
.yf9{bottom:122.746667pt;}
.ya6{bottom:124.506667pt;}
.y74{bottom:127.386667pt;}
.yd0{bottom:132.746667pt;}
.y8d{bottom:136.346667pt;}
.y27{bottom:139.946667pt;}
.ya5{bottom:140.186667pt;}
.y4b{bottom:141.786667pt;}
.yf8{bottom:146.426667pt;}
.ycf{bottom:148.426667pt;}
.y73{bottom:151.626667pt;}
.y26{bottom:155.626667pt;}
.yce{bottom:164.026667pt;}
.yf7{bottom:170.026667pt;}
.y25{bottom:171.226667pt;}
.ya4{bottom:171.786667pt;}
.y4a{bottom:173.386667pt;}
.y72{bottom:175.946667pt;}
.ycd{bottom:179.706667pt;}
.y24{bottom:186.826667pt;}
.ya3{bottom:187.386667pt;}
.y49{bottom:189.066667pt;}
.yf6{bottom:193.626667pt;}
.ycc{bottom:195.306667pt;}
.y71{bottom:200.266667pt;}
.y23{bottom:202.506667pt;}
.ya2{bottom:203.066667pt;}
.y48{bottom:204.666667pt;}
.yf5{bottom:209.306667pt;}
.ycb{bottom:210.906667pt;}
.ya1{bottom:218.666667pt;}
.y47{bottom:220.266667pt;}
.y70{bottom:224.586667pt;}
.yf4{bottom:232.906667pt;}
.y22{bottom:234.106667pt;}
.yca{bottom:234.826667pt;}
.y46{bottom:235.946667pt;}
.yf3{bottom:248.586667pt;}
.y6e{bottom:248.826667pt;}
.y21{bottom:249.786667pt;}
.ya0{bottom:250.346667pt;}
.y45{bottom:259.546667pt;}
.yf2{bottom:264.186667pt;}
.y20{bottom:265.386667pt;}
.y9f{bottom:265.946667pt;}
.y6d{bottom:273.146667pt;}
.yc9{bottom:277.786667pt;}
.y1f{bottom:280.986667pt;}
.y9e{bottom:281.546667pt;}
.yf1{bottom:287.786667pt;}
.y44{bottom:291.226667pt;}
.yc8{bottom:293.386667pt;}
.y1e{bottom:296.666667pt;}
.y9d{bottom:297.226667pt;}
.y6c{bottom:297.466667pt;}
.yf0{bottom:303.466667pt;}
.y43{bottom:306.826667pt;}
.yc7{bottom:308.986667pt;}
.y1d{bottom:312.266667pt;}
.y9c{bottom:312.826667pt;}
.yef{bottom:319.066667pt;}
.y6a{bottom:321.786667pt;}
.y42{bottom:322.426667pt;}
.yc6{bottom:324.666667pt;}
.y1c{bottom:327.866667pt;}
.y9b{bottom:328.506667pt;}
.yc5{bottom:340.266667pt;}
.yee{bottom:342.746667pt;}
.y1b{bottom:343.546667pt;}
.y41{bottom:346.106667pt;}
.y9a{bottom:352.426667pt;}
.yc4{bottom:355.946667pt;}
.yed{bottom:358.346667pt;}
.y1a{bottom:359.146667pt;}
.y69{bottom:365.066667pt;}
.yc3{bottom:371.546667pt;}
.y40{bottom:377.706667pt;}
.yec{bottom:381.946667pt;}
.y19{bottom:383.066667pt;}
.yc2{bottom:387.146667pt;}
.y3f{bottom:393.386667pt;}
.y99{bottom:395.306667pt;}
.y68{bottom:396.666667pt;}
.yeb{bottom:397.626667pt;}
.y3e{bottom:408.986667pt;}
.y67{bottom:412.266667pt;}
.y8c{bottom:416.666667pt;}
.yc1{bottom:418.853333pt;}
.yea{bottom:421.253333pt;}
.y98{bottom:423.973333pt;}
.y3d{bottom:424.613333pt;}
.y18{bottom:426.293333pt;}
.y8b{bottom:427.493333pt;}
.yc0{bottom:434.453333pt;}
.y66{bottom:435.973333pt;}
.ye9{bottom:436.933333pt;}
.y3c{bottom:448.293333pt;}
.ybf{bottom:450.133333pt;}
.y8a{bottom:451.813333pt;}
.y17{bottom:459.253333pt;}
.ye8{bottom:460.533333pt;}
.ybe{bottom:465.733333pt;}
.y65{bottom:467.893333pt;}
.y16{bottom:474.853333pt;}
.y89{bottom:476.133333pt;}
.y3b{bottom:480.213333pt;}
.ybd{bottom:481.333333pt;}
.y15{bottom:490.453333pt;}
.ye7{bottom:491.813333pt;}
.ybc{bottom:497.013333pt;}
.y88{bottom:500.373333pt;}
.y14{bottom:506.133333pt;}
.y64{bottom:510.773333pt;}
.ybb{bottom:512.613333pt;}
.ye6{bottom:515.413333pt;}
.y13{bottom:521.733333pt;}
.y3a{bottom:523.093333pt;}
.y87{bottom:524.693333pt;}
.y63{bottom:526.453333pt;}
.yba{bottom:528.293333pt;}
.ye5{bottom:531.093333pt;}
.y12{bottom:537.413333pt;}
.yb9{bottom:543.893333pt;}
.y86{bottom:549.013333pt;}
.y62{bottom:550.053333pt;}
.y39{bottom:551.733333pt;}
.y11{bottom:553.013333pt;}
.ye4{bottom:554.693333pt;}
.yb8{bottom:559.493333pt;}
.y10{bottom:568.613333pt;}
.ye3{bottom:570.293333pt;}
.y85{bottom:573.333333pt;}
.yb7{bottom:575.173333pt;}
.y61{bottom:581.653333pt;}
.yf{bottom:584.293333pt;}
.yb6{bottom:590.773333pt;}
.ye2{bottom:593.973333pt;}
.y60{bottom:597.333333pt;}
.ye{bottom:599.893333pt;}
.yb5{bottom:606.453333pt;}
.ye1{bottom:609.573333pt;}
.y5f{bottom:612.933333pt;}
.y84{bottom:616.613333pt;}
.yb4{bottom:622.053333pt;}
.yd{bottom:623.813333pt;}
.ye0{bottom:625.253333pt;}
.y5e{bottom:628.613333pt;}
.yb3{bottom:637.653333pt;}
.y5d{bottom:644.213333pt;}
.y83{bottom:648.213333pt;}
.ydf{bottom:648.853333pt;}
.yb2{bottom:653.333333pt;}
.y5c{bottom:659.813333pt;}
.y82{bottom:663.893333pt;}
.yde{bottom:664.453333pt;}
.yc{bottom:666.693333pt;}
.yb1{bottom:668.933333pt;}
.y5b{bottom:675.493333pt;}
.yb0{bottom:684.613333pt;}
.y81{bottom:687.493333pt;}
.ydd{bottom:688.133333pt;}
.yb{bottom:698.533333pt;}
.y5a{bottom:699.093333pt;}
.yaf{bottom:700.213333pt;}
.ydc{bottom:703.733333pt;}
.yae{bottom:715.813333pt;}
.y80{bottom:718.453333pt;}
.ydb{bottom:727.413333pt;}
.y7f{bottom:729.333333pt;}
.ya{bottom:730.533333pt;}
.y59{bottom:730.693333pt;}
.yad{bottom:731.493333pt;}
.yda{bottom:743.013333pt;}
.y102{bottom:746.693333pt;}
.yac{bottom:747.093333pt;}
.y7e{bottom:753.573333pt;}
.y97{bottom:758.933333pt;}
.y58{bottom:762.373333pt;}
.y9{bottom:765.893333pt;}
.yd9{bottom:766.933333pt;}
.y96{bottom:772.293333pt;}
.y7d{bottom:777.893333pt;}
.y57{bottom:777.973333pt;}
.y8{bottom:778.533333pt;}
.y38{bottom:778.693333pt;}
.y101{bottom:785.973333pt;}
.y56{bottom:793.653333pt;}
.y37{bottom:794.373333pt;}
.y95{bottom:796.533333pt;}
.y7{bottom:797.893333pt;}
.y100{bottom:801.653333pt;}
.y7c{bottom:802.213333pt;}
.y55{bottom:809.253333pt;}
.yd8{bottom:809.813333pt;}
.y36{bottom:809.973333pt;}
.y94{bottom:820.853333pt;}
.y54{bottom:824.853333pt;}
.yff{bottom:825.253333pt;}
.yd7{bottom:825.493333pt;}
.y35{bottom:825.653333pt;}
.y7b{bottom:826.533333pt;}
.y6{bottom:826.613333pt;}
.y53{bottom:840.533333pt;}
.yfe{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yd6{bottom:849.413333pt;}
.y7a{bottom:850.773333pt;}
.y52{bottom:856.133333pt;}
.y33{bottom:856.853333pt;}
.y93{bottom:864.133333pt;}
.yfd{bottom:864.533333pt;}
.y51{bottom:871.813333pt;}
.y32{bottom:872.533333pt;}
.y79{bottom:875.093333pt;}
.y4{bottom:877.893333pt;}
.yfc{bottom:880.133333pt;}
.yd5{bottom:882.293333pt;}
.y31{bottom:888.133333pt;}
.y50{bottom:895.413333pt;}
.y92{bottom:895.813333pt;}
.yd4{bottom:897.920000pt;}
.y78{bottom:899.440000pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.yab{bottom:904.160000pt;}
.y91{bottom:911.440000pt;}
.y2f{bottom:919.440000pt;}
.yaa{bottom:919.840000pt;}
.yd3{bottom:921.840000pt;}
.y4f{bottom:927.040000pt;}
.y2e{bottom:935.040000pt;}
.ya9{bottom:935.440000pt;}
.y4e{bottom:942.720000pt;}
.y2d{bottom:950.720000pt;}
.ya8{bottom:951.040000pt;}
.yd2{bottom:955.040000pt;}
.yfb{bottom:958.720000pt;}
.y2c{bottom:966.320000pt;}
.y90{bottom:966.720000pt;}
.y77{bottom:974.320000pt;}
.y8f{bottom:982.320000pt;}
.y76{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hf{height:23.626667pt;}
.hd{height:23.680000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.he{height:37.032187pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:84.160000pt;}
.w9{width:84.186667pt;}
.wa{width:84.240000pt;}
.w3{width:91.200000pt;}
.w4{width:107.466667pt;}
.w6{width:107.546667pt;}
.w5{width:128.240000pt;}
.w7{width:149.200000pt;}
.wb{width:198.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x17{left:98.879988pt;}
.x16{left:119.919988pt;}
.x5{left:150.426655pt;}
.x12{left:167.226655pt;}
.x2{left:171.306655pt;}
.xd{left:195.066667pt;}
.x13{left:243.786667pt;}
.xa{left:278.826667pt;}
.xc{left:285.546655pt;}
.x6{left:297.306667pt;}
.x9{left:324.026655pt;}
.xe{left:344.986667pt;}
.x8{left:389.226667pt;}
.xb{left:407.706667pt;}
.xf{left:429.866667pt;}
.x14{left:442.746667pt;}
.x4{left:513.013322pt;}
.x10{left:514.693333pt;}
.x11{left:546.053322pt;}
.x15{left:637.413322pt;}
.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; }
  