
    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_b1561c5577b2f829961facfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_e548df553badccefeb158ea9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_9c3c5a92d7cd78178618a0f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_f37d3a4211df3d0a3fc4d182.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_ddbafd7e40b5f61ddc5dccf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_f2ff6dc68b8ee19c3fcb26aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_addaec0427e88427f2cf1b87.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.178800px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls13{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.098400px;}
.lsa{letter-spacing:0.113400px;}
.ls10{letter-spacing:0.140040px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.173520px;}
.lsf{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._11{margin-left:-4.234800px;}
._d{margin-left:-3.173160px;}
._8{margin-left:-2.117400px;}
._0{margin-left:-1.110000px;}
._2{width:1.006812px;}
._1{width:2.684412px;}
._4{width:3.787800px;}
._a{width:5.072641px;}
._7{width:6.247800px;}
._5{width:7.755600px;}
._6{width:9.197999px;}
._9{width:10.581120px;}
._10{width:11.783520px;}
._3{width:14.627040px;}
._12{width:16.034160px;}
._14{width:17.597881px;}
._15{width:19.311947px;}
._13{width:20.320560px;}
._f{width:22.124160px;}
._18{width:23.266440px;}
._19{width:24.528960px;}
._20{width:29.338560px;}
._1f{width:32.585040px;}
._1e{width:33.667200px;}
._b{width:37.755360px;}
._1a{width:46.292400px;}
._e{width:52.665120px;}
._17{width:54.348480px;}
._1d{width:70.308120px;}
._1c{width:71.422560px;}
._c{width:139.598640px;}
._16{width:144.348120px;}
._1b{width:172.364040px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y38{bottom:7.830000px;}
.y30{bottom:7.920000px;}
.yda{bottom:7.950000px;}
.y3f{bottom:17.640000px;}
.y3c{bottom:25.380000px;}
.y36{bottom:25.470000px;}
.yd9{bottom:25.500000px;}
.y3e{bottom:35.190000px;}
.y42{bottom:35.280000px;}
.ydc{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5b{bottom:114.060000px;}
.yab{bottom:122.790000px;}
.y75{bottom:124.590000px;}
.y8f{bottom:127.920000px;}
.y5a{bottom:131.610000px;}
.yaa{bottom:140.340000px;}
.y74{bottom:142.230000px;}
.y8e{bottom:145.470000px;}
.y59{bottom:149.250000px;}
.yd7{bottom:150.510000px;}
.y25{bottom:154.830000px;}
.yf7{bottom:157.980000px;}
.ya9{bottom:158.790000px;}
.y73{bottom:159.780000px;}
.y8d{bottom:163.110000px;}
.y58{bottom:166.800000px;}
.yd6{bottom:168.060000px;}
.y24{bottom:172.380000px;}
.ya8{bottom:176.340000px;}
.y72{bottom:177.330000px;}
.y34{bottom:179.730000px;}
.y8c{bottom:180.660000px;}
.yf6{bottom:184.890000px;}
.yd5{bottom:185.610000px;}
.y23{bottom:189.930000px;}
.ya7{bottom:193.980000px;}
.y71{bottom:195.780000px;}
.y33{bottom:197.370000px;}
.y8b{bottom:198.300000px;}
.y57{bottom:202.440000px;}
.yd4{bottom:203.250000px;}
.y22{bottom:207.570000px;}
.ya6{bottom:211.530000px;}
.y70{bottom:213.330000px;}
.y32{bottom:214.920000px;}
.y8a{bottom:215.850000px;}
.y56{bottom:219.990000px;}
.yd3{bottom:220.800000px;}
.ya5{bottom:229.080000px;}
.y6f{bottom:230.970000px;}
.yf5{bottom:233.130000px;}
.y21{bottom:234.480000px;}
.y55{bottom:237.540000px;}
.yd2{bottom:238.440000px;}
.ya4{bottom:246.720000px;}
.y6e{bottom:248.520000px;}
.y89{bottom:251.400000px;}
.y54{bottom:255.180000px;}
.yd1{bottom:255.990000px;}
.yf4{bottom:260.040000px;}
.y6d{bottom:266.160000px;}
.y88{bottom:269.040000px;}
.y53{bottom:272.730000px;}
.ya3{bottom:282.270000px;}
.y20{bottom:282.720000px;}
.y6c{bottom:283.710000px;}
.y87{bottom:286.590000px;}
.y52{bottom:290.370000px;}
.yd0{bottom:291.540000px;}
.yf3{bottom:297.390000px;}
.ya2{bottom:299.910000px;}
.y1f{bottom:300.270000px;}
.y86{bottom:304.230000px;}
.y51{bottom:307.920000px;}
.ycf{bottom:309.180000px;}
.ya1{bottom:317.460000px;}
.y1e{bottom:317.910000px;}
.y6b{bottom:319.260000px;}
.yce{bottom:326.730000px;}
.y1d{bottom:335.460000px;}
.y85{bottom:339.780000px;}
.y50{bottom:343.470000px;}
.ycd{bottom:344.370000px;}
.yf2{bottom:345.630000px;}
.y6a{bottom:351.480000px;}
.ya0{bottom:353.010000px;}
.y1c{bottom:353.100000px;}
.y84{bottom:357.330000px;}
.y4f{bottom:361.110000px;}
.ycc{bottom:361.920000px;}
.yf1{bottom:363.270000px;}
.y9f{bottom:370.560000px;}
.y1b{bottom:370.650000px;}
.y83{bottom:374.970000px;}
.y4e{bottom:378.660000px;}
.ycb{bottom:379.470000px;}
.yf0{bottom:380.820000px;}
.y9e{bottom:389.010000px;}
.y82{bottom:392.520000px;}
.y4d{bottom:396.300000px;}
.yef{bottom:398.370000px;}
.y1a{bottom:406.200000px;}
.y9d{bottom:406.650000px;}
.y4c{bottom:413.850000px;}
.yca{bottom:415.110000px;}
.yee{bottom:416.010000px;}
.y19{bottom:423.840000px;}
.y9c{bottom:424.200000px;}
.y81{bottom:428.160000px;}
.y4b{bottom:431.400000px;}
.yc9{bottom:432.660000px;}
.yed{bottom:433.560000px;}
.y18{bottom:441.390000px;}
.y9b{bottom:441.840000px;}
.y4a{bottom:449.040000px;}
.yc8{bottom:450.300000px;}
.y17{bottom:459.030000px;}
.y80{bottom:460.380000px;}
.y49{bottom:466.590000px;}
.yec{bottom:469.200000px;}
.y16{bottom:476.610000px;}
.yc7{bottom:476.880000px;}
.y9a{bottom:477.420000px;}
.y48{bottom:484.260000px;}
.yeb{bottom:486.780000px;}
.y15{bottom:503.520000px;}
.yea{bottom:504.330000px;}
.y99{bottom:509.640000px;}
.yc6{bottom:512.430000px;}
.y47{bottom:519.810000px;}
.ye9{bottom:521.970000px;}
.yc5{bottom:529.980000px;}
.y46{bottom:537.360000px;}
.ye8{bottom:539.520000px;}
.yc4{bottom:548.430000px;}
.y14{bottom:551.760000px;}
.y45{bottom:555.000000px;}
.y69{bottom:555.180000px;}
.ye7{bottom:557.160000px;}
.yc3{bottom:566.070000px;}
.y13{bottom:569.670000px;}
.y68{bottom:572.730000px;}
.yc2{bottom:583.620000px;}
.ye6{bottom:584.070000px;}
.y44{bottom:590.550000px;}
.yc1{bottom:602.070000px;}
.y41{bottom:605.490000px;}
.y12{bottom:606.750000px;}
.y67{bottom:608.280000px;}
.yc0{bottom:619.620000px;}
.y11{bottom:624.300000px;}
.ye5{bottom:632.310000px;}
.y43{bottom:632.850000px;}
.ybf{bottom:637.260000px;}
.y66{bottom:640.500000px;}
.y10{bottom:641.850000px;}
.ye4{bottom:649.860000px;}
.ybe{bottom:654.810000px;}
.yf{bottom:659.490000px;}
.y3d{bottom:660.210000px;}
.ye3{bottom:667.500000px;}
.ye{bottom:677.040000px;}
.ye2{bottom:685.050000px;}
.y40{bottom:687.570000px;}
.ybd{bottom:690.360000px;}
.yd{bottom:694.680000px;}
.ye1{bottom:702.690000px;}
.ybc{bottom:708.000000px;}
.yc{bottom:712.230000px;}
.y31{bottom:714.840000px;}
.ye0{bottom:720.240000px;}
.ybb{bottom:725.550000px;}
.yb{bottom:739.140000px;}
.yba{bottom:743.190000px;}
.ydf{bottom:753.180000px;}
.y3b{bottom:759.840000px;}
.yb9{bottom:760.740000px;}
.yb8{bottom:778.290000px;}
.y7f{bottom:778.740000px;}
.ya{bottom:787.380000px;}
.y7e{bottom:796.290000px;}
.y3a{bottom:804.750000px;}
.y7d{bottom:813.930000px;}
.yde{bottom:815.730000px;}
.y9{bottom:823.200000px;}
.yb7{bottom:831.480000px;}
.y39{bottom:832.020000px;}
.yfc{bottom:840.030000px;}
.y7c{bottom:840.480000px;}
.y98{bottom:848.220000px;}
.yb6{bottom:849.030000px;}
.yfb{bottom:857.670000px;}
.y8{bottom:859.200000px;}
.y37{bottom:859.380000px;}
.y97{bottom:865.860000px;}
.yb5{bottom:866.670000px;}
.y7b{bottom:876.030000px;}
.ydd{bottom:878.190000px;}
.y96{bottom:883.410000px;}
.yb4{bottom:884.220000px;}
.y65{bottom:893.670000px;}
.y7{bottom:895.200000px;}
.y95{bottom:901.860000px;}
.y35{bottom:904.290000px;}
.y64{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y94{bottom:919.410000px;}
.yb3{bottom:919.860000px;}
.yfa{bottom:928.410000px;}
.y63{bottom:928.860000px;}
.y93{bottom:936.960000px;}
.yb2{bottom:937.410000px;}
.ydb{bottom:940.740000px;}
.yf9{bottom:945.960000px;}
.y62{bottom:946.410000px;}
.y2f{bottom:949.200000px;}
.y5{bottom:949.290000px;}
.yb1{bottom:954.960000px;}
.yf8{bottom:963.600000px;}
.y61{bottom:963.960000px;}
.y92{bottom:972.600000px;}
.y60{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y91{bottom:990.150000px;}
.y2e{bottom:997.890000px;}
.y5f{bottom:999.150000px;}
.y7a{bottom:999.600000px;}
.yd8{bottom:1003.200000px;}
.y90{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y5e{bottom:1016.820000px;}
.y79{bottom:1017.180000px;}
.yb0{bottom:1025.370000px;}
.y2d{bottom:1034.370000px;}
.y78{bottom:1034.820000px;}
.y2c{bottom:1051.920000px;}
.y77{bottom:1052.370000px;}
.yaf{bottom:1060.920000px;}
.y2b{bottom:1069.560000px;}
.y76{bottom:1069.920000px;}
.yae{bottom:1078.560000px;}
.y2a{bottom:1087.110000px;}
.y5d{bottom:1087.560000px;}
.yad{bottom:1096.110000px;}
.y5c{bottom:1105.110000px;}
.yac{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hd{height:44.100000px;}
.hb{height:44.190000px;}
.h11{height:44.220000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.he{height:53.910000px;}
.hf{height:54.000000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h12{height:61.740000px;}
.h14{height:61.793886px;}
.h10{height:62.585859px;}
.h13{height:68.582109px;}
.h4{height:72.985430px;}
.ha{height:233.640000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:158.760000px;}
.w3{width:179.670000px;}
.w6{width:197.760000px;}
.w7{width:255.000000px;}
.w8{width:301.500000px;}
.w5{width:415.830000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:111.239987px;}
.xe{left:184.529987px;}
.x2{left:202.799987px;}
.x5{left:249.150000px;}
.xf{left:267.240000px;}
.xa{left:271.109987px;}
.xc{left:372.269987px;}
.x8{left:377.489987px;}
.x6{left:408.630000px;}
.x10{left:522.960000px;}
.xb{left:640.139987px;}
.xd{left:668.309987px;}
.x7{left:691.889987px;}
.x9{left:753.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.158933pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls13{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.087467pt;}
.lsa{letter-spacing:0.100800pt;}
.ls10{letter-spacing:0.124480pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.154240pt;}
.lsf{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:71.863680pt;}
.ws8{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._11{margin-left:-3.764266pt;}
._d{margin-left:-2.820587pt;}
._8{margin-left:-1.882133pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894944pt;}
._1{width:2.386144pt;}
._4{width:3.366934pt;}
._a{width:4.509014pt;}
._7{width:5.553600pt;}
._5{width:6.893867pt;}
._6{width:8.175999pt;}
._9{width:9.405440pt;}
._10{width:10.474240pt;}
._3{width:13.001814pt;}
._12{width:14.252586pt;}
._14{width:15.642561pt;}
._15{width:17.166175pt;}
._13{width:18.062720pt;}
._f{width:19.665920pt;}
._18{width:20.681280pt;}
._19{width:21.803520pt;}
._20{width:26.078720pt;}
._1f{width:28.964480pt;}
._1e{width:29.926400pt;}
._b{width:33.560320pt;}
._1a{width:41.148800pt;}
._e{width:46.813440pt;}
._17{width:48.309760pt;}
._1d{width:62.496107pt;}
._1c{width:63.486720pt;}
._c{width:124.087680pt;}
._16{width:128.309440pt;}
._1b{width:153.212480pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:6.960000pt;}
.y30{bottom:7.040000pt;}
.yda{bottom:7.066667pt;}
.y3f{bottom:15.680000pt;}
.y3c{bottom:22.560000pt;}
.y36{bottom:22.640000pt;}
.yd9{bottom:22.666667pt;}
.y3e{bottom:31.280000pt;}
.y42{bottom:31.360000pt;}
.ydc{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5b{bottom:101.386667pt;}
.yab{bottom:109.146667pt;}
.y75{bottom:110.746667pt;}
.y8f{bottom:113.706667pt;}
.y5a{bottom:116.986667pt;}
.yaa{bottom:124.746667pt;}
.y74{bottom:126.426667pt;}
.y8e{bottom:129.306667pt;}
.y59{bottom:132.666667pt;}
.yd7{bottom:133.786667pt;}
.y25{bottom:137.626667pt;}
.yf7{bottom:140.426667pt;}
.ya9{bottom:141.146667pt;}
.y73{bottom:142.026667pt;}
.y8d{bottom:144.986667pt;}
.y58{bottom:148.266667pt;}
.yd6{bottom:149.386667pt;}
.y24{bottom:153.226667pt;}
.ya8{bottom:156.746667pt;}
.y72{bottom:157.626667pt;}
.y34{bottom:159.760000pt;}
.y8c{bottom:160.586667pt;}
.yf6{bottom:164.346667pt;}
.yd5{bottom:164.986667pt;}
.y23{bottom:168.826667pt;}
.ya7{bottom:172.426667pt;}
.y71{bottom:174.026667pt;}
.y33{bottom:175.440000pt;}
.y8b{bottom:176.266667pt;}
.y57{bottom:179.946667pt;}
.yd4{bottom:180.666667pt;}
.y22{bottom:184.506667pt;}
.ya6{bottom:188.026667pt;}
.y70{bottom:189.626667pt;}
.y32{bottom:191.040000pt;}
.y8a{bottom:191.866667pt;}
.y56{bottom:195.546667pt;}
.yd3{bottom:196.266667pt;}
.ya5{bottom:203.626667pt;}
.y6f{bottom:205.306667pt;}
.yf5{bottom:207.226667pt;}
.y21{bottom:208.426667pt;}
.y55{bottom:211.146667pt;}
.yd2{bottom:211.946667pt;}
.ya4{bottom:219.306667pt;}
.y6e{bottom:220.906667pt;}
.y89{bottom:223.466667pt;}
.y54{bottom:226.826667pt;}
.yd1{bottom:227.546667pt;}
.yf4{bottom:231.146667pt;}
.y6d{bottom:236.586667pt;}
.y88{bottom:239.146667pt;}
.y53{bottom:242.426667pt;}
.ya3{bottom:250.906667pt;}
.y20{bottom:251.306667pt;}
.y6c{bottom:252.186667pt;}
.y87{bottom:254.746667pt;}
.y52{bottom:258.106667pt;}
.yd0{bottom:259.146667pt;}
.yf3{bottom:264.346667pt;}
.ya2{bottom:266.586667pt;}
.y1f{bottom:266.906667pt;}
.y86{bottom:270.426667pt;}
.y51{bottom:273.706667pt;}
.ycf{bottom:274.826667pt;}
.ya1{bottom:282.186667pt;}
.y1e{bottom:282.586667pt;}
.y6b{bottom:283.786667pt;}
.yce{bottom:290.426667pt;}
.y1d{bottom:298.186667pt;}
.y85{bottom:302.026667pt;}
.y50{bottom:305.306667pt;}
.ycd{bottom:306.106667pt;}
.yf2{bottom:307.226667pt;}
.y6a{bottom:312.426667pt;}
.ya0{bottom:313.786667pt;}
.y1c{bottom:313.866667pt;}
.y84{bottom:317.626667pt;}
.y4f{bottom:320.986667pt;}
.ycc{bottom:321.706667pt;}
.yf1{bottom:322.906667pt;}
.y9f{bottom:329.386667pt;}
.y1b{bottom:329.466667pt;}
.y83{bottom:333.306667pt;}
.y4e{bottom:336.586667pt;}
.ycb{bottom:337.306667pt;}
.yf0{bottom:338.506667pt;}
.y9e{bottom:345.786667pt;}
.y82{bottom:348.906667pt;}
.y4d{bottom:352.266667pt;}
.yef{bottom:354.106667pt;}
.y1a{bottom:361.066667pt;}
.y9d{bottom:361.466667pt;}
.y4c{bottom:367.866667pt;}
.yca{bottom:368.986667pt;}
.yee{bottom:369.786667pt;}
.y19{bottom:376.746667pt;}
.y9c{bottom:377.066667pt;}
.y81{bottom:380.586667pt;}
.y4b{bottom:383.466667pt;}
.yc9{bottom:384.586667pt;}
.yed{bottom:385.386667pt;}
.y18{bottom:392.346667pt;}
.y9b{bottom:392.746667pt;}
.y4a{bottom:399.146667pt;}
.yc8{bottom:400.266667pt;}
.y17{bottom:408.026667pt;}
.y80{bottom:409.226667pt;}
.y49{bottom:414.746667pt;}
.yec{bottom:417.066667pt;}
.y16{bottom:423.653333pt;}
.yc7{bottom:423.893333pt;}
.y9a{bottom:424.373333pt;}
.y48{bottom:430.453333pt;}
.yeb{bottom:432.693333pt;}
.y15{bottom:447.573333pt;}
.yea{bottom:448.293333pt;}
.y99{bottom:453.013333pt;}
.yc6{bottom:455.493333pt;}
.y47{bottom:462.053333pt;}
.ye9{bottom:463.973333pt;}
.yc5{bottom:471.093333pt;}
.y46{bottom:477.653333pt;}
.ye8{bottom:479.573333pt;}
.yc4{bottom:487.493333pt;}
.y14{bottom:490.453333pt;}
.y45{bottom:493.333333pt;}
.y69{bottom:493.493333pt;}
.ye7{bottom:495.253333pt;}
.yc3{bottom:503.173333pt;}
.y13{bottom:506.373333pt;}
.y68{bottom:509.093333pt;}
.yc2{bottom:518.773333pt;}
.ye6{bottom:519.173333pt;}
.y44{bottom:524.933333pt;}
.yc1{bottom:535.173333pt;}
.y41{bottom:538.213333pt;}
.y12{bottom:539.333333pt;}
.y67{bottom:540.693333pt;}
.yc0{bottom:550.773333pt;}
.y11{bottom:554.933333pt;}
.ye5{bottom:562.053333pt;}
.y43{bottom:562.533333pt;}
.ybf{bottom:566.453333pt;}
.y66{bottom:569.333333pt;}
.y10{bottom:570.533333pt;}
.ye4{bottom:577.653333pt;}
.ybe{bottom:582.053333pt;}
.yf{bottom:586.213333pt;}
.y3d{bottom:586.853333pt;}
.ye3{bottom:593.333333pt;}
.ye{bottom:601.813333pt;}
.ye2{bottom:608.933333pt;}
.y40{bottom:611.173333pt;}
.ybd{bottom:613.653333pt;}
.yd{bottom:617.493333pt;}
.ye1{bottom:624.613333pt;}
.ybc{bottom:629.333333pt;}
.yc{bottom:633.093333pt;}
.y31{bottom:635.413333pt;}
.ye0{bottom:640.213333pt;}
.ybb{bottom:644.933333pt;}
.yb{bottom:657.013333pt;}
.yba{bottom:660.613333pt;}
.ydf{bottom:669.493333pt;}
.y3b{bottom:675.413333pt;}
.yb9{bottom:676.213333pt;}
.yb8{bottom:691.813333pt;}
.y7f{bottom:692.213333pt;}
.ya{bottom:699.893333pt;}
.y7e{bottom:707.813333pt;}
.y3a{bottom:715.333333pt;}
.y7d{bottom:723.493333pt;}
.yde{bottom:725.093333pt;}
.y9{bottom:731.733333pt;}
.yb7{bottom:739.093333pt;}
.y39{bottom:739.573333pt;}
.yfc{bottom:746.693333pt;}
.y7c{bottom:747.093333pt;}
.y98{bottom:753.973333pt;}
.yb6{bottom:754.693333pt;}
.yfb{bottom:762.373333pt;}
.y8{bottom:763.733333pt;}
.y37{bottom:763.893333pt;}
.y97{bottom:769.653333pt;}
.yb5{bottom:770.373333pt;}
.y7b{bottom:778.693333pt;}
.ydd{bottom:780.613333pt;}
.y96{bottom:785.253333pt;}
.yb4{bottom:785.973333pt;}
.y65{bottom:794.373333pt;}
.y7{bottom:795.733333pt;}
.y95{bottom:801.653333pt;}
.y35{bottom:803.813333pt;}
.y64{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y94{bottom:817.253333pt;}
.yb3{bottom:817.653333pt;}
.yfa{bottom:825.253333pt;}
.y63{bottom:825.653333pt;}
.y93{bottom:832.853333pt;}
.yb2{bottom:833.253333pt;}
.ydb{bottom:836.213333pt;}
.yf9{bottom:840.853333pt;}
.y62{bottom:841.253333pt;}
.y2f{bottom:843.733333pt;}
.y5{bottom:843.813333pt;}
.yb1{bottom:848.853333pt;}
.yf8{bottom:856.533333pt;}
.y61{bottom:856.853333pt;}
.y92{bottom:864.533333pt;}
.y60{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y91{bottom:880.133333pt;}
.y2e{bottom:887.013333pt;}
.y5f{bottom:888.133333pt;}
.y7a{bottom:888.533333pt;}
.yd8{bottom:891.733333pt;}
.y90{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y5e{bottom:903.840000pt;}
.y79{bottom:904.160000pt;}
.yb0{bottom:911.440000pt;}
.y2d{bottom:919.440000pt;}
.y78{bottom:919.840000pt;}
.y2c{bottom:935.040000pt;}
.y77{bottom:935.440000pt;}
.yaf{bottom:943.040000pt;}
.y2b{bottom:950.720000pt;}
.y76{bottom:951.040000pt;}
.yae{bottom:958.720000pt;}
.y2a{bottom:966.320000pt;}
.y5d{bottom:966.720000pt;}
.yad{bottom:974.320000pt;}
.y5c{bottom:982.320000pt;}
.yac{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hd{height:39.200000pt;}
.hb{height:39.280000pt;}
.h11{height:39.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.he{height:47.920000pt;}
.hf{height:48.000000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h12{height:54.880000pt;}
.h14{height:54.927899pt;}
.h10{height:55.631875pt;}
.h13{height:60.961875pt;}
.h4{height:64.875937pt;}
.ha{height:207.680000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:141.120000pt;}
.w3{width:159.706667pt;}
.w6{width:175.786667pt;}
.w7{width:226.666667pt;}
.w8{width:268.000000pt;}
.w5{width:369.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:98.879988pt;}
.xe{left:164.026655pt;}
.x2{left:180.266655pt;}
.x5{left:221.466667pt;}
.xf{left:237.546667pt;}
.xa{left:240.986655pt;}
.xc{left:330.906655pt;}
.x8{left:335.546655pt;}
.x6{left:363.226667pt;}
.x10{left:464.853333pt;}
.xb{left:569.013322pt;}
.xd{left:594.053322pt;}
.x7{left:615.013322pt;}
.x9{left:670.053322pt;}
.x3{left:704.053322pt;}
}




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