
    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_19066e114a05b8c593f21459.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_db9c9323cc32625f15bcafe7.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_9785a54ea735ac26b798c448.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_855c496c0f62c1493b22a83b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969238;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b86b4ba2545019c21e4ea97d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_1ae5bed830ea4ffd5b086904.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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;}
.ls7{letter-spacing:-0.259800px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:21.546720px;}
.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:-15.300000px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.680200px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-8.197440px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._e{width:2.802480px;}
._2{width:4.245600px;}
._18{width:5.294640px;}
._7{width:6.311520px;}
._6{width:7.470000px;}
._b{width:8.822160px;}
._9{width:10.271040px;}
._8{width:11.473920px;}
._14{width:12.489840px;}
._f{width:13.498080px;}
._d{width:16.552560px;}
._c{width:17.629200px;}
._11{width:18.861120px;}
._13{width:19.959840px;}
._15{width:20.975760px;}
._10{width:22.895760px;}
._a{width:24.015840px;}
._16{width:25.091520px;}
._17{width:26.302080px;}
._1a{width:27.668880px;}
._19{width:29.342160px;}
._1b{width:34.294560px;}
._5{width:85.656000px;}
._12{width:155.496000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:16.560000px;}
.y78{bottom:16.785000px;}
.y65{bottom:18.540000px;}
.yb{bottom:36.720000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y9c{bottom:119.016000px;}
.y73{bottom:119.196000px;}
.yb4{bottom:120.456000px;}
.y58{bottom:133.236000px;}
.y9b{bottom:136.116000px;}
.y72{bottom:136.476000px;}
.yb3{bottom:137.736000px;}
.y3d{bottom:150.510000px;}
.y9a{bottom:153.390000px;}
.y71{bottom:153.750000px;}
.yb2{bottom:155.010000px;}
.y3c{bottom:167.790000px;}
.y99{bottom:170.670000px;}
.y70{bottom:171.030000px;}
.yb1{bottom:172.290000px;}
.y57{bottom:184.890000px;}
.y3b{bottom:185.070000px;}
.y98{bottom:187.950000px;}
.y6f{bottom:188.310000px;}
.yb0{bottom:189.570000px;}
.y3a{bottom:202.170000px;}
.y97{bottom:205.230000px;}
.y6e{bottom:205.590000px;}
.yaf{bottom:206.670000px;}
.y39{bottom:219.450000px;}
.y96{bottom:222.510000px;}
.y6d{bottom:222.690000px;}
.yae{bottom:223.950000px;}
.y38{bottom:236.730000px;}
.y95{bottom:239.610000px;}
.y6c{bottom:239.970000px;}
.yad{bottom:241.230000px;}
.y37{bottom:254.010000px;}
.y94{bottom:256.890000px;}
.y6b{bottom:257.250000px;}
.yac{bottom:258.510000px;}
.y56{bottom:268.050000px;}
.y36{bottom:271.290000px;}
.y93{bottom:274.170000px;}
.y6a{bottom:274.530000px;}
.yab{bottom:275.790000px;}
.y35{bottom:288.570000px;}
.y92{bottom:291.450000px;}
.y69{bottom:291.810000px;}
.yaa{bottom:292.890000px;}
.y34{bottom:305.670000px;}
.y91{bottom:308.730000px;}
.y68{bottom:309.090000px;}
.ya9{bottom:310.170000px;}
.y33{bottom:322.950000px;}
.y90{bottom:326.010000px;}
.y67{bottom:326.190000px;}
.ya8{bottom:327.450000px;}
.y32{bottom:340.275000px;}
.y8f{bottom:340.815000px;}
.y66{bottom:343.515000px;}
.ya7{bottom:344.775000px;}
.y31{bottom:357.555000px;}
.y64{bottom:358.275000px;}
.ya6{bottom:362.055000px;}
.y8e{bottom:372.135000px;}
.y30{bottom:374.835000px;}
.ya5{bottom:379.335000px;}
.y63{bottom:391.755000px;}
.y2f{bottom:392.115000px;}
.ya4{bottom:396.435000px;}
.y8d{bottom:403.455000px;}
.y2e{bottom:409.215000px;}
.ya3{bottom:413.715000px;}
.y62{bottom:423.075000px;}
.y2d{bottom:426.495000px;}
.ya2{bottom:430.995000px;}
.y8c{bottom:434.775000px;}
.y2c{bottom:447.735000px;}
.ya1{bottom:448.275000px;}
.y61{bottom:454.395000px;}
.ya0{bottom:465.555000px;}
.y2b{bottom:466.275000px;}
.y9f{bottom:482.835000px;}
.y2a{bottom:484.995000px;}
.y60{bottom:485.715000px;}
.y9e{bottom:499.935000px;}
.y8b{bottom:500.835000px;}
.y29{bottom:503.535000px;}
.y5e{bottom:517.215000px;}
.y8a{bottom:518.115000px;}
.y28{bottom:522.255000px;}
.y9d{bottom:534.495000px;}
.y89{bottom:535.215000px;}
.y27{bottom:540.795000px;}
.y5d{bottom:551.775000px;}
.y88{bottom:552.495000px;}
.y26{bottom:559.515000px;}
.y5c{bottom:569.055000px;}
.y87{bottom:569.775000px;}
.y25{bottom:578.055000px;}
.y5b{bottom:586.155000px;}
.y86{bottom:587.055000px;}
.y24{bottom:596.595000px;}
.y5a{bottom:603.435000px;}
.y85{bottom:604.365000px;}
.y23{bottom:615.345000px;}
.y59{bottom:620.745000px;}
.y84{bottom:621.645000px;}
.y22{bottom:633.885000px;}
.y55{bottom:638.025000px;}
.y83{bottom:638.745000px;}
.y21{bottom:652.605000px;}
.y54{bottom:655.305000px;}
.y82{bottom:656.025000px;}
.y20{bottom:671.145000px;}
.y53{bottom:672.585000px;}
.y81{bottom:673.305000px;}
.y1f{bottom:689.685000px;}
.y80{bottom:690.585000px;}
.y52{bottom:706.965000px;}
.y7f{bottom:707.865000px;}
.y1e{bottom:708.405000px;}
.y51{bottom:724.245000px;}
.y7e{bottom:725.145000px;}
.y1d{bottom:726.945000px;}
.y50{bottom:741.525000px;}
.y7d{bottom:742.245000px;}
.y1c{bottom:745.665000px;}
.y4f{bottom:758.805000px;}
.y7c{bottom:759.525000px;}
.y1b{bottom:764.205000px;}
.y4e{bottom:776.085000px;}
.y7b{bottom:776.805000px;}
.y1a{bottom:782.745000px;}
.y7a{bottom:791.565000px;}
.y4d{bottom:793.185000px;}
.y19{bottom:801.465000px;}
.y4c{bottom:810.465000px;}
.y18{bottom:820.005000px;}
.y79{bottom:822.885000px;}
.y4b{bottom:827.745000px;}
.y17{bottom:838.725000px;}
.y4a{bottom:845.025000px;}
.y77{bottom:854.205000px;}
.y16{bottom:857.085000px;}
.y49{bottom:862.305000px;}
.y15{bottom:874.770000px;}
.y48{bottom:879.630000px;}
.y76{bottom:885.750000px;}
.y14{bottom:893.850000px;}
.y47{bottom:896.730000px;}
.y13{bottom:912.750000px;}
.y46{bottom:914.010000px;}
.y75{bottom:917.070000px;}
.y45{bottom:931.290000px;}
.y12{bottom:931.650000px;}
.y74{bottom:948.390000px;}
.y44{bottom:948.570000px;}
.y11{bottom:950.730000px;}
.y43{bottom:965.850000px;}
.y10{bottom:969.630000px;}
.y42{bottom:982.950000px;}
.yf{bottom:988.710000px;}
.y41{bottom:1000.230000px;}
.ye{bottom:1007.970000px;}
.y40{bottom:1017.510000px;}
.yd{bottom:1028.670000px;}
.y3f{bottom:1034.790000px;}
.yc{bottom:1049.370000px;}
.y3e{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.ha{height:30.600000px;}
.hc{height:30.816000px;}
.hb{height:32.580000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.he{height:43.506914px;}
.h9{height:45.024258px;}
.hd{height:45.461953px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.h4{height:50.800781px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:104.616000px;}
.w4{width:104.760000px;}
.wc{width:104.796000px;}
.wd{width:113.760000px;}
.w9{width:113.940000px;}
.w5{width:113.976000px;}
.w6{width:160.410000px;}
.wa{width:160.590000px;}
.wb{width:231.330000px;}
.w3{width:250.590000px;}
.w7{width:293.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.200000px;}
.x1c{left:37.650000px;}
.x1e{left:39.450000px;}
.x20{left:42.480000px;}
.x1b{left:45.000000px;}
.x1d{left:57.240000px;}
.x2c{left:61.920000px;}
.x1f{left:68.400000px;}
.x28{left:85.494000px;}
.x16{left:95.394000px;}
.x15{left:100.836000px;}
.x1{left:108.035987px;}
.x22{left:116.814000px;}
.xe{left:119.735987px;}
.x2{left:123.155987px;}
.x2e{left:135.035987px;}
.x27{left:140.256000px;}
.x7{left:149.975987px;}
.x8{left:152.129987px;}
.x4{left:157.169987px;}
.x2f{left:162.029987px;}
.x2d{left:205.049987px;}
.x14{left:264.809987px;}
.x9{left:266.609987px;}
.x26{left:292.394987px;}
.x21{left:294.374987px;}
.x10{left:342.434987px;}
.x13{left:346.394987px;}
.x17{left:352.155000px;}
.x29{left:372.315000px;}
.xc{left:373.934987px;}
.xd{left:377.534987px;}
.xb{left:379.334987px;}
.x12{left:384.374987px;}
.xf{left:386.534987px;}
.x23{left:395.175000px;}
.x6{left:396.434987px;}
.x5{left:412.274987px;}
.xa{left:446.474987px;}
.x19{left:457.635000px;}
.x2a{left:477.825000px;}
.x24{left:500.505000px;}
.x3{left:518.504987px;}
.x1a{left:572.325000px;}
.x2b{left:592.305000px;}
.x25{left:615.165000px;}
.x11{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:19.152640pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-7.286613pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._e{width:2.491093pt;}
._2{width:3.773867pt;}
._18{width:4.706347pt;}
._7{width:5.610240pt;}
._6{width:6.640000pt;}
._b{width:7.841920pt;}
._9{width:9.129813pt;}
._8{width:10.199040pt;}
._14{width:11.102080pt;}
._f{width:11.998293pt;}
._d{width:14.713387pt;}
._c{width:15.670400pt;}
._11{width:16.765440pt;}
._13{width:17.742080pt;}
._15{width:18.645120pt;}
._10{width:20.351787pt;}
._a{width:21.347413pt;}
._16{width:22.303573pt;}
._17{width:23.379627pt;}
._1a{width:24.594560pt;}
._19{width:26.081920pt;}
._1b{width:30.484053pt;}
._5{width:76.138667pt;}
._12{width:138.218667pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:14.720000pt;}
.y78{bottom:14.920000pt;}
.y65{bottom:16.480000pt;}
.yb{bottom:32.640000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y9c{bottom:105.792000pt;}
.y73{bottom:105.952000pt;}
.yb4{bottom:107.072000pt;}
.y58{bottom:118.432000pt;}
.y9b{bottom:120.992000pt;}
.y72{bottom:121.312000pt;}
.yb3{bottom:122.432000pt;}
.y3d{bottom:133.786667pt;}
.y9a{bottom:136.346667pt;}
.y71{bottom:136.666667pt;}
.yb2{bottom:137.786667pt;}
.y3c{bottom:149.146667pt;}
.y99{bottom:151.706667pt;}
.y70{bottom:152.026667pt;}
.yb1{bottom:153.146667pt;}
.y57{bottom:164.346667pt;}
.y3b{bottom:164.506667pt;}
.y98{bottom:167.066667pt;}
.y6f{bottom:167.386667pt;}
.yb0{bottom:168.506667pt;}
.y3a{bottom:179.706667pt;}
.y97{bottom:182.426667pt;}
.y6e{bottom:182.746667pt;}
.yaf{bottom:183.706667pt;}
.y39{bottom:195.066667pt;}
.y96{bottom:197.786667pt;}
.y6d{bottom:197.946667pt;}
.yae{bottom:199.066667pt;}
.y38{bottom:210.426667pt;}
.y95{bottom:212.986667pt;}
.y6c{bottom:213.306667pt;}
.yad{bottom:214.426667pt;}
.y37{bottom:225.786667pt;}
.y94{bottom:228.346667pt;}
.y6b{bottom:228.666667pt;}
.yac{bottom:229.786667pt;}
.y56{bottom:238.266667pt;}
.y36{bottom:241.146667pt;}
.y93{bottom:243.706667pt;}
.y6a{bottom:244.026667pt;}
.yab{bottom:245.146667pt;}
.y35{bottom:256.506667pt;}
.y92{bottom:259.066667pt;}
.y69{bottom:259.386667pt;}
.yaa{bottom:260.346667pt;}
.y34{bottom:271.706667pt;}
.y91{bottom:274.426667pt;}
.y68{bottom:274.746667pt;}
.ya9{bottom:275.706667pt;}
.y33{bottom:287.066667pt;}
.y90{bottom:289.786667pt;}
.y67{bottom:289.946667pt;}
.ya8{bottom:291.066667pt;}
.y32{bottom:302.466667pt;}
.y8f{bottom:302.946667pt;}
.y66{bottom:305.346667pt;}
.ya7{bottom:306.466667pt;}
.y31{bottom:317.826667pt;}
.y64{bottom:318.466667pt;}
.ya6{bottom:321.826667pt;}
.y8e{bottom:330.786667pt;}
.y30{bottom:333.186667pt;}
.ya5{bottom:337.186667pt;}
.y63{bottom:348.226667pt;}
.y2f{bottom:348.546667pt;}
.ya4{bottom:352.386667pt;}
.y8d{bottom:358.626667pt;}
.y2e{bottom:363.746667pt;}
.ya3{bottom:367.746667pt;}
.y62{bottom:376.066667pt;}
.y2d{bottom:379.106667pt;}
.ya2{bottom:383.106667pt;}
.y8c{bottom:386.466667pt;}
.y2c{bottom:397.986667pt;}
.ya1{bottom:398.466667pt;}
.y61{bottom:403.906667pt;}
.ya0{bottom:413.826667pt;}
.y2b{bottom:414.466667pt;}
.y9f{bottom:429.186667pt;}
.y2a{bottom:431.106667pt;}
.y60{bottom:431.746667pt;}
.y9e{bottom:444.386667pt;}
.y8b{bottom:445.186667pt;}
.y29{bottom:447.586667pt;}
.y5e{bottom:459.746667pt;}
.y8a{bottom:460.546667pt;}
.y28{bottom:464.226667pt;}
.y9d{bottom:475.106667pt;}
.y89{bottom:475.746667pt;}
.y27{bottom:480.706667pt;}
.y5d{bottom:490.466667pt;}
.y88{bottom:491.106667pt;}
.y26{bottom:497.346667pt;}
.y5c{bottom:505.826667pt;}
.y87{bottom:506.466667pt;}
.y25{bottom:513.826667pt;}
.y5b{bottom:521.026667pt;}
.y86{bottom:521.826667pt;}
.y24{bottom:530.306667pt;}
.y5a{bottom:536.386667pt;}
.y85{bottom:537.213333pt;}
.y23{bottom:546.973333pt;}
.y59{bottom:551.773333pt;}
.y84{bottom:552.573333pt;}
.y22{bottom:563.453333pt;}
.y55{bottom:567.133333pt;}
.y83{bottom:567.773333pt;}
.y21{bottom:580.093333pt;}
.y54{bottom:582.493333pt;}
.y82{bottom:583.133333pt;}
.y20{bottom:596.573333pt;}
.y53{bottom:597.853333pt;}
.y81{bottom:598.493333pt;}
.y1f{bottom:613.053333pt;}
.y80{bottom:613.853333pt;}
.y52{bottom:628.413333pt;}
.y7f{bottom:629.213333pt;}
.y1e{bottom:629.693333pt;}
.y51{bottom:643.773333pt;}
.y7e{bottom:644.573333pt;}
.y1d{bottom:646.173333pt;}
.y50{bottom:659.133333pt;}
.y7d{bottom:659.773333pt;}
.y1c{bottom:662.813333pt;}
.y4f{bottom:674.493333pt;}
.y7c{bottom:675.133333pt;}
.y1b{bottom:679.293333pt;}
.y4e{bottom:689.853333pt;}
.y7b{bottom:690.493333pt;}
.y1a{bottom:695.773333pt;}
.y7a{bottom:703.613333pt;}
.y4d{bottom:705.053333pt;}
.y19{bottom:712.413333pt;}
.y4c{bottom:720.413333pt;}
.y18{bottom:728.893333pt;}
.y79{bottom:731.453333pt;}
.y4b{bottom:735.773333pt;}
.y17{bottom:745.533333pt;}
.y4a{bottom:751.133333pt;}
.y77{bottom:759.293333pt;}
.y16{bottom:761.853333pt;}
.y49{bottom:766.493333pt;}
.y15{bottom:777.573333pt;}
.y48{bottom:781.893333pt;}
.y76{bottom:787.333333pt;}
.y14{bottom:794.533333pt;}
.y47{bottom:797.093333pt;}
.y13{bottom:811.333333pt;}
.y46{bottom:812.453333pt;}
.y75{bottom:815.173333pt;}
.y45{bottom:827.813333pt;}
.y12{bottom:828.133333pt;}
.y74{bottom:843.013333pt;}
.y44{bottom:843.173333pt;}
.y11{bottom:845.093333pt;}
.y43{bottom:858.533333pt;}
.y10{bottom:861.893333pt;}
.y42{bottom:873.733333pt;}
.yf{bottom:878.853333pt;}
.y41{bottom:889.093333pt;}
.ye{bottom:895.973333pt;}
.y40{bottom:904.453333pt;}
.yd{bottom:914.373333pt;}
.y3f{bottom:919.813333pt;}
.yc{bottom:932.773333pt;}
.y3e{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.ha{height:27.200000pt;}
.hc{height:27.392000pt;}
.hb{height:28.960000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.he{height:38.672812pt;}
.h9{height:40.021563pt;}
.hd{height:40.410625pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.h4{height:45.156250pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:92.992000pt;}
.w4{width:93.120000pt;}
.wc{width:93.152000pt;}
.wd{width:101.120000pt;}
.w9{width:101.280000pt;}
.w5{width:101.312000pt;}
.w6{width:142.586667pt;}
.wa{width:142.746667pt;}
.wb{width:205.626667pt;}
.w3{width:222.746667pt;}
.w7{width:260.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.400000pt;}
.x1c{left:33.466667pt;}
.x1e{left:35.066667pt;}
.x20{left:37.760000pt;}
.x1b{left:40.000000pt;}
.x1d{left:50.880000pt;}
.x2c{left:55.040000pt;}
.x1f{left:60.800000pt;}
.x28{left:75.994667pt;}
.x16{left:84.794667pt;}
.x15{left:89.632000pt;}
.x1{left:96.031988pt;}
.x22{left:103.834667pt;}
.xe{left:106.431988pt;}
.x2{left:109.471988pt;}
.x2e{left:120.031988pt;}
.x27{left:124.672000pt;}
.x7{left:133.311988pt;}
.x8{left:135.226655pt;}
.x4{left:139.706655pt;}
.x2f{left:144.026655pt;}
.x2d{left:182.266655pt;}
.x14{left:235.386655pt;}
.x9{left:236.986655pt;}
.x26{left:259.906655pt;}
.x21{left:261.666655pt;}
.x10{left:304.386655pt;}
.x13{left:307.906655pt;}
.x17{left:313.026667pt;}
.x29{left:330.946667pt;}
.xc{left:332.386655pt;}
.xd{left:335.586655pt;}
.xb{left:337.186655pt;}
.x12{left:341.666655pt;}
.xf{left:343.586655pt;}
.x23{left:351.266667pt;}
.x6{left:352.386655pt;}
.x5{left:366.466655pt;}
.xa{left:396.866655pt;}
.x19{left:406.786667pt;}
.x2a{left:424.733333pt;}
.x24{left:444.893333pt;}
.x3{left:460.893322pt;}
.x1a{left:508.733333pt;}
.x2b{left:526.493333pt;}
.x25{left:546.813333pt;}
.x11{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; }
  