
    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_340276e9943d87c8cc8e9db0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_3f86866a7aa97bbd85d33b9f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d5a24612dad67ba4d34691d7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_4f2133eaaf8927846157a640.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_2722262147d4099fbf68a6ce.woff')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_d0eab4e8d6bff9b32e2629ae.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_59e0ee3ab7c1cbc2a6daf26a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.498000px;}
.ls8{letter-spacing:-0.486600px;}
.lsd{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.498240px;}
.lsb{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.lsc{letter-spacing:6.480000px;}
.ls14{letter-spacing:23.184000px;}
.lse{letter-spacing:27.648000px;}
.ls11{letter-spacing:30.528000px;}
.ls7{letter-spacing:30.960000px;}
.lsa{letter-spacing:33.264000px;}
.lsf{letter-spacing:33.408000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.633400px;}
.ws2{word-spacing:-13.182000px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-5.918400px;}
._15{margin-left:-4.579200px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._e{width:4.104000px;}
._c{width:5.472000px;}
._d{width:6.984000px;}
._b{width:8.712000px;}
._a{width:9.720000px;}
._19{width:10.872000px;}
._16{width:11.952000px;}
._9{width:12.960000px;}
._8{width:14.040000px;}
._12{width:15.048000px;}
._f{width:16.992000px;}
._18{width:19.512000px;}
._20{width:20.851200px;}
._1f{width:21.888000px;}
._14{width:23.040000px;}
._13{width:24.276000px;}
._17{width:25.939200px;}
._1a{width:27.129600px;}
._1b{width:28.238400px;}
._10{width:29.964000px;}
._11{width:31.495200px;}
._1d{width:34.992000px;}
._1c{width:36.000000px;}
._22{width:37.296000px;}
._21{width:38.304000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._7{width:849.336000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:90.720000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.yb7{bottom:3.960000px;}
.ybc{bottom:4.320000px;}
.yc6{bottom:14.034000px;}
.y46{bottom:14.040000px;}
.yc3{bottom:14.400000px;}
.ybf{bottom:14.760000px;}
.yba{bottom:24.840000px;}
.ycf{bottom:24.870000px;}
.yc2{bottom:34.920000px;}
.ybe{bottom:35.325000px;}
.ye{bottom:43.560000px;}
.y84{bottom:44.994000px;}
.y63{bottom:45.000000px;}
.y45{bottom:45.045000px;}
.ye0{bottom:45.354000px;}
.yc5{bottom:45.360000px;}
.ya0{bottom:45.405000px;}
.yb9{bottom:45.765000px;}
.yc1{bottom:55.800000px;}
.ybd{bottom:56.205000px;}
.y103{bottom:60.120000px;}
.yc4{bottom:66.240000px;}
.ybb{bottom:66.285000px;}
.yc{bottom:68.400000px;}
.y62{bottom:75.960000px;}
.y44{bottom:76.005000px;}
.y83{bottom:76.359000px;}
.y9f{bottom:76.365000px;}
.y102{bottom:91.110000px;}
.ya{bottom:94.716000px;}
.y61{bottom:106.920000px;}
.y43{bottom:106.965000px;}
.y82{bottom:107.319000px;}
.y9e{bottom:107.325000px;}
.y101{bottom:122.430000px;}
.yc7{bottom:130.356000px;}
.y64{bottom:131.796000px;}
.y60{bottom:138.270000px;}
.y81{bottom:138.279000px;}
.y9d{bottom:138.285000px;}
.ydf{bottom:138.639000px;}
.ya1{bottom:142.596000px;}
.y100{bottom:153.390000px;}
.y42{bottom:156.315000px;}
.y23{bottom:161.670000px;}
.y85{bottom:162.750000px;}
.y5f{bottom:169.230000px;}
.y80{bottom:169.239000px;}
.y9c{bottom:169.275000px;}
.yde{bottom:169.599000px;}
.yf2{bottom:169.635000px;}
.y28{bottom:171.030000px;}
.ye1{bottom:173.190000px;}
.yff{bottom:184.350000px;}
.y41{bottom:187.275000px;}
.y22{bottom:192.270000px;}
.y5e{bottom:200.190000px;}
.y7f{bottom:200.229000px;}
.ydd{bottom:200.589000px;}
.y9b{bottom:200.595000px;}
.y47{bottom:207.075000px;}
.yfe{bottom:215.355000px;}
.y40{bottom:218.235000px;}
.y21{bottom:228.675000px;}
.y5d{bottom:231.150000px;}
.y7e{bottom:231.549000px;}
.y9a{bottom:231.555000px;}
.yfd{bottom:246.675000px;}
.y3f{bottom:249.195000px;}
.y7d{bottom:262.509000px;}
.y5c{bottom:262.515000px;}
.ydc{bottom:262.869000px;}
.y20{bottom:265.035000px;}
.yfc{bottom:277.635000px;}
.y3e{bottom:280.560000px;}
.y7c{bottom:293.469000px;}
.y5b{bottom:293.475000px;}
.y99{bottom:293.520000px;}
.ydb{bottom:293.829000px;}
.yf1{bottom:293.880000px;}
.y1f{bottom:301.035000px;}
.yfb{bottom:308.595000px;}
.y3d{bottom:311.520000px;}
.y5a{bottom:324.435000px;}
.y7b{bottom:324.474000px;}
.yda{bottom:324.834000px;}
.y98{bottom:324.840000px;}
.yc0{bottom:333.105000px;}
.y1e{bottom:337.425000px;}
.yfa{bottom:339.585000px;}
.y3c{bottom:342.480000px;}
.y59{bottom:355.395000px;}
.y7a{bottom:355.794000px;}
.y97{bottom:355.800000px;}
.y1d{bottom:360.105000px;}
.yf9{bottom:370.905000px;}
.y3b{bottom:373.440000px;}
.y1c{bottom:386.025000px;}
.y58{bottom:386.745000px;}
.y79{bottom:386.754000px;}
.y96{bottom:386.760000px;}
.yd9{bottom:387.114000px;}
.yf8{bottom:401.865000px;}
.y3a{bottom:404.790000px;}
.yb5{bottom:406.914000px;}
.y1b{bottom:416.625000px;}
.y57{bottom:417.705000px;}
.y78{bottom:417.714000px;}
.y95{bottom:417.750000px;}
.yd8{bottom:418.074000px;}
.yb8{bottom:421.665000px;}
.yf7{bottom:432.825000px;}
.y39{bottom:435.750000px;}
.yb4{bottom:437.904000px;}
.y56{bottom:448.665000px;}
.y77{bottom:448.704000px;}
.yd7{bottom:449.064000px;}
.y94{bottom:449.070000px;}
.y1a{bottom:453.030000px;}
.yf6{bottom:463.785000px;}
.yb3{bottom:469.224000px;}
.y55{bottom:479.625000px;}
.y76{bottom:480.024000px;}
.y93{bottom:480.030000px;}
.y38{bottom:484.710000px;}
.y19{bottom:489.390000px;}
.yf5{bottom:495.150000px;}
.yb2{bottom:500.184000px;}
.yb6{bottom:510.630000px;}
.y54{bottom:510.975000px;}
.y75{bottom:510.984000px;}
.y92{bottom:510.990000px;}
.yd6{bottom:511.344000px;}
.yf0{bottom:512.070000px;}
.y18{bottom:525.390000px;}
.yf4{bottom:526.110000px;}
.yb1{bottom:531.144000px;}
.y37{bottom:533.700000px;}
.y53{bottom:541.935000px;}
.y74{bottom:541.944000px;}
.y91{bottom:541.980000px;}
.yd5{bottom:542.304000px;}
.y17{bottom:561.750000px;}
.yb0{bottom:562.134000px;}
.yef{bottom:562.860000px;}
.y36{bottom:565.020000px;}
.y52{bottom:572.895000px;}
.y73{bottom:572.934000px;}
.yd4{bottom:573.294000px;}
.y90{bottom:573.300000px;}
.yaf{bottom:593.454000px;}
.yee{bottom:593.820000px;}
.y35{bottom:595.980000px;}
.y104{bottom:596.700000px;}
.y16{bottom:597.780000px;}
.y51{bottom:603.855000px;}
.y72{bottom:604.254000px;}
.y8f{bottom:604.260000px;}
.yf3{bottom:613.620000px;}
.yae{bottom:624.414000px;}
.yed{bottom:624.780000px;}
.y34{bottom:626.940000px;}
.y71{bottom:635.214000px;}
.y15{bottom:635.220000px;}
.yd3{bottom:635.574000px;}
.yad{bottom:655.374000px;}
.yec{bottom:655.785000px;}
.y33{bottom:657.945000px;}
.y70{bottom:666.174000px;}
.y50{bottom:666.180000px;}
.y8e{bottom:666.225000px;}
.y14{bottom:674.100000px;}
.yac{bottom:686.379000px;}
.yeb{bottom:687.105000px;}
.y32{bottom:689.265000px;}
.y4f{bottom:697.140000px;}
.y6f{bottom:697.179000px;}
.y8d{bottom:697.545000px;}
.y13{bottom:713.730000px;}
.yab{bottom:717.699000px;}
.yea{bottom:718.065000px;}
.y31{bottom:720.225000px;}
.y4e{bottom:728.100000px;}
.y6e{bottom:728.499000px;}
.y8c{bottom:728.505000px;}
.yaa{bottom:748.659000px;}
.ye9{bottom:749.025000px;}
.y30{bottom:751.185000px;}
.y12{bottom:755.130000px;}
.y4d{bottom:759.450000px;}
.y6d{bottom:759.459000px;}
.y8b{bottom:759.465000px;}
.ya9{bottom:779.619000px;}
.ye8{bottom:780.015000px;}
.y2f{bottom:782.175000px;}
.yd2{bottom:786.810000px;}
.y4c{bottom:790.410000px;}
.y6c{bottom:790.419000px;}
.y8a{bottom:790.455000px;}
.ya8{bottom:810.609000px;}
.ye7{bottom:811.335000px;}
.y2e{bottom:813.495000px;}
.y11{bottom:814.530000px;}
.y4b{bottom:821.370000px;}
.y6b{bottom:821.409000px;}
.y89{bottom:821.775000px;}
.yd1{bottom:834.375000px;}
.ya7{bottom:841.929000px;}
.ye6{bottom:842.295000px;}
.y2d{bottom:844.455000px;}
.y4a{bottom:852.330000px;}
.y6a{bottom:852.729000px;}
.y88{bottom:852.735000px;}
.y10{bottom:855.975000px;}
.ya6{bottom:872.889000px;}
.ye5{bottom:873.255000px;}
.y2c{bottom:875.415000px;}
.yd0{bottom:881.535000px;}
.y69{bottom:883.689000px;}
.y49{bottom:883.695000px;}
.ycc{bottom:885.129000px;}
.ya5{bottom:903.849000px;}
.ye4{bottom:904.215000px;}
.y2b{bottom:906.375000px;}
.y68{bottom:914.649000px;}
.y48{bottom:914.655000px;}
.yf{bottom:915.375000px;}
.ycb{bottom:916.089000px;}
.yce{bottom:929.055000px;}
.ya4{bottom:934.809000px;}
.ye3{bottom:935.580000px;}
.y2a{bottom:937.740000px;}
.y9{bottom:941.295000px;}
.y67{bottom:945.609000px;}
.y87{bottom:946.020000px;}
.yca{bottom:947.049000px;}
.y8{bottom:958.605000px;}
.ya3{bottom:966.174000px;}
.ye2{bottom:966.540000px;}
.y29{bottom:968.700000px;}
.y7{bottom:972.645000px;}
.ycd{bottom:976.605000px;}
.y66{bottom:976.974000px;}
.y86{bottom:976.980000px;}
.yc9{bottom:978.414000px;}
.ya2{bottom:997.134000px;}
.y65{bottom:1007.934000px;}
.yc8{bottom:1009.374000px;}
.y6{bottom:1027.365000px;}
.y5{bottom:1052.205000px;}
.y4{bottom:1072.725000px;}
.y3{bottom:1094.010000px;}
.y2{bottom:1114.530000px;}
.y1{bottom:1131.450000px;}
.y27{bottom:1166.370000px;}
.y26{bottom:1180.410000px;}
.y25{bottom:1201.290000px;}
.y24{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h13{height:20.520000px;}
.h5{height:39.997969px;}
.h19{height:41.400000px;}
.h18{height:41.436000px;}
.h2{height:44.828437px;}
.h7{height:48.013594px;}
.h16{height:51.996094px;}
.h4{height:53.067656px;}
.h3{height:53.367188px;}
.h1b{height:57.636563px;}
.hb{height:61.905938px;}
.he{height:63.175781px;}
.ha{height:67.242656px;}
.h9{height:71.512031px;}
.hc{height:73.283906px;}
.h15{height:82.800000px;}
.h14{height:82.836000px;}
.h1c{height:543.030000px;}
.hf{height:949.575000px;}
.h1a{height:983.445000px;}
.hd{height:985.605000px;}
.h11{height:993.885000px;}
.h12{height:1014.045000px;}
.h10{height:1024.845000px;}
.h17{height:1026.285000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:144.432000px;}
.w8{width:188.715000px;}
.w9{width:230.115000px;}
.wa{width:230.505000px;}
.wd{width:251.385000px;}
.wc{width:253.545000px;}
.w6{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w5{width:341.430000px;}
.w7{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1e{left:1.080000px;}
.x9{left:8.640000px;}
.x20{left:23.400000px;}
.x1c{left:33.120000px;}
.x17{left:35.316000px;}
.x21{left:38.196000px;}
.x22{left:42.159000px;}
.x1a{left:65.919000px;}
.x24{left:82.125000px;}
.x18{left:86.439000px;}
.x7{left:106.235987px;}
.xb{left:108.755987px;}
.x19{left:117.756000px;}
.xd{left:143.351987px;}
.x11{left:145.151987px;}
.x13{left:146.951987px;}
.xc{left:160.994987px;}
.xe{left:169.274987px;}
.x15{left:180.794987px;}
.x2{left:254.264987px;}
.x23{left:265.785000px;}
.x6{left:274.064987px;}
.x12{left:301.784987px;}
.xa{left:304.350000px;}
.x1b{left:310.470000px;}
.x10{left:350.789987px;}
.x5{left:362.669987px;}
.xf{left:369.149987px;}
.x4{left:379.949987px;}
.x1f{left:384.654000px;}
.x14{left:396.899987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x16{left:447.660000px;}
.x26{left:485.859000px;}
.x25{left:523.290000px;}
.x1d{left:544.170000px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.442667pt;}
.ls8{letter-spacing:-0.432533pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.442880pt;}
.lsb{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.lsc{letter-spacing:5.760000pt;}
.ls14{letter-spacing:20.608000pt;}
.lse{letter-spacing:24.576000pt;}
.ls11{letter-spacing:27.136000pt;}
.ls7{letter-spacing:27.520000pt;}
.lsa{letter-spacing:29.568000pt;}
.lsf{letter-spacing:29.696000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.007467pt;}
.ws2{word-spacing:-11.717333pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-5.260800pt;}
._15{margin-left:-4.070400pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._e{width:3.648000pt;}
._c{width:4.864000pt;}
._d{width:6.208000pt;}
._b{width:7.744000pt;}
._a{width:8.640000pt;}
._19{width:9.664000pt;}
._16{width:10.624000pt;}
._9{width:11.520000pt;}
._8{width:12.480000pt;}
._12{width:13.376000pt;}
._f{width:15.104000pt;}
._18{width:17.344000pt;}
._20{width:18.534400pt;}
._1f{width:19.456000pt;}
._14{width:20.480000pt;}
._13{width:21.578667pt;}
._17{width:23.057067pt;}
._1a{width:24.115200pt;}
._1b{width:25.100800pt;}
._10{width:26.634667pt;}
._11{width:27.995733pt;}
._1d{width:31.104000pt;}
._1c{width:32.000000pt;}
._22{width:33.152000pt;}
._21{width:34.048000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._7{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:80.640000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.yb7{bottom:3.520000pt;}
.ybc{bottom:3.840000pt;}
.yc6{bottom:12.474667pt;}
.y46{bottom:12.480000pt;}
.yc3{bottom:12.800000pt;}
.ybf{bottom:13.120000pt;}
.yba{bottom:22.080000pt;}
.ycf{bottom:22.106667pt;}
.yc2{bottom:31.040000pt;}
.ybe{bottom:31.400000pt;}
.ye{bottom:38.720000pt;}
.y84{bottom:39.994667pt;}
.y63{bottom:40.000000pt;}
.y45{bottom:40.040000pt;}
.ye0{bottom:40.314667pt;}
.yc5{bottom:40.320000pt;}
.ya0{bottom:40.360000pt;}
.yb9{bottom:40.680000pt;}
.yc1{bottom:49.600000pt;}
.ybd{bottom:49.960000pt;}
.y103{bottom:53.440000pt;}
.yc4{bottom:58.880000pt;}
.ybb{bottom:58.920000pt;}
.yc{bottom:60.800000pt;}
.y62{bottom:67.520000pt;}
.y44{bottom:67.560000pt;}
.y83{bottom:67.874667pt;}
.y9f{bottom:67.880000pt;}
.y102{bottom:80.986667pt;}
.ya{bottom:84.192000pt;}
.y61{bottom:95.040000pt;}
.y43{bottom:95.080000pt;}
.y82{bottom:95.394667pt;}
.y9e{bottom:95.400000pt;}
.y101{bottom:108.826667pt;}
.yc7{bottom:115.872000pt;}
.y64{bottom:117.152000pt;}
.y60{bottom:122.906667pt;}
.y81{bottom:122.914667pt;}
.y9d{bottom:122.920000pt;}
.ydf{bottom:123.234667pt;}
.ya1{bottom:126.752000pt;}
.y100{bottom:136.346667pt;}
.y42{bottom:138.946667pt;}
.y23{bottom:143.706667pt;}
.y85{bottom:144.666667pt;}
.y5f{bottom:150.426667pt;}
.y80{bottom:150.434667pt;}
.y9c{bottom:150.466667pt;}
.yde{bottom:150.754667pt;}
.yf2{bottom:150.786667pt;}
.y28{bottom:152.026667pt;}
.ye1{bottom:153.946667pt;}
.yff{bottom:163.866667pt;}
.y41{bottom:166.466667pt;}
.y22{bottom:170.906667pt;}
.y5e{bottom:177.946667pt;}
.y7f{bottom:177.981333pt;}
.ydd{bottom:178.301333pt;}
.y9b{bottom:178.306667pt;}
.y47{bottom:184.066667pt;}
.yfe{bottom:191.426667pt;}
.y40{bottom:193.986667pt;}
.y21{bottom:203.266667pt;}
.y5d{bottom:205.466667pt;}
.y7e{bottom:205.821333pt;}
.y9a{bottom:205.826667pt;}
.yfd{bottom:219.266667pt;}
.y3f{bottom:221.506667pt;}
.y7d{bottom:233.341333pt;}
.y5c{bottom:233.346667pt;}
.ydc{bottom:233.661333pt;}
.y20{bottom:235.586667pt;}
.yfc{bottom:246.786667pt;}
.y3e{bottom:249.386667pt;}
.y7c{bottom:260.861333pt;}
.y5b{bottom:260.866667pt;}
.y99{bottom:260.906667pt;}
.ydb{bottom:261.181333pt;}
.yf1{bottom:261.226667pt;}
.y1f{bottom:267.586667pt;}
.yfb{bottom:274.306667pt;}
.y3d{bottom:276.906667pt;}
.y5a{bottom:288.386667pt;}
.y7b{bottom:288.421333pt;}
.yda{bottom:288.741333pt;}
.y98{bottom:288.746667pt;}
.yc0{bottom:296.093333pt;}
.y1e{bottom:299.933333pt;}
.yfa{bottom:301.853333pt;}
.y3c{bottom:304.426667pt;}
.y59{bottom:315.906667pt;}
.y7a{bottom:316.261333pt;}
.y97{bottom:316.266667pt;}
.y1d{bottom:320.093333pt;}
.yf9{bottom:329.693333pt;}
.y3b{bottom:331.946667pt;}
.y1c{bottom:343.133333pt;}
.y58{bottom:343.773333pt;}
.y79{bottom:343.781333pt;}
.y96{bottom:343.786667pt;}
.yd9{bottom:344.101333pt;}
.yf8{bottom:357.213333pt;}
.y3a{bottom:359.813333pt;}
.yb5{bottom:361.701333pt;}
.y1b{bottom:370.333333pt;}
.y57{bottom:371.293333pt;}
.y78{bottom:371.301333pt;}
.y95{bottom:371.333333pt;}
.yd8{bottom:371.621333pt;}
.yb8{bottom:374.813333pt;}
.yf7{bottom:384.733333pt;}
.y39{bottom:387.333333pt;}
.yb4{bottom:389.248000pt;}
.y56{bottom:398.813333pt;}
.y77{bottom:398.848000pt;}
.yd7{bottom:399.168000pt;}
.y94{bottom:399.173333pt;}
.y1a{bottom:402.693333pt;}
.yf6{bottom:412.253333pt;}
.yb3{bottom:417.088000pt;}
.y55{bottom:426.333333pt;}
.y76{bottom:426.688000pt;}
.y93{bottom:426.693333pt;}
.y38{bottom:430.853333pt;}
.y19{bottom:435.013333pt;}
.yf5{bottom:440.133333pt;}
.yb2{bottom:444.608000pt;}
.yb6{bottom:453.893333pt;}
.y54{bottom:454.200000pt;}
.y75{bottom:454.208000pt;}
.y92{bottom:454.213333pt;}
.yd6{bottom:454.528000pt;}
.yf0{bottom:455.173333pt;}
.y18{bottom:467.013333pt;}
.yf4{bottom:467.653333pt;}
.yb1{bottom:472.128000pt;}
.y37{bottom:474.400000pt;}
.y53{bottom:481.720000pt;}
.y74{bottom:481.728000pt;}
.y91{bottom:481.760000pt;}
.yd5{bottom:482.048000pt;}
.y17{bottom:499.333333pt;}
.yb0{bottom:499.674667pt;}
.yef{bottom:500.320000pt;}
.y36{bottom:502.240000pt;}
.y52{bottom:509.240000pt;}
.y73{bottom:509.274667pt;}
.yd4{bottom:509.594667pt;}
.y90{bottom:509.600000pt;}
.yaf{bottom:527.514667pt;}
.yee{bottom:527.840000pt;}
.y35{bottom:529.760000pt;}
.y104{bottom:530.400000pt;}
.y16{bottom:531.360000pt;}
.y51{bottom:536.760000pt;}
.y72{bottom:537.114667pt;}
.y8f{bottom:537.120000pt;}
.yf3{bottom:545.440000pt;}
.yae{bottom:555.034667pt;}
.yed{bottom:555.360000pt;}
.y34{bottom:557.280000pt;}
.y71{bottom:564.634667pt;}
.y15{bottom:564.640000pt;}
.yd3{bottom:564.954667pt;}
.yad{bottom:582.554667pt;}
.yec{bottom:582.920000pt;}
.y33{bottom:584.840000pt;}
.y70{bottom:592.154667pt;}
.y50{bottom:592.160000pt;}
.y8e{bottom:592.200000pt;}
.y14{bottom:599.200000pt;}
.yac{bottom:610.114667pt;}
.yeb{bottom:610.760000pt;}
.y32{bottom:612.680000pt;}
.y4f{bottom:619.680000pt;}
.y6f{bottom:619.714667pt;}
.y8d{bottom:620.040000pt;}
.y13{bottom:634.426667pt;}
.yab{bottom:637.954667pt;}
.yea{bottom:638.280000pt;}
.y31{bottom:640.200000pt;}
.y4e{bottom:647.200000pt;}
.y6e{bottom:647.554667pt;}
.y8c{bottom:647.560000pt;}
.yaa{bottom:665.474667pt;}
.ye9{bottom:665.800000pt;}
.y30{bottom:667.720000pt;}
.y12{bottom:671.226667pt;}
.y4d{bottom:675.066667pt;}
.y6d{bottom:675.074667pt;}
.y8b{bottom:675.080000pt;}
.ya9{bottom:692.994667pt;}
.ye8{bottom:693.346667pt;}
.y2f{bottom:695.266667pt;}
.yd2{bottom:699.386667pt;}
.y4c{bottom:702.586667pt;}
.y6c{bottom:702.594667pt;}
.y8a{bottom:702.626667pt;}
.ya8{bottom:720.541333pt;}
.ye7{bottom:721.186667pt;}
.y2e{bottom:723.106667pt;}
.y11{bottom:724.026667pt;}
.y4b{bottom:730.106667pt;}
.y6b{bottom:730.141333pt;}
.y89{bottom:730.466667pt;}
.yd1{bottom:741.666667pt;}
.ya7{bottom:748.381333pt;}
.ye6{bottom:748.706667pt;}
.y2d{bottom:750.626667pt;}
.y4a{bottom:757.626667pt;}
.y6a{bottom:757.981333pt;}
.y88{bottom:757.986667pt;}
.y10{bottom:760.866667pt;}
.ya6{bottom:775.901333pt;}
.ye5{bottom:776.226667pt;}
.y2c{bottom:778.146667pt;}
.yd0{bottom:783.586667pt;}
.y69{bottom:785.501333pt;}
.y49{bottom:785.506667pt;}
.ycc{bottom:786.781333pt;}
.ya5{bottom:803.421333pt;}
.ye4{bottom:803.746667pt;}
.y2b{bottom:805.666667pt;}
.y68{bottom:813.021333pt;}
.y48{bottom:813.026667pt;}
.yf{bottom:813.666667pt;}
.ycb{bottom:814.301333pt;}
.yce{bottom:825.826667pt;}
.ya4{bottom:830.941333pt;}
.ye3{bottom:831.626667pt;}
.y2a{bottom:833.546667pt;}
.y9{bottom:836.706667pt;}
.y67{bottom:840.541333pt;}
.y87{bottom:840.906667pt;}
.yca{bottom:841.821333pt;}
.y8{bottom:852.093333pt;}
.ya3{bottom:858.821333pt;}
.ye2{bottom:859.146667pt;}
.y29{bottom:861.066667pt;}
.y7{bottom:864.573333pt;}
.ycd{bottom:868.093333pt;}
.y66{bottom:868.421333pt;}
.y86{bottom:868.426667pt;}
.yc9{bottom:869.701333pt;}
.ya2{bottom:886.341333pt;}
.y65{bottom:895.941333pt;}
.yc8{bottom:897.221333pt;}
.y6{bottom:913.213333pt;}
.y5{bottom:935.293333pt;}
.y4{bottom:953.533333pt;}
.y3{bottom:972.453333pt;}
.y2{bottom:990.693333pt;}
.y1{bottom:1005.733333pt;}
.y27{bottom:1036.773333pt;}
.y26{bottom:1049.253333pt;}
.y25{bottom:1067.813333pt;}
.y24{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h13{height:18.240000pt;}
.h5{height:35.553750pt;}
.h19{height:36.800000pt;}
.h18{height:36.832000pt;}
.h2{height:39.847500pt;}
.h7{height:42.678750pt;}
.h16{height:46.218750pt;}
.h4{height:47.171250pt;}
.h3{height:47.437500pt;}
.h1b{height:51.232500pt;}
.hb{height:55.027500pt;}
.he{height:56.156250pt;}
.ha{height:59.771250pt;}
.h9{height:63.566250pt;}
.hc{height:65.141250pt;}
.h15{height:73.600000pt;}
.h14{height:73.632000pt;}
.h1c{height:482.693333pt;}
.hf{height:844.066667pt;}
.h1a{height:874.173333pt;}
.hd{height:876.093333pt;}
.h11{height:883.453333pt;}
.h12{height:901.373333pt;}
.h10{height:910.973333pt;}
.h17{height:912.253333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:128.384000pt;}
.w8{width:167.746667pt;}
.w9{width:204.546667pt;}
.wa{width:204.893333pt;}
.wd{width:223.453333pt;}
.wc{width:225.373333pt;}
.w6{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w5{width:303.493333pt;}
.w7{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1e{left:0.960000pt;}
.x9{left:7.680000pt;}
.x20{left:20.800000pt;}
.x1c{left:29.440000pt;}
.x17{left:31.392000pt;}
.x21{left:33.952000pt;}
.x22{left:37.474667pt;}
.x1a{left:58.594667pt;}
.x24{left:73.000000pt;}
.x18{left:76.834667pt;}
.x7{left:94.431988pt;}
.xb{left:96.671988pt;}
.x19{left:104.672000pt;}
.xd{left:127.423988pt;}
.x11{left:129.023988pt;}
.x13{left:130.623988pt;}
.xc{left:143.106655pt;}
.xe{left:150.466655pt;}
.x15{left:160.706655pt;}
.x2{left:226.013322pt;}
.x23{left:236.253333pt;}
.x6{left:243.613322pt;}
.x12{left:268.253322pt;}
.xa{left:270.533333pt;}
.x1b{left:275.973333pt;}
.x10{left:311.813322pt;}
.x5{left:322.373322pt;}
.xf{left:328.133322pt;}
.x4{left:337.733322pt;}
.x1f{left:341.914667pt;}
.x14{left:352.799988pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x16{left:397.920000pt;}
.x26{left:431.874667pt;}
.x25{left:465.146667pt;}
.x1d{left:483.706667pt;}
.x1{left:699.493322pt;}
}




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