
    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_8dc4666c4ddd42af0ab60c2a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2ce7e613731ebd601aaa5ad8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8cba80e35f184195f1dddb66.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_30e772d24890fdfe2780f817.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_edc66114d9540296777b44df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904785;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_3ef83bb8737cb0d9db0c5734.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_884695941bc21c59df418285.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_352d06d2bd01ce6c23627b2d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_312c932c264d4aa87e6a875a.woff2')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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.504000px;}
.ls18{letter-spacing:1.440000px;}
.ls17{letter-spacing:2.160000px;}
.ls0{letter-spacing:2.880000px;}
.ls15{letter-spacing:4.320000px;}
.ls8{letter-spacing:5.040000px;}
.ls9{letter-spacing:6.480000px;}
.ls3{letter-spacing:8.640000px;}
.ls1f{letter-spacing:10.224000px;}
.ls2{letter-spacing:10.800000px;}
.ls1b{letter-spacing:14.400000px;}
.lsa{letter-spacing:15.120000px;}
.ls13{letter-spacing:17.280000px;}
.lsb{letter-spacing:18.000000px;}
.ls1a{letter-spacing:21.600000px;}
.ls20{letter-spacing:23.760000px;}
.ls11{letter-spacing:25.200000px;}
.ls12{letter-spacing:25.920000px;}
.ls1e{letter-spacing:28.080000px;}
.ls7{letter-spacing:28.800000px;}
.lsf{letter-spacing:29.520000px;}
.lse{letter-spacing:30.240000px;}
.ls1d{letter-spacing:31.680000px;}
.lsd{letter-spacing:33.120000px;}
.ls1c{letter-spacing:38.880000px;}
.ls10{letter-spacing:43.200000px;}
.lsc{letter-spacing:63.360000px;}
.ls21{letter-spacing:100.800000px;}
.ls16{letter-spacing:194.400000px;}
.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;}
}
.ws5{word-spacing:-18.504000px;}
.ws2{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-11.016000px;}
._1d{margin-left:-9.408000px;}
._5{margin-left:-8.160000px;}
._29{margin-left:-6.660000px;}
._4{margin-left:-5.508000px;}
._2f{margin-left:-4.464000px;}
._1{margin-left:-3.312000px;}
._1b{margin-left:-2.232000px;}
._3{margin-left:-1.008000px;}
._0{width:1.224000px;}
._a{width:2.928000px;}
._c{width:4.248000px;}
._f{width:6.120000px;}
._10{width:7.896000px;}
._13{width:9.756000px;}
._12{width:10.980000px;}
._11{width:12.024000px;}
._2e{width:13.320000px;}
._16{width:14.328000px;}
._17{width:15.480000px;}
._27{width:16.920000px;}
._b{width:19.944000px;}
._18{width:21.096000px;}
._15{width:22.608000px;}
._7{width:23.616000px;}
._6{width:25.056000px;}
._22{width:26.172000px;}
._9{width:27.288000px;}
._1e{width:28.368000px;}
._19{width:30.312000px;}
._d{width:31.872000px;}
._e{width:33.324000px;}
._14{width:34.872000px;}
._26{width:35.928000px;}
._33{width:37.152000px;}
._32{width:38.592000px;}
._31{width:39.744000px;}
._2d{width:40.896000px;}
._21{width:42.048000px;}
._8{width:43.128000px;}
._28{width:47.448000px;}
._24{width:49.536000px;}
._25{width:50.580000px;}
._1a{width:52.704000px;}
._1c{width:53.928000px;}
._1f{width:56.592000px;}
._20{width:58.356000px;}
._30{width:59.688000px;}
._2a{width:63.360000px;}
._2b{width:66.960000px;}
._2c{width:68.532000px;}
._34{width:74.376000px;}
._23{width:75.888000px;}
._35{width:80.784000px;}
._36{width:81.936000px;}
._37{width:83.424000px;}
._3a{width:89.496000px;}
._3c{width:99.936000px;}
._3b{width:101.016000px;}
._38{width:123.840000px;}
._39{width:178.164000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(112,48,160);}
.fc7{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y59{bottom:10.080000px;}
.y51{bottom:10.260000px;}
.y5a{bottom:10.440000px;}
.y56{bottom:14.580000px;}
.y57{bottom:14.940000px;}
.y53{bottom:15.300000px;}
.y54{bottom:15.660000px;}
.y4f{bottom:19.800000px;}
.y50{bottom:29.340000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.y73{bottom:111.096000px;}
.y32{bottom:113.976000px;}
.y4c{bottom:115.416000px;}
.y72{bottom:134.856000px;}
.y31{bottom:137.736000px;}
.y71{bottom:158.610000px;}
.y30{bottom:161.490000px;}
.y70{bottom:182.550000px;}
.y2f{bottom:185.430000px;}
.y6f{bottom:206.310000px;}
.y2e{bottom:209.190000px;}
.y6e{bottom:230.070000px;}
.y2d{bottom:232.950000px;}
.y6d{bottom:253.830000px;}
.y2c{bottom:256.710000px;}
.y6c{bottom:277.770000px;}
.y2b{bottom:280.290000px;}
.y3b{bottom:280.650000px;}
.y6b{bottom:301.575000px;}
.y2a{bottom:304.095000px;}
.y3a{bottom:304.455000px;}
.y6a{bottom:325.335000px;}
.y74{bottom:327.855000px;}
.y29{bottom:328.215000px;}
.y69{bottom:349.095000px;}
.y28{bottom:351.975000px;}
.y68{bottom:373.035000px;}
.y27{bottom:375.915000px;}
.y67{bottom:396.795000px;}
.y26{bottom:399.675000px;}
.y66{bottom:420.555000px;}
.y25{bottom:423.435000px;}
.y65{bottom:444.315000px;}
.y24{bottom:447.195000px;}
.y4b{bottom:448.275000px;}
.y64{bottom:468.255000px;}
.y23{bottom:471.135000px;}
.y4a{bottom:472.035000px;}
.y63{bottom:492.015000px;}
.y22{bottom:494.895000px;}
.y49{bottom:495.795000px;}
.y62{bottom:515.775000px;}
.y21{bottom:518.655000px;}
.y48{bottom:519.735000px;}
.y61{bottom:539.535000px;}
.y20{bottom:542.415000px;}
.y47{bottom:543.495000px;}
.y60{bottom:563.475000px;}
.y1f{bottom:566.385000px;}
.y46{bottom:567.285000px;}
.y5f{bottom:587.265000px;}
.y1e{bottom:590.145000px;}
.y45{bottom:591.045000px;}
.y5e{bottom:611.025000px;}
.y1d{bottom:613.545000px;}
.y39{bottom:613.905000px;}
.y44{bottom:614.985000px;}
.y5d{bottom:634.785000px;}
.y1c{bottom:637.305000px;}
.y38{bottom:637.665000px;}
.y43{bottom:638.745000px;}
.y5c{bottom:658.545000px;}
.y1b{bottom:661.425000px;}
.y42{bottom:662.505000px;}
.y5b{bottom:682.485000px;}
.y1a{bottom:685.365000px;}
.y41{bottom:686.265000px;}
.y58{bottom:699.585000px;}
.y19{bottom:709.125000px;}
.y40{bottom:710.205000px;}
.y55{bottom:731.985000px;}
.y18{bottom:732.885000px;}
.y3f{bottom:733.965000px;}
.y17{bottom:756.645000px;}
.y3e{bottom:757.725000px;}
.y52{bottom:773.565000px;}
.y16{bottom:780.585000px;}
.y3d{bottom:781.485000px;}
.y3c{bottom:801.105000px;}
.y15{bottom:804.345000px;}
.y4e{bottom:816.405000px;}
.y14{bottom:828.105000px;}
.y13{bottom:851.910000px;}
.y4d{bottom:875.490000px;}
.y12{bottom:875.850000px;}
.y75{bottom:877.290000px;}
.y11{bottom:899.610000px;}
.y10{bottom:923.370000px;}
.yf{bottom:947.130000px;}
.ye{bottom:971.070000px;}
.yd{bottom:994.470000px;}
.y37{bottom:994.830000px;}
.yc{bottom:1018.230000px;}
.y36{bottom:1018.590000px;}
.yb{bottom:1042.350000px;}
.ya{bottom:1066.290000px;}
.y9{bottom:1090.050000px;}
.y8{bottom:1113.450000px;}
.y35{bottom:1113.810000px;}
.y7{bottom:1137.240000px;}
.y34{bottom:1137.600000px;}
.y6{bottom:1161.180000px;}
.y33{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.h10{height:31.680000px;}
.hf{height:40.860000px;}
.hd{height:42.120000px;}
.hc{height:45.637031px;}
.h6{height:49.605469px;}
.hb{height:51.156000px;}
.h9{height:59.343750px;}
.ha{height:63.457031px;}
.he{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h4{height:72.562500px;}
.h11{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.020000px;}
.w7{width:63.360000px;}
.wd{width:63.720000px;}
.wa{width:69.660000px;}
.w8{width:76.860000px;}
.we{width:77.220000px;}
.w6{width:120.456000px;}
.wc{width:120.816000px;}
.w9{width:121.176000px;}
.wf{width:121.536000px;}
.w5{width:129.996000px;}
.wb{width:130.356000px;}
.w4{width:140.220000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.740000px;}
.x2{left:9.180000px;}
.x21{left:12.600000px;}
.x29{left:22.320000px;}
.x27{left:23.580000px;}
.x2b{left:26.460000px;}
.x28{left:30.420000px;}
.x2a{left:34.560000px;}
.x1b{left:38.874000px;}
.x1e{left:43.425000px;}
.x2c{left:49.314000px;}
.x26{left:52.200000px;}
.x25{left:57.105000px;}
.x2d{left:105.695987px;}
.x1a{left:119.916000px;}
.xf{left:127.655987px;}
.x10{left:140.615987px;}
.x3{left:159.689987px;}
.x19{left:163.469987px;}
.x6{left:167.969987px;}
.xe{left:180.749987px;}
.x12{left:223.589987px;}
.xa{left:245.189987px;}
.x1c{left:260.850000px;}
.x9{left:293.834987px;}
.x15{left:306.074987px;}
.x13{left:313.094987px;}
.xd{left:327.674987px;}
.x17{left:332.534987px;}
.x7{left:356.114987px;}
.x8{left:359.174987px;}
.xc{left:372.134987px;}
.x11{left:383.114987px;}
.x1f{left:391.575000px;}
.xb{left:397.874987px;}
.x1{left:439.815000px;}
.x5{left:478.514987px;}
.x20{left:512.745000px;}
.x22{left:576.825000px;}
.x23{left:654.405000px;}
.x16{left:749.309987px;}
.x18{left:753.809987px;}
.x24{left:776.490000px;}
.x14{left:802.229987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.448000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.920000pt;}
.ls0{letter-spacing:2.560000pt;}
.ls15{letter-spacing:3.840000pt;}
.ls8{letter-spacing:4.480000pt;}
.ls9{letter-spacing:5.760000pt;}
.ls3{letter-spacing:7.680000pt;}
.ls1f{letter-spacing:9.088000pt;}
.ls2{letter-spacing:9.600000pt;}
.ls1b{letter-spacing:12.800000pt;}
.lsa{letter-spacing:13.440000pt;}
.ls13{letter-spacing:15.360000pt;}
.lsb{letter-spacing:16.000000pt;}
.ls1a{letter-spacing:19.200000pt;}
.ls20{letter-spacing:21.120000pt;}
.ls11{letter-spacing:22.400000pt;}
.ls12{letter-spacing:23.040000pt;}
.ls1e{letter-spacing:24.960000pt;}
.ls7{letter-spacing:25.600000pt;}
.lsf{letter-spacing:26.240000pt;}
.lse{letter-spacing:26.880000pt;}
.ls1d{letter-spacing:28.160000pt;}
.lsd{letter-spacing:29.440000pt;}
.ls1c{letter-spacing:34.560000pt;}
.ls10{letter-spacing:38.400000pt;}
.lsc{letter-spacing:56.320000pt;}
.ls21{letter-spacing:89.600000pt;}
.ls16{letter-spacing:172.800000pt;}
.ws5{word-spacing:-16.448000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-9.792000pt;}
._1d{margin-left:-8.362667pt;}
._5{margin-left:-7.253333pt;}
._29{margin-left:-5.920000pt;}
._4{margin-left:-4.896000pt;}
._2f{margin-left:-3.968000pt;}
._1{margin-left:-2.944000pt;}
._1b{margin-left:-1.984000pt;}
._3{margin-left:-0.896000pt;}
._0{width:1.088000pt;}
._a{width:2.602667pt;}
._c{width:3.776000pt;}
._f{width:5.440000pt;}
._10{width:7.018667pt;}
._13{width:8.672000pt;}
._12{width:9.760000pt;}
._11{width:10.688000pt;}
._2e{width:11.840000pt;}
._16{width:12.736000pt;}
._17{width:13.760000pt;}
._27{width:15.040000pt;}
._b{width:17.728000pt;}
._18{width:18.752000pt;}
._15{width:20.096000pt;}
._7{width:20.992000pt;}
._6{width:22.272000pt;}
._22{width:23.264000pt;}
._9{width:24.256000pt;}
._1e{width:25.216000pt;}
._19{width:26.944000pt;}
._d{width:28.330667pt;}
._e{width:29.621333pt;}
._14{width:30.997333pt;}
._26{width:31.936000pt;}
._33{width:33.024000pt;}
._32{width:34.304000pt;}
._31{width:35.328000pt;}
._2d{width:36.352000pt;}
._21{width:37.376000pt;}
._8{width:38.336000pt;}
._28{width:42.176000pt;}
._24{width:44.032000pt;}
._25{width:44.960000pt;}
._1a{width:46.848000pt;}
._1c{width:47.936000pt;}
._1f{width:50.304000pt;}
._20{width:51.872000pt;}
._30{width:53.056000pt;}
._2a{width:56.320000pt;}
._2b{width:59.520000pt;}
._2c{width:60.917333pt;}
._34{width:66.112000pt;}
._23{width:67.456000pt;}
._35{width:71.808000pt;}
._36{width:72.832000pt;}
._37{width:74.154667pt;}
._3a{width:79.552000pt;}
._3c{width:88.832000pt;}
._3b{width:89.792000pt;}
._38{width:110.080000pt;}
._39{width:158.368000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y59{bottom:8.960000pt;}
.y51{bottom:9.120000pt;}
.y5a{bottom:9.280000pt;}
.y56{bottom:12.960000pt;}
.y57{bottom:13.280000pt;}
.y53{bottom:13.600000pt;}
.y54{bottom:13.920000pt;}
.y4f{bottom:17.600000pt;}
.y50{bottom:26.080000pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.y73{bottom:98.752000pt;}
.y32{bottom:101.312000pt;}
.y4c{bottom:102.592000pt;}
.y72{bottom:119.872000pt;}
.y31{bottom:122.432000pt;}
.y71{bottom:140.986667pt;}
.y30{bottom:143.546667pt;}
.y70{bottom:162.266667pt;}
.y2f{bottom:164.826667pt;}
.y6f{bottom:183.386667pt;}
.y2e{bottom:185.946667pt;}
.y6e{bottom:204.506667pt;}
.y2d{bottom:207.066667pt;}
.y6d{bottom:225.626667pt;}
.y2c{bottom:228.186667pt;}
.y6c{bottom:246.906667pt;}
.y2b{bottom:249.146667pt;}
.y3b{bottom:249.466667pt;}
.y6b{bottom:268.066667pt;}
.y2a{bottom:270.306667pt;}
.y3a{bottom:270.626667pt;}
.y6a{bottom:289.186667pt;}
.y74{bottom:291.426667pt;}
.y29{bottom:291.746667pt;}
.y69{bottom:310.306667pt;}
.y28{bottom:312.866667pt;}
.y68{bottom:331.586667pt;}
.y27{bottom:334.146667pt;}
.y67{bottom:352.706667pt;}
.y26{bottom:355.266667pt;}
.y66{bottom:373.826667pt;}
.y25{bottom:376.386667pt;}
.y65{bottom:394.946667pt;}
.y24{bottom:397.506667pt;}
.y4b{bottom:398.466667pt;}
.y64{bottom:416.226667pt;}
.y23{bottom:418.786667pt;}
.y4a{bottom:419.586667pt;}
.y63{bottom:437.346667pt;}
.y22{bottom:439.906667pt;}
.y49{bottom:440.706667pt;}
.y62{bottom:458.466667pt;}
.y21{bottom:461.026667pt;}
.y48{bottom:461.986667pt;}
.y61{bottom:479.586667pt;}
.y20{bottom:482.146667pt;}
.y47{bottom:483.106667pt;}
.y60{bottom:500.866667pt;}
.y1f{bottom:503.453333pt;}
.y46{bottom:504.253333pt;}
.y5f{bottom:522.013333pt;}
.y1e{bottom:524.573333pt;}
.y45{bottom:525.373333pt;}
.y5e{bottom:543.133333pt;}
.y1d{bottom:545.373333pt;}
.y39{bottom:545.693333pt;}
.y44{bottom:546.653333pt;}
.y5d{bottom:564.253333pt;}
.y1c{bottom:566.493333pt;}
.y38{bottom:566.813333pt;}
.y43{bottom:567.773333pt;}
.y5c{bottom:585.373333pt;}
.y1b{bottom:587.933333pt;}
.y42{bottom:588.893333pt;}
.y5b{bottom:606.653333pt;}
.y1a{bottom:609.213333pt;}
.y41{bottom:610.013333pt;}
.y58{bottom:621.853333pt;}
.y19{bottom:630.333333pt;}
.y40{bottom:631.293333pt;}
.y55{bottom:650.653333pt;}
.y18{bottom:651.453333pt;}
.y3f{bottom:652.413333pt;}
.y17{bottom:672.573333pt;}
.y3e{bottom:673.533333pt;}
.y52{bottom:687.613333pt;}
.y16{bottom:693.853333pt;}
.y3d{bottom:694.653333pt;}
.y3c{bottom:712.093333pt;}
.y15{bottom:714.973333pt;}
.y4e{bottom:725.693333pt;}
.y14{bottom:736.093333pt;}
.y13{bottom:757.253333pt;}
.y4d{bottom:778.213333pt;}
.y12{bottom:778.533333pt;}
.y75{bottom:779.813333pt;}
.y11{bottom:799.653333pt;}
.y10{bottom:820.773333pt;}
.yf{bottom:841.893333pt;}
.ye{bottom:863.173333pt;}
.yd{bottom:883.973333pt;}
.y37{bottom:884.293333pt;}
.yc{bottom:905.093333pt;}
.y36{bottom:905.413333pt;}
.yb{bottom:926.533333pt;}
.ya{bottom:947.813333pt;}
.y9{bottom:968.933333pt;}
.y8{bottom:989.733333pt;}
.y35{bottom:990.053333pt;}
.y7{bottom:1010.880000pt;}
.y34{bottom:1011.200000pt;}
.y6{bottom:1032.160000pt;}
.y33{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.h10{height:28.160000pt;}
.hf{height:36.320000pt;}
.hd{height:37.440000pt;}
.hc{height:40.566250pt;}
.h6{height:44.093750pt;}
.hb{height:45.472000pt;}
.h9{height:52.750000pt;}
.ha{height:56.406250pt;}
.he{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h4{height:64.500000pt;}
.h11{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.240000pt;}
.w7{width:56.320000pt;}
.wd{width:56.640000pt;}
.wa{width:61.920000pt;}
.w8{width:68.320000pt;}
.we{width:68.640000pt;}
.w6{width:107.072000pt;}
.wc{width:107.392000pt;}
.w9{width:107.712000pt;}
.wf{width:108.032000pt;}
.w5{width:115.552000pt;}
.wb{width:115.872000pt;}
.w4{width:124.640000pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.880000pt;}
.x2{left:8.160000pt;}
.x21{left:11.200000pt;}
.x29{left:19.840000pt;}
.x27{left:20.960000pt;}
.x2b{left:23.520000pt;}
.x28{left:27.040000pt;}
.x2a{left:30.720000pt;}
.x1b{left:34.554667pt;}
.x1e{left:38.600000pt;}
.x2c{left:43.834667pt;}
.x26{left:46.400000pt;}
.x25{left:50.760000pt;}
.x2d{left:93.951988pt;}
.x1a{left:106.592000pt;}
.xf{left:113.471988pt;}
.x10{left:124.991988pt;}
.x3{left:141.946655pt;}
.x19{left:145.306655pt;}
.x6{left:149.306655pt;}
.xe{left:160.666655pt;}
.x12{left:198.746655pt;}
.xa{left:217.946655pt;}
.x1c{left:231.866667pt;}
.x9{left:261.186655pt;}
.x15{left:272.066655pt;}
.x13{left:278.306655pt;}
.xd{left:291.266655pt;}
.x17{left:295.586655pt;}
.x7{left:316.546655pt;}
.x8{left:319.266655pt;}
.xc{left:330.786655pt;}
.x11{left:340.546655pt;}
.x1f{left:348.066667pt;}
.xb{left:353.666655pt;}
.x1{left:390.946667pt;}
.x5{left:425.346655pt;}
.x20{left:455.773333pt;}
.x22{left:512.733333pt;}
.x23{left:581.693333pt;}
.x16{left:666.053322pt;}
.x18{left:670.053322pt;}
.x24{left:690.213333pt;}
.x14{left:713.093322pt;}
.x4{left:737.253322pt;}
}




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