
    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_890b739bd5806e49a6457573.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ae7ba15e3a782b8a455ee7d0.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8fd78853e20dab951229d83e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ec6f4b6689a73a84510da30.woff')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_f6a6dea3051a9ef28019fd25.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_28b0f4abb394cb06685ddc41.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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:-64.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3d{letter-spacing:-2.052000px;}
.ls20{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.561600px;}
.ls3f{letter-spacing:-0.540000px;}
.ls41{letter-spacing:-0.486000px;}
.ls42{letter-spacing:-0.460200px;}
.ls11{letter-spacing:-0.360000px;}
.ls3b{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.269400px;}
.ls1a{letter-spacing:-0.262200px;}
.ls13{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.158400px;}
.ls40{letter-spacing:-0.126000px;}
.ls1b{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018000px;}
.lse{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls3e{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.109200px;}
.ls1d{letter-spacing:0.126000px;}
.ls3c{letter-spacing:0.138000px;}
.ls1{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.269400px;}
.ls19{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.561600px;}
.ls30{letter-spacing:0.720000px;}
.ls2d{letter-spacing:1.440000px;}
.ls38{letter-spacing:2.160000px;}
.ls3a{letter-spacing:2.340000px;}
.ls2e{letter-spacing:2.880000px;}
.ls35{letter-spacing:3.576000px;}
.ls37{letter-spacing:3.600000px;}
.ls2c{letter-spacing:4.296000px;}
.ls23{letter-spacing:7.920000px;}
.ls17{letter-spacing:8.640000px;}
.ls36{letter-spacing:9.336000px;}
.ls22{letter-spacing:9.360000px;}
.ls8{letter-spacing:13.860000px;}
.ls34{letter-spacing:15.840000px;}
.ls33{letter-spacing:18.720000px;}
.ls18{letter-spacing:19.080000px;}
.ls5{letter-spacing:26.076000px;}
.lsa{letter-spacing:26.100000px;}
.ls6{letter-spacing:26.280000px;}
.ls31{letter-spacing:26.640000px;}
.ls32{letter-spacing:30.240000px;}
.ls7{letter-spacing:30.420000px;}
.ls2b{letter-spacing:32.580000px;}
.ls21{letter-spacing:33.840000px;}
.ls9{letter-spacing:37.620000px;}
.ls26{letter-spacing:38.880000px;}
.ls2a{letter-spacing:46.080000px;}
.ls24{letter-spacing:58.320000px;}
.ls25{letter-spacing:61.200000px;}
.ls27{letter-spacing:72.720000px;}
.ls29{letter-spacing:113.040000px;}
.ls39{letter-spacing:715.116000px;}
.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;}
}
.ws18{word-spacing:-16.698000px;}
.ws11{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.450800px;}
.ws16{word-spacing:-16.401600px;}
.wsf{word-spacing:-16.297800px;}
.ws17{word-spacing:-16.254600px;}
.ws15{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws13{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.716000px;}
.ws12{word-spacing:-13.626000px;}
.wsb{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.410000px;}
.wsd{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.374000px;}
.wsa{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.230000px;}
.ws19{word-spacing:-13.140000px;}
.ws1b{word-spacing:-13.014000px;}
.ws6{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.wse{word-spacing:0.000000px;}
._32{margin-left:-7.192080px;}
._33{margin-left:-4.966800px;}
._5{margin-left:-3.726000px;}
._4{margin-left:-2.160000px;}
._1{margin-left:-1.002480px;}
._0{width:1.083600px;}
._7{width:2.204400px;}
._1b{width:3.226080px;}
._b{width:4.266000px;}
._10{width:5.670000px;}
._19{width:6.804000px;}
._1a{width:7.808400px;}
._8{width:9.342000px;}
._13{width:10.692000px;}
._25{width:12.318000px;}
._24{width:13.530480px;}
._e{width:14.796000px;}
._c{width:16.200000px;}
._d{width:17.280000px;}
._f{width:18.360000px;}
._1f{width:20.275440px;}
._1c{width:22.248480px;}
._1d{width:23.481120px;}
._6{width:25.880400px;}
._18{width:27.486000px;}
._9{width:29.664000px;}
._a{width:31.284000px;}
._2{width:32.724000px;}
._3{width:34.063440px;}
._12{width:37.255440px;}
._11{width:38.448000px;}
._37{width:39.519840px;}
._38{width:41.227200px;}
._35{width:44.203920px;}
._30{width:45.213360px;}
._23{width:47.151840px;}
._17{width:48.156480px;}
._16{width:49.458000px;}
._14{width:51.084000px;}
._34{width:52.920480px;}
._21{width:54.529920px;}
._20{width:55.705200px;}
._1e{width:57.453360px;}
._2d{width:58.797360px;}
._2e{width:61.104480px;}
._31{width:64.664640px;}
._26{width:70.545600px;}
._27{width:72.043200px;}
._29{width:73.326720px;}
._3c{width:76.893120px;}
._3b{width:78.710400px;}
._2c{width:81.613200px;}
._28{width:83.701440px;}
._15{width:88.128000px;}
._22{width:98.116560px;}
._2a{width:103.533120px;}
._2b{width:104.890080px;}
._2f{width:112.887360px;}
._3a{width:123.140160px;}
._36{width:148.118640px;}
._39{width:153.005040px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:12.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.880000px;}
.y7f{bottom:90.360000px;}
.y30{bottom:94.860000px;}
.y59{bottom:100.836000px;}
.y8e{bottom:103.896000px;}
.y7e{bottom:109.476000px;}
.y2f{bottom:110.376000px;}
.y58{bottom:119.736000px;}
.y8d{bottom:120.996000px;}
.y2e{bottom:125.856000px;}
.y7d{bottom:128.376000px;}
.y8c{bottom:138.096000px;}
.y57{bottom:138.816000px;}
.y2d{bottom:141.516000px;}
.y7c{bottom:147.456000px;}
.y8b{bottom:153.570000px;}
.y2c{bottom:156.990000px;}
.y56{bottom:157.710000px;}
.y7b{bottom:166.350000px;}
.y8a{bottom:169.050000px;}
.y2b{bottom:172.470000px;}
.y55{bottom:176.790000px;}
.y89{bottom:184.530000px;}
.y7a{bottom:185.250000px;}
.y2a{bottom:187.950000px;}
.y54{bottom:195.690000px;}
.y88{bottom:200.190000px;}
.y29{bottom:203.610000px;}
.y79{bottom:204.330000px;}
.y53{bottom:214.590000px;}
.y87{bottom:215.670000px;}
.y28{bottom:219.090000px;}
.y78{bottom:223.230000px;}
.y86{bottom:231.150000px;}
.y52{bottom:233.670000px;}
.y27{bottom:234.570000px;}
.y77{bottom:242.310000px;}
.y85{bottom:246.630000px;}
.y26{bottom:250.050000px;}
.y51{bottom:252.570000px;}
.y76{bottom:261.210000px;}
.y84{bottom:262.290000px;}
.y25{bottom:265.710000px;}
.y50{bottom:271.650000px;}
.y83{bottom:277.815000px;}
.y75{bottom:280.155000px;}
.y24{bottom:281.235000px;}
.y4f{bottom:290.595000px;}
.y82{bottom:293.295000px;}
.y23{bottom:296.715000px;}
.y74{bottom:299.235000px;}
.y81{bottom:308.775000px;}
.y4e{bottom:309.495000px;}
.y22{bottom:312.195000px;}
.y73{bottom:318.135000px;}
.y80{bottom:324.255000px;}
.y21{bottom:327.855000px;}
.y4d{bottom:328.575000px;}
.y72{bottom:337.215000px;}
.y20{bottom:343.335000px;}
.y4c{bottom:347.475000px;}
.y71{bottom:356.115000px;}
.y1f{bottom:358.815000px;}
.y4b{bottom:366.555000px;}
.y1e{bottom:374.295000px;}
.y70{bottom:375.195000px;}
.y4a{bottom:385.455000px;}
.y1d{bottom:389.955000px;}
.y6f{bottom:394.095000px;}
.y49{bottom:404.355000px;}
.y1c{bottom:405.435000px;}
.y6e{bottom:412.995000px;}
.y1b{bottom:420.915000px;}
.y48{bottom:423.435000px;}
.y6d{bottom:432.075000px;}
.y1a{bottom:436.395000px;}
.y47{bottom:442.335000px;}
.y6c{bottom:450.975000px;}
.y19{bottom:452.055000px;}
.y46{bottom:461.445000px;}
.y18{bottom:467.565000px;}
.y6b{bottom:470.085000px;}
.y45{bottom:480.345000px;}
.y17{bottom:483.045000px;}
.y6a{bottom:488.985000px;}
.y16{bottom:498.525000px;}
.y44{bottom:499.245000px;}
.y69{bottom:507.885000px;}
.y15{bottom:514.185000px;}
.y43{bottom:518.325000px;}
.y68{bottom:526.965000px;}
.y14{bottom:529.665000px;}
.y42{bottom:537.225000px;}
.y13{bottom:545.145000px;}
.y67{bottom:545.865000px;}
.y41{bottom:556.305000px;}
.y12{bottom:560.625000px;}
.y66{bottom:564.945000px;}
.y40{bottom:575.205000px;}
.y11{bottom:576.285000px;}
.y65{bottom:583.845000px;}
.y10{bottom:591.765000px;}
.y3f{bottom:593.385000px;}
.y64{bottom:602.745000px;}
.yf{bottom:607.245000px;}
.y3e{bottom:609.045000px;}
.y63{bottom:621.825000px;}
.ye{bottom:622.725000px;}
.y3d{bottom:624.525000px;}
.yd{bottom:638.250000px;}
.y3c{bottom:640.050000px;}
.y62{bottom:640.770000px;}
.yc{bottom:653.910000px;}
.y3b{bottom:655.530000px;}
.y61{bottom:659.850000px;}
.yb{bottom:669.390000px;}
.y3a{bottom:671.190000px;}
.y60{bottom:678.750000px;}
.ya{bottom:685.590000px;}
.y39{bottom:686.670000px;}
.y5f{bottom:697.650000px;}
.y38{bottom:702.150000px;}
.y9{bottom:704.670000px;}
.y5e{bottom:716.730000px;}
.y37{bottom:717.630000px;}
.y8{bottom:723.570000px;}
.y36{bottom:733.290000px;}
.y5d{bottom:735.630000px;}
.y7{bottom:742.650000px;}
.y35{bottom:748.770000px;}
.y5c{bottom:754.710000px;}
.y6{bottom:761.550000px;}
.y34{bottom:764.250000px;}
.y5b{bottom:773.610000px;}
.y5{bottom:777.570000px;}
.y33{bottom:779.730000px;}
.y4{bottom:782.790000px;}
.y5a{bottom:792.690000px;}
.y32{bottom:795.390000px;}
.y3{bottom:796.650000px;}
.y31{bottom:824.580000px;}
.y1{bottom:825.840000px;}
.h6{height:12.335625px;}
.ha{height:39.049805px;}
.h4{height:47.344922px;}
.hd{height:47.901094px;}
.h9{height:52.998047px;}
.hb{height:54.421875px;}
.hf{height:54.596250px;}
.h10{height:58.621992px;}
.h7{height:58.833281px;}
.h2{height:60.226875px;}
.he{height:64.978594px;}
.hc{height:65.010937px;}
.h5{height:65.884219px;}
.h8{height:66.757500px;}
.h3{height:70.664062px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x3{left:84.995991px;}
.x4{left:96.695991px;}
.x1{left:98.855991px;}
.x9{left:131.795991px;}
.x5{left:133.235991px;}
.xa{left:218.054991px;}
.x6{left:236.594991px;}
.x8{left:270.074991px;}
.x2{left:301.214991px;}
.x7{left:314.714991px;}
.xb{left:329.474991px;}
@media print{
.v2{vertical-align:-57.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3d{letter-spacing:-1.824000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.499200pt;}
.ls3f{letter-spacing:-0.480000pt;}
.ls41{letter-spacing:-0.432000pt;}
.ls42{letter-spacing:-0.409067pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls3b{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.239467pt;}
.ls1a{letter-spacing:-0.233067pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.140800pt;}
.ls40{letter-spacing:-0.112000pt;}
.ls1b{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls3e{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.097067pt;}
.ls1d{letter-spacing:0.112000pt;}
.ls3c{letter-spacing:0.122667pt;}
.ls1{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.239467pt;}
.ls19{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.499200pt;}
.ls30{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.920000pt;}
.ls3a{letter-spacing:2.080000pt;}
.ls2e{letter-spacing:2.560000pt;}
.ls35{letter-spacing:3.178667pt;}
.ls37{letter-spacing:3.200000pt;}
.ls2c{letter-spacing:3.818667pt;}
.ls23{letter-spacing:7.040000pt;}
.ls17{letter-spacing:7.680000pt;}
.ls36{letter-spacing:8.298667pt;}
.ls22{letter-spacing:8.320000pt;}
.ls8{letter-spacing:12.320000pt;}
.ls34{letter-spacing:14.080000pt;}
.ls33{letter-spacing:16.640000pt;}
.ls18{letter-spacing:16.960000pt;}
.ls5{letter-spacing:23.178667pt;}
.lsa{letter-spacing:23.200000pt;}
.ls6{letter-spacing:23.360000pt;}
.ls31{letter-spacing:23.680000pt;}
.ls32{letter-spacing:26.880000pt;}
.ls7{letter-spacing:27.040000pt;}
.ls2b{letter-spacing:28.960000pt;}
.ls21{letter-spacing:30.080000pt;}
.ls9{letter-spacing:33.440000pt;}
.ls26{letter-spacing:34.560000pt;}
.ls2a{letter-spacing:40.960000pt;}
.ls24{letter-spacing:51.840000pt;}
.ls25{letter-spacing:54.400000pt;}
.ls27{letter-spacing:64.640000pt;}
.ls29{letter-spacing:100.480000pt;}
.ls39{letter-spacing:635.658667pt;}
.ws18{word-spacing:-14.842667pt;}
.ws11{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.622933pt;}
.ws16{word-spacing:-14.579200pt;}
.wsf{word-spacing:-14.486933pt;}
.ws17{word-spacing:-14.448533pt;}
.ws15{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws13{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.192000pt;}
.ws12{word-spacing:-12.112000pt;}
.wsb{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.920000pt;}
.wsd{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.888000pt;}
.wsa{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.760000pt;}
.ws19{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-11.568000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.wse{word-spacing:0.000000pt;}
._32{margin-left:-6.392960pt;}
._33{margin-left:-4.414933pt;}
._5{margin-left:-3.312000pt;}
._4{margin-left:-1.920000pt;}
._1{margin-left:-0.891093pt;}
._0{width:0.963200pt;}
._7{width:1.959467pt;}
._1b{width:2.867627pt;}
._b{width:3.792000pt;}
._10{width:5.040000pt;}
._19{width:6.048000pt;}
._1a{width:6.940800pt;}
._8{width:8.304000pt;}
._13{width:9.504000pt;}
._25{width:10.949333pt;}
._24{width:12.027093pt;}
._e{width:13.152000pt;}
._c{width:14.400000pt;}
._d{width:15.360000pt;}
._f{width:16.320000pt;}
._1f{width:18.022613pt;}
._1c{width:19.776427pt;}
._1d{width:20.872107pt;}
._6{width:23.004800pt;}
._18{width:24.432000pt;}
._9{width:26.368000pt;}
._a{width:27.808000pt;}
._2{width:29.088000pt;}
._3{width:30.278613pt;}
._12{width:33.115947pt;}
._11{width:34.176000pt;}
._37{width:35.128747pt;}
._38{width:36.646400pt;}
._35{width:39.292373pt;}
._30{width:40.189653pt;}
._23{width:41.912747pt;}
._17{width:42.805760pt;}
._16{width:43.962667pt;}
._14{width:45.408000pt;}
._34{width:47.040427pt;}
._21{width:48.471040pt;}
._20{width:49.515733pt;}
._1e{width:51.069653pt;}
._2d{width:52.264320pt;}
._2e{width:54.315093pt;}
._31{width:57.479680pt;}
._26{width:62.707200pt;}
._27{width:64.038400pt;}
._29{width:65.179307pt;}
._3c{width:68.349440pt;}
._3b{width:69.964800pt;}
._2c{width:72.545067pt;}
._28{width:74.401280pt;}
._15{width:78.336000pt;}
._22{width:87.214720pt;}
._2a{width:92.029440pt;}
._2b{width:93.235627pt;}
._2f{width:100.344320pt;}
._3a{width:109.457920pt;}
._36{width:131.661013pt;}
._39{width:136.004480pt;}
.fs4{font-size:10.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.560000pt;}
.y7f{bottom:80.320000pt;}
.y30{bottom:84.320000pt;}
.y59{bottom:89.632000pt;}
.y8e{bottom:92.352000pt;}
.y7e{bottom:97.312000pt;}
.y2f{bottom:98.112000pt;}
.y58{bottom:106.432000pt;}
.y8d{bottom:107.552000pt;}
.y2e{bottom:111.872000pt;}
.y7d{bottom:114.112000pt;}
.y8c{bottom:122.752000pt;}
.y57{bottom:123.392000pt;}
.y2d{bottom:125.792000pt;}
.y7c{bottom:131.072000pt;}
.y8b{bottom:136.506667pt;}
.y2c{bottom:139.546667pt;}
.y56{bottom:140.186667pt;}
.y7b{bottom:147.866667pt;}
.y8a{bottom:150.266667pt;}
.y2b{bottom:153.306667pt;}
.y55{bottom:157.146667pt;}
.y89{bottom:164.026667pt;}
.y7a{bottom:164.666667pt;}
.y2a{bottom:167.066667pt;}
.y54{bottom:173.946667pt;}
.y88{bottom:177.946667pt;}
.y29{bottom:180.986667pt;}
.y79{bottom:181.626667pt;}
.y53{bottom:190.746667pt;}
.y87{bottom:191.706667pt;}
.y28{bottom:194.746667pt;}
.y78{bottom:198.426667pt;}
.y86{bottom:205.466667pt;}
.y52{bottom:207.706667pt;}
.y27{bottom:208.506667pt;}
.y77{bottom:215.386667pt;}
.y85{bottom:219.226667pt;}
.y26{bottom:222.266667pt;}
.y51{bottom:224.506667pt;}
.y76{bottom:232.186667pt;}
.y84{bottom:233.146667pt;}
.y25{bottom:236.186667pt;}
.y50{bottom:241.466667pt;}
.y83{bottom:246.946667pt;}
.y75{bottom:249.026667pt;}
.y24{bottom:249.986667pt;}
.y4f{bottom:258.306667pt;}
.y82{bottom:260.706667pt;}
.y23{bottom:263.746667pt;}
.y74{bottom:265.986667pt;}
.y81{bottom:274.466667pt;}
.y4e{bottom:275.106667pt;}
.y22{bottom:277.506667pt;}
.y73{bottom:282.786667pt;}
.y80{bottom:288.226667pt;}
.y21{bottom:291.426667pt;}
.y4d{bottom:292.066667pt;}
.y72{bottom:299.746667pt;}
.y20{bottom:305.186667pt;}
.y4c{bottom:308.866667pt;}
.y71{bottom:316.546667pt;}
.y1f{bottom:318.946667pt;}
.y4b{bottom:325.826667pt;}
.y1e{bottom:332.706667pt;}
.y70{bottom:333.506667pt;}
.y4a{bottom:342.626667pt;}
.y1d{bottom:346.626667pt;}
.y6f{bottom:350.306667pt;}
.y49{bottom:359.426667pt;}
.y1c{bottom:360.386667pt;}
.y6e{bottom:367.106667pt;}
.y1b{bottom:374.146667pt;}
.y48{bottom:376.386667pt;}
.y6d{bottom:384.066667pt;}
.y1a{bottom:387.906667pt;}
.y47{bottom:393.186667pt;}
.y6c{bottom:400.866667pt;}
.y19{bottom:401.826667pt;}
.y46{bottom:410.173333pt;}
.y18{bottom:415.613333pt;}
.y6b{bottom:417.853333pt;}
.y45{bottom:426.973333pt;}
.y17{bottom:429.373333pt;}
.y6a{bottom:434.653333pt;}
.y16{bottom:443.133333pt;}
.y44{bottom:443.773333pt;}
.y69{bottom:451.453333pt;}
.y15{bottom:457.053333pt;}
.y43{bottom:460.733333pt;}
.y68{bottom:468.413333pt;}
.y14{bottom:470.813333pt;}
.y42{bottom:477.533333pt;}
.y13{bottom:484.573333pt;}
.y67{bottom:485.213333pt;}
.y41{bottom:494.493333pt;}
.y12{bottom:498.333333pt;}
.y66{bottom:502.173333pt;}
.y40{bottom:511.293333pt;}
.y11{bottom:512.253333pt;}
.y65{bottom:518.973333pt;}
.y10{bottom:526.013333pt;}
.y3f{bottom:527.453333pt;}
.y64{bottom:535.773333pt;}
.yf{bottom:539.773333pt;}
.y3e{bottom:541.373333pt;}
.y63{bottom:552.733333pt;}
.ye{bottom:553.533333pt;}
.y3d{bottom:555.133333pt;}
.yd{bottom:567.333333pt;}
.y3c{bottom:568.933333pt;}
.y62{bottom:569.573333pt;}
.yc{bottom:581.253333pt;}
.y3b{bottom:582.693333pt;}
.y61{bottom:586.533333pt;}
.yb{bottom:595.013333pt;}
.y3a{bottom:596.613333pt;}
.y60{bottom:603.333333pt;}
.ya{bottom:609.413333pt;}
.y39{bottom:610.373333pt;}
.y5f{bottom:620.133333pt;}
.y38{bottom:624.133333pt;}
.y9{bottom:626.373333pt;}
.y5e{bottom:637.093333pt;}
.y37{bottom:637.893333pt;}
.y8{bottom:643.173333pt;}
.y36{bottom:651.813333pt;}
.y5d{bottom:653.893333pt;}
.y7{bottom:660.133333pt;}
.y35{bottom:665.573333pt;}
.y5c{bottom:670.853333pt;}
.y6{bottom:676.933333pt;}
.y34{bottom:679.333333pt;}
.y5b{bottom:687.653333pt;}
.y5{bottom:691.173333pt;}
.y33{bottom:693.093333pt;}
.y4{bottom:695.813333pt;}
.y5a{bottom:704.613333pt;}
.y32{bottom:707.013333pt;}
.y3{bottom:708.133333pt;}
.y31{bottom:732.960000pt;}
.y1{bottom:734.080000pt;}
.h6{height:10.965000pt;}
.ha{height:34.710938pt;}
.h4{height:42.084375pt;}
.hd{height:42.578750pt;}
.h9{height:47.109375pt;}
.hb{height:48.375000pt;}
.hf{height:48.530000pt;}
.h10{height:52.108438pt;}
.h7{height:52.296250pt;}
.h2{height:53.535000pt;}
.he{height:57.758750pt;}
.hc{height:57.787500pt;}
.h5{height:58.563750pt;}
.h8{height:59.340000pt;}
.h3{height:62.812500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551992pt;}
.x4{left:85.951992pt;}
.x1{left:87.871992pt;}
.x9{left:117.151992pt;}
.x5{left:118.431992pt;}
.xa{left:193.826658pt;}
.x6{left:210.306658pt;}
.x8{left:240.066658pt;}
.x2{left:267.746658pt;}
.x7{left:279.746658pt;}
.xb{left:292.866658pt;}
}




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