
    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_4e159903e67345aea24c978b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_b05d5f497862cbb8a151d666.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_d4b1f0b53be7d2a6787f9515.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_16742bc723681458618a2803.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_66d48bb5db7845561cffee60.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_11d7b1e3c13a859f88c3ff29.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.099609;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_4c3274d2ea5b3dcbb01ce8b6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_930e8664397d9c7bd6ef93ce.woff2')format("woff");}.ffb{font-family:ffb;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;}
.ls15{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.690000px;}
.ls9{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.341400px;}
.ls12{letter-spacing:-0.183600px;}
.lsb{letter-spacing:-0.180000px;}
.ls31{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.034560px;}
.lsd{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.148200px;}
.lsf{letter-spacing:0.149760px;}
.ls2b{letter-spacing:0.151920px;}
.lsa{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.217440px;}
.ls11{letter-spacing:0.252720px;}
.ls2{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.341400px;}
.ls2a{letter-spacing:0.354720px;}
.ls7{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.369360px;}
.ls32{letter-spacing:0.378600px;}
.ls29{letter-spacing:0.378720px;}
.ls2c{letter-spacing:0.489360px;}
.ls28{letter-spacing:19.260000px;}
.ls2e{letter-spacing:19.980000px;}
.ls5{letter-spacing:21.420000px;}
.ls21{letter-spacing:26.460000px;}
.ls22{letter-spacing:28.620000px;}
.ls1b{letter-spacing:30.780000px;}
.ls24{letter-spacing:36.540000px;}
.ls1a{letter-spacing:37.980000px;}
.ls1c{letter-spacing:55.260000px;}
.ls1d{letter-spacing:67.500000px;}
.ls14{letter-spacing:67.620000px;}
.ls17{letter-spacing:69.660000px;}
.ls18{letter-spacing:76.140000px;}
.ls1e{letter-spacing:95.700000px;}
.ls1f{letter-spacing:105.660000px;}
.ls20{letter-spacing:113.580000px;}
.ls19{letter-spacing:120.780000px;}
.ls23{letter-spacing:121.500000px;}
.ls2d{letter-spacing:169.517280px;}
.ls16{letter-spacing:183.420000px;}
.ls13{letter-spacing:188.460000px;}
.ls26{letter-spacing:211.277280px;}
.ls10{letter-spacing:226.596000px;}
.lse{letter-spacing:247.476000px;}
.ls25{letter-spacing:302.916000px;}
.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;}
}
.ws10{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.wsf{word-spacing:-21.401400px;}
.wsa{word-spacing:-21.312720px;}
.wsc{word-spacing:-21.208200px;}
.ws9{word-spacing:-21.060000px;}
.wse{word-spacing:-21.031920px;}
.wsd{word-spacing:-20.718600px;}
.wsb{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.370000px;}
.ws0{word-spacing:-19.726560px;}
.ws8{word-spacing:-19.542960px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws3{word-spacing:0.000000px;}
._3c{margin-left:-14.147520px;}
._3b{margin-left:-11.281920px;}
._3a{margin-left:-9.856080px;}
._39{margin-left:-8.424000px;}
._d{margin-left:-5.644080px;}
._1a{margin-left:-4.464720px;}
._23{margin-left:-2.611440px;}
._2{margin-left:-1.432080px;}
._3{width:1.149120px;}
._4{width:2.866080px;}
._16{width:4.296240px;}
._17{width:5.475600px;}
._8{width:6.486480px;}
._5{width:7.581600px;}
._6{width:8.929440px;}
._7{width:10.277280px;}
._24{width:11.540880px;}
._22{width:12.804480px;}
._e{width:13.899600px;}
._f{width:15.000240px;}
._2a{width:16.426800px;}
._b{width:18.027360px;}
._c{width:19.375200px;}
._30{width:22.110960px;}
._1e{width:23.378640px;}
._14{width:25.019280px;}
._15{width:26.367120px;}
._18{width:27.913680px;}
._19{width:29.208000px;}
._13{width:30.579120px;}
._12{width:31.758480px;}
._11{width:32.937840px;}
._1d{width:34.369920px;}
._20{width:35.633520px;}
._21{width:36.644400px;}
._1b{width:37.823760px;}
._38{width:39.181920px;}
._1c{width:40.228800px;}
._a{width:41.530320px;}
._9{width:42.878160px;}
._26{width:43.973280px;}
._2d{width:45.182880px;}
._29{width:46.332000px;}
._28{width:47.511360px;}
._25{width:49.196160px;}
._1f{width:50.904720px;}
._31{width:52.211520px;}
._33{width:54.587520px;}
._32{width:55.598400px;}
._2c{width:61.410960px;}
._2b{width:62.927280px;}
._3d{width:65.410800px;}
._3e{width:67.177200px;}
._36{width:73.204560px;}
._37{width:74.672880px;}
._27{width:103.194000px;}
._10{width:191.340000px;}
._35{width:226.416000px;}
._34{width:247.476000px;}
._0{width:292.222560px;}
._2f{width:302.916000px;}
._1{width:1213.426560px;}
._2e{width:2754.996000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(255,0,0);}
.fc6{color:rgb(0,0,255);}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:8.100000px;}
.y83{bottom:8.130000px;}
.y75{bottom:8.280000px;}
.y6{bottom:10.440000px;}
.y8b{bottom:12.420000px;}
.y86{bottom:12.600000px;}
.y93{bottom:14.220000px;}
.y92{bottom:17.820000px;}
.y5{bottom:31.140000px;}
.y6d{bottom:35.820000px;}
.y82{bottom:35.850000px;}
.y7b{bottom:35.865000px;}
.y6f{bottom:36.000000px;}
.y8f{bottom:36.030000px;}
.y7f{bottom:39.420000px;}
.y78{bottom:39.600000px;}
.y7e{bottom:43.020000px;}
.y77{bottom:43.380000px;}
.y8d{bottom:63.540000px;}
.y6c{bottom:63.720000px;}
.y7a{bottom:63.765000px;}
.y98{bottom:63.900000px;}
.y66{bottom:66.600000px;}
.y37{bottom:66.960000px;}
.y90{bottom:67.320000px;}
.y36{bottom:72.180000px;}
.yb2{bottom:73.260000px;}
.y65{bottom:82.080000px;}
.y35{bottom:84.240000px;}
.y2c{bottom:87.480000px;}
.y55{bottom:89.460000px;}
.y64{bottom:97.560000px;}
.yb1{bottom:100.980000px;}
.y34{bottom:101.340000px;}
.y54{bottom:102.600000px;}
.y33{bottom:106.560000px;}
.y63{bottom:113.220000px;}
.y2b{bottom:115.380000px;}
.y32{bottom:118.620000px;}
.y31{bottom:123.840000px;}
.y8e{bottom:127.260000px;}
.yb0{bottom:128.700000px;}
.y62{bottom:129.060000px;}
.y61{bottom:134.280000px;}
.y72{bottom:135.900000px;}
.y30{bottom:137.160000px;}
.y71{bottom:141.120000px;}
.y53{bottom:142.020000px;}
.y2a{bottom:143.100000px;}
.y70{bottom:154.470000px;}
.yaf{bottom:156.630000px;}
.y60{bottom:165.630000px;}
.y52{bottom:169.770000px;}
.y29{bottom:170.850000px;}
.y5f{bottom:171.570000px;}
.y8c{bottom:183.810000px;}
.yae{bottom:184.350000px;}
.y5e{bottom:185.790000px;}
.y51{bottom:197.490000px;}
.y28{bottom:198.570000px;}
.yad{bottom:212.070000px;}
.y50{bottom:225.210000px;}
.y27{bottom:226.470000px;}
.y5d{bottom:239.250000px;}
.yac{bottom:239.970000px;}
.y6e{bottom:243.750000px;}
.y4f{bottom:253.110000px;}
.y26{bottom:254.190000px;}
.y5c{bottom:266.970000px;}
.yab{bottom:267.690000px;}
.y8a{bottom:267.870000px;}
.y4e{bottom:280.830000px;}
.y25{bottom:281.910000px;}
.y5b{bottom:294.690000px;}
.yaa{bottom:295.410000px;}
.y6b{bottom:300.090000px;}
.y89{bottom:300.810000px;}
.y4c{bottom:308.550000px;}
.y24{bottom:309.810000px;}
.y4d{bottom:316.110000px;}
.y2f{bottom:317.370000px;}
.y5a{bottom:322.590000px;}
.ya9{bottom:323.130000px;}
.y4b{bottom:336.270000px;}
.y23{bottom:337.530000px;}
.y59{bottom:350.310000px;}
.ya8{bottom:351.030000px;}
.y88{bottom:356.970000px;}
.y4a{bottom:364.170000px;}
.y22{bottom:365.250000px;}
.ya7{bottom:378.750000px;}
.y69{bottom:384.150000px;}
.y49{bottom:391.890000px;}
.y57{bottom:392.790000px;}
.y21{bottom:392.970000px;}
.y58{bottom:400.350000px;}
.ya6{bottom:406.515000px;}
.y48{bottom:419.655000px;}
.y20{bottom:420.915000px;}
.y68{bottom:428.475000px;}
.ya5{bottom:434.415000px;}
.y87{bottom:441.075000px;}
.y47{bottom:447.555000px;}
.y1f{bottom:448.635000px;}
.ya4{bottom:462.135000px;}
.y46{bottom:475.275000px;}
.y1e{bottom:476.355000px;}
.y2e{bottom:483.915000px;}
.ya3{bottom:489.855000px;}
.y45{bottom:502.995000px;}
.y1d{bottom:504.255000px;}
.ya2{bottom:517.575000px;}
.y85{bottom:525.135000px;}
.y44{bottom:530.715000px;}
.y1c{bottom:531.975000px;}
.ya1{bottom:545.475000px;}
.y84{bottom:558.075000px;}
.y43{bottom:558.615000px;}
.y1b{bottom:559.695000px;}
.ya0{bottom:573.195000px;}
.y42{bottom:586.335000px;}
.y1a{bottom:587.415000px;}
.y9f{bottom:600.915000px;}
.y41{bottom:614.055000px;}
.y19{bottom:615.315000px;}
.y9e{bottom:628.635000px;}
.y40{bottom:641.955000px;}
.y81{bottom:642.135000px;}
.y18{bottom:643.035000px;}
.y9d{bottom:656.565000px;}
.y3f{bottom:669.705000px;}
.y17{bottom:670.785000px;}
.y67{bottom:678.345000px;}
.y9c{bottom:684.285000px;}
.y3e{bottom:697.425000px;}
.y80{bottom:698.325000px;}
.y16{bottom:698.505000px;}
.y9b{bottom:712.005000px;}
.y3d{bottom:725.145000px;}
.y15{bottom:726.405000px;}
.y2d{bottom:733.965000px;}
.y9a{bottom:739.905000px;}
.y3c{bottom:753.045000px;}
.y14{bottom:754.125000px;}
.y7d{bottom:754.665000px;}
.y99{bottom:767.625000px;}
.y13{bottom:781.845000px;}
.y97{bottom:787.965000px;}
.y3a{bottom:795.525000px;}
.y3b{bottom:803.085000px;}
.y12{bottom:809.745000px;}
.y7c{bottom:818.025000px;}
.y39{bottom:823.605000px;}
.y11{bottom:837.465000px;}
.y38{bottom:846.825000px;}
.y10{bottom:865.185000px;}
.y96{bottom:872.205000px;}
.y79{bottom:874.365000px;}
.yf{bottom:892.905000px;}
.ye{bottom:920.850000px;}
.y95{bottom:928.590000px;}
.yd{bottom:948.570000px;}
.y76{bottom:958.470000px;}
.yc{bottom:976.290000px;}
.yb{bottom:1004.190000px;}
.y94{bottom:1012.650000px;}
.y74{bottom:1022.190000px;}
.ya{bottom:1031.910000px;}
.y73{bottom:1050.810000px;}
.y9{bottom:1059.630000px;}
.y56{bottom:1067.190000px;}
.y8{bottom:1087.350000px;}
.y91{bottom:1096.710000px;}
.y7{bottom:1115.250000px;}
.y4{bottom:1139.370000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1183.320000px;}
.y1{bottom:1210.680000px;}
.h13{height:27.756000px;}
.h16{height:27.900000px;}
.h1d{height:32.040000px;}
.h1b{height:32.220000px;}
.h21{height:37.440000px;}
.hd{height:38.158594px;}
.h11{height:41.535703px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.hb{height:52.998047px;}
.h10{height:54.421875px;}
.h1c{height:55.440000px;}
.h1a{height:55.476000px;}
.h15{height:55.620000px;}
.h1f{height:55.656000px;}
.hf{height:58.651172px;}
.h20{height:59.220000px;}
.h12{height:59.436914px;}
.he{height:59.439023px;}
.h19{height:62.640000px;}
.h17{height:63.000000px;}
.hc{height:65.884219px;}
.h4{height:67.169883px;}
.ha{height:74.244727px;}
.h2{height:76.355508px;}
.h9{height:82.676953px;}
.h1e{height:83.160000px;}
.h14{height:83.340000px;}
.h18{height:83.376000px;}
.h22{height:83.520000px;}
.h8{height:84.898125px;}
.h23{height:86.585445px;}
.h6{height:95.874961px;}
.h3{height:105.060586px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:49.320000px;}
.w5{width:647.925000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.280000px;}
.x5{left:42.479987px;}
.x4{left:84.995987px;}
.x20{left:88.596000px;}
.x11{left:89.855987px;}
.x6{left:102.095987px;}
.x1{left:106.415987px;}
.x1c{left:117.575987px;}
.x22{left:138.636000px;}
.x9{left:164.369987px;}
.x12{left:187.949987px;}
.xb{left:191.729973px;}
.xc{left:198.569987px;}
.xf{left:259.949973px;}
.x7{left:267.014987px;}
.x1d{left:281.594987px;}
.x10{left:301.034987px;}
.xd{left:336.134973px;}
.xe{left:342.974987px;}
.xa{left:365.834987px;}
.x18{left:372.494973px;}
.x19{left:379.334987px;}
.x8{left:446.504987px;}
.x15{left:453.884987px;}
.x1a{left:514.184973px;}
.x2{left:521.564987px;}
.x1e{left:598.964973px;}
.x1f{left:605.804987px;}
.x3{left:641.669987px;}
.x13{left:698.189973px;}
.x14{left:705.029987px;}
.x1b{left:734.549987px;}
.x16{left:787.289973px;}
.x17{left:794.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.613333pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.303467pt;}
.ls12{letter-spacing:-0.163200pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls31{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.030720pt;}
.lsd{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.131733pt;}
.lsf{letter-spacing:0.133120pt;}
.ls2b{letter-spacing:0.135040pt;}
.lsa{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.193280pt;}
.ls11{letter-spacing:0.224640pt;}
.ls2{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.303467pt;}
.ls2a{letter-spacing:0.315307pt;}
.ls7{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.328320pt;}
.ls32{letter-spacing:0.336533pt;}
.ls29{letter-spacing:0.336640pt;}
.ls2c{letter-spacing:0.434987pt;}
.ls28{letter-spacing:17.120000pt;}
.ls2e{letter-spacing:17.760000pt;}
.ls5{letter-spacing:19.040000pt;}
.ls21{letter-spacing:23.520000pt;}
.ls22{letter-spacing:25.440000pt;}
.ls1b{letter-spacing:27.360000pt;}
.ls24{letter-spacing:32.480000pt;}
.ls1a{letter-spacing:33.760000pt;}
.ls1c{letter-spacing:49.120000pt;}
.ls1d{letter-spacing:60.000000pt;}
.ls14{letter-spacing:60.106667pt;}
.ls17{letter-spacing:61.920000pt;}
.ls18{letter-spacing:67.680000pt;}
.ls1e{letter-spacing:85.066667pt;}
.ls1f{letter-spacing:93.920000pt;}
.ls20{letter-spacing:100.960000pt;}
.ls19{letter-spacing:107.360000pt;}
.ls23{letter-spacing:108.000000pt;}
.ls2d{letter-spacing:150.682027pt;}
.ls16{letter-spacing:163.040000pt;}
.ls13{letter-spacing:167.520000pt;}
.ls26{letter-spacing:187.802027pt;}
.ls10{letter-spacing:201.418667pt;}
.lse{letter-spacing:219.978667pt;}
.ls25{letter-spacing:269.258667pt;}
.ws10{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.wsf{word-spacing:-19.023467pt;}
.wsa{word-spacing:-18.944640pt;}
.wsc{word-spacing:-18.851733pt;}
.ws9{word-spacing:-18.720000pt;}
.wse{word-spacing:-18.695040pt;}
.wsd{word-spacing:-18.416533pt;}
.wsb{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.106667pt;}
.ws0{word-spacing:-17.534720pt;}
.ws8{word-spacing:-17.371520pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws3{word-spacing:0.000000pt;}
._3c{margin-left:-12.575573pt;}
._3b{margin-left:-10.028373pt;}
._3a{margin-left:-8.760960pt;}
._39{margin-left:-7.488000pt;}
._d{margin-left:-5.016960pt;}
._1a{margin-left:-3.968640pt;}
._23{margin-left:-2.321280pt;}
._2{margin-left:-1.272960pt;}
._3{width:1.021440pt;}
._4{width:2.547627pt;}
._16{width:3.818880pt;}
._17{width:4.867200pt;}
._8{width:5.765760pt;}
._5{width:6.739200pt;}
._6{width:7.937280pt;}
._7{width:9.135360pt;}
._24{width:10.258560pt;}
._22{width:11.381760pt;}
._e{width:12.355200pt;}
._f{width:13.333547pt;}
._2a{width:14.601600pt;}
._b{width:16.024320pt;}
._c{width:17.222400pt;}
._30{width:19.654187pt;}
._1e{width:20.781013pt;}
._14{width:22.239360pt;}
._15{width:23.437440pt;}
._18{width:24.812160pt;}
._19{width:25.962667pt;}
._13{width:27.181440pt;}
._12{width:28.229760pt;}
._11{width:29.278080pt;}
._1d{width:30.551040pt;}
._20{width:31.674240pt;}
._21{width:32.572800pt;}
._1b{width:33.621120pt;}
._38{width:34.828373pt;}
._1c{width:35.758933pt;}
._a{width:36.915840pt;}
._9{width:38.113920pt;}
._26{width:39.087360pt;}
._2d{width:40.162560pt;}
._29{width:41.184000pt;}
._28{width:42.232320pt;}
._25{width:43.729920pt;}
._1f{width:45.248640pt;}
._31{width:46.410240pt;}
._33{width:48.522240pt;}
._32{width:49.420800pt;}
._2c{width:54.587520pt;}
._2b{width:55.935360pt;}
._3d{width:58.142933pt;}
._3e{width:59.713067pt;}
._36{width:65.070720pt;}
._37{width:66.375893pt;}
._27{width:91.728000pt;}
._10{width:170.080000pt;}
._35{width:201.258667pt;}
._34{width:219.978667pt;}
._0{width:259.753387pt;}
._2f{width:269.258667pt;}
._1{width:1078.601387pt;}
._2e{width:2448.885333pt;}
.fs8{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:7.200000pt;}
.y83{bottom:7.226667pt;}
.y75{bottom:7.360000pt;}
.y6{bottom:9.280000pt;}
.y8b{bottom:11.040000pt;}
.y86{bottom:11.200000pt;}
.y93{bottom:12.640000pt;}
.y92{bottom:15.840000pt;}
.y5{bottom:27.680000pt;}
.y6d{bottom:31.840000pt;}
.y82{bottom:31.866667pt;}
.y7b{bottom:31.880000pt;}
.y6f{bottom:32.000000pt;}
.y8f{bottom:32.026667pt;}
.y7f{bottom:35.040000pt;}
.y78{bottom:35.200000pt;}
.y7e{bottom:38.240000pt;}
.y77{bottom:38.560000pt;}
.y8d{bottom:56.480000pt;}
.y6c{bottom:56.640000pt;}
.y7a{bottom:56.680000pt;}
.y98{bottom:56.800000pt;}
.y66{bottom:59.200000pt;}
.y37{bottom:59.520000pt;}
.y90{bottom:59.840000pt;}
.y36{bottom:64.160000pt;}
.yb2{bottom:65.120000pt;}
.y65{bottom:72.960000pt;}
.y35{bottom:74.880000pt;}
.y2c{bottom:77.760000pt;}
.y55{bottom:79.520000pt;}
.y64{bottom:86.720000pt;}
.yb1{bottom:89.760000pt;}
.y34{bottom:90.080000pt;}
.y54{bottom:91.200000pt;}
.y33{bottom:94.720000pt;}
.y63{bottom:100.640000pt;}
.y2b{bottom:102.560000pt;}
.y32{bottom:105.440000pt;}
.y31{bottom:110.080000pt;}
.y8e{bottom:113.120000pt;}
.yb0{bottom:114.400000pt;}
.y62{bottom:114.720000pt;}
.y61{bottom:119.360000pt;}
.y72{bottom:120.800000pt;}
.y30{bottom:121.920000pt;}
.y71{bottom:125.440000pt;}
.y53{bottom:126.240000pt;}
.y2a{bottom:127.200000pt;}
.y70{bottom:137.306667pt;}
.yaf{bottom:139.226667pt;}
.y60{bottom:147.226667pt;}
.y52{bottom:150.906667pt;}
.y29{bottom:151.866667pt;}
.y5f{bottom:152.506667pt;}
.y8c{bottom:163.386667pt;}
.yae{bottom:163.866667pt;}
.y5e{bottom:165.146667pt;}
.y51{bottom:175.546667pt;}
.y28{bottom:176.506667pt;}
.yad{bottom:188.506667pt;}
.y50{bottom:200.186667pt;}
.y27{bottom:201.306667pt;}
.y5d{bottom:212.666667pt;}
.yac{bottom:213.306667pt;}
.y6e{bottom:216.666667pt;}
.y4f{bottom:224.986667pt;}
.y26{bottom:225.946667pt;}
.y5c{bottom:237.306667pt;}
.yab{bottom:237.946667pt;}
.y8a{bottom:238.106667pt;}
.y4e{bottom:249.626667pt;}
.y25{bottom:250.586667pt;}
.y5b{bottom:261.946667pt;}
.yaa{bottom:262.586667pt;}
.y6b{bottom:266.746667pt;}
.y89{bottom:267.386667pt;}
.y4c{bottom:274.266667pt;}
.y24{bottom:275.386667pt;}
.y4d{bottom:280.986667pt;}
.y2f{bottom:282.106667pt;}
.y5a{bottom:286.746667pt;}
.ya9{bottom:287.226667pt;}
.y4b{bottom:298.906667pt;}
.y23{bottom:300.026667pt;}
.y59{bottom:311.386667pt;}
.ya8{bottom:312.026667pt;}
.y88{bottom:317.306667pt;}
.y4a{bottom:323.706667pt;}
.y22{bottom:324.666667pt;}
.ya7{bottom:336.666667pt;}
.y69{bottom:341.466667pt;}
.y49{bottom:348.346667pt;}
.y57{bottom:349.146667pt;}
.y21{bottom:349.306667pt;}
.y58{bottom:355.866667pt;}
.ya6{bottom:361.346667pt;}
.y48{bottom:373.026667pt;}
.y20{bottom:374.146667pt;}
.y68{bottom:380.866667pt;}
.ya5{bottom:386.146667pt;}
.y87{bottom:392.066667pt;}
.y47{bottom:397.826667pt;}
.y1f{bottom:398.786667pt;}
.ya4{bottom:410.786667pt;}
.y46{bottom:422.466667pt;}
.y1e{bottom:423.426667pt;}
.y2e{bottom:430.146667pt;}
.ya3{bottom:435.426667pt;}
.y45{bottom:447.106667pt;}
.y1d{bottom:448.226667pt;}
.ya2{bottom:460.066667pt;}
.y85{bottom:466.786667pt;}
.y44{bottom:471.746667pt;}
.y1c{bottom:472.866667pt;}
.ya1{bottom:484.866667pt;}
.y84{bottom:496.066667pt;}
.y43{bottom:496.546667pt;}
.y1b{bottom:497.506667pt;}
.ya0{bottom:509.506667pt;}
.y42{bottom:521.186667pt;}
.y1a{bottom:522.146667pt;}
.y9f{bottom:534.146667pt;}
.y41{bottom:545.826667pt;}
.y19{bottom:546.946667pt;}
.y9e{bottom:558.786667pt;}
.y40{bottom:570.626667pt;}
.y81{bottom:570.786667pt;}
.y18{bottom:571.586667pt;}
.y9d{bottom:583.613333pt;}
.y3f{bottom:595.293333pt;}
.y17{bottom:596.253333pt;}
.y67{bottom:602.973333pt;}
.y9c{bottom:608.253333pt;}
.y3e{bottom:619.933333pt;}
.y80{bottom:620.733333pt;}
.y16{bottom:620.893333pt;}
.y9b{bottom:632.893333pt;}
.y3d{bottom:644.573333pt;}
.y15{bottom:645.693333pt;}
.y2d{bottom:652.413333pt;}
.y9a{bottom:657.693333pt;}
.y3c{bottom:669.373333pt;}
.y14{bottom:670.333333pt;}
.y7d{bottom:670.813333pt;}
.y99{bottom:682.333333pt;}
.y13{bottom:694.973333pt;}
.y97{bottom:700.413333pt;}
.y3a{bottom:707.133333pt;}
.y3b{bottom:713.853333pt;}
.y12{bottom:719.773333pt;}
.y7c{bottom:727.133333pt;}
.y39{bottom:732.093333pt;}
.y11{bottom:744.413333pt;}
.y38{bottom:752.733333pt;}
.y10{bottom:769.053333pt;}
.y96{bottom:775.293333pt;}
.y79{bottom:777.213333pt;}
.yf{bottom:793.693333pt;}
.ye{bottom:818.533333pt;}
.y95{bottom:825.413333pt;}
.yd{bottom:843.173333pt;}
.y76{bottom:851.973333pt;}
.yc{bottom:867.813333pt;}
.yb{bottom:892.613333pt;}
.y94{bottom:900.133333pt;}
.y74{bottom:908.613333pt;}
.ya{bottom:917.253333pt;}
.y73{bottom:934.053333pt;}
.y9{bottom:941.893333pt;}
.y56{bottom:948.613333pt;}
.y8{bottom:966.533333pt;}
.y91{bottom:974.853333pt;}
.y7{bottom:991.333333pt;}
.y4{bottom:1012.773333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1051.840000pt;}
.y1{bottom:1076.160000pt;}
.h13{height:24.672000pt;}
.h16{height:24.800000pt;}
.h1d{height:28.480000pt;}
.h1b{height:28.640000pt;}
.h21{height:33.280000pt;}
.hd{height:33.918750pt;}
.h11{height:36.920625pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.hb{height:47.109375pt;}
.h10{height:48.375000pt;}
.h1c{height:49.280000pt;}
.h1a{height:49.312000pt;}
.h15{height:49.440000pt;}
.h1f{height:49.472000pt;}
.hf{height:52.134375pt;}
.h20{height:52.640000pt;}
.h12{height:52.832812pt;}
.he{height:52.834688pt;}
.h19{height:55.680000pt;}
.h17{height:56.000000pt;}
.hc{height:58.563750pt;}
.h4{height:59.706562pt;}
.ha{height:65.995312pt;}
.h2{height:67.871563pt;}
.h9{height:73.490625pt;}
.h1e{height:73.920000pt;}
.h14{height:74.080000pt;}
.h18{height:74.112000pt;}
.h22{height:74.240000pt;}
.h8{height:75.465000pt;}
.h23{height:76.964840pt;}
.h6{height:85.222187pt;}
.h3{height:93.387187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:43.840000pt;}
.w5{width:575.933333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.360000pt;}
.x5{left:37.759988pt;}
.x4{left:75.551988pt;}
.x20{left:78.752000pt;}
.x11{left:79.871988pt;}
.x6{left:90.751988pt;}
.x1{left:94.591988pt;}
.x1c{left:104.511988pt;}
.x22{left:123.232000pt;}
.x9{left:146.106655pt;}
.x12{left:167.066655pt;}
.xb{left:170.426643pt;}
.xc{left:176.506655pt;}
.xf{left:231.066643pt;}
.x7{left:237.346655pt;}
.x1d{left:250.306655pt;}
.x10{left:267.586655pt;}
.xd{left:298.786643pt;}
.xe{left:304.866655pt;}
.xa{left:325.186655pt;}
.x18{left:331.106643pt;}
.x19{left:337.186655pt;}
.x8{left:396.893322pt;}
.x15{left:403.453322pt;}
.x1a{left:457.053310pt;}
.x2{left:463.613322pt;}
.x1e{left:532.413310pt;}
.x1f{left:538.493322pt;}
.x3{left:570.373322pt;}
.x13{left:620.613310pt;}
.x14{left:626.693322pt;}
.x1b{left:652.933322pt;}
.x16{left:699.813310pt;}
.x17{left:705.893322pt;}
}




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