
    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_6df3e48e8501876f53ab615f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_35fde03e4fca7cd4f69c6369.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6e8a565a24a6dc1883ef78e5.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_beeaa36ae10e0fd81f4c32f7.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d1625ef990566392f9e16697.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_512ecb2a5d80389593a62183.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_d56c16414cfe4623205188a4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064453;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_3e5baee29430a202a860f9dc.woff')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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_db97c7081f3b3a818a2d195f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.037440px;}
.ls1b{letter-spacing:0.049440px;}
.ls1f{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.378600px;}
.ls14{letter-spacing:2.160000px;}
.lsd{letter-spacing:5.040000px;}
.ls10{letter-spacing:7.200000px;}
.ls12{letter-spacing:9.360000px;}
.lsf{letter-spacing:12.240000px;}
.ls4{letter-spacing:13.080000px;}
.lsc{letter-spacing:13.680000px;}
.ls5{letter-spacing:15.120000px;}
.lsa{letter-spacing:17.280000px;}
.ls7{letter-spacing:19.440000px;}
.ls8{letter-spacing:20.160000px;}
.ls11{letter-spacing:33.120000px;}
.ls1d{letter-spacing:33.840000px;}
.lsb{letter-spacing:41.040000px;}
.ls1e{letter-spacing:41.381280px;}
.ls1a{letter-spacing:46.080000px;}
.ls2{letter-spacing:66.420000px;}
.ls1{letter-spacing:77.309760px;}
.ls6{letter-spacing:108.341280px;}
.ls0{letter-spacing:111.029760px;}
.ls9{letter-spacing:112.661280px;}
.ls15{letter-spacing:119.861280px;}
.ls1c{letter-spacing:122.741280px;}
.ls13{letter-spacing:124.181280px;}
.lse{letter-spacing:139.104000px;}
.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:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.031920px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._1{width:1.532160px;}
._13{width:2.880000px;}
._12{width:3.996000px;}
._f{width:5.472000px;}
._e{width:6.552000px;}
._17{width:8.352000px;}
._26{width:9.984000px;}
._25{width:11.316000px;}
._6{width:12.384000px;}
._23{width:13.959840px;}
._16{width:15.588000px;}
._15{width:16.632000px;}
._1d{width:19.296000px;}
._24{width:20.349360px;}
._20{width:21.456000px;}
._21{width:23.040000px;}
._22{width:24.192000px;}
._1e{width:25.200000px;}
._1f{width:26.616000px;}
._27{width:28.215840px;}
._7{width:29.232000px;}
._1c{width:31.440000px;}
._d{width:32.976000px;}
._4{width:34.128000px;}
._5{width:35.280000px;}
._29{width:36.576000px;}
._2a{width:37.635840px;}
._34{width:38.704320px;}
._10{width:40.464000px;}
._b{width:41.640000px;}
._a{width:43.032000px;}
._9{width:44.208000px;}
._8{width:45.792000px;}
._28{width:47.126640px;}
._3{width:48.528000px;}
._2{width:49.944000px;}
._35{width:53.244000px;}
._36{width:54.900000px;}
._19{width:57.744000px;}
._1a{width:58.908000px;}
._33{width:60.840000px;}
._18{width:65.244000px;}
._c{width:67.464000px;}
._11{width:69.264000px;}
._1b{width:75.960000px;}
._32{width:83.340000px;}
._31{width:84.600000px;}
._14{width:90.000000px;}
._2f{width:122.112000px;}
._30{width:123.336000px;}
._2b{width:202.824000px;}
._2c{width:203.991840px;}
._2e{width:307.224000px;}
._2d{width:308.304000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc5{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,56,100);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:10.260000px;}
.y6{bottom:11.340000px;}
.y7{bottom:55.440000px;}
.y4{bottom:57.600000px;}
.y5c{bottom:122.976000px;}
.y31{bottom:131.976000px;}
.y85{bottom:133.056000px;}
.y5b{bottom:149.796000px;}
.y30{bottom:155.730000px;}
.y84{bottom:156.810000px;}
.y5a{bottom:173.370000px;}
.y2f{bottom:179.670000px;}
.y83{bottom:183.450000px;}
.y59{bottom:200.190000px;}
.y2e{bottom:203.430000px;}
.y82{bottom:207.210000px;}
.y58{bottom:223.950000px;}
.y2d{bottom:227.190000px;}
.y81{bottom:230.970000px;}
.y57{bottom:247.710000px;}
.y2c{bottom:250.950000px;}
.y80{bottom:257.610000px;}
.y56{bottom:271.470000px;}
.y2b{bottom:274.710000px;}
.y7f{bottom:281.370000px;}
.y55{bottom:295.410000px;}
.y2a{bottom:298.650000px;}
.y7e{bottom:305.130000px;}
.y54{bottom:319.170000px;}
.y29{bottom:322.410000px;}
.y7d{bottom:331.770000px;}
.y53{bottom:342.975000px;}
.y28{bottom:346.215000px;}
.y7c{bottom:355.755000px;}
.y52{bottom:366.735000px;}
.y27{bottom:369.975000px;}
.y7b{bottom:379.335000px;}
.y51{bottom:390.675000px;}
.y26{bottom:393.915000px;}
.y7a{bottom:406.155000px;}
.y50{bottom:414.435000px;}
.y25{bottom:417.675000px;}
.y79{bottom:429.915000px;}
.y4f{bottom:438.195000px;}
.y24{bottom:441.435000px;}
.y78{bottom:453.675000px;}
.y4e{bottom:461.955000px;}
.y23{bottom:465.195000px;}
.y77{bottom:477.435000px;}
.y4d{bottom:485.715000px;}
.y22{bottom:489.135000px;}
.y76{bottom:504.075000px;}
.y4c{bottom:509.655000px;}
.y21{bottom:512.895000px;}
.y75{bottom:527.835000px;}
.y4b{bottom:533.415000px;}
.y20{bottom:536.655000px;}
.y74{bottom:551.775000px;}
.y4a{bottom:557.175000px;}
.y1f{bottom:560.415000px;}
.y73{bottom:575.355000px;}
.y49{bottom:580.935000px;}
.y1e{bottom:584.355000px;}
.y72{bottom:602.175000px;}
.y48{bottom:604.905000px;}
.y1d{bottom:608.145000px;}
.y71{bottom:625.965000px;}
.y47{bottom:628.665000px;}
.y1c{bottom:631.905000px;}
.y70{bottom:649.725000px;}
.y46{bottom:652.425000px;}
.y1b{bottom:655.665000px;}
.y6f{bottom:673.485000px;}
.y45{bottom:676.185000px;}
.y1a{bottom:679.605000px;}
.y6e{bottom:697.425000px;}
.y44{bottom:699.945000px;}
.y19{bottom:703.365000px;}
.y6d{bottom:721.185000px;}
.y43{bottom:726.585000px;}
.y18{bottom:727.125000px;}
.y6c{bottom:744.945000px;}
.y42{bottom:750.345000px;}
.y17{bottom:750.885000px;}
.y6b{bottom:768.705000px;}
.y16{bottom:774.825000px;}
.y41{bottom:776.985000px;}
.y6a{bottom:792.645000px;}
.y15{bottom:798.585000px;}
.y40{bottom:800.745000px;}
.y69{bottom:816.405000px;}
.y14{bottom:822.345000px;}
.y3f{bottom:827.565000px;}
.y68{bottom:840.165000px;}
.y13{bottom:846.105000px;}
.y3e{bottom:851.145000px;}
.y67{bottom:865.905000px;}
.y12{bottom:869.865000px;}
.y3d{bottom:878.010000px;}
.y66{bottom:891.870000px;}
.y11{bottom:893.850000px;}
.y3c{bottom:901.770000px;}
.y10{bottom:917.610000px;}
.y65{bottom:917.790000px;}
.y88{bottom:919.950000px;}
.y3b{bottom:925.530000px;}
.yf{bottom:941.370000px;}
.y64{bottom:943.710000px;}
.y3a{bottom:949.290000px;}
.ye{bottom:965.130000px;}
.y63{bottom:967.470000px;}
.y39{bottom:973.050000px;}
.yd{bottom:989.070000px;}
.y62{bottom:991.410000px;}
.y38{bottom:996.990000px;}
.yc{bottom:1012.830000px;}
.y61{bottom:1015.170000px;}
.y37{bottom:1020.750000px;}
.yb{bottom:1038.930000px;}
.y36{bottom:1044.510000px;}
.y60{bottom:1062.690000px;}
.y87{bottom:1065.570000px;}
.y35{bottom:1068.270000px;}
.ya{bottom:1070.790000px;}
.y5f{bottom:1086.450000px;}
.y86{bottom:1089.330000px;}
.y34{bottom:1092.210000px;}
.y9{bottom:1102.470000px;}
.y5e{bottom:1113.090000px;}
.y33{bottom:1115.970000px;}
.y8{bottom:1134.150000px;}
.y5d{bottom:1136.850000px;}
.y32{bottom:1139.760000px;}
.y3{bottom:1185.120000px;}
.y2{bottom:1200.780000px;}
.y1{bottom:1216.260000px;}
.h6{height:5.076563px;}
.h3{height:27.036000px;}
.h2{height:38.100586px;}
.h8{height:50.800781px;}
.h9{height:51.996094px;}
.ha{height:61.101562px;}
.h4{height:63.457031px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.hb{height:74.244727px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x4{left:87.660000px;}
.x9{left:95.795987px;}
.x1{left:99.395987px;}
.xa{left:108.395987px;}
.x10{left:120.635987px;}
.x2{left:122.615987px;}
.x14{left:127.835987px;}
.x13{left:138.275987px;}
.xc{left:145.835987px;}
.x12{left:148.895987px;}
.xb{left:196.409987px;}
.x11{left:295.814987px;}
.x5{left:297.795000px;}
.xd{left:337.214987px;}
.xf{left:338.294987px;}
.x3{left:378.434987px;}
.x6{left:393.915000px;}
.xe{left:446.474987px;}
.x8{left:500.145000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.033280pt;}
.ls1b{letter-spacing:0.043947pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.336533pt;}
.ls14{letter-spacing:1.920000pt;}
.lsd{letter-spacing:4.480000pt;}
.ls10{letter-spacing:6.400000pt;}
.ls12{letter-spacing:8.320000pt;}
.lsf{letter-spacing:10.880000pt;}
.ls4{letter-spacing:11.626667pt;}
.lsc{letter-spacing:12.160000pt;}
.ls5{letter-spacing:13.440000pt;}
.lsa{letter-spacing:15.360000pt;}
.ls7{letter-spacing:17.280000pt;}
.ls8{letter-spacing:17.920000pt;}
.ls11{letter-spacing:29.440000pt;}
.ls1d{letter-spacing:30.080000pt;}
.lsb{letter-spacing:36.480000pt;}
.ls1e{letter-spacing:36.783360pt;}
.ls1a{letter-spacing:40.960000pt;}
.ls2{letter-spacing:59.040000pt;}
.ls1{letter-spacing:68.719787pt;}
.ls6{letter-spacing:96.303360pt;}
.ls0{letter-spacing:98.693120pt;}
.ls9{letter-spacing:100.143360pt;}
.ls15{letter-spacing:106.543360pt;}
.ls1c{letter-spacing:109.103360pt;}
.ls13{letter-spacing:110.383360pt;}
.lse{letter-spacing:123.648000pt;}
.ws2{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.695040pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.361920pt;}
._13{width:2.560000pt;}
._12{width:3.552000pt;}
._f{width:4.864000pt;}
._e{width:5.824000pt;}
._17{width:7.424000pt;}
._26{width:8.874667pt;}
._25{width:10.058667pt;}
._6{width:11.008000pt;}
._23{width:12.408747pt;}
._16{width:13.856000pt;}
._15{width:14.784000pt;}
._1d{width:17.152000pt;}
._24{width:18.088320pt;}
._20{width:19.072000pt;}
._21{width:20.480000pt;}
._22{width:21.504000pt;}
._1e{width:22.400000pt;}
._1f{width:23.658667pt;}
._27{width:25.080747pt;}
._7{width:25.984000pt;}
._1c{width:27.946667pt;}
._d{width:29.312000pt;}
._4{width:30.336000pt;}
._5{width:31.360000pt;}
._29{width:32.512000pt;}
._2a{width:33.454080pt;}
._34{width:34.403840pt;}
._10{width:35.968000pt;}
._b{width:37.013333pt;}
._a{width:38.250667pt;}
._9{width:39.296000pt;}
._8{width:40.704000pt;}
._28{width:41.890347pt;}
._3{width:43.136000pt;}
._2{width:44.394667pt;}
._35{width:47.328000pt;}
._36{width:48.800000pt;}
._19{width:51.328000pt;}
._1a{width:52.362667pt;}
._33{width:54.080000pt;}
._18{width:57.994667pt;}
._c{width:59.968000pt;}
._11{width:61.568000pt;}
._1b{width:67.520000pt;}
._32{width:74.080000pt;}
._31{width:75.200000pt;}
._14{width:80.000000pt;}
._2f{width:108.544000pt;}
._30{width:109.632000pt;}
._2b{width:180.288000pt;}
._2c{width:181.326080pt;}
._2e{width:273.088000pt;}
._2d{width:274.048000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:9.120000pt;}
.y6{bottom:10.080000pt;}
.y7{bottom:49.280000pt;}
.y4{bottom:51.200000pt;}
.y5c{bottom:109.312000pt;}
.y31{bottom:117.312000pt;}
.y85{bottom:118.272000pt;}
.y5b{bottom:133.152000pt;}
.y30{bottom:138.426667pt;}
.y84{bottom:139.386667pt;}
.y5a{bottom:154.106667pt;}
.y2f{bottom:159.706667pt;}
.y83{bottom:163.066667pt;}
.y59{bottom:177.946667pt;}
.y2e{bottom:180.826667pt;}
.y82{bottom:184.186667pt;}
.y58{bottom:199.066667pt;}
.y2d{bottom:201.946667pt;}
.y81{bottom:205.306667pt;}
.y57{bottom:220.186667pt;}
.y2c{bottom:223.066667pt;}
.y80{bottom:228.986667pt;}
.y56{bottom:241.306667pt;}
.y2b{bottom:244.186667pt;}
.y7f{bottom:250.106667pt;}
.y55{bottom:262.586667pt;}
.y2a{bottom:265.466667pt;}
.y7e{bottom:271.226667pt;}
.y54{bottom:283.706667pt;}
.y29{bottom:286.586667pt;}
.y7d{bottom:294.906667pt;}
.y53{bottom:304.866667pt;}
.y28{bottom:307.746667pt;}
.y7c{bottom:316.226667pt;}
.y52{bottom:325.986667pt;}
.y27{bottom:328.866667pt;}
.y7b{bottom:337.186667pt;}
.y51{bottom:347.266667pt;}
.y26{bottom:350.146667pt;}
.y7a{bottom:361.026667pt;}
.y50{bottom:368.386667pt;}
.y25{bottom:371.266667pt;}
.y79{bottom:382.146667pt;}
.y4f{bottom:389.506667pt;}
.y24{bottom:392.386667pt;}
.y78{bottom:403.266667pt;}
.y4e{bottom:410.626667pt;}
.y23{bottom:413.506667pt;}
.y77{bottom:424.386667pt;}
.y4d{bottom:431.746667pt;}
.y22{bottom:434.786667pt;}
.y76{bottom:448.066667pt;}
.y4c{bottom:453.026667pt;}
.y21{bottom:455.906667pt;}
.y75{bottom:469.186667pt;}
.y4b{bottom:474.146667pt;}
.y20{bottom:477.026667pt;}
.y74{bottom:490.466667pt;}
.y4a{bottom:495.266667pt;}
.y1f{bottom:498.146667pt;}
.y73{bottom:511.426667pt;}
.y49{bottom:516.386667pt;}
.y1e{bottom:519.426667pt;}
.y72{bottom:535.266667pt;}
.y48{bottom:537.693333pt;}
.y1d{bottom:540.573333pt;}
.y71{bottom:556.413333pt;}
.y47{bottom:558.813333pt;}
.y1c{bottom:561.693333pt;}
.y70{bottom:577.533333pt;}
.y46{bottom:579.933333pt;}
.y1b{bottom:582.813333pt;}
.y6f{bottom:598.653333pt;}
.y45{bottom:601.053333pt;}
.y1a{bottom:604.093333pt;}
.y6e{bottom:619.933333pt;}
.y44{bottom:622.173333pt;}
.y19{bottom:625.213333pt;}
.y6d{bottom:641.053333pt;}
.y43{bottom:645.853333pt;}
.y18{bottom:646.333333pt;}
.y6c{bottom:662.173333pt;}
.y42{bottom:666.973333pt;}
.y17{bottom:667.453333pt;}
.y6b{bottom:683.293333pt;}
.y16{bottom:688.733333pt;}
.y41{bottom:690.653333pt;}
.y6a{bottom:704.573333pt;}
.y15{bottom:709.853333pt;}
.y40{bottom:711.773333pt;}
.y69{bottom:725.693333pt;}
.y14{bottom:730.973333pt;}
.y3f{bottom:735.613333pt;}
.y68{bottom:746.813333pt;}
.y13{bottom:752.093333pt;}
.y3e{bottom:756.573333pt;}
.y67{bottom:769.693333pt;}
.y12{bottom:773.213333pt;}
.y3d{bottom:780.453333pt;}
.y66{bottom:792.773333pt;}
.y11{bottom:794.533333pt;}
.y3c{bottom:801.573333pt;}
.y10{bottom:815.653333pt;}
.y65{bottom:815.813333pt;}
.y88{bottom:817.733333pt;}
.y3b{bottom:822.693333pt;}
.yf{bottom:836.773333pt;}
.y64{bottom:838.853333pt;}
.y3a{bottom:843.813333pt;}
.ye{bottom:857.893333pt;}
.y63{bottom:859.973333pt;}
.y39{bottom:864.933333pt;}
.yd{bottom:879.173333pt;}
.y62{bottom:881.253333pt;}
.y38{bottom:886.213333pt;}
.yc{bottom:900.293333pt;}
.y61{bottom:902.373333pt;}
.y37{bottom:907.333333pt;}
.yb{bottom:923.493333pt;}
.y36{bottom:928.453333pt;}
.y60{bottom:944.613333pt;}
.y87{bottom:947.173333pt;}
.y35{bottom:949.573333pt;}
.ya{bottom:951.813333pt;}
.y5f{bottom:965.733333pt;}
.y86{bottom:968.293333pt;}
.y34{bottom:970.853333pt;}
.y9{bottom:979.973333pt;}
.y5e{bottom:989.413333pt;}
.y33{bottom:991.973333pt;}
.y8{bottom:1008.133333pt;}
.y5d{bottom:1010.533333pt;}
.y32{bottom:1013.120000pt;}
.y3{bottom:1053.440000pt;}
.y2{bottom:1067.360000pt;}
.y1{bottom:1081.120000pt;}
.h6{height:4.512500pt;}
.h3{height:24.032000pt;}
.h2{height:33.867188pt;}
.h8{height:45.156250pt;}
.h9{height:46.218750pt;}
.ha{height:54.312500pt;}
.h4{height:56.406250pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.hb{height:65.995312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x4{left:77.920000pt;}
.x9{left:85.151988pt;}
.x1{left:88.351988pt;}
.xa{left:96.351988pt;}
.x10{left:107.231988pt;}
.x2{left:108.991988pt;}
.x14{left:113.631988pt;}
.x13{left:122.911988pt;}
.xc{left:129.631988pt;}
.x12{left:132.351988pt;}
.xb{left:174.586655pt;}
.x11{left:262.946655pt;}
.x5{left:264.706667pt;}
.xd{left:299.746655pt;}
.xf{left:300.706655pt;}
.x3{left:336.386655pt;}
.x6{left:350.146667pt;}
.xe{left:396.866655pt;}
.x8{left:444.573333pt;}
}




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