
    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_26dc9f3f2f1689940e0fc70a.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_32b720a5a40f731205d4d019.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_22476fa4c0d011d967f4336c.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_10ca5e0b86e6c4e05b63987f.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_8fbcf71c283ab0ac47173e89.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_b80a6db7ee33ea5cdeda6ec2.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_936fb8c245362b154efd88ec.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_598a8472f94429157730cf20.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_0c368123f415e316de9224a1.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_d3571e9ef114c7c1d03d3911.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_60271b698655b041125c36dc.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;}
.ls8{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.416000px;}
.ls7{letter-spacing:-0.515400px;}
.lsf{letter-spacing:-0.495600px;}
.ls5{letter-spacing:-0.334200px;}
.ls6{letter-spacing:-0.308400px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.023040px;}
.ls1{letter-spacing:0.083400px;}
.ls2{letter-spacing:0.152640px;}
.lsc{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.222000px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.403200px;}
.lse{letter-spacing:0.449400px;}
.lsa{letter-spacing:0.720000px;}
.lsb{letter-spacing:1.440000px;}
.ls11{letter-spacing:1.464000px;}
.lsd{letter-spacing:1.620000px;}
.ls14{letter-spacing:1.914000px;}
.ls12{letter-spacing:13.904640px;}
.ls15{letter-spacing:13.916640px;}
.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;}
.wse{word-spacing:-17.729400px;}
.wsf{word-spacing:-17.303040px;}
.wsc{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.190600px;}
.wsd{word-spacing:-16.784400px;}
.ws5{word-spacing:-16.560000px;}
.ws10{word-spacing:-15.864000px;}
.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;}
._8{margin-left:-2.632320px;}
._2{margin-left:-1.523520px;}
._1{width:1.002240px;}
._0{width:2.338560px;}
._11{width:4.305600px;}
._d{width:5.365440px;}
._c{width:6.690240px;}
._f{width:8.478720px;}
._6{width:10.200960px;}
._7{width:12.175200px;}
._10{width:13.844160px;}
._9{width:15.301440px;}
._e{width:17.611200px;}
._13{width:18.878400px;}
._14{width:20.136960px;}
._12{width:21.263040px;}
._5{width:22.919040px;}
._4{width:24.641280px;}
._a{width:26.363520px;}
._b{width:28.275840px;}
._17{width:29.543040px;}
._35{width:31.162080px;}
._32{width:33.111360px;}
._2a{width:34.430400px;}
._15{width:36.630720px;}
._22{width:37.897920px;}
._16{width:39.545280px;}
._23{width:40.602240px;}
._28{width:42.134400px;}
._29{width:43.508640px;}
._1a{width:45.066240px;}
._3f{width:46.436640px;}
._1b{width:47.934720px;}
._20{width:49.308480px;}
._21{width:50.904000px;}
._3e{width:52.064640px;}
._25{width:54.120960px;}
._24{width:55.131840px;}
._2b{width:57.026880px;}
._2f{width:58.861440px;}
._33{width:59.932800px;}
._36{width:61.375680px;}
._3b{width:63.385920px;}
._2c{width:65.597760px;}
._2e{width:66.602880px;}
._2d{width:67.985280px;}
._37{width:69.128640px;}
._42{width:70.439040px;}
._34{width:71.953920px;}
._3c{width:73.514880px;}
._1f{width:74.759040px;}
._43{width:76.210560px;}
._1c{width:77.316480px;}
._1d{width:78.350400px;}
._1e{width:79.490880px;}
._41{width:81.979200px;}
._47{width:84.381120px;}
._30{width:85.849920px;}
._40{width:88.652160px;}
._38{width:92.142720px;}
._39{width:101.162880px;}
._27{width:102.758400px;}
._26{width:105.690240px;}
._46{width:107.936640px;}
._31{width:109.350720px;}
._44{width:111.144960px;}
._45{width:112.394880px;}
._3d{width:120.067200px;}
._4e{width:122.345280px;}
._18{width:132.399840px;}
._4c{width:134.311680px;}
._4b{width:140.794560px;}
._4a{width:141.840000px;}
._3a{width:189.089280px;}
._48{width:323.154720px;}
._4d{width:594.299520px;}
._3{width:781.625760px;}
._49{width:827.228160px;}
._19{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;}
.y6a{bottom:2.505000px;}
.y2{bottom:2.520000px;}
.y51{bottom:2.880000px;}
.y16{bottom:3.225000px;}
.y5a{bottom:3.240000px;}
.y6{bottom:3.960000px;}
.yb{bottom:4.320000px;}
.y42{bottom:5.025000px;}
.y3e{bottom:5.385000px;}
.y46{bottom:5.745000px;}
.yc{bottom:5.760000px;}
.y48{bottom:6.105000px;}
.y3a{bottom:6.465000px;}
.y4a{bottom:6.480000px;}
.y70{bottom:7.915500px;}
.y13{bottom:10.785000px;}
.y69{bottom:16.590000px;}
.y65{bottom:17.670000px;}
.y15{bottom:18.345000px;}
.y50{bottom:18.360000px;}
.y59{bottom:18.720000px;}
.y5d{bottom:19.080000px;}
.y3d{bottom:23.025000px;}
.y6c{bottom:23.035500px;}
.y5{bottom:23.040000px;}
.y40{bottom:23.070000px;}
.y74{bottom:23.400000px;}
.y39{bottom:25.905000px;}
.y6f{bottom:28.075500px;}
.y64{bottom:30.270000px;}
.y68{bottom:30.630000px;}
.y5c{bottom:31.320000px;}
.y61{bottom:33.825000px;}
.y4f{bottom:33.840000px;}
.y58{bottom:34.200000px;}
.y12{bottom:36.735000px;}
.y3c{bottom:41.025000px;}
.y4{bottom:42.480000px;}
.y67{bottom:44.670000px;}
.y38{bottom:44.985000px;}
.y9{bottom:46.800000px;}
.y6e{bottom:48.229500px;}
.y57{bottom:49.005000px;}
.y60{bottom:49.305000px;}
.y4e{bottom:49.320000px;}
.y77{bottom:58.320000px;}
.y66{bottom:61.230000px;}
.y11{bottom:62.295000px;}
.y63{bottom:62.670000px;}
.y73{bottom:63.360000px;}
.y3{bottom:63.390000px;}
.y56{bottom:63.405000px;}
.y37{bottom:64.095000px;}
.y4d{bottom:64.800000px;}
.y5f{bottom:64.815000px;}
.y6d{bottom:65.509500px;}
.y8{bottom:66.600000px;}
.y76{bottom:78.156000px;}
.y5e{bottom:80.295000px;}
.y36{bottom:82.815000px;}
.y10{bottom:87.855000px;}
.y71{bottom:92.196000px;}
.y35{bottom:101.895000px;}
.y6b{bottom:108.040500px;}
.yf{bottom:117.735000px;}
.y34{bottom:120.975000px;}
.y9d{bottom:136.476000px;}
.y55{bottom:136.485000px;}
.y33{bottom:139.695000px;}
.ye{bottom:148.020000px;}
.y54{bottom:151.965000px;}
.y32{bottom:158.775000px;}
.y9c{bottom:162.030000px;}
.y53{bottom:167.475000px;}
.y31{bottom:177.855000px;}
.y62{bottom:187.245000px;}
.ya2{bottom:187.590000px;}
.y9b{bottom:187.950000px;}
.y30{bottom:196.620000px;}
.ya3{bottom:213.555000px;}
.y9a{bottom:213.915000px;}
.y2f{bottom:215.700000px;}
.y2e{bottom:234.780000px;}
.y99{bottom:239.475000px;}
.y2d{bottom:253.860000px;}
.y17{bottom:262.170000px;}
.y98{bottom:265.395000px;}
.y2c{bottom:272.580000px;}
.y97{bottom:291.315000px;}
.y2b{bottom:291.660000px;}
.y2a{bottom:310.740000px;}
.y96{bottom:316.875000px;}
.y29{bottom:329.490000px;}
.y95{bottom:342.825000px;}
.y28{bottom:348.570000px;}
.y5b{bottom:354.705000px;}
.y27{bottom:367.650000px;}
.y94{bottom:368.385000px;}
.y26{bottom:386.370000px;}
.ya1{bottom:393.945000px;}
.y93{bottom:394.305000px;}
.y25{bottom:405.450000px;}
.y52{bottom:408.705000px;}
.y92{bottom:420.225000px;}
.y24{bottom:424.530000px;}
.y23{bottom:443.640000px;}
.y91{bottom:445.785000px;}
.y22{bottom:462.360000px;}
.y90{bottom:471.750000px;}
.y21{bottom:481.440000px;}
.y8f{bottom:497.670000px;}
.y20{bottom:500.520000px;}
.y1f{bottom:519.240000px;}
.y8e{bottom:523.230000px;}
.y1e{bottom:538.320000px;}
.y8d{bottom:549.150000px;}
.y1d{bottom:557.400000px;}
.y8c{bottom:575.070000px;}
.y1c{bottom:576.525000px;}
.y4c{bottom:588.420000px;}
.y1b{bottom:595.245000px;}
.y8b{bottom:600.660000px;}
.y1a{bottom:614.325000px;}
.ya4{bottom:626.220000px;}
.y8a{bottom:626.580000px;}
.y19{bottom:633.405000px;}
.y18{bottom:651.765000px;}
.ya0{bottom:651.780000px;}
.y89{bottom:652.140000px;}
.y4b{bottom:665.820000px;}
.y9f{bottom:677.700000px;}
.y88{bottom:678.060000px;}
.y49{bottom:683.820000px;}
.y47{bottom:701.865000px;}
.y87{bottom:704.010000px;}
.y45{bottom:719.505000px;}
.y86{bottom:729.570000px;}
.y44{bottom:737.505000px;}
.y85{bottom:755.490000px;}
.y43{bottom:773.145000px;}
.y84{bottom:781.410000px;}
.y41{bottom:791.145000px;}
.y83{bottom:806.970000px;}
.y3f{bottom:808.785000px;}
.ya7{bottom:832.215000px;}
.y82{bottom:832.935000px;}
.y3b{bottom:844.470000px;}
.ya6{bottom:858.135000px;}
.y81{bottom:858.495000px;}
.ya5{bottom:884.055000px;}
.y80{bottom:884.415000px;}
.y14{bottom:898.110000px;}
.y7f{bottom:910.335000px;}
.yd{bottom:929.070000px;}
.y7e{bottom:935.895000px;}
.y7d{bottom:961.845000px;}
.y7c{bottom:987.765000px;}
.y7b{bottom:1013.325000px;}
.y7a{bottom:1039.245000px;}
.y79{bottom:1064.805000px;}
.y78{bottom:1090.410000px;}
.y9e{bottom:1090.770000px;}
.ya{bottom:1096.170000px;}
.y75{bottom:1110.570000px;}
.y7{bottom:1122.090000px;}
.y72{bottom:1126.050000px;}
.y1{bottom:1137.570000px;}
.h15{height:17.625000px;}
.h16{height:17.985000px;}
.h1a{height:18.000000px;}
.h19{height:18.036000px;}
.h7{height:21.225000px;}
.hd{height:30.945000px;}
.h17{height:35.625000px;}
.h14{height:35.661000px;}
.h22{height:40.048594px;}
.h21{height:40.234219px;}
.h24{height:46.116563px;}
.h12{height:50.391562px;}
.h18{height:50.793750px;}
.h13{height:53.625000px;}
.h1c{height:53.677969px;}
.hf{height:53.704687px;}
.h1e{height:53.985000px;}
.he{height:55.147500px;}
.h5{height:56.084062px;}
.h4{height:58.888125px;}
.h8{height:60.960938px;}
.h27{height:61.965000px;}
.h11{height:64.978594px;}
.h6{height:65.837812px;}
.h3{height:65.884219px;}
.hc{height:67.803750px;}
.h26{height:67.837500px;}
.h25{height:69.660000px;}
.h28{height:71.044468px;}
.hb{height:72.562500px;}
.h20{height:74.901000px;}
.h1b{height:77.400000px;}
.h23{height:79.195500px;}
.ha{height:81.270000px;}
.h2{height:82.830000px;}
.h1f{height:92.520000px;}
.h9{height:167.085000px;}
.h1d{height:179.715000px;}
.h10{height:666.885000px;}
.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;}
.x18{left:31.306500px;}
.x1e{left:36.382500px;}
.x17{left:38.902500px;}
.x4{left:42.135000px;}
.xc{left:54.745500px;}
.x14{left:62.325000px;}
.x12{left:86.785500px;}
.x1a{left:88.945500px;}
.x2{left:97.585500px;}
.x1{left:100.129500px;}
.x1c{left:101.185500px;}
.x7{left:108.036000px;}
.x6{left:114.900000px;}
.x1b{left:123.535500px;}
.x1d{left:129.295500px;}
.x1f{left:133.975500px;}
.x19{left:138.295500px;}
.x24{left:150.555000px;}
.x10{left:162.055500px;}
.x16{left:169.975500px;}
.x15{left:182.610000px;}
.x11{left:206.695500px;}
.x3{left:215.010000px;}
.xe{left:227.980500px;}
.xf{left:236.260500px;}
.xa{left:257.145000px;}
.x13{left:278.025000px;}
.xd{left:298.540500px;}
.x20{left:473.580000px;}
.x22{left:494.850000px;}
.x23{left:516.090000px;}
.x21{left:527.610000px;}
.x8{left:751.965000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.258667pt;}
.ls7{letter-spacing:-0.458133pt;}
.lsf{letter-spacing:-0.440533pt;}
.ls5{letter-spacing:-0.297067pt;}
.ls6{letter-spacing:-0.274133pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.020480pt;}
.ls1{letter-spacing:0.074133pt;}
.ls2{letter-spacing:0.135680pt;}
.lsc{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.197333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.358400pt;}
.lse{letter-spacing:0.399467pt;}
.lsa{letter-spacing:0.640000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.301333pt;}
.lsd{letter-spacing:1.440000pt;}
.ls14{letter-spacing:1.701333pt;}
.ls12{letter-spacing:12.359680pt;}
.ls15{letter-spacing:12.370347pt;}
.ws2{word-spacing:-58.880000pt;}
.ws6{word-spacing:-48.640000pt;}
.wse{word-spacing:-15.759467pt;}
.wsf{word-spacing:-15.380480pt;}
.wsc{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.280533pt;}
.wsd{word-spacing:-14.919467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.101333pt;}
.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;}
._8{margin-left:-2.339840pt;}
._2{margin-left:-1.354240pt;}
._1{width:0.890880pt;}
._0{width:2.078720pt;}
._11{width:3.827200pt;}
._d{width:4.769280pt;}
._c{width:5.946880pt;}
._f{width:7.536640pt;}
._6{width:9.067520pt;}
._7{width:10.822400pt;}
._10{width:12.305920pt;}
._9{width:13.601280pt;}
._e{width:15.654400pt;}
._13{width:16.780800pt;}
._14{width:17.899520pt;}
._12{width:18.900480pt;}
._5{width:20.372480pt;}
._4{width:21.903360pt;}
._a{width:23.434240pt;}
._b{width:25.134080pt;}
._17{width:26.260480pt;}
._35{width:27.699627pt;}
._32{width:29.432320pt;}
._2a{width:30.604800pt;}
._15{width:32.560640pt;}
._22{width:33.687040pt;}
._16{width:35.151360pt;}
._23{width:36.090880pt;}
._28{width:37.452800pt;}
._29{width:38.674347pt;}
._1a{width:40.058880pt;}
._3f{width:41.277013pt;}
._1b{width:42.608640pt;}
._20{width:43.829760pt;}
._21{width:45.248000pt;}
._3e{width:46.279680pt;}
._25{width:48.107520pt;}
._24{width:49.006080pt;}
._2b{width:50.690560pt;}
._2f{width:52.321280pt;}
._33{width:53.273600pt;}
._36{width:54.556160pt;}
._3b{width:56.343040pt;}
._2c{width:58.309120pt;}
._2e{width:59.202560pt;}
._2d{width:60.431360pt;}
._37{width:61.447680pt;}
._42{width:62.612480pt;}
._34{width:63.959040pt;}
._3c{width:65.346560pt;}
._1f{width:66.452480pt;}
._43{width:67.742720pt;}
._1c{width:68.725760pt;}
._1d{width:69.644800pt;}
._1e{width:70.658560pt;}
._41{width:72.870400pt;}
._47{width:75.005440pt;}
._30{width:76.311040pt;}
._40{width:78.801920pt;}
._38{width:81.904640pt;}
._39{width:89.922560pt;}
._27{width:91.340800pt;}
._26{width:93.946880pt;}
._46{width:95.943680pt;}
._31{width:97.200640pt;}
._44{width:98.795520pt;}
._45{width:99.906560pt;}
._3d{width:106.726400pt;}
._4e{width:108.751360pt;}
._18{width:117.688747pt;}
._4c{width:119.388160pt;}
._4b{width:125.150720pt;}
._4a{width:126.080000pt;}
._3a{width:168.079360pt;}
._48{width:287.248640pt;}
._4d{width:528.266240pt;}
._3{width:694.778453pt;}
._49{width:735.313920pt;}
._19{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;}
.y6a{bottom:2.226667pt;}
.y2{bottom:2.240000pt;}
.y51{bottom:2.560000pt;}
.y16{bottom:2.866667pt;}
.y5a{bottom:2.880000pt;}
.y6{bottom:3.520000pt;}
.yb{bottom:3.840000pt;}
.y42{bottom:4.466667pt;}
.y3e{bottom:4.786667pt;}
.y46{bottom:5.106667pt;}
.yc{bottom:5.120000pt;}
.y48{bottom:5.426667pt;}
.y3a{bottom:5.746667pt;}
.y4a{bottom:5.760000pt;}
.y70{bottom:7.036000pt;}
.y13{bottom:9.586667pt;}
.y69{bottom:14.746667pt;}
.y65{bottom:15.706667pt;}
.y15{bottom:16.306667pt;}
.y50{bottom:16.320000pt;}
.y59{bottom:16.640000pt;}
.y5d{bottom:16.960000pt;}
.y3d{bottom:20.466667pt;}
.y6c{bottom:20.476000pt;}
.y5{bottom:20.480000pt;}
.y40{bottom:20.506667pt;}
.y74{bottom:20.800000pt;}
.y39{bottom:23.026667pt;}
.y6f{bottom:24.956000pt;}
.y64{bottom:26.906667pt;}
.y68{bottom:27.226667pt;}
.y5c{bottom:27.840000pt;}
.y61{bottom:30.066667pt;}
.y4f{bottom:30.080000pt;}
.y58{bottom:30.400000pt;}
.y12{bottom:32.653333pt;}
.y3c{bottom:36.466667pt;}
.y4{bottom:37.760000pt;}
.y67{bottom:39.706667pt;}
.y38{bottom:39.986667pt;}
.y9{bottom:41.600000pt;}
.y6e{bottom:42.870667pt;}
.y57{bottom:43.560000pt;}
.y60{bottom:43.826667pt;}
.y4e{bottom:43.840000pt;}
.y77{bottom:51.840000pt;}
.y66{bottom:54.426667pt;}
.y11{bottom:55.373333pt;}
.y63{bottom:55.706667pt;}
.y73{bottom:56.320000pt;}
.y3{bottom:56.346667pt;}
.y56{bottom:56.360000pt;}
.y37{bottom:56.973333pt;}
.y4d{bottom:57.600000pt;}
.y5f{bottom:57.613333pt;}
.y6d{bottom:58.230667pt;}
.y8{bottom:59.200000pt;}
.y76{bottom:69.472000pt;}
.y5e{bottom:71.373333pt;}
.y36{bottom:73.613333pt;}
.y10{bottom:78.093333pt;}
.y71{bottom:81.952000pt;}
.y35{bottom:90.573333pt;}
.y6b{bottom:96.036000pt;}
.yf{bottom:104.653333pt;}
.y34{bottom:107.533333pt;}
.y9d{bottom:121.312000pt;}
.y55{bottom:121.320000pt;}
.y33{bottom:124.173333pt;}
.ye{bottom:131.573333pt;}
.y54{bottom:135.080000pt;}
.y32{bottom:141.133333pt;}
.y9c{bottom:144.026667pt;}
.y53{bottom:148.866667pt;}
.y31{bottom:158.093333pt;}
.y62{bottom:166.440000pt;}
.ya2{bottom:166.746667pt;}
.y9b{bottom:167.066667pt;}
.y30{bottom:174.773333pt;}
.ya3{bottom:189.826667pt;}
.y9a{bottom:190.146667pt;}
.y2f{bottom:191.733333pt;}
.y2e{bottom:208.693333pt;}
.y99{bottom:212.866667pt;}
.y2d{bottom:225.653333pt;}
.y17{bottom:233.040000pt;}
.y98{bottom:235.906667pt;}
.y2c{bottom:242.293333pt;}
.y97{bottom:258.946667pt;}
.y2b{bottom:259.253333pt;}
.y2a{bottom:276.213333pt;}
.y96{bottom:281.666667pt;}
.y29{bottom:292.880000pt;}
.y95{bottom:304.733333pt;}
.y28{bottom:309.840000pt;}
.y5b{bottom:315.293333pt;}
.y27{bottom:326.800000pt;}
.y94{bottom:327.453333pt;}
.y26{bottom:343.440000pt;}
.ya1{bottom:350.173333pt;}
.y93{bottom:350.493333pt;}
.y25{bottom:360.400000pt;}
.y52{bottom:363.293333pt;}
.y92{bottom:373.533333pt;}
.y24{bottom:377.360000pt;}
.y23{bottom:394.346667pt;}
.y91{bottom:396.253333pt;}
.y22{bottom:410.986667pt;}
.y90{bottom:419.333333pt;}
.y21{bottom:427.946667pt;}
.y8f{bottom:442.373333pt;}
.y20{bottom:444.906667pt;}
.y1f{bottom:461.546667pt;}
.y8e{bottom:465.093333pt;}
.y1e{bottom:478.506667pt;}
.y8d{bottom:488.133333pt;}
.y1d{bottom:495.466667pt;}
.y8c{bottom:511.173333pt;}
.y1c{bottom:512.466667pt;}
.y4c{bottom:523.040000pt;}
.y1b{bottom:529.106667pt;}
.y8b{bottom:533.920000pt;}
.y1a{bottom:546.066667pt;}
.ya4{bottom:556.640000pt;}
.y8a{bottom:556.960000pt;}
.y19{bottom:563.026667pt;}
.y18{bottom:579.346667pt;}
.ya0{bottom:579.360000pt;}
.y89{bottom:579.680000pt;}
.y4b{bottom:591.840000pt;}
.y9f{bottom:602.400000pt;}
.y88{bottom:602.720000pt;}
.y49{bottom:607.840000pt;}
.y47{bottom:623.880000pt;}
.y87{bottom:625.786667pt;}
.y45{bottom:639.560000pt;}
.y86{bottom:648.506667pt;}
.y44{bottom:655.560000pt;}
.y85{bottom:671.546667pt;}
.y43{bottom:687.240000pt;}
.y84{bottom:694.586667pt;}
.y41{bottom:703.240000pt;}
.y83{bottom:717.306667pt;}
.y3f{bottom:718.920000pt;}
.ya7{bottom:739.746667pt;}
.y82{bottom:740.386667pt;}
.y3b{bottom:750.640000pt;}
.ya6{bottom:762.786667pt;}
.y81{bottom:763.106667pt;}
.ya5{bottom:785.826667pt;}
.y80{bottom:786.146667pt;}
.y14{bottom:798.320000pt;}
.y7f{bottom:809.186667pt;}
.yd{bottom:825.840000pt;}
.y7e{bottom:831.906667pt;}
.y7d{bottom:854.973333pt;}
.y7c{bottom:878.013333pt;}
.y7b{bottom:900.733333pt;}
.y7a{bottom:923.773333pt;}
.y79{bottom:946.493333pt;}
.y78{bottom:969.253333pt;}
.y9e{bottom:969.573333pt;}
.ya{bottom:974.373333pt;}
.y75{bottom:987.173333pt;}
.y7{bottom:997.413333pt;}
.y72{bottom:1000.933333pt;}
.y1{bottom:1011.173333pt;}
.h15{height:15.666667pt;}
.h16{height:15.986667pt;}
.h1a{height:16.000000pt;}
.h19{height:16.032000pt;}
.h7{height:18.866667pt;}
.hd{height:27.506667pt;}
.h17{height:31.666667pt;}
.h14{height:31.698667pt;}
.h22{height:35.598750pt;}
.h21{height:35.763750pt;}
.h24{height:40.992500pt;}
.h12{height:44.792500pt;}
.h18{height:45.150000pt;}
.h13{height:47.666667pt;}
.h1c{height:47.713750pt;}
.hf{height:47.737500pt;}
.h1e{height:47.986667pt;}
.he{height:49.020000pt;}
.h5{height:49.852500pt;}
.h4{height:52.345000pt;}
.h8{height:54.187500pt;}
.h27{height:55.080000pt;}
.h11{height:57.758750pt;}
.h6{height:58.522500pt;}
.h3{height:58.563750pt;}
.hc{height:60.270000pt;}
.h26{height:60.300000pt;}
.h25{height:61.920000pt;}
.h28{height:63.150638pt;}
.hb{height:64.500000pt;}
.h20{height:66.578667pt;}
.h1b{height:68.800000pt;}
.h23{height:70.396000pt;}
.ha{height:72.240000pt;}
.h2{height:73.626667pt;}
.h1f{height:82.240000pt;}
.h9{height:148.520000pt;}
.h1d{height:159.746667pt;}
.h10{height:592.786667pt;}
.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;}
.x18{left:27.828000pt;}
.x1e{left:32.340000pt;}
.x17{left:34.580000pt;}
.x4{left:37.453333pt;}
.xc{left:48.662667pt;}
.x14{left:55.400000pt;}
.x12{left:77.142667pt;}
.x1a{left:79.062667pt;}
.x2{left:86.742667pt;}
.x1{left:89.004000pt;}
.x1c{left:89.942667pt;}
.x7{left:96.032000pt;}
.x6{left:102.133333pt;}
.x1b{left:109.809333pt;}
.x1d{left:114.929333pt;}
.x1f{left:119.089333pt;}
.x19{left:122.929333pt;}
.x24{left:133.826667pt;}
.x10{left:144.049333pt;}
.x16{left:151.089333pt;}
.x15{left:162.320000pt;}
.x11{left:183.729333pt;}
.x3{left:191.120000pt;}
.xe{left:202.649333pt;}
.xf{left:210.009333pt;}
.xa{left:228.573333pt;}
.x13{left:247.133333pt;}
.xd{left:265.369333pt;}
.x20{left:420.960000pt;}
.x22{left:439.866667pt;}
.x23{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; }
  