
    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_55afd5144a4d3b930c876d65.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.889000;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_5fa86e1c23e17c7fefb5981d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057000;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_32eba04b6239f8df071b24f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.880000;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_17e5810a5f925eb6a0c0e270.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_67c2a96f5ff3356453ed55d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_93d9264f51194130fe2033cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_c2a03cd5af8e34336da19516.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_d626113ba7e6f75431108d96.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.883000;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_06cf9794f94fbcc3c959b0f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_7b353dbd381c930985f9349d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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;}
.m7{transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,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);}
.mb{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252352,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-5.591905px;}
.v3{vertical-align:-2.631485px;}
.v1{vertical-align:-1.425388px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-5.382000px;}
.ls2{letter-spacing:-4.347000px;}
.lse{letter-spacing:-3.859620px;}
.ls1{letter-spacing:-3.283275px;}
.lsd{letter-spacing:-2.161387px;}
.ls17{letter-spacing:-2.160000px;}
.ls15{letter-spacing:-2.046000px;}
.ls14{letter-spacing:-1.980000px;}
.ls16{letter-spacing:-1.782000px;}
.ls6{letter-spacing:-1.584000px;}
.lsa{letter-spacing:-1.452000px;}
.lsb{letter-spacing:-1.056000px;}
.ls7{letter-spacing:-0.792000px;}
.ls25{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.726000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.420000px;}
.ls23{letter-spacing:-0.240000px;}
.ls1d{letter-spacing:-0.180000px;}
.ls24{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.066000px;}
.ls1e{letter-spacing:-0.060000px;}
.ls12{letter-spacing:-0.033840px;}
.ls11{letter-spacing:-0.027967px;}
.lsf{letter-spacing:-0.016361px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.050640px;}
.ls1a{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.065443px;}
.ls26{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.420000px;}
.ls19{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.576000px;}
.ls28{letter-spacing:0.624000px;}
.ls27{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.792000px;}
.ls29{letter-spacing:0.912000px;}
.ls20{letter-spacing:0.960000px;}
.ls1f{letter-spacing:1.080000px;}
.ls13{letter-spacing:4.062600px;}
.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;}
}
.ws1{word-spacing:-34.582195px;}
.ws2{word-spacing:-31.031345px;}
.ws0{word-spacing:-27.973503px;}
.ws15{word-spacing:-15.600000px;}
.ws16{word-spacing:-14.520000px;}
.ws1c{word-spacing:-12.389908px;}
.ws1d{word-spacing:-12.336000px;}
.ws1e{word-spacing:-11.472000px;}
.ws1f{word-spacing:-11.424000px;}
.ws17{word-spacing:-10.619921px;}
.ws4{word-spacing:-7.746914px;}
.ws5{word-spacing:-4.669920px;}
.ws3{word-spacing:-4.531942px;}
.wsb{word-spacing:-3.168000px;}
.ws27{word-spacing:-3.060000px;}
.ws2c{word-spacing:-2.940000px;}
.ws2b{word-spacing:-2.760000px;}
.ws35{word-spacing:-2.700000px;}
.ws36{word-spacing:-2.220000px;}
.wse{word-spacing:-1.452000px;}
.ws3a{word-spacing:-1.440000px;}
.ws38{word-spacing:-1.380000px;}
.ws39{word-spacing:-1.140000px;}
.ws3b{word-spacing:-0.960000px;}
.ws3d{word-spacing:-0.720000px;}
.ws3e{word-spacing:-0.624000px;}
.ws37{word-spacing:-0.480000px;}
.ws2d{word-spacing:-0.360000px;}
.ws3f{word-spacing:-0.336000px;}
.ws32{word-spacing:-0.300000px;}
.ws2a{word-spacing:-0.180000px;}
.ws3c{word-spacing:-0.144000px;}
.ws12{word-spacing:-0.065443px;}
.wsc{word-spacing:0.000000px;}
.ws2e{word-spacing:0.060000px;}
.ws11{word-spacing:0.066000px;}
.ws13{word-spacing:0.083902px;}
.ws14{word-spacing:0.084600px;}
.ws21{word-spacing:0.132000px;}
.ws20{word-spacing:0.330000px;}
.ws10{word-spacing:0.396000px;}
.ws26{word-spacing:0.660000px;}
.ws28{word-spacing:0.720000px;}
.wsa{word-spacing:0.726000px;}
.wsf{word-spacing:1.386000px;}
.ws22{word-spacing:1.560000px;}
.ws25{word-spacing:1.740000px;}
.ws34{word-spacing:1.980000px;}
.ws6{word-spacing:2.457000px;}
.ws29{word-spacing:2.520000px;}
.wsd{word-spacing:3.102000px;}
.ws7{word-spacing:4.002000px;}
.ws23{word-spacing:4.800000px;}
.ws30{word-spacing:4.920000px;}
.ws24{word-spacing:5.100000px;}
.ws2f{word-spacing:5.340000px;}
.ws33{word-spacing:5.580000px;}
.ws8{word-spacing:6.996000px;}
.ws31{word-spacing:10.260000px;}
.ws9{word-spacing:24.288000px;}
.ws18{word-spacing:294.890765px;}
.ws19{word-spacing:325.865534px;}
.ws1a{word-spacing:387.486137px;}
.ws1b{word-spacing:431.673152px;}
._9{margin-left:-165.000000px;}
._1{margin-left:-15.649200px;}
._a{margin-left:-4.299358px;}
._7{margin-left:-3.176671px;}
._0{margin-left:-2.114429px;}
._6{margin-left:-1.045413px;}
._3{width:1.077300px;}
._4{width:2.662529px;}
._5{width:4.479300px;}
._2{width:6.822900px;}
._8{width:8.736933px;}
.fcc{color:rgb(120,47,154);}
.fca{color:rgb(64,193,234);}
.fc9{color:rgb(244,114,22);}
.fcb{color:rgb(89,193,52);}
.fc8{color:transparent;}
.fc6{color:rgb(189,62,138);}
.fc5{color:rgb(112,109,110);}
.fc2{color:rgb(221,36,155);}
.fc4{color:rgb(145,143,144);}
.fc1{color:rgb(61,59,60);}
.fc7{color:rgb(114,58,137);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:12.864600px;}
.fs6{font-size:16.360800px;}
.fs8{font-size:16.920000px;}
.fs7{font-size:27.967200px;}
.fsc{font-size:46.990800px;}
.fse{font-size:48.000000px;}
.fsd{font-size:54.822600px;}
.fsb{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:120.000000px;}
.fs0{font-size:131.331000px;}
.fsa{font-size:132.000000px;}
.fs2{font-size:138.000000px;}
.fs4{font-size:154.384800px;}
.fs1{font-size:189.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:0.700050px;}
.y22{bottom:4.998150px;}
.y20{bottom:5.733300px;}
.y1c{bottom:13.947300px;}
.y18{bottom:18.842850px;}
.yf{bottom:30.261000px;}
.y50{bottom:45.411000px;}
.y4f{bottom:59.811000px;}
.y51{bottom:74.211000px;}
.y4e{bottom:88.611000px;}
.y11{bottom:89.283900px;}
.y4d{bottom:103.011000px;}
.y4c{bottom:117.411000px;}
.y10{bottom:131.793750px;}
.y24{bottom:155.951100px;}
.y49{bottom:190.484422px;}
.y43{bottom:198.151795px;}
.y4b{bottom:199.389179px;}
.y14{bottom:231.846000px;}
.ye{bottom:233.563050px;}
.y48{bottom:234.691017px;}
.y41{bottom:234.851610px;}
.y13{bottom:236.430798px;}
.y44{bottom:240.995657px;}
.y47{bottom:246.438717px;}
.y40{bottom:248.948850px;}
.yd{bottom:254.563050px;}
.y16{bottom:264.742950px;}
.y21{bottom:268.519500px;}
.y1f{bottom:277.398000px;}
.y4a{bottom:282.891830px;}
.y42{bottom:283.569322px;}
.yc{bottom:285.814950px;}
.y1b{bottom:286.908000px;}
.y1e{bottom:290.576430px;}
.y46{bottom:294.028650px;}
.y1d{bottom:295.436700px;}
.yb{bottom:306.814950px;}
.y17{bottom:307.357500px;}
.y1a{bottom:316.832571px;}
.y23{bottom:317.670000px;}
.y19{bottom:321.515850px;}
.ya{bottom:327.814950px;}
.y45{bottom:337.054500px;}
.y9{bottom:348.814950px;}
.y8{bottom:380.067000px;}
.y7{bottom:401.067000px;}
.y6{bottom:422.067000px;}
.y5{bottom:443.067000px;}
.y3c{bottom:451.311000px;}
.y12{bottom:457.190550px;}
.y4{bottom:464.067000px;}
.y3b{bottom:470.811000px;}
.y3a{bottom:490.311000px;}
.y3{bottom:511.458150px;}
.y39{bottom:529.311000px;}
.y38{bottom:548.811000px;}
.y2{bottom:552.845700px;}
.y37{bottom:568.311000px;}
.y36{bottom:587.811000px;}
.y3f{bottom:607.311000px;}
.y35{bottom:626.811000px;}
.y34{bottom:646.311000px;}
.y33{bottom:665.811000px;}
.y3e{bottom:685.311000px;}
.y32{bottom:704.811000px;}
.y31{bottom:724.311000px;}
.y30{bottom:743.811000px;}
.y3d{bottom:763.311000px;}
.y2f{bottom:782.811000px;}
.y2e{bottom:802.311000px;}
.y2d{bottom:821.811000px;}
.y2c{bottom:841.311000px;}
.y2b{bottom:894.877050px;}
.y2a{bottom:1098.261150px;}
.y29{bottom:1120.761150px;}
.y28{bottom:1143.261150px;}
.y27{bottom:1165.761150px;}
.y1{bottom:1174.574850px;}
.y26{bottom:1188.261150px;}
.y25{bottom:1210.761150px;}
.h8{height:8.574306px;}
.h11{height:8.878500px;}
.ha{height:9.365781px;}
.h10{height:9.510000px;}
.hb{height:11.911110px;}
.hf{height:12.318223px;}
.he{height:20.360886px;}
.hd{height:20.449500px;}
.hc{height:22.618500px;}
.h1a{height:34.272000px;}
.h18{height:41.445886px;}
.h17{height:42.300000px;}
.h1b{height:42.336000px;}
.h13{height:46.728000px;}
.h5{height:47.124000px;}
.h19{height:48.353533px;}
.h16{height:52.920000px;}
.h14{height:85.680000px;}
.h15{height:92.400000px;}
.h2{height:93.770334px;}
.h4{height:97.290000px;}
.h6{height:110.230747px;}
.h7{height:136.167394px;}
.h12{height:158.923500px;}
.h3{height:166.698000px;}
.h9{height:245.271000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:134.170500px;}
.w4{width:154.063500px;}
.w2{width:173.430000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.573800px;}
.xa{left:20.661300px;}
.xf{left:44.019750px;}
.xd{left:71.106750px;}
.x10{left:77.019750px;}
.x11{left:78.035400px;}
.x20{left:80.787450px;}
.x19{left:82.379550px;}
.x1d{left:92.148037px;}
.x1b{left:93.158339px;}
.x1a{left:108.171900px;}
.x1c{left:116.900441px;}
.x4{left:143.976450px;}
.x2{left:189.609600px;}
.x1{left:212.690250px;}
.x1f{left:250.659753px;}
.x1e{left:257.567401px;}
.x3{left:285.461700px;}
.x7{left:304.150200px;}
.x5{left:313.276200px;}
.x6{left:322.713150px;}
.x14{left:419.048100px;}
.x15{left:424.557771px;}
.xe{left:473.749950px;}
.x12{left:482.588700px;}
.x13{left:483.604350px;}
.x17{left:567.398056px;}
.x16{left:584.749409px;}
.x9{left:606.427500px;}
.xb{left:625.515000px;}
.x8{left:627.088800px;}
.x18{left:730.503122px;}
@media print{
.v2{vertical-align:-4.970582pt;}
.v3{vertical-align:-2.339098pt;}
.v1{vertical-align:-1.267011pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-4.784000pt;}
.ls2{letter-spacing:-3.864000pt;}
.lse{letter-spacing:-3.430773pt;}
.ls1{letter-spacing:-2.918467pt;}
.lsd{letter-spacing:-1.921233pt;}
.ls17{letter-spacing:-1.920000pt;}
.ls15{letter-spacing:-1.818667pt;}
.ls14{letter-spacing:-1.760000pt;}
.ls16{letter-spacing:-1.584000pt;}
.ls6{letter-spacing:-1.408000pt;}
.lsa{letter-spacing:-1.290667pt;}
.lsb{letter-spacing:-0.938667pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls25{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.645333pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.373333pt;}
.ls23{letter-spacing:-0.213333pt;}
.ls1d{letter-spacing:-0.160000pt;}
.ls24{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.058667pt;}
.ls1e{letter-spacing:-0.053333pt;}
.ls12{letter-spacing:-0.030080pt;}
.ls11{letter-spacing:-0.024860pt;}
.lsf{letter-spacing:-0.014543pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.045013pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.058172pt;}
.ls26{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.373333pt;}
.ls19{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls28{letter-spacing:0.554667pt;}
.ls27{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.704000pt;}
.ls29{letter-spacing:0.810667pt;}
.ls20{letter-spacing:0.853333pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls13{letter-spacing:3.611200pt;}
.ws1{word-spacing:-30.739729pt;}
.ws2{word-spacing:-27.583418pt;}
.ws0{word-spacing:-24.865336pt;}
.ws15{word-spacing:-13.866667pt;}
.ws16{word-spacing:-12.906667pt;}
.ws1c{word-spacing:-11.013251pt;}
.ws1d{word-spacing:-10.965333pt;}
.ws1e{word-spacing:-10.197333pt;}
.ws1f{word-spacing:-10.154667pt;}
.ws17{word-spacing:-9.439930pt;}
.ws4{word-spacing:-6.886146pt;}
.ws5{word-spacing:-4.151040pt;}
.ws3{word-spacing:-4.028393pt;}
.wsb{word-spacing:-2.816000pt;}
.ws27{word-spacing:-2.720000pt;}
.ws2c{word-spacing:-2.613333pt;}
.ws2b{word-spacing:-2.453333pt;}
.ws35{word-spacing:-2.400000pt;}
.ws36{word-spacing:-1.973333pt;}
.wse{word-spacing:-1.290667pt;}
.ws3a{word-spacing:-1.280000pt;}
.ws38{word-spacing:-1.226667pt;}
.ws39{word-spacing:-1.013333pt;}
.ws3b{word-spacing:-0.853333pt;}
.ws3d{word-spacing:-0.640000pt;}
.ws3e{word-spacing:-0.554667pt;}
.ws37{word-spacing:-0.426667pt;}
.ws2d{word-spacing:-0.320000pt;}
.ws3f{word-spacing:-0.298667pt;}
.ws32{word-spacing:-0.266667pt;}
.ws2a{word-spacing:-0.160000pt;}
.ws3c{word-spacing:-0.128000pt;}
.ws12{word-spacing:-0.058172pt;}
.wsc{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.053333pt;}
.ws11{word-spacing:0.058667pt;}
.ws13{word-spacing:0.074579pt;}
.ws14{word-spacing:0.075200pt;}
.ws21{word-spacing:0.117333pt;}
.ws20{word-spacing:0.293333pt;}
.ws10{word-spacing:0.352000pt;}
.ws26{word-spacing:0.586667pt;}
.ws28{word-spacing:0.640000pt;}
.wsa{word-spacing:0.645333pt;}
.wsf{word-spacing:1.232000pt;}
.ws22{word-spacing:1.386667pt;}
.ws25{word-spacing:1.546667pt;}
.ws34{word-spacing:1.760000pt;}
.ws6{word-spacing:2.184000pt;}
.ws29{word-spacing:2.240000pt;}
.wsd{word-spacing:2.757333pt;}
.ws7{word-spacing:3.557333pt;}
.ws23{word-spacing:4.266667pt;}
.ws30{word-spacing:4.373333pt;}
.ws24{word-spacing:4.533333pt;}
.ws2f{word-spacing:4.746667pt;}
.ws33{word-spacing:4.960000pt;}
.ws8{word-spacing:6.218667pt;}
.ws31{word-spacing:9.120000pt;}
.ws9{word-spacing:21.589333pt;}
.ws18{word-spacing:262.125125pt;}
.ws19{word-spacing:289.658253pt;}
.ws1a{word-spacing:344.432122pt;}
.ws1b{word-spacing:383.709469pt;}
._9{margin-left:-146.666667pt;}
._1{margin-left:-13.910400pt;}
._a{margin-left:-3.821652pt;}
._7{margin-left:-2.823707pt;}
._0{margin-left:-1.879493pt;}
._6{margin-left:-0.929256pt;}
._3{width:0.957600pt;}
._4{width:2.366693pt;}
._5{width:3.981600pt;}
._2{width:6.064800pt;}
._8{width:7.766163pt;}
.fs5{font-size:11.435200pt;}
.fs6{font-size:14.542933pt;}
.fs8{font-size:15.040000pt;}
.fs7{font-size:24.859733pt;}
.fsc{font-size:41.769600pt;}
.fse{font-size:42.666667pt;}
.fsd{font-size:48.731200pt;}
.fsb{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:106.666667pt;}
.fs0{font-size:116.738667pt;}
.fsa{font-size:117.333333pt;}
.fs2{font-size:122.666667pt;}
.fs4{font-size:137.230933pt;}
.fs1{font-size:168.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:0.622267pt;}
.y22{bottom:4.442800pt;}
.y20{bottom:5.096267pt;}
.y1c{bottom:12.397600pt;}
.y18{bottom:16.749200pt;}
.yf{bottom:26.898667pt;}
.y50{bottom:40.365333pt;}
.y4f{bottom:53.165333pt;}
.y51{bottom:65.965333pt;}
.y4e{bottom:78.765333pt;}
.y11{bottom:79.363467pt;}
.y4d{bottom:91.565333pt;}
.y4c{bottom:104.365333pt;}
.y10{bottom:117.150000pt;}
.y24{bottom:138.623200pt;}
.y49{bottom:169.319486pt;}
.y43{bottom:176.134929pt;}
.y4b{bottom:177.234826pt;}
.y14{bottom:206.085333pt;}
.ye{bottom:207.611600pt;}
.y48{bottom:208.614238pt;}
.y41{bottom:208.756987pt;}
.y13{bottom:210.160709pt;}
.y44{bottom:214.218362pt;}
.y47{bottom:219.056638pt;}
.y40{bottom:221.287867pt;}
.yd{bottom:226.278267pt;}
.y16{bottom:235.327067pt;}
.y21{bottom:238.684000pt;}
.y1f{bottom:246.576000pt;}
.y4a{bottom:251.459405pt;}
.y42{bottom:252.061619pt;}
.yc{bottom:254.057733pt;}
.y1b{bottom:255.029333pt;}
.y1e{bottom:258.290160pt;}
.y46{bottom:261.358800pt;}
.y1d{bottom:262.610400pt;}
.yb{bottom:272.724400pt;}
.y17{bottom:273.206667pt;}
.y1a{bottom:281.628952pt;}
.y23{bottom:282.373333pt;}
.y19{bottom:285.791867pt;}
.ya{bottom:291.391067pt;}
.y45{bottom:299.604000pt;}
.y9{bottom:310.057733pt;}
.y8{bottom:337.837333pt;}
.y7{bottom:356.504000pt;}
.y6{bottom:375.170667pt;}
.y5{bottom:393.837333pt;}
.y3c{bottom:401.165333pt;}
.y12{bottom:406.391600pt;}
.y4{bottom:412.504000pt;}
.y3b{bottom:418.498667pt;}
.y3a{bottom:435.832000pt;}
.y3{bottom:454.629467pt;}
.y39{bottom:470.498667pt;}
.y38{bottom:487.832000pt;}
.y2{bottom:491.418400pt;}
.y37{bottom:505.165333pt;}
.y36{bottom:522.498667pt;}
.y3f{bottom:539.832000pt;}
.y35{bottom:557.165333pt;}
.y34{bottom:574.498667pt;}
.y33{bottom:591.832000pt;}
.y3e{bottom:609.165333pt;}
.y32{bottom:626.498667pt;}
.y31{bottom:643.832000pt;}
.y30{bottom:661.165333pt;}
.y3d{bottom:678.498667pt;}
.y2f{bottom:695.832000pt;}
.y2e{bottom:713.165333pt;}
.y2d{bottom:730.498667pt;}
.y2c{bottom:747.832000pt;}
.y2b{bottom:795.446267pt;}
.y2a{bottom:976.232133pt;}
.y29{bottom:996.232133pt;}
.y28{bottom:1016.232133pt;}
.y27{bottom:1036.232133pt;}
.y1{bottom:1044.066533pt;}
.y26{bottom:1056.232133pt;}
.y25{bottom:1076.232133pt;}
.h8{height:7.621605pt;}
.h11{height:7.892000pt;}
.ha{height:8.325138pt;}
.h10{height:8.453333pt;}
.hb{height:10.587653pt;}
.hf{height:10.949531pt;}
.he{height:18.098566pt;}
.hd{height:18.177333pt;}
.hc{height:20.105333pt;}
.h1a{height:30.464000pt;}
.h18{height:36.840787pt;}
.h17{height:37.600000pt;}
.h1b{height:37.632000pt;}
.h13{height:41.536000pt;}
.h5{height:41.888000pt;}
.h19{height:42.980918pt;}
.h16{height:47.040000pt;}
.h14{height:76.160000pt;}
.h15{height:82.133333pt;}
.h2{height:83.351408pt;}
.h4{height:86.480000pt;}
.h6{height:97.982886pt;}
.h7{height:121.037683pt;}
.h12{height:141.265333pt;}
.h3{height:148.176000pt;}
.h9{height:218.018667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:119.262667pt;}
.w4{width:136.945333pt;}
.w2{width:154.160000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.398933pt;}
.xa{left:18.365600pt;}
.xf{left:39.128667pt;}
.xd{left:63.206000pt;}
.x10{left:68.462000pt;}
.x11{left:69.364800pt;}
.x20{left:71.811067pt;}
.x19{left:73.226267pt;}
.x1d{left:81.909366pt;}
.x1b{left:82.807413pt;}
.x1a{left:96.152800pt;}
.x1c{left:103.911503pt;}
.x4{left:127.979067pt;}
.x2{left:168.541867pt;}
.x1{left:189.058000pt;}
.x1f{left:222.808670pt;}
.x1e{left:228.948801pt;}
.x3{left:253.743733pt;}
.x7{left:270.355733pt;}
.x5{left:278.467733pt;}
.x6{left:286.856133pt;}
.x14{left:372.487200pt;}
.x15{left:377.384686pt;}
.xe{left:421.111067pt;}
.x12{left:428.967733pt;}
.x13{left:429.870533pt;}
.x17{left:504.353827pt;}
.x16{left:519.777252pt;}
.x9{left:539.046667pt;}
.xb{left:556.013333pt;}
.x8{left:557.412267pt;}
.x18{left:649.336109pt;}
}




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