
    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_26d6eb8f19e6109d3fd12d41.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0aa8736b4b097fa4c204e2b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e367731887e3deb0da10d76d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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_bd7eac2efab211be2194538d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0c6111229698d7b9331c629f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.876000;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_ef1d81e2fde8a1df74f185e5.woff2')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_ea660eb100eb0e1d52200fe9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.710000;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_eb289b48f5b2c1e06fb1700e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fcb4c76b4116b1b984e5a3bc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_09ee4f29b35f4d0d9271b12f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_38079fe69058cf233e4e19b1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.705000;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_ee68aa014599395ac586a9e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7f0d77e390c7bebad2f24d29.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_366d37ea5f8becd908045f3b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.815000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5c881fbced6fb4548fcb0aca.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b06a159d889263927376885f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.868000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a370459060c00426f19f5e6a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.111000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_dd6295cd9a8406907fcba915.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.520000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.me{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);}
.m10{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);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m13{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);}
.m8{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.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);}
.m4{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);}
.m1c{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);}
.m1a{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);}
.m11{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);}
.m3{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);}
.md{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);}
.m17{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);}
.m1b{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);}
.m1e{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);}
.m6{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);}
.m14{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);}
.m19{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);}
.mc{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);}
.mb{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);}
.mf{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);}
.m15{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);}
.m7{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);}
.m9{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);}
.m1d{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);}
.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);}
.ma{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);}
.v1d{vertical-align:-74.718000px;}
.v15{vertical-align:-64.758000px;}
.v18{vertical-align:-53.802000px;}
.v16{vertical-align:-48.288000px;}
.v14{vertical-align:-26.034000px;}
.v1c{vertical-align:-20.922000px;}
.v13{vertical-align:-18.930000px;}
.v1a{vertical-align:-15.528000px;}
.v25{vertical-align:-12.702000px;}
.v1{vertical-align:-9.816000px;}
.v12{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.972000px;}
.v5{vertical-align:10.758000px;}
.v11{vertical-align:13.614000px;}
.v3{vertical-align:17.730000px;}
.v1f{vertical-align:20.724000px;}
.vf{vertical-align:24.738000px;}
.v17{vertical-align:26.034000px;}
.ve{vertical-align:28.242000px;}
.v2{vertical-align:29.622000px;}
.v1b{vertical-align:31.422000px;}
.v23{vertical-align:34.194000px;}
.vd{vertical-align:38.442000px;}
.v6{vertical-align:40.380000px;}
.v7{vertical-align:47.352000px;}
.vb{vertical-align:48.528000px;}
.v10{vertical-align:50.766000px;}
.v9{vertical-align:53.676000px;}
.v24{vertical-align:57.936000px;}
.v19{vertical-align:68.142000px;}
.vc{vertical-align:74.556000px;}
.v1e{vertical-align:92.292000px;}
.v8{vertical-align:97.638000px;}
.v22{vertical-align:107.310000px;}
.va{vertical-align:122.664000px;}
.v21{vertical-align:127.908000px;}
.v20{vertical-align:146.838000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000002px;}
.ls78{letter-spacing:0.000179px;}
.ls7c{letter-spacing:0.000472px;}
.ls16{letter-spacing:0.000760px;}
.ls2f{letter-spacing:0.000960px;}
.ls5c{letter-spacing:0.001114px;}
.ls9f{letter-spacing:0.001150px;}
.ls15{letter-spacing:0.001165px;}
.ls4b{letter-spacing:0.001571px;}
.ls3c{letter-spacing:0.002202px;}
.ls66{letter-spacing:0.002227px;}
.ls45{letter-spacing:0.002675px;}
.ls51{letter-spacing:0.003055px;}
.ls91{letter-spacing:0.004381px;}
.ls17{letter-spacing:0.004391px;}
.ls31{letter-spacing:0.004669px;}
.ls1b{letter-spacing:0.004737px;}
.ls77{letter-spacing:0.005053px;}
.ls89{letter-spacing:0.005591px;}
.ls83{letter-spacing:0.006060px;}
.ls48{letter-spacing:0.006081px;}
.ls36{letter-spacing:0.006399px;}
.ls1e{letter-spacing:0.011967px;}
.lsb{letter-spacing:0.012371px;}
.ls33{letter-spacing:0.013534px;}
.ls22{letter-spacing:0.014663px;}
.ls7f{letter-spacing:0.015583px;}
.ls8e{letter-spacing:0.019446px;}
.ls38{letter-spacing:0.023474px;}
.ls70{letter-spacing:0.023618px;}
.ls35{letter-spacing:0.026093px;}
.ls72{letter-spacing:0.026177px;}
.ls41{letter-spacing:0.476803px;}
.ls9b{letter-spacing:0.586737px;}
.ls5d{letter-spacing:0.592737px;}
.ls52{letter-spacing:1.291156px;}
.ls94{letter-spacing:1.407539px;}
.ls86{letter-spacing:1.936742px;}
.ls56{letter-spacing:2.510592px;}
.ls27{letter-spacing:2.569240px;}
.ls3f{letter-spacing:2.569918px;}
.ls54{letter-spacing:2.582323px;}
.ls43{letter-spacing:2.587392px;}
.ls47{letter-spacing:2.677954px;}
.ls3d{letter-spacing:2.983711px;}
.lsc{letter-spacing:2.984915px;}
.lsa0{letter-spacing:2.985056px;}
.ls8{letter-spacing:2.985072px;}
.ls23{letter-spacing:2.986200px;}
.ls4a{letter-spacing:2.986669px;}
.ls6e{letter-spacing:2.987971px;}
.ls64{letter-spacing:2.989289px;}
.ls49{letter-spacing:2.990289px;}
.ls29{letter-spacing:2.990367px;}
.lsd{letter-spacing:2.990915px;}
.ls9e{letter-spacing:2.991056px;}
.ls80{letter-spacing:2.991072px;}
.ls59{letter-spacing:2.992059px;}
.ls8f{letter-spacing:2.992200px;}
.ls8d{letter-spacing:3.227904px;}
.ls4d{letter-spacing:3.682180px;}
.lsa1{letter-spacing:5.151750px;}
.ls1d{letter-spacing:5.164646px;}
.ls2a{letter-spacing:5.344571px;}
.ls8c{letter-spacing:5.523302px;}
.ls84{letter-spacing:5.595034px;}
.ls2c{letter-spacing:5.641227px;}
.ls1f{letter-spacing:5.666765px;}
.ls65{letter-spacing:5.743488px;}
.ls96{letter-spacing:5.975950px;}
.ls81{letter-spacing:6.115301px;}
.ls34{letter-spacing:6.716493px;}
.ls32{letter-spacing:6.719578px;}
.ls87{letter-spacing:7.142010px;}
.ls25{letter-spacing:7.171473px;}
.ls26{letter-spacing:7.172915px;}
.ls18{letter-spacing:7.179191px;}
.ls19{letter-spacing:7.487034px;}
.ls55{letter-spacing:7.675238px;}
.ls3e{letter-spacing:7.962163px;}
.ls20{letter-spacing:8.013894px;}
.lsf{letter-spacing:8.033894px;}
.ls4e{letter-spacing:8.051159px;}
.ls4{letter-spacing:8.177357px;}
.ls62{letter-spacing:8.262366px;}
.ls92{letter-spacing:8.469056px;}
.ls90{letter-spacing:8.508587px;}
.ls7e{letter-spacing:9.749464px;}
.ls93{letter-spacing:9.878405px;}
.ls95{letter-spacing:10.163950px;}
.ls2b{letter-spacing:10.164532px;}
.ls3{letter-spacing:11.132915px;}
.ls7{letter-spacing:11.907379px;}
.ls50{letter-spacing:11.950404px;}
.ls44{letter-spacing:11.956391px;}
.ls8a{letter-spacing:11.957591px;}
.ls3a{letter-spacing:13.948527px;}
.ls42{letter-spacing:14.941711px;}
.ls58{letter-spacing:14.944059px;}
.ls4c{letter-spacing:14.947289px;}
.lsa{letter-spacing:15.924326px;}
.ls21{letter-spacing:15.945191px;}
.ls37{letter-spacing:17.574144px;}
.ls53{letter-spacing:18.619337px;}
.ls1c{letter-spacing:18.926915px;}
.ls2e{letter-spacing:19.008768px;}
.ls14{letter-spacing:19.923306px;}
.ls46{letter-spacing:19.925518px;}
.ls6{letter-spacing:19.941274px;}
.ls40{letter-spacing:21.591091px;}
.ls2d{letter-spacing:22.022915px;}
.ls9{letter-spacing:22.051301px;}
.ls97{letter-spacing:22.910915px;}
.ls5a{letter-spacing:22.912059px;}
.ls9c{letter-spacing:22.913971px;}
.ls5{letter-spacing:22.916915px;}
.ls71{letter-spacing:22.917072px;}
.ls12{letter-spacing:22.958915px;}
.ls82{letter-spacing:23.958221px;}
.ls13{letter-spacing:24.101683px;}
.ls7b{letter-spacing:24.152747px;}
.ls6c{letter-spacing:24.483537px;}
.ls6b{letter-spacing:24.487739px;}
.ls75{letter-spacing:25.550915px;}
.ls79{letter-spacing:25.577971px;}
.ls5e{letter-spacing:26.096915px;}
.ls39{letter-spacing:27.975168px;}
.ls73{letter-spacing:28.434587px;}
.ls74{letter-spacing:28.675301px;}
.ls5b{letter-spacing:29.171518px;}
.ls7a{letter-spacing:29.266180px;}
.ls0{letter-spacing:29.287301px;}
.ls30{letter-spacing:31.418266px;}
.ls60{letter-spacing:31.876145px;}
.ls9d{letter-spacing:32.125301px;}
.ls6d{letter-spacing:32.494234px;}
.ls7d{letter-spacing:32.530936px;}
.ls68{letter-spacing:32.868960px;}
.ls6a{letter-spacing:32.872478px;}
.ls69{letter-spacing:32.873236px;}
.ls76{letter-spacing:32.936915px;}
.ls24{letter-spacing:38.806579px;}
.ls6f{letter-spacing:41.487226px;}
.lse{letter-spacing:43.827763px;}
.ls10{letter-spacing:43.828145px;}
.ls67{letter-spacing:44.524767px;}
.ls98{letter-spacing:46.775518px;}
.ls1a{letter-spacing:49.414404px;}
.ls3b{letter-spacing:54.290915px;}
.ls63{letter-spacing:58.319518px;}
.ls28{letter-spacing:58.898915px;}
.ls88{letter-spacing:69.697021px;}
.ls4f{letter-spacing:97.124045px;}
.ls85{letter-spacing:101.571379px;}
.ls11{letter-spacing:108.314112px;}
.ls61{letter-spacing:116.419738px;}
.ls8b{letter-spacing:139.947571px;}
.ls57{letter-spacing:211.320115px;}
.ls99{letter-spacing:242.021069px;}
.ls9a{letter-spacing:249.922059px;}
.ls5f{letter-spacing:272.291635px;}
.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;}
}
.ws3b{word-spacing:-71.731200px;}
.ws47{word-spacing:-56.789591px;}
.ws64{word-spacing:-48.131635px;}
.ws65{word-spacing:-45.836237px;}
.ws2e{word-spacing:-45.664082px;}
.wsc{word-spacing:-42.637126px;}
.ws88{word-spacing:-35.435213px;}
.ws31{word-spacing:-33.756703px;}
.ws1d{word-spacing:-33.684972px;}
.ws2f{word-spacing:-33.211407px;}
.ws5{word-spacing:-31.706208px;}
.ws5a{word-spacing:-25.952772px;}
.ws82{word-spacing:-20.906199px;}
.ws43{word-spacing:-19.510886px;}
.ws74{word-spacing:-18.183288px;}
.ws3d{word-spacing:-14.111859px;}
.ws85{word-spacing:-11.157034px;}
.ws5b{word-spacing:-9.994125px;}
.ws33{word-spacing:-7.603507px;}
.ws5c{word-spacing:-7.540630px;}
.ws58{word-spacing:-3.586560px;}
.ws6e{word-spacing:-3.261166px;}
.wsaf{word-spacing:-3.156173px;}
.ws26{word-spacing:-2.654054px;}
.wsad{word-spacing:-2.223667px;}
.ws8e{word-spacing:-2.008474px;}
.ws77{word-spacing:-1.885092px;}
.ws87{word-spacing:-1.147699px;}
.ws71{word-spacing:-0.932506px;}
.ws90{word-spacing:-0.860774px;}
.ws59{word-spacing:-0.573850px;}
.ws19{word-spacing:-0.502118px;}
.ws84{word-spacing:-0.093034px;}
.ws2c{word-spacing:-0.071731px;}
.ws48{word-spacing:-0.047821px;}
.ws89{word-spacing:-0.035866px;}
.ws28{word-spacing:0.000000px;}
.ws4c{word-spacing:0.143462px;}
.ws76{word-spacing:0.209455px;}
.wsae{word-spacing:0.215194px;}
.ws41{word-spacing:0.358656px;}
.ws46{word-spacing:0.388193px;}
.ws32{word-spacing:0.423218px;}
.ws51{word-spacing:0.430387px;}
.ws2b{word-spacing:0.502118px;}
.ws91{word-spacing:0.573850px;}
.ws9b{word-spacing:0.645581px;}
.ws93{word-spacing:0.860774px;}
.ws8a{word-spacing:1.219430px;}
.ws2d{word-spacing:1.291162px;}
.ws1e{word-spacing:1.362893px;}
.wsa0{word-spacing:1.506355px;}
.ws7f{word-spacing:1.649818px;}
.wse{word-spacing:1.845820px;}
.wsac{word-spacing:2.008474px;}
.ws83{word-spacing:2.080205px;}
.wsaa{word-spacing:2.295398px;}
.ws17{word-spacing:2.438861px;}
.ws7b{word-spacing:2.565820px;}
.ws6f{word-spacing:2.654054px;}
.ws27{word-spacing:3.012710px;}
.ws40{word-spacing:3.084442px;}
.wsbb{word-spacing:3.089457px;}
.wsf{word-spacing:3.299613px;}
.wsa3{word-spacing:3.371366px;}
.ws95{word-spacing:3.443098px;}
.ws18{word-spacing:3.514829px;}
.ws72{word-spacing:3.547639px;}
.ws5e{word-spacing:3.586560px;}
.ws3{word-spacing:3.613094px;}
.ws38{word-spacing:3.658291px;}
.ws4{word-spacing:3.678549px;}
.ws99{word-spacing:3.730022px;}
.ws9{word-spacing:3.744003px;}
.ws8c{word-spacing:3.801754px;}
.ws8{word-spacing:3.809458px;}
.ws14{word-spacing:3.873485px;}
.wsd{word-spacing:3.874912px;}
.wsa{word-spacing:3.940367px;}
.ws94{word-spacing:3.945216px;}
.ws7a{word-spacing:4.005822px;}
.ws52{word-spacing:4.016947px;}
.wsbd{word-spacing:4.071276px;}
.ws9a{word-spacing:4.088678px;}
.ws1a{word-spacing:4.160410px;}
.ws39{word-spacing:4.162913px;}
.ws29{word-spacing:4.228367px;}
.ws8d{word-spacing:4.232141px;}
.ws4b{word-spacing:4.303872px;}
.ws62{word-spacing:4.375603px;}
.ws2a{word-spacing:4.424731px;}
.ws25{word-spacing:4.447334px;}
.ws92{word-spacing:4.734259px;}
.ws6{word-spacing:4.791277px;}
.ws5f{word-spacing:4.877722px;}
.ws6a{word-spacing:4.949453px;}
.ws1c{word-spacing:5.021184px;}
.ws0{word-spacing:5.379825px;}
.ws63{word-spacing:5.523302px;}
.ws98{word-spacing:5.810227px;}
.ws96{word-spacing:5.881958px;}
.ws97{word-spacing:5.953690px;}
.ws7{word-spacing:5.969460px;}
.wsb{word-spacing:6.165823px;}
.wsa4{word-spacing:6.168883px;}
.wsb3{word-spacing:6.296733px;}
.ws9f{word-spacing:6.384077px;}
.ws8b{word-spacing:6.671002px;}
.wsab{word-spacing:6.742733px;}
.ws66{word-spacing:6.814464px;}
.ws81{word-spacing:6.957926px;}
.ws12{word-spacing:7.244851px;}
.ws5d{word-spacing:7.316582px;}
.ws3c{word-spacing:7.388314px;}
.wsb9{word-spacing:7.540370px;}
.ws3f{word-spacing:7.603507px;}
.ws16{word-spacing:7.675238px;}
.ws36{word-spacing:7.890432px;}
.ws7d{word-spacing:8.249088px;}
.ws9d{word-spacing:8.320819px;}
.wsa2{word-spacing:8.392550px;}
.wsa1{word-spacing:8.679475px;}
.ws4e{word-spacing:8.799084px;}
.ws3e{word-spacing:9.038131px;}
.wsb8{word-spacing:9.176735px;}
.ws61{word-spacing:9.181594px;}
.ws30{word-spacing:9.253325px;}
.ws9e{word-spacing:9.540250px;}
.ws69{word-spacing:9.898906px;}
.ws4d{word-spacing:10.185830px;}
.wsa8{word-spacing:10.257562px;}
.ws80{word-spacing:10.616218px;}
.ws9c{word-spacing:10.687949px;}
.ws55{word-spacing:10.759680px;}
.ws34{word-spacing:10.831411px;}
.ws35{word-spacing:10.903142px;}
.ws6d{word-spacing:11.046605px;}
.ws49{word-spacing:11.362222px;}
.ws24{word-spacing:11.763917px;}
.ws8f{word-spacing:12.194304px;}
.ws3a{word-spacing:12.266035px;}
.ws4a{word-spacing:12.285084px;}
.ws7c{word-spacing:12.580374px;}
.ws45{word-spacing:13.270272px;}
.wsb1{word-spacing:13.431284px;}
.ws7e{word-spacing:13.915853px;}
.ws67{word-spacing:14.131046px;}
.ws86{word-spacing:14.776627px;}
.wsb7{word-spacing:14.871285px;}
.ws1f{word-spacing:15.063552px;}
.ws22{word-spacing:15.637402px;}
.ws23{word-spacing:15.709133px;}
.ws60{word-spacing:15.924326px;}
.ws50{word-spacing:15.996058px;}
.ws53{word-spacing:16.426445px;}
.wsa9{word-spacing:16.498176px;}
.ws20{word-spacing:17.143757px;}
.ws15{word-spacing:17.287219px;}
.wsb6{word-spacing:17.554924px;}
.ws13{word-spacing:17.861069px;}
.ws1{word-spacing:18.578381px;}
.ws6c{word-spacing:19.403971px;}
.ws6b{word-spacing:19.409971px;}
.ws11{word-spacing:20.228198px;}
.wsb0{word-spacing:20.238562px;}
.ws21{word-spacing:20.586854px;}
.wsba{word-spacing:20.631290px;}
.wsa7{word-spacing:20.675971px;}
.ws4f{word-spacing:21.447629px;}
.ws54{word-spacing:22.953984px;}
.ws78{word-spacing:23.773111px;}
.ws79{word-spacing:23.904020px;}
.ws37{word-spacing:24.316877px;}
.wsa5{word-spacing:25.464576px;}
.wsb2{word-spacing:26.129476px;}
.ws68{word-spacing:27.329587px;}
.wsbe{word-spacing:28.027660px;}
.ws75{word-spacing:28.682206px;}
.wsa6{word-spacing:34.928834px;}
.ws2{word-spacing:35.214575px;}
.ws70{word-spacing:38.089267px;}
.wsb5{word-spacing:40.987671px;}
.wsbc{word-spacing:42.558581px;}
.ws42{word-spacing:44.329882px;}
.wsb4{word-spacing:45.504038px;}
.ws1b{word-spacing:48.346829px;}
.ws10{word-spacing:54.366591px;}
.ws44{word-spacing:69.650995px;}
.ws56{word-spacing:94.183066px;}
.ws57{word-spacing:154.437274px;}
.ws73{word-spacing:170.784142px;}
._13{margin-left:-38.734848px;}
._23{margin-left:-28.930933px;}
._28{margin-left:-19.977139px;}
._27{margin-left:-15.858100px;}
._26{margin-left:-7.869925px;}
._8{margin-left:-5.563641px;}
._1{margin-left:-3.877067px;}
._0{margin-left:-2.668393px;}
._4{margin-left:-1.636365px;}
._3{width:1.832729px;}
._d{width:2.844138px;}
._f{width:3.945216px;}
._11{width:6.091858px;}
._12{width:15.004284px;}
._15{width:16.214594px;}
._e{width:18.291456px;}
._c{width:20.013005px;}
._1a{width:22.035817px;}
._17{width:25.034189px;}
._9{width:26.931341px;}
._7{width:27.933869px;}
._2{width:29.061842px;}
._b{width:31.432604px;}
._5{width:33.250937px;}
._6{width:38.079332px;}
._19{width:39.236966px;}
._29{width:40.312934px;}
._2b{width:42.610945px;}
._2a{width:45.294670px;}
._2c{width:49.926614px;}
._16{width:50.929152px;}
._14{width:60.110746px;}
._25{width:62.707408px;}
._1b{width:66.423091px;}
._18{width:68.359834px;}
._2d{width:70.494604px;}
._a{width:74.829980px;}
._10{width:76.843700px;}
._24{width:391.730536px;}
._1f{width:461.258566px;}
._1e{width:516.290639px;}
._22{width:530.313169px;}
._1d{width:540.720451px;}
._1c{width:593.411404px;}
._20{width:604.015049px;}
._21{width:609.447781px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1d{bottom:143.875500px;}
.y3d{bottom:160.314000px;}
.y1c{bottom:175.258500px;}
.y3c{bottom:191.697000px;}
.y103{bottom:197.523000px;}
.y1b{bottom:206.640000px;}
.y39{bottom:216.895500px;}
.y3a{bottom:223.078500px;}
.y102{bottom:230.025000px;}
.y3b{bottom:230.298000px;}
.y38{bottom:230.962500px;}
.yad{bottom:237.789000px;}
.y1a{bottom:238.023000px;}
.yac{bottom:242.223000px;}
.y5b{bottom:244.402500px;}
.y36{bottom:248.277000px;}
.y37{bottom:250.027500px;}
.y35{bottom:254.461500px;}
.y78{bottom:254.701500px;}
.y8c{bottom:255.465000px;}
.y101{bottom:262.528500px;}
.y19{bottom:269.404500px;}
.y5a{bottom:276.906000px;}
.ya4{bottom:285.843000px;}
.y77{bottom:286.083000px;}
.y8b{bottom:286.846500px;}
.yab{bottom:292.749000px;}
.y100{bottom:295.032000px;}
.y18{bottom:300.787500px;}
.y34{bottom:307.369500px;}
.ya3{bottom:317.226000px;}
.y76{bottom:317.466000px;}
.y8a{bottom:318.229500px;}
.yaa{bottom:324.535500px;}
.yff{bottom:327.535500px;}
.y17{bottom:332.169000px;}
.y59{bottom:343.819500px;}
.ya2{bottom:348.607500px;}
.y75{bottom:348.847500px;}
.y33{bottom:354.846000px;}
.ya9{bottom:355.918500px;}
.y16{bottom:363.552000px;}
.y74{bottom:364.041000px;}
.y31{bottom:367.146000px;}
.y73{bottom:367.929000px;}
.y89{bottom:371.875500px;}
.y32{bottom:374.614500px;}
.ya1{bottom:379.990500px;}
.y72{bottom:380.230500px;}
.yc5{bottom:380.935500px;}
.y58{bottom:385.140000px;}
.y15{bottom:394.935000px;}
.y88{bottom:404.379000px;}
.ya8{bottom:408.964500px;}
.ya0{bottom:411.372000px;}
.yc4{bottom:412.317000px;}
.y30{bottom:414.256500px;}
.y57{bottom:416.715000px;}
.y14{bottom:426.316500px;}
.yf1{bottom:428.220000px;}
.y71{bottom:430.266000px;}
.ya7{bottom:441.466500px;}
.ydc{bottom:442.755000px;}
.y56{bottom:443.433000px;}
.yc3{bottom:444.643500px;}
.y2f{bottom:445.639500px;}
.y55{bottom:448.098000px;}
.yef{bottom:455.169000px;}
.y13{bottom:457.699500px;}
.yee{bottom:459.601500px;}
.y9f{bottom:465.438000px;}
.yf0{bottom:466.110000px;}
.ydb{bottom:474.138000px;}
.yc2{bottom:476.026500px;}
.y87{bottom:477.087000px;}
.y70{bottom:483.148500px;}
.y52{bottom:486.246000px;}
.y53{bottom:486.511500px;}
.yec{bottom:490.984500px;}
.yed{bottom:497.491500px;}
.y9e{bottom:497.941500px;}
.y2e{bottom:498.280500px;}
.y54{bottom:499.411500px;}
.yda{bottom:505.519500px;}
.y51{bottom:507.267000px;}
.yc1{bottom:507.409500px;}
.y86{bottom:508.470000px;}
.ya6{bottom:510.475500px;}
.y12{bottom:510.621000px;}
.y6f{bottom:515.652000px;}
.yfe{bottom:522.367500px;}
.yd9{bottom:536.902500px;}
.yc0{bottom:538.791000px;}
.y85{bottom:539.851500px;}
.yeb{bottom:539.914500px;}
.ya5{bottom:541.858500px;}
.yfd{bottom:553.749000px;}
.y50{bottom:556.774500px;}
.y2d{bottom:564.253500px;}
.y6d{bottom:567.463500px;}
.yd8{bottom:568.284000px;}
.ybf{bottom:570.174000px;}
.y6c{bottom:571.351500px;}
.y11{bottom:571.809000px;}
.y9d{bottom:573.241500px;}
.y6e{bottom:583.653000px;}
.yfc{bottom:585.132000px;}
.y4e{bottom:588.156000px;}
.yea{bottom:588.844500px;}
.y84{bottom:593.497500px;}
.y2c{bottom:595.636500px;}
.y6b{bottom:595.783500px;}
.yd7{bottom:599.667000px;}
.ybe{bottom:601.555500px;}
.y4f{bottom:601.606500px;}
.yfb{bottom:616.513500px;}
.y4d{bottom:619.539000px;}
.y10{bottom:619.840500px;}
.ye9{bottom:620.226000px;}
.y83{bottom:626.001000px;}
.y2b{bottom:627.018000px;}
.yd6{bottom:631.048500px;}
.ybd{bottom:632.938500px;}
.y6a{bottom:633.688500px;}
.y9c{bottom:635.893500px;}
.yfa{bottom:647.896500px;}
.y4c{bottom:650.922000px;}
.ye8{bottom:651.609000px;}
.yf{bottom:652.344000px;}
.y2a{bottom:658.401000px;}
.y69{bottom:662.380500px;}
.yd5{bottom:662.431500px;}
.y68{bottom:665.070000px;}
.ybc{bottom:665.265000px;}
.y9b{bottom:668.397000px;}
.yf9{bottom:679.278000px;}
.y4b{bottom:682.303500px;}
.ye7{bottom:682.990500px;}
.ye{bottom:684.847500px;}
.yd4{bottom:693.813000px;}
.y82{bottom:698.709000px;}
.y9a{bottom:700.899000px;}
.y67{bottom:702.805500px;}
.y29{bottom:704.016000px;}
.yf8{bottom:710.661000px;}
.y66{bottom:710.673000px;}
.y4a{bottom:713.749500px;}
.ye6{bottom:714.373500px;}
.y65{bottom:715.107000px;}
.yd{bottom:717.349500px;}
.ybb{bottom:718.851000px;}
.yd3{bottom:725.196000px;}
.y80{bottom:730.092000px;}
.y99{bottom:733.402500px;}
.y81{bottom:736.599000px;}
.yf7{bottom:742.042500px;}
.ye5{bottom:745.755000px;}
.y49{bottom:748.968000px;}
.y28{bottom:749.631000px;}
.yc{bottom:749.853000px;}
.yba{bottom:751.354500px;}
.yd2{bottom:756.577500px;}
.y7f{bottom:761.473500px;}
.y98{bottom:765.906000px;}
.y48{bottom:768.970500px;}
.yf6{bottom:773.425500px;}
.ye4{bottom:777.138000px;}
.y64{bottom:780.277500px;}
.y27{bottom:781.014000px;}
.yb{bottom:782.356500px;}
.yd1{bottom:787.960500px;}
.y7e{bottom:792.856500px;}
.y63{bottom:798.211500px;}
.y97{bottom:798.409500px;}
.ye3{bottom:808.519500px;}
.ya{bottom:814.860000px;}
.y47{bottom:818.478000px;}
.yd0{bottom:819.342000px;}
.y26{bottom:822.196500px;}
.yb9{bottom:823.699500px;}
.y7d{bottom:824.238000px;}
.yf5{bottom:826.068000px;}
.y25{bottom:826.629000px;}
.y96{bottom:830.911500px;}
.ye2{bottom:839.902500px;}
.y45{bottom:843.633000px;}
.y9{bottom:847.362000px;}
.y46{bottom:849.859500px;}
.ycf{bottom:850.725000px;}
.y62{bottom:851.092500px;}
.yb8{bottom:855.081000px;}
.y7c{bottom:855.621000px;}
.yf4{bottom:857.449500px;}
.y95{bottom:863.415000px;}
.y44{bottom:864.306000px;}
.ye1{bottom:871.285500px;}
.y24{bottom:872.245500px;}
.y8{bottom:879.865500px;}
.y43{bottom:881.242500px;}
.yce{bottom:882.108000px;}
.y61{bottom:883.596000px;}
.yb4{bottom:886.464000px;}
.yf3{bottom:888.832500px;}
.yb7{bottom:889.639500px;}
.yb5{bottom:890.611500px;}
.y94{bottom:895.918500px;}
.yb6{bottom:899.899500px;}
.ye0{bottom:902.667000px;}
.y23{bottom:903.627000px;}
.y7b{bottom:909.267000px;}
.y7{bottom:912.369000px;}
.ycd{bottom:913.489500px;}
.yf2{bottom:920.214000px;}
.y93{bottom:928.422000px;}
.y42{bottom:933.948000px;}
.ydf{bottom:934.050000px;}
.yb3{bottom:938.613000px;}
.y6{bottom:944.872500px;}
.y60{bottom:951.597000px;}
.y22{bottom:956.269500px;}
.y92{bottom:960.924000px;}
.yde{bottom:965.431500px;}
.y41{bottom:966.451500px;}
.yb2{bottom:970.939500px;}
.y107{bottom:977.374500px;}
.ycc{bottom:981.325500px;}
.y7a{bottom:981.975000px;}
.y5f{bottom:982.978500px;}
.y5{bottom:984.474000px;}
.ycb{bottom:989.193000px;}
.y91{bottom:993.427500px;}
.yca{bottom:993.627000px;}
.yb1{bottom:1003.266000px;}
.y106{bottom:1009.878000px;}
.y21{bottom:1010.032500px;}
.y79{bottom:1013.358000px;}
.y5e{bottom:1014.361500px;}
.y4{bottom:1016.976000px;}
.y40{bottom:1023.135000px;}
.y90{bottom:1025.931000px;}
.yc9{bottom:1042.381500px;}
.y20{bottom:1042.536000px;}
.yb0{bottom:1043.113500px;}
.y5d{bottom:1045.743000px;}
.y3{bottom:1049.479500px;}
.y3f{bottom:1054.518000px;}
.yaf{bottom:1055.415000px;}
.y8f{bottom:1058.434500px;}
.y105{bottom:1074.885000px;}
.y5c{bottom:1077.126000px;}
.yc8{bottom:1078.834500px;}
.ydd{bottom:1083.633000px;}
.yc7{bottom:1086.702000px;}
.y3e{bottom:1090.383000px;}
.yc6{bottom:1091.136000px;}
.y8e{bottom:1091.535000px;}
.y2{bottom:1099.542000px;}
.y104{bottom:1107.387000px;}
.yae{bottom:1107.564000px;}
.y1f{bottom:1108.509000px;}
.y8d{bottom:1128.526500px;}
.y1{bottom:1139.890500px;}
.y1e{bottom:1192.194000px;}
.h18{height:2.869248px;}
.h1c{height:8.097450px;}
.h13{height:16.935450px;}
.h16{height:24.245146px;}
.hc{height:35.865450px;}
.h6{height:44.705492px;}
.h7{height:44.831700px;}
.h4{height:45.425492px;}
.h5{height:49.090950px;}
.h3{height:53.798400px;}
.h24{height:57.357450px;}
.h2{height:60.254040px;}
.h1b{height:61.893450px;}
.h17{height:61.899450px;}
.he{height:64.107450px;}
.h12{height:65.481450px;}
.h8{height:65.487450px;}
.h19{height:71.011248px;}
.h26{height:71.528400px;}
.h10{height:71.534400px;}
.h11{height:78.530400px;}
.h9{height:83.217450px;}
.h1a{height:85.220400px;}
.hf{height:86.631450px;}
.h14{height:86.805450px;}
.h15{height:100.501248px;}
.ha{height:100.507248px;}
.h23{height:101.299248px;}
.h20{height:102.326400px;}
.hd{height:102.998400px;}
.h1e{height:103.004400px;}
.h22{height:114.687450px;}
.h25{height:120.062400px;}
.hb{height:125.533248px;}
.h1d{height:128.157450px;}
.h1f{height:163.773450px;}
.h21{height:163.779450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:105.945000px;}
.x13{left:107.368500px;}
.x48{left:109.794000px;}
.xb3{left:110.989500px;}
.x47{left:113.440500px;}
.xc2{left:117.336000px;}
.x39{left:119.758500px;}
.x2c{left:121.005000px;}
.xc5{left:124.593000px;}
.x1{left:126.951000px;}
.xd4{left:128.130000px;}
.x12{left:130.416000px;}
.xe6{left:132.324000px;}
.xe2{left:134.239500px;}
.xd6{left:136.827000px;}
.x2d{left:138.399000px;}
.x27{left:145.987500px;}
.x3d{left:149.148000px;}
.x31{left:155.449500px;}
.xb{left:158.809500px;}
.x2e{left:160.479000px;}
.x26{left:164.788500px;}
.x7e{left:167.451000px;}
.x75{left:170.326500px;}
.x3e{left:171.987000px;}
.x6{left:175.173000px;}
.xba{left:179.109000px;}
.xd7{left:180.126000px;}
.xc4{left:181.284000px;}
.x76{left:183.423000px;}
.x11{left:186.381000px;}
.xd8{left:189.081000px;}
.x79{left:191.154000px;}
.x3f{left:192.774000px;}
.x49{left:194.274000px;}
.x2f{left:196.528500px;}
.xc3{left:203.272500px;}
.x32{left:204.462000px;}
.x77{left:206.916000px;}
.x40{left:208.515000px;}
.x30{left:210.475500px;}
.x73{left:211.813500px;}
.x33{left:220.687500px;}
.x41{left:225.067500px;}
.x34{left:227.653500px;}
.x35{left:238.653000px;}
.x78{left:242.337000px;}
.x7a{left:244.129500px;}
.x7f{left:245.284500px;}
.x71{left:250.156500px;}
.xbf{left:256.119000px;}
.x4a{left:258.963000px;}
.x3c{left:261.187500px;}
.xe3{left:263.344500px;}
.xd2{left:268.102500px;}
.x3b{left:269.556000px;}
.xe4{left:272.350500px;}
.x3a{left:275.982000px;}
.x4b{left:279.912000px;}
.x28{left:286.666500px;}
.x74{left:289.765500px;}
.xd9{left:291.079500px;}
.x80{left:294.865500px;}
.x17{left:298.053000px;}
.x4c{left:302.860500px;}
.xd5{left:304.690500px;}
.x18{left:306.832500px;}
.xd3{left:313.084500px;}
.x19{left:316.270500px;}
.x29{left:320.281500px;}
.x1a{left:325.050000px;}
.x42{left:328.672500px;}
.x70{left:334.542000px;}
.x6e{left:336.234000px;}
.x2a{left:338.647500px;}
.x4d{left:341.038500px;}
.x43{left:344.899500px;}
.x44{left:351.864000px;}
.x72{left:356.122500px;}
.x6f{left:360.420000px;}
.x5{left:362.551500px;}
.x4{left:369.484500px;}
.x4e{left:372.196500px;}
.x15{left:374.277000px;}
.x81{left:376.776000px;}
.x7c{left:378.069000px;}
.x38{left:381.736500px;}
.x16{left:383.056500px;}
.x3{left:384.742500px;}
.x7d{left:387.024000px;}
.xc1{left:388.897500px;}
.x36{left:392.224500px;}
.x2{left:396.972000px;}
.xc0{left:399.405000px;}
.x37{left:403.225500px;}
.x2b{left:406.887000px;}
.xc{left:416.037000px;}
.x45{left:418.975500px;}
.x7b{left:421.054500px;}
.xd{left:425.043000px;}
.xc6{left:426.336000px;}
.x82{left:428.307000px;}
.x83{left:437.262000px;}
.x46{left:439.693500px;}
.x84{left:442.140000px;}
.xbb{left:463.105500px;}
.x1b{left:465.160500px;}
.x4f{left:470.197500px;}
.xe0{left:471.784500px;}
.x50{left:474.183000px;}
.x9c{left:478.993500px;}
.xdf{left:480.852000px;}
.x5c{left:482.382000px;}
.xab{left:485.629500px;}
.x1c{left:487.576500px;}
.xe5{left:489.484500px;}
.x53{left:491.728500px;}
.x60{left:496.825500px;}
.xdb{left:498.793500px;}
.x52{left:500.023500px;}
.xbe{left:502.897500px;}
.x95{left:508.216500px;}
.x5e{left:509.653500px;}
.x85{left:514.017000px;}
.x61{left:516.630000px;}
.x5f{left:518.433000px;}
.xad{left:520.896000px;}
.xdc{left:524.289000px;}
.x8f{left:525.783000px;}
.xdd{left:529.167000px;}
.xde{left:531.384000px;}
.x6d{left:534.394500px;}
.x56{left:536.028000px;}
.x6c{left:538.356000px;}
.x90{left:539.616000px;}
.x57{left:542.994000px;}
.xb2{left:544.552500px;}
.x9f{left:547.750500px;}
.x1d{left:550.293000px;}
.x62{left:551.581500px;}
.x69{left:555.267000px;}
.x96{left:556.576500px;}
.x63{left:558.547500px;}
.x1e{left:559.921500px;}
.xbc{left:561.792000px;}
.x97{left:565.531500px;}
.x1f{left:566.866500px;}
.x98{left:570.409500px;}
.xc9{left:571.413000px;}
.x5d{left:573.087000px;}
.x58{left:575.142000px;}
.x64{left:578.872500px;}
.x59{left:585.136500px;}
.xac{left:587.506500px;}
.x6a{left:588.592500px;}
.xcc{left:590.028000px;}
.x20{left:591.051000px;}
.x5a{left:595.090500px;}
.x65{left:597.144000px;}
.x9d{left:598.249500px;}
.xbd{left:599.313000px;}
.xb5{left:600.796500px;}
.x9e{left:603.127500px;}
.xcd{left:604.803000px;}
.xce{left:608.322000px;}
.x5b{left:614.208000px;}
.xc7{left:616.552500px;}
.xa0{left:618.471000px;}
.x66{left:630.382500px;}
.x86{left:633.544500px;}
.xa1{left:636.381000px;}
.x99{left:638.106000px;}
.xa2{left:641.259000px;}
.xc8{left:647.071500px;}
.xa3{left:650.214000px;}
.x89{left:652.041000px;}
.xa4{left:657.312000px;}
.x6b{left:659.736000px;}
.x8a{left:660.996000px;}
.xb6{left:663.609000px;}
.x8b{left:665.872500px;}
.xa5{left:670.087500px;}
.xe{left:672.595500px;}
.x24{left:676.131000px;}
.xb7{left:678.541500px;}
.x87{left:679.782000px;}
.xb8{left:681.225000px;}
.x21{left:684.829500px;}
.x88{left:688.737000px;}
.xca{left:691.005000px;}
.x7{left:693.829500px;}
.xb9{left:695.715000px;}
.x9a{left:699.624000px;}
.x8{left:702.834000px;}
.x8c{left:704.236500px;}
.xae{left:705.457500px;}
.x9{left:709.071000px;}
.x67{left:710.083500px;}
.x92{left:713.239500px;}
.x22{left:717.558000px;}
.xf{left:719.049000px;}
.xa6{left:720.934500px;}
.x23{left:722.155500px;}
.xd0{left:725.218500px;}
.x10{left:727.395000px;}
.xa7{left:729.891000px;}
.xa{left:731.605500px;}
.xa8{left:734.767500px;}
.x54{left:737.638500px;}
.xd1{left:738.700500px;}
.xcb{left:742.293000px;}
.x68{left:751.243500px;}
.xa9{left:752.677500px;}
.xaf{left:758.163000px;}
.xaa{left:759.777000px;}
.x55{left:763.753500px;}
.x9b{left:765.331500px;}
.x93{left:768.435000px;}
.xe1{left:770.094000px;}
.x8d{left:773.100000px;}
.x91{left:775.593000px;}
.x8e{left:777.978000px;}
.x94{left:782.268000px;}
.xb0{left:785.028000px;}
.x51{left:786.994500px;}
.xb1{left:789.906000px;}
.xda{left:793.429500px;}
.xb4{left:795.382500px;}
.x25{left:798.598500px;}
.xcf{left:804.843000px;}
@media print{
.v1d{vertical-align:-66.416000pt;}
.v15{vertical-align:-57.562667pt;}
.v18{vertical-align:-47.824000pt;}
.v16{vertical-align:-42.922667pt;}
.v14{vertical-align:-23.141333pt;}
.v1c{vertical-align:-18.597333pt;}
.v13{vertical-align:-16.826667pt;}
.v1a{vertical-align:-13.802667pt;}
.v25{vertical-align:-11.290667pt;}
.v1{vertical-align:-8.725333pt;}
.v12{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.197333pt;}
.v5{vertical-align:9.562667pt;}
.v11{vertical-align:12.101333pt;}
.v3{vertical-align:15.760000pt;}
.v1f{vertical-align:18.421333pt;}
.vf{vertical-align:21.989333pt;}
.v17{vertical-align:23.141333pt;}
.ve{vertical-align:25.104000pt;}
.v2{vertical-align:26.330667pt;}
.v1b{vertical-align:27.930667pt;}
.v23{vertical-align:30.394667pt;}
.vd{vertical-align:34.170667pt;}
.v6{vertical-align:35.893333pt;}
.v7{vertical-align:42.090667pt;}
.vb{vertical-align:43.136000pt;}
.v10{vertical-align:45.125333pt;}
.v9{vertical-align:47.712000pt;}
.v24{vertical-align:51.498667pt;}
.v19{vertical-align:60.570667pt;}
.vc{vertical-align:66.272000pt;}
.v1e{vertical-align:82.037333pt;}
.v8{vertical-align:86.789333pt;}
.v22{vertical-align:95.386667pt;}
.va{vertical-align:109.034667pt;}
.v21{vertical-align:113.696000pt;}
.v20{vertical-align:130.522667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000002pt;}
.ls78{letter-spacing:0.000159pt;}
.ls7c{letter-spacing:0.000420pt;}
.ls16{letter-spacing:0.000676pt;}
.ls2f{letter-spacing:0.000853pt;}
.ls5c{letter-spacing:0.000990pt;}
.ls9f{letter-spacing:0.001022pt;}
.ls15{letter-spacing:0.001036pt;}
.ls4b{letter-spacing:0.001396pt;}
.ls3c{letter-spacing:0.001958pt;}
.ls66{letter-spacing:0.001980pt;}
.ls45{letter-spacing:0.002377pt;}
.ls51{letter-spacing:0.002715pt;}
.ls91{letter-spacing:0.003895pt;}
.ls17{letter-spacing:0.003903pt;}
.ls31{letter-spacing:0.004151pt;}
.ls1b{letter-spacing:0.004210pt;}
.ls77{letter-spacing:0.004492pt;}
.ls89{letter-spacing:0.004970pt;}
.ls83{letter-spacing:0.005386pt;}
.ls48{letter-spacing:0.005406pt;}
.ls36{letter-spacing:0.005688pt;}
.ls1e{letter-spacing:0.010638pt;}
.lsb{letter-spacing:0.010996pt;}
.ls33{letter-spacing:0.012030pt;}
.ls22{letter-spacing:0.013034pt;}
.ls7f{letter-spacing:0.013851pt;}
.ls8e{letter-spacing:0.017285pt;}
.ls38{letter-spacing:0.020866pt;}
.ls70{letter-spacing:0.020994pt;}
.ls35{letter-spacing:0.023194pt;}
.ls72{letter-spacing:0.023269pt;}
.ls41{letter-spacing:0.423825pt;}
.ls9b{letter-spacing:0.521544pt;}
.ls5d{letter-spacing:0.526877pt;}
.ls52{letter-spacing:1.147694pt;}
.ls94{letter-spacing:1.251145pt;}
.ls86{letter-spacing:1.721549pt;}
.ls56{letter-spacing:2.231637pt;}
.ls27{letter-spacing:2.283769pt;}
.ls3f{letter-spacing:2.284372pt;}
.ls54{letter-spacing:2.295398pt;}
.ls43{letter-spacing:2.299904pt;}
.ls47{letter-spacing:2.380403pt;}
.ls3d{letter-spacing:2.652187pt;}
.lsc{letter-spacing:2.653258pt;}
.lsa0{letter-spacing:2.653383pt;}
.ls8{letter-spacing:2.653398pt;}
.ls23{letter-spacing:2.654400pt;}
.ls4a{letter-spacing:2.654817pt;}
.ls6e{letter-spacing:2.655975pt;}
.ls64{letter-spacing:2.657146pt;}
.ls49{letter-spacing:2.658034pt;}
.ls29{letter-spacing:2.658104pt;}
.lsd{letter-spacing:2.658591pt;}
.ls9e{letter-spacing:2.658717pt;}
.ls80{letter-spacing:2.658731pt;}
.ls59{letter-spacing:2.659608pt;}
.ls8f{letter-spacing:2.659733pt;}
.ls8d{letter-spacing:2.869248pt;}
.ls4d{letter-spacing:3.273049pt;}
.lsa1{letter-spacing:4.579333pt;}
.ls1d{letter-spacing:4.590797pt;}
.ls2a{letter-spacing:4.750730pt;}
.ls8c{letter-spacing:4.909602pt;}
.ls84{letter-spacing:4.973363pt;}
.ls2c{letter-spacing:5.014424pt;}
.ls1f{letter-spacing:5.037124pt;}
.ls65{letter-spacing:5.105323pt;}
.ls96{letter-spacing:5.311956pt;}
.ls81{letter-spacing:5.435823pt;}
.ls34{letter-spacing:5.970216pt;}
.ls32{letter-spacing:5.972958pt;}
.ls87{letter-spacing:6.348454pt;}
.ls25{letter-spacing:6.374642pt;}
.ls26{letter-spacing:6.375925pt;}
.ls18{letter-spacing:6.381503pt;}
.ls19{letter-spacing:6.655142pt;}
.ls55{letter-spacing:6.822434pt;}
.ls3e{letter-spacing:7.077478pt;}
.ls20{letter-spacing:7.123461pt;}
.lsf{letter-spacing:7.141239pt;}
.ls4e{letter-spacing:7.156586pt;}
.ls4{letter-spacing:7.268762pt;}
.ls62{letter-spacing:7.344325pt;}
.ls92{letter-spacing:7.528050pt;}
.ls90{letter-spacing:7.563189pt;}
.ls7e{letter-spacing:8.666191pt;}
.ls93{letter-spacing:8.780804pt;}
.ls95{letter-spacing:9.034622pt;}
.ls2b{letter-spacing:9.035139pt;}
.ls3{letter-spacing:9.895925pt;}
.ls7{letter-spacing:10.584337pt;}
.ls50{letter-spacing:10.622582pt;}
.ls44{letter-spacing:10.627903pt;}
.ls8a{letter-spacing:10.628970pt;}
.ls3a{letter-spacing:12.398691pt;}
.ls42{letter-spacing:13.281521pt;}
.ls58{letter-spacing:13.283608pt;}
.ls4c{letter-spacing:13.286479pt;}
.lsa{letter-spacing:14.154957pt;}
.ls21{letter-spacing:14.173503pt;}
.ls37{letter-spacing:15.621461pt;}
.ls53{letter-spacing:16.550522pt;}
.ls1c{letter-spacing:16.823925pt;}
.ls2e{letter-spacing:16.896683pt;}
.ls14{letter-spacing:17.709606pt;}
.ls46{letter-spacing:17.711572pt;}
.ls6{letter-spacing:17.725577pt;}
.ls40{letter-spacing:19.192081pt;}
.ls2d{letter-spacing:19.575925pt;}
.ls9{letter-spacing:19.601156pt;}
.ls97{letter-spacing:20.365258pt;}
.ls5a{letter-spacing:20.366275pt;}
.ls9c{letter-spacing:20.367975pt;}
.ls5{letter-spacing:20.370591pt;}
.ls71{letter-spacing:20.370731pt;}
.ls12{letter-spacing:20.407925pt;}
.ls82{letter-spacing:21.296196pt;}
.ls13{letter-spacing:21.423718pt;}
.ls7b{letter-spacing:21.469109pt;}
.ls6c{letter-spacing:21.763144pt;}
.ls6b{letter-spacing:21.766879pt;}
.ls75{letter-spacing:22.711925pt;}
.ls79{letter-spacing:22.735975pt;}
.ls5e{letter-spacing:23.197258pt;}
.ls39{letter-spacing:24.866816pt;}
.ls73{letter-spacing:25.275189pt;}
.ls74{letter-spacing:25.489156pt;}
.ls5b{letter-spacing:25.930238pt;}
.ls7a{letter-spacing:26.014383pt;}
.ls0{letter-spacing:26.033156pt;}
.ls30{letter-spacing:27.927347pt;}
.ls60{letter-spacing:28.334351pt;}
.ls9d{letter-spacing:28.555823pt;}
.ls6d{letter-spacing:28.883763pt;}
.ls7d{letter-spacing:28.916388pt;}
.ls68{letter-spacing:29.216853pt;}
.ls6a{letter-spacing:29.219980pt;}
.ls69{letter-spacing:29.220654pt;}
.ls76{letter-spacing:29.277258pt;}
.ls24{letter-spacing:34.494737pt;}
.ls6f{letter-spacing:36.877534pt;}
.lse{letter-spacing:38.958012pt;}
.ls10{letter-spacing:38.958351pt;}
.ls67{letter-spacing:39.577571pt;}
.ls98{letter-spacing:41.578238pt;}
.ls1a{letter-spacing:43.923915pt;}
.ls3b{letter-spacing:48.258591pt;}
.ls63{letter-spacing:51.839572pt;}
.ls28{letter-spacing:52.354591pt;}
.ls88{letter-spacing:61.952908pt;}
.ls4f{letter-spacing:86.332484pt;}
.ls85{letter-spacing:90.285670pt;}
.ls11{letter-spacing:96.279211pt;}
.ls61{letter-spacing:103.484211pt;}
.ls8b{letter-spacing:124.397841pt;}
.ls57{letter-spacing:187.840102pt;}
.ls99{letter-spacing:215.129839pt;}
.ls9a{letter-spacing:222.152941pt;}
.ls5f{letter-spacing:242.037009pt;}
.ws3b{word-spacing:-63.761067pt;}
.ws47{word-spacing:-50.479636pt;}
.ws64{word-spacing:-42.783676pt;}
.ws65{word-spacing:-40.743322pt;}
.ws2e{word-spacing:-40.590295pt;}
.wsc{word-spacing:-37.899668pt;}
.ws88{word-spacing:-31.497967pt;}
.ws31{word-spacing:-30.005958pt;}
.ws1d{word-spacing:-29.942197pt;}
.ws2f{word-spacing:-29.521250pt;}
.ws5{word-spacing:-28.183296pt;}
.ws5a{word-spacing:-23.069131pt;}
.ws82{word-spacing:-18.583288pt;}
.ws43{word-spacing:-17.343010pt;}
.ws74{word-spacing:-16.162923pt;}
.ws3d{word-spacing:-12.543875pt;}
.ws85{word-spacing:-9.917363pt;}
.ws5b{word-spacing:-8.883667pt;}
.ws33{word-spacing:-6.758673pt;}
.ws5c{word-spacing:-6.702782pt;}
.ws58{word-spacing:-3.188053pt;}
.ws6e{word-spacing:-2.898814pt;}
.wsaf{word-spacing:-2.805487pt;}
.ws26{word-spacing:-2.359159pt;}
.wsad{word-spacing:-1.976593pt;}
.ws8e{word-spacing:-1.785310pt;}
.ws77{word-spacing:-1.675638pt;}
.ws87{word-spacing:-1.020177pt;}
.ws71{word-spacing:-0.828894pt;}
.ws90{word-spacing:-0.765133pt;}
.ws59{word-spacing:-0.510089pt;}
.ws19{word-spacing:-0.446327pt;}
.ws84{word-spacing:-0.082697pt;}
.ws2c{word-spacing:-0.063761pt;}
.ws48{word-spacing:-0.042507pt;}
.ws89{word-spacing:-0.031881pt;}
.ws28{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.127522pt;}
.ws76{word-spacing:0.186182pt;}
.wsae{word-spacing:0.191283pt;}
.ws41{word-spacing:0.318805pt;}
.ws46{word-spacing:0.345061pt;}
.ws32{word-spacing:0.376194pt;}
.ws51{word-spacing:0.382566pt;}
.ws2b{word-spacing:0.446327pt;}
.ws91{word-spacing:0.510089pt;}
.ws9b{word-spacing:0.573850pt;}
.ws93{word-spacing:0.765133pt;}
.ws8a{word-spacing:1.083938pt;}
.ws2d{word-spacing:1.147699pt;}
.ws1e{word-spacing:1.211460pt;}
.wsa0{word-spacing:1.338982pt;}
.ws7f{word-spacing:1.466505pt;}
.wse{word-spacing:1.640729pt;}
.wsac{word-spacing:1.785310pt;}
.ws83{word-spacing:1.849071pt;}
.wsaa{word-spacing:2.040354pt;}
.ws17{word-spacing:2.167876pt;}
.ws7b{word-spacing:2.280729pt;}
.ws6f{word-spacing:2.359159pt;}
.ws27{word-spacing:2.677965pt;}
.ws40{word-spacing:2.741726pt;}
.wsbb{word-spacing:2.746184pt;}
.wsf{word-spacing:2.932989pt;}
.wsa3{word-spacing:2.996770pt;}
.ws95{word-spacing:3.060531pt;}
.ws18{word-spacing:3.124292pt;}
.ws72{word-spacing:3.153457pt;}
.ws5e{word-spacing:3.188053pt;}
.ws3{word-spacing:3.211639pt;}
.ws38{word-spacing:3.251814pt;}
.ws4{word-spacing:3.269821pt;}
.ws99{word-spacing:3.315575pt;}
.ws9{word-spacing:3.328003pt;}
.ws8c{word-spacing:3.379337pt;}
.ws8{word-spacing:3.386185pt;}
.ws14{word-spacing:3.443098pt;}
.wsd{word-spacing:3.444367pt;}
.wsa{word-spacing:3.502548pt;}
.ws94{word-spacing:3.506859pt;}
.ws7a{word-spacing:3.560730pt;}
.ws52{word-spacing:3.570620pt;}
.wsbd{word-spacing:3.618912pt;}
.ws9a{word-spacing:3.634381pt;}
.ws1a{word-spacing:3.698142pt;}
.ws39{word-spacing:3.700367pt;}
.ws29{word-spacing:3.758549pt;}
.ws8d{word-spacing:3.761903pt;}
.ws4b{word-spacing:3.825664pt;}
.ws62{word-spacing:3.889425pt;}
.ws2a{word-spacing:3.933094pt;}
.ws25{word-spacing:3.953186pt;}
.ws92{word-spacing:4.208230pt;}
.ws6{word-spacing:4.258913pt;}
.ws5f{word-spacing:4.335753pt;}
.ws6a{word-spacing:4.399514pt;}
.ws1c{word-spacing:4.463275pt;}
.ws0{word-spacing:4.782067pt;}
.ws63{word-spacing:4.909602pt;}
.ws98{word-spacing:5.164646pt;}
.ws96{word-spacing:5.228407pt;}
.ws97{word-spacing:5.292169pt;}
.ws7{word-spacing:5.306186pt;}
.wsb{word-spacing:5.480732pt;}
.wsa4{word-spacing:5.483452pt;}
.wsb3{word-spacing:5.597096pt;}
.ws9f{word-spacing:5.674735pt;}
.ws8b{word-spacing:5.929779pt;}
.wsab{word-spacing:5.993540pt;}
.ws66{word-spacing:6.057301pt;}
.ws81{word-spacing:6.184823pt;}
.ws12{word-spacing:6.439868pt;}
.ws5d{word-spacing:6.503629pt;}
.ws3c{word-spacing:6.567390pt;}
.wsb9{word-spacing:6.702551pt;}
.ws3f{word-spacing:6.758673pt;}
.ws16{word-spacing:6.822434pt;}
.ws36{word-spacing:7.013717pt;}
.ws7d{word-spacing:7.332523pt;}
.ws9d{word-spacing:7.396284pt;}
.wsa2{word-spacing:7.460045pt;}
.wsa1{word-spacing:7.715089pt;}
.ws4e{word-spacing:7.821408pt;}
.ws3e{word-spacing:8.033894pt;}
.wsb8{word-spacing:8.157098pt;}
.ws61{word-spacing:8.161417pt;}
.ws30{word-spacing:8.225178pt;}
.ws9e{word-spacing:8.480222pt;}
.ws69{word-spacing:8.799027pt;}
.ws4d{word-spacing:9.054071pt;}
.wsa8{word-spacing:9.117833pt;}
.ws80{word-spacing:9.436638pt;}
.ws9c{word-spacing:9.500399pt;}
.ws55{word-spacing:9.564160pt;}
.ws34{word-spacing:9.627921pt;}
.ws35{word-spacing:9.691682pt;}
.ws6d{word-spacing:9.819204pt;}
.ws49{word-spacing:10.099753pt;}
.ws24{word-spacing:10.456815pt;}
.ws8f{word-spacing:10.839381pt;}
.ws3a{word-spacing:10.903142pt;}
.ws4a{word-spacing:10.920075pt;}
.ws7c{word-spacing:11.182555pt;}
.ws45{word-spacing:11.795797pt;}
.wsb1{word-spacing:11.938919pt;}
.ws7e{word-spacing:12.369647pt;}
.ws67{word-spacing:12.560930pt;}
.ws86{word-spacing:13.134780pt;}
.wsb7{word-spacing:13.218920pt;}
.ws1f{word-spacing:13.389824pt;}
.ws22{word-spacing:13.899913pt;}
.ws23{word-spacing:13.963674pt;}
.ws60{word-spacing:14.154957pt;}
.ws50{word-spacing:14.218718pt;}
.ws53{word-spacing:14.601284pt;}
.wsa9{word-spacing:14.665045pt;}
.ws20{word-spacing:15.238895pt;}
.ws15{word-spacing:15.366417pt;}
.wsb6{word-spacing:15.604377pt;}
.ws13{word-spacing:15.876506pt;}
.ws1{word-spacing:16.514116pt;}
.ws6c{word-spacing:17.247975pt;}
.ws6b{word-spacing:17.253308pt;}
.ws11{word-spacing:17.980621pt;}
.wsb0{word-spacing:17.989833pt;}
.ws21{word-spacing:18.299426pt;}
.wsba{word-spacing:18.338924pt;}
.wsa7{word-spacing:18.378641pt;}
.ws4f{word-spacing:19.064559pt;}
.ws54{word-spacing:20.403541pt;}
.ws78{word-spacing:21.131654pt;}
.ws79{word-spacing:21.248018pt;}
.ws37{word-spacing:21.615002pt;}
.wsa5{word-spacing:22.635179pt;}
.wsb2{word-spacing:23.226201pt;}
.ws68{word-spacing:24.292966pt;}
.wsbe{word-spacing:24.913475pt;}
.ws75{word-spacing:25.495294pt;}
.wsa6{word-spacing:31.047853pt;}
.ws2{word-spacing:31.301844pt;}
.ws70{word-spacing:33.857126pt;}
.wsb5{word-spacing:36.433485pt;}
.wsbc{word-spacing:37.829850pt;}
.ws42{word-spacing:39.404339pt;}
.wsb4{word-spacing:40.448034pt;}
.ws1b{word-spacing:42.974959pt;}
.ws10{word-spacing:48.325858pt;}
.ws44{word-spacing:61.911996pt;}
.ws56{word-spacing:83.718281pt;}
.ws57{word-spacing:137.277577pt;}
.ws73{word-spacing:151.808127pt;}
._13{margin-left:-34.430976pt;}
._23{margin-left:-25.716385pt;}
._28{margin-left:-17.757457pt;}
._27{margin-left:-14.096089pt;}
._26{margin-left:-6.995489pt;}
._8{margin-left:-4.945459pt;}
._1{margin-left:-3.446282pt;}
._0{margin-left:-2.371905pt;}
._4{margin-left:-1.454547pt;}
._3{width:1.629092pt;}
._d{width:2.528123pt;}
._f{width:3.506859pt;}
._11{width:5.414985pt;}
._12{width:13.337141pt;}
._15{width:14.412972pt;}
._e{width:16.259072pt;}
._c{width:17.789338pt;}
._1a{width:19.587393pt;}
._17{width:22.252612pt;}
._9{width:23.938970pt;}
._7{width:24.830106pt;}
._2{width:25.832749pt;}
._b{width:27.940093pt;}
._5{width:29.556388pt;}
._6{width:33.848295pt;}
._19{width:34.877303pt;}
._29{width:35.833719pt;}
._2b{width:37.876395pt;}
._2a{width:40.261929pt;}
._2c{width:44.379213pt;}
._16{width:45.270357pt;}
._14{width:53.431774pt;}
._25{width:55.739918pt;}
._1b{width:59.042748pt;}
._18{width:60.764297pt;}
._2d{width:62.661870pt;}
._a{width:66.515538pt;}
._10{width:68.305511pt;}
._24{width:348.204921pt;}
._1f{width:410.007614pt;}
._1e{width:458.925013pt;}
._22{width:471.389484pt;}
._1d{width:480.640401pt;}
._1c{width:527.476803pt;}
._20{width:536.902266pt;}
._21{width:541.731361pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:127.889333pt;}
.y3d{bottom:142.501333pt;}
.y1c{bottom:155.785333pt;}
.y3c{bottom:170.397333pt;}
.y103{bottom:175.576000pt;}
.y1b{bottom:183.680000pt;}
.y39{bottom:192.796000pt;}
.y3a{bottom:198.292000pt;}
.y102{bottom:204.466667pt;}
.y3b{bottom:204.709333pt;}
.y38{bottom:205.300000pt;}
.yad{bottom:211.368000pt;}
.y1a{bottom:211.576000pt;}
.yac{bottom:215.309333pt;}
.y5b{bottom:217.246667pt;}
.y36{bottom:220.690667pt;}
.y37{bottom:222.246667pt;}
.y35{bottom:226.188000pt;}
.y78{bottom:226.401333pt;}
.y8c{bottom:227.080000pt;}
.y101{bottom:233.358667pt;}
.y19{bottom:239.470667pt;}
.y5a{bottom:246.138667pt;}
.ya4{bottom:254.082667pt;}
.y77{bottom:254.296000pt;}
.y8b{bottom:254.974667pt;}
.yab{bottom:260.221333pt;}
.y100{bottom:262.250667pt;}
.y18{bottom:267.366667pt;}
.y34{bottom:273.217333pt;}
.ya3{bottom:281.978667pt;}
.y76{bottom:282.192000pt;}
.y8a{bottom:282.870667pt;}
.yaa{bottom:288.476000pt;}
.yff{bottom:291.142667pt;}
.y17{bottom:295.261333pt;}
.y59{bottom:305.617333pt;}
.ya2{bottom:309.873333pt;}
.y75{bottom:310.086667pt;}
.y33{bottom:315.418667pt;}
.ya9{bottom:316.372000pt;}
.y16{bottom:323.157333pt;}
.y74{bottom:323.592000pt;}
.y31{bottom:326.352000pt;}
.y73{bottom:327.048000pt;}
.y89{bottom:330.556000pt;}
.y32{bottom:332.990667pt;}
.ya1{bottom:337.769333pt;}
.y72{bottom:337.982667pt;}
.yc5{bottom:338.609333pt;}
.y58{bottom:342.346667pt;}
.y15{bottom:351.053333pt;}
.y88{bottom:359.448000pt;}
.ya8{bottom:363.524000pt;}
.ya0{bottom:365.664000pt;}
.yc4{bottom:366.504000pt;}
.y30{bottom:368.228000pt;}
.y57{bottom:370.413333pt;}
.y14{bottom:378.948000pt;}
.yf1{bottom:380.640000pt;}
.y71{bottom:382.458667pt;}
.ya7{bottom:392.414667pt;}
.ydc{bottom:393.560000pt;}
.y56{bottom:394.162667pt;}
.yc3{bottom:395.238667pt;}
.y2f{bottom:396.124000pt;}
.y55{bottom:398.309333pt;}
.yef{bottom:404.594667pt;}
.y13{bottom:406.844000pt;}
.yee{bottom:408.534667pt;}
.y9f{bottom:413.722667pt;}
.yf0{bottom:414.320000pt;}
.ydb{bottom:421.456000pt;}
.yc2{bottom:423.134667pt;}
.y87{bottom:424.077333pt;}
.y70{bottom:429.465333pt;}
.y52{bottom:432.218667pt;}
.y53{bottom:432.454667pt;}
.yec{bottom:436.430667pt;}
.yed{bottom:442.214667pt;}
.y9e{bottom:442.614667pt;}
.y2e{bottom:442.916000pt;}
.y54{bottom:443.921333pt;}
.yda{bottom:449.350667pt;}
.y51{bottom:450.904000pt;}
.yc1{bottom:451.030667pt;}
.y86{bottom:451.973333pt;}
.ya6{bottom:453.756000pt;}
.y12{bottom:453.885333pt;}
.y6f{bottom:458.357333pt;}
.yfe{bottom:464.326667pt;}
.yd9{bottom:477.246667pt;}
.yc0{bottom:478.925333pt;}
.y85{bottom:479.868000pt;}
.yeb{bottom:479.924000pt;}
.ya5{bottom:481.652000pt;}
.yfd{bottom:492.221333pt;}
.y50{bottom:494.910667pt;}
.y2d{bottom:501.558667pt;}
.y6d{bottom:504.412000pt;}
.yd8{bottom:505.141333pt;}
.ybf{bottom:506.821333pt;}
.y6c{bottom:507.868000pt;}
.y11{bottom:508.274667pt;}
.y9d{bottom:509.548000pt;}
.y6e{bottom:518.802667pt;}
.yfc{bottom:520.117333pt;}
.y4e{bottom:522.805333pt;}
.yea{bottom:523.417333pt;}
.y84{bottom:527.553333pt;}
.y2c{bottom:529.454667pt;}
.y6b{bottom:529.585333pt;}
.yd7{bottom:533.037333pt;}
.ybe{bottom:534.716000pt;}
.y4f{bottom:534.761333pt;}
.yfb{bottom:548.012000pt;}
.y4d{bottom:550.701333pt;}
.y10{bottom:550.969333pt;}
.ye9{bottom:551.312000pt;}
.y83{bottom:556.445333pt;}
.y2b{bottom:557.349333pt;}
.yd6{bottom:560.932000pt;}
.ybd{bottom:562.612000pt;}
.y6a{bottom:563.278667pt;}
.y9c{bottom:565.238667pt;}
.yfa{bottom:575.908000pt;}
.y4c{bottom:578.597333pt;}
.ye8{bottom:579.208000pt;}
.yf{bottom:579.861333pt;}
.y2a{bottom:585.245333pt;}
.y69{bottom:588.782667pt;}
.yd5{bottom:588.828000pt;}
.y68{bottom:591.173333pt;}
.ybc{bottom:591.346667pt;}
.y9b{bottom:594.130667pt;}
.yf9{bottom:603.802667pt;}
.y4b{bottom:606.492000pt;}
.ye7{bottom:607.102667pt;}
.ye{bottom:608.753333pt;}
.yd4{bottom:616.722667pt;}
.y82{bottom:621.074667pt;}
.y9a{bottom:623.021333pt;}
.y67{bottom:624.716000pt;}
.y29{bottom:625.792000pt;}
.yf8{bottom:631.698667pt;}
.y66{bottom:631.709333pt;}
.y4a{bottom:634.444000pt;}
.ye6{bottom:634.998667pt;}
.y65{bottom:635.650667pt;}
.yd{bottom:637.644000pt;}
.ybb{bottom:638.978667pt;}
.yd3{bottom:644.618667pt;}
.y80{bottom:648.970667pt;}
.y99{bottom:651.913333pt;}
.y81{bottom:654.754667pt;}
.yf7{bottom:659.593333pt;}
.ye5{bottom:662.893333pt;}
.y49{bottom:665.749333pt;}
.y28{bottom:666.338667pt;}
.yc{bottom:666.536000pt;}
.yba{bottom:667.870667pt;}
.yd2{bottom:672.513333pt;}
.y7f{bottom:676.865333pt;}
.y98{bottom:680.805333pt;}
.y48{bottom:683.529333pt;}
.yf6{bottom:687.489333pt;}
.ye4{bottom:690.789333pt;}
.y64{bottom:693.580000pt;}
.y27{bottom:694.234667pt;}
.yb{bottom:695.428000pt;}
.yd1{bottom:700.409333pt;}
.y7e{bottom:704.761333pt;}
.y63{bottom:709.521333pt;}
.y97{bottom:709.697333pt;}
.ye3{bottom:718.684000pt;}
.ya{bottom:724.320000pt;}
.y47{bottom:727.536000pt;}
.yd0{bottom:728.304000pt;}
.y26{bottom:730.841333pt;}
.yb9{bottom:732.177333pt;}
.y7d{bottom:732.656000pt;}
.yf5{bottom:734.282667pt;}
.y25{bottom:734.781333pt;}
.y96{bottom:738.588000pt;}
.ye2{bottom:746.580000pt;}
.y45{bottom:749.896000pt;}
.y9{bottom:753.210667pt;}
.y46{bottom:755.430667pt;}
.ycf{bottom:756.200000pt;}
.y62{bottom:756.526667pt;}
.yb8{bottom:760.072000pt;}
.y7c{bottom:760.552000pt;}
.yf4{bottom:762.177333pt;}
.y95{bottom:767.480000pt;}
.y44{bottom:768.272000pt;}
.ye1{bottom:774.476000pt;}
.y24{bottom:775.329333pt;}
.y8{bottom:782.102667pt;}
.y43{bottom:783.326667pt;}
.yce{bottom:784.096000pt;}
.y61{bottom:785.418667pt;}
.yb4{bottom:787.968000pt;}
.yf3{bottom:790.073333pt;}
.yb7{bottom:790.790667pt;}
.yb5{bottom:791.654667pt;}
.y94{bottom:796.372000pt;}
.yb6{bottom:799.910667pt;}
.ye0{bottom:802.370667pt;}
.y23{bottom:803.224000pt;}
.y7b{bottom:808.237333pt;}
.y7{bottom:810.994667pt;}
.ycd{bottom:811.990667pt;}
.yf2{bottom:817.968000pt;}
.y93{bottom:825.264000pt;}
.y42{bottom:830.176000pt;}
.ydf{bottom:830.266667pt;}
.yb3{bottom:834.322667pt;}
.y6{bottom:839.886667pt;}
.y60{bottom:845.864000pt;}
.y22{bottom:850.017333pt;}
.y92{bottom:854.154667pt;}
.yde{bottom:858.161333pt;}
.y41{bottom:859.068000pt;}
.yb2{bottom:863.057333pt;}
.y107{bottom:868.777333pt;}
.ycc{bottom:872.289333pt;}
.y7a{bottom:872.866667pt;}
.y5f{bottom:873.758667pt;}
.y5{bottom:875.088000pt;}
.ycb{bottom:879.282667pt;}
.y91{bottom:883.046667pt;}
.yca{bottom:883.224000pt;}
.yb1{bottom:891.792000pt;}
.y106{bottom:897.669333pt;}
.y21{bottom:897.806667pt;}
.y79{bottom:900.762667pt;}
.y5e{bottom:901.654667pt;}
.y4{bottom:903.978667pt;}
.y40{bottom:909.453333pt;}
.y90{bottom:911.938667pt;}
.yc9{bottom:926.561333pt;}
.y20{bottom:926.698667pt;}
.yb0{bottom:927.212000pt;}
.y5d{bottom:929.549333pt;}
.y3{bottom:932.870667pt;}
.y3f{bottom:937.349333pt;}
.yaf{bottom:938.146667pt;}
.y8f{bottom:940.830667pt;}
.y105{bottom:955.453333pt;}
.y5c{bottom:957.445333pt;}
.yc8{bottom:958.964000pt;}
.ydd{bottom:963.229333pt;}
.yc7{bottom:965.957333pt;}
.y3e{bottom:969.229333pt;}
.yc6{bottom:969.898667pt;}
.y8e{bottom:970.253333pt;}
.y2{bottom:977.370667pt;}
.y104{bottom:984.344000pt;}
.yae{bottom:984.501333pt;}
.y1f{bottom:985.341333pt;}
.y8d{bottom:1003.134667pt;}
.y1{bottom:1013.236000pt;}
.y1e{bottom:1059.728000pt;}
.h18{height:2.550443pt;}
.h1c{height:7.197733pt;}
.h13{height:15.053733pt;}
.h16{height:21.551241pt;}
.hc{height:31.880400pt;}
.h6{height:39.738215pt;}
.h7{height:39.850400pt;}
.h4{height:40.378215pt;}
.h5{height:43.636400pt;}
.h3{height:47.820800pt;}
.h24{height:50.984400pt;}
.h2{height:53.559147pt;}
.h1b{height:55.016400pt;}
.h17{height:55.021733pt;}
.he{height:56.984400pt;}
.h12{height:58.205733pt;}
.h8{height:58.211067pt;}
.h19{height:63.121109pt;}
.h26{height:63.580800pt;}
.h10{height:63.586133pt;}
.h11{height:69.804800pt;}
.h9{height:73.971067pt;}
.h1a{height:75.751467pt;}
.hf{height:77.005733pt;}
.h14{height:77.160400pt;}
.h15{height:89.334443pt;}
.ha{height:89.339776pt;}
.h23{height:90.043776pt;}
.h20{height:90.956800pt;}
.hd{height:91.554133pt;}
.h1e{height:91.559467pt;}
.h22{height:101.944400pt;}
.h25{height:106.722133pt;}
.hb{height:111.585109pt;}
.h1d{height:113.917733pt;}
.h1f{height:145.576400pt;}
.h21{height:145.581733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:94.173333pt;}
.x13{left:95.438667pt;}
.x48{left:97.594667pt;}
.xb3{left:98.657333pt;}
.x47{left:100.836000pt;}
.xc2{left:104.298667pt;}
.x39{left:106.452000pt;}
.x2c{left:107.560000pt;}
.xc5{left:110.749333pt;}
.x1{left:112.845333pt;}
.xd4{left:113.893333pt;}
.x12{left:115.925333pt;}
.xe6{left:117.621333pt;}
.xe2{left:119.324000pt;}
.xd6{left:121.624000pt;}
.x2d{left:123.021333pt;}
.x27{left:129.766667pt;}
.x3d{left:132.576000pt;}
.x31{left:138.177333pt;}
.xb{left:141.164000pt;}
.x2e{left:142.648000pt;}
.x26{left:146.478667pt;}
.x7e{left:148.845333pt;}
.x75{left:151.401333pt;}
.x3e{left:152.877333pt;}
.x6{left:155.709333pt;}
.xba{left:159.208000pt;}
.xd7{left:160.112000pt;}
.xc4{left:161.141333pt;}
.x76{left:163.042667pt;}
.x11{left:165.672000pt;}
.xd8{left:168.072000pt;}
.x79{left:169.914667pt;}
.x3f{left:171.354667pt;}
.x49{left:172.688000pt;}
.x2f{left:174.692000pt;}
.xc3{left:180.686667pt;}
.x32{left:181.744000pt;}
.x77{left:183.925333pt;}
.x40{left:185.346667pt;}
.x30{left:187.089333pt;}
.x73{left:188.278667pt;}
.x33{left:196.166667pt;}
.x41{left:200.060000pt;}
.x34{left:202.358667pt;}
.x35{left:212.136000pt;}
.x78{left:215.410667pt;}
.x7a{left:217.004000pt;}
.x7f{left:218.030667pt;}
.x71{left:222.361333pt;}
.xbf{left:227.661333pt;}
.x4a{left:230.189333pt;}
.x3c{left:232.166667pt;}
.xe3{left:234.084000pt;}
.xd2{left:238.313333pt;}
.x3b{left:239.605333pt;}
.xe4{left:242.089333pt;}
.x3a{left:245.317333pt;}
.x4b{left:248.810667pt;}
.x28{left:254.814667pt;}
.x74{left:257.569333pt;}
.xd9{left:258.737333pt;}
.x80{left:262.102667pt;}
.x17{left:264.936000pt;}
.x4c{left:269.209333pt;}
.xd5{left:270.836000pt;}
.x18{left:272.740000pt;}
.xd3{left:278.297333pt;}
.x19{left:281.129333pt;}
.x29{left:284.694667pt;}
.x1a{left:288.933333pt;}
.x42{left:292.153333pt;}
.x70{left:297.370667pt;}
.x6e{left:298.874667pt;}
.x2a{left:301.020000pt;}
.x4d{left:303.145333pt;}
.x43{left:306.577333pt;}
.x44{left:312.768000pt;}
.x72{left:316.553333pt;}
.x6f{left:320.373333pt;}
.x5{left:322.268000pt;}
.x4{left:328.430667pt;}
.x4e{left:330.841333pt;}
.x15{left:332.690667pt;}
.x81{left:334.912000pt;}
.x7c{left:336.061333pt;}
.x38{left:339.321333pt;}
.x16{left:340.494667pt;}
.x3{left:341.993333pt;}
.x7d{left:344.021333pt;}
.xc1{left:345.686667pt;}
.x36{left:348.644000pt;}
.x2{left:352.864000pt;}
.xc0{left:355.026667pt;}
.x37{left:358.422667pt;}
.x2b{left:361.677333pt;}
.xc{left:369.810667pt;}
.x45{left:372.422667pt;}
.x7b{left:374.270667pt;}
.xd{left:377.816000pt;}
.xc6{left:378.965333pt;}
.x82{left:380.717333pt;}
.x83{left:388.677333pt;}
.x46{left:390.838667pt;}
.x84{left:393.013333pt;}
.xbb{left:411.649333pt;}
.x1b{left:413.476000pt;}
.x4f{left:417.953333pt;}
.xe0{left:419.364000pt;}
.x50{left:421.496000pt;}
.x9c{left:425.772000pt;}
.xdf{left:427.424000pt;}
.x5c{left:428.784000pt;}
.xab{left:431.670667pt;}
.x1c{left:433.401333pt;}
.xe5{left:435.097333pt;}
.x53{left:437.092000pt;}
.x60{left:441.622667pt;}
.xdb{left:443.372000pt;}
.x52{left:444.465333pt;}
.xbe{left:447.020000pt;}
.x95{left:451.748000pt;}
.x5e{left:453.025333pt;}
.x85{left:456.904000pt;}
.x61{left:459.226667pt;}
.x5f{left:460.829333pt;}
.xad{left:463.018667pt;}
.xdc{left:466.034667pt;}
.x8f{left:467.362667pt;}
.xdd{left:470.370667pt;}
.xde{left:472.341333pt;}
.x6d{left:475.017333pt;}
.x56{left:476.469333pt;}
.x6c{left:478.538667pt;}
.x90{left:479.658667pt;}
.x57{left:482.661333pt;}
.xb2{left:484.046667pt;}
.x9f{left:486.889333pt;}
.x1d{left:489.149333pt;}
.x62{left:490.294667pt;}
.x69{left:493.570667pt;}
.x96{left:494.734667pt;}
.x63{left:496.486667pt;}
.x1e{left:497.708000pt;}
.xbc{left:499.370667pt;}
.x97{left:502.694667pt;}
.x1f{left:503.881333pt;}
.x98{left:507.030667pt;}
.xc9{left:507.922667pt;}
.x5d{left:509.410667pt;}
.x58{left:511.237333pt;}
.x64{left:514.553333pt;}
.x59{left:520.121333pt;}
.xac{left:522.228000pt;}
.x6a{left:523.193333pt;}
.xcc{left:524.469333pt;}
.x20{left:525.378667pt;}
.x5a{left:528.969333pt;}
.x65{left:530.794667pt;}
.x9d{left:531.777333pt;}
.xbd{left:532.722667pt;}
.xb5{left:534.041333pt;}
.x9e{left:536.113333pt;}
.xcd{left:537.602667pt;}
.xce{left:540.730667pt;}
.x5b{left:545.962667pt;}
.xc7{left:548.046667pt;}
.xa0{left:549.752000pt;}
.x66{left:560.340000pt;}
.x86{left:563.150667pt;}
.xa1{left:565.672000pt;}
.x99{left:567.205333pt;}
.xa2{left:570.008000pt;}
.xc8{left:575.174667pt;}
.xa3{left:577.968000pt;}
.x89{left:579.592000pt;}
.xa4{left:584.277333pt;}
.x6b{left:586.432000pt;}
.x8a{left:587.552000pt;}
.xb6{left:589.874667pt;}
.x8b{left:591.886667pt;}
.xa5{left:595.633333pt;}
.xe{left:597.862667pt;}
.x24{left:601.005333pt;}
.xb7{left:603.148000pt;}
.x87{left:604.250667pt;}
.xb8{left:605.533333pt;}
.x21{left:608.737333pt;}
.x88{left:612.210667pt;}
.xca{left:614.226667pt;}
.x7{left:616.737333pt;}
.xb9{left:618.413333pt;}
.x9a{left:621.888000pt;}
.x8{left:624.741333pt;}
.x8c{left:625.988000pt;}
.xae{left:627.073333pt;}
.x9{left:630.285333pt;}
.x67{left:631.185333pt;}
.x92{left:633.990667pt;}
.x22{left:637.829333pt;}
.xf{left:639.154667pt;}
.xa6{left:640.830667pt;}
.x23{left:641.916000pt;}
.xd0{left:644.638667pt;}
.x10{left:646.573333pt;}
.xa7{left:648.792000pt;}
.xa{left:650.316000pt;}
.xa8{left:653.126667pt;}
.x54{left:655.678667pt;}
.xd1{left:656.622667pt;}
.xcb{left:659.816000pt;}
.x68{left:667.772000pt;}
.xa9{left:669.046667pt;}
.xaf{left:673.922667pt;}
.xaa{left:675.357333pt;}
.x55{left:678.892000pt;}
.x9b{left:680.294667pt;}
.x93{left:683.053333pt;}
.xe1{left:684.528000pt;}
.x8d{left:687.200000pt;}
.x91{left:689.416000pt;}
.x8e{left:691.536000pt;}
.x94{left:695.349333pt;}
.xb0{left:697.802667pt;}
.x51{left:699.550667pt;}
.xb1{left:702.138667pt;}
.xda{left:705.270667pt;}
.xb4{left:707.006667pt;}
.x25{left:709.865333pt;}
.xcf{left:715.416000pt;}
}




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