
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_7b5c4227dd37a83449814eb0.woff2')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_4fb9bcc84be3660a4c51ce9b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.078613;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_bd70ecfba43fbff1e1d3aba9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8d2c51d6b05301088949b7e2.woff2')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_7531a8c6635bdd9a43a0055d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9dc9fa528d958c81c7d95aac.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8c113265da068a011999af10.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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:ff9;src:url('chunks/assets/font_db18a9ae1df002edc2daa206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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:ffa;src:url('chunks/assets/font_577e7c7afcbf3ceaf4a9ac05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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:ffb;src:url('chunks/assets/font_8754f4bfb09109b59128bb1a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.181440px;}
.ls7{letter-spacing:0.435600px;}
.ls10{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.720000px;}
.ls3{letter-spacing:19.260000px;}
.ls2{letter-spacing:24.480000px;}
.lsc{letter-spacing:33.984000px;}
.ls0{letter-spacing:38.880000px;}
.ls4{letter-spacing:43.020000px;}
.ls1{letter-spacing:57.060000px;}
.lsa{letter-spacing:112.836000px;}
.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;}
}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.504000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._33{margin-left:-2.106000px;}
._0{margin-left:-1.054080px;}
._2{width:1.140000px;}
._4{width:2.484000px;}
._38{width:3.487680px;}
._b{width:4.500000px;}
._31{width:5.526720px;}
._c{width:6.552000px;}
._2a{width:8.171280px;}
._2b{width:9.182160px;}
._36{width:10.248720px;}
._a{width:11.280000px;}
._6{width:12.888000px;}
._30{width:14.027040px;}
._40{width:15.074880px;}
._39{width:16.129200px;}
._1c{width:17.184960px;}
._17{width:18.239040px;}
._5{width:19.596000px;}
._46{width:21.075600px;}
._32{width:22.518480px;}
._1d{width:24.513840px;}
._20{width:26.146080px;}
._10{width:27.336960px;}
._1e{width:28.473120px;}
._1f{width:30.201120px;}
._11{width:31.421520px;}
._d{width:32.432400px;}
._e{width:33.445440px;}
._9{width:35.064000px;}
._2c{width:36.547920px;}
._1{width:38.208000px;}
._3{width:39.504000px;}
._18{width:41.614560px;}
._19{width:43.070640px;}
._16{width:44.943120px;}
._1b{width:46.962720px;}
._1a{width:48.312720px;}
._22{width:50.087520px;}
._21{width:51.382800px;}
._26{width:53.198640px;}
._28{width:54.822240px;}
._7{width:56.304000px;}
._8{width:57.648000px;}
._23{width:59.263920px;}
._3a{width:61.032960px;}
._13{width:64.743840px;}
._12{width:65.875680px;}
._15{width:66.970800px;}
._24{width:68.185920px;}
._25{width:69.204240px;}
._3c{width:74.636640px;}
._3b{width:75.647520px;}
._3d{width:77.489280px;}
._37{width:79.354080px;}
._14{width:81.207360px;}
._2d{width:82.723680px;}
._35{width:89.748240px;}
._34{width:91.400400px;}
._41{width:93.000960px;}
._29{width:95.359680px;}
._27{width:96.413760px;}
._3e{width:99.607440px;}
._f{width:110.621520px;}
._2e{width:113.598720px;}
._2f{width:114.816960px;}
._3f{width:117.683280px;}
._42{width:125.729280px;}
._43{width:127.410240px;}
._44{width:158.245920px;}
._45{width:159.634800px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:35.856000px;}
.y2{bottom:55.476000px;}
.y6a{bottom:94.536000px;}
.y54{bottom:94.716000px;}
.y2d{bottom:114.156000px;}
.y4f{bottom:122.256000px;}
.y53{bottom:122.436000px;}
.y2c{bottom:141.876000px;}
.y4e{bottom:149.976000px;}
.y52{bottom:150.150000px;}
.y2b{bottom:169.590000px;}
.y4d{bottom:177.870000px;}
.y51{bottom:178.050000px;}
.y2a{bottom:197.490000px;}
.y4c{bottom:205.590000px;}
.y50{bottom:205.770000px;}
.y29{bottom:225.210000px;}
.y4b{bottom:233.310000px;}
.y28{bottom:253.110000px;}
.y4a{bottom:261.210000px;}
.y27{bottom:280.830000px;}
.y49{bottom:288.975000px;}
.y26{bottom:308.775000px;}
.y48{bottom:316.695000px;}
.y25{bottom:336.495000px;}
.y47{bottom:344.415000px;}
.y24{bottom:364.215000px;}
.y46{bottom:372.315000px;}
.y23{bottom:392.115000px;}
.y45{bottom:400.035000px;}
.y22{bottom:419.835000px;}
.y44{bottom:427.755000px;}
.y21{bottom:447.555000px;}
.y43{bottom:455.655000px;}
.y20{bottom:475.275000px;}
.y42{bottom:483.375000px;}
.y1f{bottom:503.175000px;}
.y83{bottom:504.975000px;}
.y41{bottom:511.095000px;}
.y69{bottom:511.275000px;}
.y1e{bottom:530.895000px;}
.y82{bottom:537.375000px;}
.y40{bottom:538.815000px;}
.y68{bottom:538.995000px;}
.y1d{bottom:554.295000px;}
.y81{bottom:558.435000px;}
.y3f{bottom:566.745000px;}
.y67{bottom:566.925000px;}
.y1c{bottom:575.025000px;}
.y80{bottom:579.165000px;}
.y3e{bottom:594.465000px;}
.y66{bottom:594.645000px;}
.y1b{bottom:595.725000px;}
.y7f{bottom:599.865000px;}
.y1a{bottom:616.425000px;}
.y7e{bottom:620.565000px;}
.y3d{bottom:622.185000px;}
.y65{bottom:622.365000px;}
.y19{bottom:637.125000px;}
.y7d{bottom:641.265000px;}
.y3c{bottom:649.905000px;}
.y64{bottom:650.085000px;}
.y18{bottom:657.825000px;}
.y7c{bottom:661.965000px;}
.y3b{bottom:677.805000px;}
.y63{bottom:677.985000px;}
.y17{bottom:678.525000px;}
.y7b{bottom:682.665000px;}
.y7a{bottom:703.365000px;}
.y3a{bottom:705.525000px;}
.y62{bottom:705.705000px;}
.y16{bottom:719.925000px;}
.y79{bottom:724.065000px;}
.y39{bottom:733.245000px;}
.y61{bottom:733.425000px;}
.y15{bottom:740.625000px;}
.y78{bottom:744.765000px;}
.y38{bottom:761.145000px;}
.y14{bottom:761.325000px;}
.y77{bottom:765.465000px;}
.y13{bottom:782.025000px;}
.y76{bottom:786.165000px;}
.y37{bottom:788.865000px;}
.y60{bottom:789.045000px;}
.y12{bottom:802.725000px;}
.y75{bottom:806.865000px;}
.y36{bottom:816.585000px;}
.y5f{bottom:816.765000px;}
.y11{bottom:823.425000px;}
.y74{bottom:827.565000px;}
.y10{bottom:844.125000px;}
.y35{bottom:844.305000px;}
.y5e{bottom:844.485000px;}
.y73{bottom:848.310000px;}
.yf{bottom:864.870000px;}
.y72{bottom:869.010000px;}
.y34{bottom:872.250000px;}
.y5d{bottom:872.430000px;}
.ye{bottom:885.570000px;}
.y71{bottom:889.710000px;}
.y33{bottom:899.970000px;}
.y5c{bottom:900.150000px;}
.yd{bottom:906.270000px;}
.y70{bottom:910.410000px;}
.yc{bottom:926.970000px;}
.y32{bottom:927.690000px;}
.y5b{bottom:927.870000px;}
.y6f{bottom:931.110000px;}
.yb{bottom:948.570000px;}
.y6e{bottom:951.810000px;}
.y31{bottom:955.590000px;}
.y5a{bottom:955.770000px;}
.ya{bottom:969.630000px;}
.y6d{bottom:972.510000px;}
.y30{bottom:983.310000px;}
.y59{bottom:983.490000px;}
.y9{bottom:990.330000px;}
.y6c{bottom:993.210000px;}
.y8{bottom:1011.030000px;}
.y58{bottom:1011.210000px;}
.y6b{bottom:1013.910000px;}
.y7{bottom:1031.730000px;}
.y2f{bottom:1038.750000px;}
.y57{bottom:1038.930000px;}
.y6{bottom:1051.710000px;}
.y2e{bottom:1066.650000px;}
.y56{bottom:1066.830000px;}
.y5{bottom:1070.250000px;}
.y4{bottom:1094.370000px;}
.y55{bottom:1094.550000px;}
.y1{bottom:1194.120000px;}
.hd{height:50.484375px;}
.h8{height:52.628906px;}
.h5{height:58.651172px;}
.h9{height:59.066719px;}
.h2{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.he{height:71.613281px;}
.h3{height:72.562500px;}
.hc{height:74.004654px;}
.hb{height:82.635820px;}
.ha{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:42.479987px;}
.xb{left:84.959987px;}
.xe{left:90.035987px;}
.x4{left:96.875987px;}
.xf{left:117.035987px;}
.xa{left:127.475987px;}
.x5{left:136.475987px;}
.xc{left:138.095987px;}
.x7{left:201.989987px;}
.xd{left:287.354987px;}
.x8{left:297.974987px;}
.x6{left:319.394987px;}
.x2{left:369.254987px;}
.x9{left:443.774987px;}
.x3{left:446.474987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.161280pt;}
.ls7{letter-spacing:0.387200pt;}
.ls10{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls3{letter-spacing:17.120000pt;}
.ls2{letter-spacing:21.760000pt;}
.lsc{letter-spacing:30.208000pt;}
.ls0{letter-spacing:34.560000pt;}
.ls4{letter-spacing:38.240000pt;}
.ls1{letter-spacing:50.720000pt;}
.lsa{letter-spacing:100.298667pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._33{margin-left:-1.872000pt;}
._0{margin-left:-0.936960pt;}
._2{width:1.013333pt;}
._4{width:2.208000pt;}
._38{width:3.100160pt;}
._b{width:4.000000pt;}
._31{width:4.912640pt;}
._c{width:5.824000pt;}
._2a{width:7.263360pt;}
._2b{width:8.161920pt;}
._36{width:9.109973pt;}
._a{width:10.026667pt;}
._6{width:11.456000pt;}
._30{width:12.468480pt;}
._40{width:13.399893pt;}
._39{width:14.337067pt;}
._1c{width:15.275520pt;}
._17{width:16.212480pt;}
._5{width:17.418667pt;}
._46{width:18.733867pt;}
._32{width:20.016427pt;}
._1d{width:21.790080pt;}
._20{width:23.240960pt;}
._10{width:24.299520pt;}
._1e{width:25.309440pt;}
._1f{width:26.845440pt;}
._11{width:27.930240pt;}
._d{width:28.828800pt;}
._e{width:29.729280pt;}
._9{width:31.168000pt;}
._2c{width:32.487040pt;}
._1{width:33.962667pt;}
._3{width:35.114667pt;}
._18{width:36.990720pt;}
._19{width:38.285013pt;}
._16{width:39.949440pt;}
._1b{width:41.744640pt;}
._1a{width:42.944640pt;}
._22{width:44.522240pt;}
._21{width:45.673600pt;}
._26{width:47.287680pt;}
._28{width:48.730880pt;}
._7{width:50.048000pt;}
._8{width:51.242667pt;}
._23{width:52.679040pt;}
._3a{width:54.251520pt;}
._13{width:57.550080pt;}
._12{width:58.556160pt;}
._15{width:59.529600pt;}
._24{width:60.609707pt;}
._25{width:61.514880pt;}
._3c{width:66.343680pt;}
._3b{width:67.242240pt;}
._3d{width:68.879360pt;}
._37{width:70.536960pt;}
._14{width:72.184320pt;}
._2d{width:73.532160pt;}
._35{width:79.776213pt;}
._34{width:81.244800pt;}
._41{width:82.667520pt;}
._29{width:84.764160pt;}
._27{width:85.701120pt;}
._3e{width:88.539947pt;}
._f{width:98.330240pt;}
._2e{width:100.976640pt;}
._2f{width:102.059520pt;}
._3f{width:104.607360pt;}
._42{width:111.759360pt;}
._43{width:113.253547pt;}
._44{width:140.663040pt;}
._45{width:141.897600pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:31.872000pt;}
.y2{bottom:49.312000pt;}
.y6a{bottom:84.032000pt;}
.y54{bottom:84.192000pt;}
.y2d{bottom:101.472000pt;}
.y4f{bottom:108.672000pt;}
.y53{bottom:108.832000pt;}
.y2c{bottom:126.112000pt;}
.y4e{bottom:133.312000pt;}
.y52{bottom:133.466667pt;}
.y2b{bottom:150.746667pt;}
.y4d{bottom:158.106667pt;}
.y51{bottom:158.266667pt;}
.y2a{bottom:175.546667pt;}
.y4c{bottom:182.746667pt;}
.y50{bottom:182.906667pt;}
.y29{bottom:200.186667pt;}
.y4b{bottom:207.386667pt;}
.y28{bottom:224.986667pt;}
.y4a{bottom:232.186667pt;}
.y27{bottom:249.626667pt;}
.y49{bottom:256.866667pt;}
.y26{bottom:274.466667pt;}
.y48{bottom:281.506667pt;}
.y25{bottom:299.106667pt;}
.y47{bottom:306.146667pt;}
.y24{bottom:323.746667pt;}
.y46{bottom:330.946667pt;}
.y23{bottom:348.546667pt;}
.y45{bottom:355.586667pt;}
.y22{bottom:373.186667pt;}
.y44{bottom:380.226667pt;}
.y21{bottom:397.826667pt;}
.y43{bottom:405.026667pt;}
.y20{bottom:422.466667pt;}
.y42{bottom:429.666667pt;}
.y1f{bottom:447.266667pt;}
.y83{bottom:448.866667pt;}
.y41{bottom:454.306667pt;}
.y69{bottom:454.466667pt;}
.y1e{bottom:471.906667pt;}
.y82{bottom:477.666667pt;}
.y40{bottom:478.946667pt;}
.y68{bottom:479.106667pt;}
.y1d{bottom:492.706667pt;}
.y81{bottom:496.386667pt;}
.y3f{bottom:503.773333pt;}
.y67{bottom:503.933333pt;}
.y1c{bottom:511.133333pt;}
.y80{bottom:514.813333pt;}
.y3e{bottom:528.413333pt;}
.y66{bottom:528.573333pt;}
.y1b{bottom:529.533333pt;}
.y7f{bottom:533.213333pt;}
.y1a{bottom:547.933333pt;}
.y7e{bottom:551.613333pt;}
.y3d{bottom:553.053333pt;}
.y65{bottom:553.213333pt;}
.y19{bottom:566.333333pt;}
.y7d{bottom:570.013333pt;}
.y3c{bottom:577.693333pt;}
.y64{bottom:577.853333pt;}
.y18{bottom:584.733333pt;}
.y7c{bottom:588.413333pt;}
.y3b{bottom:602.493333pt;}
.y63{bottom:602.653333pt;}
.y17{bottom:603.133333pt;}
.y7b{bottom:606.813333pt;}
.y7a{bottom:625.213333pt;}
.y3a{bottom:627.133333pt;}
.y62{bottom:627.293333pt;}
.y16{bottom:639.933333pt;}
.y79{bottom:643.613333pt;}
.y39{bottom:651.773333pt;}
.y61{bottom:651.933333pt;}
.y15{bottom:658.333333pt;}
.y78{bottom:662.013333pt;}
.y38{bottom:676.573333pt;}
.y14{bottom:676.733333pt;}
.y77{bottom:680.413333pt;}
.y13{bottom:695.133333pt;}
.y76{bottom:698.813333pt;}
.y37{bottom:701.213333pt;}
.y60{bottom:701.373333pt;}
.y12{bottom:713.533333pt;}
.y75{bottom:717.213333pt;}
.y36{bottom:725.853333pt;}
.y5f{bottom:726.013333pt;}
.y11{bottom:731.933333pt;}
.y74{bottom:735.613333pt;}
.y10{bottom:750.333333pt;}
.y35{bottom:750.493333pt;}
.y5e{bottom:750.653333pt;}
.y73{bottom:754.053333pt;}
.yf{bottom:768.773333pt;}
.y72{bottom:772.453333pt;}
.y34{bottom:775.333333pt;}
.y5d{bottom:775.493333pt;}
.ye{bottom:787.173333pt;}
.y71{bottom:790.853333pt;}
.y33{bottom:799.973333pt;}
.y5c{bottom:800.133333pt;}
.yd{bottom:805.573333pt;}
.y70{bottom:809.253333pt;}
.yc{bottom:823.973333pt;}
.y32{bottom:824.613333pt;}
.y5b{bottom:824.773333pt;}
.y6f{bottom:827.653333pt;}
.yb{bottom:843.173333pt;}
.y6e{bottom:846.053333pt;}
.y31{bottom:849.413333pt;}
.y5a{bottom:849.573333pt;}
.ya{bottom:861.893333pt;}
.y6d{bottom:864.453333pt;}
.y30{bottom:874.053333pt;}
.y59{bottom:874.213333pt;}
.y9{bottom:880.293333pt;}
.y6c{bottom:882.853333pt;}
.y8{bottom:898.693333pt;}
.y58{bottom:898.853333pt;}
.y6b{bottom:901.253333pt;}
.y7{bottom:917.093333pt;}
.y2f{bottom:923.333333pt;}
.y57{bottom:923.493333pt;}
.y6{bottom:934.853333pt;}
.y2e{bottom:948.133333pt;}
.y56{bottom:948.293333pt;}
.y5{bottom:951.333333pt;}
.y4{bottom:972.773333pt;}
.y55{bottom:972.933333pt;}
.y1{bottom:1061.440000pt;}
.hd{height:44.875000pt;}
.h8{height:46.781250pt;}
.h5{height:52.134375pt;}
.h9{height:52.503750pt;}
.h2{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.he{height:63.656250pt;}
.h3{height:64.500000pt;}
.hc{height:65.781915pt;}
.hb{height:73.454062pt;}
.ha{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:37.759988pt;}
.xb{left:75.519988pt;}
.xe{left:80.031988pt;}
.x4{left:86.111988pt;}
.xf{left:104.031988pt;}
.xa{left:113.311988pt;}
.x5{left:121.311988pt;}
.xc{left:122.751988pt;}
.x7{left:179.546655pt;}
.xd{left:255.426655pt;}
.x8{left:264.866655pt;}
.x6{left:283.906655pt;}
.x2{left:328.226655pt;}
.x9{left:394.466655pt;}
.x3{left:396.866655pt;}
}




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