
    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_f1d77c3b55dab8c3f61ff073.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_a36ebba6a0e4b6c6afbee542.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_f966053a36ad334c7809dc7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1d2dd161aeb5c625309324ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062988;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_29abcac48353c7a9ded59ff8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6b51cb7f5d197ffcd425662a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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:ff9;src:url('chunks/assets/font_94fbcd92c67c43e54cf8cefa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.600000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:15.120000px;}
.ls2{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.094800px;}
.ls4{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.023040px;}
.ls9{letter-spacing:0.100800px;}
.ls7{letter-spacing:0.122400px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.305280px;}
.ls6{letter-spacing:10.944000px;}
.lsa{letter-spacing:16.865280px;}
.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;}
}
.ws9{word-spacing:-15.552000px;}
.wsa{word-spacing:-14.595840px;}
.ws8{word-spacing:-14.572800px;}
.ws0{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.612800px;}
.ws1{word-spacing:-9.187200px;}
.ws7{word-spacing:-9.092400px;}
.ws2{word-spacing:-8.136000px;}
.ws3{word-spacing:-7.920000px;}
.ws5{word-spacing:-7.884000px;}
.ws6{word-spacing:0.000000px;}
._26{margin-left:-4.778400px;}
._1b{margin-left:-3.775680px;}
._c{margin-left:-2.689200px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._6{width:2.181120px;}
._8{width:3.466080px;}
._9{width:4.921920px;}
._11{width:6.820080px;}
._10{width:7.888320px;}
._1e{width:8.945040px;}
._12{width:9.979920px;}
._f{width:11.115360px;}
._16{width:12.203760px;}
._17{width:13.335600px;}
._a{width:16.194960px;}
._7{width:17.270640px;}
._e{width:18.480720px;}
._b{width:19.507200px;}
._15{width:20.667120px;}
._1c{width:21.792240px;}
._13{width:23.485680px;}
._20{width:24.700320px;}
._18{width:25.701120px;}
._14{width:26.839680px;}
._21{width:28.554240px;}
._d{width:30.656880px;}
._22{width:31.726800px;}
._1f{width:33.583680px;}
._1d{width:35.305920px;}
._23{width:36.564480px;}
._24{width:38.485440px;}
._25{width:39.689280px;}
._19{width:47.621280px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._4{width:197.349840px;}
._5{width:202.852800px;}
._1a{width:1056.007200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y50{bottom:5.220000px;}
.y4f{bottom:25.920000px;}
.y4e{bottom:44.640000px;}
.y4d{bottom:55.260000px;}
.y7{bottom:56.520000px;}
.y4c{bottom:65.880000px;}
.y6{bottom:70.596000px;}
.y4b{bottom:76.320000px;}
.y4a{bottom:93.960000px;}
.yb0{bottom:114.156000px;}
.y81{bottom:115.596000px;}
.yaf{bottom:136.296000px;}
.y80{bottom:137.916000px;}
.y3c{bottom:138.096000px;}
.y49{bottom:138.420000px;}
.y48{bottom:157.860000px;}
.yae{bottom:158.610000px;}
.y7f{bottom:160.050000px;}
.y3b{bottom:160.230000px;}
.y47{bottom:171.900000px;}
.yad{bottom:180.930000px;}
.y7e{bottom:182.370000px;}
.y3a{bottom:182.550000px;}
.y46{bottom:185.940000px;}
.y45{bottom:199.980000px;}
.yac{bottom:203.070000px;}
.y7d{bottom:204.510000px;}
.y39{bottom:204.690000px;}
.y44{bottom:215.280000px;}
.yab{bottom:225.390000px;}
.y7c{bottom:226.830000px;}
.y38{bottom:227.010000px;}
.y43{bottom:234.945000px;}
.yda{bottom:247.530000px;}
.yaa{bottom:247.710000px;}
.y42{bottom:248.985000px;}
.y7b{bottom:249.150000px;}
.y37{bottom:249.330000px;}
.y41{bottom:263.025000px;}
.yd9{bottom:269.850000px;}
.ya9{bottom:270.030000px;}
.y7a{bottom:271.290000px;}
.y36{bottom:271.470000px;}
.y40{bottom:277.065000px;}
.y3f{bottom:291.105000px;}
.yd8{bottom:292.170000px;}
.ya8{bottom:292.350000px;}
.y79{bottom:293.610000px;}
.y35{bottom:293.790000px;}
.y3e{bottom:305.505000px;}
.yd7{bottom:314.310000px;}
.ya7{bottom:314.490000px;}
.y78{bottom:315.750000px;}
.y34{bottom:315.930000px;}
.yd6{bottom:336.675000px;}
.ya6{bottom:336.855000px;}
.y77{bottom:338.115000px;}
.y33{bottom:338.295000px;}
.y32{bottom:357.735000px;}
.yd5{bottom:358.815000px;}
.ya5{bottom:358.995000px;}
.y76{bottom:360.255000px;}
.ybb{bottom:360.435000px;}
.y31{bottom:376.815000px;}
.ya4{bottom:379.875000px;}
.yd4{bottom:381.135000px;}
.y75{bottom:382.575000px;}
.yba{bottom:382.755000px;}
.y30{bottom:394.455000px;}
.yd3{bottom:403.455000px;}
.ya3{bottom:403.635000px;}
.y74{bottom:404.895000px;}
.yb9{bottom:405.075000px;}
.y2f{bottom:412.095000px;}
.yd2{bottom:425.595000px;}
.ya2{bottom:425.775000px;}
.y73{bottom:427.035000px;}
.yb8{bottom:427.215000px;}
.y2e{bottom:429.555000px;}
.y2d{bottom:447.195000px;}
.yd1{bottom:447.915000px;}
.ya1{bottom:448.095000px;}
.y72{bottom:449.355000px;}
.yb7{bottom:449.535000px;}
.y2c{bottom:464.835000px;}
.yd0{bottom:470.055000px;}
.ya0{bottom:470.235000px;}
.y71{bottom:471.495000px;}
.yb6{bottom:471.675000px;}
.y2b{bottom:482.475000px;}
.ycf{bottom:492.375000px;}
.y9f{bottom:492.555000px;}
.y70{bottom:493.815000px;}
.yb5{bottom:493.995000px;}
.y2a{bottom:499.935000px;}
.yce{bottom:514.515000px;}
.y9e{bottom:514.695000px;}
.y6f{bottom:516.135000px;}
.y29{bottom:517.575000px;}
.y28{bottom:535.215000px;}
.ycd{bottom:536.835000px;}
.y9d{bottom:537.015000px;}
.y6e{bottom:538.275000px;}
.y27{bottom:552.675000px;}
.ycc{bottom:559.155000px;}
.y9c{bottom:559.335000px;}
.y6d{bottom:560.595000px;}
.y26{bottom:570.315000px;}
.ycb{bottom:581.295000px;}
.y9b{bottom:581.475000px;}
.y6c{bottom:582.735000px;}
.y25{bottom:587.955000px;}
.yca{bottom:603.645000px;}
.y9a{bottom:603.825000px;}
.y6b{bottom:605.085000px;}
.y24{bottom:605.445000px;}
.y23{bottom:625.245000px;}
.yc9{bottom:625.785000px;}
.y99{bottom:625.965000px;}
.y6a{bottom:627.405000px;}
.y22{bottom:642.885000px;}
.y98{bottom:646.845000px;}
.yc8{bottom:648.105000px;}
.y69{bottom:649.545000px;}
.y3d{bottom:653.685000px;}
.y21{bottom:660.525000px;}
.yc7{bottom:670.425000px;}
.y97{bottom:670.605000px;}
.y68{bottom:671.865000px;}
.y20{bottom:678.165000px;}
.yc6{bottom:692.565000px;}
.y96{bottom:692.745000px;}
.y67{bottom:694.005000px;}
.yb4{bottom:694.185000px;}
.y1f{bottom:695.625000px;}
.y1e{bottom:713.265000px;}
.yc5{bottom:714.885000px;}
.y95{bottom:715.065000px;}
.y66{bottom:716.325000px;}
.y1d{bottom:730.905000px;}
.yc4{bottom:737.025000px;}
.y94{bottom:737.205000px;}
.y65{bottom:738.465000px;}
.y1c{bottom:748.545000px;}
.yc3{bottom:759.345000px;}
.y93{bottom:759.525000px;}
.y64{bottom:760.785000px;}
.y1b{bottom:766.005000px;}
.y92{bottom:780.225000px;}
.yc2{bottom:781.485000px;}
.y63{bottom:783.105000px;}
.yb3{bottom:783.285000px;}
.y1a{bottom:783.645000px;}
.y19{bottom:801.285000px;}
.yc1{bottom:803.805000px;}
.y91{bottom:803.985000px;}
.y62{bottom:805.245000px;}
.y18{bottom:818.745000px;}
.yc0{bottom:826.125000px;}
.y90{bottom:826.305000px;}
.y61{bottom:827.565000px;}
.y17{bottom:836.385000px;}
.ybf{bottom:848.265000px;}
.y8f{bottom:848.445000px;}
.y60{bottom:849.705000px;}
.y16{bottom:854.025000px;}
.ybe{bottom:870.630000px;}
.y8e{bottom:870.810000px;}
.y15{bottom:871.530000px;}
.y5f{bottom:872.070000px;}
.yb2{bottom:872.250000px;}
.y14{bottom:889.170000px;}
.ybd{bottom:892.770000px;}
.y8d{bottom:892.950000px;}
.y5e{bottom:894.390000px;}
.y13{bottom:906.810000px;}
.y8c{bottom:913.830000px;}
.ybc{bottom:915.090000px;}
.y5d{bottom:916.530000px;}
.y12{bottom:924.270000px;}
.y8b{bottom:937.410000px;}
.y5c{bottom:938.850000px;}
.y11{bottom:941.910000px;}
.y10{bottom:959.550000px;}
.y5b{bottom:960.990000px;}
.yb1{bottom:961.170000px;}
.yf{bottom:977.370000px;}
.y8a{bottom:981.870000px;}
.y5a{bottom:983.310000px;}
.ye{bottom:999.150000px;}
.y89{bottom:1004.010000px;}
.y59{bottom:1005.450000px;}
.yd{bottom:1012.470000px;}
.y88{bottom:1026.330000px;}
.y58{bottom:1027.770000px;}
.yc{bottom:1031.910000px;}
.y87{bottom:1048.650000px;}
.y57{bottom:1050.090000px;}
.yb{bottom:1051.170000px;}
.ya{bottom:1069.710000px;}
.y86{bottom:1070.790000px;}
.y56{bottom:1072.230000px;}
.y9{bottom:1085.370000px;}
.y85{bottom:1093.110000px;}
.y55{bottom:1094.550000px;}
.y8{bottom:1108.230000px;}
.y84{bottom:1115.250000px;}
.y54{bottom:1116.690000px;}
.y5{bottom:1133.250000px;}
.y83{bottom:1137.570000px;}
.y53{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y82{bottom:1157.400000px;}
.y3{bottom:1162.980000px;}
.y52{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y51{bottom:1197.540000px;}
.hb{height:30.480469px;}
.h7{height:33.480703px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h8{height:50.597578px;}
.h6{height:56.084062px;}
.hc{height:58.819922px;}
.hd{height:61.844063px;}
.h5{height:65.837812px;}
.h9{height:318.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:94.494000px;}
.x1{left:108.035987px;}
.x9{left:113.076000px;}
.xc{left:129.275987px;}
.xd{left:140.075987px;}
.x8{left:161.129987px;}
.x6{left:184.169987px;}
.x5{left:225.029987px;}
.x2{left:264.449987px;}
.x4{left:315.794987px;}
.x7{left:335.774987px;}
.x3{left:446.474987px;}
.xb{left:500.324987px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.200000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:13.440000pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.084267pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.020480pt;}
.ls9{letter-spacing:0.089600pt;}
.ls7{letter-spacing:0.108800pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.271360pt;}
.ls6{letter-spacing:9.728000pt;}
.lsa{letter-spacing:14.991360pt;}
.ws9{word-spacing:-13.824000pt;}
.wsa{word-spacing:-12.974080pt;}
.ws8{word-spacing:-12.953600pt;}
.ws0{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.433600pt;}
.ws1{word-spacing:-8.166400pt;}
.ws7{word-spacing:-8.082133pt;}
.ws2{word-spacing:-7.232000pt;}
.ws3{word-spacing:-7.040000pt;}
.ws5{word-spacing:-7.008000pt;}
.ws6{word-spacing:0.000000pt;}
._26{margin-left:-4.247467pt;}
._1b{margin-left:-3.356160pt;}
._c{margin-left:-2.390400pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._6{width:1.938773pt;}
._8{width:3.080960pt;}
._9{width:4.375040pt;}
._11{width:6.062293pt;}
._10{width:7.011840pt;}
._1e{width:7.951147pt;}
._12{width:8.871040pt;}
._f{width:9.880320pt;}
._16{width:10.847787pt;}
._17{width:11.853867pt;}
._a{width:14.395520pt;}
._7{width:15.351680pt;}
._e{width:16.427307pt;}
._b{width:17.339733pt;}
._15{width:18.370773pt;}
._1c{width:19.370880pt;}
._13{width:20.876160pt;}
._20{width:21.955840pt;}
._18{width:22.845440pt;}
._14{width:23.857493pt;}
._21{width:25.381547pt;}
._d{width:27.250560pt;}
._22{width:28.201600pt;}
._1f{width:29.852160pt;}
._1d{width:31.383040pt;}
._23{width:32.501760pt;}
._24{width:34.209280pt;}
._25{width:35.279360pt;}
._19{width:42.330027pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._4{width:175.422080pt;}
._5{width:180.313600pt;}
._1a{width:938.673067pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:4.640000pt;}
.y4f{bottom:23.040000pt;}
.y4e{bottom:39.680000pt;}
.y4d{bottom:49.120000pt;}
.y7{bottom:50.240000pt;}
.y4c{bottom:58.560000pt;}
.y6{bottom:62.752000pt;}
.y4b{bottom:67.840000pt;}
.y4a{bottom:83.520000pt;}
.yb0{bottom:101.472000pt;}
.y81{bottom:102.752000pt;}
.yaf{bottom:121.152000pt;}
.y80{bottom:122.592000pt;}
.y3c{bottom:122.752000pt;}
.y49{bottom:123.040000pt;}
.y48{bottom:140.320000pt;}
.yae{bottom:140.986667pt;}
.y7f{bottom:142.266667pt;}
.y3b{bottom:142.426667pt;}
.y47{bottom:152.800000pt;}
.yad{bottom:160.826667pt;}
.y7e{bottom:162.106667pt;}
.y3a{bottom:162.266667pt;}
.y46{bottom:165.280000pt;}
.y45{bottom:177.760000pt;}
.yac{bottom:180.506667pt;}
.y7d{bottom:181.786667pt;}
.y39{bottom:181.946667pt;}
.y44{bottom:191.360000pt;}
.yab{bottom:200.346667pt;}
.y7c{bottom:201.626667pt;}
.y38{bottom:201.786667pt;}
.y43{bottom:208.840000pt;}
.yda{bottom:220.026667pt;}
.yaa{bottom:220.186667pt;}
.y42{bottom:221.320000pt;}
.y7b{bottom:221.466667pt;}
.y37{bottom:221.626667pt;}
.y41{bottom:233.800000pt;}
.yd9{bottom:239.866667pt;}
.ya9{bottom:240.026667pt;}
.y7a{bottom:241.146667pt;}
.y36{bottom:241.306667pt;}
.y40{bottom:246.280000pt;}
.y3f{bottom:258.760000pt;}
.yd8{bottom:259.706667pt;}
.ya8{bottom:259.866667pt;}
.y79{bottom:260.986667pt;}
.y35{bottom:261.146667pt;}
.y3e{bottom:271.560000pt;}
.yd7{bottom:279.386667pt;}
.ya7{bottom:279.546667pt;}
.y78{bottom:280.666667pt;}
.y34{bottom:280.826667pt;}
.yd6{bottom:299.266667pt;}
.ya6{bottom:299.426667pt;}
.y77{bottom:300.546667pt;}
.y33{bottom:300.706667pt;}
.y32{bottom:317.986667pt;}
.yd5{bottom:318.946667pt;}
.ya5{bottom:319.106667pt;}
.y76{bottom:320.226667pt;}
.ybb{bottom:320.386667pt;}
.y31{bottom:334.946667pt;}
.ya4{bottom:337.666667pt;}
.yd4{bottom:338.786667pt;}
.y75{bottom:340.066667pt;}
.yba{bottom:340.226667pt;}
.y30{bottom:350.626667pt;}
.yd3{bottom:358.626667pt;}
.ya3{bottom:358.786667pt;}
.y74{bottom:359.906667pt;}
.yb9{bottom:360.066667pt;}
.y2f{bottom:366.306667pt;}
.yd2{bottom:378.306667pt;}
.ya2{bottom:378.466667pt;}
.y73{bottom:379.586667pt;}
.yb8{bottom:379.746667pt;}
.y2e{bottom:381.826667pt;}
.y2d{bottom:397.506667pt;}
.yd1{bottom:398.146667pt;}
.ya1{bottom:398.306667pt;}
.y72{bottom:399.426667pt;}
.yb7{bottom:399.586667pt;}
.y2c{bottom:413.186667pt;}
.yd0{bottom:417.826667pt;}
.ya0{bottom:417.986667pt;}
.y71{bottom:419.106667pt;}
.yb6{bottom:419.266667pt;}
.y2b{bottom:428.866667pt;}
.ycf{bottom:437.666667pt;}
.y9f{bottom:437.826667pt;}
.y70{bottom:438.946667pt;}
.yb5{bottom:439.106667pt;}
.y2a{bottom:444.386667pt;}
.yce{bottom:457.346667pt;}
.y9e{bottom:457.506667pt;}
.y6f{bottom:458.786667pt;}
.y29{bottom:460.066667pt;}
.y28{bottom:475.746667pt;}
.ycd{bottom:477.186667pt;}
.y9d{bottom:477.346667pt;}
.y6e{bottom:478.466667pt;}
.y27{bottom:491.266667pt;}
.ycc{bottom:497.026667pt;}
.y9c{bottom:497.186667pt;}
.y6d{bottom:498.306667pt;}
.y26{bottom:506.946667pt;}
.ycb{bottom:516.706667pt;}
.y9b{bottom:516.866667pt;}
.y6c{bottom:517.986667pt;}
.y25{bottom:522.626667pt;}
.yca{bottom:536.573333pt;}
.y9a{bottom:536.733333pt;}
.y6b{bottom:537.853333pt;}
.y24{bottom:538.173333pt;}
.y23{bottom:555.773333pt;}
.yc9{bottom:556.253333pt;}
.y99{bottom:556.413333pt;}
.y6a{bottom:557.693333pt;}
.y22{bottom:571.453333pt;}
.y98{bottom:574.973333pt;}
.yc8{bottom:576.093333pt;}
.y69{bottom:577.373333pt;}
.y3d{bottom:581.053333pt;}
.y21{bottom:587.133333pt;}
.yc7{bottom:595.933333pt;}
.y97{bottom:596.093333pt;}
.y68{bottom:597.213333pt;}
.y20{bottom:602.813333pt;}
.yc6{bottom:615.613333pt;}
.y96{bottom:615.773333pt;}
.y67{bottom:616.893333pt;}
.yb4{bottom:617.053333pt;}
.y1f{bottom:618.333333pt;}
.y1e{bottom:634.013333pt;}
.yc5{bottom:635.453333pt;}
.y95{bottom:635.613333pt;}
.y66{bottom:636.733333pt;}
.y1d{bottom:649.693333pt;}
.yc4{bottom:655.133333pt;}
.y94{bottom:655.293333pt;}
.y65{bottom:656.413333pt;}
.y1c{bottom:665.373333pt;}
.yc3{bottom:674.973333pt;}
.y93{bottom:675.133333pt;}
.y64{bottom:676.253333pt;}
.y1b{bottom:680.893333pt;}
.y92{bottom:693.533333pt;}
.yc2{bottom:694.653333pt;}
.y63{bottom:696.093333pt;}
.yb3{bottom:696.253333pt;}
.y1a{bottom:696.573333pt;}
.y19{bottom:712.253333pt;}
.yc1{bottom:714.493333pt;}
.y91{bottom:714.653333pt;}
.y62{bottom:715.773333pt;}
.y18{bottom:727.773333pt;}
.yc0{bottom:734.333333pt;}
.y90{bottom:734.493333pt;}
.y61{bottom:735.613333pt;}
.y17{bottom:743.453333pt;}
.ybf{bottom:754.013333pt;}
.y8f{bottom:754.173333pt;}
.y60{bottom:755.293333pt;}
.y16{bottom:759.133333pt;}
.ybe{bottom:773.893333pt;}
.y8e{bottom:774.053333pt;}
.y15{bottom:774.693333pt;}
.y5f{bottom:775.173333pt;}
.yb2{bottom:775.333333pt;}
.y14{bottom:790.373333pt;}
.ybd{bottom:793.573333pt;}
.y8d{bottom:793.733333pt;}
.y5e{bottom:795.013333pt;}
.y13{bottom:806.053333pt;}
.y8c{bottom:812.293333pt;}
.ybc{bottom:813.413333pt;}
.y5d{bottom:814.693333pt;}
.y12{bottom:821.573333pt;}
.y8b{bottom:833.253333pt;}
.y5c{bottom:834.533333pt;}
.y11{bottom:837.253333pt;}
.y10{bottom:852.933333pt;}
.y5b{bottom:854.213333pt;}
.yb1{bottom:854.373333pt;}
.yf{bottom:868.773333pt;}
.y8a{bottom:872.773333pt;}
.y5a{bottom:874.053333pt;}
.ye{bottom:888.133333pt;}
.y89{bottom:892.453333pt;}
.y59{bottom:893.733333pt;}
.yd{bottom:899.973333pt;}
.y88{bottom:912.293333pt;}
.y58{bottom:913.573333pt;}
.yc{bottom:917.253333pt;}
.y87{bottom:932.133333pt;}
.y57{bottom:933.413333pt;}
.yb{bottom:934.373333pt;}
.ya{bottom:950.853333pt;}
.y86{bottom:951.813333pt;}
.y56{bottom:953.093333pt;}
.y9{bottom:964.773333pt;}
.y85{bottom:971.653333pt;}
.y55{bottom:972.933333pt;}
.y8{bottom:985.093333pt;}
.y84{bottom:991.333333pt;}
.y54{bottom:992.613333pt;}
.y5{bottom:1007.333333pt;}
.y83{bottom:1011.173333pt;}
.y53{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y82{bottom:1028.800000pt;}
.y3{bottom:1033.760000pt;}
.y52{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y51{bottom:1064.480000pt;}
.hb{height:27.093750pt;}
.h7{height:29.760625pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h8{height:44.975625pt;}
.h6{height:49.852500pt;}
.hc{height:52.284375pt;}
.hd{height:54.972500pt;}
.h5{height:58.522500pt;}
.h9{height:282.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:83.994667pt;}
.x1{left:96.031988pt;}
.x9{left:100.512000pt;}
.xc{left:114.911988pt;}
.xd{left:124.511988pt;}
.x8{left:143.226655pt;}
.x6{left:163.706655pt;}
.x5{left:200.026655pt;}
.x2{left:235.066655pt;}
.x4{left:280.706655pt;}
.x7{left:298.466655pt;}
.x3{left:396.866655pt;}
.xb{left:444.733322pt;}
}




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