
    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_e464d55fc9287cee3272a4d5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.239667;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_6bf01fb8b6bc766aebf9bb2e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.141080;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_0ba84d8960d118cc01ea2075.woff')format("woff");}.ff3{font-family:ff3;line-height:1.239667;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_ec78d3ce3b42415e0a7ca304.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_2d425ddde2e503f2775a7ca9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.135737;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cdf80285c5b71e19d8991ec4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.000000px;}
.ls3{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.588000px;}
.ls0{letter-spacing:0.900000px;}
.lse{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.320000px;}
.ls5{letter-spacing:2.400000px;}
.ls9{letter-spacing:5.820000px;}
.ls7{letter-spacing:10.116000px;}
.lsa{letter-spacing:849.450000px;}
.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;}
}
.ws9{word-spacing:-19.512000px;}
.ws6{word-spacing:-15.960000px;}
.ws0{word-spacing:-15.480000px;}
.wsa{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.060000px;}
.ws7{word-spacing:-12.384000px;}
.ws3{word-spacing:-11.688000px;}
.ws1{word-spacing:-10.188000px;}
.ws2{word-spacing:-9.288000px;}
.ws4{word-spacing:-8.688000px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-4.200000px;}
._3{margin-left:-2.700000px;}
._0{margin-left:-1.380000px;}
._1{width:1.410000px;}
._d{width:2.448000px;}
._2{width:3.462000px;}
._c{width:4.830000px;}
._b{width:6.060000px;}
._a{width:7.200000px;}
._5{width:8.280000px;}
._9{width:9.420000px;}
._12{width:10.530000px;}
._e{width:11.760000px;}
._f{width:12.900000px;}
._8{width:13.980000px;}
._7{width:16.560000px;}
._10{width:17.940000px;}
._11{width:19.302000px;}
._14{width:20.340000px;}
._13{width:21.390000px;}
._15{width:22.632000px;}
._16{width:23.856000px;}
._18{width:25.320000px;}
._1a{width:26.580000px;}
._4{width:27.780000px;}
._19{width:32.760000px;}
._17{width:42.990000px;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(68,71,70);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:4.125000px;}
.y72{bottom:9.000000px;}
.y74{bottom:15.030000px;}
.y77{bottom:20.250000px;}
.y7c{bottom:20.625000px;}
.y76{bottom:36.750000px;}
.y7a{bottom:36.780000px;}
.y80{bottom:37.125000px;}
.y4{bottom:61.875000px;}
.y3{bottom:87.037500px;}
.y2{bottom:113.662500px;}
.y1{bottom:137.287500px;}
.y70{bottom:156.795000px;}
.y44{bottom:157.905000px;}
.y62{bottom:170.295000px;}
.y6f{bottom:172.920000px;}
.y43{bottom:177.045000px;}
.y42{bottom:181.530000px;}
.y6e{bottom:189.450000px;}
.y41{bottom:193.575000px;}
.y6d{bottom:195.450000px;}
.yb3{bottom:197.325000px;}
.y40{bottom:198.075000px;}
.y6c{bottom:208.950000px;}
.y3f{bottom:209.700000px;}
.y6b{bottom:214.950000px;}
.y61{bottom:217.200000px;}
.yb2{bottom:217.950000px;}
.y3e{bottom:226.200000px;}
.y6a{bottom:228.825000px;}
.y3d{bottom:230.700000px;}
.yb1{bottom:238.200000px;}
.y60{bottom:240.825000px;}
.y3c{bottom:242.700000px;}
.y69{bottom:245.325000px;}
.y3b{bottom:247.200000px;}
.y8b{bottom:252.075000px;}
.y3a{bottom:258.825000px;}
.y68{bottom:261.450000px;}
.y39{bottom:263.325000px;}
.y5f{bottom:264.450000px;}
.y67{bottom:267.450000px;}
.y38{bottom:275.325000px;}
.y8a{bottom:275.700000px;}
.yb0{bottom:279.075000px;}
.y37{bottom:279.825000px;}
.y66{bottom:280.575000px;}
.y5e{bottom:287.700000px;}
.y36{bottom:291.825000px;}
.y35{bottom:296.325000px;}
.y89{bottom:298.950000px;}
.yaf{bottom:299.700000px;}
.y34{bottom:307.995000px;}
.y5d{bottom:311.370000px;}
.yae{bottom:320.355000px;}
.y88{bottom:322.620000px;}
.y33{bottom:324.495000px;}
.y32{bottom:328.995000px;}
.y5c{bottom:334.995000px;}
.yad{bottom:340.620000px;}
.y31{bottom:340.995000px;}
.y30{bottom:345.495000px;}
.y87{bottom:346.245000px;}
.y2f{bottom:357.120000px;}
.y5b{bottom:358.620000px;}
.yac{bottom:361.245000px;}
.y2e{bottom:361.620000px;}
.y86{bottom:366.495000px;}
.y2d{bottom:373.620000px;}
.y2c{bottom:378.120000px;}
.yab{bottom:381.495000px;}
.y5a{bottom:381.870000px;}
.y85{bottom:384.870000px;}
.y2b{bottom:390.120000px;}
.y2a{bottom:394.620000px;}
.yaa{bottom:402.120000px;}
.y84{bottom:403.245000px;}
.y59{bottom:405.495000px;}
.y29{bottom:406.245000px;}
.y83{bottom:421.650000px;}
.ya9{bottom:422.400000px;}
.y28{bottom:422.775000px;}
.y27{bottom:427.275000px;}
.y58{bottom:429.150000px;}
.y26{bottom:438.900000px;}
.ya8{bottom:443.025000px;}
.y25{bottom:443.400000px;}
.y82{bottom:444.150000px;}
.y57{bottom:452.775000px;}
.y24{bottom:455.400000px;}
.y23{bottom:459.900000px;}
.ya7{bottom:463.275000px;}
.y22{bottom:471.900000px;}
.y56{bottom:476.025000px;}
.y21{bottom:476.400000px;}
.ya6{bottom:483.900000px;}
.y20{bottom:488.025000px;}
.y1f{bottom:492.525000px;}
.y55{bottom:499.650000px;}
.y1e{bottom:504.525000px;}
.y1d{bottom:509.025000px;}
.y81{bottom:509.775000px;}
.y1c{bottom:521.025000px;}
.y54{bottom:523.275000px;}
.ya5{bottom:524.775000px;}
.y1b{bottom:525.525000px;}
.y1a{bottom:537.150000px;}
.y19{bottom:541.695000px;}
.ya4{bottom:545.445000px;}
.y53{bottom:546.945000px;}
.y65{bottom:552.195000px;}
.y18{bottom:553.695000px;}
.y17{bottom:558.195000px;}
.y7f{bottom:558.945000px;}
.ya3{bottom:565.695000px;}
.y16{bottom:569.445000px;}
.y52{bottom:570.195000px;}
.ya2{bottom:586.320000px;}
.y51{bottom:593.820000px;}
.ya1{bottom:606.570000px;}
.y50{bottom:617.445000px;}
.y7e{bottom:624.570000px;}
.ya0{bottom:627.195000px;}
.y4f{bottom:641.070000px;}
.y9f{bottom:647.445000px;}
.y4e{bottom:664.350000px;}
.y9e{bottom:668.100000px;}
.y7d{bottom:674.100000px;}
.y4d{bottom:687.975000px;}
.y9d{bottom:688.725000px;}
.y7b{bottom:706.725000px;}
.y9c{bottom:708.975000px;}
.y4c{bottom:711.600000px;}
.y9b{bottom:729.600000px;}
.y4b{bottom:735.225000px;}
.y64{bottom:740.475000px;}
.y9a{bottom:749.850000px;}
.y79{bottom:756.225000px;}
.y4a{bottom:758.475000px;}
.y63{bottom:763.725000px;}
.y99{bottom:770.475000px;}
.y49{bottom:782.130000px;}
.y98{bottom:790.770000px;}
.y14{bottom:805.755000px;}
.y15{bottom:811.005000px;}
.y97{bottom:811.380000px;}
.ybf{bottom:818.880000px;}
.y75{bottom:821.880000px;}
.y12{bottom:829.380000px;}
.y96{bottom:832.005000px;}
.y13{bottom:834.630000px;}
.ybe{bottom:839.505000px;}
.y95{bottom:852.255000px;}
.y10{bottom:852.630000px;}
.y11{bottom:857.880000px;}
.ybd{bottom:860.130000px;}
.y94{bottom:872.880000px;}
.ye{bottom:876.255000px;}
.ybc{bottom:880.380000px;}
.yf{bottom:881.505000px;}
.y73{bottom:887.145000px;}
.y93{bottom:893.130000px;}
.yc{bottom:899.925000px;}
.ybb{bottom:901.050000px;}
.yd{bottom:905.175000px;}
.y92{bottom:913.800000px;}
.yba{bottom:921.675000px;}
.ya{bottom:923.550000px;}
.yb{bottom:928.800000px;}
.y71{bottom:930.675000px;}
.y91{bottom:934.050000px;}
.yb9{bottom:941.925000px;}
.y9{bottom:946.800000px;}
.y90{bottom:954.675000px;}
.yb8{bottom:962.550000px;}
.y8{bottom:970.425000px;}
.y8f{bottom:974.925000px;}
.yb7{bottom:982.800000px;}
.y48{bottom:994.050000px;}
.y7{bottom:995.550000px;}
.yb6{bottom:1003.425000px;}
.y8e{bottom:1016.205000px;}
.y47{bottom:1017.705000px;}
.yb5{bottom:1023.705000px;}
.y6{bottom:1025.580000px;}
.y8d{bottom:1036.455000px;}
.y46{bottom:1040.955000px;}
.yb4{bottom:1044.330000px;}
.y5{bottom:1058.580000px;}
.y8c{bottom:1061.580000px;}
.y45{bottom:1064.580000px;}
.h12{height:16.125000px;}
.hb{height:22.500000px;}
.hd{height:27.022500px;}
.h7{height:31.410000px;}
.h14{height:32.662500px;}
.h11{height:33.000000px;}
.h5{height:37.692000px;}
.h9{height:43.804688px;}
.he{height:45.443368px;}
.hf{height:48.750000px;}
.h13{height:49.125000px;}
.h10{height:49.162500px;}
.h8{height:50.256000px;}
.hc{height:51.358320px;}
.h15{height:56.538000px;}
.ha{height:62.578125px;}
.h1{height:62.820000px;}
.h4{height:68.477760px;}
.h6{height:68.835938px;}
.h2{height:75.384000px;}
.h3{height:79.890720px;}
.h0{height:1188.000000px;}
.w4{width:232.575000px;}
.w3{width:232.620000px;}
.w5{width:700.800000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3a{left:6.750000px;}
.x2{left:108.037486px;}
.x39{left:109.537500px;}
.x32{left:112.537486px;}
.x38{left:114.037486px;}
.x33{left:117.037486px;}
.x3d{left:135.074986px;}
.x4{left:162.074986px;}
.x19{left:181.574973px;}
.x6{left:187.949986px;}
.x1a{left:192.074986px;}
.x7{left:220.949973px;}
.x8{left:226.244986px;}
.x11{left:227.369973px;}
.x12{left:232.619986px;}
.x29{left:245.744973px;}
.x23{left:246.869973px;}
.x2a{left:256.244986px;}
.x24{left:257.369986px;}
.x5{left:266.744986px;}
.x1b{left:303.494973px;}
.x1c{left:314.024986px;}
.x31{left:324.149986px;}
.x2d{left:335.399973px;}
.x3b{left:343.650000px;}
.x2e{left:345.899986px;}
.x13{left:352.649973px;}
.x14{left:357.899986px;}
.x9{left:359.024973px;}
.xa{left:364.274986px;}
.x2b{left:379.649973px;}
.x2c{left:390.149986px;}
.x1d{left:427.319973px;}
.x1e{left:437.819986px;}
.x3{left:459.194986px;}
.x34{left:479.444973px;}
.x2f{left:484.319973px;}
.xb{left:493.349973px;}
.x30{left:494.849986px;}
.xc{left:498.599986px;}
.x15{left:520.349973px;}
.x16{left:525.599986px;}
.x1f{left:533.099973px;}
.x20{left:543.599986px;}
.x3c{left:577.725000px;}
.x25{left:626.129973px;}
.x35{left:631.379973px;}
.x26{left:636.629986px;}
.xd{left:643.379973px;}
.xe{left:648.629986px;}
.x21{left:677.549973px;}
.x22{left:688.049986px;}
.x17{left:751.799973px;}
.x27{left:754.799973px;}
.x18{left:757.049986px;}
.x28{left:765.329986px;}
.xf{left:767.969973px;}
.x10{left:773.219986px;}
.x1{left:801.329986px;}
.x36{left:805.094973px;}
.x37{left:810.344986px;}
@media print{
.v2{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.666667pt;}
.ls3{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.522667pt;}
.ls0{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.173333pt;}
.ls5{letter-spacing:2.133333pt;}
.ls9{letter-spacing:5.173333pt;}
.ls7{letter-spacing:8.992000pt;}
.lsa{letter-spacing:755.066667pt;}
.ws9{word-spacing:-17.344000pt;}
.ws6{word-spacing:-14.186667pt;}
.ws0{word-spacing:-13.760000pt;}
.wsa{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.386667pt;}
.ws7{word-spacing:-11.008000pt;}
.ws3{word-spacing:-10.389333pt;}
.ws1{word-spacing:-9.056000pt;}
.ws2{word-spacing:-8.256000pt;}
.ws4{word-spacing:-7.722667pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-3.733333pt;}
._3{margin-left:-2.400000pt;}
._0{margin-left:-1.226667pt;}
._1{width:1.253333pt;}
._d{width:2.176000pt;}
._2{width:3.077333pt;}
._c{width:4.293333pt;}
._b{width:5.386667pt;}
._a{width:6.400000pt;}
._5{width:7.360000pt;}
._9{width:8.373333pt;}
._12{width:9.360000pt;}
._e{width:10.453333pt;}
._f{width:11.466667pt;}
._8{width:12.426667pt;}
._7{width:14.720000pt;}
._10{width:15.946667pt;}
._11{width:17.157333pt;}
._14{width:18.080000pt;}
._13{width:19.013333pt;}
._15{width:20.117333pt;}
._16{width:21.205333pt;}
._18{width:22.506667pt;}
._1a{width:23.626667pt;}
._4{width:24.693333pt;}
._19{width:29.120000pt;}
._17{width:38.213333pt;}
.fs5{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:3.666667pt;}
.y72{bottom:8.000000pt;}
.y74{bottom:13.360000pt;}
.y77{bottom:18.000000pt;}
.y7c{bottom:18.333333pt;}
.y76{bottom:32.666667pt;}
.y7a{bottom:32.693333pt;}
.y80{bottom:33.000000pt;}
.y4{bottom:55.000000pt;}
.y3{bottom:77.366667pt;}
.y2{bottom:101.033333pt;}
.y1{bottom:122.033333pt;}
.y70{bottom:139.373333pt;}
.y44{bottom:140.360000pt;}
.y62{bottom:151.373333pt;}
.y6f{bottom:153.706667pt;}
.y43{bottom:157.373333pt;}
.y42{bottom:161.360000pt;}
.y6e{bottom:168.400000pt;}
.y41{bottom:172.066667pt;}
.y6d{bottom:173.733333pt;}
.yb3{bottom:175.400000pt;}
.y40{bottom:176.066667pt;}
.y6c{bottom:185.733333pt;}
.y3f{bottom:186.400000pt;}
.y6b{bottom:191.066667pt;}
.y61{bottom:193.066667pt;}
.yb2{bottom:193.733333pt;}
.y3e{bottom:201.066667pt;}
.y6a{bottom:203.400000pt;}
.y3d{bottom:205.066667pt;}
.yb1{bottom:211.733333pt;}
.y60{bottom:214.066667pt;}
.y3c{bottom:215.733333pt;}
.y69{bottom:218.066667pt;}
.y3b{bottom:219.733333pt;}
.y8b{bottom:224.066667pt;}
.y3a{bottom:230.066667pt;}
.y68{bottom:232.400000pt;}
.y39{bottom:234.066667pt;}
.y5f{bottom:235.066667pt;}
.y67{bottom:237.733333pt;}
.y38{bottom:244.733333pt;}
.y8a{bottom:245.066667pt;}
.yb0{bottom:248.066667pt;}
.y37{bottom:248.733333pt;}
.y66{bottom:249.400000pt;}
.y5e{bottom:255.733333pt;}
.y36{bottom:259.400000pt;}
.y35{bottom:263.400000pt;}
.y89{bottom:265.733333pt;}
.yaf{bottom:266.400000pt;}
.y34{bottom:273.773333pt;}
.y5d{bottom:276.773333pt;}
.yae{bottom:284.760000pt;}
.y88{bottom:286.773333pt;}
.y33{bottom:288.440000pt;}
.y32{bottom:292.440000pt;}
.y5c{bottom:297.773333pt;}
.yad{bottom:302.773333pt;}
.y31{bottom:303.106667pt;}
.y30{bottom:307.106667pt;}
.y87{bottom:307.773333pt;}
.y2f{bottom:317.440000pt;}
.y5b{bottom:318.773333pt;}
.yac{bottom:321.106667pt;}
.y2e{bottom:321.440000pt;}
.y86{bottom:325.773333pt;}
.y2d{bottom:332.106667pt;}
.y2c{bottom:336.106667pt;}
.yab{bottom:339.106667pt;}
.y5a{bottom:339.440000pt;}
.y85{bottom:342.106667pt;}
.y2b{bottom:346.773333pt;}
.y2a{bottom:350.773333pt;}
.yaa{bottom:357.440000pt;}
.y84{bottom:358.440000pt;}
.y59{bottom:360.440000pt;}
.y29{bottom:361.106667pt;}
.y83{bottom:374.800000pt;}
.ya9{bottom:375.466667pt;}
.y28{bottom:375.800000pt;}
.y27{bottom:379.800000pt;}
.y58{bottom:381.466667pt;}
.y26{bottom:390.133333pt;}
.ya8{bottom:393.800000pt;}
.y25{bottom:394.133333pt;}
.y82{bottom:394.800000pt;}
.y57{bottom:402.466667pt;}
.y24{bottom:404.800000pt;}
.y23{bottom:408.800000pt;}
.ya7{bottom:411.800000pt;}
.y22{bottom:419.466667pt;}
.y56{bottom:423.133333pt;}
.y21{bottom:423.466667pt;}
.ya6{bottom:430.133333pt;}
.y20{bottom:433.800000pt;}
.y1f{bottom:437.800000pt;}
.y55{bottom:444.133333pt;}
.y1e{bottom:448.466667pt;}
.y1d{bottom:452.466667pt;}
.y81{bottom:453.133333pt;}
.y1c{bottom:463.133333pt;}
.y54{bottom:465.133333pt;}
.ya5{bottom:466.466667pt;}
.y1b{bottom:467.133333pt;}
.y1a{bottom:477.466667pt;}
.y19{bottom:481.506667pt;}
.ya4{bottom:484.840000pt;}
.y53{bottom:486.173333pt;}
.y65{bottom:490.840000pt;}
.y18{bottom:492.173333pt;}
.y17{bottom:496.173333pt;}
.y7f{bottom:496.840000pt;}
.ya3{bottom:502.840000pt;}
.y16{bottom:506.173333pt;}
.y52{bottom:506.840000pt;}
.ya2{bottom:521.173333pt;}
.y51{bottom:527.840000pt;}
.ya1{bottom:539.173333pt;}
.y50{bottom:548.840000pt;}
.y7e{bottom:555.173333pt;}
.ya0{bottom:557.506667pt;}
.y4f{bottom:569.840000pt;}
.y9f{bottom:575.506667pt;}
.y4e{bottom:590.533333pt;}
.y9e{bottom:593.866667pt;}
.y7d{bottom:599.200000pt;}
.y4d{bottom:611.533333pt;}
.y9d{bottom:612.200000pt;}
.y7b{bottom:628.200000pt;}
.y9c{bottom:630.200000pt;}
.y4c{bottom:632.533333pt;}
.y9b{bottom:648.533333pt;}
.y4b{bottom:653.533333pt;}
.y64{bottom:658.200000pt;}
.y9a{bottom:666.533333pt;}
.y79{bottom:672.200000pt;}
.y4a{bottom:674.200000pt;}
.y63{bottom:678.866667pt;}
.y99{bottom:684.866667pt;}
.y49{bottom:695.226667pt;}
.y98{bottom:702.906667pt;}
.y14{bottom:716.226667pt;}
.y15{bottom:720.893333pt;}
.y97{bottom:721.226667pt;}
.ybf{bottom:727.893333pt;}
.y75{bottom:730.560000pt;}
.y12{bottom:737.226667pt;}
.y96{bottom:739.560000pt;}
.y13{bottom:741.893333pt;}
.ybe{bottom:746.226667pt;}
.y95{bottom:757.560000pt;}
.y10{bottom:757.893333pt;}
.y11{bottom:762.560000pt;}
.ybd{bottom:764.560000pt;}
.y94{bottom:775.893333pt;}
.ye{bottom:778.893333pt;}
.ybc{bottom:782.560000pt;}
.yf{bottom:783.560000pt;}
.y73{bottom:788.573333pt;}
.y93{bottom:793.893333pt;}
.yc{bottom:799.933333pt;}
.ybb{bottom:800.933333pt;}
.yd{bottom:804.600000pt;}
.y92{bottom:812.266667pt;}
.yba{bottom:819.266667pt;}
.ya{bottom:820.933333pt;}
.yb{bottom:825.600000pt;}
.y71{bottom:827.266667pt;}
.y91{bottom:830.266667pt;}
.yb9{bottom:837.266667pt;}
.y9{bottom:841.600000pt;}
.y90{bottom:848.600000pt;}
.yb8{bottom:855.600000pt;}
.y8{bottom:862.600000pt;}
.y8f{bottom:866.600000pt;}
.yb7{bottom:873.600000pt;}
.y48{bottom:883.600000pt;}
.y7{bottom:884.933333pt;}
.yb6{bottom:891.933333pt;}
.y8e{bottom:903.293333pt;}
.y47{bottom:904.626667pt;}
.yb5{bottom:909.960000pt;}
.y6{bottom:911.626667pt;}
.y8d{bottom:921.293333pt;}
.y46{bottom:925.293333pt;}
.yb4{bottom:928.293333pt;}
.y5{bottom:940.960000pt;}
.y8c{bottom:943.626667pt;}
.y45{bottom:946.293333pt;}
.h12{height:14.333333pt;}
.hb{height:20.000000pt;}
.hd{height:24.020000pt;}
.h7{height:27.920000pt;}
.h14{height:29.033333pt;}
.h11{height:29.333333pt;}
.h5{height:33.504000pt;}
.h9{height:38.937500pt;}
.he{height:40.394105pt;}
.hf{height:43.333333pt;}
.h13{height:43.666667pt;}
.h10{height:43.700000pt;}
.h8{height:44.672000pt;}
.hc{height:45.651840pt;}
.h15{height:50.256000pt;}
.ha{height:55.625000pt;}
.h1{height:55.840000pt;}
.h4{height:60.869120pt;}
.h6{height:61.187500pt;}
.h2{height:67.008000pt;}
.h3{height:71.013973pt;}
.h0{height:1056.000000pt;}
.w4{width:206.733333pt;}
.w3{width:206.773333pt;}
.w5{width:622.933333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:6.000000pt;}
.x2{left:96.033321pt;}
.x39{left:97.366667pt;}
.x32{left:100.033321pt;}
.x38{left:101.366655pt;}
.x33{left:104.033321pt;}
.x3d{left:120.066655pt;}
.x4{left:144.066655pt;}
.x19{left:161.399976pt;}
.x6{left:167.066655pt;}
.x1a{left:170.733321pt;}
.x7{left:196.399976pt;}
.x8{left:201.106655pt;}
.x11{left:202.106642pt;}
.x12{left:206.773321pt;}
.x29{left:218.439976pt;}
.x23{left:219.439976pt;}
.x2a{left:227.773321pt;}
.x24{left:228.773321pt;}
.x5{left:237.106655pt;}
.x1b{left:269.773309pt;}
.x1c{left:279.133321pt;}
.x31{left:288.133321pt;}
.x2d{left:298.133309pt;}
.x3b{left:305.466667pt;}
.x2e{left:307.466655pt;}
.x13{left:313.466642pt;}
.x14{left:318.133321pt;}
.x9{left:319.133309pt;}
.xa{left:323.799988pt;}
.x2b{left:337.466642pt;}
.x2c{left:346.799988pt;}
.x1d{left:379.839976pt;}
.x1e{left:389.173321pt;}
.x3{left:408.173321pt;}
.x34{left:426.173309pt;}
.x2f{left:430.506642pt;}
.xb{left:438.533309pt;}
.x30{left:439.866655pt;}
.xc{left:443.199988pt;}
.x15{left:462.533309pt;}
.x16{left:467.199988pt;}
.x1f{left:473.866642pt;}
.x20{left:483.199988pt;}
.x3c{left:513.533333pt;}
.x25{left:556.559976pt;}
.x35{left:561.226642pt;}
.x26{left:565.893321pt;}
.xd{left:571.893309pt;}
.xe{left:576.559988pt;}
.x21{left:602.266642pt;}
.x22{left:611.599988pt;}
.x17{left:668.266642pt;}
.x27{left:670.933309pt;}
.x18{left:672.933321pt;}
.x28{left:680.293321pt;}
.xf{left:682.639976pt;}
.x10{left:687.306655pt;}
.x1{left:712.293321pt;}
.x36{left:715.639976pt;}
.x37{left:720.306655pt;}
}




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