
    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_194a880470fdf57ca43e3acd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_8e6fba98582889fa23b1aeb8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.038000;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_63231e8bdbf5f8b45e79791f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.038000;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;}
.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);}
.m16{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);}
.m14{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);}
.m6{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);}
.m1d{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);}
.m2{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m1{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);}
.m19{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);}
.m1f{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);}
.m18{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);}
.m15{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);}
.m1e{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);}
.m4{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.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.mb{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m8{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);}
.m3{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);}
.m11{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);}
.me{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);}
.m1b{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);}
.m1c{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.md{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);}
.m5{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);}
.m17{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);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-2.988000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.993422px;}
.ls0{letter-spacing:10.759560px;}
.ls3{letter-spacing:46.622412px;}
.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:-0.107597px;}
.wsd{word-spacing:-0.059776px;}
.ws16{word-spacing:-0.050809px;}
.ws3{word-spacing:-0.044832px;}
.ws29{word-spacing:-0.038854px;}
.ws2c{word-spacing:0.000000px;}
.ws4{word-spacing:5.003195px;}
.ws5{word-spacing:5.218387px;}
.ws46{word-spacing:7.621440px;}
.ws45{word-spacing:8.069760px;}
.ws3b{word-spacing:8.787072px;}
.ws32{word-spacing:8.831904px;}
.ws33{word-spacing:8.966400px;}
.ws35{word-spacing:9.056064px;}
.ws28{word-spacing:9.459552px;}
.ws37{word-spacing:9.594048px;}
.ws2b{word-spacing:9.596987px;}
.ws2a{word-spacing:9.674696px;}
.ws4f{word-spacing:9.773376px;}
.ws20{word-spacing:9.863040px;}
.ws4e{word-spacing:9.952704px;}
.ws3c{word-spacing:9.997536px;}
.ws26{word-spacing:10.042368px;}
.ws41{word-spacing:10.176864px;}
.ws4b{word-spacing:10.221696px;}
.ws39{word-spacing:10.759680px;}
.ws22{word-spacing:10.804512px;}
.ws1f{word-spacing:10.849344px;}
.ws21{word-spacing:10.894176px;}
.ws23{word-spacing:10.939008px;}
.ws1b{word-spacing:10.983840px;}
.ws1e{word-spacing:11.028672px;}
.ws2{word-spacing:11.073504px;}
.ws2f{word-spacing:11.118336px;}
.ws30{word-spacing:11.163168px;}
.ws1a{word-spacing:11.208000px;}
.ws24{word-spacing:11.252832px;}
.ws27{word-spacing:11.297664px;}
.ws3a{word-spacing:11.342496px;}
.ws2e{word-spacing:11.516474px;}
.ws3f{word-spacing:11.566656px;}
.ws0{word-spacing:11.668226px;}
.ws1{word-spacing:11.811688px;}
.ws50{word-spacing:11.880480px;}
.ws36{word-spacing:12.104640px;}
.ws19{word-spacing:12.194304px;}
.ws4a{word-spacing:12.283968px;}
.ws10{word-spacing:12.295826px;}
.ws47{word-spacing:12.328800px;}
.ws31{word-spacing:12.508128px;}
.ws11{word-spacing:12.549872px;}
.wse{word-spacing:12.651491px;}
.wsc{word-spacing:12.768288px;}
.wsa{word-spacing:12.769344px;}
.wsb{word-spacing:12.771168px;}
.wsf{word-spacing:12.803918px;}
.ws13{word-spacing:12.854728px;}
.ws48{word-spacing:12.911616px;}
.ws12{word-spacing:12.956346px;}
.ws15{word-spacing:13.007155px;}
.ws4d{word-spacing:13.180608px;}
.ws1d{word-spacing:13.270272px;}
.ws9{word-spacing:13.288205px;}
.ws34{word-spacing:13.315104px;}
.ws3d{word-spacing:13.539264px;}
.ws49{word-spacing:13.897920px;}
.ws4c{word-spacing:14.032416px;}
.ws14{word-spacing:14.124958px;}
.ws18{word-spacing:14.391072px;}
.ws38{word-spacing:14.585246px;}
.ws1c{word-spacing:14.749728px;}
.ws40{word-spacing:14.839392px;}
.ws3e{word-spacing:14.884224px;}
.ws42{word-spacing:14.973888px;}
.ws43{word-spacing:15.242880px;}
.ws44{word-spacing:15.601536px;}
.ws17{word-spacing:15.691200px;}
.ws8{word-spacing:19.193975px;}
.ws25{word-spacing:20.622720px;}
.ws6{word-spacing:26.253619px;}
.ws2d{word-spacing:46.579492px;}
._3{margin-left:-10.663910px;}
._4{margin-left:-4.626662px;}
._2{margin-left:-2.734752px;}
._0{margin-left:-1.386797px;}
._c{width:1.368716px;}
._9{width:9.997536px;}
._b{width:11.925312px;}
._1{width:12.956448px;}
._7{width:14.038288px;}
._6{width:15.547738px;}
._8{width:17.579983px;}
._a{width:23.402304px;}
._5{width:30.748763px;}
._f{width:40.300973px;}
._d{width:41.828256px;}
._e{width:45.190656px;}
._10{width:56.846976px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(20,86,169);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.854200px;}
.fs6{font-size:41.842800px;}
.fs1{font-size:44.832000px;}
.fsb{font-size:46.625400px;}
.fs0{font-size:47.820600px;}
.fsa{font-size:50.809200px;}
.fs2{font-size:53.797800px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:59.775600px;}
.fs5{font-size:64.754400px;}
.fs4{font-size:77.708400px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3d{bottom:50.809500px;}
.y3c{bottom:97.714500px;}
.y7e{bottom:104.758500px;}
.y3b{bottom:111.912000px;}
.y7d{bottom:120.450000px;}
.y7c{bottom:136.141500px;}
.y7b{bottom:151.833000px;}
.y7a{bottom:167.523000px;}
.y3a{bottom:168.469500px;}
.y29{bottom:177.588000px;}
.y79{bottom:183.214500px;}
.y39{bottom:184.161000px;}
.y28{bottom:193.278000px;}
.y78{bottom:198.906000px;}
.y38{bottom:199.852500px;}
.y27{bottom:208.969500px;}
.y77{bottom:214.597500px;}
.y37{bottom:215.544000px;}
.y26{bottom:224.661000px;}
.yb4{bottom:228.115500px;}
.y76{bottom:230.289000px;}
.y36{bottom:231.234000px;}
.y25{bottom:240.352500px;}
.yb3{bottom:243.805500px;}
.y75{bottom:245.979000px;}
.y35{bottom:246.925500px;}
.y24{bottom:256.044000px;}
.yb2{bottom:259.497000px;}
.y74{bottom:261.670500px;}
.y34{bottom:262.617000px;}
.y23{bottom:271.734000px;}
.yb1{bottom:275.188500px;}
.y73{bottom:277.362000px;}
.y33{bottom:278.308500px;}
.y22{bottom:287.425500px;}
.yb0{bottom:290.880000px;}
.y72{bottom:293.053500px;}
.y32{bottom:293.998500px;}
.y21{bottom:303.117000px;}
.yaf{bottom:306.570000px;}
.y71{bottom:308.743500px;}
.y31{bottom:309.690000px;}
.y20{bottom:318.808500px;}
.yae{bottom:322.261500px;}
.y70{bottom:324.435000px;}
.y30{bottom:325.381500px;}
.y1f{bottom:334.498500px;}
.yad{bottom:337.953000px;}
.y6f{bottom:340.126500px;}
.y2f{bottom:341.073000px;}
.y1e{bottom:350.190000px;}
.yac{bottom:353.644500px;}
.y6e{bottom:355.818000px;}
.y2e{bottom:356.763000px;}
.y1d{bottom:365.881500px;}
.yab{bottom:369.336000px;}
.y6d{bottom:371.508000px;}
.y2d{bottom:372.454500px;}
.y1c{bottom:381.573000px;}
.yaa{bottom:385.026000px;}
.y6c{bottom:387.199500px;}
.y2c{bottom:388.146000px;}
.y1b{bottom:397.263000px;}
.ya9{bottom:400.717500px;}
.y6b{bottom:402.891000px;}
.y2b{bottom:403.837500px;}
.y1a{bottom:412.954500px;}
.ya8{bottom:416.409000px;}
.y6a{bottom:418.582500px;}
.y2a{bottom:419.529000px;}
.ya7{bottom:432.100500px;}
.y19{bottom:446.893500px;}
.ya6{bottom:447.790500px;}
.y69{bottom:451.792500px;}
.ya5{bottom:463.482000px;}
.ya4{bottom:479.173500px;}
.y68{bottom:490.231500px;}
.ya3{bottom:494.865000px;}
.y67{bottom:505.923000px;}
.y18{bottom:508.911000px;}
.ya2{bottom:510.555000px;}
.y66{bottom:521.614500px;}
.ya1{bottom:526.246500px;}
.y17{bottom:536.557500px;}
.y65{bottom:537.306000px;}
.ya0{bottom:541.938000px;}
.y16{bottom:552.996000px;}
.y9f{bottom:561.364500px;}
.y64{bottom:568.687500px;}
.y15{bottom:569.434500px;}
.y63{bottom:584.379000px;}
.y14{bottom:585.873000px;}
.y9e{bottom:596.334000px;}
.y62{bottom:600.070500px;}
.y13{bottom:602.311500px;}
.y9d{bottom:612.025500px;}
.y61{bottom:615.760500px;}
.y12{bottom:618.750000px;}
.y9c{bottom:627.717000px;}
.y60{bottom:631.452000px;}
.y11{bottom:635.188500px;}
.y9b{bottom:643.407000px;}
.y5f{bottom:647.143500px;}
.y10{bottom:651.625500px;}
.y9a{bottom:659.098500px;}
.y5e{bottom:662.835000px;}
.yf{bottom:668.064000px;}
.y99{bottom:674.790000px;}
.y5d{bottom:678.526500px;}
.y98{bottom:690.481500px;}
.ye{bottom:691.228500px;}
.y5c{bottom:694.216500px;}
.y97{bottom:706.171500px;}
.y5b{bottom:709.908000px;}
.y96{bottom:721.863000px;}
.y5a{bottom:725.599500px;}
.y95{bottom:737.554500px;}
.y59{bottom:741.291000px;}
.yd{bottom:742.038000px;}
.y94{bottom:753.246000px;}
.y58{bottom:756.981000px;}
.y93{bottom:768.937500px;}
.y57{bottom:772.672500px;}
.yc{bottom:783.133500px;}
.y92{bottom:784.627500px;}
.y56{bottom:788.364000px;}
.y91{bottom:800.319000px;}
.y55{bottom:804.055500px;}
.yb{bottom:807.043500px;}
.y90{bottom:816.010500px;}
.y54{bottom:819.745500px;}
.y8f{bottom:831.702000px;}
.ya{bottom:832.185000px;}
.y53{bottom:835.437000px;}
.y8e{bottom:847.392000px;}
.y52{bottom:851.128500px;}
.y8d{bottom:863.083500px;}
.y9{bottom:863.830500px;}
.y51{bottom:866.820000px;}
.y50{bottom:882.511500px;}
.y4f{bottom:898.201500px;}
.y8{bottom:910.156500px;}
.y8c{bottom:913.146000px;}
.y4e{bottom:913.893000px;}
.y8b{bottom:928.837500px;}
.y4d{bottom:929.584500px;}
.y8a{bottom:944.529000px;}
.y4c{bottom:945.276000px;}
.y7{bottom:950.506500px;}
.y89{bottom:960.219000px;}
.y4b{bottom:960.966000px;}
.y88{bottom:975.910500px;}
.y4a{bottom:976.657500px;}
.y6{bottom:990.855000px;}
.y87{bottom:991.602000px;}
.y49{bottom:992.349000px;}
.y86{bottom:1007.293500px;}
.y48{bottom:1008.040500px;}
.y85{bottom:1022.983500px;}
.y47{bottom:1023.732000px;}
.y84{bottom:1038.675000px;}
.y46{bottom:1039.422000px;}
.y5{bottom:1043.158500px;}
.y83{bottom:1054.366500px;}
.y45{bottom:1055.113500px;}
.y82{bottom:1070.058000px;}
.y44{bottom:1070.805000px;}
.y4{bottom:1081.096500px;}
.y81{bottom:1085.748000px;}
.y43{bottom:1086.496500px;}
.y80{bottom:1101.439500px;}
.y42{bottom:1102.186500px;}
.y41{bottom:1117.878000px;}
.y3{bottom:1126.402500px;}
.y7f{bottom:1129.833000px;}
.y40{bottom:1133.569500px;}
.y2{bottom:1148.955000px;}
.y3f{bottom:1149.261000px;}
.y1{bottom:1172.866500px;}
.y3e{bottom:1215.760500px;}
.hb{height:31.549610px;}
.h9{height:33.976354px;}
.h4{height:36.403584px;}
.he{height:36.694190px;}
.h2{height:37.634812px;}
.hf{height:37.859825px;}
.h3{height:38.830327px;}
.hd{height:41.257070px;}
.h5{height:42.338869px;}
.h6{height:43.683814px;}
.ha{height:43.684301px;}
.hc{height:47.043397px;}
.h8{height:78.614573px;}
.h7{height:84.678682px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:81.654000px;}
.x8{left:99.586500px;}
.x4{left:139.252500px;}
.x5{left:186.570000px;}
.x6{left:196.527000px;}
.x1{left:458.241000px;}
.x3{left:459.906000px;}
.x10{left:463.582500px;}
.x9{left:466.590000px;}
.xe{left:467.841000px;}
.xd{left:469.417500px;}
.xf{left:471.517500px;}
.xb{left:473.512500px;}
.x11{left:476.356500px;}
.xa{left:477.492000px;}
.xc{left:490.339500px;}
.x7{left:782.346000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-2.656000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.660819pt;}
.ls0{letter-spacing:9.564053pt;}
.ls3{letter-spacing:41.442144pt;}
.ws7{word-spacing:-0.095642pt;}
.wsd{word-spacing:-0.053134pt;}
.ws16{word-spacing:-0.045164pt;}
.ws3{word-spacing:-0.039851pt;}
.ws29{word-spacing:-0.034537pt;}
.ws2c{word-spacing:0.000000pt;}
.ws4{word-spacing:4.447285pt;}
.ws5{word-spacing:4.638566pt;}
.ws46{word-spacing:6.774613pt;}
.ws45{word-spacing:7.173120pt;}
.ws3b{word-spacing:7.810731pt;}
.ws32{word-spacing:7.850581pt;}
.ws33{word-spacing:7.970133pt;}
.ws35{word-spacing:8.049835pt;}
.ws28{word-spacing:8.408491pt;}
.ws37{word-spacing:8.528043pt;}
.ws2b{word-spacing:8.530655pt;}
.ws2a{word-spacing:8.599730pt;}
.ws4f{word-spacing:8.687445pt;}
.ws20{word-spacing:8.767147pt;}
.ws4e{word-spacing:8.846848pt;}
.ws3c{word-spacing:8.886699pt;}
.ws26{word-spacing:8.926549pt;}
.ws41{word-spacing:9.046101pt;}
.ws4b{word-spacing:9.085952pt;}
.ws39{word-spacing:9.564160pt;}
.ws22{word-spacing:9.604011pt;}
.ws1f{word-spacing:9.643861pt;}
.ws21{word-spacing:9.683712pt;}
.ws23{word-spacing:9.723563pt;}
.ws1b{word-spacing:9.763413pt;}
.ws1e{word-spacing:9.803264pt;}
.ws2{word-spacing:9.843115pt;}
.ws2f{word-spacing:9.882965pt;}
.ws30{word-spacing:9.922816pt;}
.ws1a{word-spacing:9.962667pt;}
.ws24{word-spacing:10.002517pt;}
.ws27{word-spacing:10.042368pt;}
.ws3a{word-spacing:10.082219pt;}
.ws2e{word-spacing:10.236866pt;}
.ws3f{word-spacing:10.281472pt;}
.ws0{word-spacing:10.371757pt;}
.ws1{word-spacing:10.499278pt;}
.ws50{word-spacing:10.560427pt;}
.ws36{word-spacing:10.759680pt;}
.ws19{word-spacing:10.839381pt;}
.ws4a{word-spacing:10.919083pt;}
.ws10{word-spacing:10.929623pt;}
.ws47{word-spacing:10.958933pt;}
.ws31{word-spacing:11.118336pt;}
.ws11{word-spacing:11.155442pt;}
.wse{word-spacing:11.245770pt;}
.wsc{word-spacing:11.349589pt;}
.wsa{word-spacing:11.350528pt;}
.wsb{word-spacing:11.352149pt;}
.wsf{word-spacing:11.381261pt;}
.ws13{word-spacing:11.426425pt;}
.ws48{word-spacing:11.476992pt;}
.ws12{word-spacing:11.516752pt;}
.ws15{word-spacing:11.561916pt;}
.ws4d{word-spacing:11.716096pt;}
.ws1d{word-spacing:11.795797pt;}
.ws9{word-spacing:11.811738pt;}
.ws34{word-spacing:11.835648pt;}
.ws3d{word-spacing:12.034901pt;}
.ws49{word-spacing:12.353707pt;}
.ws4c{word-spacing:12.473259pt;}
.ws14{word-spacing:12.555518pt;}
.ws18{word-spacing:12.792064pt;}
.ws38{word-spacing:12.964663pt;}
.ws1c{word-spacing:13.110869pt;}
.ws40{word-spacing:13.190571pt;}
.ws3e{word-spacing:13.230421pt;}
.ws42{word-spacing:13.310123pt;}
.ws43{word-spacing:13.549227pt;}
.ws44{word-spacing:13.868032pt;}
.ws17{word-spacing:13.947733pt;}
.ws8{word-spacing:17.061311pt;}
.ws25{word-spacing:18.331307pt;}
.ws6{word-spacing:23.336550pt;}
.ws2d{word-spacing:41.403993pt;}
._3{margin-left:-9.479031pt;}
._4{margin-left:-4.112589pt;}
._2{margin-left:-2.430891pt;}
._0{margin-left:-1.232709pt;}
._c{width:1.216636pt;}
._9{width:8.886699pt;}
._b{width:10.600277pt;}
._1{width:11.516843pt;}
._7{width:12.478478pt;}
._6{width:13.820211pt;}
._8{width:15.626652pt;}
._a{width:20.802048pt;}
._5{width:27.332234pt;}
._f{width:35.823087pt;}
._d{width:37.180672pt;}
._e{width:40.169472pt;}
._10{width:50.530645pt;}
.fs8{font-size:34.537067pt;}
.fs6{font-size:37.193600pt;}
.fs1{font-size:39.850667pt;}
.fsb{font-size:41.444800pt;}
.fs0{font-size:42.507200pt;}
.fsa{font-size:45.163733pt;}
.fs2{font-size:47.820267pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:53.133867pt;}
.fs5{font-size:57.559467pt;}
.fs4{font-size:69.074133pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:45.164000pt;}
.y3c{bottom:86.857333pt;}
.y7e{bottom:93.118667pt;}
.y3b{bottom:99.477333pt;}
.y7d{bottom:107.066667pt;}
.y7c{bottom:121.014667pt;}
.y7b{bottom:134.962667pt;}
.y7a{bottom:148.909333pt;}
.y3a{bottom:149.750667pt;}
.y29{bottom:157.856000pt;}
.y79{bottom:162.857333pt;}
.y39{bottom:163.698667pt;}
.y28{bottom:171.802667pt;}
.y78{bottom:176.805333pt;}
.y38{bottom:177.646667pt;}
.y27{bottom:185.750667pt;}
.y77{bottom:190.753333pt;}
.y37{bottom:191.594667pt;}
.y26{bottom:199.698667pt;}
.yb4{bottom:202.769333pt;}
.y76{bottom:204.701333pt;}
.y36{bottom:205.541333pt;}
.y25{bottom:213.646667pt;}
.yb3{bottom:216.716000pt;}
.y75{bottom:218.648000pt;}
.y35{bottom:219.489333pt;}
.y24{bottom:227.594667pt;}
.yb2{bottom:230.664000pt;}
.y74{bottom:232.596000pt;}
.y34{bottom:233.437333pt;}
.y23{bottom:241.541333pt;}
.yb1{bottom:244.612000pt;}
.y73{bottom:246.544000pt;}
.y33{bottom:247.385333pt;}
.y22{bottom:255.489333pt;}
.yb0{bottom:258.560000pt;}
.y72{bottom:260.492000pt;}
.y32{bottom:261.332000pt;}
.y21{bottom:269.437333pt;}
.yaf{bottom:272.506667pt;}
.y71{bottom:274.438667pt;}
.y31{bottom:275.280000pt;}
.y20{bottom:283.385333pt;}
.yae{bottom:286.454667pt;}
.y70{bottom:288.386667pt;}
.y30{bottom:289.228000pt;}
.y1f{bottom:297.332000pt;}
.yad{bottom:300.402667pt;}
.y6f{bottom:302.334667pt;}
.y2f{bottom:303.176000pt;}
.y1e{bottom:311.280000pt;}
.yac{bottom:314.350667pt;}
.y6e{bottom:316.282667pt;}
.y2e{bottom:317.122667pt;}
.y1d{bottom:325.228000pt;}
.yab{bottom:328.298667pt;}
.y6d{bottom:330.229333pt;}
.y2d{bottom:331.070667pt;}
.y1c{bottom:339.176000pt;}
.yaa{bottom:342.245333pt;}
.y6c{bottom:344.177333pt;}
.y2c{bottom:345.018667pt;}
.y1b{bottom:353.122667pt;}
.ya9{bottom:356.193333pt;}
.y6b{bottom:358.125333pt;}
.y2b{bottom:358.966667pt;}
.y1a{bottom:367.070667pt;}
.ya8{bottom:370.141333pt;}
.y6a{bottom:372.073333pt;}
.y2a{bottom:372.914667pt;}
.ya7{bottom:384.089333pt;}
.y19{bottom:397.238667pt;}
.ya6{bottom:398.036000pt;}
.y69{bottom:401.593333pt;}
.ya5{bottom:411.984000pt;}
.ya4{bottom:425.932000pt;}
.y68{bottom:435.761333pt;}
.ya3{bottom:439.880000pt;}
.y67{bottom:449.709333pt;}
.y18{bottom:452.365333pt;}
.ya2{bottom:453.826667pt;}
.y66{bottom:463.657333pt;}
.ya1{bottom:467.774667pt;}
.y17{bottom:476.940000pt;}
.y65{bottom:477.605333pt;}
.ya0{bottom:481.722667pt;}
.y16{bottom:491.552000pt;}
.y9f{bottom:498.990667pt;}
.y64{bottom:505.500000pt;}
.y15{bottom:506.164000pt;}
.y63{bottom:519.448000pt;}
.y14{bottom:520.776000pt;}
.y9e{bottom:530.074667pt;}
.y62{bottom:533.396000pt;}
.y13{bottom:535.388000pt;}
.y9d{bottom:544.022667pt;}
.y61{bottom:547.342667pt;}
.y12{bottom:550.000000pt;}
.y9c{bottom:557.970667pt;}
.y60{bottom:561.290667pt;}
.y11{bottom:564.612000pt;}
.y9b{bottom:571.917333pt;}
.y5f{bottom:575.238667pt;}
.y10{bottom:579.222667pt;}
.y9a{bottom:585.865333pt;}
.y5e{bottom:589.186667pt;}
.yf{bottom:593.834667pt;}
.y99{bottom:599.813333pt;}
.y5d{bottom:603.134667pt;}
.y98{bottom:613.761333pt;}
.ye{bottom:614.425333pt;}
.y5c{bottom:617.081333pt;}
.y97{bottom:627.708000pt;}
.y5b{bottom:631.029333pt;}
.y96{bottom:641.656000pt;}
.y5a{bottom:644.977333pt;}
.y95{bottom:655.604000pt;}
.y59{bottom:658.925333pt;}
.yd{bottom:659.589333pt;}
.y94{bottom:669.552000pt;}
.y58{bottom:672.872000pt;}
.y93{bottom:683.500000pt;}
.y57{bottom:686.820000pt;}
.yc{bottom:696.118667pt;}
.y92{bottom:697.446667pt;}
.y56{bottom:700.768000pt;}
.y91{bottom:711.394667pt;}
.y55{bottom:714.716000pt;}
.yb{bottom:717.372000pt;}
.y90{bottom:725.342667pt;}
.y54{bottom:728.662667pt;}
.y8f{bottom:739.290667pt;}
.ya{bottom:739.720000pt;}
.y53{bottom:742.610667pt;}
.y8e{bottom:753.237333pt;}
.y52{bottom:756.558667pt;}
.y8d{bottom:767.185333pt;}
.y9{bottom:767.849333pt;}
.y51{bottom:770.506667pt;}
.y50{bottom:784.454667pt;}
.y4f{bottom:798.401333pt;}
.y8{bottom:809.028000pt;}
.y8c{bottom:811.685333pt;}
.y4e{bottom:812.349333pt;}
.y8b{bottom:825.633333pt;}
.y4d{bottom:826.297333pt;}
.y8a{bottom:839.581333pt;}
.y4c{bottom:840.245333pt;}
.y7{bottom:844.894667pt;}
.y89{bottom:853.528000pt;}
.y4b{bottom:854.192000pt;}
.y88{bottom:867.476000pt;}
.y4a{bottom:868.140000pt;}
.y6{bottom:880.760000pt;}
.y87{bottom:881.424000pt;}
.y49{bottom:882.088000pt;}
.y86{bottom:895.372000pt;}
.y48{bottom:896.036000pt;}
.y85{bottom:909.318667pt;}
.y47{bottom:909.984000pt;}
.y84{bottom:923.266667pt;}
.y46{bottom:923.930667pt;}
.y5{bottom:927.252000pt;}
.y83{bottom:937.214667pt;}
.y45{bottom:937.878667pt;}
.y82{bottom:951.162667pt;}
.y44{bottom:951.826667pt;}
.y4{bottom:960.974667pt;}
.y81{bottom:965.109333pt;}
.y43{bottom:965.774667pt;}
.y80{bottom:979.057333pt;}
.y42{bottom:979.721333pt;}
.y41{bottom:993.669333pt;}
.y3{bottom:1001.246667pt;}
.y7f{bottom:1004.296000pt;}
.y40{bottom:1007.617333pt;}
.y2{bottom:1021.293333pt;}
.y3f{bottom:1021.565333pt;}
.y1{bottom:1042.548000pt;}
.y3e{bottom:1080.676000pt;}
.hb{height:28.044098pt;}
.h9{height:30.201203pt;}
.h4{height:32.358741pt;}
.he{height:32.617058pt;}
.h2{height:33.453166pt;}
.hf{height:33.653178pt;}
.h3{height:34.515846pt;}
.hd{height:36.672951pt;}
.h5{height:37.634550pt;}
.h6{height:38.830057pt;}
.ha{height:38.830490pt;}
.hc{height:41.816353pt;}
.h8{height:69.879620pt;}
.h7{height:75.269939pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.581333pt;}
.x8{left:88.521333pt;}
.x4{left:123.780000pt;}
.x5{left:165.840000pt;}
.x6{left:174.690667pt;}
.x1{left:407.325333pt;}
.x3{left:408.805333pt;}
.x10{left:412.073333pt;}
.x9{left:414.746667pt;}
.xe{left:415.858667pt;}
.xd{left:417.260000pt;}
.xf{left:419.126667pt;}
.xb{left:420.900000pt;}
.x11{left:423.428000pt;}
.xa{left:424.437333pt;}
.xc{left:435.857333pt;}
.x7{left:695.418667pt;}
}




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