
    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_b822bfd03aa724c04dabe536.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_8ebaf9805990f0c6dae829b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946777;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_f3309dd1b7210bcd3ed49750.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c89fbaa368dc6591684adc9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_46b645684382d432e296839e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5d98a30c78efbae6df76c7e0.woff2')format("woff");}.ff7{font-family:ff7;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;}
.ls1{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.720000px;}
.ls2{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;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-4.752000px;}
._5{margin-left:-3.685920px;}
._6{margin-left:-2.573520px;}
._0{margin-left:-1.481280px;}
._2{width:1.244880px;}
._7{width:2.620320px;}
._18{width:3.643680px;}
._11{width:4.968000px;}
._3{width:6.703200px;}
._1{width:7.756560px;}
._4{width:9.154320px;}
._14{width:10.800000px;}
._15{width:12.564000px;}
._12{width:14.472000px;}
._13{width:15.552000px;}
._16{width:16.632000px;}
._e{width:19.944000px;}
._1f{width:20.952000px;}
._1b{width:22.165680px;}
._10{width:23.688000px;}
._17{width:24.840000px;}
._1e{width:26.424000px;}
._f{width:27.936000px;}
._19{width:28.974240px;}
._1c{width:30.202080px;}
._b{width:33.192000px;}
._c{width:34.272000px;}
._1a{width:48.744000px;}
._8{width:78.044400px;}
._9{width:79.097760px;}
._a{width:80.402640px;}
._21{width:103.392000px;}
._20{width:104.544000px;}
._22{width:106.080000px;}
._23{width:107.424000px;}
._24{width:108.576000px;}
._25{width:362.952000px;}
._26{width:1059.192000px;}
._1d{width:1393.320000px;}
.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;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.ybe{bottom:176.430000px;}
.y31{bottom:180.210000px;}
.y87{bottom:181.290000px;}
.y6e{bottom:187.050000px;}
.y50{bottom:187.950000px;}
.y9c{bottom:189.030000px;}
.y82{bottom:198.030000px;}
.yd6{bottom:199.650000px;}
.y30{bottom:200.910000px;}
.ybd{bottom:207.390000px;}
.y86{bottom:207.930000px;}
.y6d{bottom:218.190000px;}
.ya7{bottom:218.370000px;}
.y4f{bottom:219.090000px;}
.y9b{bottom:219.990000px;}
.yd5{bottom:220.350000px;}
.y2f{bottom:221.610000px;}
.y81{bottom:228.990000px;}
.y85{bottom:234.750000px;}
.ybc{bottom:238.530000px;}
.yd4{bottom:241.050000px;}
.y2e{bottom:242.310000px;}
.y6c{bottom:249.150000px;}
.y4e{bottom:250.050000px;}
.y9a{bottom:251.130000px;}
.y84{bottom:252.390000px;}
.ya6{bottom:255.450000px;}
.y80{bottom:259.950000px;}
.yd3{bottom:261.750000px;}
.y2d{bottom:263.010000px;}
.ybb{bottom:269.490000px;}
.y6b{bottom:280.290000px;}
.y4d{bottom:281.190000px;}
.y99{bottom:282.090000px;}
.yd2{bottom:282.450000px;}
.y2c{bottom:283.710000px;}
.ya5{bottom:286.410000px;}
.y7f{bottom:291.090000px;}
.yba{bottom:300.630000px;}
.yd1{bottom:303.150000px;}
.y2b{bottom:304.410000px;}
.y6a{bottom:311.250000px;}
.y4c{bottom:312.150000px;}
.y98{bottom:313.050000px;}
.ya4{bottom:317.550000px;}
.y7e{bottom:322.050000px;}
.yd0{bottom:323.850000px;}
.y2a{bottom:325.110000px;}
.yb9{bottom:331.590000px;}
.y97{bottom:339.915000px;}
.y69{bottom:342.435000px;}
.y4b{bottom:343.335000px;}
.ycf{bottom:344.595000px;}
.y29{bottom:345.855000px;}
.ya3{bottom:348.555000px;}
.y7d{bottom:353.235000px;}
.yb8{bottom:358.815000px;}
.yce{bottom:365.295000px;}
.y28{bottom:366.555000px;}
.y68{bottom:373.395000px;}
.y4a{bottom:374.295000px;}
.ya2{bottom:375.375000px;}
.y7c{bottom:384.195000px;}
.ycd{bottom:385.995000px;}
.y27{bottom:387.255000px;}
.yb7{bottom:391.395000px;}
.y96{bottom:393.195000px;}
.ya1{bottom:402.015000px;}
.y67{bottom:404.535000px;}
.y49{bottom:405.435000px;}
.ycc{bottom:406.695000px;}
.y26{bottom:407.955000px;}
.y7b{bottom:415.335000px;}
.y95{bottom:416.055000px;}
.yb6{bottom:422.535000px;}
.ycb{bottom:427.395000px;}
.y25{bottom:428.655000px;}
.y66{bottom:435.495000px;}
.y48{bottom:436.395000px;}
.y7a{bottom:446.295000px;}
.yca{bottom:448.095000px;}
.y24{bottom:449.355000px;}
.ya0{bottom:451.335000px;}
.yb5{bottom:453.495000px;}
.y65{bottom:466.455000px;}
.y47{bottom:467.355000px;}
.yc9{bottom:468.795000px;}
.y23{bottom:470.055000px;}
.y79{bottom:477.435000px;}
.yb4{bottom:484.635000px;}
.yc8{bottom:489.495000px;}
.y22{bottom:490.755000px;}
.y64{bottom:497.595000px;}
.y46{bottom:498.495000px;}
.y78{bottom:508.395000px;}
.yc7{bottom:510.195000px;}
.y21{bottom:511.455000px;}
.yb3{bottom:515.595000px;}
.y63{bottom:528.555000px;}
.y45{bottom:529.455000px;}
.yc6{bottom:530.895000px;}
.y20{bottom:532.155000px;}
.y77{bottom:539.535000px;}
.yb2{bottom:546.735000px;}
.y83{bottom:547.815000px;}
.yc5{bottom:551.595000px;}
.y1f{bottom:552.855000px;}
.y62{bottom:559.695000px;}
.y44{bottom:560.595000px;}
.y76{bottom:570.495000px;}
.yc4{bottom:572.295000px;}
.y1e{bottom:573.555000px;}
.y94{bottom:577.515000px;}
.yb1{bottom:577.695000px;}
.y61{bottom:590.655000px;}
.y43{bottom:591.555000px;}
.yc3{bottom:592.995000px;}
.y1d{bottom:594.255000px;}
.y75{bottom:601.635000px;}
.yb0{bottom:608.865000px;}
.yc2{bottom:613.725000px;}
.y93{bottom:614.625000px;}
.y1c{bottom:614.985000px;}
.y60{bottom:621.825000px;}
.y42{bottom:622.725000px;}
.y74{bottom:632.625000px;}
.yc1{bottom:634.425000px;}
.y1b{bottom:635.685000px;}
.yaf{bottom:639.825000px;}
.y92{bottom:645.585000px;}
.y5f{bottom:652.785000px;}
.y41{bottom:653.685000px;}
.yc0{bottom:655.125000px;}
.y1a{bottom:656.385000px;}
.y73{bottom:663.765000px;}
.yae{bottom:670.965000px;}
.y91{bottom:676.725000px;}
.y19{bottom:677.085000px;}
.ybf{bottom:682.305000px;}
.y5e{bottom:683.925000px;}
.y40{bottom:684.825000px;}
.y72{bottom:694.725000px;}
.y18{bottom:697.785000px;}
.yad{bottom:701.925000px;}
.y90{bottom:707.685000px;}
.y5d{bottom:714.885000px;}
.y3f{bottom:715.785000px;}
.y17{bottom:718.485000px;}
.y71{bottom:725.865000px;}
.yac{bottom:733.065000px;}
.y8f{bottom:734.505000px;}
.y16{bottom:739.185000px;}
.y5c{bottom:746.025000px;}
.y3e{bottom:746.925000px;}
.y70{bottom:756.825000px;}
.yab{bottom:759.705000px;}
.y15{bottom:759.885000px;}
.y8e{bottom:761.145000px;}
.y9f{bottom:773.565000px;}
.y5b{bottom:776.985000px;}
.y3d{bottom:777.885000px;}
.y14{bottom:780.585000px;}
.yaa{bottom:786.345000px;}
.y8d{bottom:787.785000px;}
.y6f{bottom:796.065000px;}
.y9e{bottom:800.385000px;}
.y13{bottom:801.105000px;}
.y8c{bottom:805.605000px;}
.y5a{bottom:808.125000px;}
.y3c{bottom:809.025000px;}
.ya9{bottom:813.165000px;}
.y12{bottom:821.805000px;}
.y9d{bottom:822.885000px;}
.ye0{bottom:828.825000px;}
.ya8{bottom:830.625000px;}
.y59{bottom:839.085000px;}
.y3b{bottom:839.985000px;}
.y11{bottom:842.505000px;}
.ydf{bottom:849.525000px;}
.y10{bottom:863.205000px;}
.y58{bottom:870.225000px;}
.y3a{bottom:871.170000px;}
.yf{bottom:883.950000px;}
.yde{bottom:890.970000px;}
.y57{bottom:901.230000px;}
.y39{bottom:902.130000px;}
.ye{bottom:904.650000px;}
.ydd{bottom:911.670000px;}
.yd{bottom:926.790000px;}
.y56{bottom:932.370000px;}
.y38{bottom:933.270000px;}
.ydc{bottom:953.070000px;}
.yc{bottom:954.330000px;}
.y55{bottom:963.330000px;}
.y37{bottom:964.230000px;}
.ydb{bottom:973.770000px;}
.yb{bottom:981.870000px;}
.y54{bottom:994.470000px;}
.y36{bottom:995.370000px;}
.y8b{bottom:998.790000px;}
.ya{bottom:1009.590000px;}
.yda{bottom:1015.170000px;}
.y53{bottom:1025.430000px;}
.y35{bottom:1026.330000px;}
.y8a{bottom:1029.750000px;}
.yd9{bottom:1035.870000px;}
.y9{bottom:1037.130000px;}
.y52{bottom:1056.570000px;}
.y34{bottom:1057.470000px;}
.y89{bottom:1060.890000px;}
.y8{bottom:1064.670000px;}
.yd8{bottom:1077.270000px;}
.y51{bottom:1087.530000px;}
.y33{bottom:1088.430000px;}
.y88{bottom:1091.850000px;}
.y7{bottom:1092.390000px;}
.yd7{bottom:1097.970000px;}
.y32{bottom:1115.790000px;}
.y6{bottom:1118.670000px;}
.y1{bottom:1233.900000px;}
.h4{height:52.628906px;}
.h3{height:59.383125px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:69.996445px;}
.h7{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.475987px;}
.x12{left:140.435987px;}
.x3{left:169.949987px;}
.x9{left:181.469987px;}
.x5{left:194.069987px;}
.xa{left:197.129987px;}
.x10{left:214.409987px;}
.xd{left:241.949987px;}
.x8{left:289.514987px;}
.x14{left:291.314987px;}
.x6{left:308.594987px;}
.x7{left:337.934987px;}
.xc{left:377.354987px;}
.xf{left:467.744987px;}
.x1{left:488.984987px;}
.x11{left:558.284987px;}
.xe{left:578.444987px;}
.x15{left:633.524987px;}
.x13{left:641.804987px;}
.xb{left:656.789987px;}
.x4{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls2{letter-spacing:57.242027pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-4.224000pt;}
._5{margin-left:-3.276373pt;}
._6{margin-left:-2.287573pt;}
._0{margin-left:-1.316693pt;}
._2{width:1.106560pt;}
._7{width:2.329173pt;}
._18{width:3.238827pt;}
._11{width:4.416000pt;}
._3{width:5.958400pt;}
._1{width:6.894720pt;}
._4{width:8.137173pt;}
._14{width:9.600000pt;}
._15{width:11.168000pt;}
._12{width:12.864000pt;}
._13{width:13.824000pt;}
._16{width:14.784000pt;}
._e{width:17.728000pt;}
._1f{width:18.624000pt;}
._1b{width:19.702827pt;}
._10{width:21.056000pt;}
._17{width:22.080000pt;}
._1e{width:23.488000pt;}
._f{width:24.832000pt;}
._19{width:25.754880pt;}
._1c{width:26.846293pt;}
._b{width:29.504000pt;}
._c{width:30.464000pt;}
._1a{width:43.328000pt;}
._8{width:69.372800pt;}
._9{width:70.309120pt;}
._a{width:71.469013pt;}
._21{width:91.904000pt;}
._20{width:92.928000pt;}
._22{width:94.293333pt;}
._23{width:95.488000pt;}
._24{width:96.512000pt;}
._25{width:322.624000pt;}
._26{width:941.504000pt;}
._1d{width:1238.506667pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.ybe{bottom:156.826667pt;}
.y31{bottom:160.186667pt;}
.y87{bottom:161.146667pt;}
.y6e{bottom:166.266667pt;}
.y50{bottom:167.066667pt;}
.y9c{bottom:168.026667pt;}
.y82{bottom:176.026667pt;}
.yd6{bottom:177.466667pt;}
.y30{bottom:178.586667pt;}
.ybd{bottom:184.346667pt;}
.y86{bottom:184.826667pt;}
.y6d{bottom:193.946667pt;}
.ya7{bottom:194.106667pt;}
.y4f{bottom:194.746667pt;}
.y9b{bottom:195.546667pt;}
.yd5{bottom:195.866667pt;}
.y2f{bottom:196.986667pt;}
.y81{bottom:203.546667pt;}
.y85{bottom:208.666667pt;}
.ybc{bottom:212.026667pt;}
.yd4{bottom:214.266667pt;}
.y2e{bottom:215.386667pt;}
.y6c{bottom:221.466667pt;}
.y4e{bottom:222.266667pt;}
.y9a{bottom:223.226667pt;}
.y84{bottom:224.346667pt;}
.ya6{bottom:227.066667pt;}
.y80{bottom:231.066667pt;}
.yd3{bottom:232.666667pt;}
.y2d{bottom:233.786667pt;}
.ybb{bottom:239.546667pt;}
.y6b{bottom:249.146667pt;}
.y4d{bottom:249.946667pt;}
.y99{bottom:250.746667pt;}
.yd2{bottom:251.066667pt;}
.y2c{bottom:252.186667pt;}
.ya5{bottom:254.586667pt;}
.y7f{bottom:258.746667pt;}
.yba{bottom:267.226667pt;}
.yd1{bottom:269.466667pt;}
.y2b{bottom:270.586667pt;}
.y6a{bottom:276.666667pt;}
.y4c{bottom:277.466667pt;}
.y98{bottom:278.266667pt;}
.ya4{bottom:282.266667pt;}
.y7e{bottom:286.266667pt;}
.yd0{bottom:287.866667pt;}
.y2a{bottom:288.986667pt;}
.yb9{bottom:294.746667pt;}
.y97{bottom:302.146667pt;}
.y69{bottom:304.386667pt;}
.y4b{bottom:305.186667pt;}
.ycf{bottom:306.306667pt;}
.y29{bottom:307.426667pt;}
.ya3{bottom:309.826667pt;}
.y7d{bottom:313.986667pt;}
.yb8{bottom:318.946667pt;}
.yce{bottom:324.706667pt;}
.y28{bottom:325.826667pt;}
.y68{bottom:331.906667pt;}
.y4a{bottom:332.706667pt;}
.ya2{bottom:333.666667pt;}
.y7c{bottom:341.506667pt;}
.ycd{bottom:343.106667pt;}
.y27{bottom:344.226667pt;}
.yb7{bottom:347.906667pt;}
.y96{bottom:349.506667pt;}
.ya1{bottom:357.346667pt;}
.y67{bottom:359.586667pt;}
.y49{bottom:360.386667pt;}
.ycc{bottom:361.506667pt;}
.y26{bottom:362.626667pt;}
.y7b{bottom:369.186667pt;}
.y95{bottom:369.826667pt;}
.yb6{bottom:375.586667pt;}
.ycb{bottom:379.906667pt;}
.y25{bottom:381.026667pt;}
.y66{bottom:387.106667pt;}
.y48{bottom:387.906667pt;}
.y7a{bottom:396.706667pt;}
.yca{bottom:398.306667pt;}
.y24{bottom:399.426667pt;}
.ya0{bottom:401.186667pt;}
.yb5{bottom:403.106667pt;}
.y65{bottom:414.626667pt;}
.y47{bottom:415.426667pt;}
.yc9{bottom:416.706667pt;}
.y23{bottom:417.826667pt;}
.y79{bottom:424.386667pt;}
.yb4{bottom:430.786667pt;}
.yc8{bottom:435.106667pt;}
.y22{bottom:436.226667pt;}
.y64{bottom:442.306667pt;}
.y46{bottom:443.106667pt;}
.y78{bottom:451.906667pt;}
.yc7{bottom:453.506667pt;}
.y21{bottom:454.626667pt;}
.yb3{bottom:458.306667pt;}
.y63{bottom:469.826667pt;}
.y45{bottom:470.626667pt;}
.yc6{bottom:471.906667pt;}
.y20{bottom:473.026667pt;}
.y77{bottom:479.586667pt;}
.yb2{bottom:485.986667pt;}
.y83{bottom:486.946667pt;}
.yc5{bottom:490.306667pt;}
.y1f{bottom:491.426667pt;}
.y62{bottom:497.506667pt;}
.y44{bottom:498.306667pt;}
.y76{bottom:507.106667pt;}
.yc4{bottom:508.706667pt;}
.y1e{bottom:509.826667pt;}
.y94{bottom:513.346667pt;}
.yb1{bottom:513.506667pt;}
.y61{bottom:525.026667pt;}
.y43{bottom:525.826667pt;}
.yc3{bottom:527.106667pt;}
.y1d{bottom:528.226667pt;}
.y75{bottom:534.786667pt;}
.yb0{bottom:541.213333pt;}
.yc2{bottom:545.533333pt;}
.y93{bottom:546.333333pt;}
.y1c{bottom:546.653333pt;}
.y60{bottom:552.733333pt;}
.y42{bottom:553.533333pt;}
.y74{bottom:562.333333pt;}
.yc1{bottom:563.933333pt;}
.y1b{bottom:565.053333pt;}
.yaf{bottom:568.733333pt;}
.y92{bottom:573.853333pt;}
.y5f{bottom:580.253333pt;}
.y41{bottom:581.053333pt;}
.yc0{bottom:582.333333pt;}
.y1a{bottom:583.453333pt;}
.y73{bottom:590.013333pt;}
.yae{bottom:596.413333pt;}
.y91{bottom:601.533333pt;}
.y19{bottom:601.853333pt;}
.ybf{bottom:606.493333pt;}
.y5e{bottom:607.933333pt;}
.y40{bottom:608.733333pt;}
.y72{bottom:617.533333pt;}
.y18{bottom:620.253333pt;}
.yad{bottom:623.933333pt;}
.y90{bottom:629.053333pt;}
.y5d{bottom:635.453333pt;}
.y3f{bottom:636.253333pt;}
.y17{bottom:638.653333pt;}
.y71{bottom:645.213333pt;}
.yac{bottom:651.613333pt;}
.y8f{bottom:652.893333pt;}
.y16{bottom:657.053333pt;}
.y5c{bottom:663.133333pt;}
.y3e{bottom:663.933333pt;}
.y70{bottom:672.733333pt;}
.yab{bottom:675.293333pt;}
.y15{bottom:675.453333pt;}
.y8e{bottom:676.573333pt;}
.y9f{bottom:687.613333pt;}
.y5b{bottom:690.653333pt;}
.y3d{bottom:691.453333pt;}
.y14{bottom:693.853333pt;}
.yaa{bottom:698.973333pt;}
.y8d{bottom:700.253333pt;}
.y6f{bottom:707.613333pt;}
.y9e{bottom:711.453333pt;}
.y13{bottom:712.093333pt;}
.y8c{bottom:716.093333pt;}
.y5a{bottom:718.333333pt;}
.y3c{bottom:719.133333pt;}
.ya9{bottom:722.813333pt;}
.y12{bottom:730.493333pt;}
.y9d{bottom:731.453333pt;}
.ye0{bottom:736.733333pt;}
.ya8{bottom:738.333333pt;}
.y59{bottom:745.853333pt;}
.y3b{bottom:746.653333pt;}
.y11{bottom:748.893333pt;}
.ydf{bottom:755.133333pt;}
.y10{bottom:767.293333pt;}
.y58{bottom:773.533333pt;}
.y3a{bottom:774.373333pt;}
.yf{bottom:785.733333pt;}
.yde{bottom:791.973333pt;}
.y57{bottom:801.093333pt;}
.y39{bottom:801.893333pt;}
.ye{bottom:804.133333pt;}
.ydd{bottom:810.373333pt;}
.yd{bottom:823.813333pt;}
.y56{bottom:828.773333pt;}
.y38{bottom:829.573333pt;}
.ydc{bottom:847.173333pt;}
.yc{bottom:848.293333pt;}
.y55{bottom:856.293333pt;}
.y37{bottom:857.093333pt;}
.ydb{bottom:865.573333pt;}
.yb{bottom:872.773333pt;}
.y54{bottom:883.973333pt;}
.y36{bottom:884.773333pt;}
.y8b{bottom:887.813333pt;}
.ya{bottom:897.413333pt;}
.yda{bottom:902.373333pt;}
.y53{bottom:911.493333pt;}
.y35{bottom:912.293333pt;}
.y8a{bottom:915.333333pt;}
.yd9{bottom:920.773333pt;}
.y9{bottom:921.893333pt;}
.y52{bottom:939.173333pt;}
.y34{bottom:939.973333pt;}
.y89{bottom:943.013333pt;}
.y8{bottom:946.373333pt;}
.yd8{bottom:957.573333pt;}
.y51{bottom:966.693333pt;}
.y33{bottom:967.493333pt;}
.y88{bottom:970.533333pt;}
.y7{bottom:971.013333pt;}
.yd7{bottom:975.973333pt;}
.y32{bottom:991.813333pt;}
.y6{bottom:994.373333pt;}
.y1{bottom:1096.800000pt;}
.h4{height:46.781250pt;}
.h3{height:52.785000pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:62.219062pt;}
.h7{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.311988pt;}
.x12{left:124.831988pt;}
.x3{left:151.066655pt;}
.x9{left:161.306655pt;}
.x5{left:172.506655pt;}
.xa{left:175.226655pt;}
.x10{left:190.586655pt;}
.xd{left:215.066655pt;}
.x8{left:257.346655pt;}
.x14{left:258.946655pt;}
.x6{left:274.306655pt;}
.x7{left:300.386655pt;}
.xc{left:335.426655pt;}
.xf{left:415.773322pt;}
.x1{left:434.653322pt;}
.x11{left:496.253322pt;}
.xe{left:514.173322pt;}
.x15{left:563.133322pt;}
.x13{left:570.493322pt;}
.xb{left:583.813322pt;}
.x4{left:718.213322pt;}
}




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