
    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_454a82afbca8cfc567abf0ce.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_407f9ec1e2f032ad89c7930a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_02d8547c9e17fe5c11c9de1e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d92aca8dbdb57c009cbfbe04.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0e3717dbfb20a991f0fcb48e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.623000;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_544e7c9b4787d99a6f7eeb4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_2bb0b0b9948cd69d76a306ed.woff2')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_267ba89a0750a8eb2f6f0d04.woff2')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_6492c1203e0305e875eed001.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.738000;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_9cfa87c02841e0f204f33c86.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_3cbc8c09bd062b222291f5a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.694000;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_c9b0f35e9d9a9c0772db71cd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.521000;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;}
.m2{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);}
.m13{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);}
.m1{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);}
.m1b{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);}
.m15{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);}
.m24{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);}
.m21{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);}
.ma{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);}
.m1c{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);}
.m18{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);}
.m12{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);}
.m1a{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m1f{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);}
.m22{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);}
.m23{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m1d{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);}
.mc{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);}
.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);}
.m17{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);}
.me{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m16{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.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);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m9{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);}
.m1e{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);}
.m3{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);}
.m20{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);}
.mf{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);}
.m14{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.874000px;}
.v5{vertical-align:14.838000px;}
.v7{vertical-align:21.690000px;}
.v1{vertical-align:37.482000px;}
.v4{vertical-align:39.726000px;}
.ls9{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000065px;}
.lse{letter-spacing:0.000300px;}
.lsc{letter-spacing:0.005781px;}
.ls2{letter-spacing:1.404775px;}
.ls13{letter-spacing:1.636788px;}
.ls15{letter-spacing:1.648564px;}
.lsd{letter-spacing:1.661781px;}
.ls5{letter-spacing:2.032370px;}
.ls17{letter-spacing:2.988600px;}
.lsa{letter-spacing:2.989200px;}
.ls7{letter-spacing:2.993468px;}
.ls4{letter-spacing:3.557845px;}
.ls16{letter-spacing:4.646525px;}
.ls1{letter-spacing:5.123296px;}
.ls0{letter-spacing:5.205929px;}
.ls6{letter-spacing:14.943900px;}
.ls10{letter-spacing:16.617617px;}
.ls12{letter-spacing:16.677392px;}
.ls14{letter-spacing:19.586525px;}
.lsf{letter-spacing:19.592525px;}
.ls11{letter-spacing:19.634525px;}
.ls8{letter-spacing:20.281997px;}
.ls3{letter-spacing:34.651266px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-25.823100px;}
.ws4{word-spacing:-25.781746px;}
.ws6{word-spacing:-20.658450px;}
.ws3f{word-spacing:-17.932800px;}
.wsa{word-spacing:-17.903995px;}
.ws27{word-spacing:-14.943900px;}
.ws42{word-spacing:-13.449600px;}
.ws2d{word-spacing:-1.972595px;}
.ws20{word-spacing:-1.793268px;}
.ws32{word-spacing:-1.733492px;}
.ws1e{word-spacing:-1.195512px;}
.ws2c{word-spacing:-1.016185px;}
.ws3e{word-spacing:-0.836858px;}
.ws3d{word-spacing:-0.657532px;}
.ws36{word-spacing:-0.298878px;}
.wsc{word-spacing:-0.239102px;}
.wse{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.119551px;}
.ws9{word-spacing:-0.059776px;}
.ws2f{word-spacing:-0.053798px;}
.ws30{word-spacing:-0.041843px;}
.ws1{word-spacing:-0.020614px;}
.ws41{word-spacing:-0.005347px;}
.ws8{word-spacing:0.000000px;}
.ws17{word-spacing:0.059776px;}
.ws2{word-spacing:0.082679px;}
.ws13{word-spacing:0.119551px;}
.wsb{word-spacing:0.179327px;}
.ws15{word-spacing:0.239102px;}
.ws24{word-spacing:0.298878px;}
.wsd{word-spacing:0.358654px;}
.ws2a{word-spacing:0.418429px;}
.ws28{word-spacing:0.537980px;}
.ws29{word-spacing:0.597756px;}
.ws2b{word-spacing:0.777083px;}
.ws38{word-spacing:0.836858px;}
.ws21{word-spacing:0.896634px;}
.ws35{word-spacing:0.956410px;}
.ws31{word-spacing:1.016185px;}
.ws3b{word-spacing:1.255288px;}
.ws1f{word-spacing:1.374839px;}
.ws3c{word-spacing:1.673717px;}
.ws1c{word-spacing:1.721549px;}
.ws33{word-spacing:1.733492px;}
.ws3a{word-spacing:1.972595px;}
.ws1b{word-spacing:2.151922px;}
.ws10{word-spacing:2.331248px;}
.ws23{word-spacing:2.391024px;}
.ws18{word-spacing:2.510575px;}
.ws34{word-spacing:2.809453px;}
.ws1a{word-spacing:3.108331px;}
.ws26{word-spacing:3.347434px;}
.ws2e{word-spacing:3.526760px;}
.ws14{word-spacing:3.765863px;}
.ws1d{word-spacing:3.819686px;}
.ws37{word-spacing:3.825638px;}
.ws12{word-spacing:4.423394px;}
.ws25{word-spacing:4.662497px;}
.ws16{word-spacing:4.961375px;}
.ws39{word-spacing:5.379804px;}
.ws40{word-spacing:6.814418px;}
.ws22{word-spacing:8.607686px;}
.ws0{word-spacing:10.225978px;}
.ws3{word-spacing:10.246591px;}
.ws5{word-spacing:10.329270px;}
.wsf{word-spacing:14.346144px;}
.ws11{word-spacing:53.798400px;}
._1{margin-left:-8.924450px;}
._15{margin-left:-7.698610px;}
._5{margin-left:-5.309229px;}
._3{margin-left:-4.131690px;}
._2{margin-left:-2.396380px;}
._6{margin-left:-1.075961px;}
._11{width:1.023359px;}
._4{width:2.251778px;}
._0{width:5.040662px;}
._b{width:13.992847px;}
._e{width:16.276367px;}
._10{width:17.519607px;}
._7{width:18.537610px;}
._8{width:20.503031px;}
._a{width:22.171391px;}
._12{width:23.556943px;}
._c{width:26.493121px;}
._d{width:28.639686px;}
._14{width:29.648698px;}
._9{width:33.229790px;}
._13{width:35.207828px;}
._f{width:71.731200px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:53.798400px;}
.fs4{font-size:57.384600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:82.633800px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y60{bottom:63.168000px;}
.y2b{bottom:108.000000px;}
.y5f{bottom:113.713500px;}
.y2a{bottom:122.944500px;}
.y5e{bottom:129.990000px;}
.y99{bottom:137.308500px;}
.y29{bottom:137.887500px;}
.y28{bottom:143.601000px;}
.yb2{bottom:146.023500px;}
.y5d{bottom:146.265000px;}
.y97{bottom:153.672000px;}
.y98{bottom:159.094500px;}
.y61{bottom:160.740000px;}
.y27{bottom:165.538500px;}
.y5c{bottom:169.410000px;}
.y96{bottom:170.035500px;}
.y26{bottom:181.902000px;}
.y5b{bottom:185.773500px;}
.y95{bottom:186.399000px;}
.y25{bottom:198.265500px;}
.y5a{bottom:202.137000px;}
.y94{bottom:202.762500px;}
.y24{bottom:214.629000px;}
.y59{bottom:218.500500px;}
.y93{bottom:219.126000px;}
.y23{bottom:230.992500px;}
.y58{bottom:234.864000px;}
.y92{bottom:235.489500px;}
.y22{bottom:247.356000px;}
.y56{bottom:251.227500px;}
.y91{bottom:251.853000px;}
.y57{bottom:256.650000px;}
.y21{bottom:263.719500px;}
.y90{bottom:268.216500px;}
.y20{bottom:280.083000px;}
.y8f{bottom:284.580000px;}
.y55{bottom:286.026000px;}
.y1f{bottom:296.446500px;}
.y8e{bottom:300.945000px;}
.y1e{bottom:312.810000px;}
.y8d{bottom:317.308500px;}
.y54{bottom:328.830000px;}
.y1d{bottom:329.175000px;}
.y8c{bottom:333.672000px;}
.y53{bottom:345.193500px;}
.y1c{bottom:345.538500px;}
.y8b{bottom:350.035500px;}
.y52{bottom:361.557000px;}
.y1b{bottom:361.902000px;}
.y8a{bottom:366.399000px;}
.y51{bottom:377.920500px;}
.y1a{bottom:378.265500px;}
.y89{bottom:382.762500px;}
.y50{bottom:394.284000px;}
.y19{bottom:394.629000px;}
.y88{bottom:399.126000px;}
.y18{bottom:410.992500px;}
.y87{bottom:415.489500px;}
.y4f{bottom:418.867500px;}
.y17{bottom:427.356000px;}
.y4e{bottom:435.231000px;}
.y16{bottom:443.719500px;}
.y86{bottom:450.439500px;}
.y4d{bottom:451.594500px;}
.yb1{bottom:453.774000px;}
.y15{bottom:460.083000px;}
.y4c{bottom:467.958000px;}
.yb0{bottom:470.137500px;}
.y4b{bottom:484.321500px;}
.yaf{bottom:492.478500px;}
.y85{bottom:493.497000px;}
.y14{bottom:495.100500px;}
.y4a{bottom:500.685000px;}
.yae{bottom:508.842000px;}
.y84{bottom:509.860500px;}
.y49{bottom:517.048500px;}
.y83{bottom:526.224000px;}
.yad{bottom:531.183000px;}
.y48{bottom:533.413500px;}
.y13{bottom:538.267500px;}
.y82{bottom:542.587500px;}
.yac{bottom:547.546500px;}
.y47{bottom:549.777000px;}
.y12{bottom:554.632500px;}
.y81{bottom:558.952500px;}
.y45{bottom:566.140500px;}
.yab{bottom:569.889000px;}
.y46{bottom:571.563000px;}
.y80{bottom:575.316000px;}
.yaa{bottom:586.252500px;}
.y11{bottom:588.694500px;}
.y44{bottom:590.722500px;}
.y7f{bottom:591.679500px;}
.y10{bottom:605.058000px;}
.y43{bottom:607.086000px;}
.y7e{bottom:608.043000px;}
.ya9{bottom:608.593500px;}
.yf{bottom:621.421500px;}
.y42{bottom:623.449500px;}
.ya8{bottom:624.957000px;}
.y7d{bottom:628.917000px;}
.y7c{bottom:632.625000px;}
.ye{bottom:637.785000px;}
.y41{bottom:639.814500px;}
.y7b{bottom:646.807500px;}
.ya7{bottom:647.298000px;}
.y7a{bottom:650.517000px;}
.yd{bottom:654.150000px;}
.ya6{bottom:663.661500px;}
.y79{bottom:666.880500px;}
.yc{bottom:670.513500px;}
.y40{bottom:674.611500px;}
.y78{bottom:683.244000px;}
.ya5{bottom:686.002500px;}
.yb{bottom:686.877000px;}
.y77{bottom:699.607500px;}
.ya4{bottom:702.366000px;}
.ya{bottom:703.240500px;}
.y76{bottom:715.971000px;}
.y3f{bottom:717.417000px;}
.ya3{bottom:718.729500px;}
.y9{bottom:727.822500px;}
.y75{bottom:728.625000px;}
.y74{bottom:732.334500px;}
.y3e{bottom:733.780500px;}
.y73{bottom:747.913500px;}
.y3d{bottom:750.144000px;}
.y72{bottom:751.623000px;}
.ya2{bottom:753.400500px;}
.y3c{bottom:766.507500px;}
.y71{bottom:770.436000px;}
.y3b{bottom:782.871000px;}
.y70{bottom:786.799500px;}
.ya1{bottom:795.990000px;}
.y3a{bottom:799.234500px;}
.y6f{bottom:803.163000px;}
.y8{bottom:805.675500px;}
.ya0{bottom:812.353500px;}
.y39{bottom:815.598000px;}
.y6e{bottom:819.526500px;}
.y7{bottom:822.039000px;}
.y38{bottom:831.961500px;}
.y6d{bottom:835.890000px;}
.y6{bottom:838.402500px;}
.y9f{bottom:847.024500px;}
.y37{bottom:848.325000px;}
.y6c{bottom:852.253500px;}
.y5{bottom:854.766000px;}
.y35{bottom:864.688500px;}
.y6b{bottom:868.617000px;}
.y36{bottom:870.112500px;}
.y4{bottom:871.129500px;}
.y34{bottom:881.052000px;}
.y9e{bottom:889.614000px;}
.y6a{bottom:893.200500px;}
.y33{bottom:905.635500px;}
.y9c{bottom:905.977500px;}
.y69{bottom:909.564000px;}
.y9d{bottom:911.400000px;}
.y32{bottom:921.999000px;}
.y9b{bottom:922.341000px;}
.y68{bottom:925.927500px;}
.y31{bottom:938.362500px;}
.y67{bottom:942.291000px;}
.y30{bottom:954.726000px;}
.y9a{bottom:957.012000px;}
.y66{bottom:958.654500px;}
.y3{bottom:962.056500px;}
.y2f{bottom:971.089500px;}
.y65{bottom:975.018000px;}
.y2{bottom:991.944000px;}
.y64{bottom:999.601500px;}
.y2e{bottom:1005.888000px;}
.y63{bottom:1015.965000px;}
.y1{bottom:1021.831500px;}
.y62{bottom:1032.328500px;}
.y2d{bottom:1048.692000px;}
.y2c{bottom:1065.055500px;}
.ha{height:16.677504px;}
.hd{height:24.675533px;}
.hc{height:28.787846px;}
.h10{height:29.038903px;}
.h6{height:36.941321px;}
.hb{height:37.336090px;}
.h4{height:40.826735px;}
.h5{height:41.125613px;}
.h3{height:41.484266px;}
.h8{height:42.022247px;}
.he{height:42.799330px;}
.h9{height:44.831700px;}
.h7{height:49.781453px;}
.h17{height:50.477846px;}
.h18{height:50.483846px;}
.h13{height:50.728903px;}
.h15{height:50.734903px;}
.h16{height:55.957613px;}
.hf{height:56.433280px;}
.h11{height:56.439280px;}
.h12{height:59.669700px;}
.h14{height:65.566903px;}
.h1{height:71.065171px;}
.h2{height:91.280400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:107.506500px;}
.x2{left:120.024000px;}
.x12{left:125.733000px;}
.x2a{left:126.979500px;}
.x4b{left:131.895000px;}
.x2c{left:133.359000px;}
.x41{left:145.729500px;}
.x1{left:153.684000px;}
.x42{left:156.937500px;}
.xa{left:161.799000px;}
.x13{left:176.310000px;}
.x43{left:199.282500px;}
.x14{left:202.003500px;}
.x15{left:209.475000px;}
.x10{left:210.849000px;}
.x11{left:218.322000px;}
.x28{left:245.004000px;}
.x29{left:254.727000px;}
.x4{left:278.089500px;}
.x6{left:282.655500px;}
.x1e{left:283.917000px;}
.x48{left:289.705500px;}
.x1f{left:291.388500px;}
.x38{left:310.902000px;}
.x3{left:317.892000px;}
.x39{left:323.274000px;}
.x3a{left:333.709500px;}
.x8{left:353.110500px;}
.x31{left:361.425000px;}
.x32{left:368.896500px;}
.x5{left:379.954500px;}
.x7{left:384.415500px;}
.x20{left:393.405000px;}
.x21{left:400.876500px;}
.x9{left:415.944000px;}
.x49{left:420.459000px;}
.x4a{left:431.148000px;}
.x2d{left:433.605000px;}
.x3b{left:436.824000px;}
.x3c{left:448.032000px;}
.x2b{left:455.263500px;}
.x3d{left:458.467500px;}
.x2e{left:466.215000px;}
.x16{left:479.154000px;}
.x3e{left:484.144500px;}
.x17{left:486.627000px;}
.x44{left:488.538000px;}
.x22{left:489.822000px;}
.x18{left:494.595000px;}
.x23{left:499.551000px;}
.x19{left:502.068000px;}
.x2f{left:506.283000px;}
.x30{left:513.754500px;}
.x45{left:530.860500px;}
.x1a{left:538.785000px;}
.x1b{left:546.258000px;}
.x33{left:583.759500px;}
.x34{left:606.577500px;}
.xc{left:610.218000px;}
.xd{left:618.768000px;}
.x3f{left:659.955000px;}
.x24{left:664.551000px;}
.x25{left:672.022500px;}
.x26{left:679.738500px;}
.x27{left:687.210000px;}
.x40{left:721.353000px;}
.x35{left:726.954000px;}
.x36{left:739.326000px;}
.x37{left:746.029500px;}
.x46{left:757.107000px;}
.x47{left:764.578500px;}
.x1c{left:766.138500px;}
.xe{left:771.922500px;}
.x1d{left:775.857000px;}
.xf{left:780.472500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.221333pt;}
.v5{vertical-align:13.189333pt;}
.v7{vertical-align:19.280000pt;}
.v1{vertical-align:33.317333pt;}
.v4{vertical-align:35.312000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000058pt;}
.lse{letter-spacing:0.000267pt;}
.lsc{letter-spacing:0.005138pt;}
.ls2{letter-spacing:1.248689pt;}
.ls13{letter-spacing:1.454923pt;}
.ls15{letter-spacing:1.465390pt;}
.lsd{letter-spacing:1.477138pt;}
.ls5{letter-spacing:1.806551pt;}
.ls17{letter-spacing:2.656533pt;}
.lsa{letter-spacing:2.657067pt;}
.ls7{letter-spacing:2.660861pt;}
.ls4{letter-spacing:3.162529pt;}
.ls16{letter-spacing:4.130245pt;}
.ls1{letter-spacing:4.554041pt;}
.ls0{letter-spacing:4.627493pt;}
.ls6{letter-spacing:13.283467pt;}
.ls10{letter-spacing:14.771215pt;}
.ls12{letter-spacing:14.824349pt;}
.ls14{letter-spacing:17.410245pt;}
.lsf{letter-spacing:17.415578pt;}
.ls11{letter-spacing:17.452911pt;}
.ls8{letter-spacing:18.028442pt;}
.ls3{letter-spacing:30.801125pt;}
.ws7{word-spacing:-22.953867pt;}
.ws4{word-spacing:-22.917107pt;}
.ws6{word-spacing:-18.363067pt;}
.ws3f{word-spacing:-15.940267pt;}
.wsa{word-spacing:-15.914662pt;}
.ws27{word-spacing:-13.283467pt;}
.ws42{word-spacing:-11.955200pt;}
.ws2d{word-spacing:-1.753418pt;}
.ws20{word-spacing:-1.594016pt;}
.ws32{word-spacing:-1.540882pt;}
.ws1e{word-spacing:-1.062677pt;}
.ws2c{word-spacing:-0.903276pt;}
.ws3e{word-spacing:-0.743874pt;}
.ws3d{word-spacing:-0.584473pt;}
.ws36{word-spacing:-0.265669pt;}
.wsc{word-spacing:-0.212535pt;}
.wse{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.106268pt;}
.ws9{word-spacing:-0.053134pt;}
.ws2f{word-spacing:-0.047821pt;}
.ws30{word-spacing:-0.037194pt;}
.ws1{word-spacing:-0.018323pt;}
.ws41{word-spacing:-0.004753pt;}
.ws8{word-spacing:0.000000pt;}
.ws17{word-spacing:0.053134pt;}
.ws2{word-spacing:0.073492pt;}
.ws13{word-spacing:0.106268pt;}
.wsb{word-spacing:0.159402pt;}
.ws15{word-spacing:0.212535pt;}
.ws24{word-spacing:0.265669pt;}
.wsd{word-spacing:0.318803pt;}
.ws2a{word-spacing:0.371937pt;}
.ws28{word-spacing:0.478205pt;}
.ws29{word-spacing:0.531339pt;}
.ws2b{word-spacing:0.690740pt;}
.ws38{word-spacing:0.743874pt;}
.ws21{word-spacing:0.797008pt;}
.ws35{word-spacing:0.850142pt;}
.ws31{word-spacing:0.903276pt;}
.ws3b{word-spacing:1.115811pt;}
.ws1f{word-spacing:1.222079pt;}
.ws3c{word-spacing:1.487748pt;}
.ws1c{word-spacing:1.530266pt;}
.ws33{word-spacing:1.540882pt;}
.ws3a{word-spacing:1.753418pt;}
.ws1b{word-spacing:1.912819pt;}
.ws10{word-spacing:2.072221pt;}
.ws23{word-spacing:2.125355pt;}
.ws18{word-spacing:2.231622pt;}
.ws34{word-spacing:2.497292pt;}
.ws1a{word-spacing:2.762961pt;}
.ws26{word-spacing:2.975497pt;}
.ws2e{word-spacing:3.134898pt;}
.ws14{word-spacing:3.347434pt;}
.ws1d{word-spacing:3.395277pt;}
.ws37{word-spacing:3.400567pt;}
.ws12{word-spacing:3.931906pt;}
.ws25{word-spacing:4.144442pt;}
.ws16{word-spacing:4.410111pt;}
.ws39{word-spacing:4.782048pt;}
.ws40{word-spacing:6.057261pt;}
.ws22{word-spacing:7.651277pt;}
.ws0{word-spacing:9.089758pt;}
.ws3{word-spacing:9.108081pt;}
.ws5{word-spacing:9.181573pt;}
.wsf{word-spacing:12.752128pt;}
.ws11{word-spacing:47.820800pt;}
._1{margin-left:-7.932845pt;}
._15{margin-left:-6.843209pt;}
._5{margin-left:-4.719315pt;}
._3{margin-left:-3.672613pt;}
._2{margin-left:-2.130116pt;}
._6{margin-left:-0.956410pt;}
._11{width:0.909652pt;}
._4{width:2.001581pt;}
._0{width:4.480588pt;}
._b{width:12.438086pt;}
._e{width:14.467882pt;}
._10{width:15.572984pt;}
._7{width:16.477875pt;}
._8{width:18.224916pt;}
._a{width:19.707903pt;}
._12{width:20.939505pt;}
._c{width:23.549441pt;}
._d{width:25.457499pt;}
._14{width:26.354398pt;}
._9{width:29.537591pt;}
._13{width:31.295847pt;}
._f{width:63.761067pt;}
.fs8{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:47.820800pt;}
.fs4{font-size:51.008533pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:73.452267pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:56.149333pt;}
.y2b{bottom:96.000000pt;}
.y5f{bottom:101.078667pt;}
.y2a{bottom:109.284000pt;}
.y5e{bottom:115.546667pt;}
.y99{bottom:122.052000pt;}
.y29{bottom:122.566667pt;}
.y28{bottom:127.645333pt;}
.yb2{bottom:129.798667pt;}
.y5d{bottom:130.013333pt;}
.y97{bottom:136.597333pt;}
.y98{bottom:141.417333pt;}
.y61{bottom:142.880000pt;}
.y27{bottom:147.145333pt;}
.y5c{bottom:150.586667pt;}
.y96{bottom:151.142667pt;}
.y26{bottom:161.690667pt;}
.y5b{bottom:165.132000pt;}
.y95{bottom:165.688000pt;}
.y25{bottom:176.236000pt;}
.y5a{bottom:179.677333pt;}
.y94{bottom:180.233333pt;}
.y24{bottom:190.781333pt;}
.y59{bottom:194.222667pt;}
.y93{bottom:194.778667pt;}
.y23{bottom:205.326667pt;}
.y58{bottom:208.768000pt;}
.y92{bottom:209.324000pt;}
.y22{bottom:219.872000pt;}
.y56{bottom:223.313333pt;}
.y91{bottom:223.869333pt;}
.y57{bottom:228.133333pt;}
.y21{bottom:234.417333pt;}
.y90{bottom:238.414667pt;}
.y20{bottom:248.962667pt;}
.y8f{bottom:252.960000pt;}
.y55{bottom:254.245333pt;}
.y1f{bottom:263.508000pt;}
.y8e{bottom:267.506667pt;}
.y1e{bottom:278.053333pt;}
.y8d{bottom:282.052000pt;}
.y54{bottom:292.293333pt;}
.y1d{bottom:292.600000pt;}
.y8c{bottom:296.597333pt;}
.y53{bottom:306.838667pt;}
.y1c{bottom:307.145333pt;}
.y8b{bottom:311.142667pt;}
.y52{bottom:321.384000pt;}
.y1b{bottom:321.690667pt;}
.y8a{bottom:325.688000pt;}
.y51{bottom:335.929333pt;}
.y1a{bottom:336.236000pt;}
.y89{bottom:340.233333pt;}
.y50{bottom:350.474667pt;}
.y19{bottom:350.781333pt;}
.y88{bottom:354.778667pt;}
.y18{bottom:365.326667pt;}
.y87{bottom:369.324000pt;}
.y4f{bottom:372.326667pt;}
.y17{bottom:379.872000pt;}
.y4e{bottom:386.872000pt;}
.y16{bottom:394.417333pt;}
.y86{bottom:400.390667pt;}
.y4d{bottom:401.417333pt;}
.yb1{bottom:403.354667pt;}
.y15{bottom:408.962667pt;}
.y4c{bottom:415.962667pt;}
.yb0{bottom:417.900000pt;}
.y4b{bottom:430.508000pt;}
.yaf{bottom:437.758667pt;}
.y85{bottom:438.664000pt;}
.y14{bottom:440.089333pt;}
.y4a{bottom:445.053333pt;}
.yae{bottom:452.304000pt;}
.y84{bottom:453.209333pt;}
.y49{bottom:459.598667pt;}
.y83{bottom:467.754667pt;}
.yad{bottom:472.162667pt;}
.y48{bottom:474.145333pt;}
.y13{bottom:478.460000pt;}
.y82{bottom:482.300000pt;}
.yac{bottom:486.708000pt;}
.y47{bottom:488.690667pt;}
.y12{bottom:493.006667pt;}
.y81{bottom:496.846667pt;}
.y45{bottom:503.236000pt;}
.yab{bottom:506.568000pt;}
.y46{bottom:508.056000pt;}
.y80{bottom:511.392000pt;}
.yaa{bottom:521.113333pt;}
.y11{bottom:523.284000pt;}
.y44{bottom:525.086667pt;}
.y7f{bottom:525.937333pt;}
.y10{bottom:537.829333pt;}
.y43{bottom:539.632000pt;}
.y7e{bottom:540.482667pt;}
.ya9{bottom:540.972000pt;}
.yf{bottom:552.374667pt;}
.y42{bottom:554.177333pt;}
.ya8{bottom:555.517333pt;}
.y7d{bottom:559.037333pt;}
.y7c{bottom:562.333333pt;}
.ye{bottom:566.920000pt;}
.y41{bottom:568.724000pt;}
.y7b{bottom:574.940000pt;}
.ya7{bottom:575.376000pt;}
.y7a{bottom:578.237333pt;}
.yd{bottom:581.466667pt;}
.ya6{bottom:589.921333pt;}
.y79{bottom:592.782667pt;}
.yc{bottom:596.012000pt;}
.y40{bottom:599.654667pt;}
.y78{bottom:607.328000pt;}
.ya5{bottom:609.780000pt;}
.yb{bottom:610.557333pt;}
.y77{bottom:621.873333pt;}
.ya4{bottom:624.325333pt;}
.ya{bottom:625.102667pt;}
.y76{bottom:636.418667pt;}
.y3f{bottom:637.704000pt;}
.ya3{bottom:638.870667pt;}
.y9{bottom:646.953333pt;}
.y75{bottom:647.666667pt;}
.y74{bottom:650.964000pt;}
.y3e{bottom:652.249333pt;}
.y73{bottom:664.812000pt;}
.y3d{bottom:666.794667pt;}
.y72{bottom:668.109333pt;}
.ya2{bottom:669.689333pt;}
.y3c{bottom:681.340000pt;}
.y71{bottom:684.832000pt;}
.y3b{bottom:695.885333pt;}
.y70{bottom:699.377333pt;}
.ya1{bottom:707.546667pt;}
.y3a{bottom:710.430667pt;}
.y6f{bottom:713.922667pt;}
.y8{bottom:716.156000pt;}
.ya0{bottom:722.092000pt;}
.y39{bottom:724.976000pt;}
.y6e{bottom:728.468000pt;}
.y7{bottom:730.701333pt;}
.y38{bottom:739.521333pt;}
.y6d{bottom:743.013333pt;}
.y6{bottom:745.246667pt;}
.y9f{bottom:752.910667pt;}
.y37{bottom:754.066667pt;}
.y6c{bottom:757.558667pt;}
.y5{bottom:759.792000pt;}
.y35{bottom:768.612000pt;}
.y6b{bottom:772.104000pt;}
.y36{bottom:773.433333pt;}
.y4{bottom:774.337333pt;}
.y34{bottom:783.157333pt;}
.y9e{bottom:790.768000pt;}
.y6a{bottom:793.956000pt;}
.y33{bottom:805.009333pt;}
.y9c{bottom:805.313333pt;}
.y69{bottom:808.501333pt;}
.y9d{bottom:810.133333pt;}
.y32{bottom:819.554667pt;}
.y9b{bottom:819.858667pt;}
.y68{bottom:823.046667pt;}
.y31{bottom:834.100000pt;}
.y67{bottom:837.592000pt;}
.y30{bottom:848.645333pt;}
.y9a{bottom:850.677333pt;}
.y66{bottom:852.137333pt;}
.y3{bottom:855.161333pt;}
.y2f{bottom:863.190667pt;}
.y65{bottom:866.682667pt;}
.y2{bottom:881.728000pt;}
.y64{bottom:888.534667pt;}
.y2e{bottom:894.122667pt;}
.y63{bottom:903.080000pt;}
.y1{bottom:908.294667pt;}
.y62{bottom:917.625333pt;}
.y2d{bottom:932.170667pt;}
.y2c{bottom:946.716000pt;}
.ha{height:14.824448pt;}
.hd{height:21.933807pt;}
.hc{height:25.589197pt;}
.h10{height:25.812358pt;}
.h6{height:32.836730pt;}
.hb{height:33.187635pt;}
.h4{height:36.290431pt;}
.h5{height:36.556100pt;}
.h3{height:36.874903pt;}
.h8{height:37.353108pt;}
.he{height:38.043849pt;}
.h9{height:39.850400pt;}
.h7{height:44.250180pt;}
.h17{height:44.869197pt;}
.h18{height:44.874530pt;}
.h13{height:45.092358pt;}
.h15{height:45.097692pt;}
.h16{height:49.740100pt;}
.hf{height:50.162916pt;}
.h11{height:50.168249pt;}
.h12{height:53.039733pt;}
.h14{height:58.281692pt;}
.h1{height:63.169041pt;}
.h2{height:81.138133pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:95.561333pt;}
.x2{left:106.688000pt;}
.x12{left:111.762667pt;}
.x2a{left:112.870667pt;}
.x4b{left:117.240000pt;}
.x2c{left:118.541333pt;}
.x41{left:129.537333pt;}
.x1{left:136.608000pt;}
.x42{left:139.500000pt;}
.xa{left:143.821333pt;}
.x13{left:156.720000pt;}
.x43{left:177.140000pt;}
.x14{left:179.558667pt;}
.x15{left:186.200000pt;}
.x10{left:187.421333pt;}
.x11{left:194.064000pt;}
.x28{left:217.781333pt;}
.x29{left:226.424000pt;}
.x4{left:247.190667pt;}
.x6{left:251.249333pt;}
.x1e{left:252.370667pt;}
.x48{left:257.516000pt;}
.x1f{left:259.012000pt;}
.x38{left:276.357333pt;}
.x3{left:282.570667pt;}
.x39{left:287.354667pt;}
.x3a{left:296.630667pt;}
.x8{left:313.876000pt;}
.x31{left:321.266667pt;}
.x32{left:327.908000pt;}
.x5{left:337.737333pt;}
.x7{left:341.702667pt;}
.x20{left:349.693333pt;}
.x21{left:356.334667pt;}
.x9{left:369.728000pt;}
.x49{left:373.741333pt;}
.x4a{left:383.242667pt;}
.x2d{left:385.426667pt;}
.x3b{left:388.288000pt;}
.x3c{left:398.250667pt;}
.x2b{left:404.678667pt;}
.x3d{left:407.526667pt;}
.x2e{left:414.413333pt;}
.x16{left:425.914667pt;}
.x3e{left:430.350667pt;}
.x17{left:432.557333pt;}
.x44{left:434.256000pt;}
.x22{left:435.397333pt;}
.x18{left:439.640000pt;}
.x23{left:444.045333pt;}
.x19{left:446.282667pt;}
.x2f{left:450.029333pt;}
.x30{left:456.670667pt;}
.x45{left:471.876000pt;}
.x1a{left:478.920000pt;}
.x1b{left:485.562667pt;}
.x33{left:518.897333pt;}
.x34{left:539.180000pt;}
.xc{left:542.416000pt;}
.xd{left:550.016000pt;}
.x3f{left:586.626667pt;}
.x24{left:590.712000pt;}
.x25{left:597.353333pt;}
.x26{left:604.212000pt;}
.x27{left:610.853333pt;}
.x40{left:641.202667pt;}
.x35{left:646.181333pt;}
.x36{left:657.178667pt;}
.x37{left:663.137333pt;}
.x46{left:672.984000pt;}
.x47{left:679.625333pt;}
.x1c{left:681.012000pt;}
.xe{left:686.153333pt;}
.x1d{left:689.650667pt;}
.xf{left:693.753333pt;}
}




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