
    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_7720fd1bb0f759afeafd7799.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_91a956daf003d4eb820be67b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.182129;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_114f9a18b2a5e7030da14c5f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.182129;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_31797ba5751e1fc507b12ead.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016113;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_edcd4a4e9467d3d17ddbb773.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_3beee0760828b4771057f9b7.woff')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v3{vertical-align:-81.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.979400px;}
.v2{vertical-align:81.000000px;}
.ls4{letter-spacing:-4.968000px;}
.ls0{letter-spacing:-4.176000px;}
.ls1f{letter-spacing:-3.960000px;}
.ls24{letter-spacing:-3.366000px;}
.ls20{letter-spacing:-3.360000px;}
.ls2d{letter-spacing:-3.168000px;}
.ls18{letter-spacing:-3.102000px;}
.ls25{letter-spacing:-2.640000px;}
.ls33{letter-spacing:-2.592000px;}
.ls2{letter-spacing:-2.016000px;}
.ls3a{letter-spacing:-2.001000px;}
.ls26{letter-spacing:-1.932000px;}
.ls2a{letter-spacing:-1.863000px;}
.ls32{letter-spacing:-1.836000px;}
.ls1e{letter-spacing:-1.794000px;}
.ls30{letter-spacing:-1.716000px;}
.ls8{letter-spacing:-1.560000px;}
.ls27{letter-spacing:-1.386000px;}
.ls1c{letter-spacing:-1.380000px;}
.ls29{letter-spacing:-1.311000px;}
.ls21{letter-spacing:-1.242000px;}
.ls3c{letter-spacing:-1.173000px;}
.ls39{letter-spacing:-1.104000px;}
.ls36{letter-spacing:-1.035000px;}
.ls22{letter-spacing:-0.990000px;}
.ls16{letter-spacing:-0.966000px;}
.ls17{letter-spacing:-0.897000px;}
.ls14{letter-spacing:-0.798000px;}
.lsb{letter-spacing:-0.780000px;}
.ls1a{letter-spacing:-0.726000px;}
.ls3{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.690000px;}
.ls9{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.600000px;}
.ls3d{letter-spacing:-0.552000px;}
.lsf{letter-spacing:-0.420000px;}
.ls1d{letter-spacing:-0.396000px;}
.ls1b{letter-spacing:-0.330000px;}
.ls23{letter-spacing:-0.300000px;}
.ls2c{letter-spacing:-0.264000px;}
.ls10{letter-spacing:-0.240000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.544884px;}
.ls35{letter-spacing:1.104000px;}
.ls2f{letter-spacing:1.122000px;}
.ls19{letter-spacing:1.259280px;}
.ls2b{letter-spacing:1.260000px;}
.ls37{letter-spacing:1.311000px;}
.ls11{letter-spacing:1.392000px;}
.ls38{letter-spacing:1.587000px;}
.ls34{letter-spacing:2.160000px;}
.lsd{letter-spacing:2.337000px;}
.ls7{letter-spacing:2.850000px;}
.ls6{letter-spacing:4.500000px;}
.ls13{letter-spacing:6.000000px;}
.lsa{letter-spacing:7.260000px;}
.ls15{letter-spacing:7.650000px;}
.ls3e{letter-spacing:8.763000px;}
.ls28{letter-spacing:537.189000px;}
.ls3b{letter-spacing:538.319400px;}
.ls12{letter-spacing:626.669400px;}
.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;}
}
.ws38{word-spacing:-69.000000px;}
.ws0{word-spacing:-42.480000px;}
.ws37{word-spacing:-32.508000px;}
.ws1{word-spacing:-27.432000px;}
.ws16{word-spacing:-21.981000px;}
.ws2e{word-spacing:-21.075000px;}
.ws1c{word-spacing:-18.546000px;}
.ws2f{word-spacing:-18.282000px;}
.ws19{word-spacing:-18.216000px;}
.ws23{word-spacing:-17.160000px;}
.ws7{word-spacing:-16.860000px;}
.ws31{word-spacing:-16.830000px;}
.ws39{word-spacing:-15.939000px;}
.ws22{word-spacing:-15.906000px;}
.ws42{word-spacing:-15.870000px;}
.ws1a{word-spacing:-15.576000px;}
.ws17{word-spacing:-15.444000px;}
.ws30{word-spacing:-15.378000px;}
.ws20{word-spacing:-15.312000px;}
.ws6{word-spacing:-15.300000px;}
.ws21{word-spacing:-15.180000px;}
.ws24{word-spacing:-14.520000px;}
.ws1d{word-spacing:-14.400000px;}
.ws1e{word-spacing:-12.342000px;}
.ws8{word-spacing:-11.856000px;}
.ws1f{word-spacing:-11.460000px;}
.ws18{word-spacing:-11.088660px;}
.ws15{word-spacing:-11.004000px;}
.ws45{word-spacing:-8.763000px;}
.wsc{word-spacing:-7.260000px;}
.ws25{word-spacing:-6.000000px;}
.ws9{word-spacing:-4.500000px;}
.wsa{word-spacing:-2.850000px;}
.wsf{word-spacing:-2.337000px;}
.ws1b{word-spacing:-1.928400px;}
.ws3f{word-spacing:-1.587000px;}
.ws14{word-spacing:-1.392000px;}
.ws3e{word-spacing:-1.311000px;}
.ws34{word-spacing:-1.260000px;}
.ws36{word-spacing:-1.122000px;}
.ws3c{word-spacing:-1.104000px;}
.ws11{word-spacing:-0.180000px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:0.240000px;}
.ws2c{word-spacing:0.300000px;}
.ws12{word-spacing:0.420000px;}
.ws44{word-spacing:0.552000px;}
.wse{word-spacing:0.600000px;}
.ws5{word-spacing:0.648000px;}
.wsb{word-spacing:0.660000px;}
.ws35{word-spacing:0.690000px;}
.ws28{word-spacing:0.726000px;}
.wsd{word-spacing:0.780000px;}
.ws27{word-spacing:0.897000px;}
.ws26{word-spacing:0.966000px;}
.ws3d{word-spacing:1.035000px;}
.ws40{word-spacing:1.104000px;}
.ws2b{word-spacing:1.242000px;}
.ws32{word-spacing:1.311000px;}
.ws29{word-spacing:1.380000px;}
.ws10{word-spacing:1.560000px;}
.ws2a{word-spacing:1.794000px;}
.ws3a{word-spacing:1.836000px;}
.ws33{word-spacing:1.863000px;}
.ws2d{word-spacing:1.932000px;}
.ws41{word-spacing:2.001000px;}
.ws4{word-spacing:2.016000px;}
.ws3b{word-spacing:2.592000px;}
.ws2{word-spacing:4.176000px;}
.ws43{word-spacing:813.578100px;}
._3{margin-left:-33.575400px;}
._18{margin-left:-19.965600px;}
._12{margin-left:-15.042000px;}
._19{margin-left:-10.687200px;}
._14{margin-left:-9.205800px;}
._1a{margin-left:-8.167200px;}
._15{margin-left:-6.978300px;}
._e{margin-left:-5.971800px;}
._11{margin-left:-4.866600px;}
._9{margin-left:-3.828000px;}
._5{margin-left:-2.707200px;}
._4{margin-left:-1.252800px;}
._1{width:1.915200px;}
._0{width:3.096000px;}
._2{width:4.176000px;}
._6{width:5.324400px;}
._8{width:6.417600px;}
._7{width:8.003400px;}
._13{width:9.544200px;}
._d{width:11.515800px;}
._17{width:13.408800px;}
._10{width:14.438400px;}
._16{width:15.897600px;}
._f{width:16.985400px;}
._a{width:280.291200px;}
._b{width:563.860800px;}
._c{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:34.980000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fsb{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:75.000000px;}
.fs9{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.fse{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y31{bottom:51.310050px;}
.y30{bottom:89.291250px;}
.y57{bottom:106.299150px;}
.y5{bottom:106.700100px;}
.y2f{bottom:107.615700px;}
.y56{bottom:123.839850px;}
.y9a{bottom:126.549150px;}
.y2e{bottom:130.192350px;}
.y55{bottom:141.380550px;}
.y99{bottom:146.799150px;}
.y2d{bottom:147.016800px;}
.yc0{bottom:153.451200px;}
.y54{bottom:159.671250px;}
.y2c{bottom:163.841250px;}
.y98{bottom:167.049150px;}
.ybf{bottom:173.701200px;}
.y53{bottom:177.961950px;}
.y2b{bottom:180.665850px;}
.y97{bottom:187.299150px;}
.ybe{bottom:193.951200px;}
.y2a{bottom:197.490300px;}
.y52{bottom:203.729100px;}
.y96{bottom:207.549150px;}
.ybd{bottom:214.201200px;}
.y29{bottom:220.066950px;}
.y51{bottom:221.269800px;}
.y95{bottom:227.799150px;}
.ybc{bottom:234.451200px;}
.y28{bottom:238.391400px;}
.y50{bottom:238.810350px;}
.y94{bottom:248.049150px;}
.ybb{bottom:254.701200px;}
.y79{bottom:257.081250px;}
.y4f{bottom:257.101050px;}
.y93{bottom:268.299150px;}
.y27{bottom:269.471850px;}
.yba{bottom:274.951200px;}
.y78{bottom:275.081250px;}
.y4e{bottom:275.391750px;}
.y26{bottom:287.796450px;}
.y92{bottom:288.549150px;}
.y77{bottom:293.081250px;}
.yb9{bottom:295.201200px;}
.y4d{bottom:301.158900px;}
.y91{bottom:308.799150px;}
.y25{bottom:312.622950px;}
.yb8{bottom:315.451200px;}
.y76{bottom:318.557700px;}
.y4c{bottom:318.699450px;}
.y90{bottom:329.049150px;}
.y24{bottom:330.947400px;}
.yb7{bottom:335.701200px;}
.y4b{bottom:336.990150px;}
.y8f{bottom:349.299150px;}
.y75{bottom:350.438550px;}
.y4a{bottom:355.280850px;}
.y23{bottom:355.773900px;}
.yb6{bottom:355.951200px;}
.y74{bottom:368.438550px;}
.y8e{bottom:369.549150px;}
.y22{bottom:374.098500px;}
.yb5{bottom:376.201200px;}
.y49{bottom:381.048000px;}
.y8d{bottom:389.799150px;}
.y73{bottom:393.915000px;}
.yb4{bottom:396.451200px;}
.y48{bottom:398.588550px;}
.y21{bottom:398.925000px;}
.y8c{bottom:410.049150px;}
.yb3{bottom:416.701200px;}
.y47{bottom:416.879250px;}
.y20{bottom:417.249600px;}
.y72{bottom:425.795850px;}
.y8b{bottom:430.299150px;}
.y1f{bottom:435.574050px;}
.yb2{bottom:436.951200px;}
.y46{bottom:442.646400px;}
.y71{bottom:443.045850px;}
.y8a{bottom:450.549150px;}
.y1e{bottom:453.898650px;}
.yb1{bottom:457.201200px;}
.y45{bottom:460.187100px;}
.y70{bottom:460.295850px;}
.y89{bottom:470.799150px;}
.y1d{bottom:472.223100px;}
.yb0{bottom:477.451200px;}
.y6f{bottom:478.295850px;}
.y44{bottom:478.477650px;}
.y1c{bottom:490.547700px;}
.y88{bottom:491.049150px;}
.y6e{bottom:496.295850px;}
.yaf{bottom:497.701200px;}
.y43{bottom:504.244800px;}
.y1b{bottom:508.872150px;}
.y87{bottom:511.299150px;}
.yae{bottom:517.951200px;}
.y6d{bottom:521.772150px;}
.y42{bottom:521.785500px;}
.y1a{bottom:527.196750px;}
.y86{bottom:531.549150px;}
.yad{bottom:538.201200px;}
.y6c{bottom:539.022150px;}
.y41{bottom:539.326200px;}
.y19{bottom:545.521200px;}
.y85{bottom:551.799150px;}
.y6b{bottom:556.272150px;}
.y40{bottom:557.616900px;}
.yac{bottom:558.451200px;}
.y18{bottom:563.845800px;}
.y84{bottom:572.049150px;}
.y6a{bottom:574.272150px;}
.y3f{bottom:575.907600px;}
.yab{bottom:578.701200px;}
.y17{bottom:582.170400px;}
.y4{bottom:586.555950px;}
.y69{bottom:592.272150px;}
.y83{bottom:592.299150px;}
.y3e{bottom:594.198150px;}
.yaa{bottom:598.951200px;}
.y16{bottom:600.494850px;}
.y82{bottom:612.549150px;}
.y68{bottom:617.748600px;}
.y15{bottom:618.819450px;}
.ya9{bottom:619.201200px;}
.y3d{bottom:619.965300px;}
.y81{bottom:632.799150px;}
.y67{bottom:634.998600px;}
.y14{bottom:637.143900px;}
.y3c{bottom:637.506000px;}
.ya8{bottom:639.451200px;}
.y66{bottom:652.248600px;}
.y80{bottom:653.049150px;}
.y3b{bottom:655.046700px;}
.y13{bottom:655.468500px;}
.ya7{bottom:659.701200px;}
.y65{bottom:670.248600px;}
.y7f{bottom:673.299150px;}
.y3a{bottom:673.337250px;}
.y12{bottom:673.793100px;}
.ya6{bottom:679.951200px;}
.y64{bottom:688.248600px;}
.y39{bottom:691.627950px;}
.y11{bottom:692.117550px;}
.y7e{bottom:693.549150px;}
.ya5{bottom:700.201200px;}
.y10{bottom:710.442150px;}
.y63{bottom:713.725050px;}
.y7d{bottom:713.799150px;}
.y38{bottom:717.395100px;}
.ya4{bottom:720.451200px;}
.yf{bottom:728.766600px;}
.y62{bottom:730.975050px;}
.y7c{bottom:734.049150px;}
.y37{bottom:734.935800px;}
.ya3{bottom:740.701200px;}
.ye{bottom:747.091200px;}
.y61{bottom:748.225050px;}
.y36{bottom:752.476350px;}
.ya2{bottom:760.951200px;}
.y3{bottom:764.958000px;}
.yd{bottom:765.415800px;}
.y60{bottom:766.225050px;}
.y35{bottom:770.767050px;}
.ya1{bottom:781.201200px;}
.yc{bottom:783.740250px;}
.y5f{bottom:784.225050px;}
.y34{bottom:789.057750px;}
.y7b{bottom:794.799150px;}
.ya0{bottom:801.451200px;}
.yb{bottom:802.064850px;}
.y2{bottom:808.158000px;}
.y5e{bottom:809.701350px;}
.y33{bottom:814.824900px;}
.ya{bottom:820.389450px;}
.y9f{bottom:821.701200px;}
.y7a{bottom:826.299150px;}
.y5d{bottom:826.951350px;}
.y9e{bottom:841.951200px;}
.y5c{bottom:844.201350px;}
.y9{bottom:845.215950px;}
.y1{bottom:851.358000px;}
.y9d{bottom:862.201200px;}
.y5b{bottom:862.201350px;}
.y8{bottom:863.540550px;}
.y5a{bottom:880.201350px;}
.y9c{bottom:882.451200px;}
.y7{bottom:888.366900px;}
.y32{bottom:899.708700px;}
.y9b{bottom:902.701200px;}
.y59{bottom:902.701350px;}
.y6{bottom:906.691500px;}
.y58{bottom:948.189000px;}
.he{height:37.593750px;}
.h5{height:41.638184px;}
.h8{height:44.414062px;}
.hb{height:47.189941px;}
.h7{height:52.741699px;}
.h6{height:55.517578px;}
.h4{height:57.600000px;}
.hd{height:61.069336px;}
.hc{height:63.811523px;}
.h11{height:63.845215px;}
.h9{height:69.396973px;}
.ha{height:80.500488px;}
.h3{height:86.400000px;}
.hf{height:99.931641px;}
.h2{height:115.200000px;}
.h10{height:184.327797px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:83.696100px;}
.x2{left:85.039350px;}
.x3{left:105.166500px;}
.x8{left:106.299150px;}
.xc{left:111.957750px;}
.x4{left:127.378050px;}
.x9{left:233.858250px;}
.x6{left:243.321600px;}
.x7{left:260.124900px;}
.xb{left:265.496700px;}
.xa{left:272.745600px;}
.x1{left:446.456700px;}
@media print{
.v3{vertical-align:-72.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.426133pt;}
.v2{vertical-align:72.000000pt;}
.ls4{letter-spacing:-4.416000pt;}
.ls0{letter-spacing:-3.712000pt;}
.ls1f{letter-spacing:-3.520000pt;}
.ls24{letter-spacing:-2.992000pt;}
.ls20{letter-spacing:-2.986667pt;}
.ls2d{letter-spacing:-2.816000pt;}
.ls18{letter-spacing:-2.757333pt;}
.ls25{letter-spacing:-2.346667pt;}
.ls33{letter-spacing:-2.304000pt;}
.ls2{letter-spacing:-1.792000pt;}
.ls3a{letter-spacing:-1.778667pt;}
.ls26{letter-spacing:-1.717333pt;}
.ls2a{letter-spacing:-1.656000pt;}
.ls32{letter-spacing:-1.632000pt;}
.ls1e{letter-spacing:-1.594667pt;}
.ls30{letter-spacing:-1.525333pt;}
.ls8{letter-spacing:-1.386667pt;}
.ls27{letter-spacing:-1.232000pt;}
.ls1c{letter-spacing:-1.226667pt;}
.ls29{letter-spacing:-1.165333pt;}
.ls21{letter-spacing:-1.104000pt;}
.ls3c{letter-spacing:-1.042667pt;}
.ls39{letter-spacing:-0.981333pt;}
.ls36{letter-spacing:-0.920000pt;}
.ls22{letter-spacing:-0.880000pt;}
.ls16{letter-spacing:-0.858667pt;}
.ls17{letter-spacing:-0.797333pt;}
.ls14{letter-spacing:-0.709333pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls1a{letter-spacing:-0.645333pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.613333pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls3d{letter-spacing:-0.490667pt;}
.lsf{letter-spacing:-0.373333pt;}
.ls1d{letter-spacing:-0.352000pt;}
.ls1b{letter-spacing:-0.293333pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls2c{letter-spacing:-0.234667pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.484341pt;}
.ls35{letter-spacing:0.981333pt;}
.ls2f{letter-spacing:0.997333pt;}
.ls19{letter-spacing:1.119360pt;}
.ls2b{letter-spacing:1.120000pt;}
.ls37{letter-spacing:1.165333pt;}
.ls11{letter-spacing:1.237333pt;}
.ls38{letter-spacing:1.410667pt;}
.ls34{letter-spacing:1.920000pt;}
.lsd{letter-spacing:2.077333pt;}
.ls7{letter-spacing:2.533333pt;}
.ls6{letter-spacing:4.000000pt;}
.ls13{letter-spacing:5.333333pt;}
.lsa{letter-spacing:6.453333pt;}
.ls15{letter-spacing:6.800000pt;}
.ls3e{letter-spacing:7.789333pt;}
.ls28{letter-spacing:477.501333pt;}
.ls3b{letter-spacing:478.506133pt;}
.ls12{letter-spacing:557.039467pt;}
.ws38{word-spacing:-61.333333pt;}
.ws0{word-spacing:-37.760000pt;}
.ws37{word-spacing:-28.896000pt;}
.ws1{word-spacing:-24.384000pt;}
.ws16{word-spacing:-19.538667pt;}
.ws2e{word-spacing:-18.733333pt;}
.ws1c{word-spacing:-16.485333pt;}
.ws2f{word-spacing:-16.250667pt;}
.ws19{word-spacing:-16.192000pt;}
.ws23{word-spacing:-15.253333pt;}
.ws7{word-spacing:-14.986667pt;}
.ws31{word-spacing:-14.960000pt;}
.ws39{word-spacing:-14.168000pt;}
.ws22{word-spacing:-14.138667pt;}
.ws42{word-spacing:-14.106667pt;}
.ws1a{word-spacing:-13.845333pt;}
.ws17{word-spacing:-13.728000pt;}
.ws30{word-spacing:-13.669333pt;}
.ws20{word-spacing:-13.610667pt;}
.ws6{word-spacing:-13.600000pt;}
.ws21{word-spacing:-13.493333pt;}
.ws24{word-spacing:-12.906667pt;}
.ws1d{word-spacing:-12.800000pt;}
.ws1e{word-spacing:-10.970667pt;}
.ws8{word-spacing:-10.538667pt;}
.ws1f{word-spacing:-10.186667pt;}
.ws18{word-spacing:-9.856587pt;}
.ws15{word-spacing:-9.781333pt;}
.ws45{word-spacing:-7.789333pt;}
.wsc{word-spacing:-6.453333pt;}
.ws25{word-spacing:-5.333333pt;}
.ws9{word-spacing:-4.000000pt;}
.wsa{word-spacing:-2.533333pt;}
.wsf{word-spacing:-2.077333pt;}
.ws1b{word-spacing:-1.714133pt;}
.ws3f{word-spacing:-1.410667pt;}
.ws14{word-spacing:-1.237333pt;}
.ws3e{word-spacing:-1.165333pt;}
.ws34{word-spacing:-1.120000pt;}
.ws36{word-spacing:-0.997333pt;}
.ws3c{word-spacing:-0.981333pt;}
.ws11{word-spacing:-0.160000pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:0.213333pt;}
.ws2c{word-spacing:0.266667pt;}
.ws12{word-spacing:0.373333pt;}
.ws44{word-spacing:0.490667pt;}
.wse{word-spacing:0.533333pt;}
.ws5{word-spacing:0.576000pt;}
.wsb{word-spacing:0.586667pt;}
.ws35{word-spacing:0.613333pt;}
.ws28{word-spacing:0.645333pt;}
.wsd{word-spacing:0.693333pt;}
.ws27{word-spacing:0.797333pt;}
.ws26{word-spacing:0.858667pt;}
.ws3d{word-spacing:0.920000pt;}
.ws40{word-spacing:0.981333pt;}
.ws2b{word-spacing:1.104000pt;}
.ws32{word-spacing:1.165333pt;}
.ws29{word-spacing:1.226667pt;}
.ws10{word-spacing:1.386667pt;}
.ws2a{word-spacing:1.594667pt;}
.ws3a{word-spacing:1.632000pt;}
.ws33{word-spacing:1.656000pt;}
.ws2d{word-spacing:1.717333pt;}
.ws41{word-spacing:1.778667pt;}
.ws4{word-spacing:1.792000pt;}
.ws3b{word-spacing:2.304000pt;}
.ws2{word-spacing:3.712000pt;}
.ws43{word-spacing:723.180533pt;}
._3{margin-left:-29.844800pt;}
._18{margin-left:-17.747200pt;}
._12{margin-left:-13.370667pt;}
._19{margin-left:-9.499733pt;}
._14{margin-left:-8.182933pt;}
._1a{margin-left:-7.259733pt;}
._15{margin-left:-6.202933pt;}
._e{margin-left:-5.308267pt;}
._11{margin-left:-4.325867pt;}
._9{margin-left:-3.402667pt;}
._5{margin-left:-2.406400pt;}
._4{margin-left:-1.113600pt;}
._1{width:1.702400pt;}
._0{width:2.752000pt;}
._2{width:3.712000pt;}
._6{width:4.732800pt;}
._8{width:5.704533pt;}
._7{width:7.114133pt;}
._13{width:8.483733pt;}
._d{width:10.236267pt;}
._17{width:11.918933pt;}
._10{width:12.834133pt;}
._16{width:14.131200pt;}
._f{width:15.098133pt;}
._a{width:249.147733pt;}
._b{width:501.209600pt;}
._c{width:514.133333pt;}
.fsd{font-size:31.093333pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fsb{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:66.666667pt;}
.fs9{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.fse{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:45.608933pt;}
.y30{bottom:79.370000pt;}
.y57{bottom:94.488133pt;}
.y5{bottom:94.844533pt;}
.y2f{bottom:95.658400pt;}
.y56{bottom:110.079867pt;}
.y9a{bottom:112.488133pt;}
.y2e{bottom:115.726533pt;}
.y55{bottom:125.671600pt;}
.y99{bottom:130.488133pt;}
.y2d{bottom:130.681600pt;}
.yc0{bottom:136.401067pt;}
.y54{bottom:141.930000pt;}
.y2c{bottom:145.636667pt;}
.y98{bottom:148.488133pt;}
.ybf{bottom:154.401067pt;}
.y53{bottom:158.188400pt;}
.y2b{bottom:160.591867pt;}
.y97{bottom:166.488133pt;}
.ybe{bottom:172.401067pt;}
.y2a{bottom:175.546933pt;}
.y52{bottom:181.092533pt;}
.y96{bottom:184.488133pt;}
.ybd{bottom:190.401067pt;}
.y29{bottom:195.615067pt;}
.y51{bottom:196.684267pt;}
.y95{bottom:202.488133pt;}
.ybc{bottom:208.401067pt;}
.y28{bottom:211.903467pt;}
.y50{bottom:212.275867pt;}
.y94{bottom:220.488133pt;}
.ybb{bottom:226.401067pt;}
.y79{bottom:228.516667pt;}
.y4f{bottom:228.534267pt;}
.y93{bottom:238.488133pt;}
.y27{bottom:239.530533pt;}
.yba{bottom:244.401067pt;}
.y78{bottom:244.516667pt;}
.y4e{bottom:244.792667pt;}
.y26{bottom:255.819067pt;}
.y92{bottom:256.488133pt;}
.y77{bottom:260.516667pt;}
.yb9{bottom:262.401067pt;}
.y4d{bottom:267.696800pt;}
.y91{bottom:274.488133pt;}
.y25{bottom:277.887067pt;}
.yb8{bottom:280.401067pt;}
.y76{bottom:283.162400pt;}
.y4c{bottom:283.288400pt;}
.y90{bottom:292.488133pt;}
.y24{bottom:294.175467pt;}
.yb7{bottom:298.401067pt;}
.y4b{bottom:299.546800pt;}
.y8f{bottom:310.488133pt;}
.y75{bottom:311.500933pt;}
.y4a{bottom:315.805200pt;}
.y23{bottom:316.243467pt;}
.yb6{bottom:316.401067pt;}
.y74{bottom:327.500933pt;}
.y8e{bottom:328.488133pt;}
.y22{bottom:332.532000pt;}
.yb5{bottom:334.401067pt;}
.y49{bottom:338.709333pt;}
.y8d{bottom:346.488133pt;}
.y73{bottom:350.146667pt;}
.yb4{bottom:352.401067pt;}
.y48{bottom:354.300933pt;}
.y21{bottom:354.600000pt;}
.y8c{bottom:364.488133pt;}
.yb3{bottom:370.401067pt;}
.y47{bottom:370.559333pt;}
.y20{bottom:370.888533pt;}
.y72{bottom:378.485200pt;}
.y8b{bottom:382.488133pt;}
.y1f{bottom:387.176933pt;}
.yb2{bottom:388.401067pt;}
.y46{bottom:393.463467pt;}
.y71{bottom:393.818533pt;}
.y8a{bottom:400.488133pt;}
.y1e{bottom:403.465467pt;}
.yb1{bottom:406.401067pt;}
.y45{bottom:409.055200pt;}
.y70{bottom:409.151867pt;}
.y89{bottom:418.488133pt;}
.y1d{bottom:419.753867pt;}
.yb0{bottom:424.401067pt;}
.y6f{bottom:425.151867pt;}
.y44{bottom:425.313467pt;}
.y1c{bottom:436.042400pt;}
.y88{bottom:436.488133pt;}
.y6e{bottom:441.151867pt;}
.yaf{bottom:442.401067pt;}
.y43{bottom:448.217600pt;}
.y1b{bottom:452.330800pt;}
.y87{bottom:454.488133pt;}
.yae{bottom:460.401067pt;}
.y6d{bottom:463.797467pt;}
.y42{bottom:463.809333pt;}
.y1a{bottom:468.619333pt;}
.y86{bottom:472.488133pt;}
.yad{bottom:478.401067pt;}
.y6c{bottom:479.130800pt;}
.y41{bottom:479.401067pt;}
.y19{bottom:484.907733pt;}
.y85{bottom:490.488133pt;}
.y6b{bottom:494.464133pt;}
.y40{bottom:495.659467pt;}
.yac{bottom:496.401067pt;}
.y18{bottom:501.196267pt;}
.y84{bottom:508.488133pt;}
.y6a{bottom:510.464133pt;}
.y3f{bottom:511.917867pt;}
.yab{bottom:514.401067pt;}
.y17{bottom:517.484800pt;}
.y4{bottom:521.383067pt;}
.y69{bottom:526.464133pt;}
.y83{bottom:526.488133pt;}
.y3e{bottom:528.176133pt;}
.yaa{bottom:532.401067pt;}
.y16{bottom:533.773200pt;}
.y82{bottom:544.488133pt;}
.y68{bottom:549.109867pt;}
.y15{bottom:550.061733pt;}
.ya9{bottom:550.401067pt;}
.y3d{bottom:551.080267pt;}
.y81{bottom:562.488133pt;}
.y67{bottom:564.443200pt;}
.y14{bottom:566.350133pt;}
.y3c{bottom:566.672000pt;}
.ya8{bottom:568.401067pt;}
.y66{bottom:579.776533pt;}
.y80{bottom:580.488133pt;}
.y3b{bottom:582.263733pt;}
.y13{bottom:582.638667pt;}
.ya7{bottom:586.401067pt;}
.y65{bottom:595.776533pt;}
.y7f{bottom:598.488133pt;}
.y3a{bottom:598.522000pt;}
.y12{bottom:598.927200pt;}
.ya6{bottom:604.401067pt;}
.y64{bottom:611.776533pt;}
.y39{bottom:614.780400pt;}
.y11{bottom:615.215600pt;}
.y7e{bottom:616.488133pt;}
.ya5{bottom:622.401067pt;}
.y10{bottom:631.504133pt;}
.y63{bottom:634.422267pt;}
.y7d{bottom:634.488133pt;}
.y38{bottom:637.684533pt;}
.ya4{bottom:640.401067pt;}
.yf{bottom:647.792533pt;}
.y62{bottom:649.755600pt;}
.y7c{bottom:652.488133pt;}
.y37{bottom:653.276267pt;}
.ya3{bottom:658.401067pt;}
.ye{bottom:664.081067pt;}
.y61{bottom:665.088933pt;}
.y36{bottom:668.867867pt;}
.ya2{bottom:676.401067pt;}
.y3{bottom:679.962667pt;}
.yd{bottom:680.369600pt;}
.y60{bottom:681.088933pt;}
.y35{bottom:685.126267pt;}
.ya1{bottom:694.401067pt;}
.yc{bottom:696.658000pt;}
.y5f{bottom:697.088933pt;}
.y34{bottom:701.384667pt;}
.y7b{bottom:706.488133pt;}
.ya0{bottom:712.401067pt;}
.yb{bottom:712.946533pt;}
.y2{bottom:718.362667pt;}
.y5e{bottom:719.734533pt;}
.y33{bottom:724.288800pt;}
.ya{bottom:729.235067pt;}
.y9f{bottom:730.401067pt;}
.y7a{bottom:734.488133pt;}
.y5d{bottom:735.067867pt;}
.y9e{bottom:748.401067pt;}
.y5c{bottom:750.401200pt;}
.y9{bottom:751.303067pt;}
.y1{bottom:756.762667pt;}
.y9d{bottom:766.401067pt;}
.y5b{bottom:766.401200pt;}
.y8{bottom:767.591600pt;}
.y5a{bottom:782.401200pt;}
.y9c{bottom:784.401067pt;}
.y7{bottom:789.659467pt;}
.y32{bottom:799.741067pt;}
.y9b{bottom:802.401067pt;}
.y59{bottom:802.401200pt;}
.y6{bottom:805.948000pt;}
.y58{bottom:842.834667pt;}
.he{height:33.416667pt;}
.h5{height:37.011719pt;}
.h8{height:39.479167pt;}
.hb{height:41.946615pt;}
.h7{height:46.881510pt;}
.h6{height:49.348958pt;}
.h4{height:51.200000pt;}
.hd{height:54.283854pt;}
.hc{height:56.721354pt;}
.h11{height:56.751302pt;}
.h9{height:61.686198pt;}
.ha{height:71.555990pt;}
.h3{height:76.800000pt;}
.hf{height:88.828125pt;}
.h2{height:102.400000pt;}
.h10{height:163.846931pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:74.396533pt;}
.x2{left:75.590533pt;}
.x3{left:93.481333pt;}
.x8{left:94.488133pt;}
.xc{left:99.518000pt;}
.x4{left:113.224933pt;}
.x9{left:207.874000pt;}
.x6{left:216.285867pt;}
.x7{left:231.222133pt;}
.xb{left:235.997067pt;}
.xa{left:242.440533pt;}
.x1{left:396.850400pt;}
}




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