
    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_a516e39fe3eaead36fb0d77c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_68d2e8ffaac0dc2e87dc4615.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_cbd08437a4f7d1cffbf55b55.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049000;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_f5af144f5ffafee2b143ac23.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.043083;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_b34b1cbb3395f7fcae512531.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043083;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_fae242340789e8c8b1cf9310.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.042000;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_ed299f04eefff1d109ff4a9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_b8f8239932d93eed6b4bb647.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049000;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_6749187b7609c54c20eff694.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.851562;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;}
.ls1f{letter-spacing:-6.420000px;}
.ls1e{letter-spacing:-1.542000px;}
.lsd{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.864000px;}
.ls20{letter-spacing:-0.654000px;}
.ls21{letter-spacing:-0.582000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.348600px;}
.lsc{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.234600px;}
.ls7{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000003px;}
.ls9{letter-spacing:0.010080px;}
.ls12{letter-spacing:0.066960px;}
.ls5{letter-spacing:0.123000px;}
.ls6{letter-spacing:0.129600px;}
.ls14{letter-spacing:0.138240px;}
.ls13{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.228960px;}
.lse{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.296400px;}
.ls8{letter-spacing:0.371520px;}
.lsf{letter-spacing:0.485280px;}
.ls1b{letter-spacing:2.388000px;}
.ls1a{letter-spacing:24.170400px;}
.ls17{letter-spacing:25.610400px;}
.ls16{letter-spacing:26.330400px;}
.ls18{letter-spacing:27.050400px;}
.ls15{letter-spacing:28.490400px;}
.ls19{letter-spacing:33.530400px;}
.ls0{letter-spacing:520.020000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.wsb{word-spacing:-15.408000px;}
.ws1{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.976000px;}
.wsd{word-spacing:-14.937600px;}
.ws9{word-spacing:-14.832000px;}
.ws7{word-spacing:-14.760000px;}
.ws8{word-spacing:-14.616003px;}
.ws0{word-spacing:-14.616000px;}
.wsa{word-spacing:-14.112000px;}
.wse{word-spacing:-12.679200px;}
.ws10{word-spacing:-12.559680px;}
.ws2{word-spacing:-12.549600px;}
.ws11{word-spacing:-12.315000px;}
.wsf{word-spacing:-12.201000px;}
.ws4{word-spacing:-12.131280px;}
.ws3{word-spacing:-12.071520px;}
.ws15{word-spacing:-11.967600px;}
.ws14{word-spacing:-11.895600px;}
.ws12{word-spacing:-11.007600px;}
.ws13{word-spacing:-6.129600px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-6.660000px;}
._12{margin-left:-5.448000px;}
._8{margin-left:-3.933120px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._4{width:1.704000px;}
._9{width:2.877120px;}
._f{width:4.176000px;}
._e{width:5.184000px;}
._14{width:6.648000px;}
._1c{width:7.944000px;}
._16{width:9.144000px;}
._c{width:10.728000px;}
._d{width:12.480000px;}
._1d{width:13.752000px;}
._11{width:16.272000px;}
._10{width:17.424000px;}
._18{width:19.392000px;}
._17{width:20.592000px;}
._19{width:22.608000px;}
._21{width:23.832000px;}
._22{width:25.200000px;}
._1e{width:27.048000px;}
._13{width:28.440000px;}
._1a{width:29.880000px;}
._15{width:31.392000px;}
._1b{width:33.768000px;}
._23{width:34.992000px;}
._b{width:40.392000px;}
._1f{width:41.400000px;}
._20{width:43.788000px;}
._2{width:475.164000px;}
._6{width:552.718080px;}
._3{width:1299.180000px;}
._25{width:1386.300000px;}
._24{width:1484.630400px;}
._a{width:1486.070400px;}
._7{width:1491.110400px;}
.fc4{color:transparent;}
.fc3{color:rgb(14,40,65);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:1.800000px;}
.y3a{bottom:4.500000px;}
.ye3{bottom:5.400000px;}
.y11{bottom:5.760000px;}
.y39{bottom:22.500000px;}
.y10{bottom:29.160000px;}
.yf{bottom:30.600000px;}
.y38{bottom:40.494000px;}
.y5{bottom:57.600000px;}
.y37{bottom:58.494000px;}
.yd{bottom:60.840000px;}
.y36{bottom:76.494000px;}
.yc{bottom:78.840000px;}
.y4{bottom:79.056000px;}
.y35{bottom:94.494000px;}
.yb{bottom:97.740000px;}
.y34{bottom:112.494000px;}
.y69{bottom:115.056000px;}
.yca{bottom:115.776000px;}
.ya{bottom:119.340000px;}
.y98{bottom:126.576000px;}
.y12{bottom:127.476000px;}
.y33{bottom:130.494000px;}
.ye7{bottom:131.436000px;}
.y68{bottom:136.656000px;}
.yc9{bottom:137.376000px;}
.y9{bottom:141.300000px;}
.ye6{bottom:147.636000px;}
.y97{bottom:148.176000px;}
.y32{bottom:148.494000px;}
.y67{bottom:158.250000px;}
.yc8{bottom:158.970000px;}
.y8{bottom:164.700000px;}
.yd8{bottom:166.890000px;}
.y31{bottom:167.394000px;}
.y96{bottom:169.770000px;}
.y66{bottom:179.850000px;}
.yc7{bottom:180.570000px;}
.yd7{bottom:188.490000px;}
.y30{bottom:188.994000px;}
.y95{bottom:191.370000px;}
.y65{bottom:201.450000px;}
.yc6{bottom:202.170000px;}
.yd6{bottom:210.090000px;}
.y2f{bottom:210.639000px;}
.y94{bottom:212.970000px;}
.y64{bottom:223.050000px;}
.yc5{bottom:223.770000px;}
.yd5{bottom:231.690000px;}
.y2e{bottom:232.239000px;}
.y93{bottom:234.570000px;}
.y63{bottom:244.650000px;}
.yc4{bottom:245.370000px;}
.yd4{bottom:253.290000px;}
.y2d{bottom:253.839000px;}
.y92{bottom:256.170000px;}
.y62{bottom:266.250000px;}
.yc3{bottom:266.970000px;}
.yd3{bottom:274.890000px;}
.y2c{bottom:275.439000px;}
.y91{bottom:277.770000px;}
.y61{bottom:287.850000px;}
.yc2{bottom:288.570000px;}
.yd2{bottom:296.490000px;}
.y2b{bottom:297.039000px;}
.y90{bottom:299.370000px;}
.yb0{bottom:305.130000px;}
.y60{bottom:309.450000px;}
.yc1{bottom:310.170000px;}
.yd1{bottom:318.090000px;}
.y2a{bottom:318.639000px;}
.y8f{bottom:320.970000px;}
.yaf{bottom:326.730000px;}
.y5f{bottom:331.050000px;}
.yc0{bottom:331.770000px;}
.ye0{bottom:337.935000px;}
.yd0{bottom:339.735000px;}
.y29{bottom:340.239000px;}
.y8e{bottom:342.615000px;}
.yae{bottom:348.375000px;}
.y5e{bottom:352.695000px;}
.ybf{bottom:353.415000px;}
.ydf{bottom:359.535000px;}
.ycf{bottom:361.335000px;}
.y28{bottom:361.839000px;}
.y102{bottom:362.595000px;}
.y8d{bottom:364.215000px;}
.ye4{bottom:368.175000px;}
.yad{bottom:369.975000px;}
.y5d{bottom:374.295000px;}
.ybe{bottom:375.015000px;}
.y101{bottom:380.595000px;}
.yde{bottom:381.135000px;}
.yce{bottom:382.935000px;}
.y27{bottom:383.439000px;}
.y8c{bottom:385.815000px;}
.yac{bottom:391.575000px;}
.y5c{bottom:395.895000px;}
.ybd{bottom:396.615000px;}
.y100{bottom:398.595000px;}
.ydd{bottom:402.735000px;}
.ycd{bottom:404.535000px;}
.y26{bottom:405.039000px;}
.y8b{bottom:407.415000px;}
.yab{bottom:413.175000px;}
.yff{bottom:416.595000px;}
.y5b{bottom:417.495000px;}
.ybc{bottom:418.215000px;}
.ydc{bottom:424.335000px;}
.y25{bottom:426.639000px;}
.y8a{bottom:429.015000px;}
.yfe{bottom:434.595000px;}
.yaa{bottom:434.775000px;}
.y5a{bottom:439.095000px;}
.ycc{bottom:439.635000px;}
.ybb{bottom:439.815000px;}
.ydb{bottom:445.935000px;}
.y24{bottom:448.239000px;}
.y89{bottom:450.615000px;}
.ycb{bottom:451.875000px;}
.yfd{bottom:452.595000px;}
.ya9{bottom:456.375000px;}
.y59{bottom:460.695000px;}
.yba{bottom:461.415000px;}
.y23{bottom:469.839000px;}
.yfc{bottom:470.595000px;}
.y88{bottom:472.215000px;}
.ya8{bottom:477.975000px;}
.yda{bottom:481.035000px;}
.y58{bottom:482.295000px;}
.yb9{bottom:483.015000px;}
.yfb{bottom:488.595000px;}
.y22{bottom:491.469000px;}
.yd9{bottom:493.275000px;}
.y87{bottom:493.815000px;}
.ya7{bottom:499.575000px;}
.y57{bottom:503.895000px;}
.yb8{bottom:504.615000px;}
.yfa{bottom:506.595000px;}
.y21{bottom:513.069000px;}
.y86{bottom:515.415000px;}
.ya6{bottom:521.175000px;}
.yf9{bottom:524.595000px;}
.y56{bottom:525.495000px;}
.yb7{bottom:526.215000px;}
.y20{bottom:534.669000px;}
.y85{bottom:537.015000px;}
.yf8{bottom:542.595000px;}
.ya5{bottom:542.775000px;}
.y55{bottom:547.095000px;}
.yb6{bottom:547.815000px;}
.y1f{bottom:555.369000px;}
.y84{bottom:558.615000px;}
.yf7{bottom:560.595000px;}
.ya4{bottom:564.375000px;}
.y54{bottom:568.695000px;}
.yb5{bottom:569.415000px;}
.y1e{bottom:573.369000px;}
.yf6{bottom:578.595000px;}
.y83{bottom:580.215000px;}
.ya3{bottom:585.975000px;}
.ye2{bottom:588.675000px;}
.y53{bottom:590.295000px;}
.yb4{bottom:591.015000px;}
.y1d{bottom:591.369000px;}
.yf5{bottom:596.595000px;}
.y82{bottom:601.815000px;}
.ya2{bottom:607.605000px;}
.y1c{bottom:609.369000px;}
.ye1{bottom:610.305000px;}
.y52{bottom:611.925000px;}
.yb3{bottom:612.645000px;}
.yf4{bottom:614.625000px;}
.y81{bottom:623.445000px;}
.y1b{bottom:627.369000px;}
.ya1{bottom:629.205000px;}
.yf3{bottom:632.625000px;}
.y51{bottom:633.525000px;}
.y80{bottom:645.045000px;}
.y1a{bottom:645.369000px;}
.yb2{bottom:647.745000px;}
.yf2{bottom:650.625000px;}
.ya0{bottom:650.805000px;}
.y50{bottom:655.125000px;}
.yb1{bottom:659.985000px;}
.y19{bottom:663.369000px;}
.y7f{bottom:668.445000px;}
.yf1{bottom:668.625000px;}
.y9f{bottom:672.405000px;}
.y4f{bottom:676.725000px;}
.y18{bottom:681.369000px;}
.yf0{bottom:686.625000px;}
.y7e{bottom:690.045000px;}
.y9e{bottom:694.005000px;}
.y4e{bottom:698.325000px;}
.y17{bottom:699.369000px;}
.yef{bottom:704.625000px;}
.y7d{bottom:711.645000px;}
.y9d{bottom:715.605000px;}
.y16{bottom:717.369000px;}
.y4d{bottom:719.925000px;}
.yee{bottom:722.625000px;}
.y7c{bottom:735.225000px;}
.y15{bottom:735.369000px;}
.y9c{bottom:737.205000px;}
.yed{bottom:740.625000px;}
.y4c{bottom:741.525000px;}
.y13{bottom:750.714000px;}
.y14{bottom:753.414000px;}
.y7b{bottom:756.825000px;}
.yec{bottom:758.625000px;}
.y9b{bottom:758.805000px;}
.yeb{bottom:776.625000px;}
.y4b{bottom:776.805000px;}
.y7a{bottom:778.425000px;}
.y9a{bottom:780.405000px;}
.yea{bottom:794.625000px;}
.y4a{bottom:798.405000px;}
.y79{bottom:800.025000px;}
.y99{bottom:802.005000px;}
.ye9{bottom:812.625000px;}
.y49{bottom:820.005000px;}
.y78{bottom:823.605000px;}
.ye8{bottom:831.525000px;}
.y48{bottom:841.605000px;}
.y77{bottom:845.205000px;}
.y47{bottom:863.205000px;}
.y76{bottom:866.805000px;}
.y46{bottom:884.850000px;}
.y75{bottom:888.450000px;}
.ye{bottom:894.390000px;}
.y45{bottom:906.450000px;}
.y74{bottom:910.050000px;}
.y44{bottom:928.050000px;}
.y73{bottom:931.650000px;}
.y7{bottom:941.910000px;}
.y43{bottom:949.650000px;}
.y72{bottom:953.250000px;}
.y42{bottom:971.250000px;}
.y71{bottom:974.850000px;}
.y41{bottom:992.850000px;}
.y70{bottom:996.450000px;}
.y40{bottom:1014.450000px;}
.y6f{bottom:1018.050000px;}
.y3f{bottom:1036.050000px;}
.y6e{bottom:1039.650000px;}
.y3e{bottom:1057.650000px;}
.y6d{bottom:1061.250000px;}
.y3d{bottom:1079.250000px;}
.y6c{bottom:1082.850000px;}
.y3c{bottom:1101.210000px;}
.y6b{bottom:1104.450000px;}
.y3b{bottom:1124.610000px;}
.y6a{bottom:1126.050000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.hf{height:21.636000px;}
.hc{height:45.630000px;}
.h8{height:46.800000px;}
.h5{height:50.497200px;}
.ha{height:51.632640px;}
.hb{height:51.692400px;}
.h4{height:60.840000px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h7{height:67.262400px;}
.h6{height:182.340000px;}
.h10{height:220.500000px;}
.h11{height:220.530000px;}
.he{height:256.500000px;}
.hd{height:275.475000px;}
.h9{height:766.905000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:202.215000px;}
.w5{width:358.635000px;}
.w6{width:364.395000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:84.959987px;}
.xf{left:106.235987px;}
.x2{left:190.290000px;}
.x3{left:287.175000px;}
.x8{left:343.335000px;}
.xc{left:357.375000px;}
.xe{left:366.375000px;}
.xb{left:368.895000px;}
.xa{left:370.875000px;}
.xd{left:372.675000px;}
.x9{left:443.595000px;}
.x6{left:447.734987px;}
.x7{left:625.964987px;}
.x5{left:807.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-5.706667pt;}
.ls1e{letter-spacing:-1.370667pt;}
.lsd{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls20{letter-spacing:-0.581333pt;}
.ls21{letter-spacing:-0.517333pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.309867pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.208533pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000003pt;}
.ls9{letter-spacing:0.008960pt;}
.ls12{letter-spacing:0.059520pt;}
.ls5{letter-spacing:0.109333pt;}
.ls6{letter-spacing:0.115200pt;}
.ls14{letter-spacing:0.122880pt;}
.ls13{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.203520pt;}
.lse{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.263467pt;}
.ls8{letter-spacing:0.330240pt;}
.lsf{letter-spacing:0.431360pt;}
.ls1b{letter-spacing:2.122667pt;}
.ls1a{letter-spacing:21.484800pt;}
.ls17{letter-spacing:22.764800pt;}
.ls16{letter-spacing:23.404800pt;}
.ls18{letter-spacing:24.044800pt;}
.ls15{letter-spacing:25.324800pt;}
.ls19{letter-spacing:29.804800pt;}
.ls0{letter-spacing:462.240000pt;}
.ws6{word-spacing:-64.000000pt;}
.wsb{word-spacing:-13.696000pt;}
.ws1{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.312000pt;}
.wsd{word-spacing:-13.277867pt;}
.ws9{word-spacing:-13.184000pt;}
.ws7{word-spacing:-13.120000pt;}
.ws8{word-spacing:-12.992003pt;}
.ws0{word-spacing:-12.992000pt;}
.wsa{word-spacing:-12.544000pt;}
.wse{word-spacing:-11.270400pt;}
.ws10{word-spacing:-11.164160pt;}
.ws2{word-spacing:-11.155200pt;}
.ws11{word-spacing:-10.946667pt;}
.wsf{word-spacing:-10.845333pt;}
.ws4{word-spacing:-10.783360pt;}
.ws3{word-spacing:-10.730240pt;}
.ws15{word-spacing:-10.637867pt;}
.ws14{word-spacing:-10.573867pt;}
.ws12{word-spacing:-9.784533pt;}
.ws13{word-spacing:-5.448533pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-5.920000pt;}
._12{margin-left:-4.842667pt;}
._8{margin-left:-3.496107pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._4{width:1.514667pt;}
._9{width:2.557440pt;}
._f{width:3.712000pt;}
._e{width:4.608000pt;}
._14{width:5.909333pt;}
._1c{width:7.061333pt;}
._16{width:8.128000pt;}
._c{width:9.536000pt;}
._d{width:11.093333pt;}
._1d{width:12.224000pt;}
._11{width:14.464000pt;}
._10{width:15.488000pt;}
._18{width:17.237333pt;}
._17{width:18.304000pt;}
._19{width:20.096000pt;}
._21{width:21.184000pt;}
._22{width:22.400000pt;}
._1e{width:24.042667pt;}
._13{width:25.280000pt;}
._1a{width:26.560000pt;}
._15{width:27.904000pt;}
._1b{width:30.016000pt;}
._23{width:31.104000pt;}
._b{width:35.904000pt;}
._1f{width:36.800000pt;}
._20{width:38.922667pt;}
._2{width:422.368000pt;}
._6{width:491.304960pt;}
._3{width:1154.826667pt;}
._25{width:1232.266667pt;}
._24{width:1319.671467pt;}
._a{width:1320.951467pt;}
._7{width:1325.431467pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:1.600000pt;}
.y3a{bottom:4.000000pt;}
.ye3{bottom:4.800000pt;}
.y11{bottom:5.120000pt;}
.y39{bottom:20.000000pt;}
.y10{bottom:25.920000pt;}
.yf{bottom:27.200000pt;}
.y38{bottom:35.994667pt;}
.y5{bottom:51.200000pt;}
.y37{bottom:51.994667pt;}
.yd{bottom:54.080000pt;}
.y36{bottom:67.994667pt;}
.yc{bottom:70.080000pt;}
.y4{bottom:70.272000pt;}
.y35{bottom:83.994667pt;}
.yb{bottom:86.880000pt;}
.y34{bottom:99.994667pt;}
.y69{bottom:102.272000pt;}
.yca{bottom:102.912000pt;}
.ya{bottom:106.080000pt;}
.y98{bottom:112.512000pt;}
.y12{bottom:113.312000pt;}
.y33{bottom:115.994667pt;}
.ye7{bottom:116.832000pt;}
.y68{bottom:121.472000pt;}
.yc9{bottom:122.112000pt;}
.y9{bottom:125.600000pt;}
.ye6{bottom:131.232000pt;}
.y97{bottom:131.712000pt;}
.y32{bottom:131.994667pt;}
.y67{bottom:140.666667pt;}
.yc8{bottom:141.306667pt;}
.y8{bottom:146.400000pt;}
.yd8{bottom:148.346667pt;}
.y31{bottom:148.794667pt;}
.y96{bottom:150.906667pt;}
.y66{bottom:159.866667pt;}
.yc7{bottom:160.506667pt;}
.yd7{bottom:167.546667pt;}
.y30{bottom:167.994667pt;}
.y95{bottom:170.106667pt;}
.y65{bottom:179.066667pt;}
.yc6{bottom:179.706667pt;}
.yd6{bottom:186.746667pt;}
.y2f{bottom:187.234667pt;}
.y94{bottom:189.306667pt;}
.y64{bottom:198.266667pt;}
.yc5{bottom:198.906667pt;}
.yd5{bottom:205.946667pt;}
.y2e{bottom:206.434667pt;}
.y93{bottom:208.506667pt;}
.y63{bottom:217.466667pt;}
.yc4{bottom:218.106667pt;}
.yd4{bottom:225.146667pt;}
.y2d{bottom:225.634667pt;}
.y92{bottom:227.706667pt;}
.y62{bottom:236.666667pt;}
.yc3{bottom:237.306667pt;}
.yd3{bottom:244.346667pt;}
.y2c{bottom:244.834667pt;}
.y91{bottom:246.906667pt;}
.y61{bottom:255.866667pt;}
.yc2{bottom:256.506667pt;}
.yd2{bottom:263.546667pt;}
.y2b{bottom:264.034667pt;}
.y90{bottom:266.106667pt;}
.yb0{bottom:271.226667pt;}
.y60{bottom:275.066667pt;}
.yc1{bottom:275.706667pt;}
.yd1{bottom:282.746667pt;}
.y2a{bottom:283.234667pt;}
.y8f{bottom:285.306667pt;}
.yaf{bottom:290.426667pt;}
.y5f{bottom:294.266667pt;}
.yc0{bottom:294.906667pt;}
.ye0{bottom:300.386667pt;}
.yd0{bottom:301.986667pt;}
.y29{bottom:302.434667pt;}
.y8e{bottom:304.546667pt;}
.yae{bottom:309.666667pt;}
.y5e{bottom:313.506667pt;}
.ybf{bottom:314.146667pt;}
.ydf{bottom:319.586667pt;}
.ycf{bottom:321.186667pt;}
.y28{bottom:321.634667pt;}
.y102{bottom:322.306667pt;}
.y8d{bottom:323.746667pt;}
.ye4{bottom:327.266667pt;}
.yad{bottom:328.866667pt;}
.y5d{bottom:332.706667pt;}
.ybe{bottom:333.346667pt;}
.y101{bottom:338.306667pt;}
.yde{bottom:338.786667pt;}
.yce{bottom:340.386667pt;}
.y27{bottom:340.834667pt;}
.y8c{bottom:342.946667pt;}
.yac{bottom:348.066667pt;}
.y5c{bottom:351.906667pt;}
.ybd{bottom:352.546667pt;}
.y100{bottom:354.306667pt;}
.ydd{bottom:357.986667pt;}
.ycd{bottom:359.586667pt;}
.y26{bottom:360.034667pt;}
.y8b{bottom:362.146667pt;}
.yab{bottom:367.266667pt;}
.yff{bottom:370.306667pt;}
.y5b{bottom:371.106667pt;}
.ybc{bottom:371.746667pt;}
.ydc{bottom:377.186667pt;}
.y25{bottom:379.234667pt;}
.y8a{bottom:381.346667pt;}
.yfe{bottom:386.306667pt;}
.yaa{bottom:386.466667pt;}
.y5a{bottom:390.306667pt;}
.ycc{bottom:390.786667pt;}
.ybb{bottom:390.946667pt;}
.ydb{bottom:396.386667pt;}
.y24{bottom:398.434667pt;}
.y89{bottom:400.546667pt;}
.ycb{bottom:401.666667pt;}
.yfd{bottom:402.306667pt;}
.ya9{bottom:405.666667pt;}
.y59{bottom:409.506667pt;}
.yba{bottom:410.146667pt;}
.y23{bottom:417.634667pt;}
.yfc{bottom:418.306667pt;}
.y88{bottom:419.746667pt;}
.ya8{bottom:424.866667pt;}
.yda{bottom:427.586667pt;}
.y58{bottom:428.706667pt;}
.yb9{bottom:429.346667pt;}
.yfb{bottom:434.306667pt;}
.y22{bottom:436.861333pt;}
.yd9{bottom:438.466667pt;}
.y87{bottom:438.946667pt;}
.ya7{bottom:444.066667pt;}
.y57{bottom:447.906667pt;}
.yb8{bottom:448.546667pt;}
.yfa{bottom:450.306667pt;}
.y21{bottom:456.061333pt;}
.y86{bottom:458.146667pt;}
.ya6{bottom:463.266667pt;}
.yf9{bottom:466.306667pt;}
.y56{bottom:467.106667pt;}
.yb7{bottom:467.746667pt;}
.y20{bottom:475.261333pt;}
.y85{bottom:477.346667pt;}
.yf8{bottom:482.306667pt;}
.ya5{bottom:482.466667pt;}
.y55{bottom:486.306667pt;}
.yb6{bottom:486.946667pt;}
.y1f{bottom:493.661333pt;}
.y84{bottom:496.546667pt;}
.yf7{bottom:498.306667pt;}
.ya4{bottom:501.666667pt;}
.y54{bottom:505.506667pt;}
.yb5{bottom:506.146667pt;}
.y1e{bottom:509.661333pt;}
.yf6{bottom:514.306667pt;}
.y83{bottom:515.746667pt;}
.ya3{bottom:520.866667pt;}
.ye2{bottom:523.266667pt;}
.y53{bottom:524.706667pt;}
.yb4{bottom:525.346667pt;}
.y1d{bottom:525.661333pt;}
.yf5{bottom:530.306667pt;}
.y82{bottom:534.946667pt;}
.ya2{bottom:540.093333pt;}
.y1c{bottom:541.661333pt;}
.ye1{bottom:542.493333pt;}
.y52{bottom:543.933333pt;}
.yb3{bottom:544.573333pt;}
.yf4{bottom:546.333333pt;}
.y81{bottom:554.173333pt;}
.y1b{bottom:557.661333pt;}
.ya1{bottom:559.293333pt;}
.yf3{bottom:562.333333pt;}
.y51{bottom:563.133333pt;}
.y80{bottom:573.373333pt;}
.y1a{bottom:573.661333pt;}
.yb2{bottom:575.773333pt;}
.yf2{bottom:578.333333pt;}
.ya0{bottom:578.493333pt;}
.y50{bottom:582.333333pt;}
.yb1{bottom:586.653333pt;}
.y19{bottom:589.661333pt;}
.y7f{bottom:594.173333pt;}
.yf1{bottom:594.333333pt;}
.y9f{bottom:597.693333pt;}
.y4f{bottom:601.533333pt;}
.y18{bottom:605.661333pt;}
.yf0{bottom:610.333333pt;}
.y7e{bottom:613.373333pt;}
.y9e{bottom:616.893333pt;}
.y4e{bottom:620.733333pt;}
.y17{bottom:621.661333pt;}
.yef{bottom:626.333333pt;}
.y7d{bottom:632.573333pt;}
.y9d{bottom:636.093333pt;}
.y16{bottom:637.661333pt;}
.y4d{bottom:639.933333pt;}
.yee{bottom:642.333333pt;}
.y7c{bottom:653.533333pt;}
.y15{bottom:653.661333pt;}
.y9c{bottom:655.293333pt;}
.yed{bottom:658.333333pt;}
.y4c{bottom:659.133333pt;}
.y13{bottom:667.301333pt;}
.y14{bottom:669.701333pt;}
.y7b{bottom:672.733333pt;}
.yec{bottom:674.333333pt;}
.y9b{bottom:674.493333pt;}
.yeb{bottom:690.333333pt;}
.y4b{bottom:690.493333pt;}
.y7a{bottom:691.933333pt;}
.y9a{bottom:693.693333pt;}
.yea{bottom:706.333333pt;}
.y4a{bottom:709.693333pt;}
.y79{bottom:711.133333pt;}
.y99{bottom:712.893333pt;}
.ye9{bottom:722.333333pt;}
.y49{bottom:728.893333pt;}
.y78{bottom:732.093333pt;}
.ye8{bottom:739.133333pt;}
.y48{bottom:748.093333pt;}
.y77{bottom:751.293333pt;}
.y47{bottom:767.293333pt;}
.y76{bottom:770.493333pt;}
.y46{bottom:786.533333pt;}
.y75{bottom:789.733333pt;}
.ye{bottom:795.013333pt;}
.y45{bottom:805.733333pt;}
.y74{bottom:808.933333pt;}
.y44{bottom:824.933333pt;}
.y73{bottom:828.133333pt;}
.y7{bottom:837.253333pt;}
.y43{bottom:844.133333pt;}
.y72{bottom:847.333333pt;}
.y42{bottom:863.333333pt;}
.y71{bottom:866.533333pt;}
.y41{bottom:882.533333pt;}
.y70{bottom:885.733333pt;}
.y40{bottom:901.733333pt;}
.y6f{bottom:904.933333pt;}
.y3f{bottom:920.933333pt;}
.y6e{bottom:924.133333pt;}
.y3e{bottom:940.133333pt;}
.y6d{bottom:943.333333pt;}
.y3d{bottom:959.333333pt;}
.y6c{bottom:962.533333pt;}
.y3c{bottom:978.853333pt;}
.y6b{bottom:981.733333pt;}
.y3b{bottom:999.653333pt;}
.y6a{bottom:1000.933333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.hf{height:19.232000pt;}
.hc{height:40.560000pt;}
.h8{height:41.600000pt;}
.h5{height:44.886400pt;}
.ha{height:45.895680pt;}
.hb{height:45.948800pt;}
.h4{height:54.080000pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h7{height:59.788800pt;}
.h6{height:162.080000pt;}
.h10{height:196.000000pt;}
.h11{height:196.026667pt;}
.he{height:228.000000pt;}
.hd{height:244.866667pt;}
.h9{height:681.693333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:179.746667pt;}
.w5{width:318.786667pt;}
.w6{width:323.906667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:75.519988pt;}
.xf{left:94.431988pt;}
.x2{left:169.146667pt;}
.x3{left:255.266667pt;}
.x8{left:305.186667pt;}
.xc{left:317.666667pt;}
.xe{left:325.666667pt;}
.xb{left:327.906667pt;}
.xa{left:329.666667pt;}
.xd{left:331.266667pt;}
.x9{left:394.306667pt;}
.x6{left:397.986655pt;}
.x7{left:556.413322pt;}
.x5{left:718.053322pt;}
}




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