
    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_b29c24be9a1b51b38c3a9fdd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_799e225ba8ea85c868c47de7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_0b34fb5978364aaf3e3f6736.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_81e6a32f120de0c35dd1aab3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_61693aab360a0df8c7c907bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.030273;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_eb988a4c9d904b8b786107ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_aa194e9b91c495bbaaa60337.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.087891;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_fcbeec01dbc0e291a3304d6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.030273;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_74bb39b92444db51e9702b63.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d337f565b576c7660548e4df.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_61436847766903646338a04d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ef70e8d8179f23092458a2bd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_82e88298f47886ea6b0e0c2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls38{letter-spacing:-0.468000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.391800px;}
.ls1b{letter-spacing:-0.384000px;}
.ls22{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.223800px;}
.ls24{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.079800px;}
.lse{letter-spacing:-0.072000px;}
.ls3c{letter-spacing:-0.011940px;}
.lsb{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.036000px;}
.ls20{letter-spacing:0.129600px;}
.ls1f{letter-spacing:0.179280px;}
.ls23{letter-spacing:0.184800px;}
.ls28{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.247968px;}
.ls4{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.352200px;}
.ls25{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.756000px;}
.ls37{letter-spacing:0.936000px;}
.ls18{letter-spacing:1.008000px;}
.ls2a{letter-spacing:1.656000px;}
.ls2f{letter-spacing:2.376000px;}
.ls14{letter-spacing:2.448000px;}
.ls30{letter-spacing:3.096000px;}
.ls26{letter-spacing:5.256000px;}
.ls29{letter-spacing:5.976000px;}
.lsa{letter-spacing:7.488000px;}
.ls31{letter-spacing:8.136000px;}
.ls9{letter-spacing:8.208000px;}
.ls32{letter-spacing:9.756000px;}
.ls33{letter-spacing:10.296000px;}
.ls1e{letter-spacing:10.554768px;}
.ls34{letter-spacing:11.736000px;}
.ls2e{letter-spacing:11.856000px;}
.ls2d{letter-spacing:12.456000px;}
.ls36{letter-spacing:13.176000px;}
.ls13{letter-spacing:18.468000px;}
.ls8{letter-spacing:21.168000px;}
.ls7{letter-spacing:21.888000px;}
.ls35{letter-spacing:35.455968px;}
.ls0{letter-spacing:37.008000px;}
.ls21{letter-spacing:39.059280px;}
.ls10{letter-spacing:47.808000px;}
.ls2{letter-spacing:52.848000px;}
.lsf{letter-spacing:53.527968px;}
.ls2b{letter-spacing:54.216000px;}
.ls2c{letter-spacing:54.936000px;}
.ls5{letter-spacing:58.584000px;}
.ls6{letter-spacing:58.608000px;}
.ls16{letter-spacing:96.007968px;}
.ls15{letter-spacing:97.423968px;}
.ls17{letter-spacing:129.888000px;}
.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;}
}
.wsb{word-spacing:-144.384000px;}
.ws0{word-spacing:-144.144000px;}
.ws5{word-spacing:-144.072000px;}
.ws2{word-spacing:-144.000000px;}
.ws1e{word-spacing:-108.756000px;}
.ws26{word-spacing:-108.144000px;}
.ws1c{word-spacing:-108.000000px;}
.ws9{word-spacing:-40.608000px;}
.ws4{word-spacing:-40.320000px;}
.wsf{word-spacing:-40.312032px;}
.wsc{word-spacing:-40.072032px;}
.wsa{word-spacing:-40.032000px;}
.ws7{word-spacing:-39.992232px;}
.ws1{word-spacing:-39.888000px;}
.ws3{word-spacing:-39.744000px;}
.wse{word-spacing:-39.688032px;}
.ws8{word-spacing:-39.680232px;}
.ws1b{word-spacing:-30.780000px;}
.ws25{word-spacing:-30.456000px;}
.ws27{word-spacing:-30.416232px;}
.ws20{word-spacing:-30.064032px;}
.ws23{word-spacing:-30.060000px;}
.ws1d{word-spacing:-30.024000px;}
.ws21{word-spacing:-29.992032px;}
.ws24{word-spacing:-29.808000px;}
.ws1f{word-spacing:-29.736000px;}
.ws22{word-spacing:-29.556000px;}
.ws1a{word-spacing:-19.439280px;}
.ws15{word-spacing:-19.038240px;}
.ws14{word-spacing:-17.285520px;}
.ws13{word-spacing:-17.100720px;}
.ws18{word-spacing:-16.632000px;}
.ws16{word-spacing:-16.272000px;}
.ws17{word-spacing:-16.056000px;}
.ws19{word-spacing:-15.912000px;}
.ws12{word-spacing:-14.645232px;}
.ws10{word-spacing:-14.616000px;}
.ws11{word-spacing:-14.544000px;}
.ws28{word-spacing:-13.505760px;}
.ws6{word-spacing:0.000000px;}
.wsd{word-spacing:67.431240px;}
._28{margin-left:-2547.517200px;}
._29{margin-left:-2446.237200px;}
._1a{margin-left:-12.672000px;}
._6{margin-left:-10.392000px;}
._4{margin-left:-8.784000px;}
._25{margin-left:-7.213344px;}
._1e{margin-left:-5.172000px;}
._20{margin-left:-3.822144px;}
._17{margin-left:-2.285856px;}
._9{margin-left:-1.032000px;}
._1{width:1.740000px;}
._14{width:3.204000px;}
._1f{width:4.608000px;}
._1d{width:5.640000px;}
._f{width:7.248000px;}
._e{width:8.496000px;}
._21{width:10.569552px;}
._22{width:11.629872px;}
._27{width:13.464000px;}
._16{width:18.552000px;}
._d{width:21.360000px;}
._c{width:22.440000px;}
._24{width:26.793648px;}
._26{width:34.652688px;}
._3{width:35.856000px;}
._2{width:37.008000px;}
._23{width:38.832576px;}
._12{width:46.848000px;}
._11{width:47.928000px;}
._8{width:51.696000px;}
._7{width:52.992000px;}
._10{width:54.094464px;}
._a{width:58.032000px;}
._b{width:59.076000px;}
._15{width:67.143936px;}
._0{width:84.911952px;}
._19{width:95.906880px;}
._5{width:96.912000px;}
._18{width:97.939152px;}
._13{width:101.808000px;}
._1b{width:129.432000px;}
._1c{width:130.704000px;}
._2a{width:3644.657040px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(36,36,36);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:84.384000px;}
.fs6{font-size:95.760000px;}
.fs7{font-size:95.904000px;}
.fs8{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:144.144000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:36.576000px;}
.y21{bottom:37.620000px;}
.y88{bottom:43.236000px;}
.y6c{bottom:50.184000px;}
.y33{bottom:57.168000px;}
.y20{bottom:59.400000px;}
.y87{bottom:64.872000px;}
.y4a{bottom:65.412000px;}
.y6b{bottom:71.784000px;}
.y32{bottom:78.768000px;}
.y1f{bottom:81.000000px;}
.y86{bottom:86.472000px;}
.y6a{bottom:93.384000px;}
.y31{bottom:100.404000px;}
.y1e{bottom:102.636000px;}
.y85{bottom:108.072000px;}
.y5a{bottom:108.324000px;}
.y69{bottom:114.984000px;}
.y49{bottom:123.012000px;}
.y1d{bottom:124.236000px;}
.y84{bottom:129.672000px;}
.y68{bottom:136.584000px;}
.y59{bottom:140.724000px;}
.y30{bottom:143.604000px;}
.y1c{bottom:145.836000px;}
.y83{bottom:151.275000px;}
.y48{bottom:151.815000px;}
.y67{bottom:158.190000px;}
.y2f{bottom:165.210000px;}
.y1b{bottom:167.430000px;}
.y82{bottom:172.875000px;}
.ya{bottom:177.735000px;}
.y66{bottom:179.820000px;}
.y47{bottom:180.615000px;}
.y2e{bottom:186.810000px;}
.y1a{bottom:189.030000px;}
.y58{bottom:191.130000px;}
.y81{bottom:194.475000px;}
.y6d{bottom:195.270000px;}
.y18{bottom:199.110000px;}
.y65{bottom:201.420000px;}
.y19{bottom:210.630000px;}
.y9{bottom:220.935000px;}
.y57{bottom:223.560000px;}
.y2d{bottom:230.010000px;}
.y80{bottom:237.705000px;}
.y46{bottom:238.245000px;}
.y17{bottom:242.310000px;}
.y64{bottom:244.620000px;}
.y76{bottom:247.755000px;}
.y2c{bottom:251.610000px;}
.y56{bottom:255.960000px;}
.y7f{bottom:259.305000px;}
.y10{bottom:263.310000px;}
.y8{bottom:264.135000px;}
.y63{bottom:266.220000px;}
.y45{bottom:267.045000px;}
.y2b{bottom:273.240000px;}
.y7e{bottom:280.905000px;}
.y16{bottom:285.555000px;}
.y62{bottom:287.820000px;}
.y55{bottom:288.360000px;}
.y44{bottom:295.845000px;}
.y7d{bottom:302.505000px;}
.yf{bottom:306.510000px;}
.y7{bottom:307.365000px;}
.y61{bottom:309.420000px;}
.y2a{bottom:316.440000px;}
.y54{bottom:320.760000px;}
.y7c{bottom:324.105000px;}
.y43{bottom:324.645000px;}
.y60{bottom:331.050000px;}
.y7b{bottom:345.705000px;}
.y5f{bottom:352.650000px;}
.y7a{bottom:367.350000px;}
.y15{bottom:371.955000px;}
.y5e{bottom:374.250000px;}
.y42{bottom:382.290000px;}
.y53{bottom:389.190000px;}
.ye{bottom:392.940000px;}
.y6{bottom:393.765000px;}
.y71{bottom:394.230000px;}
.y75{bottom:403.710000px;}
.y79{bottom:410.190000px;}
.y41{bottom:411.090000px;}
.y14{bottom:415.185000px;}
.y5d{bottom:417.090000px;}
.y52{bottom:421.590000px;}
.yd{bottom:436.140000px;}
.y5{bottom:437.010000px;}
.y40{bottom:439.890000px;}
.y78{bottom:442.590000px;}
.y5c{bottom:449.490000px;}
.y51{bottom:453.990000px;}
.y3f{bottom:468.690000px;}
.y6e{bottom:474.945000px;}
.y77{bottom:474.990000px;}
.yc{bottom:479.340000px;}
.y4{bottom:480.210000px;}
.y5b{bottom:481.935000px;}
.y3e{bottom:497.490000px;}
.y13{bottom:501.585000px;}
.y73{bottom:504.795000px;}
.y50{bottom:522.390000px;}
.yb{bottom:522.570000px;}
.y3{bottom:523.410000px;}
.y12{bottom:544.785000px;}
.y4f{bottom:554.835000px;}
.y2{bottom:566.610000px;}
.y11{bottom:588.030000px;}
.y1{bottom:609.840000px;}
.y4e{bottom:623.235000px;}
.y3d{bottom:651.390000px;}
.y4d{bottom:655.635000px;}
.y72{bottom:660.240000px;}
.y29{bottom:662.835000px;}
.y70{bottom:673.020000px;}
.y3c{bottom:680.220000px;}
.y28{bottom:688.035000px;}
.y38{bottom:689.760000px;}
.y3b{bottom:709.020000px;}
.y37{bottom:711.390000px;}
.y27{bottom:713.235000px;}
.y4c{bottom:720.465000px;}
.y74{bottom:721.650000px;}
.y24{bottom:730.410000px;}
.y36{bottom:732.990000px;}
.y3a{bottom:737.820000px;}
.y26{bottom:738.465000px;}
.y6f{bottom:738.975000px;}
.y35{bottom:754.590000px;}
.y23{bottom:755.640000px;}
.y39{bottom:756.180000px;}
.y25{bottom:763.665000px;}
.y34{bottom:777.090000px;}
.y22{bottom:780.840000px;}
.h11{height:59.439023px;}
.h3{height:60.855469px;}
.h4{height:62.226562px;}
.h5{height:62.351016px;}
.h6{height:71.200898px;}
.h7{height:71.322609px;}
.h9{height:71.613281px;}
.h12{height:71.756508px;}
.hb{height:80.937773px;}
.hc{height:81.059484px;}
.hd{height:82.761328px;}
.he{height:82.885781px;}
.h8{height:86.255508px;}
.ha{height:98.051133px;}
.hf{height:112.640625px;}
.h10{height:112.790813px;}
.h2{height:150.187500px;}
.h1{height:150.337688px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:30.671979px;}
.x3{left:42.839979px;}
.x9{left:61.595979px;}
.x1{left:87.875979px;}
.x4{left:457.409979px;}
.x15{left:524.189979px;}
.xc{left:554.189979px;}
.x7{left:575.354979px;}
.x13{left:648.569979px;}
.x6{left:666.434979px;}
.x8{left:669.494979px;}
.x5{left:677.414979px;}
.xe{left:686.309979px;}
.xa{left:858.089979px;}
.x12{left:864.644979px;}
.xb{left:871.709979px;}
.xd{left:901.724979px;}
.x14{left:992.234979px;}
.x11{left:1008.749979px;}
.xf{left:1052.309979px;}
.x10{left:1135.769979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls38{letter-spacing:-0.416000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.348267pt;}
.ls1b{letter-spacing:-0.341333pt;}
.ls22{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.198933pt;}
.ls24{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.070933pt;}
.lse{letter-spacing:-0.064000pt;}
.ls3c{letter-spacing:-0.010613pt;}
.lsb{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.032000pt;}
.ls20{letter-spacing:0.115200pt;}
.ls1f{letter-spacing:0.159360pt;}
.ls23{letter-spacing:0.164267pt;}
.ls28{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.220416pt;}
.ls4{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.313067pt;}
.ls25{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.672000pt;}
.ls37{letter-spacing:0.832000pt;}
.ls18{letter-spacing:0.896000pt;}
.ls2a{letter-spacing:1.472000pt;}
.ls2f{letter-spacing:2.112000pt;}
.ls14{letter-spacing:2.176000pt;}
.ls30{letter-spacing:2.752000pt;}
.ls26{letter-spacing:4.672000pt;}
.ls29{letter-spacing:5.312000pt;}
.lsa{letter-spacing:6.656000pt;}
.ls31{letter-spacing:7.232000pt;}
.ls9{letter-spacing:7.296000pt;}
.ls32{letter-spacing:8.672000pt;}
.ls33{letter-spacing:9.152000pt;}
.ls1e{letter-spacing:9.382016pt;}
.ls34{letter-spacing:10.432000pt;}
.ls2e{letter-spacing:10.538667pt;}
.ls2d{letter-spacing:11.072000pt;}
.ls36{letter-spacing:11.712000pt;}
.ls13{letter-spacing:16.416000pt;}
.ls8{letter-spacing:18.816000pt;}
.ls7{letter-spacing:19.456000pt;}
.ls35{letter-spacing:31.516416pt;}
.ls0{letter-spacing:32.896000pt;}
.ls21{letter-spacing:34.719360pt;}
.ls10{letter-spacing:42.496000pt;}
.ls2{letter-spacing:46.976000pt;}
.lsf{letter-spacing:47.580416pt;}
.ls2b{letter-spacing:48.192000pt;}
.ls2c{letter-spacing:48.832000pt;}
.ls5{letter-spacing:52.074667pt;}
.ls6{letter-spacing:52.096000pt;}
.ls16{letter-spacing:85.340416pt;}
.ls15{letter-spacing:86.599083pt;}
.ls17{letter-spacing:115.456000pt;}
.wsb{word-spacing:-128.341333pt;}
.ws0{word-spacing:-128.128000pt;}
.ws5{word-spacing:-128.064000pt;}
.ws2{word-spacing:-128.000000pt;}
.ws1e{word-spacing:-96.672000pt;}
.ws26{word-spacing:-96.128000pt;}
.ws1c{word-spacing:-96.000000pt;}
.ws9{word-spacing:-36.096000pt;}
.ws4{word-spacing:-35.840000pt;}
.wsf{word-spacing:-35.832917pt;}
.wsc{word-spacing:-35.619584pt;}
.wsa{word-spacing:-35.584000pt;}
.ws7{word-spacing:-35.548651pt;}
.ws1{word-spacing:-35.456000pt;}
.ws3{word-spacing:-35.328000pt;}
.wse{word-spacing:-35.278251pt;}
.ws8{word-spacing:-35.271317pt;}
.ws1b{word-spacing:-27.360000pt;}
.ws25{word-spacing:-27.072000pt;}
.ws27{word-spacing:-27.036651pt;}
.ws20{word-spacing:-26.723584pt;}
.ws23{word-spacing:-26.720000pt;}
.ws1d{word-spacing:-26.688000pt;}
.ws21{word-spacing:-26.659584pt;}
.ws24{word-spacing:-26.496000pt;}
.ws1f{word-spacing:-26.432000pt;}
.ws22{word-spacing:-26.272000pt;}
.ws1a{word-spacing:-17.279360pt;}
.ws15{word-spacing:-16.922880pt;}
.ws14{word-spacing:-15.364907pt;}
.ws13{word-spacing:-15.200640pt;}
.ws18{word-spacing:-14.784000pt;}
.ws16{word-spacing:-14.464000pt;}
.ws17{word-spacing:-14.272000pt;}
.ws19{word-spacing:-14.144000pt;}
.ws12{word-spacing:-13.017984pt;}
.ws10{word-spacing:-12.992000pt;}
.ws11{word-spacing:-12.928000pt;}
.ws28{word-spacing:-12.005120pt;}
.ws6{word-spacing:0.000000pt;}
.wsd{word-spacing:59.938880pt;}
._28{margin-left:-2264.459733pt;}
._29{margin-left:-2174.433067pt;}
._1a{margin-left:-11.264000pt;}
._6{margin-left:-9.237333pt;}
._4{margin-left:-7.808000pt;}
._25{margin-left:-6.411861pt;}
._1e{margin-left:-4.597333pt;}
._20{margin-left:-3.397461pt;}
._17{margin-left:-2.031872pt;}
._9{margin-left:-0.917333pt;}
._1{width:1.546667pt;}
._14{width:2.848000pt;}
._1f{width:4.096000pt;}
._1d{width:5.013333pt;}
._f{width:6.442667pt;}
._e{width:7.552000pt;}
._21{width:9.395157pt;}
._22{width:10.337664pt;}
._27{width:11.968000pt;}
._16{width:16.490667pt;}
._d{width:18.986667pt;}
._c{width:19.946667pt;}
._24{width:23.816576pt;}
._26{width:30.802389pt;}
._3{width:31.872000pt;}
._2{width:32.896000pt;}
._23{width:34.517845pt;}
._12{width:41.642667pt;}
._11{width:42.602667pt;}
._8{width:45.952000pt;}
._7{width:47.104000pt;}
._10{width:48.083968pt;}
._a{width:51.584000pt;}
._b{width:52.512000pt;}
._15{width:59.683499pt;}
._0{width:75.477291pt;}
._19{width:85.250560pt;}
._5{width:86.144000pt;}
._18{width:87.057024pt;}
._13{width:90.496000pt;}
._1b{width:115.050667pt;}
._1c{width:116.181333pt;}
._2a{width:3239.695147pt;}
.fsa{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:75.008000pt;}
.fs6{font-size:85.120000pt;}
.fs7{font-size:85.248000pt;}
.fs8{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:128.128000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:32.512000pt;}
.y21{bottom:33.440000pt;}
.y88{bottom:38.432000pt;}
.y6c{bottom:44.608000pt;}
.y33{bottom:50.816000pt;}
.y20{bottom:52.800000pt;}
.y87{bottom:57.664000pt;}
.y4a{bottom:58.144000pt;}
.y6b{bottom:63.808000pt;}
.y32{bottom:70.016000pt;}
.y1f{bottom:72.000000pt;}
.y86{bottom:76.864000pt;}
.y6a{bottom:83.008000pt;}
.y31{bottom:89.248000pt;}
.y1e{bottom:91.232000pt;}
.y85{bottom:96.064000pt;}
.y5a{bottom:96.288000pt;}
.y69{bottom:102.208000pt;}
.y49{bottom:109.344000pt;}
.y1d{bottom:110.432000pt;}
.y84{bottom:115.264000pt;}
.y68{bottom:121.408000pt;}
.y59{bottom:125.088000pt;}
.y30{bottom:127.648000pt;}
.y1c{bottom:129.632000pt;}
.y83{bottom:134.466667pt;}
.y48{bottom:134.946667pt;}
.y67{bottom:140.613333pt;}
.y2f{bottom:146.853333pt;}
.y1b{bottom:148.826667pt;}
.y82{bottom:153.666667pt;}
.ya{bottom:157.986667pt;}
.y66{bottom:159.840000pt;}
.y47{bottom:160.546667pt;}
.y2e{bottom:166.053333pt;}
.y1a{bottom:168.026667pt;}
.y58{bottom:169.893333pt;}
.y81{bottom:172.866667pt;}
.y6d{bottom:173.573333pt;}
.y18{bottom:176.986667pt;}
.y65{bottom:179.040000pt;}
.y19{bottom:187.226667pt;}
.y9{bottom:196.386667pt;}
.y57{bottom:198.720000pt;}
.y2d{bottom:204.453333pt;}
.y80{bottom:211.293333pt;}
.y46{bottom:211.773333pt;}
.y17{bottom:215.386667pt;}
.y64{bottom:217.440000pt;}
.y76{bottom:220.226667pt;}
.y2c{bottom:223.653333pt;}
.y56{bottom:227.520000pt;}
.y7f{bottom:230.493333pt;}
.y10{bottom:234.053333pt;}
.y8{bottom:234.786667pt;}
.y63{bottom:236.640000pt;}
.y45{bottom:237.373333pt;}
.y2b{bottom:242.880000pt;}
.y7e{bottom:249.693333pt;}
.y16{bottom:253.826667pt;}
.y62{bottom:255.840000pt;}
.y55{bottom:256.320000pt;}
.y44{bottom:262.973333pt;}
.y7d{bottom:268.893333pt;}
.yf{bottom:272.453333pt;}
.y7{bottom:273.213333pt;}
.y61{bottom:275.040000pt;}
.y2a{bottom:281.280000pt;}
.y54{bottom:285.120000pt;}
.y7c{bottom:288.093333pt;}
.y43{bottom:288.573333pt;}
.y60{bottom:294.266667pt;}
.y7b{bottom:307.293333pt;}
.y5f{bottom:313.466667pt;}
.y7a{bottom:326.533333pt;}
.y15{bottom:330.626667pt;}
.y5e{bottom:332.666667pt;}
.y42{bottom:339.813333pt;}
.y53{bottom:345.946667pt;}
.ye{bottom:349.280000pt;}
.y6{bottom:350.013333pt;}
.y71{bottom:350.426667pt;}
.y75{bottom:358.853333pt;}
.y79{bottom:364.613333pt;}
.y41{bottom:365.413333pt;}
.y14{bottom:369.053333pt;}
.y5d{bottom:370.746667pt;}
.y52{bottom:374.746667pt;}
.yd{bottom:387.680000pt;}
.y5{bottom:388.453333pt;}
.y40{bottom:391.013333pt;}
.y78{bottom:393.413333pt;}
.y5c{bottom:399.546667pt;}
.y51{bottom:403.546667pt;}
.y3f{bottom:416.613333pt;}
.y6e{bottom:422.173333pt;}
.y77{bottom:422.213333pt;}
.yc{bottom:426.080000pt;}
.y4{bottom:426.853333pt;}
.y5b{bottom:428.386667pt;}
.y3e{bottom:442.213333pt;}
.y13{bottom:445.853333pt;}
.y73{bottom:448.706667pt;}
.y50{bottom:464.346667pt;}
.yb{bottom:464.506667pt;}
.y3{bottom:465.253333pt;}
.y12{bottom:484.253333pt;}
.y4f{bottom:493.186667pt;}
.y2{bottom:503.653333pt;}
.y11{bottom:522.693333pt;}
.y1{bottom:542.080000pt;}
.y4e{bottom:553.986667pt;}
.y3d{bottom:579.013333pt;}
.y4d{bottom:582.786667pt;}
.y72{bottom:586.880000pt;}
.y29{bottom:589.186667pt;}
.y70{bottom:598.240000pt;}
.y3c{bottom:604.640000pt;}
.y28{bottom:611.586667pt;}
.y38{bottom:613.120000pt;}
.y3b{bottom:630.240000pt;}
.y37{bottom:632.346667pt;}
.y27{bottom:633.986667pt;}
.y4c{bottom:640.413333pt;}
.y74{bottom:641.466667pt;}
.y24{bottom:649.253333pt;}
.y36{bottom:651.546667pt;}
.y3a{bottom:655.840000pt;}
.y26{bottom:656.413333pt;}
.y6f{bottom:656.866667pt;}
.y35{bottom:670.746667pt;}
.y23{bottom:671.680000pt;}
.y39{bottom:672.160000pt;}
.y25{bottom:678.813333pt;}
.y34{bottom:690.746667pt;}
.y22{bottom:694.080000pt;}
.h11{height:52.834688pt;}
.h3{height:54.093750pt;}
.h4{height:55.312500pt;}
.h5{height:55.423125pt;}
.h6{height:63.289687pt;}
.h7{height:63.397875pt;}
.h9{height:63.656250pt;}
.h12{height:63.783562pt;}
.hb{height:71.944688pt;}
.hc{height:72.052875pt;}
.hd{height:73.565625pt;}
.he{height:73.676250pt;}
.h8{height:76.671562pt;}
.ha{height:87.156562pt;}
.hf{height:100.125000pt;}
.h10{height:100.258500pt;}
.h2{height:133.500000pt;}
.h1{height:133.633500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:27.263981pt;}
.x3{left:38.079981pt;}
.x9{left:54.751981pt;}
.x1{left:78.111981pt;}
.x4{left:406.586648pt;}
.x15{left:465.946648pt;}
.xc{left:492.613314pt;}
.x7{left:511.426648pt;}
.x13{left:576.506648pt;}
.x6{left:592.386648pt;}
.x8{left:595.106648pt;}
.x5{left:602.146648pt;}
.xe{left:610.053314pt;}
.xa{left:762.746648pt;}
.x12{left:768.573314pt;}
.xb{left:774.853314pt;}
.xd{left:801.533314pt;}
.x14{left:881.986648pt;}
.x11{left:896.666648pt;}
.xf{left:935.386648pt;}
.x10{left:1009.573314pt;}
}




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