
    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_95bbde5429e2a9636257085c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7ab5a5915e54db659903ffb3.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_66ca834fac8ae2d4b883c7c3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_16cffd4f357d0314966b4d63.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_7ea6fe834ae639a489fde9e7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6a3469d4c9f3178f86089968.woff')format("woff");}.ff7{font-family:ff7;line-height:0.936035;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_0ce65d51cd36f9f8e3620528.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_aa25df512541238d21196495.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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:ffa;src:url('chunks/assets/font_524e768b33339cc441abf87c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_cbf44377bc42d277fd562ec2.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8265cb61600771ea5537e73a.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d89112315904028dcf4cfb84.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172852;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:ffe;src:url('chunks/assets/font_d7dace51bcde4254316467da.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6eb3313307c777e97ed3fbc7.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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:-95.040000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.085200px;}
.ls4{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.186600px;}
.ls7{letter-spacing:0.187200px;}
.ls3{letter-spacing:0.241800px;}
.ls5{letter-spacing:197.976000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.532800px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws3{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.624000px;}
.ws6{word-spacing:-12.186000px;}
.ws5{word-spacing:-10.854600px;}
.ws8{word-spacing:-10.799400px;}
.ws0{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.527600px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-2.389200px;}
._0{margin-left:-1.013040px;}
._1{width:1.237200px;}
._2{width:2.509680px;}
._7{width:4.320000px;}
._9{width:5.770080px;}
._8{width:6.912000px;}
._a{width:8.211840px;}
._f{width:9.232320px;}
._e{width:10.451280px;}
._10{width:11.940720px;}
._3{width:19.262640px;}
._6{width:21.024000px;}
._4{width:22.968000px;}
._5{width:24.178800px;}
._12{width:31.680000px;}
._11{width:33.264000px;}
._b{width:1127.130240px;}
._c{width:1516.025760px;}
.fc8{color:rgb(79,129,189);}
.fc7{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(238,78,60);}
.fc1{color:rgb(255,192,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs6{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fsa{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y36{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:0.540000px;}
.y30{bottom:1.230000px;}
.y2e{bottom:3.030000px;}
.y3{bottom:4.500000px;}
.y44{bottom:4.680000px;}
.y6f{bottom:7.005000px;}
.y5d{bottom:7.020000px;}
.y6e{bottom:7.185000px;}
.y60{bottom:7.200000px;}
.y75{bottom:7.230000px;}
.y71{bottom:7.365000px;}
.y5e{bottom:7.380000px;}
.y61{bottom:7.560000px;}
.y76{bottom:7.590000px;}
.y3e{bottom:19.980000px;}
.y40{bottom:20.160000px;}
.y7a{bottom:22.680000px;}
.y43{bottom:22.860000px;}
.y2{bottom:24.660000px;}
.y5b{bottom:31.500000px;}
.y6c{bottom:31.665000px;}
.y41{bottom:34.560000px;}
.y3f{bottom:34.740000px;}
.y42{bottom:36.900000px;}
.y33{bottom:41.040000px;}
.y39{bottom:42.660000px;}
.y1{bottom:42.840000px;}
.y37{bottom:63.540000px;}
.y3d{bottom:91.440000px;}
.y2c{bottom:111.780000px;}
.y79{bottom:115.020000px;}
.y2b{bottom:119.340000px;}
.y2a{bottom:134.820000px;}
.y78{bottom:138.960000px;}
.y97{bottom:147.960000px;}
.y96{bottom:171.720000px;}
.y29{bottom:172.260000px;}
.y77{bottom:186.480000px;}
.y95{bottom:195.480000px;}
.y28{bottom:196.020000px;}
.y74{bottom:203.580000px;}
.y94{bottom:219.270000px;}
.y27{bottom:219.990000px;}
.y73{bottom:228.285000px;}
.y93{bottom:243.210000px;}
.y26{bottom:243.750000px;}
.y72{bottom:252.765000px;}
.y92{bottom:266.970000px;}
.y25{bottom:274.350000px;}
.y70{bottom:277.425000px;}
.y91{bottom:290.730000px;}
.y6b{bottom:301.905000px;}
.y24{bottom:305.490000px;}
.y90{bottom:314.490000px;}
.y6d{bottom:326.385000px;}
.y23{bottom:329.610000px;}
.y8f{bottom:345.270000px;}
.y22{bottom:353.730000px;}
.y6a{bottom:358.410000px;}
.y8e{bottom:369.390000px;}
.y21{bottom:378.030000px;}
.y69{bottom:382.170000px;}
.y8d{bottom:393.150000px;}
.y20{bottom:402.330000px;}
.y68{bottom:406.110000px;}
.y8c{bottom:417.090000px;}
.y1f{bottom:426.630000px;}
.y67{bottom:429.870000px;}
.y8b{bottom:440.490000px;}
.y1e{bottom:450.615000px;}
.y66{bottom:453.675000px;}
.y8a{bottom:464.655000px;}
.y65{bottom:477.435000px;}
.y1d{bottom:483.915000px;}
.y89{bottom:488.415000px;}
.y64{bottom:501.195000px;}
.y1c{bottom:510.915000px;}
.y88{bottom:512.355000px;}
.y63{bottom:525.135000px;}
.y1b{bottom:535.035000px;}
.y87{bottom:536.115000px;}
.y62{bottom:542.235000px;}
.y1a{bottom:558.795000px;}
.y86{bottom:559.875000px;}
.y5f{bottom:566.715000px;}
.y19{bottom:582.735000px;}
.y85{bottom:590.655000px;}
.y5a{bottom:591.375000px;}
.y18{bottom:606.495000px;}
.y84{bottom:614.775000px;}
.y5c{bottom:615.855000px;}
.y17{bottom:630.255000px;}
.y83{bottom:638.535000px;}
.y59{bottom:647.895000px;}
.y16{bottom:654.015000px;}
.y82{bottom:662.295000px;}
.y58{bottom:671.655000px;}
.y15{bottom:677.985000px;}
.y81{bottom:686.085000px;}
.y57{bottom:702.285000px;}
.y80{bottom:710.025000px;}
.y14{bottom:711.285000px;}
.y56{bottom:726.585000px;}
.y7f{bottom:733.785000px;}
.y13{bottom:737.385000px;}
.y55{bottom:750.345000px;}
.y7e{bottom:757.545000px;}
.y12{bottom:759.165000px;}
.y54{bottom:774.105000px;}
.y7d{bottom:781.305000px;}
.y11{bottom:784.545000px;}
.y53{bottom:797.865000px;}
.y7c{bottom:805.245000px;}
.yf{bottom:809.745000px;}
.y10{bottom:818.025000px;}
.y52{bottom:828.645000px;}
.y7b{bottom:829.005000px;}
.ye{bottom:842.685000px;}
.y51{bottom:852.765000px;}
.yd{bottom:864.645000px;}
.y50{bottom:876.525000px;}
.yc{bottom:891.465000px;}
.y4f{bottom:900.465000px;}
.yb{bottom:923.910000px;}
.y4e{bottom:924.270000px;}
.y4d{bottom:948.030000px;}
.ya{bottom:953.970000px;}
.y4c{bottom:971.790000px;}
.y9{bottom:974.130000px;}
.y31{bottom:986.760000px;}
.y2d{bottom:987.120000px;}
.y2f{bottom:989.280000px;}
.y8{bottom:993.390000px;}
.y4b{bottom:995.730000px;}
.y4a{bottom:1019.490000px;}
.y7{bottom:1027.590000px;}
.y49{bottom:1043.250000px;}
.y6{bottom:1062.870000px;}
.y48{bottom:1067.010000px;}
.y47{bottom:1090.950000px;}
.y5{bottom:1101.030000px;}
.y46{bottom:1114.710000px;}
.y45{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y3c{bottom:1169.460000px;}
.y3b{bottom:1183.500000px;}
.y3a{bottom:1197.540000px;}
.y32{bottom:1207.620000px;}
.y35{bottom:1219.860000px;}
.y34{bottom:1235.700000px;}
.h17{height:12.600000px;}
.h16{height:14.400000px;}
.h1b{height:23.220000px;}
.h23{height:23.745000px;}
.h24{height:23.925000px;}
.h26{height:23.976000px;}
.h19{height:36.861328px;}
.h5{height:38.469727px;}
.h14{height:38.671172px;}
.h2{height:40.843828px;}
.h1a{height:46.445273px;}
.h22{height:48.225000px;}
.h1e{height:48.235500px;}
.h20{height:48.238500px;}
.h1f{height:48.240000px;}
.h25{height:48.405000px;}
.hc{height:49.394180px;}
.h18{height:49.680000px;}
.h4{height:53.709961px;}
.h9{height:54.597656px;}
.h1d{height:55.291992px;}
.h1c{height:55.620000px;}
.he{height:58.651172px;}
.h15{height:59.439023px;}
.h6{height:60.226875px;}
.h7{height:60.960938px;}
.h3{height:65.884219px;}
.h12{height:70.628906px;}
.h10{height:70.664062px;}
.hf{height:71.324297px;}
.hd{height:71.613281px;}
.h11{height:72.562500px;}
.ha{height:73.722656px;}
.h21{height:74.004654px;}
.h13{height:74.953125px;}
.h8{height:81.078047px;}
.hb{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:62.811000px;}
.wa{width:62.820000px;}
.w8{width:104.940000px;}
.w6{width:107.100000px;}
.w12{width:127.821000px;}
.wc{width:129.769500px;}
.w11{width:137.865000px;}
.wf{width:137.901000px;}
.w10{width:138.096000px;}
.w3{width:155.340000px;}
.w4{width:178.740000px;}
.w5{width:209.340000px;}
.w16{width:220.335000px;}
.w13{width:222.319500px;}
.w15{width:230.250000px;}
.we{width:266.415000px;}
.wd{width:276.720000px;}
.w14{width:451.335000px;}
.w7{width:499.860000px;}
.wb{width:616.590000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.725000px;}
.xe{left:10.905000px;}
.x14{left:15.810000px;}
.x10{left:22.395000px;}
.x18{left:41.436000px;}
.x12{left:53.496000px;}
.x17{left:55.074000px;}
.x11{left:96.516000px;}
.x2{left:108.036000px;}
.xc{left:112.896000px;}
.x1{left:114.516000px;}
.x1b{left:116.670000px;}
.x4{left:123.516000px;}
.x7{left:127.656000px;}
.xa{left:162.750000px;}
.x19{left:171.585000px;}
.x22{left:186.150000px;}
.x5{left:197.670000px;}
.x1c{left:238.905000px;}
.x8{left:275.788125px;}
.x9{left:281.775000px;}
.x15{left:296.895000px;}
.xb{left:324.075000px;}
.x20{left:331.455000px;}
.x1e{left:377.535000px;}
.xf{left:380.880000px;}
.x6{left:435.135000px;}
.x3{left:446.475000px;}
.x1d{left:516.360000px;}
.x16{left:560.445000px;}
.x21{left:562.440000px;}
.xd{left:636.120000px;}
.x1f{left:654.960000px;}
.x13{left:788.040000px;}
@media print{
.v1{vertical-align:-84.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.075733pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.165867pt;}
.ls7{letter-spacing:0.166400pt;}
.ls3{letter-spacing:0.214933pt;}
.ls5{letter-spacing:175.978667pt;}
.wsb{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.473600pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.888000pt;}
.ws6{word-spacing:-10.832000pt;}
.ws5{word-spacing:-9.648533pt;}
.ws8{word-spacing:-9.599467pt;}
.ws0{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.357867pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-2.123733pt;}
._0{margin-left:-0.900480pt;}
._1{width:1.099733pt;}
._2{width:2.230827pt;}
._7{width:3.840000pt;}
._9{width:5.128960pt;}
._8{width:6.144000pt;}
._a{width:7.299413pt;}
._f{width:8.206507pt;}
._e{width:9.290027pt;}
._10{width:10.613973pt;}
._3{width:17.122347pt;}
._6{width:18.688000pt;}
._4{width:20.416000pt;}
._5{width:21.492267pt;}
._12{width:28.160000pt;}
._11{width:29.568000pt;}
._b{width:1001.893547pt;}
._c{width:1347.578453pt;}
.fs6{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fsa{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y36{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:0.480000pt;}
.y30{bottom:1.093333pt;}
.y2e{bottom:2.693333pt;}
.y3{bottom:4.000000pt;}
.y44{bottom:4.160000pt;}
.y6f{bottom:6.226667pt;}
.y5d{bottom:6.240000pt;}
.y6e{bottom:6.386667pt;}
.y60{bottom:6.400000pt;}
.y75{bottom:6.426667pt;}
.y71{bottom:6.546667pt;}
.y5e{bottom:6.560000pt;}
.y61{bottom:6.720000pt;}
.y76{bottom:6.746667pt;}
.y3e{bottom:17.760000pt;}
.y40{bottom:17.920000pt;}
.y7a{bottom:20.160000pt;}
.y43{bottom:20.320000pt;}
.y2{bottom:21.920000pt;}
.y5b{bottom:28.000000pt;}
.y6c{bottom:28.146667pt;}
.y41{bottom:30.720000pt;}
.y3f{bottom:30.880000pt;}
.y42{bottom:32.800000pt;}
.y33{bottom:36.480000pt;}
.y39{bottom:37.920000pt;}
.y1{bottom:38.080000pt;}
.y37{bottom:56.480000pt;}
.y3d{bottom:81.280000pt;}
.y2c{bottom:99.360000pt;}
.y79{bottom:102.240000pt;}
.y2b{bottom:106.080000pt;}
.y2a{bottom:119.840000pt;}
.y78{bottom:123.520000pt;}
.y97{bottom:131.520000pt;}
.y96{bottom:152.640000pt;}
.y29{bottom:153.120000pt;}
.y77{bottom:165.760000pt;}
.y95{bottom:173.760000pt;}
.y28{bottom:174.240000pt;}
.y74{bottom:180.960000pt;}
.y94{bottom:194.906667pt;}
.y27{bottom:195.546667pt;}
.y73{bottom:202.920000pt;}
.y93{bottom:216.186667pt;}
.y26{bottom:216.666667pt;}
.y72{bottom:224.680000pt;}
.y92{bottom:237.306667pt;}
.y25{bottom:243.866667pt;}
.y70{bottom:246.600000pt;}
.y91{bottom:258.426667pt;}
.y6b{bottom:268.360000pt;}
.y24{bottom:271.546667pt;}
.y90{bottom:279.546667pt;}
.y6d{bottom:290.120000pt;}
.y23{bottom:292.986667pt;}
.y8f{bottom:306.906667pt;}
.y22{bottom:314.426667pt;}
.y6a{bottom:318.586667pt;}
.y8e{bottom:328.346667pt;}
.y21{bottom:336.026667pt;}
.y69{bottom:339.706667pt;}
.y8d{bottom:349.466667pt;}
.y20{bottom:357.626667pt;}
.y68{bottom:360.986667pt;}
.y8c{bottom:370.746667pt;}
.y1f{bottom:379.226667pt;}
.y67{bottom:382.106667pt;}
.y8b{bottom:391.546667pt;}
.y1e{bottom:400.546667pt;}
.y66{bottom:403.266667pt;}
.y8a{bottom:413.026667pt;}
.y65{bottom:424.386667pt;}
.y1d{bottom:430.146667pt;}
.y89{bottom:434.146667pt;}
.y64{bottom:445.506667pt;}
.y1c{bottom:454.146667pt;}
.y88{bottom:455.426667pt;}
.y63{bottom:466.786667pt;}
.y1b{bottom:475.586667pt;}
.y87{bottom:476.546667pt;}
.y62{bottom:481.986667pt;}
.y1a{bottom:496.706667pt;}
.y86{bottom:497.666667pt;}
.y5f{bottom:503.746667pt;}
.y19{bottom:517.986667pt;}
.y85{bottom:525.026667pt;}
.y5a{bottom:525.666667pt;}
.y18{bottom:539.106667pt;}
.y84{bottom:546.466667pt;}
.y5c{bottom:547.426667pt;}
.y17{bottom:560.226667pt;}
.y83{bottom:567.586667pt;}
.y59{bottom:575.906667pt;}
.y16{bottom:581.346667pt;}
.y82{bottom:588.706667pt;}
.y58{bottom:597.026667pt;}
.y15{bottom:602.653333pt;}
.y81{bottom:609.853333pt;}
.y57{bottom:624.253333pt;}
.y80{bottom:631.133333pt;}
.y14{bottom:632.253333pt;}
.y56{bottom:645.853333pt;}
.y7f{bottom:652.253333pt;}
.y13{bottom:655.453333pt;}
.y55{bottom:666.973333pt;}
.y7e{bottom:673.373333pt;}
.y12{bottom:674.813333pt;}
.y54{bottom:688.093333pt;}
.y7d{bottom:694.493333pt;}
.y11{bottom:697.373333pt;}
.y53{bottom:709.213333pt;}
.y7c{bottom:715.773333pt;}
.yf{bottom:719.773333pt;}
.y10{bottom:727.133333pt;}
.y52{bottom:736.573333pt;}
.y7b{bottom:736.893333pt;}
.ye{bottom:749.053333pt;}
.y51{bottom:758.013333pt;}
.yd{bottom:768.573333pt;}
.y50{bottom:779.133333pt;}
.yc{bottom:792.413333pt;}
.y4f{bottom:800.413333pt;}
.yb{bottom:821.253333pt;}
.y4e{bottom:821.573333pt;}
.y4d{bottom:842.693333pt;}
.ya{bottom:847.973333pt;}
.y4c{bottom:863.813333pt;}
.y9{bottom:865.893333pt;}
.y31{bottom:877.120000pt;}
.y2d{bottom:877.440000pt;}
.y2f{bottom:879.360000pt;}
.y8{bottom:883.013333pt;}
.y4b{bottom:885.093333pt;}
.y4a{bottom:906.213333pt;}
.y7{bottom:913.413333pt;}
.y49{bottom:927.333333pt;}
.y6{bottom:944.773333pt;}
.y48{bottom:948.453333pt;}
.y47{bottom:969.733333pt;}
.y5{bottom:978.693333pt;}
.y46{bottom:990.853333pt;}
.y45{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y3c{bottom:1039.520000pt;}
.y3b{bottom:1052.000000pt;}
.y3a{bottom:1064.480000pt;}
.y32{bottom:1073.440000pt;}
.y35{bottom:1084.320000pt;}
.y34{bottom:1098.400000pt;}
.h17{height:11.200000pt;}
.h16{height:12.800000pt;}
.h1b{height:20.640000pt;}
.h23{height:21.106667pt;}
.h24{height:21.266667pt;}
.h26{height:21.312000pt;}
.h19{height:32.765625pt;}
.h5{height:34.195312pt;}
.h14{height:34.374375pt;}
.h2{height:36.305625pt;}
.h1a{height:41.284687pt;}
.h22{height:42.866667pt;}
.h1e{height:42.876000pt;}
.h20{height:42.878667pt;}
.h1f{height:42.880000pt;}
.h25{height:43.026667pt;}
.hc{height:43.905937pt;}
.h18{height:44.160000pt;}
.h4{height:47.742188pt;}
.h9{height:48.531250pt;}
.h1d{height:49.148438pt;}
.h1c{height:49.440000pt;}
.he{height:52.134375pt;}
.h15{height:52.834688pt;}
.h6{height:53.535000pt;}
.h7{height:54.187500pt;}
.h3{height:58.563750pt;}
.h12{height:62.781250pt;}
.h10{height:62.812500pt;}
.hf{height:63.399375pt;}
.hd{height:63.656250pt;}
.h11{height:64.500000pt;}
.ha{height:65.531250pt;}
.h21{height:65.781915pt;}
.h13{height:66.625000pt;}
.h8{height:72.069375pt;}
.hb{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:55.832000pt;}
.wa{width:55.840000pt;}
.w8{width:93.280000pt;}
.w6{width:95.200000pt;}
.w12{width:113.618667pt;}
.wc{width:115.350667pt;}
.w11{width:122.546667pt;}
.wf{width:122.578667pt;}
.w10{width:122.752000pt;}
.w3{width:138.080000pt;}
.w4{width:158.880000pt;}
.w5{width:186.080000pt;}
.w16{width:195.853333pt;}
.w13{width:197.617333pt;}
.w15{width:204.666667pt;}
.we{width:236.813333pt;}
.wd{width:245.973333pt;}
.w14{width:401.186667pt;}
.w7{width:444.320000pt;}
.wb{width:548.080000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.866667pt;}
.xe{left:9.693333pt;}
.x14{left:14.053333pt;}
.x10{left:19.906667pt;}
.x18{left:36.832000pt;}
.x12{left:47.552000pt;}
.x17{left:48.954667pt;}
.x11{left:85.792000pt;}
.x2{left:96.032000pt;}
.xc{left:100.352000pt;}
.x1{left:101.792000pt;}
.x1b{left:103.706667pt;}
.x4{left:109.792000pt;}
.x7{left:113.472000pt;}
.xa{left:144.666667pt;}
.x19{left:152.520000pt;}
.x22{left:165.466667pt;}
.x5{left:175.706667pt;}
.x1c{left:212.360000pt;}
.x8{left:245.145000pt;}
.x9{left:250.466667pt;}
.x15{left:263.906667pt;}
.xb{left:288.066667pt;}
.x20{left:294.626667pt;}
.x1e{left:335.586667pt;}
.xf{left:338.560000pt;}
.x6{left:386.786667pt;}
.x3{left:396.866667pt;}
.x1d{left:458.986667pt;}
.x16{left:498.173333pt;}
.x21{left:499.946667pt;}
.xd{left:565.440000pt;}
.x1f{left:582.186667pt;}
.x13{left:700.480000pt;}
}




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