
    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_165cfea7888fe3a84cd2ad2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_d83b96dcbd7e4cc0d8d26468.woff2')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_6a1f322ee10d30332b24a891.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_2a1d857eb0c94a28f6d3c535.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_42c666e0251b6f9698955250.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_69a535884e4a4107742c94d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905000;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_90ca3fa4853882e86fd532bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.701190;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_4aa46974f6d3a800dbc063d2.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m2{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);}
.m12{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);}
.m6{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m7{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);}
.m5{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);}
.m11{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);}
.m9{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);}
.md{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,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);}
.ma{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);}
.m8{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.mc{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);}
.m4{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.mf{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m15{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);}
.m10{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:20.087109px;}
.ls1{letter-spacing:20.093134px;}
.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;}
}
.ws11{word-spacing:-19.092327px;}
.ws5{word-spacing:-0.941472px;}
.ws22{word-spacing:-0.765128px;}
.ws28{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws1f{word-spacing:0.000000px;}
.ws6{word-spacing:0.188294px;}
.ws23{word-spacing:0.729262px;}
.ws2c{word-spacing:0.908589px;}
.ws35{word-spacing:1.685672px;}
.ws15{word-spacing:2.821408px;}
.ws8{word-spacing:2.932013px;}
.ws26{word-spacing:2.940960px;}
.ws25{word-spacing:3.000735px;}
.ws37{word-spacing:3.060511px;}
.ws2{word-spacing:3.093408px;}
.ws1e{word-spacing:3.180062px;}
.ws31{word-spacing:3.239838px;}
.ws9{word-spacing:3.254803px;}
.ws1{word-spacing:3.299613px;}
.ws4{word-spacing:3.308602px;}
.ws16{word-spacing:3.359389px;}
.wsc{word-spacing:3.416198px;}
.ws1b{word-spacing:3.419164px;}
.ws27{word-spacing:3.478940px;}
.ws2d{word-spacing:3.538716px;}
.ws3b{word-spacing:3.598491px;}
.ws39{word-spacing:3.658267px;}
.ws2e{word-spacing:3.777818px;}
.ws14{word-spacing:3.801728px;}
.ws1c{word-spacing:3.957145px;}
.ws33{word-spacing:4.016920px;}
.ws3c{word-spacing:4.136472px;}
.ws41{word-spacing:4.196247px;}
.ws19{word-spacing:4.256023px;}
.wsb{word-spacing:4.492166px;}
.ws20{word-spacing:4.495125px;}
.ws3f{word-spacing:4.913554px;}
.ws10{word-spacing:4.976352px;}
.ws32{word-spacing:5.092881px;}
.wsd{word-spacing:5.299142px;}
.ws2f{word-spacing:5.391759px;}
.ws12{word-spacing:5.630862px;}
.ws1a{word-spacing:5.690637px;}
.wse{word-spacing:5.944723px;}
.ws30{word-spacing:6.049291px;}
.ws7{word-spacing:6.159917px;}
.ws1d{word-spacing:6.407944px;}
.ws18{word-spacing:6.587271px;}
.ws21{word-spacing:7.244803px;}
.ws38{word-spacing:7.364354px;}
.wsf{word-spacing:8.042861px;}
.ws17{word-spacing:8.201212px;}
.ws24{word-spacing:8.559866px;}
.ws3e{word-spacing:8.739193px;}
.wsa{word-spacing:9.118829px;}
.ws3d{word-spacing:9.157622px;}
.ws2b{word-spacing:9.217398px;}
.ws40{word-spacing:10.114032px;}
.ws29{word-spacing:21.519216px;}
.ws36{word-spacing:24.526820px;}
.ws2a{word-spacing:24.776379px;}
.ws34{word-spacing:25.995213px;}
.ws3a{word-spacing:26.455392px;}
.ws13{word-spacing:29.331772px;}
.ws0{word-spacing:32.192873px;}
._4{margin-left:-29.887800px;}
._5{margin-left:-27.652388px;}
._3{margin-left:-5.956051px;}
._7{margin-left:-4.088711px;}
._0{margin-left:-2.668393px;}
._2{margin-left:-1.613941px;}
._6{width:1.506334px;}
._1{width:2.668393px;}
._8{width:21.079278px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y27{bottom:193.617000px;}
.y26{bottom:211.549500px;}
.y25{bottom:229.482000px;}
.y24{bottom:247.414500px;}
.y23{bottom:265.347000px;}
.y22{bottom:283.281000px;}
.y21{bottom:301.213500px;}
.y20{bottom:319.146000px;}
.y1f{bottom:337.078500px;}
.y1e{bottom:355.011000px;}
.y1d{bottom:372.943500px;}
.y1c{bottom:390.877500px;}
.y47{bottom:402.402000px;}
.y1b{bottom:408.810000px;}
.y46{bottom:420.336000px;}
.y1a{bottom:426.742500px;}
.y45{bottom:438.268500px;}
.y19{bottom:444.675000px;}
.y44{bottom:456.201000px;}
.y18{bottom:470.827500px;}
.y43{bottom:474.133500px;}
.y42{bottom:503.592000px;}
.y17{bottom:505.198500px;}
.y41{bottom:521.524500px;}
.y16{bottom:523.131000px;}
.y40{bottom:539.458500px;}
.y3f{bottom:557.391000px;}
.y15{bottom:569.022000px;}
.y3e{bottom:575.323500px;}
.y14{bottom:585.460500px;}
.y3d{bottom:593.256000px;}
.y13{bottom:601.899000px;}
.y3c{bottom:611.188500px;}
.y12{bottom:618.337500px;}
.y3b{bottom:629.121000px;}
.y11{bottom:634.774500px;}
.y3a{bottom:647.055000px;}
.y10{bottom:651.213000px;}
.y39{bottom:664.987500px;}
.yf{bottom:667.651500px;}
.y38{bottom:682.920000px;}
.ye{bottom:684.090000px;}
.yd{bottom:700.528500px;}
.y37{bottom:700.852500px;}
.yc{bottom:716.967000px;}
.y36{bottom:718.785000px;}
.yb{bottom:733.405500px;}
.y35{bottom:736.717500px;}
.ya{bottom:749.844000px;}
.y34{bottom:754.651500px;}
.y9{bottom:766.282500px;}
.y33{bottom:772.584000px;}
.y8{bottom:782.721000px;}
.y32{bottom:790.516500px;}
.y7{bottom:799.159500px;}
.y31{bottom:808.449000px;}
.y6{bottom:815.596500px;}
.y30{bottom:826.381500px;}
.y2f{bottom:855.840000px;}
.y5{bottom:872.695500px;}
.y2e{bottom:873.774000px;}
.y4{bottom:889.134000px;}
.y2d{bottom:891.706500px;}
.y2c{bottom:909.639000px;}
.y3{bottom:920.455500px;}
.y2b{bottom:927.571500px;}
.y2a{bottom:945.504000px;}
.y29{bottom:963.436500px;}
.y2{bottom:972.403500px;}
.y28{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.h4{height:37.336090px;}
.h5{height:37.658880px;}
.h3{height:38.519654px;}
.h6{height:42.082022px;}
.h2{height:44.831700px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:183.094500px;}
.x9{left:185.170500px;}
.x4{left:208.021500px;}
.x3{left:221.679000px;}
.x2{left:226.840500px;}
.x6{left:228.228000px;}
.x1{left:236.104500px;}
.x8{left:292.918500px;}
.x7{left:301.002000px;}
.x5{left:312.624000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:17.855208pt;}
.ls1{letter-spacing:17.860563pt;}
.ws11{word-spacing:-16.970957pt;}
.ws5{word-spacing:-0.836864pt;}
.ws22{word-spacing:-0.680113pt;}
.ws28{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws1f{word-spacing:0.000000pt;}
.ws6{word-spacing:0.167373pt;}
.ws23{word-spacing:0.648233pt;}
.ws2c{word-spacing:0.807635pt;}
.ws35{word-spacing:1.498375pt;}
.ws15{word-spacing:2.507919pt;}
.ws8{word-spacing:2.606234pt;}
.ws26{word-spacing:2.614186pt;}
.ws25{word-spacing:2.667320pt;}
.ws37{word-spacing:2.720454pt;}
.ws2{word-spacing:2.749696pt;}
.ws1e{word-spacing:2.826722pt;}
.ws31{word-spacing:2.879856pt;}
.ws9{word-spacing:2.893158pt;}
.ws1{word-spacing:2.932989pt;}
.ws4{word-spacing:2.940979pt;}
.ws16{word-spacing:2.986123pt;}
.wsc{word-spacing:3.036621pt;}
.ws1b{word-spacing:3.039257pt;}
.ws27{word-spacing:3.092391pt;}
.ws2d{word-spacing:3.145525pt;}
.ws3b{word-spacing:3.198659pt;}
.ws39{word-spacing:3.251793pt;}
.ws2e{word-spacing:3.358060pt;}
.ws14{word-spacing:3.379314pt;}
.ws1c{word-spacing:3.517462pt;}
.ws33{word-spacing:3.570596pt;}
.ws3c{word-spacing:3.676864pt;}
.ws41{word-spacing:3.729997pt;}
.ws19{word-spacing:3.783131pt;}
.wsb{word-spacing:3.993037pt;}
.ws20{word-spacing:3.995667pt;}
.ws3f{word-spacing:4.367604pt;}
.ws10{word-spacing:4.423424pt;}
.ws32{word-spacing:4.527005pt;}
.wsd{word-spacing:4.710349pt;}
.ws2f{word-spacing:4.792675pt;}
.ws12{word-spacing:5.005210pt;}
.ws1a{word-spacing:5.058344pt;}
.wse{word-spacing:5.284198pt;}
.ws30{word-spacing:5.377147pt;}
.ws7{word-spacing:5.475482pt;}
.ws1d{word-spacing:5.695951pt;}
.ws18{word-spacing:5.855352pt;}
.ws21{word-spacing:6.439825pt;}
.ws38{word-spacing:6.546092pt;}
.wsf{word-spacing:7.149210pt;}
.ws17{word-spacing:7.289967pt;}
.ws24{word-spacing:7.608770pt;}
.ws3e{word-spacing:7.768171pt;}
.wsa{word-spacing:8.105626pt;}
.ws3d{word-spacing:8.140108pt;}
.ws2b{word-spacing:8.193242pt;}
.ws40{word-spacing:8.990250pt;}
.ws29{word-spacing:19.128192pt;}
.ws36{word-spacing:21.801618pt;}
.ws2a{word-spacing:22.023448pt;}
.ws34{word-spacing:23.106856pt;}
.ws3a{word-spacing:23.515904pt;}
.ws13{word-spacing:26.072686pt;}
.ws0{word-spacing:28.615887pt;}
._4{margin-left:-26.566933pt;}
._5{margin-left:-24.579901pt;}
._3{margin-left:-5.294268pt;}
._7{margin-left:-3.634410pt;}
._0{margin-left:-2.371905pt;}
._2{margin-left:-1.434614pt;}
._6{width:1.338963pt;}
._1{width:2.371905pt;}
._8{width:18.737136pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:172.104000pt;}
.y26{bottom:188.044000pt;}
.y25{bottom:203.984000pt;}
.y24{bottom:219.924000pt;}
.y23{bottom:235.864000pt;}
.y22{bottom:251.805333pt;}
.y21{bottom:267.745333pt;}
.y20{bottom:283.685333pt;}
.y1f{bottom:299.625333pt;}
.y1e{bottom:315.565333pt;}
.y1d{bottom:331.505333pt;}
.y1c{bottom:347.446667pt;}
.y47{bottom:357.690667pt;}
.y1b{bottom:363.386667pt;}
.y46{bottom:373.632000pt;}
.y1a{bottom:379.326667pt;}
.y45{bottom:389.572000pt;}
.y19{bottom:395.266667pt;}
.y44{bottom:405.512000pt;}
.y18{bottom:418.513333pt;}
.y43{bottom:421.452000pt;}
.y42{bottom:447.637333pt;}
.y17{bottom:449.065333pt;}
.y41{bottom:463.577333pt;}
.y16{bottom:465.005333pt;}
.y40{bottom:479.518667pt;}
.y3f{bottom:495.458667pt;}
.y15{bottom:505.797333pt;}
.y3e{bottom:511.398667pt;}
.y14{bottom:520.409333pt;}
.y3d{bottom:527.338667pt;}
.y13{bottom:535.021333pt;}
.y3c{bottom:543.278667pt;}
.y12{bottom:549.633333pt;}
.y3b{bottom:559.218667pt;}
.y11{bottom:564.244000pt;}
.y3a{bottom:575.160000pt;}
.y10{bottom:578.856000pt;}
.y39{bottom:591.100000pt;}
.yf{bottom:593.468000pt;}
.y38{bottom:607.040000pt;}
.ye{bottom:608.080000pt;}
.yd{bottom:622.692000pt;}
.y37{bottom:622.980000pt;}
.yc{bottom:637.304000pt;}
.y36{bottom:638.920000pt;}
.yb{bottom:651.916000pt;}
.y35{bottom:654.860000pt;}
.ya{bottom:666.528000pt;}
.y34{bottom:670.801333pt;}
.y9{bottom:681.140000pt;}
.y33{bottom:686.741333pt;}
.y8{bottom:695.752000pt;}
.y32{bottom:702.681333pt;}
.y7{bottom:710.364000pt;}
.y31{bottom:718.621333pt;}
.y6{bottom:724.974667pt;}
.y30{bottom:734.561333pt;}
.y2f{bottom:760.746667pt;}
.y5{bottom:775.729333pt;}
.y2e{bottom:776.688000pt;}
.y4{bottom:790.341333pt;}
.y2d{bottom:792.628000pt;}
.y2c{bottom:808.568000pt;}
.y3{bottom:818.182667pt;}
.y2b{bottom:824.508000pt;}
.y2a{bottom:840.448000pt;}
.y29{bottom:856.388000pt;}
.y2{bottom:864.358667pt;}
.y28{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.h4{height:33.187635pt;}
.h5{height:33.474560pt;}
.h3{height:34.239693pt;}
.h6{height:37.406242pt;}
.h2{height:39.850400pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:162.750667pt;}
.x9{left:164.596000pt;}
.x4{left:184.908000pt;}
.x3{left:197.048000pt;}
.x2{left:201.636000pt;}
.x6{left:202.869333pt;}
.x1{left:209.870667pt;}
.x8{left:260.372000pt;}
.x7{left:267.557333pt;}
.x5{left:277.888000pt;}
}




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