
    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_e6ebdd0198a70a3e7db591e5.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_7ee0cec32a48a7a1f76361c3.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_0fd5526966529011337ec07a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_93a6ef8f1129cde9f076d07d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_be3b3ea612a29f647131e4ef.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_1b359661579e24e76b61fe26.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_67a7d29cf81f77ccf7772930.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dfed05b2970cf263e59b3feb.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5c5d74d64c4dee00627ec18b.woff')format("woff");}.ffa{font-family:ffa;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls14{letter-spacing:-0.444600px;}
.lsd{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.lsf{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.180600px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls16{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls15{letter-spacing:80.846640px;}
.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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.407000px;}
.ws8{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.220280px;}
.wsc{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._b{margin-left:-3.126000px;}
._17{margin-left:-2.119321px;}
._0{margin-left:-1.110000px;}
._2{width:1.192440px;}
._5{width:2.544962px;}
._8{width:3.847800px;}
._7{width:4.869600px;}
._c{width:6.493200px;}
._d{width:7.783320px;}
._6{width:9.018000px;}
._4{width:11.019120px;}
._a{width:12.135841px;}
._12{width:14.252508px;}
._1{width:15.266412px;}
._e{width:17.194320px;}
._14{width:18.276480px;}
._13{width:19.358400px;}
._16{width:20.464920px;}
._3{width:21.523200px;}
._9{width:22.785600px;}
._15{width:24.047760px;}
._11{width:29.158200px;}
._f{width:31.082040px;}
._10{width:32.416920px;}
.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;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yfa{bottom:118.740000px;}
.yd6{bottom:121.440000px;}
.y9d{bottom:125.310000px;}
.y8d{bottom:126.480000px;}
.yf9{bottom:136.290000px;}
.ybb{bottom:136.470000px;}
.yd5{bottom:138.990000px;}
.y25{bottom:141.240000px;}
.y9c{bottom:142.860000px;}
.y8c{bottom:144.030000px;}
.yf8{bottom:153.840000px;}
.yba{bottom:154.020000px;}
.yd4{bottom:156.630000px;}
.y7f{bottom:156.990000px;}
.y24{bottom:158.790000px;}
.y9b{bottom:160.500000px;}
.y8b{bottom:161.670000px;}
.y53{bottom:171.300000px;}
.yf7{bottom:171.480000px;}
.yd3{bottom:174.180000px;}
.y7e{bottom:174.630000px;}
.y23{bottom:176.340000px;}
.y9a{bottom:178.050000px;}
.y52{bottom:188.850000px;}
.yb9{bottom:189.660000px;}
.yd2{bottom:191.730000px;}
.y7d{bottom:192.180000px;}
.y22{bottom:193.980000px;}
.y8a{bottom:197.220000px;}
.yf6{bottom:198.030000px;}
.y51{bottom:206.490000px;}
.yb8{bottom:207.210000px;}
.yd1{bottom:209.370000px;}
.y7c{bottom:209.820000px;}
.y21{bottom:211.530000px;}
.y99{bottom:213.600000px;}
.yf5{bottom:215.580000px;}
.yb7{bottom:224.760000px;}
.yd0{bottom:226.920000px;}
.y20{bottom:229.170000px;}
.y89{bottom:232.410000px;}
.y50{bottom:242.040000px;}
.yf4{bottom:242.220000px;}
.yb6{bottom:242.400000px;}
.y7b{bottom:245.370000px;}
.y98{bottom:245.820000px;}
.y1f{bottom:256.080000px;}
.y4f{bottom:259.680000px;}
.yf3{bottom:259.770000px;}
.ycf{bottom:262.560000px;}
.y7a{bottom:262.920000px;}
.yf2{bottom:277.410000px;}
.yb5{bottom:277.950000px;}
.yce{bottom:280.110000px;}
.y79{bottom:280.560000px;}
.y4e{bottom:286.230000px;}
.yf1{bottom:294.960000px;}
.yb4{bottom:295.590000px;}
.ycd{bottom:297.660000px;}
.y1e{bottom:304.320000px;}
.y78{bottom:307.470000px;}
.yb3{bottom:313.140000px;}
.ycc{bottom:315.300000px;}
.y4d{bottom:321.780000px;}
.yf0{bottom:321.870000px;}
.y1d{bottom:322.230000px;}
.yb2{bottom:330.690000px;}
.ycb{bottom:332.850000px;}
.y4c{bottom:339.420000px;}
.yb1{bottom:348.330000px;}
.yca{bottom:350.490000px;}
.y77{bottom:355.710000px;}
.y1c{bottom:359.220000px;}
.yb0{bottom:365.880000px;}
.y4b{bottom:365.970000px;}
.yef{bottom:370.110000px;}
.y76{bottom:373.260000px;}
.y1b{bottom:376.860000px;}
.yc9{bottom:386.040000px;}
.y75{bottom:390.900000px;}
.yaf{bottom:392.520000px;}
.y1a{bottom:394.410000px;}
.yee{bottom:397.020000px;}
.y4a{bottom:401.610000px;}
.yc8{bottom:403.590000px;}
.y49{bottom:419.160000px;}
.yc7{bottom:421.230000px;}
.y74{bottom:426.450000px;}
.yae{bottom:428.070000px;}
.y19{bottom:430.050000px;}
.yed{bottom:434.370000px;}
.y48{bottom:436.710000px;}
.yc6{bottom:438.780000px;}
.y73{bottom:444.090000px;}
.yad{bottom:445.620000px;}
.y18{bottom:447.600000px;}
.y72{bottom:461.640000px;}
.yac{bottom:463.260000px;}
.y47{bottom:463.620000px;}
.y17{bottom:465.150000px;}
.yc5{bottom:474.450000px;}
.y71{bottom:479.220000px;}
.yab{bottom:480.840000px;}
.yec{bottom:482.730000px;}
.y16{bottom:482.820000px;}
.yc4{bottom:492.000000px;}
.y70{bottom:496.860000px;}
.yeb{bottom:500.280000px;}
.y15{bottom:500.370000px;}
.yc3{bottom:509.550000px;}
.y46{bottom:511.980000px;}
.y6f{bottom:514.410000px;}
.yaa{bottom:516.480000px;}
.yea{bottom:517.830000px;}
.yc2{bottom:527.190000px;}
.y45{bottom:529.530000px;}
.y6e{bottom:532.050000px;}
.ye9{bottom:535.470000px;}
.y14{bottom:535.920000px;}
.yc1{bottom:544.740000px;}
.y44{bottom:547.080000px;}
.ya9{bottom:548.700000px;}
.ye8{bottom:553.020000px;}
.y13{bottom:553.560000px;}
.y6d{bottom:558.600000px;}
.y88{bottom:564.630000px;}
.y43{bottom:564.720000px;}
.y12{bottom:571.110000px;}
.yc0{bottom:571.650000px;}
.y97{bottom:573.270000px;}
.y87{bottom:582.270000px;}
.ye7{bottom:588.660000px;}
.y11{bottom:588.750000px;}
.y42{bottom:591.630000px;}
.y6c{bottom:594.150000px;}
.y86{bottom:599.820000px;}
.ye6{bottom:606.210000px;}
.y96{bottom:608.820000px;}
.y6b{bottom:611.790000px;}
.ybf{bottom:619.890000px;}
.ye5{bottom:623.760000px;}
.y10{bottom:624.300000px;}
.y95{bottom:626.460000px;}
.y41{bottom:628.620000px;}
.y6a{bottom:629.340000px;}
.y85{bottom:635.460000px;}
.ye4{bottom:641.400000px;}
.yf{bottom:641.850000px;}
.y94{bottom:644.010000px;}
.y40{bottom:646.260000px;}
.y10c{bottom:646.620000px;}
.ybe{bottom:652.110000px;}
.y84{bottom:653.010000px;}
.y69{bottom:655.980000px;}
.y3f{bottom:663.810000px;}
.y10b{bottom:664.260000px;}
.y83{bottom:670.560000px;}
.ye3{bottom:676.950000px;}
.ye{bottom:677.490000px;}
.y93{bottom:679.560000px;}
.y10a{bottom:681.810000px;}
.y82{bottom:688.200000px;}
.y68{bottom:691.530000px;}
.ye2{bottom:694.590000px;}
.yd{bottom:695.040000px;}
.y3e{bottom:699.360000px;}
.y67{bottom:709.080000px;}
.ye1{bottom:712.140000px;}
.yc{bottom:712.680000px;}
.y92{bottom:714.750000px;}
.y3d{bottom:717.000000px;}
.y81{bottom:723.750000px;}
.y109{bottom:726.000000px;}
.y66{bottom:726.720000px;}
.y3c{bottom:734.550000px;}
.yb{bottom:739.590000px;}
.y108{bottom:743.550000px;}
.y65{bottom:744.270000px;}
.ye0{bottom:747.690000px;}
.y3b{bottom:752.190000px;}
.y80{bottom:758.940000px;}
.y107{bottom:761.190000px;}
.ydf{bottom:765.330000px;}
.y3a{bottom:769.740000px;}
.y106{bottom:778.740000px;}
.y64{bottom:779.910000px;}
.yde{bottom:782.880000px;}
.y39{bottom:787.290000px;}
.ya{bottom:787.830000px;}
.y105{bottom:796.290000px;}
.y63{bottom:797.460000px;}
.ydd{bottom:800.520000px;}
.y38{bottom:804.930000px;}
.y62{bottom:815.010000px;}
.ydc{bottom:818.070000px;}
.y104{bottom:822.930000px;}
.y9{bottom:823.380000px;}
.y61{bottom:832.650000px;}
.ydb{bottom:835.620000px;}
.y37{bottom:840.480000px;}
.ya8{bottom:844.530000px;}
.y60{bottom:850.200000px;}
.y36{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.ya7{bottom:862.080000px;}
.yda{bottom:862.530000px;}
.y103{bottom:867.030000px;}
.y35{bottom:875.670000px;}
.ya6{bottom:879.630000px;}
.y102{bottom:884.670000px;}
.y5f{bottom:885.840000px;}
.y34{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.ya5{bottom:898.080000px;}
.y101{bottom:902.220000px;}
.y5e{bottom:903.390000px;}
.y33{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.ya4{bottom:916.530000px;}
.y100{bottom:919.860000px;}
.y5d{bottom:921.750000px;}
.yd9{bottom:928.410000px;}
.ya3{bottom:934.080000px;}
.y5c{bottom:940.200000px;}
.yd8{bottom:945.960000px;}
.y32{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.ya2{bottom:952.440000px;}
.y5b{bottom:958.560000px;}
.yd7{bottom:963.600000px;}
.y31{bottom:963.960000px;}
.ya1{bottom:970.890000px;}
.y5a{bottom:977.010000px;}
.y30{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.ya0{bottom:988.530000px;}
.yff{bottom:990.600000px;}
.y2f{bottom:999.150000px;}
.y59{bottom:1004.460000px;}
.y9f{bottom:1006.080000px;}
.yfe{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y2e{bottom:1016.820000px;}
.y9e{bottom:1024.470000px;}
.yfd{bottom:1025.820000px;}
.y2d{bottom:1034.370000px;}
.y58{bottom:1039.950000px;}
.y2c{bottom:1051.920000px;}
.yfc{bottom:1052.370000px;}
.y57{bottom:1058.400000px;}
.y91{bottom:1060.920000px;}
.ybd{bottom:1069.560000px;}
.yfb{bottom:1069.920000px;}
.y56{bottom:1076.850000px;}
.y90{bottom:1078.560000px;}
.ybc{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.y55{bottom:1095.300000px;}
.y8f{bottom:1096.110000px;}
.y2a{bottom:1105.110000px;}
.y54{bottom:1112.850000px;}
.y8e{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h9{height:60.960938px;}
.hd{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.hf{height:74.004654px;}
.he{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x12{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:192.719987px;}
.x11{left:268.409987px;}
.xf{left:280.199987px;}
.xb{left:311.609987px;}
.x9{left:339.779987px;}
.xd{left:342.479987px;}
.x7{left:348.059987px;}
.xc{left:699.809987px;}
.xa{left:704.309987px;}
.x6{left:705.389987px;}
.x8{left:707.639987px;}
.xe{left:722.309987px;}
.x10{left:724.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.395200pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.lsf{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.160533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls16{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.917333pt;}
.ws8{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.751360pt;}
.wsc{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._b{margin-left:-2.778666pt;}
._17{margin-left:-1.883841pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.059947pt;}
._5{width:2.262188pt;}
._8{width:3.420267pt;}
._7{width:4.328533pt;}
._c{width:5.771734pt;}
._d{width:6.918507pt;}
._6{width:8.016000pt;}
._4{width:9.794773pt;}
._a{width:10.787414pt;}
._12{width:12.668896pt;}
._1{width:13.570144pt;}
._e{width:15.283840pt;}
._14{width:16.245760pt;}
._13{width:17.207466pt;}
._16{width:18.191040pt;}
._3{width:19.131734pt;}
._9{width:20.253867pt;}
._15{width:21.375786pt;}
._11{width:25.918400pt;}
._f{width:27.628480pt;}
._10{width:28.815040pt;}
.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;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yfa{bottom:105.546667pt;}
.yd6{bottom:107.946667pt;}
.y9d{bottom:111.386667pt;}
.y8d{bottom:112.426667pt;}
.yf9{bottom:121.146667pt;}
.ybb{bottom:121.306667pt;}
.yd5{bottom:123.546667pt;}
.y25{bottom:125.546667pt;}
.y9c{bottom:126.986667pt;}
.y8c{bottom:128.026667pt;}
.yf8{bottom:136.746667pt;}
.yba{bottom:136.906667pt;}
.yd4{bottom:139.226667pt;}
.y7f{bottom:139.546667pt;}
.y24{bottom:141.146667pt;}
.y9b{bottom:142.666667pt;}
.y8b{bottom:143.706667pt;}
.y53{bottom:152.266667pt;}
.yf7{bottom:152.426667pt;}
.yd3{bottom:154.826667pt;}
.y7e{bottom:155.226667pt;}
.y23{bottom:156.746667pt;}
.y9a{bottom:158.266667pt;}
.y52{bottom:167.866667pt;}
.yb9{bottom:168.586667pt;}
.yd2{bottom:170.426667pt;}
.y7d{bottom:170.826667pt;}
.y22{bottom:172.426667pt;}
.y8a{bottom:175.306667pt;}
.yf6{bottom:176.026667pt;}
.y51{bottom:183.546667pt;}
.yb8{bottom:184.186667pt;}
.yd1{bottom:186.106667pt;}
.y7c{bottom:186.506667pt;}
.y21{bottom:188.026667pt;}
.y99{bottom:189.866667pt;}
.yf5{bottom:191.626667pt;}
.yb7{bottom:199.786667pt;}
.yd0{bottom:201.706667pt;}
.y20{bottom:203.706667pt;}
.y89{bottom:206.586667pt;}
.y50{bottom:215.146667pt;}
.yf4{bottom:215.306667pt;}
.yb6{bottom:215.466667pt;}
.y7b{bottom:218.106667pt;}
.y98{bottom:218.506667pt;}
.y1f{bottom:227.626667pt;}
.y4f{bottom:230.826667pt;}
.yf3{bottom:230.906667pt;}
.ycf{bottom:233.386667pt;}
.y7a{bottom:233.706667pt;}
.yf2{bottom:246.586667pt;}
.yb5{bottom:247.066667pt;}
.yce{bottom:248.986667pt;}
.y79{bottom:249.386667pt;}
.y4e{bottom:254.426667pt;}
.yf1{bottom:262.186667pt;}
.yb4{bottom:262.746667pt;}
.ycd{bottom:264.586667pt;}
.y1e{bottom:270.506667pt;}
.y78{bottom:273.306667pt;}
.yb3{bottom:278.346667pt;}
.ycc{bottom:280.266667pt;}
.y4d{bottom:286.026667pt;}
.yf0{bottom:286.106667pt;}
.y1d{bottom:286.426667pt;}
.yb2{bottom:293.946667pt;}
.ycb{bottom:295.866667pt;}
.y4c{bottom:301.706667pt;}
.yb1{bottom:309.626667pt;}
.yca{bottom:311.546667pt;}
.y77{bottom:316.186667pt;}
.y1c{bottom:319.306667pt;}
.yb0{bottom:325.226667pt;}
.y4b{bottom:325.306667pt;}
.yef{bottom:328.986667pt;}
.y76{bottom:331.786667pt;}
.y1b{bottom:334.986667pt;}
.yc9{bottom:343.146667pt;}
.y75{bottom:347.466667pt;}
.yaf{bottom:348.906667pt;}
.y1a{bottom:350.586667pt;}
.yee{bottom:352.906667pt;}
.y4a{bottom:356.986667pt;}
.yc8{bottom:358.746667pt;}
.y49{bottom:372.586667pt;}
.yc7{bottom:374.426667pt;}
.y74{bottom:379.066667pt;}
.yae{bottom:380.506667pt;}
.y19{bottom:382.266667pt;}
.yed{bottom:386.106667pt;}
.y48{bottom:388.186667pt;}
.yc6{bottom:390.026667pt;}
.y73{bottom:394.746667pt;}
.yad{bottom:396.106667pt;}
.y18{bottom:397.866667pt;}
.y72{bottom:410.346667pt;}
.yac{bottom:411.786667pt;}
.y47{bottom:412.106667pt;}
.y17{bottom:413.466667pt;}
.yc5{bottom:421.733333pt;}
.y71{bottom:425.973333pt;}
.yab{bottom:427.413333pt;}
.yec{bottom:429.093333pt;}
.y16{bottom:429.173333pt;}
.yc4{bottom:437.333333pt;}
.y70{bottom:441.653333pt;}
.yeb{bottom:444.693333pt;}
.y15{bottom:444.773333pt;}
.yc3{bottom:452.933333pt;}
.y46{bottom:455.093333pt;}
.y6f{bottom:457.253333pt;}
.yaa{bottom:459.093333pt;}
.yea{bottom:460.293333pt;}
.yc2{bottom:468.613333pt;}
.y45{bottom:470.693333pt;}
.y6e{bottom:472.933333pt;}
.ye9{bottom:475.973333pt;}
.y14{bottom:476.373333pt;}
.yc1{bottom:484.213333pt;}
.y44{bottom:486.293333pt;}
.ya9{bottom:487.733333pt;}
.ye8{bottom:491.573333pt;}
.y13{bottom:492.053333pt;}
.y6d{bottom:496.533333pt;}
.y88{bottom:501.893333pt;}
.y43{bottom:501.973333pt;}
.y12{bottom:507.653333pt;}
.yc0{bottom:508.133333pt;}
.y97{bottom:509.573333pt;}
.y87{bottom:517.573333pt;}
.ye7{bottom:523.253333pt;}
.y11{bottom:523.333333pt;}
.y42{bottom:525.893333pt;}
.y6c{bottom:528.133333pt;}
.y86{bottom:533.173333pt;}
.ye6{bottom:538.853333pt;}
.y96{bottom:541.173333pt;}
.y6b{bottom:543.813333pt;}
.ybf{bottom:551.013333pt;}
.ye5{bottom:554.453333pt;}
.y10{bottom:554.933333pt;}
.y95{bottom:556.853333pt;}
.y41{bottom:558.773333pt;}
.y6a{bottom:559.413333pt;}
.y85{bottom:564.853333pt;}
.ye4{bottom:570.133333pt;}
.yf{bottom:570.533333pt;}
.y94{bottom:572.453333pt;}
.y40{bottom:574.453333pt;}
.y10c{bottom:574.773333pt;}
.ybe{bottom:579.653333pt;}
.y84{bottom:580.453333pt;}
.y69{bottom:583.093333pt;}
.y3f{bottom:590.053333pt;}
.y10b{bottom:590.453333pt;}
.y83{bottom:596.053333pt;}
.ye3{bottom:601.733333pt;}
.ye{bottom:602.213333pt;}
.y93{bottom:604.053333pt;}
.y10a{bottom:606.053333pt;}
.y82{bottom:611.733333pt;}
.y68{bottom:614.693333pt;}
.ye2{bottom:617.413333pt;}
.yd{bottom:617.813333pt;}
.y3e{bottom:621.653333pt;}
.y67{bottom:630.293333pt;}
.ye1{bottom:633.013333pt;}
.yc{bottom:633.493333pt;}
.y92{bottom:635.333333pt;}
.y3d{bottom:637.333333pt;}
.y81{bottom:643.333333pt;}
.y109{bottom:645.333333pt;}
.y66{bottom:645.973333pt;}
.y3c{bottom:652.933333pt;}
.yb{bottom:657.413333pt;}
.y108{bottom:660.933333pt;}
.y65{bottom:661.573333pt;}
.ye0{bottom:664.613333pt;}
.y3b{bottom:668.613333pt;}
.y80{bottom:674.613333pt;}
.y107{bottom:676.613333pt;}
.ydf{bottom:680.293333pt;}
.y3a{bottom:684.213333pt;}
.y106{bottom:692.213333pt;}
.y64{bottom:693.253333pt;}
.yde{bottom:695.893333pt;}
.y39{bottom:699.813333pt;}
.ya{bottom:700.293333pt;}
.y105{bottom:707.813333pt;}
.y63{bottom:708.853333pt;}
.ydd{bottom:711.573333pt;}
.y38{bottom:715.493333pt;}
.y62{bottom:724.453333pt;}
.ydc{bottom:727.173333pt;}
.y104{bottom:731.493333pt;}
.y9{bottom:731.893333pt;}
.y61{bottom:740.133333pt;}
.ydb{bottom:742.773333pt;}
.y37{bottom:747.093333pt;}
.ya8{bottom:750.693333pt;}
.y60{bottom:755.733333pt;}
.y36{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.ya7{bottom:766.293333pt;}
.yda{bottom:766.693333pt;}
.y103{bottom:770.693333pt;}
.y35{bottom:778.373333pt;}
.ya6{bottom:781.893333pt;}
.y102{bottom:786.373333pt;}
.y5f{bottom:787.413333pt;}
.y34{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.ya5{bottom:798.293333pt;}
.y101{bottom:801.973333pt;}
.y5e{bottom:803.013333pt;}
.y33{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.ya4{bottom:814.693333pt;}
.y100{bottom:817.653333pt;}
.y5d{bottom:819.333333pt;}
.yd9{bottom:825.253333pt;}
.ya3{bottom:830.293333pt;}
.y5c{bottom:835.733333pt;}
.yd8{bottom:840.853333pt;}
.y32{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.ya2{bottom:846.613333pt;}
.y5b{bottom:852.053333pt;}
.yd7{bottom:856.533333pt;}
.y31{bottom:856.853333pt;}
.ya1{bottom:863.013333pt;}
.y5a{bottom:868.453333pt;}
.y30{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.ya0{bottom:878.693333pt;}
.yff{bottom:880.533333pt;}
.y2f{bottom:888.133333pt;}
.y59{bottom:892.853333pt;}
.y9f{bottom:894.293333pt;}
.yfe{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y2e{bottom:903.840000pt;}
.y9e{bottom:910.640000pt;}
.yfd{bottom:911.840000pt;}
.y2d{bottom:919.440000pt;}
.y58{bottom:924.400000pt;}
.y2c{bottom:935.040000pt;}
.yfc{bottom:935.440000pt;}
.y57{bottom:940.800000pt;}
.y91{bottom:943.040000pt;}
.ybd{bottom:950.720000pt;}
.yfb{bottom:951.040000pt;}
.y56{bottom:957.200000pt;}
.y90{bottom:958.720000pt;}
.ybc{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.y55{bottom:973.600000pt;}
.y8f{bottom:974.320000pt;}
.y2a{bottom:982.320000pt;}
.y54{bottom:989.200000pt;}
.y8e{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h9{height:54.187500pt;}
.hd{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.hf{height:65.781915pt;}
.he{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x12{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:171.306655pt;}
.x11{left:238.586655pt;}
.xf{left:249.066655pt;}
.xb{left:276.986655pt;}
.x9{left:302.026655pt;}
.xd{left:304.426655pt;}
.x7{left:309.386655pt;}
.xc{left:622.053322pt;}
.xa{left:626.053322pt;}
.x6{left:627.013322pt;}
.x8{left:629.013322pt;}
.xe{left:642.053322pt;}
.x10{left:644.053322pt;}
.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; }
  