
    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_0ec225fc3ef45bf69295ade4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_865c4852a5007b158f8d0ea4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_c1f60c8c84e4b4d1261f5ebc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.168945;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_feac0521971c47e98b9bc124.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.168945;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_35b02f1ec3e5398b47426f10.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.018066;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_cbec4aab6dce666873ac0054.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.018066;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_dd20a5a90af04a22c70f09ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.746094;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_c4dc5b9b33aaab65314e3480.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.124512;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_4c0453eef6dd240e08ffae0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.124512;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_432c59aaaf9fc89e06515448.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_572adea41aa8c36f1d3e8c06.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_34f9e5c22acfe04c0e423383.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_a4b868538c10396713154eec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908203;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_7e8b92498d6fcff3f4a857ee.woff2')format("woff");}.fff{font-family:fff;line-height:1.372070;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:ff10;src:url('chunks/assets/font_b8cfcdd0131b9a09ca1a05dc.woff2')format("woff");}.ff10{font-family:ff10;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;}
.ls2b{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.308400px;}
.ls19{letter-spacing:-0.259800px;}
.ls2c{letter-spacing:-0.158400px;}
.ls17{letter-spacing:-0.034560px;}
.ls27{letter-spacing:-0.028800px;}
.ls6{letter-spacing:-0.025920px;}
.ls5{letter-spacing:-0.017280px;}
.ls2a{letter-spacing:-0.011520px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls1b{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.025920px;}
.ls1e{letter-spacing:0.103680px;}
.ls20{letter-spacing:0.103800px;}
.ls9{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.175800px;}
.lsa{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.219000px;}
.ls10{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.553200px;}
.ls25{letter-spacing:0.696000px;}
.ls1f{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.745920px;}
.ls18{letter-spacing:0.924000px;}
.ls2{letter-spacing:6.480000px;}
.ls26{letter-spacing:13.680000px;}
.lsc{letter-spacing:13.860000px;}
.ls13{letter-spacing:14.400000px;}
.lsd{letter-spacing:14.580000px;}
.ls8{letter-spacing:15.120000px;}
.ls15{letter-spacing:18.180000px;}
.lse{letter-spacing:24.480000px;}
.ls7{letter-spacing:31.680000px;}
.ls23{letter-spacing:39.600000px;}
.ls21{letter-spacing:39.780000px;}
.ls22{letter-spacing:40.320000px;}
.ls1c{letter-spacing:41.940000px;}
.ls1d{letter-spacing:59.040000px;}
.ls14{letter-spacing:75.720000px;}
.ls1a{letter-spacing:174.918720px;}
.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;}
}
.wse{word-spacing:-19.993200px;}
.wsf{word-spacing:-19.659000px;}
.wsc{word-spacing:-19.543800px;}
.ws3{word-spacing:-19.448640px;}
.ws4{word-spacing:-19.440000px;}
.ws10{word-spacing:-19.428480px;}
.ws2{word-spacing:-19.422720px;}
.ws5{word-spacing:-19.414080px;}
.wsd{word-spacing:-19.411200px;}
.ws11{word-spacing:-19.281600px;}
.ws1{word-spacing:-17.749560px;}
.ws0{word-spacing:-16.488000px;}
.wsa{word-spacing:-15.864000px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.ws7{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.680200px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.486080px;}
._2{width:1.044000px;}
._3{width:2.589600px;}
._f{width:3.654720px;}
._c{width:5.054400px;}
._13{width:6.765120px;}
._15{width:8.098560px;}
._10{width:9.797760px;}
._2b{width:10.852320px;}
._8{width:11.897280px;}
._6{width:13.652640px;}
._b{width:15.118560px;}
._2c{width:17.029440px;}
._2f{width:18.351360px;}
._3a{width:19.585200px;}
._16{width:20.761920px;}
._1b{width:22.006080px;}
._5{width:23.044800px;}
._4{width:24.338880px;}
._d{width:25.816320px;}
._e{width:27.072000px;}
._7{width:28.226880px;}
._29{width:30.015360px;}
._1d{width:31.530720px;}
._11{width:33.048000px;}
._34{width:34.369920px;}
._35{width:35.470080px;}
._28{width:36.780480px;}
._27{width:38.024640px;}
._1e{width:39.813120px;}
._33{width:41.213280px;}
._a{width:42.579360px;}
._9{width:44.012160px;}
._25{width:45.156960px;}
._24{width:46.189440px;}
._2a{width:48.133440px;}
._26{width:49.325280px;}
._39{width:52.410240px;}
._2d{width:53.654400px;}
._31{width:56.920320px;}
._32{width:58.631040px;}
._36{width:60.311040px;}
._1a{width:61.377600px;}
._19{width:62.985600px;}
._30{width:64.196640px;}
._21{width:66.140640px;}
._22{width:67.184640px;}
._20{width:68.704800px;}
._1f{width:70.034880px;}
._2e{width:71.087040px;}
._1c{width:73.794240px;}
._37{width:75.394080px;}
._38{width:76.749120px;}
._14{width:79.004160px;}
._12{width:80.092800px;}
._23{width:84.169440px;}
._17{width:85.969440px;}
._18{width:87.713280px;}
._1{width:330.492000px;}
._3b{width:844.860000px;}
.fc5{color:rgb(32,33,34);}
.fc4{color:rgb(77,81,86);}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(32,33,36);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,56,100);}
.fs5{font-size:38.880000px;}
.fs3{font-size:51.120000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:58.320000px;}
.y53{bottom:88.596000px;}
.y52{bottom:95.436000px;}
.y7f{bottom:105.876000px;}
.y51{bottom:106.776000px;}
.y7e{bottom:112.716000px;}
.y7d{bottom:123.156000px;}
.y90{bottom:124.056000px;}
.y2a{bottom:125.676000px;}
.y7c{bottom:129.996000px;}
.y7b{bottom:140.436000px;}
.y4f{bottom:141.516000px;}
.y50{bottom:146.016000px;}
.y93{bottom:147.276000px;}
.y29{bottom:153.210000px;}
.y7a{bottom:157.710000px;}
.y92{bottom:158.610000px;}
.y79{bottom:164.550000px;}
.y9c{bottom:165.270000px;}
.y4e{bottom:169.410000px;}
.y8e{bottom:174.990000px;}
.y78{bottom:175.890000px;}
.y28{bottom:181.110000px;}
.y8d{bottom:181.830000px;}
.y8c{bottom:192.090000px;}
.y8f{bottom:192.270000px;}
.y9b{bottom:193.170000px;}
.yb2{bottom:195.690000px;}
.y4d{bottom:197.310000px;}
.y8b{bottom:198.930000px;}
.y27{bottom:209.010000px;}
.y8a{bottom:209.370000px;}
.y89{bottom:216.210000px;}
.y77{bottom:220.170000px;}
.y9a{bottom:221.070000px;}
.yb1{bottom:223.050000px;}
.y4c{bottom:225.210000px;}
.y88{bottom:226.650000px;}
.y87{bottom:233.490000px;}
.y26{bottom:236.910000px;}
.y86{bottom:244.830000px;}
.y76{bottom:248.070000px;}
.y99{bottom:248.970000px;}
.yb0{bottom:250.590000px;}
.y4b{bottom:252.570000px;}
.y25{bottom:264.630000px;}
.y75{bottom:275.970000px;}
.y98{bottom:276.690000px;}
.yaf{bottom:278.490000px;}
.y4a{bottom:280.110000px;}
.y24{bottom:292.530000px;}
.y74{bottom:303.870000px;}
.y97{bottom:304.590000px;}
.yae{bottom:306.210000px;}
.y49{bottom:308.010000px;}
.y85{bottom:308.370000px;}
.y23{bottom:320.430000px;}
.y73{bottom:331.590000px;}
.y96{bottom:332.490000px;}
.yad{bottom:334.110000px;}
.y48{bottom:335.910000px;}
.y22{bottom:348.375000px;}
.y72{bottom:359.535000px;}
.y95{bottom:360.435000px;}
.yac{bottom:362.055000px;}
.y47{bottom:363.675000px;}
.y21{bottom:375.735000px;}
.y71{bottom:387.435000px;}
.y94{bottom:387.795000px;}
.yab{bottom:389.955000px;}
.y46{bottom:391.575000px;}
.y20{bottom:402.735000px;}
.y70{bottom:415.335000px;}
.yaa{bottom:417.855000px;}
.y45{bottom:419.475000px;}
.y84{bottom:419.835000px;}
.y1f{bottom:430.275000px;}
.y6f{bottom:443.235000px;}
.ya9{bottom:445.755000px;}
.y44{bottom:447.375000px;}
.y83{bottom:447.735000px;}
.y1e{bottom:458.175000px;}
.y6e{bottom:471.135000px;}
.ya8{bottom:473.475000px;}
.y43{bottom:475.275000px;}
.y1d{bottom:485.535000px;}
.y6d{bottom:498.855000px;}
.ya7{bottom:501.375000px;}
.y42{bottom:502.995000px;}
.y82{bottom:503.355000px;}
.y1c{bottom:513.075000px;}
.y6c{bottom:526.755000px;}
.ya6{bottom:529.275000px;}
.y41{bottom:530.895000px;}
.y1b{bottom:540.975000px;}
.y6b{bottom:554.655000px;}
.ya5{bottom:557.175000px;}
.y40{bottom:558.795000px;}
.y1a{bottom:568.875000px;}
.y6a{bottom:582.555000px;}
.ya4{bottom:585.075000px;}
.y3f{bottom:586.695000px;}
.y19{bottom:596.595000px;}
.y68{bottom:610.485000px;}
.ya3{bottom:612.825000px;}
.y3e{bottom:614.625000px;}
.y69{bottom:614.985000px;}
.y18{bottom:624.525000px;}
.y67{bottom:638.205000px;}
.ya2{bottom:640.725000px;}
.y3d{bottom:642.525000px;}
.y17{bottom:652.425000px;}
.y65{bottom:666.105000px;}
.ya1{bottom:668.625000px;}
.y3c{bottom:670.245000px;}
.y66{bottom:670.605000px;}
.y16{bottom:680.325000px;}
.y64{bottom:694.005000px;}
.ya0{bottom:696.525000px;}
.y3b{bottom:698.145000px;}
.y15{bottom:707.685000px;}
.y63{bottom:721.905000px;}
.y9f{bottom:723.885000px;}
.y3a{bottom:726.045000px;}
.y14{bottom:734.865000px;}
.y62{bottom:749.805000px;}
.y9e{bottom:750.885000px;}
.y39{bottom:753.405000px;}
.y81{bottom:754.305000px;}
.y13{bottom:761.865000px;}
.y61{bottom:777.705000px;}
.y9d{bottom:778.065000px;}
.y38{bottom:780.405000px;}
.y12{bottom:788.865000px;}
.y60{bottom:805.425000px;}
.y37{bottom:807.945000px;}
.y11{bottom:815.865000px;}
.y5f{bottom:833.325000px;}
.y36{bottom:835.845000px;}
.y10{bottom:842.865000px;}
.y5d{bottom:861.225000px;}
.y35{bottom:863.205000px;}
.y5e{bottom:865.725000px;}
.yf{bottom:869.865000px;}
.y5c{bottom:889.170000px;}
.y34{bottom:890.790000px;}
.y91{bottom:893.670000px;}
.ye{bottom:896.910000px;}
.y5b{bottom:917.070000px;}
.y33{bottom:918.690000px;}
.yd{bottom:924.090000px;}
.y5a{bottom:944.790000px;}
.y32{bottom:946.590000px;}
.yc{bottom:951.450000px;}
.y59{bottom:972.690000px;}
.y31{bottom:974.310000px;}
.yb{bottom:978.090000px;}
.y58{bottom:1000.590000px;}
.y30{bottom:1002.210000px;}
.ya{bottom:1005.090000px;}
.y57{bottom:1028.490000px;}
.y2f{bottom:1030.110000px;}
.y9{bottom:1032.090000px;}
.y56{bottom:1056.390000px;}
.y2e{bottom:1057.470000px;}
.y8{bottom:1059.270000px;}
.y55{bottom:1084.290000px;}
.y2d{bottom:1084.650000px;}
.y7{bottom:1086.270000px;}
.y2c{bottom:1112.010000px;}
.y6{bottom:1113.270000px;}
.y80{bottom:1116.510000px;}
.y2b{bottom:1139.940000px;}
.y5{bottom:1140.300000px;}
.y54{bottom:1144.440000px;}
.y3{bottom:1181.520000px;}
.y2{bottom:1203.480000px;}
.y1{bottom:1224.720000px;}
.hc{height:38.158594px;}
.ha{height:43.057617px;}
.h7{height:56.687344px;}
.h6{height:57.408750px;}
.hd{height:58.651172px;}
.hf{height:59.614102px;}
.he{height:62.211094px;}
.h8{height:65.496094px;}
.hb{height:65.884219px;}
.h11{height:68.533594px;}
.h5{height:70.280156px;}
.h3{height:71.613281px;}
.h4{height:77.342344px;}
.h2{height:79.620469px;}
.h10{height:79.925027px;}
.h9{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:84.960000px;}
.x14{left:94.716000px;}
.x2d{left:100.116000px;}
.xf{left:127.476000px;}
.x6{left:164.010000px;}
.x15{left:181.828125px;}
.xd{left:182.910000px;}
.x16{left:194.790000px;}
.x11{left:198.208125px;}
.xc{left:201.810000px;}
.x12{left:211.170000px;}
.x1f{left:231.688125px;}
.x2e{left:238.348125px;}
.x37{left:239.968125px;}
.x20{left:244.650000px;}
.xb{left:249.870000px;}
.x1d{left:254.908125px;}
.x3{left:257.250000px;}
.x38{left:259.410000px;}
.x1b{left:261.568125px;}
.x2{left:266.430000px;}
.x1e{left:267.870000px;}
.x1c{left:274.530000px;}
.x9{left:293.655000px;}
.x13{left:301.035000px;}
.x1{left:308.235000px;}
.xe{left:312.195000px;}
.x7{left:339.195000px;}
.x29{left:370.333125px;}
.x2a{left:383.295000px;}
.xa{left:415.695000px;}
.x2f{left:426.313125px;}
.x4{left:431.535000px;}
.x30{left:445.755000px;}
.x27{left:459.073125px;}
.x8{left:467.745000px;}
.x28{left:472.065000px;}
.x35{left:516.883125px;}
.x36{left:536.325000px;}
.x2b{left:542.083125px;}
.x2c{left:555.045000px;}
.x23{left:562.783125px;}
.x24{left:575.745000px;}
.x25{left:600.583125px;}
.x21{left:606.343125px;}
.x26{left:613.545000px;}
.x22{left:619.305000px;}
.x19{left:647.383125px;}
.x5{left:658.950000px;}
.x1a{left:660.390000px;}
.x33{left:731.488125px;}
.x31{left:737.968125px;}
.x17{left:740.308125px;}
.x34{left:750.930000px;}
.x18{left:753.270000px;}
.x32{left:757.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.274133pt;}
.ls19{letter-spacing:-0.230933pt;}
.ls2c{letter-spacing:-0.140800pt;}
.ls17{letter-spacing:-0.030720pt;}
.ls27{letter-spacing:-0.025600pt;}
.ls6{letter-spacing:-0.023040pt;}
.ls5{letter-spacing:-0.015360pt;}
.ls2a{letter-spacing:-0.010240pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls1b{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.023040pt;}
.ls1e{letter-spacing:0.092160pt;}
.ls20{letter-spacing:0.092267pt;}
.ls9{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.156267pt;}
.lsa{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.194667pt;}
.ls10{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.491733pt;}
.ls25{letter-spacing:0.618667pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.663040pt;}
.ls18{letter-spacing:0.821333pt;}
.ls2{letter-spacing:5.760000pt;}
.ls26{letter-spacing:12.160000pt;}
.lsc{letter-spacing:12.320000pt;}
.ls13{letter-spacing:12.800000pt;}
.lsd{letter-spacing:12.960000pt;}
.ls8{letter-spacing:13.440000pt;}
.ls15{letter-spacing:16.160000pt;}
.lse{letter-spacing:21.760000pt;}
.ls7{letter-spacing:28.160000pt;}
.ls23{letter-spacing:35.200000pt;}
.ls21{letter-spacing:35.360000pt;}
.ls22{letter-spacing:35.840000pt;}
.ls1c{letter-spacing:37.280000pt;}
.ls1d{letter-spacing:52.480000pt;}
.ls14{letter-spacing:67.306667pt;}
.ls1a{letter-spacing:155.483307pt;}
.wse{word-spacing:-17.771733pt;}
.wsf{word-spacing:-17.474667pt;}
.wsc{word-spacing:-17.372267pt;}
.ws3{word-spacing:-17.287680pt;}
.ws4{word-spacing:-17.280000pt;}
.ws10{word-spacing:-17.269760pt;}
.ws2{word-spacing:-17.264640pt;}
.ws5{word-spacing:-17.256960pt;}
.wsd{word-spacing:-17.254400pt;}
.ws11{word-spacing:-17.139200pt;}
.ws1{word-spacing:-15.777387pt;}
.ws0{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.101333pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.049067pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.320960pt;}
._2{width:0.928000pt;}
._3{width:2.301867pt;}
._f{width:3.248640pt;}
._c{width:4.492800pt;}
._13{width:6.013440pt;}
._15{width:7.198720pt;}
._10{width:8.709120pt;}
._2b{width:9.646507pt;}
._8{width:10.575360pt;}
._6{width:12.135680pt;}
._b{width:13.438720pt;}
._2c{width:15.137280pt;}
._2f{width:16.312320pt;}
._3a{width:17.409067pt;}
._16{width:18.455040pt;}
._1b{width:19.560960pt;}
._5{width:20.484267pt;}
._4{width:21.634560pt;}
._d{width:22.947840pt;}
._e{width:24.064000pt;}
._7{width:25.090560pt;}
._29{width:26.680320pt;}
._1d{width:28.027307pt;}
._11{width:29.376000pt;}
._34{width:30.551040pt;}
._35{width:31.528960pt;}
._28{width:32.693760pt;}
._27{width:33.799680pt;}
._1e{width:35.389440pt;}
._33{width:36.634027pt;}
._a{width:37.848320pt;}
._9{width:39.121920pt;}
._25{width:40.139520pt;}
._24{width:41.057280pt;}
._2a{width:42.785280pt;}
._26{width:43.844693pt;}
._39{width:46.586880pt;}
._2d{width:47.692800pt;}
._31{width:50.595840pt;}
._32{width:52.116480pt;}
._36{width:53.609813pt;}
._1a{width:54.557867pt;}
._19{width:55.987200pt;}
._30{width:57.063680pt;}
._21{width:58.791680pt;}
._22{width:59.719680pt;}
._20{width:61.070933pt;}
._1f{width:62.253227pt;}
._2e{width:63.188480pt;}
._1c{width:65.594880pt;}
._37{width:67.016960pt;}
._38{width:68.221440pt;}
._14{width:70.225920pt;}
._12{width:71.193600pt;}
._23{width:74.817280pt;}
._17{width:76.417280pt;}
._18{width:77.967360pt;}
._1{width:293.770667pt;}
._3b{width:750.986667pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:45.440000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.840000pt;}
.y53{bottom:78.752000pt;}
.y52{bottom:84.832000pt;}
.y7f{bottom:94.112000pt;}
.y51{bottom:94.912000pt;}
.y7e{bottom:100.192000pt;}
.y7d{bottom:109.472000pt;}
.y90{bottom:110.272000pt;}
.y2a{bottom:111.712000pt;}
.y7c{bottom:115.552000pt;}
.y7b{bottom:124.832000pt;}
.y4f{bottom:125.792000pt;}
.y50{bottom:129.792000pt;}
.y93{bottom:130.912000pt;}
.y29{bottom:136.186667pt;}
.y7a{bottom:140.186667pt;}
.y92{bottom:140.986667pt;}
.y79{bottom:146.266667pt;}
.y9c{bottom:146.906667pt;}
.y4e{bottom:150.586667pt;}
.y8e{bottom:155.546667pt;}
.y78{bottom:156.346667pt;}
.y28{bottom:160.986667pt;}
.y8d{bottom:161.626667pt;}
.y8c{bottom:170.746667pt;}
.y8f{bottom:170.906667pt;}
.y9b{bottom:171.706667pt;}
.yb2{bottom:173.946667pt;}
.y4d{bottom:175.386667pt;}
.y8b{bottom:176.826667pt;}
.y27{bottom:185.786667pt;}
.y8a{bottom:186.106667pt;}
.y89{bottom:192.186667pt;}
.y77{bottom:195.706667pt;}
.y9a{bottom:196.506667pt;}
.yb1{bottom:198.266667pt;}
.y4c{bottom:200.186667pt;}
.y88{bottom:201.466667pt;}
.y87{bottom:207.546667pt;}
.y26{bottom:210.586667pt;}
.y86{bottom:217.626667pt;}
.y76{bottom:220.506667pt;}
.y99{bottom:221.306667pt;}
.yb0{bottom:222.746667pt;}
.y4b{bottom:224.506667pt;}
.y25{bottom:235.226667pt;}
.y75{bottom:245.306667pt;}
.y98{bottom:245.946667pt;}
.yaf{bottom:247.546667pt;}
.y4a{bottom:248.986667pt;}
.y24{bottom:260.026667pt;}
.y74{bottom:270.106667pt;}
.y97{bottom:270.746667pt;}
.yae{bottom:272.186667pt;}
.y49{bottom:273.786667pt;}
.y85{bottom:274.106667pt;}
.y23{bottom:284.826667pt;}
.y73{bottom:294.746667pt;}
.y96{bottom:295.546667pt;}
.yad{bottom:296.986667pt;}
.y48{bottom:298.586667pt;}
.y22{bottom:309.666667pt;}
.y72{bottom:319.586667pt;}
.y95{bottom:320.386667pt;}
.yac{bottom:321.826667pt;}
.y47{bottom:323.266667pt;}
.y21{bottom:333.986667pt;}
.y71{bottom:344.386667pt;}
.y94{bottom:344.706667pt;}
.yab{bottom:346.626667pt;}
.y46{bottom:348.066667pt;}
.y20{bottom:357.986667pt;}
.y70{bottom:369.186667pt;}
.yaa{bottom:371.426667pt;}
.y45{bottom:372.866667pt;}
.y84{bottom:373.186667pt;}
.y1f{bottom:382.466667pt;}
.y6f{bottom:393.986667pt;}
.ya9{bottom:396.226667pt;}
.y44{bottom:397.666667pt;}
.y83{bottom:397.986667pt;}
.y1e{bottom:407.266667pt;}
.y6e{bottom:418.786667pt;}
.ya8{bottom:420.866667pt;}
.y43{bottom:422.466667pt;}
.y1d{bottom:431.586667pt;}
.y6d{bottom:443.426667pt;}
.ya7{bottom:445.666667pt;}
.y42{bottom:447.106667pt;}
.y82{bottom:447.426667pt;}
.y1c{bottom:456.066667pt;}
.y6c{bottom:468.226667pt;}
.ya6{bottom:470.466667pt;}
.y41{bottom:471.906667pt;}
.y1b{bottom:480.866667pt;}
.y6b{bottom:493.026667pt;}
.ya5{bottom:495.266667pt;}
.y40{bottom:496.706667pt;}
.y1a{bottom:505.666667pt;}
.y6a{bottom:517.826667pt;}
.ya4{bottom:520.066667pt;}
.y3f{bottom:521.506667pt;}
.y19{bottom:530.306667pt;}
.y68{bottom:542.653333pt;}
.ya3{bottom:544.733333pt;}
.y3e{bottom:546.333333pt;}
.y69{bottom:546.653333pt;}
.y18{bottom:555.133333pt;}
.y67{bottom:567.293333pt;}
.ya2{bottom:569.533333pt;}
.y3d{bottom:571.133333pt;}
.y17{bottom:579.933333pt;}
.y65{bottom:592.093333pt;}
.ya1{bottom:594.333333pt;}
.y3c{bottom:595.773333pt;}
.y66{bottom:596.093333pt;}
.y16{bottom:604.733333pt;}
.y64{bottom:616.893333pt;}
.ya0{bottom:619.133333pt;}
.y3b{bottom:620.573333pt;}
.y15{bottom:629.053333pt;}
.y63{bottom:641.693333pt;}
.y9f{bottom:643.453333pt;}
.y3a{bottom:645.373333pt;}
.y14{bottom:653.213333pt;}
.y62{bottom:666.493333pt;}
.y9e{bottom:667.453333pt;}
.y39{bottom:669.693333pt;}
.y81{bottom:670.493333pt;}
.y13{bottom:677.213333pt;}
.y61{bottom:691.293333pt;}
.y9d{bottom:691.613333pt;}
.y38{bottom:693.693333pt;}
.y12{bottom:701.213333pt;}
.y60{bottom:715.933333pt;}
.y37{bottom:718.173333pt;}
.y11{bottom:725.213333pt;}
.y5f{bottom:740.733333pt;}
.y36{bottom:742.973333pt;}
.y10{bottom:749.213333pt;}
.y5d{bottom:765.533333pt;}
.y35{bottom:767.293333pt;}
.y5e{bottom:769.533333pt;}
.yf{bottom:773.213333pt;}
.y5c{bottom:790.373333pt;}
.y34{bottom:791.813333pt;}
.y91{bottom:794.373333pt;}
.ye{bottom:797.253333pt;}
.y5b{bottom:815.173333pt;}
.y33{bottom:816.613333pt;}
.yd{bottom:821.413333pt;}
.y5a{bottom:839.813333pt;}
.y32{bottom:841.413333pt;}
.yc{bottom:845.733333pt;}
.y59{bottom:864.613333pt;}
.y31{bottom:866.053333pt;}
.yb{bottom:869.413333pt;}
.y58{bottom:889.413333pt;}
.y30{bottom:890.853333pt;}
.ya{bottom:893.413333pt;}
.y57{bottom:914.213333pt;}
.y2f{bottom:915.653333pt;}
.y9{bottom:917.413333pt;}
.y56{bottom:939.013333pt;}
.y2e{bottom:939.973333pt;}
.y8{bottom:941.573333pt;}
.y55{bottom:963.813333pt;}
.y2d{bottom:964.133333pt;}
.y7{bottom:965.573333pt;}
.y2c{bottom:988.453333pt;}
.y6{bottom:989.573333pt;}
.y80{bottom:992.453333pt;}
.y2b{bottom:1013.280000pt;}
.y5{bottom:1013.600000pt;}
.y54{bottom:1017.280000pt;}
.y3{bottom:1050.240000pt;}
.y2{bottom:1069.760000pt;}
.y1{bottom:1088.640000pt;}
.hc{height:33.918750pt;}
.ha{height:38.273438pt;}
.h7{height:50.388750pt;}
.h6{height:51.030000pt;}
.hd{height:52.134375pt;}
.hf{height:52.990313pt;}
.he{height:55.298750pt;}
.h8{height:58.218750pt;}
.hb{height:58.563750pt;}
.h11{height:60.918750pt;}
.h5{height:62.471250pt;}
.h3{height:63.656250pt;}
.h4{height:68.748750pt;}
.h2{height:70.773750pt;}
.h10{height:71.044468pt;}
.h9{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:75.520000pt;}
.x14{left:84.192000pt;}
.x2d{left:88.992000pt;}
.xf{left:113.312000pt;}
.x6{left:145.786667pt;}
.x15{left:161.625000pt;}
.xd{left:162.586667pt;}
.x16{left:173.146667pt;}
.x11{left:176.185000pt;}
.xc{left:179.386667pt;}
.x12{left:187.706667pt;}
.x1f{left:205.945000pt;}
.x2e{left:211.865000pt;}
.x37{left:213.305000pt;}
.x20{left:217.466667pt;}
.xb{left:222.106667pt;}
.x1d{left:226.585000pt;}
.x3{left:228.666667pt;}
.x38{left:230.586667pt;}
.x1b{left:232.505000pt;}
.x2{left:236.826667pt;}
.x1e{left:238.106667pt;}
.x1c{left:244.026667pt;}
.x9{left:261.026667pt;}
.x13{left:267.586667pt;}
.x1{left:273.986667pt;}
.xe{left:277.506667pt;}
.x7{left:301.506667pt;}
.x29{left:329.185000pt;}
.x2a{left:340.706667pt;}
.xa{left:369.506667pt;}
.x2f{left:378.945000pt;}
.x4{left:383.586667pt;}
.x30{left:396.226667pt;}
.x27{left:408.065000pt;}
.x8{left:415.773333pt;}
.x28{left:419.613333pt;}
.x35{left:459.451667pt;}
.x36{left:476.733333pt;}
.x2b{left:481.851667pt;}
.x2c{left:493.373333pt;}
.x23{left:500.251667pt;}
.x24{left:511.773333pt;}
.x25{left:533.851667pt;}
.x21{left:538.971667pt;}
.x26{left:545.373333pt;}
.x22{left:550.493333pt;}
.x19{left:575.451667pt;}
.x5{left:585.733333pt;}
.x1a{left:587.013333pt;}
.x33{left:650.211667pt;}
.x31{left:655.971667pt;}
.x17{left:658.051667pt;}
.x34{left:667.493333pt;}
.x18{left:669.573333pt;}
.x32{left:673.253333pt;}
}




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