
    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_c9198ae92cf2f304499caa3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_8362fadf5290eb69dda743fe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_1ff43cd160d98b504d702edd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_70cfbdb1d2cd13d6998af574.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.156738;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_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_24884d2640d055da1c5adf1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972656;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_721cdf3b368c892f2f90108c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_81a37dbd006910e90417c688.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_75c25ce1531e9f2f010a4883.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-2.988000px;}
.ls51{letter-spacing:-1.134000px;}
.ls1b{letter-spacing:-0.828000px;}
.lse{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.414600px;}
.ls38{letter-spacing:-0.308400px;}
.ls39{letter-spacing:-0.305400px;}
.ls44{letter-spacing:-0.262200px;}
.ls1a{letter-spacing:-0.152400px;}
.lsc{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.106800px;}
.ls25{letter-spacing:-0.097800px;}
.ls26{letter-spacing:-0.057600px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.155400px;}
.ls5{letter-spacing:0.170640px;}
.ls4{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.262080px;}
.ls20{letter-spacing:0.264960px;}
.ls2{letter-spacing:0.288000px;}
.ls3c{letter-spacing:0.302400px;}
.ls2a{letter-spacing:0.305280px;}
.ls3b{letter-spacing:0.305400px;}
.ls52{letter-spacing:0.360000px;}
.ls50{letter-spacing:0.979920px;}
.ls32{letter-spacing:1.025280px;}
.ls15{letter-spacing:2.465280px;}
.ls16{letter-spacing:3.185280px;}
.ls12{letter-spacing:3.905280px;}
.ls11{letter-spacing:5.345280px;}
.ls17{letter-spacing:6.065280px;}
.ls42{letter-spacing:6.785280px;}
.ls7{letter-spacing:7.505280px;}
.ls9{letter-spacing:7.866720px;}
.ls6{letter-spacing:8.225280px;}
.ls3f{letter-spacing:8.945280px;}
.ls37{letter-spacing:9.665280px;}
.ls10{letter-spacing:10.385280px;}
.ls23{letter-spacing:11.105280px;}
.ls4a{letter-spacing:11.825280px;}
.ls2c{letter-spacing:12.545280px;}
.ls49{letter-spacing:13.265280px;}
.ls1d{letter-spacing:13.385280px;}
.ls8{letter-spacing:13.985280px;}
.ls41{letter-spacing:14.705280px;}
.ls46{letter-spacing:15.425280px;}
.ls31{letter-spacing:16.145280px;}
.ls30{letter-spacing:18.305280px;}
.ls33{letter-spacing:22.625280px;}
.ls47{letter-spacing:24.065280px;}
.ls2d{letter-spacing:25.505280px;}
.ls1f{letter-spacing:26.945280px;}
.ls4e{letter-spacing:29.105280px;}
.ls4d{letter-spacing:29.825280px;}
.ls36{letter-spacing:31.985280px;}
.ls3e{letter-spacing:32.705280px;}
.ls24{letter-spacing:34.325280px;}
.ls40{letter-spacing:34.865280px;}
.ls19{letter-spacing:35.585280px;}
.ls4f{letter-spacing:35.946720px;}
.ls22{letter-spacing:37.025280px;}
.ls2e{letter-spacing:39.185280px;}
.ls53{letter-spacing:40.446720px;}
.ls14{letter-spacing:40.625280px;}
.ls43{letter-spacing:41.345280px;}
.ls35{letter-spacing:42.785280px;}
.ls34{letter-spacing:42.905280px;}
.ls48{letter-spacing:43.505280px;}
.ls4b{letter-spacing:44.225280px;}
.ls13{letter-spacing:47.105280px;}
.ls1e{letter-spacing:48.545280px;}
.ls28{letter-spacing:49.985280px;}
.ls2b{letter-spacing:50.705280px;}
.ls2f{letter-spacing:55.025280px;}
.ls45{letter-spacing:55.745280px;}
.ls18{letter-spacing:57.905280px;}
.ls3d{letter-spacing:60.065280px;}
.ls29{letter-spacing:62.945280px;}
.ls4c{letter-spacing:65.825280px;}
.ls21{letter-spacing:96.785280px;}
.ls1{letter-spacing:686.460000px;}
.ls3{letter-spacing:699.420000px;}
.ls54{letter-spacing:846.156000px;}
.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;}
}
.ws10{word-spacing:-66.240000px;}
.ws1{word-spacing:-20.016000px;}
.ws12{word-spacing:-18.774720px;}
.wsc{word-spacing:-18.720120px;}
.wsd{word-spacing:-18.717120px;}
.wsb{word-spacing:-18.570120px;}
.ws4{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.357120px;}
.ws9{word-spacing:-18.316920px;}
.wsf{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.262320px;}
.ws11{word-spacing:-18.106320px;}
.wse{word-spacing:-18.000120px;}
.ws8{word-spacing:-17.586720px;}
.ws3{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.812640px;}
.ws5{word-spacing:-13.625280px;}
.ws13{word-spacing:-13.410720px;}
.ws6{word-spacing:0.000000px;}
._3e{margin-left:-5.716320px;}
._1b{margin-left:-4.253760px;}
._a{margin-left:-3.179520px;}
._11{margin-left:-2.172960px;}
._1{margin-left:-1.152000px;}
._0{width:1.140000px;}
._7{width:3.052080px;}
._b{width:4.316400px;}
._16{width:5.373120px;}
._d{width:6.782880px;}
._c{width:8.107200px;}
._15{width:9.472320px;}
._4{width:10.517760px;}
._3{width:11.892240px;}
._1a{width:12.916800px;}
._e{width:14.068800px;}
._19{width:15.317280px;}
._23{width:16.957440px;}
._9{width:20.166720px;}
._8{width:21.676800px;}
._5{width:23.127120px;}
._6{width:24.253440px;}
._2{width:25.876080px;}
._24{width:27.208080px;}
._25{width:28.242000px;}
._14{width:29.728800px;}
._31{width:30.735360px;}
._2b{width:31.795200px;}
._29{width:33.186240px;}
._1e{width:34.577280px;}
._1d{width:36.286560px;}
._12{width:37.425600px;}
._13{width:39.094560px;}
._f{width:41.068800px;}
._21{width:42.579360px;}
._33{width:44.102880px;}
._3d{width:45.547680px;}
._17{width:46.562880px;}
._18{width:47.980800px;}
._22{width:49.129440px;}
._2e{width:50.528160px;}
._34{width:51.891840px;}
._2c{width:53.097120px;}
._2a{width:54.105120px;}
._2d{width:55.126080px;}
._1c{width:56.701440px;}
._10{width:58.092480px;}
._3a{width:60.303600px;}
._32{width:62.149440px;}
._37{width:64.411200px;}
._36{width:65.564640px;}
._20{width:67.564800px;}
._1f{width:68.650560px;}
._30{width:74.122560px;}
._2f{width:76.096800px;}
._27{width:83.528640px;}
._28{width:84.814560px;}
._3b{width:88.496640px;}
._26{width:96.776640px;}
._35{width:103.760640px;}
._38{width:123.405120px;}
._39{width:124.411680px;}
._3c{width:190.309440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.420000px;}
.y2{bottom:22.500000px;}
.y1{bottom:41.040000px;}
.y28{bottom:109.476000px;}
.y5c{bottom:120.276000px;}
.y4d{bottom:122.076000px;}
.y27{bottom:126.576000px;}
.y63{bottom:133.776000px;}
.y5b{bottom:139.176000px;}
.y4c{bottom:140.976000px;}
.y26{bottom:143.856000px;}
.y25{bottom:148.356000px;}
.y62{bottom:151.050000px;}
.y5a{bottom:158.250000px;}
.y4b{bottom:159.870000px;}
.y24{bottom:161.850000px;}
.y61{bottom:168.330000px;}
.y59{bottom:177.150000px;}
.y4a{bottom:178.950000px;}
.y60{bottom:185.610000px;}
.y23{bottom:192.810000px;}
.y58{bottom:196.230000px;}
.y49{bottom:197.850000px;}
.y5f{bottom:202.890000px;}
.y22{bottom:211.710000px;}
.y57{bottom:215.130000px;}
.y48{bottom:216.930000px;}
.y5e{bottom:219.990000px;}
.y21{bottom:230.610000px;}
.y56{bottom:234.255000px;}
.y47{bottom:235.875000px;}
.y5d{bottom:237.315000px;}
.y20{bottom:249.735000px;}
.y55{bottom:253.155000px;}
.y46{bottom:254.955000px;}
.y1f{bottom:268.635000px;}
.y54{bottom:272.055000px;}
.y45{bottom:273.855000px;}
.y1e{bottom:287.715000px;}
.y53{bottom:291.135000px;}
.y44{bottom:292.755000px;}
.y1d{bottom:306.615000px;}
.y52{bottom:310.035000px;}
.y43{bottom:311.835000px;}
.y1c{bottom:325.515000px;}
.y51{bottom:329.115000px;}
.y42{bottom:330.735000px;}
.y1b{bottom:344.595000px;}
.y50{bottom:348.015000px;}
.y41{bottom:349.815000px;}
.y1a{bottom:363.495000px;}
.y4f{bottom:366.915000px;}
.y40{bottom:368.715000px;}
.y19{bottom:382.575000px;}
.y4e{bottom:386.175000px;}
.y3f{bottom:387.615000px;}
.y18{bottom:401.475000px;}
.y3e{bottom:406.695000px;}
.y17{bottom:420.375000px;}
.y3d{bottom:425.625000px;}
.y16{bottom:439.485000px;}
.y3c{bottom:444.705000px;}
.y15{bottom:458.205000px;}
.y3b{bottom:463.605000px;}
.y14{bottom:475.485000px;}
.y3a{bottom:482.505000px;}
.y13{bottom:492.585000px;}
.y39{bottom:501.585000px;}
.y12{bottom:509.865000px;}
.y38{bottom:520.485000px;}
.y11{bottom:527.145000px;}
.y37{bottom:539.565000px;}
.y10{bottom:544.425000px;}
.y36{bottom:558.465000px;}
.yf{bottom:561.705000px;}
.y35{bottom:577.365000px;}
.ye{bottom:578.985000px;}
.y34{bottom:596.445000px;}
.yd{bottom:596.625000px;}
.y33{bottom:615.390000px;}
.y32{bottom:634.470000px;}
.yc{bottom:638.070000px;}
.y6d{bottom:651.390000px;}
.y31{bottom:653.370000px;}
.yb{bottom:658.770000px;}
.y6c{bottom:668.670000px;}
.y30{bottom:672.270000px;}
.ya{bottom:679.470000px;}
.y6b{bottom:685.950000px;}
.y2f{bottom:691.350000px;}
.y9{bottom:700.350000px;}
.y6a{bottom:703.230000px;}
.y2e{bottom:710.250000px;}
.y69{bottom:720.330000px;}
.y2d{bottom:729.330000px;}
.y68{bottom:737.610000px;}
.y8{bottom:741.570000px;}
.y2c{bottom:748.230000px;}
.y67{bottom:754.890000px;}
.y6{bottom:762.270000px;}
.y2b{bottom:767.310000px;}
.y7{bottom:768.210000px;}
.y66{bottom:772.170000px;}
.y5{bottom:782.970000px;}
.y2a{bottom:786.210000px;}
.y65{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.y29{bottom:805.140000px;}
.y64{bottom:806.760000px;}
.hc{height:34.874297px;}
.h5{height:43.905937px;}
.h9{height:44.090508px;}
.h8{height:45.549492px;}
.h3{height:46.251562px;}
.h7{height:48.761719px;}
.hb{height:50.273438px;}
.h2{height:53.603086px;}
.hd{height:54.390938px;}
.ha{height:59.415469px;}
.h6{height:64.582031px;}
.h4{height:65.531250px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x2{left:80.855991px;}
.xc{left:86.255991px;}
.xe{left:106.415991px;}
.xd{left:107.855991px;}
.x3{left:115.235991px;}
.x4{left:118.295991px;}
.xa{left:123.335991px;}
.x9{left:143.675991px;}
.x5{left:243.614991px;}
.xb{left:296.894991px;}
.x1{left:306.434991px;}
.x8{left:314.714991px;}
.x6{left:379.364981px;}
.x7{left:386.024991px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-2.656000pt;}
.ls51{letter-spacing:-1.008000pt;}
.ls1b{letter-spacing:-0.736000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.368533pt;}
.ls38{letter-spacing:-0.274133pt;}
.ls39{letter-spacing:-0.271467pt;}
.ls44{letter-spacing:-0.233067pt;}
.ls1a{letter-spacing:-0.135467pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls25{letter-spacing:-0.086933pt;}
.ls26{letter-spacing:-0.051200pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.138133pt;}
.ls5{letter-spacing:0.151680pt;}
.ls4{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.232960pt;}
.ls20{letter-spacing:0.235520pt;}
.ls2{letter-spacing:0.256000pt;}
.ls3c{letter-spacing:0.268800pt;}
.ls2a{letter-spacing:0.271360pt;}
.ls3b{letter-spacing:0.271467pt;}
.ls52{letter-spacing:0.320000pt;}
.ls50{letter-spacing:0.871040pt;}
.ls32{letter-spacing:0.911360pt;}
.ls15{letter-spacing:2.191360pt;}
.ls16{letter-spacing:2.831360pt;}
.ls12{letter-spacing:3.471360pt;}
.ls11{letter-spacing:4.751360pt;}
.ls17{letter-spacing:5.391360pt;}
.ls42{letter-spacing:6.031360pt;}
.ls7{letter-spacing:6.671360pt;}
.ls9{letter-spacing:6.992640pt;}
.ls6{letter-spacing:7.311360pt;}
.ls3f{letter-spacing:7.951360pt;}
.ls37{letter-spacing:8.591360pt;}
.ls10{letter-spacing:9.231360pt;}
.ls23{letter-spacing:9.871360pt;}
.ls4a{letter-spacing:10.511360pt;}
.ls2c{letter-spacing:11.151360pt;}
.ls49{letter-spacing:11.791360pt;}
.ls1d{letter-spacing:11.898027pt;}
.ls8{letter-spacing:12.431360pt;}
.ls41{letter-spacing:13.071360pt;}
.ls46{letter-spacing:13.711360pt;}
.ls31{letter-spacing:14.351360pt;}
.ls30{letter-spacing:16.271360pt;}
.ls33{letter-spacing:20.111360pt;}
.ls47{letter-spacing:21.391360pt;}
.ls2d{letter-spacing:22.671360pt;}
.ls1f{letter-spacing:23.951360pt;}
.ls4e{letter-spacing:25.871360pt;}
.ls4d{letter-spacing:26.511360pt;}
.ls36{letter-spacing:28.431360pt;}
.ls3e{letter-spacing:29.071360pt;}
.ls24{letter-spacing:30.511360pt;}
.ls40{letter-spacing:30.991360pt;}
.ls19{letter-spacing:31.631360pt;}
.ls4f{letter-spacing:31.952640pt;}
.ls22{letter-spacing:32.911360pt;}
.ls2e{letter-spacing:34.831360pt;}
.ls53{letter-spacing:35.952640pt;}
.ls14{letter-spacing:36.111360pt;}
.ls43{letter-spacing:36.751360pt;}
.ls35{letter-spacing:38.031360pt;}
.ls34{letter-spacing:38.138027pt;}
.ls48{letter-spacing:38.671360pt;}
.ls4b{letter-spacing:39.311360pt;}
.ls13{letter-spacing:41.871360pt;}
.ls1e{letter-spacing:43.151360pt;}
.ls28{letter-spacing:44.431360pt;}
.ls2b{letter-spacing:45.071360pt;}
.ls2f{letter-spacing:48.911360pt;}
.ls45{letter-spacing:49.551360pt;}
.ls18{letter-spacing:51.471360pt;}
.ls3d{letter-spacing:53.391360pt;}
.ls29{letter-spacing:55.951360pt;}
.ls4c{letter-spacing:58.511360pt;}
.ls21{letter-spacing:86.031360pt;}
.ls1{letter-spacing:610.186667pt;}
.ls3{letter-spacing:621.706667pt;}
.ls54{letter-spacing:752.138667pt;}
.ws10{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws12{word-spacing:-16.688640pt;}
.wsc{word-spacing:-16.640107pt;}
.wsd{word-spacing:-16.637440pt;}
.wsb{word-spacing:-16.506773pt;}
.ws4{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.317440pt;}
.ws9{word-spacing:-16.281707pt;}
.wsf{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.233173pt;}
.ws11{word-spacing:-16.094507pt;}
.wse{word-spacing:-16.000107pt;}
.ws8{word-spacing:-15.632640pt;}
.ws3{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:-14.055680pt;}
.ws5{word-spacing:-12.111360pt;}
.ws13{word-spacing:-11.920640pt;}
.ws6{word-spacing:0.000000pt;}
._3e{margin-left:-5.081173pt;}
._1b{margin-left:-3.781120pt;}
._a{margin-left:-2.826240pt;}
._11{margin-left:-1.931520pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.013333pt;}
._7{width:2.712960pt;}
._b{width:3.836800pt;}
._16{width:4.776107pt;}
._d{width:6.029227pt;}
._c{width:7.206400pt;}
._15{width:8.419840pt;}
._4{width:9.349120pt;}
._3{width:10.570880pt;}
._1a{width:11.481600pt;}
._e{width:12.505600pt;}
._19{width:13.615360pt;}
._23{width:15.073280pt;}
._9{width:17.925973pt;}
._8{width:19.268267pt;}
._5{width:20.557440pt;}
._6{width:21.558613pt;}
._2{width:23.000960pt;}
._24{width:24.184960pt;}
._25{width:25.104000pt;}
._14{width:26.425600pt;}
._31{width:27.320320pt;}
._2b{width:28.262400pt;}
._29{width:29.498880pt;}
._1e{width:30.735360pt;}
._1d{width:32.254720pt;}
._12{width:33.267200pt;}
._13{width:34.750720pt;}
._f{width:36.505600pt;}
._21{width:37.848320pt;}
._33{width:39.202560pt;}
._3d{width:40.486827pt;}
._17{width:41.389227pt;}
._18{width:42.649600pt;}
._22{width:43.670613pt;}
._2e{width:44.913920pt;}
._34{width:46.126080pt;}
._2c{width:47.197440pt;}
._2a{width:48.093440pt;}
._2d{width:49.000960pt;}
._1c{width:50.401280pt;}
._10{width:51.637760pt;}
._3a{width:53.603200pt;}
._32{width:55.243947pt;}
._37{width:57.254400pt;}
._36{width:58.279680pt;}
._20{width:60.057600pt;}
._1f{width:61.022720pt;}
._30{width:65.886720pt;}
._2f{width:67.641600pt;}
._27{width:74.247680pt;}
._28{width:75.390720pt;}
._3b{width:78.663680pt;}
._26{width:86.023680pt;}
._35{width:92.231680pt;}
._38{width:109.693440pt;}
._39{width:110.588160pt;}
._3c{width:169.163947pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.040000pt;}
.y2{bottom:20.000000pt;}
.y1{bottom:36.480000pt;}
.y28{bottom:97.312000pt;}
.y5c{bottom:106.912000pt;}
.y4d{bottom:108.512000pt;}
.y27{bottom:112.512000pt;}
.y63{bottom:118.912000pt;}
.y5b{bottom:123.712000pt;}
.y4c{bottom:125.312000pt;}
.y26{bottom:127.872000pt;}
.y25{bottom:131.872000pt;}
.y62{bottom:134.266667pt;}
.y5a{bottom:140.666667pt;}
.y4b{bottom:142.106667pt;}
.y24{bottom:143.866667pt;}
.y61{bottom:149.626667pt;}
.y59{bottom:157.466667pt;}
.y4a{bottom:159.066667pt;}
.y60{bottom:164.986667pt;}
.y23{bottom:171.386667pt;}
.y58{bottom:174.426667pt;}
.y49{bottom:175.866667pt;}
.y5f{bottom:180.346667pt;}
.y22{bottom:188.186667pt;}
.y57{bottom:191.226667pt;}
.y48{bottom:192.826667pt;}
.y5e{bottom:195.546667pt;}
.y21{bottom:204.986667pt;}
.y56{bottom:208.226667pt;}
.y47{bottom:209.666667pt;}
.y5d{bottom:210.946667pt;}
.y20{bottom:221.986667pt;}
.y55{bottom:225.026667pt;}
.y46{bottom:226.626667pt;}
.y1f{bottom:238.786667pt;}
.y54{bottom:241.826667pt;}
.y45{bottom:243.426667pt;}
.y1e{bottom:255.746667pt;}
.y53{bottom:258.786667pt;}
.y44{bottom:260.226667pt;}
.y1d{bottom:272.546667pt;}
.y52{bottom:275.586667pt;}
.y43{bottom:277.186667pt;}
.y1c{bottom:289.346667pt;}
.y51{bottom:292.546667pt;}
.y42{bottom:293.986667pt;}
.y1b{bottom:306.306667pt;}
.y50{bottom:309.346667pt;}
.y41{bottom:310.946667pt;}
.y1a{bottom:323.106667pt;}
.y4f{bottom:326.146667pt;}
.y40{bottom:327.746667pt;}
.y19{bottom:340.066667pt;}
.y4e{bottom:343.266667pt;}
.y3f{bottom:344.546667pt;}
.y18{bottom:356.866667pt;}
.y3e{bottom:361.506667pt;}
.y17{bottom:373.666667pt;}
.y3d{bottom:378.333333pt;}
.y16{bottom:390.653333pt;}
.y3c{bottom:395.293333pt;}
.y15{bottom:407.293333pt;}
.y3b{bottom:412.093333pt;}
.y14{bottom:422.653333pt;}
.y3a{bottom:428.893333pt;}
.y13{bottom:437.853333pt;}
.y39{bottom:445.853333pt;}
.y12{bottom:453.213333pt;}
.y38{bottom:462.653333pt;}
.y11{bottom:468.573333pt;}
.y37{bottom:479.613333pt;}
.y10{bottom:483.933333pt;}
.y36{bottom:496.413333pt;}
.yf{bottom:499.293333pt;}
.y35{bottom:513.213333pt;}
.ye{bottom:514.653333pt;}
.y34{bottom:530.173333pt;}
.yd{bottom:530.333333pt;}
.y33{bottom:547.013333pt;}
.y32{bottom:563.973333pt;}
.yc{bottom:567.173333pt;}
.y6d{bottom:579.013333pt;}
.y31{bottom:580.773333pt;}
.yb{bottom:585.573333pt;}
.y6c{bottom:594.373333pt;}
.y30{bottom:597.573333pt;}
.ya{bottom:603.973333pt;}
.y6b{bottom:609.733333pt;}
.y2f{bottom:614.533333pt;}
.y9{bottom:622.533333pt;}
.y6a{bottom:625.093333pt;}
.y2e{bottom:631.333333pt;}
.y69{bottom:640.293333pt;}
.y2d{bottom:648.293333pt;}
.y68{bottom:655.653333pt;}
.y8{bottom:659.173333pt;}
.y2c{bottom:665.093333pt;}
.y67{bottom:671.013333pt;}
.y6{bottom:677.573333pt;}
.y2b{bottom:682.053333pt;}
.y7{bottom:682.853333pt;}
.y66{bottom:686.373333pt;}
.y5{bottom:695.973333pt;}
.y2a{bottom:698.853333pt;}
.y65{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.y29{bottom:715.680000pt;}
.y64{bottom:717.120000pt;}
.hc{height:30.999375pt;}
.h5{height:39.027500pt;}
.h9{height:39.191562pt;}
.h8{height:40.488438pt;}
.h3{height:41.112500pt;}
.h7{height:43.343750pt;}
.hb{height:44.687500pt;}
.h2{height:47.647188pt;}
.hd{height:48.347500pt;}
.ha{height:52.813750pt;}
.h6{height:57.406250pt;}
.h4{height:58.250000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x2{left:71.871992pt;}
.xc{left:76.671992pt;}
.xe{left:94.591992pt;}
.xd{left:95.871992pt;}
.x3{left:102.431992pt;}
.x4{left:105.151992pt;}
.xa{left:109.631992pt;}
.x9{left:127.711992pt;}
.x5{left:216.546658pt;}
.xb{left:263.906658pt;}
.x1{left:272.386658pt;}
.x8{left:279.746658pt;}
.x6{left:337.213317pt;}
.x7{left:343.133325pt;}
}




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