
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_3ce0746fc6483c365cd25fbc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_19f9493504e4534290edff31.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_bff32f8bc534abe7496c2fbf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_d239b9b886f104be6d89d9e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_432fd17802d0283923c8287a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_ecdb4a97058ec448cf831681.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_21ed1425fbfd93cd9ce05ba4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_28e28ae4ec829c30c1e6fd63.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1e82d00f52a9384ab83981b0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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);}
.v1{vertical-align:-77.760000px;}
.v2{vertical-align:-60.480000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.ls8{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.428000px;}
.ls10{letter-spacing:-0.972000px;}
.lsc{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.726000px;}
.ls5{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.630000px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.089400px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls14{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.493920px;}
.ls2{letter-spacing:0.498240px;}
.lsa{letter-spacing:0.714000px;}
.ls0{letter-spacing:0.720000px;}
.ls9{letter-spacing:2.160000px;}
.lsd{letter-spacing:12.240000px;}
.ls13{letter-spacing:16.306560px;}
.ls12{letter-spacing:46.546560px;}
.lse{letter-spacing:63.826560px;}
.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:-60.480000px;}
.wse{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.148000px;}
.ws5{word-spacing:-13.050000px;}
.ws6{word-spacing:-12.240000px;}
.ws1{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.434000px;}
.wsa{word-spacing:-9.732960px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:-9.000000px;}
.ws9{word-spacing:-8.994000px;}
.wsd{word-spacing:-8.292000px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-3.767040px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._5{width:5.354400px;}
._9{width:7.004160px;}
._a{width:8.254080px;}
._8{width:9.302400px;}
._7{width:10.880640px;}
._10{width:12.579840px;}
._13{width:13.996800px;}
._c{width:16.032960px;}
._b{width:17.665920px;}
._14{width:18.945600px;}
._20{width:20.701440px;}
._18{width:22.115520px;}
._e{width:23.348160px;}
._d{width:24.952320px;}
._f{width:25.994880px;}
._17{width:29.237760px;}
._15{width:30.360960px;}
._16{width:31.449600px;}
._1c{width:33.082560px;}
._19{width:36.028320px;}
._1e{width:37.074240px;}
._1f{width:38.465760px;}
._1d{width:41.135520px;}
._1b{width:43.398720px;}
._1a{width:44.513280px;}
._12{width:201.024000px;}
._6{width:647.640480px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y58{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y55{bottom:16.555500px;}
.y4{bottom:21.240000px;}
.y49{bottom:30.595500px;}
.y54{bottom:32.035500px;}
.y42{bottom:38.520000px;}
.y3{bottom:44.280000px;}
.y53{bottom:49.714500px;}
.y48{bottom:51.514500px;}
.y41{bottom:55.440000px;}
.y7{bottom:57.636000px;}
.y47{bottom:64.834500px;}
.y52{bottom:65.554500px;}
.y40{bottom:72.720000px;}
.y51{bottom:78.514500px;}
.y50{bottom:84.634500px;}
.y46{bottom:86.434500px;}
.y3f{bottom:90.000000px;}
.y56{bottom:90.036000px;}
.y4f{bottom:100.474500px;}
.y43{bottom:103.360500px;}
.yea{bottom:104.076000px;}
.y90{bottom:104.436000px;}
.yef{bottom:104.796000px;}
.y3e{bottom:107.280000px;}
.yd2{bottom:108.396000px;}
.y4e{bottom:115.954500px;}
.ye9{bottom:121.356000px;}
.yee{bottom:122.076000px;}
.y3d{bottom:124.605000px;}
.yd1{bottom:125.676000px;}
.y8f{bottom:131.076000px;}
.y4d{bottom:131.434500px;}
.ye8{bottom:138.636000px;}
.yed{bottom:139.356000px;}
.y3c{bottom:141.885000px;}
.yd0{bottom:142.992000px;}
.y4c{bottom:146.914500px;}
.y8e{bottom:148.392000px;}
.y45{bottom:148.714500px;}
.ye7{bottom:155.955000px;}
.yb4{bottom:156.675000px;}
.y3b{bottom:159.165000px;}
.y44{bottom:159.514500px;}
.ycf{bottom:160.275000px;}
.y4b{bottom:162.394500px;}
.y8d{bottom:165.675000px;}
.ye6{bottom:173.235000px;}
.yb3{bottom:173.955000px;}
.y3a{bottom:176.445000px;}
.yce{bottom:177.555000px;}
.y8c{bottom:182.955000px;}
.ye5{bottom:190.515000px;}
.yec{bottom:190.875000px;}
.yb2{bottom:191.235000px;}
.y39{bottom:193.725000px;}
.ycd{bottom:195.915000px;}
.y8b{bottom:200.235000px;}
.ye4{bottom:207.795000px;}
.yb1{bottom:208.515000px;}
.y38{bottom:211.005000px;}
.ycc{bottom:213.195000px;}
.y8a{bottom:217.515000px;}
.ye3{bottom:225.075000px;}
.yb0{bottom:225.795000px;}
.y37{bottom:228.285000px;}
.ycb{bottom:231.555000px;}
.y89{bottom:234.795000px;}
.ye2{bottom:241.995000px;}
.yaf{bottom:243.075000px;}
.y36{bottom:245.595000px;}
.yca{bottom:249.915000px;}
.y88{bottom:252.075000px;}
.yae{bottom:260.355000px;}
.y35{bottom:262.515000px;}
.yc9{bottom:267.195000px;}
.ye1{bottom:268.275000px;}
.y87{bottom:269.355000px;}
.yad{bottom:277.305000px;}
.y34{bottom:279.795000px;}
.yc8{bottom:285.585000px;}
.y86{bottom:286.305000px;}
.ye{bottom:292.425000px;}
.yac{bottom:294.585000px;}
.y33{bottom:297.075000px;}
.yc7{bottom:302.505000px;}
.ye0{bottom:302.865000px;}
.y85{bottom:303.585000px;}
.yab{bottom:311.865000px;}
.y32{bottom:314.355000px;}
.yc6{bottom:319.785000px;}
.ydf{bottom:320.145000px;}
.yf3{bottom:320.505000px;}
.y84{bottom:320.865000px;}
.yaa{bottom:329.145000px;}
.y31{bottom:331.275000px;}
.yde{bottom:337.425000px;}
.y83{bottom:338.145000px;}
.ya9{bottom:346.425000px;}
.ydd{bottom:354.705000px;}
.y82{bottom:355.425000px;}
.y30{bottom:357.195000px;}
.ya8{bottom:363.705000px;}
.y1c{bottom:365.835000px;}
.ydc{bottom:371.985000px;}
.y2f{bottom:372.675000px;}
.y81{bottom:372.705000px;}
.ya7{bottom:380.985000px;}
.y2e{bottom:388.185000px;}
.ydb{bottom:389.265000px;}
.y1b{bottom:389.985000px;}
.ya6{bottom:398.265000px;}
.y2d{bottom:404.025000px;}
.yda{bottom:406.590000px;}
.y80{bottom:407.310000px;}
.y1a{bottom:414.105000px;}
.ya5{bottom:415.590000px;}
.y2c{bottom:419.505000px;}
.yd9{bottom:423.870000px;}
.y7f{bottom:424.590000px;}
.ya4{bottom:432.870000px;}
.y2b{bottom:434.985000px;}
.y19{bottom:438.225000px;}
.yd8{bottom:440.790000px;}
.y7e{bottom:441.870000px;}
.ya3{bottom:450.150000px;}
.y2a{bottom:450.465000px;}
.y7d{bottom:459.150000px;}
.y18{bottom:462.345000px;}
.y29{bottom:465.945000px;}
.ya2{bottom:467.430000px;}
.y7c{bottom:476.430000px;}
.y28{bottom:481.425000px;}
.ya1{bottom:484.350000px;}
.y17{bottom:486.465000px;}
.y7b{bottom:493.350000px;}
.y27{bottom:496.905000px;}
.ya0{bottom:501.630000px;}
.y16{bottom:510.630000px;}
.y26{bottom:512.430000px;}
.y9f{bottom:518.910000px;}
.y7a{bottom:527.910000px;}
.y25{bottom:528.270000px;}
.y15{bottom:534.750000px;}
.y9e{bottom:536.190000px;}
.y24{bottom:543.750000px;}
.yc5{bottom:544.860000px;}
.y79{bottom:545.220000px;}
.y9d{bottom:553.500000px;}
.y14{bottom:558.870000px;}
.y23{bottom:559.230000px;}
.yeb{bottom:562.140000px;}
.y78{bottom:562.500000px;}
.y9c{bottom:570.780000px;}
.yc4{bottom:571.500000px;}
.y22{bottom:574.710000px;}
.y77{bottom:579.780000px;}
.y13{bottom:582.990000px;}
.y9b{bottom:588.060000px;}
.yc3{bottom:588.780000px;}
.y21{bottom:590.190000px;}
.y76{bottom:597.060000px;}
.y9a{bottom:605.340000px;}
.y20{bottom:605.670000px;}
.yc2{bottom:606.060000px;}
.y12{bottom:607.110000px;}
.y75{bottom:614.340000px;}
.y1f{bottom:621.150000px;}
.yd7{bottom:622.260000px;}
.y99{bottom:622.620000px;}
.yc1{bottom:623.340000px;}
.y11{bottom:631.230000px;}
.y74{bottom:631.620000px;}
.y1e{bottom:636.630000px;}
.y98{bottom:639.900000px;}
.yc0{bottom:640.620000px;}
.y73{bottom:648.900000px;}
.y10{bottom:655.740000px;}
.y97{bottom:657.180000px;}
.ybf{bottom:657.900000px;}
.y72{bottom:666.180000px;}
.y1d{bottom:667.620000px;}
.y96{bottom:674.130000px;}
.ybe{bottom:675.210000px;}
.yf{bottom:679.860000px;}
.yd6{bottom:682.770000px;}
.y71{bottom:683.130000px;}
.y95{bottom:691.050000px;}
.ybd{bottom:692.130000px;}
.y70{bottom:700.410000px;}
.ybc{bottom:709.410000px;}
.y6f{bottom:717.690000px;}
.ybb{bottom:726.690000px;}
.y6e{bottom:734.970000px;}
.yba{bottom:743.970000px;}
.y6d{bottom:752.250000px;}
.yb9{bottom:761.250000px;}
.y6c{bottom:769.530000px;}
.yb8{bottom:778.530000px;}
.y6b{bottom:786.810000px;}
.yd5{bottom:795.450000px;}
.yb7{bottom:795.810000px;}
.y6a{bottom:804.135000px;}
.yb6{bottom:813.135000px;}
.y94{bottom:821.055000px;}
.y69{bottom:821.415000px;}
.yb5{bottom:830.415000px;}
.y68{bottom:838.695000px;}
.y93{bottom:847.695000px;}
.y67{bottom:855.615000px;}
.yf2{bottom:855.975000px;}
.y92{bottom:864.975000px;}
.yf1{bottom:873.255000px;}
.y66{bottom:882.255000px;}
.yf0{bottom:889.815000px;}
.y65{bottom:899.175000px;}
.y64{bottom:916.455000px;}
.yd4{bottom:933.405000px;}
.y63{bottom:933.765000px;}
.y62{bottom:951.045000px;}
.y61{bottom:968.325000px;}
.yd{bottom:984.525000px;}
.y60{bottom:985.605000px;}
.yc{bottom:989.565000px;}
.y5f{bottom:1002.885000px;}
.yb{bottom:1006.845000px;}
.y5e{bottom:1020.165000px;}
.ya{bottom:1023.765000px;}
.y5d{bottom:1037.445000px;}
.yd3{bottom:1054.365000px;}
.y5c{bottom:1054.725000px;}
.y9{bottom:1060.485000px;}
.y5b{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y5a{bottom:1088.970000px;}
.y57{bottom:1091.520000px;}
.y91{bottom:1105.890000px;}
.y59{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.ha{height:4.165313px;}
.h15{height:5.650313px;}
.h6{height:24.348516px;}
.h16{height:27.720000px;}
.h13{height:29.678906px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h10{height:42.229688px;}
.hf{height:45.101250px;}
.he{height:53.677969px;}
.h14{height:55.147500px;}
.h7{height:58.050000px;}
.h5{height:59.357813px;}
.h11{height:60.155156px;}
.h9{height:60.952500px;}
.h1a{height:62.163910px;}
.h17{height:63.455625px;}
.h8{height:63.577969px;}
.h18{height:65.518594px;}
.h19{height:65.530594px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h12{height:188.325000px;}
.hb{height:689.205000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.876000px;}
.x17{left:8.266500px;}
.x4{left:13.305000px;}
.x15{left:17.266500px;}
.x1b{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:29.146500px;}
.xf{left:43.906500px;}
.x1c{left:47.542500px;}
.x6{left:48.615000px;}
.x10{left:50.782500px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x19{left:62.295000px;}
.x1{left:78.529500px;}
.x13{left:83.905500px;}
.x7{left:86.436000px;}
.x12{left:90.025500px;}
.x2{left:95.425500px;}
.x1d{left:102.985500px;}
.x1a{left:106.945500px;}
.x20{left:113.436000px;}
.x11{left:124.585500px;}
.x1f{left:140.472000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.xb{left:303.945000px;}
.xc{left:572.250000px;}
.xa{left:668.445000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xd{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v2{vertical-align:-53.760000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.269333pt;}
.ls10{letter-spacing:-0.864000pt;}
.lsc{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.645333pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls14{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.439040pt;}
.ls2{letter-spacing:0.442880pt;}
.lsa{letter-spacing:0.634667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.920000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls13{letter-spacing:14.494720pt;}
.ls12{letter-spacing:41.374720pt;}
.lse{letter-spacing:56.734720pt;}
.wsb{word-spacing:-53.760000pt;}
.wse{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.440000pt;}
.wsc{word-spacing:-12.576000pt;}
.ws5{word-spacing:-11.600000pt;}
.ws6{word-spacing:-10.880000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.274667pt;}
.wsa{word-spacing:-8.651520pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:-8.000000pt;}
.ws9{word-spacing:-7.994667pt;}
.wsd{word-spacing:-7.370667pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-3.348480pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._5{width:4.759467pt;}
._9{width:6.225920pt;}
._a{width:7.336960pt;}
._8{width:8.268800pt;}
._7{width:9.671680pt;}
._10{width:11.182080pt;}
._13{width:12.441600pt;}
._c{width:14.251520pt;}
._b{width:15.703040pt;}
._14{width:16.840533pt;}
._20{width:18.401280pt;}
._18{width:19.658240pt;}
._e{width:20.753920pt;}
._d{width:22.179840pt;}
._f{width:23.106560pt;}
._17{width:25.989120pt;}
._15{width:26.987520pt;}
._16{width:27.955200pt;}
._1c{width:29.406720pt;}
._19{width:32.025173pt;}
._1e{width:32.954880pt;}
._1f{width:34.191787pt;}
._1d{width:36.564907pt;}
._1b{width:38.576640pt;}
._1a{width:39.567360pt;}
._12{width:178.688000pt;}
._6{width:575.680427pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y58{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y55{bottom:14.716000pt;}
.y4{bottom:18.880000pt;}
.y49{bottom:27.196000pt;}
.y54{bottom:28.476000pt;}
.y42{bottom:34.240000pt;}
.y3{bottom:39.360000pt;}
.y53{bottom:44.190667pt;}
.y48{bottom:45.790667pt;}
.y41{bottom:49.280000pt;}
.y7{bottom:51.232000pt;}
.y47{bottom:57.630667pt;}
.y52{bottom:58.270667pt;}
.y40{bottom:64.640000pt;}
.y51{bottom:69.790667pt;}
.y50{bottom:75.230667pt;}
.y46{bottom:76.830667pt;}
.y3f{bottom:80.000000pt;}
.y56{bottom:80.032000pt;}
.y4f{bottom:89.310667pt;}
.y43{bottom:91.876000pt;}
.yea{bottom:92.512000pt;}
.y90{bottom:92.832000pt;}
.yef{bottom:93.152000pt;}
.y3e{bottom:95.360000pt;}
.yd2{bottom:96.352000pt;}
.y4e{bottom:103.070667pt;}
.ye9{bottom:107.872000pt;}
.yee{bottom:108.512000pt;}
.y3d{bottom:110.760000pt;}
.yd1{bottom:111.712000pt;}
.y8f{bottom:116.512000pt;}
.y4d{bottom:116.830667pt;}
.ye8{bottom:123.232000pt;}
.yed{bottom:123.872000pt;}
.y3c{bottom:126.120000pt;}
.yd0{bottom:127.104000pt;}
.y4c{bottom:130.590667pt;}
.y8e{bottom:131.904000pt;}
.y45{bottom:132.190667pt;}
.ye7{bottom:138.626667pt;}
.yb4{bottom:139.266667pt;}
.y3b{bottom:141.480000pt;}
.y44{bottom:141.790667pt;}
.ycf{bottom:142.466667pt;}
.y4b{bottom:144.350667pt;}
.y8d{bottom:147.266667pt;}
.ye6{bottom:153.986667pt;}
.yb3{bottom:154.626667pt;}
.y3a{bottom:156.840000pt;}
.yce{bottom:157.826667pt;}
.y8c{bottom:162.626667pt;}
.ye5{bottom:169.346667pt;}
.yec{bottom:169.666667pt;}
.yb2{bottom:169.986667pt;}
.y39{bottom:172.200000pt;}
.ycd{bottom:174.146667pt;}
.y8b{bottom:177.986667pt;}
.ye4{bottom:184.706667pt;}
.yb1{bottom:185.346667pt;}
.y38{bottom:187.560000pt;}
.ycc{bottom:189.506667pt;}
.y8a{bottom:193.346667pt;}
.ye3{bottom:200.066667pt;}
.yb0{bottom:200.706667pt;}
.y37{bottom:202.920000pt;}
.ycb{bottom:205.826667pt;}
.y89{bottom:208.706667pt;}
.ye2{bottom:215.106667pt;}
.yaf{bottom:216.066667pt;}
.y36{bottom:218.306667pt;}
.yca{bottom:222.146667pt;}
.y88{bottom:224.066667pt;}
.yae{bottom:231.426667pt;}
.y35{bottom:233.346667pt;}
.yc9{bottom:237.506667pt;}
.ye1{bottom:238.466667pt;}
.y87{bottom:239.426667pt;}
.yad{bottom:246.493333pt;}
.y34{bottom:248.706667pt;}
.yc8{bottom:253.853333pt;}
.y86{bottom:254.493333pt;}
.ye{bottom:259.933333pt;}
.yac{bottom:261.853333pt;}
.y33{bottom:264.066667pt;}
.yc7{bottom:268.893333pt;}
.ye0{bottom:269.213333pt;}
.y85{bottom:269.853333pt;}
.yab{bottom:277.213333pt;}
.y32{bottom:279.426667pt;}
.yc6{bottom:284.253333pt;}
.ydf{bottom:284.573333pt;}
.yf3{bottom:284.893333pt;}
.y84{bottom:285.213333pt;}
.yaa{bottom:292.573333pt;}
.y31{bottom:294.466667pt;}
.yde{bottom:299.933333pt;}
.y83{bottom:300.573333pt;}
.ya9{bottom:307.933333pt;}
.ydd{bottom:315.293333pt;}
.y82{bottom:315.933333pt;}
.y30{bottom:317.506667pt;}
.ya8{bottom:323.293333pt;}
.y1c{bottom:325.186667pt;}
.ydc{bottom:330.653333pt;}
.y2f{bottom:331.266667pt;}
.y81{bottom:331.293333pt;}
.ya7{bottom:338.653333pt;}
.y2e{bottom:345.053333pt;}
.ydb{bottom:346.013333pt;}
.y1b{bottom:346.653333pt;}
.ya6{bottom:354.013333pt;}
.y2d{bottom:359.133333pt;}
.yda{bottom:361.413333pt;}
.y80{bottom:362.053333pt;}
.y1a{bottom:368.093333pt;}
.ya5{bottom:369.413333pt;}
.y2c{bottom:372.893333pt;}
.yd9{bottom:376.773333pt;}
.y7f{bottom:377.413333pt;}
.ya4{bottom:384.773333pt;}
.y2b{bottom:386.653333pt;}
.y19{bottom:389.533333pt;}
.yd8{bottom:391.813333pt;}
.y7e{bottom:392.773333pt;}
.ya3{bottom:400.133333pt;}
.y2a{bottom:400.413333pt;}
.y7d{bottom:408.133333pt;}
.y18{bottom:410.973333pt;}
.y29{bottom:414.173333pt;}
.ya2{bottom:415.493333pt;}
.y7c{bottom:423.493333pt;}
.y28{bottom:427.933333pt;}
.ya1{bottom:430.533333pt;}
.y17{bottom:432.413333pt;}
.y7b{bottom:438.533333pt;}
.y27{bottom:441.693333pt;}
.ya0{bottom:445.893333pt;}
.y16{bottom:453.893333pt;}
.y26{bottom:455.493333pt;}
.y9f{bottom:461.253333pt;}
.y7a{bottom:469.253333pt;}
.y25{bottom:469.573333pt;}
.y15{bottom:475.333333pt;}
.y9e{bottom:476.613333pt;}
.y24{bottom:483.333333pt;}
.yc5{bottom:484.320000pt;}
.y79{bottom:484.640000pt;}
.y9d{bottom:492.000000pt;}
.y14{bottom:496.773333pt;}
.y23{bottom:497.093333pt;}
.yeb{bottom:499.680000pt;}
.y78{bottom:500.000000pt;}
.y9c{bottom:507.360000pt;}
.yc4{bottom:508.000000pt;}
.y22{bottom:510.853333pt;}
.y77{bottom:515.360000pt;}
.y13{bottom:518.213333pt;}
.y9b{bottom:522.720000pt;}
.yc3{bottom:523.360000pt;}
.y21{bottom:524.613333pt;}
.y76{bottom:530.720000pt;}
.y9a{bottom:538.080000pt;}
.y20{bottom:538.373333pt;}
.yc2{bottom:538.720000pt;}
.y12{bottom:539.653333pt;}
.y75{bottom:546.080000pt;}
.y1f{bottom:552.133333pt;}
.yd7{bottom:553.120000pt;}
.y99{bottom:553.440000pt;}
.yc1{bottom:554.080000pt;}
.y11{bottom:561.093333pt;}
.y74{bottom:561.440000pt;}
.y1e{bottom:565.893333pt;}
.y98{bottom:568.800000pt;}
.yc0{bottom:569.440000pt;}
.y73{bottom:576.800000pt;}
.y10{bottom:582.880000pt;}
.y97{bottom:584.160000pt;}
.ybf{bottom:584.800000pt;}
.y72{bottom:592.160000pt;}
.y1d{bottom:593.440000pt;}
.y96{bottom:599.226667pt;}
.ybe{bottom:600.186667pt;}
.yf{bottom:604.320000pt;}
.yd6{bottom:606.906667pt;}
.y71{bottom:607.226667pt;}
.y95{bottom:614.266667pt;}
.ybd{bottom:615.226667pt;}
.y70{bottom:622.586667pt;}
.ybc{bottom:630.586667pt;}
.y6f{bottom:637.946667pt;}
.ybb{bottom:645.946667pt;}
.y6e{bottom:653.306667pt;}
.yba{bottom:661.306667pt;}
.y6d{bottom:668.666667pt;}
.yb9{bottom:676.666667pt;}
.y6c{bottom:684.026667pt;}
.yb8{bottom:692.026667pt;}
.y6b{bottom:699.386667pt;}
.yd5{bottom:707.066667pt;}
.yb7{bottom:707.386667pt;}
.y6a{bottom:714.786667pt;}
.yb6{bottom:722.786667pt;}
.y94{bottom:729.826667pt;}
.y69{bottom:730.146667pt;}
.yb5{bottom:738.146667pt;}
.y68{bottom:745.506667pt;}
.y93{bottom:753.506667pt;}
.y67{bottom:760.546667pt;}
.yf2{bottom:760.866667pt;}
.y92{bottom:768.866667pt;}
.yf1{bottom:776.226667pt;}
.y66{bottom:784.226667pt;}
.yf0{bottom:790.946667pt;}
.y65{bottom:799.266667pt;}
.y64{bottom:814.626667pt;}
.yd4{bottom:829.693333pt;}
.y63{bottom:830.013333pt;}
.y62{bottom:845.373333pt;}
.y61{bottom:860.733333pt;}
.yd{bottom:875.133333pt;}
.y60{bottom:876.093333pt;}
.yc{bottom:879.613333pt;}
.y5f{bottom:891.453333pt;}
.yb{bottom:894.973333pt;}
.y5e{bottom:906.813333pt;}
.ya{bottom:910.013333pt;}
.y5d{bottom:922.173333pt;}
.yd3{bottom:937.213333pt;}
.y5c{bottom:937.533333pt;}
.y9{bottom:942.653333pt;}
.y5b{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y5a{bottom:967.973333pt;}
.y57{bottom:970.240000pt;}
.y91{bottom:983.013333pt;}
.y59{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.ha{height:3.702500pt;}
.h15{height:5.022500pt;}
.h6{height:21.643125pt;}
.h16{height:24.640000pt;}
.h13{height:26.381250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h10{height:37.537500pt;}
.hf{height:40.090000pt;}
.he{height:47.713750pt;}
.h14{height:49.020000pt;}
.h7{height:51.600000pt;}
.h5{height:52.762500pt;}
.h11{height:53.471250pt;}
.h9{height:54.180000pt;}
.h1a{height:55.256809pt;}
.h17{height:56.405000pt;}
.h8{height:56.513750pt;}
.h18{height:58.238750pt;}
.h19{height:58.249417pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h12{height:167.400000pt;}
.hb{height:612.626667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.112000pt;}
.x17{left:7.348000pt;}
.x4{left:11.826667pt;}
.x15{left:15.348000pt;}
.x1b{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:25.908000pt;}
.xf{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x6{left:43.213333pt;}
.x10{left:45.140000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x19{left:55.373333pt;}
.x1{left:69.804000pt;}
.x13{left:74.582667pt;}
.x7{left:76.832000pt;}
.x12{left:80.022667pt;}
.x2{left:84.822667pt;}
.x1d{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x20{left:100.832000pt;}
.x11{left:110.742667pt;}
.x1f{left:124.864000pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.xb{left:270.173333pt;}
.xc{left:508.666667pt;}
.xa{left:594.173333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xd{left:717.413333pt;}
}




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