
    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_dfc2c501ef7ccce59a616064.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_343143726506d8ad51bccd31.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_e01b965be0ebeac2dd1221d8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_10aeac9076694df414bb1e77.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_b386389e017439411ef4fbb8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_195e053a3859bdd2d4db5501.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922363;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_e8a8d35b65e242ae3b8e414c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_0d32e4eed7dac8966a72631f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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);}
.v5{vertical-align:-17.270777px;}
.v2{vertical-align:-11.244000px;}
.v1{vertical-align:-8.820000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:50.580000px;}
.v6{vertical-align:56.827466px;}
.v3{vertical-align:62.844000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.730530px;}
.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;}
}
.ws1b{word-spacing:-43.396400px;}
.ws11{word-spacing:-35.083666px;}
.ws0{word-spacing:-34.603034px;}
.ws14{word-spacing:-28.835942px;}
.ws4{word-spacing:-28.764211px;}
.wsb{word-spacing:-26.312749px;}
.ws25{word-spacing:-26.310728px;}
.ws26{word-spacing:-26.247440px;}
.wsf{word-spacing:-26.247295px;}
.ws29{word-spacing:-25.631842px;}
.ws10{word-spacing:-25.396385px;}
.ws1d{word-spacing:-23.192933px;}
.ws1c{word-spacing:-23.133157px;}
.ws8{word-spacing:-19.223962px;}
.wsc{word-spacing:-16.887287px;}
.ws28{word-spacing:-16.883624px;}
.ws27{word-spacing:-16.827034px;}
.wsd{word-spacing:-16.822496px;}
.wse{word-spacing:-16.821832px;}
.ws1{word-spacing:-15.422105px;}
.ws17{word-spacing:-14.417971px;}
.ws7{word-spacing:-13.915853px;}
.ws18{word-spacing:-13.879987px;}
.ws19{word-spacing:-13.826189px;}
.ws2{word-spacing:-12.337715px;}
.ws5{word-spacing:-9.540250px;}
.ws6{word-spacing:-9.217459px;}
.ws21{word-spacing:-5.909513px;}
.ws22{word-spacing:-5.610981px;}
.ws20{word-spacing:-5.372229px;}
.ws13{word-spacing:-2.353136px;}
.ws15{word-spacing:-1.506355px;}
.wsa{word-spacing:-1.434624px;}
.ws23{word-spacing:-0.836725px;}
.ws24{word-spacing:-0.196877px;}
.ws3{word-spacing:0.000000px;}
.ws1f{word-spacing:0.376999px;}
.ws1e{word-spacing:105.926610px;}
.ws16{word-spacing:146.537395px;}
.ws9{word-spacing:980.342486px;}
.ws12{word-spacing:1005.806323px;}
.ws1a{word-spacing:1589.993098px;}
._4{margin-left:-3.588663px;}
._0{margin-left:-2.410162px;}
._1{margin-left:-1.255288px;}
._d{width:1.002897px;}
._8{width:2.976845px;}
._e{width:4.112819px;}
._10{width:6.127782px;}
._2{width:17.939958px;}
._5{width:19.035949px;}
._3{width:32.730530px;}
._9{width:53.984869px;}
._c{width:238.449961px;}
._f{width:283.151895px;}
._7{width:344.713060px;}
._b{width:590.291747px;}
._11{width:657.058912px;}
._a{width:923.762614px;}
._6{width:1563.898598px;}
.fc4{color:transparent;}
.fc3{color:rgb(235,129,27);}
.fc5{color:rgb(228,231,231);}
.fc2{color:rgb(42,27,129);}
.fc7{color:rgb(0,0,0);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(250,250,250);}
.fc0{color:rgb(35,55,59);}
.fs8{font-size:23.562408px;}
.fsb{font-size:24.609566px;}
.fs7{font-size:25.918917px;}
.fsa{font-size:32.987371px;}
.fs4{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs9{font-size:65.975278px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y2c{bottom:-20.557500px;}
.y0{bottom:0.000000px;}
.y6b{bottom:3.142500px;}
.y78{bottom:6.244500px;}
.y2b{bottom:7.297500px;}
.y95{bottom:9.491312px;}
.yc3{bottom:10.143474px;}
.yaf{bottom:16.495024px;}
.y94{bottom:16.561524px;}
.yc2{bottom:16.623603px;}
.y5{bottom:18.757500px;}
.yf{bottom:18.889500px;}
.y7f{bottom:18.984000px;}
.y3e{bottom:21.094500px;}
.y4d{bottom:21.700500px;}
.y6a{bottom:22.047000px;}
.yae{bottom:23.565271px;}
.y77{bottom:26.868000px;}
.y2a{bottom:27.921000px;}
.yc1{bottom:29.583860px;}
.yad{bottom:30.631901px;}
.y93{bottom:30.698401px;}
.y80{bottom:32.980645px;}
.yc0{bottom:36.063989px;}
.y92{bottom:37.768647px;}
.y8{bottom:39.028500px;}
.y69{bottom:40.950000px;}
.ybf{bottom:42.542128px;}
.yac{bottom:44.768760px;}
.y91{bottom:44.835277px;}
.y5b{bottom:45.169500px;}
.y7e{bottom:45.724500px;}
.y76{bottom:47.490000px;}
.ydf{bottom:47.703000px;}
.y29{bottom:48.543000px;}
.ybe{bottom:49.022257px;}
.y53{bottom:49.849500px;}
.y7{bottom:51.057000px;}
.yab{bottom:51.838989px;}
.yd3{bottom:54.000522px;}
.y3d{bottom:55.641000px;}
.y4c{bottom:56.247000px;}
.yaa{bottom:58.909236px;}
.y90{bottom:58.972154px;}
.y45{bottom:61.110000px;}
.yd2{bottom:61.396242px;}
.ybd{bottom:61.982495px;}
.y68{bottom:65.832000px;}
.y8f{bottom:66.042383px;}
.y75{bottom:68.112000px;}
.ybc{bottom:68.462624px;}
.yd1{bottom:68.857677px;}
.y28{bottom:69.165000px;}
.ye1{bottom:69.514500px;}
.ye3{bottom:69.516000px;}
.y57{bottom:69.573000px;}
.y34{bottom:70.932000px;}
.y5a{bottom:73.026000px;}
.ya9{bottom:73.046095px;}
.y7d{bottom:74.671500px;}
.yd0{bottom:76.255267px;}
.y1d{bottom:77.095500px;}
.ya8{bottom:80.112743px;}
.y8e{bottom:80.179243px;}
.ybb{bottom:81.420892px;}
.ycf{bottom:83.650969px;}
.y52{bottom:84.397500px;}
.ya7{bottom:87.182972px;}
.y8d{bottom:87.249489px;}
.yba{bottom:87.901021px;}
.y27{bottom:89.788500px;}
.y3c{bottom:90.187500px;}
.y67{bottom:90.714000px;}
.y4b{bottom:90.793500px;}
.yce{bottom:91.110515px;}
.y74{bottom:91.723500px;}
.ya6{bottom:94.253201px;}
.y8c{bottom:94.316119px;}
.yb9{bottom:94.381150px;}
.y44{bottom:95.656500px;}
.y1c{bottom:97.717500px;}
.y59{bottom:100.881000px;}
.y33{bottom:105.478500px;}
.ycd{bottom:105.967669px;}
.yb8{bottom:107.339418px;}
.ya5{bottom:108.390078px;}
.y8b{bottom:108.456578px;}
.y56{bottom:108.472500px;}
.y7c{bottom:110.397000px;}
.y73{bottom:112.347000px;}
.ycc{bottom:113.363371px;}
.y26{bottom:113.400000px;}
.yb7{bottom:113.819547px;}
.ya4{bottom:115.456708px;}
.y8a{bottom:115.523225px;}
.y66{bottom:115.596000px;}
.y51{bottom:120.121500px;}
.ycb{bottom:120.760961px;}
.y1b{bottom:121.329000px;}
.ya3{bottom:122.526937px;}
.y89{bottom:122.593454px;}
.y3b{bottom:124.734000px;}
.y4a{bottom:126.339000px;}
.yb6{bottom:126.779804px;}
.y4{bottom:127.131000px;}
.yca{bottom:128.222396px;}
.y43{bottom:130.203000px;}
.y58{bottom:130.728000px;}
.yb5{bottom:133.259122px;}
.y65{bottom:134.499000px;}
.yc9{bottom:135.618097px;}
.y55{bottom:136.327500px;}
.ya2{bottom:136.663814px;}
.y88{bottom:136.730331px;}
.y72{bottom:137.452500px;}
.y7b{bottom:138.252000px;}
.y25{bottom:138.505500px;}
.yb4{bottom:139.738864px;}
.y32{bottom:140.025000px;}
.yc8{bottom:143.077662px;}
.y50{bottom:143.493000px;}
.ya1{bottom:143.734043px;}
.y87{bottom:143.798752px;}
.y1a{bottom:146.434500px;}
.ya0{bottom:150.800322px;}
.yb3{bottom:152.698311px;}
.y49{bottom:154.194000px;}
.y3{bottom:156.214500px;}
.yc7{bottom:157.869835px;}
.y86{bottom:157.936349px;}
.yb2{bottom:159.178053px;}
.y3a{bottom:159.282000px;}
.y64{bottom:159.381000px;}
.y71{bottom:160.824000px;}
.y24{bottom:162.117000px;}
.y42{bottom:164.749500px;}
.y13{bottom:164.823000px;}
.y9f{bottom:164.940060px;}
.y85{bottom:165.003348px;}
.y54{bottom:165.274500px;}
.yc6{bottom:165.332003px;}
.y7a{bottom:166.107000px;}
.y4f{bottom:171.349500px;}
.y9e{bottom:172.007059px;}
.y84{bottom:172.073226px;}
.yb1{bottom:172.137509px;}
.yc5{bottom:172.728099px;}
.y19{bottom:174.291000px;}
.y31{bottom:174.571500px;}
.y63{bottom:178.285500px;}
.yb0{bottom:178.617232px;}
.y9d{bottom:179.076937px;}
.yc4{bottom:180.190276px;}
.y2{bottom:180.573000px;}
.y48{bottom:182.049000px;}
.y83{bottom:186.210085px;}
.yc{bottom:188.431500px;}
.y70{bottom:189.771000px;}
.y99{bottom:189.808062px;}
.y9c{bottom:189.940942px;}
.y23{bottom:191.064000px;}
.y12{bottom:192.679500px;}
.y79{bottom:195.054000px;}
.y82{bottom:197.597657px;}
.y9b{bottom:197.727379px;}
.y39{bottom:198.180000px;}
.y4e{bottom:199.821000px;}
.y18{bottom:202.146000px;}
.y62{bottom:203.166000px;}
.y41{bottom:203.649000px;}
.y81{bottom:205.387252px;}
.y47{bottom:205.422000px;}
.y9a{bottom:205.516974px;}
.y30{bottom:209.118000px;}
.yb{bottom:216.286500px;}
.yda{bottom:221.358431px;}
.y38{bottom:221.553000px;}
.y61{bottom:222.070500px;}
.yd6{bottom:225.155606px;}
.y6f{bottom:225.495000px;}
.y11{bottom:226.762500px;}
.yd9{bottom:228.820608px;}
.y22{bottom:229.962000px;}
.yde{bottom:230.454000px;}
.y40{bottom:231.505500px;}
.yd5{bottom:232.551692px;}
.y46{bottom:234.367500px;}
.yd8{bottom:236.216695px;}
.y17{bottom:236.229000px;}
.ydb{bottom:236.279779px;}
.yd4{bottom:240.010872px;}
.y2f{bottom:243.666000px;}
.yd7{bottom:243.675865px;}
.ya{bottom:244.143000px;}
.y60{bottom:246.952500px;}
.y37{bottom:249.408000px;}
.y6e{bottom:253.351500px;}
.y98{bottom:255.260283px;}
.y21{bottom:257.818500px;}
.ydd{bottom:258.309000px;}
.y10{bottom:264.298500px;}
.y1{bottom:265.215000px;}
.y5f{bottom:265.855500px;}
.y3f{bottom:268.915500px;}
.y36{bottom:272.781000px;}
.y16{bottom:273.765000px;}
.y97{bottom:276.923245px;}
.y9{bottom:278.226000px;}
.y6d{bottom:281.206500px;}
.y2e{bottom:281.680500px;}
.y20{bottom:285.673500px;}
.ydc{bottom:286.164000px;}
.y5e{bottom:290.737500px;}
.y96{bottom:296.694892px;}
.y35{bottom:303.462000px;}
.y1f{bottom:309.045000px;}
.y6c{bottom:309.061500px;}
.y2d{bottom:309.537000px;}
.y5d{bottom:309.642000px;}
.y15{bottom:311.299500px;}
.ye2{bottom:314.638500px;}
.ye0{bottom:314.640000px;}
.y5c{bottom:329.751000px;}
.y1e{bottom:338.008500px;}
.y6{bottom:379.849500px;}
.ye{bottom:3109.046685px;}
.y14{bottom:3122.974185px;}
.yd{bottom:3146.582685px;}
.hd{height:21.249886px;}
.h11{height:22.194272px;}
.h10{height:23.375117px;}
.hc{height:23.577608px;}
.h6{height:37.658880px;}
.h4{height:50.211630px;}
.h8{height:56.488320px;}
.he{height:60.015598px;}
.h3{height:62.764380px;}
.h7{height:68.727330px;}
.h5{height:75.317760px;}
.hf{height:86.577307px;}
.h2{height:90.381060px;}
.ha{height:100.791630px;}
.h9{height:113.055630px;}
.hb{height:324.705393px;}
.h1{height:408.000000px;}
.h0{height:408.195000px;}
.w2{width:459.208447px;}
.w0{width:544.245000px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x3{left:15.984000px;}
.x19{left:23.168360px;}
.x1a{left:24.479939px;}
.xa{left:28.347000px;}
.x16{left:31.025500px;}
.x17{left:36.195364px;}
.x1{left:42.519000px;}
.xb{left:49.032000px;}
.x4{left:51.379500px;}
.xc{left:61.074000px;}
.x5{left:62.368500px;}
.x8{left:75.247500px;}
.x7{left:95.503500px;}
.x1b{left:100.533887px;}
.x15{left:102.169643px;}
.x14{left:106.096072px;}
.xd{left:107.974500px;}
.x1d{left:122.459036px;}
.x13{left:135.615548px;}
.x11{left:143.273949px;}
.x12{left:152.696697px;}
.x1c{left:177.307836px;}
.xe{left:184.378041px;}
.xf{left:188.238040px;}
.x1e{left:196.942998px;}
.x10{left:253.753581px;}
.x1f{left:263.898711px;}
.x23{left:286.299000px;}
.x18{left:299.114024px;}
.x20{left:354.023507px;}
.x21{left:518.671500px;}
.x22{left:520.452000px;}
.x9{left:523.990500px;}
.x2{left:525.246000px;}
.x6{left:3042.557685px;}
@media print{
.v5{vertical-align:-15.351801pt;}
.v2{vertical-align:-9.994667pt;}
.v1{vertical-align:-7.840000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:44.960000pt;}
.v6{vertical-align:50.513303pt;}
.v3{vertical-align:55.861333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.093804pt;}
.ws1b{word-spacing:-38.574578pt;}
.ws11{word-spacing:-31.185481pt;}
.ws0{word-spacing:-30.758253pt;}
.ws14{word-spacing:-25.631949pt;}
.ws4{word-spacing:-25.568188pt;}
.wsb{word-spacing:-23.389110pt;}
.ws25{word-spacing:-23.387314pt;}
.ws26{word-spacing:-23.331058pt;}
.wsf{word-spacing:-23.330929pt;}
.ws29{word-spacing:-22.783859pt;}
.ws10{word-spacing:-22.574564pt;}
.ws1d{word-spacing:-20.615940pt;}
.ws1c{word-spacing:-20.562806pt;}
.ws8{word-spacing:-17.087966pt;}
.wsc{word-spacing:-15.010922pt;}
.ws28{word-spacing:-15.007666pt;}
.ws27{word-spacing:-14.957363pt;}
.wsd{word-spacing:-14.953330pt;}
.wse{word-spacing:-14.952740pt;}
.ws1{word-spacing:-13.708538pt;}
.ws17{word-spacing:-12.815974pt;}
.ws7{word-spacing:-12.369647pt;}
.ws18{word-spacing:-12.337766pt;}
.ws19{word-spacing:-12.289946pt;}
.ws2{word-spacing:-10.966858pt;}
.ws5{word-spacing:-8.480222pt;}
.ws6{word-spacing:-8.193297pt;}
.ws21{word-spacing:-5.252900pt;}
.ws22{word-spacing:-4.987539pt;}
.ws20{word-spacing:-4.775315pt;}
.ws13{word-spacing:-2.091676pt;}
.ws15{word-spacing:-1.338982pt;}
.wsa{word-spacing:-1.275221pt;}
.ws23{word-spacing:-0.743756pt;}
.ws24{word-spacing:-0.175001pt;}
.ws3{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.335110pt;}
.ws1e{word-spacing:94.156986pt;}
.ws16{word-spacing:130.255462pt;}
.ws9{word-spacing:871.415543pt;}
.ws12{word-spacing:894.050065pt;}
.ws1a{word-spacing:1413.327198pt;}
._4{margin-left:-3.189923pt;}
._0{margin-left:-2.142366pt;}
._1{margin-left:-1.115811pt;}
._d{width:0.891464pt;}
._8{width:2.646084pt;}
._e{width:3.655839pt;}
._10{width:5.446917pt;}
._2{width:15.946629pt;}
._5{width:16.920843pt;}
._3{width:29.093804pt;}
._9{width:47.986550pt;}
._c{width:211.955521pt;}
._f{width:251.690574pt;}
._7{width:306.411609pt;}
._b{width:524.703775pt;}
._11{width:584.052366pt;}
._a{width:821.122324pt;}
._6{width:1390.132087pt;}
.fs8{font-size:20.944363pt;}
.fsb{font-size:21.875170pt;}
.fs7{font-size:23.039037pt;}
.fsa{font-size:29.322108pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs9{font-size:58.644692pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y2c{bottom:-18.273333pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:2.793333pt;}
.y78{bottom:5.550667pt;}
.y2b{bottom:6.486667pt;}
.y95{bottom:8.436722pt;}
.yc3{bottom:9.016421pt;}
.yaf{bottom:14.662244pt;}
.y94{bottom:14.721354pt;}
.yc2{bottom:14.776536pt;}
.y5{bottom:16.673333pt;}
.yf{bottom:16.790667pt;}
.y7f{bottom:16.874667pt;}
.y3e{bottom:18.750667pt;}
.y4d{bottom:19.289333pt;}
.y6a{bottom:19.597333pt;}
.yae{bottom:20.946907pt;}
.y77{bottom:23.882667pt;}
.y2a{bottom:24.818667pt;}
.yc1{bottom:26.296765pt;}
.yad{bottom:27.228356pt;}
.y93{bottom:27.287467pt;}
.y80{bottom:29.316129pt;}
.yc0{bottom:32.056879pt;}
.y92{bottom:33.572131pt;}
.y8{bottom:34.692000pt;}
.y69{bottom:36.400000pt;}
.ybf{bottom:37.815225pt;}
.yac{bottom:39.794453pt;}
.y91{bottom:39.853580pt;}
.y5b{bottom:40.150667pt;}
.y7e{bottom:40.644000pt;}
.y76{bottom:42.213333pt;}
.ydf{bottom:42.402667pt;}
.y29{bottom:43.149333pt;}
.ybe{bottom:43.575340pt;}
.y53{bottom:44.310667pt;}
.y7{bottom:45.384000pt;}
.yab{bottom:46.079101pt;}
.yd3{bottom:48.000464pt;}
.y3d{bottom:49.458667pt;}
.y4c{bottom:49.997333pt;}
.yaa{bottom:52.363765pt;}
.y90{bottom:52.419693pt;}
.y45{bottom:54.320000pt;}
.yd2{bottom:54.574438pt;}
.ybd{bottom:55.095551pt;}
.y68{bottom:58.517333pt;}
.y8f{bottom:58.704341pt;}
.y75{bottom:60.544000pt;}
.ybc{bottom:60.855666pt;}
.yd1{bottom:61.206824pt;}
.y28{bottom:61.480000pt;}
.ye1{bottom:61.790667pt;}
.ye3{bottom:61.792000pt;}
.y57{bottom:61.842667pt;}
.y34{bottom:63.050667pt;}
.y5a{bottom:64.912000pt;}
.ya9{bottom:64.929862pt;}
.y7d{bottom:66.374667pt;}
.yd0{bottom:67.782460pt;}
.y1d{bottom:68.529333pt;}
.ya8{bottom:71.211327pt;}
.y8e{bottom:71.270438pt;}
.ybb{bottom:72.374126pt;}
.ycf{bottom:74.356417pt;}
.y52{bottom:75.020000pt;}
.ya7{bottom:77.495975pt;}
.y8d{bottom:77.555102pt;}
.yba{bottom:78.134241pt;}
.y27{bottom:79.812000pt;}
.y3c{bottom:80.166667pt;}
.y67{bottom:80.634667pt;}
.y4b{bottom:80.705333pt;}
.yce{bottom:80.987124pt;}
.y74{bottom:81.532000pt;}
.ya6{bottom:83.780623pt;}
.y8c{bottom:83.836551pt;}
.yb9{bottom:83.894355pt;}
.y44{bottom:85.028000pt;}
.y1c{bottom:86.860000pt;}
.y59{bottom:89.672000pt;}
.y33{bottom:93.758667pt;}
.ycd{bottom:94.193484pt;}
.yb8{bottom:95.412816pt;}
.ya5{bottom:96.346736pt;}
.y8b{bottom:96.405847pt;}
.y56{bottom:96.420000pt;}
.y7c{bottom:98.130667pt;}
.y73{bottom:99.864000pt;}
.ycc{bottom:100.767441pt;}
.y26{bottom:100.800000pt;}
.yb7{bottom:101.172930pt;}
.ya4{bottom:102.628185pt;}
.y8a{bottom:102.687311pt;}
.y66{bottom:102.752000pt;}
.y51{bottom:106.774667pt;}
.ycb{bottom:107.343077pt;}
.y1b{bottom:107.848000pt;}
.ya3{bottom:108.912833pt;}
.y89{bottom:108.971959pt;}
.y3b{bottom:110.874667pt;}
.y4a{bottom:112.301333pt;}
.yb6{bottom:112.693159pt;}
.y4{bottom:113.005333pt;}
.yca{bottom:113.975463pt;}
.y43{bottom:115.736000pt;}
.y58{bottom:116.202667pt;}
.yb5{bottom:118.452553pt;}
.y65{bottom:119.554667pt;}
.yc9{bottom:120.549420pt;}
.y55{bottom:121.180000pt;}
.ya2{bottom:121.478946pt;}
.y88{bottom:121.538072pt;}
.y72{bottom:122.180000pt;}
.y7b{bottom:122.890667pt;}
.y25{bottom:123.116000pt;}
.yb4{bottom:124.212324pt;}
.y32{bottom:124.466667pt;}
.yc8{bottom:127.180144pt;}
.y50{bottom:127.549333pt;}
.ya1{bottom:127.763594pt;}
.y87{bottom:127.821113pt;}
.y1a{bottom:130.164000pt;}
.ya0{bottom:134.044731pt;}
.yb3{bottom:135.731832pt;}
.y49{bottom:137.061333pt;}
.y3{bottom:138.857333pt;}
.yc7{bottom:140.328742pt;}
.y86{bottom:140.387865pt;}
.yb2{bottom:141.491603pt;}
.y3a{bottom:141.584000pt;}
.y64{bottom:141.672000pt;}
.y71{bottom:142.954667pt;}
.y24{bottom:144.104000pt;}
.y42{bottom:146.444000pt;}
.y13{bottom:146.509333pt;}
.y9f{bottom:146.613387pt;}
.y85{bottom:146.669642pt;}
.y54{bottom:146.910667pt;}
.yc6{bottom:146.961780pt;}
.y7a{bottom:147.650667pt;}
.y4f{bottom:152.310667pt;}
.y9e{bottom:152.895164pt;}
.y84{bottom:152.953978pt;}
.yb1{bottom:153.011119pt;}
.yc5{bottom:153.536088pt;}
.y19{bottom:154.925333pt;}
.y31{bottom:155.174667pt;}
.y63{bottom:158.476000pt;}
.yb0{bottom:158.770873pt;}
.y9d{bottom:159.179500pt;}
.yc4{bottom:160.169134pt;}
.y2{bottom:160.509333pt;}
.y48{bottom:161.821333pt;}
.y83{bottom:165.520075pt;}
.yc{bottom:167.494667pt;}
.y70{bottom:168.685333pt;}
.y99{bottom:168.718277pt;}
.y9c{bottom:168.836393pt;}
.y23{bottom:169.834667pt;}
.y12{bottom:171.270667pt;}
.y79{bottom:173.381333pt;}
.y82{bottom:175.642362pt;}
.y9b{bottom:175.757670pt;}
.y39{bottom:176.160000pt;}
.y4e{bottom:177.618667pt;}
.y18{bottom:179.685333pt;}
.y62{bottom:180.592000pt;}
.y41{bottom:181.021333pt;}
.y81{bottom:182.566446pt;}
.y47{bottom:182.597333pt;}
.y9a{bottom:182.681755pt;}
.y30{bottom:185.882667pt;}
.yb{bottom:192.254667pt;}
.yda{bottom:196.763050pt;}
.y38{bottom:196.936000pt;}
.y61{bottom:197.396000pt;}
.yd6{bottom:200.138316pt;}
.y6f{bottom:200.440000pt;}
.y11{bottom:201.566667pt;}
.yd9{bottom:203.396096pt;}
.y22{bottom:204.410667pt;}
.yde{bottom:204.848000pt;}
.y40{bottom:205.782667pt;}
.yd5{bottom:206.712616pt;}
.y46{bottom:208.326667pt;}
.yd8{bottom:209.970396pt;}
.y17{bottom:209.981333pt;}
.ydb{bottom:210.026470pt;}
.yd4{bottom:213.342997pt;}
.y2f{bottom:216.592000pt;}
.yd7{bottom:216.600769pt;}
.ya{bottom:217.016000pt;}
.y60{bottom:219.513333pt;}
.y37{bottom:221.696000pt;}
.y6e{bottom:225.201333pt;}
.y98{bottom:226.898029pt;}
.y21{bottom:229.172000pt;}
.ydd{bottom:229.608000pt;}
.y10{bottom:234.932000pt;}
.y1{bottom:235.746667pt;}
.y5f{bottom:236.316000pt;}
.y3f{bottom:239.036000pt;}
.y36{bottom:242.472000pt;}
.y16{bottom:243.346667pt;}
.y97{bottom:246.153995pt;}
.y9{bottom:247.312000pt;}
.y6d{bottom:249.961333pt;}
.y2e{bottom:250.382667pt;}
.y20{bottom:253.932000pt;}
.ydc{bottom:254.368000pt;}
.y5e{bottom:258.433333pt;}
.y96{bottom:263.728792pt;}
.y35{bottom:269.744000pt;}
.y1f{bottom:274.706667pt;}
.y6c{bottom:274.721333pt;}
.y2d{bottom:275.144000pt;}
.y5d{bottom:275.237333pt;}
.y15{bottom:276.710667pt;}
.ye2{bottom:279.678667pt;}
.ye0{bottom:279.680000pt;}
.y5c{bottom:293.112000pt;}
.y1e{bottom:300.452000pt;}
.y6{bottom:337.644000pt;}
.ye{bottom:2763.597053pt;}
.y14{bottom:2775.977053pt;}
.yd{bottom:2796.962387pt;}
.hd{height:18.888788pt;}
.h11{height:19.728242pt;}
.h10{height:20.777882pt;}
.hc{height:20.957874pt;}
.h6{height:33.474560pt;}
.h4{height:44.632560pt;}
.h8{height:50.211840pt;}
.he{height:53.347198pt;}
.h3{height:55.790560pt;}
.h7{height:61.090960pt;}
.h5{height:66.949120pt;}
.hf{height:76.957606pt;}
.h2{height:80.338720pt;}
.ha{height:89.592560pt;}
.h9{height:100.493893pt;}
.hb{height:288.627016pt;}
.h1{height:362.666667pt;}
.h0{height:362.840000pt;}
.w2{width:408.185287pt;}
.w0{width:483.773333pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x3{left:14.208000pt;}
.x19{left:20.594098pt;}
.x1a{left:21.759946pt;}
.xa{left:25.197333pt;}
.x16{left:27.578222pt;}
.x17{left:32.173657pt;}
.x1{left:37.794667pt;}
.xb{left:43.584000pt;}
.x4{left:45.670667pt;}
.xc{left:54.288000pt;}
.x5{left:55.438667pt;}
.x8{left:66.886667pt;}
.x7{left:84.892000pt;}
.x1b{left:89.363455pt;}
.x15{left:90.817460pt;}
.x14{left:94.307620pt;}
.xd{left:95.977333pt;}
.x1d{left:108.852477pt;}
.x13{left:120.547154pt;}
.x11{left:127.354621pt;}
.x12{left:135.730398pt;}
.x1c{left:157.606965pt;}
.xe{left:163.891592pt;}
.xf{left:167.322702pt;}
.x1e{left:175.060443pt;}
.x10{left:225.558739pt;}
.x1f{left:234.576632pt;}
.x23{left:254.488000pt;}
.x18{left:265.879132pt;}
.x20{left:314.687562pt;}
.x21{left:461.041333pt;}
.x22{left:462.624000pt;}
.x9{left:465.769333pt;}
.x2{left:466.885333pt;}
.x6{left:2704.495720pt;}
}




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