
    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_3d39175f7f27434b7fc50197.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_58c85079a5d1172d5897f7d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_38ccd2380a6e4e3f232ab0c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_c1f3ffc87f8378d713e26cf3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_e4172c71a489aa32375c443c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.482000;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_93ef8c3ebf24582ea1534160.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_de3a4aa3457a6557d1a2cf9f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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_7200471345d69d30a6e2d515.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_9784a9fa66a79148b42bd706.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758000;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;}
.m8{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);}
.m17{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);}
.ma{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);}
.m15{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);}
.m1f{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);}
.m4{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);}
.m1a{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);}
.m21{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);}
.m5{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);}
.me{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);}
.m13{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);}
.m7{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);}
.m18{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);}
.m11{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);}
.m1d{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);}
.m1e{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);}
.m20{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);}
.m1{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);}
.m9{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.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);}
.m6{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);}
.md{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);}
.m12{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);}
.m3{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);}
.m1b{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);}
.m16{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.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);}
.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);}
.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);}
.mf{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:-17.358000px;}
.v3{vertical-align:-10.464000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000145px;}
.ls15{letter-spacing:0.000612px;}
.ls2b{letter-spacing:0.004800px;}
.ls8{letter-spacing:0.542815px;}
.ls9{letter-spacing:0.548815px;}
.ls17{letter-spacing:0.671530px;}
.ls14{letter-spacing:0.717483px;}
.ls27{letter-spacing:0.720783px;}
.ls23{letter-spacing:0.744612px;}
.ls6{letter-spacing:1.275394px;}
.ls20{letter-spacing:1.494017px;}
.ls24{letter-spacing:1.494476px;}
.lse{letter-spacing:1.496725px;}
.ls1{letter-spacing:1.861130px;}
.ls10{letter-spacing:2.983200px;}
.ls2e{letter-spacing:2.988600px;}
.ls12{letter-spacing:2.989200px;}
.ls21{letter-spacing:3.285986px;}
.ls26{letter-spacing:3.553200px;}
.ls13{letter-spacing:3.559200px;}
.lsf{letter-spacing:4.479986px;}
.ls4{letter-spacing:11.954850px;}
.ls2a{letter-spacing:12.191216px;}
.ls1e{letter-spacing:13.115675px;}
.ls29{letter-spacing:13.448400px;}
.ls28{letter-spacing:13.454400px;}
.ls2d{letter-spacing:13.571591px;}
.lsd{letter-spacing:14.154783px;}
.ls2c{letter-spacing:14.909224px;}
.ls1b{letter-spacing:14.944200px;}
.ls25{letter-spacing:15.660783px;}
.ls22{letter-spacing:15.688766px;}
.ls1f{letter-spacing:16.080783px;}
.lsc{letter-spacing:16.634725px;}
.ls1a{letter-spacing:17.319483px;}
.ls16{letter-spacing:17.929200px;}
.ls7{letter-spacing:17.935200px;}
.ls1c{letter-spacing:18.100200px;}
.ls19{letter-spacing:18.100766px;}
.ls1d{letter-spacing:19.263483px;}
.ls2f{letter-spacing:22.598400px;}
.lsa{letter-spacing:24.024583px;}
.lsb{letter-spacing:26.385483px;}
.ls18{letter-spacing:29.621675px;}
.ls0{letter-spacing:57.415200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.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;}
}
.ws0{word-spacing:-28.532313px;}
.ws4f{word-spacing:-14.943900px;}
.ws7f{word-spacing:-13.449600px;}
.ws2e{word-spacing:-11.955150px;}
.ws4{word-spacing:-11.357400px;}
.ws9{word-spacing:-10.460700px;}
.ws39{word-spacing:-3.287658px;}
.ws57{word-spacing:-3.227882px;}
.ws45{word-spacing:-3.108331px;}
.ws49{word-spacing:-2.809453px;}
.ws84{word-spacing:-2.474726px;}
.ws28{word-spacing:-2.331248px;}
.ws62{word-spacing:-2.271473px;}
.ws6{word-spacing:-1.908367px;}
.ws91{word-spacing:-1.613952px;}
.ws5{word-spacing:-1.322630px;}
.ws69{word-spacing:-1.315063px;}
.ws8f{word-spacing:-1.237363px;}
.ws4d{word-spacing:-1.195512px;}
.ws67{word-spacing:-0.896634px;}
.ws4b{word-spacing:-0.836858px;}
.ws5f{word-spacing:-0.777083px;}
.ws34{word-spacing:-0.597756px;}
.ws20{word-spacing:-0.418429px;}
.ws46{word-spacing:-0.358654px;}
.ws27{word-spacing:-0.298878px;}
.ws2b{word-spacing:-0.239102px;}
.ws71{word-spacing:-0.215194px;}
.ws24{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.ws21{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws29{word-spacing:-0.059776px;}
.ws80{word-spacing:-0.053798px;}
.ws2f{word-spacing:-0.047821px;}
.wsa{word-spacing:-0.041843px;}
.ws2{word-spacing:-0.002933px;}
.ws76{word-spacing:-0.001775px;}
.ws5c{word-spacing:-0.000954px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:0.053798px;}
.ws25{word-spacing:0.059776px;}
.ws1e{word-spacing:0.107597px;}
.ws42{word-spacing:0.119551px;}
.ws1d{word-spacing:0.161395px;}
.ws36{word-spacing:0.179327px;}
.wsb{word-spacing:0.209214px;}
.ws81{word-spacing:0.215194px;}
.ws22{word-spacing:0.239102px;}
.ws7e{word-spacing:0.268992px;}
.wsd{word-spacing:0.292900px;}
.ws31{word-spacing:0.298878px;}
.ws48{word-spacing:0.358654px;}
.ws83{word-spacing:0.430387px;}
.ws75{word-spacing:0.530700px;}
.ws65{word-spacing:0.566700px;}
.ws1c{word-spacing:0.645581px;}
.ws3a{word-spacing:0.657532px;}
.ws5e{word-spacing:0.836858px;}
.ws87{word-spacing:1.075968px;}
.ws97{word-spacing:1.129766px;}
.ws50{word-spacing:1.255288px;}
.ws70{word-spacing:1.398758px;}
.ws2a{word-spacing:1.434614px;}
.ws6f{word-spacing:1.452557px;}
.ws40{word-spacing:1.494390px;}
.ws4c{word-spacing:1.613941px;}
.ws18{word-spacing:1.613952px;}
.ws6e{word-spacing:1.721549px;}
.ws35{word-spacing:1.733492px;}
.ws2c{word-spacing:1.793268px;}
.ws82{word-spacing:1.829146px;}
.ws7d{word-spacing:1.853044px;}
.ws99{word-spacing:1.882944px;}
.ws38{word-spacing:1.912819px;}
.ws5a{word-spacing:1.972595px;}
.wsc{word-spacing:2.008454px;}
.ws4e{word-spacing:2.032370px;}
.ws6c{word-spacing:2.211697px;}
.ws7c{word-spacing:2.271473px;}
.ws63{word-spacing:2.331248px;}
.ws8d{word-spacing:2.367130px;}
.ws47{word-spacing:2.391024px;}
.ws86{word-spacing:2.420928px;}
.ws3c{word-spacing:2.510575px;}
.ws6b{word-spacing:2.689902px;}
.ws85{word-spacing:2.689920px;}
.ws33{word-spacing:2.809453px;}
.ws15{word-spacing:2.869236px;}
.ws8b{word-spacing:2.958912px;}
.ws3d{word-spacing:3.048556px;}
.ws43{word-spacing:3.227882px;}
.ws1b{word-spacing:3.227904px;}
.ws44{word-spacing:3.347434px;}
.ws53{word-spacing:3.407209px;}
.ws3e{word-spacing:3.466985px;}
.ws1f{word-spacing:3.586536px;}
.ws26{word-spacing:3.646312px;}
.ws6d{word-spacing:3.765863px;}
.ws5d{word-spacing:4.004965px;}
.ws55{word-spacing:4.064741px;}
.ws78{word-spacing:4.244068px;}
.ws3f{word-spacing:4.303843px;}
.ws5b{word-spacing:4.423394px;}
.ws52{word-spacing:4.483170px;}
.ws79{word-spacing:5.499355px;}
.ws51{word-spacing:5.678682px;}
.ws72{word-spacing:5.798233px;}
.ws73{word-spacing:5.807624px;}
.ws41{word-spacing:5.858009px;}
.ws32{word-spacing:6.037336px;}
.ws13{word-spacing:6.067206px;}
.ws61{word-spacing:6.079219px;}
.ws37{word-spacing:6.097111px;}
.ws14{word-spacing:6.150892px;}
.ws66{word-spacing:6.156887px;}
.ws64{word-spacing:6.395989px;}
.ws60{word-spacing:6.455808px;}
.ws7b{word-spacing:6.515540px;}
.ws6a{word-spacing:6.754643px;}
.ws17{word-spacing:6.886195px;}
.ws7a{word-spacing:7.232848px;}
.ws3b{word-spacing:7.292623px;}
.ws77{word-spacing:7.352399px;}
.ws11{word-spacing:8.661460px;}
.ws2d{word-spacing:11.904929px;}
.ws8{word-spacing:12.929425px;}
.ws88{word-spacing:13.288205px;}
.ws8a{word-spacing:13.342003px;}
.ws95{word-spacing:13.385098px;}
.ws92{word-spacing:13.390512px;}
.ws98{word-spacing:13.391098px;}
.ws9a{word-spacing:13.391318px;}
.ws56{word-spacing:13.395802px;}
.ws96{word-spacing:13.610995px;}
.ws4a{word-spacing:14.645022px;}
.ws68{word-spacing:14.884124px;}
.ws30{word-spacing:14.898499px;}
.ws58{word-spacing:15.110189px;}
.ws23{word-spacing:15.123227px;}
.ws7{word-spacing:15.483541px;}
.ws93{word-spacing:15.762931px;}
.wse{word-spacing:16.142252px;}
.wsf{word-spacing:16.151321px;}
.ws90{word-spacing:16.300915px;}
.ws94{word-spacing:16.621373px;}
.ws89{word-spacing:16.623706px;}
.ws9b{word-spacing:16.785101px;}
.ws10{word-spacing:17.699504px;}
.ws54{word-spacing:18.291334px;}
.ws59{word-spacing:18.470660px;}
.ws74{word-spacing:21.519216px;}
.ws8e{word-spacing:22.649126px;}
.ws8c{word-spacing:25.984627px;}
.ws12{word-spacing:27.448877px;}
.ws3{word-spacing:61.001400px;}
._1f{margin-left:-24.747264px;}
._0{margin-left:-13.879987px;}
._15{margin-left:-8.719670px;}
._1a{margin-left:-7.693171px;}
._1{margin-left:-6.629209px;}
._5{margin-left:-5.397721px;}
._6{margin-left:-3.849538px;}
._19{margin-left:-2.809453px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._2{width:2.984442px;}
._1e{width:6.258496px;}
._13{width:10.647624px;}
._7{width:12.965348px;}
._9{width:14.285718px;}
._c{width:16.085722px;}
._16{width:17.532168px;}
._d{width:18.775642px;}
._1b{width:19.785870px;}
._18{width:21.088973px;}
._12{width:22.774504px;}
._f{width:24.107484px;}
._8{width:25.943736px;}
._17{width:28.608224px;}
._e{width:29.947576px;}
._a{width:32.637384px;}
._1c{width:33.666002px;}
._1d{width:36.196364px;}
._b{width:38.591334px;}
._14{width:40.886510px;}
._10{width:865.917920px;}
._11{width:2512.837068px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsb{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:30.271042px;}
.y4e{bottom:31.890000px;}
.yb3{bottom:88.993500px;}
.y23{bottom:102.823500px;}
.yd5{bottom:104.578500px;}
.y8c{bottom:106.302000px;}
.yf3{bottom:107.215500px;}
.yb2{bottom:107.823000px;}
.y8b{bottom:108.919500px;}
.y22{bottom:120.711000px;}
.y4d{bottom:121.963500px;}
.yd4{bottom:123.408000px;}
.yf2{bottom:123.429000px;}
.yf1{bottom:126.045000px;}
.yb1{bottom:126.652500px;}
.y89{bottom:127.749000px;}
.y8a{bottom:133.173000px;}
.y21{bottom:138.600000px;}
.y4c{bottom:140.793000px;}
.yd3{bottom:142.237500px;}
.yb0{bottom:145.482000px;}
.y88{bottom:146.578500px;}
.yf0{bottom:149.358000px;}
.y20{bottom:156.487500px;}
.y4b{bottom:159.622500px;}
.yd2{bottom:161.067000px;}
.y87{bottom:165.406500px;}
.y1f{bottom:174.375000px;}
.y4a{bottom:178.452000px;}
.yaf{bottom:178.939500px;}
.yd1{bottom:179.896500px;}
.yef{bottom:182.982000px;}
.y86{bottom:184.236000px;}
.y10a{bottom:189.567000px;}
.y1e{bottom:192.264000px;}
.ycf{bottom:196.108500px;}
.y49{bottom:197.281500px;}
.yce{bottom:198.726000px;}
.y85{bottom:200.449500px;}
.yed{bottom:201.811500px;}
.y84{bottom:203.065500px;}
.yd0{bottom:204.150000px;}
.yee{bottom:207.235500px;}
.y1d{bottom:210.151500px;}
.y109{bottom:216.108000px;}
.y48{bottom:216.111000px;}
.ycd{bottom:217.554000px;}
.yec{bottom:220.641000px;}
.y83{bottom:226.378500px;}
.y1c{bottom:228.039000px;}
.y108{bottom:233.682000px;}
.y47{bottom:234.940500px;}
.ycc{bottom:236.383500px;}
.yeb{bottom:239.470500px;}
.y107{bottom:251.256000px;}
.y46{bottom:253.770000px;}
.ycb{bottom:255.213000px;}
.yea{bottom:258.300000px;}
.y82{bottom:260.002500px;}
.y106{bottom:268.830000px;}
.y45{bottom:272.599500px;}
.yca{bottom:274.042500px;}
.y80{bottom:278.832000px;}
.y81{bottom:284.257500px;}
.y105{bottom:286.404000px;}
.y44{bottom:291.429000px;}
.ye9{bottom:291.865500px;}
.yc9{bottom:292.872000px;}
.y7e{bottom:297.661500px;}
.y7f{bottom:303.085500px;}
.y1b{bottom:307.299000px;}
.y43{bottom:310.258500px;}
.ye8{bottom:311.098500px;}
.y104{bottom:312.945000px;}
.y7d{bottom:316.491000px;}
.y1a{bottom:325.186500px;}
.yc8{bottom:326.437500px;}
.y42{bottom:329.088000px;}
.ye6{bottom:330.331500px;}
.y103{bottom:330.519000px;}
.ye7{bottom:335.212500px;}
.y7c{bottom:335.320500px;}
.y19{bottom:343.074000px;}
.yc7{bottom:345.670500px;}
.y41{bottom:347.917500px;}
.y102{bottom:348.093000px;}
.y7b{bottom:351.534000px;}
.y7a{bottom:354.150000px;}
.y18{bottom:360.963000px;}
.y101{bottom:365.667000px;}
.y40{bottom:366.747000px;}
.y79{bottom:372.979500px;}
.y100{bottom:383.242500px;}
.y3f{bottom:385.576500px;}
.y78{bottom:391.809000px;}
.y133{bottom:392.499000px;}
.y17{bottom:399.024000px;}
.yff{bottom:400.816500px;}
.y3e{bottom:404.406000px;}
.y132{bottom:409.759500px;}
.y77{bottom:410.638500px;}
.y16{bottom:416.913000px;}
.yfe{bottom:418.390500px;}
.y3d{bottom:423.234000px;}
.y131{bottom:427.020000px;}
.y76{bottom:429.468000px;}
.y15{bottom:434.800500px;}
.y130{bottom:444.280500px;}
.yfd{bottom:444.930000px;}
.y3c{bottom:446.547000px;}
.y75{bottom:448.297500px;}
.y12f{bottom:461.541000px;}
.yfc{bottom:462.504000px;}
.y74{bottom:467.127000px;}
.y14{bottom:470.622000px;}
.y12e{bottom:478.801500px;}
.yfb{bottom:480.079500px;}
.y73{bottom:485.956500px;}
.y13{bottom:488.509500px;}
.y12d{bottom:496.062000px;}
.yfa{bottom:497.653500px;}
.y71{bottom:504.786000px;}
.y72{bottom:510.210000px;}
.y12c{bottom:513.321000px;}
.y3b{bottom:521.697000px;}
.y70{bottom:523.615500px;}
.yf9{bottom:524.193000px;}
.y12{bottom:524.329500px;}
.y12b{bottom:530.581500px;}
.y3a{bottom:541.155000px;}
.y11{bottom:542.218500px;}
.yf8{bottom:542.238000px;}
.y6f{bottom:542.445000px;}
.y12a{bottom:547.842000px;}
.yae{bottom:558.601500px;}
.y10{bottom:560.106000px;}
.yf7{bottom:560.283000px;}
.y6e{bottom:561.274500px;}
.y129{bottom:565.102500px;}
.yad{bottom:577.431000px;}
.yf{bottom:577.993500px;}
.y39{bottom:578.544000px;}
.y6d{bottom:580.104000px;}
.y128{bottom:582.363000px;}
.ye{bottom:595.882500px;}
.yab{bottom:596.260500px;}
.y38{bottom:598.002000px;}
.y6c{bottom:598.932000px;}
.y127{bottom:599.623500px;}
.yac{bottom:601.686000px;}
.yd{bottom:613.770000px;}
.ya9{bottom:615.090000px;}
.y126{bottom:616.884000px;}
.y37{bottom:617.458500px;}
.y6a{bottom:617.761500px;}
.yaa{bottom:620.515500px;}
.y6b{bottom:623.187000px;}
.yc{bottom:631.657500px;}
.ya8{bottom:633.919500px;}
.y125{bottom:634.144500px;}
.y69{bottom:636.591000px;}
.y36{bottom:636.915000px;}
.yb{bottom:649.546500px;}
.y124{bottom:651.403500px;}
.ya7{bottom:652.749000px;}
.y68{bottom:655.420500px;}
.y35{bottom:656.373000px;}
.y123{bottom:668.664000px;}
.ya6{bottom:671.578500px;}
.y8{bottom:671.917464px;}
.y67{bottom:674.250000px;}
.y34{bottom:675.829500px;}
.y122{bottom:685.924500px;}
.ya4{bottom:690.408000px;}
.y66{bottom:693.079500px;}
.y32{bottom:695.286000px;}
.ya5{bottom:695.832000px;}
.y33{bottom:700.168500px;}
.y121{bottom:703.185000px;}
.ye5{bottom:708.789000px;}
.ya2{bottom:709.237500px;}
.y65{bottom:711.909000px;}
.y31{bottom:712.225500px;}
.ya3{bottom:714.661500px;}
.y30{bottom:714.744000px;}
.y120{bottom:720.445500px;}
.ye4{bottom:727.618500px;}
.ya1{bottom:728.067000px;}
.y64{bottom:730.738500px;}
.y2f{bottom:734.200500px;}
.y11f{bottom:737.706000px;}
.ye3{bottom:746.448000px;}
.ya0{bottom:746.896500px;}
.y63{bottom:749.568000px;}
.y2e{bottom:753.658500px;}
.y11e{bottom:754.966500px;}
.ye2{bottom:765.277500px;}
.y9f{bottom:765.726000px;}
.y62{bottom:768.397500px;}
.y11d{bottom:772.227000px;}
.y2d{bottom:773.115000px;}
.yc6{bottom:782.761500px;}
.ye1{bottom:784.107000px;}
.y9e{bottom:784.555500px;}
.y61{bottom:787.227000px;}
.y11c{bottom:789.487500px;}
.y2c{bottom:792.571500px;}
.yc4{bottom:801.591000px;}
.ye0{bottom:802.936500px;}
.y9d{bottom:803.385000px;}
.y60{bottom:806.056500px;}
.y11b{bottom:806.746500px;}
.yc5{bottom:807.016500px;}
.y2b{bottom:812.029500px;}
.yc3{bottom:820.420500px;}
.ydf{bottom:821.766000px;}
.y9c{bottom:822.214500px;}
.y11a{bottom:824.007000px;}
.y5f{bottom:824.886000px;}
.y2a{bottom:831.486000px;}
.yc1{bottom:839.250000px;}
.ydd{bottom:840.595500px;}
.y9b{bottom:841.044000px;}
.y119{bottom:841.267500px;}
.y5e{bottom:843.715500px;}
.yc2{bottom:844.675500px;}
.yde{bottom:846.019500px;}
.yf6{bottom:846.468000px;}
.ybf{bottom:858.079500px;}
.y118{bottom:858.528000px;}
.ydc{bottom:859.425000px;}
.y9a{bottom:859.873500px;}
.y5d{bottom:862.545000px;}
.yc0{bottom:863.505000px;}
.y29{bottom:870.072000px;}
.y117{bottom:875.788500px;}
.ybe{bottom:876.909000px;}
.ydb{bottom:878.254500px;}
.y99{bottom:878.703000px;}
.y5c{bottom:881.374500px;}
.y28{bottom:890.551500px;}
.y116{bottom:893.049000px;}
.ybd{bottom:893.122500px;}
.ybc{bottom:895.738500px;}
.yd9{bottom:897.084000px;}
.y98{bottom:897.532500px;}
.y5b{bottom:900.204000px;}
.y27{bottom:902.350500px;}
.yda{bottom:902.508000px;}
.y115{bottom:910.309500px;}
.ybb{bottom:914.568000px;}
.yd8{bottom:915.913500px;}
.y97{bottom:916.362000px;}
.y5a{bottom:919.033500px;}
.y26{bottom:922.830000px;}
.y114{bottom:927.570000px;}
.yba{bottom:933.397500px;}
.y25{bottom:934.629000px;}
.y96{bottom:935.191500px;}
.y59{bottom:937.863000px;}
.yd7{bottom:939.226500px;}
.y113{bottom:944.829000px;}
.yb9{bottom:952.227000px;}
.y95{bottom:954.021000px;}
.y24{bottom:955.108500px;}
.y58{bottom:956.692500px;}
.y112{bottom:962.089500px;}
.yb8{bottom:971.056500px;}
.y94{bottom:972.849000px;}
.y57{bottom:975.522000px;}
.y111{bottom:979.350000px;}
.yb7{bottom:989.886000px;}
.y93{bottom:991.678500px;}
.y56{bottom:994.351500px;}
.y7{bottom:995.302500px;}
.y110{bottom:996.610500px;}
.yb6{bottom:1008.715500px;}
.y92{bottom:1010.508000px;}
.y55{bottom:1013.181000px;}
.y10f{bottom:1013.871000px;}
.yf5{bottom:1015.933500px;}
.y91{bottom:1029.337500px;}
.y10e{bottom:1031.131500px;}
.y54{bottom:1032.010500px;}
.yb5{bottom:1032.028500px;}
.y6{bottom:1041.199500px;}
.y90{bottom:1048.167000px;}
.y10d{bottom:1048.392000px;}
.y53{bottom:1050.840000px;}
.yb4{bottom:1052.202000px;}
.y10c{bottom:1065.652500px;}
.y8f{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y52{bottom:1069.669500px;}
.yf4{bottom:1072.422000px;}
.y10b{bottom:1082.913000px;}
.y8e{bottom:1085.826000px;}
.y51{bottom:1088.499000px;}
.y4{bottom:1097.688000px;}
.y8d{bottom:1104.655500px;}
.y50{bottom:1107.327000px;}
.yd6{bottom:1110.081000px;}
.y1{bottom:1141.174500px;}
.y4f{bottom:1173.397500px;}
.h11{height:21.407698px;}
.h18{height:23.242762px;}
.h1f{height:25.070054px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.h10{height:27.524478px;}
.h16{height:27.597821px;}
.h15{height:27.855430px;}
.ha{height:30.461558px;}
.h17{height:30.582721px;}
.hb{height:30.670772px;}
.h19{height:33.072749px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.h14{height:35.052500px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h1b{height:39.434227px;}
.h20{height:42.380900px;}
.h12{height:43.038432px;}
.h13{height:43.516637px;}
.h4{height:43.815515px;}
.h1d{height:44.938762px;}
.h1e{height:44.944762px;}
.h2{height:50.931027px;}
.h6{height:54.405312px;}
.h1a{height:54.768749px;}
.h1c{height:54.774749px;}
.h3{height:77.379634px;}
.h5{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:58.054042px;}
.x58{left:85.890000px;}
.x6d{left:144.859500px;}
.x59{left:149.577000px;}
.x6e{left:156.153000px;}
.x72{left:203.353500px;}
.x73{left:211.570500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x54{left:255.370500px;}
.x77{left:267.165000px;}
.x5{left:271.221000px;}
.x78{left:279.456000px;}
.x7a{left:281.617500px;}
.xf{left:282.786000px;}
.x65{left:288.760500px;}
.x7b{left:290.847000px;}
.x10{left:295.491000px;}
.x66{left:297.991500px;}
.x11{left:302.964000px;}
.x79{left:305.088000px;}
.x12{left:306.774000px;}
.x7{left:309.439500px;}
.x8a{left:311.805000px;}
.x13{left:314.247000px;}
.x2c{left:316.144500px;}
.xe{left:321.166500px;}
.x2d{left:326.296500px;}
.x7c{left:330.447000px;}
.x7d{left:340.612500px;}
.x3d{left:343.348500px;}
.x3e{left:358.896000px;}
.x3f{left:374.280000px;}
.x61{left:384.243000px;}
.x68{left:388.723500px;}
.x89{left:392.026500px;}
.x62{left:393.472500px;}
.x40{left:394.728000px;}
.x48{left:400.774500px;}
.x69{left:403.668000px;}
.x49{left:410.257500px;}
.x88{left:415.017000px;}
.x63{left:432.165000px;}
.x64{left:442.306500px;}
.x4c{left:452.544000px;}
.x4d{left:468.231000px;}
.x81{left:469.356000px;}
.x75{left:495.964500px;}
.x85{left:498.406500px;}
.x86{left:510.697500px;}
.x76{left:511.713000px;}
.x31{left:513.532500px;}
.x41{left:521.508000px;}
.x32{left:525.825000px;}
.x7e{left:532.000500px;}
.x42{left:533.799000px;}
.x24{left:535.741500px;}
.x87{left:538.539000px;}
.x1f{left:540.628500px;}
.x25{left:550.684500px;}
.x33{left:552.348000px;}
.x26{left:554.394000px;}
.x20{left:555.571500px;}
.x34{left:559.153500px;}
.x43{left:560.833500px;}
.x39{left:564.559500px;}
.x44{left:566.775000px;}
.x27{left:569.338500px;}
.x45{left:573.580500px;}
.x3a{left:574.722000px;}
.x7f{left:580.830000px;}
.x3b{left:584.628000px;}
.x16{left:585.967500px;}
.x80{left:590.995500px;}
.x17{left:593.439000px;}
.x4a{left:596.352000px;}
.x3c{left:605.343000px;}
.x4b{left:611.647500px;}
.x6a{left:618.144000px;}
.x35{left:625.579500px;}
.x6b{left:627.375000px;}
.x6f{left:628.720500px;}
.x36{left:635.907000px;}
.x21{left:637.180500px;}
.x4e{left:639.607500px;}
.x5a{left:641.056500px;}
.x5b{left:647.781000px;}
.x22{left:652.123500px;}
.x4f{left:655.212000px;}
.x50{left:667.669500px;}
.x74{left:671.973000px;}
.x70{left:673.272000px;}
.x90{left:675.888000px;}
.x51{left:676.899000px;}
.x71{left:679.249500px;}
.x47{left:682.167000px;}
.x52{left:690.358500px;}
.x6c{left:694.453500px;}
.x28{left:696.769500px;}
.x82{left:700.509000px;}
.x53{left:701.620500px;}
.x91{left:702.787500px;}
.x29{left:709.060500px;}
.x67{left:711.834000px;}
.x8d{left:726.108000px;}
.x55{left:731.940000px;}
.x2a{left:736.705500px;}
.x83{left:739.435500px;}
.x23{left:741.550500px;}
.x2b{left:743.511000px;}
.x2e{left:744.763500px;}
.x84{left:746.242500px;}
.x37{left:748.956000px;}
.x5c{left:750.049500px;}
.x8e{left:753.007500px;}
.x56{left:754.102500px;}
.x8{left:757.450500px;}
.x57{left:760.528500px;}
.x38{left:762.783000px;}
.x9{left:767.016000px;}
.x8f{left:768.588000px;}
.x1b{left:769.630500px;}
.x2f{left:776.065500px;}
.x5d{left:778.623000px;}
.x30{left:782.871000px;}
.x1c{left:784.575000px;}
.x1d{left:788.386500px;}
.x5e{left:790.914000px;}
.x46{left:792.240000px;}
.xa{left:793.585500px;}
.x1e{left:803.329500px;}
.xb{left:804.648000px;}
.x8b{left:810.265500px;}
.x14{left:814.281000px;}
.x19{left:818.046000px;}
.x5f{left:819.357000px;}
.xc{left:821.484000px;}
.x15{left:823.510500px;}
.x60{left:826.164000px;}
.xd{left:827.812500px;}
.x18{left:830.256000px;}
.x1a{left:832.990500px;}
.x8c{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.301333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000129pt;}
.ls15{letter-spacing:0.000544pt;}
.ls2b{letter-spacing:0.004267pt;}
.ls8{letter-spacing:0.482502pt;}
.ls9{letter-spacing:0.487835pt;}
.ls17{letter-spacing:0.596915pt;}
.ls14{letter-spacing:0.637762pt;}
.ls27{letter-spacing:0.640696pt;}
.ls23{letter-spacing:0.661877pt;}
.ls6{letter-spacing:1.133683pt;}
.ls20{letter-spacing:1.328015pt;}
.ls24{letter-spacing:1.328423pt;}
.lse{letter-spacing:1.330422pt;}
.ls1{letter-spacing:1.654338pt;}
.ls10{letter-spacing:2.651733pt;}
.ls2e{letter-spacing:2.656533pt;}
.ls12{letter-spacing:2.657067pt;}
.ls21{letter-spacing:2.920877pt;}
.ls26{letter-spacing:3.158400pt;}
.ls13{letter-spacing:3.163733pt;}
.lsf{letter-spacing:3.982210pt;}
.ls4{letter-spacing:10.626533pt;}
.ls2a{letter-spacing:10.836637pt;}
.ls1e{letter-spacing:11.658378pt;}
.ls29{letter-spacing:11.954133pt;}
.ls28{letter-spacing:11.959467pt;}
.ls2d{letter-spacing:12.063636pt;}
.lsd{letter-spacing:12.582029pt;}
.ls2c{letter-spacing:13.252643pt;}
.ls1b{letter-spacing:13.283733pt;}
.ls25{letter-spacing:13.920696pt;}
.ls22{letter-spacing:13.945570pt;}
.ls1f{letter-spacing:14.294029pt;}
.lsc{letter-spacing:14.786422pt;}
.ls1a{letter-spacing:15.395096pt;}
.ls16{letter-spacing:15.937067pt;}
.ls7{letter-spacing:15.942400pt;}
.ls1c{letter-spacing:16.089067pt;}
.ls19{letter-spacing:16.089570pt;}
.ls1d{letter-spacing:17.123096pt;}
.ls2f{letter-spacing:20.087467pt;}
.lsa{letter-spacing:21.355185pt;}
.lsb{letter-spacing:23.453762pt;}
.ls18{letter-spacing:26.330378pt;}
.ls0{letter-spacing:51.035733pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ws0{word-spacing:-25.362056pt;}
.ws4f{word-spacing:-13.283467pt;}
.ws7f{word-spacing:-11.955200pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws4{word-spacing:-10.095467pt;}
.ws9{word-spacing:-9.298400pt;}
.ws39{word-spacing:-2.922363pt;}
.ws57{word-spacing:-2.869229pt;}
.ws45{word-spacing:-2.762961pt;}
.ws49{word-spacing:-2.497292pt;}
.ws84{word-spacing:-2.199757pt;}
.ws28{word-spacing:-2.072221pt;}
.ws62{word-spacing:-2.019087pt;}
.ws6{word-spacing:-1.696326pt;}
.ws91{word-spacing:-1.434624pt;}
.ws5{word-spacing:-1.175671pt;}
.ws69{word-spacing:-1.168945pt;}
.ws8f{word-spacing:-1.099878pt;}
.ws4d{word-spacing:-1.062677pt;}
.ws67{word-spacing:-0.797008pt;}
.ws4b{word-spacing:-0.743874pt;}
.ws5f{word-spacing:-0.690740pt;}
.ws34{word-spacing:-0.531339pt;}
.ws20{word-spacing:-0.371937pt;}
.ws46{word-spacing:-0.318803pt;}
.ws27{word-spacing:-0.265669pt;}
.ws2b{word-spacing:-0.212535pt;}
.ws71{word-spacing:-0.191283pt;}
.ws24{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.ws21{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws29{word-spacing:-0.053134pt;}
.ws80{word-spacing:-0.047821pt;}
.ws2f{word-spacing:-0.042507pt;}
.wsa{word-spacing:-0.037194pt;}
.ws2{word-spacing:-0.002607pt;}
.ws76{word-spacing:-0.001578pt;}
.ws5c{word-spacing:-0.000848pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.047821pt;}
.ws25{word-spacing:0.053134pt;}
.ws1e{word-spacing:0.095642pt;}
.ws42{word-spacing:0.106268pt;}
.ws1d{word-spacing:0.143462pt;}
.ws36{word-spacing:0.159402pt;}
.wsb{word-spacing:0.185968pt;}
.ws81{word-spacing:0.191283pt;}
.ws22{word-spacing:0.212535pt;}
.ws7e{word-spacing:0.239104pt;}
.wsd{word-spacing:0.260355pt;}
.ws31{word-spacing:0.265669pt;}
.ws48{word-spacing:0.318803pt;}
.ws83{word-spacing:0.382566pt;}
.ws75{word-spacing:0.471733pt;}
.ws65{word-spacing:0.503733pt;}
.ws1c{word-spacing:0.573850pt;}
.ws3a{word-spacing:0.584473pt;}
.ws5e{word-spacing:0.743874pt;}
.ws87{word-spacing:0.956416pt;}
.ws97{word-spacing:1.004237pt;}
.ws50{word-spacing:1.115811pt;}
.ws70{word-spacing:1.243341pt;}
.ws2a{word-spacing:1.275213pt;}
.ws6f{word-spacing:1.291162pt;}
.ws40{word-spacing:1.328347pt;}
.ws4c{word-spacing:1.434614pt;}
.ws18{word-spacing:1.434624pt;}
.ws6e{word-spacing:1.530266pt;}
.ws35{word-spacing:1.540882pt;}
.ws2c{word-spacing:1.594016pt;}
.ws82{word-spacing:1.625907pt;}
.ws7d{word-spacing:1.647150pt;}
.ws99{word-spacing:1.673728pt;}
.ws38{word-spacing:1.700284pt;}
.ws5a{word-spacing:1.753418pt;}
.wsc{word-spacing:1.785293pt;}
.ws4e{word-spacing:1.806551pt;}
.ws6c{word-spacing:1.965953pt;}
.ws7c{word-spacing:2.019087pt;}
.ws63{word-spacing:2.072221pt;}
.ws8d{word-spacing:2.104115pt;}
.ws47{word-spacing:2.125355pt;}
.ws86{word-spacing:2.151936pt;}
.ws3c{word-spacing:2.231622pt;}
.ws6b{word-spacing:2.391024pt;}
.ws85{word-spacing:2.391040pt;}
.ws33{word-spacing:2.497292pt;}
.ws15{word-spacing:2.550432pt;}
.ws8b{word-spacing:2.630144pt;}
.ws3d{word-spacing:2.709827pt;}
.ws43{word-spacing:2.869229pt;}
.ws1b{word-spacing:2.869248pt;}
.ws44{word-spacing:2.975497pt;}
.ws53{word-spacing:3.028630pt;}
.ws3e{word-spacing:3.081764pt;}
.ws1f{word-spacing:3.188032pt;}
.ws26{word-spacing:3.241166pt;}
.ws6d{word-spacing:3.347434pt;}
.ws5d{word-spacing:3.559969pt;}
.ws55{word-spacing:3.613103pt;}
.ws78{word-spacing:3.772505pt;}
.ws3f{word-spacing:3.825638pt;}
.ws5b{word-spacing:3.931906pt;}
.ws52{word-spacing:3.985040pt;}
.ws79{word-spacing:4.888316pt;}
.ws51{word-spacing:5.047717pt;}
.ws72{word-spacing:5.153985pt;}
.ws73{word-spacing:5.162332pt;}
.ws41{word-spacing:5.207119pt;}
.ws32{word-spacing:5.366521pt;}
.ws13{word-spacing:5.393072pt;}
.ws61{word-spacing:5.403750pt;}
.ws37{word-spacing:5.419654pt;}
.ws14{word-spacing:5.467459pt;}
.ws66{word-spacing:5.472788pt;}
.ws64{word-spacing:5.685324pt;}
.ws60{word-spacing:5.738496pt;}
.ws7b{word-spacing:5.791591pt;}
.ws6a{word-spacing:6.004127pt;}
.ws17{word-spacing:6.121062pt;}
.ws7a{word-spacing:6.429198pt;}
.ws3b{word-spacing:6.482332pt;}
.ws77{word-spacing:6.535466pt;}
.ws11{word-spacing:7.699075pt;}
.ws2d{word-spacing:10.582159pt;}
.ws8{word-spacing:11.492822pt;}
.ws88{word-spacing:11.811738pt;}
.ws8a{word-spacing:11.859558pt;}
.ws95{word-spacing:11.897865pt;}
.ws92{word-spacing:11.902677pt;}
.ws98{word-spacing:11.903198pt;}
.ws9a{word-spacing:11.903394pt;}
.ws56{word-spacing:11.907379pt;}
.ws96{word-spacing:12.098662pt;}
.ws4a{word-spacing:13.017797pt;}
.ws68{word-spacing:13.230333pt;}
.ws30{word-spacing:13.243110pt;}
.ws58{word-spacing:13.431279pt;}
.ws23{word-spacing:13.442868pt;}
.ws7{word-spacing:13.763148pt;}
.ws93{word-spacing:14.011494pt;}
.wse{word-spacing:14.348669pt;}
.wsf{word-spacing:14.356730pt;}
.ws90{word-spacing:14.489702pt;}
.ws94{word-spacing:14.774554pt;}
.ws89{word-spacing:14.776627pt;}
.ws9b{word-spacing:14.920090pt;}
.ws10{word-spacing:15.732893pt;}
.ws54{word-spacing:16.258963pt;}
.ws59{word-spacing:16.418365pt;}
.ws74{word-spacing:19.128192pt;}
.ws8e{word-spacing:20.132557pt;}
.ws8c{word-spacing:23.097446pt;}
.ws12{word-spacing:24.399002pt;}
.ws3{word-spacing:54.223467pt;}
._1f{margin-left:-21.997568pt;}
._0{margin-left:-12.337766pt;}
._15{margin-left:-7.750818pt;}
._1a{margin-left:-6.838374pt;}
._1{margin-left:-5.892630pt;}
._5{margin-left:-4.797974pt;}
._6{margin-left:-3.421811pt;}
._19{margin-left:-2.497292pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._2{width:2.652837pt;}
._1e{width:5.563107pt;}
._13{width:9.464555pt;}
._7{width:11.524754pt;}
._9{width:12.698416pt;}
._c{width:14.298419pt;}
._16{width:15.584149pt;}
._d{width:16.689459pt;}
._1b{width:17.587440pt;}
._18{width:18.745754pt;}
._12{width:20.244003pt;}
._f{width:21.428875pt;}
._8{width:23.061099pt;}
._17{width:25.429532pt;}
._e{width:26.620067pt;}
._a{width:29.011008pt;}
._1c{width:29.925335pt;}
._1d{width:32.174546pt;}
._b{width:34.303408pt;}
._14{width:36.343565pt;}
._10{width:769.704818pt;}
._11{width:2233.632949pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsb{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:26.907593pt;}
.y4e{bottom:28.346667pt;}
.yb3{bottom:79.105333pt;}
.y23{bottom:91.398667pt;}
.yd5{bottom:92.958667pt;}
.y8c{bottom:94.490667pt;}
.yf3{bottom:95.302667pt;}
.yb2{bottom:95.842667pt;}
.y8b{bottom:96.817333pt;}
.y22{bottom:107.298667pt;}
.y4d{bottom:108.412000pt;}
.yd4{bottom:109.696000pt;}
.yf2{bottom:109.714667pt;}
.yf1{bottom:112.040000pt;}
.yb1{bottom:112.580000pt;}
.y89{bottom:113.554667pt;}
.y8a{bottom:118.376000pt;}
.y21{bottom:123.200000pt;}
.y4c{bottom:125.149333pt;}
.yd3{bottom:126.433333pt;}
.yb0{bottom:129.317333pt;}
.y88{bottom:130.292000pt;}
.yf0{bottom:132.762667pt;}
.y20{bottom:139.100000pt;}
.y4b{bottom:141.886667pt;}
.yd2{bottom:143.170667pt;}
.y87{bottom:147.028000pt;}
.y1f{bottom:155.000000pt;}
.y4a{bottom:158.624000pt;}
.yaf{bottom:159.057333pt;}
.yd1{bottom:159.908000pt;}
.yef{bottom:162.650667pt;}
.y86{bottom:163.765333pt;}
.y10a{bottom:168.504000pt;}
.y1e{bottom:170.901333pt;}
.ycf{bottom:174.318667pt;}
.y49{bottom:175.361333pt;}
.yce{bottom:176.645333pt;}
.y85{bottom:178.177333pt;}
.yed{bottom:179.388000pt;}
.y84{bottom:180.502667pt;}
.yd0{bottom:181.466667pt;}
.yee{bottom:184.209333pt;}
.y1d{bottom:186.801333pt;}
.y109{bottom:192.096000pt;}
.y48{bottom:192.098667pt;}
.ycd{bottom:193.381333pt;}
.yec{bottom:196.125333pt;}
.y83{bottom:201.225333pt;}
.y1c{bottom:202.701333pt;}
.y108{bottom:207.717333pt;}
.y47{bottom:208.836000pt;}
.ycc{bottom:210.118667pt;}
.yeb{bottom:212.862667pt;}
.y107{bottom:223.338667pt;}
.y46{bottom:225.573333pt;}
.ycb{bottom:226.856000pt;}
.yea{bottom:229.600000pt;}
.y82{bottom:231.113333pt;}
.y106{bottom:238.960000pt;}
.y45{bottom:242.310667pt;}
.yca{bottom:243.593333pt;}
.y80{bottom:247.850667pt;}
.y81{bottom:252.673333pt;}
.y105{bottom:254.581333pt;}
.y44{bottom:259.048000pt;}
.ye9{bottom:259.436000pt;}
.yc9{bottom:260.330667pt;}
.y7e{bottom:264.588000pt;}
.y7f{bottom:269.409333pt;}
.y1b{bottom:273.154667pt;}
.y43{bottom:275.785333pt;}
.ye8{bottom:276.532000pt;}
.y104{bottom:278.173333pt;}
.y7d{bottom:281.325333pt;}
.y1a{bottom:289.054667pt;}
.yc8{bottom:290.166667pt;}
.y42{bottom:292.522667pt;}
.ye6{bottom:293.628000pt;}
.y103{bottom:293.794667pt;}
.ye7{bottom:297.966667pt;}
.y7c{bottom:298.062667pt;}
.y19{bottom:304.954667pt;}
.yc7{bottom:307.262667pt;}
.y41{bottom:309.260000pt;}
.y102{bottom:309.416000pt;}
.y7b{bottom:312.474667pt;}
.y7a{bottom:314.800000pt;}
.y18{bottom:320.856000pt;}
.y101{bottom:325.037333pt;}
.y40{bottom:325.997333pt;}
.y79{bottom:331.537333pt;}
.y100{bottom:340.660000pt;}
.y3f{bottom:342.734667pt;}
.y78{bottom:348.274667pt;}
.y133{bottom:348.888000pt;}
.y17{bottom:354.688000pt;}
.yff{bottom:356.281333pt;}
.y3e{bottom:359.472000pt;}
.y132{bottom:364.230667pt;}
.y77{bottom:365.012000pt;}
.y16{bottom:370.589333pt;}
.yfe{bottom:371.902667pt;}
.y3d{bottom:376.208000pt;}
.y131{bottom:379.573333pt;}
.y76{bottom:381.749333pt;}
.y15{bottom:386.489333pt;}
.y130{bottom:394.916000pt;}
.yfd{bottom:395.493333pt;}
.y3c{bottom:396.930667pt;}
.y75{bottom:398.486667pt;}
.y12f{bottom:410.258667pt;}
.yfc{bottom:411.114667pt;}
.y74{bottom:415.224000pt;}
.y14{bottom:418.330667pt;}
.y12e{bottom:425.601333pt;}
.yfb{bottom:426.737333pt;}
.y73{bottom:431.961333pt;}
.y13{bottom:434.230667pt;}
.y12d{bottom:440.944000pt;}
.yfa{bottom:442.358667pt;}
.y71{bottom:448.698667pt;}
.y72{bottom:453.520000pt;}
.y12c{bottom:456.285333pt;}
.y3b{bottom:463.730667pt;}
.y70{bottom:465.436000pt;}
.yf9{bottom:465.949333pt;}
.y12{bottom:466.070667pt;}
.y12b{bottom:471.628000pt;}
.y3a{bottom:481.026667pt;}
.y11{bottom:481.972000pt;}
.yf8{bottom:481.989333pt;}
.y6f{bottom:482.173333pt;}
.y12a{bottom:486.970667pt;}
.yae{bottom:496.534667pt;}
.y10{bottom:497.872000pt;}
.yf7{bottom:498.029333pt;}
.y6e{bottom:498.910667pt;}
.y129{bottom:502.313333pt;}
.yad{bottom:513.272000pt;}
.yf{bottom:513.772000pt;}
.y39{bottom:514.261333pt;}
.y6d{bottom:515.648000pt;}
.y128{bottom:517.656000pt;}
.ye{bottom:529.673333pt;}
.yab{bottom:530.009333pt;}
.y38{bottom:531.557333pt;}
.y6c{bottom:532.384000pt;}
.y127{bottom:532.998667pt;}
.yac{bottom:534.832000pt;}
.yd{bottom:545.573333pt;}
.ya9{bottom:546.746667pt;}
.y126{bottom:548.341333pt;}
.y37{bottom:548.852000pt;}
.y6a{bottom:549.121333pt;}
.yaa{bottom:551.569333pt;}
.y6b{bottom:553.944000pt;}
.yc{bottom:561.473333pt;}
.ya8{bottom:563.484000pt;}
.y125{bottom:563.684000pt;}
.y69{bottom:565.858667pt;}
.y36{bottom:566.146667pt;}
.yb{bottom:577.374667pt;}
.y124{bottom:579.025333pt;}
.ya7{bottom:580.221333pt;}
.y68{bottom:582.596000pt;}
.y35{bottom:583.442667pt;}
.y123{bottom:594.368000pt;}
.ya6{bottom:596.958667pt;}
.y8{bottom:597.259968pt;}
.y67{bottom:599.333333pt;}
.y34{bottom:600.737333pt;}
.y122{bottom:609.710667pt;}
.ya4{bottom:613.696000pt;}
.y66{bottom:616.070667pt;}
.y32{bottom:618.032000pt;}
.ya5{bottom:618.517333pt;}
.y33{bottom:622.372000pt;}
.y121{bottom:625.053333pt;}
.ye5{bottom:630.034667pt;}
.ya2{bottom:630.433333pt;}
.y65{bottom:632.808000pt;}
.y31{bottom:633.089333pt;}
.ya3{bottom:635.254667pt;}
.y30{bottom:635.328000pt;}
.y120{bottom:640.396000pt;}
.ye4{bottom:646.772000pt;}
.ya1{bottom:647.170667pt;}
.y64{bottom:649.545333pt;}
.y2f{bottom:652.622667pt;}
.y11f{bottom:655.738667pt;}
.ye3{bottom:663.509333pt;}
.ya0{bottom:663.908000pt;}
.y63{bottom:666.282667pt;}
.y2e{bottom:669.918667pt;}
.y11e{bottom:671.081333pt;}
.ye2{bottom:680.246667pt;}
.y9f{bottom:680.645333pt;}
.y62{bottom:683.020000pt;}
.y11d{bottom:686.424000pt;}
.y2d{bottom:687.213333pt;}
.yc6{bottom:695.788000pt;}
.ye1{bottom:696.984000pt;}
.y9e{bottom:697.382667pt;}
.y61{bottom:699.757333pt;}
.y11c{bottom:701.766667pt;}
.y2c{bottom:704.508000pt;}
.yc4{bottom:712.525333pt;}
.ye0{bottom:713.721333pt;}
.y9d{bottom:714.120000pt;}
.y60{bottom:716.494667pt;}
.y11b{bottom:717.108000pt;}
.yc5{bottom:717.348000pt;}
.y2b{bottom:721.804000pt;}
.yc3{bottom:729.262667pt;}
.ydf{bottom:730.458667pt;}
.y9c{bottom:730.857333pt;}
.y11a{bottom:732.450667pt;}
.y5f{bottom:733.232000pt;}
.y2a{bottom:739.098667pt;}
.yc1{bottom:746.000000pt;}
.ydd{bottom:747.196000pt;}
.y9b{bottom:747.594667pt;}
.y119{bottom:747.793333pt;}
.y5e{bottom:749.969333pt;}
.yc2{bottom:750.822667pt;}
.yde{bottom:752.017333pt;}
.yf6{bottom:752.416000pt;}
.ybf{bottom:762.737333pt;}
.y118{bottom:763.136000pt;}
.ydc{bottom:763.933333pt;}
.y9a{bottom:764.332000pt;}
.y5d{bottom:766.706667pt;}
.yc0{bottom:767.560000pt;}
.y29{bottom:773.397333pt;}
.y117{bottom:778.478667pt;}
.ybe{bottom:779.474667pt;}
.ydb{bottom:780.670667pt;}
.y99{bottom:781.069333pt;}
.y5c{bottom:783.444000pt;}
.y28{bottom:791.601333pt;}
.y116{bottom:793.821333pt;}
.ybd{bottom:793.886667pt;}
.ybc{bottom:796.212000pt;}
.yd9{bottom:797.408000pt;}
.y98{bottom:797.806667pt;}
.y5b{bottom:800.181333pt;}
.y27{bottom:802.089333pt;}
.yda{bottom:802.229333pt;}
.y115{bottom:809.164000pt;}
.ybb{bottom:812.949333pt;}
.yd8{bottom:814.145333pt;}
.y97{bottom:814.544000pt;}
.y5a{bottom:816.918667pt;}
.y26{bottom:820.293333pt;}
.y114{bottom:824.506667pt;}
.yba{bottom:829.686667pt;}
.y25{bottom:830.781333pt;}
.y96{bottom:831.281333pt;}
.y59{bottom:833.656000pt;}
.yd7{bottom:834.868000pt;}
.y113{bottom:839.848000pt;}
.yb9{bottom:846.424000pt;}
.y95{bottom:848.018667pt;}
.y24{bottom:848.985333pt;}
.y58{bottom:850.393333pt;}
.y112{bottom:855.190667pt;}
.yb8{bottom:863.161333pt;}
.y94{bottom:864.754667pt;}
.y57{bottom:867.130667pt;}
.y111{bottom:870.533333pt;}
.yb7{bottom:879.898667pt;}
.y93{bottom:881.492000pt;}
.y56{bottom:883.868000pt;}
.y7{bottom:884.713333pt;}
.y110{bottom:885.876000pt;}
.yb6{bottom:896.636000pt;}
.y92{bottom:898.229333pt;}
.y55{bottom:900.605333pt;}
.y10f{bottom:901.218667pt;}
.yf5{bottom:903.052000pt;}
.y91{bottom:914.966667pt;}
.y10e{bottom:916.561333pt;}
.y54{bottom:917.342667pt;}
.yb5{bottom:917.358667pt;}
.y6{bottom:925.510667pt;}
.y90{bottom:931.704000pt;}
.y10d{bottom:931.904000pt;}
.y53{bottom:934.080000pt;}
.yb4{bottom:935.290667pt;}
.y10c{bottom:947.246667pt;}
.y8f{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y52{bottom:950.817333pt;}
.yf4{bottom:953.264000pt;}
.y10b{bottom:962.589333pt;}
.y8e{bottom:965.178667pt;}
.y51{bottom:967.554667pt;}
.y4{bottom:975.722667pt;}
.y8d{bottom:981.916000pt;}
.y50{bottom:984.290667pt;}
.yd6{bottom:986.738667pt;}
.y1{bottom:1014.377333pt;}
.y4f{bottom:1043.020000pt;}
.h11{height:19.029065pt;}
.h18{height:20.660233pt;}
.h1f{height:22.284493pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.h10{height:24.466203pt;}
.h16{height:24.531396pt;}
.h15{height:24.760382pt;}
.ha{height:27.076941pt;}
.h17{height:27.184641pt;}
.hb{height:27.262909pt;}
.h19{height:29.397999pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.h14{height:31.157778pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h1b{height:35.052646pt;}
.h20{height:37.671911pt;}
.h12{height:38.256384pt;}
.h13{height:38.681455pt;}
.h4{height:38.947124pt;}
.h1d{height:39.945566pt;}
.h1e{height:39.950899pt;}
.h2{height:45.272024pt;}
.h6{height:48.360277pt;}
.h1a{height:48.683332pt;}
.h1c{height:48.688666pt;}
.h3{height:68.781897pt;}
.h5{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.603593pt;}
.x58{left:76.346667pt;}
.x6d{left:128.764000pt;}
.x59{left:132.957333pt;}
.x6e{left:138.802667pt;}
.x72{left:180.758667pt;}
.x73{left:188.062667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x54{left:226.996000pt;}
.x77{left:237.480000pt;}
.x5{left:241.085333pt;}
.x78{left:248.405333pt;}
.x7a{left:250.326667pt;}
.xf{left:251.365333pt;}
.x65{left:256.676000pt;}
.x7b{left:258.530667pt;}
.x10{left:262.658667pt;}
.x66{left:264.881333pt;}
.x11{left:269.301333pt;}
.x79{left:271.189333pt;}
.x12{left:272.688000pt;}
.x7{left:275.057333pt;}
.x8a{left:277.160000pt;}
.x13{left:279.330667pt;}
.x2c{left:281.017333pt;}
.xe{left:285.481333pt;}
.x2d{left:290.041333pt;}
.x7c{left:293.730667pt;}
.x7d{left:302.766667pt;}
.x3d{left:305.198667pt;}
.x3e{left:319.018667pt;}
.x3f{left:332.693333pt;}
.x61{left:341.549333pt;}
.x68{left:345.532000pt;}
.x89{left:348.468000pt;}
.x62{left:349.753333pt;}
.x40{left:350.869333pt;}
.x48{left:356.244000pt;}
.x69{left:358.816000pt;}
.x49{left:364.673333pt;}
.x88{left:368.904000pt;}
.x63{left:384.146667pt;}
.x64{left:393.161333pt;}
.x4c{left:402.261333pt;}
.x4d{left:416.205333pt;}
.x81{left:417.205333pt;}
.x75{left:440.857333pt;}
.x85{left:443.028000pt;}
.x86{left:453.953333pt;}
.x76{left:454.856000pt;}
.x31{left:456.473333pt;}
.x41{left:463.562667pt;}
.x32{left:467.400000pt;}
.x7e{left:472.889333pt;}
.x42{left:474.488000pt;}
.x24{left:476.214667pt;}
.x87{left:478.701333pt;}
.x1f{left:480.558667pt;}
.x25{left:489.497333pt;}
.x33{left:490.976000pt;}
.x26{left:492.794667pt;}
.x20{left:493.841333pt;}
.x34{left:497.025333pt;}
.x43{left:498.518667pt;}
.x39{left:501.830667pt;}
.x44{left:503.800000pt;}
.x27{left:506.078667pt;}
.x45{left:509.849333pt;}
.x3a{left:510.864000pt;}
.x7f{left:516.293333pt;}
.x3b{left:519.669333pt;}
.x16{left:520.860000pt;}
.x80{left:525.329333pt;}
.x17{left:527.501333pt;}
.x4a{left:530.090667pt;}
.x3c{left:538.082667pt;}
.x4b{left:543.686667pt;}
.x6a{left:549.461333pt;}
.x35{left:556.070667pt;}
.x6b{left:557.666667pt;}
.x6f{left:558.862667pt;}
.x36{left:565.250667pt;}
.x21{left:566.382667pt;}
.x4e{left:568.540000pt;}
.x5a{left:569.828000pt;}
.x5b{left:575.805333pt;}
.x22{left:579.665333pt;}
.x4f{left:582.410667pt;}
.x50{left:593.484000pt;}
.x74{left:597.309333pt;}
.x70{left:598.464000pt;}
.x90{left:600.789333pt;}
.x51{left:601.688000pt;}
.x71{left:603.777333pt;}
.x47{left:606.370667pt;}
.x52{left:613.652000pt;}
.x6c{left:617.292000pt;}
.x28{left:619.350667pt;}
.x82{left:622.674667pt;}
.x53{left:623.662667pt;}
.x91{left:624.700000pt;}
.x29{left:630.276000pt;}
.x67{left:632.741333pt;}
.x8d{left:645.429333pt;}
.x55{left:650.613333pt;}
.x2a{left:654.849333pt;}
.x83{left:657.276000pt;}
.x23{left:659.156000pt;}
.x2b{left:660.898667pt;}
.x2e{left:662.012000pt;}
.x84{left:663.326667pt;}
.x37{left:665.738667pt;}
.x5c{left:666.710667pt;}
.x8e{left:669.340000pt;}
.x56{left:670.313333pt;}
.x8{left:673.289333pt;}
.x57{left:676.025333pt;}
.x38{left:678.029333pt;}
.x9{left:681.792000pt;}
.x8f{left:683.189333pt;}
.x1b{left:684.116000pt;}
.x2f{left:689.836000pt;}
.x5d{left:692.109333pt;}
.x30{left:695.885333pt;}
.x1c{left:697.400000pt;}
.x1d{left:700.788000pt;}
.x5e{left:703.034667pt;}
.x46{left:704.213333pt;}
.xa{left:705.409333pt;}
.x1e{left:714.070667pt;}
.xb{left:715.242667pt;}
.x8b{left:720.236000pt;}
.x14{left:723.805333pt;}
.x19{left:727.152000pt;}
.x5f{left:728.317333pt;}
.xc{left:730.208000pt;}
.x15{left:732.009333pt;}
.x60{left:734.368000pt;}
.xd{left:735.833333pt;}
.x18{left:738.005333pt;}
.x1a{left:740.436000pt;}
.x8c{left:744.146667pt;}
}




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