
    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_cbaa22af3b7376deb8c4cdd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_f54faa07ffb00ab2f65b4b91.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914551;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.156402,-0.195034,0.195034,0.156402,0,0);-ms-transform:matrix(0.156402,-0.195034,0.195034,0.156402,0,0);-webkit-transform:matrix(0.156402,-0.195034,0.195034,0.156402,0,0);}
.m3{transform:matrix(0.199951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199951,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.210402,-0.135022,0.135022,0.210402,0,0);-ms-transform:matrix(0.210402,-0.135022,0.135022,0.210402,0,0);-webkit-transform:matrix(0.210402,-0.135022,0.135022,0.210402,0,0);}
.m5{transform:matrix(0.223843,0.111330,-0.111330,0.223843,0,0);-ms-transform:matrix(0.223843,0.111330,-0.111330,0.223843,0,0);-webkit-transform:matrix(0.223843,0.111330,-0.111330,0.223843,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:62.428211px;}
.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;}
}
.ws2{word-spacing:-9.433892px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:16.602316px;}
.ws4{word-spacing:26.418324px;}
.ws0{word-spacing:84.018324px;}
.ws3{word-spacing:103.691781px;}
._1b{margin-left:-303.987784px;}
._1d{margin-left:-302.547784px;}
._1c{margin-left:-301.107784px;}
._a{margin-left:-1.319260px;}
._7{width:1.002437px;}
._b{width:2.635891px;}
._d{width:4.086281px;}
._c{width:5.613535px;}
._6{width:7.517123px;}
._9{width:9.158337px;}
._14{width:10.939270px;}
._17{width:14.467041px;}
._13{width:15.900975px;}
._1f{width:17.487395px;}
._e{width:19.235822px;}
._5{width:20.448145px;}
._4{width:22.033192px;}
._10{width:25.538558px;}
._f{width:27.115891px;}
._15{width:28.348404px;}
._16{width:30.151443px;}
._1e{width:34.087026px;}
._12{width:40.791302px;}
._11{width:42.109213px;}
._21{width:43.308264px;}
._20{width:44.944992px;}
._18{width:46.140975px;}
._2{width:51.227482px;}
._8{width:53.035891px;}
._19{width:75.850140px;}
._1a{width:76.875097px;}
._3{width:115.060539px;}
._1{width:437.612216px;}
._0{width:440.492216px;}
._22{width:493.772216px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.525920px;}
.fs8{font-size:35.465713px;}
.fs0{font-size:35.465760px;}
.fs7{font-size:35.465842px;}
.fs2{font-size:35.465872px;}
.fs6{font-size:46.938240px;}
.fs4{font-size:47.288160px;}
.fs1{font-size:55.169280px;}
.fs3{font-size:378.312480px;}
.y0{bottom:0.000000px;}
.yf{bottom:32.400000px;}
.y1{bottom:41.040000px;}
.y9b{bottom:51.840000px;}
.y9a{bottom:66.240000px;}
.y98{bottom:80.640000px;}
.y99{bottom:81.000000px;}
.y97{bottom:95.040000px;}
.y4c{bottom:257.760000px;}
.y47{bottom:298.440000px;}
.y46{bottom:314.640000px;}
.yb5{bottom:338.760000px;}
.y96{bottom:356.760000px;}
.y4b{bottom:358.560000px;}
.ye{bottom:362.160000px;}
.y95{bottom:371.160000px;}
.y94{bottom:385.560000px;}
.y93{bottom:399.960000px;}
.y92{bottom:414.360000px;}
.y91{bottom:428.760000px;}
.yb4{bottom:456.840000px;}
.y49{bottom:488.880000px;}
.y4d{bottom:493.200000px;}
.y48{bottom:511.200000px;}
.y4a{bottom:527.040000px;}
.y4f{bottom:540.000000px;}
.y4e{bottom:548.280000px;}
.yb6{bottom:553.680000px;}
.y50{bottom:662.040000px;}
.y80{bottom:678.600000px;}
.y7f{bottom:692.640000px;}
.y11{bottom:694.080000px;}
.y7e{bottom:707.040000px;}
.y10{bottom:710.640000px;}
.yad{bottom:718.200000px;}
.y7d{bottom:721.080000px;}
.y87{bottom:735.480000px;}
.y7c{bottom:735.840000px;}
.y86{bottom:749.880000px;}
.y7b{bottom:750.240000px;}
.y85{bottom:764.280000px;}
.y7a{bottom:764.640000px;}
.y84{bottom:778.680000px;}
.y79{bottom:779.400000px;}
.y83{bottom:792.720000px;}
.y78{bottom:793.440000px;}
.y2{bottom:806.760000px;}
.y77{bottom:808.200000px;}
.y51{bottom:819.360000px;}
.y82{bottom:821.160000px;}
.y76{bottom:822.600000px;}
.y75{bottom:837.360000px;}
.y74{bottom:851.400000px;}
.y73{bottom:866.160000px;}
.y72{bottom:880.200000px;}
.y71{bottom:894.960000px;}
.y52{bottom:898.920000px;}
.y70{bottom:909.360000px;}
.y6f{bottom:923.400000px;}
.y6e{bottom:937.800000px;}
.y6d{bottom:952.200000px;}
.y55{bottom:964.440000px;}
.y6c{bottom:966.960000px;}
.y6b{bottom:981.000000px;}
.y6a{bottom:995.400000px;}
.y69{bottom:1009.800000px;}
.yb7{bottom:1023.120000px;}
.y68{bottom:1023.840000px;}
.y54{bottom:1027.800000px;}
.y67{bottom:1038.600000px;}
.y66{bottom:1052.640000px;}
.y65{bottom:1067.040000px;}
.y57{bottom:1067.400000px;}
.y64{bottom:1081.080000px;}
.y58{bottom:1090.800000px;}
.y63{bottom:1095.480000px;}
.y56{bottom:1099.080000px;}
.y62{bottom:1109.880000px;}
.y61{bottom:1133.640000px;}
.y45{bottom:1177.920000px;}
.yb8{bottom:1182.240000px;}
.y44{bottom:1192.320000px;}
.y43{bottom:1207.080000px;}
.y42{bottom:1221.120000px;}
.y41{bottom:1235.520000px;}
.y8c{bottom:1236.240000px;}
.yaf{bottom:1241.640000px;}
.y40{bottom:1249.560000px;}
.y8b{bottom:1250.640000px;}
.yae{bottom:1258.200000px;}
.y3f{bottom:1263.600000px;}
.y3e{bottom:1278.000000px;}
.y81{bottom:1289.520000px;}
.y3d{bottom:1292.400000px;}
.y8a{bottom:1292.760000px;}
.y3c{bottom:1306.800000px;}
.y89{bottom:1307.160000px;}
.y3b{bottom:1321.200000px;}
.y88{bottom:1321.560000px;}
.y3a{bottom:1335.600000px;}
.y39{bottom:1350.360000px;}
.y38{bottom:1365.120000px;}
.y8f{bottom:1377.000000px;}
.y37{bottom:1379.520000px;}
.y8e{bottom:1391.400000px;}
.y36{bottom:1394.280000px;}
.y8d{bottom:1405.800000px;}
.y35{bottom:1422.720000px;}
.y5c{bottom:1428.120000px;}
.y59{bottom:1428.840000px;}
.y34{bottom:1437.120000px;}
.y5d{bottom:1448.280000px;}
.y33{bottom:1465.560000px;}
.y32{bottom:1479.960000px;}
.y5b{bottom:1483.560000px;}
.y31{bottom:1494.360000px;}
.y30{bottom:1508.400000px;}
.y2f{bottom:1523.160000px;}
.y2e{bottom:1537.560000px;}
.y2d{bottom:1551.960000px;}
.y2c{bottom:1566.360000px;}
.y2b{bottom:1580.400000px;}
.y2a{bottom:1594.800000px;}
.y29{bottom:1609.200000px;}
.yab{bottom:1609.560000px;}
.y28{bottom:1623.600000px;}
.y53{bottom:1629.720000px;}
.yaa{bottom:1637.640000px;}
.y27{bottom:1638.000000px;}
.y26{bottom:1652.400000px;}
.ya9{bottom:1665.720000px;}
.y25{bottom:1667.160000px;}
.y90{bottom:1672.560000px;}
.y24{bottom:1681.560000px;}
.y23{bottom:1695.600000px;}
.y3{bottom:1695.960000px;}
.y22{bottom:1725.480000px;}
.yb1{bottom:1740.960000px;}
.y21{bottom:1755.360000px;}
.yb0{bottom:1757.520000px;}
.y20{bottom:1769.400000px;}
.y1f{bottom:1783.800000px;}
.y1e{bottom:1798.560000px;}
.y5a{bottom:1800.360000px;}
.y1d{bottom:1812.960000px;}
.y1c{bottom:1827.720000px;}
.y1b{bottom:1842.480000px;}
.y1a{bottom:1856.880000px;}
.y19{bottom:1871.640000px;}
.y18{bottom:1886.040000px;}
.y5e{bottom:1888.200000px;}
.ya6{bottom:1896.840000px;}
.y17{bottom:1900.080000px;}
.ya5{bottom:1908.000000px;}
.ya4{bottom:1918.800000px;}
.y16{bottom:1928.520000px;}
.ya3{bottom:1929.960000px;}
.ya2{bottom:1940.760000px;}
.y15{bottom:1944.360000px;}
.ya1{bottom:1951.920000px;}
.y14{bottom:1960.200000px;}
.ya0{bottom:1962.360000px;}
.y13{bottom:1990.080000px;}
.yba{bottom:2062.800000px;}
.y9e{bottom:2111.040000px;}
.yb3{bottom:2112.480000px;}
.y5{bottom:2125.440000px;}
.yb2{bottom:2129.040000px;}
.y12{bottom:2139.120000px;}
.yb9{bottom:2175.120000px;}
.y9{bottom:2184.120000px;}
.y5f{bottom:2215.080000px;}
.y6{bottom:2244.600000px;}
.y60{bottom:2245.680000px;}
.y9f{bottom:2262.960000px;}
.ya8{bottom:2264.400000px;}
.ya{bottom:2265.840000px;}
.y9d{bottom:2296.080000px;}
.y9c{bottom:2306.520000px;}
.y8{bottom:2314.080000px;}
.yc{bottom:2316.240000px;}
.y7{bottom:2325.600000px;}
.yb{bottom:2327.040000px;}
.yac{bottom:2339.640000px;}
.ya7{bottom:2352.240000px;}
.y4{bottom:2364.840000px;}
.yd{bottom:2421.000000px;}
.h8{height:30.325226px;}
.hb{height:33.205226px;}
.hc{height:34.114968px;}
.h2{height:34.115013px;}
.ha{height:34.115092px;}
.h4{height:34.115121px;}
.h3{height:40.703507px;}
.h9{height:45.150553px;}
.h6{height:45.487146px;}
.h7{height:53.068106px;}
.h5{height:363.904095px;}
.h1{height:2525.400000px;}
.h0{height:2526.000000px;}
.w1{width:1785.600000px;}
.w0{width:1786.500000px;}
.x0{left:0.000000px;}
.xa{left:26.640000px;}
.x28{left:29.160000px;}
.xf{left:30.240000px;}
.xe{left:32.760000px;}
.x2e{left:41.760000px;}
.x5{left:64.080000px;}
.x9{left:179.280000px;}
.x2d{left:210.960000px;}
.x2{left:311.040000px;}
.x32{left:339.480000px;}
.x33{left:352.440000px;}
.x36{left:379.080000px;}
.x2f{left:381.240000px;}
.x3c{left:419.040000px;}
.x30{left:428.040000px;}
.x2b{left:441.360000px;}
.x3{left:451.800000px;}
.x35{left:482.400000px;}
.x31{left:487.080000px;}
.x34{left:492.120000px;}
.x8{left:528.120000px;}
.x2c{left:603.720000px;}
.xb{left:691.560000px;}
.x7{left:705.600000px;}
.x2a{left:707.400000px;}
.x6{left:748.800000px;}
.x29{left:786.600000px;}
.x4{left:830.880000px;}
.xc{left:914.400000px;}
.x39{left:916.920000px;}
.xd{left:919.080000px;}
.x18{left:970.920000px;}
.x12{left:987.840000px;}
.x14{left:989.280000px;}
.x13{left:990.360000px;}
.x3a{left:1069.560000px;}
.x37{left:1073.880000px;}
.x38{left:1091.880000px;}
.x15{left:1106.640000px;}
.x23{left:1116.360000px;}
.x1{left:1138.320000px;}
.x11{left:1160.280000px;}
.x10{left:1252.080000px;}
.x16{left:1272.960000px;}
.x25{left:1296.000000px;}
.x1a{left:1335.600000px;}
.x1f{left:1338.480000px;}
.x1c{left:1340.280000px;}
.x21{left:1351.080000px;}
.x3b{left:1367.280000px;}
.x20{left:1470.960000px;}
.x1d{left:1507.320000px;}
.x27{left:1515.240000px;}
.x19{left:1520.640000px;}
.x26{left:1523.520000px;}
.x17{left:1535.040000px;}
.x24{left:1541.880000px;}
.x1b{left:1627.920000px;}
.x1e{left:1665.360000px;}
.x22{left:1671.840000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:55.491743pt;}
.ws2{word-spacing:-8.385682pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:14.757614pt;}
.ws4{word-spacing:23.482954pt;}
.ws0{word-spacing:74.682954pt;}
.ws3{word-spacing:92.170472pt;}
._1b{margin-left:-270.211364pt;}
._1d{margin-left:-268.931364pt;}
._1c{margin-left:-267.651364pt;}
._a{margin-left:-1.172676pt;}
._7{width:0.891055pt;}
._b{width:2.343014pt;}
._d{width:3.632250pt;}
._c{width:4.989809pt;}
._6{width:6.681887pt;}
._9{width:8.140744pt;}
._14{width:9.723795pt;}
._17{width:12.859592pt;}
._13{width:14.134200pt;}
._1f{width:15.544351pt;}
._e{width:17.098509pt;}
._5{width:18.176129pt;}
._4{width:19.585060pt;}
._10{width:22.700941pt;}
._f{width:24.103014pt;}
._15{width:25.198582pt;}
._16{width:26.801283pt;}
._1e{width:30.299579pt;}
._12{width:36.258935pt;}
._11{width:37.430412pt;}
._21{width:38.496234pt;}
._20{width:39.951104pt;}
._18{width:41.014200pt;}
._2{width:45.535539pt;}
._8{width:47.143014pt;}
._19{width:67.422346pt;}
._1a{width:68.333420pt;}
._3{width:102.276035pt;}
._1{width:388.988636pt;}
._0{width:391.548636pt;}
._22{width:438.908636pt;}
.fs5{font-size:28.023040pt;}
.fs8{font-size:31.525078pt;}
.fs0{font-size:31.525120pt;}
.fs7{font-size:31.525193pt;}
.fs2{font-size:31.525219pt;}
.fs6{font-size:41.722880pt;}
.fs4{font-size:42.033920pt;}
.fs1{font-size:49.039360pt;}
.fs3{font-size:336.277760pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:28.800000pt;}
.y1{bottom:36.480000pt;}
.y9b{bottom:46.080000pt;}
.y9a{bottom:58.880000pt;}
.y98{bottom:71.680000pt;}
.y99{bottom:72.000000pt;}
.y97{bottom:84.480000pt;}
.y4c{bottom:229.120000pt;}
.y47{bottom:265.280000pt;}
.y46{bottom:279.680000pt;}
.yb5{bottom:301.120000pt;}
.y96{bottom:317.120000pt;}
.y4b{bottom:318.720000pt;}
.ye{bottom:321.920000pt;}
.y95{bottom:329.920000pt;}
.y94{bottom:342.720000pt;}
.y93{bottom:355.520000pt;}
.y92{bottom:368.320000pt;}
.y91{bottom:381.120000pt;}
.yb4{bottom:406.080000pt;}
.y49{bottom:434.560000pt;}
.y4d{bottom:438.400000pt;}
.y48{bottom:454.400000pt;}
.y4a{bottom:468.480000pt;}
.y4f{bottom:480.000000pt;}
.y4e{bottom:487.360000pt;}
.yb6{bottom:492.160000pt;}
.y50{bottom:588.480000pt;}
.y80{bottom:603.200000pt;}
.y7f{bottom:615.680000pt;}
.y11{bottom:616.960000pt;}
.y7e{bottom:628.480000pt;}
.y10{bottom:631.680000pt;}
.yad{bottom:638.400000pt;}
.y7d{bottom:640.960000pt;}
.y87{bottom:653.760000pt;}
.y7c{bottom:654.080000pt;}
.y86{bottom:666.560000pt;}
.y7b{bottom:666.880000pt;}
.y85{bottom:679.360000pt;}
.y7a{bottom:679.680000pt;}
.y84{bottom:692.160000pt;}
.y79{bottom:692.800000pt;}
.y83{bottom:704.640000pt;}
.y78{bottom:705.280000pt;}
.y2{bottom:717.120000pt;}
.y77{bottom:718.400000pt;}
.y51{bottom:728.320000pt;}
.y82{bottom:729.920000pt;}
.y76{bottom:731.200000pt;}
.y75{bottom:744.320000pt;}
.y74{bottom:756.800000pt;}
.y73{bottom:769.920000pt;}
.y72{bottom:782.400000pt;}
.y71{bottom:795.520000pt;}
.y52{bottom:799.040000pt;}
.y70{bottom:808.320000pt;}
.y6f{bottom:820.800000pt;}
.y6e{bottom:833.600000pt;}
.y6d{bottom:846.400000pt;}
.y55{bottom:857.280000pt;}
.y6c{bottom:859.520000pt;}
.y6b{bottom:872.000000pt;}
.y6a{bottom:884.800000pt;}
.y69{bottom:897.600000pt;}
.yb7{bottom:909.440000pt;}
.y68{bottom:910.080000pt;}
.y54{bottom:913.600000pt;}
.y67{bottom:923.200000pt;}
.y66{bottom:935.680000pt;}
.y65{bottom:948.480000pt;}
.y57{bottom:948.800000pt;}
.y64{bottom:960.960000pt;}
.y58{bottom:969.600000pt;}
.y63{bottom:973.760000pt;}
.y56{bottom:976.960000pt;}
.y62{bottom:986.560000pt;}
.y61{bottom:1007.680000pt;}
.y45{bottom:1047.040000pt;}
.yb8{bottom:1050.880000pt;}
.y44{bottom:1059.840000pt;}
.y43{bottom:1072.960000pt;}
.y42{bottom:1085.440000pt;}
.y41{bottom:1098.240000pt;}
.y8c{bottom:1098.880000pt;}
.yaf{bottom:1103.680000pt;}
.y40{bottom:1110.720000pt;}
.y8b{bottom:1111.680000pt;}
.yae{bottom:1118.400000pt;}
.y3f{bottom:1123.200000pt;}
.y3e{bottom:1136.000000pt;}
.y81{bottom:1146.240000pt;}
.y3d{bottom:1148.800000pt;}
.y8a{bottom:1149.120000pt;}
.y3c{bottom:1161.600000pt;}
.y89{bottom:1161.920000pt;}
.y3b{bottom:1174.400000pt;}
.y88{bottom:1174.720000pt;}
.y3a{bottom:1187.200000pt;}
.y39{bottom:1200.320000pt;}
.y38{bottom:1213.440000pt;}
.y8f{bottom:1224.000000pt;}
.y37{bottom:1226.240000pt;}
.y8e{bottom:1236.800000pt;}
.y36{bottom:1239.360000pt;}
.y8d{bottom:1249.600000pt;}
.y35{bottom:1264.640000pt;}
.y5c{bottom:1269.440000pt;}
.y59{bottom:1270.080000pt;}
.y34{bottom:1277.440000pt;}
.y5d{bottom:1287.360000pt;}
.y33{bottom:1302.720000pt;}
.y32{bottom:1315.520000pt;}
.y5b{bottom:1318.720000pt;}
.y31{bottom:1328.320000pt;}
.y30{bottom:1340.800000pt;}
.y2f{bottom:1353.920000pt;}
.y2e{bottom:1366.720000pt;}
.y2d{bottom:1379.520000pt;}
.y2c{bottom:1392.320000pt;}
.y2b{bottom:1404.800000pt;}
.y2a{bottom:1417.600000pt;}
.y29{bottom:1430.400000pt;}
.yab{bottom:1430.720000pt;}
.y28{bottom:1443.200000pt;}
.y53{bottom:1448.640000pt;}
.yaa{bottom:1455.680000pt;}
.y27{bottom:1456.000000pt;}
.y26{bottom:1468.800000pt;}
.ya9{bottom:1480.640000pt;}
.y25{bottom:1481.920000pt;}
.y90{bottom:1486.720000pt;}
.y24{bottom:1494.720000pt;}
.y23{bottom:1507.200000pt;}
.y3{bottom:1507.520000pt;}
.y22{bottom:1533.760000pt;}
.yb1{bottom:1547.520000pt;}
.y21{bottom:1560.320000pt;}
.yb0{bottom:1562.240000pt;}
.y20{bottom:1572.800000pt;}
.y1f{bottom:1585.600000pt;}
.y1e{bottom:1598.720000pt;}
.y5a{bottom:1600.320000pt;}
.y1d{bottom:1611.520000pt;}
.y1c{bottom:1624.640000pt;}
.y1b{bottom:1637.760000pt;}
.y1a{bottom:1650.560000pt;}
.y19{bottom:1663.680000pt;}
.y18{bottom:1676.480000pt;}
.y5e{bottom:1678.400000pt;}
.ya6{bottom:1686.080000pt;}
.y17{bottom:1688.960000pt;}
.ya5{bottom:1696.000000pt;}
.ya4{bottom:1705.600000pt;}
.y16{bottom:1714.240000pt;}
.ya3{bottom:1715.520000pt;}
.ya2{bottom:1725.120000pt;}
.y15{bottom:1728.320000pt;}
.ya1{bottom:1735.040000pt;}
.y14{bottom:1742.400000pt;}
.ya0{bottom:1744.320000pt;}
.y13{bottom:1768.960000pt;}
.yba{bottom:1833.600000pt;}
.y9e{bottom:1876.480000pt;}
.yb3{bottom:1877.760000pt;}
.y5{bottom:1889.280000pt;}
.yb2{bottom:1892.480000pt;}
.y12{bottom:1901.440000pt;}
.yb9{bottom:1933.440000pt;}
.y9{bottom:1941.440000pt;}
.y5f{bottom:1968.960000pt;}
.y6{bottom:1995.200000pt;}
.y60{bottom:1996.160000pt;}
.y9f{bottom:2011.520000pt;}
.ya8{bottom:2012.800000pt;}
.ya{bottom:2014.080000pt;}
.y9d{bottom:2040.960000pt;}
.y9c{bottom:2050.240000pt;}
.y8{bottom:2056.960000pt;}
.yc{bottom:2058.880000pt;}
.y7{bottom:2067.200000pt;}
.yb{bottom:2068.480000pt;}
.yac{bottom:2079.680000pt;}
.ya7{bottom:2090.880000pt;}
.y4{bottom:2102.080000pt;}
.yd{bottom:2152.000000pt;}
.h8{height:26.955756pt;}
.hb{height:29.515756pt;}
.hc{height:30.324416pt;}
.h2{height:30.324456pt;}
.ha{height:30.324526pt;}
.h4{height:30.324552pt;}
.h3{height:36.180895pt;}
.h9{height:40.133825pt;}
.h6{height:40.433019pt;}
.h7{height:47.171650pt;}
.h5{height:323.470306pt;}
.h1{height:2244.800000pt;}
.h0{height:2245.333333pt;}
.w1{width:1587.200000pt;}
.w0{width:1588.000000pt;}
.x0{left:0.000000pt;}
.xa{left:23.680000pt;}
.x28{left:25.920000pt;}
.xf{left:26.880000pt;}
.xe{left:29.120000pt;}
.x2e{left:37.120000pt;}
.x5{left:56.960000pt;}
.x9{left:159.360000pt;}
.x2d{left:187.520000pt;}
.x2{left:276.480000pt;}
.x32{left:301.760000pt;}
.x33{left:313.280000pt;}
.x36{left:336.960000pt;}
.x2f{left:338.880000pt;}
.x3c{left:372.480000pt;}
.x30{left:380.480000pt;}
.x2b{left:392.320000pt;}
.x3{left:401.600000pt;}
.x35{left:428.800000pt;}
.x31{left:432.960000pt;}
.x34{left:437.440000pt;}
.x8{left:469.440000pt;}
.x2c{left:536.640000pt;}
.xb{left:614.720000pt;}
.x7{left:627.200000pt;}
.x2a{left:628.800000pt;}
.x6{left:665.600000pt;}
.x29{left:699.200000pt;}
.x4{left:738.560000pt;}
.xc{left:812.800000pt;}
.x39{left:815.040000pt;}
.xd{left:816.960000pt;}
.x18{left:863.040000pt;}
.x12{left:878.080000pt;}
.x14{left:879.360000pt;}
.x13{left:880.320000pt;}
.x3a{left:950.720000pt;}
.x37{left:954.560000pt;}
.x38{left:970.560000pt;}
.x15{left:983.680000pt;}
.x23{left:992.320000pt;}
.x1{left:1011.840000pt;}
.x11{left:1031.360000pt;}
.x10{left:1112.960000pt;}
.x16{left:1131.520000pt;}
.x25{left:1152.000000pt;}
.x1a{left:1187.200000pt;}
.x1f{left:1189.760000pt;}
.x1c{left:1191.360000pt;}
.x21{left:1200.960000pt;}
.x3b{left:1215.360000pt;}
.x20{left:1307.520000pt;}
.x1d{left:1339.840000pt;}
.x27{left:1346.880000pt;}
.x19{left:1351.680000pt;}
.x26{left:1354.240000pt;}
.x17{left:1364.480000pt;}
.x24{left:1370.560000pt;}
.x1b{left:1447.040000pt;}
.x1e{left:1480.320000pt;}
.x22{left:1486.080000pt;}
}




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