
    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_8da1cdedeefeef46a627ea70.woff2')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_1289cb80595f74b61c316f80.woff2')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_1d425e2516e99cd82a358325.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_68bc50d0a9afea082e61f38a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9f63266e7cd111099421d822.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.837891;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_75472384f624bfb7124d7e10.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747559;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_f16cbd95a7d4cf614b1d3e6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_04ee014903de95bdbc317c40.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-1.182000px;}
.ls7{letter-spacing:-0.954000px;}
.ls9{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.lsf{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.206400px;}
.lse{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.ls8{letter-spacing:0.360000px;}
.ls12{letter-spacing:11.466720px;}
.ls1{letter-spacing:16.493760px;}
.ls0{letter-spacing:16.560000px;}
.ls11{letter-spacing:41.706720px;}
.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:-59.760000px;}
.ws2{word-spacing:-16.822200px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._b{margin-left:-16.659360px;}
._4{margin-left:-8.213760px;}
._1b{margin-left:-6.909600px;}
._9{margin-left:-5.095200px;}
._a{margin-left:-3.908160px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._10{width:2.391360px;}
._13{width:3.633600px;}
._12{width:4.646640px;}
._11{width:5.871120px;}
._14{width:7.720560px;}
._18{width:9.083520px;}
._19{width:10.576080px;}
._f{width:11.774160px;}
._e{width:13.052160px;}
._16{width:16.155120px;}
._17{width:17.745600px;}
._1a{width:18.874320px;}
._1c{width:25.326000px;}
._d{width:26.535600px;}
._c{width:27.799200px;}
._15{width:29.004480px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:6.300000px;}
.ya8{bottom:29.730000px;}
.ya5{bottom:33.690000px;}
.ya7{bottom:53.130000px;}
.y6{bottom:66.240000px;}
.ya6{bottom:76.530000px;}
.y7d{bottom:96.480000px;}
.y58{bottom:110.880000px;}
.ya3{bottom:114.480000px;}
.y2a{bottom:115.200000px;}
.y7c{bottom:119.880000px;}
.y57{bottom:134.280000px;}
.ya2{bottom:137.880000px;}
.y29{bottom:138.600000px;}
.ya4{bottom:138.780000px;}
.y7b{bottom:143.280000px;}
.y56{bottom:157.710000px;}
.ya1{bottom:161.310000px;}
.y28{bottom:162.030000px;}
.y7a{bottom:166.710000px;}
.y55{bottom:181.110000px;}
.ya0{bottom:184.710000px;}
.y27{bottom:185.430000px;}
.y79{bottom:190.110000px;}
.y54{bottom:204.510000px;}
.y9f{bottom:208.110000px;}
.y26{bottom:208.830000px;}
.y78{bottom:213.510000px;}
.y9e{bottom:231.510000px;}
.y25{bottom:232.230000px;}
.y53{bottom:236.910000px;}
.y9d{bottom:254.910000px;}
.y24{bottom:255.630000px;}
.y52{bottom:260.310000px;}
.y77{bottom:269.310000px;}
.y9c{bottom:278.310000px;}
.y23{bottom:279.030000px;}
.y51{bottom:283.710000px;}
.y76{bottom:292.710000px;}
.y9b{bottom:301.710000px;}
.y22{bottom:302.430000px;}
.y50{bottom:307.110000px;}
.y75{bottom:316.110000px;}
.y9a{bottom:325.110000px;}
.y21{bottom:325.830000px;}
.y4f{bottom:330.510000px;}
.y74{bottom:339.510000px;}
.y99{bottom:348.510000px;}
.y20{bottom:349.230000px;}
.y4e{bottom:353.910000px;}
.y73{bottom:362.910000px;}
.y98{bottom:371.910000px;}
.y1f{bottom:374.790000px;}
.y4d{bottom:377.310000px;}
.y72{bottom:386.310000px;}
.y97{bottom:395.310000px;}
.y1e{bottom:398.190000px;}
.y4c{bottom:400.755000px;}
.y71{bottom:409.755000px;}
.y96{bottom:418.755000px;}
.y4b{bottom:424.155000px;}
.y1d{bottom:430.635000px;}
.y70{bottom:433.155000px;}
.y95{bottom:442.155000px;}
.y4a{bottom:447.555000px;}
.y1c{bottom:454.035000px;}
.y6f{bottom:456.555000px;}
.y94{bottom:465.555000px;}
.y49{bottom:470.955000px;}
.y1b{bottom:477.435000px;}
.y6e{bottom:479.955000px;}
.y93{bottom:488.955000px;}
.y48{bottom:494.355000px;}
.y1a{bottom:500.835000px;}
.y6d{bottom:503.355000px;}
.y92{bottom:512.355000px;}
.y47{bottom:517.755000px;}
.y19{bottom:524.235000px;}
.y6c{bottom:526.755000px;}
.y91{bottom:535.755000px;}
.y46{bottom:541.155000px;}
.y18{bottom:547.635000px;}
.y6b{bottom:550.155000px;}
.y90{bottom:559.155000px;}
.y45{bottom:564.555000px;}
.y17{bottom:571.035000px;}
.y6a{bottom:573.555000px;}
.y8f{bottom:582.555000px;}
.y44{bottom:587.955000px;}
.y16{bottom:594.435000px;}
.y69{bottom:596.955000px;}
.y8e{bottom:605.955000px;}
.y43{bottom:611.355000px;}
.y15{bottom:617.835000px;}
.y68{bottom:620.355000px;}
.y8d{bottom:629.355000px;}
.y42{bottom:634.755000px;}
.y14{bottom:641.235000px;}
.y67{bottom:643.755000px;}
.y8c{bottom:652.785000px;}
.y41{bottom:658.185000px;}
.y13{bottom:664.665000px;}
.y66{bottom:667.185000px;}
.y8b{bottom:676.185000px;}
.y40{bottom:681.585000px;}
.y12{bottom:688.065000px;}
.y65{bottom:690.585000px;}
.y8a{bottom:699.585000px;}
.y3f{bottom:704.985000px;}
.y11{bottom:711.465000px;}
.y64{bottom:713.985000px;}
.y89{bottom:722.985000px;}
.y3e{bottom:728.385000px;}
.y10{bottom:737.205000px;}
.y63{bottom:737.385000px;}
.y88{bottom:746.385000px;}
.y3d{bottom:751.785000px;}
.y62{bottom:760.785000px;}
.yf{bottom:765.825000px;}
.y87{bottom:769.785000px;}
.y3c{bottom:775.185000px;}
.y61{bottom:784.185000px;}
.ye{bottom:789.225000px;}
.y86{bottom:793.185000px;}
.y3b{bottom:798.585000px;}
.y60{bottom:807.585000px;}
.yd{bottom:812.625000px;}
.y85{bottom:816.585000px;}
.y3a{bottom:821.985000px;}
.y5f{bottom:830.985000px;}
.yc{bottom:836.025000px;}
.y84{bottom:839.985000px;}
.y39{bottom:845.385000px;}
.yb{bottom:853.665000px;}
.y5e{bottom:854.385000px;}
.y83{bottom:863.385000px;}
.ya{bottom:877.605000px;}
.y38{bottom:877.785000px;}
.y82{bottom:886.785000px;}
.y37{bottom:901.230000px;}
.y81{bottom:910.230000px;}
.y9{bottom:910.590000px;}
.y36{bottom:924.630000px;}
.y80{bottom:933.630000px;}
.y35{bottom:948.030000px;}
.y7f{bottom:957.030000px;}
.y8{bottom:957.390000px;}
.y34{bottom:971.430000px;}
.y7e{bottom:980.430000px;}
.y33{bottom:994.830000px;}
.y5d{bottom:1003.830000px;}
.y7{bottom:1004.190000px;}
.y32{bottom:1018.230000px;}
.y5c{bottom:1027.230000px;}
.y31{bottom:1041.630000px;}
.y5b{bottom:1050.630000px;}
.y5{bottom:1051.170000px;}
.y30{bottom:1065.030000px;}
.y5a{bottom:1074.030000px;}
.y4{bottom:1081.950000px;}
.y2f{bottom:1088.430000px;}
.y59{bottom:1097.430000px;}
.y3{bottom:1112.730000px;}
.y2e{bottom:1120.830000px;}
.y2{bottom:1143.690000px;}
.y2d{bottom:1144.230000px;}
.y2c{bottom:1174.500000px;}
.y1{bottom:1177.560000px;}
.y2b{bottom:1193.760000px;}
.hd{height:2.019375px;}
.h8{height:27.261563px;}
.h9{height:41.902031px;}
.h6{height:42.164648px;}
.hb{height:43.506914px;}
.h4{height:46.445625px;}
.h3{height:46.736719px;}
.h7{height:53.224453px;}
.h5{height:59.436914px;}
.ha{height:64.875938px;}
.h2{height:67.565039px;}
.hc{height:93.636000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.785000px;}
.x1{left:54.179987px;}
.x3{left:75.239987px;}
.x2{left:85.535987px;}
.x4{left:102.275987px;}
.x5{left:191.370000px;}
.x6{left:264.810000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-1.050667pt;}
.ls7{letter-spacing:-0.848000pt;}
.ls9{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.183467pt;}
.lse{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.ls8{letter-spacing:0.320000pt;}
.ls12{letter-spacing:10.192640pt;}
.ls1{letter-spacing:14.661120pt;}
.ls0{letter-spacing:14.720000pt;}
.ls11{letter-spacing:37.072640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.953067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.096533pt;}
.wsb{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._b{margin-left:-14.808320pt;}
._4{margin-left:-7.301120pt;}
._1b{margin-left:-6.141867pt;}
._9{margin-left:-4.529067pt;}
._a{margin-left:-3.473920pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._10{width:2.125653pt;}
._13{width:3.229867pt;}
._12{width:4.130347pt;}
._11{width:5.218773pt;}
._14{width:6.862720pt;}
._18{width:8.074240pt;}
._19{width:9.400960pt;}
._f{width:10.465920pt;}
._e{width:11.601920pt;}
._16{width:14.360107pt;}
._17{width:15.773867pt;}
._1a{width:16.777173pt;}
._1c{width:22.512000pt;}
._d{width:23.587200pt;}
._c{width:24.710400pt;}
._15{width:25.781760pt;}
.fs8{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:5.600000pt;}
.ya8{bottom:26.426667pt;}
.ya5{bottom:29.946667pt;}
.ya7{bottom:47.226667pt;}
.y6{bottom:58.880000pt;}
.ya6{bottom:68.026667pt;}
.y7d{bottom:85.760000pt;}
.y58{bottom:98.560000pt;}
.ya3{bottom:101.760000pt;}
.y2a{bottom:102.400000pt;}
.y7c{bottom:106.560000pt;}
.y57{bottom:119.360000pt;}
.ya2{bottom:122.560000pt;}
.y29{bottom:123.200000pt;}
.ya4{bottom:123.360000pt;}
.y7b{bottom:127.360000pt;}
.y56{bottom:140.186667pt;}
.ya1{bottom:143.386667pt;}
.y28{bottom:144.026667pt;}
.y7a{bottom:148.186667pt;}
.y55{bottom:160.986667pt;}
.ya0{bottom:164.186667pt;}
.y27{bottom:164.826667pt;}
.y79{bottom:168.986667pt;}
.y54{bottom:181.786667pt;}
.y9f{bottom:184.986667pt;}
.y26{bottom:185.626667pt;}
.y78{bottom:189.786667pt;}
.y9e{bottom:205.786667pt;}
.y25{bottom:206.426667pt;}
.y53{bottom:210.586667pt;}
.y9d{bottom:226.586667pt;}
.y24{bottom:227.226667pt;}
.y52{bottom:231.386667pt;}
.y77{bottom:239.386667pt;}
.y9c{bottom:247.386667pt;}
.y23{bottom:248.026667pt;}
.y51{bottom:252.186667pt;}
.y76{bottom:260.186667pt;}
.y9b{bottom:268.186667pt;}
.y22{bottom:268.826667pt;}
.y50{bottom:272.986667pt;}
.y75{bottom:280.986667pt;}
.y9a{bottom:288.986667pt;}
.y21{bottom:289.626667pt;}
.y4f{bottom:293.786667pt;}
.y74{bottom:301.786667pt;}
.y99{bottom:309.786667pt;}
.y20{bottom:310.426667pt;}
.y4e{bottom:314.586667pt;}
.y73{bottom:322.586667pt;}
.y98{bottom:330.586667pt;}
.y1f{bottom:333.146667pt;}
.y4d{bottom:335.386667pt;}
.y72{bottom:343.386667pt;}
.y97{bottom:351.386667pt;}
.y1e{bottom:353.946667pt;}
.y4c{bottom:356.226667pt;}
.y71{bottom:364.226667pt;}
.y96{bottom:372.226667pt;}
.y4b{bottom:377.026667pt;}
.y1d{bottom:382.786667pt;}
.y70{bottom:385.026667pt;}
.y95{bottom:393.026667pt;}
.y4a{bottom:397.826667pt;}
.y1c{bottom:403.586667pt;}
.y6f{bottom:405.826667pt;}
.y94{bottom:413.826667pt;}
.y49{bottom:418.626667pt;}
.y1b{bottom:424.386667pt;}
.y6e{bottom:426.626667pt;}
.y93{bottom:434.626667pt;}
.y48{bottom:439.426667pt;}
.y1a{bottom:445.186667pt;}
.y6d{bottom:447.426667pt;}
.y92{bottom:455.426667pt;}
.y47{bottom:460.226667pt;}
.y19{bottom:465.986667pt;}
.y6c{bottom:468.226667pt;}
.y91{bottom:476.226667pt;}
.y46{bottom:481.026667pt;}
.y18{bottom:486.786667pt;}
.y6b{bottom:489.026667pt;}
.y90{bottom:497.026667pt;}
.y45{bottom:501.826667pt;}
.y17{bottom:507.586667pt;}
.y6a{bottom:509.826667pt;}
.y8f{bottom:517.826667pt;}
.y44{bottom:522.626667pt;}
.y16{bottom:528.386667pt;}
.y69{bottom:530.626667pt;}
.y8e{bottom:538.626667pt;}
.y43{bottom:543.426667pt;}
.y15{bottom:549.186667pt;}
.y68{bottom:551.426667pt;}
.y8d{bottom:559.426667pt;}
.y42{bottom:564.226667pt;}
.y14{bottom:569.986667pt;}
.y67{bottom:572.226667pt;}
.y8c{bottom:580.253333pt;}
.y41{bottom:585.053333pt;}
.y13{bottom:590.813333pt;}
.y66{bottom:593.053333pt;}
.y8b{bottom:601.053333pt;}
.y40{bottom:605.853333pt;}
.y12{bottom:611.613333pt;}
.y65{bottom:613.853333pt;}
.y8a{bottom:621.853333pt;}
.y3f{bottom:626.653333pt;}
.y11{bottom:632.413333pt;}
.y64{bottom:634.653333pt;}
.y89{bottom:642.653333pt;}
.y3e{bottom:647.453333pt;}
.y10{bottom:655.293333pt;}
.y63{bottom:655.453333pt;}
.y88{bottom:663.453333pt;}
.y3d{bottom:668.253333pt;}
.y62{bottom:676.253333pt;}
.yf{bottom:680.733333pt;}
.y87{bottom:684.253333pt;}
.y3c{bottom:689.053333pt;}
.y61{bottom:697.053333pt;}
.ye{bottom:701.533333pt;}
.y86{bottom:705.053333pt;}
.y3b{bottom:709.853333pt;}
.y60{bottom:717.853333pt;}
.yd{bottom:722.333333pt;}
.y85{bottom:725.853333pt;}
.y3a{bottom:730.653333pt;}
.y5f{bottom:738.653333pt;}
.yc{bottom:743.133333pt;}
.y84{bottom:746.653333pt;}
.y39{bottom:751.453333pt;}
.yb{bottom:758.813333pt;}
.y5e{bottom:759.453333pt;}
.y83{bottom:767.453333pt;}
.ya{bottom:780.093333pt;}
.y38{bottom:780.253333pt;}
.y82{bottom:788.253333pt;}
.y37{bottom:801.093333pt;}
.y81{bottom:809.093333pt;}
.y9{bottom:809.413333pt;}
.y36{bottom:821.893333pt;}
.y80{bottom:829.893333pt;}
.y35{bottom:842.693333pt;}
.y7f{bottom:850.693333pt;}
.y8{bottom:851.013333pt;}
.y34{bottom:863.493333pt;}
.y7e{bottom:871.493333pt;}
.y33{bottom:884.293333pt;}
.y5d{bottom:892.293333pt;}
.y7{bottom:892.613333pt;}
.y32{bottom:905.093333pt;}
.y5c{bottom:913.093333pt;}
.y31{bottom:925.893333pt;}
.y5b{bottom:933.893333pt;}
.y5{bottom:934.373333pt;}
.y30{bottom:946.693333pt;}
.y5a{bottom:954.693333pt;}
.y4{bottom:961.733333pt;}
.y2f{bottom:967.493333pt;}
.y59{bottom:975.493333pt;}
.y3{bottom:989.093333pt;}
.y2e{bottom:996.293333pt;}
.y2{bottom:1016.613333pt;}
.y2d{bottom:1017.093333pt;}
.y2c{bottom:1044.000000pt;}
.y1{bottom:1046.720000pt;}
.y2b{bottom:1061.120000pt;}
.hd{height:1.795000pt;}
.h8{height:24.232500pt;}
.h9{height:37.246250pt;}
.h6{height:37.479688pt;}
.hb{height:38.672812pt;}
.h4{height:41.285000pt;}
.h3{height:41.543750pt;}
.h7{height:47.310625pt;}
.h5{height:52.832812pt;}
.ha{height:57.667500pt;}
.h2{height:60.057813pt;}
.hc{height:83.232000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.920000pt;}
.x1{left:48.159988pt;}
.x3{left:66.879988pt;}
.x2{left:76.031988pt;}
.x4{left:90.911988pt;}
.x5{left:170.106667pt;}
.x6{left:235.386667pt;}
}




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