
    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_f3f7747d3212249834715d7c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943848;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_0247017117cb536a7cc8fce5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.773926;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_1058d5e37f0b946d60753bfd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_d9af08b3beed0ffb959d4762.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5c91adbcff991f4a9b261a5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730469;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_632f5c7d5ac8c1112a860bcd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v3{vertical-align:-108.678000px;}
.v7{vertical-align:-105.618000px;}
.v5{vertical-align:-90.144000px;}
.v9{vertical-align:-83.340000px;}
.v4{vertical-align:-71.430000px;}
.v8{vertical-align:-68.712000px;}
.v6{vertical-align:-51.870000px;}
.v1{vertical-align:-43.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:86.418000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:45.303312px;}
.ls2{letter-spacing:52.840020px;}
.ls1{letter-spacing:54.755088px;}
.ls6{letter-spacing:71.811030px;}
.ls5{letter-spacing:73.391856px;}
.ls4{letter-spacing:81.158340px;}
.ls3{letter-spacing:82.843632px;}
.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;}
}
.ws5{word-spacing:-180.468000px;}
.ws2{word-spacing:-160.385922px;}
.ws8{word-spacing:-133.669974px;}
.ws7{word-spacing:-97.632000px;}
.ws9{word-spacing:-96.578820px;}
.ws4{word-spacing:-93.596052px;}
.ws3{word-spacing:-65.075796px;}
.ws6{word-spacing:-37.704936px;}
.ws0{word-spacing:-0.192018px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-29.078334px;}
._16{margin-left:-25.800840px;}
._12{margin-left:-24.319362px;}
._e{margin-left:-19.764000px;}
._b{margin-left:-17.729592px;}
._10{margin-left:-16.124976px;}
._15{margin-left:-14.663376px;}
._3{margin-left:-12.673188px;}
._c{margin-left:-11.664000px;}
._8{margin-left:-9.342258px;}
._2{margin-left:-8.100000px;}
._11{margin-left:-7.052004px;}
._0{margin-left:-5.832000px;}
._6{margin-left:-3.888000px;}
._5{margin-left:-2.304216px;}
._7{margin-left:-1.151784px;}
._a{width:2.011002px;}
._9{width:3.299868px;}
._4{width:5.255946px;}
._1{width:9.720000px;}
._13{width:10.926042px;}
._14{width:12.596010px;}
._d{width:13.932000px;}
.fcd{color:rgb(0,87,174);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(105,93,70);}
.fc2{color:rgb(31,135,135);}
.fc5{color:rgb(67,67,67);}
.fc9{color:rgb(183,183,183);}
.fcb{color:rgb(102,102,102);}
.fcc{color:rgb(255,255,255);}
.fc3{color:rgb(118,165,175);}
.fc4{color:rgb(0,72,144);}
.fc6{color:rgb(240,98,146);}
.fc7{color:rgb(42,57,144);}
.fc8{color:rgb(153,153,153);}
.fca{color:transparent;}
.fsc{font-size:60.036000px;}
.fs8{font-size:84.018000px;}
.fs12{font-size:109.872000px;}
.fs17{font-size:121.776000px;}
.fs16{font-size:131.982000px;}
.fs15{font-size:144.054000px;}
.fsf{font-size:145.248000px;}
.fs1a{font-size:157.152000px;}
.fs14{font-size:160.212000px;}
.fsa{font-size:166.836000px;}
.fs9{font-size:168.036000px;}
.fs19{font-size:177.054000px;}
.fs2{font-size:192.018000px;}
.fs10{font-size:211.236000px;}
.fs1{font-size:216.000000px;}
.fsd{font-size:239.982000px;}
.fs13{font-size:245.934000px;}
.fs7{font-size:252.054000px;}
.fs6{font-size:263.964000px;}
.fs18{font-size:270.084000px;}
.fs11{font-size:281.988000px;}
.fs5{font-size:287.946000px;}
.fs4{font-size:324.000000px;}
.fs1b{font-size:348.660000px;}
.fse{font-size:409.212000px;}
.fs0{font-size:432.000000px;}
.fsb{font-size:479.964000px;}
.fs3{font-size:576.054000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y4d{bottom:76.918500px;}
.y4c{bottom:87.166500px;}
.y4a{bottom:100.942500px;}
.y48{bottom:104.217000px;}
.y27{bottom:114.549000px;}
.y42{bottom:164.127000px;}
.y26{bottom:164.977500px;}
.y36{bottom:181.219500px;}
.y25{bottom:215.404500px;}
.y62{bottom:230.202000px;}
.y47{bottom:240.450000px;}
.y15{bottom:255.927000px;}
.y41{bottom:263.452500px;}
.y8b{bottom:263.665500px;}
.y35{bottom:280.545000px;}
.y6{bottom:296.065500px;}
.y61{bottom:319.026000px;}
.y8a{bottom:323.872500px;}
.y77{bottom:333.015000px;}
.y14{bottom:345.345000px;}
.y6f{bottom:352.828500px;}
.y5{bottom:357.676500px;}
.y40{bottom:362.778000px;}
.y76{bottom:373.153500px;}
.y3f{bottom:373.578000px;}
.y57{bottom:378.681000px;}
.y34{bottom:379.872000px;}
.y89{bottom:410.485500px;}
.y6e{bottom:412.909500px;}
.y75{bottom:413.292000px;}
.y60{bottom:417.714000px;}
.y13{bottom:431.149500px;}
.y74{bottom:453.430500px;}
.y56{bottom:460.021500px;}
.y24{bottom:465.676500px;}
.y6d{bottom:474.265500px;}
.y88{bottom:475.030500px;}
.y3e{bottom:477.114000px;}
.y33{bottom:479.197500px;}
.y32{bottom:489.997500px;}
.y73{bottom:493.569000px;}
.y4{bottom:495.567000px;}
.y5f{bottom:498.544500px;}
.y12{bottom:520.527000px;}
.y87{bottom:535.239000px;}
.y70{bottom:550.630500px;}
.y23{bottom:562.876500px;}
.y6c{bottom:562.960500px;}
.y55{bottom:568.531500px;}
.y3d{bottom:576.439500px;}
.y3c{bottom:587.239500px;}
.y5e{bottom:587.367000px;}
.y31{bottom:593.533500px;}
.y30{bottom:604.333500px;}
.y9{bottom:616.195500px;}
.y11{bottom:620.745000px;}
.y86{bottom:621.850500px;}
.y22{bottom:632.608500px;}
.y6b{bottom:633.076500px;}
.y91{bottom:655.356000px;}
.y54{bottom:657.270000px;}
.y5d{bottom:668.197500px;}
.y85{bottom:680.316000px;}
.y21{bottom:683.037000px;}
.y3b{bottom:690.775500px;}
.y6a{bottom:706.125000px;}
.y2f{bottom:707.868000px;}
.y10{bottom:710.122500px;}
.y20{bottom:733.465500px;}
.y5c{bottom:739.162500px;}
.y84{bottom:751.068000px;}
.y90{bottom:752.727000px;}
.y53{bottom:765.780000px;}
.y3{bottom:776.494500px;}
.y69{bottom:779.173500px;}
.y1f{bottom:783.894000px;}
.y3a{bottom:790.101000px;}
.yf{bottom:799.540500px;}
.y8{bottom:802.305000px;}
.y2e{bottom:807.193500px;}
.y2d{bottom:817.993500px;}
.y83{bottom:818.206500px;}
.y1e{bottom:819.355500px;}
.y5b{bottom:827.986500px;}
.y68{bottom:839.254500px;}
.y71{bottom:844.017000px;}
.y8f{bottom:850.096500px;}
.y52{bottom:854.518500px;}
.y82{bottom:878.415000px;}
.y1d{bottom:884.155500px;}
.y39{bottom:889.428000px;}
.y2{bottom:897.123000px;}
.ye{bottom:899.760000px;}
.y67{bottom:900.610500px;}
.y5a{bottom:908.817000px;}
.y2c{bottom:921.529500px;}
.y7{bottom:926.632500px;}
.y2b{bottom:932.329500px;}
.y51{bottom:963.028500px;}
.y81{bottom:965.028000px;}
.y66{bottom:973.659000px;}
.y8e{bottom:985.905000px;}
.y38{bottom:988.753500px;}
.yd{bottom:989.136000px;}
.y59{bottom:997.639500px;}
.y37{bottom:999.553500px;}
.y46{bottom:1028.509500px;}
.y80{bottom:1029.571500px;}
.y2a{bottom:1035.865500px;}
.y7d{bottom:1044.922500px;}
.y29{bottom:1046.665500px;}
.y65{bottom:1046.707500px;}
.y8d{bottom:1064.736000px;}
.y19{bottom:1077.747000px;}
.y50{bottom:1078.938000px;}
.y7c{bottom:1081.828500px;}
.y1b{bottom:1084.294500px;}
.y58{bottom:1086.336000px;}
.yc{bottom:1089.355500px;}
.y4b{bottom:1096.413000px;}
.y72{bottom:1099.134000px;}
.y45{bottom:1099.899000px;}
.y7f{bottom:1116.184500px;}
.y7b{bottom:1118.736000px;}
.y64{bottom:1119.756000px;}
.y7a{bottom:1155.643500px;}
.y18{bottom:1156.918500px;}
.y1a{bottom:1159.894500px;}
.y44{bottom:1171.290000px;}
.y8c{bottom:1182.940500px;}
.y79{bottom:1192.549500px;}
.y4f{bottom:1194.846000px;}
.y7e{bottom:1207.134000px;}
.y63{bottom:1208.452500px;}
.y1c{bottom:1209.090000px;}
.y78{bottom:1229.457000px;}
.y17{bottom:1341.114000px;}
.yb{bottom:1344.175500px;}
.y28{bottom:1348.512000px;}
.y43{bottom:1370.283000px;}
.y4e{bottom:1384.782000px;}
.y49{bottom:1403.788500px;}
.y16{bottom:1411.059000px;}
.ya{bottom:1414.120500px;}
.h14{height:43.092246px;}
.h16{height:43.268133px;}
.hd{height:60.305889px;}
.h1e{height:90.944121px;}
.h21{height:90.950121px;}
.h26{height:93.246445px;}
.h24{height:93.252445px;}
.h23{height:97.182059px;}
.h22{height:106.071012px;}
.h20{height:107.170875px;}
.h1f{height:107.176875px;}
.h27{height:118.007183px;}
.hf{height:120.611777px;}
.h1a{height:129.886312px;}
.h19{height:129.892313px;}
.h1c{height:140.789619px;}
.h4{height:141.388254px;}
.h5{height:145.888676px;}
.h9{height:147.656250px;}
.he{height:155.039062px;}
.h3{height:159.046875px;}
.h17{height:172.252705px;}
.h29{height:173.388164px;}
.h28{height:176.705496px;}
.hc{height:180.917666px;}
.hb{height:189.466348px;}
.h25{height:198.870445px;}
.h12{height:200.466047px;}
.ha{height:206.679990px;}
.h1d{height:207.635695px;}
.h7{height:232.558594px;}
.h1b{height:238.570312px;}
.h2a{height:256.728164px;}
.h11{height:266.925942px;}
.h15{height:295.312500px;}
.h18{height:301.314305px;}
.h8{height:310.078125px;}
.h2{height:318.093750px;}
.h13{height:344.505410px;}
.h6{height:393.786914px;}
.h10{height:413.476260px;}
.h1{height:1619.956500px;}
.h0{height:1620.000000px;}
.w1{width:2915.956500px;}
.w0{width:2916.000000px;}
.x0{left:0.000000px;}
.x44{left:145.800000px;}
.x25{left:154.134000px;}
.x26{left:193.125000px;}
.x31{left:196.824000px;}
.x1{left:206.347500px;}
.x33{left:209.580000px;}
.xb{left:212.259000px;}
.xc{left:243.765000px;}
.x34{left:252.099000px;}
.x28{left:298.743000px;}
.x14{left:333.822000px;}
.x15{left:344.707500px;}
.x16{left:368.773500px;}
.x17{left:386.206500px;}
.x30{left:460.615500px;}
.x27{left:475.030500px;}
.x2a{left:499.053000px;}
.x21{left:504.666000px;}
.x10{left:524.268000px;}
.xf{left:525.586500px;}
.x32{left:702.127500px;}
.x36{left:827.263500px;}
.x2b{left:847.162500px;}
.x35{left:849.883500px;}
.xd{left:866.764500px;}
.x2f{left:898.866000px;}
.x8{left:921.613500px;}
.xa{left:1074.259500px;}
.x9{left:1116.057000px;}
.x2{left:1124.815500px;}
.x5{left:1138.507500px;}
.x1f{left:1168.015500px;}
.x20{left:1207.303500px;}
.x42{left:1213.639500px;}
.x1e{left:1222.015500px;}
.x4{left:1229.925000px;}
.x1c{left:1240.299000px;}
.x7{left:1265.428500px;}
.x6{left:1267.725000px;}
.x45{left:1276.143000px;}
.xe{left:1285.881000px;}
.x1d{left:1289.707500px;}
.x13{left:1296.723000px;}
.x3{left:1319.853000px;}
.x43{left:1321.597500px;}
.x38{left:1357.824000px;}
.x37{left:1384.143000px;}
.x39{left:1412.206500px;}
.x22{left:1569.912000px;}
.x24{left:1608.903000px;}
.x23{left:1659.501000px;}
.x29{left:1995.747000px;}
.x11{left:2127.387000px;}
.x2d{left:2132.064000px;}
.x12{left:2135.466000px;}
.x41{left:2203.114500px;}
.x3f{left:2214.510000px;}
.x40{left:2225.140500px;}
.x18{left:2238.576000px;}
.x3d{left:2240.107500px;}
.x1b{left:2242.446000px;}
.x3e{left:2244.358500px;}
.x3a{left:2248.824000px;}
.x3b{left:2261.835000px;}
.x1a{left:2269.956000px;}
.x19{left:2288.707500px;}
.x3c{left:2304.822000px;}
.x2c{left:2844.013500px;}
.x2e{left:2853.666000px;}
@media print{
.v3{vertical-align:-96.602667pt;}
.v7{vertical-align:-93.882667pt;}
.v5{vertical-align:-80.128000pt;}
.v9{vertical-align:-74.080000pt;}
.v4{vertical-align:-63.493333pt;}
.v8{vertical-align:-61.077333pt;}
.v6{vertical-align:-46.106667pt;}
.v1{vertical-align:-38.400000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:76.816000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:40.269611pt;}
.ls2{letter-spacing:46.968907pt;}
.ls1{letter-spacing:48.671189pt;}
.ls6{letter-spacing:63.832027pt;}
.ls5{letter-spacing:65.237205pt;}
.ls4{letter-spacing:72.140747pt;}
.ls3{letter-spacing:73.638784pt;}
.ws5{word-spacing:-160.416000pt;}
.ws2{word-spacing:-142.565264pt;}
.ws8{word-spacing:-118.817755pt;}
.ws7{word-spacing:-86.784000pt;}
.ws9{word-spacing:-85.847840pt;}
.ws4{word-spacing:-83.196491pt;}
.ws3{word-spacing:-57.845152pt;}
.ws6{word-spacing:-33.515499pt;}
.ws0{word-spacing:-0.170683pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-25.847408pt;}
._16{margin-left:-22.934080pt;}
._12{margin-left:-21.617211pt;}
._e{margin-left:-17.568000pt;}
._b{margin-left:-15.759637pt;}
._10{margin-left:-14.333312pt;}
._15{margin-left:-13.034112pt;}
._3{margin-left:-11.265056pt;}
._c{margin-left:-10.368000pt;}
._8{margin-left:-8.304229pt;}
._2{margin-left:-7.200000pt;}
._11{margin-left:-6.268448pt;}
._0{margin-left:-5.184000pt;}
._6{margin-left:-3.456000pt;}
._5{margin-left:-2.048192pt;}
._7{margin-left:-1.023808pt;}
._a{width:1.787557pt;}
._9{width:2.933216pt;}
._4{width:4.671952pt;}
._1{width:8.640000pt;}
._13{width:9.712037pt;}
._14{width:11.196453pt;}
._d{width:12.384000pt;}
.fsc{font-size:53.365333pt;}
.fs8{font-size:74.682667pt;}
.fs12{font-size:97.664000pt;}
.fs17{font-size:108.245333pt;}
.fs16{font-size:117.317333pt;}
.fs15{font-size:128.048000pt;}
.fsf{font-size:129.109333pt;}
.fs1a{font-size:139.690667pt;}
.fs14{font-size:142.410667pt;}
.fsa{font-size:148.298667pt;}
.fs9{font-size:149.365333pt;}
.fs19{font-size:157.381333pt;}
.fs2{font-size:170.682667pt;}
.fs10{font-size:187.765333pt;}
.fs1{font-size:192.000000pt;}
.fsd{font-size:213.317333pt;}
.fs13{font-size:218.608000pt;}
.fs7{font-size:224.048000pt;}
.fs6{font-size:234.634667pt;}
.fs18{font-size:240.074667pt;}
.fs11{font-size:250.656000pt;}
.fs5{font-size:255.952000pt;}
.fs4{font-size:288.000000pt;}
.fs1b{font-size:309.920000pt;}
.fse{font-size:363.744000pt;}
.fs0{font-size:384.000000pt;}
.fsb{font-size:426.634667pt;}
.fs3{font-size:512.048000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y4d{bottom:68.372000pt;}
.y4c{bottom:77.481333pt;}
.y4a{bottom:89.726667pt;}
.y48{bottom:92.637333pt;}
.y27{bottom:101.821333pt;}
.y42{bottom:145.890667pt;}
.y26{bottom:146.646667pt;}
.y36{bottom:161.084000pt;}
.y25{bottom:191.470667pt;}
.y62{bottom:204.624000pt;}
.y47{bottom:213.733333pt;}
.y15{bottom:227.490667pt;}
.y41{bottom:234.180000pt;}
.y8b{bottom:234.369333pt;}
.y35{bottom:249.373333pt;}
.y6{bottom:263.169333pt;}
.y61{bottom:283.578667pt;}
.y8a{bottom:287.886667pt;}
.y77{bottom:296.013333pt;}
.y14{bottom:306.973333pt;}
.y6f{bottom:313.625333pt;}
.y5{bottom:317.934667pt;}
.y40{bottom:322.469333pt;}
.y76{bottom:331.692000pt;}
.y3f{bottom:332.069333pt;}
.y57{bottom:336.605333pt;}
.y34{bottom:337.664000pt;}
.y89{bottom:364.876000pt;}
.y6e{bottom:367.030667pt;}
.y75{bottom:367.370667pt;}
.y60{bottom:371.301333pt;}
.y13{bottom:383.244000pt;}
.y74{bottom:403.049333pt;}
.y56{bottom:408.908000pt;}
.y24{bottom:413.934667pt;}
.y6d{bottom:421.569333pt;}
.y88{bottom:422.249333pt;}
.y3e{bottom:424.101333pt;}
.y33{bottom:425.953333pt;}
.y32{bottom:435.553333pt;}
.y73{bottom:438.728000pt;}
.y4{bottom:440.504000pt;}
.y5f{bottom:443.150667pt;}
.y12{bottom:462.690667pt;}
.y87{bottom:475.768000pt;}
.y70{bottom:489.449333pt;}
.y23{bottom:500.334667pt;}
.y6c{bottom:500.409333pt;}
.y55{bottom:505.361333pt;}
.y3d{bottom:512.390667pt;}
.y3c{bottom:521.990667pt;}
.y5e{bottom:522.104000pt;}
.y31{bottom:527.585333pt;}
.y30{bottom:537.185333pt;}
.y9{bottom:547.729333pt;}
.y11{bottom:551.773333pt;}
.y86{bottom:552.756000pt;}
.y22{bottom:562.318667pt;}
.y6b{bottom:562.734667pt;}
.y91{bottom:582.538667pt;}
.y54{bottom:584.240000pt;}
.y5d{bottom:593.953333pt;}
.y85{bottom:604.725333pt;}
.y21{bottom:607.144000pt;}
.y3b{bottom:614.022667pt;}
.y6a{bottom:627.666667pt;}
.y2f{bottom:629.216000pt;}
.y10{bottom:631.220000pt;}
.y20{bottom:651.969333pt;}
.y5c{bottom:657.033333pt;}
.y84{bottom:667.616000pt;}
.y90{bottom:669.090667pt;}
.y53{bottom:680.693333pt;}
.y3{bottom:690.217333pt;}
.y69{bottom:692.598667pt;}
.y1f{bottom:696.794667pt;}
.y3a{bottom:702.312000pt;}
.yf{bottom:710.702667pt;}
.y8{bottom:713.160000pt;}
.y2e{bottom:717.505333pt;}
.y2d{bottom:727.105333pt;}
.y83{bottom:727.294667pt;}
.y1e{bottom:728.316000pt;}
.y5b{bottom:735.988000pt;}
.y68{bottom:746.004000pt;}
.y71{bottom:750.237333pt;}
.y8f{bottom:755.641333pt;}
.y52{bottom:759.572000pt;}
.y82{bottom:780.813333pt;}
.y1d{bottom:785.916000pt;}
.y39{bottom:790.602667pt;}
.y2{bottom:797.442667pt;}
.ye{bottom:799.786667pt;}
.y67{bottom:800.542667pt;}
.y5a{bottom:807.837333pt;}
.y2c{bottom:819.137333pt;}
.y7{bottom:823.673333pt;}
.y2b{bottom:828.737333pt;}
.y51{bottom:856.025333pt;}
.y81{bottom:857.802667pt;}
.y66{bottom:865.474667pt;}
.y8e{bottom:876.360000pt;}
.y38{bottom:878.892000pt;}
.yd{bottom:879.232000pt;}
.y59{bottom:886.790667pt;}
.y37{bottom:888.492000pt;}
.y46{bottom:914.230667pt;}
.y80{bottom:915.174667pt;}
.y2a{bottom:920.769333pt;}
.y7d{bottom:928.820000pt;}
.y29{bottom:930.369333pt;}
.y65{bottom:930.406667pt;}
.y8d{bottom:946.432000pt;}
.y19{bottom:957.997333pt;}
.y50{bottom:959.056000pt;}
.y7c{bottom:961.625333pt;}
.y1b{bottom:963.817333pt;}
.y58{bottom:965.632000pt;}
.yc{bottom:968.316000pt;}
.y4b{bottom:974.589333pt;}
.y72{bottom:977.008000pt;}
.y45{bottom:977.688000pt;}
.y7f{bottom:992.164000pt;}
.y7b{bottom:994.432000pt;}
.y64{bottom:995.338667pt;}
.y7a{bottom:1027.238667pt;}
.y18{bottom:1028.372000pt;}
.y1a{bottom:1031.017333pt;}
.y44{bottom:1041.146667pt;}
.y8c{bottom:1051.502667pt;}
.y79{bottom:1060.044000pt;}
.y4f{bottom:1062.085333pt;}
.y7e{bottom:1073.008000pt;}
.y63{bottom:1074.180000pt;}
.y1c{bottom:1074.746667pt;}
.y78{bottom:1092.850667pt;}
.y17{bottom:1192.101333pt;}
.yb{bottom:1194.822667pt;}
.y28{bottom:1198.677333pt;}
.y43{bottom:1218.029333pt;}
.y4e{bottom:1230.917333pt;}
.y49{bottom:1247.812000pt;}
.y16{bottom:1254.274667pt;}
.ya{bottom:1256.996000pt;}
.h14{height:38.304219pt;}
.h16{height:38.460562pt;}
.hd{height:53.605234pt;}
.h1e{height:80.839219pt;}
.h21{height:80.844552pt;}
.h26{height:82.885729pt;}
.h24{height:82.891062pt;}
.h23{height:86.384052pt;}
.h22{height:94.285344pt;}
.h20{height:95.263000pt;}
.h1f{height:95.268333pt;}
.h27{height:104.895273pt;}
.hf{height:107.210469pt;}
.h1a{height:115.454500pt;}
.h19{height:115.459833pt;}
.h1c{height:125.146328pt;}
.h4{height:125.678448pt;}
.h5{height:129.678823pt;}
.h9{height:131.250000pt;}
.he{height:137.812500pt;}
.h3{height:141.375000pt;}
.h17{height:153.113516pt;}
.h29{height:154.122812pt;}
.h28{height:157.071552pt;}
.hc{height:160.815703pt;}
.hb{height:168.414531pt;}
.h25{height:176.773729pt;}
.h12{height:178.192042pt;}
.ha{height:183.715547pt;}
.h1d{height:184.565063pt;}
.h7{height:206.718750pt;}
.h1b{height:212.062500pt;}
.h2a{height:228.202812pt;}
.h11{height:237.267504pt;}
.h15{height:262.500000pt;}
.h18{height:267.834937pt;}
.h8{height:275.625000pt;}
.h2{height:282.750000pt;}
.h13{height:306.227031pt;}
.h6{height:350.032812pt;}
.h10{height:367.534453pt;}
.h1{height:1439.961333pt;}
.h0{height:1440.000000pt;}
.w1{width:2591.961333pt;}
.w0{width:2592.000000pt;}
.x0{left:0.000000pt;}
.x44{left:129.600000pt;}
.x25{left:137.008000pt;}
.x26{left:171.666667pt;}
.x31{left:174.954667pt;}
.x1{left:183.420000pt;}
.x33{left:186.293333pt;}
.xb{left:188.674667pt;}
.xc{left:216.680000pt;}
.x34{left:224.088000pt;}
.x28{left:265.549333pt;}
.x14{left:296.730667pt;}
.x15{left:306.406667pt;}
.x16{left:327.798667pt;}
.x17{left:343.294667pt;}
.x30{left:409.436000pt;}
.x27{left:422.249333pt;}
.x2a{left:443.602667pt;}
.x21{left:448.592000pt;}
.x10{left:466.016000pt;}
.xf{left:467.188000pt;}
.x32{left:624.113333pt;}
.x36{left:735.345333pt;}
.x2b{left:753.033333pt;}
.x35{left:755.452000pt;}
.xd{left:770.457333pt;}
.x2f{left:798.992000pt;}
.x8{left:819.212000pt;}
.xa{left:954.897333pt;}
.x9{left:992.050667pt;}
.x2{left:999.836000pt;}
.x5{left:1012.006667pt;}
.x1f{left:1038.236000pt;}
.x20{left:1073.158667pt;}
.x42{left:1078.790667pt;}
.x1e{left:1086.236000pt;}
.x4{left:1093.266667pt;}
.x1c{left:1102.488000pt;}
.x7{left:1124.825333pt;}
.x6{left:1126.866667pt;}
.x45{left:1134.349333pt;}
.xe{left:1143.005333pt;}
.x1d{left:1146.406667pt;}
.x13{left:1152.642667pt;}
.x3{left:1173.202667pt;}
.x43{left:1174.753333pt;}
.x38{left:1206.954667pt;}
.x37{left:1230.349333pt;}
.x39{left:1255.294667pt;}
.x22{left:1395.477333pt;}
.x24{left:1430.136000pt;}
.x23{left:1475.112000pt;}
.x29{left:1773.997333pt;}
.x11{left:1891.010667pt;}
.x2d{left:1895.168000pt;}
.x12{left:1898.192000pt;}
.x41{left:1958.324000pt;}
.x3f{left:1968.453333pt;}
.x40{left:1977.902667pt;}
.x18{left:1989.845333pt;}
.x3d{left:1991.206667pt;}
.x1b{left:1993.285333pt;}
.x3e{left:1994.985333pt;}
.x3a{left:1998.954667pt;}
.x3b{left:2010.520000pt;}
.x1a{left:2017.738667pt;}
.x19{left:2034.406667pt;}
.x3c{left:2048.730667pt;}
.x2c{left:2528.012000pt;}
.x2e{left:2536.592000pt;}
}




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