
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_61f0356c0072d1214230f86f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a7ddb68a513041e90af234f7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_afca4eb9a1f088b941cb76e1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2fd33e5975b05667fb1dac05.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_820325fc49eb5ff1d01d0cd2.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6f5b76d4c6f9e075ab4f7ee2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_6731bf6064d9da16286f6a59.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_3526157e98999082a2d8a0a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_056e0853ae1debff2b12fbb5.woff2')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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5a8a14e64488c541b0660528.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-60.660000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.108000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.234000px;}
.ls3{letter-spacing:0.360000px;}
.ls10{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.ls0{letter-spacing:2287.716000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.284000px;}
.ws8{word-spacing:-13.140000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws9{word-spacing:0.000000px;}
._13{margin-left:-2.118240px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.751840px;}
._d{width:3.762000px;}
._e{width:4.980480px;}
._b{width:6.433680px;}
._a{width:7.452000px;}
._12{width:8.532000px;}
._7{width:10.123920px;}
._5{width:11.137680px;}
._4{width:12.204000px;}
._c{width:13.473600px;}
._6{width:15.107040px;}
._3{width:16.650000px;}
._16{width:18.107280px;}
._10{width:19.242720px;}
._17{width:21.453840px;}
._14{width:22.649040px;}
._15{width:23.732880px;}
._9{width:24.948000px;}
._8{width:26.190000px;}
._f{width:27.303360px;}
._11{width:342.604320px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:2.695500px;}
.y42{bottom:3.765000px;}
.y5{bottom:4.140000px;}
.y5a{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4b{bottom:10.255500px;}
.y58{bottom:15.655500px;}
.y41{bottom:21.045000px;}
.y4{bottom:23.070000px;}
.y57{bottom:32.395500px;}
.y40{bottom:37.965000px;}
.y4a{bottom:40.315500px;}
.y3{bottom:48.090000px;}
.y56{bottom:49.855500px;}
.y49{bottom:52.015500px;}
.y3f{bottom:55.425000px;}
.y7{bottom:57.600000px;}
.y48{bottom:64.969500px;}
.y55{bottom:65.689500px;}
.y3e{bottom:72.750000px;}
.y47{bottom:78.109500px;}
.y54{bottom:81.349500px;}
.y43{bottom:89.140500px;}
.y3d{bottom:90.030000px;}
.y53{bottom:93.949500px;}
.y46{bottom:99.889500px;}
.y52{bottom:100.429500px;}
.y94{bottom:106.236000px;}
.y3c{bottom:107.310000px;}
.y51{bottom:116.269500px;}
.y93{bottom:123.516000px;}
.y3b{bottom:124.590000px;}
.y50{bottom:131.749500px;}
.y92{bottom:140.796000px;}
.yaa{bottom:141.156000px;}
.y3a{bottom:141.510000px;}
.y4f{bottom:147.409500px;}
.y91{bottom:158.430000px;}
.y39{bottom:158.970000px;}
.y45{bottom:161.989500px;}
.y4e{bottom:162.889500px;}
.y44{bottom:172.609500px;}
.y90{bottom:175.710000px;}
.y38{bottom:176.250000px;}
.y4d{bottom:178.009500px;}
.ya9{bottom:192.450000px;}
.y8f{bottom:192.810000px;}
.y37{bottom:193.530000px;}
.y8e{bottom:209.730000px;}
.y36{bottom:210.810000px;}
.y8d{bottom:227.370000px;}
.y35{bottom:228.090000px;}
.y8c{bottom:244.650000px;}
.y34{bottom:245.190000px;}
.ya8{bottom:261.570000px;}
.y8b{bottom:261.930000px;}
.y33{bottom:262.470000px;}
.y1f{bottom:275.070000px;}
.y8a{bottom:278.850000px;}
.ya7{bottom:279.210000px;}
.y32{bottom:279.750000px;}
.y11{bottom:291.645000px;}
.y89{bottom:296.310000px;}
.y31{bottom:297.030000px;}
.y1e{bottom:299.190000px;}
.ya6{bottom:313.230000px;}
.y88{bottom:313.590000px;}
.y30{bottom:314.310000px;}
.y1d{bottom:323.520000px;}
.y87{bottom:330.870000px;}
.y2f{bottom:331.620000px;}
.y1c{bottom:347.640000px;}
.y86{bottom:348.150000px;}
.y2e{bottom:348.720000px;}
.y85{bottom:365.115000px;}
.ya5{bottom:365.475000px;}
.y2d{bottom:365.640000px;}
.y1b{bottom:371.760000px;}
.y84{bottom:382.395000px;}
.yb4{bottom:382.755000px;}
.y2c{bottom:382.920000px;}
.y1a{bottom:395.880000px;}
.y83{bottom:399.855000px;}
.y2b{bottom:400.020000px;}
.y2a{bottom:415.680000px;}
.y82{bottom:417.135000px;}
.y19{bottom:420.000000px;}
.y29{bottom:431.160000px;}
.ya4{bottom:434.055000px;}
.y81{bottom:434.415000px;}
.y18{bottom:444.120000px;}
.y28{bottom:446.640000px;}
.y80{bottom:451.335000px;}
.yb3{bottom:451.695000px;}
.y27{bottom:462.120000px;}
.y17{bottom:468.240000px;}
.y7f{bottom:468.975000px;}
.y26{bottom:477.780000px;}
.y7e{bottom:486.255000px;}
.y16{bottom:492.540000px;}
.y25{bottom:493.260000px;}
.y7d{bottom:503.355000px;}
.y24{bottom:508.740000px;}
.y15{bottom:516.660000px;}
.y7c{bottom:520.275000px;}
.ya3{bottom:520.635000px;}
.y23{bottom:524.220000px;}
.y7b{bottom:537.555000px;}
.ya2{bottom:537.915000px;}
.y22{bottom:539.700000px;}
.y14{bottom:540.780000px;}
.y7a{bottom:554.835000px;}
.ya1{bottom:555.195000px;}
.y21{bottom:555.360000px;}
.y13{bottom:564.900000px;}
.ya0{bottom:572.115000px;}
.y79{bottom:572.475000px;}
.y20{bottom:586.005000px;}
.y12{bottom:589.065000px;}
.y78{bottom:589.575000px;}
.y77{bottom:606.855000px;}
.y76{bottom:623.805000px;}
.y9f{bottom:624.165000px;}
.y9e{bottom:641.085000px;}
.y75{bottom:641.445000px;}
.y74{bottom:658.725000px;}
.y73{bottom:676.005000px;}
.yb2{bottom:692.745000px;}
.y72{bottom:693.105000px;}
.y71{bottom:710.025000px;}
.yb1{bottom:710.385000px;}
.y9d{bottom:727.305000px;}
.y70{bottom:727.665000px;}
.y6f{bottom:744.945000px;}
.y6e{bottom:762.225000px;}
.y6d{bottom:779.505000px;}
.y6c{bottom:796.245000px;}
.yb0{bottom:796.605000px;}
.y6b{bottom:813.885000px;}
.y6a{bottom:831.165000px;}
.y69{bottom:848.445000px;}
.y9c{bottom:865.365000px;}
.y68{bottom:865.725000px;}
.y67{bottom:882.870000px;}
.y10{bottom:897.630000px;}
.y66{bottom:899.790000px;}
.y9b{bottom:900.150000px;}
.yf{bottom:914.910000px;}
.yaf{bottom:917.070000px;}
.y65{bottom:917.430000px;}
.ye{bottom:932.190000px;}
.y9a{bottom:934.350000px;}
.y64{bottom:934.710000px;}
.yd{bottom:949.470000px;}
.y99{bottom:951.630000px;}
.y63{bottom:951.990000px;}
.yc{bottom:966.570000px;}
.yae{bottom:968.910000px;}
.y62{bottom:969.270000px;}
.yb{bottom:983.850000px;}
.y61{bottom:986.010000px;}
.y98{bottom:986.370000px;}
.y60{bottom:1003.290000px;}
.y97{bottom:1003.650000px;}
.ya{bottom:1019.310000px;}
.y96{bottom:1020.570000px;}
.y5f{bottom:1020.930000px;}
.yad{bottom:1037.850000px;}
.y5e{bottom:1038.210000px;}
.y9{bottom:1043.430000px;}
.yac{bottom:1055.130000px;}
.y5d{bottom:1055.490000px;}
.y8{bottom:1071.870000px;}
.yab{bottom:1072.410000px;}
.y5c{bottom:1072.770000px;}
.y59{bottom:1075.320000px;}
.y95{bottom:1089.510000px;}
.y5b{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h13{height:5.650313px;}
.h15{height:27.540000px;}
.h11{height:29.678906px;}
.h10{height:35.332031px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.he{height:43.215117px;}
.hd{height:52.971680px;}
.h12{height:54.421875px;}
.h7{height:57.324375px;}
.h14{height:58.621992px;}
.h6{height:58.651172px;}
.h9{height:60.226875px;}
.h17{height:61.423863px;}
.h16{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h8{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.hf{height:201.775500px;}
.ha{height:598.590000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.040000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x1a{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:18.720000px;}
.x18{left:22.500000px;}
.x17{left:28.980000px;}
.x11{left:43.740000px;}
.x1d{left:47.700000px;}
.x12{left:50.760000px;}
.x10{left:55.080000px;}
.x1b{left:62.145000px;}
.x16{left:67.134000px;}
.x14{left:75.234000px;}
.x1{left:78.327000px;}
.x15{left:83.694000px;}
.x9{left:86.436000px;}
.x2{left:95.763000px;}
.x1e{left:102.774000px;}
.x1c{left:106.734000px;}
.x20{left:113.436000px;}
.x13{left:124.554000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x19{left:219.090000px;}
.xc{left:569.985000px;}
.xb{left:587.130000px;}
.xe{left:591.630000px;}
.xd{left:635.370000px;}
.xa{left:692.250000px;}
.x8{left:766.080000px;}
.x7{left:792.000000px;}
.xf{left:800.100000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-53.920000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.208000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls10{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ls0{letter-spacing:2033.525333pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.808000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws9{word-spacing:0.000000pt;}
._13{margin-left:-1.882880pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.446080pt;}
._d{width:3.344000pt;}
._e{width:4.427093pt;}
._b{width:5.718827pt;}
._a{width:6.624000pt;}
._12{width:7.584000pt;}
._7{width:8.999040pt;}
._5{width:9.900160pt;}
._4{width:10.848000pt;}
._c{width:11.976533pt;}
._6{width:13.428480pt;}
._3{width:14.800000pt;}
._16{width:16.095360pt;}
._10{width:17.104640pt;}
._17{width:19.070080pt;}
._14{width:20.132480pt;}
._15{width:21.095893pt;}
._9{width:22.176000pt;}
._8{width:23.280000pt;}
._f{width:24.269653pt;}
._11{width:304.537173pt;}
.fs9{font-size:5.120000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.396000pt;}
.y42{bottom:3.346667pt;}
.y5{bottom:3.680000pt;}
.y5a{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4b{bottom:9.116000pt;}
.y58{bottom:13.916000pt;}
.y41{bottom:18.706667pt;}
.y4{bottom:20.506667pt;}
.y57{bottom:28.796000pt;}
.y40{bottom:33.746667pt;}
.y4a{bottom:35.836000pt;}
.y3{bottom:42.746667pt;}
.y56{bottom:44.316000pt;}
.y49{bottom:46.236000pt;}
.y3f{bottom:49.266667pt;}
.y7{bottom:51.200000pt;}
.y48{bottom:57.750667pt;}
.y55{bottom:58.390667pt;}
.y3e{bottom:64.666667pt;}
.y47{bottom:69.430667pt;}
.y54{bottom:72.310667pt;}
.y43{bottom:79.236000pt;}
.y3d{bottom:80.026667pt;}
.y53{bottom:83.510667pt;}
.y46{bottom:88.790667pt;}
.y52{bottom:89.270667pt;}
.y94{bottom:94.432000pt;}
.y3c{bottom:95.386667pt;}
.y51{bottom:103.350667pt;}
.y93{bottom:109.792000pt;}
.y3b{bottom:110.746667pt;}
.y50{bottom:117.110667pt;}
.y92{bottom:125.152000pt;}
.yaa{bottom:125.472000pt;}
.y3a{bottom:125.786667pt;}
.y4f{bottom:131.030667pt;}
.y91{bottom:140.826667pt;}
.y39{bottom:141.306667pt;}
.y45{bottom:143.990667pt;}
.y4e{bottom:144.790667pt;}
.y44{bottom:153.430667pt;}
.y90{bottom:156.186667pt;}
.y38{bottom:156.666667pt;}
.y4d{bottom:158.230667pt;}
.ya9{bottom:171.066667pt;}
.y8f{bottom:171.386667pt;}
.y37{bottom:172.026667pt;}
.y8e{bottom:186.426667pt;}
.y36{bottom:187.386667pt;}
.y8d{bottom:202.106667pt;}
.y35{bottom:202.746667pt;}
.y8c{bottom:217.466667pt;}
.y34{bottom:217.946667pt;}
.ya8{bottom:232.506667pt;}
.y8b{bottom:232.826667pt;}
.y33{bottom:233.306667pt;}
.y1f{bottom:244.506667pt;}
.y8a{bottom:247.866667pt;}
.ya7{bottom:248.186667pt;}
.y32{bottom:248.666667pt;}
.y11{bottom:259.240000pt;}
.y89{bottom:263.386667pt;}
.y31{bottom:264.026667pt;}
.y1e{bottom:265.946667pt;}
.ya6{bottom:278.426667pt;}
.y88{bottom:278.746667pt;}
.y30{bottom:279.386667pt;}
.y1d{bottom:287.573333pt;}
.y87{bottom:294.106667pt;}
.y2f{bottom:294.773333pt;}
.y1c{bottom:309.013333pt;}
.y86{bottom:309.466667pt;}
.y2e{bottom:309.973333pt;}
.y85{bottom:324.546667pt;}
.ya5{bottom:324.866667pt;}
.y2d{bottom:325.013333pt;}
.y1b{bottom:330.453333pt;}
.y84{bottom:339.906667pt;}
.yb4{bottom:340.226667pt;}
.y2c{bottom:340.373333pt;}
.y1a{bottom:351.893333pt;}
.y83{bottom:355.426667pt;}
.y2b{bottom:355.573333pt;}
.y2a{bottom:369.493333pt;}
.y82{bottom:370.786667pt;}
.y19{bottom:373.333333pt;}
.y29{bottom:383.253333pt;}
.ya4{bottom:385.826667pt;}
.y81{bottom:386.146667pt;}
.y18{bottom:394.773333pt;}
.y28{bottom:397.013333pt;}
.y80{bottom:401.186667pt;}
.yb3{bottom:401.506667pt;}
.y27{bottom:410.773333pt;}
.y17{bottom:416.213333pt;}
.y7f{bottom:416.866667pt;}
.y26{bottom:424.693333pt;}
.y7e{bottom:432.226667pt;}
.y16{bottom:437.813333pt;}
.y25{bottom:438.453333pt;}
.y7d{bottom:447.426667pt;}
.y24{bottom:452.213333pt;}
.y15{bottom:459.253333pt;}
.y7c{bottom:462.466667pt;}
.ya3{bottom:462.786667pt;}
.y23{bottom:465.973333pt;}
.y7b{bottom:477.826667pt;}
.ya2{bottom:478.146667pt;}
.y22{bottom:479.733333pt;}
.y14{bottom:480.693333pt;}
.y7a{bottom:493.186667pt;}
.ya1{bottom:493.506667pt;}
.y21{bottom:493.653333pt;}
.y13{bottom:502.133333pt;}
.ya0{bottom:508.546667pt;}
.y79{bottom:508.866667pt;}
.y20{bottom:520.893333pt;}
.y12{bottom:523.613333pt;}
.y78{bottom:524.066667pt;}
.y77{bottom:539.426667pt;}
.y76{bottom:554.493333pt;}
.y9f{bottom:554.813333pt;}
.y9e{bottom:569.853333pt;}
.y75{bottom:570.173333pt;}
.y74{bottom:585.533333pt;}
.y73{bottom:600.893333pt;}
.yb2{bottom:615.773333pt;}
.y72{bottom:616.093333pt;}
.y71{bottom:631.133333pt;}
.yb1{bottom:631.453333pt;}
.y9d{bottom:646.493333pt;}
.y70{bottom:646.813333pt;}
.y6f{bottom:662.173333pt;}
.y6e{bottom:677.533333pt;}
.y6d{bottom:692.893333pt;}
.y6c{bottom:707.773333pt;}
.yb0{bottom:708.093333pt;}
.y6b{bottom:723.453333pt;}
.y6a{bottom:738.813333pt;}
.y69{bottom:754.173333pt;}
.y9c{bottom:769.213333pt;}
.y68{bottom:769.533333pt;}
.y67{bottom:784.773333pt;}
.y10{bottom:797.893333pt;}
.y66{bottom:799.813333pt;}
.y9b{bottom:800.133333pt;}
.yf{bottom:813.253333pt;}
.yaf{bottom:815.173333pt;}
.y65{bottom:815.493333pt;}
.ye{bottom:828.613333pt;}
.y9a{bottom:830.533333pt;}
.y64{bottom:830.853333pt;}
.yd{bottom:843.973333pt;}
.y99{bottom:845.893333pt;}
.y63{bottom:846.213333pt;}
.yc{bottom:859.173333pt;}
.yae{bottom:861.253333pt;}
.y62{bottom:861.573333pt;}
.yb{bottom:874.533333pt;}
.y61{bottom:876.453333pt;}
.y98{bottom:876.773333pt;}
.y60{bottom:891.813333pt;}
.y97{bottom:892.133333pt;}
.ya{bottom:906.053333pt;}
.y96{bottom:907.173333pt;}
.y5f{bottom:907.493333pt;}
.yad{bottom:922.533333pt;}
.y5e{bottom:922.853333pt;}
.y9{bottom:927.493333pt;}
.yac{bottom:937.893333pt;}
.y5d{bottom:938.213333pt;}
.y8{bottom:952.773333pt;}
.yab{bottom:953.253333pt;}
.y5c{bottom:953.573333pt;}
.y59{bottom:955.840000pt;}
.y95{bottom:968.453333pt;}
.y5b{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h13{height:5.022500pt;}
.h15{height:24.480000pt;}
.h11{height:26.381250pt;}
.h10{height:31.406250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.he{height:38.413438pt;}
.hd{height:47.085938pt;}
.h12{height:48.375000pt;}
.h7{height:50.955000pt;}
.h14{height:52.108438pt;}
.h6{height:52.134375pt;}
.h9{height:53.535000pt;}
.h17{height:54.598989pt;}
.h16{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h8{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.hf{height:179.356000pt;}
.ha{height:532.080000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.480000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x1a{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:16.640000pt;}
.x18{left:20.000000pt;}
.x17{left:25.760000pt;}
.x11{left:38.880000pt;}
.x1d{left:42.400000pt;}
.x12{left:45.120000pt;}
.x10{left:48.960000pt;}
.x1b{left:55.240000pt;}
.x16{left:59.674667pt;}
.x14{left:66.874667pt;}
.x1{left:69.624000pt;}
.x15{left:74.394667pt;}
.x9{left:76.832000pt;}
.x2{left:85.122667pt;}
.x1e{left:91.354667pt;}
.x1c{left:94.874667pt;}
.x20{left:100.832000pt;}
.x13{left:110.714667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x19{left:194.746667pt;}
.xc{left:506.653333pt;}
.xb{left:521.893333pt;}
.xe{left:525.893333pt;}
.xd{left:564.773333pt;}
.xa{left:615.333333pt;}
.x8{left:680.960000pt;}
.x7{left:704.000000pt;}
.xf{left:711.200000pt;}
}




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