
    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_3928e1f637b02137f9573d7d.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_c0c31022b5129fe780f7308c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_68eb02abd0c9c27c67b18f6e.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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_3b448026d7fcbe3b3eb77936.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2ebb8798d190e79e7032b233.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a492c6781370798ce7486afb.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_22ce1394e153a975305ef76b.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.444600px;}
.ls10{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.178800px;}
.ls1b{letter-spacing:-0.158400px;}
.ls6{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls19{letter-spacing:-0.094800px;}
.ls5{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.008400px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.051840px;}
.lsa{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.065400px;}
.ls2{letter-spacing:0.065520px;}
.ls1{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.116400px;}
.ls4{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.178800px;}
.ls16{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls0{letter-spacing:13.347360px;}
.ls17{letter-spacing:14.853600px;}
.ls18{letter-spacing:47.726640px;}
.ls14{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;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.275360px;}
.wsc{word-spacing:-13.271760px;}
.ws2{word-spacing:-13.226400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-8.732400px;}
.ws3{word-spacing:-8.614200px;}
.wsd{word-spacing:-8.458800px;}
.wsf{word-spacing:-8.395200px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._e{margin-left:-10.111320px;}
._9{margin-left:-3.243003px;}
._7{margin-left:-2.128200px;}
._0{margin-left:-1.014000px;}
._2{width:1.237404px;}
._6{width:2.337124px;}
._3{width:4.088400px;}
._4{width:5.374674px;}
._8{width:6.625453px;}
._a{width:8.056200px;}
._1b{width:9.679320px;}
._5{width:14.849400px;}
._1{width:16.859964px;}
._14{width:20.981880px;}
._12{width:25.009920px;}
._13{width:26.055960px;}
._f{width:27.294480px;}
._15{width:28.530360px;}
._16{width:29.786040px;}
._11{width:31.743360px;}
._10{width:44.188200px;}
._19{width:49.118040px;}
._1a{width:73.827360px;}
._17{width:81.282240px;}
._18{width:82.424520px;}
._b{width:90.504360px;}
._d{width:146.787840px;}
._c{width:178.411320px;}
.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;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:4.500000px;}
.y65{bottom:7.830000px;}
.y5a{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y71{bottom:118.470000px;}
.y4c{bottom:128.370000px;}
.y87{bottom:134.580000px;}
.y96{bottom:143.490000px;}
.y70{bottom:145.830000px;}
.y4b{bottom:146.010000px;}
.yb2{bottom:153.840000px;}
.y88{bottom:154.200000px;}
.y8e{bottom:156.600000px;}
.y86{bottom:156.630000px;}
.y27{bottom:160.050000px;}
.y7f{bottom:165.600000px;}
.y95{bottom:165.630000px;}
.yb1{bottom:171.480000px;}
.y6f{bottom:173.100000px;}
.y85{bottom:174.270000px;}
.y26{bottom:177.600000px;}
.y8d{bottom:178.650000px;}
.y4a{bottom:181.560000px;}
.y7e{bottom:183.150000px;}
.y94{bottom:183.180000px;}
.yb0{bottom:189.030000px;}
.y25{bottom:195.240000px;}
.y84{bottom:196.320000px;}
.y49{bottom:199.200000px;}
.y6e{bottom:200.460000px;}
.y8c{bottom:200.790000px;}
.y7d{bottom:205.200000px;}
.y93{bottom:205.230000px;}
.y83{bottom:213.960000px;}
.yaf{bottom:215.670000px;}
.y8b{bottom:218.340000px;}
.y7c{bottom:222.840000px;}
.y92{bottom:222.870000px;}
.y48{bottom:225.750000px;}
.y6d{bottom:227.820000px;}
.y24{bottom:230.790000px;}
.y82{bottom:231.510000px;}
.yae{bottom:233.220000px;}
.y8a{bottom:235.980000px;}
.y7b{bottom:240.390000px;}
.y91{bottom:240.420000px;}
.y23{bottom:248.340000px;}
.y81{bottom:249.060000px;}
.y89{bottom:253.530000px;}
.y6c{bottom:255.090000px;}
.y79{bottom:258.030000px;}
.y90{bottom:258.060000px;}
.yad{bottom:259.770000px;}
.y47{bottom:261.300000px;}
.y22{bottom:265.980000px;}
.y46{bottom:278.940000px;}
.y6b{bottom:282.450000px;}
.y21{bottom:283.530000px;}
.yac{bottom:286.680000px;}
.y45{bottom:296.490000px;}
.y6a{bottom:309.810000px;}
.y20{bottom:310.440000px;}
.y44{bottom:314.130000px;}
.y43{bottom:331.680000px;}
.yab{bottom:335.010000px;}
.y69{bottom:337.170000px;}
.y1f{bottom:359.040000px;}
.yaa{bottom:361.920000px;}
.y42{bottom:367.230000px;}
.y68{bottom:385.860000px;}
.y1e{bottom:396.120000px;}
.ya9{bottom:398.910000px;}
.y41{bottom:399.450000px;}
.y67{bottom:412.770000px;}
.y1d{bottom:413.670000px;}
.ya8{bottom:425.820000px;}
.y80{bottom:427.170000px;}
.y1c{bottom:431.220000px;}
.y1b{bottom:448.860000px;}
.y66{bottom:458.400000px;}
.ya7{bottom:462.810000px;}
.y1a{bottom:466.410000px;}
.ya6{bottom:480.480000px;}
.y19{bottom:484.080000px;}
.y64{bottom:485.790000px;}
.ya5{bottom:498.030000px;}
.y18{bottom:501.630000px;}
.y63{bottom:513.060000px;}
.y17{bottom:519.180000px;}
.ya4{bottom:524.940000px;}
.y16{bottom:536.820000px;}
.y62{bottom:540.420000px;}
.y15{bottom:554.370000px;}
.ya3{bottom:562.290000px;}
.y14{bottom:571.920000px;}
.y61{bottom:589.110000px;}
.y13{bottom:589.560000px;}
.y12{bottom:607.110000px;}
.ya2{bottom:610.530000px;}
.y11{bottom:624.750000px;}
.ya1{bottom:628.170000px;}
.yc4{bottom:628.620000px;}
.y40{bottom:632.400000px;}
.y10{bottom:642.300000px;}
.ya0{bottom:645.720000px;}
.yc3{bottom:646.260000px;}
.y3f{bottom:649.950000px;}
.yf{bottom:659.850000px;}
.y9f{bottom:663.360000px;}
.yc2{bottom:663.810000px;}
.y3e{bottom:667.590000px;}
.ye{bottom:677.490000px;}
.y60{bottom:677.940000px;}
.y9e{bottom:680.910000px;}
.y3d{bottom:685.140000px;}
.yc1{bottom:690.360000px;}
.yd{bottom:695.040000px;}
.y5f{bottom:695.490000px;}
.y78{bottom:695.760000px;}
.y9d{bottom:698.460000px;}
.yc0{bottom:708.000000px;}
.y3c{bottom:711.690000px;}
.yc{bottom:712.680000px;}
.y5e{bottom:713.040000px;}
.ybf{bottom:725.550000px;}
.y5d{bottom:730.680000px;}
.y9c{bottom:734.100000px;}
.yb{bottom:739.590000px;}
.ybe{bottom:743.190000px;}
.y3b{bottom:747.330000px;}
.y5c{bottom:748.230000px;}
.y9b{bottom:751.650000px;}
.y3a{bottom:764.880000px;}
.y9a{bottom:769.290000px;}
.ybd{bottom:769.740000px;}
.y5b{bottom:781.170000px;}
.y39{bottom:782.520000px;}
.y99{bottom:786.840000px;}
.ybc{bottom:787.290000px;}
.ya{bottom:787.830000px;}
.y38{bottom:800.070000px;}
.y98{bottom:804.390000px;}
.ybb{bottom:804.930000px;}
.y59{bottom:808.530000px;}
.y9{bottom:823.380000px;}
.y37{bottom:826.620000px;}
.y97{bottom:831.300000px;}
.yba{bottom:831.480000px;}
.yb9{bottom:849.030000px;}
.y58{bottom:857.220000px;}
.y8{bottom:859.200000px;}
.y36{bottom:862.530000px;}
.yb8{bottom:866.670000px;}
.y8f{bottom:877.020000px;}
.y57{bottom:892.860000px;}
.yb7{bottom:893.220000px;}
.y7{bottom:898.980000px;}
.y56{bottom:910.410000px;}
.y35{bottom:910.860000px;}
.y6{bottom:916.980000px;}
.y55{bottom:927.960000px;}
.y34{bottom:928.410000px;}
.yb6{bottom:937.410000px;}
.y5{bottom:949.290000px;}
.yb5{bottom:954.960000px;}
.y54{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.y77{bottom:973.230000px;}
.y53{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y52{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.y51{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.y76{bottom:1021.950000px;}
.y2f{bottom:1034.370000px;}
.y50{bottom:1042.920000px;}
.yb4{bottom:1043.370000px;}
.y2e{bottom:1051.920000px;}
.y75{bottom:1057.500000px;}
.yb3{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.y74{bottom:1072.530000px;}
.y4f{bottom:1078.560000px;}
.y4e{bottom:1096.110000px;}
.y73{bottom:1099.890000px;}
.y2c{bottom:1105.110000px;}
.y4d{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y72{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hc{height:26.580000px;}
.ha{height:26.640000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h11{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:267.780000px;}
.hf{height:272.250000px;}
.hd{height:276.750000px;}
.h10{height:276.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:59.340000px;}
.wc{width:65.520000px;}
.w5{width:70.680000px;}
.w4{width:70.740000px;}
.w9{width:104.760000px;}
.wa{width:126.360000px;}
.w6{width:147.540000px;}
.w3{width:158.130000px;}
.w7{width:214.560000px;}
.w8{width:214.590000px;}
.we{width:310.950000px;}
.wd{width:377.790000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:104.760000px;}
.x17{left:111.239987px;}
.x12{left:135.000000px;}
.x2{left:192.719987px;}
.x6{left:224.580000px;}
.xd{left:253.020000px;}
.x5{left:298.739987px;}
.x10{left:353.370000px;}
.x14{left:361.020000px;}
.x15{left:365.520000px;}
.x16{left:370.020000px;}
.x8{left:383.430000px;}
.x9{left:454.980000px;}
.xe{left:468.390000px;}
.x11{left:480.540000px;}
.x13{left:513.510000px;}
.xa{left:526.470000px;}
.x4{left:565.889987px;}
.xb{left:597.930000px;}
.xf{left:683.700000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.395200pt;}
.ls10{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.158933pt;}
.ls1b{letter-spacing:-0.140800pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls19{letter-spacing:-0.084267pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.046080pt;}
.lsa{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.058133pt;}
.ls2{letter-spacing:0.058240pt;}
.ls1{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.103467pt;}
.ls4{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.158933pt;}
.ls16{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls0{letter-spacing:11.864320pt;}
.ls17{letter-spacing:13.203200pt;}
.ls18{letter-spacing:42.423680pt;}
.ls14{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.800320pt;}
.wsc{word-spacing:-11.797120pt;}
.ws2{word-spacing:-11.756800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-7.762133pt;}
.ws3{word-spacing:-7.657067pt;}
.wsd{word-spacing:-7.518933pt;}
.wsf{word-spacing:-7.462400pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._e{margin-left:-8.987840pt;}
._9{margin-left:-2.882669pt;}
._7{margin-left:-1.891733pt;}
._0{margin-left:-0.901333pt;}
._2{width:1.099915pt;}
._6{width:2.077443pt;}
._3{width:3.634134pt;}
._4{width:4.777488pt;}
._8{width:5.889291pt;}
._a{width:7.161067pt;}
._1b{width:8.603840pt;}
._5{width:13.199466pt;}
._1{width:14.986635pt;}
._14{width:18.650560pt;}
._12{width:22.231040pt;}
._13{width:23.160853pt;}
._f{width:24.261760pt;}
._15{width:25.360320pt;}
._16{width:26.476480pt;}
._11{width:28.216320pt;}
._10{width:39.278400pt;}
._19{width:43.660480pt;}
._1a{width:65.624320pt;}
._17{width:72.250880pt;}
._18{width:73.266240pt;}
._b{width:80.448320pt;}
._d{width:130.478080pt;}
._c{width:158.587840pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:4.000000pt;}
.y65{bottom:6.960000pt;}
.y5a{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y71{bottom:105.306667pt;}
.y4c{bottom:114.106667pt;}
.y87{bottom:119.626667pt;}
.y96{bottom:127.546667pt;}
.y70{bottom:129.626667pt;}
.y4b{bottom:129.786667pt;}
.yb2{bottom:136.746667pt;}
.y88{bottom:137.066667pt;}
.y8e{bottom:139.200000pt;}
.y86{bottom:139.226667pt;}
.y27{bottom:142.266667pt;}
.y7f{bottom:147.200000pt;}
.y95{bottom:147.226667pt;}
.yb1{bottom:152.426667pt;}
.y6f{bottom:153.866667pt;}
.y85{bottom:154.906667pt;}
.y26{bottom:157.866667pt;}
.y8d{bottom:158.800000pt;}
.y4a{bottom:161.386667pt;}
.y7e{bottom:162.800000pt;}
.y94{bottom:162.826667pt;}
.yb0{bottom:168.026667pt;}
.y25{bottom:173.546667pt;}
.y84{bottom:174.506667pt;}
.y49{bottom:177.066667pt;}
.y6e{bottom:178.186667pt;}
.y8c{bottom:178.480000pt;}
.y7d{bottom:182.400000pt;}
.y93{bottom:182.426667pt;}
.y83{bottom:190.186667pt;}
.yaf{bottom:191.706667pt;}
.y8b{bottom:194.080000pt;}
.y7c{bottom:198.080000pt;}
.y92{bottom:198.106667pt;}
.y48{bottom:200.666667pt;}
.y6d{bottom:202.506667pt;}
.y24{bottom:205.146667pt;}
.y82{bottom:205.786667pt;}
.yae{bottom:207.306667pt;}
.y8a{bottom:209.760000pt;}
.y7b{bottom:213.680000pt;}
.y91{bottom:213.706667pt;}
.y23{bottom:220.746667pt;}
.y81{bottom:221.386667pt;}
.y89{bottom:225.360000pt;}
.y6c{bottom:226.746667pt;}
.y79{bottom:229.360000pt;}
.y90{bottom:229.386667pt;}
.yad{bottom:230.906667pt;}
.y47{bottom:232.266667pt;}
.y22{bottom:236.426667pt;}
.y46{bottom:247.946667pt;}
.y6b{bottom:251.066667pt;}
.y21{bottom:252.026667pt;}
.yac{bottom:254.826667pt;}
.y45{bottom:263.546667pt;}
.y6a{bottom:275.386667pt;}
.y20{bottom:275.946667pt;}
.y44{bottom:279.226667pt;}
.y43{bottom:294.826667pt;}
.yab{bottom:297.786667pt;}
.y69{bottom:299.706667pt;}
.y1f{bottom:319.146667pt;}
.yaa{bottom:321.706667pt;}
.y42{bottom:326.426667pt;}
.y68{bottom:342.986667pt;}
.y1e{bottom:352.106667pt;}
.ya9{bottom:354.586667pt;}
.y41{bottom:355.066667pt;}
.y67{bottom:366.906667pt;}
.y1d{bottom:367.706667pt;}
.ya8{bottom:378.506667pt;}
.y80{bottom:379.706667pt;}
.y1c{bottom:383.306667pt;}
.y1b{bottom:398.986667pt;}
.y66{bottom:407.466667pt;}
.ya7{bottom:411.386667pt;}
.y1a{bottom:414.586667pt;}
.ya6{bottom:427.093333pt;}
.y19{bottom:430.293333pt;}
.y64{bottom:431.813333pt;}
.ya5{bottom:442.693333pt;}
.y18{bottom:445.893333pt;}
.y63{bottom:456.053333pt;}
.y17{bottom:461.493333pt;}
.ya4{bottom:466.613333pt;}
.y16{bottom:477.173333pt;}
.y62{bottom:480.373333pt;}
.y15{bottom:492.773333pt;}
.ya3{bottom:499.813333pt;}
.y14{bottom:508.373333pt;}
.y61{bottom:523.653333pt;}
.y13{bottom:524.053333pt;}
.y12{bottom:539.653333pt;}
.ya2{bottom:542.693333pt;}
.y11{bottom:555.333333pt;}
.ya1{bottom:558.373333pt;}
.yc4{bottom:558.773333pt;}
.y40{bottom:562.133333pt;}
.y10{bottom:570.933333pt;}
.ya0{bottom:573.973333pt;}
.yc3{bottom:574.453333pt;}
.y3f{bottom:577.733333pt;}
.yf{bottom:586.533333pt;}
.y9f{bottom:589.653333pt;}
.yc2{bottom:590.053333pt;}
.y3e{bottom:593.413333pt;}
.ye{bottom:602.213333pt;}
.y60{bottom:602.613333pt;}
.y9e{bottom:605.253333pt;}
.y3d{bottom:609.013333pt;}
.yc1{bottom:613.653333pt;}
.yd{bottom:617.813333pt;}
.y5f{bottom:618.213333pt;}
.y78{bottom:618.453333pt;}
.y9d{bottom:620.853333pt;}
.yc0{bottom:629.333333pt;}
.y3c{bottom:632.613333pt;}
.yc{bottom:633.493333pt;}
.y5e{bottom:633.813333pt;}
.ybf{bottom:644.933333pt;}
.y5d{bottom:649.493333pt;}
.y9c{bottom:652.533333pt;}
.yb{bottom:657.413333pt;}
.ybe{bottom:660.613333pt;}
.y3b{bottom:664.293333pt;}
.y5c{bottom:665.093333pt;}
.y9b{bottom:668.133333pt;}
.y3a{bottom:679.893333pt;}
.y9a{bottom:683.813333pt;}
.ybd{bottom:684.213333pt;}
.y5b{bottom:694.373333pt;}
.y39{bottom:695.573333pt;}
.y99{bottom:699.413333pt;}
.ybc{bottom:699.813333pt;}
.ya{bottom:700.293333pt;}
.y38{bottom:711.173333pt;}
.y98{bottom:715.013333pt;}
.ybb{bottom:715.493333pt;}
.y59{bottom:718.693333pt;}
.y9{bottom:731.893333pt;}
.y37{bottom:734.773333pt;}
.y97{bottom:738.933333pt;}
.yba{bottom:739.093333pt;}
.yb9{bottom:754.693333pt;}
.y58{bottom:761.973333pt;}
.y8{bottom:763.733333pt;}
.y36{bottom:766.693333pt;}
.yb8{bottom:770.373333pt;}
.y8f{bottom:779.573333pt;}
.y57{bottom:793.653333pt;}
.yb7{bottom:793.973333pt;}
.y7{bottom:799.093333pt;}
.y56{bottom:809.253333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:815.093333pt;}
.y55{bottom:824.853333pt;}
.y34{bottom:825.253333pt;}
.yb6{bottom:833.253333pt;}
.y5{bottom:843.813333pt;}
.yb5{bottom:848.853333pt;}
.y54{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.y77{bottom:865.093333pt;}
.y53{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y52{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.y51{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.y76{bottom:908.400000pt;}
.y2f{bottom:919.440000pt;}
.y50{bottom:927.040000pt;}
.yb4{bottom:927.440000pt;}
.y2e{bottom:935.040000pt;}
.y75{bottom:940.000000pt;}
.yb3{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.y74{bottom:953.360000pt;}
.y4f{bottom:958.720000pt;}
.y4e{bottom:974.320000pt;}
.y73{bottom:977.680000pt;}
.y2c{bottom:982.320000pt;}
.y4d{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y72{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hc{height:23.626667pt;}
.ha{height:23.680000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h11{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:238.026667pt;}
.hf{height:242.000000pt;}
.hd{height:246.000000pt;}
.h10{height:246.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:52.746667pt;}
.wc{width:58.240000pt;}
.w5{width:62.826667pt;}
.w4{width:62.880000pt;}
.w9{width:93.120000pt;}
.wa{width:112.320000pt;}
.w6{width:131.146667pt;}
.w3{width:140.560000pt;}
.w7{width:190.720000pt;}
.w8{width:190.746667pt;}
.we{width:276.400000pt;}
.wd{width:335.813333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:93.120000pt;}
.x17{left:98.879988pt;}
.x12{left:120.000000pt;}
.x2{left:171.306655pt;}
.x6{left:199.626667pt;}
.xd{left:224.906667pt;}
.x5{left:265.546655pt;}
.x10{left:314.106667pt;}
.x14{left:320.906667pt;}
.x15{left:324.906667pt;}
.x16{left:328.906667pt;}
.x8{left:340.826667pt;}
.x9{left:404.426667pt;}
.xe{left:416.346667pt;}
.x11{left:427.146667pt;}
.x13{left:456.453333pt;}
.xa{left:467.973333pt;}
.x4{left:503.013322pt;}
.xb{left:531.493333pt;}
.xf{left:607.733333pt;}
.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; }
  