
    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_ca30ef284bc6c9b4a0b25260.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d99a0240461a85c6d04d3700.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ca6cac5cff84fcbafa94355f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_634e762bee761193bbd85994.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_13894d569855017cddf30631.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3cd9349dde68d8980c1885ba.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6f3ccf34d16ae3ba6f0ebb16.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.m15{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);}
.m3{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);}
.m5{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);}
.m1d{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m1{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);}
.m6{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);}
.m7{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);}
.mc{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);}
.md{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);}
.m13{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);}
.m4{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);}
.m10{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);}
.m1e{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);}
.m16{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);}
.m1b{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m8{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);}
.ma{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);}
.m1f{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);}
.m1a{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);}
.m18{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);}
.m11{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);}
.mf{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);}
.m19{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);}
.mb{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);}
.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);}
.me{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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v3{vertical-align:22.854000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.456000px;}
.ls1{letter-spacing:1.050000px;}
.ls0{letter-spacing:2.985935px;}
.ls3{letter-spacing:2.988000px;}
.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;}
}
.ws20{word-spacing:-13.449000px;}
.ws1f{word-spacing:-8.967000px;}
.ws24{word-spacing:-1.972495px;}
.ws1c{word-spacing:-1.314877px;}
.ws3b{word-spacing:-1.195500px;}
.ws3c{word-spacing:-0.836713px;}
.ws31{word-spacing:-0.777293px;}
.ws32{word-spacing:-0.537882px;}
.ws17{word-spacing:-0.299069px;}
.ws1b{word-spacing:-0.239112px;}
.ws19{word-spacing:-0.179095px;}
.ws12{word-spacing:-0.119676px;}
.ws37{word-spacing:-0.071730px;}
.ws4{word-spacing:-0.059778px;}
.ws7{word-spacing:-0.059718px;}
.ws41{word-spacing:-0.053796px;}
.ws21{word-spacing:-0.000299px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:0.000299px;}
.wsd{word-spacing:0.059718px;}
.wsa{word-spacing:0.119676px;}
.ws1d{word-spacing:0.179095px;}
.ws5{word-spacing:0.239112px;}
.ws42{word-spacing:0.268819px;}
.wsc{word-spacing:0.298531px;}
.ws10{word-spacing:0.299129px;}
.ws13{word-spacing:0.358489px;}
.ws30{word-spacing:0.418506px;}
.ws25{word-spacing:0.478523px;}
.ws2d{word-spacing:0.537882px;}
.ws2f{word-spacing:0.836713px;}
.wsb{word-spacing:1.076124px;}
.ws2c{word-spacing:1.434373px;}
.ws39{word-spacing:1.793101px;}
.ws11{word-spacing:2.032512px;}
.ws33{word-spacing:2.032572px;}
.ws1a{word-spacing:2.091931px;}
.ws29{word-spacing:2.151888px;}
.ws23{word-spacing:2.450719px;}
.ws3f{word-spacing:2.988900px;}
.ws6{word-spacing:3.168294px;}
.ws34{word-spacing:3.227713px;}
.ws2a{word-spacing:3.347688px;}
.ws26{word-spacing:3.467124px;}
.ws36{word-spacing:3.765894px;}
.ws3d{word-spacing:4.184101px;}
.ws27{word-spacing:4.423512px;}
.ws3e{word-spacing:4.483529px;}
.ws43{word-spacing:4.519187px;}
.ws9{word-spacing:4.782479px;}
.ws18{word-spacing:5.200507px;}
.ws2b{word-spacing:5.380498px;}
.ws8{word-spacing:5.798107px;}
.ws28{word-spacing:6.695076px;}
.ws1e{word-spacing:7.467696px;}
.ws14{word-spacing:7.531789px;}
.ws35{word-spacing:11.088618px;}
.ws38{word-spacing:11.597111px;}
.ws40{word-spacing:14.825004px;}
.ws3a{word-spacing:14.884423px;}
.ws2{word-spacing:14.884722px;}
.ws2e{word-spacing:14.885021px;}
.ws16{word-spacing:16.036411px;}
.ws22{word-spacing:17.860770px;}
.ws15{word-spacing:22.416511px;}
.ws1{word-spacing:25.719210px;}
.ws0{word-spacing:25.719520px;}
.wsf{word-spacing:71.658270px;}
._3{margin-left:-7.642944px;}
._15{margin-left:-6.217510px;}
._5{margin-left:-4.781941px;}
._a{margin-left:-3.706774px;}
._1{margin-left:-2.582353px;}
._0{margin-left:-1.033210px;}
._e{width:3.008340px;}
._f{width:14.046634px;}
._14{width:15.750617px;}
._c{width:17.353441px;}
._6{width:18.470984px;}
._b{width:19.701049px;}
._9{width:21.160456px;}
._7{width:22.358407px;}
._d{width:25.274933px;}
._4{width:28.334354px;}
._17{width:30.771581px;}
._2{width:32.019900px;}
._8{width:33.534203px;}
._12{width:34.550010px;}
._16{width:36.263297px;}
._11{width:39.266037px;}
._13{width:59.778000px;}
._10{width:71.730000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.868000px;}
.fs2{font-size:41.844000px;}
.fs5{font-size:53.796000px;}
.fs1{font-size:59.778000px;}
.fs3{font-size:71.730000px;}
.fs0{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:63.168000px;}
.y2f{bottom:78.184500px;}
.y2e{bottom:93.129000px;}
.y4b{bottom:108.000000px;}
.y60{bottom:113.713500px;}
.y8e{bottom:124.033500px;}
.y4a{bottom:124.363500px;}
.y5f{bottom:136.362000px;}
.y8d{bottom:138.978000px;}
.y2d{bottom:146.466000px;}
.y5e{bottom:152.725500px;}
.y8c{bottom:153.921000px;}
.y8b{bottom:159.634500px;}
.y2c{bottom:162.742500px;}
.y49{bottom:163.204500px;}
.y5d{bottom:169.089000px;}
.y8a{bottom:175.911000px;}
.y48{bottom:179.568000px;}
.y5c{bottom:185.454000px;}
.y2b{bottom:186.571500px;}
.y89{bottom:192.187500px;}
.y2a{bottom:202.935000px;}
.y88{bottom:209.820000px;}
.y29{bottom:219.300000px;}
.y5b{bottom:221.511000px;}
.y87{bottom:226.183500px;}
.y28{bottom:235.663500px;}
.y5a{bottom:237.874500px;}
.y27{bottom:252.027000px;}
.y86{bottom:252.606000px;}
.y59{bottom:264.273000px;}
.y26{bottom:268.390500px;}
.y85{bottom:268.969500px;}
.y25{bottom:292.972500px;}
.y84{bottom:295.392000px;}
.y24{bottom:309.336000px;}
.y83{bottom:311.755500px;}
.y23{bottom:325.701000px;}
.y82{bottom:328.119000px;}
.y22{bottom:342.064500px;}
.y81{bottom:344.482500px;}
.y21{bottom:358.428000px;}
.y80{bottom:370.905000px;}
.y20{bottom:374.791500px;}
.y47{bottom:381.540000px;}
.y7f{bottom:387.268500px;}
.y1f{bottom:399.373500px;}
.y7e{bottom:413.691000px;}
.y1d{bottom:415.737000px;}
.y46{bottom:418.143000px;}
.y1e{bottom:421.161000px;}
.y58{bottom:426.249000px;}
.y7d{bottom:430.054500px;}
.y1c{bottom:432.100500px;}
.y45{bottom:434.506500px;}
.y1b{bottom:448.465500px;}
.y44{bottom:450.870000px;}
.y7c{bottom:456.477000px;}
.y1a{bottom:464.829000px;}
.y43{bottom:467.233500px;}
.y19{bottom:481.192500px;}
.y7b{bottom:482.901000px;}
.y42{bottom:483.597000px;}
.y18{bottom:497.556000px;}
.y7a{bottom:499.264500px;}
.y41{bottom:499.960500px;}
.y17{bottom:513.919500px;}
.y40{bottom:516.324000px;}
.y79{bottom:525.687000px;}
.y16{bottom:530.283000px;}
.y3f{bottom:532.689000px;}
.y15{bottom:546.646500px;}
.y3e{bottom:549.052500px;}
.y78{bottom:552.109500px;}
.y3d{bottom:565.416000px;}
.y77{bottom:568.473000px;}
.y3c{bottom:581.779500px;}
.y14{bottom:582.303000px;}
.y76{bottom:594.895500px;}
.y3b{bottom:598.143000px;}
.y75{bottom:611.259000px;}
.y3a{bottom:614.506500px;}
.y74{bottom:627.622500px;}
.y39{bottom:630.870000px;}
.y13{bottom:635.103000px;}
.y38{bottom:647.233500px;}
.y12{bottom:651.466500px;}
.y73{bottom:653.220000px;}
.y37{bottom:663.597000px;}
.y11{bottom:667.830000px;}
.y36{bottom:679.960500px;}
.y10{bottom:684.193500px;}
.y72{bottom:694.957500px;}
.yf{bottom:700.557000px;}
.y35{bottom:704.544000px;}
.y71{bottom:711.321000px;}
.ye{bottom:716.920500px;}
.y34{bottom:720.907500px;}
.y70{bottom:727.684500px;}
.yd{bottom:733.285500px;}
.y6f{bottom:744.048000px;}
.yc{bottom:749.649000px;}
.y33{bottom:755.493000px;}
.y6e{bottom:760.411500px;}
.yb{bottom:766.012500px;}
.y6d{bottom:776.775000px;}
.ya{bottom:782.376000px;}
.y6c{bottom:793.138500px;}
.y32{bottom:798.000000px;}
.y9{bottom:798.739500px;}
.y31{bottom:814.363500px;}
.y8{bottom:815.103000px;}
.y6b{bottom:826.956000px;}
.y7{bottom:831.466500px;}
.y30{bottom:863.733000px;}
.y6{bottom:867.979500px;}
.y6a{bottom:868.692000px;}
.y69{bottom:885.055500px;}
.y57{bottom:889.291500px;}
.y68{bottom:901.419000px;}
.y66{bottom:917.784000px;}
.y67{bottom:923.206500px;}
.y56{bottom:925.927500px;}
.y5{bottom:929.752500px;}
.y65{bottom:934.147500px;}
.y55{bottom:942.291000px;}
.y4{bottom:946.116000px;}
.y64{bottom:950.511000px;}
.y54{bottom:958.654500px;}
.y3{bottom:962.479500px;}
.y62{bottom:966.874500px;}
.y63{bottom:972.297000px;}
.y53{bottom:983.238000px;}
.y52{bottom:999.601500px;}
.y2{bottom:1013.299500px;}
.y50{bottom:1015.965000px;}
.y51{bottom:1021.387500px;}
.y4f{bottom:1032.328500px;}
.y1{bottom:1043.188500px;}
.y4e{bottom:1048.692000px;}
.y61{bottom:1054.116000px;}
.y4d{bottom:1065.055500px;}
.h7{height:16.678620px;}
.h8{height:24.677184px;}
.h6{height:28.788672px;}
.ha{height:37.011648px;}
.hb{height:37.388220px;}
.h3{height:41.127264px;}
.h2{height:41.366376px;}
.h4{height:41.545710px;}
.h9{height:47.531184px;}
.h5{height:49.637160px;}
.h1{height:71.476680px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:160.879500px;}
.x7{left:162.000000px;}
.x1{left:163.005000px;}
.x17{left:176.945040px;}
.xa{left:179.733000px;}
.xb{left:180.979500px;}
.x1b{left:185.725500px;}
.xc{left:195.286500px;}
.x2{left:214.819500px;}
.x5{left:372.720000px;}
.x11{left:374.449500px;}
.x12{left:380.427000px;}
.x4{left:387.007500px;}
.x3{left:421.020000px;}
.x6{left:425.637000px;}
.x19{left:433.213500px;}
.x18{left:443.821500px;}
.x10{left:451.314000px;}
.xd{left:455.263500px;}
.x1d{left:479.668500px;}
.x1c{left:538.573500px;}
.x15{left:587.169000px;}
.x16{left:593.146500px;}
.xe{left:604.171500px;}
.xf{left:610.149000px;}
.x13{left:692.458500px;}
.x14{left:713.685000px;}
.x8{left:750.022500px;}
.x1a{left:754.804500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.405333pt;}
.ls1{letter-spacing:0.933333pt;}
.ls0{letter-spacing:2.654164pt;}
.ls3{letter-spacing:2.656000pt;}
.ws20{word-spacing:-11.954667pt;}
.ws1f{word-spacing:-7.970667pt;}
.ws24{word-spacing:-1.753329pt;}
.ws1c{word-spacing:-1.168779pt;}
.ws3b{word-spacing:-1.062667pt;}
.ws3c{word-spacing:-0.743745pt;}
.ws31{word-spacing:-0.690927pt;}
.ws32{word-spacing:-0.478118pt;}
.ws17{word-spacing:-0.265839pt;}
.ws1b{word-spacing:-0.212544pt;}
.ws19{word-spacing:-0.159195pt;}
.ws12{word-spacing:-0.106378pt;}
.ws37{word-spacing:-0.063760pt;}
.ws4{word-spacing:-0.053136pt;}
.ws7{word-spacing:-0.053083pt;}
.ws41{word-spacing:-0.047819pt;}
.ws21{word-spacing:-0.000266pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:0.000266pt;}
.wsd{word-spacing:0.053083pt;}
.wsa{word-spacing:0.106378pt;}
.ws1d{word-spacing:0.159195pt;}
.ws5{word-spacing:0.212544pt;}
.ws42{word-spacing:0.238950pt;}
.wsc{word-spacing:0.265361pt;}
.ws10{word-spacing:0.265893pt;}
.ws13{word-spacing:0.318657pt;}
.ws30{word-spacing:0.372005pt;}
.ws25{word-spacing:0.425354pt;}
.ws2d{word-spacing:0.478118pt;}
.ws2f{word-spacing:0.743745pt;}
.wsb{word-spacing:0.956554pt;}
.ws2c{word-spacing:1.274998pt;}
.ws39{word-spacing:1.593867pt;}
.ws11{word-spacing:1.806677pt;}
.ws33{word-spacing:1.806730pt;}
.ws1a{word-spacing:1.859494pt;}
.ws29{word-spacing:1.912790pt;}
.ws23{word-spacing:2.178417pt;}
.ws3f{word-spacing:2.656800pt;}
.ws6{word-spacing:2.816261pt;}
.ws34{word-spacing:2.869078pt;}
.ws2a{word-spacing:2.975722pt;}
.ws26{word-spacing:3.081888pt;}
.ws36{word-spacing:3.347462pt;}
.ws3d{word-spacing:3.719201pt;}
.ws27{word-spacing:3.932011pt;}
.ws3e{word-spacing:3.985359pt;}
.ws43{word-spacing:4.017055pt;}
.ws9{word-spacing:4.251093pt;}
.ws18{word-spacing:4.622673pt;}
.ws2b{word-spacing:4.782665pt;}
.ws8{word-spacing:5.153873pt;}
.ws28{word-spacing:5.951179pt;}
.ws1e{word-spacing:6.637952pt;}
.ws14{word-spacing:6.694923pt;}
.ws35{word-spacing:9.856549pt;}
.ws38{word-spacing:10.308543pt;}
.ws40{word-spacing:13.177781pt;}
.ws3a{word-spacing:13.230598pt;}
.ws2{word-spacing:13.230864pt;}
.ws2e{word-spacing:13.231130pt;}
.ws16{word-spacing:14.254588pt;}
.ws22{word-spacing:15.876240pt;}
.ws15{word-spacing:19.925787pt;}
.ws1{word-spacing:22.861520pt;}
.ws0{word-spacing:22.861795pt;}
.wsf{word-spacing:63.696240pt;}
._3{margin-left:-6.793728pt;}
._15{margin-left:-5.526675pt;}
._5{margin-left:-4.250614pt;}
._a{margin-left:-3.294910pt;}
._1{margin-left:-2.295425pt;}
._0{margin-left:-0.918409pt;}
._e{width:2.674080pt;}
._f{width:12.485897pt;}
._14{width:14.000548pt;}
._c{width:15.425281pt;}
._6{width:16.418652pt;}
._b{width:17.512044pt;}
._9{width:18.809294pt;}
._7{width:19.874139pt;}
._d{width:22.466607pt;}
._4{width:25.186092pt;}
._17{width:27.352516pt;}
._2{width:28.462133pt;}
._8{width:29.808180pt;}
._12{width:30.711120pt;}
._16{width:32.234042pt;}
._11{width:34.903144pt;}
._13{width:53.136000pt;}
._10{width:63.760000pt;}
.fs4{font-size:31.882667pt;}
.fs2{font-size:37.194667pt;}
.fs5{font-size:47.818667pt;}
.fs1{font-size:53.136000pt;}
.fs3{font-size:63.760000pt;}
.fs0{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:56.149333pt;}
.y2f{bottom:69.497333pt;}
.y2e{bottom:82.781333pt;}
.y4b{bottom:96.000000pt;}
.y60{bottom:101.078667pt;}
.y8e{bottom:110.252000pt;}
.y4a{bottom:110.545333pt;}
.y5f{bottom:121.210667pt;}
.y8d{bottom:123.536000pt;}
.y2d{bottom:130.192000pt;}
.y5e{bottom:135.756000pt;}
.y8c{bottom:136.818667pt;}
.y8b{bottom:141.897333pt;}
.y2c{bottom:144.660000pt;}
.y49{bottom:145.070667pt;}
.y5d{bottom:150.301333pt;}
.y8a{bottom:156.365333pt;}
.y48{bottom:159.616000pt;}
.y5c{bottom:164.848000pt;}
.y2b{bottom:165.841333pt;}
.y89{bottom:170.833333pt;}
.y2a{bottom:180.386667pt;}
.y88{bottom:186.506667pt;}
.y29{bottom:194.933333pt;}
.y5b{bottom:196.898667pt;}
.y87{bottom:201.052000pt;}
.y28{bottom:209.478667pt;}
.y5a{bottom:211.444000pt;}
.y27{bottom:224.024000pt;}
.y86{bottom:224.538667pt;}
.y59{bottom:234.909333pt;}
.y26{bottom:238.569333pt;}
.y85{bottom:239.084000pt;}
.y25{bottom:260.420000pt;}
.y84{bottom:262.570667pt;}
.y24{bottom:274.965333pt;}
.y83{bottom:277.116000pt;}
.y23{bottom:289.512000pt;}
.y82{bottom:291.661333pt;}
.y22{bottom:304.057333pt;}
.y81{bottom:306.206667pt;}
.y21{bottom:318.602667pt;}
.y80{bottom:329.693333pt;}
.y20{bottom:333.148000pt;}
.y47{bottom:339.146667pt;}
.y7f{bottom:344.238667pt;}
.y1f{bottom:354.998667pt;}
.y7e{bottom:367.725333pt;}
.y1d{bottom:369.544000pt;}
.y46{bottom:371.682667pt;}
.y1e{bottom:374.365333pt;}
.y58{bottom:378.888000pt;}
.y7d{bottom:382.270667pt;}
.y1c{bottom:384.089333pt;}
.y45{bottom:386.228000pt;}
.y1b{bottom:398.636000pt;}
.y44{bottom:400.773333pt;}
.y7c{bottom:405.757333pt;}
.y1a{bottom:413.181333pt;}
.y43{bottom:415.318667pt;}
.y19{bottom:427.726667pt;}
.y7b{bottom:429.245333pt;}
.y42{bottom:429.864000pt;}
.y18{bottom:442.272000pt;}
.y7a{bottom:443.790667pt;}
.y41{bottom:444.409333pt;}
.y17{bottom:456.817333pt;}
.y40{bottom:458.954667pt;}
.y79{bottom:467.277333pt;}
.y16{bottom:471.362667pt;}
.y3f{bottom:473.501333pt;}
.y15{bottom:485.908000pt;}
.y3e{bottom:488.046667pt;}
.y78{bottom:490.764000pt;}
.y3d{bottom:502.592000pt;}
.y77{bottom:505.309333pt;}
.y3c{bottom:517.137333pt;}
.y14{bottom:517.602667pt;}
.y76{bottom:528.796000pt;}
.y3b{bottom:531.682667pt;}
.y75{bottom:543.341333pt;}
.y3a{bottom:546.228000pt;}
.y74{bottom:557.886667pt;}
.y39{bottom:560.773333pt;}
.y13{bottom:564.536000pt;}
.y38{bottom:575.318667pt;}
.y12{bottom:579.081333pt;}
.y73{bottom:580.640000pt;}
.y37{bottom:589.864000pt;}
.y11{bottom:593.626667pt;}
.y36{bottom:604.409333pt;}
.y10{bottom:608.172000pt;}
.y72{bottom:617.740000pt;}
.yf{bottom:622.717333pt;}
.y35{bottom:626.261333pt;}
.y71{bottom:632.285333pt;}
.ye{bottom:637.262667pt;}
.y34{bottom:640.806667pt;}
.y70{bottom:646.830667pt;}
.yd{bottom:651.809333pt;}
.y6f{bottom:661.376000pt;}
.yc{bottom:666.354667pt;}
.y33{bottom:671.549333pt;}
.y6e{bottom:675.921333pt;}
.yb{bottom:680.900000pt;}
.y6d{bottom:690.466667pt;}
.ya{bottom:695.445333pt;}
.y6c{bottom:705.012000pt;}
.y32{bottom:709.333333pt;}
.y9{bottom:709.990667pt;}
.y31{bottom:723.878667pt;}
.y8{bottom:724.536000pt;}
.y6b{bottom:735.072000pt;}
.y7{bottom:739.081333pt;}
.y30{bottom:767.762667pt;}
.y6{bottom:771.537333pt;}
.y6a{bottom:772.170667pt;}
.y69{bottom:786.716000pt;}
.y57{bottom:790.481333pt;}
.y68{bottom:801.261333pt;}
.y66{bottom:815.808000pt;}
.y67{bottom:820.628000pt;}
.y56{bottom:823.046667pt;}
.y5{bottom:826.446667pt;}
.y65{bottom:830.353333pt;}
.y55{bottom:837.592000pt;}
.y4{bottom:840.992000pt;}
.y64{bottom:844.898667pt;}
.y54{bottom:852.137333pt;}
.y3{bottom:855.537333pt;}
.y62{bottom:859.444000pt;}
.y63{bottom:864.264000pt;}
.y53{bottom:873.989333pt;}
.y52{bottom:888.534667pt;}
.y2{bottom:900.710667pt;}
.y50{bottom:903.080000pt;}
.y51{bottom:907.900000pt;}
.y4f{bottom:917.625333pt;}
.y1{bottom:927.278667pt;}
.y4e{bottom:932.170667pt;}
.y61{bottom:936.992000pt;}
.y4d{bottom:946.716000pt;}
.h7{height:14.825440pt;}
.h8{height:21.935275pt;}
.h6{height:25.589931pt;}
.ha{height:32.899243pt;}
.hb{height:33.233973pt;}
.h3{height:36.557568pt;}
.h2{height:36.770112pt;}
.h4{height:36.929520pt;}
.h9{height:42.249941pt;}
.h5{height:44.121920pt;}
.h1{height:63.534827pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:143.004000pt;}
.x7{left:144.000000pt;}
.x1{left:144.893333pt;}
.x17{left:157.284480pt;}
.xa{left:159.762667pt;}
.xb{left:160.870667pt;}
.x1b{left:165.089333pt;}
.xc{left:173.588000pt;}
.x2{left:190.950667pt;}
.x5{left:331.306667pt;}
.x11{left:332.844000pt;}
.x12{left:338.157333pt;}
.x4{left:344.006667pt;}
.x3{left:374.240000pt;}
.x6{left:378.344000pt;}
.x19{left:385.078667pt;}
.x18{left:394.508000pt;}
.x10{left:401.168000pt;}
.xd{left:404.678667pt;}
.x1d{left:426.372000pt;}
.x1c{left:478.732000pt;}
.x15{left:521.928000pt;}
.x16{left:527.241333pt;}
.xe{left:537.041333pt;}
.xf{left:542.354667pt;}
.x13{left:615.518667pt;}
.x14{left:634.386667pt;}
.x8{left:666.686667pt;}
.x1a{left:670.937333pt;}
}




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