
    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_3443ff8440335ab064beb3b3.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_40066131cf613d195047c188.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_af217905941009f63dd5d8eb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.089355;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_93a580156808f691a1d02dc5.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_db2162a5cb03a7699b2b9173.woff')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_1d46d7fdb6eeb3798b0ae816.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ce8134d6f44552b9357b7872.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_658c7740ee82863f8414af82.woff')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_7317283cd63a29f019a32a86.woff')format("woff");}.ff9{font-family:ff9;line-height:0.932617;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_2d76a533f220a7a64b73c526.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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;}
.m11{transform:matrix(0.077150,0.237798,-0.237798,0.077150,0,0);-ms-transform:matrix(0.077150,0.237798,-0.237798,0.077150,0,0);-webkit-transform:matrix(0.077150,0.237798,-0.237798,0.077150,0,0);}
.m3{transform:matrix(0.085090,-0.235074,0.235074,0.085090,0,0);-ms-transform:matrix(0.085090,-0.235074,0.235074,0.085090,0,0);-webkit-transform:matrix(0.085090,-0.235074,0.235074,0.085090,0,0);}
.m10{transform:matrix(0.093587,0.231822,-0.231822,0.093587,0,0);-ms-transform:matrix(0.093587,0.231822,-0.231822,0.093587,0,0);-webkit-transform:matrix(0.093587,0.231822,-0.231822,0.093587,0,0);}
.mf{transform:matrix(0.103202,0.227704,-0.227704,0.103202,0,0);-ms-transform:matrix(0.103202,0.227704,-0.227704,0.103202,0,0);-webkit-transform:matrix(0.103202,0.227704,-0.227704,0.103202,0,0);}
.m4{transform:matrix(0.105965,-0.226432,0.226432,0.105965,0,0);-ms-transform:matrix(0.105965,-0.226432,0.226432,0.105965,0,0);-webkit-transform:matrix(0.105965,-0.226432,0.226432,0.105965,0,0);}
.m5{transform:matrix(0.114655,-0.222158,0.222158,0.114655,0,0);-ms-transform:matrix(0.114655,-0.222158,0.222158,0.114655,0,0);-webkit-transform:matrix(0.114655,-0.222158,0.222158,0.114655,0,0);}
.me{transform:matrix(0.116558,0.221166,-0.221166,0.116558,0,0);-ms-transform:matrix(0.116558,0.221166,-0.221166,0.116558,0,0);-webkit-transform:matrix(0.116558,0.221166,-0.221166,0.116558,0,0);}
.m6{transform:matrix(0.126493,-0.215638,0.215638,0.126493,0,0);-ms-transform:matrix(0.126493,-0.215638,0.215638,0.126493,0,0);-webkit-transform:matrix(0.126493,-0.215638,0.215638,0.126493,0,0);}
.md{transform:matrix(0.132747,0.211845,-0.211845,0.132747,0,0);-ms-transform:matrix(0.132747,0.211845,-0.211845,0.132747,0,0);-webkit-transform:matrix(0.132747,0.211845,-0.211845,0.132747,0,0);}
.m7{transform:matrix(0.142482,-0.205424,0.205424,0.142482,0,0);-ms-transform:matrix(0.142482,-0.205424,0.205424,0.142482,0,0);-webkit-transform:matrix(0.142482,-0.205424,0.205424,0.142482,0,0);}
.mc{transform:matrix(0.144652,0.203902,-0.203902,0.144652,0,0);-ms-transform:matrix(0.144652,0.203902,-0.203902,0.144652,0,0);-webkit-transform:matrix(0.144652,0.203902,-0.203902,0.144652,0,0);}
.m8{transform:matrix(0.154944,-0.196194,0.196194,0.154944,0,0);-ms-transform:matrix(0.154944,-0.196194,0.196194,0.154944,0,0);-webkit-transform:matrix(0.154944,-0.196194,0.196194,0.154944,0,0);}
.mb{transform:matrix(0.160513,0.191665,-0.191665,0.160513,0,0);-ms-transform:matrix(0.160513,0.191665,-0.191665,0.160513,0,0);-webkit-transform:matrix(0.160513,0.191665,-0.191665,0.160513,0,0);}
.m9{transform:matrix(0.163167,-0.189411,0.189411,0.163167,0,0);-ms-transform:matrix(0.163167,-0.189411,0.189411,0.163167,0,0);-webkit-transform:matrix(0.163167,-0.189411,0.189411,0.163167,0,0);}
.ma{transform:matrix(0.177175,-0.176377,0.176377,0.177175,0,0);-ms-transform:matrix(0.177175,-0.176377,0.176377,0.177175,0,0);-webkit-transform:matrix(0.177175,-0.176377,0.176377,0.177175,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.250297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);}
.m12{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;}
.v2{vertical-align:4.740000px;}
.v1{vertical-align:18.000000px;}
.ls13{letter-spacing:-0.325200px;}
.ls16{letter-spacing:-0.112701px;}
.ls12{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.064200px;}
.ls11{letter-spacing:-0.053280px;}
.lsf{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.064080px;}
.ls14{letter-spacing:0.064200px;}
.ls4{letter-spacing:0.154800px;}
.ls15{letter-spacing:0.162600px;}
.lsc{letter-spacing:0.162720px;}
.ls10{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.281752px;}
.ls9{letter-spacing:0.295800px;}
.lsb{letter-spacing:0.295920px;}
.ls8{letter-spacing:0.325200px;}
.lsa{letter-spacing:0.325440px;}
.lsd{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.666720px;}
.ls6{letter-spacing:1.502677px;}
.ls1a{letter-spacing:2.053599px;}
.ls19{letter-spacing:2.507229px;}
.ls7{letter-spacing:3.762720px;}
.lse{letter-spacing:49.680000px;}
.ls1{letter-spacing:52.524000px;}
.ls0{letter-spacing:54.792000px;}
.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;}
}
.ws7{word-spacing:-53.506920px;}
.ws6{word-spacing:-53.442720px;}
.wsa{word-spacing:-53.378520px;}
.ws5{word-spacing:-53.117520px;}
.ws11{word-spacing:-50.040000px;}
.wsf{word-spacing:-46.962720px;}
.wsd{word-spacing:-46.962480px;}
.wse{word-spacing:-46.933080px;}
.ws8{word-spacing:-46.637280px;}
.ws10{word-spacing:-30.024000px;}
.wsc{word-spacing:-23.418720px;}
.ws9{word-spacing:-16.873080px;}
.ws1{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.506480px;}
.ws3{word-spacing:-11.208960px;}
.ws0{word-spacing:-0.480384px;}
.ws12{word-spacing:0.000000px;}
.wsb{word-spacing:3770.808000px;}
._4{margin-left:-3.593280px;}
._0{margin-left:-1.986000px;}
._1{width:1.188000px;}
._2{width:2.304000px;}
._3{width:4.086000px;}
._5{width:15.178616px;}
._7{width:39.762720px;}
._8{width:89.862000px;}
._9{width:419.232000px;}
._b{width:424.581185px;}
._a{width:484.877289px;}
._6{width:4580.808240px;}
.fc12{color:transparent;}
.fc11{color:rgb(255,87,0);}
.fc10{color:rgb(219,96,10);}
.fce{color:rgb(189,54,54);}
.fc0{color:rgb(0,0,0);}
.fcf{color:rgb(67,120,162);}
.fc2{color:rgb(255,255,255);}
.fc6{color:rgb(82,82,82);}
.fc7{color:rgb(0,176,80);}
.fcb{color:rgb(77,77,77);}
.fc1{color:rgb(0,150,130);}
.fc4{color:rgb(255,85,13);}
.fcd{color:rgb(255,128,35);}
.fcc{color:rgb(0,209,0);}
.fc3{color:rgb(215,210,0);}
.fc5{color:rgb(183,48,48);}
.fc8{color:rgb(0,176,240);}
.fc9{color:rgb(73,96,179);}
.fca{color:rgb(239,110,94);}
.fs7{font-size:40.320000px;}
.fsc{font-size:45.080300px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:63.863759px;}
.fsa{font-size:64.615097px;}
.fse{font-size:72.000000px;}
.fsb{font-size:75.133834px;}
.fsd{font-size:75.885172px;}
.fsf{font-size:84.240000px;}
.fs12{font-size:107.855472px;}
.fs14{font-size:107.855762px;}
.fs1a{font-size:107.855771px;}
.fs15{font-size:107.855900px;}
.fs1c{font-size:107.856175px;}
.fs13{font-size:107.856223px;}
.fs1f{font-size:107.856252px;}
.fs1e{font-size:107.856279px;}
.fs1d{font-size:107.999661px;}
.fs20{font-size:107.999804px;}
.fs10{font-size:108.000000px;}
.fs19{font-size:108.000003px;}
.fs17{font-size:108.000372px;}
.fs1b{font-size:108.000497px;}
.fs16{font-size:108.000599px;}
.fs18{font-size:108.000629px;}
.fs11{font-size:139.767301px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:167.760000px;}
.fs21{font-size:180.000000px;}
.fs4{font-size:192.240000px;}
.fs0{font-size:198.000000px;}
.fs3{font-size:288.000000px;}
.fs1{font-size:480.240000px;}
.fs2{font-size:480.384000px;}
.y51{bottom:-1.290000px;}
.y4f{bottom:-1.185000px;}
.y54{bottom:-0.900000px;}
.y4d{bottom:-0.825000px;}
.y4b{bottom:-0.330000px;}
.y47{bottom:-0.105000px;}
.y0{bottom:0.000000px;}
.y49{bottom:0.795000px;}
.y57{bottom:3.420000px;}
.y5f{bottom:5.790000px;}
.y5d{bottom:9.150000px;}
.y59{bottom:11.670000px;}
.y5b{bottom:12.390000px;}
.y56{bottom:12.705000px;}
.y61{bottom:14.190000px;}
.y23{bottom:14.565484px;}
.y45{bottom:31.831175px;}
.y22{bottom:34.288116px;}
.y1{bottom:82.584000px;}
.y29{bottom:165.018639px;}
.y28{bottom:191.503315px;}
.y24{bottom:230.009405px;}
.y27{bottom:251.610382px;}
.y26{bottom:254.427901px;}
.y25{bottom:255.367074px;}
.y2a{bottom:277.155886px;}
.y12{bottom:288.615000px;}
.yc{bottom:288.690000px;}
.y2b{bottom:314.722803px;}
.y11{bottom:321.735000px;}
.yb{bottom:321.810000px;}
.y10{bottom:354.675000px;}
.ya{bottom:354.780000px;}
.yf{bottom:387.615000px;}
.y9{bottom:387.720000px;}
.ye{bottom:420.735000px;}
.y8{bottom:420.840000px;}
.yd{bottom:453.675000px;}
.y7{bottom:453.780000px;}
.y6{bottom:489.810000px;}
.y40{bottom:585.435000px;}
.y3f{bottom:643.215000px;}
.y3e{bottom:759.135000px;}
.y3d{bottom:816.915000px;}
.y6b{bottom:872.205000px;}
.y3c{bottom:874.875000px;}
.y46{bottom:961.380000px;}
.y60{bottom:962.640000px;}
.y5e{bottom:975.960000px;}
.y48{bottom:976.860000px;}
.y5c{bottom:980.460000px;}
.y4a{bottom:984.600000px;}
.y5a{bottom:989.820000px;}
.y4c{bottom:990.180000px;}
.y3b{bottom:990.615000px;}
.y58{bottom:1002.600000px;}
.y4e{bottom:1003.140000px;}
.y50{bottom:1015.200000px;}
.y55{bottom:1019.340000px;}
.y52{bottom:1020.960000px;}
.y53{bottom:1024.920000px;}
.y41{bottom:1068.555000px;}
.y32{bottom:1148.295000px;}
.y33{bottom:1148.325000px;}
.y31{bottom:1183.605000px;}
.y3a{bottom:1453.965000px;}
.y43{bottom:1562.865000px;}
.y30{bottom:1674.645000px;}
.y39{bottom:1743.405000px;}
.y6a{bottom:1745.175000px;}
.y42{bottom:1749.345000px;}
.y38{bottom:1801.365000px;}
.y37{bottom:1858.425000px;}
.y44{bottom:1917.405681px;}
.y36{bottom:2115.825000px;}
.y35{bottom:2173.065000px;}
.y34{bottom:2295.795000px;}
.y2e{bottom:2408.970000px;}
.y2d{bottom:2426.970000px;}
.y2f{bottom:2555.025000px;}
.y1f{bottom:2686.350000px;}
.y69{bottom:2715.585000px;}
.y1e{bottom:2739.270000px;}
.y68{bottom:2771.565000px;}
.y1d{bottom:2792.190000px;}
.y67{bottom:2827.725000px;}
.y21{bottom:2905.595804px;}
.y2c{bottom:2928.420000px;}
.y66{bottom:2939.865000px;}
.y65{bottom:2996.025000px;}
.y1c{bottom:3003.510000px;}
.y64{bottom:3052.230000px;}
.y1b{bottom:3056.430000px;}
.y63{bottom:3108.210000px;}
.y1a{bottom:3109.350000px;}
.y19{bottom:3162.090000px;}
.y62{bottom:3164.370000px;}
.y20{bottom:3291.555000px;}
.y18{bottom:3439.230000px;}
.y17{bottom:3502.590000px;}
.y16{bottom:3565.950000px;}
.y15{bottom:3629.310000px;}
.y14{bottom:3692.670000px;}
.y13{bottom:3756.030000px;}
.y5{bottom:3924.720000px;}
.y4{bottom:3987.720000px;}
.y3{bottom:4116.885000px;}
.y2{bottom:4260.885000px;}
.h2a{height:13.320000px;}
.h1c{height:13.500000px;}
.h30{height:14.220000px;}
.h24{height:14.760000px;}
.h22{height:15.480000px;}
.h1a{height:17.100000px;}
.h20{height:17.640000px;}
.h2e{height:18.180000px;}
.h26{height:18.360000px;}
.h1e{height:18.720000px;}
.h33{height:19.080000px;}
.h2c{height:20.520000px;}
.h28{height:23.760000px;}
.h18{height:25.920000px;}
.he{height:34.052356px;}
.h8{height:62.327813px;}
.hd{height:63.320800px;}
.hb{height:63.520741px;}
.hc{height:64.268043px;}
.hf{height:74.730283px;}
.h12{height:75.093750px;}
.h10{height:75.477586px;}
.h36{height:83.787539px;}
.h13{height:87.859687px;}
.h17{height:105.576179px;}
.h19{height:112.489887px;}
.h1d{height:112.490189px;}
.h29{height:112.490199px;}
.h1f{height:112.490333px;}
.h2d{height:112.490620px;}
.h1b{height:112.490670px;}
.h32{height:112.490700px;}
.h31{height:112.490728px;}
.h2f{height:112.640272px;}
.h34{height:112.640421px;}
.h15{height:112.640625px;}
.h27{height:112.640628px;}
.h23{height:112.641013px;}
.h2b{height:112.641143px;}
.h21{height:112.641250px;}
.h25{height:112.641281px;}
.h14{height:122.625352px;}
.h7{height:150.187500px;}
.h11{height:154.927500px;}
.h9{height:174.968437px;}
.h35{height:187.734375px;}
.h6{height:200.500313px;}
.h2{height:206.507812px;}
.h16{height:211.489996px;}
.h5{height:300.375000px;}
.ha{height:339.041426px;}
.h3{height:419.975508px;}
.h4{height:501.025500px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.we{width:16.560000px;}
.w7{width:18.540000px;}
.wb{width:18.900000px;}
.wa{width:19.260000px;}
.w8{width:19.440000px;}
.w9{width:19.800000px;}
.wf{width:19.980000px;}
.w6{width:20.340000px;}
.wd{width:23.040000px;}
.wc{width:25.200000px;}
.w5{width:27.180000px;}
.w4{width:473.073837px;}
.w3{width:478.607366px;}
.w2{width:3576.419947px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x44{left:1.545000px;}
.x3d{left:9.210000px;}
.x38{left:10.770000px;}
.x36{left:11.880000px;}
.x3a{left:14.505000px;}
.x34{left:16.455000px;}
.x31{left:17.745000px;}
.x2e{left:58.563738px;}
.x14{left:76.061218px;}
.x13{left:81.138782px;}
.x1{left:85.895947px;}
.x2{left:198.974947px;}
.x9{left:204.149947px;}
.x3{left:205.889947px;}
.x8{left:210.449947px;}
.x5{left:219.059947px;}
.x18{left:221.806094px;}
.x1c{left:225.003078px;}
.xb{left:226.649947px;}
.x1b{left:271.829496px;}
.x45{left:274.169947px;}
.xa{left:278.714947px;}
.xc{left:292.214947px;}
.x23{left:295.889947px;}
.x15{left:297.781487px;}
.x1a{left:326.742404px;}
.x46{left:328.214947px;}
.x19{left:356.079437px;}
.x17{left:366.046506px;}
.x16{left:382.219486px;}
.x21{left:384.149947px;}
.x25{left:562.244947px;}
.x30{left:774.900000px;}
.x32{left:781.920000px;}
.x33{left:785.520000px;}
.x35{left:792.540000px;}
.x37{left:801.000000px;}
.x39{left:805.680000px;}
.x3b{left:809.820000px;}
.x20{left:812.234947px;}
.x3c{left:819.000000px;}
.x22{left:825.194947px;}
.x2f{left:933.689947px;}
.x47{left:971.849947px;}
.x3e{left:1142.460000px;}
.x3f{left:1152.720000px;}
.x40{left:1156.500000px;}
.x41{left:1163.700000px;}
.x42{left:1170.720000px;}
.x43{left:1174.140000px;}
.x6{left:1198.544947px;}
.x24{left:1330.889947px;}
.x4{left:1504.049947px;}
.xf{left:1837.364947px;}
.xd{left:1869.404947px;}
.x7{left:1876.064947px;}
.x27{left:1879.559947px;}
.x29{left:1901.519947px;}
.xe{left:1911.344947px;}
.x10{left:1923.404947px;}
.x28{left:1933.559947px;}
.x1e{left:1984.139947px;}
.x2a{left:2003.729947px;}
.x1f{left:2067.119947px;}
.x2b{left:2404.409947px;}
.x2c{left:2427.119947px;}
.x26{left:2518.994947px;}
.x11{left:2522.264947px;}
.x1d{left:2600.999947px;}
.x2d{left:2726.299669px;}
.x12{left:2861.736407px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.213333pt;}
.v1{vertical-align:16.000000pt;}
.ls13{letter-spacing:-0.289067pt;}
.ls16{letter-spacing:-0.100178pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.057067pt;}
.ls11{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.056960pt;}
.ls14{letter-spacing:0.057067pt;}
.ls4{letter-spacing:0.137600pt;}
.ls15{letter-spacing:0.144533pt;}
.lsc{letter-spacing:0.144640pt;}
.ls10{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.250446pt;}
.ls9{letter-spacing:0.262933pt;}
.lsb{letter-spacing:0.263040pt;}
.ls8{letter-spacing:0.289067pt;}
.lsa{letter-spacing:0.289280pt;}
.lsd{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.592640pt;}
.ls6{letter-spacing:1.335713pt;}
.ls1a{letter-spacing:1.825421pt;}
.ls19{letter-spacing:2.228648pt;}
.ls7{letter-spacing:3.344640pt;}
.lse{letter-spacing:44.160000pt;}
.ls1{letter-spacing:46.688000pt;}
.ls0{letter-spacing:48.704000pt;}
.ws7{word-spacing:-47.561707pt;}
.ws6{word-spacing:-47.504640pt;}
.wsa{word-spacing:-47.447573pt;}
.ws5{word-spacing:-47.215573pt;}
.ws11{word-spacing:-44.480000pt;}
.wsf{word-spacing:-41.744640pt;}
.wsd{word-spacing:-41.744427pt;}
.wse{word-spacing:-41.718293pt;}
.ws8{word-spacing:-41.455360pt;}
.ws10{word-spacing:-26.688000pt;}
.wsc{word-spacing:-20.816640pt;}
.ws9{word-spacing:-14.998293pt;}
.ws1{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.672427pt;}
.ws3{word-spacing:-9.963520pt;}
.ws0{word-spacing:-0.427008pt;}
.ws12{word-spacing:0.000000pt;}
.wsb{word-spacing:3351.829333pt;}
._4{margin-left:-3.194027pt;}
._0{margin-left:-1.765333pt;}
._1{width:1.056000pt;}
._2{width:2.048000pt;}
._3{width:3.632000pt;}
._5{width:13.492103pt;}
._7{width:35.344640pt;}
._8{width:79.877333pt;}
._9{width:372.650667pt;}
._b{width:377.405498pt;}
._a{width:431.002035pt;}
._6{width:4071.829547pt;}
.fs7{font-size:35.840000pt;}
.fsc{font-size:40.071378pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:56.767786pt;}
.fsa{font-size:57.435642pt;}
.fse{font-size:64.000000pt;}
.fsb{font-size:66.785630pt;}
.fsd{font-size:67.453487pt;}
.fsf{font-size:74.880000pt;}
.fs12{font-size:95.871531pt;}
.fs14{font-size:95.871788pt;}
.fs1a{font-size:95.871797pt;}
.fs15{font-size:95.871911pt;}
.fs1c{font-size:95.872156pt;}
.fs13{font-size:95.872198pt;}
.fs1f{font-size:95.872224pt;}
.fs1e{font-size:95.872248pt;}
.fs1d{font-size:95.999699pt;}
.fs20{font-size:95.999826pt;}
.fs10{font-size:96.000000pt;}
.fs19{font-size:96.000002pt;}
.fs17{font-size:96.000331pt;}
.fs1b{font-size:96.000442pt;}
.fs16{font-size:96.000533pt;}
.fs18{font-size:96.000559pt;}
.fs11{font-size:124.237601pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:149.120000pt;}
.fs21{font-size:160.000000pt;}
.fs4{font-size:170.880000pt;}
.fs0{font-size:176.000000pt;}
.fs3{font-size:256.000000pt;}
.fs1{font-size:426.880000pt;}
.fs2{font-size:427.008000pt;}
.y51{bottom:-1.146667pt;}
.y4f{bottom:-1.053333pt;}
.y54{bottom:-0.800000pt;}
.y4d{bottom:-0.733333pt;}
.y4b{bottom:-0.293333pt;}
.y47{bottom:-0.093333pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:0.706667pt;}
.y57{bottom:3.040000pt;}
.y5f{bottom:5.146667pt;}
.y5d{bottom:8.133333pt;}
.y59{bottom:10.373333pt;}
.y5b{bottom:11.013333pt;}
.y56{bottom:11.293333pt;}
.y61{bottom:12.613333pt;}
.y23{bottom:12.947097pt;}
.y45{bottom:28.294378pt;}
.y22{bottom:30.478325pt;}
.y1{bottom:73.408000pt;}
.y29{bottom:146.683234pt;}
.y28{bottom:170.225169pt;}
.y24{bottom:204.452805pt;}
.y27{bottom:223.653673pt;}
.y26{bottom:226.158134pt;}
.y25{bottom:226.992955pt;}
.y2a{bottom:246.360788pt;}
.y12{bottom:256.546667pt;}
.yc{bottom:256.613333pt;}
.y2b{bottom:279.753603pt;}
.y11{bottom:285.986667pt;}
.yb{bottom:286.053333pt;}
.y10{bottom:315.266667pt;}
.ya{bottom:315.360000pt;}
.yf{bottom:344.546667pt;}
.y9{bottom:344.640000pt;}
.ye{bottom:373.986667pt;}
.y8{bottom:374.080000pt;}
.yd{bottom:403.266667pt;}
.y7{bottom:403.360000pt;}
.y6{bottom:435.386667pt;}
.y40{bottom:520.386667pt;}
.y3f{bottom:571.746667pt;}
.y3e{bottom:674.786667pt;}
.y3d{bottom:726.146667pt;}
.y6b{bottom:775.293333pt;}
.y3c{bottom:777.666667pt;}
.y46{bottom:854.560000pt;}
.y60{bottom:855.680000pt;}
.y5e{bottom:867.520000pt;}
.y48{bottom:868.320000pt;}
.y5c{bottom:871.520000pt;}
.y4a{bottom:875.200000pt;}
.y5a{bottom:879.840000pt;}
.y4c{bottom:880.160000pt;}
.y3b{bottom:880.546667pt;}
.y58{bottom:891.200000pt;}
.y4e{bottom:891.680000pt;}
.y50{bottom:902.400000pt;}
.y55{bottom:906.080000pt;}
.y52{bottom:907.520000pt;}
.y53{bottom:911.040000pt;}
.y41{bottom:949.826667pt;}
.y32{bottom:1020.706667pt;}
.y33{bottom:1020.733333pt;}
.y31{bottom:1052.093333pt;}
.y3a{bottom:1292.413333pt;}
.y43{bottom:1389.213333pt;}
.y30{bottom:1488.573333pt;}
.y39{bottom:1549.693333pt;}
.y6a{bottom:1551.266667pt;}
.y42{bottom:1554.973333pt;}
.y38{bottom:1601.213333pt;}
.y37{bottom:1651.933333pt;}
.y44{bottom:1704.360605pt;}
.y36{bottom:1880.733333pt;}
.y35{bottom:1931.613333pt;}
.y34{bottom:2040.706667pt;}
.y2e{bottom:2141.306667pt;}
.y2d{bottom:2157.306667pt;}
.y2f{bottom:2271.133333pt;}
.y1f{bottom:2387.866667pt;}
.y69{bottom:2413.853333pt;}
.y1e{bottom:2434.906667pt;}
.y68{bottom:2463.613333pt;}
.y1d{bottom:2481.946667pt;}
.y67{bottom:2513.533333pt;}
.y21{bottom:2582.751826pt;}
.y2c{bottom:2603.040000pt;}
.y66{bottom:2613.213333pt;}
.y65{bottom:2663.133333pt;}
.y1c{bottom:2669.786667pt;}
.y64{bottom:2713.093333pt;}
.y1b{bottom:2716.826667pt;}
.y63{bottom:2762.853333pt;}
.y1a{bottom:2763.866667pt;}
.y19{bottom:2810.746667pt;}
.y62{bottom:2812.773333pt;}
.y20{bottom:2925.826667pt;}
.y18{bottom:3057.093333pt;}
.y17{bottom:3113.413333pt;}
.y16{bottom:3169.733333pt;}
.y15{bottom:3226.053333pt;}
.y14{bottom:3282.373333pt;}
.y13{bottom:3338.693333pt;}
.y5{bottom:3488.640000pt;}
.y4{bottom:3544.640000pt;}
.y3{bottom:3659.453333pt;}
.y2{bottom:3787.453333pt;}
.h2a{height:11.840000pt;}
.h1c{height:12.000000pt;}
.h30{height:12.640000pt;}
.h24{height:13.120000pt;}
.h22{height:13.760000pt;}
.h1a{height:15.200000pt;}
.h20{height:15.680000pt;}
.h2e{height:16.160000pt;}
.h26{height:16.320000pt;}
.h1e{height:16.640000pt;}
.h33{height:16.960000pt;}
.h2c{height:18.240000pt;}
.h28{height:21.120000pt;}
.h18{height:23.040000pt;}
.he{height:30.268761pt;}
.h8{height:55.402500pt;}
.hd{height:56.285155pt;}
.hb{height:56.462881pt;}
.hc{height:57.127150pt;}
.hf{height:66.426918pt;}
.h12{height:66.750000pt;}
.h10{height:67.091188pt;}
.h36{height:74.477812pt;}
.h13{height:78.097500pt;}
.h17{height:93.845493pt;}
.h19{height:99.991011pt;}
.h1d{height:99.991279pt;}
.h29{height:99.991288pt;}
.h1f{height:99.991407pt;}
.h2d{height:99.991662pt;}
.h1b{height:99.991707pt;}
.h32{height:99.991733pt;}
.h31{height:99.991758pt;}
.h2f{height:100.124686pt;}
.h34{height:100.124819pt;}
.h15{height:100.125000pt;}
.h27{height:100.125003pt;}
.h23{height:100.125345pt;}
.h2b{height:100.125461pt;}
.h21{height:100.125555pt;}
.h25{height:100.125583pt;}
.h14{height:109.000312pt;}
.h7{height:133.500000pt;}
.h11{height:137.713333pt;}
.h9{height:155.527500pt;}
.h35{height:166.875000pt;}
.h6{height:178.222500pt;}
.h2{height:183.562500pt;}
.h16{height:187.991107pt;}
.h5{height:267.000000pt;}
.ha{height:301.370156pt;}
.h3{height:373.311562pt;}
.h4{height:445.356000pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.we{width:14.720000pt;}
.w7{width:16.480000pt;}
.wb{width:16.800000pt;}
.wa{width:17.120000pt;}
.w8{width:17.280000pt;}
.w9{width:17.600000pt;}
.wf{width:17.760000pt;}
.w6{width:18.080000pt;}
.wd{width:20.480000pt;}
.wc{width:22.400000pt;}
.w5{width:24.160000pt;}
.w4{width:420.510078pt;}
.w3{width:425.428770pt;}
.w2{width:3179.039953pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x44{left:1.373333pt;}
.x3d{left:8.186667pt;}
.x38{left:9.573333pt;}
.x36{left:10.560000pt;}
.x3a{left:12.893333pt;}
.x34{left:14.626667pt;}
.x31{left:15.773333pt;}
.x2e{left:52.056656pt;}
.x14{left:67.609972pt;}
.x13{left:72.123361pt;}
.x1{left:76.351953pt;}
.x2{left:176.866619pt;}
.x9{left:181.466619pt;}
.x3{left:183.013286pt;}
.x8{left:187.066619pt;}
.x5{left:194.719953pt;}
.x18{left:197.160972pt;}
.x1c{left:200.002736pt;}
.xb{left:201.466619pt;}
.x1b{left:241.626219pt;}
.x45{left:243.706619pt;}
.xa{left:247.746619pt;}
.xc{left:259.746619pt;}
.x23{left:263.013286pt;}
.x15{left:264.694655pt;}
.x1a{left:290.437693pt;}
.x46{left:291.746619pt;}
.x19{left:316.515055pt;}
.x17{left:325.374672pt;}
.x16{left:339.750654pt;}
.x21{left:341.466619pt;}
.x25{left:499.773286pt;}
.x30{left:688.800000pt;}
.x32{left:695.040000pt;}
.x33{left:698.240000pt;}
.x35{left:704.480000pt;}
.x37{left:712.000000pt;}
.x39{left:716.160000pt;}
.x3b{left:719.840000pt;}
.x20{left:721.986619pt;}
.x3c{left:728.000000pt;}
.x22{left:733.506619pt;}
.x2f{left:829.946619pt;}
.x47{left:863.866619pt;}
.x3e{left:1015.520000pt;}
.x3f{left:1024.640000pt;}
.x40{left:1028.000000pt;}
.x41{left:1034.400000pt;}
.x42{left:1040.640000pt;}
.x43{left:1043.680000pt;}
.x6{left:1065.373286pt;}
.x24{left:1183.013286pt;}
.x4{left:1336.933286pt;}
.xf{left:1633.213286pt;}
.xd{left:1661.693286pt;}
.x7{left:1667.613286pt;}
.x27{left:1670.719953pt;}
.x29{left:1690.239953pt;}
.xe{left:1698.973286pt;}
.x10{left:1709.693286pt;}
.x28{left:1718.719953pt;}
.x1e{left:1763.679953pt;}
.x2a{left:1781.093286pt;}
.x1f{left:1837.439953pt;}
.x2b{left:2137.253286pt;}
.x2c{left:2157.439953pt;}
.x26{left:2239.106619pt;}
.x11{left:2242.013286pt;}
.x1d{left:2311.999953pt;}
.x2d{left:2423.377484pt;}
.x12{left:2543.765695pt;}
}




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