
    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_2f76167213d5e97ecdcfcc33.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_61e5b233cf8d36099ace4619.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_483c301b91e8f3ffa97d740e.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fd9c02ab63a476cedfe97cb4.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4a9e872dadbcec5f2838253f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_c73ec42d66f032b641e109ab.woff')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_5794ffbd21a32062a3a925d1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_38c14ab0adc6ddc38546e933.woff')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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_f2619c28528b448df88e1bec.woff')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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_b08591589da2707364e62d9c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lsd{letter-spacing:41.850720px;}
.ls4{letter-spacing:201.204000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-23.940000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wsa{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.120000px;}
.wse{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.580000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2547.618480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._b{margin-left:-6.625440px;}
._a{margin-left:-5.259840px;}
._d{margin-left:-4.242240px;}
._c{margin-left:-3.039840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._e{width:2.757840px;}
._10{width:4.074960px;}
._f{width:5.079600px;}
._12{width:6.693120px;}
._1b{width:7.698720px;}
._11{width:8.765520px;}
._15{width:10.285920px;}
._14{width:11.533680px;}
._16{width:12.559680px;}
._13{width:13.740480px;}
._1d{width:16.434000px;}
._1c{width:17.509680px;}
._1a{width:18.993600px;}
._19{width:20.208960px;}
._9{width:21.647280px;}
._8{width:22.886640px;}
._18{width:24.621120px;}
._1e{width:25.856400px;}
._17{width:200.805600px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y92{bottom:5.760000px;}
.y91{bottom:5.940000px;}
.yb4{bottom:10.800000px;}
.y56{bottom:11.340000px;}
.y53{bottom:11.520000px;}
.y95{bottom:15.660000px;}
.y8f{bottom:15.840000px;}
.yb3{bottom:30.600000px;}
.yb0{bottom:34.740000px;}
.yb2{bottom:50.430000px;}
.y6{bottom:60.120000px;}
.yb1{bottom:70.230000px;}
.y6a{bottom:88.020000px;}
.y9e{bottom:99.360000px;}
.y69{bottom:107.820000px;}
.yaf{bottom:111.060000px;}
.y9d{bottom:119.160000px;}
.y32{bottom:126.720000px;}
.y68{bottom:127.800000px;}
.y9c{bottom:139.140000px;}
.y31{bottom:146.520000px;}
.y67{bottom:147.600000px;}
.y9b{bottom:158.970000px;}
.y30{bottom:166.350000px;}
.y66{bottom:167.430000px;}
.y9a{bottom:178.770000px;}
.y2f{bottom:186.150000px;}
.y65{bottom:187.230000px;}
.y99{bottom:198.570000px;}
.y2e{bottom:206.130000px;}
.y64{bottom:207.030000px;}
.y98{bottom:218.370000px;}
.y2d{bottom:225.930000px;}
.y63{bottom:227.010000px;}
.y97{bottom:238.350000px;}
.y2c{bottom:245.730000px;}
.y62{bottom:246.810000px;}
.y96{bottom:258.150000px;}
.y2b{bottom:265.530000px;}
.y61{bottom:266.610000px;}
.y94{bottom:272.190000px;}
.y2a{bottom:285.330000px;}
.y60{bottom:286.410000px;}
.y93{bottom:291.990000px;}
.y29{bottom:305.310000px;}
.y5f{bottom:306.210000px;}
.y8e{bottom:311.790000px;}
.y28{bottom:325.110000px;}
.y5e{bottom:326.190000px;}
.y90{bottom:331.590000px;}
.y27{bottom:344.910000px;}
.y5d{bottom:345.990000px;}
.y8d{bottom:357.330000px;}
.y26{bottom:364.710000px;}
.y5c{bottom:365.790000px;}
.y8c{bottom:377.130000px;}
.y25{bottom:384.510000px;}
.y5b{bottom:385.590000px;}
.y8b{bottom:396.930000px;}
.y24{bottom:404.535000px;}
.y5a{bottom:405.435000px;}
.yae{bottom:411.915000px;}
.y8a{bottom:416.775000px;}
.y59{bottom:420.375000px;}
.y23{bottom:424.335000px;}
.yad{bottom:431.715000px;}
.y89{bottom:436.755000px;}
.y22{bottom:444.135000px;}
.y58{bottom:446.475000px;}
.yac{bottom:451.515000px;}
.y88{bottom:456.555000px;}
.y21{bottom:463.935000px;}
.yab{bottom:471.315000px;}
.y57{bottom:472.035000px;}
.y87{bottom:476.355000px;}
.y20{bottom:483.735000px;}
.yaa{bottom:491.115000px;}
.y86{bottom:496.155000px;}
.y55{bottom:497.595000px;}
.y1f{bottom:505.875000px;}
.ya9{bottom:511.095000px;}
.y85{bottom:515.955000px;}
.y54{bottom:522.975000px;}
.ya8{bottom:530.895000px;}
.y1e{bottom:534.675000px;}
.y84{bottom:544.935000px;}
.y52{bottom:549.255000px;}
.ya7{bottom:550.695000px;}
.y1d{bottom:554.475000px;}
.y83{bottom:564.735000px;}
.ya6{bottom:570.495000px;}
.y1c{bottom:574.455000px;}
.y51{bottom:581.295000px;}
.y82{bottom:584.535000px;}
.ya5{bottom:590.295000px;}
.y1b{bottom:594.255000px;}
.y50{bottom:601.275000px;}
.y81{bottom:604.335000px;}
.ya4{bottom:610.275000px;}
.y1a{bottom:614.055000px;}
.y4f{bottom:621.075000px;}
.y80{bottom:624.135000px;}
.ya3{bottom:630.075000px;}
.y19{bottom:633.855000px;}
.y4e{bottom:640.875000px;}
.y7f{bottom:644.115000px;}
.ya2{bottom:649.905000px;}
.y18{bottom:653.685000px;}
.y4d{bottom:660.705000px;}
.y7e{bottom:663.945000px;}
.ya1{bottom:669.705000px;}
.y17{bottom:673.665000px;}
.y4c{bottom:680.505000px;}
.y7d{bottom:683.745000px;}
.ya0{bottom:689.505000px;}
.y16{bottom:693.465000px;}
.y4b{bottom:700.485000px;}
.y7c{bottom:703.545000px;}
.y9f{bottom:709.485000px;}
.y15{bottom:713.265000px;}
.y7b{bottom:723.345000px;}
.y4a{bottom:729.285000px;}
.y14{bottom:733.065000px;}
.y7a{bottom:743.325000px;}
.y49{bottom:749.085000px;}
.y13{bottom:755.205000px;}
.y79{bottom:763.125000px;}
.y48{bottom:768.885000px;}
.y12{bottom:780.225000px;}
.y78{bottom:782.925000px;}
.y47{bottom:788.685000px;}
.y11{bottom:800.025000px;}
.y77{bottom:802.725000px;}
.y46{bottom:808.665000px;}
.y10{bottom:820.005000px;}
.y76{bottom:822.525000px;}
.y45{bottom:828.465000px;}
.yf{bottom:839.805000px;}
.y75{bottom:842.505000px;}
.y44{bottom:848.265000px;}
.ye{bottom:859.605000px;}
.y74{bottom:862.305000px;}
.y43{bottom:868.065000px;}
.yd{bottom:879.405000px;}
.y73{bottom:882.105000px;}
.y42{bottom:887.865000px;}
.yc{bottom:899.250000px;}
.y72{bottom:901.950000px;}
.y41{bottom:907.890000px;}
.yb{bottom:914.550000px;}
.y71{bottom:921.750000px;}
.y40{bottom:927.690000px;}
.ya{bottom:936.330000px;}
.y70{bottom:941.730000px;}
.y3f{bottom:947.490000px;}
.y9{bottom:957.570000px;}
.y6f{bottom:961.530000px;}
.y3e{bottom:967.290000px;}
.y6e{bottom:976.290000px;}
.y8{bottom:980.970000px;}
.y3d{bottom:987.090000px;}
.y6d{bottom:1002.570000px;}
.y3c{bottom:1007.070000px;}
.y7{bottom:1012.830000px;}
.y3b{bottom:1026.870000px;}
.y6c{bottom:1027.950000px;}
.y3a{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.y6b{bottom:1054.230000px;}
.y39{bottom:1066.470000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.270000px;}
.y37{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.y36{bottom:1126.050000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.850000px;}
.y34{bottom:1165.680000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.h14{height:2.010938px;}
.h10{height:19.800000px;}
.he{height:19.980000px;}
.hc{height:25.380000px;}
.hb{height:25.560000px;}
.h7{height:27.147656px;}
.h11{height:39.600000px;}
.hd{height:39.780000px;}
.hf{height:40.472227px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.h12{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.ha{height:49.255313px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.h9{height:67.824844px;}
.h13{height:84.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:62.460000px;}
.w4{width:64.476000px;}
.w8{width:66.600000px;}
.w7{width:66.816000px;}
.wd{width:81.360000px;}
.wc{width:106.056000px;}
.wf{width:126.360000px;}
.we{width:126.396000px;}
.wb{width:126.720000px;}
.w6{width:182.910000px;}
.w10{width:210.810000px;}
.w9{width:244.470000px;}
.w3{width:284.790000px;}
.wa{width:316.335000px;}
.w11{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.094000px;}
.x1{left:54.179987px;}
.x11{left:71.099987px;}
.x12{left:98.135987px;}
.xc{left:102.816000px;}
.x8{left:104.975987px;}
.x2{left:108.035987px;}
.x9{left:146.016000px;}
.x3{left:149.256000px;}
.x13{left:191.370000px;}
.x14{left:264.810000px;}
.xd{left:347.655000px;}
.xa{left:430.815000px;}
.x5{left:434.055000px;}
.xf{left:454.965000px;}
.x6{left:498.525000px;}
.x10{left:537.225000px;}
.x7{left:560.985000px;}
.xb{left:564.225000px;}
.xe{left:663.990000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lsd{letter-spacing:37.200640pt;}
.ls4{letter-spacing:178.848000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wsa{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.185067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2264.549760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._b{margin-left:-5.889280pt;}
._a{margin-left:-4.675413pt;}
._d{margin-left:-3.770880pt;}
._c{margin-left:-2.702080pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._e{width:2.451413pt;}
._10{width:3.622187pt;}
._f{width:4.515200pt;}
._12{width:5.949440pt;}
._1b{width:6.843307pt;}
._11{width:7.791573pt;}
._15{width:9.143040pt;}
._14{width:10.252160pt;}
._16{width:11.164160pt;}
._13{width:12.213760pt;}
._1d{width:14.608000pt;}
._1c{width:15.564160pt;}
._1a{width:16.883200pt;}
._19{width:17.963520pt;}
._9{width:19.242027pt;}
._8{width:20.343680pt;}
._18{width:21.885440pt;}
._1e{width:22.983467pt;}
._17{width:178.493867pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:5.120000pt;}
.y91{bottom:5.280000pt;}
.yb4{bottom:9.600000pt;}
.y56{bottom:10.080000pt;}
.y53{bottom:10.240000pt;}
.y95{bottom:13.920000pt;}
.y8f{bottom:14.080000pt;}
.yb3{bottom:27.200000pt;}
.yb0{bottom:30.880000pt;}
.yb2{bottom:44.826667pt;}
.y6{bottom:53.440000pt;}
.yb1{bottom:62.426667pt;}
.y6a{bottom:78.240000pt;}
.y9e{bottom:88.320000pt;}
.y69{bottom:95.840000pt;}
.yaf{bottom:98.720000pt;}
.y9d{bottom:105.920000pt;}
.y32{bottom:112.640000pt;}
.y68{bottom:113.600000pt;}
.y9c{bottom:123.680000pt;}
.y31{bottom:130.240000pt;}
.y67{bottom:131.200000pt;}
.y9b{bottom:141.306667pt;}
.y30{bottom:147.866667pt;}
.y66{bottom:148.826667pt;}
.y9a{bottom:158.906667pt;}
.y2f{bottom:165.466667pt;}
.y65{bottom:166.426667pt;}
.y99{bottom:176.506667pt;}
.y2e{bottom:183.226667pt;}
.y64{bottom:184.026667pt;}
.y98{bottom:194.106667pt;}
.y2d{bottom:200.826667pt;}
.y63{bottom:201.786667pt;}
.y97{bottom:211.866667pt;}
.y2c{bottom:218.426667pt;}
.y62{bottom:219.386667pt;}
.y96{bottom:229.466667pt;}
.y2b{bottom:236.026667pt;}
.y61{bottom:236.986667pt;}
.y94{bottom:241.946667pt;}
.y2a{bottom:253.626667pt;}
.y60{bottom:254.586667pt;}
.y93{bottom:259.546667pt;}
.y29{bottom:271.386667pt;}
.y5f{bottom:272.186667pt;}
.y8e{bottom:277.146667pt;}
.y28{bottom:288.986667pt;}
.y5e{bottom:289.946667pt;}
.y90{bottom:294.746667pt;}
.y27{bottom:306.586667pt;}
.y5d{bottom:307.546667pt;}
.y8d{bottom:317.626667pt;}
.y26{bottom:324.186667pt;}
.y5c{bottom:325.146667pt;}
.y8c{bottom:335.226667pt;}
.y25{bottom:341.786667pt;}
.y5b{bottom:342.746667pt;}
.y8b{bottom:352.826667pt;}
.y24{bottom:359.586667pt;}
.y5a{bottom:360.386667pt;}
.yae{bottom:366.146667pt;}
.y8a{bottom:370.466667pt;}
.y59{bottom:373.666667pt;}
.y23{bottom:377.186667pt;}
.yad{bottom:383.746667pt;}
.y89{bottom:388.226667pt;}
.y22{bottom:394.786667pt;}
.y58{bottom:396.866667pt;}
.yac{bottom:401.346667pt;}
.y88{bottom:405.826667pt;}
.y21{bottom:412.386667pt;}
.yab{bottom:418.946667pt;}
.y57{bottom:419.586667pt;}
.y87{bottom:423.426667pt;}
.y20{bottom:429.986667pt;}
.yaa{bottom:436.546667pt;}
.y86{bottom:441.026667pt;}
.y55{bottom:442.306667pt;}
.y1f{bottom:449.666667pt;}
.ya9{bottom:454.306667pt;}
.y85{bottom:458.626667pt;}
.y54{bottom:464.866667pt;}
.ya8{bottom:471.906667pt;}
.y1e{bottom:475.266667pt;}
.y84{bottom:484.386667pt;}
.y52{bottom:488.226667pt;}
.ya7{bottom:489.506667pt;}
.y1d{bottom:492.866667pt;}
.y83{bottom:501.986667pt;}
.ya6{bottom:507.106667pt;}
.y1c{bottom:510.626667pt;}
.y51{bottom:516.706667pt;}
.y82{bottom:519.586667pt;}
.ya5{bottom:524.706667pt;}
.y1b{bottom:528.226667pt;}
.y50{bottom:534.466667pt;}
.y81{bottom:537.186667pt;}
.ya4{bottom:542.466667pt;}
.y1a{bottom:545.826667pt;}
.y4f{bottom:552.066667pt;}
.y80{bottom:554.786667pt;}
.ya3{bottom:560.066667pt;}
.y19{bottom:563.426667pt;}
.y4e{bottom:569.666667pt;}
.y7f{bottom:572.546667pt;}
.ya2{bottom:577.693333pt;}
.y18{bottom:581.053333pt;}
.y4d{bottom:587.293333pt;}
.y7e{bottom:590.173333pt;}
.ya1{bottom:595.293333pt;}
.y17{bottom:598.813333pt;}
.y4c{bottom:604.893333pt;}
.y7d{bottom:607.773333pt;}
.ya0{bottom:612.893333pt;}
.y16{bottom:616.413333pt;}
.y4b{bottom:622.653333pt;}
.y7c{bottom:625.373333pt;}
.y9f{bottom:630.653333pt;}
.y15{bottom:634.013333pt;}
.y7b{bottom:642.973333pt;}
.y4a{bottom:648.253333pt;}
.y14{bottom:651.613333pt;}
.y7a{bottom:660.733333pt;}
.y49{bottom:665.853333pt;}
.y13{bottom:671.293333pt;}
.y79{bottom:678.333333pt;}
.y48{bottom:683.453333pt;}
.y12{bottom:693.533333pt;}
.y78{bottom:695.933333pt;}
.y47{bottom:701.053333pt;}
.y11{bottom:711.133333pt;}
.y77{bottom:713.533333pt;}
.y46{bottom:718.813333pt;}
.y10{bottom:728.893333pt;}
.y76{bottom:731.133333pt;}
.y45{bottom:736.413333pt;}
.yf{bottom:746.493333pt;}
.y75{bottom:748.893333pt;}
.y44{bottom:754.013333pt;}
.ye{bottom:764.093333pt;}
.y74{bottom:766.493333pt;}
.y43{bottom:771.613333pt;}
.yd{bottom:781.693333pt;}
.y73{bottom:784.093333pt;}
.y42{bottom:789.213333pt;}
.yc{bottom:799.333333pt;}
.y72{bottom:801.733333pt;}
.y41{bottom:807.013333pt;}
.yb{bottom:812.933333pt;}
.y71{bottom:819.333333pt;}
.y40{bottom:824.613333pt;}
.ya{bottom:832.293333pt;}
.y70{bottom:837.093333pt;}
.y3f{bottom:842.213333pt;}
.y9{bottom:851.173333pt;}
.y6f{bottom:854.693333pt;}
.y3e{bottom:859.813333pt;}
.y6e{bottom:867.813333pt;}
.y8{bottom:871.973333pt;}
.y3d{bottom:877.413333pt;}
.y6d{bottom:891.173333pt;}
.y3c{bottom:895.173333pt;}
.y7{bottom:900.293333pt;}
.y3b{bottom:912.773333pt;}
.y6c{bottom:913.733333pt;}
.y3a{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.y6b{bottom:937.093333pt;}
.y39{bottom:947.973333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.573333pt;}
.y37{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.y36{bottom:1000.933333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.533333pt;}
.y34{bottom:1036.160000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.h14{height:1.787500pt;}
.h10{height:17.600000pt;}
.he{height:17.760000pt;}
.hc{height:22.560000pt;}
.hb{height:22.720000pt;}
.h7{height:24.131250pt;}
.h11{height:35.200000pt;}
.hd{height:35.360000pt;}
.hf{height:35.975313pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.h12{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.ha{height:43.782500pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.h9{height:60.288750pt;}
.h13{height:74.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:55.520000pt;}
.w4{width:57.312000pt;}
.w8{width:59.200000pt;}
.w7{width:59.392000pt;}
.wd{width:72.320000pt;}
.wc{width:94.272000pt;}
.wf{width:112.320000pt;}
.we{width:112.352000pt;}
.wb{width:112.640000pt;}
.w6{width:162.586667pt;}
.w10{width:187.386667pt;}
.w9{width:217.306667pt;}
.w3{width:253.146667pt;}
.wa{width:281.186667pt;}
.w11{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.194667pt;}
.x1{left:48.159988pt;}
.x11{left:63.199988pt;}
.x12{left:87.231988pt;}
.xc{left:91.392000pt;}
.x8{left:93.311988pt;}
.x2{left:96.031988pt;}
.x9{left:129.792000pt;}
.x3{left:132.672000pt;}
.x13{left:170.106667pt;}
.x14{left:235.386667pt;}
.xd{left:309.026667pt;}
.xa{left:382.946667pt;}
.x5{left:385.826667pt;}
.xf{left:404.413333pt;}
.x6{left:443.133333pt;}
.x10{left:477.533333pt;}
.x7{left:498.653333pt;}
.xb{left:501.533333pt;}
.xe{left:590.213333pt;}
}




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