
    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_0d03269433320611d3deaa60.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_e90e9f0a6140da2d8ccd0e82.woff')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_ec1938fb6ccd11f171db4673.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_5cba43004ce1f6488fbee45a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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);}
.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;}
.v2{vertical-align:38.160000px;}
.v1{vertical-align:45.360000px;}
.ls12{letter-spacing:-4.350000px;}
.lse{letter-spacing:-1.404000px;}
.ls10{letter-spacing:-0.888000px;}
.ls9{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.299400px;}
.ls11{letter-spacing:-0.210600px;}
.lsf{letter-spacing:-0.166800px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.201600px;}
.lsc{letter-spacing:0.207600px;}
.lsb{letter-spacing:0.230400px;}
.lsd{letter-spacing:0.391800px;}
.lsa{letter-spacing:0.936000px;}
.ls1{letter-spacing:20.880000px;}
.ls0{letter-spacing:26.409600px;}
.ls4{letter-spacing:29.399040px;}
.ls5{letter-spacing:72.057600px;}
.ls3{letter-spacing:72.144000px;}
.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;}
}
.ws15{word-spacing:-29.105280px;}
.ws1{word-spacing:-28.903680px;}
.ws14{word-spacing:-27.792000px;}
.ws4{word-spacing:-26.680320px;}
.ws33{word-spacing:-25.429680px;}
.ws5{word-spacing:-20.844000px;}
.ws7{word-spacing:-20.520000px;}
.ws2{word-spacing:-19.315440px;}
.ws3{word-spacing:-16.258320px;}
.ws17{word-spacing:-1.371240px;}
.ws6{word-spacing:-0.216000px;}
.ws0{word-spacing:-0.048240px;}
.ws1b{word-spacing:-0.023040px;}
.ws13{word-spacing:-0.018000px;}
.ws34{word-spacing:0.000000px;}
.ws28{word-spacing:0.264960px;}
.ws1d{word-spacing:0.414720px;}
.ws25{word-spacing:0.547200px;}
.ws23{word-spacing:0.679680px;}
.ws16{word-spacing:0.766080px;}
.ws1f{word-spacing:0.771840px;}
.ws1c{word-spacing:0.881280px;}
.ws20{word-spacing:0.910080px;}
.wsd{word-spacing:0.999360px;}
.ws27{word-spacing:1.116480px;}
.ws1a{word-spacing:1.376640px;}
.ws18{word-spacing:1.491840px;}
.ws21{word-spacing:1.578240px;}
.ws22{word-spacing:1.836480px;}
.ws12{word-spacing:1.837440px;}
.ws32{word-spacing:1.918080px;}
.ws26{word-spacing:2.078400px;}
.ws11{word-spacing:2.136960px;}
.ws10{word-spacing:2.655360px;}
.wsa{word-spacing:2.712960px;}
.wse{word-spacing:2.736000px;}
.wsc{word-spacing:3.156480px;}
.ws8{word-spacing:3.224640px;}
.wsf{word-spacing:3.375360px;}
.ws1e{word-spacing:3.376800px;}
.ws24{word-spacing:3.446400px;}
.wsb{word-spacing:3.588480px;}
.ws9{word-spacing:3.715200px;}
.ws2e{word-spacing:5.319360px;}
.ws2d{word-spacing:6.238080px;}
.ws30{word-spacing:6.969600px;}
.ws19{word-spacing:10.730880px;}
.ws31{word-spacing:13.962240px;}
.ws2f{word-spacing:16.338000px;}
.ws2a{word-spacing:32.441184px;}
.ws2c{word-spacing:32.606496px;}
.ws29{word-spacing:32.922576px;}
.ws2b{word-spacing:34.196112px;}
._12{margin-left:-19.083120px;}
._4{margin-left:-17.100000px;}
._6{margin-left:-15.750000px;}
._14{margin-left:-13.992480px;}
._b{margin-left:-12.928320px;}
._9{margin-left:-11.397600px;}
._f{margin-left:-10.166400px;}
._e{margin-left:-8.640000px;}
._7{margin-left:-6.739200px;}
._d{margin-left:-5.428800px;}
._0{margin-left:-4.356000px;}
._3{margin-left:-3.294000px;}
._1{margin-left:-1.584000px;}
._5{width:1.962000px;}
._8{width:3.307680px;}
._a{width:4.366080px;}
._13{width:18.691200px;}
._15{width:19.700400px;}
._11{width:23.080800px;}
._10{width:25.400640px;}
._c{width:30.026880px;}
._18{width:31.178640px;}
._16{width:32.627760px;}
._17{width:34.183920px;}
._1b{width:36.767520px;}
._19{width:40.685760px;}
._1c{width:44.904000px;}
._1a{width:62.955696px;}
._2{width:79.068000px;}
._1d{width:1026.123600px;}
.fc4{color:rgb(164,12,20);}
.fc3{color:rgb(247,172,0);}
.fc2{color:rgb(110,4,1);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:100.080000px;}
.fsb{font-size:108.000000px;}
.fsf{font-size:120.240000px;}
.fs5{font-size:126.000000px;}
.fse{font-size:131.760000px;}
.fsa{font-size:138.240000px;}
.fsc{font-size:144.000000px;}
.fs3{font-size:149.760000px;}
.fs8{font-size:149.904000px;}
.fsd{font-size:167.760000px;}
.fs9{font-size:288.000000px;}
.fs1{font-size:396.000000px;}
.fs7{font-size:450.000000px;}
.fs0{font-size:828.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:121.680000px;}
.y6d{bottom:234.150000px;}
.y6c{bottom:273.030000px;}
.y6b{bottom:311.910000px;}
.y57{bottom:332.820000px;}
.y6a{bottom:350.790000px;}
.y56{bottom:382.500000px;}
.y69{bottom:389.670000px;}
.y68{bottom:428.550000px;}
.y55{bottom:432.180000px;}
.y67{bottom:467.430000px;}
.y54{bottom:481.860000px;}
.y66{bottom:506.310000px;}
.y53{bottom:531.540000px;}
.y65{bottom:545.190000px;}
.y52{bottom:581.220000px;}
.y64{bottom:584.070000px;}
.y63{bottom:622.950000px;}
.y51{bottom:630.900000px;}
.y62{bottom:661.830000px;}
.y50{bottom:680.580000px;}
.y61{bottom:700.710000px;}
.y4f{bottom:730.260000px;}
.y60{bottom:739.620000px;}
.y5f{bottom:778.500000px;}
.y4e{bottom:779.940000px;}
.y5e{bottom:817.380000px;}
.y4d{bottom:829.620000px;}
.y5d{bottom:856.260000px;}
.y4c{bottom:879.300000px;}
.y5c{bottom:898.920000px;}
.y4b{bottom:928.980000px;}
.y43{bottom:972.510000px;}
.y4a{bottom:978.660000px;}
.ya1{bottom:991.110000px;}
.y42{bottom:1026.510000px;}
.y49{bottom:1028.340000px;}
.ya0{bottom:1042.950000px;}
.y48{bottom:1078.020000px;}
.y41{bottom:1080.510000px;}
.y47{bottom:1127.700000px;}
.y40{bottom:1134.510000px;}
.yac{bottom:1155.390000px;}
.y46{bottom:1177.380000px;}
.y3f{bottom:1188.510000px;}
.yae{bottom:1217.595000px;}
.y45{bottom:1228.140000px;}
.y3e{bottom:1242.510000px;}
.y3d{bottom:1296.510000px;}
.y36{bottom:1317.960000px;}
.y3c{bottom:1350.510000px;}
.y35{bottom:1371.960000px;}
.y9f{bottom:1401.510000px;}
.y34{bottom:1425.960000px;}
.y94{bottom:1433.160000px;}
.y93{bottom:1476.360000px;}
.y33{bottom:1479.960000px;}
.y9e{bottom:1509.375000px;}
.y32{bottom:1533.960000px;}
.y92{bottom:1537.560000px;}
.y9d{bottom:1552.935000px;}
.y91{bottom:1580.760000px;}
.y31{bottom:1587.960000px;}
.y9c{bottom:1604.775000px;}
.y30{bottom:1641.960000px;}
.y9b{bottom:1648.335000px;}
.y90{bottom:1685.160000px;}
.y2f{bottom:1695.960000px;}
.y8f{bottom:1746.360000px;}
.y2e{bottom:1749.960000px;}
.y9a{bottom:1785.135000px;}
.y8e{bottom:1789.560000px;}
.y2d{bottom:1803.960000px;}
.y99{bottom:1828.695000px;}
.y8d{bottom:1832.760000px;}
.y2c{bottom:1857.960000px;}
.y2b{bottom:1911.960000px;}
.yad{bottom:1912.140000px;}
.y2a{bottom:1965.960000px;}
.y8c{bottom:1983.525000px;}
.y29{bottom:2019.960000px;}
.y81{bottom:2026.050000px;}
.y8b{bottom:2037.525000px;}
.y80{bottom:2041.020000px;}
.y28{bottom:2073.960000px;}
.y8a{bottom:2091.525000px;}
.y27{bottom:2127.960000px;}
.y7f{bottom:2139.450000px;}
.y89{bottom:2167.125000px;}
.y26{bottom:2181.990000px;}
.y88{bottom:2221.170000px;}
.y25{bottom:2235.990000px;}
.y7e{bottom:2237.910000px;}
.y87{bottom:2275.170000px;}
.y24{bottom:2289.990000px;}
.y86{bottom:2329.170000px;}
.y4{bottom:2334.390000px;}
.y23{bottom:2343.990000px;}
.y85{bottom:2383.170000px;}
.y22{bottom:2397.990000px;}
.y7d{bottom:2434.755000px;}
.y21{bottom:2451.990000px;}
.y84{bottom:2458.770000px;}
.y20{bottom:2505.990000px;}
.y83{bottom:2512.770000px;}
.y5{bottom:2534.430000px;}
.y1f{bottom:2559.990000px;}
.y82{bottom:2566.770000px;}
.y1e{bottom:2613.990000px;}
.yab{bottom:2651.040000px;}
.y1d{bottom:2667.990000px;}
.y7b{bottom:2675.850000px;}
.y1c{bottom:2721.990000px;}
.ya2{bottom:2722.425000px;}
.y7c{bottom:2739.630000px;}
.y7a{bottom:2771.250000px;}
.y1b{bottom:2775.990000px;}
.y1a{bottom:2829.990000px;}
.y79{bottom:2866.680000px;}
.y19{bottom:2883.990000px;}
.y18{bottom:2937.990000px;}
.y78{bottom:2962.110000px;}
.y17{bottom:2991.990000px;}
.y16{bottom:3045.990000px;}
.y77{bottom:3057.510000px;}
.y98{bottom:3075.840000px;}
.y15{bottom:3099.990000px;}
.ya6{bottom:3113.970000px;}
.ya8{bottom:3114.255000px;}
.y97{bottom:3115.800000px;}
.yaa{bottom:3117.570000px;}
.y72{bottom:3152.955000px;}
.ya5{bottom:3153.930000px;}
.y14{bottom:3153.990000px;}
.ya7{bottom:3154.215000px;}
.y96{bottom:3155.400000px;}
.ya9{bottom:3157.530000px;}
.y95{bottom:3195.000000px;}
.y13{bottom:3208.035000px;}
.y12{bottom:3262.035000px;}
.y76{bottom:3282.630000px;}
.y74{bottom:3283.890000px;}
.y11{bottom:3316.035000px;}
.ya4{bottom:3317.145000px;}
.y73{bottom:3327.090000px;}
.y75{bottom:3327.630000px;}
.ya3{bottom:3357.105000px;}
.y10{bottom:3370.035000px;}
.y5b{bottom:3408.375000px;}
.yf{bottom:3424.035000px;}
.y5a{bottom:3462.375000px;}
.ye{bottom:3478.035000px;}
.y59{bottom:3516.375000px;}
.yd{bottom:3532.035000px;}
.y58{bottom:3570.375000px;}
.y3b{bottom:3585.270000px;}
.yc{bottom:3586.035000px;}
.y71{bottom:3638.010000px;}
.y3a{bottom:3639.270000px;}
.yb{bottom:3640.035000px;}
.y70{bottom:3692.010000px;}
.y39{bottom:3693.270000px;}
.ya{bottom:3694.035000px;}
.y6f{bottom:3746.010000px;}
.y38{bottom:3747.270000px;}
.y9{bottom:3748.035000px;}
.y6e{bottom:3800.010000px;}
.y37{bottom:3801.270000px;}
.y8{bottom:3802.035000px;}
.y44{bottom:3917.880000px;}
.y7{bottom:4035.495000px;}
.y6{bottom:4170.495000px;}
.y2{bottom:4580.070000px;}
.y1{bottom:4722.300000px;}
.h4{height:33.494766px;}
.hd{height:93.339844px;}
.h14{height:103.918359px;}
.h6{height:110.965078px;}
.h13{height:113.874609px;}
.hc{height:119.475000px;}
.h12{height:124.453125px;}
.he{height:124.804688px;}
.h9{height:129.431250px;}
.ha{height:129.555703px;}
.h8{height:129.796875px;}
.h11{height:129.921680px;}
.h5{height:131.854922px;}
.h10{height:131.974922px;}
.hf{height:145.397461px;}
.hb{height:248.906250px;}
.h3{height:342.246094px;}
.h7{height:388.916016px;}
.h2{height:717.626953px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:136.979947px;}
.x9{left:140.255947px;}
.x1{left:165.779947px;}
.x5{left:810.824947px;}
.x7{left:814.469947px;}
.xb{left:815.939947px;}
.x1d{left:819.509947px;}
.x3c{left:822.209947px;}
.x21{left:850.889947px;}
.x1e{left:860.009947px;}
.x30{left:868.889947px;}
.x1f{left:871.229947px;}
.x20{left:879.689947px;}
.x22{left:899.669947px;}
.x31{left:915.869947px;}
.x29{left:1001.804947px;}
.x2a{left:1022.504947px;}
.x2e{left:1035.794947px;}
.x38{left:1171.829947px;}
.x23{left:1192.109947px;}
.x32{left:1199.444947px;}
.x33{left:1201.604947px;}
.x2f{left:1208.189947px;}
.x24{left:1212.809947px;}
.x2d{left:1422.974947px;}
.x2b{left:1449.104947px;}
.x2c{left:1456.304947px;}
.x34{left:1539.209947px;}
.x35{left:1541.909947px;}
.x39{left:1546.889947px;}
.x25{left:1588.349947px;}
.x26{left:1595.549947px;}
.x27{left:1670.474947px;}
.x28{left:1696.214947px;}
.x2{left:1778.729947px;}
.x3a{left:1829.234947px;}
.x3b{left:1848.674947px;}
.x37{left:1853.279947px;}
.x36{left:1869.479947px;}
.xa{left:2141.384947px;}
.x8{left:2147.504947px;}
.x3d{left:2163.629947px;}
.x18{left:2184.374947px;}
.x4{left:2239.199947px;}
.x19{left:2260.439947px;}
.xe{left:2309.909947px;}
.xd{left:2322.689947px;}
.x3{left:2361.599947px;}
.xc{left:2561.579947px;}
.x15{left:2667.674947px;}
.x10{left:2718.074947px;}
.x1a{left:2735.429947px;}
.xf{left:2763.644947px;}
.x14{left:2814.224947px;}
.x13{left:2839.604947px;}
.x1b{left:3038.039947px;}
.x1c{left:3046.109947px;}
.x16{left:3117.059947px;}
.x17{left:3119.399947px;}
.x11{left:3166.484947px;}
.x12{left:3181.604947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:33.920000pt;}
.v1{vertical-align:40.320000pt;}
.ls12{letter-spacing:-3.866667pt;}
.lse{letter-spacing:-1.248000pt;}
.ls10{letter-spacing:-0.789333pt;}
.ls9{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.266133pt;}
.ls11{letter-spacing:-0.187200pt;}
.lsf{letter-spacing:-0.148267pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.179200pt;}
.lsc{letter-spacing:0.184533pt;}
.lsb{letter-spacing:0.204800pt;}
.lsd{letter-spacing:0.348267pt;}
.lsa{letter-spacing:0.832000pt;}
.ls1{letter-spacing:18.560000pt;}
.ls0{letter-spacing:23.475200pt;}
.ls4{letter-spacing:26.132480pt;}
.ls5{letter-spacing:64.051200pt;}
.ls3{letter-spacing:64.128000pt;}
.ws15{word-spacing:-25.871360pt;}
.ws1{word-spacing:-25.692160pt;}
.ws14{word-spacing:-24.704000pt;}
.ws4{word-spacing:-23.715840pt;}
.ws33{word-spacing:-22.604160pt;}
.ws5{word-spacing:-18.528000pt;}
.ws7{word-spacing:-18.240000pt;}
.ws2{word-spacing:-17.169280pt;}
.ws3{word-spacing:-14.451840pt;}
.ws17{word-spacing:-1.218880pt;}
.ws6{word-spacing:-0.192000pt;}
.ws0{word-spacing:-0.042880pt;}
.ws1b{word-spacing:-0.020480pt;}
.ws13{word-spacing:-0.016000pt;}
.ws34{word-spacing:0.000000pt;}
.ws28{word-spacing:0.235520pt;}
.ws1d{word-spacing:0.368640pt;}
.ws25{word-spacing:0.486400pt;}
.ws23{word-spacing:0.604160pt;}
.ws16{word-spacing:0.680960pt;}
.ws1f{word-spacing:0.686080pt;}
.ws1c{word-spacing:0.783360pt;}
.ws20{word-spacing:0.808960pt;}
.wsd{word-spacing:0.888320pt;}
.ws27{word-spacing:0.992427pt;}
.ws1a{word-spacing:1.223680pt;}
.ws18{word-spacing:1.326080pt;}
.ws21{word-spacing:1.402880pt;}
.ws22{word-spacing:1.632427pt;}
.ws12{word-spacing:1.633280pt;}
.ws32{word-spacing:1.704960pt;}
.ws26{word-spacing:1.847467pt;}
.ws11{word-spacing:1.899520pt;}
.ws10{word-spacing:2.360320pt;}
.wsa{word-spacing:2.411520pt;}
.wse{word-spacing:2.432000pt;}
.wsc{word-spacing:2.805760pt;}
.ws8{word-spacing:2.866347pt;}
.wsf{word-spacing:3.000320pt;}
.ws1e{word-spacing:3.001600pt;}
.ws24{word-spacing:3.063467pt;}
.wsb{word-spacing:3.189760pt;}
.ws9{word-spacing:3.302400pt;}
.ws2e{word-spacing:4.728320pt;}
.ws2d{word-spacing:5.544960pt;}
.ws30{word-spacing:6.195200pt;}
.ws19{word-spacing:9.538560pt;}
.ws31{word-spacing:12.410880pt;}
.ws2f{word-spacing:14.522667pt;}
.ws2a{word-spacing:28.836608pt;}
.ws2c{word-spacing:28.983552pt;}
.ws29{word-spacing:29.264512pt;}
.ws2b{word-spacing:30.396544pt;}
._12{margin-left:-16.962773pt;}
._4{margin-left:-15.200000pt;}
._6{margin-left:-14.000000pt;}
._14{margin-left:-12.437760pt;}
._b{margin-left:-11.491840pt;}
._9{margin-left:-10.131200pt;}
._f{margin-left:-9.036800pt;}
._e{margin-left:-7.680000pt;}
._7{margin-left:-5.990400pt;}
._d{margin-left:-4.825600pt;}
._0{margin-left:-3.872000pt;}
._3{margin-left:-2.928000pt;}
._1{margin-left:-1.408000pt;}
._5{width:1.744000pt;}
._8{width:2.940160pt;}
._a{width:3.880960pt;}
._13{width:16.614400pt;}
._15{width:17.511467pt;}
._11{width:20.516267pt;}
._10{width:22.578347pt;}
._c{width:26.690560pt;}
._18{width:27.714347pt;}
._16{width:29.002453pt;}
._17{width:30.385707pt;}
._1b{width:32.682240pt;}
._19{width:36.165120pt;}
._1c{width:39.914667pt;}
._1a{width:55.960619pt;}
._2{width:70.282667pt;}
._1d{width:912.109867pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:88.960000pt;}
.fsb{font-size:96.000000pt;}
.fsf{font-size:106.880000pt;}
.fs5{font-size:112.000000pt;}
.fse{font-size:117.120000pt;}
.fsa{font-size:122.880000pt;}
.fsc{font-size:128.000000pt;}
.fs3{font-size:133.120000pt;}
.fs8{font-size:133.248000pt;}
.fsd{font-size:149.120000pt;}
.fs9{font-size:256.000000pt;}
.fs1{font-size:352.000000pt;}
.fs7{font-size:400.000000pt;}
.fs0{font-size:736.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:108.160000pt;}
.y6d{bottom:208.133333pt;}
.y6c{bottom:242.693333pt;}
.y6b{bottom:277.253333pt;}
.y57{bottom:295.840000pt;}
.y6a{bottom:311.813333pt;}
.y56{bottom:340.000000pt;}
.y69{bottom:346.373333pt;}
.y68{bottom:380.933333pt;}
.y55{bottom:384.160000pt;}
.y67{bottom:415.493333pt;}
.y54{bottom:428.320000pt;}
.y66{bottom:450.053333pt;}
.y53{bottom:472.480000pt;}
.y65{bottom:484.613333pt;}
.y52{bottom:516.640000pt;}
.y64{bottom:519.173333pt;}
.y63{bottom:553.733333pt;}
.y51{bottom:560.800000pt;}
.y62{bottom:588.293333pt;}
.y50{bottom:604.960000pt;}
.y61{bottom:622.853333pt;}
.y4f{bottom:649.120000pt;}
.y60{bottom:657.440000pt;}
.y5f{bottom:692.000000pt;}
.y4e{bottom:693.280000pt;}
.y5e{bottom:726.560000pt;}
.y4d{bottom:737.440000pt;}
.y5d{bottom:761.120000pt;}
.y4c{bottom:781.600000pt;}
.y5c{bottom:799.040000pt;}
.y4b{bottom:825.760000pt;}
.y43{bottom:864.453333pt;}
.y4a{bottom:869.920000pt;}
.ya1{bottom:880.986667pt;}
.y42{bottom:912.453333pt;}
.y49{bottom:914.080000pt;}
.ya0{bottom:927.066667pt;}
.y48{bottom:958.240000pt;}
.y41{bottom:960.453333pt;}
.y47{bottom:1002.400000pt;}
.y40{bottom:1008.453333pt;}
.yac{bottom:1027.013333pt;}
.y46{bottom:1046.560000pt;}
.y3f{bottom:1056.453333pt;}
.yae{bottom:1082.306667pt;}
.y45{bottom:1091.680000pt;}
.y3e{bottom:1104.453333pt;}
.y3d{bottom:1152.453333pt;}
.y36{bottom:1171.520000pt;}
.y3c{bottom:1200.453333pt;}
.y35{bottom:1219.520000pt;}
.y9f{bottom:1245.786667pt;}
.y34{bottom:1267.520000pt;}
.y94{bottom:1273.920000pt;}
.y93{bottom:1312.320000pt;}
.y33{bottom:1315.520000pt;}
.y9e{bottom:1341.666667pt;}
.y32{bottom:1363.520000pt;}
.y92{bottom:1366.720000pt;}
.y9d{bottom:1380.386667pt;}
.y91{bottom:1405.120000pt;}
.y31{bottom:1411.520000pt;}
.y9c{bottom:1426.466667pt;}
.y30{bottom:1459.520000pt;}
.y9b{bottom:1465.186667pt;}
.y90{bottom:1497.920000pt;}
.y2f{bottom:1507.520000pt;}
.y8f{bottom:1552.320000pt;}
.y2e{bottom:1555.520000pt;}
.y9a{bottom:1586.786667pt;}
.y8e{bottom:1590.720000pt;}
.y2d{bottom:1603.520000pt;}
.y99{bottom:1625.506667pt;}
.y8d{bottom:1629.120000pt;}
.y2c{bottom:1651.520000pt;}
.y2b{bottom:1699.520000pt;}
.yad{bottom:1699.680000pt;}
.y2a{bottom:1747.520000pt;}
.y8c{bottom:1763.133333pt;}
.y29{bottom:1795.520000pt;}
.y81{bottom:1800.933333pt;}
.y8b{bottom:1811.133333pt;}
.y80{bottom:1814.240000pt;}
.y28{bottom:1843.520000pt;}
.y8a{bottom:1859.133333pt;}
.y27{bottom:1891.520000pt;}
.y7f{bottom:1901.733333pt;}
.y89{bottom:1926.333333pt;}
.y26{bottom:1939.546667pt;}
.y88{bottom:1974.373333pt;}
.y25{bottom:1987.546667pt;}
.y7e{bottom:1989.253333pt;}
.y87{bottom:2022.373333pt;}
.y24{bottom:2035.546667pt;}
.y86{bottom:2070.373333pt;}
.y4{bottom:2075.013333pt;}
.y23{bottom:2083.546667pt;}
.y85{bottom:2118.373333pt;}
.y22{bottom:2131.546667pt;}
.y7d{bottom:2164.226667pt;}
.y21{bottom:2179.546667pt;}
.y84{bottom:2185.573333pt;}
.y20{bottom:2227.546667pt;}
.y83{bottom:2233.573333pt;}
.y5{bottom:2252.826667pt;}
.y1f{bottom:2275.546667pt;}
.y82{bottom:2281.573333pt;}
.y1e{bottom:2323.546667pt;}
.yab{bottom:2356.480000pt;}
.y1d{bottom:2371.546667pt;}
.y7b{bottom:2378.533333pt;}
.y1c{bottom:2419.546667pt;}
.ya2{bottom:2419.933333pt;}
.y7c{bottom:2435.226667pt;}
.y7a{bottom:2463.333333pt;}
.y1b{bottom:2467.546667pt;}
.y1a{bottom:2515.546667pt;}
.y79{bottom:2548.160000pt;}
.y19{bottom:2563.546667pt;}
.y18{bottom:2611.546667pt;}
.y78{bottom:2632.986667pt;}
.y17{bottom:2659.546667pt;}
.y16{bottom:2707.546667pt;}
.y77{bottom:2717.786667pt;}
.y98{bottom:2734.080000pt;}
.y15{bottom:2755.546667pt;}
.ya6{bottom:2767.973333pt;}
.ya8{bottom:2768.226667pt;}
.y97{bottom:2769.600000pt;}
.yaa{bottom:2771.173333pt;}
.y72{bottom:2802.626667pt;}
.ya5{bottom:2803.493333pt;}
.y14{bottom:2803.546667pt;}
.ya7{bottom:2803.746667pt;}
.y96{bottom:2804.800000pt;}
.ya9{bottom:2806.693333pt;}
.y95{bottom:2840.000000pt;}
.y13{bottom:2851.586667pt;}
.y12{bottom:2899.586667pt;}
.y76{bottom:2917.893333pt;}
.y74{bottom:2919.013333pt;}
.y11{bottom:2947.586667pt;}
.ya4{bottom:2948.573333pt;}
.y73{bottom:2957.413333pt;}
.y75{bottom:2957.893333pt;}
.ya3{bottom:2984.093333pt;}
.y10{bottom:2995.586667pt;}
.y5b{bottom:3029.666667pt;}
.yf{bottom:3043.586667pt;}
.y5a{bottom:3077.666667pt;}
.ye{bottom:3091.586667pt;}
.y59{bottom:3125.666667pt;}
.yd{bottom:3139.586667pt;}
.y58{bottom:3173.666667pt;}
.y3b{bottom:3186.906667pt;}
.yc{bottom:3187.586667pt;}
.y71{bottom:3233.786667pt;}
.y3a{bottom:3234.906667pt;}
.yb{bottom:3235.586667pt;}
.y70{bottom:3281.786667pt;}
.y39{bottom:3282.906667pt;}
.ya{bottom:3283.586667pt;}
.y6f{bottom:3329.786667pt;}
.y38{bottom:3330.906667pt;}
.y9{bottom:3331.586667pt;}
.y6e{bottom:3377.786667pt;}
.y37{bottom:3378.906667pt;}
.y8{bottom:3379.586667pt;}
.y44{bottom:3482.560000pt;}
.y7{bottom:3587.106667pt;}
.y6{bottom:3707.106667pt;}
.y2{bottom:4071.173333pt;}
.y1{bottom:4197.600000pt;}
.h4{height:29.773125pt;}
.hd{height:82.968750pt;}
.h14{height:92.371875pt;}
.h6{height:98.635625pt;}
.h13{height:101.221875pt;}
.hc{height:106.200000pt;}
.h12{height:110.625000pt;}
.he{height:110.937500pt;}
.h9{height:115.050000pt;}
.ha{height:115.160625pt;}
.h8{height:115.375000pt;}
.h11{height:115.485937pt;}
.h5{height:117.204375pt;}
.h10{height:117.311042pt;}
.hf{height:129.242188pt;}
.hb{height:221.250000pt;}
.h3{height:304.218750pt;}
.h7{height:345.703125pt;}
.h2{height:637.890625pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:121.759953pt;}
.x9{left:124.671953pt;}
.x1{left:147.359953pt;}
.x5{left:720.733286pt;}
.x7{left:723.973286pt;}
.xb{left:725.279953pt;}
.x1d{left:728.453286pt;}
.x3c{left:730.853286pt;}
.x21{left:756.346619pt;}
.x1e{left:764.453286pt;}
.x30{left:772.346619pt;}
.x1f{left:774.426619pt;}
.x20{left:781.946619pt;}
.x22{left:799.706619pt;}
.x31{left:814.106619pt;}
.x29{left:890.493286pt;}
.x2a{left:908.893286pt;}
.x2e{left:920.706619pt;}
.x38{left:1041.626619pt;}
.x23{left:1059.653286pt;}
.x32{left:1066.173286pt;}
.x33{left:1068.093286pt;}
.x2f{left:1073.946619pt;}
.x24{left:1078.053286pt;}
.x2d{left:1264.866619pt;}
.x2b{left:1288.093286pt;}
.x2c{left:1294.493286pt;}
.x34{left:1368.186619pt;}
.x35{left:1370.586619pt;}
.x39{left:1375.013286pt;}
.x25{left:1411.866619pt;}
.x26{left:1418.266619pt;}
.x27{left:1484.866619pt;}
.x28{left:1507.746619pt;}
.x2{left:1581.093286pt;}
.x3a{left:1625.986619pt;}
.x3b{left:1643.266619pt;}
.x37{left:1647.359953pt;}
.x36{left:1661.759953pt;}
.xa{left:1903.453286pt;}
.x8{left:1908.893286pt;}
.x3d{left:1923.226619pt;}
.x18{left:1941.666619pt;}
.x4{left:1990.399953pt;}
.x19{left:2009.279953pt;}
.xe{left:2053.253286pt;}
.xd{left:2064.613286pt;}
.x3{left:2099.199953pt;}
.xc{left:2276.959953pt;}
.x15{left:2371.266619pt;}
.x10{left:2416.066619pt;}
.x1a{left:2431.493286pt;}
.xf{left:2456.573286pt;}
.x14{left:2501.533286pt;}
.x13{left:2524.093286pt;}
.x1b{left:2700.479953pt;}
.x1c{left:2707.653286pt;}
.x16{left:2770.719953pt;}
.x17{left:2772.799953pt;}
.x11{left:2814.653286pt;}
.x12{left:2828.093286pt;}
}




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