
    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_c9ee16b72788abdd1ee2ffaa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_c9ee16b72788abdd1ee2ffaa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_969895522b0164921e0bcb37.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e7d597dc6707c2ef45dca3f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_768af44ea00018cf3bca63ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_f1c7afa1778cdd629fdd305c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934091;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_2879a1435bb768c95a0f8e95.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.990000;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_085be0ec4fbbc8af81c9b27a.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_958119aac8a89f8bb8f915c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972000;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_fe3f82eb7daa642611abff81.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_339631c4f4205f471818e707.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_eb472a4aa23fad776774285e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_441af892966ab4e7926331a3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_08745865b49559b263f81d07.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_969895522b0164921e0bcb37.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_deaf6047673a3fed2a69dd37.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.945813;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;}
.ma{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.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);}
.m7{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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls5{letter-spacing:-3.312000px;}
.ls8{letter-spacing:-0.864000px;}
.ls1{letter-spacing:-0.768000px;}
.ls4{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.072000px;}
.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;}
}
.ws8{word-spacing:-18.720000px;}
.ws3{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.904000px;}
.ws9{word-spacing:-13.752000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:0.072000px;}
.wse{word-spacing:0.144000px;}
.ws5{word-spacing:0.216000px;}
.wsf{word-spacing:0.288000px;}
.wsb{word-spacing:0.432000px;}
.ws1{word-spacing:0.720000px;}
.ws11{word-spacing:0.864000px;}
.wsd{word-spacing:3.312000px;}
.ws6{word-spacing:33.621000px;}
.ws10{word-spacing:202.500000px;}
.ws7{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._30{margin-left:-85.039200px;}
._1e{margin-left:-18.720000px;}
._6{margin-left:-15.206400px;}
._c{margin-left:-14.133600px;}
._4{margin-left:-12.448800px;}
._13{margin-left:-11.390400px;}
._8{margin-left:-10.346400px;}
._7{margin-left:-9.028800px;}
._5{margin-left:-7.999200px;}
._23{margin-left:-6.984000px;}
._e{margin-left:-5.910000px;}
._2{margin-left:-4.386000px;}
._14{margin-left:-3.355200px;}
._9{margin-left:-2.167200px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._16{width:2.815200px;}
._1f{width:4.536000px;}
._3{width:5.587200px;}
._27{width:7.034400px;}
._2e{width:8.964000px;}
._a{width:10.447200px;}
._d{width:11.923200px;}
._2c{width:13.082400px;}
._2f{width:14.342400px;}
._29{width:15.364800px;}
._37{width:16.466400px;}
._18{width:17.668800px;}
._33{width:24.724800px;}
._20{width:26.647200px;}
._11{width:28.396800px;}
._31{width:30.420000px;}
._1a{width:31.500000px;}
._26{width:32.983200px;}
._3c{width:34.171200px;}
._32{width:35.568000px;}
._1b{width:37.346400px;}
._19{width:39.636000px;}
._3d{width:45.072000px;}
._3a{width:46.764000px;}
._40{width:48.744000px;}
._17{width:50.220000px;}
._12{width:52.783200px;}
._34{width:55.908000px;}
._28{width:57.945600px;}
._35{width:59.047200px;}
._36{width:61.322400px;}
._1c{width:65.253600px;}
._b{width:66.312000px;}
._21{width:68.580000px;}
._2d{width:71.071200px;}
._25{width:79.704000px;}
._2a{width:84.636000px;}
._22{width:86.213400px;}
._38{width:87.912000px;}
._3b{width:93.520800px;}
._15{width:104.522400px;}
._3e{width:108.288000px;}
._f{width:112.240800px;}
._3f{width:113.760000px;}
._1d{width:130.176000px;}
._2b{width:133.567200px;}
._39{width:177.541200px;}
._10{width:197.280000px;}
._24{width:457.488000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y86{bottom:93.960150px;}
.y5c{bottom:94.521300px;}
.y29{bottom:96.493050px;}
.y85{bottom:116.460150px;}
.y5b{bottom:117.021300px;}
.y28{bottom:118.993050px;}
.y84{bottom:138.960150px;}
.y5a{bottom:139.521300px;}
.y27{bottom:141.493050px;}
.y83{bottom:161.460150px;}
.y59{bottom:162.021300px;}
.y26{bottom:163.993050px;}
.y82{bottom:183.960150px;}
.y58{bottom:184.521300px;}
.y25{bottom:186.493050px;}
.y81{bottom:206.460150px;}
.y57{bottom:207.021300px;}
.y24{bottom:208.993050px;}
.y80{bottom:228.960150px;}
.y56{bottom:229.521300px;}
.y7f{bottom:251.460150px;}
.y55{bottom:252.021300px;}
.y23{bottom:253.993050px;}
.y89{bottom:273.955650px;}
.y7e{bottom:273.960150px;}
.y54{bottom:274.521300px;}
.y22{bottom:276.493050px;}
.y7d{bottom:296.460150px;}
.y53{bottom:297.021300px;}
.y21{bottom:298.993050px;}
.y7c{bottom:318.960150px;}
.y52{bottom:319.521300px;}
.y20{bottom:321.493050px;}
.y7b{bottom:341.460150px;}
.y51{bottom:342.021300px;}
.y1f{bottom:343.993050px;}
.y7a{bottom:363.960150px;}
.y50{bottom:364.521300px;}
.y1e{bottom:366.493050px;}
.y79{bottom:386.460150px;}
.y4f{bottom:387.021300px;}
.y1d{bottom:388.993050px;}
.y78{bottom:408.960150px;}
.y4e{bottom:409.521300px;}
.y1c{bottom:411.493050px;}
.y77{bottom:431.460150px;}
.y4d{bottom:432.021300px;}
.y1b{bottom:433.993050px;}
.y76{bottom:453.960150px;}
.y4c{bottom:454.521300px;}
.y32{bottom:456.139950px;}
.y1a{bottom:456.493050px;}
.y75{bottom:476.460150px;}
.y5d{bottom:477.021300px;}
.y31{bottom:478.639950px;}
.y19{bottom:478.993050px;}
.y74{bottom:498.960150px;}
.y4b{bottom:499.521300px;}
.y30{bottom:501.139950px;}
.y18{bottom:501.493050px;}
.y88{bottom:521.455650px;}
.y73{bottom:521.460150px;}
.y4a{bottom:522.021300px;}
.y17{bottom:523.993050px;}
.y2f{bottom:541.639950px;}
.y72{bottom:543.960150px;}
.y49{bottom:544.521300px;}
.y16{bottom:546.493050px;}
.y71{bottom:566.460150px;}
.y48{bottom:567.021300px;}
.y15{bottom:568.993050px;}
.y2e{bottom:586.639950px;}
.y70{bottom:588.960150px;}
.y47{bottom:589.521300px;}
.y14{bottom:591.493050px;}
.y6f{bottom:611.460150px;}
.y46{bottom:612.021300px;}
.y13{bottom:613.993050px;}
.y2d{bottom:627.139950px;}
.y6e{bottom:633.960150px;}
.y45{bottom:634.521300px;}
.y8a{bottom:634.860150px;}
.y12{bottom:636.493050px;}
.y6d{bottom:656.460150px;}
.y44{bottom:657.021300px;}
.y11{bottom:658.993050px;}
.y2c{bottom:663.139950px;}
.y6c{bottom:678.960150px;}
.y43{bottom:679.521300px;}
.y10{bottom:681.493050px;}
.y2b{bottom:699.139950px;}
.y6b{bottom:701.460150px;}
.y42{bottom:702.021300px;}
.yf{bottom:703.993050px;}
.y6a{bottom:723.960150px;}
.y41{bottom:724.521300px;}
.ye{bottom:726.493050px;}
.y2a{bottom:735.139950px;}
.y87{bottom:746.455650px;}
.y69{bottom:746.460150px;}
.y40{bottom:747.021300px;}
.yd{bottom:748.993050px;}
.y68{bottom:768.960150px;}
.y3f{bottom:769.521300px;}
.yc{bottom:771.493050px;}
.y67{bottom:791.460150px;}
.y3e{bottom:792.021300px;}
.yb{bottom:793.993050px;}
.y66{bottom:813.960150px;}
.y3d{bottom:814.521300px;}
.ya{bottom:835.984050px;}
.y65{bottom:836.460150px;}
.y3c{bottom:837.021300px;}
.y9{bottom:856.988550px;}
.y64{bottom:858.960150px;}
.y3b{bottom:859.521300px;}
.y8{bottom:877.993050px;}
.y63{bottom:881.460150px;}
.y3a{bottom:882.021300px;}
.y7{bottom:898.993050px;}
.y62{bottom:903.960150px;}
.y39{bottom:904.521300px;}
.y61{bottom:926.460150px;}
.y38{bottom:927.021300px;}
.y6{bottom:944.000550px;}
.y60{bottom:948.960150px;}
.y37{bottom:949.521300px;}
.y5{bottom:969.493050px;}
.y5f{bottom:971.460150px;}
.y36{bottom:972.021300px;}
.y5e{bottom:993.960150px;}
.y35{bottom:994.521300px;}
.y4{bottom:1024.374150px;}
.y34{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.hd{height:37.494141px;}
.h9{height:40.634766px;}
.ha{height:41.660156px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h8{height:46.200000px;}
.h7{height:50.400000px;}
.he{height:50.418000px;}
.hc{height:52.492611px;}
.hb{height:53.467611px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xd{left:71.253150px;}
.xc{left:73.559100px;}
.xf{left:85.039350px;}
.x15{left:164.089350px;}
.x11{left:176.374650px;}
.xa{left:224.187900px;}
.xb{left:245.447700px;}
.x5{left:269.967150px;}
.x10{left:374.424150px;}
.x12{left:399.929550px;}
.x4{left:412.272150px;}
.x6{left:421.324650px;}
.x8{left:498.547650px;}
.x7{left:557.488800px;}
.x9{left:574.233150px;}
.x13{left:580.132050px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.x16{left:647.671350px;}
.x14{left:710.580450px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls5{letter-spacing:-2.944000pt;}
.ls8{letter-spacing:-0.768000pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws3{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.248000pt;}
.ws9{word-spacing:-12.224000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:0.064000pt;}
.wse{word-spacing:0.128000pt;}
.ws5{word-spacing:0.192000pt;}
.wsf{word-spacing:0.256000pt;}
.wsb{word-spacing:0.384000pt;}
.ws1{word-spacing:0.640000pt;}
.ws11{word-spacing:0.768000pt;}
.wsd{word-spacing:2.944000pt;}
.ws6{word-spacing:29.885333pt;}
.ws10{word-spacing:180.000000pt;}
.ws7{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._30{margin-left:-75.590400pt;}
._1e{margin-left:-16.640000pt;}
._6{margin-left:-13.516800pt;}
._c{margin-left:-12.563200pt;}
._4{margin-left:-11.065600pt;}
._13{margin-left:-10.124800pt;}
._8{margin-left:-9.196800pt;}
._7{margin-left:-8.025600pt;}
._5{margin-left:-7.110400pt;}
._23{margin-left:-6.208000pt;}
._e{margin-left:-5.253333pt;}
._2{margin-left:-3.898667pt;}
._14{margin-left:-2.982400pt;}
._9{margin-left:-1.926400pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._16{width:2.502400pt;}
._1f{width:4.032000pt;}
._3{width:4.966400pt;}
._27{width:6.252800pt;}
._2e{width:7.968000pt;}
._a{width:9.286400pt;}
._d{width:10.598400pt;}
._2c{width:11.628800pt;}
._2f{width:12.748800pt;}
._29{width:13.657600pt;}
._37{width:14.636800pt;}
._18{width:15.705600pt;}
._33{width:21.977600pt;}
._20{width:23.686400pt;}
._11{width:25.241600pt;}
._31{width:27.040000pt;}
._1a{width:28.000000pt;}
._26{width:29.318400pt;}
._3c{width:30.374400pt;}
._32{width:31.616000pt;}
._1b{width:33.196800pt;}
._19{width:35.232000pt;}
._3d{width:40.064000pt;}
._3a{width:41.568000pt;}
._40{width:43.328000pt;}
._17{width:44.640000pt;}
._12{width:46.918400pt;}
._34{width:49.696000pt;}
._28{width:51.507200pt;}
._35{width:52.486400pt;}
._36{width:54.508800pt;}
._1c{width:58.003200pt;}
._b{width:58.944000pt;}
._21{width:60.960000pt;}
._2d{width:63.174400pt;}
._25{width:70.848000pt;}
._2a{width:75.232000pt;}
._22{width:76.634133pt;}
._38{width:78.144000pt;}
._3b{width:83.129600pt;}
._15{width:92.908800pt;}
._3e{width:96.256000pt;}
._f{width:99.769600pt;}
._3f{width:101.120000pt;}
._1d{width:115.712000pt;}
._2b{width:118.726400pt;}
._39{width:157.814400pt;}
._10{width:175.360000pt;}
._24{width:406.656000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y86{bottom:83.520133pt;}
.y5c{bottom:84.018933pt;}
.y29{bottom:85.771600pt;}
.y85{bottom:103.520133pt;}
.y5b{bottom:104.018933pt;}
.y28{bottom:105.771600pt;}
.y84{bottom:123.520133pt;}
.y5a{bottom:124.018933pt;}
.y27{bottom:125.771600pt;}
.y83{bottom:143.520133pt;}
.y59{bottom:144.018933pt;}
.y26{bottom:145.771600pt;}
.y82{bottom:163.520133pt;}
.y58{bottom:164.018933pt;}
.y25{bottom:165.771600pt;}
.y81{bottom:183.520133pt;}
.y57{bottom:184.018933pt;}
.y24{bottom:185.771600pt;}
.y80{bottom:203.520133pt;}
.y56{bottom:204.018933pt;}
.y7f{bottom:223.520133pt;}
.y55{bottom:224.018933pt;}
.y23{bottom:225.771600pt;}
.y89{bottom:243.516133pt;}
.y7e{bottom:243.520133pt;}
.y54{bottom:244.018933pt;}
.y22{bottom:245.771600pt;}
.y7d{bottom:263.520133pt;}
.y53{bottom:264.018933pt;}
.y21{bottom:265.771600pt;}
.y7c{bottom:283.520133pt;}
.y52{bottom:284.018933pt;}
.y20{bottom:285.771600pt;}
.y7b{bottom:303.520133pt;}
.y51{bottom:304.018933pt;}
.y1f{bottom:305.771600pt;}
.y7a{bottom:323.520133pt;}
.y50{bottom:324.018933pt;}
.y1e{bottom:325.771600pt;}
.y79{bottom:343.520133pt;}
.y4f{bottom:344.018933pt;}
.y1d{bottom:345.771600pt;}
.y78{bottom:363.520133pt;}
.y4e{bottom:364.018933pt;}
.y1c{bottom:365.771600pt;}
.y77{bottom:383.520133pt;}
.y4d{bottom:384.018933pt;}
.y1b{bottom:385.771600pt;}
.y76{bottom:403.520133pt;}
.y4c{bottom:404.018933pt;}
.y32{bottom:405.457733pt;}
.y1a{bottom:405.771600pt;}
.y75{bottom:423.520133pt;}
.y5d{bottom:424.018933pt;}
.y31{bottom:425.457733pt;}
.y19{bottom:425.771600pt;}
.y74{bottom:443.520133pt;}
.y4b{bottom:444.018933pt;}
.y30{bottom:445.457733pt;}
.y18{bottom:445.771600pt;}
.y88{bottom:463.516133pt;}
.y73{bottom:463.520133pt;}
.y4a{bottom:464.018933pt;}
.y17{bottom:465.771600pt;}
.y2f{bottom:481.457733pt;}
.y72{bottom:483.520133pt;}
.y49{bottom:484.018933pt;}
.y16{bottom:485.771600pt;}
.y71{bottom:503.520133pt;}
.y48{bottom:504.018933pt;}
.y15{bottom:505.771600pt;}
.y2e{bottom:521.457733pt;}
.y70{bottom:523.520133pt;}
.y47{bottom:524.018933pt;}
.y14{bottom:525.771600pt;}
.y6f{bottom:543.520133pt;}
.y46{bottom:544.018933pt;}
.y13{bottom:545.771600pt;}
.y2d{bottom:557.457733pt;}
.y6e{bottom:563.520133pt;}
.y45{bottom:564.018933pt;}
.y8a{bottom:564.320133pt;}
.y12{bottom:565.771600pt;}
.y6d{bottom:583.520133pt;}
.y44{bottom:584.018933pt;}
.y11{bottom:585.771600pt;}
.y2c{bottom:589.457733pt;}
.y6c{bottom:603.520133pt;}
.y43{bottom:604.018933pt;}
.y10{bottom:605.771600pt;}
.y2b{bottom:621.457733pt;}
.y6b{bottom:623.520133pt;}
.y42{bottom:624.018933pt;}
.yf{bottom:625.771600pt;}
.y6a{bottom:643.520133pt;}
.y41{bottom:644.018933pt;}
.ye{bottom:645.771600pt;}
.y2a{bottom:653.457733pt;}
.y87{bottom:663.516133pt;}
.y69{bottom:663.520133pt;}
.y40{bottom:664.018933pt;}
.yd{bottom:665.771600pt;}
.y68{bottom:683.520133pt;}
.y3f{bottom:684.018933pt;}
.yc{bottom:685.771600pt;}
.y67{bottom:703.520133pt;}
.y3e{bottom:704.018933pt;}
.yb{bottom:705.771600pt;}
.y66{bottom:723.520133pt;}
.y3d{bottom:724.018933pt;}
.ya{bottom:743.096933pt;}
.y65{bottom:743.520133pt;}
.y3c{bottom:744.018933pt;}
.y9{bottom:761.767600pt;}
.y64{bottom:763.520133pt;}
.y3b{bottom:764.018933pt;}
.y8{bottom:780.438267pt;}
.y63{bottom:783.520133pt;}
.y3a{bottom:784.018933pt;}
.y7{bottom:799.104933pt;}
.y62{bottom:803.520133pt;}
.y39{bottom:804.018933pt;}
.y61{bottom:823.520133pt;}
.y38{bottom:824.018933pt;}
.y6{bottom:839.111600pt;}
.y60{bottom:843.520133pt;}
.y37{bottom:844.018933pt;}
.y5{bottom:861.771600pt;}
.y5f{bottom:863.520133pt;}
.y36{bottom:864.018933pt;}
.y5e{bottom:883.520133pt;}
.y35{bottom:884.018933pt;}
.y4{bottom:910.554800pt;}
.y34{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.hd{height:33.328125pt;}
.h9{height:36.119792pt;}
.ha{height:37.031250pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h8{height:41.066667pt;}
.h7{height:44.800000pt;}
.he{height:44.816000pt;}
.hc{height:46.660099pt;}
.hb{height:47.526765pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xd{left:63.336133pt;}
.xc{left:65.385867pt;}
.xf{left:75.590533pt;}
.x15{left:145.857200pt;}
.x11{left:156.777467pt;}
.xa{left:199.278133pt;}
.xb{left:218.175733pt;}
.x5{left:239.970800pt;}
.x10{left:332.821467pt;}
.x12{left:355.492933pt;}
.x4{left:366.464133pt;}
.x6{left:374.510800pt;}
.x8{left:443.153467pt;}
.x7{left:495.545600pt;}
.x9{left:510.429467pt;}
.x13{left:515.672933pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.x16{left:575.707867pt;}
.x14{left:631.627067pt;}
}




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