
    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_c0456b0968ea77258f94ed8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916016;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_55e78de779b2b6bf27cfa48c.woff2')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_8ea21c6b5b154e3fe8335b9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_84fe0697ffda041b4d615d4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_7f12c0a74d125715c38d12b7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7c644902c9af731975a1a5ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.208200px;}
.lsa{letter-spacing:-0.206400px;}
.ls15{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.lse{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.109440px;}
.ls9{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.511800px;}
.lsd{letter-spacing:0.900000px;}
.lsc{letter-spacing:10.980000px;}
.ls13{letter-spacing:16.506720px;}
.ls3{letter-spacing:26.586720px;}
.ls10{letter-spacing:46.026720px;}
.ls12{letter-spacing:46.170720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.238800px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.ws1{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-6.094080px;}
._e{margin-left:-4.570560px;}
._11{margin-left:-3.444480px;}
._c{margin-left:-2.284320px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._13{width:2.318640px;}
._12{width:3.595680px;}
._f{width:4.596480px;}
._10{width:5.800320px;}
._15{width:7.290720px;}
._18{width:8.396640px;}
._3{width:9.540000px;}
._17{width:11.158560px;}
._1{width:12.420000px;}
._16{width:13.754880px;}
._14{width:16.135200px;}
._1d{width:17.388720px;}
._19{width:19.241280px;}
._1a{width:20.872560px;}
._26{width:22.002480px;}
._1b{width:23.007600px;}
._1c{width:24.020640px;}
._1f{width:25.904640px;}
._1e{width:27.682320px;}
._21{width:28.810320px;}
._25{width:30.728640px;}
._24{width:31.911840px;}
._23{width:33.883920px;}
._22{width:35.198640px;}
._2c{width:37.290240px;}
._29{width:38.963520px;}
._28{width:40.577040px;}
._31{width:42.847920px;}
._27{width:44.461440px;}
._2d{width:45.596880px;}
._2e{width:46.732320px;}
._2a{width:48.883680px;}
._2f{width:51.632640px;}
._30{width:52.648560px;}
._32{width:72.249840px;}
._33{width:75.557520px;}
._35{width:85.643760px;}
._34{width:86.771520px;}
._8{width:88.200000px;}
._20{width:95.718000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._9{width:108.180000px;}
._2{width:165.060000px;}
._2b{width:168.530400px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc6{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y30{bottom:5.760000px;}
.y42{bottom:7.056000px;}
.y10{bottom:7.236000px;}
.y1f{bottom:8.820000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y2f{bottom:25.560000px;}
.y11{bottom:38.700000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y2e{bottom:45.360000px;}
.yf{bottom:53.100000px;}
.y41{bottom:53.280000px;}
.y6{bottom:63.210000px;}
.y2d{bottom:65.160000px;}
.yb{bottom:73.110000px;}
.y3f{bottom:82.296000px;}
.y5{bottom:84.450000px;}
.y2c{bottom:85.140000px;}
.ya{bottom:92.370000px;}
.y79{bottom:92.736000px;}
.y3e{bottom:102.096000px;}
.y2b{bottom:104.940000px;}
.y4{bottom:106.950000px;}
.y9{bottom:110.190000px;}
.y78{bottom:112.536000px;}
.y3d{bottom:121.896000px;}
.y2a{bottom:124.740000px;}
.y3{bottom:126.750000px;}
.y77{bottom:132.336000px;}
.y3c{bottom:141.876000px;}
.y29{bottom:144.540000px;}
.y76{bottom:152.310000px;}
.y3b{bottom:161.670000px;}
.y28{bottom:164.340000px;}
.y75{bottom:172.110000px;}
.y3a{bottom:181.470000px;}
.y27{bottom:184.350000px;}
.y74{bottom:191.910000px;}
.y39{bottom:201.270000px;}
.y26{bottom:204.150000px;}
.y73{bottom:211.710000px;}
.y38{bottom:221.070000px;}
.y25{bottom:223.950000px;}
.y72{bottom:231.510000px;}
.y37{bottom:241.050000px;}
.y24{bottom:243.750000px;}
.y71{bottom:251.490000px;}
.y36{bottom:260.850000px;}
.y23{bottom:263.550000px;}
.y70{bottom:271.290000px;}
.y35{bottom:280.650000px;}
.y22{bottom:283.530000px;}
.y6f{bottom:291.090000px;}
.y34{bottom:300.450000px;}
.y21{bottom:303.330000px;}
.y6e{bottom:310.890000px;}
.y33{bottom:320.250000px;}
.y6d{bottom:330.735000px;}
.y32{bottom:340.275000px;}
.y6c{bottom:350.715000px;}
.y6b{bottom:370.515000px;}
.y31{bottom:374.835000px;}
.y6a{bottom:390.315000px;}
.y69{bottom:410.115000px;}
.y20{bottom:415.335000px;}
.y68{bottom:429.915000px;}
.y67{bottom:449.895000px;}
.y66{bottom:469.695000px;}
.y65{bottom:489.495000px;}
.y64{bottom:509.295000px;}
.y63{bottom:529.095000px;}
.y62{bottom:549.075000px;}
.y61{bottom:568.875000px;}
.y60{bottom:588.675000px;}
.y5f{bottom:608.505000px;}
.y5e{bottom:628.305000px;}
.y5d{bottom:648.285000px;}
.y5c{bottom:668.085000px;}
.y5b{bottom:687.885000px;}
.y5a{bottom:707.685000px;}
.y59{bottom:727.485000px;}
.y1e{bottom:733.425000px;}
.y58{bottom:747.465000px;}
.y57{bottom:767.265000px;}
.y1d{bottom:780.765000px;}
.y56{bottom:787.065000px;}
.y1c{bottom:805.965000px;}
.y55{bottom:806.865000px;}
.y1b{bottom:825.765000px;}
.y54{bottom:826.665000px;}
.y1a{bottom:840.345000px;}
.y53{bottom:846.645000px;}
.y19{bottom:865.410000px;}
.y52{bottom:866.490000px;}
.y18{bottom:879.990000px;}
.y51{bottom:886.290000px;}
.y17{bottom:905.190000px;}
.y50{bottom:906.090000px;}
.y16{bottom:920.310000px;}
.y4f{bottom:925.890000px;}
.y15{bottom:942.090000px;}
.y4e{bottom:945.870000px;}
.y14{bottom:963.330000px;}
.y4d{bottom:965.670000px;}
.y4c{bottom:985.470000px;}
.y13{bottom:986.910000px;}
.y4b{bottom:1005.270000px;}
.y12{bottom:1018.590000px;}
.y4a{bottom:1025.070000px;}
.y49{bottom:1045.050000px;}
.ye{bottom:1045.410000px;}
.y48{bottom:1064.850000px;}
.y1{bottom:1067.730000px;}
.y47{bottom:1084.650000px;}
.y46{bottom:1104.450000px;}
.y45{bottom:1124.250000px;}
.y44{bottom:1144.260000px;}
.y43{bottom:1164.060000px;}
.y40{bottom:1193.400000px;}
.h3{height:2.016563px;}
.h14{height:22.356000px;}
.ha{height:22.536000px;}
.h10{height:22.860000px;}
.hf{height:34.855313px;}
.h12{height:39.600000px;}
.h15{height:41.843672px;}
.h4{height:42.164648px;}
.h13{height:43.506914px;}
.h8{height:48.410156px;}
.h5{height:50.800781px;}
.hc{height:53.224453px;}
.h6{height:53.573906px;}
.hb{height:59.383125px;}
.hd{height:59.439023px;}
.h7{height:64.546875px;}
.h9{height:65.884219px;}
.he{height:67.565039px;}
.h2{height:140.796000px;}
.h11{height:317.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:35.460000px;}
.w4{width:158.940000px;}
.w2{width:172.830000px;}
.w8{width:192.090000px;}
.w3{width:464.865000px;}
.w9{width:585.645000px;}
.w7{width:748.950000px;}
.wa{width:777.750000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.780000px;}
.xa{left:62.100000px;}
.x6{left:80.865000px;}
.xc{left:90.180000px;}
.x13{left:108.035987px;}
.x10{left:129.815987px;}
.x7{left:140.085000px;}
.x2{left:160.050000px;}
.x3{left:221.070000px;}
.x5{left:248.265000px;}
.xe{left:249.870000px;}
.xf{left:473.504987px;}
.x11{left:500.504987px;}
.x12{left:527.504987px;}
.x8{left:685.950000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.185067pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.097280pt;}
.ls9{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.454933pt;}
.lsd{letter-spacing:0.800000pt;}
.lsc{letter-spacing:9.760000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls3{letter-spacing:23.632640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls12{letter-spacing:41.040640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.ws1{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-5.416960pt;}
._e{margin-left:-4.062720pt;}
._11{margin-left:-3.061760pt;}
._c{margin-left:-2.030507pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._13{width:2.061013pt;}
._12{width:3.196160pt;}
._f{width:4.085760pt;}
._10{width:5.155840pt;}
._15{width:6.480640pt;}
._18{width:7.463680pt;}
._3{width:8.480000pt;}
._17{width:9.918720pt;}
._1{width:11.040000pt;}
._16{width:12.226560pt;}
._14{width:14.342400pt;}
._1d{width:15.456640pt;}
._19{width:17.103360pt;}
._1a{width:18.553387pt;}
._26{width:19.557760pt;}
._1b{width:20.451200pt;}
._1c{width:21.351680pt;}
._1f{width:23.026347pt;}
._1e{width:24.606507pt;}
._21{width:25.609173pt;}
._25{width:27.314347pt;}
._24{width:28.366080pt;}
._23{width:30.119040pt;}
._22{width:31.287680pt;}
._2c{width:33.146880pt;}
._29{width:34.634240pt;}
._28{width:36.068480pt;}
._31{width:38.087040pt;}
._27{width:39.521280pt;}
._2d{width:40.530560pt;}
._2e{width:41.539840pt;}
._2a{width:43.452160pt;}
._2f{width:45.895680pt;}
._30{width:46.798720pt;}
._32{width:64.222080pt;}
._33{width:67.162240pt;}
._35{width:76.127787pt;}
._34{width:77.130240pt;}
._8{width:78.400000pt;}
._20{width:85.082667pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._9{width:96.160000pt;}
._2{width:146.720000pt;}
._2b{width:149.804800pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y30{bottom:5.120000pt;}
.y42{bottom:6.272000pt;}
.y10{bottom:6.432000pt;}
.y1f{bottom:7.840000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y2f{bottom:22.720000pt;}
.y11{bottom:34.400000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y2e{bottom:40.320000pt;}
.yf{bottom:47.200000pt;}
.y41{bottom:47.360000pt;}
.y6{bottom:56.186667pt;}
.y2d{bottom:57.920000pt;}
.yb{bottom:64.986667pt;}
.y3f{bottom:73.152000pt;}
.y5{bottom:75.066667pt;}
.y2c{bottom:75.680000pt;}
.ya{bottom:82.106667pt;}
.y79{bottom:82.432000pt;}
.y3e{bottom:90.752000pt;}
.y2b{bottom:93.280000pt;}
.y4{bottom:95.066667pt;}
.y9{bottom:97.946667pt;}
.y78{bottom:100.032000pt;}
.y3d{bottom:108.352000pt;}
.y2a{bottom:110.880000pt;}
.y3{bottom:112.666667pt;}
.y77{bottom:117.632000pt;}
.y3c{bottom:126.112000pt;}
.y29{bottom:128.480000pt;}
.y76{bottom:135.386667pt;}
.y3b{bottom:143.706667pt;}
.y28{bottom:146.080000pt;}
.y75{bottom:152.986667pt;}
.y3a{bottom:161.306667pt;}
.y27{bottom:163.866667pt;}
.y74{bottom:170.586667pt;}
.y39{bottom:178.906667pt;}
.y26{bottom:181.466667pt;}
.y73{bottom:188.186667pt;}
.y38{bottom:196.506667pt;}
.y25{bottom:199.066667pt;}
.y72{bottom:205.786667pt;}
.y37{bottom:214.266667pt;}
.y24{bottom:216.666667pt;}
.y71{bottom:223.546667pt;}
.y36{bottom:231.866667pt;}
.y23{bottom:234.266667pt;}
.y70{bottom:241.146667pt;}
.y35{bottom:249.466667pt;}
.y22{bottom:252.026667pt;}
.y6f{bottom:258.746667pt;}
.y34{bottom:267.066667pt;}
.y21{bottom:269.626667pt;}
.y6e{bottom:276.346667pt;}
.y33{bottom:284.666667pt;}
.y6d{bottom:293.986667pt;}
.y32{bottom:302.466667pt;}
.y6c{bottom:311.746667pt;}
.y6b{bottom:329.346667pt;}
.y31{bottom:333.186667pt;}
.y6a{bottom:346.946667pt;}
.y69{bottom:364.546667pt;}
.y20{bottom:369.186667pt;}
.y68{bottom:382.146667pt;}
.y67{bottom:399.906667pt;}
.y66{bottom:417.506667pt;}
.y65{bottom:435.106667pt;}
.y64{bottom:452.706667pt;}
.y63{bottom:470.306667pt;}
.y62{bottom:488.066667pt;}
.y61{bottom:505.666667pt;}
.y60{bottom:523.266667pt;}
.y5f{bottom:540.893333pt;}
.y5e{bottom:558.493333pt;}
.y5d{bottom:576.253333pt;}
.y5c{bottom:593.853333pt;}
.y5b{bottom:611.453333pt;}
.y5a{bottom:629.053333pt;}
.y59{bottom:646.653333pt;}
.y1e{bottom:651.933333pt;}
.y58{bottom:664.413333pt;}
.y57{bottom:682.013333pt;}
.y1d{bottom:694.013333pt;}
.y56{bottom:699.613333pt;}
.y1c{bottom:716.413333pt;}
.y55{bottom:717.213333pt;}
.y1b{bottom:734.013333pt;}
.y54{bottom:734.813333pt;}
.y1a{bottom:746.973333pt;}
.y53{bottom:752.573333pt;}
.y19{bottom:769.253333pt;}
.y52{bottom:770.213333pt;}
.y18{bottom:782.213333pt;}
.y51{bottom:787.813333pt;}
.y17{bottom:804.613333pt;}
.y50{bottom:805.413333pt;}
.y16{bottom:818.053333pt;}
.y4f{bottom:823.013333pt;}
.y15{bottom:837.413333pt;}
.y4e{bottom:840.773333pt;}
.y14{bottom:856.293333pt;}
.y4d{bottom:858.373333pt;}
.y4c{bottom:875.973333pt;}
.y13{bottom:877.253333pt;}
.y4b{bottom:893.573333pt;}
.y12{bottom:905.413333pt;}
.y4a{bottom:911.173333pt;}
.y49{bottom:928.933333pt;}
.ye{bottom:929.253333pt;}
.y48{bottom:946.533333pt;}
.y1{bottom:949.093333pt;}
.y47{bottom:964.133333pt;}
.y46{bottom:981.733333pt;}
.y45{bottom:999.333333pt;}
.y44{bottom:1017.120000pt;}
.y43{bottom:1034.720000pt;}
.y40{bottom:1060.800000pt;}
.h3{height:1.792500pt;}
.h14{height:19.872000pt;}
.ha{height:20.032000pt;}
.h10{height:20.320000pt;}
.hf{height:30.982500pt;}
.h12{height:35.200000pt;}
.h15{height:37.194375pt;}
.h4{height:37.479688pt;}
.h13{height:38.672812pt;}
.h8{height:43.031250pt;}
.h5{height:45.156250pt;}
.hc{height:47.310625pt;}
.h6{height:47.621250pt;}
.hb{height:52.785000pt;}
.hd{height:52.834688pt;}
.h7{height:57.375000pt;}
.h9{height:58.563750pt;}
.he{height:60.057813pt;}
.h2{height:125.152000pt;}
.h11{height:282.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:31.520000pt;}
.w4{width:141.280000pt;}
.w2{width:153.626667pt;}
.w8{width:170.746667pt;}
.w3{width:413.213333pt;}
.w9{width:520.573333pt;}
.w7{width:665.733333pt;}
.wa{width:691.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.360000pt;}
.xa{left:55.200000pt;}
.x6{left:71.880000pt;}
.xc{left:80.160000pt;}
.x13{left:96.031988pt;}
.x10{left:115.391988pt;}
.x7{left:124.520000pt;}
.x2{left:142.266667pt;}
.x3{left:196.506667pt;}
.x5{left:220.680000pt;}
.xe{left:222.106667pt;}
.xf{left:420.893322pt;}
.x11{left:444.893322pt;}
.x12{left:468.893322pt;}
.x8{left:609.733333pt;}
}




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