
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fbb9312889f6872731a4d7dc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_009c8db657e5d410510650ed.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c6981defc50a83f68ee107af.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_579fa727a9b6b2e896bf0d3b.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_c30dfdf74b48edf706548780.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_3c7219641f5f654a6857f884.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.444600px;}
.ls19{letter-spacing:-0.426000px;}
.ls1a{letter-spacing:-0.420600px;}
.ls2b{letter-spacing:-0.371400px;}
.lsc{letter-spacing:-0.299400px;}
.ls17{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.178800px;}
.ls21{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls2d{letter-spacing:-0.096600px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls28{letter-spacing:-0.038880px;}
.ls29{letter-spacing:-0.037800px;}
.lsa{letter-spacing:-0.031800px;}
.ls27{letter-spacing:-0.014760px;}
.ls2a{letter-spacing:-0.011160px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.051840px;}
.ls4{letter-spacing:0.060480px;}
.ls15{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.064800px;}
.lse{letter-spacing:0.074160px;}
.lsd{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.092160px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.098400px;}
.ls1e{letter-spacing:0.115200px;}
.ls2c{letter-spacing:0.115800px;}
.ls6{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.181200px;}
.ls26{letter-spacing:0.213600px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:40.886640px;}
.ls24{letter-spacing:47.726640px;}
.ls14{letter-spacing:63.566640px;}
.ls1f{letter-spacing:73.286640px;}
.ls23{letter-spacing:80.846640px;}
.ls20{letter-spacing:83.006640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws19{word-spacing:-13.342200px;}
.ws12{word-spacing:-13.324800px;}
.ws6{word-spacing:-13.300800px;}
.ws18{word-spacing:-13.287000px;}
.wsf{word-spacing:-13.278240px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws16{word-spacing:-13.215240px;}
.ws13{word-spacing:-13.211640px;}
.ws15{word-spacing:-13.188600px;}
.ws14{word-spacing:-13.187520px;}
.ws1a{word-spacing:-13.129800px;}
.ws11{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.039800px;}
.ws17{word-spacing:-12.855000px;}
.wsd{word-spacing:-12.805800px;}
.wsc{word-spacing:-12.800400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-8.614200px;}
.ws5{word-spacing:-8.553600px;}
.ws10{word-spacing:-8.254200px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._15{margin-left:-3.666360px;}
._d{margin-left:-2.645280px;}
._0{margin-left:-1.110000px;}
._1{width:1.006812px;}
._2{width:2.018617px;}
._3{width:3.255553px;}
._9{width:4.310493px;}
._a{width:5.454980px;}
._b{width:6.661261px;}
._c{width:7.847978px;}
._f{width:8.920867px;}
._e{width:10.157160px;}
._5{width:11.783400px;}
._4{width:14.248200px;}
._10{width:18.877680px;}
._11{width:24.709320px;}
._14{width:25.815240px;}
._7{width:27.119039px;}
._6{width:28.136400px;}
._8{width:29.320799px;}
._13{width:44.007840px;}
._12{width:45.055320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:7.830000px;}
.y42{bottom:7.920000px;}
.y40{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y75{bottom:130.350000px;}
.yc6{bottom:133.320000px;}
.y9c{bottom:140.700000px;}
.y51{bottom:144.840000px;}
.y74{bottom:147.900000px;}
.yc5{bottom:150.870000px;}
.y9b{bottom:158.340000px;}
.yc4{bottom:177.510000px;}
.y50{bottom:180.480000px;}
.y24{bottom:181.560000px;}
.y73{bottom:184.350000px;}
.y9a{bottom:184.890000px;}
.yc3{bottom:195.060000px;}
.y23{bottom:199.200000px;}
.y99{bottom:202.440000px;}
.y72{bottom:210.900000px;}
.y4f{bottom:216.030000px;}
.yc2{bottom:221.610000px;}
.y98{bottom:229.080000px;}
.y4e{bottom:233.580000px;}
.y22{bottom:234.750000px;}
.yc1{bottom:239.250000px;}
.y71{bottom:246.540000px;}
.y97{bottom:246.630000px;}
.y4d{bottom:251.130000px;}
.y21{bottom:252.300000px;}
.yc0{bottom:256.800000px;}
.y70{bottom:264.090000px;}
.y4c{bottom:269.580000px;}
.y20{bottom:269.940000px;}
.y96{bottom:273.270000px;}
.y6f{bottom:281.640000px;}
.ybf{bottom:283.440000px;}
.y4b{bottom:287.130000px;}
.y1f{bottom:287.490000px;}
.y95{bottom:290.820000px;}
.y6e{bottom:300.090000px;}
.ybe{bottom:300.990000px;}
.y1e{bottom:305.130000px;}
.y4a{bottom:305.580000px;}
.y94{bottom:317.370000px;}
.y6d{bottom:317.730000px;}
.y49{bottom:323.130000px;}
.ybd{bottom:327.540000px;}
.y93{bottom:335.010000px;}
.y6c{bottom:340.500000px;}
.y1d{bottom:340.680000px;}
.y48{bottom:341.580000px;}
.ybc{bottom:345.180000px;}
.y92{bottom:352.560000px;}
.y1c{bottom:358.230000px;}
.y47{bottom:369.030000px;}
.y6b{bottom:369.120000px;}
.ybb{bottom:371.730000px;}
.y1b{bottom:375.870000px;}
.y91{bottom:379.200000px;}
.yba{bottom:389.370000px;}
.y6a{bottom:396.390000px;}
.y90{bottom:396.750000px;}
.y46{bottom:401.970000px;}
.y1a{bottom:411.420000px;}
.yb9{bottom:415.920000px;}
.y8f{bottom:423.300000px;}
.y69{bottom:423.750000px;}
.y19{bottom:429.060000px;}
.y45{bottom:429.330000px;}
.yb8{bottom:433.470000px;}
.y8e{bottom:440.940000px;}
.y18{bottom:446.610000px;}
.y44{bottom:456.690000px;}
.yb7{bottom:460.110000px;}
.y17{bottom:464.160000px;}
.y8d{bottom:467.490000px;}
.y68{bottom:473.190000px;}
.yb6{bottom:477.690000px;}
.y16{bottom:481.830000px;}
.y43{bottom:484.080000px;}
.y8c{bottom:485.160000px;}
.y15{bottom:499.380000px;}
.yb5{bottom:504.330000px;}
.y41{bottom:511.350000px;}
.y8b{bottom:511.710000px;}
.y67{bottom:521.880000px;}
.y14{bottom:526.290000px;}
.y8a{bottom:529.260000px;}
.y3f{bottom:538.710000px;}
.yb4{bottom:548.430000px;}
.y89{bottom:555.900000px;}
.y66{bottom:557.520000px;}
.yb3{bottom:566.070000px;}
.y88{bottom:573.450000px;}
.y13{bottom:574.890000px;}
.y65{bottom:575.070000px;}
.y3d{bottom:588.120000px;}
.yb2{bottom:592.620000px;}
.y64{bottom:593.520000px;}
.y87{bottom:600.360000px;}
.yb1{bottom:610.260000px;}
.y63{bottom:611.070000px;}
.y12{bottom:611.880000px;}
.y62{bottom:628.620000px;}
.y11{bottom:629.520000px;}
.y3c{bottom:636.810000px;}
.y10{bottom:647.070000px;}
.y86{bottom:648.600000px;}
.yb0{bottom:654.360000px;}
.y61{bottom:656.070000px;}
.yf{bottom:664.710000px;}
.y3b{bottom:672.450000px;}
.y85{bottom:675.510000px;}
.yaf{bottom:681.000000px;}
.ye{bottom:682.260000px;}
.y3a{bottom:690.000000px;}
.y60{bottom:691.620000px;}
.yd{bottom:699.810000px;}
.y39{bottom:707.550000px;}
.y5f{bottom:709.260000px;}
.y84{bottom:712.860000px;}
.yc{bottom:717.450000px;}
.yae{bottom:725.190000px;}
.y5e{bottom:726.810000px;}
.y38{bottom:734.190000px;}
.yb{bottom:735.000000px;}
.y5d{bottom:745.260000px;}
.yad{bottom:751.740000px;}
.ya{bottom:752.640000px;}
.y83{bottom:761.190000px;}
.y5c{bottom:762.810000px;}
.yac{bottom:769.290000px;}
.y37{bottom:769.650000px;}
.y82{bottom:778.740000px;}
.y9{bottom:779.550000px;}
.y5b{bottom:781.260000px;}
.y36{bottom:788.100000px;}
.yab{bottom:795.930000px;}
.y81{bottom:796.380000px;}
.y5a{bottom:798.810000px;}
.y35{bottom:806.550000px;}
.y59{bottom:816.450000px;}
.yaa{bottom:822.480000px;}
.y80{bottom:823.200000px;}
.y34{bottom:825.000000px;}
.y8{bottom:827.790000px;}
.y58{bottom:834.000000px;}
.y33{bottom:843.360000px;}
.ya9{bottom:849.030000px;}
.y7{bottom:863.610000px;}
.ya8{bottom:866.670000px;}
.y57{bottom:870.450000px;}
.y32{bottom:870.810000px;}
.y7f{bottom:871.530000px;}
.ya7{bottom:884.220000px;}
.y7e{bottom:889.080000px;}
.y56{bottom:897.000000px;}
.y6{bottom:899.610000px;}
.y31{bottom:906.450000px;}
.ya6{bottom:910.860000px;}
.y30{bottom:924.000000px;}
.y7d{bottom:925.530000px;}
.ya5{bottom:928.410000px;}
.y55{bottom:932.550000px;}
.y5{bottom:935.610000px;}
.y2f{bottom:941.550000px;}
.y54{bottom:950.190000px;}
.ya4{bottom:954.960000px;}
.y2e{bottom:959.190000px;}
.y7c{bottom:961.080000px;}
.y53{bottom:967.740000px;}
.y4{bottom:971.700000px;}
.ya3{bottom:972.600000px;}
.y2d{bottom:976.740000px;}
.y7b{bottom:978.630000px;}
.yc8{bottom:990.150000px;}
.y52{bottom:994.290000px;}
.ya2{bottom:999.150000px;}
.y3{bottom:1009.980000px;}
.y2c{bottom:1012.320000px;}
.y7a{bottom:1015.110000px;}
.ya1{bottom:1016.820000px;}
.y2b{bottom:1029.960000px;}
.ya0{bottom:1034.370000px;}
.y2a{bottom:1047.510000px;}
.y79{bottom:1050.660000px;}
.y9f{bottom:1060.920000px;}
.y29{bottom:1065.150000px;}
.y9e{bottom:1078.560000px;}
.y78{bottom:1087.110000px;}
.y28{bottom:1091.700000px;}
.yc7{bottom:1096.110000px;}
.y9d{bottom:1105.110000px;}
.y77{bottom:1122.750000px;}
.y27{bottom:1127.610000px;}
.y76{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h10{height:26.580000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h12{height:40.913886px;}
.he{height:48.690000px;}
.h11{height:48.720000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.hc{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:112.350000px;}
.w5{width:173.250000px;}
.w4{width:193.710000px;}
.w3{width:209.190000px;}
.w7{width:252.630000px;}
.w8{width:318.900000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.770000px;}
.x1{left:68.040000px;}
.x13{left:78.659987px;}
.xd{left:83.609987px;}
.x12{left:89.369987px;}
.x4{left:95.039987px;}
.x14{left:99.989987px;}
.xf{left:103.950000px;}
.xb{left:105.659987px;}
.xe{left:110.609987px;}
.x9{left:122.039987px;}
.xc{left:132.659987px;}
.xa{left:149.039987px;}
.x5{left:157.770000px;}
.x2{left:202.799987px;}
.x10{left:217.020000px;}
.x7{left:367.770000px;}
.x11{left:470.370000px;}
.x8{left:562.200000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.395200pt;}
.ls19{letter-spacing:-0.378667pt;}
.ls1a{letter-spacing:-0.373867pt;}
.ls2b{letter-spacing:-0.330133pt;}
.lsc{letter-spacing:-0.266133pt;}
.ls17{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.158933pt;}
.ls21{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls2d{letter-spacing:-0.085867pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls28{letter-spacing:-0.034560pt;}
.ls29{letter-spacing:-0.033600pt;}
.lsa{letter-spacing:-0.028267pt;}
.ls27{letter-spacing:-0.013120pt;}
.ls2a{letter-spacing:-0.009920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.046080pt;}
.ls4{letter-spacing:0.053760pt;}
.ls15{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.057600pt;}
.lse{letter-spacing:0.065920pt;}
.lsd{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.081920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.087467pt;}
.ls1e{letter-spacing:0.102400pt;}
.ls2c{letter-spacing:0.102933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.161067pt;}
.ls26{letter-spacing:0.189867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:36.343680pt;}
.ls24{letter-spacing:42.423680pt;}
.ls14{letter-spacing:56.503680pt;}
.ls1f{letter-spacing:65.143680pt;}
.ls23{letter-spacing:71.863680pt;}
.ls20{letter-spacing:73.783680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws19{word-spacing:-11.859733pt;}
.ws12{word-spacing:-11.844267pt;}
.ws6{word-spacing:-11.822933pt;}
.ws18{word-spacing:-11.810667pt;}
.wsf{word-spacing:-11.802880pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws16{word-spacing:-11.746880pt;}
.ws13{word-spacing:-11.743680pt;}
.ws15{word-spacing:-11.723200pt;}
.ws14{word-spacing:-11.722240pt;}
.ws1a{word-spacing:-11.670933pt;}
.ws11{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws17{word-spacing:-11.426667pt;}
.wsd{word-spacing:-11.382933pt;}
.wsc{word-spacing:-11.378133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-7.657067pt;}
.ws5{word-spacing:-7.603200pt;}
.ws10{word-spacing:-7.337067pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._15{margin-left:-3.258987pt;}
._d{margin-left:-2.351360pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894944pt;}
._2{width:1.794326pt;}
._3{width:2.893825pt;}
._9{width:3.831549pt;}
._a{width:4.848871pt;}
._b{width:5.921121pt;}
._c{width:6.975980pt;}
._f{width:7.929660pt;}
._e{width:9.028587pt;}
._5{width:10.474133pt;}
._4{width:12.665066pt;}
._10{width:16.780160pt;}
._11{width:21.963840pt;}
._14{width:22.946880pt;}
._7{width:24.105812pt;}
._6{width:25.010134pt;}
._8{width:26.062933pt;}
._13{width:39.118080pt;}
._12{width:40.049173pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:6.960000pt;}
.y42{bottom:7.040000pt;}
.y40{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y75{bottom:115.866667pt;}
.yc6{bottom:118.506667pt;}
.y9c{bottom:125.066667pt;}
.y51{bottom:128.746667pt;}
.y74{bottom:131.466667pt;}
.yc5{bottom:134.106667pt;}
.y9b{bottom:140.746667pt;}
.yc4{bottom:157.786667pt;}
.y50{bottom:160.426667pt;}
.y24{bottom:161.386667pt;}
.y73{bottom:163.866667pt;}
.y9a{bottom:164.346667pt;}
.yc3{bottom:173.386667pt;}
.y23{bottom:177.066667pt;}
.y99{bottom:179.946667pt;}
.y72{bottom:187.466667pt;}
.y4f{bottom:192.026667pt;}
.yc2{bottom:196.986667pt;}
.y98{bottom:203.626667pt;}
.y4e{bottom:207.626667pt;}
.y22{bottom:208.666667pt;}
.yc1{bottom:212.666667pt;}
.y71{bottom:219.146667pt;}
.y97{bottom:219.226667pt;}
.y4d{bottom:223.226667pt;}
.y21{bottom:224.266667pt;}
.yc0{bottom:228.266667pt;}
.y70{bottom:234.746667pt;}
.y4c{bottom:239.626667pt;}
.y20{bottom:239.946667pt;}
.y96{bottom:242.906667pt;}
.y6f{bottom:250.346667pt;}
.ybf{bottom:251.946667pt;}
.y4b{bottom:255.226667pt;}
.y1f{bottom:255.546667pt;}
.y95{bottom:258.506667pt;}
.y6e{bottom:266.746667pt;}
.ybe{bottom:267.546667pt;}
.y1e{bottom:271.226667pt;}
.y4a{bottom:271.626667pt;}
.y94{bottom:282.106667pt;}
.y6d{bottom:282.426667pt;}
.y49{bottom:287.226667pt;}
.ybd{bottom:291.146667pt;}
.y93{bottom:297.786667pt;}
.y6c{bottom:302.666667pt;}
.y1d{bottom:302.826667pt;}
.y48{bottom:303.626667pt;}
.ybc{bottom:306.826667pt;}
.y92{bottom:313.386667pt;}
.y1c{bottom:318.426667pt;}
.y47{bottom:328.026667pt;}
.y6b{bottom:328.106667pt;}
.ybb{bottom:330.426667pt;}
.y1b{bottom:334.106667pt;}
.y91{bottom:337.066667pt;}
.yba{bottom:346.106667pt;}
.y6a{bottom:352.346667pt;}
.y90{bottom:352.666667pt;}
.y46{bottom:357.306667pt;}
.y1a{bottom:365.706667pt;}
.yb9{bottom:369.706667pt;}
.y8f{bottom:376.266667pt;}
.y69{bottom:376.666667pt;}
.y19{bottom:381.386667pt;}
.y45{bottom:381.626667pt;}
.yb8{bottom:385.306667pt;}
.y8e{bottom:391.946667pt;}
.y18{bottom:396.986667pt;}
.y44{bottom:405.946667pt;}
.yb7{bottom:408.986667pt;}
.y17{bottom:412.586667pt;}
.y8d{bottom:415.546667pt;}
.y68{bottom:420.613333pt;}
.yb6{bottom:424.613333pt;}
.y16{bottom:428.293333pt;}
.y43{bottom:430.293333pt;}
.y8c{bottom:431.253333pt;}
.y15{bottom:443.893333pt;}
.yb5{bottom:448.293333pt;}
.y41{bottom:454.533333pt;}
.y8b{bottom:454.853333pt;}
.y67{bottom:463.893333pt;}
.y14{bottom:467.813333pt;}
.y8a{bottom:470.453333pt;}
.y3f{bottom:478.853333pt;}
.yb4{bottom:487.493333pt;}
.y89{bottom:494.133333pt;}
.y66{bottom:495.573333pt;}
.yb3{bottom:503.173333pt;}
.y88{bottom:509.733333pt;}
.y13{bottom:511.013333pt;}
.y65{bottom:511.173333pt;}
.y3d{bottom:522.773333pt;}
.yb2{bottom:526.773333pt;}
.y64{bottom:527.573333pt;}
.y87{bottom:533.653333pt;}
.yb1{bottom:542.453333pt;}
.y63{bottom:543.173333pt;}
.y12{bottom:543.893333pt;}
.y62{bottom:558.773333pt;}
.y11{bottom:559.573333pt;}
.y3c{bottom:566.053333pt;}
.y10{bottom:575.173333pt;}
.y86{bottom:576.533333pt;}
.yb0{bottom:581.653333pt;}
.y61{bottom:583.173333pt;}
.yf{bottom:590.853333pt;}
.y3b{bottom:597.733333pt;}
.y85{bottom:600.453333pt;}
.yaf{bottom:605.333333pt;}
.ye{bottom:606.453333pt;}
.y3a{bottom:613.333333pt;}
.y60{bottom:614.773333pt;}
.yd{bottom:622.053333pt;}
.y39{bottom:628.933333pt;}
.y5f{bottom:630.453333pt;}
.y84{bottom:633.653333pt;}
.yc{bottom:637.733333pt;}
.yae{bottom:644.613333pt;}
.y5e{bottom:646.053333pt;}
.y38{bottom:652.613333pt;}
.yb{bottom:653.333333pt;}
.y5d{bottom:662.453333pt;}
.yad{bottom:668.213333pt;}
.ya{bottom:669.013333pt;}
.y83{bottom:676.613333pt;}
.y5c{bottom:678.053333pt;}
.yac{bottom:683.813333pt;}
.y37{bottom:684.133333pt;}
.y82{bottom:692.213333pt;}
.y9{bottom:692.933333pt;}
.y5b{bottom:694.453333pt;}
.y36{bottom:700.533333pt;}
.yab{bottom:707.493333pt;}
.y81{bottom:707.893333pt;}
.y5a{bottom:710.053333pt;}
.y35{bottom:716.933333pt;}
.y59{bottom:725.733333pt;}
.yaa{bottom:731.093333pt;}
.y80{bottom:731.733333pt;}
.y34{bottom:733.333333pt;}
.y8{bottom:735.813333pt;}
.y58{bottom:741.333333pt;}
.y33{bottom:749.653333pt;}
.ya9{bottom:754.693333pt;}
.y7{bottom:767.653333pt;}
.ya8{bottom:770.373333pt;}
.y57{bottom:773.733333pt;}
.y32{bottom:774.053333pt;}
.y7f{bottom:774.693333pt;}
.ya7{bottom:785.973333pt;}
.y7e{bottom:790.293333pt;}
.y56{bottom:797.333333pt;}
.y6{bottom:799.653333pt;}
.y31{bottom:805.733333pt;}
.ya6{bottom:809.653333pt;}
.y30{bottom:821.333333pt;}
.y7d{bottom:822.693333pt;}
.ya5{bottom:825.253333pt;}
.y55{bottom:828.933333pt;}
.y5{bottom:831.653333pt;}
.y2f{bottom:836.933333pt;}
.y54{bottom:844.613333pt;}
.ya4{bottom:848.853333pt;}
.y2e{bottom:852.613333pt;}
.y7c{bottom:854.293333pt;}
.y53{bottom:860.213333pt;}
.y4{bottom:863.733333pt;}
.ya3{bottom:864.533333pt;}
.y2d{bottom:868.213333pt;}
.y7b{bottom:869.893333pt;}
.yc8{bottom:880.133333pt;}
.y52{bottom:883.813333pt;}
.ya2{bottom:888.133333pt;}
.y3{bottom:897.760000pt;}
.y2c{bottom:899.840000pt;}
.y7a{bottom:902.320000pt;}
.ya1{bottom:903.840000pt;}
.y2b{bottom:915.520000pt;}
.ya0{bottom:919.440000pt;}
.y2a{bottom:931.120000pt;}
.y79{bottom:933.920000pt;}
.y9f{bottom:943.040000pt;}
.y29{bottom:946.800000pt;}
.y9e{bottom:958.720000pt;}
.y78{bottom:966.320000pt;}
.y28{bottom:970.400000pt;}
.yc7{bottom:974.320000pt;}
.y9d{bottom:982.320000pt;}
.y77{bottom:998.000000pt;}
.y27{bottom:1002.320000pt;}
.y76{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h10{height:23.626667pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h12{height:36.367899pt;}
.he{height:43.280000pt;}
.h11{height:43.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.hc{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:99.866667pt;}
.w5{width:154.000000pt;}
.w4{width:172.186667pt;}
.w3{width:185.946667pt;}
.w7{width:224.560000pt;}
.w8{width:283.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.906667pt;}
.x1{left:60.480000pt;}
.x13{left:69.919988pt;}
.xd{left:74.319988pt;}
.x12{left:79.439988pt;}
.x4{left:84.479988pt;}
.x14{left:88.879988pt;}
.xf{left:92.400000pt;}
.xb{left:93.919988pt;}
.xe{left:98.319988pt;}
.x9{left:108.479988pt;}
.xc{left:117.919988pt;}
.xa{left:132.479988pt;}
.x5{left:140.240000pt;}
.x2{left:180.266655pt;}
.x10{left:192.906667pt;}
.x7{left:326.906667pt;}
.x11{left:418.106667pt;}
.x8{left:499.733333pt;}
.x3{left:704.053322pt;}
}




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