
    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_2b258b10df8692ad10da4662.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_023f76560c35ba4248f93696.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_64b15c8425954790deaa7604.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2881cf79a1bcf1039667d220.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ec579014a8a611da1e171324.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-1.134000px;}
.ls9{letter-spacing:-0.960000px;}
.ls14{letter-spacing:-0.924000px;}
.ls16{letter-spacing:-0.579600px;}
.ls1e{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.414000px;}
.ls6{letter-spacing:-0.310800px;}
.ls13{letter-spacing:-0.240600px;}
.ls4{letter-spacing:-0.132600px;}
.ls12{letter-spacing:-0.064800px;}
.ls15{letter-spacing:-0.058320px;}
.lsd{letter-spacing:-0.041040px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.lsc{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.066000px;}
.ls0{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.174000px;}
.lse{letter-spacing:0.174240px;}
.ls1a{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.190200px;}
.ls1c{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.306000px;}
.ls19{letter-spacing:0.661680px;}
.ls11{letter-spacing:0.780000px;}
.ls1d{letter-spacing:2.465280px;}
.ls1b{letter-spacing:12.186720px;}
.ls18{letter-spacing:42.426720px;}
.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:-19.077120px;}
.wsf{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws4{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.wse{word-spacing:-13.685040px;}
.ws6{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.464720px;}
.wsd{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.440960px;}
.wsb{word-spacing:-13.265160px;}
.ws7{word-spacing:-13.091760px;}
.wsc{word-spacing:-12.581760px;}
.ws5{word-spacing:-9.437760px;}
.ws9{word-spacing:0.000000px;}
._1f{margin-left:-532.558560px;}
._21{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-240.510240px;}
._14{margin-left:-232.410240px;}
._19{margin-left:-226.537200px;}
._18{margin-left:-219.434640px;}
._11{margin-left:-202.146240px;}
._1a{margin-left:-199.946880px;}
._23{margin-left:-196.208640px;}
._22{margin-left:-188.893440px;}
._28{margin-left:-178.662240px;}
._10{margin-left:-171.054720px;}
._f{margin-left:-165.490560px;}
._25{margin-left:-154.885440px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._27{margin-left:-142.858800px;}
._12{margin-left:-141.587040px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-116.242560px;}
._26{margin-left:-110.054880px;}
._1e{margin-left:-102.349440px;}
._8{margin-left:-91.638240px;}
._1d{margin-left:-86.399760px;}
._1c{margin-left:-83.520000px;}
._15{margin-left:-82.131840px;}
._17{margin-left:-66.703680px;}
._16{margin-left:-49.583280px;}
._24{margin-left:-33.510240px;}
._1b{margin-left:-30.741360px;}
._3b{margin-left:-7.855920px;}
._2d{margin-left:-5.328720px;}
._29{margin-left:-4.288920px;}
._35{margin-left:-3.285840px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._20{width:1.082160px;}
._2c{width:2.082480px;}
._30{width:3.098400px;}
._2f{width:4.371600px;}
._33{width:6.155280px;}
._38{width:7.171200px;}
._34{width:8.175000px;}
._31{width:9.607560px;}
._32{width:11.077440px;}
._3a{width:12.191040px;}
._2a{width:14.172480px;}
._2b{width:15.312240px;}
._2e{width:16.719120px;}
._36{width:18.286560px;}
._37{width:19.317840px;}
._39{width:21.334320px;}
._3d{width:22.397040px;}
._3e{width:23.580240px;}
._3f{width:25.024560px;}
._3c{width:43.086960px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:6.660000px;}
.y5f{bottom:7.380000px;}
.y61{bottom:27.720000px;}
.y5c{bottom:30.420000px;}
.y6{bottom:60.660000px;}
.yc8{bottom:91.080000px;}
.y31{bottom:93.060000px;}
.y5a{bottom:94.320000px;}
.yac{bottom:105.120000px;}
.yc7{bottom:112.140000px;}
.y30{bottom:114.120000px;}
.y59{bottom:115.380000px;}
.yab{bottom:126.180000px;}
.yc9{bottom:131.760000px;}
.yc6{bottom:133.200000px;}
.y2f{bottom:135.180000px;}
.y58{bottom:136.440000px;}
.yaa{bottom:147.240000px;}
.yc5{bottom:154.290000px;}
.y2e{bottom:156.270000px;}
.y57{bottom:157.530000px;}
.ya9{bottom:168.330000px;}
.yc4{bottom:175.350000px;}
.y2d{bottom:177.330000px;}
.y56{bottom:178.590000px;}
.ya8{bottom:189.390000px;}
.yc3{bottom:196.410000px;}
.y2c{bottom:198.390000px;}
.y55{bottom:199.650000px;}
.ya7{bottom:210.450000px;}
.yc2{bottom:217.470000px;}
.y2b{bottom:219.450000px;}
.y85{bottom:220.530000px;}
.y54{bottom:220.710000px;}
.ya6{bottom:231.510000px;}
.yc1{bottom:238.530000px;}
.y2a{bottom:240.510000px;}
.y84{bottom:241.590000px;}
.y53{bottom:241.770000px;}
.ya5{bottom:252.570000px;}
.yc0{bottom:259.590000px;}
.y29{bottom:261.570000px;}
.y83{bottom:262.650000px;}
.y52{bottom:262.830000px;}
.ya4{bottom:273.630000px;}
.ybf{bottom:280.650000px;}
.y28{bottom:282.630000px;}
.y82{bottom:283.710000px;}
.y51{bottom:283.890000px;}
.ya3{bottom:294.690000px;}
.ybe{bottom:301.710000px;}
.y27{bottom:303.690000px;}
.y81{bottom:304.770000px;}
.y50{bottom:304.950000px;}
.ya2{bottom:315.750000px;}
.ybd{bottom:322.770000px;}
.y26{bottom:324.750000px;}
.y4f{bottom:326.010000px;}
.y80{bottom:334.830000px;}
.ya1{bottom:336.810000px;}
.y4e{bottom:343.290000px;}
.ybc{bottom:343.650000px;}
.y25{bottom:345.810000px;}
.y7f{bottom:355.890000px;}
.ya0{bottom:357.870000px;}
.ybb{bottom:364.710000px;}
.y24{bottom:366.870000px;}
.y7e{bottom:376.950000px;}
.y9f{bottom:378.930000px;}
.yba{bottom:385.770000px;}
.y23{bottom:387.930000px;}
.y7d{bottom:398.010000px;}
.y9e{bottom:399.990000px;}
.yb9{bottom:406.875000px;}
.y22{bottom:409.035000px;}
.y7c{bottom:419.115000px;}
.y9d{bottom:421.095000px;}
.yb8{bottom:427.935000px;}
.y21{bottom:430.095000px;}
.y7b{bottom:440.175000px;}
.y9c{bottom:442.155000px;}
.yb7{bottom:448.995000px;}
.y20{bottom:451.155000px;}
.y7a{bottom:461.235000px;}
.y9b{bottom:463.215000px;}
.yb6{bottom:470.055000px;}
.y1f{bottom:472.215000px;}
.y79{bottom:482.295000px;}
.y9a{bottom:484.275000px;}
.yb5{bottom:491.115000px;}
.y1e{bottom:493.275000px;}
.y78{bottom:503.355000px;}
.y99{bottom:505.335000px;}
.yb4{bottom:512.175000px;}
.y1d{bottom:514.335000px;}
.y77{bottom:524.415000px;}
.y98{bottom:526.395000px;}
.yb3{bottom:533.235000px;}
.y1c{bottom:535.395000px;}
.y76{bottom:545.475000px;}
.y97{bottom:547.455000px;}
.yb2{bottom:554.295000px;}
.y1b{bottom:556.455000px;}
.y75{bottom:566.535000px;}
.y96{bottom:568.515000px;}
.yb1{bottom:575.355000px;}
.y1a{bottom:577.515000px;}
.y74{bottom:587.595000px;}
.y95{bottom:589.575000px;}
.yb0{bottom:596.415000px;}
.y19{bottom:598.575000px;}
.y73{bottom:608.655000px;}
.y94{bottom:610.635000px;}
.yaf{bottom:616.935000px;}
.y4d{bottom:619.635000px;}
.y18{bottom:621.975000px;}
.y72{bottom:629.715000px;}
.y93{bottom:631.695000px;}
.yae{bottom:638.715000px;}
.y4c{bottom:640.695000px;}
.y71{bottom:650.805000px;}
.y17{bottom:651.885000px;}
.y92{bottom:652.785000px;}
.yad{bottom:660.525000px;}
.y4b{bottom:661.785000px;}
.y70{bottom:671.865000px;}
.y16{bottom:672.945000px;}
.y91{bottom:673.845000px;}
.y4a{bottom:682.845000px;}
.y6f{bottom:692.925000px;}
.y15{bottom:694.005000px;}
.y90{bottom:694.905000px;}
.y49{bottom:703.905000px;}
.y6e{bottom:713.985000px;}
.y14{bottom:715.065000px;}
.y8f{bottom:715.965000px;}
.y48{bottom:724.965000px;}
.y6d{bottom:735.045000px;}
.y13{bottom:736.125000px;}
.y8e{bottom:737.025000px;}
.y47{bottom:746.025000px;}
.y6c{bottom:756.105000px;}
.y12{bottom:757.185000px;}
.y8d{bottom:757.905000px;}
.y46{bottom:766.905000px;}
.y6b{bottom:777.165000px;}
.y11{bottom:778.245000px;}
.y8c{bottom:778.965000px;}
.y45{bottom:787.965000px;}
.y6a{bottom:798.225000px;}
.y10{bottom:799.305000px;}
.y8b{bottom:800.025000px;}
.y44{bottom:809.025000px;}
.y69{bottom:819.285000px;}
.yf{bottom:820.365000px;}
.y8a{bottom:821.085000px;}
.y43{bottom:830.085000px;}
.y68{bottom:840.345000px;}
.ye{bottom:841.425000px;}
.y89{bottom:842.145000px;}
.y42{bottom:851.145000px;}
.y67{bottom:861.405000px;}
.yd{bottom:862.485000px;}
.y88{bottom:863.205000px;}
.y41{bottom:872.205000px;}
.y66{bottom:882.465000px;}
.y87{bottom:884.265000px;}
.yc{bottom:885.705000px;}
.y40{bottom:893.265000px;}
.y65{bottom:903.570000px;}
.y86{bottom:905.370000px;}
.yb{bottom:912.030000px;}
.y3f{bottom:914.370000px;}
.y64{bottom:924.630000px;}
.ya{bottom:928.770000px;}
.y3e{bottom:935.430000px;}
.y63{bottom:945.690000px;}
.y9{bottom:951.090000px;}
.y3d{bottom:956.490000px;}
.y62{bottom:960.810000px;}
.y8{bottom:976.290000px;}
.y3c{bottom:977.550000px;}
.y3b{bottom:998.610000px;}
.y60{bottom:1003.650000px;}
.y7{bottom:1009.950000px;}
.y3a{bottom:1019.670000px;}
.y39{bottom:1040.730000px;}
.y5d{bottom:1046.490000px;}
.y5{bottom:1050.090000px;}
.y38{bottom:1061.790000px;}
.y5b{bottom:1069.890000px;}
.y4{bottom:1082.310000px;}
.y37{bottom:1082.850000px;}
.y36{bottom:1103.910000px;}
.y3{bottom:1114.530000px;}
.y35{bottom:1124.970000px;}
.y34{bottom:1146.030000px;}
.y2{bottom:1146.600000px;}
.y33{bottom:1173.960000px;}
.y1{bottom:1180.620000px;}
.y32{bottom:1194.120000px;}
.hb{height:22.500000px;}
.h8{height:38.671172px;}
.hc{height:42.120000px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.ha{height:68.760000px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:85.536000px;}
.w7{width:105.300000px;}
.w4{width:110.196000px;}
.w5{width:130.860000px;}
.w3{width:254.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x6{left:53.999987px;}
.x11{left:80.999987px;}
.x7{left:96.515987px;}
.xc{left:101.916000px;}
.x12{left:108.035987px;}
.x5{left:184.709987px;}
.x3{left:271.514987px;}
.x2{left:350.534987px;}
.xe{left:356.835000px;}
.xa{left:374.834987px;}
.x9{left:383.834987px;}
.x4{left:418.214987px;}
.xb{left:467.744987px;}
.x1{left:478.544987px;}
.xf{left:599.505000px;}
.x10{left:685.770000px;}
.x8{left:773.789987px;}
.x13{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-1.008000pt;}
.ls9{letter-spacing:-0.853333pt;}
.ls14{letter-spacing:-0.821333pt;}
.ls16{letter-spacing:-0.515200pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.368000pt;}
.ls6{letter-spacing:-0.276267pt;}
.ls13{letter-spacing:-0.213867pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls12{letter-spacing:-0.057600pt;}
.ls15{letter-spacing:-0.051840pt;}
.lsd{letter-spacing:-0.036480pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.lsc{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.058667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.154667pt;}
.lse{letter-spacing:0.154880pt;}
.ls1a{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.169067pt;}
.ls1c{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.272000pt;}
.ls19{letter-spacing:0.588160pt;}
.ls11{letter-spacing:0.693333pt;}
.ls1d{letter-spacing:2.191360pt;}
.ls1b{letter-spacing:10.832640pt;}
.ls18{letter-spacing:37.712640pt;}
.ws0{word-spacing:-16.957440pt;}
.wsf{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws4{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.164480pt;}
.ws6{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.968640pt;}
.wsd{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.947520pt;}
.wsb{word-spacing:-11.791253pt;}
.ws7{word-spacing:-11.637120pt;}
.wsc{word-spacing:-11.183787pt;}
.ws5{word-spacing:-8.389120pt;}
.ws9{word-spacing:0.000000pt;}
._1f{margin-left:-473.385387pt;}
._21{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-213.786880pt;}
._14{margin-left:-206.586880pt;}
._19{margin-left:-201.366400pt;}
._18{margin-left:-195.053013pt;}
._11{margin-left:-179.685547pt;}
._1a{margin-left:-177.730560pt;}
._23{margin-left:-174.407680pt;}
._22{margin-left:-167.905280pt;}
._28{margin-left:-158.810880pt;}
._10{margin-left:-152.048640pt;}
._f{margin-left:-147.102720pt;}
._25{margin-left:-137.675947pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._27{margin-left:-126.985600pt;}
._12{margin-left:-125.855147pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-103.326720pt;}
._26{margin-left:-97.826560pt;}
._1e{margin-left:-90.977280pt;}
._8{margin-left:-81.456213pt;}
._1d{margin-left:-76.799787pt;}
._1c{margin-left:-74.240000pt;}
._15{margin-left:-73.006080pt;}
._17{margin-left:-59.292160pt;}
._16{margin-left:-44.074027pt;}
._24{margin-left:-29.786880pt;}
._1b{margin-left:-27.325653pt;}
._3b{margin-left:-6.983040pt;}
._2d{margin-left:-4.736640pt;}
._29{margin-left:-3.812373pt;}
._35{margin-left:-2.920747pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._20{width:0.961920pt;}
._2c{width:1.851093pt;}
._30{width:2.754133pt;}
._2f{width:3.885867pt;}
._33{width:5.471360pt;}
._38{width:6.374400pt;}
._34{width:7.266667pt;}
._31{width:8.540053pt;}
._32{width:9.846613pt;}
._3a{width:10.836480pt;}
._2a{width:12.597760pt;}
._2b{width:13.610880pt;}
._2e{width:14.861440pt;}
._36{width:16.254720pt;}
._37{width:17.171413pt;}
._39{width:18.963840pt;}
._3d{width:19.908480pt;}
._3e{width:20.960213pt;}
._3f{width:22.244053pt;}
._3c{width:38.299520pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:5.920000pt;}
.y5f{bottom:6.560000pt;}
.y61{bottom:24.640000pt;}
.y5c{bottom:27.040000pt;}
.y6{bottom:53.920000pt;}
.yc8{bottom:80.960000pt;}
.y31{bottom:82.720000pt;}
.y5a{bottom:83.840000pt;}
.yac{bottom:93.440000pt;}
.yc7{bottom:99.680000pt;}
.y30{bottom:101.440000pt;}
.y59{bottom:102.560000pt;}
.yab{bottom:112.160000pt;}
.yc9{bottom:117.120000pt;}
.yc6{bottom:118.400000pt;}
.y2f{bottom:120.160000pt;}
.y58{bottom:121.280000pt;}
.yaa{bottom:130.880000pt;}
.yc5{bottom:137.146667pt;}
.y2e{bottom:138.906667pt;}
.y57{bottom:140.026667pt;}
.ya9{bottom:149.626667pt;}
.yc4{bottom:155.866667pt;}
.y2d{bottom:157.626667pt;}
.y56{bottom:158.746667pt;}
.ya8{bottom:168.346667pt;}
.yc3{bottom:174.586667pt;}
.y2c{bottom:176.346667pt;}
.y55{bottom:177.466667pt;}
.ya7{bottom:187.066667pt;}
.yc2{bottom:193.306667pt;}
.y2b{bottom:195.066667pt;}
.y85{bottom:196.026667pt;}
.y54{bottom:196.186667pt;}
.ya6{bottom:205.786667pt;}
.yc1{bottom:212.026667pt;}
.y2a{bottom:213.786667pt;}
.y84{bottom:214.746667pt;}
.y53{bottom:214.906667pt;}
.ya5{bottom:224.506667pt;}
.yc0{bottom:230.746667pt;}
.y29{bottom:232.506667pt;}
.y83{bottom:233.466667pt;}
.y52{bottom:233.626667pt;}
.ya4{bottom:243.226667pt;}
.ybf{bottom:249.466667pt;}
.y28{bottom:251.226667pt;}
.y82{bottom:252.186667pt;}
.y51{bottom:252.346667pt;}
.ya3{bottom:261.946667pt;}
.ybe{bottom:268.186667pt;}
.y27{bottom:269.946667pt;}
.y81{bottom:270.906667pt;}
.y50{bottom:271.066667pt;}
.ya2{bottom:280.666667pt;}
.ybd{bottom:286.906667pt;}
.y26{bottom:288.666667pt;}
.y4f{bottom:289.786667pt;}
.y80{bottom:297.626667pt;}
.ya1{bottom:299.386667pt;}
.y4e{bottom:305.146667pt;}
.ybc{bottom:305.466667pt;}
.y25{bottom:307.386667pt;}
.y7f{bottom:316.346667pt;}
.ya0{bottom:318.106667pt;}
.ybb{bottom:324.186667pt;}
.y24{bottom:326.106667pt;}
.y7e{bottom:335.066667pt;}
.y9f{bottom:336.826667pt;}
.yba{bottom:342.906667pt;}
.y23{bottom:344.826667pt;}
.y7d{bottom:353.786667pt;}
.y9e{bottom:355.546667pt;}
.yb9{bottom:361.666667pt;}
.y22{bottom:363.586667pt;}
.y7c{bottom:372.546667pt;}
.y9d{bottom:374.306667pt;}
.yb8{bottom:380.386667pt;}
.y21{bottom:382.306667pt;}
.y7b{bottom:391.266667pt;}
.y9c{bottom:393.026667pt;}
.yb7{bottom:399.106667pt;}
.y20{bottom:401.026667pt;}
.y7a{bottom:409.986667pt;}
.y9b{bottom:411.746667pt;}
.yb6{bottom:417.826667pt;}
.y1f{bottom:419.746667pt;}
.y79{bottom:428.706667pt;}
.y9a{bottom:430.466667pt;}
.yb5{bottom:436.546667pt;}
.y1e{bottom:438.466667pt;}
.y78{bottom:447.426667pt;}
.y99{bottom:449.186667pt;}
.yb4{bottom:455.266667pt;}
.y1d{bottom:457.186667pt;}
.y77{bottom:466.146667pt;}
.y98{bottom:467.906667pt;}
.yb3{bottom:473.986667pt;}
.y1c{bottom:475.906667pt;}
.y76{bottom:484.866667pt;}
.y97{bottom:486.626667pt;}
.yb2{bottom:492.706667pt;}
.y1b{bottom:494.626667pt;}
.y75{bottom:503.586667pt;}
.y96{bottom:505.346667pt;}
.yb1{bottom:511.426667pt;}
.y1a{bottom:513.346667pt;}
.y74{bottom:522.306667pt;}
.y95{bottom:524.066667pt;}
.yb0{bottom:530.146667pt;}
.y19{bottom:532.066667pt;}
.y73{bottom:541.026667pt;}
.y94{bottom:542.786667pt;}
.yaf{bottom:548.386667pt;}
.y4d{bottom:550.786667pt;}
.y18{bottom:552.866667pt;}
.y72{bottom:559.746667pt;}
.y93{bottom:561.506667pt;}
.yae{bottom:567.746667pt;}
.y4c{bottom:569.506667pt;}
.y71{bottom:578.493333pt;}
.y17{bottom:579.453333pt;}
.y92{bottom:580.253333pt;}
.yad{bottom:587.133333pt;}
.y4b{bottom:588.253333pt;}
.y70{bottom:597.213333pt;}
.y16{bottom:598.173333pt;}
.y91{bottom:598.973333pt;}
.y4a{bottom:606.973333pt;}
.y6f{bottom:615.933333pt;}
.y15{bottom:616.893333pt;}
.y90{bottom:617.693333pt;}
.y49{bottom:625.693333pt;}
.y6e{bottom:634.653333pt;}
.y14{bottom:635.613333pt;}
.y8f{bottom:636.413333pt;}
.y48{bottom:644.413333pt;}
.y6d{bottom:653.373333pt;}
.y13{bottom:654.333333pt;}
.y8e{bottom:655.133333pt;}
.y47{bottom:663.133333pt;}
.y6c{bottom:672.093333pt;}
.y12{bottom:673.053333pt;}
.y8d{bottom:673.693333pt;}
.y46{bottom:681.693333pt;}
.y6b{bottom:690.813333pt;}
.y11{bottom:691.773333pt;}
.y8c{bottom:692.413333pt;}
.y45{bottom:700.413333pt;}
.y6a{bottom:709.533333pt;}
.y10{bottom:710.493333pt;}
.y8b{bottom:711.133333pt;}
.y44{bottom:719.133333pt;}
.y69{bottom:728.253333pt;}
.yf{bottom:729.213333pt;}
.y8a{bottom:729.853333pt;}
.y43{bottom:737.853333pt;}
.y68{bottom:746.973333pt;}
.ye{bottom:747.933333pt;}
.y89{bottom:748.573333pt;}
.y42{bottom:756.573333pt;}
.y67{bottom:765.693333pt;}
.yd{bottom:766.653333pt;}
.y88{bottom:767.293333pt;}
.y41{bottom:775.293333pt;}
.y66{bottom:784.413333pt;}
.y87{bottom:786.013333pt;}
.yc{bottom:787.293333pt;}
.y40{bottom:794.013333pt;}
.y65{bottom:803.173333pt;}
.y86{bottom:804.773333pt;}
.yb{bottom:810.693333pt;}
.y3f{bottom:812.773333pt;}
.y64{bottom:821.893333pt;}
.ya{bottom:825.573333pt;}
.y3e{bottom:831.493333pt;}
.y63{bottom:840.613333pt;}
.y9{bottom:845.413333pt;}
.y3d{bottom:850.213333pt;}
.y62{bottom:854.053333pt;}
.y8{bottom:867.813333pt;}
.y3c{bottom:868.933333pt;}
.y3b{bottom:887.653333pt;}
.y60{bottom:892.133333pt;}
.y7{bottom:897.733333pt;}
.y3a{bottom:906.373333pt;}
.y39{bottom:925.093333pt;}
.y5d{bottom:930.213333pt;}
.y5{bottom:933.413333pt;}
.y38{bottom:943.813333pt;}
.y5b{bottom:951.013333pt;}
.y4{bottom:962.053333pt;}
.y37{bottom:962.533333pt;}
.y36{bottom:981.253333pt;}
.y3{bottom:990.693333pt;}
.y35{bottom:999.973333pt;}
.y34{bottom:1018.693333pt;}
.y2{bottom:1019.200000pt;}
.y33{bottom:1043.520000pt;}
.y1{bottom:1049.440000pt;}
.y32{bottom:1061.440000pt;}
.hb{height:20.000000pt;}
.h8{height:34.374375pt;}
.hc{height:37.440000pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.ha{height:61.120000pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:76.032000pt;}
.w7{width:93.600000pt;}
.w4{width:97.952000pt;}
.w5{width:116.320000pt;}
.w3{width:225.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x6{left:47.999988pt;}
.x11{left:71.999988pt;}
.x7{left:85.791988pt;}
.xc{left:90.592000pt;}
.x12{left:96.031988pt;}
.x5{left:164.186655pt;}
.x3{left:241.346655pt;}
.x2{left:311.586655pt;}
.xe{left:317.186667pt;}
.xa{left:333.186655pt;}
.x9{left:341.186655pt;}
.x4{left:371.746655pt;}
.xb{left:415.773322pt;}
.x1{left:425.373322pt;}
.xf{left:532.893333pt;}
.x10{left:609.573333pt;}
.x8{left:687.813322pt;}
.x13{left:746.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; }
  