
    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_6f49115731234df954bc792f.woff2')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_f418c67b8c980719b3619e54.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b1970cbce82278a18c06b560.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929199;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_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_c8a7d129123978aac58d68f8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_030c1aad15f16dc7aec367e1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_25b8c9a57fcd61f8d5dfe02b.woff2')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;}
.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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.538800px;}
.ls6{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.253200px;}
.ls7{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.034560px;}
.lsc{letter-spacing:-0.018000px;}
.ls9{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.262200px;}
.lsf{letter-spacing:0.269280px;}
.ls3{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:1.620000px;}
.ls15{letter-spacing:1.709280px;}
.ls14{letter-spacing:4.320000px;}
.lsd{letter-spacing:7.380000px;}
.ls2{letter-spacing:8.100000px;}
.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;}
}
.wsa{word-spacing:-16.822200px;}
.ws9{word-spacing:-16.560000px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.482000px;}
.ws2{word-spacing:-13.410720px;}
.ws1{word-spacing:-13.229520px;}
.wsb{word-spacing:-12.420000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1f{margin-left:-5.155200px;}
._14{margin-left:-4.066560px;}
._d{margin-left:-2.808000px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._2{width:2.742960px;}
._a{width:3.942000px;}
._e{width:5.037120px;}
._6{width:6.218640px;}
._5{width:7.344000px;}
._7{width:9.180000px;}
._3{width:10.200000px;}
._4{width:11.533680px;}
._1c{width:12.542400px;}
._18{width:13.589280px;}
._13{width:15.012000px;}
._8{width:16.362000px;}
._9{width:17.558640px;}
._10{width:18.945360px;}
._f{width:20.304000px;}
._12{width:22.302000px;}
._11{width:23.490000px;}
._15{width:24.614640px;}
._1a{width:26.562240px;}
._19{width:27.622080px;}
._1b{width:29.292480px;}
._17{width:31.000320px;}
._16{width:32.192640px;}
._c{width:33.193680px;}
._b{width:34.614000px;}
._1e{width:51.037200px;}
._1d{width:52.462080px;}
.fc6{color:rgb(50,50,54);}
.fc7{color:rgb(22,37,51);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.060000px;}
.y44{bottom:3.420000px;}
.y2{bottom:5.400000px;}
.y45{bottom:7.740000px;}
.y41{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y40{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y3f{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y3e{bottom:65.160000px;}
.y3d{bottom:80.640000px;}
.y3c{bottom:96.120000px;}
.y84{bottom:110.376000px;}
.y3b{bottom:111.600000px;}
.y95{bottom:114.876000px;}
.y47{bottom:118.656000px;}
.y83{bottom:124.236000px;}
.y3a{bottom:127.260000px;}
.yae{bottom:127.296000px;}
.y82{bottom:128.736000px;}
.ya7{bottom:137.916000px;}
.y81{bottom:138.096000px;}
.yab{bottom:138.996000px;}
.y46{bottom:140.436000px;}
.ya6{bottom:142.416000px;}
.y94{bottom:142.596000px;}
.y39{bottom:142.740000px;}
.yad{bottom:149.076000px;}
.y80{bottom:151.770000px;}
.y93{bottom:151.950000px;}
.y43{bottom:155.910000px;}
.y7f{bottom:156.270000px;}
.y92{bottom:156.450000px;}
.y38{bottom:158.265000px;}
.y7e{bottom:165.630000px;}
.y9e{bottom:165.810000px;}
.y91{bottom:166.710000px;}
.y7d{bottom:170.130000px;}
.yac{bottom:170.850000px;}
.y37{bottom:173.745000px;}
.y7c{bottom:179.490000px;}
.y9d{bottom:179.670000px;}
.y18{bottom:180.930000px;}
.y7b{bottom:183.990000px;}
.y9c{bottom:184.170000px;}
.y36{bottom:189.405000px;}
.y90{bottom:192.630000px;}
.y7a{bottom:193.350000px;}
.y9b{bottom:194.430000px;}
.y8b{bottom:197.850000px;}
.y35{bottom:204.885000px;}
.ya5{bottom:207.030000px;}
.y79{bottom:207.210000px;}
.yaa{bottom:208.110000px;}
.ya4{bottom:211.530000px;}
.y78{bottom:211.710000px;}
.y8f{bottom:214.410000px;}
.y34{bottom:220.365000px;}
.y77{bottom:221.070000px;}
.ya3{bottom:221.970000px;}
.y76{bottom:234.930000px;}
.y33{bottom:235.845000px;}
.y8e{bottom:236.370000px;}
.y8a{bottom:239.430000px;}
.y75{bottom:248.610000px;}
.y89{bottom:249.690000px;}
.y32{bottom:251.505000px;}
.y74{bottom:253.110000px;}
.y8d{bottom:258.150000px;}
.y73{bottom:263.550000px;}
.y31{bottom:266.985000px;}
.y88{bottom:279.930000px;}
.y30{bottom:282.465000px;}
.y2f{bottom:297.945000px;}
.y72{bottom:301.710000px;}
.y2e{bottom:313.425000px;}
.y70{bottom:323.670000px;}
.y2d{bottom:329.085000px;}
.y71{bottom:329.610000px;}
.y2c{bottom:344.565000px;}
.y6f{bottom:345.495000px;}
.ya2{bottom:351.435000px;}
.y2b{bottom:360.045000px;}
.y6e{bottom:367.275000px;}
.ya9{bottom:373.215000px;}
.y2a{bottom:375.525000px;}
.y6d{bottom:389.055000px;}
.y29{bottom:391.185000px;}
.y87{bottom:394.995000px;}
.y28{bottom:406.665000px;}
.y6c{bottom:410.835000px;}
.y27{bottom:422.145000px;}
.y6b{bottom:432.795000px;}
.y26{bottom:437.655000px;}
.y25{bottom:453.315000px;}
.y6a{bottom:454.575000px;}
.y24{bottom:468.795000px;}
.y69{bottom:476.355000px;}
.y9a{bottom:482.295000px;}
.y23{bottom:484.275000px;}
.y68{bottom:498.135000px;}
.y22{bottom:499.755000px;}
.ya0{bottom:504.075000px;}
.y21{bottom:515.415000px;}
.y66{bottom:520.095000px;}
.y67{bottom:526.035000px;}
.y20{bottom:530.895000px;}
.y65{bottom:541.875000px;}
.y1f{bottom:546.375000px;}
.y99{bottom:547.815000px;}
.y1e{bottom:561.855000px;}
.y64{bottom:563.655000px;}
.y1d{bottom:577.515000px;}
.y63{bottom:585.435000px;}
.y98{bottom:591.375000px;}
.y1c{bottom:592.995000px;}
.y62{bottom:607.245000px;}
.y1b{bottom:608.475000px;}
.y1a{bottom:623.955000px;}
.y61{bottom:629.205000px;}
.y97{bottom:635.145000px;}
.y19{bottom:639.615000px;}
.y60{bottom:650.985000px;}
.y5e{bottom:672.765000px;}
.y5f{bottom:678.705000px;}
.y5d{bottom:694.545000px;}
.y5c{bottom:716.505000px;}
.ya8{bottom:722.445000px;}
.y5b{bottom:738.285000px;}
.y9f{bottom:744.225000px;}
.y5a{bottom:760.065000px;}
.y59{bottom:781.845000px;}
.ya1{bottom:787.785000px;}
.y57{bottom:803.625000px;}
.y58{bottom:809.565000px;}
.y56{bottom:825.585000px;}
.y86{bottom:831.525000px;}
.y17{bottom:838.905000px;}
.y55{bottom:847.365000px;}
.y96{bottom:853.305000px;}
.y16{bottom:858.705000px;}
.y54{bottom:869.145000px;}
.y15{bottom:878.550000px;}
.y52{bottom:890.970000px;}
.y53{bottom:896.910000px;}
.y14{bottom:898.350000px;}
.y51{bottom:912.930000px;}
.y8c{bottom:918.870000px;}
.y13{bottom:923.550000px;}
.y50{bottom:934.710000px;}
.y12{bottom:938.670000px;}
.y4f{bottom:956.490000px;}
.y11{bottom:960.450000px;}
.y4e{bottom:978.270000px;}
.y10{bottom:980.430000px;}
.y85{bottom:984.210000px;}
.yf{bottom:998.070000px;}
.y4d{bottom:1000.050000px;}
.ye{bottom:1020.030000px;}
.y4c{bottom:1022.010000px;}
.yd{bottom:1040.010000px;}
.y4a{bottom:1043.790000px;}
.y4b{bottom:1049.730000px;}
.yc{bottom:1058.910000px;}
.y49{bottom:1065.570000px;}
.yb{bottom:1084.650000px;}
.y48{bottom:1087.350000px;}
.y9{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h18{height:22.015547px;}
.h14{height:25.020000px;}
.hd{height:27.147656px;}
.h17{height:29.158594px;}
.h19{height:33.683203px;}
.h9{height:34.036523px;}
.h1a{height:35.120039px;}
.h12{height:37.705078px;}
.h11{height:38.100586px;}
.h7{height:39.147891px;}
.hb{height:39.760312px;}
.hf{height:41.726953px;}
.h3{height:42.164648px;}
.h13{height:44.507812px;}
.h16{height:46.251562px;}
.h15{height:46.736719px;}
.he{height:48.027656px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.h10{height:652.215000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w7{width:224.130000px;}
.w4{width:255.090000px;}
.w8{width:283.530000px;}
.w3{width:374.655000px;}
.w9{width:391.575000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x16{left:29.700000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.xd{left:110.915987px;}
.x25{left:112.175987px;}
.x31{left:116.315987px;}
.x7{left:131.805000px;}
.xa{left:142.415987px;}
.xf{left:156.449987px;}
.x18{left:161.129987px;}
.x2f{left:164.369973px;}
.x11{left:166.169987px;}
.x30{left:174.809987px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x43{left:182.729973px;}
.x12{left:185.969987px;}
.x44{left:193.169987px;}
.x13{left:212.789987px;}
.x49{left:224.489973px;}
.x1f{left:227.549973px;}
.x20{left:232.769987px;}
.x4a{left:234.929987px;}
.x14{left:252.389987px;}
.x47{left:262.289987px;}
.x10{left:269.849987px;}
.x4b{left:302.834973px;}
.x4c{left:313.274987px;}
.x1d{left:324.254973px;}
.x1e{left:329.474987px;}
.x28{left:349.274973px;}
.xb{left:351.074987px;}
.x2d{left:353.414973px;}
.x29{left:354.494987px;}
.x4f{left:361.874987px;}
.x2e{left:363.854987px;}
.x19{left:366.734973px;}
.x1a{left:371.954987px;}
.x17{left:391.575000px;}
.xe{left:406.154987px;}
.x32{left:422.534973px;}
.x33{left:432.974987px;}
.x40{left:439.454973px;}
.x21{left:445.214973px;}
.xc{left:446.474987px;}
.x22{left:450.434987px;}
.x9{left:496.004987px;}
.x39{left:544.244973px;}
.x5{left:554.685000px;}
.x15{left:567.105000px;}
.x45{left:616.424973px;}
.x46{left:626.864987px;}
.x2a{left:641.624973px;}
.x2b{left:646.844987px;}
.x37{left:647.924973px;}
.x2c{left:652.604987px;}
.x38{left:658.409987px;}
.x23{left:682.349973px;}
.x24{left:687.569987px;}
.x35{left:697.469973px;}
.x26{left:704.309973px;}
.x36{left:707.909987px;}
.x27{left:709.529987px;}
.x41{left:712.589973px;}
.x4d{left:715.649973px;}
.x42{left:723.029987px;}
.x3c{left:724.109973px;}
.x4e{left:726.089987px;}
.x3d{left:734.549987px;}
.x48{left:740.129973px;}
.x3a{left:747.149973px;}
.x3e{left:749.669973px;}
.x3b{left:757.589987px;}
.x3f{left:760.109987px;}
.x34{left:774.689973px;}
.x1b{left:779.909973px;}
.x1c{left:785.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.478933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.225067pt;}
.ls7{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.030720pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.233067pt;}
.lsf{letter-spacing:0.239360pt;}
.ls3{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:1.440000pt;}
.ls15{letter-spacing:1.519360pt;}
.ls14{letter-spacing:3.840000pt;}
.lsd{letter-spacing:6.560000pt;}
.ls2{letter-spacing:7.200000pt;}
.wsa{word-spacing:-14.953067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.984000pt;}
.ws2{word-spacing:-11.920640pt;}
.ws1{word-spacing:-11.759573pt;}
.wsb{word-spacing:-11.040000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1f{margin-left:-4.582400pt;}
._14{margin-left:-3.614720pt;}
._d{margin-left:-2.496000pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._2{width:2.438187pt;}
._a{width:3.504000pt;}
._e{width:4.477440pt;}
._6{width:5.527680pt;}
._5{width:6.528000pt;}
._7{width:8.160000pt;}
._3{width:9.066667pt;}
._4{width:10.252160pt;}
._1c{width:11.148800pt;}
._18{width:12.079360pt;}
._13{width:13.344000pt;}
._8{width:14.544000pt;}
._9{width:15.607680pt;}
._10{width:16.840320pt;}
._f{width:18.048000pt;}
._12{width:19.824000pt;}
._11{width:20.880000pt;}
._15{width:21.879680pt;}
._1a{width:23.610880pt;}
._19{width:24.552960pt;}
._1b{width:26.037760pt;}
._17{width:27.555840pt;}
._16{width:28.615680pt;}
._c{width:29.505493pt;}
._b{width:30.768000pt;}
._1e{width:45.366400pt;}
._1d{width:46.632960pt;}
.fs8{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.720000pt;}
.y44{bottom:3.040000pt;}
.y2{bottom:4.800000pt;}
.y45{bottom:6.880000pt;}
.y41{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y40{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y3f{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y3e{bottom:57.920000pt;}
.y3d{bottom:71.680000pt;}
.y3c{bottom:85.440000pt;}
.y84{bottom:98.112000pt;}
.y3b{bottom:99.200000pt;}
.y95{bottom:102.112000pt;}
.y47{bottom:105.472000pt;}
.y83{bottom:110.432000pt;}
.y3a{bottom:113.120000pt;}
.yae{bottom:113.152000pt;}
.y82{bottom:114.432000pt;}
.ya7{bottom:122.592000pt;}
.y81{bottom:122.752000pt;}
.yab{bottom:123.552000pt;}
.y46{bottom:124.832000pt;}
.ya6{bottom:126.592000pt;}
.y94{bottom:126.752000pt;}
.y39{bottom:126.880000pt;}
.yad{bottom:132.512000pt;}
.y80{bottom:134.906667pt;}
.y93{bottom:135.066667pt;}
.y43{bottom:138.586667pt;}
.y7f{bottom:138.906667pt;}
.y92{bottom:139.066667pt;}
.y38{bottom:140.680000pt;}
.y7e{bottom:147.226667pt;}
.y9e{bottom:147.386667pt;}
.y91{bottom:148.186667pt;}
.y7d{bottom:151.226667pt;}
.yac{bottom:151.866667pt;}
.y37{bottom:154.440000pt;}
.y7c{bottom:159.546667pt;}
.y9d{bottom:159.706667pt;}
.y18{bottom:160.826667pt;}
.y7b{bottom:163.546667pt;}
.y9c{bottom:163.706667pt;}
.y36{bottom:168.360000pt;}
.y90{bottom:171.226667pt;}
.y7a{bottom:171.866667pt;}
.y9b{bottom:172.826667pt;}
.y8b{bottom:175.866667pt;}
.y35{bottom:182.120000pt;}
.ya5{bottom:184.026667pt;}
.y79{bottom:184.186667pt;}
.yaa{bottom:184.986667pt;}
.ya4{bottom:188.026667pt;}
.y78{bottom:188.186667pt;}
.y8f{bottom:190.586667pt;}
.y34{bottom:195.880000pt;}
.y77{bottom:196.506667pt;}
.ya3{bottom:197.306667pt;}
.y76{bottom:208.826667pt;}
.y33{bottom:209.640000pt;}
.y8e{bottom:210.106667pt;}
.y8a{bottom:212.826667pt;}
.y75{bottom:220.986667pt;}
.y89{bottom:221.946667pt;}
.y32{bottom:223.560000pt;}
.y74{bottom:224.986667pt;}
.y8d{bottom:229.466667pt;}
.y73{bottom:234.266667pt;}
.y31{bottom:237.320000pt;}
.y88{bottom:248.826667pt;}
.y30{bottom:251.080000pt;}
.y2f{bottom:264.840000pt;}
.y72{bottom:268.186667pt;}
.y2e{bottom:278.600000pt;}
.y70{bottom:287.706667pt;}
.y2d{bottom:292.520000pt;}
.y71{bottom:292.986667pt;}
.y2c{bottom:306.280000pt;}
.y6f{bottom:307.106667pt;}
.ya2{bottom:312.386667pt;}
.y2b{bottom:320.040000pt;}
.y6e{bottom:326.466667pt;}
.ya9{bottom:331.746667pt;}
.y2a{bottom:333.800000pt;}
.y6d{bottom:345.826667pt;}
.y29{bottom:347.720000pt;}
.y87{bottom:351.106667pt;}
.y28{bottom:361.480000pt;}
.y6c{bottom:365.186667pt;}
.y27{bottom:375.240000pt;}
.y6b{bottom:384.706667pt;}
.y26{bottom:389.026667pt;}
.y25{bottom:402.946667pt;}
.y6a{bottom:404.066667pt;}
.y24{bottom:416.706667pt;}
.y69{bottom:423.426667pt;}
.y9a{bottom:428.706667pt;}
.y23{bottom:430.466667pt;}
.y68{bottom:442.786667pt;}
.y22{bottom:444.226667pt;}
.ya0{bottom:448.066667pt;}
.y21{bottom:458.146667pt;}
.y66{bottom:462.306667pt;}
.y67{bottom:467.586667pt;}
.y20{bottom:471.906667pt;}
.y65{bottom:481.666667pt;}
.y1f{bottom:485.666667pt;}
.y99{bottom:486.946667pt;}
.y1e{bottom:499.426667pt;}
.y64{bottom:501.026667pt;}
.y1d{bottom:513.346667pt;}
.y63{bottom:520.386667pt;}
.y98{bottom:525.666667pt;}
.y1c{bottom:527.106667pt;}
.y62{bottom:539.773333pt;}
.y1b{bottom:540.866667pt;}
.y1a{bottom:554.626667pt;}
.y61{bottom:559.293333pt;}
.y97{bottom:564.573333pt;}
.y19{bottom:568.546667pt;}
.y60{bottom:578.653333pt;}
.y5e{bottom:598.013333pt;}
.y5f{bottom:603.293333pt;}
.y5d{bottom:617.373333pt;}
.y5c{bottom:636.893333pt;}
.ya8{bottom:642.173333pt;}
.y5b{bottom:656.253333pt;}
.y9f{bottom:661.533333pt;}
.y5a{bottom:675.613333pt;}
.y59{bottom:694.973333pt;}
.ya1{bottom:700.253333pt;}
.y57{bottom:714.333333pt;}
.y58{bottom:719.613333pt;}
.y56{bottom:733.853333pt;}
.y86{bottom:739.133333pt;}
.y17{bottom:745.693333pt;}
.y55{bottom:753.213333pt;}
.y96{bottom:758.493333pt;}
.y16{bottom:763.293333pt;}
.y54{bottom:772.573333pt;}
.y15{bottom:780.933333pt;}
.y52{bottom:791.973333pt;}
.y53{bottom:797.253333pt;}
.y14{bottom:798.533333pt;}
.y51{bottom:811.493333pt;}
.y8c{bottom:816.773333pt;}
.y13{bottom:820.933333pt;}
.y50{bottom:830.853333pt;}
.y12{bottom:834.373333pt;}
.y4f{bottom:850.213333pt;}
.y11{bottom:853.733333pt;}
.y4e{bottom:869.573333pt;}
.y10{bottom:871.493333pt;}
.y85{bottom:874.853333pt;}
.yf{bottom:887.173333pt;}
.y4d{bottom:888.933333pt;}
.ye{bottom:906.693333pt;}
.y4c{bottom:908.453333pt;}
.yd{bottom:924.453333pt;}
.y4a{bottom:927.813333pt;}
.y4b{bottom:933.093333pt;}
.yc{bottom:941.253333pt;}
.y49{bottom:947.173333pt;}
.yb{bottom:964.133333pt;}
.y48{bottom:966.533333pt;}
.y9{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h18{height:19.569375pt;}
.h14{height:22.240000pt;}
.hd{height:24.131250pt;}
.h17{height:25.918750pt;}
.h19{height:29.940625pt;}
.h9{height:30.254687pt;}
.h1a{height:31.217812pt;}
.h12{height:33.515625pt;}
.h11{height:33.867188pt;}
.h7{height:34.798125pt;}
.hb{height:35.342500pt;}
.hf{height:37.090625pt;}
.h3{height:37.479688pt;}
.h13{height:39.562500pt;}
.h16{height:41.112500pt;}
.h15{height:41.543750pt;}
.he{height:42.691250pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.h10{height:579.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w7{width:199.226667pt;}
.w4{width:226.746667pt;}
.w8{width:252.026667pt;}
.w3{width:333.026667pt;}
.w9{width:348.066667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x16{left:26.400000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.xd{left:98.591988pt;}
.x25{left:99.711988pt;}
.x31{left:103.391988pt;}
.x7{left:117.160000pt;}
.xa{left:126.591988pt;}
.xf{left:139.066655pt;}
.x18{left:143.226655pt;}
.x2f{left:146.106643pt;}
.x11{left:147.706655pt;}
.x30{left:155.386655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x43{left:162.426643pt;}
.x12{left:165.306655pt;}
.x44{left:171.706655pt;}
.x13{left:189.146655pt;}
.x49{left:199.546643pt;}
.x1f{left:202.266643pt;}
.x20{left:206.906655pt;}
.x4a{left:208.826655pt;}
.x14{left:224.346655pt;}
.x47{left:233.146655pt;}
.x10{left:239.866655pt;}
.x4b{left:269.186643pt;}
.x4c{left:278.466655pt;}
.x1d{left:288.226643pt;}
.x1e{left:292.866655pt;}
.x28{left:310.466643pt;}
.xb{left:312.066655pt;}
.x2d{left:314.146643pt;}
.x29{left:315.106655pt;}
.x4f{left:321.666655pt;}
.x2e{left:323.426655pt;}
.x19{left:325.986643pt;}
.x1a{left:330.626655pt;}
.x17{left:348.066667pt;}
.xe{left:361.026655pt;}
.x32{left:375.586643pt;}
.x33{left:384.866655pt;}
.x40{left:390.626643pt;}
.x21{left:395.746643pt;}
.xc{left:396.866655pt;}
.x22{left:400.386655pt;}
.x9{left:440.893322pt;}
.x39{left:483.773310pt;}
.x5{left:493.053333pt;}
.x15{left:504.093333pt;}
.x45{left:547.933310pt;}
.x46{left:557.213322pt;}
.x2a{left:570.333310pt;}
.x2b{left:574.973322pt;}
.x37{left:575.933310pt;}
.x2c{left:580.093322pt;}
.x38{left:585.253322pt;}
.x23{left:606.533310pt;}
.x24{left:611.173322pt;}
.x35{left:619.973310pt;}
.x26{left:626.053310pt;}
.x36{left:629.253322pt;}
.x27{left:630.693322pt;}
.x41{left:633.413310pt;}
.x4d{left:636.133310pt;}
.x42{left:642.693322pt;}
.x3c{left:643.653310pt;}
.x4e{left:645.413322pt;}
.x3d{left:652.933322pt;}
.x48{left:657.893310pt;}
.x3a{left:664.133310pt;}
.x3e{left:666.373310pt;}
.x3b{left:673.413322pt;}
.x3f{left:675.653322pt;}
.x34{left:688.613310pt;}
.x1b{left:693.253310pt;}
.x1c{left:697.893322pt;}
}




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