
    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_8e3e1753b497d17670aa7017.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_785b92c92ea7e0d7fab2e0ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_5c4a1c9ab40b2c8b0ff1df3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_ab55b29ae9786e286764bb3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_d16e95455ad29109013f520b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_19ffdfea33612378e5b14821.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_d07ad4073c990fd6a396e05b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.494000px;}
.ls14{letter-spacing:-1.332000px;}
.ls13{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-1.182000px;}
.ls15{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.924000px;}
.lsb{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.480000px;}
.ls17{letter-spacing:23.706720px;}
.lsc{letter-spacing:46.746720px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.166000px;}
.wsb{word-spacing:-14.016000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._27{margin-left:-6.209280px;}
._1e{margin-left:-4.973520px;}
._13{margin-left:-3.874080px;}
._12{margin-left:-2.811360px;}
._0{margin-left:-1.080000px;}
._11{width:1.197840px;}
._1{width:2.220000px;}
._14{width:3.944160px;}
._15{width:5.017200px;}
._16{width:6.100800px;}
._17{width:7.350480px;}
._1c{width:8.370720px;}
._1b{width:9.483840px;}
._6{width:10.800000px;}
._1d{width:12.011760px;}
._23{width:13.219920px;}
._18{width:17.028960px;}
._f{width:18.948000px;}
._24{width:20.670960px;}
._1f{width:21.768000px;}
._1a{width:23.363520px;}
._19{width:24.726720px;}
._21{width:28.748880px;}
._22{width:29.939760px;}
._28{width:41.712480px;}
._20{width:43.210800px;}
._26{width:49.671120px;}
._25{width:50.796000px;}
._7{width:76.284960px;}
._10{width:132.780000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y83{bottom:5.760000px;}
.y88{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y81{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.y8c{bottom:19.980000px;}
.y8f{bottom:25.560000px;}
.y82{bottom:25.740000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.yb{bottom:60.300000px;}
.y4{bottom:68.400000px;}
.yd{bottom:77.940000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y87{bottom:104.220000px;}
.yb6{bottom:106.920000px;}
.yba{bottom:112.320000px;}
.yb7{bottom:114.480000px;}
.y3a{bottom:116.460000px;}
.y86{bottom:124.920000px;}
.y2{bottom:125.670000px;}
.yb5{bottom:126.900000px;}
.yb9{bottom:132.120000px;}
.y68{bottom:134.460000px;}
.y39{bottom:136.260000px;}
.y85{bottom:145.440000px;}
.yb4{bottom:146.700000px;}
.yb8{bottom:151.950000px;}
.y67{bottom:154.290000px;}
.y38{bottom:156.090000px;}
.y84{bottom:166.170000px;}
.yb3{bottom:166.530000px;}
.y66{bottom:174.090000px;}
.y37{bottom:175.890000px;}
.yb2{bottom:186.330000px;}
.y80{bottom:188.130000px;}
.y65{bottom:193.890000px;}
.y36{bottom:195.690000px;}
.yb1{bottom:206.130000px;}
.y64{bottom:213.690000px;}
.y35{bottom:215.670000px;}
.yb0{bottom:226.110000px;}
.y63{bottom:233.670000px;}
.y34{bottom:235.470000px;}
.y7f{bottom:235.830000px;}
.yaf{bottom:245.910000px;}
.y62{bottom:253.470000px;}
.y33{bottom:255.270000px;}
.y7e{bottom:255.810000px;}
.yae{bottom:265.710000px;}
.y61{bottom:273.270000px;}
.y32{bottom:275.070000px;}
.y7d{bottom:275.610000px;}
.yad{bottom:285.510000px;}
.y60{bottom:293.070000px;}
.y31{bottom:294.870000px;}
.y7c{bottom:295.410000px;}
.yac{bottom:305.310000px;}
.y5f{bottom:312.870000px;}
.y30{bottom:314.850000px;}
.y7b{bottom:315.210000px;}
.yab{bottom:325.290000px;}
.y5e{bottom:332.850000px;}
.y2f{bottom:334.650000px;}
.y7a{bottom:335.010000px;}
.yaa{bottom:345.090000px;}
.y5d{bottom:352.650000px;}
.y2e{bottom:354.450000px;}
.y79{bottom:354.990000px;}
.ya9{bottom:364.890000px;}
.y5c{bottom:372.450000px;}
.y2d{bottom:374.250000px;}
.y78{bottom:374.790000px;}
.ya8{bottom:384.690000px;}
.y5b{bottom:392.250000px;}
.y2c{bottom:394.050000px;}
.y77{bottom:394.590000px;}
.ya7{bottom:404.535000px;}
.y5a{bottom:412.095000px;}
.y2b{bottom:414.075000px;}
.y76{bottom:414.435000px;}
.ya6{bottom:424.515000px;}
.y59{bottom:432.075000px;}
.y2a{bottom:433.875000px;}
.y75{bottom:434.235000px;}
.ya5{bottom:444.315000px;}
.y58{bottom:451.875000px;}
.y29{bottom:453.675000px;}
.y74{bottom:454.215000px;}
.ya4{bottom:464.115000px;}
.y57{bottom:471.675000px;}
.y28{bottom:473.475000px;}
.y73{bottom:474.015000px;}
.ya3{bottom:483.915000px;}
.y56{bottom:491.475000px;}
.y27{bottom:493.275000px;}
.y72{bottom:493.815000px;}
.ya2{bottom:503.715000px;}
.y55{bottom:511.275000px;}
.y26{bottom:513.255000px;}
.y71{bottom:513.615000px;}
.ya1{bottom:523.695000px;}
.y54{bottom:531.255000px;}
.y25{bottom:533.055000px;}
.y70{bottom:533.415000px;}
.ya0{bottom:543.495000px;}
.y53{bottom:551.055000px;}
.y24{bottom:552.855000px;}
.y6f{bottom:553.395000px;}
.y9f{bottom:563.295000px;}
.y52{bottom:570.855000px;}
.y23{bottom:572.655000px;}
.y6e{bottom:573.195000px;}
.y9e{bottom:580.575000px;}
.y51{bottom:590.655000px;}
.y22{bottom:592.455000px;}
.y6d{bottom:592.995000px;}
.y9d{bottom:600.375000px;}
.y50{bottom:610.455000px;}
.y21{bottom:612.435000px;}
.y6c{bottom:612.795000px;}
.y9c{bottom:620.175000px;}
.y4f{bottom:630.435000px;}
.y20{bottom:632.235000px;}
.y6b{bottom:632.595000px;}
.y9b{bottom:637.455000px;}
.y4e{bottom:650.265000px;}
.y1f{bottom:652.065000px;}
.y9a{bottom:652.245000px;}
.y6a{bottom:652.605000px;}
.y69{bottom:669.165000px;}
.y4d{bottom:670.065000px;}
.y1e{bottom:671.865000px;}
.y99{bottom:672.765000px;}
.y4c{bottom:689.865000px;}
.y1d{bottom:691.665000px;}
.y98{bottom:693.465000px;}
.y4b{bottom:709.665000px;}
.y1c{bottom:711.645000px;}
.y4a{bottom:729.645000px;}
.y1b{bottom:731.445000px;}
.y97{bottom:733.785000px;}
.y49{bottom:749.445000px;}
.y1a{bottom:751.245000px;}
.y96{bottom:754.485000px;}
.y48{bottom:769.245000px;}
.y19{bottom:771.045000px;}
.y95{bottom:775.005000px;}
.y47{bottom:789.045000px;}
.y18{bottom:790.845000px;}
.y94{bottom:795.705000px;}
.y46{bottom:808.845000px;}
.y17{bottom:810.825000px;}
.y45{bottom:828.825000px;}
.y16{bottom:830.625000px;}
.y93{bottom:836.025000px;}
.y44{bottom:848.625000px;}
.y15{bottom:850.425000px;}
.y92{bottom:856.545000px;}
.y43{bottom:868.425000px;}
.y14{bottom:875.445000px;}
.y91{bottom:877.245000px;}
.y42{bottom:888.225000px;}
.y13{bottom:890.565000px;}
.y90{bottom:897.810000px;}
.y41{bottom:908.070000px;}
.y12{bottom:912.570000px;}
.y8e{bottom:918.510000px;}
.y40{bottom:928.050000px;}
.y11{bottom:937.410000px;}
.y3f{bottom:947.850000px;}
.y8d{bottom:958.830000px;}
.y3e{bottom:967.650000px;}
.y10{bottom:969.090000px;}
.y8b{bottom:979.350000px;}
.y3d{bottom:987.450000px;}
.y8a{bottom:1000.050000px;}
.yf{bottom:1000.950000px;}
.y3c{bottom:1007.250000px;}
.y89{bottom:1020.570000px;}
.y3b{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.521406px;}
.h11{height:19.800000px;}
.h12{height:19.836000px;}
.h13{height:19.980000px;}
.hb{height:21.780000px;}
.h8{height:33.480000px;}
.he{height:34.038984px;}
.h14{height:39.600000px;}
.h10{height:39.780000px;}
.hf{height:42.164648px;}
.h4{height:46.736719px;}
.h15{height:48.496641px;}
.h5{height:52.319180px;}
.hd{height:53.224453px;}
.ha{height:57.992344px;}
.h3{height:63.500977px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w6{width:36.936000px;}
.wc{width:100.296000px;}
.wa{width:107.640000px;}
.w9{width:108.756000px;}
.wb{width:118.836000px;}
.w3{width:130.716000px;}
.w8{width:148.896000px;}
.w7{width:149.580000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.020000px;}
.x2{left:8.100000px;}
.x1a{left:11.340000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x12{left:59.940000px;}
.xd{left:75.599987px;}
.x8{left:81.899987px;}
.x1b{left:96.515987px;}
.x13{left:99.216000px;}
.x7{left:102.995987px;}
.xe{left:108.035987px;}
.x4{left:118.290000px;}
.xc{left:186.329987px;}
.xb{left:216.209987px;}
.x10{left:226.649987px;}
.x15{left:248.790000px;}
.x11{left:327.134987px;}
.x16{left:397.695000px;}
.x9{left:404.534987px;}
.xa{left:446.504987px;}
.x17{left:506.445000px;}
.x18{left:614.085000px;}
.xf{left:661.469987px;}
.x3{left:705.930000px;}
.x19{left:732.930000px;}
.x6{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.328000pt;}
.ls14{letter-spacing:-1.184000pt;}
.ls13{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-1.050667pt;}
.ls15{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.821333pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls17{letter-spacing:21.072640pt;}
.lsc{letter-spacing:41.552640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.592000pt;}
.wsb{word-spacing:-12.458667pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._27{margin-left:-5.519360pt;}
._1e{margin-left:-4.420907pt;}
._13{margin-left:-3.443627pt;}
._12{margin-left:-2.498987pt;}
._0{margin-left:-0.960000pt;}
._11{width:1.064747pt;}
._1{width:1.973333pt;}
._14{width:3.505920pt;}
._15{width:4.459733pt;}
._16{width:5.422933pt;}
._17{width:6.533760pt;}
._1c{width:7.440640pt;}
._1b{width:8.430080pt;}
._6{width:9.600000pt;}
._1d{width:10.677120pt;}
._23{width:11.751040pt;}
._18{width:15.136853pt;}
._f{width:16.842667pt;}
._24{width:18.374187pt;}
._1f{width:19.349333pt;}
._1a{width:20.767573pt;}
._19{width:21.979307pt;}
._21{width:25.554560pt;}
._22{width:26.613120pt;}
._28{width:37.077760pt;}
._20{width:38.409600pt;}
._26{width:44.152107pt;}
._25{width:45.152000pt;}
._7{width:67.808853pt;}
._10{width:118.026667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:5.120000pt;}
.y88{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y81{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.y8c{bottom:17.760000pt;}
.y8f{bottom:22.720000pt;}
.y82{bottom:22.880000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:53.600000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.280000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y87{bottom:92.640000pt;}
.yb6{bottom:95.040000pt;}
.yba{bottom:99.840000pt;}
.yb7{bottom:101.760000pt;}
.y3a{bottom:103.520000pt;}
.y86{bottom:111.040000pt;}
.y2{bottom:111.706667pt;}
.yb5{bottom:112.800000pt;}
.yb9{bottom:117.440000pt;}
.y68{bottom:119.520000pt;}
.y39{bottom:121.120000pt;}
.y85{bottom:129.280000pt;}
.yb4{bottom:130.400000pt;}
.yb8{bottom:135.066667pt;}
.y67{bottom:137.146667pt;}
.y38{bottom:138.746667pt;}
.y84{bottom:147.706667pt;}
.yb3{bottom:148.026667pt;}
.y66{bottom:154.746667pt;}
.y37{bottom:156.346667pt;}
.yb2{bottom:165.626667pt;}
.y80{bottom:167.226667pt;}
.y65{bottom:172.346667pt;}
.y36{bottom:173.946667pt;}
.yb1{bottom:183.226667pt;}
.y64{bottom:189.946667pt;}
.y35{bottom:191.706667pt;}
.yb0{bottom:200.986667pt;}
.y63{bottom:207.706667pt;}
.y34{bottom:209.306667pt;}
.y7f{bottom:209.626667pt;}
.yaf{bottom:218.586667pt;}
.y62{bottom:225.306667pt;}
.y33{bottom:226.906667pt;}
.y7e{bottom:227.386667pt;}
.yae{bottom:236.186667pt;}
.y61{bottom:242.906667pt;}
.y32{bottom:244.506667pt;}
.y7d{bottom:244.986667pt;}
.yad{bottom:253.786667pt;}
.y60{bottom:260.506667pt;}
.y31{bottom:262.106667pt;}
.y7c{bottom:262.586667pt;}
.yac{bottom:271.386667pt;}
.y5f{bottom:278.106667pt;}
.y30{bottom:279.866667pt;}
.y7b{bottom:280.186667pt;}
.yab{bottom:289.146667pt;}
.y5e{bottom:295.866667pt;}
.y2f{bottom:297.466667pt;}
.y7a{bottom:297.786667pt;}
.yaa{bottom:306.746667pt;}
.y5d{bottom:313.466667pt;}
.y2e{bottom:315.066667pt;}
.y79{bottom:315.546667pt;}
.ya9{bottom:324.346667pt;}
.y5c{bottom:331.066667pt;}
.y2d{bottom:332.666667pt;}
.y78{bottom:333.146667pt;}
.ya8{bottom:341.946667pt;}
.y5b{bottom:348.666667pt;}
.y2c{bottom:350.266667pt;}
.y77{bottom:350.746667pt;}
.ya7{bottom:359.586667pt;}
.y5a{bottom:366.306667pt;}
.y2b{bottom:368.066667pt;}
.y76{bottom:368.386667pt;}
.ya6{bottom:377.346667pt;}
.y59{bottom:384.066667pt;}
.y2a{bottom:385.666667pt;}
.y75{bottom:385.986667pt;}
.ya5{bottom:394.946667pt;}
.y58{bottom:401.666667pt;}
.y29{bottom:403.266667pt;}
.y74{bottom:403.746667pt;}
.ya4{bottom:412.546667pt;}
.y57{bottom:419.266667pt;}
.y28{bottom:420.866667pt;}
.y73{bottom:421.346667pt;}
.ya3{bottom:430.146667pt;}
.y56{bottom:436.866667pt;}
.y27{bottom:438.466667pt;}
.y72{bottom:438.946667pt;}
.ya2{bottom:447.746667pt;}
.y55{bottom:454.466667pt;}
.y26{bottom:456.226667pt;}
.y71{bottom:456.546667pt;}
.ya1{bottom:465.506667pt;}
.y54{bottom:472.226667pt;}
.y25{bottom:473.826667pt;}
.y70{bottom:474.146667pt;}
.ya0{bottom:483.106667pt;}
.y53{bottom:489.826667pt;}
.y24{bottom:491.426667pt;}
.y6f{bottom:491.906667pt;}
.y9f{bottom:500.706667pt;}
.y52{bottom:507.426667pt;}
.y23{bottom:509.026667pt;}
.y6e{bottom:509.506667pt;}
.y9e{bottom:516.066667pt;}
.y51{bottom:525.026667pt;}
.y22{bottom:526.626667pt;}
.y6d{bottom:527.106667pt;}
.y9d{bottom:533.666667pt;}
.y50{bottom:542.626667pt;}
.y21{bottom:544.386667pt;}
.y6c{bottom:544.706667pt;}
.y9c{bottom:551.266667pt;}
.y4f{bottom:560.386667pt;}
.y20{bottom:561.986667pt;}
.y6b{bottom:562.306667pt;}
.y9b{bottom:566.626667pt;}
.y4e{bottom:578.013333pt;}
.y1f{bottom:579.613333pt;}
.y9a{bottom:579.773333pt;}
.y6a{bottom:580.093333pt;}
.y69{bottom:594.813333pt;}
.y4d{bottom:595.613333pt;}
.y1e{bottom:597.213333pt;}
.y99{bottom:598.013333pt;}
.y4c{bottom:613.213333pt;}
.y1d{bottom:614.813333pt;}
.y98{bottom:616.413333pt;}
.y4b{bottom:630.813333pt;}
.y1c{bottom:632.573333pt;}
.y4a{bottom:648.573333pt;}
.y1b{bottom:650.173333pt;}
.y97{bottom:652.253333pt;}
.y49{bottom:666.173333pt;}
.y1a{bottom:667.773333pt;}
.y96{bottom:670.653333pt;}
.y48{bottom:683.773333pt;}
.y19{bottom:685.373333pt;}
.y95{bottom:688.893333pt;}
.y47{bottom:701.373333pt;}
.y18{bottom:702.973333pt;}
.y94{bottom:707.293333pt;}
.y46{bottom:718.973333pt;}
.y17{bottom:720.733333pt;}
.y45{bottom:736.733333pt;}
.y16{bottom:738.333333pt;}
.y93{bottom:743.133333pt;}
.y44{bottom:754.333333pt;}
.y15{bottom:755.933333pt;}
.y92{bottom:761.373333pt;}
.y43{bottom:771.933333pt;}
.y14{bottom:778.173333pt;}
.y91{bottom:779.773333pt;}
.y42{bottom:789.533333pt;}
.y13{bottom:791.613333pt;}
.y90{bottom:798.053333pt;}
.y41{bottom:807.173333pt;}
.y12{bottom:811.173333pt;}
.y8e{bottom:816.453333pt;}
.y40{bottom:824.933333pt;}
.y11{bottom:833.253333pt;}
.y3f{bottom:842.533333pt;}
.y8d{bottom:852.293333pt;}
.y3e{bottom:860.133333pt;}
.y10{bottom:861.413333pt;}
.y8b{bottom:870.533333pt;}
.y3d{bottom:877.733333pt;}
.y8a{bottom:888.933333pt;}
.yf{bottom:889.733333pt;}
.y3c{bottom:895.333333pt;}
.y89{bottom:907.173333pt;}
.y3b{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.241250pt;}
.h11{height:17.600000pt;}
.h12{height:17.632000pt;}
.h13{height:17.760000pt;}
.hb{height:19.360000pt;}
.h8{height:29.760000pt;}
.he{height:30.256875pt;}
.h14{height:35.200000pt;}
.h10{height:35.360000pt;}
.hf{height:37.479688pt;}
.h4{height:41.543750pt;}
.h15{height:43.108125pt;}
.h5{height:46.505938pt;}
.hd{height:47.310625pt;}
.ha{height:51.548750pt;}
.h3{height:56.445312pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w6{width:32.832000pt;}
.wc{width:89.152000pt;}
.wa{width:95.680000pt;}
.w9{width:96.672000pt;}
.wb{width:105.632000pt;}
.w3{width:116.192000pt;}
.w8{width:132.352000pt;}
.w7{width:132.960000pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.240000pt;}
.x2{left:7.200000pt;}
.x1a{left:10.080000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x12{left:53.280000pt;}
.xd{left:67.199988pt;}
.x8{left:72.799988pt;}
.x1b{left:85.791988pt;}
.x13{left:88.192000pt;}
.x7{left:91.551988pt;}
.xe{left:96.031988pt;}
.x4{left:105.146667pt;}
.xc{left:165.626655pt;}
.xb{left:192.186655pt;}
.x10{left:201.466655pt;}
.x15{left:221.146667pt;}
.x11{left:290.786655pt;}
.x16{left:353.506667pt;}
.x9{left:359.586655pt;}
.xa{left:396.893322pt;}
.x17{left:450.173333pt;}
.x18{left:545.853333pt;}
.xf{left:587.973322pt;}
.x3{left:627.493333pt;}
.x19{left:651.493333pt;}
.x6{left:737.280000pt;}
}




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