
    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_2e30f96c03fc903a2f91f6d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_6883fc9a18b858e24e15252a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_ed387320f32a75e98444c6c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_1a4594077b5780f2728daca3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_e544e7a31303de5bdfb4618c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.069000px;}
.ls3{letter-spacing:15.600000px;}
.ls2{letter-spacing:72.000000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.319000px;}
.ws2{word-spacing:-17.250000px;}
.ws4{word-spacing:-15.000000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:29.880000px;}
.ws6{word-spacing:381.600000px;}
._4{margin-left:-9.039000px;}
._e{margin-left:-7.542000px;}
._c{margin-left:-6.408000px;}
._0{margin-left:-4.950000px;}
._1{margin-left:-2.970000px;}
._2{margin-left:-1.560000px;}
._3{width:1.023000px;}
._9{width:2.433000px;}
._5{width:3.528000px;}
._6{width:4.608000px;}
._7{width:5.961000px;}
._b{width:6.984000px;}
._8{width:8.352000px;}
._a{width:9.432000px;}
._d{width:10.500000px;}
._10{width:11.502000px;}
._11{width:12.966000px;}
._13{width:14.898000px;}
._f{width:16.776000px;}
._14{width:19.770000px;}
._12{width:21.120000px;}
._31{width:26.787000px;}
._30{width:36.096000px;}
._15{width:47.736000px;}
._17{width:53.280000px;}
._1a{width:241.200000px;}
._1d{width:277.200000px;}
._22{width:313.200000px;}
._18{width:363.600000px;}
._1b{width:399.600000px;}
._2f{width:601.926000px;}
._27{width:818.712000px;}
._19{width:893.070000px;}
._20{width:930.384000px;}
._16{width:938.778000px;}
._2e{width:992.952000px;}
._1f{width:1094.544000px;}
._1c{width:1100.016000px;}
._2d{width:1130.544000px;}
._21{width:1192.464000px;}
._1e{width:1202.256000px;}
._25{width:1212.192000px;}
._23{width:1225.206000px;}
._28{width:1226.304000px;}
._26{width:1266.336000px;}
._2c{width:1416.168000px;}
._2b{width:1487.736000px;}
._24{width:1490.886000px;}
._2a{width:1505.664000px;}
._29{width:1509.768000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:60.000000px;}
.fs3{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y2{bottom:88.950000px;}
.y54{bottom:133.500000px;}
.y6b{bottom:134.400000px;}
.y60{bottom:135.450000px;}
.yb4{bottom:136.950000px;}
.y6d{bottom:138.150000px;}
.y81{bottom:138.750000px;}
.y5f{bottom:139.050000px;}
.yf6{bottom:140.400000px;}
.ybe{bottom:140.550000px;}
.yd5{bottom:144.150000px;}
.yaf{bottom:146.400000px;}
.yb9{bottom:147.300000px;}
.y40{bottom:148.050000px;}
.y5d{bottom:149.250000px;}
.yb3{bottom:154.200000px;}
.ybc{bottom:155.250000px;}
.yba{bottom:159.000000px;}
.y53{bottom:159.450000px;}
.yb8{bottom:164.550000px;}
.y5e{bottom:167.400000px;}
.ybd{bottom:168.750000px;}
.y80{bottom:169.800000px;}
.yf5{bottom:171.450000px;}
.yb2{bottom:171.600000px;}
.y61{bottom:172.050000px;}
.yae{bottom:172.650000px;}
.yd4{bottom:173.100000px;}
.y3f{bottom:174.000000px;}
.y5c{bottom:175.200000px;}
.y8f{bottom:180.600000px;}
.yb7{bottom:181.950000px;}
.y88{bottom:183.450000px;}
.y52{bottom:185.400000px;}
.yb1{bottom:199.800000px;}
.y7f{bottom:200.850000px;}
.yad{bottom:201.000000px;}
.y5b{bottom:201.150000px;}
.y3e{bottom:202.200000px;}
.yf4{bottom:202.500000px;}
.yb6{bottom:210.150000px;}
.y51{bottom:211.350000px;}
.y87{bottom:214.500000px;}
.ybb{bottom:221.550000px;}
.y5a{bottom:229.500000px;}
.yb5{bottom:230.850000px;}
.yd3{bottom:231.150000px;}
.y7e{bottom:231.900000px;}
.y3d{bottom:233.250000px;}
.yf3{bottom:233.550000px;}
.y50{bottom:239.700000px;}
.y86{bottom:245.550000px;}
.yd2{bottom:260.250000px;}
.y59{bottom:260.550000px;}
.yb0{bottom:261.900000px;}
.y7d{bottom:262.950000px;}
.y3c{bottom:264.300000px;}
.yf2{bottom:264.600000px;}
.yd1{bottom:289.200000px;}
.y58{bottom:291.600000px;}
.y7c{bottom:294.000000px;}
.y3b{bottom:295.350000px;}
.yf1{bottom:295.650000px;}
.y18{bottom:307.500000px;}
.yd0{bottom:318.300000px;}
.y4f{bottom:322.650000px;}
.y7b{bottom:325.050000px;}
.y3a{bottom:326.400000px;}
.yf0{bottom:326.700000px;}
.ycf{bottom:347.250000px;}
.y4e{bottom:353.700000px;}
.y7a{bottom:356.850000px;}
.y39{bottom:357.450000px;}
.yce{bottom:376.350000px;}
.y4d{bottom:384.750000px;}
.y38{bottom:388.500000px;}
.yef{bottom:388.800000px;}
.y17{bottom:396.750000px;}
.ycd{bottom:405.300000px;}
.y78{bottom:415.650000px;}
.y57{bottom:415.800000px;}
.yac{bottom:418.350000px;}
.y37{bottom:419.550000px;}
.yee{bottom:419.850000px;}
.y79{bottom:420.750000px;}
.y16{bottom:426.600000px;}
.ycc{bottom:434.400000px;}
.y77{bottom:446.700000px;}
.y4c{bottom:446.850000px;}
.yab{bottom:449.400000px;}
.y36{bottom:450.600000px;}
.yfb{bottom:452.100000px;}
.y15{bottom:456.300000px;}
.y96{bottom:458.250000px;}
.ycb{bottom:463.350000px;}
.y76{bottom:477.750000px;}
.y4b{bottom:477.900000px;}
.y6c{bottom:480.300000px;}
.yaa{bottom:480.450000px;}
.y35{bottom:481.650000px;}
.yed{bottom:481.950000px;}
.yfa{bottom:483.150000px;}
.y14{bottom:486.150000px;}
.y95{bottom:489.300000px;}
.yca{bottom:492.450000px;}
.y4a{bottom:508.950000px;}
.ya9{bottom:511.500000px;}
.yec{bottom:513.000000px;}
.yf9{bottom:514.200000px;}
.y13{bottom:515.850000px;}
.y94{bottom:520.350000px;}
.yc9{bottom:521.400000px;}
.y49{bottom:540.000000px;}
.ya8{bottom:542.550000px;}
.y34{bottom:543.750000px;}
.yeb{bottom:544.050000px;}
.yf8{bottom:545.250000px;}
.y12{bottom:545.700000px;}
.yc8{bottom:550.500000px;}
.y93{bottom:551.400000px;}
.y48{bottom:571.050000px;}
.ya7{bottom:573.600000px;}
.y33{bottom:574.800000px;}
.yea{bottom:575.100000px;}
.y11{bottom:575.400000px;}
.yf7{bottom:576.300000px;}
.yc7{bottom:579.450000px;}
.y92{bottom:582.450000px;}
.y8e{bottom:593.100000px;}
.y56{bottom:602.100000px;}
.ya6{bottom:604.650000px;}
.y10{bottom:605.250000px;}
.y32{bottom:605.850000px;}
.ye9{bottom:606.150000px;}
.yc6{bottom:608.550000px;}
.y8d{bottom:624.150000px;}
.y47{bottom:633.150000px;}
.yf{bottom:634.950000px;}
.ya5{bottom:635.700000px;}
.y31{bottom:636.900000px;}
.ye8{bottom:637.200000px;}
.yc5{bottom:637.500000px;}
.y8c{bottom:655.200000px;}
.y46{bottom:664.200000px;}
.ye{bottom:664.800000px;}
.yc4{bottom:666.600000px;}
.ya4{bottom:666.750000px;}
.y30{bottom:667.950000px;}
.ye7{bottom:668.250000px;}
.y6a{bottom:674.550000px;}
.y8b{bottom:686.250000px;}
.y85{bottom:689.250000px;}
.yd{bottom:694.500000px;}
.y45{bottom:695.250000px;}
.yc3{bottom:695.550000px;}
.y2f{bottom:699.000000px;}
.ye6{bottom:699.300000px;}
.y69{bottom:705.600000px;}
.y84{bottom:720.300000px;}
.yc{bottom:724.350000px;}
.y22{bottom:726.300000px;}
.ya3{bottom:728.850000px;}
.y2e{bottom:730.050000px;}
.ye5{bottom:730.350000px;}
.yc2{bottom:745.350000px;}
.y8a{bottom:748.350000px;}
.y83{bottom:751.350000px;}
.yb{bottom:754.050000px;}
.y44{bottom:757.350000px;}
.ya2{bottom:759.900000px;}
.ye4{bottom:761.400000px;}
.yc1{bottom:766.050000px;}
.y68{bottom:767.700000px;}
.y89{bottom:779.400000px;}
.ya{bottom:783.900000px;}
.yc0{bottom:786.750000px;}
.y21{bottom:788.400000px;}
.ya1{bottom:790.950000px;}
.y2d{bottom:792.150000px;}
.ye3{bottom:792.450000px;}
.y67{bottom:798.750000px;}
.ybf{bottom:807.450000px;}
.y9{bottom:813.600000px;}
.y82{bottom:814.200000px;}
.y43{bottom:819.450000px;}
.ya0{bottom:822.000000px;}
.y66{bottom:829.800000px;}
.y8{bottom:843.450000px;}
.ye0{bottom:845.850000px;}
.y55{bottom:850.500000px;}
.y9f{bottom:853.050000px;}
.y2c{bottom:854.250000px;}
.y65{bottom:860.850000px;}
.ye2{bottom:863.550000px;}
.y7{bottom:873.150000px;}
.ydf{bottom:874.800000px;}
.y75{bottom:879.000000px;}
.y42{bottom:881.550000px;}
.y9e{bottom:884.100000px;}
.y2b{bottom:885.300000px;}
.y64{bottom:891.900000px;}
.y6{bottom:903.000000px;}
.ye1{bottom:903.600000px;}
.yde{bottom:903.900000px;}
.y74{bottom:910.050000px;}
.y20{bottom:912.600000px;}
.y9d{bottom:915.150000px;}
.y2a{bottom:916.350000px;}
.y63{bottom:922.950000px;}
.ydd{bottom:932.850000px;}
.y73{bottom:941.100000px;}
.y1f{bottom:943.650000px;}
.y9c{bottom:946.200000px;}
.y29{bottom:947.400000px;}
.y62{bottom:954.000000px;}
.ydc{bottom:961.950000px;}
.y5{bottom:964.350000px;}
.y72{bottom:972.150000px;}
.y1e{bottom:974.700000px;}
.y9b{bottom:977.250000px;}
.y28{bottom:978.450000px;}
.ydb{bottom:990.900000px;}
.y71{bottom:1003.200000px;}
.y1d{bottom:1005.750000px;}
.y9a{bottom:1008.300000px;}
.y27{bottom:1009.500000px;}
.yda{bottom:1020.000000px;}
.y70{bottom:1034.250000px;}
.y1c{bottom:1036.800000px;}
.y99{bottom:1039.350000px;}
.y26{bottom:1040.550000px;}
.yd9{bottom:1048.950000px;}
.y4{bottom:1058.700000px;}
.y6f{bottom:1065.300000px;}
.y1b{bottom:1067.850000px;}
.y98{bottom:1070.400000px;}
.y25{bottom:1071.600000px;}
.yd8{bottom:1078.050000px;}
.y3{bottom:1094.700000px;}
.y91{bottom:1096.350000px;}
.y6e{bottom:1097.100000px;}
.y1a{bottom:1098.900000px;}
.y97{bottom:1101.450000px;}
.yd7{bottom:1107.000000px;}
.y41{bottom:1129.950000px;}
.y24{bottom:1131.900000px;}
.yd6{bottom:1136.100000px;}
.y90{bottom:1159.200000px;}
.y19{bottom:1161.000000px;}
.y23{bottom:1161.600000px;}
.h9{height:48.761719px;}
.hb{height:52.646484px;}
.ha{height:52.792969px;}
.h7{height:60.543457px;}
.h6{height:61.284668px;}
.h2{height:63.175781px;}
.h8{height:63.351562px;}
.h5{height:63.949219px;}
.h4{height:69.278320px;}
.h3{height:79.936523px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:85.200000px;}
.x16{left:89.400000px;}
.xe{left:112.200000px;}
.x1a{left:125.400000px;}
.x6{left:139.200000px;}
.x13{left:166.200000px;}
.x15{left:216.300000px;}
.xc{left:229.200000px;}
.xf{left:234.750000px;}
.x12{left:279.150000px;}
.x2{left:282.450000px;}
.x19{left:288.150000px;}
.x9{left:291.600000px;}
.x1c{left:305.100000px;}
.xb{left:315.000000px;}
.x14{left:317.100000px;}
.x1b{left:319.950000px;}
.xd{left:323.850000px;}
.x11{left:341.550000px;}
.x3{left:351.000000px;}
.x10{left:361.050000px;}
.x1d{left:407.400000px;}
.x4{left:422.700000px;}
.x17{left:450.750000px;}
.x18{left:529.200000px;}
.x7{left:729.300000px;}
.x8{left:743.850000px;}
.xa{left:790.050000px;}
.x1{left:799.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.061333pt;}
.ls3{letter-spacing:13.866667pt;}
.ls2{letter-spacing:64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.394667pt;}
.ws2{word-spacing:-15.333333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:26.560000pt;}
.ws6{word-spacing:339.200000pt;}
._4{margin-left:-8.034667pt;}
._e{margin-left:-6.704000pt;}
._c{margin-left:-5.696000pt;}
._0{margin-left:-4.400000pt;}
._1{margin-left:-2.640000pt;}
._2{margin-left:-1.386667pt;}
._3{width:0.909333pt;}
._9{width:2.162667pt;}
._5{width:3.136000pt;}
._6{width:4.096000pt;}
._7{width:5.298667pt;}
._b{width:6.208000pt;}
._8{width:7.424000pt;}
._a{width:8.384000pt;}
._d{width:9.333333pt;}
._10{width:10.224000pt;}
._11{width:11.525333pt;}
._13{width:13.242667pt;}
._f{width:14.912000pt;}
._14{width:17.573333pt;}
._12{width:18.773333pt;}
._31{width:23.810667pt;}
._30{width:32.085333pt;}
._15{width:42.432000pt;}
._17{width:47.360000pt;}
._1a{width:214.400000pt;}
._1d{width:246.400000pt;}
._22{width:278.400000pt;}
._18{width:323.200000pt;}
._1b{width:355.200000pt;}
._2f{width:535.045333pt;}
._27{width:727.744000pt;}
._19{width:793.840000pt;}
._20{width:827.008000pt;}
._16{width:834.469333pt;}
._2e{width:882.624000pt;}
._1f{width:972.928000pt;}
._1c{width:977.792000pt;}
._2d{width:1004.928000pt;}
._21{width:1059.968000pt;}
._1e{width:1068.672000pt;}
._25{width:1077.504000pt;}
._23{width:1089.072000pt;}
._28{width:1090.048000pt;}
._26{width:1125.632000pt;}
._2c{width:1258.816000pt;}
._2b{width:1322.432000pt;}
._24{width:1325.232000pt;}
._2a{width:1338.368000pt;}
._29{width:1342.016000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y2{bottom:79.066667pt;}
.y54{bottom:118.666667pt;}
.y6b{bottom:119.466667pt;}
.y60{bottom:120.400000pt;}
.yb4{bottom:121.733333pt;}
.y6d{bottom:122.800000pt;}
.y81{bottom:123.333333pt;}
.y5f{bottom:123.600000pt;}
.yf6{bottom:124.800000pt;}
.ybe{bottom:124.933333pt;}
.yd5{bottom:128.133333pt;}
.yaf{bottom:130.133333pt;}
.yb9{bottom:130.933333pt;}
.y40{bottom:131.600000pt;}
.y5d{bottom:132.666667pt;}
.yb3{bottom:137.066667pt;}
.ybc{bottom:138.000000pt;}
.yba{bottom:141.333333pt;}
.y53{bottom:141.733333pt;}
.yb8{bottom:146.266667pt;}
.y5e{bottom:148.800000pt;}
.ybd{bottom:150.000000pt;}
.y80{bottom:150.933333pt;}
.yf5{bottom:152.400000pt;}
.yb2{bottom:152.533333pt;}
.y61{bottom:152.933333pt;}
.yae{bottom:153.466667pt;}
.yd4{bottom:153.866667pt;}
.y3f{bottom:154.666667pt;}
.y5c{bottom:155.733333pt;}
.y8f{bottom:160.533333pt;}
.yb7{bottom:161.733333pt;}
.y88{bottom:163.066667pt;}
.y52{bottom:164.800000pt;}
.yb1{bottom:177.600000pt;}
.y7f{bottom:178.533333pt;}
.yad{bottom:178.666667pt;}
.y5b{bottom:178.800000pt;}
.y3e{bottom:179.733333pt;}
.yf4{bottom:180.000000pt;}
.yb6{bottom:186.800000pt;}
.y51{bottom:187.866667pt;}
.y87{bottom:190.666667pt;}
.ybb{bottom:196.933333pt;}
.y5a{bottom:204.000000pt;}
.yb5{bottom:205.200000pt;}
.yd3{bottom:205.466667pt;}
.y7e{bottom:206.133333pt;}
.y3d{bottom:207.333333pt;}
.yf3{bottom:207.600000pt;}
.y50{bottom:213.066667pt;}
.y86{bottom:218.266667pt;}
.yd2{bottom:231.333333pt;}
.y59{bottom:231.600000pt;}
.yb0{bottom:232.800000pt;}
.y7d{bottom:233.733333pt;}
.y3c{bottom:234.933333pt;}
.yf2{bottom:235.200000pt;}
.yd1{bottom:257.066667pt;}
.y58{bottom:259.200000pt;}
.y7c{bottom:261.333333pt;}
.y3b{bottom:262.533333pt;}
.yf1{bottom:262.800000pt;}
.y18{bottom:273.333333pt;}
.yd0{bottom:282.933333pt;}
.y4f{bottom:286.800000pt;}
.y7b{bottom:288.933333pt;}
.y3a{bottom:290.133333pt;}
.yf0{bottom:290.400000pt;}
.ycf{bottom:308.666667pt;}
.y4e{bottom:314.400000pt;}
.y7a{bottom:317.200000pt;}
.y39{bottom:317.733333pt;}
.yce{bottom:334.533333pt;}
.y4d{bottom:342.000000pt;}
.y38{bottom:345.333333pt;}
.yef{bottom:345.600000pt;}
.y17{bottom:352.666667pt;}
.ycd{bottom:360.266667pt;}
.y78{bottom:369.466667pt;}
.y57{bottom:369.600000pt;}
.yac{bottom:371.866667pt;}
.y37{bottom:372.933333pt;}
.yee{bottom:373.200000pt;}
.y79{bottom:374.000000pt;}
.y16{bottom:379.200000pt;}
.ycc{bottom:386.133333pt;}
.y77{bottom:397.066667pt;}
.y4c{bottom:397.200000pt;}
.yab{bottom:399.466667pt;}
.y36{bottom:400.533333pt;}
.yfb{bottom:401.866667pt;}
.y15{bottom:405.600000pt;}
.y96{bottom:407.333333pt;}
.ycb{bottom:411.866667pt;}
.y76{bottom:424.666667pt;}
.y4b{bottom:424.800000pt;}
.y6c{bottom:426.933333pt;}
.yaa{bottom:427.066667pt;}
.y35{bottom:428.133333pt;}
.yed{bottom:428.400000pt;}
.yfa{bottom:429.466667pt;}
.y14{bottom:432.133333pt;}
.y95{bottom:434.933333pt;}
.yca{bottom:437.733333pt;}
.y4a{bottom:452.400000pt;}
.ya9{bottom:454.666667pt;}
.yec{bottom:456.000000pt;}
.yf9{bottom:457.066667pt;}
.y13{bottom:458.533333pt;}
.y94{bottom:462.533333pt;}
.yc9{bottom:463.466667pt;}
.y49{bottom:480.000000pt;}
.ya8{bottom:482.266667pt;}
.y34{bottom:483.333333pt;}
.yeb{bottom:483.600000pt;}
.yf8{bottom:484.666667pt;}
.y12{bottom:485.066667pt;}
.yc8{bottom:489.333333pt;}
.y93{bottom:490.133333pt;}
.y48{bottom:507.600000pt;}
.ya7{bottom:509.866667pt;}
.y33{bottom:510.933333pt;}
.yea{bottom:511.200000pt;}
.y11{bottom:511.466667pt;}
.yf7{bottom:512.266667pt;}
.yc7{bottom:515.066667pt;}
.y92{bottom:517.733333pt;}
.y8e{bottom:527.200000pt;}
.y56{bottom:535.200000pt;}
.ya6{bottom:537.466667pt;}
.y10{bottom:538.000000pt;}
.y32{bottom:538.533333pt;}
.ye9{bottom:538.800000pt;}
.yc6{bottom:540.933333pt;}
.y8d{bottom:554.800000pt;}
.y47{bottom:562.800000pt;}
.yf{bottom:564.400000pt;}
.ya5{bottom:565.066667pt;}
.y31{bottom:566.133333pt;}
.ye8{bottom:566.400000pt;}
.yc5{bottom:566.666667pt;}
.y8c{bottom:582.400000pt;}
.y46{bottom:590.400000pt;}
.ye{bottom:590.933333pt;}
.yc4{bottom:592.533333pt;}
.ya4{bottom:592.666667pt;}
.y30{bottom:593.733333pt;}
.ye7{bottom:594.000000pt;}
.y6a{bottom:599.600000pt;}
.y8b{bottom:610.000000pt;}
.y85{bottom:612.666667pt;}
.yd{bottom:617.333333pt;}
.y45{bottom:618.000000pt;}
.yc3{bottom:618.266667pt;}
.y2f{bottom:621.333333pt;}
.ye6{bottom:621.600000pt;}
.y69{bottom:627.200000pt;}
.y84{bottom:640.266667pt;}
.yc{bottom:643.866667pt;}
.y22{bottom:645.600000pt;}
.ya3{bottom:647.866667pt;}
.y2e{bottom:648.933333pt;}
.ye5{bottom:649.200000pt;}
.yc2{bottom:662.533333pt;}
.y8a{bottom:665.200000pt;}
.y83{bottom:667.866667pt;}
.yb{bottom:670.266667pt;}
.y44{bottom:673.200000pt;}
.ya2{bottom:675.466667pt;}
.ye4{bottom:676.800000pt;}
.yc1{bottom:680.933333pt;}
.y68{bottom:682.400000pt;}
.y89{bottom:692.800000pt;}
.ya{bottom:696.800000pt;}
.yc0{bottom:699.333333pt;}
.y21{bottom:700.800000pt;}
.ya1{bottom:703.066667pt;}
.y2d{bottom:704.133333pt;}
.ye3{bottom:704.400000pt;}
.y67{bottom:710.000000pt;}
.ybf{bottom:717.733333pt;}
.y9{bottom:723.200000pt;}
.y82{bottom:723.733333pt;}
.y43{bottom:728.400000pt;}
.ya0{bottom:730.666667pt;}
.y66{bottom:737.600000pt;}
.y8{bottom:749.733333pt;}
.ye0{bottom:751.866667pt;}
.y55{bottom:756.000000pt;}
.y9f{bottom:758.266667pt;}
.y2c{bottom:759.333333pt;}
.y65{bottom:765.200000pt;}
.ye2{bottom:767.600000pt;}
.y7{bottom:776.133333pt;}
.ydf{bottom:777.600000pt;}
.y75{bottom:781.333333pt;}
.y42{bottom:783.600000pt;}
.y9e{bottom:785.866667pt;}
.y2b{bottom:786.933333pt;}
.y64{bottom:792.800000pt;}
.y6{bottom:802.666667pt;}
.ye1{bottom:803.200000pt;}
.yde{bottom:803.466667pt;}
.y74{bottom:808.933333pt;}
.y20{bottom:811.200000pt;}
.y9d{bottom:813.466667pt;}
.y2a{bottom:814.533333pt;}
.y63{bottom:820.400000pt;}
.ydd{bottom:829.200000pt;}
.y73{bottom:836.533333pt;}
.y1f{bottom:838.800000pt;}
.y9c{bottom:841.066667pt;}
.y29{bottom:842.133333pt;}
.y62{bottom:848.000000pt;}
.ydc{bottom:855.066667pt;}
.y5{bottom:857.200000pt;}
.y72{bottom:864.133333pt;}
.y1e{bottom:866.400000pt;}
.y9b{bottom:868.666667pt;}
.y28{bottom:869.733333pt;}
.ydb{bottom:880.800000pt;}
.y71{bottom:891.733333pt;}
.y1d{bottom:894.000000pt;}
.y9a{bottom:896.266667pt;}
.y27{bottom:897.333333pt;}
.yda{bottom:906.666667pt;}
.y70{bottom:919.333333pt;}
.y1c{bottom:921.600000pt;}
.y99{bottom:923.866667pt;}
.y26{bottom:924.933333pt;}
.yd9{bottom:932.400000pt;}
.y4{bottom:941.066667pt;}
.y6f{bottom:946.933333pt;}
.y1b{bottom:949.200000pt;}
.y98{bottom:951.466667pt;}
.y25{bottom:952.533333pt;}
.yd8{bottom:958.266667pt;}
.y3{bottom:973.066667pt;}
.y91{bottom:974.533333pt;}
.y6e{bottom:975.200000pt;}
.y1a{bottom:976.800000pt;}
.y97{bottom:979.066667pt;}
.yd7{bottom:984.000000pt;}
.y41{bottom:1004.400000pt;}
.y24{bottom:1006.133333pt;}
.yd6{bottom:1009.866667pt;}
.y90{bottom:1030.400000pt;}
.y19{bottom:1032.000000pt;}
.y23{bottom:1032.533333pt;}
.h9{height:43.343750pt;}
.hb{height:46.796875pt;}
.ha{height:46.927083pt;}
.h7{height:53.816406pt;}
.h6{height:54.475260pt;}
.h2{height:56.156250pt;}
.h8{height:56.312500pt;}
.h5{height:56.843750pt;}
.h4{height:61.580729pt;}
.h3{height:71.054688pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:75.733333pt;}
.x16{left:79.466667pt;}
.xe{left:99.733333pt;}
.x1a{left:111.466667pt;}
.x6{left:123.733333pt;}
.x13{left:147.733333pt;}
.x15{left:192.266667pt;}
.xc{left:203.733333pt;}
.xf{left:208.666667pt;}
.x12{left:248.133333pt;}
.x2{left:251.066667pt;}
.x19{left:256.133333pt;}
.x9{left:259.200000pt;}
.x1c{left:271.200000pt;}
.xb{left:280.000000pt;}
.x14{left:281.866667pt;}
.x1b{left:284.400000pt;}
.xd{left:287.866667pt;}
.x11{left:303.600000pt;}
.x3{left:312.000000pt;}
.x10{left:320.933333pt;}
.x1d{left:362.133333pt;}
.x4{left:375.733333pt;}
.x17{left:400.666667pt;}
.x18{left:470.400000pt;}
.x7{left:648.266667pt;}
.x8{left:661.200000pt;}
.xa{left:702.266667pt;}
.x1{left:710.266667pt;}
}




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