
    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_0b1d0372c308639b57cc5777.woff')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_a23b9253f2fd649b046bb0f1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_fbea462ad2b51a8b88ee5236.woff')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_6f06cb29124bd9025f154af2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_f93fc8f6409d6456a7ae74e9.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9204ee45aa6fbf829087fa4f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.024902;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_b4c9b4dd8c48d289785ed7cc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_36eb57c2603d7adae3f445c0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_1830825a9161d4c71668ac7a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_ce0d94cdb6ee6ea39f1045fb.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ce59a1d23e346be776ff65b3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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);}
.m3{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;}
.v1{vertical-align:36.000000px;}
.v2{vertical-align:85.824000px;}
.lsb{letter-spacing:-0.383400px;}
.ls1{letter-spacing:-0.288600px;}
.ls2{letter-spacing:-0.195000px;}
.ls7{letter-spacing:-0.193200px;}
.ls6{letter-spacing:-0.164400px;}
.ls8{letter-spacing:-0.132600px;}
.ls3{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.036000px;}
.lsf{letter-spacing:-0.009360px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.008040px;}
.ls11{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.205200px;}
.ls5{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.273600px;}
.ls4{letter-spacing:0.287400px;}
.ls9{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.360000px;}
.ls13{letter-spacing:119.916000px;}
.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;}
}
.ws7{word-spacing:-57.423168px;}
.wse{word-spacing:-37.680192px;}
.ws0{word-spacing:-37.635120px;}
.ws1{word-spacing:-35.230320px;}
.ws1c{word-spacing:-33.804000px;}
.ws12{word-spacing:-32.799168px;}
.ws1d{word-spacing:-28.057680px;}
.ws2{word-spacing:-24.961680px;}
.ws16{word-spacing:-24.440544px;}
.ws6{word-spacing:-24.408000px;}
.ws18{word-spacing:-24.372000px;}
.ws5{word-spacing:-22.536000px;}
.ws10{word-spacing:-21.641760px;}
.ws14{word-spacing:-20.372544px;}
.ws13{word-spacing:-20.340000px;}
.wsa{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.837640px;}
.ws8{word-spacing:-14.805840px;}
.ws9{word-spacing:-14.777040px;}
.ws15{word-spacing:-1.170000px;}
.wsd{word-spacing:-0.691200px;}
.ws11{word-spacing:-0.632160px;}
.ws1e{word-spacing:-0.432000px;}
.ws19{word-spacing:-0.108000px;}
.ws4{word-spacing:0.000000px;}
.ws17{word-spacing:0.396000px;}
.ws1b{word-spacing:0.936000px;}
.wsf{word-spacing:1.029240px;}
.ws3{word-spacing:1.188000px;}
.ws1a{word-spacing:2.268000px;}
.wsc{word-spacing:223.980000px;}
._4{margin-left:-15.632640px;}
._5{margin-left:-11.328480px;}
._11{margin-left:-10.195920px;}
._10{margin-left:-8.522640px;}
._3{margin-left:-6.629760px;}
._7{margin-left:-5.616000px;}
._13{margin-left:-4.040928px;}
._6{margin-left:-2.768400px;}
._0{margin-left:-1.199520px;}
._2{width:1.199520px;}
._1{width:2.878848px;}
._12{width:4.476960px;}
._f{width:24.059520px;}
._17{width:25.439040px;}
._e{width:28.440480px;}
._15{width:35.317440px;}
._16{width:37.622400px;}
._14{width:40.500000px;}
._8{width:158.854560px;}
._b{width:249.189120px;}
._a{width:255.697920px;}
._d{width:257.889600px;}
._c{width:260.049600px;}
._9{width:432.295680px;}
.fc3{color:rgb(157,10,14);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:79.920000px;}
.fsb{font-size:90.000000px;}
.fs10{font-size:90.144000px;}
.fsd{font-size:95.760000px;}
.fse{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fsf{font-size:113.904000px;}
.fs3{font-size:120.240000px;}
.fs4{font-size:120.384000px;}
.fsc{font-size:126.144000px;}
.fs11{font-size:138.384000px;}
.fs12{font-size:144.000000px;}
.fs9{font-size:167.904000px;}
.fs2{font-size:239.760000px;}
.fs1{font-size:239.904000px;}
.fs0{font-size:252.878491px;}
.y0{bottom:0.000000px;}
.y3c{bottom:48.240000px;}
.y3d{bottom:68.760000px;}
.y2a{bottom:68.865000px;}
.y27{bottom:68.910000px;}
.y24{bottom:68.940000px;}
.y1b{bottom:68.970000px;}
.y1f{bottom:69.015000px;}
.y40{bottom:92.700000px;}
.y39{bottom:93.060000px;}
.y3f{bottom:95.760000px;}
.y68{bottom:106.416000px;}
.y8b{bottom:115.416000px;}
.y3e{bottom:117.000000px;}
.y14{bottom:128.052000px;}
.y60{bottom:129.168000px;}
.y4c{bottom:129.852000px;}
.y7{bottom:131.256000px;}
.y67{bottom:138.852000px;}
.y3b{bottom:140.688000px;}
.y8a{bottom:147.852000px;}
.y13{bottom:157.575000px;}
.y5f{bottom:158.505000px;}
.y3a{bottom:161.925000px;}
.y4b{bottom:162.255000px;}
.y6{bottom:163.650000px;}
.y7d{bottom:163.950000px;}
.y66{bottom:171.255000px;}
.y9a{bottom:179.385000px;}
.y89{bottom:180.255000px;}
.y5e{bottom:187.845000px;}
.y7c{bottom:191.490000px;}
.y4a{bottom:194.655000px;}
.y38{bottom:200.130000px;}
.y5{bottom:203.070000px;}
.y99{bottom:212.370000px;}
.y65{bottom:212.655000px;}
.y5d{bottom:217.185000px;}
.y7b{bottom:218.850000px;}
.y88{bottom:221.655000px;}
.y37{bottom:223.845000px;}
.y49{bottom:227.055000px;}
.ya5{bottom:228.345000px;}
.y12{bottom:234.285000px;}
.y4{bottom:239.115000px;}
.y64{bottom:245.055000px;}
.y98{bottom:245.310000px;}
.y5c{bottom:246.345000px;}
.y7a{bottom:246.390000px;}
.y36{bottom:247.575000px;}
.y87{bottom:254.055000px;}
.y11{bottom:263.805000px;}
.ya9{bottom:265.170000px;}
.y79{bottom:273.780000px;}
.y5b{bottom:275.730000px;}
.ya4{bottom:276.990000px;}
.y63{bottom:277.485000px;}
.y97{bottom:278.250000px;}
.y35{bottom:285.765000px;}
.y3{bottom:296.565000px;}
.y78{bottom:301.320000px;}
.y5a{bottom:305.070000px;}
.y34{bottom:309.450000px;}
.y48{bottom:309.885000px;}
.y96{bottom:311.190000px;}
.y30{bottom:318.240000px;}
.ya3{bottom:325.590000px;}
.y77{bottom:328.860000px;}
.y33{bottom:330.690000px;}
.y59{bottom:334.410000px;}
.y86{bottom:336.885000px;}
.ya8{bottom:337.170000px;}
.y10{bottom:340.530000px;}
.y47{bottom:342.285000px;}
.y95{bottom:344.130000px;}
.y76{bottom:356.220000px;}
.y2d{bottom:363.060000px;}
.y58{bottom:363.570000px;}
.y32{bottom:365.865000px;}
.y85{bottom:369.285000px;}
.yf{bottom:370.050000px;}
.ya2{bottom:374.190000px;}
.y94{bottom:377.100000px;}
.y75{bottom:383.760000px;}
.y31{bottom:387.105000px;}
.y62{bottom:392.685000px;}
.y57{bottom:392.910000px;}
.y2c{bottom:401.220000px;}
.y84{bottom:401.685000px;}
.ya7{bottom:409.215000px;}
.y93{bottom:410.040000px;}
.y2f{bottom:410.790000px;}
.y2{bottom:411.045000px;}
.y74{bottom:411.120000px;}
.y56{bottom:422.280000px;}
.ya1{bottom:422.820000px;}
.y46{bottom:425.130000px;}
.y2e{bottom:432.030000px;}
.y73{bottom:438.690000px;}
.y29{bottom:439.560000px;}
.y9f{bottom:440.970000px;}
.y83{bottom:443.130000px;}
.y92{bottom:443.160000px;}
.ye{bottom:446.760000px;}
.y55{bottom:451.620000px;}
.y45{bottom:457.530000px;}
.y72{bottom:466.050000px;}
.y2b{bottom:470.235000px;}
.ya0{bottom:471.420000px;}
.y82{bottom:475.530000px;}
.y91{bottom:476.100000px;}
.yd{bottom:476.280000px;}
.y26{bottom:477.720000px;}
.y54{bottom:480.780000px;}
.ya6{bottom:481.215000px;}
.y1{bottom:483.090000px;}
.y44{bottom:489.930000px;}
.y71{bottom:493.590000px;}
.y81{bottom:507.930000px;}
.y28{bottom:508.425000px;}
.y90{bottom:509.070000px;}
.y53{bottom:510.120000px;}
.y23{bottom:515.880000px;}
.y9e{bottom:520.170000px;}
.y70{bottom:521.130000px;}
.y52{bottom:539.460000px;}
.y61{bottom:540.330000px;}
.y8f{bottom:542.010000px;}
.y25{bottom:546.630000px;}
.y6f{bottom:548.490000px;}
.y80{bottom:549.330000px;}
.yc{bottom:552.990000px;}
.y21{bottom:554.040000px;}
.y9d{bottom:554.730000px;}
.y18{bottom:559.800000px;}
.y51{bottom:568.800000px;}
.y43{bottom:572.760000px;}
.y8e{bottom:574.950000px;}
.y6e{bottom:576.075000px;}
.y7f{bottom:581.760000px;}
.yb{bottom:582.510000px;}
.y22{bottom:584.820000px;}
.y1e{bottom:592.200000px;}
.y17{bottom:595.830000px;}
.y50{bottom:597.990000px;}
.y6d{bottom:603.435000px;}
.y42{bottom:605.160000px;}
.y8d{bottom:607.890000px;}
.y7e{bottom:614.160000px;}
.y1a{bottom:615.960000px;}
.yaa{bottom:622.830000px;}
.y20{bottom:623.010000px;}
.y4f{bottom:627.330000px;}
.y6c{bottom:630.975000px;}
.y16{bottom:631.830000px;}
.y9c{bottom:641.160000px;}
.y41{bottom:646.560000px;}
.ya{bottom:659.190000px;}
.y1d{bottom:661.215000px;}
.y15{bottom:667.830000px;}
.y4e{bottom:674.310000px;}
.y8c{bottom:677.415000px;}
.y9b{bottom:684.360000px;}
.y6b{bottom:684.825000px;}
.y1c{bottom:684.930000px;}
.y9{bottom:688.755000px;}
.y6a{bottom:741.930000px;}
.y19{bottom:746.970000px;}
.y69{bottom:767.850000px;}
.y4d{bottom:769.110000px;}
.y8{bottom:804.600000px;}
.h8{height:58.921875px;}
.hf{height:65.884219px;}
.h10{height:67.824844px;}
.h11{height:68.818359px;}
.h15{height:73.222734px;}
.h16{height:73.332844px;}
.h1b{height:82.476562px;}
.h7{height:88.382812px;}
.h18{height:89.516602px;}
.h19{height:89.659828px;}
.h13{height:95.245664px;}
.h14{height:95.388891px;}
.h1c{height:95.806758px;}
.hc{height:98.399531px;}
.h5{height:98.517375px;}
.ha{height:107.419922px;}
.h9{height:107.563148px;}
.h6{height:108.052734px;}
.h17{height:116.629242px;}
.h1d{height:117.843750px;}
.h4{height:120.298711px;}
.hd{height:128.387531px;}
.h12{height:129.162094px;}
.h1a{height:141.694945px;}
.he{height:148.500000px;}
.hb{height:205.418180px;}
.h3{height:239.877070px;}
.h2{height:240.021141px;}
.h1{height:253.001967px;}
.h0{height:810.000000px;}
.w2{width:51.660000px;}
.w3{width:138.600000px;}
.w4{width:494.280000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x12{left:9.900000px;}
.xa{left:11.160000px;}
.x9{left:35.280000px;}
.x8{left:50.399979px;}
.xc{left:52.559979px;}
.x6{left:55.799979px;}
.x1b{left:58.499979px;}
.xd{left:86.760000px;}
.x1c{left:98.999979px;}
.xe{left:104.400000px;}
.x10{left:106.380000px;}
.x14{left:121.355979px;}
.x13{left:136.223979px;}
.xb{left:148.535979px;}
.x15{left:155.369979px;}
.x18{left:202.709979px;}
.x4{left:220.469979px;}
.x11{left:225.180000px;}
.x1f{left:269.129979px;}
.xf{left:274.709979px;}
.x1e{left:339.689979px;}
.x1{left:355.064979px;}
.x1d{left:376.454979px;}
.x20{left:396.614979px;}
.x21{left:465.554979px;}
.x3{left:515.129979px;}
.x2{left:521.249979px;}
.x22{left:542.954979px;}
.x24{left:618.449979px;}
.x19{left:708.584979px;}
.x16{left:709.769979px;}
.x1a{left:710.924979px;}
.x17{left:717.944979px;}
.x7{left:759.269979px;}
.x23{left:835.664979px;}
.x5{left:1396.409979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.v2{vertical-align:76.288000pt;}
.lsb{letter-spacing:-0.340800pt;}
.ls1{letter-spacing:-0.256533pt;}
.ls2{letter-spacing:-0.173333pt;}
.ls7{letter-spacing:-0.171733pt;}
.ls6{letter-spacing:-0.146133pt;}
.ls8{letter-spacing:-0.117867pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.032000pt;}
.lsf{letter-spacing:-0.008320pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.007147pt;}
.ls11{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.182400pt;}
.ls5{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.243200pt;}
.ls4{letter-spacing:0.255467pt;}
.ls9{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls13{letter-spacing:106.592000pt;}
.ws7{word-spacing:-51.042816pt;}
.wse{word-spacing:-33.493504pt;}
.ws0{word-spacing:-33.453440pt;}
.ws1{word-spacing:-31.315840pt;}
.ws1c{word-spacing:-30.048000pt;}
.ws12{word-spacing:-29.154816pt;}
.ws1d{word-spacing:-24.940160pt;}
.ws2{word-spacing:-22.188160pt;}
.ws16{word-spacing:-21.724928pt;}
.ws6{word-spacing:-21.696000pt;}
.ws18{word-spacing:-21.664000pt;}
.ws5{word-spacing:-20.032000pt;}
.ws10{word-spacing:-19.237120pt;}
.ws14{word-spacing:-18.108928pt;}
.ws13{word-spacing:-18.080000pt;}
.wsa{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.189013pt;}
.ws8{word-spacing:-13.160747pt;}
.ws9{word-spacing:-13.135147pt;}
.ws15{word-spacing:-1.040000pt;}
.wsd{word-spacing:-0.614400pt;}
.ws11{word-spacing:-0.561920pt;}
.ws1e{word-spacing:-0.384000pt;}
.ws19{word-spacing:-0.096000pt;}
.ws4{word-spacing:0.000000pt;}
.ws17{word-spacing:0.352000pt;}
.ws1b{word-spacing:0.832000pt;}
.wsf{word-spacing:0.914880pt;}
.ws3{word-spacing:1.056000pt;}
.ws1a{word-spacing:2.016000pt;}
.wsc{word-spacing:199.093333pt;}
._4{margin-left:-13.895680pt;}
._5{margin-left:-10.069760pt;}
._11{margin-left:-9.063040pt;}
._10{margin-left:-7.575680pt;}
._3{margin-left:-5.893120pt;}
._7{margin-left:-4.992000pt;}
._13{margin-left:-3.591936pt;}
._6{margin-left:-2.460800pt;}
._0{margin-left:-1.066240pt;}
._2{width:1.066240pt;}
._1{width:2.558976pt;}
._12{width:3.979520pt;}
._f{width:21.386240pt;}
._17{width:22.612480pt;}
._e{width:25.280427pt;}
._15{width:31.393280pt;}
._16{width:33.442133pt;}
._14{width:36.000000pt;}
._8{width:141.204053pt;}
._b{width:221.501440pt;}
._a{width:227.287040pt;}
._d{width:229.235200pt;}
._c{width:231.155200pt;}
._9{width:384.262827pt;}
.fsa{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:71.040000pt;}
.fsb{font-size:80.000000pt;}
.fs10{font-size:80.128000pt;}
.fsd{font-size:85.120000pt;}
.fse{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fsf{font-size:101.248000pt;}
.fs3{font-size:106.880000pt;}
.fs4{font-size:107.008000pt;}
.fsc{font-size:112.128000pt;}
.fs11{font-size:123.008000pt;}
.fs12{font-size:128.000000pt;}
.fs9{font-size:149.248000pt;}
.fs2{font-size:213.120000pt;}
.fs1{font-size:213.248000pt;}
.fs0{font-size:224.780881pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:42.880000pt;}
.y3d{bottom:61.120000pt;}
.y2a{bottom:61.213333pt;}
.y27{bottom:61.253333pt;}
.y24{bottom:61.280000pt;}
.y1b{bottom:61.306667pt;}
.y1f{bottom:61.346667pt;}
.y40{bottom:82.400000pt;}
.y39{bottom:82.720000pt;}
.y3f{bottom:85.120000pt;}
.y68{bottom:94.592000pt;}
.y8b{bottom:102.592000pt;}
.y3e{bottom:104.000000pt;}
.y14{bottom:113.824000pt;}
.y60{bottom:114.816000pt;}
.y4c{bottom:115.424000pt;}
.y7{bottom:116.672000pt;}
.y67{bottom:123.424000pt;}
.y3b{bottom:125.056000pt;}
.y8a{bottom:131.424000pt;}
.y13{bottom:140.066667pt;}
.y5f{bottom:140.893333pt;}
.y3a{bottom:143.933333pt;}
.y4b{bottom:144.226667pt;}
.y6{bottom:145.466667pt;}
.y7d{bottom:145.733333pt;}
.y66{bottom:152.226667pt;}
.y9a{bottom:159.453333pt;}
.y89{bottom:160.226667pt;}
.y5e{bottom:166.973333pt;}
.y7c{bottom:170.213333pt;}
.y4a{bottom:173.026667pt;}
.y38{bottom:177.893333pt;}
.y5{bottom:180.506667pt;}
.y99{bottom:188.773333pt;}
.y65{bottom:189.026667pt;}
.y5d{bottom:193.053333pt;}
.y7b{bottom:194.533333pt;}
.y88{bottom:197.026667pt;}
.y37{bottom:198.973333pt;}
.y49{bottom:201.826667pt;}
.ya5{bottom:202.973333pt;}
.y12{bottom:208.253333pt;}
.y4{bottom:212.546667pt;}
.y64{bottom:217.826667pt;}
.y98{bottom:218.053333pt;}
.y5c{bottom:218.973333pt;}
.y7a{bottom:219.013333pt;}
.y36{bottom:220.066667pt;}
.y87{bottom:225.826667pt;}
.y11{bottom:234.493333pt;}
.ya9{bottom:235.706667pt;}
.y79{bottom:243.360000pt;}
.y5b{bottom:245.093333pt;}
.ya4{bottom:246.213333pt;}
.y63{bottom:246.653333pt;}
.y97{bottom:247.333333pt;}
.y35{bottom:254.013333pt;}
.y3{bottom:263.613333pt;}
.y78{bottom:267.840000pt;}
.y5a{bottom:271.173333pt;}
.y34{bottom:275.066667pt;}
.y48{bottom:275.453333pt;}
.y96{bottom:276.613333pt;}
.y30{bottom:282.880000pt;}
.ya3{bottom:289.413333pt;}
.y77{bottom:292.320000pt;}
.y33{bottom:293.946667pt;}
.y59{bottom:297.253333pt;}
.y86{bottom:299.453333pt;}
.ya8{bottom:299.706667pt;}
.y10{bottom:302.693333pt;}
.y47{bottom:304.253333pt;}
.y95{bottom:305.893333pt;}
.y76{bottom:316.640000pt;}
.y2d{bottom:322.720000pt;}
.y58{bottom:323.173333pt;}
.y32{bottom:325.213333pt;}
.y85{bottom:328.253333pt;}
.yf{bottom:328.933333pt;}
.ya2{bottom:332.613333pt;}
.y94{bottom:335.200000pt;}
.y75{bottom:341.120000pt;}
.y31{bottom:344.093333pt;}
.y62{bottom:349.053333pt;}
.y57{bottom:349.253333pt;}
.y2c{bottom:356.640000pt;}
.y84{bottom:357.053333pt;}
.ya7{bottom:363.746667pt;}
.y93{bottom:364.480000pt;}
.y2f{bottom:365.146667pt;}
.y2{bottom:365.373333pt;}
.y74{bottom:365.440000pt;}
.y56{bottom:375.360000pt;}
.ya1{bottom:375.840000pt;}
.y46{bottom:377.893333pt;}
.y2e{bottom:384.026667pt;}
.y73{bottom:389.946667pt;}
.y29{bottom:390.720000pt;}
.y9f{bottom:391.973333pt;}
.y83{bottom:393.893333pt;}
.y92{bottom:393.920000pt;}
.ye{bottom:397.120000pt;}
.y55{bottom:401.440000pt;}
.y45{bottom:406.693333pt;}
.y72{bottom:414.266667pt;}
.y2b{bottom:417.986667pt;}
.ya0{bottom:419.040000pt;}
.y82{bottom:422.693333pt;}
.y91{bottom:423.200000pt;}
.yd{bottom:423.360000pt;}
.y26{bottom:424.640000pt;}
.y54{bottom:427.360000pt;}
.ya6{bottom:427.746667pt;}
.y1{bottom:429.413333pt;}
.y44{bottom:435.493333pt;}
.y71{bottom:438.746667pt;}
.y81{bottom:451.493333pt;}
.y28{bottom:451.933333pt;}
.y90{bottom:452.506667pt;}
.y53{bottom:453.440000pt;}
.y23{bottom:458.560000pt;}
.y9e{bottom:462.373333pt;}
.y70{bottom:463.226667pt;}
.y52{bottom:479.520000pt;}
.y61{bottom:480.293333pt;}
.y8f{bottom:481.786667pt;}
.y25{bottom:485.893333pt;}
.y6f{bottom:487.546667pt;}
.y80{bottom:488.293333pt;}
.yc{bottom:491.546667pt;}
.y21{bottom:492.480000pt;}
.y9d{bottom:493.093333pt;}
.y18{bottom:497.600000pt;}
.y51{bottom:505.600000pt;}
.y43{bottom:509.120000pt;}
.y8e{bottom:511.066667pt;}
.y6e{bottom:512.066667pt;}
.y7f{bottom:517.120000pt;}
.yb{bottom:517.786667pt;}
.y22{bottom:519.840000pt;}
.y1e{bottom:526.400000pt;}
.y17{bottom:529.626667pt;}
.y50{bottom:531.546667pt;}
.y6d{bottom:536.386667pt;}
.y42{bottom:537.920000pt;}
.y8d{bottom:540.346667pt;}
.y7e{bottom:545.920000pt;}
.y1a{bottom:547.520000pt;}
.yaa{bottom:553.626667pt;}
.y20{bottom:553.786667pt;}
.y4f{bottom:557.626667pt;}
.y6c{bottom:560.866667pt;}
.y16{bottom:561.626667pt;}
.y9c{bottom:569.920000pt;}
.y41{bottom:574.720000pt;}
.ya{bottom:585.946667pt;}
.y1d{bottom:587.746667pt;}
.y15{bottom:593.626667pt;}
.y4e{bottom:599.386667pt;}
.y8c{bottom:602.146667pt;}
.y9b{bottom:608.320000pt;}
.y6b{bottom:608.733333pt;}
.y1c{bottom:608.826667pt;}
.y9{bottom:612.226667pt;}
.y6a{bottom:659.493333pt;}
.y19{bottom:663.973333pt;}
.y69{bottom:682.533333pt;}
.y4d{bottom:683.653333pt;}
.y8{bottom:715.200000pt;}
.h8{height:52.375000pt;}
.hf{height:58.563750pt;}
.h10{height:60.288750pt;}
.h11{height:61.171875pt;}
.h15{height:65.086875pt;}
.h16{height:65.184750pt;}
.h1b{height:73.312500pt;}
.h7{height:78.562500pt;}
.h18{height:79.570312pt;}
.h19{height:79.697625pt;}
.h13{height:84.662813pt;}
.h14{height:84.790125pt;}
.h1c{height:85.161563pt;}
.hc{height:87.466250pt;}
.h5{height:87.571000pt;}
.ha{height:95.484375pt;}
.h9{height:95.611688pt;}
.h6{height:96.046875pt;}
.h17{height:103.670437pt;}
.h1d{height:104.750000pt;}
.h4{height:106.932187pt;}
.hd{height:114.122250pt;}
.h12{height:114.810750pt;}
.h1a{height:125.951063pt;}
.he{height:132.000000pt;}
.hb{height:182.593938pt;}
.h3{height:213.224062pt;}
.h2{height:213.352125pt;}
.h1{height:224.890637pt;}
.h0{height:720.000000pt;}
.w2{width:45.920000pt;}
.w3{width:123.200000pt;}
.w4{width:439.360000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x12{left:8.800000pt;}
.xa{left:9.920000pt;}
.x9{left:31.360000pt;}
.x8{left:44.799981pt;}
.xc{left:46.719981pt;}
.x6{left:49.599981pt;}
.x1b{left:51.999981pt;}
.xd{left:77.120000pt;}
.x1c{left:87.999981pt;}
.xe{left:92.800000pt;}
.x10{left:94.560000pt;}
.x14{left:107.871981pt;}
.x13{left:121.087981pt;}
.xb{left:132.031981pt;}
.x15{left:138.106648pt;}
.x18{left:180.186648pt;}
.x4{left:195.973314pt;}
.x11{left:200.160000pt;}
.x1f{left:239.226648pt;}
.xf{left:244.186648pt;}
.x1e{left:301.946648pt;}
.x1{left:315.613314pt;}
.x1d{left:334.626648pt;}
.x20{left:352.546648pt;}
.x21{left:413.826648pt;}
.x3{left:457.893314pt;}
.x2{left:463.333314pt;}
.x22{left:482.626648pt;}
.x24{left:549.733314pt;}
.x19{left:629.853314pt;}
.x16{left:630.906648pt;}
.x1a{left:631.933314pt;}
.x17{left:638.173314pt;}
.x7{left:674.906648pt;}
.x23{left:742.813314pt;}
.x5{left:1241.253314pt;}
}




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