
    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_c7d9522ce1fb6e136ca54d40.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_75d9b28cf783c38fc1162408.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_0809bd58c4fb3ade1296f883.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_d8d456ace27d455860bdb253.woff')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_957157e713011429a29a807a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_3c98e94e031f0ee56045b33e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_8fb386b5e6dba3a4cda2f721.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_30d53367e92b48201cca90f7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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);}
.v2{vertical-align:-30.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.360000px;}
.ls5{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.178800px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.414600px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:18.000000px;}
.lsa{letter-spacing:23.760000px;}
.lsc{letter-spacing:38.160000px;}
.ls9{letter-spacing:42.480000px;}
.ls8{letter-spacing:45.360000px;}
.ls2{letter-spacing:94.469760px;}
.ls1{letter-spacing:129.149760px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.865400px;}
.ws1{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.254600px;}
.ws0{word-spacing:-10.261200px;}
.ws4{word-spacing:0.000000px;}
._3f{margin-left:-24.513120px;}
._2{margin-left:-2.688480px;}
._0{margin-left:-1.258560px;}
._1{width:1.358880px;}
._3{width:2.489760px;}
._c{width:3.500160px;}
._23{width:5.370240px;}
._8{width:6.528480px;}
._9{width:7.654560px;}
._7{width:9.441120px;}
._6{width:10.696800px;}
._22{width:12.298080px;}
._1a{width:13.650240px;}
._2a{width:14.837760px;}
._13{width:17.752320px;}
._27{width:19.308000px;}
._24{width:21.169440px;}
._11{width:22.558560px;}
._57{width:23.564160px;}
._1b{width:24.749280px;}
._1c{width:26.037120px;}
._41{width:27.150240px;}
._1e{width:28.176480px;}
._1d{width:29.381280px;}
._25{width:30.502560px;}
._26{width:32.391360px;}
._34{width:33.451200px;}
._30{width:34.714560px;}
._10{width:36.628800px;}
._f{width:37.955520px;}
._33{width:39.118560px;}
._19{width:40.406400px;}
._18{width:41.532480px;}
._17{width:43.259520px;}
._20{width:44.844480px;}
._3d{width:46.332000px;}
._4f{width:47.560320px;}
._a{width:48.752640px;}
._b{width:50.308320px;}
._51{width:52.062720px;}
._2f{width:53.183520px;}
._2d{width:54.316800px;}
._2e{width:55.362240px;}
._39{width:57.523680px;}
._38{width:58.560960px;}
._58{width:60.734880px;}
._14{width:62.994240px;}
._15{width:64.490400px;}
._4c{width:65.609760px;}
._12{width:66.973440px;}
._d{width:68.855520px;}
._e{width:70.317600px;}
._37{width:73.631520px;}
._36{width:75.086880px;}
._3b{width:76.477920px;}
._3c{width:77.733600px;}
._42{width:79.004640px;}
._47{width:80.349120px;}
._46{width:81.943680px;}
._5{width:85.459200px;}
._4{width:86.840640px;}
._54{width:88.528800px;}
._49{width:89.584320px;}
._48{width:90.853920px;}
._3a{width:92.238240px;}
._1f{width:96.715200px;}
._16{width:106.886880px;}
._53{width:107.904960px;}
._40{width:111.420480px;}
._35{width:113.076480px;}
._4e{width:114.156960px;}
._2b{width:129.305280px;}
._55{width:134.140800px;}
._56{width:135.171360px;}
._44{width:139.898880px;}
._43{width:141.326880px;}
._4b{width:147.752160px;}
._4a{width:149.341920px;}
._28{width:152.923680px;}
._52{width:154.702560px;}
._2c{width:158.450880px;}
._32{width:177.456960px;}
._31{width:178.592640px;}
._45{width:225.618240px;}
._29{width:269.866560px;}
._3e{width:280.923840px;}
._21{width:323.184960px;}
._50{width:339.811200px;}
._4d{width:706.248960px;}
.fc8{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc4{color:rgb(31,78,121);}
.fc3{color:rgb(112,48,160);}
.fc7{color:rgb(23,23,23);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:5.760000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y15{bottom:3.600000px;}
.y46{bottom:3.630000px;}
.y21{bottom:3.960000px;}
.y72{bottom:10.800000px;}
.y4{bottom:10.836000px;}
.y73{bottom:11.160000px;}
.y5{bottom:11.556000px;}
.y71{bottom:11.880000px;}
.y3{bottom:12.276000px;}
.y20{bottom:23.040000px;}
.y1f{bottom:41.760000px;}
.y3a{bottom:42.114000px;}
.y74{bottom:53.280000px;}
.y6{bottom:55.440000px;}
.y2{bottom:57.240000px;}
.y39{bottom:60.834000px;}
.y4e{bottom:60.840000px;}
.y1e{bottom:60.870000px;}
.y1d{bottom:79.950000px;}
.y38{bottom:79.959000px;}
.y4d{bottom:79.965000px;}
.y3b{bottom:97.596000px;}
.y1c{bottom:98.670000px;}
.y4c{bottom:98.685000px;}
.y37{bottom:99.039000px;}
.yae{bottom:100.116000px;}
.y1b{bottom:117.750000px;}
.y4b{bottom:117.765000px;}
.y36{bottom:118.119000px;}
.yad{bottom:118.836000px;}
.y30{bottom:119.556000px;}
.y6e{bottom:120.996000px;}
.y1a{bottom:136.830000px;}
.y35{bottom:136.839000px;}
.y4a{bottom:136.845000px;}
.yac{bottom:137.916000px;}
.y6d{bottom:139.716000px;}
.y19{bottom:155.550000px;}
.y34{bottom:155.919000px;}
.y49{bottom:155.925000px;}
.ya9{bottom:156.990000px;}
.y6c{bottom:158.790000px;}
.y48{bottom:174.645000px;}
.y18{bottom:174.675000px;}
.y33{bottom:174.999000px;}
.ya8{bottom:175.710000px;}
.y6b{bottom:177.870000px;}
.y32{bottom:193.719000px;}
.y17{bottom:193.755000px;}
.ya7{bottom:194.835000px;}
.y6a{bottom:196.995000px;}
.y31{bottom:212.829000px;}
.ya6{bottom:213.915000px;}
.y69{bottom:215.715000px;}
.ya5{bottom:232.635000px;}
.yab{bottom:232.995000px;}
.y68{bottom:234.795000px;}
.ya4{bottom:251.355000px;}
.yaa{bottom:251.715000px;}
.y67{bottom:253.875000px;}
.ya3{bottom:270.795000px;}
.y66{bottom:272.595000px;}
.ya2{bottom:289.875000px;}
.y65{bottom:291.675000px;}
.ya1{bottom:308.595000px;}
.y64{bottom:310.755000px;}
.ya0{bottom:327.705000px;}
.y63{bottom:329.505000px;}
.y9f{bottom:346.785000px;}
.y2f{bottom:348.225000px;}
.y62{bottom:348.585000px;}
.y9e{bottom:365.505000px;}
.y61{bottom:367.665000px;}
.y2e{bottom:371.625000px;}
.y9d{bottom:384.585000px;}
.y60{bottom:386.745000px;}
.y2d{bottom:390.705000px;}
.y9c{bottom:403.665000px;}
.y5f{bottom:405.465000px;}
.y2c{bottom:409.785000px;}
.y9b{bottom:422.745000px;}
.y5e{bottom:424.545000px;}
.y2b{bottom:428.865000px;}
.y9a{bottom:441.465000px;}
.y5d{bottom:443.625000px;}
.y2a{bottom:447.630000px;}
.y99{bottom:460.590000px;}
.y5c{bottom:462.390000px;}
.y29{bottom:466.710000px;}
.y98{bottom:479.670000px;}
.y5b{bottom:481.470000px;}
.y28{bottom:485.430000px;}
.y97{bottom:498.390000px;}
.y5a{bottom:500.550000px;}
.y27{bottom:504.510000px;}
.y96{bottom:517.470000px;}
.y59{bottom:519.630000px;}
.y26{bottom:523.230000px;}
.y95{bottom:536.550000px;}
.y58{bottom:538.350000px;}
.y25{bottom:546.270000px;}
.y94{bottom:555.630000px;}
.y57{bottom:557.430000px;}
.y93{bottom:574.380000px;}
.y24{bottom:575.820000px;}
.y56{bottom:576.540000px;}
.y92{bottom:593.460000px;}
.y55{bottom:595.260000px;}
.y23{bottom:605.700000px;}
.y91{bottom:612.540000px;}
.y54{bottom:614.340000px;}
.y90{bottom:631.260000px;}
.y22{bottom:633.420000px;}
.y8f{bottom:650.340000px;}
.y53{bottom:652.140000px;}
.y16{bottom:655.740000px;}
.y8e{bottom:669.420000px;}
.y52{bottom:671.220000px;}
.y8d{bottom:688.140000px;}
.y51{bottom:690.300000px;}
.y8c{bottom:707.250000px;}
.y50{bottom:709.050000px;}
.y6f{bottom:709.410000px;}
.y8b{bottom:726.330000px;}
.y4f{bottom:741.090000px;}
.y8a{bottom:745.410000px;}
.y47{bottom:760.530000px;}
.y89{bottom:764.130000px;}
.y88{bottom:783.210000px;}
.y87{bottom:802.290000px;}
.y86{bottom:821.010000px;}
.y85{bottom:840.135000px;}
.y84{bottom:859.215000px;}
.y14{bottom:865.335000px;}
.y83{bottom:877.935000px;}
.y13{bottom:888.735000px;}
.y82{bottom:897.015000px;}
.y12{bottom:907.455000px;}
.y81{bottom:916.095000px;}
.y11{bottom:926.895000px;}
.y80{bottom:935.175000px;}
.y10{bottom:945.975000px;}
.y45{bottom:951.015000px;}
.y7f{bottom:953.925000px;}
.yf{bottom:964.725000px;}
.y7e{bottom:973.005000px;}
.y44{bottom:974.805000px;}
.ye{bottom:983.445000px;}
.y7d{bottom:992.085000px;}
.y43{bottom:993.885000px;}
.yd{bottom:1002.525000px;}
.y7c{bottom:1010.805000px;}
.y42{bottom:1012.605000px;}
.yc{bottom:1023.045000px;}
.y7b{bottom:1029.885000px;}
.y41{bottom:1031.685000px;}
.y7a{bottom:1048.965000px;}
.yb{bottom:1050.765000px;}
.y79{bottom:1068.045000px;}
.y40{bottom:1069.125000px;}
.ya{bottom:1078.530000px;}
.y78{bottom:1086.810000px;}
.y3f{bottom:1088.250000px;}
.y9{bottom:1105.890000px;}
.y3e{bottom:1107.330000px;}
.y77{bottom:1124.970000px;}
.y3d{bottom:1127.850000px;}
.y8{bottom:1137.570000px;}
.y76{bottom:1143.690000px;}
.y3c{bottom:1155.570000px;}
.y75{bottom:1162.770000px;}
.y7{bottom:1164.930000px;}
.y70{bottom:1194.090000px;}
.y1{bottom:1200.570000px;}
.h7{height:5.653125px;}
.hd{height:18.720000px;}
.h10{height:19.080000px;}
.h12{height:19.116000px;}
.h3{height:27.036000px;}
.h6{height:50.229844px;}
.h8{height:55.147500px;}
.hf{height:58.380469px;}
.hc{height:64.978594px;}
.h4{height:65.010937px;}
.hb{height:66.757500px;}
.ha{height:68.073047px;}
.h5{height:70.664062px;}
.h15{height:72.326250px;}
.h2{height:72.446250px;}
.h14{height:84.172500px;}
.h9{height:97.233750px;}
.h13{height:189.750000px;}
.he{height:208.875000px;}
.h11{height:227.955000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.756000px;}
.w7{width:224.715000px;}
.w3{width:314.385000px;}
.w5{width:314.430000px;}
.w6{width:476.100000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x5{left:7.920000px;}
.xb{left:42.480000px;}
.xa{left:61.200000px;}
.x2{left:77.076000px;}
.x7{left:84.995987px;}
.x12{left:95.795987px;}
.xd{left:117.035987px;}
.xc{left:138.275987px;}
.x11{left:162.074987px;}
.x1{left:238.784987px;}
.x10{left:260.384987px;}
.x3{left:306.834000px;}
.x4{left:392.190000px;}
.xf{left:457.379987px;}
.xe{left:489.419987px;}
.x6{left:502.020000px;}
.x9{left:553.170000px;}
.x8{left:798.404987px;}
@media print{
.v2{vertical-align:-26.986667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.986667pt;}
.ls5{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.158933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.368533pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:16.000000pt;}
.lsa{letter-spacing:21.120000pt;}
.lsc{letter-spacing:33.920000pt;}
.ls9{letter-spacing:37.760000pt;}
.ls8{letter-spacing:40.320000pt;}
.ls2{letter-spacing:83.973120pt;}
.ls1{letter-spacing:114.799787pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.991467pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.448533pt;}
.ws0{word-spacing:-9.121067pt;}
.ws4{word-spacing:0.000000pt;}
._3f{margin-left:-21.789440pt;}
._2{margin-left:-2.389760pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.207893pt;}
._3{width:2.213120pt;}
._c{width:3.111253pt;}
._23{width:4.773547pt;}
._8{width:5.803093pt;}
._9{width:6.804053pt;}
._7{width:8.392107pt;}
._6{width:9.508267pt;}
._22{width:10.931627pt;}
._1a{width:12.133547pt;}
._2a{width:13.189120pt;}
._13{width:15.779840pt;}
._27{width:17.162667pt;}
._24{width:18.817280pt;}
._11{width:20.052053pt;}
._57{width:20.945920pt;}
._1b{width:21.999360pt;}
._1c{width:23.144107pt;}
._41{width:24.133547pt;}
._1e{width:25.045760pt;}
._1d{width:26.116693pt;}
._25{width:27.113387pt;}
._26{width:28.792320pt;}
._34{width:29.734400pt;}
._30{width:30.857387pt;}
._10{width:32.558933pt;}
._f{width:33.738240pt;}
._33{width:34.772053pt;}
._19{width:35.916800pt;}
._18{width:36.917760pt;}
._17{width:38.452907pt;}
._20{width:39.861760pt;}
._3d{width:41.184000pt;}
._4f{width:42.275840pt;}
._a{width:43.335680pt;}
._b{width:44.718507pt;}
._51{width:46.277973pt;}
._2f{width:47.274240pt;}
._2d{width:48.281600pt;}
._2e{width:49.210880pt;}
._39{width:51.132160pt;}
._38{width:52.054187pt;}
._58{width:53.986560pt;}
._14{width:55.994880pt;}
._15{width:57.324800pt;}
._4c{width:58.319787pt;}
._12{width:59.531947pt;}
._d{width:61.204907pt;}
._e{width:62.504533pt;}
._37{width:65.450240pt;}
._36{width:66.743893pt;}
._3b{width:67.980373pt;}
._3c{width:69.096533pt;}
._42{width:70.226347pt;}
._47{width:71.421440pt;}
._46{width:72.838827pt;}
._5{width:75.963733pt;}
._4{width:77.191680pt;}
._54{width:78.692267pt;}
._49{width:79.630507pt;}
._48{width:80.759040pt;}
._3a{width:81.989547pt;}
._1f{width:85.969067pt;}
._16{width:95.010560pt;}
._53{width:95.915520pt;}
._40{width:99.040427pt;}
._35{width:100.512427pt;}
._4e{width:101.472853pt;}
._2b{width:114.938027pt;}
._55{width:119.236267pt;}
._56{width:120.152320pt;}
._44{width:124.354560pt;}
._43{width:125.623893pt;}
._4b{width:131.335253pt;}
._4a{width:132.748373pt;}
._28{width:135.932160pt;}
._52{width:137.513387pt;}
._2c{width:140.845227pt;}
._32{width:157.739520pt;}
._31{width:158.749013pt;}
._45{width:200.549547pt;}
._29{width:239.881387pt;}
._3e{width:249.710080pt;}
._21{width:287.275520pt;}
._50{width:302.054400pt;}
._4d{width:627.776853pt;}
.fs4{font-size:5.120000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:3.200000pt;}
.y46{bottom:3.226667pt;}
.y21{bottom:3.520000pt;}
.y72{bottom:9.600000pt;}
.y4{bottom:9.632000pt;}
.y73{bottom:9.920000pt;}
.y5{bottom:10.272000pt;}
.y71{bottom:10.560000pt;}
.y3{bottom:10.912000pt;}
.y20{bottom:20.480000pt;}
.y1f{bottom:37.120000pt;}
.y3a{bottom:37.434667pt;}
.y74{bottom:47.360000pt;}
.y6{bottom:49.280000pt;}
.y2{bottom:50.880000pt;}
.y39{bottom:54.074667pt;}
.y4e{bottom:54.080000pt;}
.y1e{bottom:54.106667pt;}
.y1d{bottom:71.066667pt;}
.y38{bottom:71.074667pt;}
.y4d{bottom:71.080000pt;}
.y3b{bottom:86.752000pt;}
.y1c{bottom:87.706667pt;}
.y4c{bottom:87.720000pt;}
.y37{bottom:88.034667pt;}
.yae{bottom:88.992000pt;}
.y1b{bottom:104.666667pt;}
.y4b{bottom:104.680000pt;}
.y36{bottom:104.994667pt;}
.yad{bottom:105.632000pt;}
.y30{bottom:106.272000pt;}
.y6e{bottom:107.552000pt;}
.y1a{bottom:121.626667pt;}
.y35{bottom:121.634667pt;}
.y4a{bottom:121.640000pt;}
.yac{bottom:122.592000pt;}
.y6d{bottom:124.192000pt;}
.y19{bottom:138.266667pt;}
.y34{bottom:138.594667pt;}
.y49{bottom:138.600000pt;}
.ya9{bottom:139.546667pt;}
.y6c{bottom:141.146667pt;}
.y48{bottom:155.240000pt;}
.y18{bottom:155.266667pt;}
.y33{bottom:155.554667pt;}
.ya8{bottom:156.186667pt;}
.y6b{bottom:158.106667pt;}
.y32{bottom:172.194667pt;}
.y17{bottom:172.226667pt;}
.ya7{bottom:173.186667pt;}
.y6a{bottom:175.106667pt;}
.y31{bottom:189.181333pt;}
.ya6{bottom:190.146667pt;}
.y69{bottom:191.746667pt;}
.ya5{bottom:206.786667pt;}
.yab{bottom:207.106667pt;}
.y68{bottom:208.706667pt;}
.ya4{bottom:223.426667pt;}
.yaa{bottom:223.746667pt;}
.y67{bottom:225.666667pt;}
.ya3{bottom:240.706667pt;}
.y66{bottom:242.306667pt;}
.ya2{bottom:257.666667pt;}
.y65{bottom:259.266667pt;}
.ya1{bottom:274.306667pt;}
.y64{bottom:276.226667pt;}
.ya0{bottom:291.293333pt;}
.y63{bottom:292.893333pt;}
.y9f{bottom:308.253333pt;}
.y2f{bottom:309.533333pt;}
.y62{bottom:309.853333pt;}
.y9e{bottom:324.893333pt;}
.y61{bottom:326.813333pt;}
.y2e{bottom:330.333333pt;}
.y9d{bottom:341.853333pt;}
.y60{bottom:343.773333pt;}
.y2d{bottom:347.293333pt;}
.y9c{bottom:358.813333pt;}
.y5f{bottom:360.413333pt;}
.y2c{bottom:364.253333pt;}
.y9b{bottom:375.773333pt;}
.y5e{bottom:377.373333pt;}
.y2b{bottom:381.213333pt;}
.y9a{bottom:392.413333pt;}
.y5d{bottom:394.333333pt;}
.y2a{bottom:397.893333pt;}
.y99{bottom:409.413333pt;}
.y5c{bottom:411.013333pt;}
.y29{bottom:414.853333pt;}
.y98{bottom:426.373333pt;}
.y5b{bottom:427.973333pt;}
.y28{bottom:431.493333pt;}
.y97{bottom:443.013333pt;}
.y5a{bottom:444.933333pt;}
.y27{bottom:448.453333pt;}
.y96{bottom:459.973333pt;}
.y59{bottom:461.893333pt;}
.y26{bottom:465.093333pt;}
.y95{bottom:476.933333pt;}
.y58{bottom:478.533333pt;}
.y25{bottom:485.573333pt;}
.y94{bottom:493.893333pt;}
.y57{bottom:495.493333pt;}
.y93{bottom:510.560000pt;}
.y24{bottom:511.840000pt;}
.y56{bottom:512.480000pt;}
.y92{bottom:527.520000pt;}
.y55{bottom:529.120000pt;}
.y23{bottom:538.400000pt;}
.y91{bottom:544.480000pt;}
.y54{bottom:546.080000pt;}
.y90{bottom:561.120000pt;}
.y22{bottom:563.040000pt;}
.y8f{bottom:578.080000pt;}
.y53{bottom:579.680000pt;}
.y16{bottom:582.880000pt;}
.y8e{bottom:595.040000pt;}
.y52{bottom:596.640000pt;}
.y8d{bottom:611.680000pt;}
.y51{bottom:613.600000pt;}
.y8c{bottom:628.666667pt;}
.y50{bottom:630.266667pt;}
.y6f{bottom:630.586667pt;}
.y8b{bottom:645.626667pt;}
.y4f{bottom:658.746667pt;}
.y8a{bottom:662.586667pt;}
.y47{bottom:676.026667pt;}
.y89{bottom:679.226667pt;}
.y88{bottom:696.186667pt;}
.y87{bottom:713.146667pt;}
.y86{bottom:729.786667pt;}
.y85{bottom:746.786667pt;}
.y84{bottom:763.746667pt;}
.y14{bottom:769.186667pt;}
.y83{bottom:780.386667pt;}
.y13{bottom:789.986667pt;}
.y82{bottom:797.346667pt;}
.y12{bottom:806.626667pt;}
.y81{bottom:814.306667pt;}
.y11{bottom:823.906667pt;}
.y80{bottom:831.266667pt;}
.y10{bottom:840.866667pt;}
.y45{bottom:845.346667pt;}
.y7f{bottom:847.933333pt;}
.yf{bottom:857.533333pt;}
.y7e{bottom:864.893333pt;}
.y44{bottom:866.493333pt;}
.ye{bottom:874.173333pt;}
.y7d{bottom:881.853333pt;}
.y43{bottom:883.453333pt;}
.yd{bottom:891.133333pt;}
.y7c{bottom:898.493333pt;}
.y42{bottom:900.093333pt;}
.yc{bottom:909.373333pt;}
.y7b{bottom:915.453333pt;}
.y41{bottom:917.053333pt;}
.y7a{bottom:932.413333pt;}
.yb{bottom:934.013333pt;}
.y79{bottom:949.373333pt;}
.y40{bottom:950.333333pt;}
.ya{bottom:958.693333pt;}
.y78{bottom:966.053333pt;}
.y3f{bottom:967.333333pt;}
.y9{bottom:983.013333pt;}
.y3e{bottom:984.293333pt;}
.y77{bottom:999.973333pt;}
.y3d{bottom:1002.533333pt;}
.y8{bottom:1011.173333pt;}
.y76{bottom:1016.613333pt;}
.y3c{bottom:1027.173333pt;}
.y75{bottom:1033.573333pt;}
.y7{bottom:1035.493333pt;}
.y70{bottom:1061.413333pt;}
.y1{bottom:1067.173333pt;}
.h7{height:5.025000pt;}
.hd{height:16.640000pt;}
.h10{height:16.960000pt;}
.h12{height:16.992000pt;}
.h3{height:24.032000pt;}
.h6{height:44.648750pt;}
.h8{height:49.020000pt;}
.hf{height:51.893750pt;}
.hc{height:57.758750pt;}
.h4{height:57.787500pt;}
.hb{height:59.340000pt;}
.ha{height:60.509375pt;}
.h5{height:62.812500pt;}
.h15{height:64.290000pt;}
.h2{height:64.396667pt;}
.h14{height:74.820000pt;}
.h9{height:86.430000pt;}
.h13{height:168.666667pt;}
.he{height:185.666667pt;}
.h11{height:202.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.672000pt;}
.w7{width:199.746667pt;}
.w3{width:279.453333pt;}
.w5{width:279.493333pt;}
.w6{width:423.200000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x5{left:7.040000pt;}
.xb{left:37.760000pt;}
.xa{left:54.400000pt;}
.x2{left:68.512000pt;}
.x7{left:75.551988pt;}
.x12{left:85.151988pt;}
.xd{left:104.031988pt;}
.xc{left:122.911988pt;}
.x11{left:144.066655pt;}
.x1{left:212.253322pt;}
.x10{left:231.453322pt;}
.x3{left:272.741333pt;}
.x4{left:348.613333pt;}
.xf{left:406.559988pt;}
.xe{left:435.039988pt;}
.x6{left:446.240000pt;}
.x9{left:491.706667pt;}
.x8{left:709.693322pt;}
}




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