
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c5a1a95030a9c916e1979a75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945312;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_18e2e66a6a0fd85bc3e22188.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_7c2982318fff03dbabd3c862.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_3f84c1c2822cf8900c3f0f09.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_6ac774a67cbd320dc2b6467c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_a8615da7cedcd5318e87f4b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8707604f08f19f2b9719329c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b63d08b2049ff6595d1c0ca6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fb4c6fc55b643c94c93570ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a0d772ce022bfc37663f69b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976562;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:ffc;src:url('chunks/assets/font_f844bd44011a9b0fb36a278a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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:ffe;src:url('chunks/assets/font_132feb32c36eaa3001a80115.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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:fff;src:url('chunks/assets/font_e27e0302a22cd1ccfc1d03e5.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.515400px;}
.ls5{letter-spacing:-0.334200px;}
.ls6{letter-spacing:-0.308400px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.083400px;}
.ls3{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.222000px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.403200px;}
.lsb{letter-spacing:36.944640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-66.240000px;}
.ws6{word-spacing:-54.720000px;}
.wsc{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.190600px;}
.ws5{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.238600px;}
.ws3{word-spacing:-14.057400px;}
.ws8{word-spacing:-13.680000px;}
.ws7{word-spacing:-12.600000px;}
.ws9{word-spacing:-10.676400px;}
.wsa{word-spacing:-10.454400px;}
.wsb{word-spacing:0.000000px;}
._5{margin-left:-3.386880px;}
._2{margin-left:-1.523520px;}
._1{width:1.002240px;}
._0{width:2.338560px;}
._4{width:3.669120px;}
._20{width:4.694400px;}
._a{width:5.696640px;}
._9{width:7.021440px;}
._e{width:8.147520px;}
._b{width:9.273600px;}
._14{width:10.301760px;}
._2d{width:11.304000px;}
._8{width:12.312000px;}
._f{width:14.094720px;}
._6{width:15.292800px;}
._7{width:18.472320px;}
._c{width:20.191680px;}
._d{width:21.329280px;}
._1a{width:22.397760px;}
._1b{width:23.849280px;}
._18{width:25.822080px;}
._19{width:27.236160px;}
._3b{width:28.241280px;}
._1d{width:29.304000px;}
._1c{width:30.309120px;}
._17{width:31.527360px;}
._26{width:33.039360px;}
._28{width:34.398720px;}
._27{width:35.458560px;}
._31{width:36.982080px;}
._2f{width:38.191200px;}
._30{width:39.649920px;}
._2e{width:40.651200px;}
._22{width:42.566400px;}
._21{width:43.966080px;}
._1e{width:45.069120px;}
._25{width:46.105920px;}
._1f{width:47.283840px;}
._15{width:49.285440px;}
._16{width:50.379360px;}
._2b{width:52.254720px;}
._2c{width:53.605440px;}
._36{width:57.096000px;}
._37{width:58.147680px;}
._3a{width:64.736640px;}
._35{width:66.119040px;}
._38{width:68.016960px;}
._39{width:72.647040px;}
._33{width:74.101440px;}
._32{width:75.663840px;}
._3e{width:91.514880px;}
._3d{width:92.522880px;}
._34{width:94.241280px;}
._23{width:95.457600px;}
._24{width:96.903840px;}
._3c{width:117.889920px;}
._29{width:122.898240px;}
._2a{width:125.844480px;}
._12{width:128.635200px;}
._13{width:131.241600px;}
._10{width:132.399840px;}
._3{width:781.625760px;}
._11{width:847.176000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:47.520000px;}
.fs7{font-size:50.400000px;}
.fs6{font-size:54.720000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:80.640000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.505000px;}
.y2{bottom:2.520000px;}
.y15{bottom:3.225000px;}
.y46{bottom:3.240000px;}
.y54{bottom:3.585000px;}
.y6{bottom:3.960000px;}
.yb{bottom:4.320000px;}
.y34{bottom:5.025000px;}
.y32{bottom:5.385000px;}
.y3d{bottom:5.745000px;}
.yc{bottom:5.760000px;}
.y3a{bottom:6.105000px;}
.y3c{bottom:6.465000px;}
.y40{bottom:6.480000px;}
.y62{bottom:7.905000px;}
.y12{bottom:10.800000px;}
.y5c{bottom:16.545000px;}
.y58{bottom:17.625000px;}
.y14{bottom:18.345000px;}
.y45{bottom:18.720000px;}
.y4e{bottom:18.765000px;}
.y53{bottom:19.095000px;}
.y31{bottom:23.025000px;}
.y5{bottom:23.040000px;}
.y38{bottom:23.385000px;}
.y66{bottom:23.400000px;}
.y61{bottom:28.065000px;}
.y57{bottom:29.865000px;}
.y5b{bottom:30.585000px;}
.y50{bottom:31.320000px;}
.y4d{bottom:33.885000px;}
.y44{bottom:34.200000px;}
.y52{bottom:34.575000px;}
.y11{bottom:36.360000px;}
.y30{bottom:41.025000px;}
.y4{bottom:42.480000px;}
.y5a{bottom:44.625000px;}
.y9{bottom:46.800000px;}
.y60{bottom:48.270000px;}
.y4c{bottom:48.645000px;}
.y43{bottom:49.680000px;}
.y51{bottom:50.055000px;}
.y69{bottom:58.320000px;}
.y59{bottom:60.825000px;}
.y10{bottom:61.920000px;}
.y56{bottom:62.265000px;}
.y65{bottom:63.360000px;}
.y3{bottom:63.390000px;}
.y4b{bottom:63.405000px;}
.y42{bottom:65.160000px;}
.y5f{bottom:65.550000px;}
.y8{bottom:66.600000px;}
.y68{bottom:78.156000px;}
.yf{bottom:91.800000px;}
.y2e{bottom:119.535000px;}
.ye{bottom:122.085000px;}
.y4a{bottom:136.125000px;}
.y8f{bottom:136.476000px;}
.y2d{bottom:141.540000px;}
.y63{bottom:148.716000px;}
.y49{bottom:151.635000px;}
.y8e{bottom:162.030000px;}
.y2c{bottom:163.140000px;}
.y5e{bottom:164.565000px;}
.y48{bottom:167.115000px;}
.y2b{bottom:185.460000px;}
.y8d{bottom:187.950000px;}
.y2a{bottom:207.060000px;}
.y91{bottom:213.555000px;}
.y8c{bottom:213.915000px;}
.y29{bottom:229.020000px;}
.y95{bottom:239.115000px;}
.y8b{bottom:239.475000px;}
.y55{bottom:243.810000px;}
.y28{bottom:250.980000px;}
.y94{bottom:265.035000px;}
.y8a{bottom:265.395000px;}
.y27{bottom:272.610000px;}
.y89{bottom:291.315000px;}
.y26{bottom:294.570000px;}
.y25{bottom:316.170000px;}
.y88{bottom:316.875000px;}
.y16{bottom:318.330000px;}
.y24{bottom:338.130000px;}
.y87{bottom:342.825000px;}
.y23{bottom:360.090000px;}
.y86{bottom:368.385000px;}
.y4f{bottom:380.625000px;}
.y22{bottom:381.690000px;}
.y85{bottom:394.305000px;}
.y21{bottom:403.680000px;}
.y84{bottom:420.225000px;}
.y20{bottom:425.280000px;}
.y47{bottom:434.625000px;}
.y97{bottom:445.065000px;}
.y83{bottom:445.785000px;}
.y1f{bottom:447.240000px;}
.y1e{bottom:469.200000px;}
.y82{bottom:471.750000px;}
.y1d{bottom:490.800000px;}
.y96{bottom:497.310000px;}
.y81{bottom:497.670000px;}
.y1c{bottom:512.805000px;}
.y80{bottom:523.230000px;}
.y1b{bottom:534.765000px;}
.y7f{bottom:549.150000px;}
.y1a{bottom:556.365000px;}
.y7e{bottom:575.070000px;}
.y19{bottom:578.325000px;}
.y18{bottom:599.925000px;}
.y93{bottom:600.300000px;}
.y7d{bottom:600.660000px;}
.y41{bottom:613.980000px;}
.y17{bottom:621.525000px;}
.y92{bottom:626.220000px;}
.y7c{bottom:626.580000px;}
.y7b{bottom:652.140000px;}
.y7a{bottom:678.060000px;}
.y3f{bottom:691.740000px;}
.y79{bottom:704.010000px;}
.y3e{bottom:709.785000px;}
.y3b{bottom:727.425000px;}
.y78{bottom:729.570000px;}
.y39{bottom:745.425000px;}
.y77{bottom:755.490000px;}
.y37{bottom:763.065000px;}
.y76{bottom:781.410000px;}
.y36{bottom:799.065000px;}
.y75{bottom:806.970000px;}
.y35{bottom:816.705000px;}
.y74{bottom:832.935000px;}
.y33{bottom:834.750000px;}
.y73{bottom:858.495000px;}
.y2f{bottom:870.390000px;}
.y72{bottom:884.415000px;}
.y71{bottom:910.335000px;}
.y13{bottom:924.030000px;}
.y70{bottom:935.895000px;}
.yd{bottom:955.005000px;}
.y6f{bottom:961.845000px;}
.y6e{bottom:987.765000px;}
.y6d{bottom:1013.325000px;}
.y6c{bottom:1039.245000px;}
.y6b{bottom:1064.805000px;}
.y6a{bottom:1090.410000px;}
.y90{bottom:1090.770000px;}
.ya{bottom:1096.170000px;}
.y67{bottom:1110.570000px;}
.y7{bottom:1122.090000px;}
.y64{bottom:1126.050000px;}
.y1{bottom:1137.570000px;}
.h15{height:17.625000px;}
.h18{height:17.985000px;}
.h14{height:18.021000px;}
.h19{height:18.036000px;}
.h7{height:21.225000px;}
.hd{height:30.960000px;}
.h13{height:35.625000px;}
.h16{height:35.985000px;}
.h21{height:40.048594px;}
.h20{height:40.234219px;}
.h23{height:46.116563px;}
.h26{height:49.983750px;}
.h17{height:50.793750px;}
.h12{height:53.625000px;}
.h1b{height:53.677969px;}
.hf{height:53.704687px;}
.h1d{height:53.985000px;}
.he{height:55.147500px;}
.h5{height:56.084062px;}
.h4{height:58.888125px;}
.h8{height:60.960938px;}
.h1e{height:62.280000px;}
.h11{height:64.978594px;}
.h6{height:65.837812px;}
.h3{height:65.884219px;}
.hc{height:67.803750px;}
.h25{height:67.837500px;}
.h24{height:69.660000px;}
.h27{height:71.044468px;}
.hb{height:72.562500px;}
.h1f{height:74.505000px;}
.h1a{height:77.760000px;}
.h22{height:79.221000px;}
.ha{height:81.270000px;}
.h2{height:82.830000px;}
.h9{height:141.150000px;}
.h1c{height:179.355000px;}
.h10{height:636.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:82.462500px;}
.wa{width:95.400000px;}
.w2{width:115.222500px;}
.w4{width:157.005000px;}
.w7{width:178.245000px;}
.w8{width:515.370000px;}
.w5{width:536.250000px;}
.w3{width:578.385000px;}
.w6{width:693.270000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.920000px;}
.x9{left:14.386500px;}
.x5{left:27.735000px;}
.xc{left:32.026500px;}
.x1c{left:36.382500px;}
.x15{left:38.902500px;}
.x4{left:42.135000px;}
.x17{left:51.145500px;}
.x16{left:77.425500px;}
.x11{left:86.785500px;}
.x18{left:88.945500px;}
.x2{left:97.585500px;}
.x1{left:100.129500px;}
.x1a{left:101.185500px;}
.x7{left:108.036000px;}
.x22{left:112.356000px;}
.x6{left:114.900000px;}
.xf{left:120.985500px;}
.x19{left:123.535500px;}
.x1b{left:129.295500px;}
.x1d{left:133.975500px;}
.x1e{left:162.075000px;}
.x14{left:169.975500px;}
.x13{left:182.610000px;}
.xe{left:198.415500px;}
.x3{left:215.010000px;}
.xa{left:257.145000px;}
.xd{left:264.340500px;}
.x12{left:278.025000px;}
.x10{left:346.450500px;}
.x1f{left:473.580000px;}
.x20{left:477.900000px;}
.x23{left:489.090000px;}
.x24{left:516.090000px;}
.x21{left:527.610000px;}
.x8{left:751.965000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.458133pt;}
.ls5{letter-spacing:-0.297067pt;}
.ls6{letter-spacing:-0.274133pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.074133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.197333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.358400pt;}
.lsb{letter-spacing:32.839680pt;}
.ws2{word-spacing:-58.880000pt;}
.ws6{word-spacing:-48.640000pt;}
.wsc{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.280533pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.656533pt;}
.ws3{word-spacing:-12.495467pt;}
.ws8{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.200000pt;}
.ws9{word-spacing:-9.490133pt;}
.wsa{word-spacing:-9.292800pt;}
.wsb{word-spacing:0.000000pt;}
._5{margin-left:-3.010560pt;}
._2{margin-left:-1.354240pt;}
._1{width:0.890880pt;}
._0{width:2.078720pt;}
._4{width:3.261440pt;}
._20{width:4.172800pt;}
._a{width:5.063680pt;}
._9{width:6.241280pt;}
._e{width:7.242240pt;}
._b{width:8.243200pt;}
._14{width:9.157120pt;}
._2d{width:10.048000pt;}
._8{width:10.944000pt;}
._f{width:12.528640pt;}
._6{width:13.593600pt;}
._7{width:16.419840pt;}
._c{width:17.948160pt;}
._d{width:18.959360pt;}
._1a{width:19.909120pt;}
._1b{width:21.199360pt;}
._18{width:22.952960pt;}
._19{width:24.209920pt;}
._3b{width:25.103360pt;}
._1d{width:26.048000pt;}
._1c{width:26.941440pt;}
._17{width:28.024320pt;}
._26{width:29.368320pt;}
._28{width:30.576640pt;}
._27{width:31.518720pt;}
._31{width:32.872960pt;}
._2f{width:33.947733pt;}
._30{width:35.244373pt;}
._2e{width:36.134400pt;}
._22{width:37.836800pt;}
._21{width:39.080960pt;}
._1e{width:40.061440pt;}
._25{width:40.983040pt;}
._1f{width:42.030080pt;}
._15{width:43.809280pt;}
._16{width:44.781653pt;}
._2b{width:46.448640pt;}
._2c{width:47.649280pt;}
._36{width:50.752000pt;}
._37{width:51.686827pt;}
._3a{width:57.543680pt;}
._35{width:58.772480pt;}
._38{width:60.459520pt;}
._39{width:64.575147pt;}
._33{width:65.867947pt;}
._32{width:67.256747pt;}
._3e{width:81.346560pt;}
._3d{width:82.242560pt;}
._34{width:83.770027pt;}
._23{width:84.851200pt;}
._24{width:86.136747pt;}
._3c{width:104.791040pt;}
._29{width:109.242880pt;}
._2a{width:111.861760pt;}
._12{width:114.342400pt;}
._13{width:116.659200pt;}
._10{width:117.688747pt;}
._3{width:694.778453pt;}
._11{width:753.045333pt;}
.fs8{font-size:42.240000pt;}
.fs7{font-size:44.800000pt;}
.fs6{font-size:48.640000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:71.680000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.226667pt;}
.y2{bottom:2.240000pt;}
.y15{bottom:2.866667pt;}
.y46{bottom:2.880000pt;}
.y54{bottom:3.186667pt;}
.y6{bottom:3.520000pt;}
.yb{bottom:3.840000pt;}
.y34{bottom:4.466667pt;}
.y32{bottom:4.786667pt;}
.y3d{bottom:5.106667pt;}
.yc{bottom:5.120000pt;}
.y3a{bottom:5.426667pt;}
.y3c{bottom:5.746667pt;}
.y40{bottom:5.760000pt;}
.y62{bottom:7.026667pt;}
.y12{bottom:9.600000pt;}
.y5c{bottom:14.706667pt;}
.y58{bottom:15.666667pt;}
.y14{bottom:16.306667pt;}
.y45{bottom:16.640000pt;}
.y4e{bottom:16.680000pt;}
.y53{bottom:16.973333pt;}
.y31{bottom:20.466667pt;}
.y5{bottom:20.480000pt;}
.y38{bottom:20.786667pt;}
.y66{bottom:20.800000pt;}
.y61{bottom:24.946667pt;}
.y57{bottom:26.546667pt;}
.y5b{bottom:27.186667pt;}
.y50{bottom:27.840000pt;}
.y4d{bottom:30.120000pt;}
.y44{bottom:30.400000pt;}
.y52{bottom:30.733333pt;}
.y11{bottom:32.320000pt;}
.y30{bottom:36.466667pt;}
.y4{bottom:37.760000pt;}
.y5a{bottom:39.666667pt;}
.y9{bottom:41.600000pt;}
.y60{bottom:42.906667pt;}
.y4c{bottom:43.240000pt;}
.y43{bottom:44.160000pt;}
.y51{bottom:44.493333pt;}
.y69{bottom:51.840000pt;}
.y59{bottom:54.066667pt;}
.y10{bottom:55.040000pt;}
.y56{bottom:55.346667pt;}
.y65{bottom:56.320000pt;}
.y3{bottom:56.346667pt;}
.y4b{bottom:56.360000pt;}
.y42{bottom:57.920000pt;}
.y5f{bottom:58.266667pt;}
.y8{bottom:59.200000pt;}
.y68{bottom:69.472000pt;}
.yf{bottom:81.600000pt;}
.y2e{bottom:106.253333pt;}
.ye{bottom:108.520000pt;}
.y4a{bottom:121.000000pt;}
.y8f{bottom:121.312000pt;}
.y2d{bottom:125.813333pt;}
.y63{bottom:132.192000pt;}
.y49{bottom:134.786667pt;}
.y8e{bottom:144.026667pt;}
.y2c{bottom:145.013333pt;}
.y5e{bottom:146.280000pt;}
.y48{bottom:148.546667pt;}
.y2b{bottom:164.853333pt;}
.y8d{bottom:167.066667pt;}
.y2a{bottom:184.053333pt;}
.y91{bottom:189.826667pt;}
.y8c{bottom:190.146667pt;}
.y29{bottom:203.573333pt;}
.y95{bottom:212.546667pt;}
.y8b{bottom:212.866667pt;}
.y55{bottom:216.720000pt;}
.y28{bottom:223.093333pt;}
.y94{bottom:235.586667pt;}
.y8a{bottom:235.906667pt;}
.y27{bottom:242.320000pt;}
.y89{bottom:258.946667pt;}
.y26{bottom:261.840000pt;}
.y25{bottom:281.040000pt;}
.y88{bottom:281.666667pt;}
.y16{bottom:282.960000pt;}
.y24{bottom:300.560000pt;}
.y87{bottom:304.733333pt;}
.y23{bottom:320.080000pt;}
.y86{bottom:327.453333pt;}
.y4f{bottom:338.333333pt;}
.y22{bottom:339.280000pt;}
.y85{bottom:350.493333pt;}
.y21{bottom:358.826667pt;}
.y84{bottom:373.533333pt;}
.y20{bottom:378.026667pt;}
.y47{bottom:386.333333pt;}
.y97{bottom:395.613333pt;}
.y83{bottom:396.253333pt;}
.y1f{bottom:397.546667pt;}
.y1e{bottom:417.066667pt;}
.y82{bottom:419.333333pt;}
.y1d{bottom:436.266667pt;}
.y96{bottom:442.053333pt;}
.y81{bottom:442.373333pt;}
.y1c{bottom:455.826667pt;}
.y80{bottom:465.093333pt;}
.y1b{bottom:475.346667pt;}
.y7f{bottom:488.133333pt;}
.y1a{bottom:494.546667pt;}
.y7e{bottom:511.173333pt;}
.y19{bottom:514.066667pt;}
.y18{bottom:533.266667pt;}
.y93{bottom:533.600000pt;}
.y7d{bottom:533.920000pt;}
.y41{bottom:545.760000pt;}
.y17{bottom:552.466667pt;}
.y92{bottom:556.640000pt;}
.y7c{bottom:556.960000pt;}
.y7b{bottom:579.680000pt;}
.y7a{bottom:602.720000pt;}
.y3f{bottom:614.880000pt;}
.y79{bottom:625.786667pt;}
.y3e{bottom:630.920000pt;}
.y3b{bottom:646.600000pt;}
.y78{bottom:648.506667pt;}
.y39{bottom:662.600000pt;}
.y77{bottom:671.546667pt;}
.y37{bottom:678.280000pt;}
.y76{bottom:694.586667pt;}
.y36{bottom:710.280000pt;}
.y75{bottom:717.306667pt;}
.y35{bottom:725.960000pt;}
.y74{bottom:740.386667pt;}
.y33{bottom:742.000000pt;}
.y73{bottom:763.106667pt;}
.y2f{bottom:773.680000pt;}
.y72{bottom:786.146667pt;}
.y71{bottom:809.186667pt;}
.y13{bottom:821.360000pt;}
.y70{bottom:831.906667pt;}
.yd{bottom:848.893333pt;}
.y6f{bottom:854.973333pt;}
.y6e{bottom:878.013333pt;}
.y6d{bottom:900.733333pt;}
.y6c{bottom:923.773333pt;}
.y6b{bottom:946.493333pt;}
.y6a{bottom:969.253333pt;}
.y90{bottom:969.573333pt;}
.ya{bottom:974.373333pt;}
.y67{bottom:987.173333pt;}
.y7{bottom:997.413333pt;}
.y64{bottom:1000.933333pt;}
.y1{bottom:1011.173333pt;}
.h15{height:15.666667pt;}
.h18{height:15.986667pt;}
.h14{height:16.018667pt;}
.h19{height:16.032000pt;}
.h7{height:18.866667pt;}
.hd{height:27.520000pt;}
.h13{height:31.666667pt;}
.h16{height:31.986667pt;}
.h21{height:35.598750pt;}
.h20{height:35.763750pt;}
.h23{height:40.992500pt;}
.h26{height:44.430000pt;}
.h17{height:45.150000pt;}
.h12{height:47.666667pt;}
.h1b{height:47.713750pt;}
.hf{height:47.737500pt;}
.h1d{height:47.986667pt;}
.he{height:49.020000pt;}
.h5{height:49.852500pt;}
.h4{height:52.345000pt;}
.h8{height:54.187500pt;}
.h1e{height:55.360000pt;}
.h11{height:57.758750pt;}
.h6{height:58.522500pt;}
.h3{height:58.563750pt;}
.hc{height:60.270000pt;}
.h25{height:60.300000pt;}
.h24{height:61.920000pt;}
.h27{height:63.150638pt;}
.hb{height:64.500000pt;}
.h1f{height:66.226667pt;}
.h1a{height:69.120000pt;}
.h22{height:70.418667pt;}
.ha{height:72.240000pt;}
.h2{height:73.626667pt;}
.h9{height:125.466667pt;}
.h1c{height:159.426667pt;}
.h10{height:565.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:73.300000pt;}
.wa{width:84.800000pt;}
.w2{width:102.420000pt;}
.w4{width:139.560000pt;}
.w7{width:158.440000pt;}
.w8{width:458.106667pt;}
.w5{width:476.666667pt;}
.w3{width:514.120000pt;}
.w6{width:616.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.040000pt;}
.x9{left:12.788000pt;}
.x5{left:24.653333pt;}
.xc{left:28.468000pt;}
.x1c{left:32.340000pt;}
.x15{left:34.580000pt;}
.x4{left:37.453333pt;}
.x17{left:45.462667pt;}
.x16{left:68.822667pt;}
.x11{left:77.142667pt;}
.x18{left:79.062667pt;}
.x2{left:86.742667pt;}
.x1{left:89.004000pt;}
.x1a{left:89.942667pt;}
.x7{left:96.032000pt;}
.x22{left:99.872000pt;}
.x6{left:102.133333pt;}
.xf{left:107.542667pt;}
.x19{left:109.809333pt;}
.x1b{left:114.929333pt;}
.x1d{left:119.089333pt;}
.x1e{left:144.066667pt;}
.x14{left:151.089333pt;}
.x13{left:162.320000pt;}
.xe{left:176.369333pt;}
.x3{left:191.120000pt;}
.xa{left:228.573333pt;}
.xd{left:234.969333pt;}
.x12{left:247.133333pt;}
.x10{left:307.956000pt;}
.x1f{left:420.960000pt;}
.x20{left:424.800000pt;}
.x23{left:434.746667pt;}
.x24{left:458.746667pt;}
.x21{left:468.986667pt;}
.x8{left:668.413333pt;}
}




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