
    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_39d90c936cf30430b796861d.woff')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_fc8c4aea2575495576750759.woff')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_3b05f7058661526e2d43455d.woff')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_40600f91434c059b95043d66.woff')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_749ee494418631202fb920d3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c5bde8ba381a336490183f05.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ef83f869a1ffb02223d91883.woff')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_fa83295be677e8426608eb25.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2b310ad97bbb083c49bafb42.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_e916f486f0d50ba6b5bcfd9f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a175ff35797534c223c7e605.woff')format("woff");}.ffb{font-family:ffb;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;}
.ls8{letter-spacing:-1.656000px;}
.ls6{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.lsb{letter-spacing:10.944000px;}
.lsa{letter-spacing:11.520000px;}
.ls2{letter-spacing:12.960000px;}
.lsc{letter-spacing:25.200000px;}
.ls0{letter-spacing:41.760000px;}
.ls3{letter-spacing:66.960000px;}
.ls1{letter-spacing:77.940000px;}
.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:-23.940000px;}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.488000px;}
.ws3{word-spacing:0.000000px;}
._20{margin-left:-4.486560px;}
._21{margin-left:-3.340800px;}
._2{margin-left:-2.211840px;}
._1{margin-left:-1.059840px;}
._0{width:1.347840px;}
._b{width:2.448000px;}
._16{width:3.564960px;}
._1a{width:4.608000px;}
._11{width:5.832000px;}
._12{width:7.148160px;}
._19{width:8.835840px;}
._7{width:10.608000px;}
._5{width:12.360000px;}
._6{width:13.436160px;}
._e{width:15.050880px;}
._23{width:16.983360px;}
._8{width:19.512000px;}
._14{width:20.952000px;}
._d{width:22.176000px;}
._1c{width:23.688000px;}
._1b{width:24.888000px;}
._18{width:26.752320px;}
._17{width:27.771840px;}
._22{width:28.788480px;}
._25{width:30.904320px;}
._24{width:31.959840px;}
._1d{width:32.976000px;}
._15{width:35.187840px;}
._2a{width:37.779840px;}
._a{width:41.796000px;}
._9{width:43.128000px;}
._29{width:45.432000px;}
._28{width:46.923840px;}
._1f{width:51.644160px;}
._1e{width:53.115840px;}
._f{width:57.384000px;}
._10{width:58.896000px;}
._13{width:67.392000px;}
._26{width:70.128000px;}
._27{width:71.133120px;}
._c{width:77.472000px;}
._2e{width:80.352000px;}
._4{width:83.376000px;}
._3{width:84.708000px;}
._2c{width:97.488000px;}
._2d{width:99.376320px;}
._2f{width:150.552000px;}
._30{width:151.940160px;}
._2b{width:175.824000px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc6{color:rgb(36,32,33);}
.fc5{color:rgb(32,33,36);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:2.880000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.780000px;}
.y46{bottom:4.500000px;}
.y66{bottom:6.480000px;}
.y6a{bottom:6.840000px;}
.y6c{bottom:7.020000px;}
.y62{bottom:9.540000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y44{bottom:19.260000px;}
.y7{bottom:20.700000px;}
.y48{bottom:25.200000px;}
.y4{bottom:27.900000px;}
.y6f{bottom:28.620000px;}
.y69{bottom:28.800000px;}
.y60{bottom:30.240000px;}
.y4c{bottom:31.860000px;}
.y43{bottom:40.140000px;}
.y54{bottom:40.170000px;}
.y55{bottom:41.400000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y6e{bottom:50.400000px;}
.y68{bottom:50.580000px;}
.y5e{bottom:50.940000px;}
.y4b{bottom:52.740000px;}
.y42{bottom:60.840000px;}
.y4f{bottom:60.870000px;}
.y2{bottom:69.300000px;}
.y4a{bottom:73.440000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.y41{bottom:81.540000px;}
.y4e{bottom:81.570000px;}
.ya{bottom:91.116000px;}
.y52{bottom:102.270000px;}
.y7f{bottom:130.176000px;}
.y63{bottom:153.210000px;}
.y7e{bottom:153.930000px;}
.y37{bottom:163.650000px;}
.y5d{bottom:170.310000px;}
.y7d{bottom:177.690000px;}
.y61{bottom:183.270000px;}
.y36{bottom:187.410000px;}
.y7c{bottom:201.630000px;}
.y5f{bottom:203.970000px;}
.y35{bottom:211.350000px;}
.y80{bottom:220.170000px;}
.y5c{bottom:224.670000px;}
.y7b{bottom:225.390000px;}
.y34{bottom:235.110000px;}
.y7a{bottom:249.150000px;}
.y33{bottom:258.870000px;}
.y79{bottom:272.910000px;}
.y32{bottom:282.675000px;}
.y5a{bottom:285.195000px;}
.y5b{bottom:288.615000px;}
.y78{bottom:296.895000px;}
.y31{bottom:306.435000px;}
.y59{bottom:309.315000px;}
.y77{bottom:320.655000px;}
.y30{bottom:330.375000px;}
.y76{bottom:344.415000px;}
.y2f{bottom:354.135000px;}
.y75{bottom:368.175000px;}
.y2e{bottom:377.895000px;}
.y57{bottom:390.495000px;}
.y74{bottom:392.115000px;}
.y58{bottom:393.915000px;}
.y2d{bottom:401.655000px;}
.y73{bottom:415.875000px;}
.y2c{bottom:425.595000px;}
.y56{bottom:435.315000px;}
.y72{bottom:439.635000px;}
.y2b{bottom:449.355000px;}
.y71{bottom:463.395000px;}
.y2a{bottom:473.115000px;}
.y70{bottom:487.155000px;}
.y50{bottom:495.795000px;}
.y29{bottom:496.875000px;}
.y51{bottom:499.215000px;}
.y6d{bottom:504.435000px;}
.y4d{bottom:519.915000px;}
.y28{bottom:520.815000px;}
.y53{bottom:540.615000px;}
.y27{bottom:544.575000px;}
.y26{bottom:568.365000px;}
.y6b{bottom:570.525000px;}
.y25{bottom:592.125000px;}
.y67{bottom:614.985000px;}
.y24{bottom:616.065000px;}
.y45{bottom:621.825000px;}
.y49{bottom:625.245000px;}
.y40{bottom:629.745000px;}
.y23{bottom:639.825000px;}
.y47{bottom:650.445000px;}
.y22{bottom:663.585000px;}
.y65{bottom:681.225000px;}
.y21{bottom:687.345000px;}
.y64{bottom:710.925000px;}
.y20{bottom:711.285000px;}
.y3e{bottom:731.625000px;}
.y1f{bottom:735.045000px;}
.y3d{bottom:758.445000px;}
.y1e{bottom:758.805000px;}
.y3c{bottom:782.205000px;}
.y1d{bottom:782.565000px;}
.y1c{bottom:806.325000px;}
.y1b{bottom:830.265000px;}
.y1a{bottom:854.070000px;}
.y19{bottom:877.830000px;}
.y18{bottom:901.590000px;}
.y17{bottom:925.530000px;}
.y16{bottom:949.290000px;}
.y15{bottom:973.050000px;}
.y14{bottom:996.810000px;}
.y13{bottom:1020.390000px;}
.y3b{bottom:1020.750000px;}
.y12{bottom:1044.510000px;}
.y11{bottom:1067.910000px;}
.y3a{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y39{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y38{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h11{height:2.826563px;}
.h16{height:2.864531px;}
.hd{height:19.080000px;}
.h1d{height:21.780000px;}
.h8{height:33.120000px;}
.h21{height:43.740000px;}
.h20{height:46.445625px;}
.hc{height:50.484375px;}
.hb{height:52.628906px;}
.h19{height:56.340000px;}
.h1b{height:56.376000px;}
.h1f{height:65.010937px;}
.h22{height:65.376000px;}
.h1e{height:65.520000px;}
.h9{height:65.884219px;}
.he{height:66.757500px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h23{height:74.004654px;}
.h12{height:77.040000px;}
.h18{height:77.076000px;}
.h4{height:82.635820px;}
.hf{height:97.740000px;}
.h14{height:97.776000px;}
.h13{height:102.240000px;}
.h1a{height:104.580000px;}
.h10{height:109.080000px;}
.h2{height:109.800000px;}
.h1c{height:114.156000px;}
.h17{height:118.476000px;}
.h15{height:125.316000px;}
.h5{height:129.250898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:16.920000px;}
.w8{width:17.100000px;}
.w7{width:17.136000px;}
.w6{width:49.680000px;}
.w4{width:63.570000px;}
.wa{width:90.900000px;}
.w13{width:105.660000px;}
.wf{width:125.640000px;}
.w2{width:134.136000px;}
.wb{width:145.620000px;}
.w10{width:160.050000px;}
.w11{width:170.670000px;}
.wc{width:180.030000px;}
.wd{width:190.650000px;}
.w12{width:192.090000px;}
.we{width:211.890000px;}
.w14{width:594.645000px;}
.w3{width:695.265000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.800000px;}
.x36{left:3.060000px;}
.x2f{left:4.680000px;}
.x27{left:5.985000px;}
.x9{left:8.100000px;}
.x7{left:9.360000px;}
.x26{left:10.485000px;}
.x3f{left:12.414000px;}
.x23{left:13.674000px;}
.x6{left:16.914000px;}
.x2{left:18.719973px;}
.x22{left:20.334000px;}
.x2b{left:21.960000px;}
.x2a{left:23.220000px;}
.x39{left:24.834000px;}
.x1e{left:26.280000px;}
.x32{left:29.565000px;}
.x35{left:31.530000px;}
.x1{left:34.559970px;}
.x3a{left:35.865000px;}
.x1a{left:37.614000px;}
.x3{left:39.599973px;}
.x21{left:42.474000px;}
.x37{left:44.325000px;}
.x31{left:47.874000px;}
.x33{left:49.365000px;}
.x38{left:50.970000px;}
.x34{left:54.210000px;}
.x2c{left:57.450000px;}
.x1c{left:59.265000px;}
.x5{left:61.554000px;}
.x3b{left:63.930000px;}
.xd{left:71.685000px;}
.x24{left:72.714000px;}
.x28{left:90.045000px;}
.x2d{left:95.250000px;}
.x30{left:105.885000px;}
.x19{left:130.536000px;}
.x4{left:134.136000px;}
.xa{left:138.275987px;}
.x20{left:140.436000px;}
.x13{left:146.915987px;}
.x41{left:159.509987px;}
.x3e{left:166.005000px;}
.x40{left:180.749987px;}
.x18{left:191.369987px;}
.x3d{left:245.010000px;}
.x1b{left:276.870000px;}
.x25{left:286.770000px;}
.x14{left:330.374987px;}
.x17{left:338.294987px;}
.x16{left:339.554987px;}
.x3c{left:341.534987px;}
.x15{left:360.074987px;}
.x1d{left:457.635000px;}
.x29{left:467.535000px;}
.xb{left:629.925000px;}
.x1f{left:649.005000px;}
.x2e{left:658.905000px;}
.xc{left:679.605000px;}
.xe{left:696.750000px;}
.xf{left:713.850000px;}
.x10{left:730.770000px;}
.x11{left:747.870000px;}
.x8{left:829.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.472000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.lsb{letter-spacing:9.728000pt;}
.lsa{letter-spacing:10.240000pt;}
.ls2{letter-spacing:11.520000pt;}
.lsc{letter-spacing:22.400000pt;}
.ls0{letter-spacing:37.120000pt;}
.ls3{letter-spacing:59.520000pt;}
.ls1{letter-spacing:69.280000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws3{word-spacing:0.000000pt;}
._20{margin-left:-3.988053pt;}
._21{margin-left:-2.969600pt;}
._2{margin-left:-1.966080pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.198080pt;}
._b{width:2.176000pt;}
._16{width:3.168853pt;}
._1a{width:4.096000pt;}
._11{width:5.184000pt;}
._12{width:6.353920pt;}
._19{width:7.854080pt;}
._7{width:9.429333pt;}
._5{width:10.986667pt;}
._6{width:11.943253pt;}
._e{width:13.378560pt;}
._23{width:15.096320pt;}
._8{width:17.344000pt;}
._14{width:18.624000pt;}
._d{width:19.712000pt;}
._1c{width:21.056000pt;}
._1b{width:22.122667pt;}
._18{width:23.779840pt;}
._17{width:24.686080pt;}
._22{width:25.589760pt;}
._25{width:27.470507pt;}
._24{width:28.408747pt;}
._1d{width:29.312000pt;}
._15{width:31.278080pt;}
._2a{width:33.582080pt;}
._a{width:37.152000pt;}
._9{width:38.336000pt;}
._29{width:40.384000pt;}
._28{width:41.710080pt;}
._1f{width:45.905920pt;}
._1e{width:47.214080pt;}
._f{width:51.008000pt;}
._10{width:52.352000pt;}
._13{width:59.904000pt;}
._26{width:62.336000pt;}
._27{width:63.229440pt;}
._c{width:68.864000pt;}
._2e{width:71.424000pt;}
._4{width:74.112000pt;}
._3{width:75.296000pt;}
._2c{width:86.656000pt;}
._2d{width:88.334507pt;}
._2f{width:133.824000pt;}
._30{width:135.057920pt;}
._2b{width:156.288000pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:3.360000pt;}
.y46{bottom:4.000000pt;}
.y66{bottom:5.760000pt;}
.y6a{bottom:6.080000pt;}
.y6c{bottom:6.240000pt;}
.y62{bottom:8.480000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y44{bottom:17.120000pt;}
.y7{bottom:18.400000pt;}
.y48{bottom:22.400000pt;}
.y4{bottom:24.800000pt;}
.y6f{bottom:25.440000pt;}
.y69{bottom:25.600000pt;}
.y60{bottom:26.880000pt;}
.y4c{bottom:28.320000pt;}
.y43{bottom:35.680000pt;}
.y54{bottom:35.706667pt;}
.y55{bottom:36.800000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y6e{bottom:44.800000pt;}
.y68{bottom:44.960000pt;}
.y5e{bottom:45.280000pt;}
.y4b{bottom:46.880000pt;}
.y42{bottom:54.080000pt;}
.y4f{bottom:54.106667pt;}
.y2{bottom:61.600000pt;}
.y4a{bottom:65.280000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.y41{bottom:72.480000pt;}
.y4e{bottom:72.506667pt;}
.ya{bottom:80.992000pt;}
.y52{bottom:90.906667pt;}
.y7f{bottom:115.712000pt;}
.y63{bottom:136.186667pt;}
.y7e{bottom:136.826667pt;}
.y37{bottom:145.466667pt;}
.y5d{bottom:151.386667pt;}
.y7d{bottom:157.946667pt;}
.y61{bottom:162.906667pt;}
.y36{bottom:166.586667pt;}
.y7c{bottom:179.226667pt;}
.y5f{bottom:181.306667pt;}
.y35{bottom:187.866667pt;}
.y80{bottom:195.706667pt;}
.y5c{bottom:199.706667pt;}
.y7b{bottom:200.346667pt;}
.y34{bottom:208.986667pt;}
.y7a{bottom:221.466667pt;}
.y33{bottom:230.106667pt;}
.y79{bottom:242.586667pt;}
.y32{bottom:251.266667pt;}
.y5a{bottom:253.506667pt;}
.y5b{bottom:256.546667pt;}
.y78{bottom:263.906667pt;}
.y31{bottom:272.386667pt;}
.y59{bottom:274.946667pt;}
.y77{bottom:285.026667pt;}
.y30{bottom:293.666667pt;}
.y76{bottom:306.146667pt;}
.y2f{bottom:314.786667pt;}
.y75{bottom:327.266667pt;}
.y2e{bottom:335.906667pt;}
.y57{bottom:347.106667pt;}
.y74{bottom:348.546667pt;}
.y58{bottom:350.146667pt;}
.y2d{bottom:357.026667pt;}
.y73{bottom:369.666667pt;}
.y2c{bottom:378.306667pt;}
.y56{bottom:386.946667pt;}
.y72{bottom:390.786667pt;}
.y2b{bottom:399.426667pt;}
.y71{bottom:411.906667pt;}
.y2a{bottom:420.546667pt;}
.y70{bottom:433.026667pt;}
.y50{bottom:440.706667pt;}
.y29{bottom:441.666667pt;}
.y51{bottom:443.746667pt;}
.y6d{bottom:448.386667pt;}
.y4d{bottom:462.146667pt;}
.y28{bottom:462.946667pt;}
.y53{bottom:480.546667pt;}
.y27{bottom:484.066667pt;}
.y26{bottom:505.213333pt;}
.y6b{bottom:507.133333pt;}
.y25{bottom:526.333333pt;}
.y67{bottom:546.653333pt;}
.y24{bottom:547.613333pt;}
.y45{bottom:552.733333pt;}
.y49{bottom:555.773333pt;}
.y40{bottom:559.773333pt;}
.y23{bottom:568.733333pt;}
.y47{bottom:578.173333pt;}
.y22{bottom:589.853333pt;}
.y65{bottom:605.533333pt;}
.y21{bottom:610.973333pt;}
.y64{bottom:631.933333pt;}
.y20{bottom:632.253333pt;}
.y3e{bottom:650.333333pt;}
.y1f{bottom:653.373333pt;}
.y3d{bottom:674.173333pt;}
.y1e{bottom:674.493333pt;}
.y3c{bottom:695.293333pt;}
.y1d{bottom:695.613333pt;}
.y1c{bottom:716.733333pt;}
.y1b{bottom:738.013333pt;}
.y1a{bottom:759.173333pt;}
.y19{bottom:780.293333pt;}
.y18{bottom:801.413333pt;}
.y17{bottom:822.693333pt;}
.y16{bottom:843.813333pt;}
.y15{bottom:864.933333pt;}
.y14{bottom:886.053333pt;}
.y13{bottom:907.013333pt;}
.y3b{bottom:907.333333pt;}
.y12{bottom:928.453333pt;}
.y11{bottom:949.253333pt;}
.y3a{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y39{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y38{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h11{height:2.512500pt;}
.h16{height:2.546250pt;}
.hd{height:16.960000pt;}
.h1d{height:19.360000pt;}
.h8{height:29.440000pt;}
.h21{height:38.880000pt;}
.h20{height:41.285000pt;}
.hc{height:44.875000pt;}
.hb{height:46.781250pt;}
.h19{height:50.080000pt;}
.h1b{height:50.112000pt;}
.h1f{height:57.787500pt;}
.h22{height:58.112000pt;}
.h1e{height:58.240000pt;}
.h9{height:58.563750pt;}
.he{height:59.340000pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h23{height:65.781915pt;}
.h12{height:68.480000pt;}
.h18{height:68.512000pt;}
.h4{height:73.454062pt;}
.hf{height:86.880000pt;}
.h14{height:86.912000pt;}
.h13{height:90.880000pt;}
.h1a{height:92.960000pt;}
.h10{height:96.960000pt;}
.h2{height:97.600000pt;}
.h1c{height:101.472000pt;}
.h17{height:105.312000pt;}
.h15{height:111.392000pt;}
.h5{height:114.889687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:15.040000pt;}
.w8{width:15.200000pt;}
.w7{width:15.232000pt;}
.w6{width:44.160000pt;}
.w4{width:56.506667pt;}
.wa{width:80.800000pt;}
.w13{width:93.920000pt;}
.wf{width:111.680000pt;}
.w2{width:119.232000pt;}
.wb{width:129.440000pt;}
.w10{width:142.266667pt;}
.w11{width:151.706667pt;}
.wc{width:160.026667pt;}
.wd{width:169.466667pt;}
.w12{width:170.746667pt;}
.we{width:188.346667pt;}
.w14{width:528.573333pt;}
.w3{width:618.013333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.600000pt;}
.x36{left:2.720000pt;}
.x2f{left:4.160000pt;}
.x27{left:5.320000pt;}
.x9{left:7.200000pt;}
.x7{left:8.320000pt;}
.x26{left:9.320000pt;}
.x3f{left:11.034667pt;}
.x23{left:12.154667pt;}
.x6{left:15.034667pt;}
.x2{left:16.639976pt;}
.x22{left:18.074667pt;}
.x2b{left:19.520000pt;}
.x2a{left:20.640000pt;}
.x39{left:22.074667pt;}
.x1e{left:23.360000pt;}
.x32{left:26.280000pt;}
.x35{left:28.026667pt;}
.x1{left:30.719974pt;}
.x3a{left:31.880000pt;}
.x1a{left:33.434667pt;}
.x3{left:35.199976pt;}
.x21{left:37.754667pt;}
.x37{left:39.400000pt;}
.x31{left:42.554667pt;}
.x33{left:43.880000pt;}
.x38{left:45.306667pt;}
.x34{left:48.186667pt;}
.x2c{left:51.066667pt;}
.x1c{left:52.680000pt;}
.x5{left:54.714667pt;}
.x3b{left:56.826667pt;}
.xd{left:63.720000pt;}
.x24{left:64.634667pt;}
.x28{left:80.040000pt;}
.x2d{left:84.666667pt;}
.x30{left:94.120000pt;}
.x19{left:116.032000pt;}
.x4{left:119.232000pt;}
.xa{left:122.911988pt;}
.x20{left:124.832000pt;}
.x13{left:130.591988pt;}
.x41{left:141.786655pt;}
.x3e{left:147.560000pt;}
.x40{left:160.666655pt;}
.x18{left:170.106655pt;}
.x3d{left:217.786667pt;}
.x1b{left:246.106667pt;}
.x25{left:254.906667pt;}
.x14{left:293.666655pt;}
.x17{left:300.706655pt;}
.x16{left:301.826655pt;}
.x3c{left:303.586655pt;}
.x15{left:320.066655pt;}
.x1d{left:406.786667pt;}
.x29{left:415.586667pt;}
.xb{left:559.933333pt;}
.x1f{left:576.893333pt;}
.x2e{left:585.693333pt;}
.xc{left:604.093333pt;}
.xe{left:619.333333pt;}
.xf{left:634.533333pt;}
.x10{left:649.573333pt;}
.x11{left:664.773333pt;}
.x8{left:737.253333pt;}
}




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