
    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_92922f86588b2f335e7372ac.woff')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_4689265731221ea158181e5d.woff')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_9dde357bd97ee6fce0580f06.woff')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_f0ed4700a1189a59c45ed4fd.woff')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_78b86a5e1ba7a2ece560e30a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.937988;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_cf9f6d16430008c58f469fb1.woff')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_a05c3b4d43c3963cfbe19914.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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;}
.ls9{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{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;}
}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.146400px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.598400px;}
._0{width:1.022160px;}
._3{width:2.222400px;}
._2{width:3.425520px;}
._6{width:4.500000px;}
._7{width:5.518320px;}
._d{width:6.812640px;}
._b{width:8.007840px;}
._a{width:9.023760px;}
._8{width:10.929840px;}
._9{width:11.958240px;}
._c{width:13.266720px;}
._e{width:16.116480px;}
._10{width:17.440080px;}
._11{width:18.582720px;}
._f{width:19.714560px;}
._15{width:21.101520px;}
._16{width:23.300160px;}
._14{width:26.520960px;}
._13{width:27.907920px;}
._12{width:30.292080px;}
._5{width:85.656000px;}
._4{width:687.306000px;}
._17{width:749.886240px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:35.100000px;}
.yb{bottom:50.580000px;}
.yd5{bottom:112.716000px;}
.y8f{bottom:113.436000px;}
.y3d{bottom:116.856000px;}
.y72{bottom:119.016000px;}
.yb2{bottom:121.716000px;}
.y7c{bottom:125.136000px;}
.y8e{bottom:127.476000px;}
.yd4{bottom:129.996000px;}
.y3c{bottom:134.136000px;}
.y71{bottom:136.296000px;}
.yb1{bottom:138.996000px;}
.y7b{bottom:142.236000px;}
.yd3{bottom:147.276000px;}
.y3b{bottom:151.410000px;}
.yb0{bottom:153.030000px;}
.y70{bottom:153.570000px;}
.y7a{bottom:159.510000px;}
.yd2{bottom:164.550000px;}
.y3a{bottom:168.690000px;}
.y6f{bottom:170.670000px;}
.y79{bottom:176.790000px;}
.yd1{bottom:181.830000px;}
.y39{bottom:185.970000px;}
.y6e{bottom:187.950000px;}
.y78{bottom:194.070000px;}
.yd0{bottom:198.930000px;}
.y38{bottom:203.070000px;}
.y6d{bottom:205.230000px;}
.y77{bottom:211.350000px;}
.ycf{bottom:216.210000px;}
.y37{bottom:220.350000px;}
.y6c{bottom:222.510000px;}
.y76{bottom:228.630000px;}
.y9f{bottom:230.970000px;}
.yce{bottom:233.490000px;}
.y6b{bottom:239.790000px;}
.y36{bottom:241.590000px;}
.y75{bottom:245.730000px;}
.y9e{bottom:248.250000px;}
.ycd{bottom:250.770000px;}
.y6a{bottom:256.890000px;}
.y35{bottom:260.130000px;}
.y74{bottom:263.010000px;}
.y9d{bottom:265.530000px;}
.ycc{bottom:268.050000px;}
.y69{bottom:274.170000px;}
.y73{bottom:277.050000px;}
.y34{bottom:278.850000px;}
.y9c{bottom:282.810000px;}
.ycb{bottom:285.330000px;}
.y68{bottom:291.450000px;}
.y33{bottom:297.390000px;}
.y9b{bottom:300.090000px;}
.yca{bottom:302.430000px;}
.y67{bottom:308.730000px;}
.y32{bottom:316.110000px;}
.y9a{bottom:317.370000px;}
.yc9{bottom:319.710000px;}
.y66{bottom:326.010000px;}
.y8d{bottom:334.290000px;}
.y99{bottom:334.470000px;}
.y31{bottom:334.650000px;}
.yc8{bottom:337.035000px;}
.y65{bottom:343.335000px;}
.y98{bottom:348.735000px;}
.y8c{bottom:351.615000px;}
.y30{bottom:353.235000px;}
.yc7{bottom:354.315000px;}
.y64{bottom:360.435000px;}
.y8b{bottom:368.895000px;}
.yc6{bottom:371.595000px;}
.y2f{bottom:371.955000px;}
.y63{bottom:377.715000px;}
.yaf{bottom:380.415000px;}
.y8a{bottom:386.175000px;}
.yc5{bottom:388.695000px;}
.y2e{bottom:390.495000px;}
.y62{bottom:394.995000px;}
.yae{bottom:397.695000px;}
.y89{bottom:403.455000px;}
.yc4{bottom:405.975000px;}
.y2d{bottom:409.215000px;}
.y61{bottom:412.275000px;}
.yad{bottom:414.795000px;}
.y88{bottom:420.555000px;}
.yc3{bottom:423.255000px;}
.y2c{bottom:427.755000px;}
.y60{bottom:429.555000px;}
.yac{bottom:432.075000px;}
.y87{bottom:437.835000px;}
.yc2{bottom:440.535000px;}
.y2b{bottom:446.475000px;}
.y5f{bottom:446.835000px;}
.yab{bottom:449.355000px;}
.y86{bottom:455.115000px;}
.yc1{bottom:457.815000px;}
.y5e{bottom:463.935000px;}
.y2a{bottom:465.015000px;}
.yaa{bottom:466.635000px;}
.y85{bottom:469.155000px;}
.yc0{bottom:475.095000px;}
.y5d{bottom:481.215000px;}
.y29{bottom:483.555000px;}
.ya9{bottom:483.915000px;}
.ybf{bottom:492.195000px;}
.ya8{bottom:497.775000px;}
.y5c{bottom:498.495000px;}
.y28{bottom:502.275000px;}
.ybe{bottom:509.475000px;}
.y5b{bottom:515.775000px;}
.y27{bottom:520.815000px;}
.ybd{bottom:526.755000px;}
.y5a{bottom:533.055000px;}
.y26{bottom:539.535000px;}
.ybc{bottom:544.035000px;}
.y59{bottom:550.335000px;}
.y25{bottom:558.075000px;}
.ybb{bottom:561.315000px;}
.y58{bottom:567.435000px;}
.y24{bottom:576.615000px;}
.yba{bottom:578.595000px;}
.y57{bottom:584.715000px;}
.y97{bottom:588.855000px;}
.y23{bottom:594.975000px;}
.yb9{bottom:595.695000px;}
.y56{bottom:601.995000px;}
.y96{bottom:605.985000px;}
.y22{bottom:612.825000px;}
.yb8{bottom:613.005000px;}
.y55{bottom:619.305000px;}
.y95{bottom:623.265000px;}
.yb7{bottom:630.285000px;}
.y21{bottom:631.725000px;}
.y54{bottom:636.585000px;}
.y94{bottom:640.545000px;}
.yb6{bottom:647.565000px;}
.y20{bottom:650.805000px;}
.y53{bottom:653.685000px;}
.y93{bottom:657.825000px;}
.yb5{bottom:664.845000px;}
.y1f{bottom:669.705000px;}
.y52{bottom:670.965000px;}
.y92{bottom:675.105000px;}
.y84{bottom:680.865000px;}
.yb4{bottom:682.125000px;}
.y51{bottom:688.245000px;}
.y1e{bottom:688.785000px;}
.y91{bottom:692.205000px;}
.ya7{bottom:694.725000px;}
.yb3{bottom:696.165000px;}
.y83{bottom:698.145000px;}
.y50{bottom:705.525000px;}
.y90{bottom:706.425000px;}
.y1d{bottom:707.685000px;}
.ya6{bottom:712.005000px;}
.y82{bottom:715.425000px;}
.y4f{bottom:722.805000px;}
.y1c{bottom:726.585000px;}
.ya5{bottom:729.285000px;}
.y81{bottom:732.705000px;}
.y4e{bottom:740.085000px;}
.y1b{bottom:745.665000px;}
.ya4{bottom:746.385000px;}
.y80{bottom:749.805000px;}
.y4d{bottom:757.185000px;}
.ya3{bottom:763.665000px;}
.y1a{bottom:764.565000px;}
.y7f{bottom:767.085000px;}
.y4c{bottom:774.465000px;}
.ya2{bottom:780.945000px;}
.y19{bottom:783.645000px;}
.y7e{bottom:784.365000px;}
.y4b{bottom:791.745000px;}
.ya1{bottom:798.225000px;}
.y7d{bottom:798.405000px;}
.y18{bottom:802.545000px;}
.y4a{bottom:809.025000px;}
.ya0{bottom:812.265000px;}
.y17{bottom:821.445000px;}
.y49{bottom:826.305000px;}
.y16{bottom:840.525000px;}
.y48{bottom:843.585000px;}
.y15{bottom:859.425000px;}
.y47{bottom:860.685000px;}
.y46{bottom:878.010000px;}
.y14{bottom:878.550000px;}
.y45{bottom:895.290000px;}
.y13{bottom:897.450000px;}
.y44{bottom:912.570000px;}
.y12{bottom:916.350000px;}
.y43{bottom:929.850000px;}
.y11{bottom:935.430000px;}
.y42{bottom:947.130000px;}
.y10{bottom:954.330000px;}
.y41{bottom:964.230000px;}
.yf{bottom:973.410000px;}
.y40{bottom:981.510000px;}
.ye{bottom:992.670000px;}
.y3f{bottom:998.790000px;}
.yd{bottom:1013.370000px;}
.y3e{bottom:1016.070000px;}
.ya{bottom:1034.610000px;}
.y9{bottom:1053.510000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1088.610000px;}
.y6{bottom:1105.350000px;}
.y5{bottom:1146.240000px;}
.y4{bottom:1164.780000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hc{height:42.281367px;}
.ha{height:43.156758px;}
.hb{height:43.506914px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.h4{height:50.800781px;}
.h9{height:53.224453px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x8{left:126.215987px;}
.x7{left:135.935987px;}
.x4{left:157.169987px;}
.x27{left:162.029987px;}
.xb{left:178.769987px;}
.x14{left:190.109987px;}
.x13{left:309.314987px;}
.x1e{left:330.914987px;}
.x11{left:334.514987px;}
.xf{left:337.214987px;}
.x1c{left:344.594987px;}
.x18{left:346.394987px;}
.x1a{left:349.634987px;}
.xe{left:352.154987px;}
.xa{left:353.234987px;}
.x10{left:358.094987px;}
.x9{left:360.074987px;}
.xd{left:362.954987px;}
.x6{left:368.174987px;}
.x12{left:371.594987px;}
.x24{left:373.034987px;}
.x22{left:383.114987px;}
.xc{left:384.374987px;}
.x15{left:386.534987px;}
.x20{left:390.314987px;}
.x26{left:395.714987px;}
.x16{left:398.954987px;}
.x5{left:401.654987px;}
.x2{left:446.474987px;}
.x3{left:518.504987px;}
.x1b{left:603.284987px;}
.x1d{left:605.084987px;}
.x25{left:607.424987px;}
.x19{left:609.224987px;}
.x23{left:611.564987px;}
.x21{left:613.724987px;}
.x1f{left:615.704987px;}
.x17{left:722.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:19.152640pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.420800pt;}
._0{width:0.908587pt;}
._3{width:1.975467pt;}
._2{width:3.044907pt;}
._6{width:4.000000pt;}
._7{width:4.905173pt;}
._d{width:6.055680pt;}
._b{width:7.118080pt;}
._a{width:8.021120pt;}
._8{width:9.715413pt;}
._9{width:10.629547pt;}
._c{width:11.792640pt;}
._e{width:14.325760pt;}
._10{width:15.502293pt;}
._11{width:16.517973pt;}
._f{width:17.524053pt;}
._15{width:18.756907pt;}
._16{width:20.711253pt;}
._14{width:23.574187pt;}
._13{width:24.807040pt;}
._12{width:26.926293pt;}
._5{width:76.138667pt;}
._4{width:610.938667pt;}
._17{width:666.565547pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:31.200000pt;}
.yb{bottom:44.960000pt;}
.yd5{bottom:100.192000pt;}
.y8f{bottom:100.832000pt;}
.y3d{bottom:103.872000pt;}
.y72{bottom:105.792000pt;}
.yb2{bottom:108.192000pt;}
.y7c{bottom:111.232000pt;}
.y8e{bottom:113.312000pt;}
.yd4{bottom:115.552000pt;}
.y3c{bottom:119.232000pt;}
.y71{bottom:121.152000pt;}
.yb1{bottom:123.552000pt;}
.y7b{bottom:126.432000pt;}
.yd3{bottom:130.912000pt;}
.y3b{bottom:134.586667pt;}
.yb0{bottom:136.026667pt;}
.y70{bottom:136.506667pt;}
.y7a{bottom:141.786667pt;}
.yd2{bottom:146.266667pt;}
.y3a{bottom:149.946667pt;}
.y6f{bottom:151.706667pt;}
.y79{bottom:157.146667pt;}
.yd1{bottom:161.626667pt;}
.y39{bottom:165.306667pt;}
.y6e{bottom:167.066667pt;}
.y78{bottom:172.506667pt;}
.yd0{bottom:176.826667pt;}
.y38{bottom:180.506667pt;}
.y6d{bottom:182.426667pt;}
.y77{bottom:187.866667pt;}
.ycf{bottom:192.186667pt;}
.y37{bottom:195.866667pt;}
.y6c{bottom:197.786667pt;}
.y76{bottom:203.226667pt;}
.y9f{bottom:205.306667pt;}
.yce{bottom:207.546667pt;}
.y6b{bottom:213.146667pt;}
.y36{bottom:214.746667pt;}
.y75{bottom:218.426667pt;}
.y9e{bottom:220.666667pt;}
.ycd{bottom:222.906667pt;}
.y6a{bottom:228.346667pt;}
.y35{bottom:231.226667pt;}
.y74{bottom:233.786667pt;}
.y9d{bottom:236.026667pt;}
.ycc{bottom:238.266667pt;}
.y69{bottom:243.706667pt;}
.y73{bottom:246.266667pt;}
.y34{bottom:247.866667pt;}
.y9c{bottom:251.386667pt;}
.ycb{bottom:253.626667pt;}
.y68{bottom:259.066667pt;}
.y33{bottom:264.346667pt;}
.y9b{bottom:266.746667pt;}
.yca{bottom:268.826667pt;}
.y67{bottom:274.426667pt;}
.y32{bottom:280.986667pt;}
.y9a{bottom:282.106667pt;}
.yc9{bottom:284.186667pt;}
.y66{bottom:289.786667pt;}
.y8d{bottom:297.146667pt;}
.y99{bottom:297.306667pt;}
.y31{bottom:297.466667pt;}
.yc8{bottom:299.586667pt;}
.y65{bottom:305.186667pt;}
.y98{bottom:309.986667pt;}
.y8c{bottom:312.546667pt;}
.y30{bottom:313.986667pt;}
.yc7{bottom:314.946667pt;}
.y64{bottom:320.386667pt;}
.y8b{bottom:327.906667pt;}
.yc6{bottom:330.306667pt;}
.y2f{bottom:330.626667pt;}
.y63{bottom:335.746667pt;}
.yaf{bottom:338.146667pt;}
.y8a{bottom:343.266667pt;}
.yc5{bottom:345.506667pt;}
.y2e{bottom:347.106667pt;}
.y62{bottom:351.106667pt;}
.yae{bottom:353.506667pt;}
.y89{bottom:358.626667pt;}
.yc4{bottom:360.866667pt;}
.y2d{bottom:363.746667pt;}
.y61{bottom:366.466667pt;}
.yad{bottom:368.706667pt;}
.y88{bottom:373.826667pt;}
.yc3{bottom:376.226667pt;}
.y2c{bottom:380.226667pt;}
.y60{bottom:381.826667pt;}
.yac{bottom:384.066667pt;}
.y87{bottom:389.186667pt;}
.yc2{bottom:391.586667pt;}
.y2b{bottom:396.866667pt;}
.y5f{bottom:397.186667pt;}
.yab{bottom:399.426667pt;}
.y86{bottom:404.546667pt;}
.yc1{bottom:406.946667pt;}
.y5e{bottom:412.386667pt;}
.y2a{bottom:413.346667pt;}
.yaa{bottom:414.786667pt;}
.y85{bottom:417.026667pt;}
.yc0{bottom:422.306667pt;}
.y5d{bottom:427.746667pt;}
.y29{bottom:429.826667pt;}
.ya9{bottom:430.146667pt;}
.ybf{bottom:437.506667pt;}
.ya8{bottom:442.466667pt;}
.y5c{bottom:443.106667pt;}
.y28{bottom:446.466667pt;}
.ybe{bottom:452.866667pt;}
.y5b{bottom:458.466667pt;}
.y27{bottom:462.946667pt;}
.ybd{bottom:468.226667pt;}
.y5a{bottom:473.826667pt;}
.y26{bottom:479.586667pt;}
.ybc{bottom:483.586667pt;}
.y59{bottom:489.186667pt;}
.y25{bottom:496.066667pt;}
.ybb{bottom:498.946667pt;}
.y58{bottom:504.386667pt;}
.y24{bottom:512.546667pt;}
.yba{bottom:514.306667pt;}
.y57{bottom:519.746667pt;}
.y97{bottom:523.426667pt;}
.y23{bottom:528.866667pt;}
.yb9{bottom:529.506667pt;}
.y56{bottom:535.106667pt;}
.y96{bottom:538.653333pt;}
.y22{bottom:544.733333pt;}
.yb8{bottom:544.893333pt;}
.y55{bottom:550.493333pt;}
.y95{bottom:554.013333pt;}
.yb7{bottom:560.253333pt;}
.y21{bottom:561.533333pt;}
.y54{bottom:565.853333pt;}
.y94{bottom:569.373333pt;}
.yb6{bottom:575.613333pt;}
.y20{bottom:578.493333pt;}
.y53{bottom:581.053333pt;}
.y93{bottom:584.733333pt;}
.yb5{bottom:590.973333pt;}
.y1f{bottom:595.293333pt;}
.y52{bottom:596.413333pt;}
.y92{bottom:600.093333pt;}
.y84{bottom:605.213333pt;}
.yb4{bottom:606.333333pt;}
.y51{bottom:611.773333pt;}
.y1e{bottom:612.253333pt;}
.y91{bottom:615.293333pt;}
.ya7{bottom:617.533333pt;}
.yb3{bottom:618.813333pt;}
.y83{bottom:620.573333pt;}
.y50{bottom:627.133333pt;}
.y90{bottom:627.933333pt;}
.y1d{bottom:629.053333pt;}
.ya6{bottom:632.893333pt;}
.y82{bottom:635.933333pt;}
.y4f{bottom:642.493333pt;}
.y1c{bottom:645.853333pt;}
.ya5{bottom:648.253333pt;}
.y81{bottom:651.293333pt;}
.y4e{bottom:657.853333pt;}
.y1b{bottom:662.813333pt;}
.ya4{bottom:663.453333pt;}
.y80{bottom:666.493333pt;}
.y4d{bottom:673.053333pt;}
.ya3{bottom:678.813333pt;}
.y1a{bottom:679.613333pt;}
.y7f{bottom:681.853333pt;}
.y4c{bottom:688.413333pt;}
.ya2{bottom:694.173333pt;}
.y19{bottom:696.573333pt;}
.y7e{bottom:697.213333pt;}
.y4b{bottom:703.773333pt;}
.ya1{bottom:709.533333pt;}
.y7d{bottom:709.693333pt;}
.y18{bottom:713.373333pt;}
.y4a{bottom:719.133333pt;}
.ya0{bottom:722.013333pt;}
.y17{bottom:730.173333pt;}
.y49{bottom:734.493333pt;}
.y16{bottom:747.133333pt;}
.y48{bottom:749.853333pt;}
.y15{bottom:763.933333pt;}
.y47{bottom:765.053333pt;}
.y46{bottom:780.453333pt;}
.y14{bottom:780.933333pt;}
.y45{bottom:795.813333pt;}
.y13{bottom:797.733333pt;}
.y44{bottom:811.173333pt;}
.y12{bottom:814.533333pt;}
.y43{bottom:826.533333pt;}
.y11{bottom:831.493333pt;}
.y42{bottom:841.893333pt;}
.y10{bottom:848.293333pt;}
.y41{bottom:857.093333pt;}
.yf{bottom:865.253333pt;}
.y40{bottom:872.453333pt;}
.ye{bottom:882.373333pt;}
.y3f{bottom:887.813333pt;}
.yd{bottom:900.773333pt;}
.y3e{bottom:903.173333pt;}
.ya{bottom:919.653333pt;}
.y9{bottom:936.453333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:967.653333pt;}
.y6{bottom:982.533333pt;}
.y5{bottom:1018.880000pt;}
.y4{bottom:1035.360000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hc{height:37.583438pt;}
.ha{height:38.361562pt;}
.hb{height:38.672812pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.h4{height:45.156250pt;}
.h9{height:47.310625pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x8{left:112.191988pt;}
.x7{left:120.831988pt;}
.x4{left:139.706655pt;}
.x27{left:144.026655pt;}
.xb{left:158.906655pt;}
.x14{left:168.986655pt;}
.x13{left:274.946655pt;}
.x1e{left:294.146655pt;}
.x11{left:297.346655pt;}
.xf{left:299.746655pt;}
.x1c{left:306.306655pt;}
.x18{left:307.906655pt;}
.x1a{left:310.786655pt;}
.xe{left:313.026655pt;}
.xa{left:313.986655pt;}
.x10{left:318.306655pt;}
.x9{left:320.066655pt;}
.xd{left:322.626655pt;}
.x6{left:327.266655pt;}
.x12{left:330.306655pt;}
.x24{left:331.586655pt;}
.x22{left:340.546655pt;}
.xc{left:341.666655pt;}
.x15{left:343.586655pt;}
.x20{left:346.946655pt;}
.x26{left:351.746655pt;}
.x16{left:354.626655pt;}
.x5{left:357.026655pt;}
.x2{left:396.866655pt;}
.x3{left:460.893322pt;}
.x1b{left:536.253322pt;}
.x1d{left:537.853322pt;}
.x25{left:539.933322pt;}
.x19{left:541.533322pt;}
.x23{left:543.613322pt;}
.x21{left:545.533322pt;}
.x1f{left:547.293322pt;}
.x17{left:642.373322pt;}
}




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