
    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_209e86de16dbb6bce1a0cb54.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0540f9952009530c831b10e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_370bb8f73a79282b9894e236.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_c175a9e2b93d528a545f9633.woff')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_3496ecf8f0f33c5fa2a6f63c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_326fc146572763b1d26645cf.woff')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_cb831bfc45030f6d94299355.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_d06014bf1bb81721df200db1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.052734;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;}
.m1{transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.lsd{letter-spacing:5.760000px;}
.ls4{letter-spacing:7.349760px;}
.ls6{letter-spacing:8.789760px;}
.ls5{letter-spacing:23.189760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.208000px;}
.ws0{word-spacing:-15.300000px;}
.ws9{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.ws3{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.060000px;}
.wse{word-spacing:-11.836200px;}
.wsc{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:49.500000px;}
._e{margin-left:-3.672000px;}
._4{margin-left:-2.304000px;}
._1{margin-left:-1.135440px;}
._2{width:1.015920px;}
._0{width:2.031840px;}
._8{width:3.240000px;}
._9{width:4.536000px;}
._18{width:5.760000px;}
._5{width:6.960000px;}
._6{width:8.088000px;}
._d{width:9.088560px;}
._c{width:10.207440px;}
._19{width:11.616000px;}
._14{width:12.864000px;}
._f{width:14.256000px;}
._16{width:15.768000px;}
._7{width:16.848000px;}
._a{width:19.080000px;}
._b{width:20.448000px;}
._12{width:21.528000px;}
._13{width:22.800000px;}
._17{width:24.120000px;}
._29{width:26.496000px;}
._2b{width:27.591360px;}
._2a{width:28.768080px;}
._15{width:30.499200px;}
._11{width:31.718880px;}
._10{width:32.880000px;}
._25{width:37.368000px;}
._26{width:38.740080px;}
._1b{width:46.096560px;}
._1a{width:47.215440px;}
._27{width:48.816000px;}
._28{width:50.180160px;}
._3{width:63.395520px;}
._1f{width:66.960000px;}
._20{width:68.080080px;}
._21{width:83.088000px;}
._22{width:84.152160px;}
._1d{width:101.880000px;}
._1c{width:102.880080px;}
._23{width:161.928000px;}
._24{width:163.888080px;}
._1e{width:745.560000px;}
._2c{width:1033.272000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.ya{bottom:5.940000px;}
.y7{bottom:7.920000px;}
.y68{bottom:10.620000px;}
.y81{bottom:10.800000px;}
.y6c{bottom:10.980000px;}
.y92{bottom:11.010000px;}
.y6a{bottom:11.160000px;}
.y7f{bottom:22.680000px;}
.y9{bottom:23.220000px;}
.y5{bottom:25.380000px;}
.y6{bottom:33.120000px;}
.y8{bottom:40.500000px;}
.y4{bottom:42.660000px;}
.yd{bottom:54.360000px;}
.yc{bottom:92.736000px;}
.y48{bottom:128.196000px;}
.ya1{bottom:130.176000px;}
.y2a{bottom:143.676000px;}
.y5c{bottom:148.896000px;}
.y7d{bottom:151.590000px;}
.y47{bottom:159.150000px;}
.ya0{bottom:161.130000px;}
.y29{bottom:174.630000px;}
.y5b{bottom:179.850000px;}
.y7c{bottom:180.030000px;}
.ya2{bottom:184.530000px;}
.y46{bottom:190.290000px;}
.y9f{bottom:192.270000px;}
.y28{bottom:205.770000px;}
.y7b{bottom:209.730000px;}
.y5a{bottom:210.990000px;}
.y45{bottom:221.250000px;}
.y9e{bottom:223.230000px;}
.y27{bottom:236.730000px;}
.y7a{bottom:240.690000px;}
.y59{bottom:241.950000px;}
.y44{bottom:252.390000px;}
.y9d{bottom:254.370000px;}
.y26{bottom:267.870000px;}
.y79{bottom:271.830000px;}
.y58{bottom:273.090000px;}
.y43{bottom:283.350000px;}
.y9c{bottom:285.330000px;}
.y25{bottom:298.830000px;}
.y78{bottom:302.790000px;}
.y57{bottom:304.050000px;}
.y5e{bottom:308.730000px;}
.y42{bottom:314.490000px;}
.y9b{bottom:316.470000px;}
.y24{bottom:330.015000px;}
.y77{bottom:333.975000px;}
.y56{bottom:335.235000px;}
.y41{bottom:345.495000px;}
.y9a{bottom:347.475000px;}
.y23{bottom:360.975000px;}
.y76{bottom:364.935000px;}
.y55{bottom:366.195000px;}
.y40{bottom:376.635000px;}
.y99{bottom:383.115000px;}
.y75{bottom:391.215000px;}
.y22{bottom:392.115000px;}
.y54{bottom:397.335000px;}
.y74{bottom:402.735000px;}
.ya7{bottom:407.235000px;}
.y3f{bottom:407.595000px;}
.y98{bottom:420.015000px;}
.y21{bottom:423.075000px;}
.y73{bottom:426.855000px;}
.y53{bottom:428.295000px;}
.ya6{bottom:438.375000px;}
.y3e{bottom:438.735000px;}
.y72{bottom:450.795000px;}
.y97{bottom:450.975000px;}
.y20{bottom:454.215000px;}
.y52{bottom:459.435000px;}
.y3d{bottom:469.695000px;}
.y71{bottom:474.915000px;}
.y96{bottom:477.255000px;}
.y1f{bottom:485.175000px;}
.y95{bottom:488.775000px;}
.y51{bottom:490.395000px;}
.y70{bottom:499.035000px;}
.y3c{bottom:500.835000px;}
.y94{bottom:512.895000px;}
.y1e{bottom:516.315000px;}
.y50{bottom:521.535000px;}
.y6f{bottom:522.975000px;}
.ya5{bottom:531.435000px;}
.y3b{bottom:531.795000px;}
.y93{bottom:536.835000px;}
.y6e{bottom:547.095000px;}
.y1d{bottom:547.275000px;}
.y4f{bottom:552.495000px;}
.y91{bottom:560.955000px;}
.y3a{bottom:562.935000px;}
.y6d{bottom:571.065000px;}
.y1c{bottom:578.085000px;}
.y4e{bottom:583.665000px;}
.y90{bottom:584.925000px;}
.ya3{bottom:588.165000px;}
.y39{bottom:593.925000px;}
.y6b{bottom:595.185000px;}
.y1b{bottom:609.405000px;}
.y4d{bottom:614.625000px;}
.y69{bottom:619.125000px;}
.y8f{bottom:623.085000px;}
.ya4{bottom:624.705000px;}
.y38{bottom:625.065000px;}
.y1a{bottom:640.545000px;}
.y67{bottom:643.245000px;}
.y4c{bottom:645.765000px;}
.y8e{bottom:652.605000px;}
.y37{bottom:656.025000px;}
.y19{bottom:671.505000px;}
.y4b{bottom:676.725000px;}
.y66{bottom:680.685000px;}
.y8d{bottom:683.745000px;}
.y36{bottom:687.165000px;}
.y18{bottom:702.645000px;}
.y4a{bottom:707.685000px;}
.y65{bottom:708.765000px;}
.y8c{bottom:714.705000px;}
.y35{bottom:717.765000px;}
.y5d{bottom:718.125000px;}
.y64{bottom:738.825000px;}
.y17{bottom:740.445000px;}
.y49{bottom:743.325000px;}
.y8b{bottom:745.845000px;}
.y34{bottom:749.085000px;}
.y16{bottom:764.745000px;}
.y63{bottom:769.785000px;}
.y8a{bottom:776.805000px;}
.y33{bottom:780.225000px;}
.y15{bottom:795.705000px;}
.y62{bottom:800.925000px;}
.y89{bottom:807.765000px;}
.y32{bottom:811.185000px;}
.y14{bottom:826.890000px;}
.y61{bottom:831.930000px;}
.y88{bottom:838.950000px;}
.y31{bottom:842.370000px;}
.y13{bottom:860.010000px;}
.y60{bottom:863.070000px;}
.y87{bottom:865.230000px;}
.y30{bottom:873.330000px;}
.y86{bottom:876.750000px;}
.y12{bottom:896.190000px;}
.y5f{bottom:898.710000px;}
.y85{bottom:900.870000px;}
.y2f{bottom:904.470000px;}
.y84{bottom:924.810000px;}
.y11{bottom:932.370000px;}
.y2e{bottom:935.430000px;}
.y83{bottom:948.930000px;}
.y2d{bottom:966.570000px;}
.y10{bottom:968.730000px;}
.y82{bottom:972.870000px;}
.y7e{bottom:996.990000px;}
.y2c{bottom:997.530000px;}
.yf{bottom:1002.750000px;}
.y80{bottom:1020.930000px;}
.y2b{bottom:1028.670000px;}
.ye{bottom:1031.190000px;}
.yb{bottom:1045.050000px;}
.y3{bottom:1072.080000px;}
.y1{bottom:1128.240000px;}
.h1{height:17.280000px;}
.h10{height:23.220000px;}
.h14{height:23.256000px;}
.h12{height:23.400000px;}
.h17{height:23.760000px;}
.h16{height:47.340000px;}
.ha{height:47.344922px;}
.h13{height:52.998047px;}
.h11{height:54.421875px;}
.h5{height:55.825312px;}
.h3{height:56.160000px;}
.h2{height:58.651172px;}
.h6{height:60.226875px;}
.hc{height:64.546875px;}
.h15{height:65.010937px;}
.hf{height:66.757500px;}
.h7{height:70.664062px;}
.hb{height:72.562500px;}
.he{height:74.680922px;}
.h9{height:74.704922px;}
.h4{height:77.837760px;}
.h8{height:84.898125px;}
.hd{height:96.508125px;}
.h0{height:1188.000000px;}
.w9{width:85.320000px;}
.w3{width:86.256000px;}
.w11{width:88.200000px;}
.wf{width:88.380000px;}
.w12{width:88.416000px;}
.w10{width:88.596000px;}
.w6{width:90.000000px;}
.wa{width:100.656000px;}
.w5{width:118.836000px;}
.wc{width:177.480000px;}
.we{width:177.510000px;}
.wd{width:177.690000px;}
.w2{width:208.830000px;}
.wb{width:211.575000px;}
.w8{width:277.995000px;}
.w13{width:372.855000px;}
.w4{width:470.055000px;}
.w1{width:556.305000px;}
.w7{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x31{left:7.740000px;}
.x9{left:13.320000px;}
.x30{left:19.080000px;}
.x40{left:20.520000px;}
.x3d{left:24.330000px;}
.x3a{left:27.036000px;}
.x8{left:28.800000px;}
.x44{left:32.400000px;}
.x33{left:34.920000px;}
.x32{left:36.000000px;}
.x34{left:38.340000px;}
.x3f{left:40.365000px;}
.x6{left:42.120000px;}
.x4{left:43.236000px;}
.xb{left:45.000000px;}
.x3{left:46.305000px;}
.x1{left:76.500000px;}
.x15{left:84.959986px;}
.x11{left:91.295986px;}
.x39{left:101.375986px;}
.x2f{left:111.285000px;}
.x13{left:119.195986px;}
.x45{left:135.755986px;}
.x7{left:148.545000px;}
.x47{left:153.210000px;}
.x2a{left:156.449986px;}
.x2b{left:157.709986px;}
.x5{left:162.750000px;}
.x46{left:167.070000px;}
.x2e{left:190.289986px;}
.x1a{left:208.289986px;}
.x1b{left:210.989986px;}
.xe{left:225.389986px;}
.x49{left:264.629986px;}
.x20{left:273.269986px;}
.x21{left:274.529986px;}
.x26{left:276.509986px;}
.x3b{left:298.155000px;}
.x36{left:351.254986px;}
.x37{left:352.694986px;}
.x29{left:362.234986px;}
.x4c{left:366.014986px;}
.x4b{left:373.034986px;}
.x2d{left:377.534986px;}
.x22{left:379.154986px;}
.x23{left:380.774986px;}
.x41{left:387.255000px;}
.x48{left:392.294986px;}
.x2c{left:397.514986px;}
.x4d{left:409.394986px;}
.x12{left:413.354986px;}
.x14{left:425.594986px;}
.x35{left:445.214986px;}
.x4a{left:451.514986px;}
.xd{left:455.114986px;}
.x10{left:458.894986px;}
.x3c{left:476.355000px;}
.x24{left:505.544986px;}
.x25{left:507.344986px;}
.x1c{left:508.784986px;}
.x1d{left:511.304986px;}
.x16{left:547.124986px;}
.x17{left:549.464986px;}
.x42{left:565.665000px;}
.x1e{left:586.544986px;}
.x1f{left:590.324986px;}
.x2{left:632.805000px;}
.x3e{left:654.765000px;}
.x18{left:691.529986px;}
.x19{left:693.869986px;}
.x27{left:698.189986px;}
.x28{left:701.969986px;}
.x38{left:704.129986px;}
.xf{left:725.909986px;}
.x43{left:743.910000px;}
.xa{left:751.650000px;}
.xc{left:833.009986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls4{letter-spacing:6.533120pt;}
.ls6{letter-spacing:7.813120pt;}
.ls5{letter-spacing:20.613120pt;}
.ws4{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.521067pt;}
.wsc{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:44.000000pt;}
._e{margin-left:-3.264000pt;}
._4{margin-left:-2.048000pt;}
._1{margin-left:-1.009280pt;}
._2{width:0.903040pt;}
._0{width:1.806080pt;}
._8{width:2.880000pt;}
._9{width:4.032000pt;}
._18{width:5.120000pt;}
._5{width:6.186667pt;}
._6{width:7.189333pt;}
._d{width:8.078720pt;}
._c{width:9.073280pt;}
._19{width:10.325333pt;}
._14{width:11.434667pt;}
._f{width:12.672000pt;}
._16{width:14.016000pt;}
._7{width:14.976000pt;}
._a{width:16.960000pt;}
._b{width:18.176000pt;}
._12{width:19.136000pt;}
._13{width:20.266667pt;}
._17{width:21.440000pt;}
._29{width:23.552000pt;}
._2b{width:24.525653pt;}
._2a{width:25.571627pt;}
._15{width:27.110400pt;}
._11{width:28.194560pt;}
._10{width:29.226667pt;}
._25{width:33.216000pt;}
._26{width:34.435627pt;}
._1b{width:40.974720pt;}
._1a{width:41.969280pt;}
._27{width:43.392000pt;}
._28{width:44.604587pt;}
._3{width:56.351573pt;}
._1f{width:59.520000pt;}
._20{width:60.515627pt;}
._21{width:73.856000pt;}
._22{width:74.801920pt;}
._1d{width:90.560000pt;}
._1c{width:91.448960pt;}
._23{width:143.936000pt;}
._24{width:145.678293pt;}
._1e{width:662.720000pt;}
._2c{width:918.464000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.ya{bottom:5.280000pt;}
.y7{bottom:7.040000pt;}
.y68{bottom:9.440000pt;}
.y81{bottom:9.600000pt;}
.y6c{bottom:9.760000pt;}
.y92{bottom:9.786667pt;}
.y6a{bottom:9.920000pt;}
.y7f{bottom:20.160000pt;}
.y9{bottom:20.640000pt;}
.y5{bottom:22.560000pt;}
.y6{bottom:29.440000pt;}
.y8{bottom:36.000000pt;}
.y4{bottom:37.920000pt;}
.yd{bottom:48.320000pt;}
.yc{bottom:82.432000pt;}
.y48{bottom:113.952000pt;}
.ya1{bottom:115.712000pt;}
.y2a{bottom:127.712000pt;}
.y5c{bottom:132.352000pt;}
.y7d{bottom:134.746667pt;}
.y47{bottom:141.466667pt;}
.ya0{bottom:143.226667pt;}
.y29{bottom:155.226667pt;}
.y5b{bottom:159.866667pt;}
.y7c{bottom:160.026667pt;}
.ya2{bottom:164.026667pt;}
.y46{bottom:169.146667pt;}
.y9f{bottom:170.906667pt;}
.y28{bottom:182.906667pt;}
.y7b{bottom:186.426667pt;}
.y5a{bottom:187.546667pt;}
.y45{bottom:196.666667pt;}
.y9e{bottom:198.426667pt;}
.y27{bottom:210.426667pt;}
.y7a{bottom:213.946667pt;}
.y59{bottom:215.066667pt;}
.y44{bottom:224.346667pt;}
.y9d{bottom:226.106667pt;}
.y26{bottom:238.106667pt;}
.y79{bottom:241.626667pt;}
.y58{bottom:242.746667pt;}
.y43{bottom:251.866667pt;}
.y9c{bottom:253.626667pt;}
.y25{bottom:265.626667pt;}
.y78{bottom:269.146667pt;}
.y57{bottom:270.266667pt;}
.y5e{bottom:274.426667pt;}
.y42{bottom:279.546667pt;}
.y9b{bottom:281.306667pt;}
.y24{bottom:293.346667pt;}
.y77{bottom:296.866667pt;}
.y56{bottom:297.986667pt;}
.y41{bottom:307.106667pt;}
.y9a{bottom:308.866667pt;}
.y23{bottom:320.866667pt;}
.y76{bottom:324.386667pt;}
.y55{bottom:325.506667pt;}
.y40{bottom:334.786667pt;}
.y99{bottom:340.546667pt;}
.y75{bottom:347.746667pt;}
.y22{bottom:348.546667pt;}
.y54{bottom:353.186667pt;}
.y74{bottom:357.986667pt;}
.ya7{bottom:361.986667pt;}
.y3f{bottom:362.306667pt;}
.y98{bottom:373.346667pt;}
.y21{bottom:376.066667pt;}
.y73{bottom:379.426667pt;}
.y53{bottom:380.706667pt;}
.ya6{bottom:389.666667pt;}
.y3e{bottom:389.986667pt;}
.y72{bottom:400.706667pt;}
.y97{bottom:400.866667pt;}
.y20{bottom:403.746667pt;}
.y52{bottom:408.386667pt;}
.y3d{bottom:417.506667pt;}
.y71{bottom:422.146667pt;}
.y96{bottom:424.226667pt;}
.y1f{bottom:431.266667pt;}
.y95{bottom:434.466667pt;}
.y51{bottom:435.906667pt;}
.y70{bottom:443.586667pt;}
.y3c{bottom:445.186667pt;}
.y94{bottom:455.906667pt;}
.y1e{bottom:458.946667pt;}
.y50{bottom:463.586667pt;}
.y6f{bottom:464.866667pt;}
.ya5{bottom:472.386667pt;}
.y3b{bottom:472.706667pt;}
.y93{bottom:477.186667pt;}
.y6e{bottom:486.306667pt;}
.y1d{bottom:486.466667pt;}
.y4f{bottom:491.106667pt;}
.y91{bottom:498.626667pt;}
.y3a{bottom:500.386667pt;}
.y6d{bottom:507.613333pt;}
.y1c{bottom:513.853333pt;}
.y4e{bottom:518.813333pt;}
.y90{bottom:519.933333pt;}
.ya3{bottom:522.813333pt;}
.y39{bottom:527.933333pt;}
.y6b{bottom:529.053333pt;}
.y1b{bottom:541.693333pt;}
.y4d{bottom:546.333333pt;}
.y69{bottom:550.333333pt;}
.y8f{bottom:553.853333pt;}
.ya4{bottom:555.293333pt;}
.y38{bottom:555.613333pt;}
.y1a{bottom:569.373333pt;}
.y67{bottom:571.773333pt;}
.y4c{bottom:574.013333pt;}
.y8e{bottom:580.093333pt;}
.y37{bottom:583.133333pt;}
.y19{bottom:596.893333pt;}
.y4b{bottom:601.533333pt;}
.y66{bottom:605.053333pt;}
.y8d{bottom:607.773333pt;}
.y36{bottom:610.813333pt;}
.y18{bottom:624.573333pt;}
.y4a{bottom:629.053333pt;}
.y65{bottom:630.013333pt;}
.y8c{bottom:635.293333pt;}
.y35{bottom:638.013333pt;}
.y5d{bottom:638.333333pt;}
.y64{bottom:656.733333pt;}
.y17{bottom:658.173333pt;}
.y49{bottom:660.733333pt;}
.y8b{bottom:662.973333pt;}
.y34{bottom:665.853333pt;}
.y16{bottom:679.773333pt;}
.y63{bottom:684.253333pt;}
.y8a{bottom:690.493333pt;}
.y33{bottom:693.533333pt;}
.y15{bottom:707.293333pt;}
.y62{bottom:711.933333pt;}
.y89{bottom:718.013333pt;}
.y32{bottom:721.053333pt;}
.y14{bottom:735.013333pt;}
.y61{bottom:739.493333pt;}
.y88{bottom:745.733333pt;}
.y31{bottom:748.773333pt;}
.y13{bottom:764.453333pt;}
.y60{bottom:767.173333pt;}
.y87{bottom:769.093333pt;}
.y30{bottom:776.293333pt;}
.y86{bottom:779.333333pt;}
.y12{bottom:796.613333pt;}
.y5f{bottom:798.853333pt;}
.y85{bottom:800.773333pt;}
.y2f{bottom:803.973333pt;}
.y84{bottom:822.053333pt;}
.y11{bottom:828.773333pt;}
.y2e{bottom:831.493333pt;}
.y83{bottom:843.493333pt;}
.y2d{bottom:859.173333pt;}
.y10{bottom:861.093333pt;}
.y82{bottom:864.773333pt;}
.y7e{bottom:886.213333pt;}
.y2c{bottom:886.693333pt;}
.yf{bottom:891.333333pt;}
.y80{bottom:907.493333pt;}
.y2b{bottom:914.373333pt;}
.ye{bottom:916.613333pt;}
.yb{bottom:928.933333pt;}
.y3{bottom:952.960000pt;}
.y1{bottom:1002.880000pt;}
.h1{height:15.360000pt;}
.h10{height:20.640000pt;}
.h14{height:20.672000pt;}
.h12{height:20.800000pt;}
.h17{height:21.120000pt;}
.h16{height:42.080000pt;}
.ha{height:42.084375pt;}
.h13{height:47.109375pt;}
.h11{height:48.375000pt;}
.h5{height:49.622500pt;}
.h3{height:49.920000pt;}
.h2{height:52.134375pt;}
.h6{height:53.535000pt;}
.hc{height:57.375000pt;}
.h15{height:57.787500pt;}
.hf{height:59.340000pt;}
.h7{height:62.812500pt;}
.hb{height:64.500000pt;}
.he{height:66.383042pt;}
.h9{height:66.404375pt;}
.h4{height:69.189120pt;}
.h8{height:75.465000pt;}
.hd{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w9{width:75.840000pt;}
.w3{width:76.672000pt;}
.w11{width:78.400000pt;}
.wf{width:78.560000pt;}
.w12{width:78.592000pt;}
.w10{width:78.752000pt;}
.w6{width:80.000000pt;}
.wa{width:89.472000pt;}
.w5{width:105.632000pt;}
.wc{width:157.760000pt;}
.we{width:157.786667pt;}
.wd{width:157.946667pt;}
.w2{width:185.626667pt;}
.wb{width:188.066667pt;}
.w8{width:247.106667pt;}
.w13{width:331.426667pt;}
.w4{width:417.826667pt;}
.w1{width:494.493333pt;}
.w7{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x31{left:6.880000pt;}
.x9{left:11.840000pt;}
.x30{left:16.960000pt;}
.x40{left:18.240000pt;}
.x3d{left:21.626667pt;}
.x3a{left:24.032000pt;}
.x8{left:25.600000pt;}
.x44{left:28.800000pt;}
.x33{left:31.040000pt;}
.x32{left:32.000000pt;}
.x34{left:34.080000pt;}
.x3f{left:35.880000pt;}
.x6{left:37.440000pt;}
.x4{left:38.432000pt;}
.xb{left:40.000000pt;}
.x3{left:41.160000pt;}
.x1{left:68.000000pt;}
.x15{left:75.519988pt;}
.x11{left:81.151988pt;}
.x39{left:90.111988pt;}
.x2f{left:98.920000pt;}
.x13{left:105.951988pt;}
.x45{left:120.671988pt;}
.x7{left:132.040000pt;}
.x47{left:136.186667pt;}
.x2a{left:139.066655pt;}
.x2b{left:140.186655pt;}
.x5{left:144.666667pt;}
.x46{left:148.506667pt;}
.x2e{left:169.146655pt;}
.x1a{left:185.146655pt;}
.x1b{left:187.546655pt;}
.xe{left:200.346655pt;}
.x49{left:235.226655pt;}
.x20{left:242.906655pt;}
.x21{left:244.026655pt;}
.x26{left:245.786655pt;}
.x3b{left:265.026667pt;}
.x36{left:312.226655pt;}
.x37{left:313.506655pt;}
.x29{left:321.986655pt;}
.x4c{left:325.346655pt;}
.x4b{left:331.586655pt;}
.x2d{left:335.586655pt;}
.x22{left:337.026655pt;}
.x23{left:338.466655pt;}
.x41{left:344.226667pt;}
.x48{left:348.706655pt;}
.x2c{left:353.346655pt;}
.x4d{left:363.906655pt;}
.x12{left:367.426655pt;}
.x14{left:378.306655pt;}
.x35{left:395.746655pt;}
.x4a{left:401.346655pt;}
.xd{left:404.546655pt;}
.x10{left:407.906655pt;}
.x3c{left:423.426667pt;}
.x24{left:449.373321pt;}
.x25{left:450.973321pt;}
.x1c{left:452.253321pt;}
.x1d{left:454.493321pt;}
.x16{left:486.333321pt;}
.x17{left:488.413321pt;}
.x42{left:502.813333pt;}
.x1e{left:521.373321pt;}
.x1f{left:524.733321pt;}
.x2{left:562.493333pt;}
.x3e{left:582.013333pt;}
.x18{left:614.693321pt;}
.x19{left:616.773321pt;}
.x27{left:620.613321pt;}
.x28{left:623.973321pt;}
.x38{left:625.893321pt;}
.xf{left:645.253321pt;}
.x43{left:661.253333pt;}
.xa{left:668.133333pt;}
.xc{left:740.453321pt;}
}




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