
    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_23963bc65cef637a3cc3efb2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_ed97ce3d61b2f7ce1d85b53d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_e90e630f5dc423249c165678.woff')format("woff");}.ff3{font-family:ff3;line-height:0.924805;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_54752827062a8bf7fe08c9c8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.924805;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_e33435bdef684238fbbea5e2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_96627b96bcd9c58c5c989546.woff')format("woff");}.ff6{font-family:ff6;line-height:1.163086;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_21642ee4362eb08a546885d8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e63d874c0a98b1cf0793874.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3bb5278192d49a7bff3487c8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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_a3d0b74eb9f5256c48b8de06.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d05f59ea81e3b2fa840a1715.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c2e0ac7496bae012042db21b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.684082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fea58d4debe255c51a38db85.woff')format("woff");}.ffd{font-family:ffd;line-height:0.760742;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7ba045682e1a7cb94192f068.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_072a7ab3aadcde2f970a9f94.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7c94b74e7f9d04f504318b21.woff')format("woff");}.ff10{font-family:ff10;line-height:0.912109;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:ff11;src:url('chunks/assets/font_3d2c0f916a665c301049cbac.woff')format("woff");}.ff11{font-family:ff11;line-height:0.919434;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:ff12;src:url('chunks/assets/font_33440b416dd49dcf21d60e24.woff')format("woff");}.ff12{font-family:ff12;line-height:0.919434;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.015120px;}
.ls2{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.358560px;}
.lsf{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.404640px;}
.lsd{letter-spacing:3.024000px;}
.ls4{letter-spacing:3.060000px;}
.lsb{letter-spacing:5.220000px;}
.ls3{letter-spacing:7.380000px;}
.lse{letter-spacing:15.300000px;}
.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;}
}
.ws1{word-spacing:-29.090736px;}
.ws2{word-spacing:-29.052000px;}
.wsa{word-spacing:-25.798176px;}
.ws0{word-spacing:-19.368000px;}
.wsc{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.824000px;}
.ws8{word-spacing:-13.608000px;}
.wse{word-spacing:-13.536000px;}
.ws3{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.944000px;}
.wsb{word-spacing:-10.902240px;}
.ws6{word-spacing:-10.476000px;}
.ws5{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._e{margin-left:-12.960000px;}
._6{margin-left:-9.581040px;}
._11{margin-left:-2.364720px;}
._2{margin-left:-1.360800px;}
._3{width:1.179360px;}
._5{width:2.471760px;}
._4{width:3.583440px;}
._0{width:5.443200px;}
._1{width:6.577200px;}
._8{width:7.786800px;}
._7{width:9.018000px;}
._9{width:10.422000px;}
._c{width:12.150000px;}
._b{width:15.249600px;}
._a{width:16.740000px;}
._f{width:31.266000px;}
._10{width:32.806080px;}
._d{width:77.814000px;}
.fc2{color:rgb(10,80,164);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.760000px;}
.fs9{font-size:41.904000px;}
.fs4{font-size:45.360000px;}
.fs5{font-size:45.504000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.fs7{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y50{bottom:18.900000px;}
.y6{bottom:19.620000px;}
.y4f{bottom:37.980000px;}
.ya{bottom:61.020000px;}
.y9{bottom:75.096000px;}
.y8{bottom:89.316000px;}
.y7{bottom:103.536000px;}
.yf{bottom:146.376000px;}
.y8c{bottom:150.690000px;}
.y43{bottom:155.910000px;}
.y8b{bottom:169.590000px;}
.ye{bottom:172.110000px;}
.y42{bottom:172.830000px;}
.y8a{bottom:188.310000px;}
.yd{bottom:188.850000px;}
.y41{bottom:189.930000px;}
.y40{bottom:206.850000px;}
.y89{bottom:207.030000px;}
.yc{bottom:214.770000px;}
.y3f{bottom:223.950000px;}
.y88{bottom:225.930000px;}
.yb{bottom:240.510000px;}
.y87{bottom:244.650000px;}
.y3e{bottom:245.370000px;}
.y3d{bottom:262.470000px;}
.y86{bottom:263.550000px;}
.y3c{bottom:279.390000px;}
.y85{bottom:282.270000px;}
.y3b{bottom:296.490000px;}
.y84{bottom:301.170000px;}
.y3a{bottom:313.410000px;}
.y83{bottom:319.890000px;}
.ya2{bottom:329.430000px;}
.y39{bottom:330.510000px;}
.y82{bottom:334.110000px;}
.y15{bottom:340.095000px;}
.y38{bottom:347.475000px;}
.ya1{bottom:348.195000px;}
.y81{bottom:348.555000px;}
.y14{bottom:353.235000px;}
.y80{bottom:362.775000px;}
.y37{bottom:364.575000px;}
.y13{bottom:366.555000px;}
.ya0{bottom:367.095000px;}
.y7f{bottom:377.175000px;}
.y9f{bottom:381.315000px;}
.y36{bottom:385.995000px;}
.y7e{bottom:391.395000px;}
.y9e{bottom:400.215000px;}
.y35{bottom:403.095000px;}
.y7d{bottom:405.795000px;}
.y9d{bottom:414.435000px;}
.y34{bottom:420.015000px;}
.y7c{bottom:434.235000px;}
.y33{bottom:437.115000px;}
.y7b{bottom:453.135000px;}
.y32{bottom:454.035000px;}
.ycb{bottom:454.215000px;}
.y7a{bottom:467.355000px;}
.yca{bottom:468.435000px;}
.y31{bottom:471.135000px;}
.y79{bottom:481.755000px;}
.yc9{bottom:482.835000px;}
.y30{bottom:488.055000px;}
.y78{bottom:495.975000px;}
.yc8{bottom:501.555000px;}
.y2f{bottom:505.155000px;}
.y77{bottom:510.375000px;}
.yc7{bottom:515.775000px;}
.y2e{bottom:522.075000px;}
.y76{bottom:524.595000px;}
.yc6{bottom:530.175000px;}
.y75{bottom:538.815000px;}
.y2d{bottom:539.175000px;}
.yc5{bottom:544.395000px;}
.y74{bottom:553.215000px;}
.y2c{bottom:556.275000px;}
.yc4{bottom:563.295000px;}
.y73{bottom:567.435000px;}
.yc3{bottom:577.515000px;}
.y2b{bottom:577.695000px;}
.y72{bottom:586.335000px;}
.yc2{bottom:591.915000px;}
.y2a{bottom:594.795000px;}
.y71{bottom:600.555000px;}
.yc1{bottom:606.135000px;}
.y70{bottom:614.985000px;}
.y29{bottom:616.245000px;}
.yc0{bottom:624.885000px;}
.y6f{bottom:629.205000px;}
.y28{bottom:633.345000px;}
.ybf{bottom:639.285000px;}
.y6e{bottom:643.425000px;}
.y27{bottom:650.265000px;}
.ybe{bottom:653.505000px;}
.y6d{bottom:657.825000px;}
.y4c{bottom:662.865000px;}
.y26{bottom:667.365000px;}
.y6c{bottom:672.045000px;}
.ybd{bottom:672.405000px;}
.y4b{bottom:676.185000px;}
.y25{bottom:684.285000px;}
.ybc{bottom:686.625000px;}
.y4a{bottom:689.325000px;}
.y6b{bottom:690.945000px;}
.ybb{bottom:701.025000px;}
.y24{bottom:701.385000px;}
.y49{bottom:702.645000px;}
.y6a{bottom:705.165000px;}
.yba{bottom:715.245000px;}
.y48{bottom:715.785000px;}
.y23{bottom:718.305000px;}
.y69{bottom:719.565000px;}
.y47{bottom:729.105000px;}
.y9c{bottom:733.425000px;}
.y68{bottom:733.785000px;}
.yb9{bottom:733.965000px;}
.y22{bottom:735.405000px;}
.y46{bottom:742.965000px;}
.y67{bottom:748.185000px;}
.yb8{bottom:748.365000px;}
.y21{bottom:752.325000px;}
.y45{bottom:758.085000px;}
.y66{bottom:762.405000px;}
.yb7{bottom:767.085000px;}
.y20{bottom:769.425000px;}
.y9b{bottom:771.045000px;}
.y44{bottom:773.205000px;}
.y65{bottom:776.625000px;}
.yb6{bottom:781.485000px;}
.y9a{bottom:785.445000px;}
.y1f{bottom:786.345000px;}
.y64{bottom:791.025000px;}
.yb5{bottom:795.705000px;}
.y1e{bottom:803.445000px;}
.y99{bottom:804.165000px;}
.y63{bottom:805.245000px;}
.yb4{bottom:810.105000px;}
.y62{bottom:819.645000px;}
.y98{bottom:822.885000px;}
.y1d{bottom:824.865000px;}
.yb3{bottom:828.825000px;}
.y61{bottom:833.865000px;}
.y97{bottom:841.605000px;}
.y1c{bottom:841.965000px;}
.yb2{bottom:843.045000px;}
.y60{bottom:848.265000px;}
.yb1{bottom:857.445000px;}
.y1b{bottom:858.885000px;}
.y96{bottom:860.325000px;}
.y5f{bottom:862.485000px;}
.y1a{bottom:876.030000px;}
.yb0{bottom:876.210000px;}
.y5e{bottom:876.750000px;}
.y95{bottom:879.270000px;}
.yaf{bottom:890.610000px;}
.y5d{bottom:891.150000px;}
.y19{bottom:892.950000px;}
.y94{bottom:897.990000px;}
.y12{bottom:898.170000px;}
.yae{bottom:904.830000px;}
.y5c{bottom:905.370000px;}
.y18{bottom:910.050000px;}
.y11{bottom:911.310000px;}
.y93{bottom:916.890000px;}
.yad{bottom:923.730000px;}
.y5b{bottom:924.270000px;}
.y92{bottom:935.610000px;}
.yac{bottom:937.950000px;}
.y5a{bottom:938.490000px;}
.yab{bottom:952.170000px;}
.y59{bottom:952.890000px;}
.y17{bottom:954.330000px;}
.y3{bottom:957.930000px;}
.y58{bottom:967.110000px;}
.yaa{bottom:971.070000px;}
.y91{bottom:973.230000px;}
.y16{bottom:980.430000px;}
.y57{bottom:981.330000px;}
.y2{bottom:983.670000px;}
.ya9{bottom:985.290000px;}
.y90{bottom:991.950000px;}
.y56{bottom:995.730000px;}
.ya8{bottom:999.690000px;}
.y10{bottom:1008.330000px;}
.y1{bottom:1009.410000px;}
.y55{bottom:1009.950000px;}
.y8f{bottom:1010.850000px;}
.ya7{bottom:1018.410000px;}
.y54{bottom:1024.350000px;}
.y8e{bottom:1029.570000px;}
.ya6{bottom:1032.810000px;}
.y53{bottom:1038.570000px;}
.ya5{bottom:1047.030000px;}
.y8d{bottom:1048.470000px;}
.y52{bottom:1052.970000px;}
.ya4{bottom:1066.290000px;}
.y51{bottom:1067.190000px;}
.ya3{bottom:1120.470000px;}
.y5{bottom:1127.850000px;}
.y4e{bottom:1143.360000px;}
.y4{bottom:1169.280000px;}
.y4d{bottom:1172.160000px;}
.h12{height:29.158594px;}
.hc{height:29.259141px;}
.hb{height:29.464453px;}
.h17{height:29.790703px;}
.h6{height:31.672266px;}
.h7{height:31.772812px;}
.ha{height:32.717461px;}
.h11{height:33.683203px;}
.h10{height:34.036523px;}
.h8{height:36.180000px;}
.hd{height:37.494141px;}
.he{height:37.705078px;}
.hf{height:37.805625px;}
.h16{height:38.100586px;}
.h18{height:42.164648px;}
.h15{height:47.980898px;}
.h2{height:56.566406px;}
.h5{height:59.439023px;}
.h13{height:68.313164px;}
.h14{height:68.415891px;}
.h4{height:77.044922px;}
.h3{height:77.147648px;}
.h9{height:84.837305px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:65.699987px;}
.x7{left:69.479987px;}
.x1{left:70.559987px;}
.x11{left:82.439987px;}
.x5{left:224.849987px;}
.x6{left:260.129987px;}
.xa{left:366.194987px;}
.x4{left:438.194987px;}
.xb{left:439.994987px;}
.xc{left:445.934987px;}
.xd{left:570.164987px;}
.xe{left:627.404987px;}
.xf{left:719.969987px;}
.x2{left:729.869987px;}
.x3{left:735.269987px;}
.x8{left:740.309987px;}
.x9{left:744.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.013440pt;}
.ls2{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.318720pt;}
.lsf{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.359680pt;}
.lsd{letter-spacing:2.688000pt;}
.ls4{letter-spacing:2.720000pt;}
.lsb{letter-spacing:4.640000pt;}
.ls3{letter-spacing:6.560000pt;}
.lse{letter-spacing:13.600000pt;}
.ws1{word-spacing:-25.858432pt;}
.ws2{word-spacing:-25.824000pt;}
.wsa{word-spacing:-22.931712pt;}
.ws0{word-spacing:-17.216000pt;}
.wsc{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.288000pt;}
.ws8{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.032000pt;}
.ws3{word-spacing:-12.005120pt;}
.ws7{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.728000pt;}
.wsb{word-spacing:-9.690880pt;}
.ws6{word-spacing:-9.312000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._e{margin-left:-11.520000pt;}
._6{margin-left:-8.516480pt;}
._11{margin-left:-2.101973pt;}
._2{margin-left:-1.209600pt;}
._3{width:1.048320pt;}
._5{width:2.197120pt;}
._4{width:3.185280pt;}
._0{width:4.838400pt;}
._1{width:5.846400pt;}
._8{width:6.921600pt;}
._7{width:8.016000pt;}
._9{width:9.264000pt;}
._c{width:10.800000pt;}
._b{width:13.555200pt;}
._a{width:14.880000pt;}
._f{width:27.792000pt;}
._10{width:29.160960pt;}
._d{width:69.168000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:37.248000pt;}
.fs4{font-size:40.320000pt;}
.fs5{font-size:40.448000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.fs7{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:16.800000pt;}
.y6{bottom:17.440000pt;}
.y4f{bottom:33.760000pt;}
.ya{bottom:54.240000pt;}
.y9{bottom:66.752000pt;}
.y8{bottom:79.392000pt;}
.y7{bottom:92.032000pt;}
.yf{bottom:130.112000pt;}
.y8c{bottom:133.946667pt;}
.y43{bottom:138.586667pt;}
.y8b{bottom:150.746667pt;}
.ye{bottom:152.986667pt;}
.y42{bottom:153.626667pt;}
.y8a{bottom:167.386667pt;}
.yd{bottom:167.866667pt;}
.y41{bottom:168.826667pt;}
.y40{bottom:183.866667pt;}
.y89{bottom:184.026667pt;}
.yc{bottom:190.906667pt;}
.y3f{bottom:199.066667pt;}
.y88{bottom:200.826667pt;}
.yb{bottom:213.786667pt;}
.y87{bottom:217.466667pt;}
.y3e{bottom:218.106667pt;}
.y3d{bottom:233.306667pt;}
.y86{bottom:234.266667pt;}
.y3c{bottom:248.346667pt;}
.y85{bottom:250.906667pt;}
.y3b{bottom:263.546667pt;}
.y84{bottom:267.706667pt;}
.y3a{bottom:278.586667pt;}
.y83{bottom:284.346667pt;}
.ya2{bottom:292.826667pt;}
.y39{bottom:293.786667pt;}
.y82{bottom:296.986667pt;}
.y15{bottom:302.306667pt;}
.y38{bottom:308.866667pt;}
.ya1{bottom:309.506667pt;}
.y81{bottom:309.826667pt;}
.y14{bottom:313.986667pt;}
.y80{bottom:322.466667pt;}
.y37{bottom:324.066667pt;}
.y13{bottom:325.826667pt;}
.ya0{bottom:326.306667pt;}
.y7f{bottom:335.266667pt;}
.y9f{bottom:338.946667pt;}
.y36{bottom:343.106667pt;}
.y7e{bottom:347.906667pt;}
.y9e{bottom:355.746667pt;}
.y35{bottom:358.306667pt;}
.y7d{bottom:360.706667pt;}
.y9d{bottom:368.386667pt;}
.y34{bottom:373.346667pt;}
.y7c{bottom:385.986667pt;}
.y33{bottom:388.546667pt;}
.y7b{bottom:402.786667pt;}
.y32{bottom:403.586667pt;}
.ycb{bottom:403.746667pt;}
.y7a{bottom:415.426667pt;}
.yca{bottom:416.386667pt;}
.y31{bottom:418.786667pt;}
.y79{bottom:428.226667pt;}
.yc9{bottom:429.186667pt;}
.y30{bottom:433.826667pt;}
.y78{bottom:440.866667pt;}
.yc8{bottom:445.826667pt;}
.y2f{bottom:449.026667pt;}
.y77{bottom:453.666667pt;}
.yc7{bottom:458.466667pt;}
.y2e{bottom:464.066667pt;}
.y76{bottom:466.306667pt;}
.yc6{bottom:471.266667pt;}
.y75{bottom:478.946667pt;}
.y2d{bottom:479.266667pt;}
.yc5{bottom:483.906667pt;}
.y74{bottom:491.746667pt;}
.y2c{bottom:494.466667pt;}
.yc4{bottom:500.706667pt;}
.y73{bottom:504.386667pt;}
.yc3{bottom:513.346667pt;}
.y2b{bottom:513.506667pt;}
.y72{bottom:521.186667pt;}
.yc2{bottom:526.146667pt;}
.y2a{bottom:528.706667pt;}
.y71{bottom:533.826667pt;}
.yc1{bottom:538.786667pt;}
.y70{bottom:546.653333pt;}
.y29{bottom:547.773333pt;}
.yc0{bottom:555.453333pt;}
.y6f{bottom:559.293333pt;}
.y28{bottom:562.973333pt;}
.ybf{bottom:568.253333pt;}
.y6e{bottom:571.933333pt;}
.y27{bottom:578.013333pt;}
.ybe{bottom:580.893333pt;}
.y6d{bottom:584.733333pt;}
.y4c{bottom:589.213333pt;}
.y26{bottom:593.213333pt;}
.y6c{bottom:597.373333pt;}
.ybd{bottom:597.693333pt;}
.y4b{bottom:601.053333pt;}
.y25{bottom:608.253333pt;}
.ybc{bottom:610.333333pt;}
.y4a{bottom:612.733333pt;}
.y6b{bottom:614.173333pt;}
.ybb{bottom:623.133333pt;}
.y24{bottom:623.453333pt;}
.y49{bottom:624.573333pt;}
.y6a{bottom:626.813333pt;}
.yba{bottom:635.773333pt;}
.y48{bottom:636.253333pt;}
.y23{bottom:638.493333pt;}
.y69{bottom:639.613333pt;}
.y47{bottom:648.093333pt;}
.y9c{bottom:651.933333pt;}
.y68{bottom:652.253333pt;}
.yb9{bottom:652.413333pt;}
.y22{bottom:653.693333pt;}
.y46{bottom:660.413333pt;}
.y67{bottom:665.053333pt;}
.yb8{bottom:665.213333pt;}
.y21{bottom:668.733333pt;}
.y45{bottom:673.853333pt;}
.y66{bottom:677.693333pt;}
.yb7{bottom:681.853333pt;}
.y20{bottom:683.933333pt;}
.y9b{bottom:685.373333pt;}
.y44{bottom:687.293333pt;}
.y65{bottom:690.333333pt;}
.yb6{bottom:694.653333pt;}
.y9a{bottom:698.173333pt;}
.y1f{bottom:698.973333pt;}
.y64{bottom:703.133333pt;}
.yb5{bottom:707.293333pt;}
.y1e{bottom:714.173333pt;}
.y99{bottom:714.813333pt;}
.y63{bottom:715.773333pt;}
.yb4{bottom:720.093333pt;}
.y62{bottom:728.573333pt;}
.y98{bottom:731.453333pt;}
.y1d{bottom:733.213333pt;}
.yb3{bottom:736.733333pt;}
.y61{bottom:741.213333pt;}
.y97{bottom:748.093333pt;}
.y1c{bottom:748.413333pt;}
.yb2{bottom:749.373333pt;}
.y60{bottom:754.013333pt;}
.yb1{bottom:762.173333pt;}
.y1b{bottom:763.453333pt;}
.y96{bottom:764.733333pt;}
.y5f{bottom:766.653333pt;}
.y1a{bottom:778.693333pt;}
.yb0{bottom:778.853333pt;}
.y5e{bottom:779.333333pt;}
.y95{bottom:781.573333pt;}
.yaf{bottom:791.653333pt;}
.y5d{bottom:792.133333pt;}
.y19{bottom:793.733333pt;}
.y94{bottom:798.213333pt;}
.y12{bottom:798.373333pt;}
.yae{bottom:804.293333pt;}
.y5c{bottom:804.773333pt;}
.y18{bottom:808.933333pt;}
.y11{bottom:810.053333pt;}
.y93{bottom:815.013333pt;}
.yad{bottom:821.093333pt;}
.y5b{bottom:821.573333pt;}
.y92{bottom:831.653333pt;}
.yac{bottom:833.733333pt;}
.y5a{bottom:834.213333pt;}
.yab{bottom:846.373333pt;}
.y59{bottom:847.013333pt;}
.y17{bottom:848.293333pt;}
.y3{bottom:851.493333pt;}
.y58{bottom:859.653333pt;}
.yaa{bottom:863.173333pt;}
.y91{bottom:865.093333pt;}
.y16{bottom:871.493333pt;}
.y57{bottom:872.293333pt;}
.y2{bottom:874.373333pt;}
.ya9{bottom:875.813333pt;}
.y90{bottom:881.733333pt;}
.y56{bottom:885.093333pt;}
.ya8{bottom:888.613333pt;}
.y10{bottom:896.293333pt;}
.y1{bottom:897.253333pt;}
.y55{bottom:897.733333pt;}
.y8f{bottom:898.533333pt;}
.ya7{bottom:905.253333pt;}
.y54{bottom:910.533333pt;}
.y8e{bottom:915.173333pt;}
.ya6{bottom:918.053333pt;}
.y53{bottom:923.173333pt;}
.ya5{bottom:930.693333pt;}
.y8d{bottom:931.973333pt;}
.y52{bottom:935.973333pt;}
.ya4{bottom:947.813333pt;}
.y51{bottom:948.613333pt;}
.ya3{bottom:995.973333pt;}
.y5{bottom:1002.533333pt;}
.y4e{bottom:1016.320000pt;}
.y4{bottom:1039.360000pt;}
.y4d{bottom:1041.920000pt;}
.h12{height:25.918750pt;}
.hc{height:26.008125pt;}
.hb{height:26.190625pt;}
.h17{height:26.480625pt;}
.h6{height:28.153125pt;}
.h7{height:28.242500pt;}
.ha{height:29.082187pt;}
.h11{height:29.940625pt;}
.h10{height:30.254687pt;}
.h8{height:32.160000pt;}
.hd{height:33.328125pt;}
.he{height:33.515625pt;}
.hf{height:33.605000pt;}
.h16{height:33.867188pt;}
.h18{height:37.479688pt;}
.h15{height:42.649687pt;}
.h2{height:50.281250pt;}
.h5{height:52.834688pt;}
.h13{height:60.722813pt;}
.h14{height:60.814125pt;}
.h4{height:68.484375pt;}
.h3{height:68.575688pt;}
.h9{height:75.410937pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:58.399988pt;}
.x7{left:61.759988pt;}
.x1{left:62.719988pt;}
.x11{left:73.279988pt;}
.x5{left:199.866655pt;}
.x6{left:231.226655pt;}
.xa{left:325.506655pt;}
.x4{left:389.506655pt;}
.xb{left:391.106655pt;}
.xc{left:396.386655pt;}
.xd{left:506.813322pt;}
.xe{left:557.693322pt;}
.xf{left:639.973322pt;}
.x2{left:648.773322pt;}
.x3{left:653.573322pt;}
.x8{left:658.053322pt;}
.x9{left:662.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  