
    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_ea9ed9a74639e8dba578ff6c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_19497e187ead89367cbf12ca.woff')format("woff");}.ff2{font-family:ff2;line-height:0.683000;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_0e294b90a435e5fd6d6ab7b0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_81c37faf986775054ecb2fa4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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_52a7c22272a2614bcf7bbe56.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_290f1a10d2ed690898d5e374.woff')format("woff");}.ff6{font-family:ff6;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_efba3cc41b7f74bee46f3a3f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_421c79b051dd0e3097a40282.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_42a498ad3a8a3f16fed8c23d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5ec825208ec622e030d5c914.woff')format("woff");}.ffa{font-family:ffa;line-height:0.684000;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.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);}
.m10{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);}
.m3{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);}
.m14{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);}
.mb{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);}
.m8{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);}
.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);}
.m11{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);}
.m16{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);}
.mf{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m12{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);}
.m6{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);}
.md{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);}
.m17{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);}
.m5{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);}
.mc{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);}
.m18{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);}
.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);}
.m7{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);}
.m4{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);}
.m1{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);}
.m9{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;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v3{vertical-align:22.854000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.002222px;}
.ls3{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.987468px;}
.ls2{letter-spacing:2.990525px;}
.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;}
}
.ws36{word-spacing:-38.937826px;}
.ws37{word-spacing:-28.955301px;}
.ws23{word-spacing:-14.943900px;}
.ws1d{word-spacing:-13.449600px;}
.ws1c{word-spacing:-8.966400px;}
.ws49{word-spacing:-2.630126px;}
.ws3a{word-spacing:-2.570351px;}
.ws42{word-spacing:-1.733492px;}
.ws1e{word-spacing:-1.374839px;}
.ws30{word-spacing:-1.016185px;}
.ws38{word-spacing:-0.956410px;}
.ws43{word-spacing:-0.896634px;}
.ws2a{word-spacing:-0.836858px;}
.ws29{word-spacing:-0.358654px;}
.ws46{word-spacing:-0.329770px;}
.ws28{word-spacing:-0.321662px;}
.wsf{word-spacing:-0.298878px;}
.ws19{word-spacing:-0.239102px;}
.ws40{word-spacing:-0.179327px;}
.wsa{word-spacing:-0.119551px;}
.ws48{word-spacing:-0.071731px;}
.ws27{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.ws34{word-spacing:-0.003833px;}
.ws2{word-spacing:0.000000px;}
.ws4a{word-spacing:0.045378px;}
.ws7{word-spacing:0.059776px;}
.ws31{word-spacing:0.119551px;}
.ws1f{word-spacing:0.179327px;}
.ws5{word-spacing:0.239102px;}
.ws3b{word-spacing:0.298878px;}
.ws6{word-spacing:0.358654px;}
.ws9{word-spacing:0.657532px;}
.ws41{word-spacing:0.659461px;}
.ws16{word-spacing:0.896634px;}
.ws20{word-spacing:1.075961px;}
.ws39{word-spacing:1.195512px;}
.wse{word-spacing:1.315063px;}
.ws2f{word-spacing:1.374839px;}
.ws32{word-spacing:1.434614px;}
.ws3c{word-spacing:1.673717px;}
.ws11{word-spacing:1.793268px;}
.ws12{word-spacing:1.912819px;}
.ws8{word-spacing:2.391024px;}
.ws44{word-spacing:2.450800px;}
.wsb{word-spacing:2.559324px;}
.wsc{word-spacing:2.565344px;}
.wsd{word-spacing:2.570351px;}
.ws3f{word-spacing:2.929004px;}
.ws26{word-spacing:3.287658px;}
.ws15{word-spacing:3.347434px;}
.ws33{word-spacing:3.765863px;}
.ws18{word-spacing:3.825638px;}
.ws22{word-spacing:3.845378px;}
.ws2e{word-spacing:3.945190px;}
.ws2d{word-spacing:3.971226px;}
.ws17{word-spacing:4.004965px;}
.ws21{word-spacing:4.124516px;}
.ws25{word-spacing:4.303843px;}
.ws4{word-spacing:4.961375px;}
.ws3{word-spacing:4.988873px;}
.ws13{word-spacing:5.140702px;}
.ws35{word-spacing:7.053521px;}
.ws1b{word-spacing:7.470163px;}
.ws3e{word-spacing:7.830050px;}
.ws3d{word-spacing:7.830604px;}
.ws14{word-spacing:8.009930px;}
.ws47{word-spacing:8.069706px;}
.ws2b{word-spacing:8.129482px;}
.ws24{word-spacing:8.368584px;}
.ws1{word-spacing:14.884124px;}
.ws2c{word-spacing:17.855971px;}
.ws10{word-spacing:17.861069px;}
.ws0{word-spacing:25.719808px;}
.ws45{word-spacing:71.659469px;}
._2{margin-left:-6.575316px;}
._11{margin-left:-4.782048px;}
._6{margin-left:-3.400990px;}
._0{margin-left:-1.859263px;}
._e{width:2.978141px;}
._9{width:13.999930px;}
._13{width:16.007422px;}
._3{width:18.237778px;}
._d{width:19.965050px;}
._5{width:21.471880px;}
._12{width:22.780723px;}
._8{width:24.388445px;}
._4{width:26.427035px;}
._14{width:27.735878px;}
._10{width:28.871615px;}
._c{width:31.215302px;}
._1{width:32.846983px;}
._a{width:34.418306px;}
._f{width:44.054617px;}
._b{width:59.775600px;}
._7{width:71.731200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5d{bottom:63.168000px;}
.y2d{bottom:78.184500px;}
.y2c{bottom:93.129000px;}
.y5c{bottom:108.000000px;}
.y5b{bottom:124.363500px;}
.y5a{bottom:140.727000px;}
.y2b{bottom:145.599000px;}
.y59{bottom:157.090500px;}
.y2a{bottom:167.692500px;}
.y84{bottom:168.460500px;}
.y29{bottom:184.056000px;}
.y83{bottom:184.824000px;}
.y58{bottom:191.272500px;}
.y28{bottom:200.419500px;}
.y82{bottom:212.557500px;}
.y57{bottom:216.448500px;}
.y27{bottom:216.783000px;}
.y81{bottom:228.921000px;}
.y56{bottom:232.812000px;}
.y26{bottom:233.146500px;}
.y80{bottom:256.654500px;}
.y25{bottom:257.730000px;}
.y55{bottom:257.988000px;}
.y24{bottom:274.093500px;}
.y54{bottom:274.351500px;}
.y7f{bottom:284.388000px;}
.y23{bottom:290.457000px;}
.y7e{bottom:300.751500px;}
.y22{bottom:306.820500px;}
.y53{bottom:308.532000px;}
.y21{bottom:323.184000px;}
.y7d{bottom:328.485000px;}
.y20{bottom:339.547500px;}
.y52{bottom:339.771000px;}
.y7c{bottom:354.672000px;}
.y1f{bottom:355.911000px;}
.y1e{bottom:372.276000px;}
.y51{bottom:379.647000px;}
.y50{bottom:396.012000px;}
.y7b{bottom:396.999000px;}
.y1d{bottom:402.504000px;}
.y4f{bottom:412.375500px;}
.y7a{bottom:413.362500px;}
.y4e{bottom:428.739000px;}
.y1c{bottom:439.858500px;}
.y79{bottom:447.768000px;}
.y1b{bottom:456.222000px;}
.y4d{bottom:459.976500px;}
.y1a{bottom:472.585500px;}
.y19{bottom:488.949000px;}
.y78{bottom:490.095000px;}
.y4c{bottom:499.854000px;}
.y18{bottom:505.314000px;}
.y77{bottom:506.458500px;}
.y4b{bottom:516.217500px;}
.y76{bottom:522.822000px;}
.y4a{bottom:532.581000px;}
.y75{bottom:539.187000px;}
.y17{bottom:540.382500px;}
.y74{bottom:555.550500px;}
.y49{bottom:557.163000px;}
.y48{bottom:573.528000px;}
.y47{bottom:589.891500px;}
.y73{bottom:589.956000px;}
.y16{bottom:591.556500px;}
.y46{bottom:606.255000px;}
.y15{bottom:607.920000px;}
.y14{bottom:624.283500px;}
.y72{bottom:632.283000px;}
.y13{bottom:640.647000px;}
.y45{bottom:642.838500px;}
.y71{bottom:648.646500px;}
.y12{bottom:657.010500px;}
.y70{bottom:665.010000px;}
.y11{bottom:673.375500px;}
.y6f{bottom:681.373500px;}
.y44{bottom:688.618500px;}
.y10{bottom:689.739000px;}
.y6e{bottom:697.737000px;}
.y43{bottom:704.982000px;}
.yf{bottom:706.102500px;}
.y6d{bottom:714.100500px;}
.y42{bottom:721.345500px;}
.ye{bottom:722.466000px;}
.y41{bottom:737.709000px;}
.yd{bottom:738.829500px;}
.y6c{bottom:744.064500px;}
.y40{bottom:754.072500px;}
.yc{bottom:755.193000px;}
.y3f{bottom:770.436000px;}
.yb{bottom:771.556500px;}
.y90{bottom:778.804500px;}
.y6b{bottom:780.487500px;}
.y3e{bottom:786.799500px;}
.ya{bottom:787.920000px;}
.y6a{bottom:796.851000px;}
.y3d{bottom:803.163000px;}
.y9{bottom:804.283500px;}
.y8f{bottom:807.123000px;}
.y69{bottom:813.214500px;}
.y3c{bottom:819.526500px;}
.y8e{bottom:823.486500px;}
.y68{bottom:829.578000px;}
.y3b{bottom:835.890000px;}
.y8{bottom:840.145500px;}
.y67{bottom:845.943000px;}
.y8d{bottom:851.806500px;}
.y3a{bottom:852.253500px;}
.y66{bottom:862.306500px;}
.y8c{bottom:868.170000px;}
.y39{bottom:876.837000px;}
.y65{bottom:892.269000px;}
.y38{bottom:893.200500px;}
.y8b{bottom:896.488500px;}
.y7{bottom:901.918500px;}
.y37{bottom:909.564000px;}
.y6{bottom:918.282000px;}
.y8a{bottom:924.807000px;}
.y36{bottom:925.927500px;}
.y64{bottom:928.692000px;}
.y5{bottom:934.645500px;}
.y89{bottom:941.170500px;}
.y35{bottom:942.291000px;}
.y63{bottom:945.055500px;}
.y4{bottom:951.009000px;}
.y88{bottom:957.534000px;}
.y34{bottom:958.654500px;}
.y62{bottom:961.419000px;}
.y3{bottom:967.372500px;}
.y33{bottom:975.018000px;}
.y61{bottom:986.002500px;}
.y87{bottom:987.646500px;}
.y32{bottom:999.601500px;}
.y60{bottom:1002.366000px;}
.y86{bottom:1004.010000px;}
.y2{bottom:1013.299500px;}
.y31{bottom:1015.965000px;}
.y5f{bottom:1018.729500px;}
.y85{bottom:1020.373500px;}
.y30{bottom:1032.328500px;}
.y5e{bottom:1035.093000px;}
.y1{bottom:1043.188500px;}
.y2f{bottom:1048.692000px;}
.y2e{bottom:1065.055500px;}
.h7{height:16.677504px;}
.h5{height:41.544042px;}
.h9{height:42.141798px;}
.h3{height:42.620003px;}
.h6{height:51.144346px;}
.h4{height:53.200284px;}
.h8{height:54.774384px;}
.h2{height:69.102616px;}
.h1{height:73.647481px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:162.000000px;}
.x10{left:175.449000px;}
.x11{left:176.944500px;}
.xa{left:179.733000px;}
.x1{left:185.677500px;}
.xb{left:203.095500px;}
.x8{left:215.544000px;}
.x4{left:287.176500px;}
.x5{left:338.508000px;}
.xc{left:359.154000px;}
.xd{left:374.097000px;}
.x3{left:404.821500px;}
.x6{left:412.921500px;}
.x2{left:420.021000px;}
.x7{left:425.637000px;}
.xe{left:433.110000px;}
.xf{left:455.263500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.001975pt;}
.ls3{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.655527pt;}
.ls2{letter-spacing:2.658245pt;}
.ws36{word-spacing:-34.611401pt;}
.ws37{word-spacing:-25.738045pt;}
.ws23{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-11.955200pt;}
.ws1c{word-spacing:-7.970133pt;}
.ws49{word-spacing:-2.337890pt;}
.ws3a{word-spacing:-2.284756pt;}
.ws42{word-spacing:-1.540882pt;}
.ws1e{word-spacing:-1.222079pt;}
.ws30{word-spacing:-0.903276pt;}
.ws38{word-spacing:-0.850142pt;}
.ws43{word-spacing:-0.797008pt;}
.ws2a{word-spacing:-0.743874pt;}
.ws29{word-spacing:-0.318803pt;}
.ws46{word-spacing:-0.293129pt;}
.ws28{word-spacing:-0.285922pt;}
.wsf{word-spacing:-0.265669pt;}
.ws19{word-spacing:-0.212535pt;}
.ws40{word-spacing:-0.159402pt;}
.wsa{word-spacing:-0.106268pt;}
.ws48{word-spacing:-0.063761pt;}
.ws27{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047821pt;}
.ws34{word-spacing:-0.003407pt;}
.ws2{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.040336pt;}
.ws7{word-spacing:0.053134pt;}
.ws31{word-spacing:0.106268pt;}
.ws1f{word-spacing:0.159402pt;}
.ws5{word-spacing:0.212535pt;}
.ws3b{word-spacing:0.265669pt;}
.ws6{word-spacing:0.318803pt;}
.ws9{word-spacing:0.584473pt;}
.ws41{word-spacing:0.586188pt;}
.ws16{word-spacing:0.797008pt;}
.ws20{word-spacing:0.956410pt;}
.ws39{word-spacing:1.062677pt;}
.wse{word-spacing:1.168945pt;}
.ws2f{word-spacing:1.222079pt;}
.ws32{word-spacing:1.275213pt;}
.ws3c{word-spacing:1.487748pt;}
.ws11{word-spacing:1.594016pt;}
.ws12{word-spacing:1.700284pt;}
.ws8{word-spacing:2.125355pt;}
.ws44{word-spacing:2.178489pt;}
.wsb{word-spacing:2.274955pt;}
.wsc{word-spacing:2.280305pt;}
.wsd{word-spacing:2.284756pt;}
.ws3f{word-spacing:2.603559pt;}
.ws26{word-spacing:2.922363pt;}
.ws15{word-spacing:2.975497pt;}
.ws33{word-spacing:3.347434pt;}
.ws18{word-spacing:3.400567pt;}
.ws22{word-spacing:3.418114pt;}
.ws2e{word-spacing:3.506835pt;}
.ws2d{word-spacing:3.529979pt;}
.ws17{word-spacing:3.559969pt;}
.ws21{word-spacing:3.666237pt;}
.ws25{word-spacing:3.825638pt;}
.ws4{word-spacing:4.410111pt;}
.ws3{word-spacing:4.434554pt;}
.ws13{word-spacing:4.569513pt;}
.ws35{word-spacing:6.269796pt;}
.ws1b{word-spacing:6.640145pt;}
.ws3e{word-spacing:6.960044pt;}
.ws3d{word-spacing:6.960537pt;}
.ws14{word-spacing:7.119938pt;}
.ws47{word-spacing:7.173072pt;}
.ws2b{word-spacing:7.226206pt;}
.ws24{word-spacing:7.438741pt;}
.ws1{word-spacing:13.230333pt;}
.ws2c{word-spacing:15.871974pt;}
.ws10{word-spacing:15.876506pt;}
.ws0{word-spacing:22.862051pt;}
.ws45{word-spacing:63.697306pt;}
._2{margin-left:-5.844725pt;}
._11{margin-left:-4.250709pt;}
._6{margin-left:-3.023102pt;}
._0{margin-left:-1.652678pt;}
._e{width:2.647236pt;}
._9{width:12.444382pt;}
._13{width:14.228819pt;}
._3{width:16.211358pt;}
._d{width:17.746711pt;}
._5{width:19.086115pt;}
._12{width:20.249532pt;}
._8{width:21.678618pt;}
._4{width:23.490698pt;}
._14{width:24.654114pt;}
._10{width:25.663658pt;}
._c{width:27.746935pt;}
._1{width:29.197318pt;}
._a{width:30.594050pt;}
._f{width:39.159660pt;}
._b{width:53.133867pt;}
._7{width:63.761067pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:56.149333pt;}
.y2d{bottom:69.497333pt;}
.y2c{bottom:82.781333pt;}
.y5c{bottom:96.000000pt;}
.y5b{bottom:110.545333pt;}
.y5a{bottom:125.090667pt;}
.y2b{bottom:129.421333pt;}
.y59{bottom:139.636000pt;}
.y2a{bottom:149.060000pt;}
.y84{bottom:149.742667pt;}
.y29{bottom:163.605333pt;}
.y83{bottom:164.288000pt;}
.y58{bottom:170.020000pt;}
.y28{bottom:178.150667pt;}
.y82{bottom:188.940000pt;}
.y57{bottom:192.398667pt;}
.y27{bottom:192.696000pt;}
.y81{bottom:203.485333pt;}
.y56{bottom:206.944000pt;}
.y26{bottom:207.241333pt;}
.y80{bottom:228.137333pt;}
.y25{bottom:229.093333pt;}
.y55{bottom:229.322667pt;}
.y24{bottom:243.638667pt;}
.y54{bottom:243.868000pt;}
.y7f{bottom:252.789333pt;}
.y23{bottom:258.184000pt;}
.y7e{bottom:267.334667pt;}
.y22{bottom:272.729333pt;}
.y53{bottom:274.250667pt;}
.y21{bottom:287.274667pt;}
.y7d{bottom:291.986667pt;}
.y20{bottom:301.820000pt;}
.y52{bottom:302.018667pt;}
.y7c{bottom:315.264000pt;}
.y1f{bottom:316.365333pt;}
.y1e{bottom:330.912000pt;}
.y51{bottom:337.464000pt;}
.y50{bottom:352.010667pt;}
.y7b{bottom:352.888000pt;}
.y1d{bottom:357.781333pt;}
.y4f{bottom:366.556000pt;}
.y7a{bottom:367.433333pt;}
.y4e{bottom:381.101333pt;}
.y1c{bottom:390.985333pt;}
.y79{bottom:398.016000pt;}
.y1b{bottom:405.530667pt;}
.y4d{bottom:408.868000pt;}
.y1a{bottom:420.076000pt;}
.y19{bottom:434.621333pt;}
.y78{bottom:435.640000pt;}
.y4c{bottom:444.314667pt;}
.y18{bottom:449.168000pt;}
.y77{bottom:450.185333pt;}
.y4b{bottom:458.860000pt;}
.y76{bottom:464.730667pt;}
.y4a{bottom:473.405333pt;}
.y75{bottom:479.277333pt;}
.y17{bottom:480.340000pt;}
.y74{bottom:493.822667pt;}
.y49{bottom:495.256000pt;}
.y48{bottom:509.802667pt;}
.y47{bottom:524.348000pt;}
.y73{bottom:524.405333pt;}
.y16{bottom:525.828000pt;}
.y46{bottom:538.893333pt;}
.y15{bottom:540.373333pt;}
.y14{bottom:554.918667pt;}
.y72{bottom:562.029333pt;}
.y13{bottom:569.464000pt;}
.y45{bottom:571.412000pt;}
.y71{bottom:576.574667pt;}
.y12{bottom:584.009333pt;}
.y70{bottom:591.120000pt;}
.y11{bottom:598.556000pt;}
.y6f{bottom:605.665333pt;}
.y44{bottom:612.105333pt;}
.y10{bottom:613.101333pt;}
.y6e{bottom:620.210667pt;}
.y43{bottom:626.650667pt;}
.yf{bottom:627.646667pt;}
.y6d{bottom:634.756000pt;}
.y42{bottom:641.196000pt;}
.ye{bottom:642.192000pt;}
.y41{bottom:655.741333pt;}
.yd{bottom:656.737333pt;}
.y6c{bottom:661.390667pt;}
.y40{bottom:670.286667pt;}
.yc{bottom:671.282667pt;}
.y3f{bottom:684.832000pt;}
.yb{bottom:685.828000pt;}
.y90{bottom:692.270667pt;}
.y6b{bottom:693.766667pt;}
.y3e{bottom:699.377333pt;}
.ya{bottom:700.373333pt;}
.y6a{bottom:708.312000pt;}
.y3d{bottom:713.922667pt;}
.y9{bottom:714.918667pt;}
.y8f{bottom:717.442667pt;}
.y69{bottom:722.857333pt;}
.y3c{bottom:728.468000pt;}
.y8e{bottom:731.988000pt;}
.y68{bottom:737.402667pt;}
.y3b{bottom:743.013333pt;}
.y8{bottom:746.796000pt;}
.y67{bottom:751.949333pt;}
.y8d{bottom:757.161333pt;}
.y3a{bottom:757.558667pt;}
.y66{bottom:766.494667pt;}
.y8c{bottom:771.706667pt;}
.y39{bottom:779.410667pt;}
.y65{bottom:793.128000pt;}
.y38{bottom:793.956000pt;}
.y8b{bottom:796.878667pt;}
.y7{bottom:801.705333pt;}
.y37{bottom:808.501333pt;}
.y6{bottom:816.250667pt;}
.y8a{bottom:822.050667pt;}
.y36{bottom:823.046667pt;}
.y64{bottom:825.504000pt;}
.y5{bottom:830.796000pt;}
.y89{bottom:836.596000pt;}
.y35{bottom:837.592000pt;}
.y63{bottom:840.049333pt;}
.y4{bottom:845.341333pt;}
.y88{bottom:851.141333pt;}
.y34{bottom:852.137333pt;}
.y62{bottom:854.594667pt;}
.y3{bottom:859.886667pt;}
.y33{bottom:866.682667pt;}
.y61{bottom:876.446667pt;}
.y87{bottom:877.908000pt;}
.y32{bottom:888.534667pt;}
.y60{bottom:890.992000pt;}
.y86{bottom:892.453333pt;}
.y2{bottom:900.710667pt;}
.y31{bottom:903.080000pt;}
.y5f{bottom:905.537333pt;}
.y85{bottom:906.998667pt;}
.y30{bottom:917.625333pt;}
.y5e{bottom:920.082667pt;}
.y1{bottom:927.278667pt;}
.y2f{bottom:932.170667pt;}
.y2e{bottom:946.716000pt;}
.h7{height:14.824448pt;}
.h5{height:36.928037pt;}
.h9{height:37.459376pt;}
.h3{height:37.884447pt;}
.h6{height:45.461641pt;}
.h4{height:47.289141pt;}
.h8{height:48.688341pt;}
.h2{height:61.424547pt;}
.h1{height:65.464428pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:144.000000pt;}
.x10{left:155.954667pt;}
.x11{left:157.284000pt;}
.xa{left:159.762667pt;}
.x1{left:165.046667pt;}
.xb{left:180.529333pt;}
.x8{left:191.594667pt;}
.x4{left:255.268000pt;}
.x5{left:300.896000pt;}
.xc{left:319.248000pt;}
.xd{left:332.530667pt;}
.x3{left:359.841333pt;}
.x6{left:367.041333pt;}
.x2{left:373.352000pt;}
.x7{left:378.344000pt;}
.xe{left:384.986667pt;}
.xf{left:404.678667pt;}
}




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