
    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_b9fa57f5f2a9f38c2dc0476b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_781ce100206e40e6a9a677b0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.431000;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_c27d1004dbdf6c659e684992.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_b8463ee96508438f3fe33c27.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_beeef6463b0db26b2a3e3eab.woff')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_fa110ee37e8f307f35726a7a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_2ec9dcd2785fd738846f1dde.woff')format("woff");}.ff7{font-family:ff7;line-height:0.442000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,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);}
.me{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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:21.690000px;}
.v2{vertical-align:22.854000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws20{word-spacing:-13.449600px;}
.ws1f{word-spacing:-8.966400px;}
.ws7{word-spacing:-2.570351px;}
.ws3{word-spacing:-2.331248px;}
.ws29{word-spacing:-2.151922px;}
.ws30{word-spacing:-1.613941px;}
.ws32{word-spacing:-0.717307px;}
.ws1b{word-spacing:-0.418429px;}
.wsa{word-spacing:-0.358654px;}
.ws16{word-spacing:-0.298878px;}
.wsc{word-spacing:-0.239102px;}
.ws23{word-spacing:-0.179327px;}
.ws8{word-spacing:-0.119551px;}
.ws37{word-spacing:-0.071731px;}
.ws18{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:0.059776px;}
.ws27{word-spacing:0.119551px;}
.ws17{word-spacing:0.179327px;}
.ws31{word-spacing:0.239102px;}
.ws9{word-spacing:0.298878px;}
.ws22{word-spacing:0.358654px;}
.ws2c{word-spacing:0.418429px;}
.ws36{word-spacing:0.657532px;}
.ws1a{word-spacing:0.836858px;}
.ws25{word-spacing:0.956410px;}
.ws4{word-spacing:1.016185px;}
.ws10{word-spacing:1.195512px;}
.ws34{word-spacing:1.374839px;}
.ws14{word-spacing:1.613941px;}
.wsf{word-spacing:1.733492px;}
.ws28{word-spacing:1.853044px;}
.ws2b{word-spacing:2.331248px;}
.ws11{word-spacing:2.689902px;}
.ws19{word-spacing:2.749678px;}
.ws2e{word-spacing:2.809453px;}
.ws35{word-spacing:3.168107px;}
.ws5{word-spacing:3.227882px;}
.ws33{word-spacing:4.124516px;}
.ws6{word-spacing:4.244068px;}
.ws2f{word-spacing:4.483170px;}
.ws21{word-spacing:4.602721px;}
.wsd{word-spacing:4.662497px;}
.wse{word-spacing:4.782048px;}
.ws2a{word-spacing:4.841824px;}
.ws26{word-spacing:5.200477px;}
.ws2d{word-spacing:5.439580px;}
.ws3b{word-spacing:6.515540px;}
.ws13{word-spacing:6.575316px;}
.ws24{word-spacing:6.874194px;}
.ws38{word-spacing:6.993745px;}
.ws1c{word-spacing:7.370381px;}
.ws1e{word-spacing:7.470163px;}
.ws3a{word-spacing:14.704798px;}
.ws39{word-spacing:14.824349px;}
.ws1{word-spacing:14.884124px;}
.ws3c{word-spacing:16.677392px;}
.ws15{word-spacing:17.861069px;}
.ws1d{word-spacing:21.709493px;}
.ws0{word-spacing:25.719808px;}
.wsb{word-spacing:71.659469px;}
._f{margin-left:-7.292623px;}
._1{margin-left:-5.499355px;}
._5{margin-left:-4.184292px;}
._7{margin-left:-2.575130px;}
._0{margin-left:-1.549386px;}
._11{width:2.978141px;}
._6{width:13.688612px;}
._9{width:15.656428px;}
._13{width:16.677392px;}
._4{width:17.987676px;}
._b{width:19.128192px;}
._3{width:20.323704px;}
._a{width:21.578992px;}
._d{width:23.850464px;}
._14{width:25.528961px;}
._10{width:27.491996px;}
._2{width:28.752064px;}
._8{width:33.055907px;}
._c{width:38.913916px;}
._15{width:40.362869px;}
._12{width:59.775600px;}
._e{width:71.731200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y4d{bottom:63.168000px;}
.y2f{bottom:78.184500px;}
.y2e{bottom:93.129000px;}
.y4c{bottom:108.000000px;}
.y4b{bottom:124.363500px;}
.y72{bottom:136.339500px;}
.y2d{bottom:138.186000px;}
.y4a{bottom:140.727000px;}
.y71{bottom:152.703000px;}
.y2c{bottom:153.130500px;}
.y2b{bottom:158.844000px;}
.y70{bottom:169.068000px;}
.y49{bottom:175.489500px;}
.y2a{bottom:179.199000px;}
.y29{bottom:195.562500px;}
.y6f{bottom:197.407500px;}
.y28{bottom:211.927500px;}
.y6e{bottom:213.771000px;}
.y48{bottom:218.233500px;}
.y27{bottom:228.291000px;}
.y47{bottom:234.597000px;}
.y6d{bottom:240.229500px;}
.y26{bottom:244.654500px;}
.y46{bottom:250.960500px;}
.y25{bottom:261.018000px;}
.y45{bottom:267.324000px;}
.y24{bottom:277.381500px;}
.y6c{bottom:282.831000px;}
.y44{bottom:283.687500px;}
.y23{bottom:293.745000px;}
.y6b{bottom:299.194500px;}
.y43{bottom:300.051000px;}
.y22{bottom:310.108500px;}
.y6a{bottom:315.558000px;}
.y42{bottom:316.414500px;}
.y69{bottom:331.921500px;}
.y41{bottom:340.998000px;}
.y21{bottom:344.529000px;}
.y68{bottom:348.285000px;}
.y40{bottom:357.361500px;}
.y67{bottom:364.650000px;}
.y3f{bottom:373.725000px;}
.y20{bottom:386.871000px;}
.y3e{bottom:390.088500px;}
.y66{bottom:399.327000px;}
.y1f{bottom:403.234500px;}
.y3d{bottom:406.452000px;}
.y1e{bottom:419.598000px;}
.y3c{bottom:422.815500px;}
.y1d{bottom:435.961500px;}
.y3b{bottom:439.180500px;}
.y65{bottom:441.928500px;}
.y1c{bottom:452.325000px;}
.y3a{bottom:455.544000px;}
.y64{bottom:458.292000px;}
.y1b{bottom:468.688500px;}
.y39{bottom:471.907500px;}
.y63{bottom:474.655500px;}
.y1a{bottom:485.053500px;}
.y38{bottom:488.271000px;}
.y62{bottom:491.019000px;}
.y19{bottom:501.417000px;}
.y37{bottom:504.634500px;}
.y61{bottom:507.382500px;}
.y18{bottom:517.780500px;}
.y36{bottom:520.998000px;}
.y60{bottom:523.747500px;}
.y17{bottom:534.144000px;}
.y5f{bottom:540.111000px;}
.y16{bottom:550.507500px;}
.y35{bottom:551.022000px;}
.y5e{bottom:556.474500px;}
.y15{bottom:566.871000px;}
.y5d{bottom:581.056500px;}
.y14{bottom:583.234500px;}
.y34{bottom:587.863500px;}
.y5c{bottom:597.420000px;}
.y33{bottom:604.227000px;}
.y5b{bottom:613.783500px;}
.y13{bottom:617.655000px;}
.y32{bottom:620.590500px;}
.y5a{bottom:630.148500px;}
.y59{bottom:654.730500px;}
.y12{bottom:666.777000px;}
.y31{bottom:668.794500px;}
.y58{bottom:671.094000px;}
.y11{bottom:683.142000px;}
.y57{bottom:687.457500px;}
.y10{bottom:699.505500px;}
.y56{bottom:703.821000px;}
.yf{bottom:715.869000px;}
.y55{bottom:720.184500px;}
.ye{bottom:732.232500px;}
.y54{bottom:736.549500px;}
.yd{bottom:748.596000px;}
.y53{bottom:752.913000px;}
.yc{bottom:764.959500px;}
.y52{bottom:769.276500px;}
.yb{bottom:781.323000px;}
.y51{bottom:785.640000px;}
.ya{bottom:797.686500px;}
.y50{bottom:802.003500px;}
.y9{bottom:814.050000px;}
.y30{bottom:817.359000px;}
.y4f{bottom:818.367000px;}
.y8{bottom:830.413500px;}
.y7{bottom:865.140000px;}
.y4e{bottom:866.445000px;}
.y6{bottom:926.913000px;}
.y5{bottom:943.276500px;}
.y4{bottom:959.640000px;}
.y3{bottom:976.003500px;}
.y77{bottom:987.646500px;}
.y2{bottom:992.367000px;}
.y76{bottom:1004.010000px;}
.y75{bottom:1020.373500px;}
.y1{bottom:1043.188500px;}
.y74{bottom:1048.692000px;}
.y73{bottom:1065.055500px;}
.h6{height:16.677504px;}
.h9{height:25.763284px;}
.h7{height:37.013299px;}
.h3{height:41.125613px;}
.h2{height:41.364715px;}
.h4{height:41.544042px;}
.h8{height:47.529533px;}
.h5{height:49.637990px;}
.h1{height:71.478341px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:162.000000px;}
.x9{left:166.552500px;}
.x15{left:176.406000px;}
.xb{left:179.733000px;}
.xc{left:186.210000px;}
.xf{left:212.631000px;}
.x7{left:215.335500px;}
.x10{left:221.685000px;}
.xe{left:232.750500px;}
.x13{left:259.866000px;}
.x1{left:305.728500px;}
.xa{left:315.582000px;}
.x12{left:328.645500px;}
.xd{left:337.648500px;}
.x5{left:382.069500px;}
.x3{left:395.085000px;}
.x4{left:404.716500px;}
.x2{left:410.776500px;}
.x6{left:425.637000px;}
.x11{left:455.263500px;}
.x14{left:479.488500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v2{vertical-align:20.314667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws20{word-spacing:-11.955200pt;}
.ws1f{word-spacing:-7.970133pt;}
.ws7{word-spacing:-2.284756pt;}
.ws3{word-spacing:-2.072221pt;}
.ws29{word-spacing:-1.912819pt;}
.ws30{word-spacing:-1.434614pt;}
.ws32{word-spacing:-0.637606pt;}
.ws1b{word-spacing:-0.371937pt;}
.wsa{word-spacing:-0.318803pt;}
.ws16{word-spacing:-0.265669pt;}
.wsc{word-spacing:-0.212535pt;}
.ws23{word-spacing:-0.159402pt;}
.ws8{word-spacing:-0.106268pt;}
.ws37{word-spacing:-0.063761pt;}
.ws18{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053134pt;}
.ws27{word-spacing:0.106268pt;}
.ws17{word-spacing:0.159402pt;}
.ws31{word-spacing:0.212535pt;}
.ws9{word-spacing:0.265669pt;}
.ws22{word-spacing:0.318803pt;}
.ws2c{word-spacing:0.371937pt;}
.ws36{word-spacing:0.584473pt;}
.ws1a{word-spacing:0.743874pt;}
.ws25{word-spacing:0.850142pt;}
.ws4{word-spacing:0.903276pt;}
.ws10{word-spacing:1.062677pt;}
.ws34{word-spacing:1.222079pt;}
.ws14{word-spacing:1.434614pt;}
.wsf{word-spacing:1.540882pt;}
.ws28{word-spacing:1.647150pt;}
.ws2b{word-spacing:2.072221pt;}
.ws11{word-spacing:2.391024pt;}
.ws19{word-spacing:2.444158pt;}
.ws2e{word-spacing:2.497292pt;}
.ws35{word-spacing:2.816095pt;}
.ws5{word-spacing:2.869229pt;}
.ws33{word-spacing:3.666237pt;}
.ws6{word-spacing:3.772505pt;}
.ws2f{word-spacing:3.985040pt;}
.ws21{word-spacing:4.091308pt;}
.wsd{word-spacing:4.144442pt;}
.wse{word-spacing:4.250709pt;}
.ws2a{word-spacing:4.303843pt;}
.ws26{word-spacing:4.622646pt;}
.ws2d{word-spacing:4.835182pt;}
.ws3b{word-spacing:5.791591pt;}
.ws13{word-spacing:5.844725pt;}
.ws24{word-spacing:6.110395pt;}
.ws38{word-spacing:6.216662pt;}
.ws1c{word-spacing:6.551450pt;}
.ws1e{word-spacing:6.640145pt;}
.ws3a{word-spacing:13.070931pt;}
.ws39{word-spacing:13.177199pt;}
.ws1{word-spacing:13.230333pt;}
.ws3c{word-spacing:14.824349pt;}
.ws15{word-spacing:15.876506pt;}
.ws1d{word-spacing:19.297328pt;}
.ws0{word-spacing:22.862051pt;}
.wsb{word-spacing:63.697306pt;}
._f{margin-left:-6.482332pt;}
._1{margin-left:-4.888316pt;}
._5{margin-left:-3.719371pt;}
._7{margin-left:-2.289005pt;}
._0{margin-left:-1.377232pt;}
._11{width:2.647236pt;}
._6{width:12.167655pt;}
._9{width:13.916825pt;}
._13{width:14.824349pt;}
._4{width:15.989045pt;}
._b{width:17.002837pt;}
._3{width:18.065515pt;}
._a{width:19.181326pt;}
._d{width:21.200413pt;}
._14{width:22.692410pt;}
._10{width:24.437330pt;}
._2{width:25.557390pt;}
._8{width:29.383028pt;}
._c{width:34.590147pt;}
._15{width:35.878106pt;}
._12{width:53.133867pt;}
._e{width:63.761067pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:56.149333pt;}
.y2f{bottom:69.497333pt;}
.y2e{bottom:82.781333pt;}
.y4c{bottom:96.000000pt;}
.y4b{bottom:110.545333pt;}
.y72{bottom:121.190667pt;}
.y2d{bottom:122.832000pt;}
.y4a{bottom:125.090667pt;}
.y71{bottom:135.736000pt;}
.y2c{bottom:136.116000pt;}
.y2b{bottom:141.194667pt;}
.y70{bottom:150.282667pt;}
.y49{bottom:155.990667pt;}
.y2a{bottom:159.288000pt;}
.y29{bottom:173.833333pt;}
.y6f{bottom:175.473333pt;}
.y28{bottom:188.380000pt;}
.y6e{bottom:190.018667pt;}
.y48{bottom:193.985333pt;}
.y27{bottom:202.925333pt;}
.y47{bottom:208.530667pt;}
.y6d{bottom:213.537333pt;}
.y26{bottom:217.470667pt;}
.y46{bottom:223.076000pt;}
.y25{bottom:232.016000pt;}
.y45{bottom:237.621333pt;}
.y24{bottom:246.561333pt;}
.y6c{bottom:251.405333pt;}
.y44{bottom:252.166667pt;}
.y23{bottom:261.106667pt;}
.y6b{bottom:265.950667pt;}
.y43{bottom:266.712000pt;}
.y22{bottom:275.652000pt;}
.y6a{bottom:280.496000pt;}
.y42{bottom:281.257333pt;}
.y69{bottom:295.041333pt;}
.y41{bottom:303.109333pt;}
.y21{bottom:306.248000pt;}
.y68{bottom:309.586667pt;}
.y40{bottom:317.654667pt;}
.y67{bottom:324.133333pt;}
.y3f{bottom:332.200000pt;}
.y20{bottom:343.885333pt;}
.y3e{bottom:346.745333pt;}
.y66{bottom:354.957333pt;}
.y1f{bottom:358.430667pt;}
.y3d{bottom:361.290667pt;}
.y1e{bottom:372.976000pt;}
.y3c{bottom:375.836000pt;}
.y1d{bottom:387.521333pt;}
.y3b{bottom:390.382667pt;}
.y65{bottom:392.825333pt;}
.y1c{bottom:402.066667pt;}
.y3a{bottom:404.928000pt;}
.y64{bottom:407.370667pt;}
.y1b{bottom:416.612000pt;}
.y39{bottom:419.473333pt;}
.y63{bottom:421.916000pt;}
.y1a{bottom:431.158667pt;}
.y38{bottom:434.018667pt;}
.y62{bottom:436.461333pt;}
.y19{bottom:445.704000pt;}
.y37{bottom:448.564000pt;}
.y61{bottom:451.006667pt;}
.y18{bottom:460.249333pt;}
.y36{bottom:463.109333pt;}
.y60{bottom:465.553333pt;}
.y17{bottom:474.794667pt;}
.y5f{bottom:480.098667pt;}
.y16{bottom:489.340000pt;}
.y35{bottom:489.797333pt;}
.y5e{bottom:494.644000pt;}
.y15{bottom:503.885333pt;}
.y5d{bottom:516.494667pt;}
.y14{bottom:518.430667pt;}
.y34{bottom:522.545333pt;}
.y5c{bottom:531.040000pt;}
.y33{bottom:537.090667pt;}
.y5b{bottom:545.585333pt;}
.y13{bottom:549.026667pt;}
.y32{bottom:551.636000pt;}
.y5a{bottom:560.132000pt;}
.y59{bottom:581.982667pt;}
.y12{bottom:592.690667pt;}
.y31{bottom:594.484000pt;}
.y58{bottom:596.528000pt;}
.y11{bottom:607.237333pt;}
.y57{bottom:611.073333pt;}
.y10{bottom:621.782667pt;}
.y56{bottom:625.618667pt;}
.yf{bottom:636.328000pt;}
.y55{bottom:640.164000pt;}
.ye{bottom:650.873333pt;}
.y54{bottom:654.710667pt;}
.yd{bottom:665.418667pt;}
.y53{bottom:669.256000pt;}
.yc{bottom:679.964000pt;}
.y52{bottom:683.801333pt;}
.yb{bottom:694.509333pt;}
.y51{bottom:698.346667pt;}
.ya{bottom:709.054667pt;}
.y50{bottom:712.892000pt;}
.y9{bottom:723.600000pt;}
.y30{bottom:726.541333pt;}
.y4f{bottom:727.437333pt;}
.y8{bottom:738.145333pt;}
.y7{bottom:769.013333pt;}
.y4e{bottom:770.173333pt;}
.y6{bottom:823.922667pt;}
.y5{bottom:838.468000pt;}
.y4{bottom:853.013333pt;}
.y3{bottom:867.558667pt;}
.y77{bottom:877.908000pt;}
.y2{bottom:882.104000pt;}
.y76{bottom:892.453333pt;}
.y75{bottom:906.998667pt;}
.y1{bottom:927.278667pt;}
.y74{bottom:932.170667pt;}
.y73{bottom:946.716000pt;}
.h6{height:14.824448pt;}
.h9{height:22.900697pt;}
.h7{height:32.900710pt;}
.h3{height:36.556100pt;}
.h2{height:36.768636pt;}
.h4{height:36.928037pt;}
.h8{height:42.248474pt;}
.h5{height:44.122658pt;}
.h1{height:63.536303pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:144.000000pt;}
.x9{left:148.046667pt;}
.x15{left:156.805333pt;}
.xb{left:159.762667pt;}
.xc{left:165.520000pt;}
.xf{left:189.005333pt;}
.x7{left:191.409333pt;}
.x10{left:197.053333pt;}
.xe{left:206.889333pt;}
.x13{left:230.992000pt;}
.x1{left:271.758667pt;}
.xa{left:280.517333pt;}
.x12{left:292.129333pt;}
.xd{left:300.132000pt;}
.x5{left:339.617333pt;}
.x3{left:351.186667pt;}
.x4{left:359.748000pt;}
.x2{left:365.134667pt;}
.x6{left:378.344000pt;}
.x11{left:404.678667pt;}
.x14{left:426.212000pt;}
}




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