
    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_04249b6b3a018080672a4274.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_21f70d5e9cfd14f3f2e6c647.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_5fd978dd76bef9c3c578975e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_7fbecd0fe32ab91e000eff0e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914000;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_eb2a093e8b3cbf3672107301.woff')format("woff");}.ff5{font-family:ff5;line-height:0.579000;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_aba3b3261ea0228b7a0e8a69.woff')format("woff");}.ff6{font-family:ff6;line-height:0.936523;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_67acd598810b2a07c2913bba.woff')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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_00d2986775a16f1e3e9daf5e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_f5b873d103b041620ce6a52d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_70bdaac0f0b69ec0cb1e73a1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ba8537c68284df6a984c7b77.woff')format("woff");}.ffb{font-family:ffb;line-height:0.879395;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_09cf471b93231ffe0ffdca12.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923000;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_0b8eb0e2858dcfde886253c0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.697000;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_bef41238d9bc541c3b2f30cc.woff')format("woff");}.ffe{font-family:ffe;line-height:0.915000;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_b1fbdd77c77c2a75c2421590.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;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:ff10;src:url('chunks/assets/font_9f570df151713ef9fc7cca79.woff')format("woff");}.ff10{font-family:ff10;line-height:0.916000;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);}
.v1{vertical-align:-14.659103px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.580229px;}
.ls4{letter-spacing:8.681903px;}
.ls10{letter-spacing:19.044634px;}
.lse{letter-spacing:21.796382px;}
.lsa{letter-spacing:21.861836px;}
.lsf{letter-spacing:29.650934px;}
.ls2{letter-spacing:30.501844px;}
.ls5{letter-spacing:30.567298px;}
.lsc{letter-spacing:31.382190px;}
.ls1{letter-spacing:32.727300px;}
.ls6{letter-spacing:32.757029px;}
.ls8{letter-spacing:34.363665px;}
.lsb{letter-spacing:71.730720px;}
.ls7{letter-spacing:71.738242px;}
.lsd{letter-spacing:134.495100px;}
.ls9{letter-spacing:140.465572px;}
.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;}
}
.wsa{word-spacing:-32.727300px;}
.ws27{word-spacing:-29.887800px;}
.ws3a{word-spacing:-25.407085px;}
.ws1e{word-spacing:-18.003515px;}
.wsf{word-spacing:-13.664839px;}
.ws1d{word-spacing:-13.639913px;}
.ws3{word-spacing:-10.930918px;}
.wsb{word-spacing:-10.865464px;}
.ws16{word-spacing:-10.655618px;}
.ws14{word-spacing:-10.075389px;}
.ws1a{word-spacing:-10.050462px;}
.ws2{word-spacing:-9.982525px;}
.ws4{word-spacing:-8.478592px;}
.ws5{word-spacing:-6.358971px;}
.ws7{word-spacing:-4.239349px;}
.ws2b{word-spacing:-3.287658px;}
.ws1b{word-spacing:-1.767801px;}
.ws1{word-spacing:-0.123975px;}
.ws25{word-spacing:-0.065455px;}
.ws13{word-spacing:-0.036264px;}
.ws1c{word-spacing:-0.036175px;}
.ws33{word-spacing:-0.035866px;}
.wsc{word-spacing:0.000000px;}
.ws11{word-spacing:4.450534px;}
.ws12{word-spacing:4.678276px;}
.ws17{word-spacing:8.413321px;}
.ws15{word-spacing:8.449586px;}
.ws19{word-spacing:8.501030px;}
.ws10{word-spacing:12.107977px;}
.ws35{word-spacing:18.793574px;}
.ws32{word-spacing:19.008768px;}
.ws34{word-spacing:19.044634px;}
.ws21{word-spacing:19.845499px;}
.ws26{word-spacing:19.905275px;}
.ws22{word-spacing:21.730927px;}
.ws29{word-spacing:21.796382px;}
.ws2a{word-spacing:23.890929px;}
.ws20{word-spacing:31.322414px;}
.ws24{word-spacing:34.298210px;}
.ws8{word-spacing:38.804175px;}
.ws9{word-spacing:40.291875px;}
.ws0{word-spacing:45.374850px;}
.ws2d{word-spacing:62.704604px;}
.ws18{word-spacing:78.504951px;}
.wse{word-spacing:1296.385703px;}
.ws31{word-spacing:1608.735054px;}
.ws2f{word-spacing:1614.364150px;}
.ws28{word-spacing:1620.516882px;}
.ws2e{word-spacing:1667.447830px;}
.ws38{word-spacing:1776.691558px;}
.ws6{word-spacing:1777.018831px;}
.ws2c{word-spacing:1823.557051px;}
.ws23{word-spacing:1905.244392px;}
.ws39{word-spacing:1951.324431px;}
.ws30{word-spacing:1954.597161px;}
.wsd{word-spacing:2029.084495px;}
.ws37{word-spacing:2090.284546px;}
.ws1f{word-spacing:2118.364570px;}
.ws36{word-spacing:2126.133640px;}
._a{margin-left:-5.432732px;}
._1{margin-left:-3.843225px;}
._8{margin-left:-2.727450px;}
._4{margin-left:-1.673717px;}
._3{width:1.673717px;}
._2{width:3.719250px;}
._d{width:5.482942px;}
._12{width:6.552725px;}
._11{width:8.414764px;}
._13{width:10.273585px;}
._e{width:11.683458px;}
._c{width:14.652373px;}
._6{width:16.928563px;}
._14{width:19.905275px;}
._b{width:22.822012px;}
._7{width:25.775400px;}
._17{width:29.220854px;}
._15{width:31.382190px;}
._9{width:40.167900px;}
._0{width:60.623775px;}
._16{width:94.146570px;}
._10{width:100.669741px;}
._5{width:299.908147px;}
._f{width:676.874268px;}
.fcf{color:rgb(219,163,163);}
.fcd{color:rgb(191,191,209);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(229,48,17);}
.fc9{color:rgb(204,204,204);}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc6{color:rgb(128,158,128);}
.fc2{color:rgb(166,166,166);}
.fc7{color:rgb(255,207,176);}
.fc8{color:rgb(240,222,176);}
.fca{color:rgb(222,222,191);}
.fcb{color:rgb(219,219,204);}
.fce{color:rgb(204,148,148);}
.fcc{color:rgb(240,240,143);}
.fs5{font-size:23.910600px;}
.fs4{font-size:35.865600px;}
.fsc{font-size:36.174597px;}
.fsb{font-size:36.264316px;}
.fs6{font-size:43.926296px;}
.fs3{font-size:47.820600px;}
.fsd{font-size:49.094099px;}
.fs7{font-size:49.183815px;}
.fs9{font-size:56.935516px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:64.799998px;}
.fs2{font-size:65.454600px;}
.fs8{font-size:85.769999px;}
.fs0{font-size:123.975000px;}
.y18{bottom:-50.242486px;}
.y21{bottom:-29.037625px;}
.y20{bottom:-17.999105px;}
.y1f{bottom:-7.608590px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.732500px;}
.y17{bottom:15.489000px;}
.y1e{bottom:18.736186px;}
.y5{bottom:22.183500px;}
.y79{bottom:31.744500px;}
.y42{bottom:40.980000px;}
.y4d{bottom:44.550000px;}
.y5b{bottom:47.758500px;}
.y98{bottom:47.905500px;}
.y27{bottom:53.279100px;}
.y97{bottom:58.366500px;}
.y4c{bottom:62.482500px;}
.y5a{bottom:65.691000px;}
.y78{bottom:67.609500px;}
.y96{bottom:68.827500px;}
.y41{bottom:69.075000px;}
.y95{bottom:79.288500px;}
.y4b{bottom:80.415000px;}
.y67{bottom:82.089000px;}
.y59{bottom:83.623500px;}
.y77{bottom:85.542000px;}
.y94{bottom:89.749500px;}
.y40{bottom:99.559500px;}
.y66{bottom:100.021500px;}
.y93{bottom:100.210500px;}
.y9f{bottom:101.524500px;}
.y58{bottom:101.556000px;}
.y76{bottom:103.476000px;}
.y26{bottom:103.733082px;}
.y23{bottom:104.228100px;}
.y4a{bottom:108.510000px;}
.y92{bottom:110.671500px;}
.y65{bottom:117.955500px;}
.y7e{bottom:120.175500px;}
.y91{bottom:121.131000px;}
.y75{bottom:121.408500px;}
.y2e{bottom:122.863500px;}
.y11{bottom:123.606000px;}
.y57{bottom:125.236500px;}
.y3f{bottom:130.699500px;}
.y90{bottom:131.592000px;}
.y9e{bottom:132.010500px;}
.y25{bottom:134.396091px;}
.y64{bottom:135.888000px;}
.ya3{bottom:138.103500px;}
.y49{bottom:138.996000px;}
.y74{bottom:139.341000px;}
.y6b{bottom:139.537500px;}
.y8f{bottom:142.053000px;}
.y2d{bottom:143.187000px;}
.ya7{bottom:144.564000px;}
.y24{bottom:145.322100px;}
.y36{bottom:148.774500px;}
.y56{bottom:148.897500px;}
.ye{bottom:149.808000px;}
.y9d{bottom:149.943000px;}
.y7d{bottom:150.661500px;}
.y3e{bottom:151.023000px;}
.y8e{bottom:152.514000px;}
.y63{bottom:153.820500px;}
.y48{bottom:156.928500px;}
.y73{bottom:157.273500px;}
.y19{bottom:159.956074px;}
.y2c{bottom:161.119500px;}
.yaa{bottom:162.855000px;}
.y8d{bottom:162.975000px;}
.y55{bottom:166.831500px;}
.ya2{bottom:168.589500px;}
.y35{bottom:169.098000px;}
.y6a{bottom:170.023500px;}
.yd{bottom:170.131500px;}
.y10{bottom:170.586000px;}
.y3d{bottom:171.346500px;}
.y8c{bottom:173.436000px;}
.y47{bottom:174.861000px;}
.ya6{bottom:175.050000px;}
.y62{bottom:177.648000px;}
.y9c{bottom:178.038000px;}
.y2b{bottom:179.052000px;}
.y7c{bottom:181.146000px;}
.y8b{bottom:183.897000px;}
.y54{bottom:184.764000px;}
.y34{bottom:189.421500px;}
.yc{bottom:190.455000px;}
.yf{bottom:190.909500px;}
.y3c{bottom:191.671500px;}
.y72{bottom:193.140000px;}
.ya9{bottom:193.341000px;}
.y8a{bottom:194.356500px;}
.ya5{bottom:195.373500px;}
.y22{bottom:197.315082px;}
.y69{bottom:198.118500px;}
.ya1{bottom:199.074000px;}
.y2a{bottom:199.375500px;}
.y53{bottom:202.696500px;}
.y46{bottom:202.956000px;}
.y61{bottom:203.385000px;}
.y89{bottom:204.817500px;}
.y9b{bottom:208.524000px;}
.y33{bottom:209.745000px;}
.yb{bottom:210.778500px;}
.y71{bottom:211.072500px;}
.y7b{bottom:211.632000px;}
.y3b{bottom:211.995000px;}
.ya8{bottom:213.664500px;}
.y88{bottom:215.278500px;}
.y29{bottom:219.699000px;}
.y52{bottom:220.629000px;}
.y60{bottom:221.317500px;}
.y87{bottom:225.739500px;}
.ya4{bottom:225.859500px;}
.y9a{bottom:226.456500px;}
.y68{bottom:228.604500px;}
.y70{bottom:229.005000px;}
.ya0{bottom:229.560000px;}
.y32{bottom:230.070000px;}
.y16{bottom:231.315000px;}
.y3a{bottom:232.318500px;}
.y45{bottom:233.442000px;}
.y86{bottom:236.200500px;}
.ya{bottom:236.980500px;}
.y51{bottom:238.561500px;}
.y5f{bottom:239.250000px;}
.y28{bottom:240.024000px;}
.y7a{bottom:242.118000px;}
.y85{bottom:246.661500px;}
.y1c{bottom:246.923074px;}
.y6f{bottom:246.937500px;}
.y31{bottom:250.393500px;}
.y15{bottom:251.638500px;}
.y39{bottom:252.642000px;}
.y99{bottom:254.551500px;}
.y4{bottom:254.643000px;}
.y50{bottom:256.495500px;}
.y84{bottom:257.122500px;}
.y5e{bottom:257.182500px;}
.y44{bottom:261.535500px;}
.y6e{bottom:264.870000px;}
.y9{bottom:267.466500px;}
.y83{bottom:267.582000px;}
.y30{bottom:270.717000px;}
.y14{bottom:271.962000px;}
.y38{bottom:272.965500px;}
.y4f{bottom:274.428000px;}
.y5d{bottom:275.115000px;}
.y82{bottom:278.043000px;}
.y6d{bottom:282.802500px;}
.y81{bottom:288.504000px;}
.y3{bottom:289.512000px;}
.y43{bottom:292.021500px;}
.y13{bottom:292.287000px;}
.y1d{bottom:296.792095px;}
.y2f{bottom:297.921000px;}
.y4e{bottom:298.255500px;}
.y37{bottom:298.609500px;}
.y5c{bottom:298.942500px;}
.y80{bottom:298.965000px;}
.y6c{bottom:300.736500px;}
.y7f{bottom:309.426000px;}
.y12{bottom:312.610500px;}
.y2{bottom:317.109000px;}
.y1b{bottom:336.635082px;}
.y8{bottom:341.431500px;}
.y1{bottom:346.153500px;}
.y7{bottom:355.777500px;}
.y1a{bottom:356.102082px;}
.h7{height:17.932950px;}
.h13{height:24.245146px;}
.h18{height:24.818995px;}
.h17{height:24.890726px;}
.he{height:26.336095px;}
.hd{height:26.401414px;}
.h6{height:26.899200px;}
.h9{height:31.829406px;}
.h11{height:35.574044px;}
.ha{height:35.639054px;}
.h5{height:35.865450px;}
.hc{height:41.256009px;}
.h16{height:41.364715px;}
.h15{height:41.484266px;}
.h10{height:43.189452px;}
.h3{height:44.831700px;}
.h14{height:45.294583px;}
.h12{height:45.425492px;}
.hf{height:46.954686px;}
.h4{height:49.090950px;}
.hb{height:62.149745px;}
.h2{height:92.981250px;}
.h8{height:312.518700px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w2{width:647.587500px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x1f{left:-7.743000px;}
.x0{left:0.000000px;}
.x1b{left:6.606000px;}
.xf{left:9.005399px;}
.x1e{left:15.670500px;}
.x12{left:17.675099px;}
.xc{left:24.289199px;}
.xe{left:25.451099px;}
.x1a{left:30.018000px;}
.x7{left:32.727000px;}
.x24{left:42.253500px;}
.x1{left:44.194500px;}
.x13{left:47.258998px;}
.x22{left:48.418500px;}
.x9{left:49.735500px;}
.x25{left:51.781500px;}
.x26{left:61.308000px;}
.x23{left:64.110000px;}
.x28{left:65.454000px;}
.x14{left:70.654498px;}
.x27{left:75.598500px;}
.x19{left:78.376500px;}
.x3{left:108.186000px;}
.x6{left:121.527000px;}
.x5{left:193.509000px;}
.x10{left:226.467016px;}
.xb{left:250.749000px;}
.x2{left:276.018000px;}
.x4{left:282.615000px;}
.x11{left:295.550991px;}
.x17{left:298.016982px;}
.x1d{left:331.755000px;}
.x1c{left:355.167000px;}
.xa{left:381.811500px;}
.x20{left:387.960000px;}
.x16{left:400.175991px;}
.x21{left:403.651500px;}
.x8{left:469.662000px;}
.x18{left:492.543018px;}
.xd{left:500.345965px;}
.x15{left:605.727018px;}
@media print{
.v1{vertical-align:-13.030313pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.515759pt;}
.ls4{letter-spacing:7.717247pt;}
.ls10{letter-spacing:16.928563pt;}
.lse{letter-spacing:19.374562pt;}
.lsa{letter-spacing:19.432743pt;}
.lsf{letter-spacing:26.356386pt;}
.ls2{letter-spacing:27.112750pt;}
.ls5{letter-spacing:27.170932pt;}
.lsc{letter-spacing:27.895280pt;}
.ls1{letter-spacing:29.090933pt;}
.ls6{letter-spacing:29.117359pt;}
.ls8{letter-spacing:30.545480pt;}
.lsb{letter-spacing:63.760640pt;}
.ls7{letter-spacing:63.767326pt;}
.lsd{letter-spacing:119.551200pt;}
.ls9{letter-spacing:124.858286pt;}
.wsa{word-spacing:-29.090933pt;}
.ws27{word-spacing:-26.566933pt;}
.ws3a{word-spacing:-22.584075pt;}
.ws1e{word-spacing:-16.003125pt;}
.wsf{word-spacing:-12.146524pt;}
.ws1d{word-spacing:-12.124367pt;}
.ws3{word-spacing:-9.716372pt;}
.wsb{word-spacing:-9.658190pt;}
.ws16{word-spacing:-9.471660pt;}
.ws14{word-spacing:-8.955901pt;}
.ws1a{word-spacing:-8.933744pt;}
.ws2{word-spacing:-8.873356pt;}
.ws4{word-spacing:-7.536527pt;}
.ws5{word-spacing:-5.652419pt;}
.ws7{word-spacing:-3.768311pt;}
.ws2b{word-spacing:-2.922363pt;}
.ws1b{word-spacing:-1.571379pt;}
.ws1{word-spacing:-0.110200pt;}
.ws25{word-spacing:-0.058182pt;}
.ws13{word-spacing:-0.032235pt;}
.ws1c{word-spacing:-0.032155pt;}
.ws33{word-spacing:-0.031881pt;}
.wsc{word-spacing:0.000000pt;}
.ws11{word-spacing:3.956030pt;}
.ws12{word-spacing:4.158467pt;}
.ws17{word-spacing:7.478508pt;}
.ws15{word-spacing:7.510743pt;}
.ws19{word-spacing:7.556471pt;}
.ws10{word-spacing:10.762646pt;}
.ws35{word-spacing:16.705399pt;}
.ws32{word-spacing:16.896683pt;}
.ws34{word-spacing:16.928563pt;}
.ws21{word-spacing:17.640444pt;}
.ws26{word-spacing:17.693578pt;}
.ws22{word-spacing:19.316380pt;}
.ws29{word-spacing:19.374562pt;}
.ws2a{word-spacing:21.236381pt;}
.ws20{word-spacing:27.842146pt;}
.ws24{word-spacing:30.487298pt;}
.ws8{word-spacing:34.492600pt;}
.ws9{word-spacing:35.815000pt;}
.ws0{word-spacing:40.333200pt;}
.ws2d{word-spacing:55.737426pt;}
.ws18{word-spacing:69.782178pt;}
.wse{word-spacing:1152.342847pt;}
.ws31{word-spacing:1429.986715pt;}
.ws2f{word-spacing:1434.990355pt;}
.ws28{word-spacing:1440.459451pt;}
.ws2e{word-spacing:1482.175849pt;}
.ws38{word-spacing:1579.281385pt;}
.ws6{word-spacing:1579.572294pt;}
.ws2c{word-spacing:1620.939601pt;}
.ws23{word-spacing:1693.550571pt;}
.ws39{word-spacing:1734.510605pt;}
.ws30{word-spacing:1737.419698pt;}
.wsd{word-spacing:1803.630663pt;}
.ws37{word-spacing:1858.030708pt;}
.ws1f{word-spacing:1882.990729pt;}
.ws36{word-spacing:1889.896569pt;}
._a{margin-left:-4.829095pt;}
._1{margin-left:-3.416200pt;}
._8{margin-left:-2.424400pt;}
._4{margin-left:-1.487748pt;}
._3{width:1.487748pt;}
._2{width:3.306000pt;}
._d{width:4.873726pt;}
._12{width:5.824644pt;}
._11{width:7.479791pt;}
._13{width:9.132076pt;}
._e{width:10.385296pt;}
._c{width:13.024331pt;}
._6{width:15.047612pt;}
._14{width:17.693578pt;}
._b{width:20.286233pt;}
._7{width:22.911467pt;}
._17{width:25.974093pt;}
._15{width:27.895280pt;}
._9{width:35.704800pt;}
._0{width:53.887800pt;}
._16{width:83.685840pt;}
._10{width:89.484214pt;}
._5{width:266.585020pt;}
._f{width:601.666016pt;}
.fs5{font-size:21.253867pt;}
.fs4{font-size:31.880533pt;}
.fsc{font-size:32.155197pt;}
.fsb{font-size:32.234948pt;}
.fs6{font-size:39.045596pt;}
.fs3{font-size:42.507200pt;}
.fsd{font-size:43.639199pt;}
.fs7{font-size:43.718947pt;}
.fs9{font-size:50.609348pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:57.599998pt;}
.fs2{font-size:58.181867pt;}
.fs8{font-size:76.239999pt;}
.fs0{font-size:110.200000pt;}
.y18{bottom:-44.659988pt;}
.y21{bottom:-25.811222pt;}
.y20{bottom:-15.999204pt;}
.y1f{bottom:-6.763191pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.206667pt;}
.y17{bottom:13.768000pt;}
.y1e{bottom:16.654388pt;}
.y5{bottom:19.718667pt;}
.y79{bottom:28.217333pt;}
.y42{bottom:36.426667pt;}
.y4d{bottom:39.600000pt;}
.y5b{bottom:42.452000pt;}
.y98{bottom:42.582667pt;}
.y27{bottom:47.359200pt;}
.y97{bottom:51.881333pt;}
.y4c{bottom:55.540000pt;}
.y5a{bottom:58.392000pt;}
.y78{bottom:60.097333pt;}
.y96{bottom:61.180000pt;}
.y41{bottom:61.400000pt;}
.y95{bottom:70.478667pt;}
.y4b{bottom:71.480000pt;}
.y67{bottom:72.968000pt;}
.y59{bottom:74.332000pt;}
.y77{bottom:76.037333pt;}
.y94{bottom:79.777333pt;}
.y40{bottom:88.497333pt;}
.y66{bottom:88.908000pt;}
.y93{bottom:89.076000pt;}
.y9f{bottom:90.244000pt;}
.y58{bottom:90.272000pt;}
.y76{bottom:91.978667pt;}
.y26{bottom:92.207184pt;}
.y23{bottom:92.647200pt;}
.y4a{bottom:96.453333pt;}
.y92{bottom:98.374667pt;}
.y65{bottom:104.849333pt;}
.y7e{bottom:106.822667pt;}
.y91{bottom:107.672000pt;}
.y75{bottom:107.918667pt;}
.y2e{bottom:109.212000pt;}
.y11{bottom:109.872000pt;}
.y57{bottom:111.321333pt;}
.y3f{bottom:116.177333pt;}
.y90{bottom:116.970667pt;}
.y9e{bottom:117.342667pt;}
.y25{bottom:119.463192pt;}
.y64{bottom:120.789333pt;}
.ya3{bottom:122.758667pt;}
.y49{bottom:123.552000pt;}
.y74{bottom:123.858667pt;}
.y6b{bottom:124.033333pt;}
.y8f{bottom:126.269333pt;}
.y2d{bottom:127.277333pt;}
.ya7{bottom:128.501333pt;}
.y24{bottom:129.175200pt;}
.y36{bottom:132.244000pt;}
.y56{bottom:132.353333pt;}
.ye{bottom:133.162667pt;}
.y9d{bottom:133.282667pt;}
.y7d{bottom:133.921333pt;}
.y3e{bottom:134.242667pt;}
.y8e{bottom:135.568000pt;}
.y63{bottom:136.729333pt;}
.y48{bottom:139.492000pt;}
.y73{bottom:139.798667pt;}
.y19{bottom:142.183177pt;}
.y2c{bottom:143.217333pt;}
.yaa{bottom:144.760000pt;}
.y8d{bottom:144.866667pt;}
.y55{bottom:148.294667pt;}
.ya2{bottom:149.857333pt;}
.y35{bottom:150.309333pt;}
.y6a{bottom:151.132000pt;}
.yd{bottom:151.228000pt;}
.y10{bottom:151.632000pt;}
.y3d{bottom:152.308000pt;}
.y8c{bottom:154.165333pt;}
.y47{bottom:155.432000pt;}
.ya6{bottom:155.600000pt;}
.y62{bottom:157.909333pt;}
.y9c{bottom:158.256000pt;}
.y2b{bottom:159.157333pt;}
.y7c{bottom:161.018667pt;}
.y8b{bottom:163.464000pt;}
.y54{bottom:164.234667pt;}
.y34{bottom:168.374667pt;}
.yc{bottom:169.293333pt;}
.yf{bottom:169.697333pt;}
.y3c{bottom:170.374667pt;}
.y72{bottom:171.680000pt;}
.ya9{bottom:171.858667pt;}
.y8a{bottom:172.761333pt;}
.ya5{bottom:173.665333pt;}
.y22{bottom:175.391184pt;}
.y69{bottom:176.105333pt;}
.ya1{bottom:176.954667pt;}
.y2a{bottom:177.222667pt;}
.y53{bottom:180.174667pt;}
.y46{bottom:180.405333pt;}
.y61{bottom:180.786667pt;}
.y89{bottom:182.060000pt;}
.y9b{bottom:185.354667pt;}
.y33{bottom:186.440000pt;}
.yb{bottom:187.358667pt;}
.y71{bottom:187.620000pt;}
.y7b{bottom:188.117333pt;}
.y3b{bottom:188.440000pt;}
.ya8{bottom:189.924000pt;}
.y88{bottom:191.358667pt;}
.y29{bottom:195.288000pt;}
.y52{bottom:196.114667pt;}
.y60{bottom:196.726667pt;}
.y87{bottom:200.657333pt;}
.ya4{bottom:200.764000pt;}
.y9a{bottom:201.294667pt;}
.y68{bottom:203.204000pt;}
.y70{bottom:203.560000pt;}
.ya0{bottom:204.053333pt;}
.y32{bottom:204.506667pt;}
.y16{bottom:205.613333pt;}
.y3a{bottom:206.505333pt;}
.y45{bottom:207.504000pt;}
.y86{bottom:209.956000pt;}
.ya{bottom:210.649333pt;}
.y51{bottom:212.054667pt;}
.y5f{bottom:212.666667pt;}
.y28{bottom:213.354667pt;}
.y7a{bottom:215.216000pt;}
.y85{bottom:219.254667pt;}
.y1c{bottom:219.487177pt;}
.y6f{bottom:219.500000pt;}
.y31{bottom:222.572000pt;}
.y15{bottom:223.678667pt;}
.y39{bottom:224.570667pt;}
.y99{bottom:226.268000pt;}
.y4{bottom:226.349333pt;}
.y50{bottom:227.996000pt;}
.y84{bottom:228.553333pt;}
.y5e{bottom:228.606667pt;}
.y44{bottom:232.476000pt;}
.y6e{bottom:235.440000pt;}
.y9{bottom:237.748000pt;}
.y83{bottom:237.850667pt;}
.y30{bottom:240.637333pt;}
.y14{bottom:241.744000pt;}
.y38{bottom:242.636000pt;}
.y4f{bottom:243.936000pt;}
.y5d{bottom:244.546667pt;}
.y82{bottom:247.149333pt;}
.y6d{bottom:251.380000pt;}
.y81{bottom:256.448000pt;}
.y3{bottom:257.344000pt;}
.y43{bottom:259.574667pt;}
.y13{bottom:259.810667pt;}
.y1d{bottom:263.815196pt;}
.y2f{bottom:264.818667pt;}
.y4e{bottom:265.116000pt;}
.y37{bottom:265.430667pt;}
.y5c{bottom:265.726667pt;}
.y80{bottom:265.746667pt;}
.y6c{bottom:267.321333pt;}
.y7f{bottom:275.045333pt;}
.y12{bottom:277.876000pt;}
.y2{bottom:281.874667pt;}
.y1b{bottom:299.231184pt;}
.y8{bottom:303.494667pt;}
.y1{bottom:307.692000pt;}
.y7{bottom:316.246667pt;}
.y1a{bottom:316.535184pt;}
.h7{height:15.940400pt;}
.h13{height:21.551241pt;}
.h18{height:22.061329pt;}
.h17{height:22.125090pt;}
.he{height:23.409863pt;}
.hd{height:23.467923pt;}
.h6{height:23.910400pt;}
.h9{height:28.292805pt;}
.h11{height:31.621373pt;}
.ha{height:31.679159pt;}
.h5{height:31.880400pt;}
.hc{height:36.672008pt;}
.h16{height:36.768636pt;}
.h15{height:36.874903pt;}
.h10{height:38.390624pt;}
.h3{height:39.850400pt;}
.h14{height:40.261852pt;}
.h12{height:40.378215pt;}
.hf{height:41.737499pt;}
.h4{height:43.636400pt;}
.hb{height:55.244218pt;}
.h2{height:82.650000pt;}
.h8{height:277.794400pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w2{width:575.633333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x1f{left:-6.882667pt;}
.x0{left:0.000000pt;}
.x1b{left:5.872000pt;}
.xf{left:8.004799pt;}
.x1e{left:13.929333pt;}
.x12{left:15.711199pt;}
.xc{left:21.590399pt;}
.xe{left:22.623199pt;}
.x1a{left:26.682667pt;}
.x7{left:29.090667pt;}
.x24{left:37.558667pt;}
.x1{left:39.284000pt;}
.x13{left:42.007998pt;}
.x22{left:43.038667pt;}
.x9{left:44.209333pt;}
.x25{left:46.028000pt;}
.x26{left:54.496000pt;}
.x23{left:56.986667pt;}
.x28{left:58.181333pt;}
.x14{left:62.803998pt;}
.x27{left:67.198667pt;}
.x19{left:69.668000pt;}
.x3{left:96.165333pt;}
.x6{left:108.024000pt;}
.x5{left:172.008000pt;}
.x10{left:201.304014pt;}
.xb{left:222.888000pt;}
.x2{left:245.349333pt;}
.x4{left:251.213333pt;}
.x11{left:262.711992pt;}
.x17{left:264.903984pt;}
.x1d{left:294.893333pt;}
.x1c{left:315.704000pt;}
.xa{left:339.388000pt;}
.x20{left:344.853333pt;}
.x16{left:355.711992pt;}
.x21{left:358.801333pt;}
.x8{left:417.477333pt;}
.x18{left:437.816016pt;}
.xd{left:444.751969pt;}
.x15{left:538.424016pt;}
}




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