
    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_752e00a78d6af0061d13dea6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aaffef0f4042cece5c9bae72.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_9792693ca092db5eeeb5b710.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5136534dc2e3d0cdcffc0da5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4c40ce6bca3162e249eaf3bf.woff')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_226fc24fbd3d22976d9331cf.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_1cd686536043452783adc60f.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_24a51f29e5982673aa099cab.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7cabcdb090d34e10cf363eb2.woff')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-87.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsf{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.ls16{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.172080px;}
.ls9{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.378600px;}
.lse{letter-spacing:0.494640px;}
.ls6{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.540000px;}
.ls13{letter-spacing:2.880000px;}
.ls1{letter-spacing:25.740000px;}
.ls8{letter-spacing:26.460000px;}
.ls11{letter-spacing:33.984000px;}
.ls12{letter-spacing:41.760000px;}
.ls10{letter-spacing:939.216000px;}
.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;}
}
.ws1{word-spacing:-21.438600px;}
.ws0{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.ws7{word-spacing:-21.041280px;}
.ws6{word-spacing:-20.700000px;}
.wsa{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws5{word-spacing:0.000000px;}
._38{margin-left:-2.150400px;}
._0{margin-left:-1.095120px;}
._2{width:1.584000px;}
._15{width:3.004800px;}
._17{width:4.520400px;}
._18{width:6.257520px;}
._4{width:7.359120px;}
._3{width:8.640000px;}
._6{width:10.239120px;}
._5{width:11.304000px;}
._1a{width:12.323520px;}
._2d{width:13.482480px;}
._31{width:14.641200px;}
._27{width:15.921360px;}
._14{width:17.774640px;}
._7{width:19.152000px;}
._23{width:22.441920px;}
._19{width:24.176880px;}
._13{width:25.272000px;}
._20{width:26.535600px;}
._1f{width:27.883440px;}
._30{width:29.000640px;}
._16{width:30.242160px;}
._35{width:31.584720px;}
._1c{width:33.179760px;}
._1b{width:34.261200px;}
._1e{width:35.321040px;}
._1d{width:36.331920px;}
._2a{width:37.335360px;}
._12{width:38.455920px;}
._22{width:39.929760px;}
._24{width:40.940640px;}
._1{width:42.528000px;}
._2e{width:43.552080px;}
._28{width:44.899920px;}
._29{width:46.143840px;}
._21{width:47.764080px;}
._2f{width:49.448880px;}
._c{width:51.624000px;}
._d{width:52.848000px;}
._3c{width:54.113520px;}
._26{width:55.314000px;}
._25{width:56.704080px;}
._37{width:57.732480px;}
._a{width:59.040000px;}
._b{width:60.768000px;}
._32{width:62.464080px;}
._33{width:63.685440px;}
._39{width:64.804080px;}
._3a{width:65.936400px;}
._8{width:69.240000px;}
._9{width:70.428000px;}
._3b{width:74.805120px;}
._2b{width:77.585040px;}
._2c{width:79.185600px;}
._36{width:84.998160px;}
._34{width:94.433040px;}
._11{width:96.519120px;}
._10{width:97.536000px;}
._e{width:112.800000px;}
._f{width:113.820000px;}
.fc4{color:rgb(0,29,53);}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(32,33,34);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y63{bottom:79.956000px;}
.y30{bottom:81.396000px;}
.y53{bottom:83.916000px;}
.y74{bottom:86.976000px;}
.y62{bottom:99.576000px;}
.y6b{bottom:105.876000px;}
.y2f{bottom:109.296000px;}
.y52{bottom:111.636000px;}
.y73{bottom:114.696000px;}
.y6a{bottom:133.596000px;}
.y2e{bottom:137.016000px;}
.y51{bottom:139.356000px;}
.y72{bottom:142.596000px;}
.y69{bottom:161.490000px;}
.y2d{bottom:164.730000px;}
.y50{bottom:167.250000px;}
.y71{bottom:170.310000px;}
.y68{bottom:189.210000px;}
.y2c{bottom:192.450000px;}
.y4f{bottom:194.970000px;}
.y70{bottom:198.030000px;}
.y67{bottom:216.930000px;}
.y2b{bottom:220.350000px;}
.y4e{bottom:222.690000px;}
.y6f{bottom:225.930000px;}
.y66{bottom:244.830000px;}
.y2a{bottom:248.070000px;}
.y4d{bottom:250.410000px;}
.y6e{bottom:253.650000px;}
.y65{bottom:272.550000px;}
.y29{bottom:275.790000px;}
.y4c{bottom:278.310000px;}
.y6d{bottom:281.370000px;}
.y64{bottom:300.315000px;}
.y28{bottom:303.735000px;}
.y4b{bottom:306.075000px;}
.y6c{bottom:309.315000px;}
.y27{bottom:331.455000px;}
.y4a{bottom:333.795000px;}
.y26{bottom:359.175000px;}
.y49{bottom:361.695000px;}
.y25{bottom:386.895000px;}
.y48{bottom:389.415000px;}
.y24{bottom:414.795000px;}
.y47{bottom:417.135000px;}
.y23{bottom:442.515000px;}
.y46{bottom:444.855000px;}
.y22{bottom:470.235000px;}
.y8f{bottom:472.035000px;}
.y45{bottom:472.755000px;}
.y8e{bottom:495.615000px;}
.y21{bottom:497.955000px;}
.y44{bottom:500.475000px;}
.y8d{bottom:516.315000px;}
.y20{bottom:525.855000px;}
.y43{bottom:528.195000px;}
.y8c{bottom:537.015000px;}
.y61{bottom:551.235000px;}
.y1f{bottom:553.575000px;}
.y42{bottom:555.915000px;}
.y8b{bottom:557.715000px;}
.y60{bottom:575.385000px;}
.y8a{bottom:578.445000px;}
.y1e{bottom:581.325000px;}
.y41{bottom:583.845000px;}
.y89{bottom:599.145000px;}
.y5f{bottom:599.505000px;}
.y1d{bottom:609.225000px;}
.y40{bottom:611.565000px;}
.y88{bottom:619.845000px;}
.y5e{bottom:623.625000px;}
.y1c{bottom:636.945000px;}
.y3f{bottom:639.285000px;}
.y87{bottom:640.545000px;}
.y5d{bottom:647.745000px;}
.y1b{bottom:659.085000px;}
.y86{bottom:661.245000px;}
.y3e{bottom:667.185000px;}
.y5c{bottom:671.865000px;}
.y1a{bottom:674.385000px;}
.y85{bottom:681.945000px;}
.y3d{bottom:694.905000px;}
.y19{bottom:695.085000px;}
.y5b{bottom:696.165000px;}
.y84{bottom:702.645000px;}
.y18{bottom:715.785000px;}
.y5a{bottom:720.285000px;}
.y3c{bottom:722.625000px;}
.y83{bottom:723.345000px;}
.y17{bottom:736.485000px;}
.y82{bottom:744.045000px;}
.y59{bottom:744.405000px;}
.y3b{bottom:750.345000px;}
.y16{bottom:757.005000px;}
.y81{bottom:764.745000px;}
.y58{bottom:768.525000px;}
.y15{bottom:777.705000px;}
.y3a{bottom:778.245000px;}
.y80{bottom:785.445000px;}
.y57{bottom:792.645000px;}
.y14{bottom:798.405000px;}
.y39{bottom:805.965000px;}
.y7f{bottom:806.145000px;}
.y56{bottom:816.765000px;}
.y13{bottom:817.665000px;}
.y7e{bottom:826.845000px;}
.y12{bottom:832.965000px;}
.y38{bottom:833.685000px;}
.y55{bottom:840.885000px;}
.y7d{bottom:847.590000px;}
.y11{bottom:853.710000px;}
.y37{bottom:861.630000px;}
.y54{bottom:865.230000px;}
.y7c{bottom:868.290000px;}
.y10{bottom:874.410000px;}
.y7b{bottom:888.990000px;}
.y36{bottom:889.350000px;}
.yf{bottom:895.110000px;}
.y7a{bottom:909.690000px;}
.ye{bottom:915.810000px;}
.y35{bottom:917.070000px;}
.y79{bottom:930.390000px;}
.yd{bottom:936.510000px;}
.y34{bottom:944.790000px;}
.y78{bottom:951.090000px;}
.yc{bottom:956.130000px;}
.y77{bottom:971.790000px;}
.yb{bottom:972.690000px;}
.ya{bottom:991.950000px;}
.y76{bottom:992.490000px;}
.y33{bottom:1000.410000px;}
.y9{bottom:1007.250000px;}
.y8{bottom:1027.950000px;}
.y32{bottom:1028.130000px;}
.y75{bottom:1035.150000px;}
.y7{bottom:1048.650000px;}
.y31{bottom:1055.850000px;}
.y6{bottom:1067.910000px;}
.y5{bottom:1083.750000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h8{height:47.321367px;}
.h5{height:48.616875px;}
.ha{height:52.628906px;}
.h9{height:52.971680px;}
.he{height:52.998047px;}
.h11{height:63.457031px;}
.h7{height:70.628906px;}
.h10{height:70.664062px;}
.h6{height:72.562500px;}
.hf{height:74.004654px;}
.hc{height:74.244727px;}
.hb{height:82.635820px;}
.h2{height:82.676953px;}
.hd{height:83.238047px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:27.360000px;}
.x1{left:84.959987px;}
.xe{left:90.035987px;}
.xf{left:117.035987px;}
.xa{left:127.475987px;}
.xb{left:138.095987px;}
.x4{left:184.709987px;}
.x7{left:290.774987px;}
.x8{left:297.794987px;}
.x6{left:312.374987px;}
.x2{left:409.035000px;}
.x9{left:461.774987px;}
.x5{left:467.714987px;}
.xd{left:538.124987px;}
.xc{left:781.889987px;}
@media print{
.v2{vertical-align:-78.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.ls16{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.152960pt;}
.ls9{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.336533pt;}
.lse{letter-spacing:0.439680pt;}
.ls6{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.480000pt;}
.ls13{letter-spacing:2.560000pt;}
.ls1{letter-spacing:22.880000pt;}
.ls8{letter-spacing:23.520000pt;}
.ls11{letter-spacing:30.208000pt;}
.ls12{letter-spacing:37.120000pt;}
.ls10{letter-spacing:834.858667pt;}
.ws1{word-spacing:-19.056533pt;}
.ws0{word-spacing:-19.040000pt;}
.ws8{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.703360pt;}
.ws6{word-spacing:-18.400000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws5{word-spacing:0.000000pt;}
._38{margin-left:-1.911467pt;}
._0{margin-left:-0.973440pt;}
._2{width:1.408000pt;}
._15{width:2.670933pt;}
._17{width:4.018133pt;}
._18{width:5.562240pt;}
._4{width:6.541440pt;}
._3{width:7.680000pt;}
._6{width:9.101440pt;}
._5{width:10.048000pt;}
._1a{width:10.954240pt;}
._2d{width:11.984427pt;}
._31{width:13.014400pt;}
._27{width:14.152320pt;}
._14{width:15.799680pt;}
._7{width:17.024000pt;}
._23{width:19.948373pt;}
._19{width:21.490560pt;}
._13{width:22.464000pt;}
._20{width:23.587200pt;}
._1f{width:24.785280pt;}
._30{width:25.778347pt;}
._16{width:26.881920pt;}
._35{width:28.075307pt;}
._1c{width:29.493120pt;}
._1b{width:30.454400pt;}
._1e{width:31.396480pt;}
._1d{width:32.295040pt;}
._2a{width:33.186987pt;}
._12{width:34.183040pt;}
._22{width:35.493120pt;}
._24{width:36.391680pt;}
._1{width:37.802667pt;}
._2e{width:38.712960pt;}
._28{width:39.911040pt;}
._29{width:41.016747pt;}
._21{width:42.456960pt;}
._2f{width:43.954560pt;}
._c{width:45.888000pt;}
._d{width:46.976000pt;}
._3c{width:48.100907pt;}
._26{width:49.168000pt;}
._25{width:50.403627pt;}
._37{width:51.317760pt;}
._a{width:52.480000pt;}
._b{width:54.016000pt;}
._32{width:55.523627pt;}
._33{width:56.609280pt;}
._39{width:57.603627pt;}
._3a{width:58.610133pt;}
._8{width:61.546667pt;}
._9{width:62.602667pt;}
._3b{width:66.493440pt;}
._2b{width:68.964480pt;}
._2c{width:70.387200pt;}
._36{width:75.553920pt;}
._34{width:83.940480pt;}
._11{width:85.794773pt;}
._10{width:86.698667pt;}
._e{width:100.266667pt;}
._f{width:101.173333pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y63{bottom:71.072000pt;}
.y30{bottom:72.352000pt;}
.y53{bottom:74.592000pt;}
.y74{bottom:77.312000pt;}
.y62{bottom:88.512000pt;}
.y6b{bottom:94.112000pt;}
.y2f{bottom:97.152000pt;}
.y52{bottom:99.232000pt;}
.y73{bottom:101.952000pt;}
.y6a{bottom:118.752000pt;}
.y2e{bottom:121.792000pt;}
.y51{bottom:123.872000pt;}
.y72{bottom:126.752000pt;}
.y69{bottom:143.546667pt;}
.y2d{bottom:146.426667pt;}
.y50{bottom:148.666667pt;}
.y71{bottom:151.386667pt;}
.y68{bottom:168.186667pt;}
.y2c{bottom:171.066667pt;}
.y4f{bottom:173.306667pt;}
.y70{bottom:176.026667pt;}
.y67{bottom:192.826667pt;}
.y2b{bottom:195.866667pt;}
.y4e{bottom:197.946667pt;}
.y6f{bottom:200.826667pt;}
.y66{bottom:217.626667pt;}
.y2a{bottom:220.506667pt;}
.y4d{bottom:222.586667pt;}
.y6e{bottom:225.466667pt;}
.y65{bottom:242.266667pt;}
.y29{bottom:245.146667pt;}
.y4c{bottom:247.386667pt;}
.y6d{bottom:250.106667pt;}
.y64{bottom:266.946667pt;}
.y28{bottom:269.986667pt;}
.y4b{bottom:272.066667pt;}
.y6c{bottom:274.946667pt;}
.y27{bottom:294.626667pt;}
.y4a{bottom:296.706667pt;}
.y26{bottom:319.266667pt;}
.y49{bottom:321.506667pt;}
.y25{bottom:343.906667pt;}
.y48{bottom:346.146667pt;}
.y24{bottom:368.706667pt;}
.y47{bottom:370.786667pt;}
.y23{bottom:393.346667pt;}
.y46{bottom:395.426667pt;}
.y22{bottom:417.986667pt;}
.y8f{bottom:419.586667pt;}
.y45{bottom:420.226667pt;}
.y8e{bottom:440.546667pt;}
.y21{bottom:442.626667pt;}
.y44{bottom:444.866667pt;}
.y8d{bottom:458.946667pt;}
.y20{bottom:467.426667pt;}
.y43{bottom:469.506667pt;}
.y8c{bottom:477.346667pt;}
.y61{bottom:489.986667pt;}
.y1f{bottom:492.066667pt;}
.y42{bottom:494.146667pt;}
.y8b{bottom:495.746667pt;}
.y60{bottom:511.453333pt;}
.y8a{bottom:514.173333pt;}
.y1e{bottom:516.733333pt;}
.y41{bottom:518.973333pt;}
.y89{bottom:532.573333pt;}
.y5f{bottom:532.893333pt;}
.y1d{bottom:541.533333pt;}
.y40{bottom:543.613333pt;}
.y88{bottom:550.973333pt;}
.y5e{bottom:554.333333pt;}
.y1c{bottom:566.173333pt;}
.y3f{bottom:568.253333pt;}
.y87{bottom:569.373333pt;}
.y5d{bottom:575.773333pt;}
.y1b{bottom:585.853333pt;}
.y86{bottom:587.773333pt;}
.y3e{bottom:593.053333pt;}
.y5c{bottom:597.213333pt;}
.y1a{bottom:599.453333pt;}
.y85{bottom:606.173333pt;}
.y3d{bottom:617.693333pt;}
.y19{bottom:617.853333pt;}
.y5b{bottom:618.813333pt;}
.y84{bottom:624.573333pt;}
.y18{bottom:636.253333pt;}
.y5a{bottom:640.253333pt;}
.y3c{bottom:642.333333pt;}
.y83{bottom:642.973333pt;}
.y17{bottom:654.653333pt;}
.y82{bottom:661.373333pt;}
.y59{bottom:661.693333pt;}
.y3b{bottom:666.973333pt;}
.y16{bottom:672.893333pt;}
.y81{bottom:679.773333pt;}
.y58{bottom:683.133333pt;}
.y15{bottom:691.293333pt;}
.y3a{bottom:691.773333pt;}
.y80{bottom:698.173333pt;}
.y57{bottom:704.573333pt;}
.y14{bottom:709.693333pt;}
.y39{bottom:716.413333pt;}
.y7f{bottom:716.573333pt;}
.y56{bottom:726.013333pt;}
.y13{bottom:726.813333pt;}
.y7e{bottom:734.973333pt;}
.y12{bottom:740.413333pt;}
.y38{bottom:741.053333pt;}
.y55{bottom:747.453333pt;}
.y7d{bottom:753.413333pt;}
.y11{bottom:758.853333pt;}
.y37{bottom:765.893333pt;}
.y54{bottom:769.093333pt;}
.y7c{bottom:771.813333pt;}
.y10{bottom:777.253333pt;}
.y7b{bottom:790.213333pt;}
.y36{bottom:790.533333pt;}
.yf{bottom:795.653333pt;}
.y7a{bottom:808.613333pt;}
.ye{bottom:814.053333pt;}
.y35{bottom:815.173333pt;}
.y79{bottom:827.013333pt;}
.yd{bottom:832.453333pt;}
.y34{bottom:839.813333pt;}
.y78{bottom:845.413333pt;}
.yc{bottom:849.893333pt;}
.y77{bottom:863.813333pt;}
.yb{bottom:864.613333pt;}
.ya{bottom:881.733333pt;}
.y76{bottom:882.213333pt;}
.y33{bottom:889.253333pt;}
.y9{bottom:895.333333pt;}
.y8{bottom:913.733333pt;}
.y32{bottom:913.893333pt;}
.y75{bottom:920.133333pt;}
.y7{bottom:932.133333pt;}
.y31{bottom:938.533333pt;}
.y6{bottom:949.253333pt;}
.y5{bottom:963.333333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h8{height:42.063437pt;}
.h5{height:43.215000pt;}
.ha{height:46.781250pt;}
.h9{height:47.085938pt;}
.he{height:47.109375pt;}
.h11{height:56.406250pt;}
.h7{height:62.781250pt;}
.h10{height:62.812500pt;}
.h6{height:64.500000pt;}
.hf{height:65.781915pt;}
.hc{height:65.995312pt;}
.hb{height:73.454062pt;}
.h2{height:73.490625pt;}
.hd{height:73.989375pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:24.320000pt;}
.x1{left:75.519988pt;}
.xe{left:80.031988pt;}
.xf{left:104.031988pt;}
.xa{left:113.311988pt;}
.xb{left:122.751988pt;}
.x4{left:164.186655pt;}
.x7{left:258.466655pt;}
.x8{left:264.706655pt;}
.x6{left:277.666655pt;}
.x2{left:363.586667pt;}
.x9{left:410.466655pt;}
.x5{left:415.746655pt;}
.xd{left:478.333322pt;}
.xc{left:695.013322pt;}
}




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