
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d26df496a84992186c89f7b3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_891aee174192b581a33c37e5.woff2')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_fdc610cfe03bde2038536265.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_a7b4c3f0240d7f005f2a0b60.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_965aa25a70cbb19d8a9bd018.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_f33561efdc655ef6d9502c33.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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;}
.lsa{letter-spacing:-1.044000px;}
.ls1a{letter-spacing:-0.960000px;}
.ls28{letter-spacing:-0.894000px;}
.ls16{letter-spacing:-0.798000px;}
.ls7{letter-spacing:-0.570000px;}
.ls27{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.431400px;}
.lsf{letter-spacing:-0.414000px;}
.ls1d{letter-spacing:-0.326400px;}
.ls13{letter-spacing:-0.240600px;}
.ls1c{letter-spacing:-0.172200px;}
.ls9{letter-spacing:-0.115800px;}
.ls2a{letter-spacing:-0.107400px;}
.ls17{letter-spacing:-0.064800px;}
.ls11{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.140400px;}
.ls20{letter-spacing:0.174000px;}
.ls29{letter-spacing:0.179280px;}
.ls1e{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.186600px;}
.ls21{letter-spacing:0.288600px;}
.ls10{letter-spacing:0.306000px;}
.ls25{letter-spacing:0.433440px;}
.ls15{letter-spacing:0.479400px;}
.ls23{letter-spacing:0.479520px;}
.ls4{letter-spacing:0.617760px;}
.ls26{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.780000px;}
.ls12{letter-spacing:0.906000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1f{letter-spacing:2.106720px;}
.lsc{letter-spacing:5.706720px;}
.ls24{letter-spacing:12.186720px;}
.lsb{letter-spacing:21.546720px;}
.lsd{letter-spacing:33.930720px;}
.ls3{letter-spacing:38.106720px;}
.ls22{letter-spacing:42.570720px;}
.lse{letter-spacing:60.570720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws7{word-spacing:-14.411760px;}
.wsc{word-spacing:-14.165760px;}
.wsb{word-spacing:-13.646160px;}
.wsa{word-spacing:-13.566360px;}
.ws3{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.398360px;}
.ws4{word-spacing:-13.389960px;}
.ws8{word-spacing:-13.333560px;}
.ws9{word-spacing:-13.179360px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-1447.868880px;}
._2{margin-left:-1329.359040px;}
._3{margin-left:-1001.739360px;}
._5{margin-left:-578.465760px;}
._18{margin-left:-4.238400px;}
._12{margin-left:-2.988000px;}
._1{margin-left:-1.987200px;}
._0{width:1.394400px;}
._7{width:3.103200px;}
._8{width:4.242960px;}
._9{width:5.269200px;}
._b{width:6.724560px;}
._11{width:7.888320px;}
._c{width:9.575520px;}
._a{width:10.936080px;}
._d{width:11.952000px;}
._e{width:14.940000px;}
._13{width:16.553520px;}
._17{width:18.031440px;}
._10{width:19.317600px;}
._f{width:20.617200px;}
._19{width:21.692880px;}
._1a{width:22.809840px;}
._16{width:24.023520px;}
._15{width:25.218720px;}
._21{width:40.218480px;}
._22{width:42.435600px;}
._1e{width:45.218400px;}
._1f{width:46.539600px;}
._20{width:48.008640px;}
._6{width:51.423120px;}
._1d{width:66.365040px;}
._1b{width:67.469040px;}
._1c{width:68.852400px;}
._14{width:202.638240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.416000px;}
.y7b{bottom:91.296000px;}
.y31{bottom:94.356000px;}
.ya8{bottom:97.596000px;}
.y97{bottom:103.356000px;}
.ya7{bottom:109.476000px;}
.y7a{bottom:112.356000px;}
.y30{bottom:115.416000px;}
.y96{bottom:124.416000px;}
.y79{bottom:133.416000px;}
.y2f{bottom:136.476000px;}
.ya6{bottom:142.416000px;}
.y95{bottom:145.476000px;}
.y78{bottom:154.470000px;}
.y2e{bottom:157.530000px;}
.ya5{bottom:163.470000px;}
.y94{bottom:166.530000px;}
.y77{bottom:175.530000px;}
.y2d{bottom:178.590000px;}
.ya4{bottom:184.530000px;}
.y93{bottom:187.590000px;}
.y76{bottom:196.590000px;}
.y2c{bottom:199.650000px;}
.ya3{bottom:205.590000px;}
.y92{bottom:208.650000px;}
.y75{bottom:217.650000px;}
.y2b{bottom:220.710000px;}
.ya2{bottom:226.650000px;}
.y91{bottom:229.710000px;}
.y74{bottom:238.710000px;}
.y2a{bottom:241.770000px;}
.ya1{bottom:247.710000px;}
.y90{bottom:250.770000px;}
.y73{bottom:259.770000px;}
.y29{bottom:262.830000px;}
.ya0{bottom:268.770000px;}
.y8f{bottom:271.830000px;}
.y72{bottom:280.830000px;}
.y28{bottom:283.935000px;}
.y9f{bottom:289.875000px;}
.y8e{bottom:292.935000px;}
.y71{bottom:301.935000px;}
.y27{bottom:304.995000px;}
.y9e{bottom:310.935000px;}
.y8d{bottom:313.995000px;}
.y70{bottom:322.995000px;}
.y26{bottom:326.055000px;}
.y9d{bottom:331.995000px;}
.y8c{bottom:335.055000px;}
.y6f{bottom:344.055000px;}
.y25{bottom:347.115000px;}
.y9c{bottom:353.055000px;}
.y8b{bottom:356.115000px;}
.y6e{bottom:365.115000px;}
.y24{bottom:368.175000px;}
.y9b{bottom:374.115000px;}
.y8a{bottom:377.175000px;}
.y6d{bottom:386.175000px;}
.y23{bottom:389.055000px;}
.y56{bottom:389.235000px;}
.y9a{bottom:395.175000px;}
.y89{bottom:398.235000px;}
.y6c{bottom:407.235000px;}
.y22{bottom:410.115000px;}
.y55{bottom:410.295000px;}
.y99{bottom:416.235000px;}
.y88{bottom:419.295000px;}
.y6b{bottom:428.295000px;}
.y21{bottom:431.175000px;}
.y98{bottom:437.295000px;}
.y87{bottom:440.355000px;}
.y54{bottom:446.475000px;}
.y6a{bottom:449.355000px;}
.y20{bottom:452.235000px;}
.y86{bottom:461.415000px;}
.y53{bottom:467.355000px;}
.y69{bottom:470.415000px;}
.y1f{bottom:473.295000px;}
.y85{bottom:482.475000px;}
.y52{bottom:488.415000px;}
.y68{bottom:491.475000px;}
.y1e{bottom:494.355000px;}
.y84{bottom:503.535000px;}
.y51{bottom:509.475000px;}
.y67{bottom:512.535000px;}
.y1d{bottom:515.415000px;}
.y83{bottom:524.595000px;}
.y50{bottom:530.535000px;}
.y66{bottom:533.595000px;}
.y1c{bottom:536.475000px;}
.y82{bottom:545.655000px;}
.y4f{bottom:551.595000px;}
.y65{bottom:554.655000px;}
.y1b{bottom:557.535000px;}
.y81{bottom:566.745000px;}
.y64{bottom:575.745000px;}
.y1a{bottom:578.805000px;}
.y4e{bottom:584.745000px;}
.y80{bottom:587.805000px;}
.y63{bottom:596.805000px;}
.y19{bottom:602.025000px;}
.y4d{bottom:605.805000px;}
.y7f{bottom:608.865000px;}
.y62{bottom:617.865000px;}
.y4c{bottom:626.865000px;}
.y7e{bottom:629.925000px;}
.y18{bottom:632.085000px;}
.y61{bottom:638.925000px;}
.y4b{bottom:647.925000px;}
.y7d{bottom:650.805000px;}
.y17{bottom:653.145000px;}
.y60{bottom:659.805000px;}
.y4a{bottom:668.985000px;}
.y7c{bottom:671.865000px;}
.y16{bottom:674.205000px;}
.y5f{bottom:680.865000px;}
.y49{bottom:690.045000px;}
.y15{bottom:695.265000px;}
.y5e{bottom:701.925000px;}
.y48{bottom:711.105000px;}
.y14{bottom:716.325000px;}
.y5d{bottom:722.985000px;}
.y47{bottom:732.165000px;}
.y13{bottom:737.385000px;}
.y5c{bottom:744.045000px;}
.y46{bottom:753.225000px;}
.y12{bottom:758.445000px;}
.y5b{bottom:765.105000px;}
.y45{bottom:774.285000px;}
.y11{bottom:779.505000px;}
.y5a{bottom:786.165000px;}
.y44{bottom:795.345000px;}
.y10{bottom:800.565000px;}
.y59{bottom:807.225000px;}
.y43{bottom:816.405000px;}
.yf{bottom:821.625000px;}
.y58{bottom:828.285000px;}
.y42{bottom:837.465000px;}
.ye{bottom:842.685000px;}
.y57{bottom:849.390000px;}
.yd{bottom:863.790000px;}
.y41{bottom:870.450000px;}
.yc{bottom:887.010000px;}
.y40{bottom:891.510000px;}
.yb{bottom:908.070000px;}
.y3f{bottom:912.570000px;}
.ya{bottom:930.030000px;}
.y3e{bottom:933.630000px;}
.y9{bottom:952.350000px;}
.y3d{bottom:954.690000px;}
.y3c{bottom:975.750000px;}
.y8{bottom:977.550000px;}
.y3b{bottom:996.810000px;}
.y7{bottom:1011.210000px;}
.y3a{bottom:1017.870000px;}
.y39{bottom:1038.930000px;}
.y5{bottom:1051.350000px;}
.y38{bottom:1059.990000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1083.570000px;}
.y36{bottom:1102.110000px;}
.y3{bottom:1115.610000px;}
.y35{bottom:1123.170000px;}
.y34{bottom:1144.260000px;}
.y2{bottom:1147.860000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1182.420000px;}
.y32{bottom:1193.220000px;}
.h2{height:56.146289px;}
.h7{height:59.439023px;}
.h5{height:61.189805px;}
.h9{height:61.423863px;}
.h8{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h4{height:98.051133px;}
.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:53.999987px;}
.x4{left:75.599987px;}
.x2{left:80.999987px;}
.x5{left:102.635987px;}
.x3{left:108.035987px;}
.x6{left:852.839987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.928000pt;}
.ls1a{letter-spacing:-0.853333pt;}
.ls28{letter-spacing:-0.794667pt;}
.ls16{letter-spacing:-0.709333pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls27{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.383467pt;}
.lsf{letter-spacing:-0.368000pt;}
.ls1d{letter-spacing:-0.290133pt;}
.ls13{letter-spacing:-0.213867pt;}
.ls1c{letter-spacing:-0.153067pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls2a{letter-spacing:-0.095467pt;}
.ls17{letter-spacing:-0.057600pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.124800pt;}
.ls20{letter-spacing:0.154667pt;}
.ls29{letter-spacing:0.159360pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.165867pt;}
.ls21{letter-spacing:0.256533pt;}
.ls10{letter-spacing:0.272000pt;}
.ls25{letter-spacing:0.385280pt;}
.ls15{letter-spacing:0.426133pt;}
.ls23{letter-spacing:0.426240pt;}
.ls4{letter-spacing:0.549120pt;}
.ls26{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.693333pt;}
.ls12{letter-spacing:0.805333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1f{letter-spacing:1.872640pt;}
.lsc{letter-spacing:5.072640pt;}
.ls24{letter-spacing:10.832640pt;}
.lsb{letter-spacing:19.152640pt;}
.lsd{letter-spacing:30.160640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls22{letter-spacing:37.840640pt;}
.lse{letter-spacing:53.840640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.810453pt;}
.wsc{word-spacing:-12.591787pt;}
.wsb{word-spacing:-12.129920pt;}
.wsa{word-spacing:-12.058987pt;}
.ws3{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.909653pt;}
.ws4{word-spacing:-11.902187pt;}
.ws8{word-spacing:-11.852053pt;}
.ws9{word-spacing:-11.714987pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-1286.994560pt;}
._2{margin-left:-1181.652480pt;}
._3{margin-left:-890.434987pt;}
._5{margin-left:-514.191787pt;}
._18{margin-left:-3.767467pt;}
._12{margin-left:-2.656000pt;}
._1{margin-left:-1.766400pt;}
._0{width:1.239467pt;}
._7{width:2.758400pt;}
._8{width:3.771520pt;}
._9{width:4.683733pt;}
._b{width:5.977387pt;}
._11{width:7.011840pt;}
._c{width:8.511573pt;}
._a{width:9.720960pt;}
._d{width:10.624000pt;}
._e{width:13.280000pt;}
._13{width:14.714240pt;}
._17{width:16.027947pt;}
._10{width:17.171200pt;}
._f{width:18.326400pt;}
._19{width:19.282560pt;}
._1a{width:20.275413pt;}
._16{width:21.354240pt;}
._15{width:22.416640pt;}
._21{width:35.749760pt;}
._22{width:37.720533pt;}
._1e{width:40.194133pt;}
._1f{width:41.368533pt;}
._20{width:42.674347pt;}
._6{width:45.709440pt;}
._1d{width:58.991147pt;}
._1b{width:59.972480pt;}
._1c{width:61.202133pt;}
._14{width:180.122880pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.592000pt;}
.y7b{bottom:81.152000pt;}
.y31{bottom:83.872000pt;}
.ya8{bottom:86.752000pt;}
.y97{bottom:91.872000pt;}
.ya7{bottom:97.312000pt;}
.y7a{bottom:99.872000pt;}
.y30{bottom:102.592000pt;}
.y96{bottom:110.592000pt;}
.y79{bottom:118.592000pt;}
.y2f{bottom:121.312000pt;}
.ya6{bottom:126.592000pt;}
.y95{bottom:129.312000pt;}
.y78{bottom:137.306667pt;}
.y2e{bottom:140.026667pt;}
.ya5{bottom:145.306667pt;}
.y94{bottom:148.026667pt;}
.y77{bottom:156.026667pt;}
.y2d{bottom:158.746667pt;}
.ya4{bottom:164.026667pt;}
.y93{bottom:166.746667pt;}
.y76{bottom:174.746667pt;}
.y2c{bottom:177.466667pt;}
.ya3{bottom:182.746667pt;}
.y92{bottom:185.466667pt;}
.y75{bottom:193.466667pt;}
.y2b{bottom:196.186667pt;}
.ya2{bottom:201.466667pt;}
.y91{bottom:204.186667pt;}
.y74{bottom:212.186667pt;}
.y2a{bottom:214.906667pt;}
.ya1{bottom:220.186667pt;}
.y90{bottom:222.906667pt;}
.y73{bottom:230.906667pt;}
.y29{bottom:233.626667pt;}
.ya0{bottom:238.906667pt;}
.y8f{bottom:241.626667pt;}
.y72{bottom:249.626667pt;}
.y28{bottom:252.386667pt;}
.y9f{bottom:257.666667pt;}
.y8e{bottom:260.386667pt;}
.y71{bottom:268.386667pt;}
.y27{bottom:271.106667pt;}
.y9e{bottom:276.386667pt;}
.y8d{bottom:279.106667pt;}
.y70{bottom:287.106667pt;}
.y26{bottom:289.826667pt;}
.y9d{bottom:295.106667pt;}
.y8c{bottom:297.826667pt;}
.y6f{bottom:305.826667pt;}
.y25{bottom:308.546667pt;}
.y9c{bottom:313.826667pt;}
.y8b{bottom:316.546667pt;}
.y6e{bottom:324.546667pt;}
.y24{bottom:327.266667pt;}
.y9b{bottom:332.546667pt;}
.y8a{bottom:335.266667pt;}
.y6d{bottom:343.266667pt;}
.y23{bottom:345.826667pt;}
.y56{bottom:345.986667pt;}
.y9a{bottom:351.266667pt;}
.y89{bottom:353.986667pt;}
.y6c{bottom:361.986667pt;}
.y22{bottom:364.546667pt;}
.y55{bottom:364.706667pt;}
.y99{bottom:369.986667pt;}
.y88{bottom:372.706667pt;}
.y6b{bottom:380.706667pt;}
.y21{bottom:383.266667pt;}
.y98{bottom:388.706667pt;}
.y87{bottom:391.426667pt;}
.y54{bottom:396.866667pt;}
.y6a{bottom:399.426667pt;}
.y20{bottom:401.986667pt;}
.y86{bottom:410.146667pt;}
.y53{bottom:415.426667pt;}
.y69{bottom:418.146667pt;}
.y1f{bottom:420.706667pt;}
.y85{bottom:428.866667pt;}
.y52{bottom:434.146667pt;}
.y68{bottom:436.866667pt;}
.y1e{bottom:439.426667pt;}
.y84{bottom:447.586667pt;}
.y51{bottom:452.866667pt;}
.y67{bottom:455.586667pt;}
.y1d{bottom:458.146667pt;}
.y83{bottom:466.306667pt;}
.y50{bottom:471.586667pt;}
.y66{bottom:474.306667pt;}
.y1c{bottom:476.866667pt;}
.y82{bottom:485.026667pt;}
.y4f{bottom:490.306667pt;}
.y65{bottom:493.026667pt;}
.y1b{bottom:495.586667pt;}
.y81{bottom:503.773333pt;}
.y64{bottom:511.773333pt;}
.y1a{bottom:514.493333pt;}
.y4e{bottom:519.773333pt;}
.y80{bottom:522.493333pt;}
.y63{bottom:530.493333pt;}
.y19{bottom:535.133333pt;}
.y4d{bottom:538.493333pt;}
.y7f{bottom:541.213333pt;}
.y62{bottom:549.213333pt;}
.y4c{bottom:557.213333pt;}
.y7e{bottom:559.933333pt;}
.y18{bottom:561.853333pt;}
.y61{bottom:567.933333pt;}
.y4b{bottom:575.933333pt;}
.y7d{bottom:578.493333pt;}
.y17{bottom:580.573333pt;}
.y60{bottom:586.493333pt;}
.y4a{bottom:594.653333pt;}
.y7c{bottom:597.213333pt;}
.y16{bottom:599.293333pt;}
.y5f{bottom:605.213333pt;}
.y49{bottom:613.373333pt;}
.y15{bottom:618.013333pt;}
.y5e{bottom:623.933333pt;}
.y48{bottom:632.093333pt;}
.y14{bottom:636.733333pt;}
.y5d{bottom:642.653333pt;}
.y47{bottom:650.813333pt;}
.y13{bottom:655.453333pt;}
.y5c{bottom:661.373333pt;}
.y46{bottom:669.533333pt;}
.y12{bottom:674.173333pt;}
.y5b{bottom:680.093333pt;}
.y45{bottom:688.253333pt;}
.y11{bottom:692.893333pt;}
.y5a{bottom:698.813333pt;}
.y44{bottom:706.973333pt;}
.y10{bottom:711.613333pt;}
.y59{bottom:717.533333pt;}
.y43{bottom:725.693333pt;}
.yf{bottom:730.333333pt;}
.y58{bottom:736.253333pt;}
.y42{bottom:744.413333pt;}
.ye{bottom:749.053333pt;}
.y57{bottom:755.013333pt;}
.yd{bottom:767.813333pt;}
.y41{bottom:773.733333pt;}
.yc{bottom:788.453333pt;}
.y40{bottom:792.453333pt;}
.yb{bottom:807.173333pt;}
.y3f{bottom:811.173333pt;}
.ya{bottom:826.693333pt;}
.y3e{bottom:829.893333pt;}
.y9{bottom:846.533333pt;}
.y3d{bottom:848.613333pt;}
.y3c{bottom:867.333333pt;}
.y8{bottom:868.933333pt;}
.y3b{bottom:886.053333pt;}
.y7{bottom:898.853333pt;}
.y3a{bottom:904.773333pt;}
.y39{bottom:923.493333pt;}
.y5{bottom:934.533333pt;}
.y38{bottom:942.213333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:963.173333pt;}
.y36{bottom:979.653333pt;}
.y3{bottom:991.653333pt;}
.y35{bottom:998.373333pt;}
.y34{bottom:1017.120000pt;}
.y2{bottom:1020.320000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1051.040000pt;}
.y32{bottom:1060.640000pt;}
.h2{height:49.907812pt;}
.h7{height:52.834688pt;}
.h5{height:54.390938pt;}
.h9{height:54.598989pt;}
.h8{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h4{height:87.156562pt;}
.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:47.999988pt;}
.x4{left:67.199988pt;}
.x2{left:71.999988pt;}
.x5{left:91.231988pt;}
.x3{left:96.031988pt;}
.x6{left:758.079988pt;}
}




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