
    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_acd80ab234d5d2bf7ad670dc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3379751d55720b901c8be70a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d2be3cccf846b08a4a80daa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928711;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_e8ef8823b0e087b942658c20.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.768555;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_352003f8aae74124d95f4104.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aefa423000fdcec2515c3ea8.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_078e7c117edb1521de17af51.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_adac6a8da6186e679e56b8e4.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.181200px;}
.ls9{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.269400px;}
.ls3{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:3.060000px;}
.lsd{letter-spacing:3.780000px;}
.lsa{letter-spacing:24.660000px;}
.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;}
}
.ws3{word-spacing:-66.240000px;}
.wsb{word-spacing:-16.560000px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.482000px;}
.ws1{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.229520px;}
.wsa{word-spacing:-12.420000px;}
.ws9{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-4.835520px;}
._11{margin-left:-3.727200px;}
._5{margin-left:-2.479680px;}
._0{margin-left:-1.192320px;}
._1{width:1.254960px;}
._2{width:2.306640px;}
._a{width:3.680640px;}
._4{width:4.698000px;}
._3{width:6.600000px;}
._6{width:8.586000px;}
._b{width:10.260000px;}
._9{width:11.826000px;}
._12{width:13.442400px;}
._d{width:14.908320px;}
._14{width:17.619840px;}
._13{width:18.679680px;}
._e{width:19.872000px;}
._16{width:21.067920px;}
._f{width:22.256640px;}
._c{width:23.382000px;}
._15{width:24.650640px;}
._17{width:25.758000px;}
._8{width:28.138320px;}
._7{width:29.160000px;}
._18{width:34.312320px;}
._19{width:35.570880px;}
._1b{width:54.051840px;}
._1c{width:55.111680px;}
._1a{width:2137.432320px;}
.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;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:5.220000px;}
.y2{bottom:5.400000px;}
.y49{bottom:6.480000px;}
.y4a{bottom:10.260000px;}
.y5{bottom:21.810000px;}
.y33{bottom:23.040000px;}
.y8{bottom:23.790000px;}
.y32{bottom:40.860000px;}
.y4{bottom:41.610000px;}
.y7{bottom:43.590000px;}
.ya{bottom:56.340000px;}
.y31{bottom:58.680000px;}
.y3{bottom:61.950000px;}
.y6{bottom:63.390000px;}
.y30{bottom:76.680000px;}
.y2f{bottom:94.500000px;}
.y56{bottom:110.340000px;}
.y2e{bottom:112.365000px;}
.y89{bottom:114.840000px;}
.y55{bottom:124.020000px;}
.y54{bottom:128.520000px;}
.y2d{bottom:130.185000px;}
.y88{bottom:137.880000px;}
.y53{bottom:138.960000px;}
.y87{bottom:142.380000px;}
.y2c{bottom:148.005000px;}
.y86{bottom:151.740000px;}
.y9e{bottom:156.240000px;}
.y85{bottom:165.420000px;}
.y2b{bottom:165.825000px;}
.y51{bottom:168.300000px;}
.y84{bottom:169.920000px;}
.ya5{bottom:170.460000px;}
.y52{bottom:174.240000px;}
.y95{bottom:179.280000px;}
.y83{bottom:180.360000px;}
.ya3{bottom:183.780000px;}
.y2a{bottom:183.825000px;}
.y50{bottom:190.080000px;}
.ya4{bottom:192.240000px;}
.y94{bottom:193.140000px;}
.y93{bottom:197.640000px;}
.y29{bottom:201.645000px;}
.y92{bottom:206.820000px;}
.y9d{bottom:211.350000px;}
.y4f{bottom:211.890000px;}
.y82{bottom:214.050000px;}
.y28{bottom:219.465000px;}
.y91{bottom:220.710000px;}
.ya2{bottom:221.790000px;}
.y9c{bottom:225.210000px;}
.y4e{bottom:233.670000px;}
.y90{bottom:234.570000px;}
.y9b{bottom:235.470000px;}
.y81{bottom:236.010000px;}
.y27{bottom:237.285000px;}
.y8f{bottom:239.070000px;}
.y8e{bottom:249.330000px;}
.y26{bottom:255.105000px;}
.y4d{bottom:255.630000px;}
.y80{bottom:257.790000px;}
.y25{bottom:273.105000px;}
.y4c{bottom:277.410000px;}
.y7f{bottom:279.570000px;}
.y24{bottom:290.925000px;}
.y47{bottom:296.685000px;}
.y4b{bottom:299.190000px;}
.y7e{bottom:301.350000px;}
.y23{bottom:308.745000px;}
.y46{bottom:310.545000px;}
.y48{bottom:314.670000px;}
.y7d{bottom:323.310000px;}
.y45{bottom:324.225000px;}
.y22{bottom:326.565000px;}
.y44{bottom:338.115000px;}
.y13{bottom:342.750000px;}
.y21{bottom:344.415000px;}
.y7c{bottom:345.090000px;}
.y43{bottom:351.975000px;}
.y20{bottom:362.235000px;}
.y42{bottom:365.655000px;}
.y7b{bottom:366.870000px;}
.y41{bottom:379.515000px;}
.y1f{bottom:380.235000px;}
.y7a{bottom:388.650000px;}
.y40{bottom:393.375000px;}
.y8d{bottom:394.590000px;}
.y1e{bottom:398.055000px;}
.y3f{bottom:407.055000px;}
.y79{bottom:410.430000px;}
.y1d{bottom:415.875000px;}
.y9a{bottom:416.370000px;}
.y3e{bottom:421.275000px;}
.y78{bottom:432.390000px;}
.y1c{bottom:433.695000px;}
.y3d{bottom:436.755000px;}
.y1b{bottom:451.515000px;}
.y3c{bottom:452.415000px;}
.y77{bottom:454.215000px;}
.y3b{bottom:467.895000px;}
.y1a{bottom:469.335000px;}
.y76{bottom:475.995000px;}
.y3a{bottom:483.375000px;}
.y19{bottom:487.335000px;}
.y75{bottom:497.775000px;}
.y39{bottom:498.855000px;}
.ya1{bottom:503.715000px;}
.y18{bottom:505.155000px;}
.y38{bottom:514.515000px;}
.y74{bottom:519.735000px;}
.y17{bottom:522.975000px;}
.y8c{bottom:525.675000px;}
.y37{bottom:529.995000px;}
.y16{bottom:540.795000px;}
.y73{bottom:541.515000px;}
.y36{bottom:545.475000px;}
.y15{bottom:558.615000px;}
.y35{bottom:560.955000px;}
.y72{bottom:563.295000px;}
.y14{bottom:576.660000px;}
.y71{bottom:585.075000px;}
.y70{bottom:606.855000px;}
.y6f{bottom:628.815000px;}
.y99{bottom:634.755000px;}
.y6e{bottom:650.595000px;}
.y8b{bottom:656.535000px;}
.y6c{bottom:672.375000px;}
.y6d{bottom:678.315000px;}
.y6b{bottom:694.185000px;}
.ya0{bottom:700.125000px;}
.y6a{bottom:716.145000px;}
.y69{bottom:737.925000px;}
.y68{bottom:759.705000px;}
.y98{bottom:765.645000px;}
.y67{bottom:781.485000px;}
.y8a{bottom:787.425000px;}
.y66{bottom:803.265000px;}
.y64{bottom:825.225000px;}
.y65{bottom:831.165000px;}
.y63{bottom:847.005000px;}
.y62{bottom:868.785000px;}
.y61{bottom:890.565000px;}
.y60{bottom:912.525000px;}
.y97{bottom:918.510000px;}
.y5f{bottom:934.350000px;}
.y12{bottom:937.770000px;}
.y9f{bottom:940.290000px;}
.y5e{bottom:956.130000px;}
.y11{bottom:957.570000px;}
.y10{bottom:977.370000px;}
.y5c{bottom:977.910000px;}
.y5d{bottom:983.850000px;}
.yf{bottom:997.170000px;}
.y5b{bottom:999.690000px;}
.ye{bottom:1017.690000px;}
.y5a{bottom:1021.650000px;}
.yd{bottom:1039.470000px;}
.y59{bottom:1043.430000px;}
.yc{bottom:1061.250000px;}
.y58{bottom:1065.210000px;}
.y96{bottom:1071.150000px;}
.yb{bottom:1084.290000px;}
.y57{bottom:1086.990000px;}
.y9{bottom:1108.770000px;}
.y1{bottom:1131.090000px;}
.h15{height:21.114844px;}
.h12{height:28.080000px;}
.h14{height:29.158594px;}
.h11{height:33.683203px;}
.hf{height:34.036523px;}
.h7{height:36.250664px;}
.hd{height:37.705078px;}
.hc{height:38.100586px;}
.h10{height:39.760312px;}
.ha{height:41.726953px;}
.h3{height:42.164648px;}
.he{height:44.507812px;}
.h13{height:46.251562px;}
.h4{height:46.736719px;}
.h6{height:48.256875px;}
.h5{height:49.255313px;}
.h9{height:53.224453px;}
.h16{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.hb{height:589.245000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:72.000000px;}
.w7{width:224.130000px;}
.w4{width:255.135000px;}
.w8{width:283.530000px;}
.w3{width:374.655000px;}
.w9{width:391.575000px;}
.w6{width:459.075000px;}
.wa{width:893.159973px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x12{left:29.700000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x18{left:111.815987px;}
.x30{left:115.595987px;}
.xc{left:116.675987px;}
.x7{left:131.805000px;}
.x39{left:140.075987px;}
.x14{left:162.029987px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x21{left:187.769973px;}
.xa{left:191.189987px;}
.xf{left:193.529987px;}
.x28{left:195.149973px;}
.x29{left:205.589987px;}
.x10{left:219.449987px;}
.xe{left:237.269987px;}
.x1b{left:250.409973px;}
.x1c{left:255.629987px;}
.x24{left:277.094973px;}
.x25{left:282.314987px;}
.x26{left:292.214973px;}
.x27{left:297.434987px;}
.x17{left:324.074987px;}
.x2c{left:329.474973px;}
.x2d{left:339.914987px;}
.x15{left:343.874973px;}
.x16{left:349.094987px;}
.x37{left:363.854973px;}
.x38{left:374.294987px;}
.x13{left:391.575000px;}
.x2a{left:408.674973px;}
.xd{left:415.694987px;}
.x2b{left:419.114987px;}
.xb{left:446.684987px;}
.x1f{left:471.884973px;}
.x9{left:472.964987px;}
.x20{left:477.104987px;}
.x5{left:554.685000px;}
.x11{left:567.105000px;}
.x35{left:602.204973px;}
.x36{left:612.644987px;}
.x1d{left:660.929973px;}
.x1e{left:666.149987px;}
.x2e{left:703.589973px;}
.x2f{left:714.029987px;}
.x31{left:716.189973px;}
.x19{left:719.429973px;}
.x1a{left:724.649987px;}
.x32{left:726.629987px;}
.x22{left:746.789973px;}
.x23{left:752.009987px;}
.x33{left:774.869973px;}
.x34{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.239467pt;}
.ls3{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:2.720000pt;}
.lsd{letter-spacing:3.360000pt;}
.lsa{letter-spacing:21.920000pt;}
.ws3{word-spacing:-58.880000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.759573pt;}
.wsa{word-spacing:-11.040000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-4.298240pt;}
._11{margin-left:-3.313067pt;}
._5{margin-left:-2.204160pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.115520pt;}
._2{width:2.050347pt;}
._a{width:3.271680pt;}
._4{width:4.176000pt;}
._3{width:5.866667pt;}
._6{width:7.632000pt;}
._b{width:9.120000pt;}
._9{width:10.512000pt;}
._12{width:11.948800pt;}
._d{width:13.251840pt;}
._14{width:15.662080pt;}
._13{width:16.604160pt;}
._e{width:17.664000pt;}
._16{width:18.727040pt;}
._f{width:19.783680pt;}
._c{width:20.784000pt;}
._15{width:21.911680pt;}
._17{width:22.896000pt;}
._8{width:25.011840pt;}
._7{width:25.920000pt;}
._18{width:30.499840pt;}
._19{width:31.618560pt;}
._1b{width:48.046080pt;}
._1c{width:48.988160pt;}
._1a{width:1899.939840pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:4.640000pt;}
.y2{bottom:4.800000pt;}
.y49{bottom:5.760000pt;}
.y4a{bottom:9.120000pt;}
.y5{bottom:19.386667pt;}
.y33{bottom:20.480000pt;}
.y8{bottom:21.146667pt;}
.y32{bottom:36.320000pt;}
.y4{bottom:36.986667pt;}
.y7{bottom:38.746667pt;}
.ya{bottom:50.080000pt;}
.y31{bottom:52.160000pt;}
.y3{bottom:55.066667pt;}
.y6{bottom:56.346667pt;}
.y30{bottom:68.160000pt;}
.y2f{bottom:84.000000pt;}
.y56{bottom:98.080000pt;}
.y2e{bottom:99.880000pt;}
.y89{bottom:102.080000pt;}
.y55{bottom:110.240000pt;}
.y54{bottom:114.240000pt;}
.y2d{bottom:115.720000pt;}
.y88{bottom:122.560000pt;}
.y53{bottom:123.520000pt;}
.y87{bottom:126.560000pt;}
.y2c{bottom:131.560000pt;}
.y86{bottom:134.880000pt;}
.y9e{bottom:138.880000pt;}
.y85{bottom:147.040000pt;}
.y2b{bottom:147.400000pt;}
.y51{bottom:149.600000pt;}
.y84{bottom:151.040000pt;}
.ya5{bottom:151.520000pt;}
.y52{bottom:154.880000pt;}
.y95{bottom:159.360000pt;}
.y83{bottom:160.320000pt;}
.ya3{bottom:163.360000pt;}
.y2a{bottom:163.400000pt;}
.y50{bottom:168.960000pt;}
.ya4{bottom:170.880000pt;}
.y94{bottom:171.680000pt;}
.y93{bottom:175.680000pt;}
.y29{bottom:179.240000pt;}
.y92{bottom:183.840000pt;}
.y9d{bottom:187.866667pt;}
.y4f{bottom:188.346667pt;}
.y82{bottom:190.266667pt;}
.y28{bottom:195.080000pt;}
.y91{bottom:196.186667pt;}
.ya2{bottom:197.146667pt;}
.y9c{bottom:200.186667pt;}
.y4e{bottom:207.706667pt;}
.y90{bottom:208.506667pt;}
.y9b{bottom:209.306667pt;}
.y81{bottom:209.786667pt;}
.y27{bottom:210.920000pt;}
.y8f{bottom:212.506667pt;}
.y8e{bottom:221.626667pt;}
.y26{bottom:226.760000pt;}
.y4d{bottom:227.226667pt;}
.y80{bottom:229.146667pt;}
.y25{bottom:242.760000pt;}
.y4c{bottom:246.586667pt;}
.y7f{bottom:248.506667pt;}
.y24{bottom:258.600000pt;}
.y47{bottom:263.720000pt;}
.y4b{bottom:265.946667pt;}
.y7e{bottom:267.866667pt;}
.y23{bottom:274.440000pt;}
.y46{bottom:276.040000pt;}
.y48{bottom:279.706667pt;}
.y7d{bottom:287.386667pt;}
.y45{bottom:288.200000pt;}
.y22{bottom:290.280000pt;}
.y44{bottom:300.546667pt;}
.y13{bottom:304.666667pt;}
.y21{bottom:306.146667pt;}
.y7c{bottom:306.746667pt;}
.y43{bottom:312.866667pt;}
.y20{bottom:321.986667pt;}
.y42{bottom:325.026667pt;}
.y7b{bottom:326.106667pt;}
.y41{bottom:337.346667pt;}
.y1f{bottom:337.986667pt;}
.y7a{bottom:345.466667pt;}
.y40{bottom:349.666667pt;}
.y8d{bottom:350.746667pt;}
.y1e{bottom:353.826667pt;}
.y3f{bottom:361.826667pt;}
.y79{bottom:364.826667pt;}
.y1d{bottom:369.666667pt;}
.y9a{bottom:370.106667pt;}
.y3e{bottom:374.466667pt;}
.y78{bottom:384.346667pt;}
.y1c{bottom:385.506667pt;}
.y3d{bottom:388.226667pt;}
.y1b{bottom:401.346667pt;}
.y3c{bottom:402.146667pt;}
.y77{bottom:403.746667pt;}
.y3b{bottom:415.906667pt;}
.y1a{bottom:417.186667pt;}
.y76{bottom:423.106667pt;}
.y3a{bottom:429.666667pt;}
.y19{bottom:433.186667pt;}
.y75{bottom:442.466667pt;}
.y39{bottom:443.426667pt;}
.ya1{bottom:447.746667pt;}
.y18{bottom:449.026667pt;}
.y38{bottom:457.346667pt;}
.y74{bottom:461.986667pt;}
.y17{bottom:464.866667pt;}
.y8c{bottom:467.266667pt;}
.y37{bottom:471.106667pt;}
.y16{bottom:480.706667pt;}
.y73{bottom:481.346667pt;}
.y36{bottom:484.866667pt;}
.y15{bottom:496.546667pt;}
.y35{bottom:498.626667pt;}
.y72{bottom:500.706667pt;}
.y14{bottom:512.586667pt;}
.y71{bottom:520.066667pt;}
.y70{bottom:539.426667pt;}
.y6f{bottom:558.946667pt;}
.y99{bottom:564.226667pt;}
.y6e{bottom:578.306667pt;}
.y8b{bottom:583.586667pt;}
.y6c{bottom:597.666667pt;}
.y6d{bottom:602.946667pt;}
.y6b{bottom:617.053333pt;}
.ya0{bottom:622.333333pt;}
.y6a{bottom:636.573333pt;}
.y69{bottom:655.933333pt;}
.y68{bottom:675.293333pt;}
.y98{bottom:680.573333pt;}
.y67{bottom:694.653333pt;}
.y8a{bottom:699.933333pt;}
.y66{bottom:714.013333pt;}
.y64{bottom:733.533333pt;}
.y65{bottom:738.813333pt;}
.y63{bottom:752.893333pt;}
.y62{bottom:772.253333pt;}
.y61{bottom:791.613333pt;}
.y60{bottom:811.133333pt;}
.y97{bottom:816.453333pt;}
.y5f{bottom:830.533333pt;}
.y12{bottom:833.573333pt;}
.y9f{bottom:835.813333pt;}
.y5e{bottom:849.893333pt;}
.y11{bottom:851.173333pt;}
.y10{bottom:868.773333pt;}
.y5c{bottom:869.253333pt;}
.y5d{bottom:874.533333pt;}
.yf{bottom:886.373333pt;}
.y5b{bottom:888.613333pt;}
.ye{bottom:904.613333pt;}
.y5a{bottom:908.133333pt;}
.yd{bottom:923.973333pt;}
.y59{bottom:927.493333pt;}
.yc{bottom:943.333333pt;}
.y58{bottom:946.853333pt;}
.y96{bottom:952.133333pt;}
.yb{bottom:963.813333pt;}
.y57{bottom:966.213333pt;}
.y9{bottom:985.573333pt;}
.y1{bottom:1005.413333pt;}
.h15{height:18.768750pt;}
.h12{height:24.960000pt;}
.h14{height:25.918750pt;}
.h11{height:29.940625pt;}
.hf{height:30.254687pt;}
.h7{height:32.222812pt;}
.hd{height:33.515625pt;}
.hc{height:33.867188pt;}
.h10{height:35.342500pt;}
.ha{height:37.090625pt;}
.h3{height:37.479688pt;}
.he{height:39.562500pt;}
.h13{height:41.112500pt;}
.h4{height:41.543750pt;}
.h6{height:42.895000pt;}
.h5{height:43.782500pt;}
.h9{height:47.310625pt;}
.h16{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.hb{height:523.773333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:64.000000pt;}
.w7{width:199.226667pt;}
.w4{width:226.786667pt;}
.w8{width:252.026667pt;}
.w3{width:333.026667pt;}
.w9{width:348.066667pt;}
.w6{width:408.066667pt;}
.wa{width:793.919976pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x12{left:26.400000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x18{left:99.391988pt;}
.x30{left:102.751988pt;}
.xc{left:103.711988pt;}
.x7{left:117.160000pt;}
.x39{left:124.511988pt;}
.x14{left:144.026655pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x21{left:166.906643pt;}
.xa{left:169.946655pt;}
.xf{left:172.026655pt;}
.x28{left:173.466643pt;}
.x29{left:182.746655pt;}
.x10{left:195.066655pt;}
.xe{left:210.906655pt;}
.x1b{left:222.586643pt;}
.x1c{left:227.226655pt;}
.x24{left:246.306643pt;}
.x25{left:250.946655pt;}
.x26{left:259.746643pt;}
.x27{left:264.386655pt;}
.x17{left:288.066655pt;}
.x2c{left:292.866643pt;}
.x2d{left:302.146655pt;}
.x15{left:305.666643pt;}
.x16{left:310.306655pt;}
.x37{left:323.426643pt;}
.x38{left:332.706655pt;}
.x13{left:348.066667pt;}
.x2a{left:363.266643pt;}
.xd{left:369.506655pt;}
.x2b{left:372.546655pt;}
.xb{left:397.053322pt;}
.x1f{left:419.453310pt;}
.x9{left:420.413322pt;}
.x20{left:424.093322pt;}
.x5{left:493.053333pt;}
.x11{left:504.093333pt;}
.x35{left:535.293310pt;}
.x36{left:544.573322pt;}
.x1d{left:587.493310pt;}
.x1e{left:592.133322pt;}
.x2e{left:625.413310pt;}
.x2f{left:634.693322pt;}
.x31{left:636.613310pt;}
.x19{left:639.493310pt;}
.x1a{left:644.133322pt;}
.x32{left:645.893322pt;}
.x22{left:663.813310pt;}
.x23{left:668.453322pt;}
.x33{left:688.773310pt;}
.x34{left:698.053322pt;}
}




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