
    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_0bf7c8b0b8f45c80eb53eac2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_4517b19f137250e981eb19f4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9512e2b8c48f507d4e17308a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_8d1ae5c128f57eed84f14fd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_1062fd8f3c624588e93d077f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_12e9dcc63c3916b5bb3a9dc4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9162ad49d1922f3a0db91286.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6f3a64d1ab951cb5cda72cfe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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:ff9;src:url('chunks/assets/font_25527a77ae418d131f90ec69.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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;}
.ls5{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.025920px;}
.ls6{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls9{letter-spacing:0.145920px;}
.ls13{letter-spacing:0.205920px;}
.lsb{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.745920px;}
.ls21{letter-spacing:2.880000px;}
.ls1e{letter-spacing:5.040000px;}
.ls1a{letter-spacing:5.760000px;}
.ls20{letter-spacing:6.480000px;}
.ls8{letter-spacing:9.360000px;}
.ls22{letter-spacing:10.080000px;}
.ls18{letter-spacing:11.520000px;}
.lsd{letter-spacing:12.240000px;}
.ls15{letter-spacing:12.960000px;}
.ls7{letter-spacing:13.680000px;}
.ls1b{letter-spacing:14.400000px;}
.ls11{letter-spacing:15.840000px;}
.ls16{letter-spacing:19.440000px;}
.ls1d{letter-spacing:20.160000px;}
.ls10{letter-spacing:22.320000px;}
.ls14{letter-spacing:23.760000px;}
.lsc{letter-spacing:29.520000px;}
.ls19{letter-spacing:31.680000px;}
.ls12{letter-spacing:34.560000px;}
.lsf{letter-spacing:36.720000px;}
.ls17{letter-spacing:43.200000px;}
.lse{letter-spacing:45.360000px;}
.lsa{letter-spacing:47.502720px;}
.ls1c{letter-spacing:53.280000px;}
.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:-21.617280px;}
.ws0{word-spacing:-21.060000px;}
.ws4{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.448640px;}
.ws3{word-spacing:-19.440000px;}
.ws2{word-spacing:-0.077760px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.010880px;}
._0{width:1.244160px;}
._2{width:2.633280px;}
._1d{width:4.665600px;}
._19{width:5.909760px;}
._18{width:7.309440px;}
._d{width:8.942400px;}
._23{width:10.419840px;}
._24{width:11.948640px;}
._1e{width:13.296960px;}
._1f{width:14.552160px;}
._3d{width:15.774240px;}
._38{width:17.184960px;}
._9{width:18.273600px;}
._2a{width:21.072960px;}
._28{width:22.705920px;}
._25{width:23.716800px;}
._10{width:25.349760px;}
._4{width:26.360640px;}
._2c{width:28.149120px;}
._3a{width:29.393280px;}
._2f{width:30.792960px;}
._3{width:32.736960px;}
._20{width:34.603200px;}
._27{width:36.313920px;}
._42{width:37.480320px;}
._17{width:39.191040px;}
._33{width:40.746240px;}
._32{width:41.912640px;}
._34{width:42.923520px;}
._26{width:43.934400px;}
._16{width:45.100800px;}
._c{width:46.422720px;}
._1c{width:47.589120px;}
._2d{width:48.911040px;}
._43{width:49.999680px;}
._5{width:51.010560px;}
._45{width:53.654400px;}
._2b{width:55.442880px;}
._1b{width:56.531520px;}
._1a{width:57.697920px;}
._11{width:59.875200px;}
._44{width:61.663680px;}
._29{width:63.607680px;}
._3c{width:64.774080px;}
._3b{width:66.018240px;}
._15{width:67.262400px;}
._14{width:68.817600px;}
._4d{width:69.828480px;}
._8{width:70.994880px;}
._40{width:72.472320px;}
._41{width:73.638720px;}
._4b{width:75.738240px;}
._47{width:78.148800px;}
._6{width:79.548480px;}
._31{width:80.870400px;}
._30{width:81.881280px;}
._4c{width:83.280960px;}
._22{width:85.224960px;}
._21{width:86.235840px;}
._2e{width:87.946560px;}
._37{width:89.735040px;}
._4a{width:90.901440px;}
._48{width:96.500160px;}
._e{width:97.822080px;}
._46{width:98.832960px;}
._49{width:105.753600px;}
._3e{width:107.153280px;}
._3f{width:108.241920px;}
._36{width:111.974400px;}
._35{width:112.985280px;}
._39{width:118.584000px;}
._12{width:125.504640px;}
._f{width:188.956800px;}
._7{width:202.331520px;}
._b{width:212.751360px;}
._a{width:213.762240px;}
._13{width:218.505600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y19{bottom:4.140000px;}
.y1b{bottom:4.860000px;}
.y35{bottom:7.560000px;}
.y41{bottom:26.460000px;}
.y18{bottom:26.505000px;}
.y34{bottom:33.480000px;}
.y32{bottom:33.660000px;}
.y40{bottom:48.960000px;}
.y31{bottom:55.980000px;}
.yd{bottom:57.600000px;}
.y3f{bottom:71.280000px;}
.y30{bottom:78.300000px;}
.yc{bottom:81.756000px;}
.y2e{bottom:82.800000px;}
.y3e{bottom:93.780000px;}
.y2d{bottom:105.300000px;}
.yb{bottom:105.876000px;}
.y3d{bottom:116.100000px;}
.y2c{bottom:127.800000px;}
.ya{bottom:129.996000px;}
.y3c{bottom:138.600000px;}
.y2b{bottom:150.120000px;}
.y9{bottom:153.750000px;}
.y3b{bottom:161.100000px;}
.y2a{bottom:172.620000px;}
.y8{bottom:176.250000px;}
.y3a{bottom:183.420000px;}
.y29{bottom:194.940000px;}
.y7{bottom:198.570000px;}
.y39{bottom:205.920000px;}
.y28{bottom:217.440000px;}
.y6{bottom:221.070000px;}
.y38{bottom:228.240000px;}
.y27{bottom:239.760000px;}
.y37{bottom:250.770000px;}
.y61{bottom:252.390000px;}
.y70{bottom:255.630000px;}
.y26{bottom:262.290000px;}
.y36{bottom:273.090000px;}
.y60{bottom:278.130000px;}
.y6f{bottom:281.370000px;}
.y25{bottom:284.790000px;}
.y5f{bottom:303.870000px;}
.y24{bottom:307.110000px;}
.y6e{bottom:307.290000px;}
.y23{bottom:329.610000px;}
.y5e{bottom:329.835000px;}
.y6d{bottom:333.075000px;}
.y1c{bottom:348.015000px;}
.y22{bottom:351.930000px;}
.y5d{bottom:355.575000px;}
.y6c{bottom:358.815000px;}
.y21{bottom:374.430000px;}
.y5c{bottom:381.315000px;}
.y6b{bottom:384.555000px;}
.y20{bottom:396.750000px;}
.y5b{bottom:407.055000px;}
.y6a{bottom:410.475000px;}
.y1f{bottom:419.250000px;}
.y5a{bottom:432.975000px;}
.y69{bottom:436.215000px;}
.y1e{bottom:441.750000px;}
.y59{bottom:458.715000px;}
.y68{bottom:461.955000px;}
.y1d{bottom:464.070000px;}
.y58{bottom:484.455000px;}
.y67{bottom:487.695000px;}
.y57{bottom:510.195000px;}
.y66{bottom:513.615000px;}
.y56{bottom:536.115000px;}
.y65{bottom:539.355000px;}
.y55{bottom:561.855000px;}
.y64{bottom:562.035000px;}
.y54{bottom:587.595000px;}
.y63{bottom:589.215000px;}
.y62{bottom:611.925000px;}
.y53{bottom:613.365000px;}
.y52{bottom:639.285000px;}
.y33{bottom:640.185000px;}
.y51{bottom:665.025000px;}
.y50{bottom:690.765000px;}
.y2f{bottom:709.845000px;}
.y4f{bottom:716.685000px;}
.y4e{bottom:742.425000px;}
.y4d{bottom:768.165000px;}
.y4c{bottom:793.905000px;}
.y1a{bottom:807.225000px;}
.y4b{bottom:819.825000px;}
.y17{bottom:840.165000px;}
.y4a{bottom:845.565000px;}
.y49{bottom:871.350000px;}
.y48{bottom:897.090000px;}
.y16{bottom:898.170000px;}
.y15{bottom:920.670000px;}
.y47{bottom:923.010000px;}
.y14{bottom:942.990000px;}
.y46{bottom:948.750000px;}
.y13{bottom:965.490000px;}
.y45{bottom:974.490000px;}
.y12{bottom:987.810000px;}
.y44{bottom:1000.230000px;}
.y11{bottom:1010.310000px;}
.y43{bottom:1026.150000px;}
.y10{bottom:1032.630000px;}
.y42{bottom:1051.890000px;}
.yf{bottom:1055.130000px;}
.ye{bottom:1077.630000px;}
.y5{bottom:1100.310000px;}
.y4{bottom:1124.070000px;}
.y3{bottom:1146.960000px;}
.y2{bottom:1170.720000px;}
.y1{bottom:1193.040000px;}
.ha{height:32.220000px;}
.h9{height:53.856000px;}
.h7{height:54.523125px;}
.h6{height:56.611406px;}
.h5{height:59.066719px;}
.h2{height:62.261719px;}
.h8{height:64.091250px;}
.h3{height:67.242656px;}
.hd{height:69.660000px;}
.h4{height:72.846211px;}
.hc{height:96.660000px;}
.he{height:291.450000px;}
.hb{height:491.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:237.450000px;}
.w4{width:404.895000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.100000px;}
.x1a{left:12.420000px;}
.x1b{left:16.380000px;}
.x1c{left:20.340000px;}
.x19{left:23.040000px;}
.x18{left:25.914000px;}
.x12{left:29.340000px;}
.x11{left:33.294000px;}
.x1e{left:35.994000px;}
.xd{left:43.734000px;}
.x16{left:57.954000px;}
.x1d{left:64.254000px;}
.x14{left:67.854000px;}
.x17{left:69.294000px;}
.xe{left:78.654000px;}
.x15{left:79.914000px;}
.x1{left:84.959987px;}
.x2{left:87.119987px;}
.x1f{left:106.235987px;}
.xc{left:125.316000px;}
.x10{left:144.210000px;}
.x5{left:152.129987px;}
.x4{left:182.909987px;}
.xa{left:247.889987px;}
.x9{left:259.589987px;}
.xb{left:293.114987px;}
.x8{left:304.274987px;}
.xf{left:362.775000px;}
.x6{left:371.234987px;}
.x7{left:457.094987px;}
.x3{left:778.649987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.023040pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls9{letter-spacing:0.129707pt;}
.ls13{letter-spacing:0.183040pt;}
.lsb{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.663040pt;}
.ls21{letter-spacing:2.560000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls1a{letter-spacing:5.120000pt;}
.ls20{letter-spacing:5.760000pt;}
.ls8{letter-spacing:8.320000pt;}
.ls22{letter-spacing:8.960000pt;}
.ls18{letter-spacing:10.240000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls15{letter-spacing:11.520000pt;}
.ls7{letter-spacing:12.160000pt;}
.ls1b{letter-spacing:12.800000pt;}
.ls11{letter-spacing:14.080000pt;}
.ls16{letter-spacing:17.280000pt;}
.ls1d{letter-spacing:17.920000pt;}
.ls10{letter-spacing:19.840000pt;}
.ls14{letter-spacing:21.120000pt;}
.lsc{letter-spacing:26.240000pt;}
.ls19{letter-spacing:28.160000pt;}
.ls12{letter-spacing:30.720000pt;}
.lsf{letter-spacing:32.640000pt;}
.ls17{letter-spacing:38.400000pt;}
.lse{letter-spacing:40.320000pt;}
.lsa{letter-spacing:42.224640pt;}
.ls1c{letter-spacing:47.360000pt;}
.ws1{word-spacing:-19.215360pt;}
.ws0{word-spacing:-18.720000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.287680pt;}
.ws3{word-spacing:-17.280000pt;}
.ws2{word-spacing:-0.069120pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.105920pt;}
._2{width:2.340693pt;}
._1d{width:4.147200pt;}
._19{width:5.253120pt;}
._18{width:6.497280pt;}
._d{width:7.948800pt;}
._23{width:9.262080pt;}
._24{width:10.621013pt;}
._1e{width:11.819520pt;}
._1f{width:12.935253pt;}
._3d{width:14.021547pt;}
._38{width:15.275520pt;}
._9{width:16.243200pt;}
._2a{width:18.731520pt;}
._28{width:20.183040pt;}
._25{width:21.081600pt;}
._10{width:22.533120pt;}
._4{width:23.431680pt;}
._2c{width:25.021440pt;}
._3a{width:26.127360pt;}
._2f{width:27.371520pt;}
._3{width:29.099520pt;}
._20{width:30.758400pt;}
._27{width:32.279040pt;}
._42{width:33.315840pt;}
._17{width:34.836480pt;}
._33{width:36.218880pt;}
._32{width:37.255680pt;}
._34{width:38.154240pt;}
._26{width:39.052800pt;}
._16{width:40.089600pt;}
._c{width:41.264640pt;}
._1c{width:42.301440pt;}
._2d{width:43.476480pt;}
._43{width:44.444160pt;}
._5{width:45.342720pt;}
._45{width:47.692800pt;}
._2b{width:49.282560pt;}
._1b{width:50.250240pt;}
._1a{width:51.287040pt;}
._11{width:53.222400pt;}
._44{width:54.812160pt;}
._29{width:56.540160pt;}
._3c{width:57.576960pt;}
._3b{width:58.682880pt;}
._15{width:59.788800pt;}
._14{width:61.171200pt;}
._4d{width:62.069760pt;}
._8{width:63.106560pt;}
._40{width:64.419840pt;}
._41{width:65.456640pt;}
._4b{width:67.322880pt;}
._47{width:69.465600pt;}
._6{width:70.709760pt;}
._31{width:71.884800pt;}
._30{width:72.783360pt;}
._4c{width:74.027520pt;}
._22{width:75.755520pt;}
._21{width:76.654080pt;}
._2e{width:78.174720pt;}
._37{width:79.764480pt;}
._4a{width:80.801280pt;}
._48{width:85.777920pt;}
._e{width:86.952960pt;}
._46{width:87.851520pt;}
._49{width:94.003200pt;}
._3e{width:95.247360pt;}
._3f{width:96.215040pt;}
._36{width:99.532800pt;}
._35{width:100.431360pt;}
._39{width:105.408000pt;}
._12{width:111.559680pt;}
._f{width:167.961600pt;}
._7{width:179.850240pt;}
._b{width:189.112320pt;}
._a{width:190.010880pt;}
._13{width:194.227200pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:3.680000pt;}
.y1b{bottom:4.320000pt;}
.y35{bottom:6.720000pt;}
.y41{bottom:23.520000pt;}
.y18{bottom:23.560000pt;}
.y34{bottom:29.760000pt;}
.y32{bottom:29.920000pt;}
.y40{bottom:43.520000pt;}
.y31{bottom:49.760000pt;}
.yd{bottom:51.200000pt;}
.y3f{bottom:63.360000pt;}
.y30{bottom:69.600000pt;}
.yc{bottom:72.672000pt;}
.y2e{bottom:73.600000pt;}
.y3e{bottom:83.360000pt;}
.y2d{bottom:93.600000pt;}
.yb{bottom:94.112000pt;}
.y3d{bottom:103.200000pt;}
.y2c{bottom:113.600000pt;}
.ya{bottom:115.552000pt;}
.y3c{bottom:123.200000pt;}
.y2b{bottom:133.440000pt;}
.y9{bottom:136.666667pt;}
.y3b{bottom:143.200000pt;}
.y2a{bottom:153.440000pt;}
.y8{bottom:156.666667pt;}
.y3a{bottom:163.040000pt;}
.y29{bottom:173.280000pt;}
.y7{bottom:176.506667pt;}
.y39{bottom:183.040000pt;}
.y28{bottom:193.280000pt;}
.y6{bottom:196.506667pt;}
.y38{bottom:202.880000pt;}
.y27{bottom:213.120000pt;}
.y37{bottom:222.906667pt;}
.y61{bottom:224.346667pt;}
.y70{bottom:227.226667pt;}
.y26{bottom:233.146667pt;}
.y36{bottom:242.746667pt;}
.y60{bottom:247.226667pt;}
.y6f{bottom:250.106667pt;}
.y25{bottom:253.146667pt;}
.y5f{bottom:270.106667pt;}
.y24{bottom:272.986667pt;}
.y6e{bottom:273.146667pt;}
.y23{bottom:292.986667pt;}
.y5e{bottom:293.186667pt;}
.y6d{bottom:296.066667pt;}
.y1c{bottom:309.346667pt;}
.y22{bottom:312.826667pt;}
.y5d{bottom:316.066667pt;}
.y6c{bottom:318.946667pt;}
.y21{bottom:332.826667pt;}
.y5c{bottom:338.946667pt;}
.y6b{bottom:341.826667pt;}
.y20{bottom:352.666667pt;}
.y5b{bottom:361.826667pt;}
.y6a{bottom:364.866667pt;}
.y1f{bottom:372.666667pt;}
.y5a{bottom:384.866667pt;}
.y69{bottom:387.746667pt;}
.y1e{bottom:392.666667pt;}
.y59{bottom:407.746667pt;}
.y68{bottom:410.626667pt;}
.y1d{bottom:412.506667pt;}
.y58{bottom:430.626667pt;}
.y67{bottom:433.506667pt;}
.y57{bottom:453.506667pt;}
.y66{bottom:456.546667pt;}
.y56{bottom:476.546667pt;}
.y65{bottom:479.426667pt;}
.y55{bottom:499.426667pt;}
.y64{bottom:499.586667pt;}
.y54{bottom:522.306667pt;}
.y63{bottom:523.746667pt;}
.y62{bottom:543.933333pt;}
.y53{bottom:545.213333pt;}
.y52{bottom:568.253333pt;}
.y33{bottom:569.053333pt;}
.y51{bottom:591.133333pt;}
.y50{bottom:614.013333pt;}
.y2f{bottom:630.973333pt;}
.y4f{bottom:637.053333pt;}
.y4e{bottom:659.933333pt;}
.y4d{bottom:682.813333pt;}
.y4c{bottom:705.693333pt;}
.y1a{bottom:717.533333pt;}
.y4b{bottom:728.733333pt;}
.y17{bottom:746.813333pt;}
.y4a{bottom:751.613333pt;}
.y49{bottom:774.533333pt;}
.y48{bottom:797.413333pt;}
.y16{bottom:798.373333pt;}
.y15{bottom:818.373333pt;}
.y47{bottom:820.453333pt;}
.y14{bottom:838.213333pt;}
.y46{bottom:843.333333pt;}
.y13{bottom:858.213333pt;}
.y45{bottom:866.213333pt;}
.y12{bottom:878.053333pt;}
.y44{bottom:889.093333pt;}
.y11{bottom:898.053333pt;}
.y43{bottom:912.133333pt;}
.y10{bottom:917.893333pt;}
.y42{bottom:935.013333pt;}
.yf{bottom:937.893333pt;}
.ye{bottom:957.893333pt;}
.y5{bottom:978.053333pt;}
.y4{bottom:999.173333pt;}
.y3{bottom:1019.520000pt;}
.y2{bottom:1040.640000pt;}
.y1{bottom:1060.480000pt;}
.ha{height:28.640000pt;}
.h9{height:47.872000pt;}
.h7{height:48.465000pt;}
.h6{height:50.321250pt;}
.h5{height:52.503750pt;}
.h2{height:55.343750pt;}
.h8{height:56.970000pt;}
.h3{height:59.771250pt;}
.hd{height:61.920000pt;}
.h4{height:64.752187pt;}
.hc{height:85.920000pt;}
.he{height:259.066667pt;}
.hb{height:436.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:211.066667pt;}
.w4{width:359.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.200000pt;}
.x1a{left:11.040000pt;}
.x1b{left:14.560000pt;}
.x1c{left:18.080000pt;}
.x19{left:20.480000pt;}
.x18{left:23.034667pt;}
.x12{left:26.080000pt;}
.x11{left:29.594667pt;}
.x1e{left:31.994667pt;}
.xd{left:38.874667pt;}
.x16{left:51.514667pt;}
.x1d{left:57.114667pt;}
.x14{left:60.314667pt;}
.x17{left:61.594667pt;}
.xe{left:69.914667pt;}
.x15{left:71.034667pt;}
.x1{left:75.519988pt;}
.x2{left:77.439988pt;}
.x1f{left:94.431988pt;}
.xc{left:111.392000pt;}
.x10{left:128.186667pt;}
.x5{left:135.226655pt;}
.x4{left:162.586655pt;}
.xa{left:220.346655pt;}
.x9{left:230.746655pt;}
.xb{left:260.546655pt;}
.x8{left:270.466655pt;}
.xf{left:322.466667pt;}
.x6{left:329.986655pt;}
.x7{left:406.306655pt;}
.x3{left:692.133322pt;}
}




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