
    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_8cc7e6dbf356865c7fd952e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_1acf14bebc5db2f3451b8ecf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_27f4cff89b2f963ede6b1b45.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_b72c0a9c76c59a42b9872860.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_bdf1c3e51e93d07b391182dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_b8c051ed150fb1f96e2f3933.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_95cc01da94f806e02ce8d813.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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_17d61fcb4062b8004bcb32a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.174000px;}
.lsa{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.864000px;}
.lsf{letter-spacing:1.440000px;}
.lsd{letter-spacing:3.600000px;}
.ls1{letter-spacing:5.760000px;}
.ls8{letter-spacing:6.480000px;}
.lsc{letter-spacing:8.040000px;}
.ls5{letter-spacing:8.640000px;}
.ls7{letter-spacing:13.680000px;}
.lse{letter-spacing:14.400000px;}
.lsb{letter-spacing:17.280000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.505760px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-4.536000px;}
._8{margin-left:-3.431520px;}
._b{margin-left:-2.232000px;}
._2{margin-left:-1.224000px;}
._0{width:1.055520px;}
._e{width:2.160000px;}
._d{width:3.744000px;}
._f{width:5.040000px;}
._12{width:6.432480px;}
._5{width:8.280000px;}
._6{width:9.360000px;}
._13{width:11.160000px;}
._14{width:12.168000px;}
._19{width:13.368000px;}
._11{width:15.048000px;}
._10{width:16.416000px;}
._1b{width:19.440000px;}
._26{width:20.447040px;}
._16{width:21.480480px;}
._17{width:22.557600px;}
._18{width:23.760000px;}
._21{width:24.840000px;}
._4{width:26.424000px;}
._3{width:27.576000px;}
._20{width:28.728000px;}
._1a{width:29.880000px;}
._1e{width:31.104480px;}
._1f{width:32.327520px;}
._22{width:33.984000px;}
._c{width:35.856000px;}
._23{width:36.960480px;}
._1d{width:38.736000px;}
._15{width:40.176000px;}
._1c{width:41.328000px;}
._24{width:43.200000px;}
._25{width:44.472000px;}
._27{width:45.816000px;}
._9{width:47.304000px;}
._a{width:48.744000px;}
._28{width:55.296000px;}
._1{width:82.776000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.y2{bottom:40.140000px;}
.y5{bottom:49.140000px;}
.y106{bottom:110.160000px;}
.ydc{bottom:111.060000px;}
.y68{bottom:115.560000px;}
.yba{bottom:119.160000px;}
.y39{bottom:120.060000px;}
.y134{bottom:122.760000px;}
.y101{bottom:124.020000px;}
.y115{bottom:124.560000px;}
.ye5{bottom:128.160000px;}
.yd6{bottom:128.520000px;}
.y105{bottom:130.860000px;}
.y67{bottom:136.260000px;}
.ydb{bottom:136.800000px;}
.y98{bottom:139.860000px;}
.y38{bottom:140.760000px;}
.y133{bottom:143.460000px;}
.y100{bottom:144.720000px;}
.y114{bottom:145.260000px;}
.yb9{bottom:148.860000px;}
.yd5{bottom:149.220000px;}
.y104{bottom:151.560000px;}
.y66{bottom:156.960000px;}
.y97{bottom:160.560000px;}
.y37{bottom:161.460000px;}
.yff{bottom:165.420000px;}
.y113{bottom:165.960000px;}
.ye4{bottom:169.560000px;}
.yd4{bottom:169.920000px;}
.y132{bottom:173.160000px;}
.y65{bottom:177.660000px;}
.yb8{bottom:178.560000px;}
.y96{bottom:181.260000px;}
.y36{bottom:182.160000px;}
.yfe{bottom:186.120000px;}
.y112{bottom:186.660000px;}
.ye3{bottom:190.260000px;}
.yd3{bottom:190.620000px;}
.y131{bottom:193.860000px;}
.y64{bottom:198.390000px;}
.yb7{bottom:199.290000px;}
.y95{bottom:201.990000px;}
.y35{bottom:202.890000px;}
.yfd{bottom:206.850000px;}
.y111{bottom:207.390000px;}
.ye2{bottom:210.990000px;}
.yd2{bottom:211.350000px;}
.y63{bottom:219.090000px;}
.yb6{bottom:219.990000px;}
.y94{bottom:222.690000px;}
.y34{bottom:223.590000px;}
.yfc{bottom:227.550000px;}
.y79{bottom:228.090000px;}
.ye1{bottom:231.690000px;}
.yd1{bottom:232.050000px;}
.y62{bottom:239.790000px;}
.yb5{bottom:240.690000px;}
.y93{bottom:243.390000px;}
.y33{bottom:244.290000px;}
.y110{bottom:248.790000px;}
.yd0{bottom:252.750000px;}
.yfb{bottom:257.250000px;}
.y78{bottom:257.790000px;}
.yb4{bottom:261.390000px;}
.y92{bottom:264.090000px;}
.y32{bottom:264.990000px;}
.y61{bottom:269.490000px;}
.ye6{bottom:273.090000px;}
.ycf{bottom:273.450000px;}
.y130{bottom:273.990000px;}
.yfa{bottom:277.950000px;}
.yb3{bottom:282.090000px;}
.y91{bottom:284.790000px;}
.y77{bottom:287.490000px;}
.yce{bottom:294.150000px;}
.y31{bottom:294.690000px;}
.yf9{bottom:298.650000px;}
.y60{bottom:299.190000px;}
.yb2{bottom:302.790000px;}
.y90{bottom:305.490000px;}
.y76{bottom:308.190000px;}
.ycd{bottom:314.850000px;}
.yf8{bottom:319.350000px;}
.y10f{bottom:319.890000px;}
.yb1{bottom:323.490000px;}
.y30{bottom:324.390000px;}
.y8f{bottom:326.190000px;}
.y5f{bottom:328.890000px;}
.yf7{bottom:340.050000px;}
.y10e{bottom:340.590000px;}
.yb0{bottom:344.190000px;}
.ycc{bottom:344.550000px;}
.y12f{bottom:345.090000px;}
.y103{bottom:346.890000px;}
.y5e{bottom:349.590000px;}
.y2f{bottom:354.090000px;}
.y8e{bottom:355.890000px;}
.yf6{bottom:360.750000px;}
.y10d{bottom:361.290000px;}
.yaf{bottom:364.890000px;}
.ycb{bottom:365.250000px;}
.y102{bottom:367.590000px;}
.y5d{bottom:370.290000px;}
.y12e{bottom:374.790000px;}
.y8d{bottom:376.590000px;}
.y75{bottom:379.290000px;}
.yf5{bottom:381.450000px;}
.y10c{bottom:381.990000px;}
.y2e{bottom:383.790000px;}
.yae{bottom:385.590000px;}
.yca{bottom:385.950000px;}
.y5c{bottom:390.990000px;}
.y12d{bottom:395.490000px;}
.y8c{bottom:397.290000px;}
.y74{bottom:399.990000px;}
.yf4{bottom:402.150000px;}
.y10b{bottom:402.690000px;}
.y2d{bottom:404.490000px;}
.yad{bottom:406.290000px;}
.yc9{bottom:406.650000px;}
.y8b{bottom:417.990000px;}
.y5b{bottom:420.690000px;}
.yf3{bottom:422.850000px;}
.y10a{bottom:423.390000px;}
.y2c{bottom:425.190000px;}
.yac{bottom:426.990000px;}
.yc8{bottom:427.350000px;}
.y8a{bottom:438.735000px;}
.y5a{bottom:441.435000px;}
.yf2{bottom:443.595000px;}
.y109{bottom:444.135000px;}
.y2b{bottom:445.935000px;}
.yab{bottom:447.735000px;}
.yc7{bottom:448.095000px;}
.y89{bottom:459.435000px;}
.y59{bottom:462.135000px;}
.yf1{bottom:464.295000px;}
.y108{bottom:464.835000px;}
.y2a{bottom:466.635000px;}
.yaa{bottom:468.435000px;}
.yc6{bottom:468.795000px;}
.y12c{bottom:475.635000px;}
.y88{bottom:480.135000px;}
.y58{bottom:482.835000px;}
.yf0{bottom:484.995000px;}
.y29{bottom:487.335000px;}
.ya9{bottom:489.135000px;}
.yc5{bottom:489.495000px;}
.y107{bottom:494.535000px;}
.y87{bottom:500.835000px;}
.y57{bottom:503.535000px;}
.y12b{bottom:505.335000px;}
.yef{bottom:505.695000px;}
.y28{bottom:508.035000px;}
.ya8{bottom:509.835000px;}
.yc4{bottom:519.195000px;}
.y86{bottom:521.535000px;}
.y56{bottom:524.235000px;}
.yee{bottom:526.395000px;}
.y27{bottom:528.735000px;}
.ya7{bottom:530.535000px;}
.y12a{bottom:535.035000px;}
.y85{bottom:542.235000px;}
.yc3{bottom:544.935000px;}
.yed{bottom:547.095000px;}
.ya6{bottom:551.235000px;}
.y55{bottom:553.935000px;}
.y26{bottom:558.435000px;}
.y84{bottom:562.935000px;}
.y129{bottom:564.735000px;}
.yec{bottom:567.795000px;}
.ya5{bottom:571.935000px;}
.y54{bottom:574.635000px;}
.yda{bottom:583.635000px;}
.y128{bottom:585.435000px;}
.y25{bottom:588.135000px;}
.yeb{bottom:588.495000px;}
.y83{bottom:592.635000px;}
.y53{bottom:595.335000px;}
.ye0{bottom:601.635000px;}
.yd9{bottom:604.335000px;}
.y82{bottom:613.335000px;}
.y127{bottom:615.135000px;}
.y52{bottom:616.035000px;}
.ye{bottom:617.475000px;}
.y24{bottom:617.835000px;}
.yea{bottom:618.195000px;}
.ydf{bottom:622.335000px;}
.yd8{bottom:625.035000px;}
.y81{bottom:634.035000px;}
.y126{bottom:635.835000px;}
.y51{bottom:636.735000px;}
.yde{bottom:643.035000px;}
.yd7{bottom:645.735000px;}
.y23{bottom:647.535000px;}
.ye9{bottom:647.895000px;}
.y80{bottom:654.735000px;}
.y50{bottom:657.435000px;}
.ydd{bottom:663.735000px;}
.y125{bottom:665.535000px;}
.y73{bottom:666.435000px;}
.y22{bottom:668.235000px;}
.y7f{bottom:675.465000px;}
.ye8{bottom:677.625000px;}
.y4f{bottom:678.165000px;}
.ya4{bottom:684.465000px;}
.y72{bottom:687.165000px;}
.y21{bottom:688.965000px;}
.y124{bottom:695.265000px;}
.y7e{bottom:696.165000px;}
.y4e{bottom:698.865000px;}
.ye7{bottom:703.365000px;}
.ya3{bottom:705.165000px;}
.y71{bottom:707.865000px;}
.y20{bottom:709.665000px;}
.y123{bottom:715.965000px;}
.y7d{bottom:716.865000px;}
.y4d{bottom:719.565000px;}
.ya2{bottom:725.865000px;}
.y70{bottom:728.565000px;}
.y1f{bottom:730.365000px;}
.y7c{bottom:737.565000px;}
.y122{bottom:745.665000px;}
.ya1{bottom:746.565000px;}
.y4c{bottom:749.265000px;}
.y1e{bottom:751.065000px;}
.y7b{bottom:758.265000px;}
.y121{bottom:766.365000px;}
.ya0{bottom:767.265000px;}
.y4b{bottom:769.965000px;}
.y1d{bottom:771.765000px;}
.y6f{bottom:778.965000px;}
.y9f{bottom:787.965000px;}
.y4a{bottom:790.665000px;}
.y120{bottom:796.065000px;}
.y6e{bottom:799.665000px;}
.y1c{bottom:801.465000px;}
.y9e{bottom:808.665000px;}
.y49{bottom:811.365000px;}
.y11f{bottom:816.765000px;}
.y6d{bottom:820.365000px;}
.y9d{bottom:829.365000px;}
.y1b{bottom:831.165000px;}
.y48{bottom:832.065000px;}
.y6c{bottom:841.065000px;}
.y11e{bottom:846.465000px;}
.y9c{bottom:850.065000px;}
.y47{bottom:852.765000px;}
.y1a{bottom:860.865000px;}
.y6b{bottom:861.765000px;}
.y11d{bottom:867.165000px;}
.y9b{bottom:870.765000px;}
.y46{bottom:873.465000px;}
.y19{bottom:881.565000px;}
.y6a{bottom:882.465000px;}
.y11c{bottom:887.865000px;}
.y9a{bottom:891.465000px;}
.y45{bottom:903.165000px;}
.y18{bottom:911.265000px;}
.y99{bottom:912.165000px;}
.y11b{bottom:917.610000px;}
.y44{bottom:923.910000px;}
.y7a{bottom:932.910000px;}
.y11a{bottom:938.310000px;}
.y17{bottom:941.010000px;}
.y43{bottom:944.610000px;}
.y69{bottom:953.610000px;}
.yc2{bottom:965.310000px;}
.y119{bottom:968.010000px;}
.y16{bottom:970.710000px;}
.y42{bottom:974.310000px;}
.yc1{bottom:986.010000px;}
.y118{bottom:988.710000px;}
.y15{bottom:991.410000px;}
.y41{bottom:995.010000px;}
.yc0{bottom:1006.710000px;}
.y40{bottom:1015.710000px;}
.y117{bottom:1018.410000px;}
.y14{bottom:1021.110000px;}
.ybf{bottom:1027.410000px;}
.y3f{bottom:1036.410000px;}
.y116{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.ybe{bottom:1048.110000px;}
.y3e{bottom:1057.110000px;}
.ybd{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y3d{bottom:1077.810000px;}
.ybc{bottom:1089.510000px;}
.y3c{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.ybb{bottom:1110.210000px;}
.y3b{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y3a{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.h9{height:49.868086px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.240000px;}
.w8{width:84.990000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.x10{left:109.475987px;}
.xe{left:113.255987px;}
.x14{left:125.855987px;}
.x2{left:161.145000px;}
.x1{left:212.430000px;}
.x15{left:218.729987px;}
.x11{left:323.714987px;}
.x13{left:343.874987px;}
.xf{left:370.694987px;}
.x8{left:420.375000px;}
.x12{left:446.474987px;}
.x17{left:572.144987px;}
.x16{left:605.804987px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.x18{left:786.749987px;}
.xc{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.154667pt;}
.lsa{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.768000pt;}
.lsf{letter-spacing:1.280000pt;}
.lsd{letter-spacing:3.200000pt;}
.ls1{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.760000pt;}
.lsc{letter-spacing:7.146667pt;}
.ls5{letter-spacing:7.680000pt;}
.ls7{letter-spacing:12.160000pt;}
.lse{letter-spacing:12.800000pt;}
.lsb{letter-spacing:15.360000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-4.032000pt;}
._8{margin-left:-3.050240pt;}
._b{margin-left:-1.984000pt;}
._2{margin-left:-1.088000pt;}
._0{width:0.938240pt;}
._e{width:1.920000pt;}
._d{width:3.328000pt;}
._f{width:4.480000pt;}
._12{width:5.717760pt;}
._5{width:7.360000pt;}
._6{width:8.320000pt;}
._13{width:9.920000pt;}
._14{width:10.816000pt;}
._19{width:11.882667pt;}
._11{width:13.376000pt;}
._10{width:14.592000pt;}
._1b{width:17.280000pt;}
._26{width:18.175147pt;}
._16{width:19.093760pt;}
._17{width:20.051200pt;}
._18{width:21.120000pt;}
._21{width:22.080000pt;}
._4{width:23.488000pt;}
._3{width:24.512000pt;}
._20{width:25.536000pt;}
._1a{width:26.560000pt;}
._1e{width:27.648427pt;}
._1f{width:28.735573pt;}
._22{width:30.208000pt;}
._c{width:31.872000pt;}
._23{width:32.853760pt;}
._1d{width:34.432000pt;}
._15{width:35.712000pt;}
._1c{width:36.736000pt;}
._24{width:38.400000pt;}
._25{width:39.530667pt;}
._27{width:40.725333pt;}
._9{width:42.048000pt;}
._a{width:43.328000pt;}
._28{width:49.152000pt;}
._1{width:73.578667pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.y2{bottom:35.680000pt;}
.y5{bottom:43.680000pt;}
.y106{bottom:97.920000pt;}
.ydc{bottom:98.720000pt;}
.y68{bottom:102.720000pt;}
.yba{bottom:105.920000pt;}
.y39{bottom:106.720000pt;}
.y134{bottom:109.120000pt;}
.y101{bottom:110.240000pt;}
.y115{bottom:110.720000pt;}
.ye5{bottom:113.920000pt;}
.yd6{bottom:114.240000pt;}
.y105{bottom:116.320000pt;}
.y67{bottom:121.120000pt;}
.ydb{bottom:121.600000pt;}
.y98{bottom:124.320000pt;}
.y38{bottom:125.120000pt;}
.y133{bottom:127.520000pt;}
.y100{bottom:128.640000pt;}
.y114{bottom:129.120000pt;}
.yb9{bottom:132.320000pt;}
.yd5{bottom:132.640000pt;}
.y104{bottom:134.720000pt;}
.y66{bottom:139.520000pt;}
.y97{bottom:142.720000pt;}
.y37{bottom:143.520000pt;}
.yff{bottom:147.040000pt;}
.y113{bottom:147.520000pt;}
.ye4{bottom:150.720000pt;}
.yd4{bottom:151.040000pt;}
.y132{bottom:153.920000pt;}
.y65{bottom:157.920000pt;}
.yb8{bottom:158.720000pt;}
.y96{bottom:161.120000pt;}
.y36{bottom:161.920000pt;}
.yfe{bottom:165.440000pt;}
.y112{bottom:165.920000pt;}
.ye3{bottom:169.120000pt;}
.yd3{bottom:169.440000pt;}
.y131{bottom:172.320000pt;}
.y64{bottom:176.346667pt;}
.yb7{bottom:177.146667pt;}
.y95{bottom:179.546667pt;}
.y35{bottom:180.346667pt;}
.yfd{bottom:183.866667pt;}
.y111{bottom:184.346667pt;}
.ye2{bottom:187.546667pt;}
.yd2{bottom:187.866667pt;}
.y63{bottom:194.746667pt;}
.yb6{bottom:195.546667pt;}
.y94{bottom:197.946667pt;}
.y34{bottom:198.746667pt;}
.yfc{bottom:202.266667pt;}
.y79{bottom:202.746667pt;}
.ye1{bottom:205.946667pt;}
.yd1{bottom:206.266667pt;}
.y62{bottom:213.146667pt;}
.yb5{bottom:213.946667pt;}
.y93{bottom:216.346667pt;}
.y33{bottom:217.146667pt;}
.y110{bottom:221.146667pt;}
.yd0{bottom:224.666667pt;}
.yfb{bottom:228.666667pt;}
.y78{bottom:229.146667pt;}
.yb4{bottom:232.346667pt;}
.y92{bottom:234.746667pt;}
.y32{bottom:235.546667pt;}
.y61{bottom:239.546667pt;}
.ye6{bottom:242.746667pt;}
.ycf{bottom:243.066667pt;}
.y130{bottom:243.546667pt;}
.yfa{bottom:247.066667pt;}
.yb3{bottom:250.746667pt;}
.y91{bottom:253.146667pt;}
.y77{bottom:255.546667pt;}
.yce{bottom:261.466667pt;}
.y31{bottom:261.946667pt;}
.yf9{bottom:265.466667pt;}
.y60{bottom:265.946667pt;}
.yb2{bottom:269.146667pt;}
.y90{bottom:271.546667pt;}
.y76{bottom:273.946667pt;}
.ycd{bottom:279.866667pt;}
.yf8{bottom:283.866667pt;}
.y10f{bottom:284.346667pt;}
.yb1{bottom:287.546667pt;}
.y30{bottom:288.346667pt;}
.y8f{bottom:289.946667pt;}
.y5f{bottom:292.346667pt;}
.yf7{bottom:302.266667pt;}
.y10e{bottom:302.746667pt;}
.yb0{bottom:305.946667pt;}
.ycc{bottom:306.266667pt;}
.y12f{bottom:306.746667pt;}
.y103{bottom:308.346667pt;}
.y5e{bottom:310.746667pt;}
.y2f{bottom:314.746667pt;}
.y8e{bottom:316.346667pt;}
.yf6{bottom:320.666667pt;}
.y10d{bottom:321.146667pt;}
.yaf{bottom:324.346667pt;}
.ycb{bottom:324.666667pt;}
.y102{bottom:326.746667pt;}
.y5d{bottom:329.146667pt;}
.y12e{bottom:333.146667pt;}
.y8d{bottom:334.746667pt;}
.y75{bottom:337.146667pt;}
.yf5{bottom:339.066667pt;}
.y10c{bottom:339.546667pt;}
.y2e{bottom:341.146667pt;}
.yae{bottom:342.746667pt;}
.yca{bottom:343.066667pt;}
.y5c{bottom:347.546667pt;}
.y12d{bottom:351.546667pt;}
.y8c{bottom:353.146667pt;}
.y74{bottom:355.546667pt;}
.yf4{bottom:357.466667pt;}
.y10b{bottom:357.946667pt;}
.y2d{bottom:359.546667pt;}
.yad{bottom:361.146667pt;}
.yc9{bottom:361.466667pt;}
.y8b{bottom:371.546667pt;}
.y5b{bottom:373.946667pt;}
.yf3{bottom:375.866667pt;}
.y10a{bottom:376.346667pt;}
.y2c{bottom:377.946667pt;}
.yac{bottom:379.546667pt;}
.yc8{bottom:379.866667pt;}
.y8a{bottom:389.986667pt;}
.y5a{bottom:392.386667pt;}
.yf2{bottom:394.306667pt;}
.y109{bottom:394.786667pt;}
.y2b{bottom:396.386667pt;}
.yab{bottom:397.986667pt;}
.yc7{bottom:398.306667pt;}
.y89{bottom:408.386667pt;}
.y59{bottom:410.786667pt;}
.yf1{bottom:412.706667pt;}
.y108{bottom:413.186667pt;}
.y2a{bottom:414.786667pt;}
.yaa{bottom:416.386667pt;}
.yc6{bottom:416.706667pt;}
.y12c{bottom:422.786667pt;}
.y88{bottom:426.786667pt;}
.y58{bottom:429.186667pt;}
.yf0{bottom:431.106667pt;}
.y29{bottom:433.186667pt;}
.ya9{bottom:434.786667pt;}
.yc5{bottom:435.106667pt;}
.y107{bottom:439.586667pt;}
.y87{bottom:445.186667pt;}
.y57{bottom:447.586667pt;}
.y12b{bottom:449.186667pt;}
.yef{bottom:449.506667pt;}
.y28{bottom:451.586667pt;}
.ya8{bottom:453.186667pt;}
.yc4{bottom:461.506667pt;}
.y86{bottom:463.586667pt;}
.y56{bottom:465.986667pt;}
.yee{bottom:467.906667pt;}
.y27{bottom:469.986667pt;}
.ya7{bottom:471.586667pt;}
.y12a{bottom:475.586667pt;}
.y85{bottom:481.986667pt;}
.yc3{bottom:484.386667pt;}
.yed{bottom:486.306667pt;}
.ya6{bottom:489.986667pt;}
.y55{bottom:492.386667pt;}
.y26{bottom:496.386667pt;}
.y84{bottom:500.386667pt;}
.y129{bottom:501.986667pt;}
.yec{bottom:504.706667pt;}
.ya5{bottom:508.386667pt;}
.y54{bottom:510.786667pt;}
.yda{bottom:518.786667pt;}
.y128{bottom:520.386667pt;}
.y25{bottom:522.786667pt;}
.yeb{bottom:523.106667pt;}
.y83{bottom:526.786667pt;}
.y53{bottom:529.186667pt;}
.ye0{bottom:534.786667pt;}
.yd9{bottom:537.186667pt;}
.y82{bottom:545.186667pt;}
.y127{bottom:546.786667pt;}
.y52{bottom:547.586667pt;}
.ye{bottom:548.866667pt;}
.y24{bottom:549.186667pt;}
.yea{bottom:549.506667pt;}
.ydf{bottom:553.186667pt;}
.yd8{bottom:555.586667pt;}
.y81{bottom:563.586667pt;}
.y126{bottom:565.186667pt;}
.y51{bottom:565.986667pt;}
.yde{bottom:571.586667pt;}
.yd7{bottom:573.986667pt;}
.y23{bottom:575.586667pt;}
.ye9{bottom:575.906667pt;}
.y80{bottom:581.986667pt;}
.y50{bottom:584.386667pt;}
.ydd{bottom:589.986667pt;}
.y125{bottom:591.586667pt;}
.y73{bottom:592.386667pt;}
.y22{bottom:593.986667pt;}
.y7f{bottom:600.413333pt;}
.ye8{bottom:602.333333pt;}
.y4f{bottom:602.813333pt;}
.ya4{bottom:608.413333pt;}
.y72{bottom:610.813333pt;}
.y21{bottom:612.413333pt;}
.y124{bottom:618.013333pt;}
.y7e{bottom:618.813333pt;}
.y4e{bottom:621.213333pt;}
.ye7{bottom:625.213333pt;}
.ya3{bottom:626.813333pt;}
.y71{bottom:629.213333pt;}
.y20{bottom:630.813333pt;}
.y123{bottom:636.413333pt;}
.y7d{bottom:637.213333pt;}
.y4d{bottom:639.613333pt;}
.ya2{bottom:645.213333pt;}
.y70{bottom:647.613333pt;}
.y1f{bottom:649.213333pt;}
.y7c{bottom:655.613333pt;}
.y122{bottom:662.813333pt;}
.ya1{bottom:663.613333pt;}
.y4c{bottom:666.013333pt;}
.y1e{bottom:667.613333pt;}
.y7b{bottom:674.013333pt;}
.y121{bottom:681.213333pt;}
.ya0{bottom:682.013333pt;}
.y4b{bottom:684.413333pt;}
.y1d{bottom:686.013333pt;}
.y6f{bottom:692.413333pt;}
.y9f{bottom:700.413333pt;}
.y4a{bottom:702.813333pt;}
.y120{bottom:707.613333pt;}
.y6e{bottom:710.813333pt;}
.y1c{bottom:712.413333pt;}
.y9e{bottom:718.813333pt;}
.y49{bottom:721.213333pt;}
.y11f{bottom:726.013333pt;}
.y6d{bottom:729.213333pt;}
.y9d{bottom:737.213333pt;}
.y1b{bottom:738.813333pt;}
.y48{bottom:739.613333pt;}
.y6c{bottom:747.613333pt;}
.y11e{bottom:752.413333pt;}
.y9c{bottom:755.613333pt;}
.y47{bottom:758.013333pt;}
.y1a{bottom:765.213333pt;}
.y6b{bottom:766.013333pt;}
.y11d{bottom:770.813333pt;}
.y9b{bottom:774.013333pt;}
.y46{bottom:776.413333pt;}
.y19{bottom:783.613333pt;}
.y6a{bottom:784.413333pt;}
.y11c{bottom:789.213333pt;}
.y9a{bottom:792.413333pt;}
.y45{bottom:802.813333pt;}
.y18{bottom:810.013333pt;}
.y99{bottom:810.813333pt;}
.y11b{bottom:815.653333pt;}
.y44{bottom:821.253333pt;}
.y7a{bottom:829.253333pt;}
.y11a{bottom:834.053333pt;}
.y17{bottom:836.453333pt;}
.y43{bottom:839.653333pt;}
.y69{bottom:847.653333pt;}
.yc2{bottom:858.053333pt;}
.y119{bottom:860.453333pt;}
.y16{bottom:862.853333pt;}
.y42{bottom:866.053333pt;}
.yc1{bottom:876.453333pt;}
.y118{bottom:878.853333pt;}
.y15{bottom:881.253333pt;}
.y41{bottom:884.453333pt;}
.yc0{bottom:894.853333pt;}
.y40{bottom:902.853333pt;}
.y117{bottom:905.253333pt;}
.y14{bottom:907.653333pt;}
.ybf{bottom:913.253333pt;}
.y3f{bottom:921.253333pt;}
.y116{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.ybe{bottom:931.653333pt;}
.y3e{bottom:939.653333pt;}
.ybd{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y3d{bottom:958.053333pt;}
.ybc{bottom:968.453333pt;}
.y3c{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.ybb{bottom:986.853333pt;}
.y3b{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y3a{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.h9{height:44.327188pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.880000pt;}
.w8{width:75.546667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.x10{left:97.311988pt;}
.xe{left:100.671988pt;}
.x14{left:111.871988pt;}
.x2{left:143.240000pt;}
.x1{left:188.826667pt;}
.x15{left:194.426655pt;}
.x11{left:287.746655pt;}
.x13{left:305.666655pt;}
.xf{left:329.506655pt;}
.x8{left:373.666667pt;}
.x12{left:396.866655pt;}
.x17{left:508.573322pt;}
.x16{left:538.493322pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.x18{left:699.333322pt;}
.xc{left:718.213333pt;}
}




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