
    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_67cc5292b917bf8667db8127.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dd2fc7edd92c12c7bf5ef820.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_90df1b852bd17e82f3d8fa7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.117188;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_90f4f11ae1aa073c0e0bdd59.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.117188;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1f36994776c495d733ffa0a0.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-2.160000px;}
.ls2{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.280800px;}
.lsd{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.lsf{letter-spacing:1.440000px;}
.lse{letter-spacing:5.760000px;}
.ls4{letter-spacing:64.397280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.680200px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-4.320720px;}
._2{margin-left:-3.255840px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._14{width:2.657760px;}
._7{width:3.664560px;}
._6{width:5.288640px;}
._18{width:6.382080px;}
._15{width:8.081280px;}
._10{width:9.432000px;}
._11{width:10.512000px;}
._1b{width:11.861760px;}
._19{width:13.456800px;}
._13{width:14.472000px;}
._e{width:16.272000px;}
._1a{width:19.702560px;}
._12{width:20.736000px;}
._1c{width:21.838080px;}
._1d{width:22.959120px;}
._1e{width:24.091680px;}
._f{width:25.956000px;}
._17{width:29.717760px;}
._16{width:30.940320px;}
._8{width:38.713440px;}
._9{width:40.378800px;}
._4{width:52.147920px;}
._5{width:53.675520px;}
._d{width:56.132880px;}
._c{width:57.408960px;}
._1f{width:143.976000px;}
._20{width:145.152000px;}
._a{width:395.801760px;}
._b{width:396.954960px;}
.fc3{color:transparent;}
.fc2{color:rgb(27,28,29);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:3.240000px;}
.y98{bottom:5.220000px;}
.y79{bottom:11.880000px;}
.y96{bottom:13.860000px;}
.y87{bottom:20.340000px;}
.y77{bottom:20.520000px;}
.y97{bottom:22.320000px;}
.y84{bottom:28.980000px;}
.y7d{bottom:29.160000px;}
.y78{bottom:29.190000px;}
.y9f{bottom:37.620000px;}
.y86{bottom:37.665000px;}
.y7f{bottom:37.800000px;}
.y7a{bottom:37.830000px;}
.y9a{bottom:46.260000px;}
.y9d{bottom:46.305000px;}
.y7e{bottom:54.900000px;}
.y85{bottom:54.945000px;}
.y81{bottom:55.080000px;}
.y9b{bottom:72.180000px;}
.y9e{bottom:72.225000px;}
.ya0{bottom:89.505000px;}
.y5{bottom:92.556000px;}
.y4{bottom:129.456000px;}
.y3{bottom:165.270000px;}
.y2{bottom:184.350000px;}
.y1{bottom:203.430000px;}
.ya1{bottom:221.970000px;}
.y3f{bottom:222.870000px;}
.y88{bottom:232.590000px;}
.y52{bottom:237.990000px;}
.y2d{bottom:242.130000px;}
.yd5{bottom:247.350000px;}
.y68{bottom:247.890000px;}
.yc7{bottom:248.430000px;}
.yb6{bottom:262.110000px;}
.y2c{bottom:262.830000px;}
.yd4{bottom:268.050000px;}
.y51{bottom:269.130000px;}
.y67{bottom:279.030000px;}
.yc6{bottom:279.390000px;}
.y2b{bottom:283.530000px;}
.yd3{bottom:288.750000px;}
.y9c{bottom:291.810000px;}
.yb5{bottom:293.250000px;}
.y83{bottom:302.430000px;}
.y2a{bottom:304.230000px;}
.y50{bottom:306.030000px;}
.yc5{bottom:310.530000px;}
.yd2{bottom:315.390000px;}
.y66{bottom:316.110000px;}
.yb4{bottom:324.210000px;}
.y29{bottom:324.930000px;}
.y4f{bottom:328.710000px;}
.yc4{bottom:341.535000px;}
.y28{bottom:345.675000px;}
.y65{bottom:347.115000px;}
.yd1{bottom:348.195000px;}
.yb3{bottom:355.395000px;}
.y27{bottom:366.375000px;}
.yd0{bottom:368.895000px;}
.y82{bottom:372.135000px;}
.yc3{bottom:372.675000px;}
.y64{bottom:378.255000px;}
.y26{bottom:387.075000px;}
.yb2{bottom:392.295000px;}
.ycf{bottom:395.535000px;}
.y99{bottom:396.075000px;}
.yc2{bottom:403.635000px;}
.y25{bottom:407.775000px;}
.y63{bottom:409.215000px;}
.yb1{bottom:423.435000px;}
.yce{bottom:428.295000px;}
.y24{bottom:428.475000px;}
.yc1{bottom:434.775000px;}
.y62{bottom:440.355000px;}
.y80{bottom:441.795000px;}
.ycd{bottom:448.995000px;}
.y23{bottom:449.175000px;}
.yb0{bottom:454.395000px;}
.yc0{bottom:465.735000px;}
.ycc{bottom:469.695000px;}
.y22{bottom:469.875000px;}
.y61{bottom:471.315000px;}
.y95{bottom:483.015000px;}
.yaf{bottom:485.535000px;}
.y21{bottom:490.575000px;}
.ycb{bottom:496.335000px;}
.ybf{bottom:496.875000px;}
.y60{bottom:502.455000px;}
.y20{bottom:511.275000px;}
.y7c{bottom:511.635000px;}
.yae{bottom:516.495000px;}
.y94{bottom:525.315000px;}
.ybe{bottom:527.835000px;}
.yca{bottom:529.095000px;}
.y1f{bottom:531.975000px;}
.y5f{bottom:533.415000px;}
.yad{bottom:547.635000px;}
.yc9{bottom:549.795000px;}
.y1e{bottom:552.675000px;}
.y93{bottom:559.695000px;}
.y5e{bottom:564.555000px;}
.ybd{bottom:567.075000px;}
.yc8{bottom:570.495000px;}
.y1d{bottom:573.375000px;}
.yac{bottom:578.595000px;}
.yea{bottom:578.955000px;}
.y76{bottom:581.295000px;}
.y92{bottom:590.655000px;}
.y1c{bottom:594.075000px;}
.y5d{bottom:601.455000px;}
.ybc{bottom:606.165000px;}
.yab{bottom:609.765000px;}
.ye9{bottom:614.445000px;}
.y1b{bottom:614.805000px;}
.y91{bottom:621.645000px;}
.y4e{bottom:622.905000px;}
.y5c{bottom:632.625000px;}
.y1a{bottom:635.505000px;}
.y75{bottom:637.125000px;}
.yaa{bottom:640.725000px;}
.y4d{bottom:642.705000px;}
.ye8{bottom:647.205000px;}
.y90{bottom:652.785000px;}
.y74{bottom:654.405000px;}
.y19{bottom:656.205000px;}
.y4c{bottom:662.505000px;}
.y5b{bottom:663.585000px;}
.ye7{bottom:667.905000px;}
.y3e{bottom:671.685000px;}
.ya9{bottom:671.865000px;}
.y18{bottom:676.905000px;}
.y73{bottom:682.665000px;}
.y8f{bottom:683.745000px;}
.y3d{bottom:688.965000px;}
.ye6{bottom:694.545000px;}
.y5a{bottom:694.725000px;}
.y4b{bottom:696.885000px;}
.y17{bottom:697.605000px;}
.y3c{bottom:706.065000px;}
.ya8{bottom:708.945000px;}
.y72{bottom:713.805000px;}
.y8e{bottom:714.885000px;}
.y16{bottom:718.305000px;}
.y59{bottom:725.685000px;}
.ye5{bottom:727.305000px;}
.y4a{bottom:733.965000px;}
.y15{bottom:739.005000px;}
.ya7{bottom:739.905000px;}
.y3b{bottom:740.445000px;}
.y71{bottom:744.765000px;}
.y8d{bottom:745.845000px;}
.ye4{bottom:748.005000px;}
.y58{bottom:756.825000px;}
.y14{bottom:759.705000px;}
.y49{bottom:764.925000px;}
.ya6{bottom:771.045000px;}
.y3a{bottom:771.405000px;}
.ye3{bottom:774.645000px;}
.y70{bottom:775.905000px;}
.y8c{bottom:776.985000px;}
.y13{bottom:780.405000px;}
.y57{bottom:787.785000px;}
.y48{bottom:796.065000px;}
.y12{bottom:801.105000px;}
.ya5{bottom:802.005000px;}
.y39{bottom:802.545000px;}
.ye2{bottom:807.405000px;}
.y8b{bottom:807.945000px;}
.y6f{bottom:812.805000px;}
.y56{bottom:818.925000px;}
.y11{bottom:821.805000px;}
.y47{bottom:827.025000px;}
.ye1{bottom:828.105000px;}
.ya4{bottom:833.145000px;}
.y8a{bottom:839.085000px;}
.y38{bottom:839.625000px;}
.y10{bottom:842.505000px;}
.y6e{bottom:843.945000px;}
.ye0{bottom:848.805000px;}
.y55{bottom:858.165000px;}
.y46{bottom:864.105000px;}
.yf{bottom:864.465000px;}
.y89{bottom:870.045000px;}
.y37{bottom:870.630000px;}
.y6d{bottom:874.950000px;}
.ydf{bottom:875.490000px;}
.ye{bottom:892.230000px;}
.y45{bottom:895.290000px;}
.y54{bottom:901.230000px;}
.y36{bottom:901.770000px;}
.y6c{bottom:906.090000px;}
.yde{bottom:908.250000px;}
.yd{bottom:919.770000px;}
.y44{bottom:926.250000px;}
.ydd{bottom:928.950000px;}
.y53{bottom:932.190000px;}
.y35{bottom:932.730000px;}
.y6b{bottom:937.050000px;}
.yc{bottom:947.310000px;}
.ydc{bottom:949.650000px;}
.ya3{bottom:957.210000px;}
.y43{bottom:963.330000px;}
.y34{bottom:963.870000px;}
.yb{bottom:975.030000px;}
.ydb{bottom:976.290000px;}
.y6a{bottom:976.470000px;}
.ya2{bottom:988.350000px;}
.ybb{bottom:990.150000px;}
.y42{bottom:994.290000px;}
.ya{bottom:1002.570000px;}
.y33{bottom:1002.930000px;}
.yba{bottom:1007.430000px;}
.yda{bottom:1009.050000px;}
.y69{bottom:1019.310000px;}
.yb9{bottom:1024.710000px;}
.y41{bottom:1025.430000px;}
.yd9{bottom:1029.750000px;}
.y9{bottom:1030.110000px;}
.y32{bottom:1035.690000px;}
.yb8{bottom:1041.990000px;}
.yd8{bottom:1050.450000px;}
.y31{bottom:1056.390000px;}
.y8{bottom:1057.830000px;}
.yb7{bottom:1059.090000px;}
.yd7{bottom:1071.150000px;}
.y30{bottom:1077.090000px;}
.y7{bottom:1085.370000px;}
.y40{bottom:1087.530000px;}
.yd6{bottom:1091.850000px;}
.y2f{bottom:1097.790000px;}
.y6{bottom:1112.910000px;}
.y2e{bottom:1118.490000px;}
.h10{height:38.340000px;}
.ha{height:51.876000px;}
.hb{height:53.077852px;}
.hd{height:53.573906px;}
.h9{height:53.865703px;}
.h2{height:59.383125px;}
.h3{height:64.546875px;}
.h7{height:64.898438px;}
.hc{height:68.940000px;}
.hf{height:68.976000px;}
.he{height:69.120000px;}
.h8{height:74.820586px;}
.h13{height:75.519844px;}
.h5{height:85.052461px;}
.h4{height:85.847344px;}
.h11{height:86.220000px;}
.h6{height:86.314922px;}
.h12{height:103.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:50.580000px;}
.wa{width:73.440000px;}
.w5{width:90.540000px;}
.w8{width:91.080000px;}
.w7{width:91.836000px;}
.w3{width:118.080000px;}
.w9{width:190.290000px;}
.w4{width:233.175000px;}
.wb{width:420.555000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:2.160000px;}
.x2a{left:4.320000px;}
.x2c{left:6.480000px;}
.x14{left:7.740000px;}
.x1a{left:10.800000px;}
.x10{left:12.780000px;}
.x1d{left:14.760000px;}
.x12{left:16.740000px;}
.x17{left:17.820000px;}
.x15{left:19.620000px;}
.x24{left:22.320000px;}
.x2e{left:25.020000px;}
.x20{left:26.274000px;}
.x22{left:29.154000px;}
.x21{left:30.240000px;}
.x25{left:31.674000px;}
.x1e{left:34.380000px;}
.x28{left:35.634000px;}
.x19{left:38.025000px;}
.x1c{left:40.314000px;}
.x1f{left:41.760000px;}
.x23{left:48.825000px;}
.x27{left:124.776000px;}
.x1{left:127.655987px;}
.x2f{left:128.735987px;}
.x31{left:131.255987px;}
.xa{left:136.835987px;}
.x30{left:144.395987px;}
.xe{left:146.915987px;}
.xf{left:150.509987px;}
.x7{left:152.309987px;}
.xb{left:154.469987px;}
.x2{left:170.129987px;}
.x4{left:180.749987px;}
.x26{left:203.789987px;}
.x11{left:247.170000px;}
.xc{left:306.794987px;}
.x5{left:311.114987px;}
.x29{left:315.975000px;}
.x8{left:358.094987px;}
.x2b{left:390.315000px;}
.x6{left:467.924987px;}
.x13{left:481.065000px;}
.x16{left:572.325000px;}
.x18{left:623.625000px;}
.x1b{left:716.190000px;}
.x9{left:783.329987px;}
.xd{left:797.549987px;}
.x3{left:808.169987px;}
.x32{left:818.429987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.920000pt;}
.ls2{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.249600pt;}
.lsd{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.lsf{letter-spacing:1.280000pt;}
.lse{letter-spacing:5.120000pt;}
.ls4{letter-spacing:57.242027pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.049067pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-3.840640pt;}
._2{margin-left:-2.894080pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._14{width:2.362453pt;}
._7{width:3.257387pt;}
._6{width:4.701013pt;}
._18{width:5.672960pt;}
._15{width:7.183360pt;}
._10{width:8.384000pt;}
._11{width:9.344000pt;}
._1b{width:10.543787pt;}
._19{width:11.961600pt;}
._13{width:12.864000pt;}
._e{width:14.464000pt;}
._1a{width:17.513387pt;}
._12{width:18.432000pt;}
._1c{width:19.411627pt;}
._1d{width:20.408107pt;}
._1e{width:21.414827pt;}
._f{width:23.072000pt;}
._17{width:26.415787pt;}
._16{width:27.502507pt;}
._8{width:34.411947pt;}
._9{width:35.892267pt;}
._4{width:46.353707pt;}
._5{width:47.711573pt;}
._d{width:49.895893pt;}
._c{width:51.030187pt;}
._1f{width:127.978667pt;}
._20{width:129.024000pt;}
._a{width:351.823787pt;}
._b{width:352.848853pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.880000pt;}
.y98{bottom:4.640000pt;}
.y79{bottom:10.560000pt;}
.y96{bottom:12.320000pt;}
.y87{bottom:18.080000pt;}
.y77{bottom:18.240000pt;}
.y97{bottom:19.840000pt;}
.y84{bottom:25.760000pt;}
.y7d{bottom:25.920000pt;}
.y78{bottom:25.946667pt;}
.y9f{bottom:33.440000pt;}
.y86{bottom:33.480000pt;}
.y7f{bottom:33.600000pt;}
.y7a{bottom:33.626667pt;}
.y9a{bottom:41.120000pt;}
.y9d{bottom:41.160000pt;}
.y7e{bottom:48.800000pt;}
.y85{bottom:48.840000pt;}
.y81{bottom:48.960000pt;}
.y9b{bottom:64.160000pt;}
.y9e{bottom:64.200000pt;}
.ya0{bottom:79.560000pt;}
.y5{bottom:82.272000pt;}
.y4{bottom:115.072000pt;}
.y3{bottom:146.906667pt;}
.y2{bottom:163.866667pt;}
.y1{bottom:180.826667pt;}
.ya1{bottom:197.306667pt;}
.y3f{bottom:198.106667pt;}
.y88{bottom:206.746667pt;}
.y52{bottom:211.546667pt;}
.y2d{bottom:215.226667pt;}
.yd5{bottom:219.866667pt;}
.y68{bottom:220.346667pt;}
.yc7{bottom:220.826667pt;}
.yb6{bottom:232.986667pt;}
.y2c{bottom:233.626667pt;}
.yd4{bottom:238.266667pt;}
.y51{bottom:239.226667pt;}
.y67{bottom:248.026667pt;}
.yc6{bottom:248.346667pt;}
.y2b{bottom:252.026667pt;}
.yd3{bottom:256.666667pt;}
.y9c{bottom:259.386667pt;}
.yb5{bottom:260.666667pt;}
.y83{bottom:268.826667pt;}
.y2a{bottom:270.426667pt;}
.y50{bottom:272.026667pt;}
.yc5{bottom:276.026667pt;}
.yd2{bottom:280.346667pt;}
.y66{bottom:280.986667pt;}
.yb4{bottom:288.186667pt;}
.y29{bottom:288.826667pt;}
.y4f{bottom:292.186667pt;}
.yc4{bottom:303.586667pt;}
.y28{bottom:307.266667pt;}
.y65{bottom:308.546667pt;}
.yd1{bottom:309.506667pt;}
.yb3{bottom:315.906667pt;}
.y27{bottom:325.666667pt;}
.yd0{bottom:327.906667pt;}
.y82{bottom:330.786667pt;}
.yc3{bottom:331.266667pt;}
.y64{bottom:336.226667pt;}
.y26{bottom:344.066667pt;}
.yb2{bottom:348.706667pt;}
.ycf{bottom:351.586667pt;}
.y99{bottom:352.066667pt;}
.yc2{bottom:358.786667pt;}
.y25{bottom:362.466667pt;}
.y63{bottom:363.746667pt;}
.yb1{bottom:376.386667pt;}
.yce{bottom:380.706667pt;}
.y24{bottom:380.866667pt;}
.yc1{bottom:386.466667pt;}
.y62{bottom:391.426667pt;}
.y80{bottom:392.706667pt;}
.ycd{bottom:399.106667pt;}
.y23{bottom:399.266667pt;}
.yb0{bottom:403.906667pt;}
.yc0{bottom:413.986667pt;}
.ycc{bottom:417.506667pt;}
.y22{bottom:417.666667pt;}
.y61{bottom:418.946667pt;}
.y95{bottom:429.346667pt;}
.yaf{bottom:431.586667pt;}
.y21{bottom:436.066667pt;}
.ycb{bottom:441.186667pt;}
.ybf{bottom:441.666667pt;}
.y60{bottom:446.626667pt;}
.y20{bottom:454.466667pt;}
.y7c{bottom:454.786667pt;}
.yae{bottom:459.106667pt;}
.y94{bottom:466.946667pt;}
.ybe{bottom:469.186667pt;}
.yca{bottom:470.306667pt;}
.y1f{bottom:472.866667pt;}
.y5f{bottom:474.146667pt;}
.yad{bottom:486.786667pt;}
.yc9{bottom:488.706667pt;}
.y1e{bottom:491.266667pt;}
.y93{bottom:497.506667pt;}
.y5e{bottom:501.826667pt;}
.ybd{bottom:504.066667pt;}
.yc8{bottom:507.106667pt;}
.y1d{bottom:509.666667pt;}
.yac{bottom:514.306667pt;}
.yea{bottom:514.626667pt;}
.y76{bottom:516.706667pt;}
.y92{bottom:525.026667pt;}
.y1c{bottom:528.066667pt;}
.y5d{bottom:534.626667pt;}
.ybc{bottom:538.813333pt;}
.yab{bottom:542.013333pt;}
.ye9{bottom:546.173333pt;}
.y1b{bottom:546.493333pt;}
.y91{bottom:552.573333pt;}
.y4e{bottom:553.693333pt;}
.y5c{bottom:562.333333pt;}
.y1a{bottom:564.893333pt;}
.y75{bottom:566.333333pt;}
.yaa{bottom:569.533333pt;}
.y4d{bottom:571.293333pt;}
.ye8{bottom:575.293333pt;}
.y90{bottom:580.253333pt;}
.y74{bottom:581.693333pt;}
.y19{bottom:583.293333pt;}
.y4c{bottom:588.893333pt;}
.y5b{bottom:589.853333pt;}
.ye7{bottom:593.693333pt;}
.y3e{bottom:597.053333pt;}
.ya9{bottom:597.213333pt;}
.y18{bottom:601.693333pt;}
.y73{bottom:606.813333pt;}
.y8f{bottom:607.773333pt;}
.y3d{bottom:612.413333pt;}
.ye6{bottom:617.373333pt;}
.y5a{bottom:617.533333pt;}
.y4b{bottom:619.453333pt;}
.y17{bottom:620.093333pt;}
.y3c{bottom:627.613333pt;}
.ya8{bottom:630.173333pt;}
.y72{bottom:634.493333pt;}
.y8e{bottom:635.453333pt;}
.y16{bottom:638.493333pt;}
.y59{bottom:645.053333pt;}
.ye5{bottom:646.493333pt;}
.y4a{bottom:652.413333pt;}
.y15{bottom:656.893333pt;}
.ya7{bottom:657.693333pt;}
.y3b{bottom:658.173333pt;}
.y71{bottom:662.013333pt;}
.y8d{bottom:662.973333pt;}
.ye4{bottom:664.893333pt;}
.y58{bottom:672.733333pt;}
.y14{bottom:675.293333pt;}
.y49{bottom:679.933333pt;}
.ya6{bottom:685.373333pt;}
.y3a{bottom:685.693333pt;}
.ye3{bottom:688.573333pt;}
.y70{bottom:689.693333pt;}
.y8c{bottom:690.653333pt;}
.y13{bottom:693.693333pt;}
.y57{bottom:700.253333pt;}
.y48{bottom:707.613333pt;}
.y12{bottom:712.093333pt;}
.ya5{bottom:712.893333pt;}
.y39{bottom:713.373333pt;}
.ye2{bottom:717.693333pt;}
.y8b{bottom:718.173333pt;}
.y6f{bottom:722.493333pt;}
.y56{bottom:727.933333pt;}
.y11{bottom:730.493333pt;}
.y47{bottom:735.133333pt;}
.ye1{bottom:736.093333pt;}
.ya4{bottom:740.573333pt;}
.y8a{bottom:745.853333pt;}
.y38{bottom:746.333333pt;}
.y10{bottom:748.893333pt;}
.y6e{bottom:750.173333pt;}
.ye0{bottom:754.493333pt;}
.y55{bottom:762.813333pt;}
.y46{bottom:768.093333pt;}
.yf{bottom:768.413333pt;}
.y89{bottom:773.373333pt;}
.y37{bottom:773.893333pt;}
.y6d{bottom:777.733333pt;}
.ydf{bottom:778.213333pt;}
.ye{bottom:793.093333pt;}
.y45{bottom:795.813333pt;}
.y54{bottom:801.093333pt;}
.y36{bottom:801.573333pt;}
.y6c{bottom:805.413333pt;}
.yde{bottom:807.333333pt;}
.yd{bottom:817.573333pt;}
.y44{bottom:823.333333pt;}
.ydd{bottom:825.733333pt;}
.y53{bottom:828.613333pt;}
.y35{bottom:829.093333pt;}
.y6b{bottom:832.933333pt;}
.yc{bottom:842.053333pt;}
.ydc{bottom:844.133333pt;}
.ya3{bottom:850.853333pt;}
.y43{bottom:856.293333pt;}
.y34{bottom:856.773333pt;}
.yb{bottom:866.693333pt;}
.ydb{bottom:867.813333pt;}
.y6a{bottom:867.973333pt;}
.ya2{bottom:878.533333pt;}
.ybb{bottom:880.133333pt;}
.y42{bottom:883.813333pt;}
.ya{bottom:891.173333pt;}
.y33{bottom:891.493333pt;}
.yba{bottom:895.493333pt;}
.yda{bottom:896.933333pt;}
.y69{bottom:906.053333pt;}
.yb9{bottom:910.853333pt;}
.y41{bottom:911.493333pt;}
.yd9{bottom:915.333333pt;}
.y9{bottom:915.653333pt;}
.y32{bottom:920.613333pt;}
.yb8{bottom:926.213333pt;}
.yd8{bottom:933.733333pt;}
.y31{bottom:939.013333pt;}
.y8{bottom:940.293333pt;}
.yb7{bottom:941.413333pt;}
.yd7{bottom:952.133333pt;}
.y30{bottom:957.413333pt;}
.y7{bottom:964.773333pt;}
.y40{bottom:966.693333pt;}
.yd6{bottom:970.533333pt;}
.y2f{bottom:975.813333pt;}
.y6{bottom:989.253333pt;}
.y2e{bottom:994.213333pt;}
.h10{height:34.080000pt;}
.ha{height:46.112000pt;}
.hb{height:47.180312pt;}
.hd{height:47.621250pt;}
.h9{height:47.880625pt;}
.h2{height:52.785000pt;}
.h3{height:57.375000pt;}
.h7{height:57.687500pt;}
.hc{height:61.280000pt;}
.hf{height:61.312000pt;}
.he{height:61.440000pt;}
.h8{height:66.507188pt;}
.h13{height:67.128750pt;}
.h5{height:75.602187pt;}
.h4{height:76.308750pt;}
.h11{height:76.640000pt;}
.h6{height:76.724375pt;}
.h12{height:92.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:44.960000pt;}
.wa{width:65.280000pt;}
.w5{width:80.480000pt;}
.w8{width:80.960000pt;}
.w7{width:81.632000pt;}
.w3{width:104.960000pt;}
.w9{width:169.146667pt;}
.w4{width:207.266667pt;}
.wb{width:373.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:1.920000pt;}
.x2a{left:3.840000pt;}
.x2c{left:5.760000pt;}
.x14{left:6.880000pt;}
.x1a{left:9.600000pt;}
.x10{left:11.360000pt;}
.x1d{left:13.120000pt;}
.x12{left:14.880000pt;}
.x17{left:15.840000pt;}
.x15{left:17.440000pt;}
.x24{left:19.840000pt;}
.x2e{left:22.240000pt;}
.x20{left:23.354667pt;}
.x22{left:25.914667pt;}
.x21{left:26.880000pt;}
.x25{left:28.154667pt;}
.x1e{left:30.560000pt;}
.x28{left:31.674667pt;}
.x19{left:33.800000pt;}
.x1c{left:35.834667pt;}
.x1f{left:37.120000pt;}
.x23{left:43.400000pt;}
.x27{left:110.912000pt;}
.x1{left:113.471988pt;}
.x2f{left:114.431988pt;}
.x31{left:116.671988pt;}
.xa{left:121.631988pt;}
.x30{left:128.351988pt;}
.xe{left:130.591988pt;}
.xf{left:133.786655pt;}
.x7{left:135.386655pt;}
.xb{left:137.306655pt;}
.x2{left:151.226655pt;}
.x4{left:160.666655pt;}
.x26{left:181.146655pt;}
.x11{left:219.706667pt;}
.xc{left:272.706655pt;}
.x5{left:276.546655pt;}
.x29{left:280.866667pt;}
.x8{left:318.306655pt;}
.x2b{left:346.946667pt;}
.x6{left:415.933322pt;}
.x13{left:427.613333pt;}
.x16{left:508.733333pt;}
.x18{left:554.333333pt;}
.x1b{left:636.613333pt;}
.x9{left:696.293322pt;}
.xd{left:708.933322pt;}
.x3{left:718.373322pt;}
.x32{left:727.493322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  