
    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_9a9e29927604edea0a6c8703.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_75789fb9db8536ed4ea3d9e4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_11eff5caf152c1844e994136.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_e54760163107ff860d41558c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bd3988e66e20ac848a79a3d2.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eef8bbe87f28295b956dc6c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_1c9ee68dc59b8c016b61407c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;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);}
.m2{transform:matrix(0.307948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307948,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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.266000px;}
.ls18{letter-spacing:-0.960000px;}
.ls6{letter-spacing:-0.570000px;}
.ls25{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.414000px;}
.ls11{letter-spacing:-0.240600px;}
.ls20{letter-spacing:-0.228000px;}
.ls19{letter-spacing:-0.226800px;}
.ls4{letter-spacing:-0.132600px;}
.ls22{letter-spacing:-0.107400px;}
.ls14{letter-spacing:-0.067200px;}
.ls13{letter-spacing:-0.064800px;}
.lsa{letter-spacing:-0.058320px;}
.ls1f{letter-spacing:-0.041040px;}
.ls7{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.ls1a{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.066000px;}
.ls26{letter-spacing:0.121680px;}
.ls10{letter-spacing:0.140400px;}
.ls1d{letter-spacing:0.174240px;}
.ls21{letter-spacing:0.175200px;}
.ls23{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.393600px;}
.ls0{letter-spacing:0.427680px;}
.ls1e{letter-spacing:0.479520px;}
.lse{letter-spacing:0.654000px;}
.ls27{letter-spacing:0.659520px;}
.ls28{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.780000px;}
.ls12{letter-spacing:1.026000px;}
.ls24{letter-spacing:12.186720px;}
.ls15{letter-spacing:18.666720px;}
.lsf{letter-spacing:34.506720px;}
.ls1c{letter-spacing:42.570720px;}
.ls1{letter-spacing:65.466720px;}
.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;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws12{word-spacing:-14.165760px;}
.wsf{word-spacing:-13.899360px;}
.ws6{word-spacing:-13.811760px;}
.ws11{word-spacing:-13.685040px;}
.ws9{word-spacing:-13.646160px;}
.ws5{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.440960px;}
.wsc{word-spacing:-13.438560px;}
.ws10{word-spacing:-13.398360px;}
.wsa{word-spacing:-13.265160px;}
.wsd{word-spacing:-12.204747px;}
.wse{word-spacing:-12.179374px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-533.098560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.758240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.172160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._16{margin-left:-222.645360px;}
._21{margin-left:-207.538560px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._20{margin-left:-189.930240px;}
._27{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.558400px;}
._3{margin-left:-150.134400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-144.360000px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.155360px;}
._23{margin-left:-121.045440px;}
._11{margin-left:-116.062560px;}
._25{margin-left:-110.154240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.700000px;}
._13{margin-left:-82.330560px;}
._15{margin-left:-66.703680px;}
._22{margin-left:-53.422560px;}
._14{margin-left:-49.252560px;}
._24{margin-left:-47.662560px;}
._19{margin-left:-31.530240px;}
._29{margin-left:-4.428720px;}
._28{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.249920px;}
._2d{width:2.251200px;}
._31{width:3.547200px;}
._35{width:4.652400px;}
._2e{width:6.279840px;}
._2f{width:7.341600px;}
._30{width:8.964000px;}
._36{width:10.843920px;}
._32{width:11.884080px;}
._37{width:14.541840px;}
._38{width:16.359840px;}
._39{width:17.588880px;}
._3b{width:19.422000px;}
._3a{width:20.437920px;}
._34{width:21.752640px;}
._33{width:22.888080px;}
._48{width:24.322320px;}
._3e{width:25.941840px;}
._40{width:27.793440px;}
._41{width:29.373600px;}
._45{width:49.713600px;}
._44{width:51.214320px;}
._2c{width:52.346400px;}
._2b{width:53.513040px;}
._3c{width:61.856640px;}
._3d{width:63.688080px;}
._42{width:65.138400px;}
._43{width:66.796320px;}
._3f{width:73.325520px;}
._47{width:80.271120px;}
._46{width:81.393120px;}
.fc2{color:rgb(255,192,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.717495px;}
.fs7{font-size:48.818990px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:18.330587px;}
.yd5{bottom:32.996583px;}
.y6{bottom:61.596000px;}
.yd7{bottom:88.776000px;}
.y31{bottom:90.036000px;}
.y65{bottom:92.196000px;}
.y9a{bottom:95.256000px;}
.yb4{bottom:97.056000px;}
.ycf{bottom:106.056000px;}
.y30{bottom:111.096000px;}
.y64{bottom:113.256000px;}
.y99{bottom:116.316000px;}
.yb3{bottom:118.116000px;}
.y7c{bottom:125.316000px;}
.yce{bottom:127.116000px;}
.y2f{bottom:132.156000px;}
.yd4{bottom:133.630688px;}
.y63{bottom:134.316000px;}
.y98{bottom:137.376000px;}
.yb2{bottom:139.176000px;}
.y7b{bottom:146.376000px;}
.ycd{bottom:148.176000px;}
.yd3{bottom:148.266236px;}
.y2e{bottom:153.210000px;}
.y62{bottom:155.370000px;}
.y97{bottom:158.430000px;}
.yb1{bottom:160.230000px;}
.y7a{bottom:167.430000px;}
.ycc{bottom:169.230000px;}
.y2d{bottom:174.270000px;}
.y61{bottom:176.430000px;}
.y96{bottom:179.490000px;}
.yb0{bottom:181.290000px;}
.y79{bottom:188.490000px;}
.ycb{bottom:190.290000px;}
.y2c{bottom:195.330000px;}
.y60{bottom:197.490000px;}
.y95{bottom:200.550000px;}
.yaf{bottom:202.350000px;}
.y78{bottom:209.550000px;}
.yca{bottom:211.350000px;}
.y2b{bottom:216.390000px;}
.y5f{bottom:218.550000px;}
.y94{bottom:221.610000px;}
.yae{bottom:223.410000px;}
.y77{bottom:230.610000px;}
.yc9{bottom:232.410000px;}
.y2a{bottom:237.450000px;}
.y5e{bottom:239.610000px;}
.y93{bottom:242.670000px;}
.yad{bottom:244.470000px;}
.yd2{bottom:248.928760px;}
.y76{bottom:251.670000px;}
.yc8{bottom:253.470000px;}
.y29{bottom:258.510000px;}
.y5d{bottom:260.670000px;}
.yd1{bottom:263.564307px;}
.y92{bottom:263.730000px;}
.yac{bottom:265.530000px;}
.y75{bottom:272.775000px;}
.yc7{bottom:274.575000px;}
.y28{bottom:279.615000px;}
.y5c{bottom:281.775000px;}
.y91{bottom:284.835000px;}
.yab{bottom:286.635000px;}
.y74{bottom:293.835000px;}
.yc6{bottom:295.635000px;}
.y27{bottom:300.495000px;}
.y5b{bottom:302.835000px;}
.y90{bottom:305.895000px;}
.yaa{bottom:307.695000px;}
.y73{bottom:314.895000px;}
.yc5{bottom:316.695000px;}
.y26{bottom:321.555000px;}
.y5a{bottom:323.895000px;}
.y8f{bottom:326.955000px;}
.ya9{bottom:328.755000px;}
.y72{bottom:335.955000px;}
.yc4{bottom:337.755000px;}
.y25{bottom:342.615000px;}
.y59{bottom:344.955000px;}
.ya8{bottom:349.815000px;}
.y71{bottom:357.015000px;}
.yc3{bottom:358.815000px;}
.y24{bottom:363.675000px;}
.y58{bottom:366.015000px;}
.ya7{bottom:370.875000px;}
.y70{bottom:378.075000px;}
.yc2{bottom:379.875000px;}
.y23{bottom:384.735000px;}
.y57{bottom:387.075000px;}
.ya6{bottom:391.935000px;}
.y6f{bottom:399.135000px;}
.yc1{bottom:400.935000px;}
.y56{bottom:408.135000px;}
.y22{bottom:408.315000px;}
.ya5{bottom:412.995000px;}
.y6e{bottom:420.195000px;}
.yc0{bottom:421.995000px;}
.y21{bottom:429.195000px;}
.ya4{bottom:434.055000px;}
.y6d{bottom:441.255000px;}
.ybf{bottom:443.055000px;}
.y55{bottom:450.255000px;}
.ya3{bottom:455.115000px;}
.y20{bottom:459.255000px;}
.y6c{bottom:462.315000px;}
.ybe{bottom:464.115000px;}
.y54{bottom:471.315000px;}
.ya2{bottom:476.175000px;}
.y1f{bottom:480.315000px;}
.y6b{bottom:483.375000px;}
.ybd{bottom:485.175000px;}
.y53{bottom:492.375000px;}
.ya1{bottom:497.235000px;}
.y1e{bottom:501.375000px;}
.y6a{bottom:504.435000px;}
.ybc{bottom:506.235000px;}
.y52{bottom:513.435000px;}
.ya0{bottom:518.295000px;}
.y1d{bottom:522.435000px;}
.y69{bottom:525.495000px;}
.ybb{bottom:527.295000px;}
.y51{bottom:534.495000px;}
.y9f{bottom:539.355000px;}
.y1c{bottom:543.495000px;}
.y68{bottom:546.555000px;}
.yba{bottom:548.355000px;}
.y50{bottom:555.555000px;}
.y9e{bottom:560.445000px;}
.y1b{bottom:564.585000px;}
.yb9{bottom:565.305000px;}
.yd0{bottom:565.765629px;}
.y67{bottom:567.645000px;}
.y4f{bottom:576.645000px;}
.y9d{bottom:581.505000px;}
.y1a{bottom:585.645000px;}
.y66{bottom:588.705000px;}
.y4e{bottom:597.705000px;}
.y9c{bottom:602.565000px;}
.y19{bottom:606.705000px;}
.y8e{bottom:609.765000px;}
.y4d{bottom:618.765000px;}
.y9b{bottom:619.665000px;}
.y18{bottom:627.765000px;}
.y8d{bottom:630.825000px;}
.y4c{bottom:639.825000px;}
.y17{bottom:648.825000px;}
.y8c{bottom:651.885000px;}
.y4b{bottom:660.885000px;}
.y16{bottom:669.885000px;}
.y8b{bottom:672.945000px;}
.y4a{bottom:681.945000px;}
.y15{bottom:690.945000px;}
.y8a{bottom:694.005000px;}
.y49{bottom:703.005000px;}
.y14{bottom:712.005000px;}
.y89{bottom:715.065000px;}
.y48{bottom:724.065000px;}
.y13{bottom:733.065000px;}
.y88{bottom:736.125000px;}
.y47{bottom:745.125000px;}
.y12{bottom:754.125000px;}
.y87{bottom:757.005000px;}
.y46{bottom:766.005000px;}
.y11{bottom:775.185000px;}
.y86{bottom:778.065000px;}
.y45{bottom:787.065000px;}
.y10{bottom:798.405000px;}
.y85{bottom:799.125000px;}
.y44{bottom:808.125000px;}
.y84{bottom:820.185000px;}
.yf{bottom:824.685000px;}
.y43{bottom:829.185000px;}
.y83{bottom:841.290000px;}
.ye{bottom:845.790000px;}
.y42{bottom:850.290000px;}
.y82{bottom:862.350000px;}
.yd{bottom:866.850000px;}
.y41{bottom:871.350000px;}
.y81{bottom:883.410000px;}
.yc{bottom:887.910000px;}
.y40{bottom:892.410000px;}
.y80{bottom:904.470000px;}
.yb{bottom:904.650000px;}
.y3f{bottom:913.470000px;}
.y7f{bottom:925.530000px;}
.ya{bottom:926.970000px;}
.y3e{bottom:934.530000px;}
.y7e{bottom:946.590000px;}
.y9{bottom:952.170000px;}
.y3d{bottom:955.590000px;}
.y7d{bottom:967.650000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:985.830000px;}
.yb8{bottom:988.710000px;}
.y3b{bottom:997.710000px;}
.yb7{bottom:1009.770000px;}
.y3a{bottom:1018.770000px;}
.y7{bottom:1019.490000px;}
.yb6{bottom:1030.830000px;}
.y39{bottom:1039.830000px;}
.yb5{bottom:1051.890000px;}
.y5{bottom:1058.190000px;}
.y38{bottom:1060.890000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1090.410000px;}
.y36{bottom:1103.010000px;}
.y3{bottom:1122.660000px;}
.y35{bottom:1124.100000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1154.700000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1188.720000px;}
.y32{bottom:1193.220000px;}
.hc{height:33.896779px;}
.he{height:34.373428px;}
.hd{height:34.445039px;}
.h8{height:38.671172px;}
.h9{height:45.578672px;}
.ha{height:59.439023px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.hb{height:289.767600px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:676.360302px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:38.588206px;}
.x10{left:49.214939px;}
.x6{left:53.999987px;}
.xd{left:61.529447px;}
.x11{left:67.811721px;}
.x16{left:80.999987px;}
.xb{left:108.174390px;}
.xa{left:110.375987px;}
.x5{left:164.729987px;}
.x8{left:170.309987px;}
.x14{left:255.679859px;}
.x3{left:272.369987px;}
.x15{left:301.562342px;}
.x2{left:350.714987px;}
.x4{left:419.294987px;}
.x12{left:442.160271px;}
.xe{left:450.911698px;}
.xf{left:454.649808px;}
.x1{left:479.414987px;}
.x13{left:520.548054px;}
.x7{left:745.889987px;}
.x9{left:785.129987px;}
.x17{left:839.309987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.125333pt;}
.ls18{letter-spacing:-0.853333pt;}
.ls6{letter-spacing:-0.506667pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.368000pt;}
.ls11{letter-spacing:-0.213867pt;}
.ls20{letter-spacing:-0.202667pt;}
.ls19{letter-spacing:-0.201600pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls22{letter-spacing:-0.095467pt;}
.ls14{letter-spacing:-0.059733pt;}
.ls13{letter-spacing:-0.057600pt;}
.lsa{letter-spacing:-0.051840pt;}
.ls1f{letter-spacing:-0.036480pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.058667pt;}
.ls26{letter-spacing:0.108160pt;}
.ls10{letter-spacing:0.124800pt;}
.ls1d{letter-spacing:0.154880pt;}
.ls21{letter-spacing:0.155733pt;}
.ls23{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.349867pt;}
.ls0{letter-spacing:0.380160pt;}
.ls1e{letter-spacing:0.426240pt;}
.lse{letter-spacing:0.581333pt;}
.ls27{letter-spacing:0.586240pt;}
.ls28{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.693333pt;}
.ls12{letter-spacing:0.912000pt;}
.ls24{letter-spacing:10.832640pt;}
.ls15{letter-spacing:16.592640pt;}
.lsf{letter-spacing:30.672640pt;}
.ls1c{letter-spacing:37.840640pt;}
.ls1{letter-spacing:58.192640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.591787pt;}
.wsf{word-spacing:-12.354987pt;}
.ws6{word-spacing:-12.277120pt;}
.ws11{word-spacing:-12.164480pt;}
.ws9{word-spacing:-12.129920pt;}
.ws5{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.947520pt;}
.wsc{word-spacing:-11.945387pt;}
.ws10{word-spacing:-11.909653pt;}
.wsa{word-spacing:-11.791253pt;}
.wsd{word-spacing:-10.848664pt;}
.wse{word-spacing:-10.826110pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-473.865387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.562880pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.041920pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._16{margin-left:-197.906987pt;}
._21{margin-left:-184.478720pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._20{margin-left:-168.826880pt;}
._27{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.607467pt;}
._3{margin-left:-133.452800pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-128.320000pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.360320pt;}
._23{margin-left:-107.595947pt;}
._11{margin-left:-103.166720pt;}
._25{margin-left:-97.914880pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.400000pt;}
._13{margin-left:-73.182720pt;}
._15{margin-left:-59.292160pt;}
._22{margin-left:-47.486720pt;}
._14{margin-left:-43.780053pt;}
._24{margin-left:-42.366720pt;}
._19{margin-left:-28.026880pt;}
._29{margin-left:-3.936640pt;}
._28{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:1.111040pt;}
._2d{width:2.001067pt;}
._31{width:3.153067pt;}
._35{width:4.135467pt;}
._2e{width:5.582080pt;}
._2f{width:6.525867pt;}
._30{width:7.968000pt;}
._36{width:9.639040pt;}
._32{width:10.563627pt;}
._37{width:12.926080pt;}
._38{width:14.542080pt;}
._39{width:15.634560pt;}
._3b{width:17.264000pt;}
._3a{width:18.167040pt;}
._34{width:19.335680pt;}
._33{width:20.344960pt;}
._48{width:21.619840pt;}
._3e{width:23.059413pt;}
._40{width:24.705280pt;}
._41{width:26.109867pt;}
._45{width:44.189867pt;}
._44{width:45.523840pt;}
._2c{width:46.530133pt;}
._2b{width:47.567147pt;}
._3c{width:54.983680pt;}
._3d{width:56.611627pt;}
._42{width:57.900800pt;}
._43{width:59.374507pt;}
._3f{width:65.178240pt;}
._47{width:71.352107pt;}
._46{width:72.349440pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:43.304440pt;}
.fs7{font-size:43.394658pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:16.293855pt;}
.yd5{bottom:29.330296pt;}
.y6{bottom:54.752000pt;}
.yd7{bottom:78.912000pt;}
.y31{bottom:80.032000pt;}
.y65{bottom:81.952000pt;}
.y9a{bottom:84.672000pt;}
.yb4{bottom:86.272000pt;}
.ycf{bottom:94.272000pt;}
.y30{bottom:98.752000pt;}
.y64{bottom:100.672000pt;}
.y99{bottom:103.392000pt;}
.yb3{bottom:104.992000pt;}
.y7c{bottom:111.392000pt;}
.yce{bottom:112.992000pt;}
.y2f{bottom:117.472000pt;}
.yd4{bottom:118.782834pt;}
.y63{bottom:119.392000pt;}
.y98{bottom:122.112000pt;}
.yb2{bottom:123.712000pt;}
.y7b{bottom:130.112000pt;}
.ycd{bottom:131.712000pt;}
.yd3{bottom:131.792209pt;}
.y2e{bottom:136.186667pt;}
.y62{bottom:138.106667pt;}
.y97{bottom:140.826667pt;}
.yb1{bottom:142.426667pt;}
.y7a{bottom:148.826667pt;}
.ycc{bottom:150.426667pt;}
.y2d{bottom:154.906667pt;}
.y61{bottom:156.826667pt;}
.y96{bottom:159.546667pt;}
.yb0{bottom:161.146667pt;}
.y79{bottom:167.546667pt;}
.ycb{bottom:169.146667pt;}
.y2c{bottom:173.626667pt;}
.y60{bottom:175.546667pt;}
.y95{bottom:178.266667pt;}
.yaf{bottom:179.866667pt;}
.y78{bottom:186.266667pt;}
.yca{bottom:187.866667pt;}
.y2b{bottom:192.346667pt;}
.y5f{bottom:194.266667pt;}
.y94{bottom:196.986667pt;}
.yae{bottom:198.586667pt;}
.y77{bottom:204.986667pt;}
.yc9{bottom:206.586667pt;}
.y2a{bottom:211.066667pt;}
.y5e{bottom:212.986667pt;}
.y93{bottom:215.706667pt;}
.yad{bottom:217.306667pt;}
.yd2{bottom:221.270009pt;}
.y76{bottom:223.706667pt;}
.yc8{bottom:225.306667pt;}
.y29{bottom:229.786667pt;}
.y5d{bottom:231.706667pt;}
.yd1{bottom:234.279384pt;}
.y92{bottom:234.426667pt;}
.yac{bottom:236.026667pt;}
.y75{bottom:242.466667pt;}
.yc7{bottom:244.066667pt;}
.y28{bottom:248.546667pt;}
.y5c{bottom:250.466667pt;}
.y91{bottom:253.186667pt;}
.yab{bottom:254.786667pt;}
.y74{bottom:261.186667pt;}
.yc6{bottom:262.786667pt;}
.y27{bottom:267.106667pt;}
.y5b{bottom:269.186667pt;}
.y90{bottom:271.906667pt;}
.yaa{bottom:273.506667pt;}
.y73{bottom:279.906667pt;}
.yc5{bottom:281.506667pt;}
.y26{bottom:285.826667pt;}
.y5a{bottom:287.906667pt;}
.y8f{bottom:290.626667pt;}
.ya9{bottom:292.226667pt;}
.y72{bottom:298.626667pt;}
.yc4{bottom:300.226667pt;}
.y25{bottom:304.546667pt;}
.y59{bottom:306.626667pt;}
.ya8{bottom:310.946667pt;}
.y71{bottom:317.346667pt;}
.yc3{bottom:318.946667pt;}
.y24{bottom:323.266667pt;}
.y58{bottom:325.346667pt;}
.ya7{bottom:329.666667pt;}
.y70{bottom:336.066667pt;}
.yc2{bottom:337.666667pt;}
.y23{bottom:341.986667pt;}
.y57{bottom:344.066667pt;}
.ya6{bottom:348.386667pt;}
.y6f{bottom:354.786667pt;}
.yc1{bottom:356.386667pt;}
.y56{bottom:362.786667pt;}
.y22{bottom:362.946667pt;}
.ya5{bottom:367.106667pt;}
.y6e{bottom:373.506667pt;}
.yc0{bottom:375.106667pt;}
.y21{bottom:381.506667pt;}
.ya4{bottom:385.826667pt;}
.y6d{bottom:392.226667pt;}
.ybf{bottom:393.826667pt;}
.y55{bottom:400.226667pt;}
.ya3{bottom:404.546667pt;}
.y20{bottom:408.226667pt;}
.y6c{bottom:410.946667pt;}
.ybe{bottom:412.546667pt;}
.y54{bottom:418.946667pt;}
.ya2{bottom:423.266667pt;}
.y1f{bottom:426.946667pt;}
.y6b{bottom:429.666667pt;}
.ybd{bottom:431.266667pt;}
.y53{bottom:437.666667pt;}
.ya1{bottom:441.986667pt;}
.y1e{bottom:445.666667pt;}
.y6a{bottom:448.386667pt;}
.ybc{bottom:449.986667pt;}
.y52{bottom:456.386667pt;}
.ya0{bottom:460.706667pt;}
.y1d{bottom:464.386667pt;}
.y69{bottom:467.106667pt;}
.ybb{bottom:468.706667pt;}
.y51{bottom:475.106667pt;}
.y9f{bottom:479.426667pt;}
.y1c{bottom:483.106667pt;}
.y68{bottom:485.826667pt;}
.yba{bottom:487.426667pt;}
.y50{bottom:493.826667pt;}
.y9e{bottom:498.173333pt;}
.y1b{bottom:501.853333pt;}
.yb9{bottom:502.493333pt;}
.yd0{bottom:502.902782pt;}
.y67{bottom:504.573333pt;}
.y4f{bottom:512.573333pt;}
.y9d{bottom:516.893333pt;}
.y1a{bottom:520.573333pt;}
.y66{bottom:523.293333pt;}
.y4e{bottom:531.293333pt;}
.y9c{bottom:535.613333pt;}
.y19{bottom:539.293333pt;}
.y8e{bottom:542.013333pt;}
.y4d{bottom:550.013333pt;}
.y9b{bottom:550.813333pt;}
.y18{bottom:558.013333pt;}
.y8d{bottom:560.733333pt;}
.y4c{bottom:568.733333pt;}
.y17{bottom:576.733333pt;}
.y8c{bottom:579.453333pt;}
.y4b{bottom:587.453333pt;}
.y16{bottom:595.453333pt;}
.y8b{bottom:598.173333pt;}
.y4a{bottom:606.173333pt;}
.y15{bottom:614.173333pt;}
.y8a{bottom:616.893333pt;}
.y49{bottom:624.893333pt;}
.y14{bottom:632.893333pt;}
.y89{bottom:635.613333pt;}
.y48{bottom:643.613333pt;}
.y13{bottom:651.613333pt;}
.y88{bottom:654.333333pt;}
.y47{bottom:662.333333pt;}
.y12{bottom:670.333333pt;}
.y87{bottom:672.893333pt;}
.y46{bottom:680.893333pt;}
.y11{bottom:689.053333pt;}
.y86{bottom:691.613333pt;}
.y45{bottom:699.613333pt;}
.y10{bottom:709.693333pt;}
.y85{bottom:710.333333pt;}
.y44{bottom:718.333333pt;}
.y84{bottom:729.053333pt;}
.yf{bottom:733.053333pt;}
.y43{bottom:737.053333pt;}
.y83{bottom:747.813333pt;}
.ye{bottom:751.813333pt;}
.y42{bottom:755.813333pt;}
.y82{bottom:766.533333pt;}
.yd{bottom:770.533333pt;}
.y41{bottom:774.533333pt;}
.y81{bottom:785.253333pt;}
.yc{bottom:789.253333pt;}
.y40{bottom:793.253333pt;}
.y80{bottom:803.973333pt;}
.yb{bottom:804.133333pt;}
.y3f{bottom:811.973333pt;}
.y7f{bottom:822.693333pt;}
.ya{bottom:823.973333pt;}
.y3e{bottom:830.693333pt;}
.y7e{bottom:841.413333pt;}
.y9{bottom:846.373333pt;}
.y3d{bottom:849.413333pt;}
.y7d{bottom:860.133333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:876.293333pt;}
.yb8{bottom:878.853333pt;}
.y3b{bottom:886.853333pt;}
.yb7{bottom:897.573333pt;}
.y3a{bottom:905.573333pt;}
.y7{bottom:906.213333pt;}
.yb6{bottom:916.293333pt;}
.y39{bottom:924.293333pt;}
.yb5{bottom:935.013333pt;}
.y5{bottom:940.613333pt;}
.y38{bottom:943.013333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:969.253333pt;}
.y36{bottom:980.453333pt;}
.y3{bottom:997.920000pt;}
.y35{bottom:999.200000pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1026.400000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1056.640000pt;}
.y32{bottom:1060.640000pt;}
.hc{height:30.130470pt;}
.he{height:30.554158pt;}
.hd{height:30.617813pt;}
.h8{height:34.374375pt;}
.h9{height:40.514375pt;}
.ha{height:52.834688pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.hb{height:257.571200pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:601.209157pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:34.300627pt;}
.x10{left:43.746612pt;}
.x6{left:47.999988pt;}
.xd{left:54.692842pt;}
.x11{left:60.277086pt;}
.x16{left:71.999988pt;}
.xb{left:96.155014pt;}
.xa{left:98.111988pt;}
.x5{left:146.426655pt;}
.x8{left:151.386655pt;}
.x14{left:227.270986pt;}
.x3{left:242.106655pt;}
.x15{left:268.055415pt;}
.x2{left:311.746655pt;}
.x4{left:372.706655pt;}
.x12{left:393.031352pt;}
.xe{left:400.810398pt;}
.xf{left:404.133162pt;}
.x1{left:426.146655pt;}
.x13{left:462.709382pt;}
.x7{left:663.013322pt;}
.x9{left:697.893322pt;}
.x17{left:746.053322pt;}
}




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