
    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_0d2e7b86f6394d016716b5e9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_74edecbd88e89c1617c443ad.woff')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_354873f39787083dc5ed696b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_7c80f88e4758cfc9bfc5e19a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_9b053b4e0ca9aa0d66bfe3d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_d2e13f21a0d713d73dbf07f3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bda0e61d1485d2bc70da9aa6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.915000;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_6cc0ac4be742461425f88a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.955000;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_acd985a4aa18078134c45f5e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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;}
.m17{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m12{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);}
.m4{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);}
.m1c{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);}
.m14{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);}
.md{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);}
.m1b{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);}
.m15{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);}
.m1f{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);}
.m26{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m9{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);}
.m2{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);}
.m10{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);}
.m7{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);}
.mc{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);}
.mf{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);}
.m19{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);}
.mb{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);}
.m8{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);}
.m1d{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);}
.m13{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m11{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);}
.m20{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);}
.m1e{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);}
.m22{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m25{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);}
.m6{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);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.ma{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);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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:-20.172000px;}
.v3{vertical-align:-12.552000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.416000px;}
.v1{vertical-align:26.898000px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.001061px;}
.ls3{letter-spacing:0.001627px;}
.ls5{letter-spacing:0.001639px;}
.ls6{letter-spacing:2.310587px;}
.ls4{letter-spacing:2.315727px;}
.ls0{letter-spacing:3.085627px;}
.lsa{letter-spacing:3.630547px;}
.ls7{letter-spacing:13.449720px;}
.ls9{letter-spacing:16.362001px;}
.lsd{letter-spacing:16.378010px;}
.ls2{letter-spacing:21.019627px;}
.ls1{letter-spacing:35.861176px;}
.lsb{letter-spacing:76.692958px;}
.lsc{letter-spacing:99.978959px;}
.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;}
}
.ws5f{word-spacing:-86.077200px;}
.ws0{word-spacing:-77.469480px;}
.ws12{word-spacing:-65.454540px;}
.ws3d{word-spacing:-60.357847px;}
.ws41{word-spacing:-59.775840px;}
.ws62{word-spacing:-49.614541px;}
.ws60{word-spacing:-49.352723px;}
.ws65{word-spacing:-49.287269px;}
.ws64{word-spacing:-49.221814px;}
.ws39{word-spacing:-49.090905px;}
.ws61{word-spacing:-48.959996px;}
.ws30{word-spacing:-48.829087px;}
.ws51{word-spacing:-47.258178px;}
.ws4c{word-spacing:-44.951432px;}
.ws44{word-spacing:-44.831880px;}
.ws56{word-spacing:-44.799069px;}
.ws52{word-spacing:-44.592777px;}
.ws53{word-spacing:-44.533001px;}
.ws4d{word-spacing:-44.473225px;}
.ws13{word-spacing:-43.038600px;}
.ws45{word-spacing:-42.799501px;}
.ws7{word-spacing:-40.348710px;}
.ws35{word-spacing:-35.865510px;}
.ws2{word-spacing:-31.202994px;}
.ws32{word-spacing:-28.472725px;}
.ws6{word-spacing:-20.801987px;}
.ws1b{word-spacing:-16.952726px;}
.ws6b{word-spacing:-16.036362px;}
.ws66{word-spacing:-15.774544px;}
.ws5e{word-spacing:-15.578181px;}
.ws68{word-spacing:-15.512726px;}
.ws59{word-spacing:-15.447271px;}
.ws5a{word-spacing:-15.381817px;}
.ws4b{word-spacing:-15.250908px;}
.ws36{word-spacing:-14.661817px;}
.ws5b{word-spacing:-14.596362px;}
.ws69{word-spacing:-14.530908px;}
.ws2e{word-spacing:-14.269090px;}
.ws67{word-spacing:-14.203635px;}
.ws37{word-spacing:-14.138181px;}
.ws24{word-spacing:-14.007272px;}
.ws50{word-spacing:-13.549090px;}
.ws5{word-spacing:-13.270921px;}
.ws1{word-spacing:-13.268656px;}
.ws3{word-spacing:-13.267499px;}
.ws4f{word-spacing:-12.632726px;}
.ws63{word-spacing:-12.567272px;}
.ws1c{word-spacing:-12.436363px;}
.ws48{word-spacing:-12.370908px;}
.ws5c{word-spacing:-12.305454px;}
.ws4a{word-spacing:-12.239999px;}
.ws1f{word-spacing:-12.174544px;}
.ws19{word-spacing:-12.109090px;}
.ws49{word-spacing:-12.098470px;}
.ws3a{word-spacing:-12.043635px;}
.ws17{word-spacing:-11.978181px;}
.ws25{word-spacing:-11.912726px;}
.ws2f{word-spacing:-11.847272px;}
.wsd{word-spacing:-11.835622px;}
.ws33{word-spacing:-11.716363px;}
.ws16{word-spacing:-11.650908px;}
.ws31{word-spacing:-11.454544px;}
.wsa{word-spacing:-11.082446px;}
.ws23{word-spacing:-10.996363px;}
.ws47{word-spacing:-10.930908px;}
.ws20{word-spacing:-10.538181px;}
.ws3c{word-spacing:-10.407272px;}
.ws10{word-spacing:-10.383068px;}
.ws6a{word-spacing:-10.341817px;}
.wsf{word-spacing:-10.114077px;}
.ws21{word-spacing:-10.079999px;}
.ws11{word-spacing:-10.006480px;}
.ws26{word-spacing:-9.957336px;}
.ws2a{word-spacing:-9.953264px;}
.wsc{word-spacing:-9.952682px;}
.ws28{word-spacing:-9.950224px;}
.ws29{word-spacing:-9.932346px;}
.ws27{word-spacing:-9.930348px;}
.ws9{word-spacing:-9.898884px;}
.ws46{word-spacing:-9.818181px;}
.wsb{word-spacing:-9.737489px;}
.ws8{word-spacing:-9.522296px;}
.ws1e{word-spacing:-9.229090px;}
.ws14{word-spacing:-8.836363px;}
.ws4e{word-spacing:-8.770908px;}
.ws34{word-spacing:-8.705454px;}
.ws5d{word-spacing:-8.509090px;}
.ws58{word-spacing:-7.919999px;}
.ws38{word-spacing:-7.854545px;}
.wse{word-spacing:-7.746952px;}
.ws22{word-spacing:-7.527272px;}
.ws57{word-spacing:-7.461818px;}
.ws18{word-spacing:-7.199999px;}
.ws1d{word-spacing:-7.069090px;}
.ws2c{word-spacing:-6.635114px;}
.ws3b{word-spacing:-5.629090px;}
.ws2b{word-spacing:-5.487425px;}
.ws15{word-spacing:-5.040000px;}
.ws1a{word-spacing:-4.516363px;}
.ws2d{word-spacing:0.000000px;}
.ws4{word-spacing:4.661821px;}
.ws55{word-spacing:14.344178px;}
.ws43{word-spacing:14.348863px;}
.ws3f{word-spacing:36.761157px;}
.ws3e{word-spacing:42.138629px;}
.ws42{word-spacing:49.508243px;}
.ws54{word-spacing:83.086394px;}
.ws40{word-spacing:150.871219px;}
._1c{margin-left:-7.854545px;}
._1d{margin-left:-5.080439px;}
._3{margin-left:-3.946956px;}
._7{margin-left:-2.743712px;}
._0{margin-left:-1.652682px;}
._2{width:1.446097px;}
._1f{width:2.564939px;}
._d{width:3.685138px;}
._6{width:12.573733px;}
._9{width:14.471737px;}
._18{width:15.967605px;}
._4{width:17.161651px;}
._5{width:18.652939px;}
._f{width:20.037235px;}
._a{width:21.796362px;}
._e{width:22.853856px;}
._8{width:25.270127px;}
._c{width:27.098180px;}
._17{width:29.055719px;}
._1e{width:31.131346px;}
._20{width:32.724006px;}
._1{width:34.396449px;}
._10{width:37.178179px;}
._b{width:44.247269px;}
._16{width:76.138469px;}
._1b{width:86.961140px;}
._11{width:89.560815px;}
._12{width:92.054234px;}
._19{width:115.294664px;}
._15{width:145.400380px;}
._1a{width:155.810234px;}
._13{width:221.216422px;}
._14{width:422.004083px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865480px;}
.fs9{font-size:41.843100px;}
.fs2{font-size:47.820660px;}
.fs4{font-size:53.798280px;}
.fs7{font-size:56.727300px;}
.fs8{font-size:59.775840px;}
.fs5{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y2e{bottom:112.894500px;}
.y5b{bottom:124.765500px;}
.y96{bottom:127.743000px;}
.y72{bottom:129.909000px;}
.y2d{bottom:129.955500px;}
.y5a{bottom:142.698000px;}
.y95{bottom:148.066500px;}
.y71{bottom:150.232500px;}
.y2c{bottom:151.699500px;}
.y59{bottom:160.630500px;}
.y2b{bottom:163.093500px;}
.y94{bottom:168.390000px;}
.y70{bottom:170.556000px;}
.y58{bottom:187.500000px;}
.y93{bottom:188.713500px;}
.y6f{bottom:190.879500px;}
.y57{bottom:202.893000px;}
.y56{bottom:206.031000px;}
.y2a{bottom:208.393500px;}
.y92{bottom:209.037000px;}
.y6e{bottom:211.203000px;}
.y55{bottom:224.562000px;}
.y29{bottom:228.718500px;}
.y91{bottom:229.362000px;}
.y6d{bottom:231.528000px;}
.y54{bottom:243.091500px;}
.y28{bottom:249.042000px;}
.y90{bottom:249.685500px;}
.y6c{bottom:251.851500px;}
.y27{bottom:269.365500px;}
.y8f{bottom:270.009000px;}
.y6b{bottom:272.175000px;}
.y26{bottom:289.689000px;}
.y53{bottom:290.025000px;}
.y8e{bottom:290.332500px;}
.y25{bottom:310.012500px;}
.y52{bottom:310.348500px;}
.y8d{bottom:310.656000px;}
.y6a{bottom:319.015500px;}
.y24{bottom:330.337500px;}
.y51{bottom:330.672000px;}
.y8c{bottom:330.979500px;}
.y69{bottom:336.948000px;}
.y23{bottom:350.661000px;}
.y8b{bottom:351.304500px;}
.y68{bottom:354.880500px;}
.y50{bottom:361.527000px;}
.y22{bottom:370.984500px;}
.y8a{bottom:371.628000px;}
.y21{bottom:391.308000px;}
.y89{bottom:391.951500px;}
.y4f{bottom:405.262500px;}
.y20{bottom:411.631500px;}
.y4e{bottom:425.586000px;}
.y88{bottom:428.421000px;}
.y1f{bottom:431.956500px;}
.y4d{bottom:445.911000px;}
.y1e{bottom:452.280000px;}
.y4c{bottom:466.234500px;}
.y1d{bottom:472.603500px;}
.y87{bottom:479.890500px;}
.y4b{bottom:486.558000px;}
.y1c{bottom:492.927000px;}
.y86{bottom:500.214000px;}
.yb5{bottom:501.802500px;}
.y4a{bottom:506.881500px;}
.y1b{bottom:513.250500px;}
.y85{bottom:520.537500px;}
.yb4{bottom:522.126000px;}
.y1a{bottom:533.575500px;}
.y49{bottom:537.735000px;}
.y84{bottom:540.862500px;}
.yb3{bottom:542.449500px;}
.y19{bottom:553.899000px;}
.y83{bottom:561.186000px;}
.yb2{bottom:562.774500px;}
.y18{bottom:574.222500px;}
.y48{bottom:581.472000px;}
.y82{bottom:581.509500px;}
.yb1{bottom:583.098000px;}
.y47{bottom:601.795500px;}
.y81{bottom:601.833000px;}
.yb0{bottom:603.421500px;}
.y17{bottom:610.692000px;}
.y46{bottom:622.120500px;}
.y80{bottom:622.156500px;}
.yaf{bottom:623.745000px;}
.y45{bottom:642.444000px;}
.y7f{bottom:642.481500px;}
.yae{bottom:644.068500px;}
.y44{bottom:662.767500px;}
.y7e{bottom:662.805000px;}
.yad{bottom:664.393500px;}
.y67{bottom:679.645500px;}
.y43{bottom:683.091000px;}
.y7d{bottom:683.128500px;}
.yac{bottom:684.717000px;}
.y16{bottom:684.865500px;}
.y66{bottom:699.969000px;}
.y15{bottom:701.304000px;}
.y42{bottom:703.414500px;}
.y7c{bottom:703.452000px;}
.yab{bottom:705.040500px;}
.y65{bottom:720.292500px;}
.y41{bottom:723.739500px;}
.y7b{bottom:723.775500px;}
.yaa{bottom:725.364000px;}
.y14{bottom:729.165000px;}
.y64{bottom:740.616000px;}
.y7a{bottom:744.100500px;}
.y13{bottom:745.603500px;}
.ya9{bottom:745.687500px;}
.y40{bottom:754.593000px;}
.y12{bottom:762.042000px;}
.ya8{bottom:766.012500px;}
.y63{bottom:777.087000px;}
.y11{bottom:778.479000px;}
.ya7{bottom:786.336000px;}
.y3f{bottom:791.659500px;}
.y10{bottom:794.917500px;}
.y79{bottom:799.960500px;}
.ya6{bottom:806.659500px;}
.yf{bottom:811.356000px;}
.y78{bottom:817.893000px;}
.ya5{bottom:826.983000px;}
.ye{bottom:827.794500px;}
.y62{bottom:828.555000px;}
.y3e{bottom:843.129000px;}
.yd{bottom:844.233000px;}
.y77{bottom:844.762500px;}
.ya4{bottom:847.306500px;}
.y61{bottom:848.880000px;}
.yc{bottom:860.671500px;}
.y76{bottom:863.293500px;}
.y3d{bottom:863.452500px;}
.ya3{bottom:867.631500px;}
.yb{bottom:877.110000px;}
.y60{bottom:879.733500px;}
.y75{bottom:881.823000px;}
.y3c{bottom:883.777500px;}
.ya2{bottom:887.955000px;}
.ya{bottom:893.548500px;}
.y3b{bottom:904.101000px;}
.ya1{bottom:908.278500px;}
.y9{bottom:909.987000px;}
.y5f{bottom:923.470500px;}
.y3a{bottom:924.424500px;}
.y74{bottom:925.414500px;}
.y8{bottom:926.425500px;}
.ya0{bottom:928.602000px;}
.y7{bottom:942.862500px;}
.y73{bottom:943.347000px;}
.y5e{bottom:943.794000px;}
.y39{bottom:944.748000px;}
.y9f{bottom:948.925500px;}
.y5d{bottom:964.117500px;}
.y38{bottom:965.071500px;}
.y9e{bottom:969.250500px;}
.y37{bottom:985.396500px;}
.y9d{bottom:989.574000px;}
.y6{bottom:993.037500px;}
.y36{bottom:1005.720000px;}
.y9c{bottom:1009.897500px;}
.y5{bottom:1012.464000px;}
.y5c{bottom:1022.967000px;}
.y35{bottom:1026.043500px;}
.y9b{bottom:1030.221000px;}
.y4{bottom:1041.792000px;}
.y34{bottom:1046.367000px;}
.y9a{bottom:1050.544500px;}
.y33{bottom:1066.690500px;}
.y99{bottom:1070.869500px;}
.y3{bottom:1080.646500px;}
.y32{bottom:1087.015500px;}
.y98{bottom:1091.193000px;}
.y31{bottom:1107.339000px;}
.y97{bottom:1111.516500px;}
.y2{bottom:1113.523500px;}
.y30{bottom:1127.662500px;}
.y1{bottom:1146.400500px;}
.y2f{bottom:1147.986000px;}
.ha{height:25.034105px;}
.h4{height:25.105836px;}
.hc{height:26.396993px;}
.h11{height:29.206484px;}
.h9{height:37.658796px;}
.he{height:38.461109px;}
.h6{height:39.595534px;}
.hf{height:42.919053px;}
.h12{height:43.935242px;}
.hb{height:47.073495px;}
.h5{height:48.109087px;}
.h8{height:48.174541px;}
.h10{height:51.622484px;}
.hd{height:52.722300px;}
.h3{height:62.094006px;}
.h7{height:63.266742px;}
.h2{height:75.920090px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x26{left:115.609500px;}
.x5{left:124.363500px;}
.x27{left:143.050500px;}
.x1b{left:159.874500px;}
.xc{left:172.576500px;}
.x2{left:175.122000px;}
.x1e{left:176.169000px;}
.x1f{left:191.388000px;}
.x20{left:198.127500px;}
.x21{left:213.345000px;}
.x22{left:220.086000px;}
.x23{left:235.303500px;}
.xa{left:255.966000px;}
.xb{left:263.574000px;}
.x17{left:289.896000px;}
.x1a{left:303.607500px;}
.x1d{left:316.188000px;}
.x1c{left:317.775000px;}
.x18{left:323.916000px;}
.x24{left:378.406500px;}
.x25{left:393.624000px;}
.xf{left:411.400500px;}
.x10{left:419.008500px;}
.x15{left:453.085500px;}
.x16{left:506.706000px;}
.x19{left:512.049000px;}
.xd{left:564.529500px;}
.xe{left:572.139000px;}
.x8{left:623.535000px;}
.x11{left:624.820500px;}
.x9{left:631.144500px;}
.x12{left:632.430000px;}
.x13{left:641.538000px;}
.x14{left:649.147500px;}
.x6{left:661.440000px;}
.x7{left:669.048000px;}
.x3{left:770.211000px;}
.x4{left:777.819000px;}
@media print{
.v2{vertical-align:-17.930667pt;}
.v3{vertical-align:-11.157333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.925333pt;}
.v1{vertical-align:23.909333pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000943pt;}
.ls3{letter-spacing:0.001446pt;}
.ls5{letter-spacing:0.001457pt;}
.ls6{letter-spacing:2.053855pt;}
.ls4{letter-spacing:2.058424pt;}
.ls0{letter-spacing:2.742780pt;}
.lsa{letter-spacing:3.227153pt;}
.ls7{letter-spacing:11.955307pt;}
.ls9{letter-spacing:14.544001pt;}
.lsd{letter-spacing:14.558231pt;}
.ls2{letter-spacing:18.684113pt;}
.ls1{letter-spacing:31.876601pt;}
.lsb{letter-spacing:68.171519pt;}
.lsc{letter-spacing:88.870185pt;}
.ws5f{word-spacing:-76.513067pt;}
.ws0{word-spacing:-68.861760pt;}
.ws12{word-spacing:-58.181813pt;}
.ws3d{word-spacing:-53.651420pt;}
.ws41{word-spacing:-53.134080pt;}
.ws62{word-spacing:-44.101815pt;}
.ws60{word-spacing:-43.869087pt;}
.ws65{word-spacing:-43.810905pt;}
.ws64{word-spacing:-43.752724pt;}
.ws39{word-spacing:-43.636360pt;}
.ws61{word-spacing:-43.519996pt;}
.ws30{word-spacing:-43.403633pt;}
.ws51{word-spacing:-42.007269pt;}
.ws4c{word-spacing:-39.956828pt;}
.ws44{word-spacing:-39.850560pt;}
.ws56{word-spacing:-39.821394pt;}
.ws52{word-spacing:-39.638024pt;}
.ws53{word-spacing:-39.584890pt;}
.ws4d{word-spacing:-39.531756pt;}
.ws13{word-spacing:-38.256533pt;}
.ws45{word-spacing:-38.044001pt;}
.ws7{word-spacing:-35.865520pt;}
.ws35{word-spacing:-31.880453pt;}
.ws2{word-spacing:-27.735994pt;}
.ws32{word-spacing:-25.309089pt;}
.ws6{word-spacing:-18.490655pt;}
.ws1b{word-spacing:-15.069090pt;}
.ws6b{word-spacing:-14.254544pt;}
.ws66{word-spacing:-14.021817pt;}
.ws5e{word-spacing:-13.847272pt;}
.ws68{word-spacing:-13.789090pt;}
.ws59{word-spacing:-13.730908pt;}
.ws5a{word-spacing:-13.672726pt;}
.ws4b{word-spacing:-13.556363pt;}
.ws36{word-spacing:-13.032726pt;}
.ws5b{word-spacing:-12.974544pt;}
.ws69{word-spacing:-12.916363pt;}
.ws2e{word-spacing:-12.683635pt;}
.ws67{word-spacing:-12.625453pt;}
.ws37{word-spacing:-12.567272pt;}
.ws24{word-spacing:-12.450908pt;}
.ws50{word-spacing:-12.043635pt;}
.ws5{word-spacing:-11.796374pt;}
.ws1{word-spacing:-11.794361pt;}
.ws3{word-spacing:-11.793332pt;}
.ws4f{word-spacing:-11.229090pt;}
.ws63{word-spacing:-11.170908pt;}
.ws1c{word-spacing:-11.054545pt;}
.ws48{word-spacing:-10.996363pt;}
.ws5c{word-spacing:-10.938181pt;}
.ws4a{word-spacing:-10.879999pt;}
.ws1f{word-spacing:-10.821817pt;}
.ws19{word-spacing:-10.763635pt;}
.ws49{word-spacing:-10.754196pt;}
.ws3a{word-spacing:-10.705454pt;}
.ws17{word-spacing:-10.647272pt;}
.ws25{word-spacing:-10.589090pt;}
.ws2f{word-spacing:-10.530908pt;}
.wsd{word-spacing:-10.520553pt;}
.ws33{word-spacing:-10.414545pt;}
.ws16{word-spacing:-10.356363pt;}
.ws31{word-spacing:-10.181817pt;}
.wsa{word-spacing:-9.851063pt;}
.ws23{word-spacing:-9.774545pt;}
.ws47{word-spacing:-9.716363pt;}
.ws20{word-spacing:-9.367272pt;}
.ws3c{word-spacing:-9.250908pt;}
.ws10{word-spacing:-9.229394pt;}
.ws6a{word-spacing:-9.192727pt;}
.wsf{word-spacing:-8.990290pt;}
.ws21{word-spacing:-8.959999pt;}
.ws11{word-spacing:-8.894649pt;}
.ws26{word-spacing:-8.850966pt;}
.ws2a{word-spacing:-8.847346pt;}
.wsc{word-spacing:-8.846828pt;}
.ws28{word-spacing:-8.844644pt;}
.ws29{word-spacing:-8.828752pt;}
.ws27{word-spacing:-8.826976pt;}
.ws9{word-spacing:-8.799008pt;}
.ws46{word-spacing:-8.727272pt;}
.wsb{word-spacing:-8.655545pt;}
.ws8{word-spacing:-8.464263pt;}
.ws1e{word-spacing:-8.203636pt;}
.ws14{word-spacing:-7.854545pt;}
.ws4e{word-spacing:-7.796363pt;}
.ws34{word-spacing:-7.738181pt;}
.ws5d{word-spacing:-7.563636pt;}
.ws58{word-spacing:-7.039999pt;}
.ws38{word-spacing:-6.981818pt;}
.wse{word-spacing:-6.886180pt;}
.ws22{word-spacing:-6.690909pt;}
.ws57{word-spacing:-6.632727pt;}
.ws18{word-spacing:-6.399999pt;}
.ws1d{word-spacing:-6.283636pt;}
.ws2c{word-spacing:-5.897879pt;}
.ws3b{word-spacing:-5.003636pt;}
.ws2b{word-spacing:-4.877711pt;}
.ws15{word-spacing:-4.480000pt;}
.ws1a{word-spacing:-4.014545pt;}
.ws2d{word-spacing:0.000000pt;}
.ws4{word-spacing:4.143841pt;}
.ws55{word-spacing:12.750381pt;}
.ws43{word-spacing:12.754545pt;}
.ws3f{word-spacing:32.676584pt;}
.ws3e{word-spacing:37.456559pt;}
.ws42{word-spacing:44.007327pt;}
.ws54{word-spacing:73.854573pt;}
.ws40{word-spacing:134.107750pt;}
._1c{margin-left:-6.981818pt;}
._1d{margin-left:-4.515946pt;}
._3{margin-left:-3.508405pt;}
._7{margin-left:-2.438855pt;}
._0{margin-left:-1.469051pt;}
._2{width:1.285420pt;}
._1f{width:2.279945pt;}
._d{width:3.275678pt;}
._6{width:11.176652pt;}
._9{width:12.863767pt;}
._18{width:14.193427pt;}
._4{width:15.254801pt;}
._5{width:16.580390pt;}
._f{width:17.810876pt;}
._a{width:19.374544pt;}
._e{width:20.314539pt;}
._8{width:22.462335pt;}
._c{width:24.087271pt;}
._17{width:25.827305pt;}
._1e{width:27.672307pt;}
._20{width:29.088006pt;}
._1{width:30.574621pt;}
._10{width:33.047270pt;}
._b{width:39.330906pt;}
._16{width:67.678639pt;}
._1b{width:77.298791pt;}
._11{width:79.609614pt;}
._12{width:81.825986pt;}
._19{width:102.484145pt;}
._15{width:129.244783pt;}
._1a{width:138.497986pt;}
._13{width:196.636819pt;}
._14{width:375.114740pt;}
.fs3{font-size:31.880427pt;}
.fs9{font-size:37.193867pt;}
.fs2{font-size:42.507253pt;}
.fs4{font-size:47.820693pt;}
.fs7{font-size:50.424267pt;}
.fs8{font-size:53.134080pt;}
.fs5{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:100.350667pt;}
.y5b{bottom:110.902667pt;}
.y96{bottom:113.549333pt;}
.y72{bottom:115.474667pt;}
.y2d{bottom:115.516000pt;}
.y5a{bottom:126.842667pt;}
.y95{bottom:131.614667pt;}
.y71{bottom:133.540000pt;}
.y2c{bottom:134.844000pt;}
.y59{bottom:142.782667pt;}
.y2b{bottom:144.972000pt;}
.y94{bottom:149.680000pt;}
.y70{bottom:151.605333pt;}
.y58{bottom:166.666667pt;}
.y93{bottom:167.745333pt;}
.y6f{bottom:169.670667pt;}
.y57{bottom:180.349333pt;}
.y56{bottom:183.138667pt;}
.y2a{bottom:185.238667pt;}
.y92{bottom:185.810667pt;}
.y6e{bottom:187.736000pt;}
.y55{bottom:199.610667pt;}
.y29{bottom:203.305333pt;}
.y91{bottom:203.877333pt;}
.y6d{bottom:205.802667pt;}
.y54{bottom:216.081333pt;}
.y28{bottom:221.370667pt;}
.y90{bottom:221.942667pt;}
.y6c{bottom:223.868000pt;}
.y27{bottom:239.436000pt;}
.y8f{bottom:240.008000pt;}
.y6b{bottom:241.933333pt;}
.y26{bottom:257.501333pt;}
.y53{bottom:257.800000pt;}
.y8e{bottom:258.073333pt;}
.y25{bottom:275.566667pt;}
.y52{bottom:275.865333pt;}
.y8d{bottom:276.138667pt;}
.y6a{bottom:283.569333pt;}
.y24{bottom:293.633333pt;}
.y51{bottom:293.930667pt;}
.y8c{bottom:294.204000pt;}
.y69{bottom:299.509333pt;}
.y23{bottom:311.698667pt;}
.y8b{bottom:312.270667pt;}
.y68{bottom:315.449333pt;}
.y50{bottom:321.357333pt;}
.y22{bottom:329.764000pt;}
.y8a{bottom:330.336000pt;}
.y21{bottom:347.829333pt;}
.y89{bottom:348.401333pt;}
.y4f{bottom:360.233333pt;}
.y20{bottom:365.894667pt;}
.y4e{bottom:378.298667pt;}
.y88{bottom:380.818667pt;}
.y1f{bottom:383.961333pt;}
.y4d{bottom:396.365333pt;}
.y1e{bottom:402.026667pt;}
.y4c{bottom:414.430667pt;}
.y1d{bottom:420.092000pt;}
.y87{bottom:426.569333pt;}
.y4b{bottom:432.496000pt;}
.y1c{bottom:438.157333pt;}
.y86{bottom:444.634667pt;}
.yb5{bottom:446.046667pt;}
.y4a{bottom:450.561333pt;}
.y1b{bottom:456.222667pt;}
.y85{bottom:462.700000pt;}
.yb4{bottom:464.112000pt;}
.y1a{bottom:474.289333pt;}
.y49{bottom:477.986667pt;}
.y84{bottom:480.766667pt;}
.yb3{bottom:482.177333pt;}
.y19{bottom:492.354667pt;}
.y83{bottom:498.832000pt;}
.yb2{bottom:500.244000pt;}
.y18{bottom:510.420000pt;}
.y48{bottom:516.864000pt;}
.y82{bottom:516.897333pt;}
.yb1{bottom:518.309333pt;}
.y47{bottom:534.929333pt;}
.y81{bottom:534.962667pt;}
.yb0{bottom:536.374667pt;}
.y17{bottom:542.837333pt;}
.y46{bottom:552.996000pt;}
.y80{bottom:553.028000pt;}
.yaf{bottom:554.440000pt;}
.y45{bottom:571.061333pt;}
.y7f{bottom:571.094667pt;}
.yae{bottom:572.505333pt;}
.y44{bottom:589.126667pt;}
.y7e{bottom:589.160000pt;}
.yad{bottom:590.572000pt;}
.y67{bottom:604.129333pt;}
.y43{bottom:607.192000pt;}
.y7d{bottom:607.225333pt;}
.yac{bottom:608.637333pt;}
.y16{bottom:608.769333pt;}
.y66{bottom:622.194667pt;}
.y15{bottom:623.381333pt;}
.y42{bottom:625.257333pt;}
.y7c{bottom:625.290667pt;}
.yab{bottom:626.702667pt;}
.y65{bottom:640.260000pt;}
.y41{bottom:643.324000pt;}
.y7b{bottom:643.356000pt;}
.yaa{bottom:644.768000pt;}
.y14{bottom:648.146667pt;}
.y64{bottom:658.325333pt;}
.y7a{bottom:661.422667pt;}
.y13{bottom:662.758667pt;}
.ya9{bottom:662.833333pt;}
.y40{bottom:670.749333pt;}
.y12{bottom:677.370667pt;}
.ya8{bottom:680.900000pt;}
.y63{bottom:690.744000pt;}
.y11{bottom:691.981333pt;}
.ya7{bottom:698.965333pt;}
.y3f{bottom:703.697333pt;}
.y10{bottom:706.593333pt;}
.y79{bottom:711.076000pt;}
.ya6{bottom:717.030667pt;}
.yf{bottom:721.205333pt;}
.y78{bottom:727.016000pt;}
.ya5{bottom:735.096000pt;}
.ye{bottom:735.817333pt;}
.y62{bottom:736.493333pt;}
.y3e{bottom:749.448000pt;}
.yd{bottom:750.429333pt;}
.y77{bottom:750.900000pt;}
.ya4{bottom:753.161333pt;}
.y61{bottom:754.560000pt;}
.yc{bottom:765.041333pt;}
.y76{bottom:767.372000pt;}
.y3d{bottom:767.513333pt;}
.ya3{bottom:771.228000pt;}
.yb{bottom:779.653333pt;}
.y60{bottom:781.985333pt;}
.y75{bottom:783.842667pt;}
.y3c{bottom:785.580000pt;}
.ya2{bottom:789.293333pt;}
.ya{bottom:794.265333pt;}
.y3b{bottom:803.645333pt;}
.ya1{bottom:807.358667pt;}
.y9{bottom:808.877333pt;}
.y5f{bottom:820.862667pt;}
.y3a{bottom:821.710667pt;}
.y74{bottom:822.590667pt;}
.y8{bottom:823.489333pt;}
.ya0{bottom:825.424000pt;}
.y7{bottom:838.100000pt;}
.y73{bottom:838.530667pt;}
.y5e{bottom:838.928000pt;}
.y39{bottom:839.776000pt;}
.y9f{bottom:843.489333pt;}
.y5d{bottom:856.993333pt;}
.y38{bottom:857.841333pt;}
.y9e{bottom:861.556000pt;}
.y37{bottom:875.908000pt;}
.y9d{bottom:879.621333pt;}
.y6{bottom:882.700000pt;}
.y36{bottom:893.973333pt;}
.y9c{bottom:897.686667pt;}
.y5{bottom:899.968000pt;}
.y5c{bottom:909.304000pt;}
.y35{bottom:912.038667pt;}
.y9b{bottom:915.752000pt;}
.y4{bottom:926.037333pt;}
.y34{bottom:930.104000pt;}
.y9a{bottom:933.817333pt;}
.y33{bottom:948.169333pt;}
.y99{bottom:951.884000pt;}
.y3{bottom:960.574667pt;}
.y32{bottom:966.236000pt;}
.y98{bottom:969.949333pt;}
.y31{bottom:984.301333pt;}
.y97{bottom:988.014667pt;}
.y2{bottom:989.798667pt;}
.y30{bottom:1002.366667pt;}
.y1{bottom:1019.022667pt;}
.y2f{bottom:1020.432000pt;}
.ha{height:22.252538pt;}
.h4{height:22.316299pt;}
.hc{height:23.463994pt;}
.h11{height:25.961319pt;}
.h9{height:33.474485pt;}
.he{height:34.187653pt;}
.h6{height:35.196030pt;}
.hf{height:38.150269pt;}
.h12{height:39.053549pt;}
.hb{height:41.843107pt;}
.h5{height:42.763633pt;}
.h8{height:42.821815pt;}
.h10{height:45.886652pt;}
.hd{height:46.864266pt;}
.h3{height:55.194672pt;}
.h7{height:56.237104pt;}
.h2{height:67.484525pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x26{left:102.764000pt;}
.x5{left:110.545333pt;}
.x27{left:127.156000pt;}
.x1b{left:142.110667pt;}
.xc{left:153.401333pt;}
.x2{left:155.664000pt;}
.x1e{left:156.594667pt;}
.x1f{left:170.122667pt;}
.x20{left:176.113333pt;}
.x21{left:189.640000pt;}
.x22{left:195.632000pt;}
.x23{left:209.158667pt;}
.xa{left:227.525333pt;}
.xb{left:234.288000pt;}
.x17{left:257.685333pt;}
.x1a{left:269.873333pt;}
.x1d{left:281.056000pt;}
.x1c{left:282.466667pt;}
.x18{left:287.925333pt;}
.x24{left:336.361333pt;}
.x25{left:349.888000pt;}
.xf{left:365.689333pt;}
.x10{left:372.452000pt;}
.x15{left:402.742667pt;}
.x16{left:450.405333pt;}
.x19{left:455.154667pt;}
.xd{left:501.804000pt;}
.xe{left:508.568000pt;}
.x8{left:554.253333pt;}
.x11{left:555.396000pt;}
.x9{left:561.017333pt;}
.x12{left:562.160000pt;}
.x13{left:570.256000pt;}
.x14{left:577.020000pt;}
.x6{left:587.946667pt;}
.x7{left:594.709333pt;}
.x3{left:684.632000pt;}
.x4{left:691.394667pt;}
}




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