
    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_83723d4c9eae4c68f2fdbcce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_2fad3328691832484a2604b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_49f03e42d3ba33449a321f54.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_d5c032241ee605f9288ddf98.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6cbdc2d5bd94990a81142997.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_6fcd89b02c6e12e206b4f52b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_554468b50c3f7cf89a35385b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cc65aa86a0e1f99a9bc0c734.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_1ba3e13d957c4497cf93ee44.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_33137afddfbd703bf7ae4d6e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.664000;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_3bc4a02742d73c8aacbb039d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9675ca6fd3c93ab5d6024b61.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5f2d0a114a549cc0521e9c28.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_611a7ec6b6469a874ac97f5c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cc65aa86a0e1f99a9bc0c734.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_ea5a99f347a46fc13894e758.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.693000;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:ff11;src:url('chunks/assets/font_4ee7bd8eba7131600ff5c613.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_08bd6b2410c30ea4cf7cda00.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m8{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);}
.mc{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);}
.ma{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);}
.m7{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.mb{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m11{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);}
.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);}
.me{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);}
.m4{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);}
.m10{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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-22.854000px;}
.v2{vertical-align:-12.912000px;}
.v6{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.v5{vertical-align:19.692000px;}
.v4{vertical-align:34.500000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.001597px;}
.lse{letter-spacing:0.327273px;}
.lsd{letter-spacing:2.984915px;}
.lsa{letter-spacing:5.301823px;}
.lsb{letter-spacing:18.130924px;}
.ls2{letter-spacing:18.721843px;}
.ls5{letter-spacing:21.419468px;}
.ls7{letter-spacing:21.861836px;}
.lsf{letter-spacing:28.210933px;}
.ls8{letter-spacing:28.734569px;}
.ls6{letter-spacing:29.847298px;}
.ls10{letter-spacing:30.894571px;}
.ls9{letter-spacing:31.547578px;}
.ls3{letter-spacing:35.883533px;}
.ls1{letter-spacing:38.681050px;}
.ls0{letter-spacing:345.347589px;}
.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;}
}
.ws35{word-spacing:-32.727300px;}
.ws23{word-spacing:-27.646998px;}
.ws3f{word-spacing:-15.185467px;}
.ws3c{word-spacing:-14.923649px;}
.ws28{word-spacing:-14.858194px;}
.ws2f{word-spacing:-14.465467px;}
.wsc{word-spacing:-13.379662px;}
.ws40{word-spacing:-13.221829px;}
.ws30{word-spacing:-12.632738px;}
.ws29{word-spacing:-12.567283px;}
.ws2d{word-spacing:-12.043646px;}
.ws36{word-spacing:-11.650919px;}
.ws25{word-spacing:-11.476915px;}
.ws3d{word-spacing:-11.417140px;}
.ws3e{word-spacing:-11.192737px;}
.ws33{word-spacing:-11.061827px;}
.ws31{word-spacing:-10.996373px;}
.ws10{word-spacing:-10.958734px;}
.ws22{word-spacing:-10.930918px;}
.ws6{word-spacing:-10.904936px;}
.ws2a{word-spacing:-10.865464px;}
.ws2e{word-spacing:-10.734554px;}
.ws26{word-spacing:-10.669100px;}
.ws2c{word-spacing:-10.538191px;}
.ws34{word-spacing:-10.407281px;}
.wsd{word-spacing:-10.313153px;}
.ws18{word-spacing:-10.161852px;}
.ws4{word-spacing:-9.982525px;}
.ws1f{word-spacing:-9.922750px;}
.ws43{word-spacing:-9.883645px;}
.ws41{word-spacing:-9.818190px;}
.ws1c{word-spacing:-9.803198px;}
.ws1d{word-spacing:-9.623872px;}
.wsf{word-spacing:-9.516937px;}
.ws5{word-spacing:-9.463139px;}
.ws27{word-spacing:-9.360008px;}
.ws11{word-spacing:-9.247945px;}
.wsb{word-spacing:-9.194147px;}
.wse{word-spacing:-8.925155px;}
.ws19{word-spacing:-8.906564px;}
.ws42{word-spacing:-8.509098px;}
.ws32{word-spacing:-7.854552px;}
.ws16{word-spacing:-7.173072px;}
.ws1e{word-spacing:-6.814418px;}
.wsa{word-spacing:-6.493467px;}
.ws9{word-spacing:-6.439668px;}
.ws8{word-spacing:-2.619982px;}
.ws7{word-spacing:-2.254153px;}
.ws1b{word-spacing:-2.092146px;}
.ws21{word-spacing:-1.832729px;}
.ws2{word-spacing:-0.086077px;}
.ws37{word-spacing:-0.065455px;}
.ws12{word-spacing:0.000000px;}
.ws13{word-spacing:2.683639px;}
.ws20{word-spacing:9.949099px;}
.ws39{word-spacing:10.800009px;}
.ws3b{word-spacing:10.865464px;}
.ws14{word-spacing:11.429123px;}
.ws3a{word-spacing:18.065470px;}
.ws38{word-spacing:18.130924px;}
.ws44{word-spacing:21.160562px;}
.ws1a{word-spacing:22.296299px;}
.ws1{word-spacing:23.312640px;}
.ws2b{word-spacing:23.367292px;}
.ws17{word-spacing:23.850464px;}
.ws15{word-spacing:25.464406px;}
.ws3{word-spacing:26.827469px;}
.ws0{word-spacing:32.192873px;}
.ws24{word-spacing:2310.948812px;}
._2{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._9{margin-left:-3.890165px;}
._1{margin-left:-2.668393px;}
._7{margin-left:-1.560154px;}
._5{width:1.560154px;}
._0{width:2.668393px;}
._22{width:5.312579px;}
._6{width:18.130061px;}
._18{width:19.556543px;}
._4{width:20.959727px;}
._23{width:22.697501px;}
._19{width:23.910240px;}
._8{width:27.168192px;}
._17{width:28.232446px;}
._20{width:29.912752px;}
._24{width:33.316391px;}
._a{width:36.104937px;}
._1e{width:67.295350px;}
._16{width:68.741940px;}
._1f{width:102.981383px;}
._1a{width:115.659798px;}
._1d{width:126.120528px;}
._21{width:141.840118px;}
._1b{width:149.259673px;}
._1c{width:224.816032px;}
._f{width:959.348294px;}
._e{width:1093.781285px;}
._10{width:1317.646774px;}
._c{width:1390.115773px;}
._12{width:1414.977764px;}
._11{width:1548.745453px;}
._14{width:1709.080528px;}
._d{width:1830.428867px;}
._13{width:1875.858848px;}
._b{width:1927.055102px;}
._15{width:2116.127440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y45{bottom:160.314000px;}
.y2f{bottom:173.425500px;}
.y44{bottom:190.800000px;}
.y11{bottom:207.543000px;}
.y2e{bottom:210.891000px;}
.y5c{bottom:221.286000px;}
.y10{bottom:242.661000px;}
.y43{bottom:244.327500px;}
.y2d{bottom:257.740500px;}
.yf{bottom:267.319500px;}
.y5b{bottom:273.031500px;}
.y2c{bottom:288.226500px;}
.ye{bottom:302.437500px;}
.y42{bottom:315.421500px;}
.y2b{bottom:318.712500px;}
.yd{bottom:327.094500px;}
.y5a{bottom:333.684000px;}
.y2a{bottom:349.198500px;}
.yc{bottom:362.212500px;}
.y59{bottom:364.170000px;}
.y41{bottom:369.759000px;}
.y29{bottom:379.683000px;}
.yb{bottom:386.871000px;}
.y40{bottom:400.245000px;}
.y58{bottom:409.429500px;}
.y28{bottom:410.169000px;}
.ya{bottom:421.989000px;}
.y3f{bottom:430.731000px;}
.y57{bottom:454.690500px;}
.y27{bottom:457.018500px;}
.y3e{bottom:461.215500px;}
.y9{bottom:491.260500px;}
.y56{bottom:495.027000px;}
.y55{bottom:499.950000px;}
.y26{bottom:503.868000px;}
.y3d{bottom:514.743000px;}
.y8{bottom:543.672000px;}
.y67{bottom:543.919500px;}
.y54{bottom:545.211000px;}
.y25{bottom:550.717500px;}
.y7{bottom:570.570000px;}
.y66{bottom:570.819000px;}
.y53{bottom:575.695500px;}
.y6{bottom:597.469500px;}
.y24{bottom:602.463000px;}
.y3c{bottom:615.093000px;}
.y52{bottom:627.441000px;}
.y3b{bottom:650.493000px;}
.y23{bottom:663.028500px;}
.y65{bottom:664.966500px;}
.y3a{bottom:677.392500px;}
.y51{bottom:688.095000px;}
.y22{bottom:693.514500px;}
.y64{bottom:695.451000px;}
.y39{bottom:704.292000px;}
.y50{bottom:718.581000px;}
.y63{bottom:725.937000px;}
.y38{bottom:731.788500px;}
.y5{bottom:748.551000px;}
.y4f{bottom:749.067000px;}
.y21{bottom:750.900000px;}
.y62{bottom:777.682500px;}
.y20{bottom:777.798000px;}
.y4e{bottom:779.551500px;}
.y37{bottom:800.523000px;}
.y1f{bottom:804.697500px;}
.y4d{bottom:810.037500px;}
.y1e{bottom:831.597000px;}
.y61{bottom:838.597500px;}
.y1d{bottom:858.496500px;}
.y4c{bottom:861.783000px;}
.y60{bottom:869.083500px;}
.y36{bottom:871.618500px;}
.y1c{bottom:885.394500px;}
.y35{bottom:902.103000px;}
.y4{bottom:902.547000px;}
.y1b{bottom:912.294000px;}
.y5f{bottom:914.514000px;}
.y4b{bottom:922.437000px;}
.y3{bottom:933.928500px;}
.y34{bottom:934.371000px;}
.y1a{bottom:939.193500px;}
.y5e{bottom:944.998500px;}
.y4a{bottom:952.923000px;}
.y33{bottom:964.857000px;}
.y19{bottom:966.093000px;}
.y18{bottom:992.991000px;}
.y49{bottom:996.688500px;}
.y5d{bottom:996.744000px;}
.y2{bottom:999.790500px;}
.y32{bottom:1018.383000px;}
.y17{bottom:1019.890500px;}
.y48{bottom:1027.174500px;}
.y1{bottom:1040.139000px;}
.y47{bottom:1057.659000px;}
.y16{bottom:1058.595000px;}
.y15{bottom:1064.019000px;}
.y46{bottom:1088.145000px;}
.y31{bottom:1089.478500px;}
.y13{bottom:1090.725000px;}
.y14{bottom:1096.663500px;}
.y12{bottom:1139.890500px;}
.y30{bottom:1192.194000px;}
.hc{height:17.494800px;}
.ha{height:27.783619px;}
.h9{height:35.865450px;}
.h7{height:40.348800px;}
.hb{height:41.842920px;}
.h6{height:44.831700px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:53.798400px;}
.h2{height:60.254040px;}
.h4{height:67.226503px;}
.he{height:68.782950px;}
.hd{height:70.365450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x14{left:108.000000px;}
.x1a{left:110.739000px;}
.x17{left:114.363000px;}
.x16{left:120.727500px;}
.xb{left:125.434500px;}
.x1d{left:130.416000px;}
.x2c{left:132.741000px;}
.x18{left:138.133500px;}
.x19{left:139.270500px;}
.x22{left:146.659500px;}
.xc{left:155.235000px;}
.x12{left:157.060500px;}
.x13{left:158.809500px;}
.x1{left:161.217000px;}
.x2{left:170.355000px;}
.x11{left:173.754000px;}
.xf{left:214.422000px;}
.x1e{left:217.164000px;}
.x10{left:221.125500px;}
.x23{left:229.704000px;}
.x1f{left:234.816000px;}
.x20{left:244.468500px;}
.x2b{left:269.977500px;}
.x3{left:274.819500px;}
.x24{left:278.599500px;}
.x29{left:290.746500px;}
.x21{left:293.877000px;}
.x25{left:308.313000px;}
.x1c{left:319.405500px;}
.x7{left:329.793000px;}
.x4{left:339.925500px;}
.x2a{left:352.437000px;}
.x28{left:375.108000px;}
.x6{left:381.384000px;}
.xd{left:382.602000px;}
.x26{left:383.872500px;}
.x8{left:392.640000px;}
.x5{left:394.558500px;}
.x27{left:401.145000px;}
.x15{left:409.203000px;}
.x9{left:414.060000px;}
.xe{left:511.759500px;}
.x1b{left:799.195500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v2{vertical-align:-11.477333pt;}
.v6{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.v5{vertical-align:17.504000pt;}
.v4{vertical-align:30.666667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.001420pt;}
.lse{letter-spacing:0.290909pt;}
.lsd{letter-spacing:2.653258pt;}
.lsa{letter-spacing:4.712731pt;}
.lsb{letter-spacing:16.116377pt;}
.ls2{letter-spacing:16.641638pt;}
.ls5{letter-spacing:19.039527pt;}
.ls7{letter-spacing:19.432743pt;}
.lsf{letter-spacing:25.076385pt;}
.ls8{letter-spacing:25.541839pt;}
.ls6{letter-spacing:26.530931pt;}
.ls10{letter-spacing:27.461841pt;}
.ls9{letter-spacing:28.042291pt;}
.ls3{letter-spacing:31.896474pt;}
.ls1{letter-spacing:34.383155pt;}
.ls0{letter-spacing:306.975635pt;}
.ws35{word-spacing:-29.090933pt;}
.ws23{word-spacing:-24.575109pt;}
.ws3f{word-spacing:-13.498193pt;}
.ws3c{word-spacing:-13.265466pt;}
.ws28{word-spacing:-13.207284pt;}
.ws2f{word-spacing:-12.858193pt;}
.wsc{word-spacing:-11.893033pt;}
.ws40{word-spacing:-11.752737pt;}
.ws30{word-spacing:-11.229100pt;}
.ws29{word-spacing:-11.170918pt;}
.ws2d{word-spacing:-10.705463pt;}
.ws36{word-spacing:-10.356372pt;}
.ws25{word-spacing:-10.201702pt;}
.ws3d{word-spacing:-10.148569pt;}
.ws3e{word-spacing:-9.949099pt;}
.ws33{word-spacing:-9.832735pt;}
.ws31{word-spacing:-9.774554pt;}
.ws10{word-spacing:-9.741097pt;}
.ws22{word-spacing:-9.716372pt;}
.ws6{word-spacing:-9.693276pt;}
.ws2a{word-spacing:-9.658190pt;}
.ws2e{word-spacing:-9.541826pt;}
.ws26{word-spacing:-9.483644pt;}
.ws2c{word-spacing:-9.367281pt;}
.ws34{word-spacing:-9.250917pt;}
.wsd{word-spacing:-9.167247pt;}
.ws18{word-spacing:-9.032757pt;}
.ws4{word-spacing:-8.873356pt;}
.ws1f{word-spacing:-8.820222pt;}
.ws43{word-spacing:-8.785462pt;}
.ws41{word-spacing:-8.727280pt;}
.ws1c{word-spacing:-8.713954pt;}
.ws1d{word-spacing:-8.554553pt;}
.wsf{word-spacing:-8.459500pt;}
.ws5{word-spacing:-8.411679pt;}
.ws27{word-spacing:-8.320007pt;}
.ws11{word-spacing:-8.220396pt;}
.wsb{word-spacing:-8.172575pt;}
.wse{word-spacing:-7.933471pt;}
.ws19{word-spacing:-7.916946pt;}
.ws42{word-spacing:-7.563643pt;}
.ws32{word-spacing:-6.981824pt;}
.ws16{word-spacing:-6.376064pt;}
.ws1e{word-spacing:-6.057261pt;}
.wsa{word-spacing:-5.771971pt;}
.ws9{word-spacing:-5.724150pt;}
.ws8{word-spacing:-2.328873pt;}
.ws7{word-spacing:-2.003692pt;}
.ws1b{word-spacing:-1.859685pt;}
.ws21{word-spacing:-1.629092pt;}
.ws2{word-spacing:-0.076513pt;}
.ws37{word-spacing:-0.058182pt;}
.ws12{word-spacing:0.000000pt;}
.ws13{word-spacing:2.385457pt;}
.ws20{word-spacing:8.843644pt;}
.ws39{word-spacing:9.600008pt;}
.ws3b{word-spacing:9.658190pt;}
.ws14{word-spacing:10.159221pt;}
.ws3a{word-spacing:16.058195pt;}
.ws38{word-spacing:16.116377pt;}
.ws44{word-spacing:18.809389pt;}
.ws1a{word-spacing:19.818932pt;}
.ws1{word-spacing:20.722347pt;}
.ws2b{word-spacing:20.770926pt;}
.ws17{word-spacing:21.200413pt;}
.ws15{word-spacing:22.635027pt;}
.ws3{word-spacing:23.846639pt;}
.ws0{word-spacing:28.615887pt;}
.ws24{word-spacing:2054.176722pt;}
._2{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._9{margin-left:-3.457924pt;}
._1{margin-left:-2.371905pt;}
._7{margin-left:-1.386803pt;}
._5{width:1.386803pt;}
._0{width:2.371905pt;}
._22{width:4.722293pt;}
._6{width:16.115610pt;}
._18{width:17.383594pt;}
._4{width:18.630868pt;}
._23{width:20.175556pt;}
._19{width:21.253547pt;}
._8{width:24.149504pt;}
._17{width:25.095508pt;}
._20{width:26.589113pt;}
._24{width:29.614570pt;}
._a{width:32.093277pt;}
._1e{width:59.818089pt;}
._16{width:61.103947pt;}
._1f{width:91.539007pt;}
._1a{width:102.808709pt;}
._1d{width:112.107136pt;}
._21{width:126.080105pt;}
._1b{width:132.675265pt;}
._1c{width:199.836473pt;}
._f{width:852.754039pt;}
._e{width:972.250031pt;}
._10{width:1171.241577pt;}
._c{width:1235.658465pt;}
._12{width:1257.758013pt;}
._11{width:1376.662625pt;}
._14{width:1519.182691pt;}
._d{width:1627.047882pt;}
._13{width:1667.430087pt;}
._b{width:1712.937869pt;}
._15{width:1881.002169pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:142.501333pt;}
.y2f{bottom:154.156000pt;}
.y44{bottom:169.600000pt;}
.y11{bottom:184.482667pt;}
.y2e{bottom:187.458667pt;}
.y5c{bottom:196.698667pt;}
.y10{bottom:215.698667pt;}
.y43{bottom:217.180000pt;}
.y2d{bottom:229.102667pt;}
.yf{bottom:237.617333pt;}
.y5b{bottom:242.694667pt;}
.y2c{bottom:256.201333pt;}
.ye{bottom:268.833333pt;}
.y42{bottom:280.374667pt;}
.y2b{bottom:283.300000pt;}
.yd{bottom:290.750667pt;}
.y5a{bottom:296.608000pt;}
.y2a{bottom:310.398667pt;}
.yc{bottom:321.966667pt;}
.y59{bottom:323.706667pt;}
.y41{bottom:328.674667pt;}
.y29{bottom:337.496000pt;}
.yb{bottom:343.885333pt;}
.y40{bottom:355.773333pt;}
.y58{bottom:363.937333pt;}
.y28{bottom:364.594667pt;}
.ya{bottom:375.101333pt;}
.y3f{bottom:382.872000pt;}
.y57{bottom:404.169333pt;}
.y27{bottom:406.238667pt;}
.y3e{bottom:409.969333pt;}
.y9{bottom:436.676000pt;}
.y56{bottom:440.024000pt;}
.y55{bottom:444.400000pt;}
.y26{bottom:447.882667pt;}
.y3d{bottom:457.549333pt;}
.y8{bottom:483.264000pt;}
.y67{bottom:483.484000pt;}
.y54{bottom:484.632000pt;}
.y25{bottom:489.526667pt;}
.y7{bottom:507.173333pt;}
.y66{bottom:507.394667pt;}
.y53{bottom:511.729333pt;}
.y6{bottom:531.084000pt;}
.y24{bottom:535.522667pt;}
.y3c{bottom:546.749333pt;}
.y52{bottom:557.725333pt;}
.y3b{bottom:578.216000pt;}
.y23{bottom:589.358667pt;}
.y65{bottom:591.081333pt;}
.y3a{bottom:602.126667pt;}
.y51{bottom:611.640000pt;}
.y22{bottom:616.457333pt;}
.y64{bottom:618.178667pt;}
.y39{bottom:626.037333pt;}
.y50{bottom:638.738667pt;}
.y63{bottom:645.277333pt;}
.y38{bottom:650.478667pt;}
.y5{bottom:665.378667pt;}
.y4f{bottom:665.837333pt;}
.y21{bottom:667.466667pt;}
.y62{bottom:691.273333pt;}
.y20{bottom:691.376000pt;}
.y4e{bottom:692.934667pt;}
.y37{bottom:711.576000pt;}
.y1f{bottom:715.286667pt;}
.y4d{bottom:720.033333pt;}
.y1e{bottom:739.197333pt;}
.y61{bottom:745.420000pt;}
.y1d{bottom:763.108000pt;}
.y4c{bottom:766.029333pt;}
.y60{bottom:772.518667pt;}
.y36{bottom:774.772000pt;}
.y1c{bottom:787.017333pt;}
.y35{bottom:801.869333pt;}
.y4{bottom:802.264000pt;}
.y1b{bottom:810.928000pt;}
.y5f{bottom:812.901333pt;}
.y4b{bottom:819.944000pt;}
.y3{bottom:830.158667pt;}
.y34{bottom:830.552000pt;}
.y1a{bottom:834.838667pt;}
.y5e{bottom:839.998667pt;}
.y4a{bottom:847.042667pt;}
.y33{bottom:857.650667pt;}
.y19{bottom:858.749333pt;}
.y18{bottom:882.658667pt;}
.y49{bottom:885.945333pt;}
.y5d{bottom:885.994667pt;}
.y2{bottom:888.702667pt;}
.y32{bottom:905.229333pt;}
.y17{bottom:906.569333pt;}
.y48{bottom:913.044000pt;}
.y1{bottom:924.568000pt;}
.y47{bottom:940.141333pt;}
.y16{bottom:940.973333pt;}
.y15{bottom:945.794667pt;}
.y46{bottom:967.240000pt;}
.y31{bottom:968.425333pt;}
.y13{bottom:969.533333pt;}
.y14{bottom:974.812000pt;}
.y12{bottom:1013.236000pt;}
.y30{bottom:1059.728000pt;}
.hc{height:15.550933pt;}
.ha{height:24.696550pt;}
.h9{height:31.880400pt;}
.h7{height:35.865600pt;}
.hb{height:37.193707pt;}
.h6{height:39.850400pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:47.820800pt;}
.h2{height:53.559147pt;}
.h4{height:59.756892pt;}
.he{height:61.140400pt;}
.hd{height:62.547067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x14{left:96.000000pt;}
.x1a{left:98.434667pt;}
.x17{left:101.656000pt;}
.x16{left:107.313333pt;}
.xb{left:111.497333pt;}
.x1d{left:115.925333pt;}
.x2c{left:117.992000pt;}
.x18{left:122.785333pt;}
.x19{left:123.796000pt;}
.x22{left:130.364000pt;}
.xc{left:137.986667pt;}
.x12{left:139.609333pt;}
.x13{left:141.164000pt;}
.x1{left:143.304000pt;}
.x2{left:151.426667pt;}
.x11{left:154.448000pt;}
.xf{left:190.597333pt;}
.x1e{left:193.034667pt;}
.x10{left:196.556000pt;}
.x23{left:204.181333pt;}
.x1f{left:208.725333pt;}
.x20{left:217.305333pt;}
.x2b{left:239.980000pt;}
.x3{left:244.284000pt;}
.x24{left:247.644000pt;}
.x29{left:258.441333pt;}
.x21{left:261.224000pt;}
.x25{left:274.056000pt;}
.x1c{left:283.916000pt;}
.x7{left:293.149333pt;}
.x4{left:302.156000pt;}
.x2a{left:313.277333pt;}
.x28{left:333.429333pt;}
.x6{left:339.008000pt;}
.xd{left:340.090667pt;}
.x26{left:341.220000pt;}
.x8{left:349.013333pt;}
.x5{left:350.718667pt;}
.x27{left:356.573333pt;}
.x15{left:363.736000pt;}
.x9{left:368.053333pt;}
.xe{left:454.897333pt;}
.x1b{left:710.396000pt;}
}




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