
    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_9fa8e41dfd768c9600663a23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_c9ea66ee21ab8c84cff73842.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2d96ebee18202c80556c8bbd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_dcd485ad631b3ca9bd337616.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_77b960dae1172697c3a127e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ac6ddddc3094d88705de29a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.496200px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.034560px;}
.ls4{letter-spacing:-0.017280px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.223800px;}
.ls0{letter-spacing:0.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.440000px;}
.ws9{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.283800px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.563800px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-4.562880px;}
._2{margin-left:-3.295680px;}
._3{margin-left:-2.263680px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._7{width:2.288640px;}
._8{width:3.726000px;}
._22{width:4.769280px;}
._12{width:5.782320px;}
._11{width:6.804000px;}
._10{width:8.040000px;}
._9{width:9.450000px;}
._b{width:10.908000px;}
._14{width:12.090720px;}
._19{width:13.308960px;}
._4{width:14.513040px;}
._5{width:15.888960px;}
._f{width:17.550000px;}
._e{width:18.792000px;}
._15{width:20.170080px;}
._16{width:21.627360px;}
._c{width:22.896000px;}
._13{width:25.002000px;}
._6{width:26.028000px;}
._a{width:27.648000px;}
._1c{width:29.943360px;}
._1a{width:31.140000px;}
._1b{width:32.679120px;}
._17{width:33.716160px;}
._18{width:35.449920px;}
._20{width:39.346560px;}
._21{width:40.671360px;}
._23{width:47.229120px;}
._1f{width:288.006480px;}
._1d{width:289.185120px;}
._1e{width:290.208240px;}
._24{width:581.123520px;}
._25{width:2145.926160px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:5.220000px;}
.y2{bottom:6.510000px;}
.y59{bottom:9.720000px;}
.y9{bottom:11.730000px;}
.y5a{bottom:12.240000px;}
.y3c{bottom:23.040000px;}
.y5{bottom:27.210000px;}
.y8{bottom:29.010000px;}
.y3b{bottom:40.860000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.yc{bottom:57.420000px;}
.y3a{bottom:58.680000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y39{bottom:76.500000px;}
.yb{bottom:77.436000px;}
.y38{bottom:94.545000px;}
.y9f{bottom:110.376000px;}
.y37{bottom:112.365000px;}
.ya8{bottom:114.876000px;}
.y5f{bottom:123.876000px;}
.y9e{bottom:124.236000px;}
.yb8{bottom:124.956000px;}
.y9d{bottom:128.736000px;}
.y36{bottom:130.185000px;}
.y9c{bottom:137.916000px;}
.ya7{bottom:142.416000px;}
.y5e{bottom:142.956000px;}
.yb7{bottom:143.856000px;}
.y35{bottom:148.005000px;}
.y9b{bottom:151.770000px;}
.y9a{bottom:156.270000px;}
.y5d{bottom:161.850000px;}
.yb6{bottom:162.930000px;}
.y99{bottom:165.630000px;}
.y34{bottom:165.825000px;}
.y98{bottom:170.130000px;}
.y97{bottom:179.310000px;}
.y5c{bottom:180.930000px;}
.yb5{bottom:181.830000px;}
.y33{bottom:183.645000px;}
.y96{bottom:183.810000px;}
.y95{bottom:193.170000px;}
.yac{bottom:194.250000px;}
.y94{bottom:197.670000px;}
.y5b{bottom:199.830000px;}
.yb4{bottom:200.730000px;}
.y32{bottom:201.645000px;}
.ya6{bottom:207.030000px;}
.y93{bottom:207.930000px;}
.ya5{bottom:211.530000px;}
.y58{bottom:215.130000px;}
.y31{bottom:219.465000px;}
.yb3{bottom:219.810000px;}
.ya4{bottom:221.790000px;}
.y30{bottom:237.285000px;}
.y92{bottom:238.710000px;}
.y14{bottom:246.630000px;}
.y2f{bottom:255.105000px;}
.y91{bottom:257.790000px;}
.ya3{bottom:263.730000px;}
.y2e{bottom:272.925000px;}
.y90{bottom:276.690000px;}
.y2d{bottom:290.925000px;}
.y8f{bottom:295.590000px;}
.y2c{bottom:308.745000px;}
.y8e{bottom:314.670000px;}
.y57{bottom:323.865000px;}
.y2b{bottom:326.565000px;}
.y8d{bottom:333.570000px;}
.y56{bottom:339.705000px;}
.y2a{bottom:344.385000px;}
.y8c{bottom:352.695000px;}
.y55{bottom:355.545000px;}
.yaf{bottom:358.635000px;}
.y29{bottom:362.235000px;}
.y54{bottom:371.415000px;}
.y8b{bottom:371.595000px;}
.y28{bottom:380.055000px;}
.y53{bottom:387.435000px;}
.y8a{bottom:390.675000px;}
.y27{bottom:398.055000px;}
.y52{bottom:403.275000px;}
.y88{bottom:409.575000px;}
.y89{bottom:415.515000px;}
.y26{bottom:415.875000px;}
.y51{bottom:419.115000px;}
.y87{bottom:428.475000px;}
.y25{bottom:433.695000px;}
.y50{bottom:434.955000px;}
.y86{bottom:447.555000px;}
.y4f{bottom:450.795000px;}
.y24{bottom:451.515000px;}
.y85{bottom:466.455000px;}
.y4e{bottom:466.635000px;}
.y23{bottom:469.335000px;}
.y4d{bottom:482.655000px;}
.y84{bottom:485.535000px;}
.y22{bottom:487.335000px;}
.ya2{bottom:491.475000px;}
.y4c{bottom:498.495000px;}
.y83{bottom:504.435000px;}
.y21{bottom:505.155000px;}
.y4b{bottom:514.335000px;}
.y20{bottom:522.975000px;}
.y82{bottom:523.335000px;}
.yab{bottom:529.275000px;}
.y4a{bottom:530.175000px;}
.y1f{bottom:540.795000px;}
.y80{bottom:542.415000px;}
.y49{bottom:546.015000px;}
.y81{bottom:548.355000px;}
.y1e{bottom:558.615000px;}
.y7f{bottom:561.315000px;}
.y48{bottom:561.855000px;}
.y1d{bottom:576.435000px;}
.y47{bottom:577.695000px;}
.y7e{bottom:580.395000px;}
.yb2{bottom:586.335000px;}
.y46{bottom:593.715000px;}
.y1c{bottom:594.435000px;}
.y7d{bottom:599.295000px;}
.y45{bottom:609.555000px;}
.y1b{bottom:612.255000px;}
.y7c{bottom:618.225000px;}
.y44{bottom:625.440000px;}
.y1a{bottom:630.120000px;}
.y7b{bottom:637.305000px;}
.y43{bottom:641.280000px;}
.y19{bottom:647.940000px;}
.y7a{bottom:656.205000px;}
.y42{bottom:657.120000px;}
.y18{bottom:665.760000px;}
.y41{bottom:672.960000px;}
.y79{bottom:675.285000px;}
.y17{bottom:683.760000px;}
.y40{bottom:688.980000px;}
.y78{bottom:694.185000px;}
.yaa{bottom:700.125000px;}
.y16{bottom:701.580000px;}
.y3f{bottom:704.820000px;}
.y76{bottom:713.085000px;}
.y77{bottom:719.025000px;}
.y15{bottom:719.400000px;}
.y3e{bottom:720.660000px;}
.y75{bottom:732.165000px;}
.y74{bottom:751.065000px;}
.yae{bottom:757.005000px;}
.y73{bottom:770.145000px;}
.y72{bottom:789.045000px;}
.y71{bottom:807.945000px;}
.y70{bottom:827.025000px;}
.y6e{bottom:845.925000px;}
.y6f{bottom:851.865000px;}
.y6d{bottom:865.005000px;}
.ya9{bottom:870.990000px;}
.y6c{bottom:883.950000px;}
.y6b{bottom:903.030000px;}
.yad{bottom:908.970000px;}
.y6a{bottom:921.930000px;}
.y69{bottom:940.830000px;}
.yb1{bottom:946.770000px;}
.y68{bottom:959.910000px;}
.y67{bottom:978.810000px;}
.y13{bottom:981.870000px;}
.ya1{bottom:984.750000px;}
.y66{bottom:997.890000px;}
.y12{bottom:999.150000px;}
.y11{bottom:1016.430000px;}
.y64{bottom:1016.790000px;}
.y65{bottom:1022.730000px;}
.y10{bottom:1034.070000px;}
.y63{bottom:1035.690000px;}
.yf{bottom:1051.890000px;}
.y62{bottom:1054.770000px;}
.ye{bottom:1067.190000px;}
.y61{bottom:1073.670000px;}
.ya0{bottom:1079.610000px;}
.yd{bottom:1089.690000px;}
.y60{bottom:1092.750000px;}
.yb0{bottom:1098.690000px;}
.ya{bottom:1111.470000px;}
.y1{bottom:1131.450000px;}
.h16{height:21.114844px;}
.h15{height:29.158594px;}
.h12{height:31.500000px;}
.hb{height:33.683203px;}
.h10{height:34.036523px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h8{height:39.147891px;}
.h11{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.hf{height:44.507812px;}
.h14{height:46.251562px;}
.h4{height:46.736719px;}
.h7{height:48.224531px;}
.h6{height:49.255313px;}
.h13{height:54.596250px;}
.ha{height:54.864844px;}
.h9{height:63.104063px;}
.h2{height:77.436000px;}
.hc{height:731.985000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x13{left:29.700000px;}
.x6{left:33.480000px;}
.x2{left:69.294000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:104.625000px;}
.xa{left:108.035987px;}
.x21{left:111.815987px;}
.x31{left:115.595987px;}
.x8{left:132.345000px;}
.xc{left:149.255987px;}
.x23{left:151.049973px;}
.x24{left:156.269987px;}
.x15{left:161.129987px;}
.x3{left:171.930000px;}
.x16{left:183.089973px;}
.x17{left:188.309987px;}
.xd{left:233.129987px;}
.x36{left:240.869973px;}
.x3a{left:243.029973px;}
.x37{left:251.309987px;}
.x3b{left:253.469987px;}
.x2b{left:267.509973px;}
.x2c{left:277.994987px;}
.x10{left:284.114987px;}
.x11{left:310.214987px;}
.x20{left:324.074987px;}
.x27{left:343.694973px;}
.x28{left:348.914987px;}
.x1e{left:361.874973px;}
.x1f{left:367.094987px;}
.x41{left:368.354973px;}
.x38{left:369.794973px;}
.x42{left:378.794987px;}
.x39{left:380.234987px;}
.x22{left:382.214973px;}
.xf{left:388.154987px;}
.x14{left:391.575000px;}
.x2d{left:394.634973px;}
.x2e{left:405.074987px;}
.xe{left:446.474987px;}
.xb{left:500.144987px;}
.x2f{left:552.524973px;}
.x30{left:562.964987px;}
.x12{left:567.105000px;}
.x3c{left:580.424973px;}
.x3d{left:590.864987px;}
.x5{left:599.865000px;}
.x1c{left:616.244973px;}
.x1d{left:621.464987px;}
.x29{left:655.124973px;}
.x2a{left:665.609987px;}
.x1a{left:666.689973px;}
.x1b{left:671.909987px;}
.x32{left:721.589973px;}
.x34{left:729.509973px;}
.x33{left:732.029987px;}
.x35{left:739.949987px;}
.x25{left:751.469973px;}
.x3f{left:755.609973px;}
.x26{left:756.689987px;}
.x18{left:757.769973px;}
.x19{left:762.989987px;}
.x40{left:766.049987px;}
.x3e{left:773.969987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.441067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:-0.015360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.198933pt;}
.ls0{letter-spacing:0.320000pt;}
.ws1{word-spacing:-17.280000pt;}
.ws9{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.918933pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.278933pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-4.055893pt;}
._2{margin-left:-2.929493pt;}
._3{margin-left:-2.012160pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._7{width:2.034347pt;}
._8{width:3.312000pt;}
._22{width:4.239360pt;}
._12{width:5.139840pt;}
._11{width:6.048000pt;}
._10{width:7.146667pt;}
._9{width:8.400000pt;}
._b{width:9.696000pt;}
._14{width:10.747307pt;}
._19{width:11.830187pt;}
._4{width:12.900480pt;}
._5{width:14.123520pt;}
._f{width:15.600000pt;}
._e{width:16.704000pt;}
._15{width:17.928960pt;}
._16{width:19.224320pt;}
._c{width:20.352000pt;}
._13{width:22.224000pt;}
._6{width:23.136000pt;}
._a{width:24.576000pt;}
._1c{width:26.616320pt;}
._1a{width:27.680000pt;}
._1b{width:29.048107pt;}
._17{width:29.969920pt;}
._18{width:31.511040pt;}
._20{width:34.974720pt;}
._21{width:36.152320pt;}
._23{width:41.981440pt;}
._1f{width:256.005760pt;}
._1d{width:257.053440pt;}
._1e{width:257.962880pt;}
._24{width:516.554240pt;}
._25{width:1907.489920pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:4.640000pt;}
.y2{bottom:5.786667pt;}
.y59{bottom:8.640000pt;}
.y9{bottom:10.426667pt;}
.y5a{bottom:10.880000pt;}
.y3c{bottom:20.480000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.786667pt;}
.y3b{bottom:36.320000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.yc{bottom:51.040000pt;}
.y3a{bottom:52.160000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y39{bottom:68.000000pt;}
.yb{bottom:68.832000pt;}
.y38{bottom:84.040000pt;}
.y9f{bottom:98.112000pt;}
.y37{bottom:99.880000pt;}
.ya8{bottom:102.112000pt;}
.y5f{bottom:110.112000pt;}
.y9e{bottom:110.432000pt;}
.yb8{bottom:111.072000pt;}
.y9d{bottom:114.432000pt;}
.y36{bottom:115.720000pt;}
.y9c{bottom:122.592000pt;}
.ya7{bottom:126.592000pt;}
.y5e{bottom:127.072000pt;}
.yb7{bottom:127.872000pt;}
.y35{bottom:131.560000pt;}
.y9b{bottom:134.906667pt;}
.y9a{bottom:138.906667pt;}
.y5d{bottom:143.866667pt;}
.yb6{bottom:144.826667pt;}
.y99{bottom:147.226667pt;}
.y34{bottom:147.400000pt;}
.y98{bottom:151.226667pt;}
.y97{bottom:159.386667pt;}
.y5c{bottom:160.826667pt;}
.yb5{bottom:161.626667pt;}
.y33{bottom:163.240000pt;}
.y96{bottom:163.386667pt;}
.y95{bottom:171.706667pt;}
.yac{bottom:172.666667pt;}
.y94{bottom:175.706667pt;}
.y5b{bottom:177.626667pt;}
.yb4{bottom:178.426667pt;}
.y32{bottom:179.240000pt;}
.ya6{bottom:184.026667pt;}
.y93{bottom:184.826667pt;}
.ya5{bottom:188.026667pt;}
.y58{bottom:191.226667pt;}
.y31{bottom:195.080000pt;}
.yb3{bottom:195.386667pt;}
.ya4{bottom:197.146667pt;}
.y30{bottom:210.920000pt;}
.y92{bottom:212.186667pt;}
.y14{bottom:219.226667pt;}
.y2f{bottom:226.760000pt;}
.y91{bottom:229.146667pt;}
.ya3{bottom:234.426667pt;}
.y2e{bottom:242.600000pt;}
.y90{bottom:245.946667pt;}
.y2d{bottom:258.600000pt;}
.y8f{bottom:262.746667pt;}
.y2c{bottom:274.440000pt;}
.y8e{bottom:279.706667pt;}
.y57{bottom:287.880000pt;}
.y2b{bottom:290.280000pt;}
.y8d{bottom:296.506667pt;}
.y56{bottom:301.960000pt;}
.y2a{bottom:306.120000pt;}
.y8c{bottom:313.506667pt;}
.y55{bottom:316.040000pt;}
.yaf{bottom:318.786667pt;}
.y29{bottom:321.986667pt;}
.y54{bottom:330.146667pt;}
.y8b{bottom:330.306667pt;}
.y28{bottom:337.826667pt;}
.y53{bottom:344.386667pt;}
.y8a{bottom:347.266667pt;}
.y27{bottom:353.826667pt;}
.y52{bottom:358.466667pt;}
.y88{bottom:364.066667pt;}
.y89{bottom:369.346667pt;}
.y26{bottom:369.666667pt;}
.y51{bottom:372.546667pt;}
.y87{bottom:380.866667pt;}
.y25{bottom:385.506667pt;}
.y50{bottom:386.626667pt;}
.y86{bottom:397.826667pt;}
.y4f{bottom:400.706667pt;}
.y24{bottom:401.346667pt;}
.y85{bottom:414.626667pt;}
.y4e{bottom:414.786667pt;}
.y23{bottom:417.186667pt;}
.y4d{bottom:429.026667pt;}
.y84{bottom:431.586667pt;}
.y22{bottom:433.186667pt;}
.ya2{bottom:436.866667pt;}
.y4c{bottom:443.106667pt;}
.y83{bottom:448.386667pt;}
.y21{bottom:449.026667pt;}
.y4b{bottom:457.186667pt;}
.y20{bottom:464.866667pt;}
.y82{bottom:465.186667pt;}
.yab{bottom:470.466667pt;}
.y4a{bottom:471.266667pt;}
.y1f{bottom:480.706667pt;}
.y80{bottom:482.146667pt;}
.y49{bottom:485.346667pt;}
.y81{bottom:487.426667pt;}
.y1e{bottom:496.546667pt;}
.y7f{bottom:498.946667pt;}
.y48{bottom:499.426667pt;}
.y1d{bottom:512.386667pt;}
.y47{bottom:513.506667pt;}
.y7e{bottom:515.906667pt;}
.yb2{bottom:521.186667pt;}
.y46{bottom:527.746667pt;}
.y1c{bottom:528.386667pt;}
.y7d{bottom:532.706667pt;}
.y45{bottom:541.826667pt;}
.y1b{bottom:544.226667pt;}
.y7c{bottom:549.533333pt;}
.y44{bottom:555.946667pt;}
.y1a{bottom:560.106667pt;}
.y7b{bottom:566.493333pt;}
.y43{bottom:570.026667pt;}
.y19{bottom:575.946667pt;}
.y7a{bottom:583.293333pt;}
.y42{bottom:584.106667pt;}
.y18{bottom:591.786667pt;}
.y41{bottom:598.186667pt;}
.y79{bottom:600.253333pt;}
.y17{bottom:607.786667pt;}
.y40{bottom:612.426667pt;}
.y78{bottom:617.053333pt;}
.yaa{bottom:622.333333pt;}
.y16{bottom:623.626667pt;}
.y3f{bottom:626.506667pt;}
.y76{bottom:633.853333pt;}
.y77{bottom:639.133333pt;}
.y15{bottom:639.466667pt;}
.y3e{bottom:640.586667pt;}
.y75{bottom:650.813333pt;}
.y74{bottom:667.613333pt;}
.yae{bottom:672.893333pt;}
.y73{bottom:684.573333pt;}
.y72{bottom:701.373333pt;}
.y71{bottom:718.173333pt;}
.y70{bottom:735.133333pt;}
.y6e{bottom:751.933333pt;}
.y6f{bottom:757.213333pt;}
.y6d{bottom:768.893333pt;}
.ya9{bottom:774.213333pt;}
.y6c{bottom:785.733333pt;}
.y6b{bottom:802.693333pt;}
.yad{bottom:807.973333pt;}
.y6a{bottom:819.493333pt;}
.y69{bottom:836.293333pt;}
.yb1{bottom:841.573333pt;}
.y68{bottom:853.253333pt;}
.y67{bottom:870.053333pt;}
.y13{bottom:872.773333pt;}
.ya1{bottom:875.333333pt;}
.y66{bottom:887.013333pt;}
.y12{bottom:888.133333pt;}
.y11{bottom:903.493333pt;}
.y64{bottom:903.813333pt;}
.y65{bottom:909.093333pt;}
.y10{bottom:919.173333pt;}
.y63{bottom:920.613333pt;}
.yf{bottom:935.013333pt;}
.y62{bottom:937.573333pt;}
.ye{bottom:948.613333pt;}
.y61{bottom:954.373333pt;}
.ya0{bottom:959.653333pt;}
.yd{bottom:968.613333pt;}
.y60{bottom:971.333333pt;}
.yb0{bottom:976.613333pt;}
.ya{bottom:987.973333pt;}
.y1{bottom:1005.733333pt;}
.h16{height:18.768750pt;}
.h15{height:25.918750pt;}
.h12{height:28.000000pt;}
.hb{height:29.940625pt;}
.h10{height:30.254687pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h8{height:34.798125pt;}
.h11{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.hf{height:39.562500pt;}
.h14{height:41.112500pt;}
.h4{height:41.543750pt;}
.h7{height:42.866250pt;}
.h6{height:43.782500pt;}
.h13{height:48.530000pt;}
.ha{height:48.768750pt;}
.h9{height:56.092500pt;}
.h2{height:68.832000pt;}
.hc{height:650.653333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x13{left:26.400000pt;}
.x6{left:29.760000pt;}
.x2{left:61.594667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:93.000000pt;}
.xa{left:96.031988pt;}
.x21{left:99.391988pt;}
.x31{left:102.751988pt;}
.x8{left:117.640000pt;}
.xc{left:132.671988pt;}
.x23{left:134.266643pt;}
.x24{left:138.906655pt;}
.x15{left:143.226655pt;}
.x3{left:152.826667pt;}
.x16{left:162.746643pt;}
.x17{left:167.386655pt;}
.xd{left:207.226655pt;}
.x36{left:214.106643pt;}
.x3a{left:216.026643pt;}
.x37{left:223.386655pt;}
.x3b{left:225.306655pt;}
.x2b{left:237.786643pt;}
.x2c{left:247.106655pt;}
.x10{left:252.546655pt;}
.x11{left:275.746655pt;}
.x20{left:288.066655pt;}
.x27{left:305.506643pt;}
.x28{left:310.146655pt;}
.x1e{left:321.666643pt;}
.x1f{left:326.306655pt;}
.x41{left:327.426643pt;}
.x38{left:328.706643pt;}
.x42{left:336.706655pt;}
.x39{left:337.986655pt;}
.x22{left:339.746643pt;}
.xf{left:345.026655pt;}
.x14{left:348.066667pt;}
.x2d{left:350.786643pt;}
.x2e{left:360.066655pt;}
.xe{left:396.866655pt;}
.xb{left:444.573322pt;}
.x2f{left:491.133310pt;}
.x30{left:500.413322pt;}
.x12{left:504.093333pt;}
.x3c{left:515.933310pt;}
.x3d{left:525.213322pt;}
.x5{left:533.213333pt;}
.x1c{left:547.773310pt;}
.x1d{left:552.413322pt;}
.x29{left:582.333310pt;}
.x2a{left:591.653322pt;}
.x1a{left:592.613310pt;}
.x1b{left:597.253322pt;}
.x32{left:641.413310pt;}
.x34{left:648.453310pt;}
.x33{left:650.693322pt;}
.x35{left:657.733322pt;}
.x25{left:667.973310pt;}
.x3f{left:671.653310pt;}
.x26{left:672.613322pt;}
.x18{left:673.573310pt;}
.x19{left:678.213322pt;}
.x40{left:680.933322pt;}
.x3e{left:687.973322pt;}
}




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