
    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_d5b841cc530aa31087e2c161.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.020508;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_d43aab3a5e42db79af7b15c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.020508;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_4958bba5af6b9484a5db085a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_581bd2e8fc324e82e24f752e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a64999e31d356e19cd224ddd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_d9db9cb55b0247bb73d067e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.928223;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_0069a4811bcc0655ef19f20e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.928223;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);}
.v2{vertical-align:-50.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:50.400000px;}
.v4{vertical-align:65.040000px;}
.v1{vertical-align:86.400000px;}
.ls15{letter-spacing:-0.250200px;}
.ls16{letter-spacing:-0.238800px;}
.ls11{letter-spacing:-0.193200px;}
.ls13{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.133800px;}
.ls17{letter-spacing:-0.130800px;}
.lsf{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.033120px;}
.ls1{letter-spacing:0.116640px;}
.ls10{letter-spacing:0.121800px;}
.ls2{letter-spacing:0.133200px;}
.ls1d{letter-spacing:0.148200px;}
.ls0{letter-spacing:0.236640px;}
.ls19{letter-spacing:0.252000px;}
.ls1a{letter-spacing:0.262200px;}
.ls1c{letter-spacing:0.272400px;}
.ls14{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.576000px;}
.ls5{letter-spacing:18.920160px;}
.lsa{letter-spacing:28.161504px;}
.ls6{letter-spacing:28.224000px;}
.lsb{letter-spacing:28.344000px;}
.ls4{letter-spacing:32.097600px;}
.ls3{letter-spacing:33.131520px;}
.ls8{letter-spacing:82.798560px;}
.ls7{letter-spacing:143.192160px;}
.lsc{letter-spacing:157.233600px;}
.ls9{letter-spacing:157.284000px;}
.lsd{letter-spacing:161.265600px;}
.lse{letter-spacing:161.316000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-32.713200px;}
.ws6{word-spacing:-32.520000px;}
.wse{word-spacing:-32.491080px;}
.ws3{word-spacing:-28.080000px;}
.ws7{word-spacing:-27.936000px;}
.ws2{word-spacing:-25.693200px;}
.ws1{word-spacing:-18.795000px;}
.ws0{word-spacing:-18.673200px;}
.wsf{word-spacing:-16.426800px;}
.ws11{word-spacing:-0.041760px;}
.ws12{word-spacing:0.000000px;}
.ws9{word-spacing:1.848000px;}
.ws5{word-spacing:2.138640px;}
.wsc{word-spacing:2.858640px;}
.ws4{word-spacing:110.478960px;}
.wsb{word-spacing:220.020000px;}
.ws8{word-spacing:286.572000px;}
.wsa{word-spacing:462.816000px;}
.ws10{word-spacing:1211.577360px;}
._5{margin-left:-2.641200px;}
._3{margin-left:-1.221840px;}
._0{width:1.583280px;}
._1{width:2.878320px;}
._4{width:4.572480px;}
._9{width:29.112960px;}
._8{width:30.241440px;}
._7{width:34.095600px;}
._2{width:38.880000px;}
._6{width:143.192160px;}
._f{width:187.764000px;}
._a{width:272.130960px;}
._11{width:277.044000px;}
._13{width:285.984000px;}
._10{width:305.350560px;}
._b{width:307.089840px;}
._e{width:309.670560px;}
._12{width:327.744000px;}
._d{width:404.796000px;}
._14{width:412.872000px;}
._c{width:544.008000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(30,100,200);}
.fsf{font-size:41.760000px;}
.fse{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs3{font-size:112.320000px;}
.fs8{font-size:131.760000px;}
.fs7{font-size:144.000000px;}
.fsb{font-size:144.144000px;}
.fsc{font-size:156.240000px;}
.fsd{font-size:156.384000px;}
.fs4{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs2{font-size:192.240000px;}
.fs9{font-size:210.240000px;}
.fs1{font-size:288.000000px;}
.fs0{font-size:527.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:73.188000px;}
.y37{bottom:138.345000px;}
.ya{bottom:195.840000px;}
.y8{bottom:276.090000px;}
.y3a{bottom:311.145000px;}
.y3d{bottom:311.250000px;}
.y6{bottom:374.505000px;}
.y5{bottom:417.240000px;}
.y49{bottom:476.205000px;}
.y62{bottom:494.175000px;}
.y80{bottom:590.685000px;}
.y7f{bottom:627.405000px;}
.y48{bottom:635.760000px;}
.y81{bottom:664.560000px;}
.y47{bottom:696.270000px;}
.y82{bottom:701.490000px;}
.y67{bottom:711.180000px;}
.y83{bottom:738.150000px;}
.y68{bottom:755.820000px;}
.y46{bottom:756.750000px;}
.y66{bottom:766.230000px;}
.y84{bottom:774.645000px;}
.y6b{bottom:802.080000px;}
.y65{bottom:810.615000px;}
.y85{bottom:811.800000px;}
.y45{bottom:817.230000px;}
.y6a{bottom:823.140000px;}
.y69{bottom:844.200000px;}
.y86{bottom:848.190000px;}
.y64{bottom:854.820000px;}
.y44{bottom:877.710000px;}
.y63{bottom:880.020000px;}
.y79{bottom:894.210000px;}
.y72{bottom:896.610000px;}
.y6d{bottom:913.710000px;}
.y71{bottom:917.670000px;}
.y6c{bottom:934.770000px;}
.y78{bottom:938.010000px;}
.y43{bottom:938.190000px;}
.y70{bottom:973.155000px;}
.y77{bottom:979.950000px;}
.y7b{bottom:984.990000px;}
.y76{bottom:988.890000px;}
.y6f{bottom:998.355000px;}
.y42{bottom:998.670000px;}
.y75{bottom:1009.770000px;}
.y6e{bottom:1023.555000px;}
.y74{bottom:1030.830000px;}
.y73{bottom:1051.890000px;}
.y7c{bottom:1056.495000px;}
.y41{bottom:1059.150000px;}
.y40{bottom:1119.630000px;}
.y7d{bottom:1128.570000px;}
.y7a{bottom:1183.935000px;}
.y7e{bottom:1198.770000px;}
.y3c{bottom:1236.600000px;}
.y1d{bottom:1268.670000px;}
.y39{bottom:1337.940000px;}
.y1e{bottom:1434.210000px;}
.y3f{bottom:1435.170000px;}
.y36{bottom:1489.140000px;}
.y3e{bottom:1504.650000px;}
.y56{bottom:1522.080000px;}
.y55{bottom:1578.240000px;}
.y3b{bottom:1605.885000px;}
.y38{bottom:1627.485000px;}
.y54{bottom:1634.430000px;}
.y53{bottom:1690.590000px;}
.y35{bottom:1714.425000px;}
.y52{bottom:1746.750000px;}
.y34{bottom:1777.785000px;}
.y33{bottom:1841.145000px;}
.y61{bottom:1882.005000px;}
.y32{bottom:1904.505000px;}
.y60{bottom:1937.445000px;}
.y31{bottom:1967.835000px;}
.y5f{bottom:1992.885000px;}
.y30{bottom:2031.195000px;}
.y5e{bottom:2048.370000px;}
.y2f{bottom:2094.555000px;}
.y5d{bottom:2121.810000px;}
.y1f{bottom:2181.750000px;}
.y5c{bottom:2250.690000px;}
.y5b{bottom:2306.130000px;}
.y5a{bottom:2361.570000px;}
.y59{bottom:2417.010000px;}
.y2e{bottom:2422.080000px;}
.y2d{bottom:2462.430000px;}
.y58{bottom:2472.450000px;}
.y26{bottom:2487.060000px;}
.y2c{bottom:2538.750000px;}
.y57{bottom:2545.890000px;}
.y2b{bottom:2579.070000px;}
.y25{bottom:2668.500000px;}
.y51{bottom:2669.370000px;}
.y2a{bottom:2691.570000px;}
.y50{bottom:2729.850000px;}
.y29{bottom:2741.970000px;}
.y24{bottom:2755.980000px;}
.y4f{bottom:2790.360000px;}
.y28{bottom:2824.230000px;}
.y23{bottom:2834.460000px;}
.y4e{bottom:2850.840000px;}
.y4d{bottom:2911.320000px;}
.y27{bottom:2911.710000px;}
.y22{bottom:2939.970000px;}
.y4c{bottom:2971.800000px;}
.y4b{bottom:3032.280000px;}
.y21{bottom:3036.450000px;}
.y4a{bottom:3092.760000px;}
.y20{bottom:3150.930000px;}
.y15{bottom:3202.230000px;}
.y14{bottom:3262.710000px;}
.y13{bottom:3370.530000px;}
.y18{bottom:3492.000000px;}
.y12{bottom:3580.665000px;}
.y7{bottom:3586.035000px;}
.y1c{bottom:3615.330000px;}
.y11{bottom:3636.105000px;}
.y10{bottom:3691.545000px;}
.yf{bottom:3746.985000px;}
.ye{bottom:3802.470000px;}
.yd{bottom:3857.910000px;}
.yc{bottom:3913.350000px;}
.yb{bottom:3981.210000px;}
.y17{bottom:3997.875000px;}
.y1b{bottom:4081.755000px;}
.y1a{bottom:4142.235000px;}
.y16{bottom:4150.800000px;}
.y19{bottom:4202.715000px;}
.y4{bottom:4287.885000px;}
.y3{bottom:4440.960000px;}
.y2{bottom:4495.860000px;}
.y1{bottom:4627.440000px;}
.h18{height:30.402422px;}
.h19{height:30.585938px;}
.h16{height:61.699219px;}
.h6{height:70.136719px;}
.h7{height:79.101562px;}
.h4{height:87.201562px;}
.ha{height:102.294141px;}
.h8{height:105.468750px;}
.h10{height:105.574219px;}
.hb{height:111.796875px;}
.h14{height:114.433594px;}
.h15{height:114.539063px;}
.hd{height:122.871094px;}
.he{height:122.976562px;}
.hf{height:124.263633px;}
.h17{height:126.739219px;}
.h9{height:149.248828px;}
.hc{height:153.984375px;}
.h13{height:191.868750px;}
.h5{height:223.593750px;}
.h3{height:235.648828px;}
.h11{height:302.580000px;}
.h2{height:409.735547px;}
.h12{height:604.980000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w4{width:159.840000px;}
.w3{width:290.700000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x2c{left:14.580000px;}
.x27{left:16.200000px;}
.x2a{left:25.305000px;}
.x5{left:136.367947px;}
.x2{left:173.054947px;}
.x26{left:249.840000px;}
.x25{left:282.419947px;}
.x1f{left:287.459947px;}
.x2e{left:289.829947px;}
.x20{left:296.639947px;}
.x23{left:303.839947px;}
.x22{left:305.099947px;}
.x24{left:309.239947px;}
.x2d{left:340.199947px;}
.x21{left:345.239947px;}
.x4b{left:356.399947px;}
.x1{left:379.874947px;}
.x30{left:421.814947px;}
.x38{left:435.704947px;}
.x39{left:446.144947px;}
.x40{left:449.279947px;}
.x41{left:457.379947px;}
.x37{left:461.264947px;}
.x42{left:476.279947px;}
.x16{left:512.204947px;}
.x6{left:564.869947px;}
.x28{left:592.379947px;}
.x11{left:633.389947px;}
.x3e{left:641.414947px;}
.x3f{left:644.114947px;}
.x29{left:652.500000px;}
.x2b{left:702.284947px;}
.x4{left:746.894947px;}
.x18{left:748.544947px;}
.x1c{left:750.344947px;}
.x19{left:781.484947px;}
.x17{left:802.544947px;}
.x1d{left:827.744947px;}
.x3a{left:834.584947px;}
.x45{left:838.514947px;}
.x1b{left:839.624947px;}
.x3b{left:844.844947px;}
.x47{left:847.154947px;}
.x3c{left:849.704947px;}
.x46{left:859.574947px;}
.x3d{left:864.824947px;}
.x1a{left:894.524947px;}
.x44{left:1075.064947px;}
.x43{left:1078.484947px;}
.x15{left:1149.449947px;}
.x48{left:1217.444947px;}
.x49{left:1226.984947px;}
.x4a{left:1243.004947px;}
.xf{left:1372.604947px;}
.x2f{left:1573.229947px;}
.x14{left:1626.869947px;}
.xc{left:1639.289947px;}
.x3{left:1683.539947px;}
.x10{left:1922.189947px;}
.x1e{left:1926.719947px;}
.xb{left:2133.539947px;}
.x12{left:2139.809947px;}
.xa{left:2387.519947px;}
.x31{left:2468.774947px;}
.x32{left:2474.564947px;}
.x34{left:2484.209947px;}
.x33{left:2528.564947px;}
.x35{left:2538.209947px;}
.xd{left:2614.754947px;}
.xe{left:2669.834947px;}
.x36{left:2730.134947px;}
.x4d{left:2763.509947px;}
.x4c{left:2765.054947px;}
.x8{left:2772.149947px;}
.x9{left:2785.214947px;}
.x7{left:2861.354947px;}
.x13{left:2877.269947px;}
@media print{
.v2{vertical-align:-44.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:44.800000pt;}
.v4{vertical-align:57.813333pt;}
.v1{vertical-align:76.800000pt;}
.ls15{letter-spacing:-0.222400pt;}
.ls16{letter-spacing:-0.212267pt;}
.ls11{letter-spacing:-0.171733pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.118933pt;}
.ls17{letter-spacing:-0.116267pt;}
.lsf{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.029440pt;}
.ls1{letter-spacing:0.103680pt;}
.ls10{letter-spacing:0.108267pt;}
.ls2{letter-spacing:0.118400pt;}
.ls1d{letter-spacing:0.131733pt;}
.ls0{letter-spacing:0.210347pt;}
.ls19{letter-spacing:0.224000pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls1c{letter-spacing:0.242133pt;}
.ls14{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.512000pt;}
.ls5{letter-spacing:16.817920pt;}
.lsa{letter-spacing:25.032448pt;}
.ls6{letter-spacing:25.088000pt;}
.lsb{letter-spacing:25.194667pt;}
.ls4{letter-spacing:28.531200pt;}
.ls3{letter-spacing:29.450240pt;}
.ls8{letter-spacing:73.598720pt;}
.ls7{letter-spacing:127.281920pt;}
.lsc{letter-spacing:139.763200pt;}
.ls9{letter-spacing:139.808000pt;}
.lsd{letter-spacing:143.347200pt;}
.lse{letter-spacing:143.392000pt;}
.wsd{word-spacing:-29.078400pt;}
.ws6{word-spacing:-28.906667pt;}
.wse{word-spacing:-28.880960pt;}
.ws3{word-spacing:-24.960000pt;}
.ws7{word-spacing:-24.832000pt;}
.ws2{word-spacing:-22.838400pt;}
.ws1{word-spacing:-16.706667pt;}
.ws0{word-spacing:-16.598400pt;}
.wsf{word-spacing:-14.601600pt;}
.ws11{word-spacing:-0.037120pt;}
.ws12{word-spacing:0.000000pt;}
.ws9{word-spacing:1.642667pt;}
.ws5{word-spacing:1.901013pt;}
.wsc{word-spacing:2.541013pt;}
.ws4{word-spacing:98.203520pt;}
.wsb{word-spacing:195.573333pt;}
.ws8{word-spacing:254.730667pt;}
.wsa{word-spacing:411.392000pt;}
.ws10{word-spacing:1076.957653pt;}
._5{margin-left:-2.347733pt;}
._3{margin-left:-1.086080pt;}
._0{width:1.407360pt;}
._1{width:2.558507pt;}
._4{width:4.064427pt;}
._9{width:25.878187pt;}
._8{width:26.881280pt;}
._7{width:30.307200pt;}
._2{width:34.560000pt;}
._6{width:127.281920pt;}
._f{width:166.901333pt;}
._a{width:241.894187pt;}
._11{width:246.261333pt;}
._13{width:254.208000pt;}
._10{width:271.422720pt;}
._b{width:272.968747pt;}
._e{width:275.262720pt;}
._12{width:291.328000pt;}
._d{width:359.818667pt;}
._14{width:366.997333pt;}
._c{width:483.562667pt;}
.fsf{font-size:37.120000pt;}
.fse{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs3{font-size:99.840000pt;}
.fs8{font-size:117.120000pt;}
.fs7{font-size:128.000000pt;}
.fsb{font-size:128.128000pt;}
.fsc{font-size:138.880000pt;}
.fsd{font-size:139.008000pt;}
.fs4{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs2{font-size:170.880000pt;}
.fs9{font-size:186.880000pt;}
.fs1{font-size:256.000000pt;}
.fs0{font-size:469.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:65.056000pt;}
.y37{bottom:122.973333pt;}
.ya{bottom:174.080000pt;}
.y8{bottom:245.413333pt;}
.y3a{bottom:276.573333pt;}
.y3d{bottom:276.666667pt;}
.y6{bottom:332.893333pt;}
.y5{bottom:370.880000pt;}
.y49{bottom:423.293333pt;}
.y62{bottom:439.266667pt;}
.y80{bottom:525.053333pt;}
.y7f{bottom:557.693333pt;}
.y48{bottom:565.120000pt;}
.y81{bottom:590.720000pt;}
.y47{bottom:618.906667pt;}
.y82{bottom:623.546667pt;}
.y67{bottom:632.160000pt;}
.y83{bottom:656.133333pt;}
.y68{bottom:671.840000pt;}
.y46{bottom:672.666667pt;}
.y66{bottom:681.093333pt;}
.y84{bottom:688.573333pt;}
.y6b{bottom:712.960000pt;}
.y65{bottom:720.546667pt;}
.y85{bottom:721.600000pt;}
.y45{bottom:726.426667pt;}
.y6a{bottom:731.680000pt;}
.y69{bottom:750.400000pt;}
.y86{bottom:753.946667pt;}
.y64{bottom:759.840000pt;}
.y44{bottom:780.186667pt;}
.y63{bottom:782.240000pt;}
.y79{bottom:794.853333pt;}
.y72{bottom:796.986667pt;}
.y6d{bottom:812.186667pt;}
.y71{bottom:815.706667pt;}
.y6c{bottom:830.906667pt;}
.y78{bottom:833.786667pt;}
.y43{bottom:833.946667pt;}
.y70{bottom:865.026667pt;}
.y77{bottom:871.066667pt;}
.y7b{bottom:875.546667pt;}
.y76{bottom:879.013333pt;}
.y6f{bottom:887.426667pt;}
.y42{bottom:887.706667pt;}
.y75{bottom:897.573333pt;}
.y6e{bottom:909.826667pt;}
.y74{bottom:916.293333pt;}
.y73{bottom:935.013333pt;}
.y7c{bottom:939.106667pt;}
.y41{bottom:941.466667pt;}
.y40{bottom:995.226667pt;}
.y7d{bottom:1003.173333pt;}
.y7a{bottom:1052.386667pt;}
.y7e{bottom:1065.573333pt;}
.y3c{bottom:1099.200000pt;}
.y1d{bottom:1127.706667pt;}
.y39{bottom:1189.280000pt;}
.y1e{bottom:1274.853333pt;}
.y3f{bottom:1275.706667pt;}
.y36{bottom:1323.680000pt;}
.y3e{bottom:1337.466667pt;}
.y56{bottom:1352.960000pt;}
.y55{bottom:1402.880000pt;}
.y3b{bottom:1427.453333pt;}
.y38{bottom:1446.653333pt;}
.y54{bottom:1452.826667pt;}
.y53{bottom:1502.746667pt;}
.y35{bottom:1523.933333pt;}
.y52{bottom:1552.666667pt;}
.y34{bottom:1580.253333pt;}
.y33{bottom:1636.573333pt;}
.y61{bottom:1672.893333pt;}
.y32{bottom:1692.893333pt;}
.y60{bottom:1722.173333pt;}
.y31{bottom:1749.186667pt;}
.y5f{bottom:1771.453333pt;}
.y30{bottom:1805.506667pt;}
.y5e{bottom:1820.773333pt;}
.y2f{bottom:1861.826667pt;}
.y5d{bottom:1886.053333pt;}
.y1f{bottom:1939.333333pt;}
.y5c{bottom:2000.613333pt;}
.y5b{bottom:2049.893333pt;}
.y5a{bottom:2099.173333pt;}
.y59{bottom:2148.453333pt;}
.y2e{bottom:2152.960000pt;}
.y2d{bottom:2188.826667pt;}
.y58{bottom:2197.733333pt;}
.y26{bottom:2210.720000pt;}
.y2c{bottom:2256.666667pt;}
.y57{bottom:2263.013333pt;}
.y2b{bottom:2292.506667pt;}
.y25{bottom:2372.000000pt;}
.y51{bottom:2372.773333pt;}
.y2a{bottom:2392.506667pt;}
.y50{bottom:2426.533333pt;}
.y29{bottom:2437.306667pt;}
.y24{bottom:2449.760000pt;}
.y4f{bottom:2480.320000pt;}
.y28{bottom:2510.426667pt;}
.y23{bottom:2519.520000pt;}
.y4e{bottom:2534.080000pt;}
.y4d{bottom:2587.840000pt;}
.y27{bottom:2588.186667pt;}
.y22{bottom:2613.306667pt;}
.y4c{bottom:2641.600000pt;}
.y4b{bottom:2695.360000pt;}
.y21{bottom:2699.066667pt;}
.y4a{bottom:2749.120000pt;}
.y20{bottom:2800.826667pt;}
.y15{bottom:2846.426667pt;}
.y14{bottom:2900.186667pt;}
.y13{bottom:2996.026667pt;}
.y18{bottom:3104.000000pt;}
.y12{bottom:3182.813333pt;}
.y7{bottom:3187.586667pt;}
.y1c{bottom:3213.626667pt;}
.y11{bottom:3232.093333pt;}
.y10{bottom:3281.373333pt;}
.yf{bottom:3330.653333pt;}
.ye{bottom:3379.973333pt;}
.yd{bottom:3429.253333pt;}
.yc{bottom:3478.533333pt;}
.yb{bottom:3538.853333pt;}
.y17{bottom:3553.666667pt;}
.y1b{bottom:3628.226667pt;}
.y1a{bottom:3681.986667pt;}
.y16{bottom:3689.600000pt;}
.y19{bottom:3735.746667pt;}
.y4{bottom:3811.453333pt;}
.y3{bottom:3947.520000pt;}
.y2{bottom:3996.320000pt;}
.y1{bottom:4113.280000pt;}
.h18{height:27.024375pt;}
.h19{height:27.187500pt;}
.h16{height:54.843750pt;}
.h6{height:62.343750pt;}
.h7{height:70.312500pt;}
.h4{height:77.512500pt;}
.ha{height:90.928125pt;}
.h8{height:93.750000pt;}
.h10{height:93.843750pt;}
.hb{height:99.375000pt;}
.h14{height:101.718750pt;}
.h15{height:101.812500pt;}
.hd{height:109.218750pt;}
.he{height:109.312500pt;}
.hf{height:110.456562pt;}
.h17{height:112.657083pt;}
.h9{height:132.665625pt;}
.hc{height:136.875000pt;}
.h13{height:170.550000pt;}
.h5{height:198.750000pt;}
.h3{height:209.465625pt;}
.h11{height:268.960000pt;}
.h2{height:364.209375pt;}
.h12{height:537.760000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w4{width:142.080000pt;}
.w3{width:258.400000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x2c{left:12.960000pt;}
.x27{left:14.400000pt;}
.x2a{left:22.493333pt;}
.x5{left:121.215953pt;}
.x2{left:153.826619pt;}
.x26{left:222.080000pt;}
.x25{left:251.039953pt;}
.x1f{left:255.519953pt;}
.x2e{left:257.626619pt;}
.x20{left:263.679953pt;}
.x23{left:270.079953pt;}
.x22{left:271.199953pt;}
.x24{left:274.879953pt;}
.x2d{left:302.399953pt;}
.x21{left:306.879953pt;}
.x4b{left:316.799953pt;}
.x1{left:337.666619pt;}
.x30{left:374.946619pt;}
.x38{left:387.293286pt;}
.x39{left:396.573286pt;}
.x40{left:399.359953pt;}
.x41{left:406.559953pt;}
.x37{left:410.013286pt;}
.x42{left:423.359953pt;}
.x16{left:455.293286pt;}
.x6{left:502.106619pt;}
.x28{left:526.559953pt;}
.x11{left:563.013286pt;}
.x3e{left:570.146619pt;}
.x3f{left:572.546619pt;}
.x29{left:580.000000pt;}
.x2b{left:624.253286pt;}
.x4{left:663.906619pt;}
.x18{left:665.373286pt;}
.x1c{left:666.973286pt;}
.x19{left:694.653286pt;}
.x17{left:713.373286pt;}
.x1d{left:735.773286pt;}
.x3a{left:741.853286pt;}
.x45{left:745.346619pt;}
.x1b{left:746.333286pt;}
.x3b{left:750.973286pt;}
.x47{left:753.026619pt;}
.x3c{left:755.293286pt;}
.x46{left:764.066619pt;}
.x3d{left:768.733286pt;}
.x1a{left:795.133286pt;}
.x44{left:955.613286pt;}
.x43{left:958.653286pt;}
.x15{left:1021.733286pt;}
.x48{left:1082.173286pt;}
.x49{left:1090.653286pt;}
.x4a{left:1104.893286pt;}
.xf{left:1220.093286pt;}
.x2f{left:1398.426619pt;}
.x14{left:1446.106619pt;}
.xc{left:1457.146619pt;}
.x3{left:1496.479953pt;}
.x10{left:1708.613286pt;}
.x1e{left:1712.639953pt;}
.xb{left:1896.479953pt;}
.x12{left:1902.053286pt;}
.xa{left:2122.239953pt;}
.x31{left:2194.466619pt;}
.x32{left:2199.613286pt;}
.x34{left:2208.186619pt;}
.x33{left:2247.613286pt;}
.x35{left:2256.186619pt;}
.xd{left:2324.226619pt;}
.xe{left:2373.186619pt;}
.x36{left:2426.786619pt;}
.x4d{left:2456.453286pt;}
.x4c{left:2457.826619pt;}
.x8{left:2464.133286pt;}
.x9{left:2475.746619pt;}
.x7{left:2543.426619pt;}
.x13{left:2557.573286pt;}
}




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