
    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_29f9e8c34e10ece6d22b0f50.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_fe01852bd62a6b960bc7e359.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4ffba167803e17656e4ca5c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_855bcdc04b0922ac3839e7a2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_98b7a3fe424a8114c18be305.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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_6034229b9a960f96027da1c3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aafe0664ba196171afab212d.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls6{letter-spacing:-4.824000px;}
.ls10{letter-spacing:-2.520000px;}
.lsd{letter-spacing:-1.944000px;}
.lsa{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.152000px;}
.lsf{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.360000px;}
.ls4{letter-spacing:4.320000px;}
.ls2{letter-spacing:5.760000px;}
.ls11{letter-spacing:10.944000px;}
.lsc{letter-spacing:20.160000px;}
.ls3{letter-spacing:36.000000px;}
.ls12{letter-spacing:102.384000px;}
.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:-21.060000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.280000px;}
.ws8{word-spacing:-16.848000px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.056000px;}
.ws0{word-spacing:-15.238800px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-9.335520px;}
._2a{margin-left:-7.992000px;}
._4{margin-left:-6.791760px;}
._11{margin-left:-5.772240px;}
._3{margin-left:-4.644000px;}
._12{margin-left:-3.638400px;}
._1{margin-left:-2.568240px;}
._2{margin-left:-1.008000px;}
._0{width:1.513440px;}
._15{width:2.904000px;}
._2b{width:4.095600px;}
._10{width:5.376000px;}
._9{width:6.840000px;}
._8{width:7.920000px;}
._a{width:9.216000px;}
._29{width:11.232000px;}
._18{width:12.240000px;}
._19{width:13.308000px;}
._1d{width:15.336000px;}
._1e{width:16.585440px;}
._2e{width:19.630800px;}
._16{width:20.736000px;}
._d{width:22.032000px;}
._e{width:23.544000px;}
._27{width:24.696000px;}
._2d{width:26.136000px;}
._21{width:27.432000px;}
._1c{width:28.441680px;}
._17{width:29.448000px;}
._20{width:31.185840px;}
._1f{width:32.400720px;}
._30{width:33.515520px;}
._c{width:34.992000px;}
._b{width:36.288000px;}
._f{width:37.512000px;}
._2f{width:38.657280px;}
._23{width:40.870800px;}
._24{width:42.063360px;}
._14{width:43.068000px;}
._13{width:44.136000px;}
._2c{width:45.525360px;}
._28{width:47.352240px;}
._7{width:48.576000px;}
._6{width:49.944000px;}
._35{width:53.028000px;}
._36{width:54.323280px;}
._34{width:57.603840px;}
._26{width:58.918320px;}
._25{width:60.384240px;}
._31{width:61.438320px;}
._1b{width:62.928000px;}
._1a{width:64.056240px;}
._32{width:65.372400px;}
._33{width:70.318800px;}
._22{width:104.544000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y37{bottom:7.020000px;}
.y43{bottom:7.200000px;}
.y84{bottom:7.410000px;}
.y89{bottom:7.740000px;}
.y40{bottom:8.460000px;}
.y60{bottom:9.570000px;}
.y67{bottom:9.900000px;}
.y71{bottom:10.260000px;}
.y8a{bottom:10.620000px;}
.y6d{bottom:11.160000px;}
.y47{bottom:12.780000px;}
.y72{bottom:13.140000px;}
.y4b{bottom:15.120000px;}
.y46{bottom:18.360000px;}
.y3e{bottom:18.900000px;}
.y4e{bottom:18.930000px;}
.y44{bottom:19.080000px;}
.y3c{bottom:21.960000px;}
.y4a{bottom:23.040000px;}
.y6a{bottom:25.920000px;}
.y65{bottom:26.850000px;}
.y63{bottom:28.080000px;}
.y51{bottom:30.780000px;}
.y4d{bottom:30.810000px;}
.y42{bottom:30.960000px;}
.y88{bottom:31.680000px;}
.y70{bottom:34.200000px;}
.y6c{bottom:34.965000px;}
.y7f{bottom:36.360000px;}
.y3d{bottom:42.660000px;}
.y7d{bottom:47.340000px;}
.y64{bottom:50.790000px;}
.y36{bottom:51.840000px;}
.y3f{bottom:53.280000px;}
.y5f{bottom:54.210000px;}
.y50{bottom:54.720000px;}
.y87{bottom:55.440000px;}
.y6f{bottom:57.960000px;}
.y3b{bottom:66.780000px;}
.y6{bottom:69.480000px;}
.y80{bottom:75.240000px;}
.y62{bottom:75.600000px;}
.y8d{bottom:75.645000px;}
.y7e{bottom:85.140000px;}
.y3a{bottom:90.540000px;}
.y35{bottom:96.705000px;}
.y7b{bottom:97.740000px;}
.y31{bottom:97.920000px;}
.y5e{bottom:99.030000px;}
.y98{bottom:112.860000px;}
.y39{bottom:114.300000px;}
.y7a{bottom:121.500000px;}
.y30{bottom:121.680000px;}
.y97{bottom:136.800000px;}
.y34{bottom:141.525000px;}
.y4c{bottom:141.660000px;}
.y5d{bottom:143.850000px;}
.y79{bottom:145.260000px;}
.y2f{bottom:145.440000px;}
.y96{bottom:160.590000px;}
.y78{bottom:169.230000px;}
.y2e{bottom:169.410000px;}
.y95{bottom:184.350000px;}
.y33{bottom:186.345000px;}
.y49{bottom:189.930000px;}
.y77{bottom:192.990000px;}
.y2d{bottom:193.170000px;}
.y94{bottom:208.110000px;}
.y76{bottom:216.750000px;}
.y2c{bottom:216.930000px;}
.y48{bottom:230.430000px;}
.y93{bottom:232.050000px;}
.y7c{bottom:238.725000px;}
.y75{bottom:240.510000px;}
.y2b{bottom:240.690000px;}
.y45{bottom:255.090000px;}
.y92{bottom:255.810000px;}
.y74{bottom:264.270000px;}
.y2a{bottom:264.630000px;}
.y91{bottom:279.570000px;}
.y73{bottom:288.210000px;}
.y29{bottom:288.390000px;}
.y41{bottom:290.910000px;}
.y90{bottom:303.330000px;}
.y6e{bottom:305.670000px;}
.y28{bottom:312.150000px;}
.y8f{bottom:327.270000px;}
.y27{bottom:335.910000px;}
.y32{bottom:339.330000px;}
.y8e{bottom:351.030000px;}
.y26{bottom:359.670000px;}
.y8c{bottom:368.490000px;}
.y6b{bottom:381.090000px;}
.y25{bottom:383.610000px;}
.y24{bottom:407.415000px;}
.y38{bottom:411.375000px;}
.y23{bottom:431.175000px;}
.y69{bottom:433.515000px;}
.y22{bottom:454.935000px;}
.y8b{bottom:461.595000px;}
.y68{bottom:476.895000px;}
.y21{bottom:478.875000px;}
.y20{bottom:502.635000px;}
.y1f{bottom:526.395000px;}
.y86{bottom:533.775000px;}
.y1e{bottom:550.155000px;}
.y66{bottom:569.955000px;}
.y1d{bottom:574.095000px;}
.y1c{bottom:597.855000px;}
.y85{bottom:606.675000px;}
.y1b{bottom:621.615000px;}
.y5c{bottom:642.135000px;}
.y1a{bottom:645.375000px;}
.y83{bottom:647.175000px;}
.y19{bottom:669.345000px;}
.y82{bottom:672.045000px;}
.y18{bottom:693.105000px;}
.y61{bottom:710.385000px;}
.y17{bottom:716.865000px;}
.y16{bottom:740.625000px;}
.y81{bottom:741.345000px;}
.y15{bottom:764.565000px;}
.y14{bottom:788.325000px;}
.y5b{bottom:810.645000px;}
.y13{bottom:812.085000px;}
.y5a{bottom:834.405000px;}
.y12{bottom:835.845000px;}
.y59{bottom:858.165000px;}
.y11{bottom:859.605000px;}
.y58{bottom:881.925000px;}
.y10{bottom:883.545000px;}
.y57{bottom:905.910000px;}
.yf{bottom:907.350000px;}
.y56{bottom:929.670000px;}
.ye{bottom:931.110000px;}
.y55{bottom:953.430000px;}
.yd{bottom:954.870000px;}
.y54{bottom:977.190000px;}
.yc{bottom:978.810000px;}
.y53{bottom:1001.130000px;}
.yb{bottom:1002.570000px;}
.y52{bottom:1024.890000px;}
.ya{bottom:1026.330000px;}
.y4f{bottom:1042.350000px;}
.y9{bottom:1050.090000px;}
.y8{bottom:1074.030000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.h10{height:23.940000px;}
.h22{height:24.156000px;}
.hf{height:35.100000px;}
.h11{height:39.780000px;}
.h17{height:42.660000px;}
.h12{height:47.556000px;}
.he{height:47.700000px;}
.ha{height:50.484375px;}
.h2{height:51.677227px;}
.h18{height:51.696000px;}
.h3{height:60.226875px;}
.h9{height:62.261719px;}
.h16{height:67.536000px;}
.h21{height:68.580000px;}
.h7{height:70.628906px;}
.h20{height:70.664026px;}
.h1b{height:70.664038px;}
.h1e{height:70.664041px;}
.h1c{height:70.664045px;}
.h1d{height:70.664048px;}
.h1f{height:70.664053px;}
.h8{height:70.664062px;}
.hd{height:71.316000px;}
.h13{height:71.460000px;}
.h23{height:72.180000px;}
.h6{height:72.562500px;}
.h25{height:74.004654px;}
.h19{height:74.700000px;}
.h5{height:82.676953px;}
.h4{height:84.898125px;}
.h15{height:92.340000px;}
.h24{height:92.376000px;}
.hc{height:131.040000px;}
.h14{height:160.590000px;}
.hb{height:203.070000px;}
.h1a{height:255.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:34.740000px;}
.w19{width:41.760000px;}
.w17{width:52.200000px;}
.w16{width:52.416000px;}
.wa{width:62.640000px;}
.w15{width:62.820000px;}
.w9{width:63.000000px;}
.w6{width:73.620000px;}
.w7{width:73.656000px;}
.w8{width:73.800000px;}
.w13{width:73.836000px;}
.w14{width:81.180000px;}
.w10{width:84.240000px;}
.w11{width:84.456000px;}
.we{width:94.860000px;}
.wf{width:94.896000px;}
.wb{width:147.780000px;}
.w12{width:169.020000px;}
.w5{width:200.910000px;}
.w4{width:222.510000px;}
.wd{width:254.370000px;}
.wc{width:265.035000px;}
.w3{width:275.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:2.340000px;}
.x32{left:4.320000px;}
.x2d{left:7.020000px;}
.x22{left:9.360000px;}
.x1f{left:10.440000px;}
.x18{left:12.420000px;}
.x3a{left:17.145000px;}
.x16{left:19.800000px;}
.x44{left:21.825000px;}
.x26{left:22.860000px;}
.x1b{left:25.020000px;}
.x37{left:26.280000px;}
.x25{left:28.080000px;}
.x2a{left:31.500000px;}
.x28{left:32.610000px;}
.x27{left:34.020000px;}
.x35{left:35.460000px;}
.x29{left:36.720000px;}
.x36{left:37.980000px;}
.x38{left:39.420000px;}
.x34{left:40.530000px;}
.x33{left:41.970000px;}
.x1d{left:58.545000px;}
.x3c{left:62.460000px;}
.x1e{left:80.325000px;}
.x3{left:84.995987px;}
.x6{left:87.695987px;}
.x19{left:95.610000px;}
.x2b{left:107.495987px;}
.x2f{left:111.600000px;}
.x9{left:119.915987px;}
.xf{left:136.655987px;}
.xc{left:137.735987px;}
.x7{left:183.269987px;}
.x11{left:200.909987px;}
.xe{left:216.929987px;}
.x2c{left:237.090000px;}
.x39{left:258.330000px;}
.x10{left:262.469987px;}
.xd{left:282.314987px;}
.x12{left:300.494987px;}
.xa{left:302.834987px;}
.x15{left:310.754987px;}
.x3b{left:333.075000px;}
.x45{left:340.994987px;}
.x8{left:343.694987px;}
.x4{left:350.714987px;}
.x17{left:364.755000px;}
.x13{left:396.254987px;}
.x30{left:407.235000px;}
.x3d{left:414.975000px;}
.x5{left:430.634987px;}
.x20{left:439.095000px;}
.xb{left:446.504987px;}
.x2{left:457.124987px;}
.x3e{left:489.345000px;}
.x2e{left:502.845000px;}
.x1{left:510.404987px;}
.x21{left:513.465000px;}
.x3f{left:553.065000px;}
.x1a{left:587.985000px;}
.x40{left:616.785000px;}
.x23{left:662.550000px;}
.x41{left:669.930000px;}
.x31{left:672.990000px;}
.x14{left:721.049987px;}
.x42{left:722.850000px;}
.x24{left:726.270000px;}
.x43{left:758.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-4.288000pt;}
.ls10{letter-spacing:-2.240000pt;}
.lsd{letter-spacing:-1.728000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.024000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.320000pt;}
.ls4{letter-spacing:3.840000pt;}
.ls2{letter-spacing:5.120000pt;}
.ls11{letter-spacing:9.728000pt;}
.lsc{letter-spacing:17.920000pt;}
.ls3{letter-spacing:32.000000pt;}
.ls12{letter-spacing:91.008000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws8{word-spacing:-14.976000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.272000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-8.298240pt;}
._2a{margin-left:-7.104000pt;}
._4{margin-left:-6.037120pt;}
._11{margin-left:-5.130880pt;}
._3{margin-left:-4.128000pt;}
._12{margin-left:-3.234133pt;}
._1{margin-left:-2.282880pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.345280pt;}
._15{width:2.581333pt;}
._2b{width:3.640533pt;}
._10{width:4.778667pt;}
._9{width:6.080000pt;}
._8{width:7.040000pt;}
._a{width:8.192000pt;}
._29{width:9.984000pt;}
._18{width:10.880000pt;}
._19{width:11.829333pt;}
._1d{width:13.632000pt;}
._1e{width:14.742613pt;}
._2e{width:17.449600pt;}
._16{width:18.432000pt;}
._d{width:19.584000pt;}
._e{width:20.928000pt;}
._27{width:21.952000pt;}
._2d{width:23.232000pt;}
._21{width:24.384000pt;}
._1c{width:25.281493pt;}
._17{width:26.176000pt;}
._20{width:27.720747pt;}
._1f{width:28.800640pt;}
._30{width:29.791573pt;}
._c{width:31.104000pt;}
._b{width:32.256000pt;}
._f{width:33.344000pt;}
._2f{width:34.362027pt;}
._23{width:36.329600pt;}
._24{width:37.389653pt;}
._14{width:38.282667pt;}
._13{width:39.232000pt;}
._2c{width:40.466987pt;}
._28{width:42.090880pt;}
._7{width:43.178667pt;}
._6{width:44.394667pt;}
._35{width:47.136000pt;}
._36{width:48.287360pt;}
._34{width:51.203413pt;}
._26{width:52.371840pt;}
._25{width:53.674880pt;}
._31{width:54.611840pt;}
._1b{width:55.936000pt;}
._1a{width:56.938880pt;}
._32{width:58.108800pt;}
._33{width:62.505600pt;}
._22{width:92.928000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:6.240000pt;}
.y43{bottom:6.400000pt;}
.y84{bottom:6.586667pt;}
.y89{bottom:6.880000pt;}
.y40{bottom:7.520000pt;}
.y60{bottom:8.506667pt;}
.y67{bottom:8.800000pt;}
.y71{bottom:9.120000pt;}
.y8a{bottom:9.440000pt;}
.y6d{bottom:9.920000pt;}
.y47{bottom:11.360000pt;}
.y72{bottom:11.680000pt;}
.y4b{bottom:13.440000pt;}
.y46{bottom:16.320000pt;}
.y3e{bottom:16.800000pt;}
.y4e{bottom:16.826667pt;}
.y44{bottom:16.960000pt;}
.y3c{bottom:19.520000pt;}
.y4a{bottom:20.480000pt;}
.y6a{bottom:23.040000pt;}
.y65{bottom:23.866667pt;}
.y63{bottom:24.960000pt;}
.y51{bottom:27.360000pt;}
.y4d{bottom:27.386667pt;}
.y42{bottom:27.520000pt;}
.y88{bottom:28.160000pt;}
.y70{bottom:30.400000pt;}
.y6c{bottom:31.080000pt;}
.y7f{bottom:32.320000pt;}
.y3d{bottom:37.920000pt;}
.y7d{bottom:42.080000pt;}
.y64{bottom:45.146667pt;}
.y36{bottom:46.080000pt;}
.y3f{bottom:47.360000pt;}
.y5f{bottom:48.186667pt;}
.y50{bottom:48.640000pt;}
.y87{bottom:49.280000pt;}
.y6f{bottom:51.520000pt;}
.y3b{bottom:59.360000pt;}
.y6{bottom:61.760000pt;}
.y80{bottom:66.880000pt;}
.y62{bottom:67.200000pt;}
.y8d{bottom:67.240000pt;}
.y7e{bottom:75.680000pt;}
.y3a{bottom:80.480000pt;}
.y35{bottom:85.960000pt;}
.y7b{bottom:86.880000pt;}
.y31{bottom:87.040000pt;}
.y5e{bottom:88.026667pt;}
.y98{bottom:100.320000pt;}
.y39{bottom:101.600000pt;}
.y7a{bottom:108.000000pt;}
.y30{bottom:108.160000pt;}
.y97{bottom:121.600000pt;}
.y34{bottom:125.800000pt;}
.y4c{bottom:125.920000pt;}
.y5d{bottom:127.866667pt;}
.y79{bottom:129.120000pt;}
.y2f{bottom:129.280000pt;}
.y96{bottom:142.746667pt;}
.y78{bottom:150.426667pt;}
.y2e{bottom:150.586667pt;}
.y95{bottom:163.866667pt;}
.y33{bottom:165.640000pt;}
.y49{bottom:168.826667pt;}
.y77{bottom:171.546667pt;}
.y2d{bottom:171.706667pt;}
.y94{bottom:184.986667pt;}
.y76{bottom:192.666667pt;}
.y2c{bottom:192.826667pt;}
.y48{bottom:204.826667pt;}
.y93{bottom:206.266667pt;}
.y7c{bottom:212.200000pt;}
.y75{bottom:213.786667pt;}
.y2b{bottom:213.946667pt;}
.y45{bottom:226.746667pt;}
.y92{bottom:227.386667pt;}
.y74{bottom:234.906667pt;}
.y2a{bottom:235.226667pt;}
.y91{bottom:248.506667pt;}
.y73{bottom:256.186667pt;}
.y29{bottom:256.346667pt;}
.y41{bottom:258.586667pt;}
.y90{bottom:269.626667pt;}
.y6e{bottom:271.706667pt;}
.y28{bottom:277.466667pt;}
.y8f{bottom:290.906667pt;}
.y27{bottom:298.586667pt;}
.y32{bottom:301.626667pt;}
.y8e{bottom:312.026667pt;}
.y26{bottom:319.706667pt;}
.y8c{bottom:327.546667pt;}
.y6b{bottom:338.746667pt;}
.y25{bottom:340.986667pt;}
.y24{bottom:362.146667pt;}
.y38{bottom:365.666667pt;}
.y23{bottom:383.266667pt;}
.y69{bottom:385.346667pt;}
.y22{bottom:404.386667pt;}
.y8b{bottom:410.306667pt;}
.y68{bottom:423.906667pt;}
.y21{bottom:425.666667pt;}
.y20{bottom:446.786667pt;}
.y1f{bottom:467.906667pt;}
.y86{bottom:474.466667pt;}
.y1e{bottom:489.026667pt;}
.y66{bottom:506.626667pt;}
.y1d{bottom:510.306667pt;}
.y1c{bottom:531.426667pt;}
.y85{bottom:539.266667pt;}
.y1b{bottom:552.546667pt;}
.y5c{bottom:570.786667pt;}
.y1a{bottom:573.666667pt;}
.y83{bottom:575.266667pt;}
.y19{bottom:594.973333pt;}
.y82{bottom:597.373333pt;}
.y18{bottom:616.093333pt;}
.y61{bottom:631.453333pt;}
.y17{bottom:637.213333pt;}
.y16{bottom:658.333333pt;}
.y81{bottom:658.973333pt;}
.y15{bottom:679.613333pt;}
.y14{bottom:700.733333pt;}
.y5b{bottom:720.573333pt;}
.y13{bottom:721.853333pt;}
.y5a{bottom:741.693333pt;}
.y12{bottom:742.973333pt;}
.y59{bottom:762.813333pt;}
.y11{bottom:764.093333pt;}
.y58{bottom:783.933333pt;}
.y10{bottom:785.373333pt;}
.y57{bottom:805.253333pt;}
.yf{bottom:806.533333pt;}
.y56{bottom:826.373333pt;}
.ye{bottom:827.653333pt;}
.y55{bottom:847.493333pt;}
.yd{bottom:848.773333pt;}
.y54{bottom:868.613333pt;}
.yc{bottom:870.053333pt;}
.y53{bottom:889.893333pt;}
.yb{bottom:891.173333pt;}
.y52{bottom:911.013333pt;}
.ya{bottom:912.293333pt;}
.y4f{bottom:926.533333pt;}
.y9{bottom:933.413333pt;}
.y8{bottom:954.693333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.h10{height:21.280000pt;}
.h22{height:21.472000pt;}
.hf{height:31.200000pt;}
.h11{height:35.360000pt;}
.h17{height:37.920000pt;}
.h12{height:42.272000pt;}
.he{height:42.400000pt;}
.ha{height:44.875000pt;}
.h2{height:45.935313pt;}
.h18{height:45.952000pt;}
.h3{height:53.535000pt;}
.h9{height:55.343750pt;}
.h16{height:60.032000pt;}
.h21{height:60.960000pt;}
.h7{height:62.781250pt;}
.h20{height:62.812467pt;}
.h1b{height:62.812478pt;}
.h1e{height:62.812481pt;}
.h1c{height:62.812484pt;}
.h1d{height:62.812487pt;}
.h1f{height:62.812492pt;}
.h8{height:62.812500pt;}
.hd{height:63.392000pt;}
.h13{height:63.520000pt;}
.h23{height:64.160000pt;}
.h6{height:64.500000pt;}
.h25{height:65.781915pt;}
.h19{height:66.400000pt;}
.h5{height:73.490625pt;}
.h4{height:75.465000pt;}
.h15{height:82.080000pt;}
.h24{height:82.112000pt;}
.hc{height:116.480000pt;}
.h14{height:142.746667pt;}
.hb{height:180.506667pt;}
.h1a{height:227.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:30.880000pt;}
.w19{width:37.120000pt;}
.w17{width:46.400000pt;}
.w16{width:46.592000pt;}
.wa{width:55.680000pt;}
.w15{width:55.840000pt;}
.w9{width:56.000000pt;}
.w6{width:65.440000pt;}
.w7{width:65.472000pt;}
.w8{width:65.600000pt;}
.w13{width:65.632000pt;}
.w14{width:72.160000pt;}
.w10{width:74.880000pt;}
.w11{width:75.072000pt;}
.we{width:84.320000pt;}
.wf{width:84.352000pt;}
.wb{width:131.360000pt;}
.w12{width:150.240000pt;}
.w5{width:178.586667pt;}
.w4{width:197.786667pt;}
.wd{width:226.106667pt;}
.wc{width:235.586667pt;}
.w3{width:244.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:2.080000pt;}
.x32{left:3.840000pt;}
.x2d{left:6.240000pt;}
.x22{left:8.320000pt;}
.x1f{left:9.280000pt;}
.x18{left:11.040000pt;}
.x3a{left:15.240000pt;}
.x16{left:17.600000pt;}
.x44{left:19.400000pt;}
.x26{left:20.320000pt;}
.x1b{left:22.240000pt;}
.x37{left:23.360000pt;}
.x25{left:24.960000pt;}
.x2a{left:28.000000pt;}
.x28{left:28.986667pt;}
.x27{left:30.240000pt;}
.x35{left:31.520000pt;}
.x29{left:32.640000pt;}
.x36{left:33.760000pt;}
.x38{left:35.040000pt;}
.x34{left:36.026667pt;}
.x33{left:37.306667pt;}
.x1d{left:52.040000pt;}
.x3c{left:55.520000pt;}
.x1e{left:71.400000pt;}
.x3{left:75.551988pt;}
.x6{left:77.951988pt;}
.x19{left:84.986667pt;}
.x2b{left:95.551988pt;}
.x2f{left:99.200000pt;}
.x9{left:106.591988pt;}
.xf{left:121.471988pt;}
.xc{left:122.431988pt;}
.x7{left:162.906655pt;}
.x11{left:178.586655pt;}
.xe{left:192.826655pt;}
.x2c{left:210.746667pt;}
.x39{left:229.626667pt;}
.x10{left:233.306655pt;}
.xd{left:250.946655pt;}
.x12{left:267.106655pt;}
.xa{left:269.186655pt;}
.x15{left:276.226655pt;}
.x3b{left:296.066667pt;}
.x45{left:303.106655pt;}
.x8{left:305.506655pt;}
.x4{left:311.746655pt;}
.x17{left:324.226667pt;}
.x13{left:352.226655pt;}
.x30{left:361.986667pt;}
.x3d{left:368.866667pt;}
.x5{left:382.786655pt;}
.x20{left:390.306667pt;}
.xb{left:396.893322pt;}
.x2{left:406.333322pt;}
.x3e{left:434.973333pt;}
.x2e{left:446.973333pt;}
.x1{left:453.693322pt;}
.x21{left:456.413333pt;}
.x3f{left:491.613333pt;}
.x1a{left:522.653333pt;}
.x40{left:548.253333pt;}
.x23{left:588.933333pt;}
.x41{left:595.493333pt;}
.x31{left:598.213333pt;}
.x14{left:640.933322pt;}
.x42{left:642.533333pt;}
.x24{left:645.573333pt;}
.x43{left:674.053333pt;}
}




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