
    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_53354132c9e73914ea82f411.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_0540f9952009530c831b10e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_515f6e00fd3f06efd7a6b996.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_aff527dea63cc408d9f8e245.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_2b963c08be680e5356b94f6e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_9454e51f205df85587ce8d62.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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;}
.m2{transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-2.160000px;}
.ls8{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.lse{letter-spacing:0.496080px;}
.ls2{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.224000px;}
.ls11{letter-spacing:4.469760px;}
.ls1{letter-spacing:63.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-19.224000px;}
.ws9{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.208000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.060000px;}
.wsb{word-spacing:-11.700000px;}
.ws5{word-spacing:0.000000px;}
.ws2{word-spacing:49.680000px;}
._19{margin-left:-5.249280px;}
._e{margin-left:-4.144560px;}
._3{margin-left:-2.736000px;}
._1{margin-left:-1.135440px;}
._2{width:1.015920px;}
._0{width:2.031840px;}
._8{width:3.288240px;}
._9{width:4.493760px;}
._7{width:5.544000px;}
._10{width:6.690960px;}
._d{width:7.734240px;}
._13{width:9.216000px;}
._f{width:10.368000px;}
._4{width:11.664000px;}
._5{width:12.808080px;}
._c{width:14.256000px;}
._b{width:15.396000px;}
._a{width:16.464000px;}
._1a{width:20.368080px;}
._14{width:21.373200px;}
._12{width:22.497120px;}
._11{width:23.743440px;}
._17{width:24.840000px;}
._18{width:26.120640px;}
._15{width:30.168000px;}
._16{width:31.192080px;}
._26{width:32.904480px;}
._25{width:33.942960px;}
._1d{width:39.672000px;}
._1e{width:41.016000px;}
._1b{width:42.768000px;}
._1f{width:52.776000px;}
._20{width:53.848320px;}
._1c{width:58.464000px;}
._6{width:63.276000px;}
._22{width:153.288000px;}
._23{width:173.880000px;}
._24{width:174.936000px;}
._21{width:1070.076000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.ya{bottom:5.940000px;}
.y7{bottom:7.920000px;}
.y9{bottom:23.220000px;}
.y5{bottom:25.380000px;}
.y6{bottom:33.120000px;}
.y8{bottom:40.500000px;}
.y4{bottom:42.660000px;}
.yd{bottom:46.440000px;}
.yc{bottom:93.816000px;}
.y7d{bottom:125.676000px;}
.y91{bottom:127.476000px;}
.y4a{bottom:127.836000px;}
.y70{bottom:132.336000px;}
.y2a{bottom:148.536000px;}
.y5a{bottom:153.210000px;}
.y7c{bottom:156.810000px;}
.y49{bottom:158.790000px;}
.y6f{bottom:163.470000px;}
.y8f{bottom:169.230000px;}
.y29{bottom:179.490000px;}
.y59{bottom:184.170000px;}
.y7b{bottom:187.770000px;}
.y48{bottom:189.930000px;}
.y6e{bottom:194.430000px;}
.y8e{bottom:200.190000px;}
.y28{bottom:210.630000px;}
.y58{bottom:214.050000px;}
.y45{bottom:215.130000px;}
.y7a{bottom:218.910000px;}
.y90{bottom:220.530000px;}
.y47{bottom:220.890000px;}
.y6d{bottom:225.570000px;}
.y8d{bottom:231.330000px;}
.y27{bottom:241.590000px;}
.y57{bottom:242.670000px;}
.y79{bottom:249.870000px;}
.y44{bottom:252.030000px;}
.y6c{bottom:256.530000px;}
.y8c{bottom:262.290000px;}
.y56{bottom:268.050000px;}
.y26{bottom:272.730000px;}
.y78{bottom:281.010000px;}
.y43{bottom:282.990000px;}
.y6b{bottom:287.670000px;}
.y8b{bottom:293.430000px;}
.y25{bottom:303.690000px;}
.y42{bottom:314.130000px;}
.y77{bottom:316.650000px;}
.y6a{bottom:318.675000px;}
.y8a{bottom:324.435000px;}
.y24{bottom:334.875000px;}
.y41{bottom:345.135000px;}
.y69{bottom:348.555000px;}
.y55{bottom:349.815000px;}
.y76{bottom:353.415000px;}
.y89{bottom:355.575000px;}
.y23{bottom:365.835000px;}
.y40{bottom:376.275000px;}
.y68{bottom:377.175000px;}
.y75{bottom:384.555000px;}
.y54{bottom:386.535000px;}
.y22{bottom:396.975000px;}
.y67{bottom:401.655000px;}
.y3f{bottom:407.235000px;}
.y74{bottom:414.435000px;}
.y53{bottom:417.675000px;}
.y21{bottom:427.575000px;}
.y7f{bottom:427.935000px;}
.y3e{bottom:438.375000px;}
.y73{bottom:442.875000px;}
.y52{bottom:448.635000px;}
.y20{bottom:459.075000px;}
.y72{bottom:468.075000px;}
.y3d{bottom:469.335000px;}
.y51{bottom:479.775000px;}
.y1f{bottom:490.035000px;}
.y3c{bottom:500.475000px;}
.y50{bottom:510.735000px;}
.y1e{bottom:520.995000px;}
.y3b{bottom:531.435000px;}
.y88{bottom:541.695000px;}
.y4f{bottom:546.375000px;}
.y1d{bottom:552.135000px;}
.y3a{bottom:562.395000px;}
.y66{bottom:571.785000px;}
.y87{bottom:572.865000px;}
.y1c{bottom:583.125000px;}
.y39{bottom:593.565000px;}
.y65{bottom:602.745000px;}
.y86{bottom:603.825000px;}
.y4e{bottom:614.265000px;}
.y1b{bottom:621.105000px;}
.y38{bottom:624.525000px;}
.y64{bottom:633.885000px;}
.y85{bottom:634.965000px;}
.y1a{bottom:645.225000px;}
.y37{bottom:655.665000px;}
.y63{bottom:664.845000px;}
.y84{bottom:665.925000px;}
.y4d{bottom:676.365000px;}
.y19{bottom:683.205000px;}
.y36{bottom:686.625000px;}
.y62{bottom:695.985000px;}
.y83{bottom:697.065000px;}
.y18{bottom:707.325000px;}
.y35{bottom:717.765000px;}
.y61{bottom:725.865000px;}
.y82{bottom:728.025000px;}
.y4c{bottom:738.465000px;}
.y17{bottom:745.305000px;}
.y34{bottom:748.725000px;}
.y60{bottom:754.305000px;}
.y81{bottom:759.165000px;}
.y16{bottom:769.425000px;}
.y5f{bottom:779.505000px;}
.y33{bottom:779.865000px;}
.y80{bottom:794.805000px;}
.y15{bottom:800.565000px;}
.y32{bottom:810.825000px;}
.y14{bottom:831.570000px;}
.y31{bottom:841.650000px;}
.y46{bottom:842.010000px;}
.y13{bottom:862.710000px;}
.y92{bottom:872.610000px;}
.y30{bottom:872.970000px;}
.y12{bottom:893.670000px;}
.y4b{bottom:898.350000px;}
.y2f{bottom:904.110000px;}
.y5e{bottom:924.810000px;}
.y11{bottom:926.970000px;}
.y7e{bottom:929.310000px;}
.y2e{bottom:935.070000px;}
.y5d{bottom:955.770000px;}
.y71{bottom:960.450000px;}
.y10{bottom:963.150000px;}
.y2d{bottom:966.210000px;}
.y5c{bottom:986.910000px;}
.y2c{bottom:997.170000px;}
.yf{bottom:999.330000px;}
.y5b{bottom:1022.550000px;}
.y2b{bottom:1028.310000px;}
.ye{bottom:1030.830000px;}
.yb{bottom:1044.690000px;}
.y3{bottom:1072.080000px;}
.y1{bottom:1128.240000px;}
.h1{height:17.280000px;}
.ha{height:47.344922px;}
.h3{height:56.160000px;}
.h2{height:58.651172px;}
.h6{height:60.226875px;}
.he{height:65.010937px;}
.h5{height:65.884219px;}
.hd{height:66.757500px;}
.h8{height:70.664062px;}
.hb{height:72.562500px;}
.h9{height:74.704922px;}
.hf{height:74.824922px;}
.h4{height:77.837760px;}
.h7{height:84.898125px;}
.hc{height:96.508125px;}
.h0{height:1188.000000px;}
.w3{width:86.256000px;}
.w6{width:90.000000px;}
.w5{width:118.836000px;}
.w2{width:208.830000px;}
.w4{width:470.055000px;}
.w1{width:556.305000px;}
.w7{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:13.320000px;}
.x8{left:28.800000px;}
.x6{left:42.120000px;}
.x4{left:43.236000px;}
.xb{left:45.000000px;}
.x3{left:46.305000px;}
.x1{left:76.500000px;}
.x13{left:84.959986px;}
.x29{left:92.735986px;}
.x1a{left:93.995986px;}
.x1b{left:95.975986px;}
.x23{left:99.035986px;}
.x7{left:148.545000px;}
.x5{left:162.750000px;}
.x35{left:172.829986px;}
.x36{left:175.169986px;}
.x1f{left:200.369986px;}
.x24{left:226.649986px;}
.xe{left:258.149986px;}
.x3a{left:264.629986px;}
.x2b{left:273.809986px;}
.x1e{left:276.149986px;}
.x20{left:281.549986px;}
.x25{left:287.894986px;}
.x11{left:307.514986px;}
.x21{left:320.654986px;}
.x12{left:326.054986px;}
.x33{left:327.494986px;}
.x34{left:329.114986px;}
.x3c{left:352.694986px;}
.x14{left:362.234986px;}
.x2a{left:375.014986px;}
.x3b{left:376.454986px;}
.x32{left:392.294986px;}
.x15{left:395.714986px;}
.x16{left:396.974986px;}
.x3d{left:409.394986px;}
.x2d{left:432.974986px;}
.x27{left:436.214986px;}
.x39{left:451.514986px;}
.xd{left:455.114986px;}
.x10{left:458.894986px;}
.x2e{left:461.774986px;}
.x2f{left:463.574986px;}
.x1c{left:488.984986px;}
.x1d{left:490.964986px;}
.x37{left:532.724986px;}
.x38{left:535.064986px;}
.x28{left:538.844986px;}
.x26{left:550.004986px;}
.x22{left:589.424986px;}
.x2c{left:592.844986px;}
.x2{left:632.805000px;}
.x17{left:681.809986px;}
.x18{left:683.249986px;}
.x30{left:696.029986px;}
.x31{left:697.829986px;}
.xf{left:730.589986px;}
.xa{left:751.650000px;}
.x19{left:833.009986px;}
.xc{left:852.269986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-1.920000pt;}
.ls8{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.440960pt;}
.ls2{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.088000pt;}
.ls11{letter-spacing:3.973120pt;}
.ls1{letter-spacing:56.000000pt;}
.wse{word-spacing:-17.088000pt;}
.ws9{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.296000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.400000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2{word-spacing:44.160000pt;}
._19{margin-left:-4.666027pt;}
._e{margin-left:-3.684053pt;}
._3{margin-left:-2.432000pt;}
._1{margin-left:-1.009280pt;}
._2{width:0.903040pt;}
._0{width:1.806080pt;}
._8{width:2.922880pt;}
._9{width:3.994453pt;}
._7{width:4.928000pt;}
._10{width:5.947520pt;}
._d{width:6.874880pt;}
._13{width:8.192000pt;}
._f{width:9.216000pt;}
._4{width:10.368000pt;}
._5{width:11.384960pt;}
._c{width:12.672000pt;}
._b{width:13.685333pt;}
._a{width:14.634667pt;}
._1a{width:18.104960pt;}
._14{width:18.998400pt;}
._12{width:19.997440pt;}
._11{width:21.105280pt;}
._17{width:22.080000pt;}
._18{width:23.218347pt;}
._15{width:26.816000pt;}
._16{width:27.726293pt;}
._26{width:29.248427pt;}
._25{width:30.171520pt;}
._1d{width:35.264000pt;}
._1e{width:36.458667pt;}
._1b{width:38.016000pt;}
._1f{width:46.912000pt;}
._20{width:47.865173pt;}
._1c{width:51.968000pt;}
._6{width:56.245333pt;}
._22{width:136.256000pt;}
._23{width:154.560000pt;}
._24{width:155.498667pt;}
._21{width:951.178667pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.ya{bottom:5.280000pt;}
.y7{bottom:7.040000pt;}
.y9{bottom:20.640000pt;}
.y5{bottom:22.560000pt;}
.y6{bottom:29.440000pt;}
.y8{bottom:36.000000pt;}
.y4{bottom:37.920000pt;}
.yd{bottom:41.280000pt;}
.yc{bottom:83.392000pt;}
.y7d{bottom:111.712000pt;}
.y91{bottom:113.312000pt;}
.y4a{bottom:113.632000pt;}
.y70{bottom:117.632000pt;}
.y2a{bottom:132.032000pt;}
.y5a{bottom:136.186667pt;}
.y7c{bottom:139.386667pt;}
.y49{bottom:141.146667pt;}
.y6f{bottom:145.306667pt;}
.y8f{bottom:150.426667pt;}
.y29{bottom:159.546667pt;}
.y59{bottom:163.706667pt;}
.y7b{bottom:166.906667pt;}
.y48{bottom:168.826667pt;}
.y6e{bottom:172.826667pt;}
.y8e{bottom:177.946667pt;}
.y28{bottom:187.226667pt;}
.y58{bottom:190.266667pt;}
.y45{bottom:191.226667pt;}
.y7a{bottom:194.586667pt;}
.y90{bottom:196.026667pt;}
.y47{bottom:196.346667pt;}
.y6d{bottom:200.506667pt;}
.y8d{bottom:205.626667pt;}
.y27{bottom:214.746667pt;}
.y57{bottom:215.706667pt;}
.y79{bottom:222.106667pt;}
.y44{bottom:224.026667pt;}
.y6c{bottom:228.026667pt;}
.y8c{bottom:233.146667pt;}
.y56{bottom:238.266667pt;}
.y26{bottom:242.426667pt;}
.y78{bottom:249.786667pt;}
.y43{bottom:251.546667pt;}
.y6b{bottom:255.706667pt;}
.y8b{bottom:260.826667pt;}
.y25{bottom:269.946667pt;}
.y42{bottom:279.226667pt;}
.y77{bottom:281.466667pt;}
.y6a{bottom:283.266667pt;}
.y8a{bottom:288.386667pt;}
.y24{bottom:297.666667pt;}
.y41{bottom:306.786667pt;}
.y69{bottom:309.826667pt;}
.y55{bottom:310.946667pt;}
.y76{bottom:314.146667pt;}
.y89{bottom:316.066667pt;}
.y23{bottom:325.186667pt;}
.y40{bottom:334.466667pt;}
.y68{bottom:335.266667pt;}
.y75{bottom:341.826667pt;}
.y54{bottom:343.586667pt;}
.y22{bottom:352.866667pt;}
.y67{bottom:357.026667pt;}
.y3f{bottom:361.986667pt;}
.y74{bottom:368.386667pt;}
.y53{bottom:371.266667pt;}
.y21{bottom:380.066667pt;}
.y7f{bottom:380.386667pt;}
.y3e{bottom:389.666667pt;}
.y73{bottom:393.666667pt;}
.y52{bottom:398.786667pt;}
.y20{bottom:408.066667pt;}
.y72{bottom:416.066667pt;}
.y3d{bottom:417.186667pt;}
.y51{bottom:426.466667pt;}
.y1f{bottom:435.586667pt;}
.y3c{bottom:444.866667pt;}
.y50{bottom:453.986667pt;}
.y1e{bottom:463.106667pt;}
.y3b{bottom:472.386667pt;}
.y88{bottom:481.506667pt;}
.y4f{bottom:485.666667pt;}
.y1d{bottom:490.786667pt;}
.y3a{bottom:499.906667pt;}
.y66{bottom:508.253333pt;}
.y87{bottom:509.213333pt;}
.y1c{bottom:518.333333pt;}
.y39{bottom:527.613333pt;}
.y65{bottom:535.773333pt;}
.y86{bottom:536.733333pt;}
.y4e{bottom:546.013333pt;}
.y1b{bottom:552.093333pt;}
.y38{bottom:555.133333pt;}
.y64{bottom:563.453333pt;}
.y85{bottom:564.413333pt;}
.y1a{bottom:573.533333pt;}
.y37{bottom:582.813333pt;}
.y63{bottom:590.973333pt;}
.y84{bottom:591.933333pt;}
.y4d{bottom:601.213333pt;}
.y19{bottom:607.293333pt;}
.y36{bottom:610.333333pt;}
.y62{bottom:618.653333pt;}
.y83{bottom:619.613333pt;}
.y18{bottom:628.733333pt;}
.y35{bottom:638.013333pt;}
.y61{bottom:645.213333pt;}
.y82{bottom:647.133333pt;}
.y4c{bottom:656.413333pt;}
.y17{bottom:662.493333pt;}
.y34{bottom:665.533333pt;}
.y60{bottom:670.493333pt;}
.y81{bottom:674.813333pt;}
.y16{bottom:683.933333pt;}
.y5f{bottom:692.893333pt;}
.y33{bottom:693.213333pt;}
.y80{bottom:706.493333pt;}
.y15{bottom:711.613333pt;}
.y32{bottom:720.733333pt;}
.y14{bottom:739.173333pt;}
.y31{bottom:748.133333pt;}
.y46{bottom:748.453333pt;}
.y13{bottom:766.853333pt;}
.y92{bottom:775.653333pt;}
.y30{bottom:775.973333pt;}
.y12{bottom:794.373333pt;}
.y4b{bottom:798.533333pt;}
.y2f{bottom:803.653333pt;}
.y5e{bottom:822.053333pt;}
.y11{bottom:823.973333pt;}
.y7e{bottom:826.053333pt;}
.y2e{bottom:831.173333pt;}
.y5d{bottom:849.573333pt;}
.y71{bottom:853.733333pt;}
.y10{bottom:856.133333pt;}
.y2d{bottom:858.853333pt;}
.y5c{bottom:877.253333pt;}
.y2c{bottom:886.373333pt;}
.yf{bottom:888.293333pt;}
.y5b{bottom:908.933333pt;}
.y2b{bottom:914.053333pt;}
.ye{bottom:916.293333pt;}
.yb{bottom:928.613333pt;}
.y3{bottom:952.960000pt;}
.y1{bottom:1002.880000pt;}
.h1{height:15.360000pt;}
.ha{height:42.084375pt;}
.h3{height:49.920000pt;}
.h2{height:52.134375pt;}
.h6{height:53.535000pt;}
.he{height:57.787500pt;}
.h5{height:58.563750pt;}
.hd{height:59.340000pt;}
.h8{height:62.812500pt;}
.hb{height:64.500000pt;}
.h9{height:66.404375pt;}
.hf{height:66.511042pt;}
.h4{height:69.189120pt;}
.h7{height:75.465000pt;}
.hc{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w3{width:76.672000pt;}
.w6{width:80.000000pt;}
.w5{width:105.632000pt;}
.w2{width:185.626667pt;}
.w4{width:417.826667pt;}
.w1{width:494.493333pt;}
.w7{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:11.840000pt;}
.x8{left:25.600000pt;}
.x6{left:37.440000pt;}
.x4{left:38.432000pt;}
.xb{left:40.000000pt;}
.x3{left:41.160000pt;}
.x1{left:68.000000pt;}
.x13{left:75.519988pt;}
.x29{left:82.431988pt;}
.x1a{left:83.551988pt;}
.x1b{left:85.311988pt;}
.x23{left:88.031988pt;}
.x7{left:132.040000pt;}
.x5{left:144.666667pt;}
.x35{left:153.626655pt;}
.x36{left:155.706655pt;}
.x1f{left:178.106655pt;}
.x24{left:201.466655pt;}
.xe{left:229.466655pt;}
.x3a{left:235.226655pt;}
.x2b{left:243.386655pt;}
.x1e{left:245.466655pt;}
.x20{left:250.266655pt;}
.x25{left:255.906655pt;}
.x11{left:273.346655pt;}
.x21{left:285.026655pt;}
.x12{left:289.826655pt;}
.x33{left:291.106655pt;}
.x34{left:292.546655pt;}
.x3c{left:313.506655pt;}
.x14{left:321.986655pt;}
.x2a{left:333.346655pt;}
.x3b{left:334.626655pt;}
.x32{left:348.706655pt;}
.x15{left:351.746655pt;}
.x16{left:352.866655pt;}
.x3d{left:363.906655pt;}
.x2d{left:384.866655pt;}
.x27{left:387.746655pt;}
.x39{left:401.346655pt;}
.xd{left:404.546655pt;}
.x10{left:407.906655pt;}
.x2e{left:410.466655pt;}
.x2f{left:412.066655pt;}
.x1c{left:434.653321pt;}
.x1d{left:436.413321pt;}
.x37{left:473.533321pt;}
.x38{left:475.613321pt;}
.x28{left:478.973321pt;}
.x26{left:488.893321pt;}
.x22{left:523.933321pt;}
.x2c{left:526.973321pt;}
.x2{left:562.493333pt;}
.x17{left:606.053321pt;}
.x18{left:607.333321pt;}
.x30{left:618.693321pt;}
.x31{left:620.293321pt;}
.xf{left:649.413321pt;}
.xa{left:668.133333pt;}
.x19{left:740.453321pt;}
.xc{left:757.573321pt;}
}




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