
    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_a28a3a75f6df54455c8cf1bc.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_8dab591a55e1bce9dcf76dcd.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_1dec81b2bf16593163b6d018.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_a38086bbc7a5eb350a927d52.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_1204043ec573cbcaca36cbd1.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:64.421280px;}
.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;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.560000px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-4.587840px;}
._a{margin-left:-2.900160px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._8{width:2.208000px;}
._9{width:3.408000px;}
._7{width:4.968000px;}
._19{width:6.480000px;}
._5{width:8.258880px;}
._d{width:10.008000px;}
._12{width:11.683680px;}
._17{width:13.398720px;}
._15{width:14.458560px;}
._14{width:15.600000px;}
._1a{width:16.702080px;}
._b{width:19.296000px;}
._c{width:20.304000px;}
._18{width:21.816000px;}
._20{width:23.616000px;}
._10{width:26.496000px;}
._11{width:28.224000px;}
._1b{width:29.736000px;}
._13{width:31.133280px;}
._e{width:32.688000px;}
._f{width:33.984000px;}
._1f{width:35.064000px;}
._1c{width:36.144000px;}
._1d{width:37.368000px;}
._1e{width:38.664000px;}
._6{width:45.964800px;}
._21{width:47.232000px;}
._22{width:48.744000px;}
._4{width:94.272240px;}
._3{width:95.472720px;}
._2{width:140.575680px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.600000px;}
.y5f{bottom:3.780000px;}
.y5d{bottom:13.140000px;}
.y68{bottom:22.500000px;}
.y5e{bottom:22.680000px;}
.y7e{bottom:22.710000px;}
.y73{bottom:22.725000px;}
.y67{bottom:41.580000px;}
.y7d{bottom:41.610000px;}
.y72{bottom:41.625000px;}
.y78{bottom:41.760000px;}
.y8f{bottom:41.805000px;}
.y82{bottom:60.480000px;}
.y7c{bottom:60.510000px;}
.y66{bottom:60.525000px;}
.y6d{bottom:60.660000px;}
.y8e{bottom:60.705000px;}
.y6c{bottom:79.560000px;}
.y7b{bottom:79.590000px;}
.y65{bottom:79.605000px;}
.y5{bottom:82.116000px;}
.y6b{bottom:98.460000px;}
.y7a{bottom:98.490000px;}
.y64{bottom:98.505000px;}
.y77{bottom:98.640000px;}
.y8d{bottom:98.685000px;}
.y4{bottom:108.396000px;}
.y92{bottom:117.360000px;}
.y63{bottom:117.405000px;}
.y76{bottom:117.540000px;}
.y71{bottom:117.585000px;}
.y3{bottom:127.476000px;}
.y86{bottom:136.440000px;}
.y94{bottom:136.470000px;}
.y62{bottom:136.485000px;}
.y75{bottom:136.620000px;}
.y89{bottom:136.650000px;}
.y8c{bottom:136.665000px;}
.y2{bottom:146.556000px;}
.y61{bottom:155.385000px;}
.y88{bottom:155.550000px;}
.y8b{bottom:155.565000px;}
.y6a{bottom:172.470000px;}
.y70{bottom:174.465000px;}
.yc5{bottom:177.690000px;}
.y2f{bottom:178.950000px;}
.yaa{bottom:186.330000px;}
.y81{bottom:195.690000px;}
.y90{bottom:196.410000px;}
.yc4{bottom:198.390000px;}
.y2e{bottom:199.650000px;}
.y99{bottom:203.970000px;}
.ye3{bottom:206.490000px;}
.ya9{bottom:217.470000px;}
.yc3{bottom:219.090000px;}
.y2d{bottom:220.350000px;}
.ye2{bottom:227.190000px;}
.y98{bottom:234.930000px;}
.yc2{bottom:239.790000px;}
.y2c{bottom:241.050000px;}
.ye1{bottom:247.890000px;}
.y49{bottom:250.770000px;}
.ya8{bottom:256.710000px;}
.yc1{bottom:260.490000px;}
.y2b{bottom:261.750000px;}
.y97{bottom:266.070000px;}
.ye0{bottom:268.590000px;}
.yc0{bottom:281.190000px;}
.y48{bottom:281.730000px;}
.y2a{bottom:282.450000px;}
.y60{bottom:287.130000px;}
.ydf{bottom:289.290000px;}
.y96{bottom:292.710000px;}
.ya7{bottom:299.730000px;}
.ybf{bottom:301.890000px;}
.y29{bottom:303.150000px;}
.yde{bottom:309.990000px;}
.y95{bottom:310.170000px;}
.y8a{bottom:310.890000px;}
.y47{bottom:312.870000px;}
.ybe{bottom:322.590000px;}
.y28{bottom:323.850000px;}
.y80{bottom:329.250000px;}
.ya6{bottom:330.690000px;}
.ybd{bottom:343.335000px;}
.y46{bottom:343.875000px;}
.y27{bottom:344.595000px;}
.ydd{bottom:351.435000px;}
.ya5{bottom:361.875000px;}
.ybc{bottom:364.035000px;}
.y26{bottom:365.295000px;}
.ydc{bottom:372.135000px;}
.y45{bottom:375.015000px;}
.ybb{bottom:384.735000px;}
.y25{bottom:385.995000px;}
.ya4{bottom:392.835000px;}
.yba{bottom:405.435000px;}
.y24{bottom:406.695000px;}
.ydb{bottom:413.535000px;}
.y44{bottom:414.255000px;}
.ya3{bottom:423.975000px;}
.yb9{bottom:426.135000px;}
.y23{bottom:427.395000px;}
.yda{bottom:434.235000px;}
.yb8{bottom:446.835000px;}
.y22{bottom:448.095000px;}
.ya2{bottom:454.935000px;}
.y43{bottom:457.275000px;}
.y5c{bottom:458.535000px;}
.yb7{bottom:467.535000px;}
.y21{bottom:468.795000px;}
.yd9{bottom:475.635000px;}
.y7f{bottom:481.755000px;}
.y87{bottom:482.475000px;}
.ya1{bottom:486.075000px;}
.y42{bottom:488.235000px;}
.y20{bottom:489.495000px;}
.yd8{bottom:496.335000px;}
.y5b{bottom:501.195000px;}
.yb6{bottom:508.935000px;}
.y1f{bottom:510.195000px;}
.ya0{bottom:517.035000px;}
.y41{bottom:519.375000px;}
.y5a{bottom:528.015000px;}
.yb5{bottom:529.635000px;}
.y1e{bottom:530.895000px;}
.yd7{bottom:537.735000px;}
.y9f{bottom:548.175000px;}
.y40{bottom:550.335000px;}
.y1d{bottom:551.595000px;}
.yd6{bottom:558.435000px;}
.y59{bottom:558.975000px;}
.yb4{bottom:571.035000px;}
.y1c{bottom:572.295000px;}
.y9e{bottom:579.135000px;}
.y3f{bottom:581.475000px;}
.y58{bottom:590.115000px;}
.yb3{bottom:591.735000px;}
.y1b{bottom:592.995000px;}
.y79{bottom:596.415000px;}
.yd5{bottom:599.835000px;}
.y9d{bottom:610.305000px;}
.y3e{bottom:612.465000px;}
.y1a{bottom:613.725000px;}
.yd4{bottom:620.565000px;}
.y57{bottom:621.105000px;}
.yb2{bottom:633.165000px;}
.y19{bottom:634.425000px;}
.y9c{bottom:641.265000px;}
.y3d{bottom:643.605000px;}
.y56{bottom:652.245000px;}
.yb1{bottom:653.865000px;}
.y85{bottom:654.045000px;}
.y18{bottom:655.125000px;}
.yd3{bottom:661.965000px;}
.y9b{bottom:672.405000px;}
.y3c{bottom:674.565000px;}
.y17{bottom:675.825000px;}
.yd2{bottom:682.665000px;}
.y55{bottom:691.485000px;}
.yb0{bottom:695.265000px;}
.y16{bottom:696.525000px;}
.y9a{bottom:703.365000px;}
.y3b{bottom:705.705000px;}
.y74{bottom:710.925000px;}
.yaf{bottom:715.965000px;}
.y15{bottom:717.225000px;}
.yd1{bottom:724.065000px;}
.y54{bottom:734.505000px;}
.y3a{bottom:736.665000px;}
.y14{bottom:737.925000px;}
.yd0{bottom:744.765000px;}
.yae{bottom:757.365000px;}
.y13{bottom:758.625000px;}
.y53{bottom:765.465000px;}
.y39{bottom:767.805000px;}
.y93{bottom:767.985000px;}
.yad{bottom:778.065000px;}
.y12{bottom:779.325000px;}
.ycf{bottom:786.165000px;}
.y52{bottom:796.605000px;}
.y38{bottom:798.765000px;}
.y11{bottom:800.025000px;}
.y84{bottom:806.685000px;}
.yce{bottom:806.865000px;}
.yac{bottom:819.465000px;}
.y10{bottom:820.725000px;}
.y51{bottom:827.565000px;}
.y37{bottom:829.905000px;}
.yf{bottom:841.425000px;}
.yab{bottom:846.645000px;}
.ycd{bottom:848.265000px;}
.y50{bottom:858.705000px;}
.y36{bottom:860.865000px;}
.ye{bottom:862.125000px;}
.y6f{bottom:863.565000px;}
.ycc{bottom:868.965000px;}
.yd{bottom:884.130000px;}
.y4f{bottom:889.710000px;}
.y35{bottom:892.050000px;}
.y91{bottom:901.590000px;}
.ycb{bottom:910.410000px;}
.yc{bottom:911.670000px;}
.y4e{bottom:920.850000px;}
.y34{bottom:923.010000px;}
.yca{bottom:931.110000px;}
.yb{bottom:939.390000px;}
.y4d{bottom:951.810000px;}
.y33{bottom:954.150000px;}
.y83{bottom:959.190000px;}
.ya{bottom:966.930000px;}
.yc9{bottom:972.510000px;}
.y4c{bottom:982.950000px;}
.y32{bottom:985.110000px;}
.yc8{bottom:993.210000px;}
.y9{bottom:994.470000px;}
.y4b{bottom:1013.910000px;}
.y31{bottom:1016.250000px;}
.y8{bottom:1022.190000px;}
.yc7{bottom:1034.610000px;}
.y30{bottom:1043.430000px;}
.y4a{bottom:1045.050000px;}
.y7{bottom:1049.730000px;}
.y6e{bottom:1054.050000px;}
.yc6{bottom:1055.310000px;}
.y6{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h8{height:37.980000px;}
.h6{height:54.878906px;}
.h9{height:58.833281px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h5{height:72.988945px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.hb{height:113.760000px;}
.he{height:113.796000px;}
.hf{height:113.940000px;}
.h15{height:132.660000px;}
.h14{height:132.696000px;}
.h11{height:132.840000px;}
.h12{height:151.740000px;}
.h10{height:151.770000px;}
.hd{height:151.920000px;}
.ha{height:170.670000px;}
.h13{height:170.850000px;}
.hc{height:189.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:103.356000px;}
.w3{width:109.800000px;}
.w7{width:143.856000px;}
.w5{width:144.936000px;}
.w6{width:173.880000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.xe{left:13.320000px;}
.x9{left:16.920000px;}
.xf{left:18.900000px;}
.xb{left:24.660000px;}
.xc{left:26.820000px;}
.x11{left:32.445000px;}
.x2{left:106.415987px;}
.x4{left:148.895987px;}
.x5{left:192.269987px;}
.xa{left:217.830000px;}
.x6{left:261.749987px;}
.x8{left:278.714987px;}
.xd{left:321.915000px;}
.x7{left:446.474987px;}
.x1{left:467.744987px;}
.x10{left:642.165000px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:57.263360pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-4.078080pt;}
._a{margin-left:-2.577920pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._8{width:1.962667pt;}
._9{width:3.029333pt;}
._7{width:4.416000pt;}
._19{width:5.760000pt;}
._5{width:7.341227pt;}
._d{width:8.896000pt;}
._12{width:10.385493pt;}
._17{width:11.909973pt;}
._15{width:12.852053pt;}
._14{width:13.866667pt;}
._1a{width:14.846293pt;}
._b{width:17.152000pt;}
._c{width:18.048000pt;}
._18{width:19.392000pt;}
._20{width:20.992000pt;}
._10{width:23.552000pt;}
._11{width:25.088000pt;}
._1b{width:26.432000pt;}
._13{width:27.674027pt;}
._e{width:29.056000pt;}
._f{width:30.208000pt;}
._1f{width:31.168000pt;}
._1c{width:32.128000pt;}
._1d{width:33.216000pt;}
._1e{width:34.368000pt;}
._6{width:40.857600pt;}
._21{width:41.984000pt;}
._22{width:43.328000pt;}
._4{width:83.797547pt;}
._3{width:84.864640pt;}
._2{width:124.956160pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:3.200000pt;}
.y5f{bottom:3.360000pt;}
.y5d{bottom:11.680000pt;}
.y68{bottom:20.000000pt;}
.y5e{bottom:20.160000pt;}
.y7e{bottom:20.186667pt;}
.y73{bottom:20.200000pt;}
.y67{bottom:36.960000pt;}
.y7d{bottom:36.986667pt;}
.y72{bottom:37.000000pt;}
.y78{bottom:37.120000pt;}
.y8f{bottom:37.160000pt;}
.y82{bottom:53.760000pt;}
.y7c{bottom:53.786667pt;}
.y66{bottom:53.800000pt;}
.y6d{bottom:53.920000pt;}
.y8e{bottom:53.960000pt;}
.y6c{bottom:70.720000pt;}
.y7b{bottom:70.746667pt;}
.y65{bottom:70.760000pt;}
.y5{bottom:72.992000pt;}
.y6b{bottom:87.520000pt;}
.y7a{bottom:87.546667pt;}
.y64{bottom:87.560000pt;}
.y77{bottom:87.680000pt;}
.y8d{bottom:87.720000pt;}
.y4{bottom:96.352000pt;}
.y92{bottom:104.320000pt;}
.y63{bottom:104.360000pt;}
.y76{bottom:104.480000pt;}
.y71{bottom:104.520000pt;}
.y3{bottom:113.312000pt;}
.y86{bottom:121.280000pt;}
.y94{bottom:121.306667pt;}
.y62{bottom:121.320000pt;}
.y75{bottom:121.440000pt;}
.y89{bottom:121.466667pt;}
.y8c{bottom:121.480000pt;}
.y2{bottom:130.272000pt;}
.y61{bottom:138.120000pt;}
.y88{bottom:138.266667pt;}
.y8b{bottom:138.280000pt;}
.y6a{bottom:153.306667pt;}
.y70{bottom:155.080000pt;}
.yc5{bottom:157.946667pt;}
.y2f{bottom:159.066667pt;}
.yaa{bottom:165.626667pt;}
.y81{bottom:173.946667pt;}
.y90{bottom:174.586667pt;}
.yc4{bottom:176.346667pt;}
.y2e{bottom:177.466667pt;}
.y99{bottom:181.306667pt;}
.ye3{bottom:183.546667pt;}
.ya9{bottom:193.306667pt;}
.yc3{bottom:194.746667pt;}
.y2d{bottom:195.866667pt;}
.ye2{bottom:201.946667pt;}
.y98{bottom:208.826667pt;}
.yc2{bottom:213.146667pt;}
.y2c{bottom:214.266667pt;}
.ye1{bottom:220.346667pt;}
.y49{bottom:222.906667pt;}
.ya8{bottom:228.186667pt;}
.yc1{bottom:231.546667pt;}
.y2b{bottom:232.666667pt;}
.y97{bottom:236.506667pt;}
.ye0{bottom:238.746667pt;}
.yc0{bottom:249.946667pt;}
.y48{bottom:250.426667pt;}
.y2a{bottom:251.066667pt;}
.y60{bottom:255.226667pt;}
.ydf{bottom:257.146667pt;}
.y96{bottom:260.186667pt;}
.ya7{bottom:266.426667pt;}
.ybf{bottom:268.346667pt;}
.y29{bottom:269.466667pt;}
.yde{bottom:275.546667pt;}
.y95{bottom:275.706667pt;}
.y8a{bottom:276.346667pt;}
.y47{bottom:278.106667pt;}
.ybe{bottom:286.746667pt;}
.y28{bottom:287.866667pt;}
.y80{bottom:292.666667pt;}
.ya6{bottom:293.946667pt;}
.ybd{bottom:305.186667pt;}
.y46{bottom:305.666667pt;}
.y27{bottom:306.306667pt;}
.ydd{bottom:312.386667pt;}
.ya5{bottom:321.666667pt;}
.ybc{bottom:323.586667pt;}
.y26{bottom:324.706667pt;}
.ydc{bottom:330.786667pt;}
.y45{bottom:333.346667pt;}
.ybb{bottom:341.986667pt;}
.y25{bottom:343.106667pt;}
.ya4{bottom:349.186667pt;}
.yba{bottom:360.386667pt;}
.y24{bottom:361.506667pt;}
.ydb{bottom:367.586667pt;}
.y44{bottom:368.226667pt;}
.ya3{bottom:376.866667pt;}
.yb9{bottom:378.786667pt;}
.y23{bottom:379.906667pt;}
.yda{bottom:385.986667pt;}
.yb8{bottom:397.186667pt;}
.y22{bottom:398.306667pt;}
.ya2{bottom:404.386667pt;}
.y43{bottom:406.466667pt;}
.y5c{bottom:407.586667pt;}
.yb7{bottom:415.586667pt;}
.y21{bottom:416.706667pt;}
.yd9{bottom:422.786667pt;}
.y7f{bottom:428.226667pt;}
.y87{bottom:428.866667pt;}
.ya1{bottom:432.066667pt;}
.y42{bottom:433.986667pt;}
.y20{bottom:435.106667pt;}
.yd8{bottom:441.186667pt;}
.y5b{bottom:445.506667pt;}
.yb6{bottom:452.386667pt;}
.y1f{bottom:453.506667pt;}
.ya0{bottom:459.586667pt;}
.y41{bottom:461.666667pt;}
.y5a{bottom:469.346667pt;}
.yb5{bottom:470.786667pt;}
.y1e{bottom:471.906667pt;}
.yd7{bottom:477.986667pt;}
.y9f{bottom:487.266667pt;}
.y40{bottom:489.186667pt;}
.y1d{bottom:490.306667pt;}
.yd6{bottom:496.386667pt;}
.y59{bottom:496.866667pt;}
.yb4{bottom:507.586667pt;}
.y1c{bottom:508.706667pt;}
.y9e{bottom:514.786667pt;}
.y3f{bottom:516.866667pt;}
.y58{bottom:524.546667pt;}
.yb3{bottom:525.986667pt;}
.y1b{bottom:527.106667pt;}
.y79{bottom:530.146667pt;}
.yd5{bottom:533.186667pt;}
.y9d{bottom:542.493333pt;}
.y3e{bottom:544.413333pt;}
.y1a{bottom:545.533333pt;}
.yd4{bottom:551.613333pt;}
.y57{bottom:552.093333pt;}
.yb2{bottom:562.813333pt;}
.y19{bottom:563.933333pt;}
.y9c{bottom:570.013333pt;}
.y3d{bottom:572.093333pt;}
.y56{bottom:579.773333pt;}
.yb1{bottom:581.213333pt;}
.y85{bottom:581.373333pt;}
.y18{bottom:582.333333pt;}
.yd3{bottom:588.413333pt;}
.y9b{bottom:597.693333pt;}
.y3c{bottom:599.613333pt;}
.y17{bottom:600.733333pt;}
.yd2{bottom:606.813333pt;}
.y55{bottom:614.653333pt;}
.yb0{bottom:618.013333pt;}
.y16{bottom:619.133333pt;}
.y9a{bottom:625.213333pt;}
.y3b{bottom:627.293333pt;}
.y74{bottom:631.933333pt;}
.yaf{bottom:636.413333pt;}
.y15{bottom:637.533333pt;}
.yd1{bottom:643.613333pt;}
.y54{bottom:652.893333pt;}
.y3a{bottom:654.813333pt;}
.y14{bottom:655.933333pt;}
.yd0{bottom:662.013333pt;}
.yae{bottom:673.213333pt;}
.y13{bottom:674.333333pt;}
.y53{bottom:680.413333pt;}
.y39{bottom:682.493333pt;}
.y93{bottom:682.653333pt;}
.yad{bottom:691.613333pt;}
.y12{bottom:692.733333pt;}
.ycf{bottom:698.813333pt;}
.y52{bottom:708.093333pt;}
.y38{bottom:710.013333pt;}
.y11{bottom:711.133333pt;}
.y84{bottom:717.053333pt;}
.yce{bottom:717.213333pt;}
.yac{bottom:728.413333pt;}
.y10{bottom:729.533333pt;}
.y51{bottom:735.613333pt;}
.y37{bottom:737.693333pt;}
.yf{bottom:747.933333pt;}
.yab{bottom:752.573333pt;}
.ycd{bottom:754.013333pt;}
.y50{bottom:763.293333pt;}
.y36{bottom:765.213333pt;}
.ye{bottom:766.333333pt;}
.y6f{bottom:767.613333pt;}
.ycc{bottom:772.413333pt;}
.yd{bottom:785.893333pt;}
.y4f{bottom:790.853333pt;}
.y35{bottom:792.933333pt;}
.y91{bottom:801.413333pt;}
.ycb{bottom:809.253333pt;}
.yc{bottom:810.373333pt;}
.y4e{bottom:818.533333pt;}
.y34{bottom:820.453333pt;}
.yca{bottom:827.653333pt;}
.yb{bottom:835.013333pt;}
.y4d{bottom:846.053333pt;}
.y33{bottom:848.133333pt;}
.y83{bottom:852.613333pt;}
.ya{bottom:859.493333pt;}
.yc9{bottom:864.453333pt;}
.y4c{bottom:873.733333pt;}
.y32{bottom:875.653333pt;}
.yc8{bottom:882.853333pt;}
.y9{bottom:883.973333pt;}
.y4b{bottom:901.253333pt;}
.y31{bottom:903.333333pt;}
.y8{bottom:908.613333pt;}
.yc7{bottom:919.653333pt;}
.y30{bottom:927.493333pt;}
.y4a{bottom:928.933333pt;}
.y7{bottom:933.093333pt;}
.y6e{bottom:936.933333pt;}
.yc6{bottom:938.053333pt;}
.y6{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h8{height:33.760000pt;}
.h6{height:48.781250pt;}
.h9{height:52.296250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h5{height:64.879063pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.hb{height:101.120000pt;}
.he{height:101.152000pt;}
.hf{height:101.280000pt;}
.h15{height:117.920000pt;}
.h14{height:117.952000pt;}
.h11{height:118.080000pt;}
.h12{height:134.880000pt;}
.h10{height:134.906667pt;}
.hd{height:135.040000pt;}
.ha{height:151.706667pt;}
.h13{height:151.866667pt;}
.hc{height:168.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:91.872000pt;}
.w3{width:97.600000pt;}
.w7{width:127.872000pt;}
.w5{width:128.832000pt;}
.w6{width:154.560000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.xe{left:11.840000pt;}
.x9{left:15.040000pt;}
.xf{left:16.800000pt;}
.xb{left:21.920000pt;}
.xc{left:23.840000pt;}
.x11{left:28.840000pt;}
.x2{left:94.591988pt;}
.x4{left:132.351988pt;}
.x5{left:170.906655pt;}
.xa{left:193.626667pt;}
.x6{left:232.666655pt;}
.x8{left:247.746655pt;}
.xd{left:286.146667pt;}
.x7{left:396.866655pt;}
.x1{left:415.773322pt;}
.x10{left:570.813333pt;}
.x3{left:699.333322pt;}
}




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