
    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_9acf66bb446849f599a3e9a7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c89712e6636876d92d6d7c61.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5b04807f2be8f741ee26f1a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8e986aba707e10bd44f8cf8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f6c02d3408bbcadc7f798de5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_97e271cfff4e02d745fababc.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.864000px;}
.ls4{letter-spacing:64.421280px;}
.ls2{letter-spacing:843.096000px;}
.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:-72.000000px;}
.ws5{word-spacing:-40.608000px;}
.ws0{word-spacing:-24.300000px;}
.ws4{word-spacing:-21.060000px;}
.wsb{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws7{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:98.700960px;}
.wsa{word-spacing:218.089920px;}
.ws9{word-spacing:271.335600px;}
._f{margin-left:-4.539840px;}
._c{margin-left:-3.126720px;}
._0{margin-left:-1.481280px;}
._1{width:1.770240px;}
._10{width:2.914560px;}
._12{width:4.721280px;}
._11{width:5.832000px;}
._3{width:6.943920px;}
._2{width:8.139600px;}
._4{width:9.242160px;}
._b{width:10.675680px;}
._1b{width:12.528000px;}
._1c{width:13.536000px;}
._15{width:15.048000px;}
._16{width:16.560000px;}
._1a{width:19.368000px;}
._19{width:20.448000px;}
._1d{width:21.537600px;}
._d{width:22.680000px;}
._e{width:23.688000px;}
._13{width:25.344000px;}
._14{width:26.568000px;}
._1e{width:27.965760px;}
._6{width:30.260160px;}
._7{width:31.359360px;}
._5{width:32.366880px;}
._28{width:33.912000px;}
._29{width:34.949760px;}
._33{width:37.769280px;}
._31{width:38.952000px;}
._18{width:50.112000px;}
._17{width:51.192000px;}
._1f{width:54.000000px;}
._2b{width:60.480000px;}
._2c{width:62.196000px;}
._2f{width:89.939040px;}
._2e{width:91.224000px;}
._8{width:92.744880px;}
._a{width:93.844800px;}
._9{width:94.898160px;}
._34{width:136.584000px;}
._35{width:138.888000px;}
._36{width:139.968000px;}
._22{width:144.009600px;}
._24{width:171.072000px;}
._25{width:172.080000px;}
._21{width:270.319680px;}
._20{width:299.087280px;}
._23{width:356.673360px;}
._26{width:513.288000px;}
._2a{width:613.296000px;}
._2d{width:755.844000px;}
._27{width:795.936000px;}
._32{width:831.936000px;}
._30{width:867.936000px;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs5{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:14.610000px;}
.ya0{bottom:40.065000px;}
.y9f{bottom:65.520000px;}
.y6{bottom:82.116000px;}
.y5{bottom:102.816000px;}
.y9e{bottom:104.790000px;}
.y9c{bottom:126.645000px;}
.y4{bottom:129.096000px;}
.y95{bottom:144.255000px;}
.y3{bottom:148.176000px;}
.y2{bottom:167.250000px;}
.y9d{bottom:172.620000px;}
.y96{bottom:176.970000px;}
.yb5{bottom:198.390000px;}
.y2f{bottom:203.610000px;}
.y81{bottom:206.490000px;}
.y97{bottom:209.670000px;}
.y7c{bottom:217.290000px;}
.ya2{bottom:217.470000px;}
.yb4{bottom:219.090000px;}
.y93{bottom:225.570000px;}
.y2e{bottom:227.190000px;}
.y80{bottom:237.630000px;}
.y4b{bottom:238.530000px;}
.yb3{bottom:239.790000px;}
.y76{bottom:241.950000px;}
.y98{bottom:242.385000px;}
.y2d{bottom:247.890000px;}
.y5f{bottom:248.430000px;}
.y92{bottom:256.710000px;}
.yb2{bottom:260.490000px;}
.y2c{bottom:268.590000px;}
.y4a{bottom:269.490000px;}
.y75{bottom:273.090000px;}
.y99{bottom:275.070000px;}
.y7b{bottom:279.390000px;}
.y5e{bottom:279.570000px;}
.yb1{bottom:281.190000px;}
.y91{bottom:287.670000px;}
.y2b{bottom:289.290000px;}
.y82{bottom:293.790000px;}
.y7f{bottom:299.730000px;}
.y49{bottom:300.630000px;}
.yb0{bottom:301.890000px;}
.y74{bottom:304.050000px;}
.y7a{bottom:306.210000px;}
.y9a{bottom:307.770000px;}
.y2a{bottom:309.990000px;}
.y5d{bottom:310.530000px;}
.y90{bottom:318.810000px;}
.yaf{bottom:322.590000px;}
.y29{bottom:330.690000px;}
.y48{bottom:331.590000px;}
.y73{bottom:335.010000px;}
.y9b{bottom:340.485000px;}
.y5c{bottom:341.715000px;}
.y79{bottom:343.155000px;}
.yae{bottom:343.335000px;}
.y8f{bottom:349.815000px;}
.y28{bottom:351.435000px;}
.y7e{bottom:361.875000px;}
.y47{bottom:362.775000px;}
.yad{bottom:364.035000px;}
.y72{bottom:366.195000px;}
.y27{bottom:372.135000px;}
.y5b{bottom:372.675000px;}
.y78{bottom:376.275000px;}
.y8e{bottom:380.775000px;}
.yac{bottom:384.735000px;}
.y26{bottom:392.835000px;}
.y46{bottom:393.735000px;}
.y71{bottom:397.155000px;}
.y5a{bottom:403.815000px;}
.yab{bottom:405.435000px;}
.y8d{bottom:411.915000px;}
.y25{bottom:413.535000px;}
.y7d{bottom:423.975000px;}
.y70{bottom:424.515000px;}
.y45{bottom:424.875000px;}
.yaa{bottom:426.135000px;}
.y24{bottom:434.235000px;}
.y8c{bottom:442.875000px;}
.y59{bottom:443.055000px;}
.ya9{bottom:446.835000px;}
.y23{bottom:454.935000px;}
.y44{bottom:455.835000px;}
.y6f{bottom:457.095000px;}
.ya8{bottom:467.535000px;}
.y8b{bottom:474.015000px;}
.y22{bottom:475.635000px;}
.y58{bottom:486.075000px;}
.y43{bottom:486.975000px;}
.y6e{bottom:488.055000px;}
.ya7{bottom:488.235000px;}
.y21{bottom:496.335000px;}
.y8a{bottom:504.975000px;}
.ya6{bottom:508.935000px;}
.y20{bottom:517.035000px;}
.y42{bottom:517.935000px;}
.y6d{bottom:519.195000px;}
.ya5{bottom:529.635000px;}
.y89{bottom:536.115000px;}
.y1f{bottom:537.735000px;}
.y57{bottom:548.175000px;}
.y41{bottom:549.075000px;}
.y6c{bottom:550.155000px;}
.ya4{bottom:550.335000px;}
.y1e{bottom:558.435000px;}
.y88{bottom:567.075000px;}
.ya3{bottom:577.515000px;}
.y1d{bottom:579.135000px;}
.y40{bottom:580.035000px;}
.y6b{bottom:581.295000px;}
.y87{bottom:598.215000px;}
.y1c{bottom:599.835000px;}
.y56{bottom:610.305000px;}
.y3f{bottom:611.205000px;}
.y6a{bottom:612.285000px;}
.y1b{bottom:620.565000px;}
.y86{bottom:629.205000px;}
.y1a{bottom:641.265000px;}
.y3e{bottom:642.165000px;}
.y69{bottom:643.425000px;}
.y85{bottom:660.345000px;}
.y19{bottom:661.965000px;}
.y55{bottom:672.405000px;}
.y3d{bottom:673.305000px;}
.y68{bottom:674.385000px;}
.y77{bottom:676.725000px;}
.y18{bottom:682.665000px;}
.y84{bottom:697.425000px;}
.y17{bottom:703.365000px;}
.y3c{bottom:704.265000px;}
.y67{bottom:705.525000px;}
.y16{bottom:724.065000px;}
.y83{bottom:730.365000px;}
.y94{bottom:731.160000px;}
.y54{bottom:734.505000px;}
.y3b{bottom:735.405000px;}
.y66{bottom:736.485000px;}
.y15{bottom:744.765000px;}
.y14{bottom:765.465000px;}
.y3a{bottom:766.365000px;}
.y65{bottom:767.625000px;}
.y13{bottom:786.165000px;}
.y53{bottom:796.605000px;}
.y39{bottom:797.505000px;}
.y64{bottom:798.585000px;}
.y12{bottom:806.865000px;}
.y11{bottom:827.565000px;}
.y38{bottom:828.465000px;}
.y63{bottom:829.725000px;}
.y10{bottom:848.265000px;}
.y52{bottom:858.705000px;}
.y37{bottom:859.605000px;}
.y62{bottom:860.685000px;}
.yf{bottom:868.965000px;}
.y51{bottom:889.710000px;}
.y36{bottom:890.610000px;}
.ye{bottom:890.970000px;}
.y61{bottom:891.870000px;}
.yba{bottom:910.410000px;}
.y60{bottom:914.550000px;}
.yd{bottom:918.690000px;}
.y50{bottom:920.850000px;}
.y35{bottom:921.750000px;}
.yb9{bottom:931.110000px;}
.yc{bottom:946.230000px;}
.y4f{bottom:951.810000px;}
.y34{bottom:952.710000px;}
.yb{bottom:972.510000px;}
.y4e{bottom:982.950000px;}
.y33{bottom:983.850000px;}
.yb8{bottom:993.210000px;}
.ya{bottom:994.470000px;}
.y4d{bottom:1013.910000px;}
.y32{bottom:1014.810000px;}
.y9{bottom:1022.190000px;}
.yb7{bottom:1034.610000px;}
.y4c{bottom:1045.050000px;}
.y31{bottom:1045.950000px;}
.y8{bottom:1049.730000px;}
.yb6{bottom:1055.310000px;}
.y30{bottom:1073.130000px;}
.y7{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.ha{height:53.573906px;}
.hb{height:53.703000px;}
.h5{height:54.878906px;}
.h3{height:59.383125px;}
.h2{height:63.949219px;}
.h4{height:64.546875px;}
.h8{height:74.820586px;}
.h7{height:75.519844px;}
.h6{height:85.052461px;}
.h9{height:361.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:577.800000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:32.865000px;}
.x13{left:40.605000px;}
.x12{left:48.090000px;}
.x11{left:55.590000px;}
.x17{left:104.730000px;}
.x2{left:106.415987px;}
.x14{left:108.795000px;}
.xb{left:114.155987px;}
.x8{left:148.895987px;}
.xa{left:159.509987px;}
.xc{left:162.389987px;}
.x10{left:178.560000px;}
.x6{left:183.269987px;}
.xd{left:188.849987px;}
.xe{left:218.909987px;}
.x4{left:250.769987px;}
.x7{left:279.254987px;}
.x16{left:294.015000px;}
.x5{left:446.474987px;}
.x1{left:467.744987px;}
.x9{left:679.829987px;}
.xf{left:756.869987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.768000pt;}
.ls4{letter-spacing:57.263360pt;}
.ls2{letter-spacing:749.418667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws5{word-spacing:-36.096000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws4{word-spacing:-18.720000pt;}
.wsb{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:87.734187pt;}
.wsa{word-spacing:193.857707pt;}
.ws9{word-spacing:241.187200pt;}
._f{margin-left:-4.035413pt;}
._c{margin-left:-2.779307pt;}
._0{margin-left:-1.316693pt;}
._1{width:1.573547pt;}
._10{width:2.590720pt;}
._12{width:4.196693pt;}
._11{width:5.184000pt;}
._3{width:6.172373pt;}
._2{width:7.235200pt;}
._4{width:8.215253pt;}
._b{width:9.489493pt;}
._1b{width:11.136000pt;}
._1c{width:12.032000pt;}
._15{width:13.376000pt;}
._16{width:14.720000pt;}
._1a{width:17.216000pt;}
._19{width:18.176000pt;}
._1d{width:19.144533pt;}
._d{width:20.160000pt;}
._e{width:21.056000pt;}
._13{width:22.528000pt;}
._14{width:23.616000pt;}
._1e{width:24.858453pt;}
._6{width:26.897920pt;}
._7{width:27.874987pt;}
._5{width:28.770560pt;}
._28{width:30.144000pt;}
._29{width:31.066453pt;}
._33{width:33.572693pt;}
._31{width:34.624000pt;}
._18{width:44.544000pt;}
._17{width:45.504000pt;}
._1f{width:48.000000pt;}
._2b{width:53.760000pt;}
._2c{width:55.285333pt;}
._2f{width:79.945813pt;}
._2e{width:81.088000pt;}
._8{width:82.439893pt;}
._a{width:83.417600pt;}
._9{width:84.353920pt;}
._34{width:121.408000pt;}
._35{width:123.456000pt;}
._36{width:124.416000pt;}
._22{width:128.008533pt;}
._24{width:152.064000pt;}
._25{width:152.960000pt;}
._21{width:240.284160pt;}
._20{width:265.855360pt;}
._23{width:317.042987pt;}
._26{width:456.256000pt;}
._2a{width:545.152000pt;}
._2d{width:671.861333pt;}
._27{width:707.498667pt;}
._32{width:739.498667pt;}
._30{width:771.498667pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:12.986667pt;}
.ya0{bottom:35.613333pt;}
.y9f{bottom:58.240000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:91.392000pt;}
.y9e{bottom:93.146667pt;}
.y9c{bottom:112.573333pt;}
.y4{bottom:114.752000pt;}
.y95{bottom:128.226667pt;}
.y3{bottom:131.712000pt;}
.y2{bottom:148.666667pt;}
.y9d{bottom:153.440000pt;}
.y96{bottom:157.306667pt;}
.yb5{bottom:176.346667pt;}
.y2f{bottom:180.986667pt;}
.y81{bottom:183.546667pt;}
.y97{bottom:186.373333pt;}
.y7c{bottom:193.146667pt;}
.ya2{bottom:193.306667pt;}
.yb4{bottom:194.746667pt;}
.y93{bottom:200.506667pt;}
.y2e{bottom:201.946667pt;}
.y80{bottom:211.226667pt;}
.y4b{bottom:212.026667pt;}
.yb3{bottom:213.146667pt;}
.y76{bottom:215.066667pt;}
.y98{bottom:215.453333pt;}
.y2d{bottom:220.346667pt;}
.y5f{bottom:220.826667pt;}
.y92{bottom:228.186667pt;}
.yb2{bottom:231.546667pt;}
.y2c{bottom:238.746667pt;}
.y4a{bottom:239.546667pt;}
.y75{bottom:242.746667pt;}
.y99{bottom:244.506667pt;}
.y7b{bottom:248.346667pt;}
.y5e{bottom:248.506667pt;}
.yb1{bottom:249.946667pt;}
.y91{bottom:255.706667pt;}
.y2b{bottom:257.146667pt;}
.y82{bottom:261.146667pt;}
.y7f{bottom:266.426667pt;}
.y49{bottom:267.226667pt;}
.yb0{bottom:268.346667pt;}
.y74{bottom:270.266667pt;}
.y7a{bottom:272.186667pt;}
.y9a{bottom:273.573333pt;}
.y2a{bottom:275.546667pt;}
.y5d{bottom:276.026667pt;}
.y90{bottom:283.386667pt;}
.yaf{bottom:286.746667pt;}
.y29{bottom:293.946667pt;}
.y48{bottom:294.746667pt;}
.y73{bottom:297.786667pt;}
.y9b{bottom:302.653333pt;}
.y5c{bottom:303.746667pt;}
.y79{bottom:305.026667pt;}
.yae{bottom:305.186667pt;}
.y8f{bottom:310.946667pt;}
.y28{bottom:312.386667pt;}
.y7e{bottom:321.666667pt;}
.y47{bottom:322.466667pt;}
.yad{bottom:323.586667pt;}
.y72{bottom:325.506667pt;}
.y27{bottom:330.786667pt;}
.y5b{bottom:331.266667pt;}
.y78{bottom:334.466667pt;}
.y8e{bottom:338.466667pt;}
.yac{bottom:341.986667pt;}
.y26{bottom:349.186667pt;}
.y46{bottom:349.986667pt;}
.y71{bottom:353.026667pt;}
.y5a{bottom:358.946667pt;}
.yab{bottom:360.386667pt;}
.y8d{bottom:366.146667pt;}
.y25{bottom:367.586667pt;}
.y7d{bottom:376.866667pt;}
.y70{bottom:377.346667pt;}
.y45{bottom:377.666667pt;}
.yaa{bottom:378.786667pt;}
.y24{bottom:385.986667pt;}
.y8c{bottom:393.666667pt;}
.y59{bottom:393.826667pt;}
.ya9{bottom:397.186667pt;}
.y23{bottom:404.386667pt;}
.y44{bottom:405.186667pt;}
.y6f{bottom:406.306667pt;}
.ya8{bottom:415.586667pt;}
.y8b{bottom:421.346667pt;}
.y22{bottom:422.786667pt;}
.y58{bottom:432.066667pt;}
.y43{bottom:432.866667pt;}
.y6e{bottom:433.826667pt;}
.ya7{bottom:433.986667pt;}
.y21{bottom:441.186667pt;}
.y8a{bottom:448.866667pt;}
.ya6{bottom:452.386667pt;}
.y20{bottom:459.586667pt;}
.y42{bottom:460.386667pt;}
.y6d{bottom:461.506667pt;}
.ya5{bottom:470.786667pt;}
.y89{bottom:476.546667pt;}
.y1f{bottom:477.986667pt;}
.y57{bottom:487.266667pt;}
.y41{bottom:488.066667pt;}
.y6c{bottom:489.026667pt;}
.ya4{bottom:489.186667pt;}
.y1e{bottom:496.386667pt;}
.y88{bottom:504.066667pt;}
.ya3{bottom:513.346667pt;}
.y1d{bottom:514.786667pt;}
.y40{bottom:515.586667pt;}
.y6b{bottom:516.706667pt;}
.y87{bottom:531.746667pt;}
.y1c{bottom:533.186667pt;}
.y56{bottom:542.493333pt;}
.y3f{bottom:543.293333pt;}
.y6a{bottom:544.253333pt;}
.y1b{bottom:551.613333pt;}
.y86{bottom:559.293333pt;}
.y1a{bottom:570.013333pt;}
.y3e{bottom:570.813333pt;}
.y69{bottom:571.933333pt;}
.y85{bottom:586.973333pt;}
.y19{bottom:588.413333pt;}
.y55{bottom:597.693333pt;}
.y3d{bottom:598.493333pt;}
.y68{bottom:599.453333pt;}
.y77{bottom:601.533333pt;}
.y18{bottom:606.813333pt;}
.y84{bottom:619.933333pt;}
.y17{bottom:625.213333pt;}
.y3c{bottom:626.013333pt;}
.y67{bottom:627.133333pt;}
.y16{bottom:643.613333pt;}
.y83{bottom:649.213333pt;}
.y94{bottom:649.920000pt;}
.y54{bottom:652.893333pt;}
.y3b{bottom:653.693333pt;}
.y66{bottom:654.653333pt;}
.y15{bottom:662.013333pt;}
.y14{bottom:680.413333pt;}
.y3a{bottom:681.213333pt;}
.y65{bottom:682.333333pt;}
.y13{bottom:698.813333pt;}
.y53{bottom:708.093333pt;}
.y39{bottom:708.893333pt;}
.y64{bottom:709.853333pt;}
.y12{bottom:717.213333pt;}
.y11{bottom:735.613333pt;}
.y38{bottom:736.413333pt;}
.y63{bottom:737.533333pt;}
.y10{bottom:754.013333pt;}
.y52{bottom:763.293333pt;}
.y37{bottom:764.093333pt;}
.y62{bottom:765.053333pt;}
.yf{bottom:772.413333pt;}
.y51{bottom:790.853333pt;}
.y36{bottom:791.653333pt;}
.ye{bottom:791.973333pt;}
.y61{bottom:792.773333pt;}
.yba{bottom:809.253333pt;}
.y60{bottom:812.933333pt;}
.yd{bottom:816.613333pt;}
.y50{bottom:818.533333pt;}
.y35{bottom:819.333333pt;}
.yb9{bottom:827.653333pt;}
.yc{bottom:841.093333pt;}
.y4f{bottom:846.053333pt;}
.y34{bottom:846.853333pt;}
.yb{bottom:864.453333pt;}
.y4e{bottom:873.733333pt;}
.y33{bottom:874.533333pt;}
.yb8{bottom:882.853333pt;}
.ya{bottom:883.973333pt;}
.y4d{bottom:901.253333pt;}
.y32{bottom:902.053333pt;}
.y9{bottom:908.613333pt;}
.yb7{bottom:919.653333pt;}
.y4c{bottom:928.933333pt;}
.y31{bottom:929.733333pt;}
.y8{bottom:933.093333pt;}
.yb6{bottom:938.053333pt;}
.y30{bottom:953.893333pt;}
.y7{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.ha{height:47.621250pt;}
.hb{height:47.736000pt;}
.h5{height:48.781250pt;}
.h3{height:52.785000pt;}
.h2{height:56.843750pt;}
.h4{height:57.375000pt;}
.h8{height:66.507188pt;}
.h7{height:67.128750pt;}
.h6{height:75.602187pt;}
.h9{height:321.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:513.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:29.213333pt;}
.x13{left:36.093333pt;}
.x12{left:42.746667pt;}
.x11{left:49.413333pt;}
.x17{left:93.093333pt;}
.x2{left:94.591988pt;}
.x14{left:96.706667pt;}
.xb{left:101.471988pt;}
.x8{left:132.351988pt;}
.xa{left:141.786655pt;}
.xc{left:144.346655pt;}
.x10{left:158.720000pt;}
.x6{left:162.906655pt;}
.xd{left:167.866655pt;}
.xe{left:194.586655pt;}
.x4{left:222.906655pt;}
.x7{left:248.226655pt;}
.x16{left:261.346667pt;}
.x5{left:396.866655pt;}
.x1{left:415.773322pt;}
.x9{left:604.293322pt;}
.xf{left:672.773322pt;}
.x3{left:699.333322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  