
    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_1f50016b29f0db739e79b9de.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_490813fe926d71988b0f1014.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_6198cc74da99b333a8d2e050.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_7d1a399f186c2c416d82c25d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_977ffef4a176429112f0e9c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_1041360ace56bc91d9665bfa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_e3b22b2b5d39a3574ca531bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.952000;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_9f83742743dc42469b1167ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_d9032b2cfc5df55d4d93db1e.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_3e895f7dac3af69526d045e4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.952000;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_37f41cee247cc319185c7d0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952000;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_2930c7c2e0925ee258fc2df7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.590000;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_5e4b4294d27bf16366b4d351.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.711000;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_f1f5300368be7148390ef53a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.930000;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:fff;src:url('chunks/assets/font_49c1981e5dd478ea2b0c8cf9.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.m1{transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295455,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.v1{vertical-align:66.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.734400px;}
.ls2{letter-spacing:0.955200px;}
.ls7{letter-spacing:1.022400px;}
.ls8{letter-spacing:1.075200px;}
.ls1{letter-spacing:1.145700px;}
.ls4{letter-spacing:2.385600px;}
.ls3{letter-spacing:2.524800px;}
.ls0{letter-spacing:13.107150px;}
.ls9{letter-spacing:36.000720px;}
.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;}
}
.ws50{word-spacing:-2.572800px;}
.ws6e{word-spacing:-1.123200px;}
.ws9{word-spacing:-0.159000px;}
.wsc{word-spacing:-0.057000px;}
.ws4b{word-spacing:-0.048000px;}
.ws5b{word-spacing:0.000000px;}
.ws3d{word-spacing:8.578500px;}
.ws63{word-spacing:8.678400px;}
.ws7{word-spacing:8.975400px;}
.ws3b{word-spacing:9.045900px;}
.ws8{word-spacing:9.109740px;}
.ws6{word-spacing:9.109800px;}
.ws5{word-spacing:9.114000px;}
.ws2{word-spacing:9.756000px;}
.ws53{word-spacing:9.768000px;}
.ws54{word-spacing:9.772800px;}
.ws5c{word-spacing:9.921600px;}
.ws35{word-spacing:10.168800px;}
.wse{word-spacing:10.254300px;}
.ws4c{word-spacing:10.281600px;}
.ws3f{word-spacing:10.408200px;}
.ws3e{word-spacing:10.419600px;}
.ws75{word-spacing:10.536000px;}
.ws73{word-spacing:10.790400px;}
.ws2f{word-spacing:10.869900px;}
.ws61{word-spacing:10.972320px;}
.ws49{word-spacing:10.972800px;}
.ws77{word-spacing:10.976160px;}
.ws76{word-spacing:10.977600px;}
.ws4a{word-spacing:10.982400px;}
.ws70{word-spacing:11.284680px;}
.ws71{word-spacing:11.284800px;}
.ws4{word-spacing:11.331600px;}
.wsa{word-spacing:11.571000px;}
.ws46{word-spacing:11.673900px;}
.ws4e{word-spacing:11.702400px;}
.ws3{word-spacing:11.707800px;}
.ws4d{word-spacing:11.712000px;}
.ws19{word-spacing:11.742000px;}
.ws43{word-spacing:11.760600px;}
.ws72{word-spacing:11.832000px;}
.ws41{word-spacing:11.886210px;}
.ws29{word-spacing:11.907300px;}
.ws10{word-spacing:11.924280px;}
.ws11{word-spacing:11.924400px;}
.ws45{word-spacing:12.030900px;}
.ws1d{word-spacing:12.232200px;}
.ws25{word-spacing:12.693900px;}
.ws33{word-spacing:12.745200px;}
.ws32{word-spacing:12.745320px;}
.ws67{word-spacing:13.008000px;}
.ws18{word-spacing:13.053000px;}
.ws42{word-spacing:13.060980px;}
.ws24{word-spacing:13.395000px;}
.ws65{word-spacing:13.535880px;}
.ws66{word-spacing:13.536000px;}
.ws44{word-spacing:13.550700px;}
.ws3c{word-spacing:13.634400px;}
.ws58{word-spacing:13.723200px;}
.ws57{word-spacing:13.723440px;}
.ws1f{word-spacing:13.919400px;}
.ws59{word-spacing:13.935600px;}
.ws31{word-spacing:14.022000px;}
.ws68{word-spacing:14.164800px;}
.ws69{word-spacing:14.169600px;}
.ws38{word-spacing:14.227200px;}
.ws36{word-spacing:14.312700px;}
.ws62{word-spacing:14.558400px;}
.ws74{word-spacing:14.664000px;}
.wsd{word-spacing:14.774400px;}
.ws2e{word-spacing:14.911200px;}
.ws6b{word-spacing:15.086400px;}
.ws27{word-spacing:15.384300px;}
.ws26{word-spacing:15.390000px;}
.ws1e{word-spacing:15.452700px;}
.ws6c{word-spacing:16.094400px;}
.ws30{word-spacing:16.102500px;}
.ws48{word-spacing:16.296000px;}
.ws14{word-spacing:16.324800px;}
.ws1{word-spacing:16.926900px;}
.wsb{word-spacing:17.208300px;}
.ws4f{word-spacing:17.563200px;}
.ws51{word-spacing:17.571840px;}
.ws6f{word-spacing:17.579520px;}
.ws64{word-spacing:17.591040px;}
.ws6d{word-spacing:17.592000px;}
.ws55{word-spacing:17.596800px;}
.ws56{word-spacing:17.599200px;}
.ws1b{word-spacing:17.670000px;}
.ws1c{word-spacing:17.892300px;}
.ws12{word-spacing:18.542100px;}
.ws5f{word-spacing:18.662400px;}
.ws5e{word-spacing:18.667200px;}
.ws5d{word-spacing:18.676800px;}
.ws60{word-spacing:18.681600px;}
.ws23{word-spacing:19.100700px;}
.ws39{word-spacing:19.374300px;}
.ws2c{word-spacing:19.613700px;}
.ws34{word-spacing:19.767600px;}
.ws3a{word-spacing:19.921500px;}
.ws13{word-spacing:20.126700px;}
.ws6a{word-spacing:20.169600px;}
.ws22{word-spacing:20.502900px;}
.ws15{word-spacing:20.571270px;}
.ws16{word-spacing:20.571300px;}
.ws17{word-spacing:20.577000px;}
.ws2b{word-spacing:21.078600px;}
.ws52{word-spacing:21.393600px;}
.wsf{word-spacing:21.762600px;}
.ws2a{word-spacing:21.796800px;}
.ws40{word-spacing:22.041900px;}
.ws1a{word-spacing:22.138800px;}
.ws20{word-spacing:22.446600px;}
.ws28{word-spacing:22.817100px;}
.ws21{word-spacing:22.988100px;}
.ws47{word-spacing:23.952000px;}
.ws2d{word-spacing:25.906500px;}
.ws37{word-spacing:31.139100px;}
.ws0{word-spacing:33.853800px;}
.ws5a{word-spacing:35.963340px;}
.ws78{word-spacing:1790.179020px;}
._6{margin-left:-2369.662020px;}
._3{margin-left:-1740.194400px;}
._7{margin-left:-1250.897340px;}
._2{width:5.755200px;}
._1{width:8.561400px;}
._0{width:21.004200px;}
._4{width:36.002400px;}
._5{width:1790.218920px;}
.fc2{color:rgb(169,156,155);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.000000px;}
.fs2{font-size:33.000000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fsb{font-size:66.000000px;}
.fsa{font-size:78.170400px;}
.fs0{font-size:102.000000px;}
.fs7{font-size:159.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:42.749550px;}
.y60{bottom:42.750000px;}
.y3d{bottom:90.749700px;}
.y5e{bottom:90.749820px;}
.y5d{bottom:104.403300px;}
.y3c{bottom:107.249775px;}
.y5c{bottom:118.056300px;}
.y3b{bottom:123.749850px;}
.y5b{bottom:131.709900px;}
.y3a{bottom:140.249925px;}
.y5a{bottom:145.363470px;}
.y39{bottom:156.748575px;}
.y59{bottom:159.016830px;}
.y58{bottom:172.669950px;}
.y38{bottom:173.248650px;}
.y57{bottom:186.323550px;}
.y37{bottom:189.748725px;}
.y56{bottom:199.977120px;}
.y36{bottom:206.248800px;}
.y55{bottom:213.630600px;}
.y35{bottom:222.748875px;}
.y54{bottom:227.284200px;}
.y34{bottom:239.248950px;}
.y53{bottom:245.437500px;}
.y33{bottom:255.749025px;}
.y32{bottom:272.249100px;}
.y52{bottom:282.342450px;}
.y31{bottom:288.749175px;}
.y51{bottom:297.512400px;}
.y30{bottom:305.249250px;}
.y50{bottom:312.682350px;}
.y2f{bottom:321.749325px;}
.y4f{bottom:327.852300px;}
.y2e{bottom:338.249400px;}
.y4e{bottom:347.522700px;}
.y2d{bottom:354.749475px;}
.y2c{bottom:371.249550px;}
.y4d{bottom:385.193280px;}
.y2b{bottom:387.749625px;}
.y4c{bottom:401.854950px;}
.y2a{bottom:404.249700px;}
.y4b{bottom:418.526025px;}
.y29{bottom:420.749775px;}
.y4a{bottom:435.197100px;}
.y28{bottom:437.249850px;}
.y49{bottom:451.868175px;}
.y27{bottom:453.749918px;}
.y48{bottom:468.539250px;}
.y26{bottom:470.249850px;}
.y47{bottom:485.210325px;}
.y25{bottom:486.749910px;}
.y46{bottom:501.881400px;}
.y24{bottom:503.249700px;}
.y45{bottom:518.552475px;}
.y23{bottom:519.749775px;}
.y44{bottom:535.223550px;}
.y22{bottom:536.249850px;}
.y43{bottom:551.894625px;}
.y21{bottom:552.749910px;}
.y42{bottom:568.565700px;}
.y20{bottom:569.249700px;}
.y41{bottom:585.236775px;}
.y1f{bottom:585.749775px;}
.y40{bottom:601.907850px;}
.y1e{bottom:602.249850px;}
.y3f{bottom:618.578963px;}
.y1d{bottom:618.749925px;}
.y1c{bottom:618.750000px;}
.y3e{bottom:635.249325px;}
.y61{bottom:637.674105px;}
.y1b{bottom:695.250420px;}
.y1a{bottom:711.750750px;}
.y19{bottom:728.250450px;}
.y18{bottom:741.750300px;}
.y17{bottom:758.250000px;}
.y16{bottom:800.250750px;}
.y15{bottom:817.500375px;}
.y14{bottom:834.750000px;}
.y12{bottom:867.000375px;}
.y13{bottom:870.213150px;}
.y11{bottom:882.000000px;}
.yf{bottom:882.000525px;}
.y10{bottom:885.213150px;}
.ye{bottom:897.000150px;}
.yc{bottom:897.000375px;}
.yd{bottom:900.213150px;}
.yb{bottom:912.000000px;}
.y9{bottom:912.000525px;}
.ya{bottom:915.213150px;}
.y7{bottom:927.000150px;}
.y6c{bottom:930.000000px;}
.y76{bottom:930.000150px;}
.y8{bottom:930.213150px;}
.y6b{bottom:943.500000px;}
.y75{bottom:943.500150px;}
.y5{bottom:946.500150px;}
.y6{bottom:950.250150px;}
.y6a{bottom:957.000000px;}
.y74{bottom:957.000150px;}
.y3{bottom:962.250150px;}
.y4{bottom:966.000150px;}
.y69{bottom:970.500030px;}
.y73{bottom:970.500150px;}
.y68{bottom:984.000150px;}
.y72{bottom:997.500120px;}
.y67{bottom:997.500150px;}
.y2{bottom:1004.998800px;}
.y71{bottom:1011.000120px;}
.y66{bottom:1011.000150px;}
.y70{bottom:1024.500000px;}
.y65{bottom:1024.500150px;}
.y1{bottom:1033.500150px;}
.y6f{bottom:1038.000000px;}
.y64{bottom:1038.000150px;}
.y6e{bottom:1051.500000px;}
.y63{bottom:1051.500150px;}
.y6d{bottom:1065.000000px;}
.y62{bottom:1065.000150px;}
.y5f{bottom:1108.546800px;}
.y77{bottom:1115.250000px;}
.h5{height:19.467000px;}
.h3{height:24.024000px;}
.h17{height:29.820000px;}
.h19{height:29.821680px;}
.h7{height:30.282000px;}
.h8{height:30.282120px;}
.h4{height:32.445000px;}
.h11{height:34.080000px;}
.h13{height:34.080120px;}
.h12{height:34.080480px;}
.h14{height:34.081920px;}
.h15{height:34.082400px;}
.h10{height:36.210000px;}
.h2{height:36.261000px;}
.hf{height:37.800000px;}
.h6{height:40.470000px;}
.hb{height:40.470060px;}
.hc{height:40.470570px;}
.ha{height:40.471140px;}
.he{height:40.472850px;}
.hd{height:40.475700px;}
.h16{height:55.500984px;}
.h18{height:68.835938px;}
.h1{height:72.420000px;}
.h9{height:111.300000px;}
.h0{height:1174.500000px;}
.w0{width:877.500000px;}
.x0{left:0.000000px;}
.x1{left:60.750000px;}
.x1e{left:74.250000px;}
.x26{left:75.383550px;}
.x20{left:78.750548px;}
.x1f{left:86.506575px;}
.x14{left:133.197750px;}
.x15{left:137.751450px;}
.x2{left:164.313900px;}
.x1d{left:183.471750px;}
.xb{left:188.039700px;}
.x3{left:190.779300px;}
.xc{left:214.505100px;}
.xd{left:284.958300px;}
.xe{left:292.449450px;}
.x18{left:307.235400px;}
.x19{left:311.723100px;}
.x4{left:331.508550px;}
.x5{left:341.710350px;}
.x24{left:381.750000px;}
.xf{left:423.654600px;}
.x21{left:447.747375px;}
.x10{left:458.788200px;}
.x22{left:462.382800px;}
.x6{left:466.566150px;}
.x7{left:476.767950px;}
.x12{left:500.490300px;}
.x13{left:504.235500px;}
.x1c{left:554.861700px;}
.x11{left:557.379750px;}
.x16{left:601.229400px;}
.x17{left:604.908600px;}
.x8{left:641.847600px;}
.x9{left:651.513150px;}
.x23{left:731.250000px;}
.x1a{left:784.232550px;}
.x1b{left:788.233500px;}
.xa{left:810.040800px;}
.x25{left:849.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:58.666667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.652800pt;}
.ls2{letter-spacing:0.849067pt;}
.ls7{letter-spacing:0.908800pt;}
.ls8{letter-spacing:0.955733pt;}
.ls1{letter-spacing:1.018400pt;}
.ls4{letter-spacing:2.120533pt;}
.ls3{letter-spacing:2.244267pt;}
.ls0{letter-spacing:11.650800pt;}
.ls9{letter-spacing:32.000640pt;}
.ws50{word-spacing:-2.286933pt;}
.ws6e{word-spacing:-0.998400pt;}
.ws9{word-spacing:-0.141333pt;}
.wsc{word-spacing:-0.050667pt;}
.ws4b{word-spacing:-0.042667pt;}
.ws5b{word-spacing:0.000000pt;}
.ws3d{word-spacing:7.625333pt;}
.ws63{word-spacing:7.714133pt;}
.ws7{word-spacing:7.978133pt;}
.ws3b{word-spacing:8.040800pt;}
.ws8{word-spacing:8.097547pt;}
.ws6{word-spacing:8.097600pt;}
.ws5{word-spacing:8.101333pt;}
.ws2{word-spacing:8.672000pt;}
.ws53{word-spacing:8.682667pt;}
.ws54{word-spacing:8.686933pt;}
.ws5c{word-spacing:8.819200pt;}
.ws35{word-spacing:9.038933pt;}
.wse{word-spacing:9.114933pt;}
.ws4c{word-spacing:9.139200pt;}
.ws3f{word-spacing:9.251733pt;}
.ws3e{word-spacing:9.261867pt;}
.ws75{word-spacing:9.365333pt;}
.ws73{word-spacing:9.591467pt;}
.ws2f{word-spacing:9.662133pt;}
.ws61{word-spacing:9.753173pt;}
.ws49{word-spacing:9.753600pt;}
.ws77{word-spacing:9.756587pt;}
.ws76{word-spacing:9.757867pt;}
.ws4a{word-spacing:9.762133pt;}
.ws70{word-spacing:10.030827pt;}
.ws71{word-spacing:10.030933pt;}
.ws4{word-spacing:10.072533pt;}
.wsa{word-spacing:10.285333pt;}
.ws46{word-spacing:10.376800pt;}
.ws4e{word-spacing:10.402133pt;}
.ws3{word-spacing:10.406933pt;}
.ws4d{word-spacing:10.410667pt;}
.ws19{word-spacing:10.437333pt;}
.ws43{word-spacing:10.453867pt;}
.ws72{word-spacing:10.517333pt;}
.ws41{word-spacing:10.565520pt;}
.ws29{word-spacing:10.584267pt;}
.ws10{word-spacing:10.599360pt;}
.ws11{word-spacing:10.599467pt;}
.ws45{word-spacing:10.694133pt;}
.ws1d{word-spacing:10.873067pt;}
.ws25{word-spacing:11.283467pt;}
.ws33{word-spacing:11.329067pt;}
.ws32{word-spacing:11.329173pt;}
.ws67{word-spacing:11.562667pt;}
.ws18{word-spacing:11.602667pt;}
.ws42{word-spacing:11.609760pt;}
.ws24{word-spacing:11.906667pt;}
.ws65{word-spacing:12.031893pt;}
.ws66{word-spacing:12.032000pt;}
.ws44{word-spacing:12.045067pt;}
.ws3c{word-spacing:12.119467pt;}
.ws58{word-spacing:12.198400pt;}
.ws57{word-spacing:12.198613pt;}
.ws1f{word-spacing:12.372800pt;}
.ws59{word-spacing:12.387200pt;}
.ws31{word-spacing:12.464000pt;}
.ws68{word-spacing:12.590933pt;}
.ws69{word-spacing:12.595200pt;}
.ws38{word-spacing:12.646400pt;}
.ws36{word-spacing:12.722400pt;}
.ws62{word-spacing:12.940800pt;}
.ws74{word-spacing:13.034667pt;}
.wsd{word-spacing:13.132800pt;}
.ws2e{word-spacing:13.254400pt;}
.ws6b{word-spacing:13.410133pt;}
.ws27{word-spacing:13.674933pt;}
.ws26{word-spacing:13.680000pt;}
.ws1e{word-spacing:13.735733pt;}
.ws6c{word-spacing:14.306133pt;}
.ws30{word-spacing:14.313333pt;}
.ws48{word-spacing:14.485333pt;}
.ws14{word-spacing:14.510933pt;}
.ws1{word-spacing:15.046133pt;}
.wsb{word-spacing:15.296267pt;}
.ws4f{word-spacing:15.611733pt;}
.ws51{word-spacing:15.619413pt;}
.ws6f{word-spacing:15.626240pt;}
.ws64{word-spacing:15.636480pt;}
.ws6d{word-spacing:15.637333pt;}
.ws55{word-spacing:15.641600pt;}
.ws56{word-spacing:15.643733pt;}
.ws1b{word-spacing:15.706667pt;}
.ws1c{word-spacing:15.904267pt;}
.ws12{word-spacing:16.481867pt;}
.ws5f{word-spacing:16.588800pt;}
.ws5e{word-spacing:16.593067pt;}
.ws5d{word-spacing:16.601600pt;}
.ws60{word-spacing:16.605867pt;}
.ws23{word-spacing:16.978400pt;}
.ws39{word-spacing:17.221600pt;}
.ws2c{word-spacing:17.434400pt;}
.ws34{word-spacing:17.571200pt;}
.ws3a{word-spacing:17.708000pt;}
.ws13{word-spacing:17.890400pt;}
.ws6a{word-spacing:17.928533pt;}
.ws22{word-spacing:18.224800pt;}
.ws15{word-spacing:18.285573pt;}
.ws16{word-spacing:18.285600pt;}
.ws17{word-spacing:18.290667pt;}
.ws2b{word-spacing:18.736533pt;}
.ws52{word-spacing:19.016533pt;}
.wsf{word-spacing:19.344533pt;}
.ws2a{word-spacing:19.374933pt;}
.ws40{word-spacing:19.592800pt;}
.ws1a{word-spacing:19.678933pt;}
.ws20{word-spacing:19.952533pt;}
.ws28{word-spacing:20.281867pt;}
.ws21{word-spacing:20.433867pt;}
.ws47{word-spacing:21.290667pt;}
.ws2d{word-spacing:23.028000pt;}
.ws37{word-spacing:27.679200pt;}
.ws0{word-spacing:30.092267pt;}
.ws5a{word-spacing:31.967413pt;}
.ws78{word-spacing:1591.270240pt;}
._6{margin-left:-2106.366240pt;}
._3{margin-left:-1546.839467pt;}
._7{margin-left:-1111.908747pt;}
._2{width:5.115733pt;}
._1{width:7.610133pt;}
._0{width:18.670400pt;}
._4{width:32.002133pt;}
._5{width:1591.305707pt;}
.fs4{font-size:24.000000pt;}
.fs2{font-size:29.333333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fsb{font-size:58.666667pt;}
.fsa{font-size:69.484800pt;}
.fs0{font-size:90.666667pt;}
.fs7{font-size:141.333333pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:37.999600pt;}
.y60{bottom:38.000000pt;}
.y3d{bottom:80.666400pt;}
.y5e{bottom:80.666507pt;}
.y5d{bottom:92.802933pt;}
.y3c{bottom:95.333133pt;}
.y5c{bottom:104.938933pt;}
.y3b{bottom:109.999867pt;}
.y5b{bottom:117.075467pt;}
.y3a{bottom:124.666600pt;}
.y5a{bottom:129.211973pt;}
.y39{bottom:139.332067pt;}
.y59{bottom:141.348293pt;}
.y58{bottom:153.484400pt;}
.y38{bottom:153.998800pt;}
.y57{bottom:165.620933pt;}
.y37{bottom:168.665533pt;}
.y56{bottom:177.757440pt;}
.y36{bottom:183.332267pt;}
.y55{bottom:189.893867pt;}
.y35{bottom:197.999000pt;}
.y54{bottom:202.030400pt;}
.y34{bottom:212.665733pt;}
.y53{bottom:218.166667pt;}
.y33{bottom:227.332467pt;}
.y32{bottom:241.999200pt;}
.y52{bottom:250.971067pt;}
.y31{bottom:256.665933pt;}
.y51{bottom:264.455467pt;}
.y30{bottom:271.332667pt;}
.y50{bottom:277.939867pt;}
.y2f{bottom:285.999400pt;}
.y4f{bottom:291.424267pt;}
.y2e{bottom:300.666133pt;}
.y4e{bottom:308.909067pt;}
.y2d{bottom:315.332867pt;}
.y2c{bottom:329.999600pt;}
.y4d{bottom:342.394027pt;}
.y2b{bottom:344.666333pt;}
.y4c{bottom:357.204400pt;}
.y2a{bottom:359.333067pt;}
.y4b{bottom:372.023133pt;}
.y29{bottom:373.999800pt;}
.y4a{bottom:386.841867pt;}
.y28{bottom:388.666533pt;}
.y49{bottom:401.660600pt;}
.y27{bottom:403.333260pt;}
.y48{bottom:416.479333pt;}
.y26{bottom:417.999867pt;}
.y47{bottom:431.298067pt;}
.y25{bottom:432.666587pt;}
.y46{bottom:446.116800pt;}
.y24{bottom:447.333067pt;}
.y45{bottom:460.935533pt;}
.y23{bottom:461.999800pt;}
.y44{bottom:475.754267pt;}
.y22{bottom:476.666533pt;}
.y43{bottom:490.573000pt;}
.y21{bottom:491.333253pt;}
.y42{bottom:505.391733pt;}
.y20{bottom:505.999733pt;}
.y41{bottom:520.210467pt;}
.y1f{bottom:520.666467pt;}
.y40{bottom:535.029200pt;}
.y1e{bottom:535.333200pt;}
.y3f{bottom:549.847967pt;}
.y1d{bottom:549.999933pt;}
.y1c{bottom:550.000000pt;}
.y3e{bottom:564.666067pt;}
.y61{bottom:566.821427pt;}
.y1b{bottom:618.000373pt;}
.y1a{bottom:632.667333pt;}
.y19{bottom:647.333733pt;}
.y18{bottom:659.333600pt;}
.y17{bottom:674.000000pt;}
.y16{bottom:711.334000pt;}
.y15{bottom:726.667000pt;}
.y14{bottom:742.000000pt;}
.y12{bottom:770.667000pt;}
.y13{bottom:773.522800pt;}
.y11{bottom:784.000000pt;}
.yf{bottom:784.000467pt;}
.y10{bottom:786.856133pt;}
.ye{bottom:797.333467pt;}
.yc{bottom:797.333667pt;}
.yd{bottom:800.189467pt;}
.yb{bottom:810.666667pt;}
.y9{bottom:810.667133pt;}
.ya{bottom:813.522800pt;}
.y7{bottom:824.000133pt;}
.y6c{bottom:826.666667pt;}
.y76{bottom:826.666800pt;}
.y8{bottom:826.856133pt;}
.y6b{bottom:838.666667pt;}
.y75{bottom:838.666800pt;}
.y5{bottom:841.333467pt;}
.y6{bottom:844.666800pt;}
.y6a{bottom:850.666667pt;}
.y74{bottom:850.666800pt;}
.y3{bottom:855.333467pt;}
.y4{bottom:858.666800pt;}
.y69{bottom:862.666693pt;}
.y73{bottom:862.666800pt;}
.y68{bottom:874.666800pt;}
.y72{bottom:886.666773pt;}
.y67{bottom:886.666800pt;}
.y2{bottom:893.332267pt;}
.y71{bottom:898.666773pt;}
.y66{bottom:898.666800pt;}
.y70{bottom:910.666667pt;}
.y65{bottom:910.666800pt;}
.y1{bottom:918.666800pt;}
.y6f{bottom:922.666667pt;}
.y64{bottom:922.666800pt;}
.y6e{bottom:934.666667pt;}
.y63{bottom:934.666800pt;}
.y6d{bottom:946.666667pt;}
.y62{bottom:946.666800pt;}
.y5f{bottom:985.374933pt;}
.y77{bottom:991.333333pt;}
.h5{height:17.304000pt;}
.h3{height:21.354667pt;}
.h17{height:26.506667pt;}
.h19{height:26.508160pt;}
.h7{height:26.917333pt;}
.h8{height:26.917440pt;}
.h4{height:28.840000pt;}
.h11{height:30.293333pt;}
.h13{height:30.293440pt;}
.h12{height:30.293760pt;}
.h14{height:30.295040pt;}
.h15{height:30.295467pt;}
.h10{height:32.186667pt;}
.h2{height:32.232000pt;}
.hf{height:33.600000pt;}
.h6{height:35.973333pt;}
.hb{height:35.973387pt;}
.hc{height:35.973840pt;}
.ha{height:35.974347pt;}
.he{height:35.975867pt;}
.hd{height:35.978400pt;}
.h16{height:49.334208pt;}
.h18{height:61.187500pt;}
.h1{height:64.373333pt;}
.h9{height:98.933333pt;}
.h0{height:1044.000000pt;}
.w0{width:780.000000pt;}
.x0{left:0.000000pt;}
.x1{left:54.000000pt;}
.x1e{left:66.000000pt;}
.x26{left:67.007600pt;}
.x20{left:70.000487pt;}
.x1f{left:76.894733pt;}
.x14{left:118.398000pt;}
.x15{left:122.445733pt;}
.x2{left:146.056800pt;}
.x1d{left:163.086000pt;}
.xb{left:167.146400pt;}
.x3{left:169.581600pt;}
.xc{left:190.671200pt;}
.xd{left:253.296267pt;}
.xe{left:259.955067pt;}
.x18{left:273.098133pt;}
.x19{left:277.087200pt;}
.x4{left:294.674267pt;}
.x5{left:303.742533pt;}
.x24{left:339.333333pt;}
.xf{left:376.581867pt;}
.x21{left:397.997667pt;}
.x10{left:407.811733pt;}
.x22{left:411.006933pt;}
.x6{left:414.725467pt;}
.x7{left:423.793733pt;}
.x12{left:444.880267pt;}
.x13{left:448.209333pt;}
.x1c{left:493.210400pt;}
.x11{left:495.448667pt;}
.x16{left:534.426133pt;}
.x17{left:537.696533pt;}
.x8{left:570.531200pt;}
.x9{left:579.122800pt;}
.x23{left:650.000000pt;}
.x1a{left:697.095600pt;}
.x1b{left:700.652000pt;}
.xa{left:720.036267pt;}
.x25{left:754.666667pt;}
}




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