
    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_e97a732449f882814d803280.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_da638e42bc179892f1a5da6d.woff2')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_af646ee7879a1214957d3430.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ade12c126485a992c01c7eb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c9d14cb7d77b489b68e5f734.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_26c17c9e62b26b50769a8d7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_69a2c849091d58974a0b304a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9fd72fd73197ec2b11c7ae9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6aaa3e163c4150d67a02002a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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:ffa;src:url('chunks/assets/font_699f3019f508dde769c0775f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls10{letter-spacing:-0.310200px;}
.ls5{letter-spacing:-0.229800px;}
.lsb{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.132600px;}
.ls7{letter-spacing:-0.093600px;}
.ls3{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.075000px;}
.lsd{letter-spacing:0.086400px;}
.ls11{letter-spacing:0.132480px;}
.ls12{letter-spacing:0.132600px;}
.ls2{letter-spacing:0.142560px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.182400px;}
.ls1{letter-spacing:0.213600px;}
.lsc{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.371400px;}
.lsa{letter-spacing:0.869760px;}
.lsf{letter-spacing:9.378720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-27.174240px;}
.wsf{word-spacing:-21.331560px;}
.ws8{word-spacing:-19.409640px;}
.ws6{word-spacing:-19.251840px;}
.ws5{word-spacing:-19.220640px;}
.ws4{word-spacing:-19.038240px;}
.ws7{word-spacing:-18.944640px;}
.ws3{word-spacing:-18.808440px;}
.wsb{word-spacing:-15.226440px;}
.ws10{word-spacing:-15.102840px;}
.wsd{word-spacing:-15.056640px;}
.wse{word-spacing:-15.045240px;}
.wsc{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.837640px;}
.wsa{word-spacing:-14.754240px;}
.ws2{word-spacing:-13.447440px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-20.539680px;}
._c{margin-left:-14.480160px;}
._b{margin-left:-13.289280px;}
._e{margin-left:-12.238080px;}
._11{margin-left:-7.393920px;}
._f{margin-left:-5.117280px;}
._9{margin-left:-3.444480px;}
._0{margin-left:-1.442880px;}
._1{width:1.560000px;}
._a{width:2.665920px;}
._5{width:3.709440px;}
._6{width:5.656800px;}
._16{width:8.366880px;}
._15{width:9.509760px;}
._17{width:17.686080px;}
._7{width:22.256640px;}
._8{width:23.373600px;}
._d{width:66.001200px;}
._10{width:77.413440px;}
._12{width:104.033280px;}
._13{width:122.404560px;}
._18{width:164.285760px;}
._4{width:193.337760px;}
._3{width:821.994240px;}
._2{width:845.073600px;}
._14{width:848.222880px;}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(89,153,211);}
.fc0{color:rgb(30,76,119);}
.fs6{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:5.580000px;}
.y35{bottom:5.760000px;}
.y32{bottom:31.320000px;}
.y3a{bottom:31.365000px;}
.y1b{bottom:54.900000px;}
.y39{bottom:56.925000px;}
.y1a{bottom:73.080000px;}
.y19{bottom:91.440000px;}
.y9e{bottom:112.320000px;}
.y15{bottom:124.200000px;}
.y7d{bottom:136.476000px;}
.y9d{bottom:142.596000px;}
.y14{bottom:149.796000px;}
.y7c{bottom:166.710000px;}
.y9c{bottom:172.830000px;}
.y13{bottom:179.490000px;}
.ya4{bottom:180.030000px;}
.y7b{bottom:196.950000px;}
.yb8{bottom:199.470000px;}
.y9b{bottom:202.890000px;}
.ya3{bottom:210.270000px;}
.yb7{bottom:219.630000px;}
.y12{bottom:223.410000px;}
.y7a{bottom:227.190000px;}
.y9a{bottom:233.130000px;}
.yb6{bottom:239.790000px;}
.ya2{bottom:240.330000px;}
.y3e{bottom:245.370000px;}
.y79{bottom:257.430000px;}
.y99{bottom:263.370000px;}
.y11{bottom:267.330000px;}
.y3d{bottom:271.110000px;}
.ya1{bottom:278.310000px;}
.y78{bottom:287.670000px;}
.yb5{bottom:290.910000px;}
.y3c{bottom:291.090000px;}
.y98{bottom:302.790000px;}
.y10{bottom:311.430000px;}
.y77{bottom:317.910000px;}
.yb4{bottom:321.150000px;}
.y3b{bottom:342.390000px;}
.y97{bottom:355.170000px;}
.yf{bottom:355.350000px;}
.y76{bottom:357.870000px;}
.y38{bottom:367.950000px;}
.yb3{bottom:372.450000px;}
.y96{bottom:385.410000px;}
.ye{bottom:399.315000px;}
.yb2{bottom:402.735000px;}
.y75{bottom:413.355000px;}
.y95{bottom:415.695000px;}
.y60{bottom:437.115000px;}
.yd{bottom:443.235000px;}
.y74{bottom:443.595000px;}
.y37{bottom:444.855000px;}
.y94{bottom:445.935000px;}
.yb1{bottom:453.855000px;}
.y5f{bottom:457.275000px;}
.y36{bottom:470.595000px;}
.y73{bottom:473.835000px;}
.y93{bottom:476.175000px;}
.y5e{bottom:477.435000px;}
.yb0{bottom:484.095000px;}
.y34{bottom:496.155000px;}
.y5d{bottom:497.595000px;}
.y72{bottom:504.075000px;}
.yc{bottom:504.255000px;}
.y92{bottom:506.415000px;}
.ya0{bottom:521.355000px;}
.y33{bottom:521.895000px;}
.y71{bottom:534.315000px;}
.yaf{bottom:535.395000px;}
.y91{bottom:536.475000px;}
.y5c{bottom:537.735000px;}
.y31{bottom:547.455000px;}
.yb{bottom:556.275000px;}
.y70{bottom:564.375000px;}
.yae{bottom:565.455000px;}
.y90{bottom:566.715000px;}
.y5b{bottom:582.915000px;}
.y6f{bottom:594.615000px;}
.yad{bottom:595.695000px;}
.y8f{bottom:596.955000px;}
.y2f{bottom:598.755000px;}
.ya{bottom:610.455000px;}
.y6e{bottom:624.855000px;}
.yac{bottom:625.935000px;}
.y8e{bottom:627.195000px;}
.y2e{bottom:630.075000px;}
.y5a{bottom:631.155000px;}
.y6d{bottom:655.125000px;}
.y2d{bottom:655.665000px;}
.yab{bottom:656.205000px;}
.y8d{bottom:657.465000px;}
.y59{bottom:661.425000px;}
.y9{bottom:668.265000px;}
.y2c{bottom:681.405000px;}
.y6c{bottom:685.365000px;}
.y8c{bottom:687.705000px;}
.yaa{bottom:699.225000px;}
.y58{bottom:703.725000px;}
.y8{bottom:704.985000px;}
.y2b{bottom:706.965000px;}
.y6b{bottom:715.605000px;}
.y8b{bottom:717.945000px;}
.y2a{bottom:732.525000px;}
.y57{bottom:733.785000px;}
.y7{bottom:741.525000px;}
.y6a{bottom:745.665000px;}
.y8a{bottom:748.005000px;}
.ya9{bottom:754.665000px;}
.y29{bottom:758.265000px;}
.y9f{bottom:763.845000px;}
.y56{bottom:764.025000px;}
.y69{bottom:775.905000px;}
.y89{bottom:778.245000px;}
.y28{bottom:783.825000px;}
.ya8{bottom:784.905000px;}
.y55{bottom:794.265000px;}
.y6{bottom:799.125000px;}
.y88{bottom:808.485000px;}
.y27{bottom:809.385000px;}
.ya7{bottom:822.525000px;}
.y68{bottom:830.625000px;}
.y54{bottom:834.405000px;}
.y87{bottom:838.725000px;}
.y26{bottom:842.685000px;}
.y48{bottom:853.305000px;}
.y5{bottom:856.725000px;}
.y25{bottom:868.245000px;}
.y86{bottom:868.965000px;}
.y67{bottom:875.985000px;}
.y53{bottom:879.765000px;}
.y47{bottom:883.545000px;}
.y4{bottom:893.490000px;}
.y24{bottom:894.030000px;}
.y85{bottom:899.250000px;}
.y52{bottom:899.970000px;}
.y66{bottom:912.390000px;}
.y46{bottom:913.830000px;}
.y23{bottom:919.590000px;}
.y51{bottom:920.130000px;}
.y84{bottom:929.310000px;}
.y50{bottom:940.290000px;}
.y65{bottom:942.450000px;}
.y45{bottom:944.070000px;}
.y22{bottom:945.150000px;}
.y3{bottom:957.390000px;}
.y83{bottom:959.550000px;}
.y4f{bottom:960.450000px;}
.y21{bottom:970.890000px;}
.y64{bottom:972.690000px;}
.y44{bottom:974.310000px;}
.y4e{bottom:980.430000px;}
.y82{bottom:989.790000px;}
.y20{bottom:996.450000px;}
.y4d{bottom:1000.590000px;}
.y63{bottom:1002.930000px;}
.y43{bottom:1004.550000px;}
.y81{bottom:1020.030000px;}
.y4c{bottom:1020.750000px;}
.y1f{bottom:1022.190000px;}
.y62{bottom:1033.170000px;}
.y42{bottom:1034.610000px;}
.ya6{bottom:1038.210000px;}
.y2{bottom:1039.650000px;}
.y4b{bottom:1040.910000px;}
.y1e{bottom:1047.750000px;}
.y80{bottom:1050.270000px;}
.y4a{bottom:1061.070000px;}
.y61{bottom:1063.410000px;}
.y41{bottom:1064.850000px;}
.y1d{bottom:1073.310000px;}
.y7f{bottom:1080.510000px;}
.y40{bottom:1085.010000px;}
.y1c{bottom:1100.670000px;}
.y49{bottom:1103.550000px;}
.y1{bottom:1104.630000px;}
.y3f{bottom:1106.430000px;}
.ya5{bottom:1110.570000px;}
.y7e{bottom:1110.750000px;}
.y18{bottom:1130.910000px;}
.y17{bottom:1150.920000px;}
.y16{bottom:1192.140000px;}
.he{height:25.560000px;}
.h10{height:25.740000px;}
.hf{height:51.300000px;}
.ha{height:59.439023px;}
.h8{height:65.884219px;}
.h13{height:67.824844px;}
.h9{height:68.084282px;}
.h16{height:72.562500px;}
.h11{height:76.896000px;}
.h7{height:83.787539px;}
.hd{height:86.255508px;}
.h15{height:87.695156px;}
.h12{height:91.177734px;}
.h14{height:99.687656px;}
.hb{height:110.583984px;}
.h6{height:112.429688px;}
.hc{height:114.027539px;}
.h4{height:123.116836px;}
.h5{height:125.171719px;}
.h2{height:143.226562px;}
.h3{height:221.167969px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:265.530000px;}
.w4{width:403.995000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.xf{left:95.616000px;}
.x1{left:106.235987px;}
.x6{left:109.655987px;}
.xb{left:113.075987px;}
.x2{left:122.255987px;}
.x12{left:124.055987px;}
.x3{left:125.855987px;}
.x13{left:133.235987px;}
.x7{left:150.689987px;}
.xe{left:233.849987px;}
.xd{left:293.834987px;}
.xc{left:326.954987px;}
.xa{left:336.494987px;}
.x4{left:344.234987px;}
.x9{left:354.134987px;}
.x8{left:360.074987px;}
.x11{left:361.155000px;}
.x16{left:415.154987px;}
.x5{left:446.324987px;}
.x14{left:724.109987px;}
.x15{left:752.729987px;}
.x17{left:763.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls10{letter-spacing:-0.275733pt;}
.ls5{letter-spacing:-0.204267pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.117867pt;}
.ls7{letter-spacing:-0.083200pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.066667pt;}
.lsd{letter-spacing:0.076800pt;}
.ls11{letter-spacing:0.117760pt;}
.ls12{letter-spacing:0.117867pt;}
.ls2{letter-spacing:0.126720pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.162133pt;}
.ls1{letter-spacing:0.189867pt;}
.lsc{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.330133pt;}
.lsa{letter-spacing:0.773120pt;}
.lsf{letter-spacing:8.336640pt;}
.ws0{word-spacing:-24.154880pt;}
.wsf{word-spacing:-18.961387pt;}
.ws8{word-spacing:-17.253013pt;}
.ws6{word-spacing:-17.112747pt;}
.ws5{word-spacing:-17.085013pt;}
.ws4{word-spacing:-16.922880pt;}
.ws7{word-spacing:-16.839680pt;}
.ws3{word-spacing:-16.718613pt;}
.wsb{word-spacing:-13.534613pt;}
.ws10{word-spacing:-13.424747pt;}
.wsd{word-spacing:-13.383680pt;}
.wse{word-spacing:-13.373547pt;}
.wsc{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.189013pt;}
.wsa{word-spacing:-13.114880pt;}
.ws2{word-spacing:-11.953280pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-18.257493pt;}
._c{margin-left:-12.871253pt;}
._b{margin-left:-11.812693pt;}
._e{margin-left:-10.878293pt;}
._11{margin-left:-6.572373pt;}
._f{margin-left:-4.548693pt;}
._9{margin-left:-3.061760pt;}
._0{margin-left:-1.282560pt;}
._1{width:1.386667pt;}
._a{width:2.369707pt;}
._5{width:3.297280pt;}
._6{width:5.028267pt;}
._16{width:7.437227pt;}
._15{width:8.453120pt;}
._17{width:15.720960pt;}
._7{width:19.783680pt;}
._8{width:20.776533pt;}
._d{width:58.667733pt;}
._10{width:68.811947pt;}
._12{width:92.474027pt;}
._13{width:108.804053pt;}
._18{width:146.031787pt;}
._4{width:171.855787pt;}
._3{width:730.661547pt;}
._2{width:751.176533pt;}
._14{width:753.975893pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:4.960000pt;}
.y35{bottom:5.120000pt;}
.y32{bottom:27.840000pt;}
.y3a{bottom:27.880000pt;}
.y1b{bottom:48.800000pt;}
.y39{bottom:50.600000pt;}
.y1a{bottom:64.960000pt;}
.y19{bottom:81.280000pt;}
.y9e{bottom:99.840000pt;}
.y15{bottom:110.400000pt;}
.y7d{bottom:121.312000pt;}
.y9d{bottom:126.752000pt;}
.y14{bottom:133.152000pt;}
.y7c{bottom:148.186667pt;}
.y9c{bottom:153.626667pt;}
.y13{bottom:159.546667pt;}
.ya4{bottom:160.026667pt;}
.y7b{bottom:175.066667pt;}
.yb8{bottom:177.306667pt;}
.y9b{bottom:180.346667pt;}
.ya3{bottom:186.906667pt;}
.yb7{bottom:195.226667pt;}
.y12{bottom:198.586667pt;}
.y7a{bottom:201.946667pt;}
.y9a{bottom:207.226667pt;}
.yb6{bottom:213.146667pt;}
.ya2{bottom:213.626667pt;}
.y3e{bottom:218.106667pt;}
.y79{bottom:228.826667pt;}
.y99{bottom:234.106667pt;}
.y11{bottom:237.626667pt;}
.y3d{bottom:240.986667pt;}
.ya1{bottom:247.386667pt;}
.y78{bottom:255.706667pt;}
.yb5{bottom:258.586667pt;}
.y3c{bottom:258.746667pt;}
.y98{bottom:269.146667pt;}
.y10{bottom:276.826667pt;}
.y77{bottom:282.586667pt;}
.yb4{bottom:285.466667pt;}
.y3b{bottom:304.346667pt;}
.y97{bottom:315.706667pt;}
.yf{bottom:315.866667pt;}
.y76{bottom:318.106667pt;}
.y38{bottom:327.066667pt;}
.yb3{bottom:331.066667pt;}
.y96{bottom:342.586667pt;}
.ye{bottom:354.946667pt;}
.yb2{bottom:357.986667pt;}
.y75{bottom:367.426667pt;}
.y95{bottom:369.506667pt;}
.y60{bottom:388.546667pt;}
.yd{bottom:393.986667pt;}
.y74{bottom:394.306667pt;}
.y37{bottom:395.426667pt;}
.y94{bottom:396.386667pt;}
.yb1{bottom:403.426667pt;}
.y5f{bottom:406.466667pt;}
.y36{bottom:418.306667pt;}
.y73{bottom:421.186667pt;}
.y93{bottom:423.266667pt;}
.y5e{bottom:424.386667pt;}
.yb0{bottom:430.306667pt;}
.y34{bottom:441.026667pt;}
.y5d{bottom:442.306667pt;}
.y72{bottom:448.066667pt;}
.yc{bottom:448.226667pt;}
.y92{bottom:450.146667pt;}
.ya0{bottom:463.426667pt;}
.y33{bottom:463.906667pt;}
.y71{bottom:474.946667pt;}
.yaf{bottom:475.906667pt;}
.y91{bottom:476.866667pt;}
.y5c{bottom:477.986667pt;}
.y31{bottom:486.626667pt;}
.yb{bottom:494.466667pt;}
.y70{bottom:501.666667pt;}
.yae{bottom:502.626667pt;}
.y90{bottom:503.746667pt;}
.y5b{bottom:518.146667pt;}
.y6f{bottom:528.546667pt;}
.yad{bottom:529.506667pt;}
.y8f{bottom:530.626667pt;}
.y2f{bottom:532.226667pt;}
.ya{bottom:542.626667pt;}
.y6e{bottom:555.426667pt;}
.yac{bottom:556.386667pt;}
.y8e{bottom:557.506667pt;}
.y2e{bottom:560.066667pt;}
.y5a{bottom:561.026667pt;}
.y6d{bottom:582.333333pt;}
.y2d{bottom:582.813333pt;}
.yab{bottom:583.293333pt;}
.y8d{bottom:584.413333pt;}
.y59{bottom:587.933333pt;}
.y9{bottom:594.013333pt;}
.y2c{bottom:605.693333pt;}
.y6c{bottom:609.213333pt;}
.y8c{bottom:611.293333pt;}
.yaa{bottom:621.533333pt;}
.y58{bottom:625.533333pt;}
.y8{bottom:626.653333pt;}
.y2b{bottom:628.413333pt;}
.y6b{bottom:636.093333pt;}
.y8b{bottom:638.173333pt;}
.y2a{bottom:651.133333pt;}
.y57{bottom:652.253333pt;}
.y7{bottom:659.133333pt;}
.y6a{bottom:662.813333pt;}
.y8a{bottom:664.893333pt;}
.ya9{bottom:670.813333pt;}
.y29{bottom:674.013333pt;}
.y9f{bottom:678.973333pt;}
.y56{bottom:679.133333pt;}
.y69{bottom:689.693333pt;}
.y89{bottom:691.773333pt;}
.y28{bottom:696.733333pt;}
.ya8{bottom:697.693333pt;}
.y55{bottom:706.013333pt;}
.y6{bottom:710.333333pt;}
.y88{bottom:718.653333pt;}
.y27{bottom:719.453333pt;}
.ya7{bottom:731.133333pt;}
.y68{bottom:738.333333pt;}
.y54{bottom:741.693333pt;}
.y87{bottom:745.533333pt;}
.y26{bottom:749.053333pt;}
.y48{bottom:758.493333pt;}
.y5{bottom:761.533333pt;}
.y25{bottom:771.773333pt;}
.y86{bottom:772.413333pt;}
.y67{bottom:778.653333pt;}
.y53{bottom:782.013333pt;}
.y47{bottom:785.373333pt;}
.y4{bottom:794.213333pt;}
.y24{bottom:794.693333pt;}
.y85{bottom:799.333333pt;}
.y52{bottom:799.973333pt;}
.y66{bottom:811.013333pt;}
.y46{bottom:812.293333pt;}
.y23{bottom:817.413333pt;}
.y51{bottom:817.893333pt;}
.y84{bottom:826.053333pt;}
.y50{bottom:835.813333pt;}
.y65{bottom:837.733333pt;}
.y45{bottom:839.173333pt;}
.y22{bottom:840.133333pt;}
.y3{bottom:851.013333pt;}
.y83{bottom:852.933333pt;}
.y4f{bottom:853.733333pt;}
.y21{bottom:863.013333pt;}
.y64{bottom:864.613333pt;}
.y44{bottom:866.053333pt;}
.y4e{bottom:871.493333pt;}
.y82{bottom:879.813333pt;}
.y20{bottom:885.733333pt;}
.y4d{bottom:889.413333pt;}
.y63{bottom:891.493333pt;}
.y43{bottom:892.933333pt;}
.y81{bottom:906.693333pt;}
.y4c{bottom:907.333333pt;}
.y1f{bottom:908.613333pt;}
.y62{bottom:918.373333pt;}
.y42{bottom:919.653333pt;}
.ya6{bottom:922.853333pt;}
.y2{bottom:924.133333pt;}
.y4b{bottom:925.253333pt;}
.y1e{bottom:931.333333pt;}
.y80{bottom:933.573333pt;}
.y4a{bottom:943.173333pt;}
.y61{bottom:945.253333pt;}
.y41{bottom:946.533333pt;}
.y1d{bottom:954.053333pt;}
.y7f{bottom:960.453333pt;}
.y40{bottom:964.453333pt;}
.y1c{bottom:978.373333pt;}
.y49{bottom:980.933333pt;}
.y1{bottom:981.893333pt;}
.y3f{bottom:983.493333pt;}
.ya5{bottom:987.173333pt;}
.y7e{bottom:987.333333pt;}
.y18{bottom:1005.253333pt;}
.y17{bottom:1023.040000pt;}
.y16{bottom:1059.680000pt;}
.he{height:22.720000pt;}
.h10{height:22.880000pt;}
.hf{height:45.600000pt;}
.ha{height:52.834688pt;}
.h8{height:58.563750pt;}
.h13{height:60.288750pt;}
.h9{height:60.519362pt;}
.h16{height:64.500000pt;}
.h11{height:68.352000pt;}
.h7{height:74.477812pt;}
.hd{height:76.671562pt;}
.h15{height:77.951250pt;}
.h12{height:81.046875pt;}
.h14{height:88.611250pt;}
.hb{height:98.296875pt;}
.h6{height:99.937500pt;}
.hc{height:101.357812pt;}
.h4{height:109.437187pt;}
.h5{height:111.263750pt;}
.h2{height:127.312500pt;}
.h3{height:196.593750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:236.026667pt;}
.w4{width:359.106667pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.xf{left:84.992000pt;}
.x1{left:94.431988pt;}
.x6{left:97.471988pt;}
.xb{left:100.511988pt;}
.x2{left:108.671988pt;}
.x12{left:110.271988pt;}
.x3{left:111.871988pt;}
.x13{left:118.431988pt;}
.x7{left:133.946655pt;}
.xe{left:207.866655pt;}
.xd{left:261.186655pt;}
.xc{left:290.626655pt;}
.xa{left:299.106655pt;}
.x4{left:305.986655pt;}
.x9{left:314.786655pt;}
.x8{left:320.066655pt;}
.x11{left:321.026667pt;}
.x16{left:369.026655pt;}
.x5{left:396.733322pt;}
.x14{left:643.653322pt;}
.x15{left:669.093322pt;}
.x17{left:678.373322pt;}
}




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