
    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_b3668bf355ee53c2e9166591.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_d04403d2d40bdbbd6b7f200f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_3d08f611c390fa92eb63fc69.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_911331fb134b8a4b07cde7b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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;}
.m4{transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249772,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249786,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7a{letter-spacing:-2.004480px;}
.ls5d{letter-spacing:-1.997568px;}
.ls4b{letter-spacing:-1.533600px;}
.ls7c{letter-spacing:-1.528200px;}
.ls7b{letter-spacing:-1.517400px;}
.ls5e{letter-spacing:-1.490400px;}
.lsd5{letter-spacing:-1.430784px;}
.ls4c{letter-spacing:-1.425600px;}
.ls70{letter-spacing:-1.416960px;}
.lsd6{letter-spacing:-1.403136px;}
.ls6b{letter-spacing:-1.371600px;}
.ls6c{letter-spacing:-1.279800px;}
.ls4e{letter-spacing:-1.274400px;}
.lsd4{letter-spacing:-1.264896px;}
.ls5f{letter-spacing:-1.204200px;}
.ls54{letter-spacing:-1.050624px;}
.ls2a{letter-spacing:-0.974448px;}
.ls27{letter-spacing:-0.969624px;}
.lsd1{letter-spacing:-0.960768px;}
.ls53{letter-spacing:-0.953856px;}
.lsb1{letter-spacing:-0.711936px;}
.ls6e{letter-spacing:-0.698112px;}
.ls59{letter-spacing:-0.691200px;}
.ls83{letter-spacing:-0.684288px;}
.ls9f{letter-spacing:-0.677376px;}
.ls3a{letter-spacing:-0.649728px;}
.lsc8{letter-spacing:-0.642816px;}
.lsd3{letter-spacing:-0.635904px;}
.ls80{letter-spacing:-0.622080px;}
.ls6d{letter-spacing:-0.608256px;}
.ls75{letter-spacing:-0.587520px;}
.ls60{letter-spacing:-0.567000px;}
.ls30{letter-spacing:-0.566784px;}
.ls7d{letter-spacing:-0.561600px;}
.ls3d{letter-spacing:-0.559872px;}
.lsd2{letter-spacing:-0.539136px;}
.lsb9{letter-spacing:-0.511488px;}
.ls2e{letter-spacing:-0.497664px;}
.ls4d{letter-spacing:-0.480600px;}
.ls33{letter-spacing:-0.470016px;}
.ls5a{letter-spacing:-0.428544px;}
.lsc0{letter-spacing:-0.421632px;}
.ls7f{letter-spacing:-0.414720px;}
.ls62{letter-spacing:-0.380160px;}
.lscf{letter-spacing:-0.373248px;}
.lsc9{letter-spacing:-0.338688px;}
.ls31{letter-spacing:-0.331776px;}
.ls63{letter-spacing:-0.324864px;}
.ls37{letter-spacing:-0.317952px;}
.ls96{letter-spacing:-0.311040px;}
.ls52{letter-spacing:-0.283392px;}
.lsbd{letter-spacing:-0.269568px;}
.ls29{letter-spacing:-0.265320px;}
.lsbf{letter-spacing:-0.255744px;}
.ls28{letter-spacing:-0.255672px;}
.ls94{letter-spacing:-0.248832px;}
.ls82{letter-spacing:-0.241920px;}
.ls8d{letter-spacing:-0.235008px;}
.lsc1{letter-spacing:-0.228096px;}
.ls77{letter-spacing:-0.221184px;}
.ls8f{letter-spacing:-0.214272px;}
.lsb0{letter-spacing:-0.207360px;}
.ls95{letter-spacing:-0.200448px;}
.lsa7{letter-spacing:-0.186624px;}
.lsa5{letter-spacing:-0.165888px;}
.lsb2{letter-spacing:-0.152064px;}
.ls8a{letter-spacing:-0.145152px;}
.ls32{letter-spacing:-0.138240px;}
.lsbe{letter-spacing:-0.131328px;}
.lsba{letter-spacing:-0.124416px;}
.ls73{letter-spacing:-0.110592px;}
.ls34{letter-spacing:-0.103680px;}
.lsbb{letter-spacing:-0.096768px;}
.ls92{letter-spacing:-0.089856px;}
.ls97{letter-spacing:-0.082944px;}
.ls66{letter-spacing:-0.062208px;}
.ls8c{letter-spacing:-0.055296px;}
.ls50{letter-spacing:-0.048384px;}
.ls90{letter-spacing:-0.041472px;}
.ls91{letter-spacing:-0.034560px;}
.ls44{letter-spacing:-0.029880px;}
.ls8b{letter-spacing:-0.027648px;}
.ls36{letter-spacing:-0.020736px;}
.lsb3{letter-spacing:-0.013824px;}
.ls41{letter-spacing:-0.011952px;}
.ls65{letter-spacing:-0.006912px;}
.ls26{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.006912px;}
.ls4{letter-spacing:0.007776px;}
.ls9{letter-spacing:0.013824px;}
.ls64{letter-spacing:0.020736px;}
.ls23{letter-spacing:0.021600px;}
.ls5b{letter-spacing:0.027648px;}
.ls8{letter-spacing:0.031104px;}
.lsd7{letter-spacing:0.032400px;}
.ls11{letter-spacing:0.034560px;}
.ls5{letter-spacing:0.038880px;}
.ls67{letter-spacing:0.041472px;}
.ls42{letter-spacing:0.047808px;}
.ls47{letter-spacing:0.048384px;}
.ls45{letter-spacing:0.055296px;}
.ls14{letter-spacing:0.062208px;}
.ls1c{letter-spacing:0.069120px;}
.ls12{letter-spacing:0.076032px;}
.ls7{letter-spacing:0.082368px;}
.ls17{letter-spacing:0.082944px;}
.ls1a{letter-spacing:0.089856px;}
.ls10{letter-spacing:0.096768px;}
.ls46{letter-spacing:0.103680px;}
.ls13{letter-spacing:0.110592px;}
.lsc{letter-spacing:0.117504px;}
.ls22{letter-spacing:0.124416px;}
.ls1b{letter-spacing:0.131328px;}
.ls19{letter-spacing:0.138240px;}
.lsb{letter-spacing:0.145152px;}
.ls1{letter-spacing:0.149544px;}
.ls21{letter-spacing:0.152064px;}
.ls2f{letter-spacing:0.158976px;}
.ls25{letter-spacing:0.161352px;}
.lsa{letter-spacing:0.165888px;}
.ls40{letter-spacing:0.167328px;}
.ls3c{letter-spacing:0.172800px;}
.ls1f{letter-spacing:0.179712px;}
.ls4a{letter-spacing:0.186624px;}
.ls20{letter-spacing:0.193536px;}
.ls16{letter-spacing:0.200448px;}
.ls2{letter-spacing:0.202608px;}
.ls48{letter-spacing:0.207360px;}
.ls15{letter-spacing:0.214272px;}
.ls0{letter-spacing:0.217080px;}
.lsf{letter-spacing:0.221184px;}
.ls3e{letter-spacing:0.228096px;}
.ls49{letter-spacing:0.235008px;}
.ls39{letter-spacing:0.241920px;}
.lse{letter-spacing:0.248832px;}
.ls18{letter-spacing:0.255744px;}
.ls76{letter-spacing:0.262656px;}
.ls38{letter-spacing:0.269568px;}
.ls43{letter-spacing:0.274896px;}
.ls1d{letter-spacing:0.276480px;}
.ls5c{letter-spacing:0.283392px;}
.lsae{letter-spacing:0.290304px;}
.ls55{letter-spacing:0.304128px;}
.ls93{letter-spacing:0.311040px;}
.ls3{letter-spacing:0.316728px;}
.ls8e{letter-spacing:0.317952px;}
.ls6{letter-spacing:0.348480px;}
.ls24{letter-spacing:0.394416px;}
.ls2c{letter-spacing:0.477576px;}
.ls2b{letter-spacing:0.559584px;}
.lsa1{letter-spacing:0.608256px;}
.lsa8{letter-spacing:0.615168px;}
.lsbc{letter-spacing:0.649728px;}
.ls56{letter-spacing:0.677376px;}
.ls57{letter-spacing:0.718848px;}
.ls4f{letter-spacing:0.732672px;}
.lsce{letter-spacing:0.746496px;}
.ls2d{letter-spacing:0.979272px;}
.ls81{letter-spacing:1.451520px;}
.lsa0{letter-spacing:2.170368px;}
.lsa2{letter-spacing:2.896128px;}
.ls71{letter-spacing:3.614976px;}
.ls78{letter-spacing:4.333824px;}
.ls6f{letter-spacing:5.052672px;}
.ls35{letter-spacing:5.771520px;}
.lscd{letter-spacing:5.778432px;}
.ls7e{letter-spacing:6.497280px;}
.lsa4{letter-spacing:7.216128px;}
.ls61{letter-spacing:7.223040px;}
.ls72{letter-spacing:7.934976px;}
.ls3f{letter-spacing:8.653824px;}
.ls51{letter-spacing:8.660736px;}
.ls58{letter-spacing:9.379584px;}
.ls74{letter-spacing:10.098432px;}
.lscb{letter-spacing:10.817280px;}
.lsc7{letter-spacing:12.261888px;}
.lsd0{letter-spacing:12.980736px;}
.lsa3{letter-spacing:13.699584px;}
.lsa6{letter-spacing:17.300736px;}
.lsaf{letter-spacing:17.604864px;}
.lsca{letter-spacing:18.026496px;}
.lsc4{letter-spacing:19.472190px;}
.lsc5{letter-spacing:19.689142px;}
.ls89{letter-spacing:25.250881px;}
.ls86{letter-spacing:27.406798px;}
.lsb5{letter-spacing:30.991427px;}
.ls88{letter-spacing:31.227552px;}
.ls79{letter-spacing:33.796169px;}
.ls1e{letter-spacing:33.883727px;}
.ls99{letter-spacing:33.897637px;}
.ls9b{letter-spacing:33.898237px;}
.ls6a{letter-spacing:34.149190px;}
.ls68{letter-spacing:34.155732px;}
.ls9c{letter-spacing:34.165892px;}
.lsb7{letter-spacing:34.459585px;}
.ls69{letter-spacing:34.604143px;}
.ls85{letter-spacing:34.605618px;}
.ls84{letter-spacing:34.618831px;}
.lsd{letter-spacing:34.626573px;}
.lsb8{letter-spacing:34.819819px;}
.ls9d{letter-spacing:34.819860px;}
.ls9a{letter-spacing:34.891203px;}
.lsc6{letter-spacing:49.738541px;}
.lsab{letter-spacing:64.596355px;}
.ls87{letter-spacing:64.884597px;}
.ls98{letter-spacing:68.996509px;}
.lsaa{letter-spacing:100.156456px;}
.lsc2{letter-spacing:130.933093px;}
.lsc3{letter-spacing:137.853716px;}
.lsb6{letter-spacing:160.684547px;}
.lsb4{letter-spacing:171.482893px;}
.lscc{letter-spacing:203.913607px;}
.lsad{letter-spacing:311.974358px;}
.lsa9{letter-spacing:317.043834px;}
.ls9e{letter-spacing:345.908963px;}
.lsac{letter-spacing:376.816573px;}
.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;}
}
.ws3{word-spacing:-19.478880px;}
.ws5{word-spacing:-19.471104px;}
.wsa7{word-spacing:-18.026496px;}
.wsa3{word-spacing:-17.584128px;}
.ws6c{word-spacing:-17.570304px;}
.ws1e{word-spacing:-17.563392px;}
.ws26{word-spacing:-17.556480px;}
.ws1d{word-spacing:-17.535744px;}
.wsa0{word-spacing:-17.528832px;}
.wsa9{word-spacing:-17.521920px;}
.ws11{word-spacing:-17.515008px;}
.ws17{word-spacing:-17.508096px;}
.ws23{word-spacing:-17.501184px;}
.ws6e{word-spacing:-17.487360px;}
.ws10{word-spacing:-17.459712px;}
.ws1b{word-spacing:-17.452800px;}
.ws6{word-spacing:-17.445888px;}
.ws21{word-spacing:-17.432064px;}
.ws27{word-spacing:-17.425152px;}
.ws18{word-spacing:-17.376768px;}
.ws2e{word-spacing:-17.369856px;}
.wsb{word-spacing:-17.362944px;}
.ws5a{word-spacing:-17.356032px;}
.ws57{word-spacing:-17.349120px;}
.ws54{word-spacing:-17.342208px;}
.ws20{word-spacing:-17.328384px;}
.ws83{word-spacing:-17.321472px;}
.ws9{word-spacing:-17.314560px;}
.ws16{word-spacing:-17.307648px;}
.ws50{word-spacing:-17.300736px;}
.ws6d{word-spacing:-17.266176px;}
.wsa{word-spacing:-17.176320px;}
.ws25{word-spacing:-17.169408px;}
.ws69{word-spacing:-17.072640px;}
.ws6b{word-spacing:-17.038080px;}
.ws84{word-spacing:-17.010432px;}
.ws12{word-spacing:-16.996608px;}
.ws68{word-spacing:-16.968960px;}
.ws1f{word-spacing:-16.955136px;}
.ws36{word-spacing:-16.948224px;}
.ws55{word-spacing:-16.865280px;}
.ws53{word-spacing:-16.809984px;}
.ws82{word-spacing:-16.768512px;}
.ws4b{word-spacing:-16.602624px;}
.ws31{word-spacing:-16.595712px;}
.ws48{word-spacing:-16.588800px;}
.ws2a{word-spacing:-16.581888px;}
.wsa8{word-spacing:-16.319232px;}
.ws4{word-spacing:-16.188480px;}
.ws24{word-spacing:-15.863040px;}
.wsc{word-spacing:-15.334416px;}
.wsaa{word-spacing:-13.532400px;}
.ws2d{word-spacing:-12.938400px;}
.ws15{word-spacing:-12.933000px;}
.ws1{word-spacing:-12.619584px;}
.ws2{word-spacing:-12.262608px;}
.wse{word-spacing:-12.225600px;}
.ws22{word-spacing:-12.220200px;}
.ws2c{word-spacing:-11.971800px;}
.ws14{word-spacing:-11.966400px;}
.ws0{word-spacing:-11.090376px;}
.ws90{word-spacing:-1.721088px;}
.ws8d{word-spacing:-1.223424px;}
.ws94{word-spacing:-1.029888px;}
.ws7b{word-spacing:-0.995328px;}
.ws66{word-spacing:-0.960768px;}
.ws76{word-spacing:-0.933120px;}
.ws80{word-spacing:-0.857088px;}
.ws64{word-spacing:-0.815616px;}
.ws92{word-spacing:-0.808704px;}
.ws8b{word-spacing:-0.794880px;}
.ws78{word-spacing:-0.781056px;}
.ws79{word-spacing:-0.739584px;}
.ws77{word-spacing:-0.497664px;}
.ws6f{word-spacing:-0.435456px;}
.ws7c{word-spacing:-0.373248px;}
.ws8a{word-spacing:-0.255744px;}
.ws7a{word-spacing:-0.235008px;}
.ws72{word-spacing:-0.228096px;}
.ws97{word-spacing:-0.207360px;}
.ws96{word-spacing:-0.200448px;}
.ws9a{word-spacing:-0.193536px;}
.ws62{word-spacing:-0.186624px;}
.ws8c{word-spacing:-0.179712px;}
.ws81{word-spacing:-0.165888px;}
.ws87{word-spacing:-0.158976px;}
.ws8f{word-spacing:-0.145152px;}
.wsab{word-spacing:-0.138240px;}
.ws89{word-spacing:-0.131328px;}
.ws91{word-spacing:-0.124416px;}
.ws73{word-spacing:-0.117504px;}
.ws7d{word-spacing:-0.110592px;}
.ws95{word-spacing:-0.103680px;}
.ws7f{word-spacing:-0.089856px;}
.ws71{word-spacing:-0.082944px;}
.ws63{word-spacing:-0.076032px;}
.ws5f{word-spacing:-0.062208px;}
.ws61{word-spacing:-0.055296px;}
.ws70{word-spacing:-0.048384px;}
.ws65{word-spacing:-0.041472px;}
.ws99{word-spacing:-0.034560px;}
.ws74{word-spacing:-0.027648px;}
.ws88{word-spacing:-0.020736px;}
.ws75{word-spacing:-0.013824px;}
.ws60{word-spacing:-0.006912px;}
.wsd{word-spacing:0.000000px;}
.ws7e{word-spacing:0.013824px;}
.ws98{word-spacing:0.041472px;}
.ws8e{word-spacing:0.138240px;}
.ws67{word-spacing:0.262656px;}
.ws93{word-spacing:0.635904px;}
.wsa6{word-spacing:1.437696px;}
.wsa4{word-spacing:1.577377px;}
.ws5c{word-spacing:6.967296px;}
.ws5b{word-spacing:7.084800px;}
.ws46{word-spacing:7.970881px;}
.ws3a{word-spacing:8.420629px;}
.ws3d{word-spacing:9.818446px;}
.ws44{word-spacing:9.822128px;}
.ws33{word-spacing:9.847093px;}
.ws3b{word-spacing:12.220156px;}
.ws4a{word-spacing:12.525344px;}
.ws9f{word-spacing:13.429543px;}
.ws5e{word-spacing:13.678848px;}
.ws5d{word-spacing:13.734144px;}
.ws4f{word-spacing:13.891385px;}
.ws9c{word-spacing:14.152039px;}
.ws4e{word-spacing:14.609350px;}
.ws45{word-spacing:15.554245px;}
.ws56{word-spacing:15.844706px;}
.ws4d{word-spacing:16.031224px;}
.ws51{word-spacing:16.254282px;}
.ws9d{word-spacing:16.374662px;}
.wsf{word-spacing:16.378766px;}
.ws58{word-spacing:16.481074px;}
.ws8{word-spacing:16.744453px;}
.ws38{word-spacing:16.763055px;}
.ws29{word-spacing:16.834721px;}
.ws2f{word-spacing:16.836859px;}
.ws2b{word-spacing:16.964301px;}
.ws32{word-spacing:16.984475px;}
.ws43{word-spacing:17.075705px;}
.ws86{word-spacing:17.078877px;}
.ws4c{word-spacing:17.096942px;}
.ws30{word-spacing:17.191321px;}
.ws3c{word-spacing:17.202127px;}
.ws34{word-spacing:17.235281px;}
.ws1a{word-spacing:17.334740px;}
.ws3f{word-spacing:17.497098px;}
.ws52{word-spacing:17.503589px;}
.ws13{word-spacing:17.514924px;}
.ws19{word-spacing:17.517950px;}
.wsa1{word-spacing:17.596252px;}
.ws1c{word-spacing:17.681610px;}
.ws3e{word-spacing:17.747855px;}
.ws28{word-spacing:17.812243px;}
.ws59{word-spacing:17.818876px;}
.ws9e{word-spacing:17.967055px;}
.ws35{word-spacing:18.000846px;}
.ws7{word-spacing:18.009697px;}
.ws39{word-spacing:18.526713px;}
.ws42{word-spacing:18.609741px;}
.ws37{word-spacing:18.929336px;}
.ws49{word-spacing:39.548747px;}
.ws47{word-spacing:40.809088px;}
.ws85{word-spacing:47.294065px;}
.ws6a{word-spacing:49.746137px;}
.wsa5{word-spacing:55.875484px;}
.wsa2{word-spacing:80.011564px;}
.ws41{word-spacing:88.115125px;}
.ws40{word-spacing:88.551745px;}
.ws9b{word-spacing:161.858889px;}
._2d{margin-left:-18.485915px;}
._2c{margin-left:-17.271060px;}
._8f{margin-left:-15.026688px;}
._2b{margin-left:-13.658112px;}
._24{margin-left:-11.715327px;}
._12{margin-left:-10.579383px;}
._11{margin-left:-8.608707px;}
._13{margin-left:-7.507944px;}
._c{margin-left:-6.193152px;}
._23{margin-left:-5.011200px;}
._2{margin-left:-3.425040px;}
._14{margin-left:-2.359501px;}
._0{margin-left:-1.321776px;}
._1{width:1.770408px;}
._5{width:2.895192px;}
._e{width:4.763952px;}
._3{width:6.111792px;}
._4{width:7.782912px;}
._b{width:8.821296px;}
._7{width:9.989424px;}
._8{width:11.305441px;}
._9{width:12.401418px;}
._f{width:14.307840px;}
._2a{width:15.335036px;}
._27{width:16.383949px;}
._28{width:18.517248px;}
._18{width:20.046384px;}
._26{width:21.702096px;}
._8e{width:23.212044px;}
._16{width:24.268032px;}
._17{width:26.261197px;}
._d{width:29.043841px;}
._20{width:31.027751px;}
._10{width:32.847920px;}
._6{width:34.055907px;}
._a{width:35.278751px;}
._8d{width:36.287552px;}
._90{width:37.383295px;}
._92{width:39.623888px;}
._29{width:42.662026px;}
._15{width:45.024741px;}
._49{width:49.431157px;}
._5e{width:51.172526px;}
._93{width:53.302289px;}
._91{width:55.724795px;}
._94{width:57.644298px;}
._1f{width:61.299021px;}
._57{width:62.718858px;}
._2f{width:64.616942px;}
._1d{width:65.623488px;}
._51{width:67.026137px;}
._7d{width:68.919169px;}
._1b{width:78.968389px;}
._7e{width:84.306137px;}
._8a{width:86.467544px;}
._46{width:94.415018px;}
._33{width:96.109187px;}
._34{width:98.015652px;}
._78{width:99.462779px;}
._3b{width:100.887600px;}
._97{width:102.590344px;}
._22{width:105.246568px;}
._5c{width:107.012169px;}
._19{width:108.129546px;}
._7c{width:111.683961px;}
._44{width:112.684767px;}
._1a{width:113.924499px;}
._55{width:115.126870px;}
._37{width:124.648564px;}
._5d{width:126.093342px;}
._70{width:127.759622px;}
._64{width:129.652353px;}
._67{width:131.496860px;}
._45{width:133.328121px;}
._1c{width:137.110143px;}
._6b{width:139.831561px;}
._43{width:141.975478px;}
._5b{width:143.384599px;}
._7a{width:146.262198px;}
._77{width:147.988161px;}
._1e{width:149.211984px;}
._6a{width:153.735263px;}
._3c{width:157.108351px;}
._88{width:161.392048px;}
._3a{width:162.873255px;}
._59{width:164.982280px;}
._30{width:167.917547px;}
._25{width:169.886424px;}
._89{width:171.482893px;}
._21{width:176.629272px;}
._74{width:178.687583px;}
._5f{width:181.188638px;}
._62{width:182.958015px;}
._39{width:184.391581px;}
._61{width:186.612743px;}
._2e{width:188.555082px;}
._4c{width:195.215038px;}
._8c{width:196.682919px;}
._81{width:198.595845px;}
._35{width:199.624519px;}
._84{width:204.615270px;}
._75{width:206.785876px;}
._80{width:208.327355px;}
._8b{width:209.690067px;}
._40{width:211.154328px;}
._96{width:214.838371px;}
._6e{width:216.129659px;}
._5a{width:225.518072px;}
._54{width:226.598175px;}
._72{width:231.710357px;}
._6c{width:233.044019px;}
._31{width:235.655171px;}
._38{width:239.618542px;}
._73{width:242.088860px;}
._3f{width:243.581914px;}
._79{width:250.615736px;}
._52{width:251.918309px;}
._32{width:252.949883px;}
._68{width:258.299414px;}
._6d{width:259.723961px;}
._6f{width:264.401086px;}
._4e{width:266.365740px;}
._76{width:269.466684px;}
._3e{width:271.409024px;}
._36{width:273.127048px;}
._58{width:274.505620px;}
._3d{width:280.080236px;}
._71{width:281.714658px;}
._7f{width:284.596534px;}
._66{width:287.628529px;}
._4a{width:290.141219px;}
._86{width:291.347572px;}
._87{width:295.343422px;}
._47{width:300.907732px;}
._69{width:302.561432px;}
._7b{width:310.533420px;}
._4f{width:312.989291px;}
._42{width:315.643216px;}
._41{width:318.718630px;}
._82{width:329.510723px;}
._65{width:332.894753px;}
._95{width:334.517418px;}
._83{width:335.749837px;}
._4b{width:336.898990px;}
._85{width:346.750357px;}
._99{width:367.462065px;}
._98{width:374.862277px;}
._60{width:376.456339px;}
._48{width:382.349941px;}
._4d{width:438.776912px;}
._56{width:553.623277px;}
._53{width:632.403692px;}
._50{width:649.810713px;}
._63{width:754.702593px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs2{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y50{bottom:3.150450px;}
.y4{bottom:327.540450px;}
.y26{bottom:369.660672px;}
.y4e{bottom:373.079874px;}
.ye9{bottom:377.579874px;}
.yea{bottom:377.580600px;}
.y107{bottom:384.239586px;}
.y25{bottom:386.940276px;}
.ycd{bottom:391.800024px;}
.yce{bottom:391.800450px;}
.y8c{bottom:393.239586px;}
.y4d{bottom:393.240162px;}
.y6f{bottom:393.240450px;}
.ye8{bottom:397.740162px;}
.y24{bottom:404.040600px;}
.y106{bottom:404.579874px;}
.ya3{bottom:407.460162px;}
.ya4{bottom:407.460600px;}
.y23{bottom:410.880450px;}
.ycc{bottom:411.960600px;}
.y84{bottom:413.579586px;}
.y4c{bottom:413.579874px;}
.y6e{bottom:413.580450px;}
.ye6{bottom:418.079874px;}
.ye7{bottom:418.080450px;}
.y22{bottom:422.040600px;}
.y105{bottom:424.740450px;}
.ya2{bottom:427.800450px;}
.ycb{bottom:432.300450px;}
.y4b{bottom:433.739298px;}
.y83{bottom:433.740162px;}
.y6d{bottom:433.740450px;}
.ye5{bottom:438.240162px;}
.y104{bottom:445.079874px;}
.ya1{bottom:447.960600px;}
.yc9{bottom:452.460162px;}
.yca{bottom:452.460600px;}
.y6b{bottom:454.079010px;}
.y4a{bottom:454.079586px;}
.y82{bottom:454.079874px;}
.y6c{bottom:454.080450px;}
.y21{bottom:458.399586px;}
.ye4{bottom:458.580450px;}
.y13e{bottom:464.340600px;}
.y13d{bottom:464.340738px;}
.y103{bottom:465.240162px;}
.yc8{bottom:472.800450px;}
.y6a{bottom:474.239586px;}
.y49{bottom:474.240162px;}
.y81{bottom:474.240450px;}
.y20{bottom:478.560162px;}
.ye3{bottom:478.740450px;}
.y102{bottom:485.578722px;}
.yc7{bottom:492.960600px;}
.y48{bottom:494.578722px;}
.y69{bottom:494.579874px;}
.y9b{bottom:494.580450px;}
.y1f{bottom:498.899874px;}
.ye2{bottom:499.080450px;}
.y13c{bottom:503.941314px;}
.y101{bottom:505.739298px;}
.y47{bottom:514.739298px;}
.y67{bottom:514.739586px;}
.y8b{bottom:514.740162px;}
.y68{bottom:514.740450px;}
.y1e{bottom:519.059586px;}
.yc5{bottom:522.299874px;}
.yc6{bottom:522.300450px;}
.y13b{bottom:523.920450px;}
.y100{bottom:526.079586px;}
.y46{bottom:535.079586px;}
.y66{bottom:535.079874px;}
.y9a{bottom:535.080450px;}
.y1d{bottom:539.399874px;}
.ye0{bottom:539.579874px;}
.ye1{bottom:539.580450px;}
.yc3{bottom:542.460162px;}
.yc4{bottom:542.460450px;}
.y13a{bottom:543.721026px;}
.yff{bottom:546.240162px;}
.y45{bottom:555.240162px;}
.y65{bottom:555.240450px;}
.y1c{bottom:559.560162px;}
.ydf{bottom:559.740450px;}
.yc2{bottom:562.800450px;}
.y139{bottom:563.520450px;}
.y138{bottom:563.521602px;}
.yfe{bottom:566.580450px;}
.y11f{bottom:575.573826px;}
.y80{bottom:575.579010px;}
.y64{bottom:575.579586px;}
.y44{bottom:575.579874px;}
.y8a{bottom:575.580450px;}
.y1b{bottom:579.899874px;}
.yde{bottom:580.080450px;}
.yc1{bottom:582.960450px;}
.y137{bottom:583.321026px;}
.yfd{bottom:586.740450px;}
.y11e{bottom:595.734402px;}
.y7f{bottom:595.739586px;}
.y43{bottom:595.740162px;}
.y99{bottom:595.740450px;}
.y1a{bottom:600.060162px;}
.y136{bottom:603.120450px;}
.y135{bottom:603.123618px;}
.yc0{bottom:603.300450px;}
.ydc{bottom:609.240162px;}
.ydd{bottom:609.240450px;}
.y11d{bottom:616.074690px;}
.y42{bottom:616.077858px;}
.y63{bottom:616.079010px;}
.y7e{bottom:616.079874px;}
.y98{bottom:616.080450px;}
.y19{bottom:620.399586px;}
.y134{bottom:623.104482px;}
.ybf{bottom:623.460450px;}
.yfc{bottom:627.240450px;}
.yda{bottom:629.579874px;}
.ydb{bottom:629.580450px;}
.y11c{bottom:636.235266px;}
.y41{bottom:636.238434px;}
.y62{bottom:636.239586px;}
.y97{bottom:636.240450px;}
.y18{bottom:640.560162px;}
.y133{bottom:642.903906px;}
.ybd{bottom:649.740162px;}
.ybe{bottom:649.740450px;}
.y11b{bottom:656.575554px;}
.y40{bottom:656.578722px;}
.y61{bottom:656.579874px;}
.y17{bottom:660.900450px;}
.y132{bottom:662.703330px;}
.ybc{bottom:670.079874px;}
.yd9{bottom:670.080450px;}
.y11a{bottom:676.736130px;}
.y3f{bottom:676.739298px;}
.ya0{bottom:676.739586px;}
.y89{bottom:676.740162px;}
.y96{bottom:676.740450px;}
.y16{bottom:681.060450px;}
.y131{bottom:682.502754px;}
.yfb{bottom:688.079874px;}
.ybb{bottom:690.240450px;}
.y119{bottom:697.076418px;}
.y3e{bottom:697.079586px;}
.y88{bottom:697.079874px;}
.yd7{bottom:699.240162px;}
.yd8{bottom:699.240450px;}
.y130{bottom:702.302178px;}
.yfa{bottom:708.239586px;}
.yba{bottom:710.580450px;}
.y118{bottom:717.236994px;}
.y87{bottom:717.239586px;}
.y3d{bottom:717.240162px;}
.yd6{bottom:719.580450px;}
.y15{bottom:721.560162px;}
.y12f{bottom:722.283042px;}
.yf9{bottom:728.579874px;}
.y117{bottom:737.577282px;}
.y3c{bottom:737.579874px;}
.y7d{bottom:737.580450px;}
.yb8{bottom:739.740162px;}
.yb9{bottom:739.740450px;}
.y13{bottom:741.899010px;}
.y14{bottom:741.900450px;}
.y12e{bottom:742.082466px;}
.yf8{bottom:748.740162px;}
.y116{bottom:757.737858px;}
.y7b{bottom:757.739298px;}
.y3b{bottom:757.739586px;}
.y60{bottom:757.740162px;}
.y7c{bottom:757.740450px;}
.yb7{bottom:760.080450px;}
.y12d{bottom:761.881890px;}
.y12{bottom:762.059586px;}
.yd4{bottom:769.079874px;}
.yd5{bottom:769.080450px;}
.y115{bottom:778.078146px;}
.y5f{bottom:778.079586px;}
.y3a{bottom:778.079874px;}
.y95{bottom:778.080450px;}
.yb6{bottom:780.240450px;}
.y12c{bottom:781.681314px;}
.y11{bottom:782.399874px;}
.yd2{bottom:789.240162px;}
.yd3{bottom:789.240450px;}
.y114{bottom:798.238722px;}
.y39{bottom:798.239298px;}
.y5e{bottom:798.240162px;}
.y94{bottom:798.240450px;}
.yb4{bottom:800.579874px;}
.yb5{bottom:800.580450px;}
.y12b{bottom:801.480738px;}
.y10{bottom:802.559586px;}
.yf7{bottom:809.579874px;}
.yd1{bottom:809.580450px;}
.y5d{bottom:818.578722px;}
.y113{bottom:818.579010px;}
.y38{bottom:818.579586px;}
.y93{bottom:818.579874px;}
.y7a{bottom:818.580450px;}
.yb3{bottom:820.740450px;}
.y12a{bottom:821.461602px;}
.yf{bottom:822.899874px;}
.yf6{bottom:829.740162px;}
.yd0{bottom:829.740450px;}
.y5c{bottom:838.739298px;}
.y112{bottom:838.739586px;}
.y37{bottom:838.740162px;}
.y92{bottom:838.740450px;}
.yb1{bottom:841.079874px;}
.yb2{bottom:841.080450px;}
.y129{bottom:841.261026px;}
.yd{bottom:843.060162px;}
.ye{bottom:843.060450px;}
.yf4{bottom:850.079010px;}
.yf5{bottom:850.080450px;}
.y36{bottom:859.079010px;}
.y5b{bottom:859.079586px;}
.y111{bottom:859.079874px;}
.y91{bottom:859.080450px;}
.y128{bottom:861.060450px;}
.yb0{bottom:861.240450px;}
.yc{bottom:863.399874px;}
.y110{bottom:879.235842px;}
.y35{bottom:879.239586px;}
.y5a{bottom:879.240162px;}
.y90{bottom:879.240450px;}
.yae{bottom:881.579874px;}
.yaf{bottom:881.580450px;}
.yb{bottom:883.560162px;}
.yf3{bottom:890.579874px;}
.y10f{bottom:899.576130px;}
.y59{bottom:899.579010px;}
.y79{bottom:899.579586px;}
.y34{bottom:899.579874px;}
.y9f{bottom:899.580450px;}
.y127{bottom:900.300450px;}
.yad{bottom:901.740450px;}
.ya{bottom:903.899874px;}
.yf2{bottom:910.740450px;}
.y10e{bottom:919.736706px;}
.y58{bottom:919.739586px;}
.y33{bottom:919.740162px;}
.ycf{bottom:919.740450px;}
.yac{bottom:922.080450px;}
.y9{bottom:924.060450px;}
.yf1{bottom:931.079874px;}
.y10d{bottom:940.076994px;}
.y86{bottom:940.079586px;}
.y32{bottom:940.079874px;}
.y78{bottom:940.080450px;}
.y126{bottom:940.437858px;}
.y8{bottom:944.400450px;}
.yaa{bottom:948.180162px;}
.yab{bottom:948.180450px;}
.yf0{bottom:951.240450px;}
.y10c{bottom:960.237570px;}
.y57{bottom:960.239586px;}
.y31{bottom:960.240162px;}
.y77{bottom:960.240450px;}
.ya9{bottom:968.520450px;}
.yef{bottom:971.579586px;}
.y125{bottom:980.577570px;}
.y10b{bottom:980.577858px;}
.y30{bottom:980.579586px;}
.y56{bottom:980.579874px;}
.y9e{bottom:980.580450px;}
.ya8{bottom:988.680450px;}
.yee{bottom:991.740162px;}
.y124{bottom:1000.738146px;}
.y10a{bottom:1000.738434px;}
.y8f{bottom:1000.739298px;}
.y76{bottom:1000.739586px;}
.y2f{bottom:1000.740162px;}
.y9d{bottom:1000.740450px;}
.y7{bottom:1005.600450px;}
.yed{bottom:1012.080450px;}
.ya7{bottom:1014.960450px;}
.y55{bottom:1021.078146px;}
.y123{bottom:1021.078434px;}
.y109{bottom:1021.078722px;}
.y2e{bottom:1021.079010px;}
.y8e{bottom:1021.079586px;}
.y75{bottom:1021.079874px;}
.y9c{bottom:1021.080450px;}
.ya6{bottom:1035.300450px;}
.y54{bottom:1041.238722px;}
.y122{bottom:1041.239010px;}
.yec{bottom:1041.239298px;}
.y2d{bottom:1041.239586px;}
.y8d{bottom:1041.240162px;}
.y74{bottom:1041.240450px;}
.y5{bottom:1053.660450px;}
.ya5{bottom:1055.460450px;}
.y53{bottom:1061.579010px;}
.y121{bottom:1061.579298px;}
.yeb{bottom:1061.579586px;}
.y2c{bottom:1061.579874px;}
.y73{bottom:1061.580450px;}
.y6{bottom:1062.660450px;}
.y52{bottom:1081.739586px;}
.y120{bottom:1081.739874px;}
.y2b{bottom:1081.740162px;}
.y72{bottom:1081.740450px;}
.y2a{bottom:1102.079874px;}
.y108{bottom:1102.080162px;}
.y85{bottom:1102.080450px;}
.y29{bottom:1122.240162px;}
.y71{bottom:1122.240450px;}
.y51{bottom:1122.240738px;}
.y70{bottom:1142.580450px;}
.y28{bottom:1142.581026px;}
.y3{bottom:1165.260306px;}
.y2{bottom:1165.260450px;}
.y1{bottom:1186.140450px;}
.y4f{bottom:1191.090000px;}
.y27{bottom:1194.240450px;}
.h16{height:15.210000px;}
.he{height:34.114922px;}
.h6{height:34.995234px;}
.hf{height:40.909922px;}
.h2{height:42.327773px;}
.h7{height:43.374375px;}
.h8{height:47.317500px;}
.h10{height:47.381836px;}
.h1{height:52.435898px;}
.h15{height:52.971680px;}
.h4{height:53.232188px;}
.h3{height:60.648750px;}
.hb{height:60.649902px;}
.ha{height:60.651054px;}
.h19{height:60.651654px;}
.hc{height:60.652206px;}
.h12{height:60.653358px;}
.h11{height:60.654510px;}
.h14{height:60.655662px;}
.h18{height:60.656814px;}
.h17{height:60.657966px;}
.h13{height:60.659118px;}
.h1d{height:60.667182px;}
.h1e{height:60.675246px;}
.hd{height:63.175781px;}
.h9{height:67.803750px;}
.h1a{height:67.804902px;}
.h1b{height:67.805502px;}
.h1c{height:67.806054px;}
.h5{height:76.279219px;}
.h0{height:1263.000000px;}
.w2{width:4.140000px;}
.w5{width:5.130000px;}
.w4{width:7.920000px;}
.w6{width:9.540000px;}
.w3{width:9.720000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2b{left:267.840380px;}
.x1{left:272.160000px;}
.x33{left:277.199378px;}
.x7{left:280.620000px;}
.x2{left:282.960000px;}
.x62{left:285.120000px;}
.x24{left:289.080000px;}
.x3{left:290.340000px;}
.x5e{left:293.220000px;}
.xb7{left:295.560000px;}
.xbc{left:298.080000px;}
.xb8{left:299.880000px;}
.x34{left:301.140000px;}
.x9a{left:302.580000px;}
.xd9{left:305.280000px;}
.x25{left:306.360000px;}
.x6f{left:307.620000px;}
.x87{left:310.680000px;}
.x47{left:312.120000px;}
.x88{left:314.280000px;}
.xb1{left:316.620000px;}
.x35{left:317.700000px;}
.x5c{left:319.500000px;}
.x48{left:320.760000px;}
.xba{left:322.920000px;}
.x27{left:324.720000px;}
.xd3{left:326.160000px;}
.x58{left:327.780000px;}
.x28{left:329.400000px;}
.xcd{left:330.660000px;}
.x59{left:333.360000px;}
.xb5{left:334.980000px;}
.x36{left:336.060000px;}
.xc6{left:337.680000px;}
.x8{left:338.760000px;}
.x4f{left:341.100000px;}
.x4{left:344.520000px;}
.x2e{left:345.960000px;}
.x37{left:347.220000px;}
.x9{left:349.560000px;}
.xbe{left:350.640000px;}
.x66{left:351.720000px;}
.x5{left:353.880000px;}
.xdf{left:354.960000px;}
.x2d{left:357.120000px;}
.xd5{left:358.200000px;}
.x78{left:360.180000px;}
.xbb{left:364.140000px;}
.xb4{left:365.220000px;}
.xd0{left:367.740000px;}
.x26{left:370.620000px;}
.x70{left:373.320000px;}
.x7f{left:374.940000px;}
.x6b{left:376.560000px;}
.xc2{left:377.640000px;}
.x80{left:379.620000px;}
.x6c{left:383.220000px;}
.x2f{left:384.300000px;}
.xbd{left:385.650000px;}
.xa8{left:388.710000px;}
.xc1{left:390.330000px;}
.x9b{left:391.680000px;}
.x6{left:392.940000px;}
.x18{left:394.110000px;}
.x63{left:396.630000px;}
.x96{left:399.960000px;}
.x74{left:405.540000px;}
.x76{left:406.800000px;}
.x54{left:409.140000px;}
.xce{left:419.400000px;}
.x5d{left:421.740000px;}
.x7b{left:424.620000px;}
.xd2{left:428.040000px;}
.xc3{left:430.020000px;}
.x9f{left:431.640000px;}
.xa0{left:433.260000px;}
.x7c{left:435.060000px;}
.x71{left:437.040000px;}
.x19{left:438.840000px;}
.x8e{left:442.980000px;}
.xaa{left:444.600000px;}
.xc4{left:449.640000px;}
.x64{left:456.840000px;}
.xa{left:458.460000px;}
.x1a{left:459.540000px;}
.x1f{left:462.780000px;}
.xcf{left:465.840000px;}
.xb{left:467.820000px;}
.x50{left:469.440000px;}
.x92{left:471.960000px;}
.x90{left:473.940000px;}
.x20{left:475.740000px;}
.x1b{left:477.360000px;}
.xa6{left:483.660000px;}
.xc{left:484.920000px;}
.x29{left:489.960000px;}
.x1c{left:493.560000px;}
.x93{left:495.180000px;}
.x7e{left:497.160000px;}
.x1d{left:498.420000px;}
.x77{left:501.660000px;}
.x2a{left:503.460000px;}
.x81{left:505.080000px;}
.x21{left:509.940000px;}
.xab{left:512.280000px;}
.x8b{left:516.600000px;}
.x72{left:517.860000px;}
.x22{left:520.560000px;}
.xc9{left:522.720000px;}
.xb0{left:525.420000px;}
.xa7{left:526.680000px;}
.xa1{left:529.200000px;}
.x57{left:531.720000px;}
.xac{left:533.340000px;}
.x30{left:535.500000px;}
.x5f{left:536.940000px;}
.x97{left:538.740000px;}
.x23{left:543.420000px;}
.xde{left:544.500000px;}
.xbf{left:546.210000px;}
.xa2{left:548.280000px;}
.xda{left:549.810000px;}
.x67{left:552.240000px;}
.x38{left:554.310000px;}
.x68{left:557.100000px;}
.x99{left:560.340000px;}
.xe0{left:562.140000px;}
.x5a{left:563.400000px;}
.x98{left:567.540000px;}
.x39{left:570.240000px;}
.x6d{left:572.220000px;}
.x94{left:574.380000px;}
.xad{left:577.080000px;}
.xd{left:578.880000px;}
.x4e{left:581.580000px;}
.x49{left:584.640000px;}
.xe{left:587.160000px;}
.xd7{left:588.240000px;}
.xd6{left:592.020000px;}
.xb9{left:593.100000px;}
.xa4{left:596.880000px;}
.x2c{left:598.140000px;}
.xb2{left:600.840000px;}
.x91{left:602.820000px;}
.xae{left:607.860000px;}
.x83{left:610.380000px;}
.xcb{left:613.440000px;}
.x9c{left:617.400000px;}
.xf{left:618.660000px;}
.x3a{left:624.780000px;}
.xd1{left:626.400000px;}
.x10{left:629.460000px;}
.x89{left:631.620000px;}
.x51{left:632.880000px;}
.x3b{left:634.140000px;}
.x65{left:636.660000px;}
.x8c{left:639.000000px;}
.xca{left:642.600000px;}
.x3c{left:644.580000px;}
.x31{left:647.280000px;}
.xa3{left:648.900000px;}
.x32{left:651.600000px;}
.xdb{left:655.020000px;}
.x9d{left:656.820000px;}
.x8f{left:659.520000px;}
.xb3{left:663.120000px;}
.x8d{left:665.460000px;}
.xc5{left:666.720000px;}
.x69{left:668.880000px;}
.x1e{left:670.950000px;}
.x6e{left:672.300000px;}
.x82{left:673.380000px;}
.xcc{left:674.820000px;}
.x11{left:677.160000px;}
.x79{left:679.860000px;}
.x4c{left:682.560000px;}
.x52{left:684.000000px;}
.x4d{left:686.880000px;}
.x12{left:687.960000px;}
.x8a{left:689.220000px;}
.xdc{left:690.660000px;}
.x4a{left:693.000000px;}
.xc0{left:694.980000px;}
.x84{left:696.420000px;}
.x4b{left:697.500000px;}
.x14{left:700.739476px;}
.xaf{left:703.710000px;}
.xa5{left:705.870000px;}
.xd8{left:708.210000px;}
.x15{left:711.540000px;}
.x3d{left:712.980000px;}
.x73{left:714.060000px;}
.x53{left:715.860000px;}
.x3e{left:717.120000px;}
.xc7{left:719.100000px;}
.x60{left:721.800000px;}
.x6a{left:724.500000px;}
.x55{left:725.580000px;}
.x3f{left:726.660000px;}
.xa9{left:734.220000px;}
.x40{left:736.020000px;}
.x75{left:738.179850px;}
.x95{left:739.620000px;}
.x9e{left:741.600000px;}
.xb6{left:742.679850px;}
.x41{left:743.940000px;}
.x42{left:748.080000px;}
.x7d{left:751.860000px;}
.x85{left:755.819850px;}
.x7a{left:760.319850px;}
.x56{left:763.200000px;}
.x16{left:766.440000px;}
.x61{left:768.960000px;}
.xd4{left:772.920000px;}
.x43{left:774.360000px;}
.x44{left:778.499850px;}
.xdd{left:782.819850px;}
.x13{left:784.979850px;}
.xc8{left:786.240000px;}
.x45{left:787.860000px;}
.x86{left:789.120000px;}
.x46{left:792.900000px;}
.x17{left:794.879850px;}
.x5b{left:797.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7a{letter-spacing:-1.781760pt;}
.ls5d{letter-spacing:-1.775616pt;}
.ls4b{letter-spacing:-1.363200pt;}
.ls7c{letter-spacing:-1.358400pt;}
.ls7b{letter-spacing:-1.348800pt;}
.ls5e{letter-spacing:-1.324800pt;}
.lsd5{letter-spacing:-1.271808pt;}
.ls4c{letter-spacing:-1.267200pt;}
.ls70{letter-spacing:-1.259520pt;}
.lsd6{letter-spacing:-1.247232pt;}
.ls6b{letter-spacing:-1.219200pt;}
.ls6c{letter-spacing:-1.137600pt;}
.ls4e{letter-spacing:-1.132800pt;}
.lsd4{letter-spacing:-1.124352pt;}
.ls5f{letter-spacing:-1.070400pt;}
.ls54{letter-spacing:-0.933888pt;}
.ls2a{letter-spacing:-0.866176pt;}
.ls27{letter-spacing:-0.861888pt;}
.lsd1{letter-spacing:-0.854016pt;}
.ls53{letter-spacing:-0.847872pt;}
.lsb1{letter-spacing:-0.632832pt;}
.ls6e{letter-spacing:-0.620544pt;}
.ls59{letter-spacing:-0.614400pt;}
.ls83{letter-spacing:-0.608256pt;}
.ls9f{letter-spacing:-0.602112pt;}
.ls3a{letter-spacing:-0.577536pt;}
.lsc8{letter-spacing:-0.571392pt;}
.lsd3{letter-spacing:-0.565248pt;}
.ls80{letter-spacing:-0.552960pt;}
.ls6d{letter-spacing:-0.540672pt;}
.ls75{letter-spacing:-0.522240pt;}
.ls60{letter-spacing:-0.504000pt;}
.ls30{letter-spacing:-0.503808pt;}
.ls7d{letter-spacing:-0.499200pt;}
.ls3d{letter-spacing:-0.497664pt;}
.lsd2{letter-spacing:-0.479232pt;}
.lsb9{letter-spacing:-0.454656pt;}
.ls2e{letter-spacing:-0.442368pt;}
.ls4d{letter-spacing:-0.427200pt;}
.ls33{letter-spacing:-0.417792pt;}
.ls5a{letter-spacing:-0.380928pt;}
.lsc0{letter-spacing:-0.374784pt;}
.ls7f{letter-spacing:-0.368640pt;}
.ls62{letter-spacing:-0.337920pt;}
.lscf{letter-spacing:-0.331776pt;}
.lsc9{letter-spacing:-0.301056pt;}
.ls31{letter-spacing:-0.294912pt;}
.ls63{letter-spacing:-0.288768pt;}
.ls37{letter-spacing:-0.282624pt;}
.ls96{letter-spacing:-0.276480pt;}
.ls52{letter-spacing:-0.251904pt;}
.lsbd{letter-spacing:-0.239616pt;}
.ls29{letter-spacing:-0.235840pt;}
.lsbf{letter-spacing:-0.227328pt;}
.ls28{letter-spacing:-0.227264pt;}
.ls94{letter-spacing:-0.221184pt;}
.ls82{letter-spacing:-0.215040pt;}
.ls8d{letter-spacing:-0.208896pt;}
.lsc1{letter-spacing:-0.202752pt;}
.ls77{letter-spacing:-0.196608pt;}
.ls8f{letter-spacing:-0.190464pt;}
.lsb0{letter-spacing:-0.184320pt;}
.ls95{letter-spacing:-0.178176pt;}
.lsa7{letter-spacing:-0.165888pt;}
.lsa5{letter-spacing:-0.147456pt;}
.lsb2{letter-spacing:-0.135168pt;}
.ls8a{letter-spacing:-0.129024pt;}
.ls32{letter-spacing:-0.122880pt;}
.lsbe{letter-spacing:-0.116736pt;}
.lsba{letter-spacing:-0.110592pt;}
.ls73{letter-spacing:-0.098304pt;}
.ls34{letter-spacing:-0.092160pt;}
.lsbb{letter-spacing:-0.086016pt;}
.ls92{letter-spacing:-0.079872pt;}
.ls97{letter-spacing:-0.073728pt;}
.ls66{letter-spacing:-0.055296pt;}
.ls8c{letter-spacing:-0.049152pt;}
.ls50{letter-spacing:-0.043008pt;}
.ls90{letter-spacing:-0.036864pt;}
.ls91{letter-spacing:-0.030720pt;}
.ls44{letter-spacing:-0.026560pt;}
.ls8b{letter-spacing:-0.024576pt;}
.ls36{letter-spacing:-0.018432pt;}
.lsb3{letter-spacing:-0.012288pt;}
.ls41{letter-spacing:-0.010624pt;}
.ls65{letter-spacing:-0.006144pt;}
.ls26{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.006144pt;}
.ls4{letter-spacing:0.006912pt;}
.ls9{letter-spacing:0.012288pt;}
.ls64{letter-spacing:0.018432pt;}
.ls23{letter-spacing:0.019200pt;}
.ls5b{letter-spacing:0.024576pt;}
.ls8{letter-spacing:0.027648pt;}
.lsd7{letter-spacing:0.028800pt;}
.ls11{letter-spacing:0.030720pt;}
.ls5{letter-spacing:0.034560pt;}
.ls67{letter-spacing:0.036864pt;}
.ls42{letter-spacing:0.042496pt;}
.ls47{letter-spacing:0.043008pt;}
.ls45{letter-spacing:0.049152pt;}
.ls14{letter-spacing:0.055296pt;}
.ls1c{letter-spacing:0.061440pt;}
.ls12{letter-spacing:0.067584pt;}
.ls7{letter-spacing:0.073216pt;}
.ls17{letter-spacing:0.073728pt;}
.ls1a{letter-spacing:0.079872pt;}
.ls10{letter-spacing:0.086016pt;}
.ls46{letter-spacing:0.092160pt;}
.ls13{letter-spacing:0.098304pt;}
.lsc{letter-spacing:0.104448pt;}
.ls22{letter-spacing:0.110592pt;}
.ls1b{letter-spacing:0.116736pt;}
.ls19{letter-spacing:0.122880pt;}
.lsb{letter-spacing:0.129024pt;}
.ls1{letter-spacing:0.132928pt;}
.ls21{letter-spacing:0.135168pt;}
.ls2f{letter-spacing:0.141312pt;}
.ls25{letter-spacing:0.143424pt;}
.lsa{letter-spacing:0.147456pt;}
.ls40{letter-spacing:0.148736pt;}
.ls3c{letter-spacing:0.153600pt;}
.ls1f{letter-spacing:0.159744pt;}
.ls4a{letter-spacing:0.165888pt;}
.ls20{letter-spacing:0.172032pt;}
.ls16{letter-spacing:0.178176pt;}
.ls2{letter-spacing:0.180096pt;}
.ls48{letter-spacing:0.184320pt;}
.ls15{letter-spacing:0.190464pt;}
.ls0{letter-spacing:0.192960pt;}
.lsf{letter-spacing:0.196608pt;}
.ls3e{letter-spacing:0.202752pt;}
.ls49{letter-spacing:0.208896pt;}
.ls39{letter-spacing:0.215040pt;}
.lse{letter-spacing:0.221184pt;}
.ls18{letter-spacing:0.227328pt;}
.ls76{letter-spacing:0.233472pt;}
.ls38{letter-spacing:0.239616pt;}
.ls43{letter-spacing:0.244352pt;}
.ls1d{letter-spacing:0.245760pt;}
.ls5c{letter-spacing:0.251904pt;}
.lsae{letter-spacing:0.258048pt;}
.ls55{letter-spacing:0.270336pt;}
.ls93{letter-spacing:0.276480pt;}
.ls3{letter-spacing:0.281536pt;}
.ls8e{letter-spacing:0.282624pt;}
.ls6{letter-spacing:0.309760pt;}
.ls24{letter-spacing:0.350592pt;}
.ls2c{letter-spacing:0.424512pt;}
.ls2b{letter-spacing:0.497408pt;}
.lsa1{letter-spacing:0.540672pt;}
.lsa8{letter-spacing:0.546816pt;}
.lsbc{letter-spacing:0.577536pt;}
.ls56{letter-spacing:0.602112pt;}
.ls57{letter-spacing:0.638976pt;}
.ls4f{letter-spacing:0.651264pt;}
.lsce{letter-spacing:0.663552pt;}
.ls2d{letter-spacing:0.870464pt;}
.ls81{letter-spacing:1.290240pt;}
.lsa0{letter-spacing:1.929216pt;}
.lsa2{letter-spacing:2.574336pt;}
.ls71{letter-spacing:3.213312pt;}
.ls78{letter-spacing:3.852288pt;}
.ls6f{letter-spacing:4.491264pt;}
.ls35{letter-spacing:5.130240pt;}
.lscd{letter-spacing:5.136384pt;}
.ls7e{letter-spacing:5.775360pt;}
.lsa4{letter-spacing:6.414336pt;}
.ls61{letter-spacing:6.420480pt;}
.ls72{letter-spacing:7.053312pt;}
.ls3f{letter-spacing:7.692288pt;}
.ls51{letter-spacing:7.698432pt;}
.ls58{letter-spacing:8.337408pt;}
.ls74{letter-spacing:8.976384pt;}
.lscb{letter-spacing:9.615360pt;}
.lsc7{letter-spacing:10.899456pt;}
.lsd0{letter-spacing:11.538432pt;}
.lsa3{letter-spacing:12.177408pt;}
.lsa6{letter-spacing:15.378432pt;}
.lsaf{letter-spacing:15.648768pt;}
.lsca{letter-spacing:16.023552pt;}
.lsc4{letter-spacing:17.308613pt;}
.lsc5{letter-spacing:17.501459pt;}
.ls89{letter-spacing:22.445227pt;}
.ls86{letter-spacing:24.361598pt;}
.lsb5{letter-spacing:27.547935pt;}
.ls88{letter-spacing:27.757824pt;}
.ls79{letter-spacing:30.041039pt;}
.ls1e{letter-spacing:30.118869pt;}
.ls99{letter-spacing:30.131232pt;}
.ls9b{letter-spacing:30.131766pt;}
.ls6a{letter-spacing:30.354835pt;}
.ls68{letter-spacing:30.360651pt;}
.ls9c{letter-spacing:30.369682pt;}
.lsb7{letter-spacing:30.630742pt;}
.ls69{letter-spacing:30.759238pt;}
.ls85{letter-spacing:30.760550pt;}
.ls84{letter-spacing:30.772294pt;}
.lsd{letter-spacing:30.779176pt;}
.lsb8{letter-spacing:30.950950pt;}
.ls9d{letter-spacing:30.950987pt;}
.ls9a{letter-spacing:31.014403pt;}
.lsc6{letter-spacing:44.212036pt;}
.lsab{letter-spacing:57.418982pt;}
.ls87{letter-spacing:57.675197pt;}
.ls98{letter-spacing:61.330230pt;}
.lsaa{letter-spacing:89.027961pt;}
.lsc2{letter-spacing:116.384971pt;}
.lsc3{letter-spacing:122.536636pt;}
.lsb6{letter-spacing:142.830709pt;}
.lsb4{letter-spacing:152.429238pt;}
.lscc{letter-spacing:181.256539pt;}
.lsad{letter-spacing:277.310541pt;}
.lsa9{letter-spacing:281.816741pt;}
.ls9e{letter-spacing:307.474634pt;}
.lsac{letter-spacing:334.948065pt;}
.ws3{word-spacing:-17.314560pt;}
.ws5{word-spacing:-17.307648pt;}
.wsa7{word-spacing:-16.023552pt;}
.wsa3{word-spacing:-15.630336pt;}
.ws6c{word-spacing:-15.618048pt;}
.ws1e{word-spacing:-15.611904pt;}
.ws26{word-spacing:-15.605760pt;}
.ws1d{word-spacing:-15.587328pt;}
.wsa0{word-spacing:-15.581184pt;}
.wsa9{word-spacing:-15.575040pt;}
.ws11{word-spacing:-15.568896pt;}
.ws17{word-spacing:-15.562752pt;}
.ws23{word-spacing:-15.556608pt;}
.ws6e{word-spacing:-15.544320pt;}
.ws10{word-spacing:-15.519744pt;}
.ws1b{word-spacing:-15.513600pt;}
.ws6{word-spacing:-15.507456pt;}
.ws21{word-spacing:-15.495168pt;}
.ws27{word-spacing:-15.489024pt;}
.ws18{word-spacing:-15.446016pt;}
.ws2e{word-spacing:-15.439872pt;}
.wsb{word-spacing:-15.433728pt;}
.ws5a{word-spacing:-15.427584pt;}
.ws57{word-spacing:-15.421440pt;}
.ws54{word-spacing:-15.415296pt;}
.ws20{word-spacing:-15.403008pt;}
.ws83{word-spacing:-15.396864pt;}
.ws9{word-spacing:-15.390720pt;}
.ws16{word-spacing:-15.384576pt;}
.ws50{word-spacing:-15.378432pt;}
.ws6d{word-spacing:-15.347712pt;}
.wsa{word-spacing:-15.267840pt;}
.ws25{word-spacing:-15.261696pt;}
.ws69{word-spacing:-15.175680pt;}
.ws6b{word-spacing:-15.144960pt;}
.ws84{word-spacing:-15.120384pt;}
.ws12{word-spacing:-15.108096pt;}
.ws68{word-spacing:-15.083520pt;}
.ws1f{word-spacing:-15.071232pt;}
.ws36{word-spacing:-15.065088pt;}
.ws55{word-spacing:-14.991360pt;}
.ws53{word-spacing:-14.942208pt;}
.ws82{word-spacing:-14.905344pt;}
.ws4b{word-spacing:-14.757888pt;}
.ws31{word-spacing:-14.751744pt;}
.ws48{word-spacing:-14.745600pt;}
.ws2a{word-spacing:-14.739456pt;}
.wsa8{word-spacing:-14.505984pt;}
.ws4{word-spacing:-14.389760pt;}
.ws24{word-spacing:-14.100480pt;}
.wsc{word-spacing:-13.630592pt;}
.wsaa{word-spacing:-12.028800pt;}
.ws2d{word-spacing:-11.500800pt;}
.ws15{word-spacing:-11.496000pt;}
.ws1{word-spacing:-11.217408pt;}
.ws2{word-spacing:-10.900096pt;}
.wse{word-spacing:-10.867200pt;}
.ws22{word-spacing:-10.862400pt;}
.ws2c{word-spacing:-10.641600pt;}
.ws14{word-spacing:-10.636800pt;}
.ws0{word-spacing:-9.858112pt;}
.ws90{word-spacing:-1.529856pt;}
.ws8d{word-spacing:-1.087488pt;}
.ws94{word-spacing:-0.915456pt;}
.ws7b{word-spacing:-0.884736pt;}
.ws66{word-spacing:-0.854016pt;}
.ws76{word-spacing:-0.829440pt;}
.ws80{word-spacing:-0.761856pt;}
.ws64{word-spacing:-0.724992pt;}
.ws92{word-spacing:-0.718848pt;}
.ws8b{word-spacing:-0.706560pt;}
.ws78{word-spacing:-0.694272pt;}
.ws79{word-spacing:-0.657408pt;}
.ws77{word-spacing:-0.442368pt;}
.ws6f{word-spacing:-0.387072pt;}
.ws7c{word-spacing:-0.331776pt;}
.ws8a{word-spacing:-0.227328pt;}
.ws7a{word-spacing:-0.208896pt;}
.ws72{word-spacing:-0.202752pt;}
.ws97{word-spacing:-0.184320pt;}
.ws96{word-spacing:-0.178176pt;}
.ws9a{word-spacing:-0.172032pt;}
.ws62{word-spacing:-0.165888pt;}
.ws8c{word-spacing:-0.159744pt;}
.ws81{word-spacing:-0.147456pt;}
.ws87{word-spacing:-0.141312pt;}
.ws8f{word-spacing:-0.129024pt;}
.wsab{word-spacing:-0.122880pt;}
.ws89{word-spacing:-0.116736pt;}
.ws91{word-spacing:-0.110592pt;}
.ws73{word-spacing:-0.104448pt;}
.ws7d{word-spacing:-0.098304pt;}
.ws95{word-spacing:-0.092160pt;}
.ws7f{word-spacing:-0.079872pt;}
.ws71{word-spacing:-0.073728pt;}
.ws63{word-spacing:-0.067584pt;}
.ws5f{word-spacing:-0.055296pt;}
.ws61{word-spacing:-0.049152pt;}
.ws70{word-spacing:-0.043008pt;}
.ws65{word-spacing:-0.036864pt;}
.ws99{word-spacing:-0.030720pt;}
.ws74{word-spacing:-0.024576pt;}
.ws88{word-spacing:-0.018432pt;}
.ws75{word-spacing:-0.012288pt;}
.ws60{word-spacing:-0.006144pt;}
.wsd{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.012288pt;}
.ws98{word-spacing:0.036864pt;}
.ws8e{word-spacing:0.122880pt;}
.ws67{word-spacing:0.233472pt;}
.ws93{word-spacing:0.565248pt;}
.wsa6{word-spacing:1.277952pt;}
.wsa4{word-spacing:1.402113pt;}
.ws5c{word-spacing:6.193152pt;}
.ws5b{word-spacing:6.297600pt;}
.ws46{word-spacing:7.085227pt;}
.ws3a{word-spacing:7.485004pt;}
.ws3d{word-spacing:8.727508pt;}
.ws44{word-spacing:8.730780pt;}
.ws33{word-spacing:8.752972pt;}
.ws3b{word-spacing:10.862361pt;}
.ws4a{word-spacing:11.133640pt;}
.ws9f{word-spacing:11.937372pt;}
.ws5e{word-spacing:12.158976pt;}
.ws5d{word-spacing:12.208128pt;}
.ws4f{word-spacing:12.347898pt;}
.ws9c{word-spacing:12.579590pt;}
.ws4e{word-spacing:12.986089pt;}
.ws45{word-spacing:13.825996pt;}
.ws56{word-spacing:14.084183pt;}
.ws4d{word-spacing:14.249977pt;}
.ws51{word-spacing:14.448251pt;}
.ws9d{word-spacing:14.555256pt;}
.wsf{word-spacing:14.558903pt;}
.ws58{word-spacing:14.649843pt;}
.ws8{word-spacing:14.883958pt;}
.ws38{word-spacing:14.900494pt;}
.ws29{word-spacing:14.964197pt;}
.ws2f{word-spacing:14.966097pt;}
.ws2b{word-spacing:15.079378pt;}
.ws32{word-spacing:15.097311pt;}
.ws43{word-spacing:15.178404pt;}
.ws86{word-spacing:15.181224pt;}
.ws4c{word-spacing:15.197282pt;}
.ws30{word-spacing:15.281174pt;}
.ws3c{word-spacing:15.290780pt;}
.ws34{word-spacing:15.320250pt;}
.ws1a{word-spacing:15.408657pt;}
.ws3f{word-spacing:15.552976pt;}
.ws52{word-spacing:15.558746pt;}
.ws13{word-spacing:15.568821pt;}
.ws19{word-spacing:15.571511pt;}
.wsa1{word-spacing:15.641113pt;}
.ws1c{word-spacing:15.716987pt;}
.ws3e{word-spacing:15.775871pt;}
.ws28{word-spacing:15.833105pt;}
.ws59{word-spacing:15.839001pt;}
.ws9e{word-spacing:15.970715pt;}
.ws35{word-spacing:16.000752pt;}
.ws7{word-spacing:16.008619pt;}
.ws39{word-spacing:16.468190pt;}
.ws42{word-spacing:16.541992pt;}
.ws37{word-spacing:16.826076pt;}
.ws49{word-spacing:35.154442pt;}
.ws47{word-spacing:36.274745pt;}
.ws85{word-spacing:42.039169pt;}
.ws6a{word-spacing:44.218788pt;}
.wsa5{word-spacing:49.667097pt;}
.wsa2{word-spacing:71.121390pt;}
.ws41{word-spacing:78.324555pt;}
.ws40{word-spacing:78.712662pt;}
.ws9b{word-spacing:143.874568pt;}
._2d{margin-left:-16.431924pt;}
._2c{margin-left:-15.352054pt;}
._8f{margin-left:-13.357056pt;}
._2b{margin-left:-12.140544pt;}
._24{margin-left:-10.413624pt;}
._12{margin-left:-9.403896pt;}
._11{margin-left:-7.652184pt;}
._13{margin-left:-6.673728pt;}
._c{margin-left:-5.505024pt;}
._23{margin-left:-4.454400pt;}
._2{margin-left:-3.044480pt;}
._14{margin-left:-2.097334pt;}
._0{margin-left:-1.174912pt;}
._1{width:1.573696pt;}
._5{width:2.573504pt;}
._e{width:4.234624pt;}
._3{width:5.432704pt;}
._4{width:6.918144pt;}
._b{width:7.841152pt;}
._7{width:8.879488pt;}
._8{width:10.049281pt;}
._9{width:11.023483pt;}
._f{width:12.718080pt;}
._2a{width:13.631143pt;}
._27{width:14.563510pt;}
._28{width:16.459776pt;}
._18{width:17.819008pt;}
._26{width:19.290752pt;}
._8e{width:20.632928pt;}
._16{width:21.571584pt;}
._17{width:23.343286pt;}
._d{width:25.816748pt;}
._20{width:27.580223pt;}
._10{width:29.198151pt;}
._6{width:30.271917pt;}
._a{width:31.358889pt;}
._8d{width:32.255601pt;}
._90{width:33.229596pt;}
._92{width:35.221234pt;}
._29{width:37.921801pt;}
._15{width:40.021992pt;}
._49{width:43.938806pt;}
._5e{width:45.486689pt;}
._93{width:47.379813pt;}
._91{width:49.533151pt;}
._94{width:51.239376pt;}
._1f{width:54.488019pt;}
._57{width:55.750096pt;}
._2f{width:57.437282pt;}
._1d{width:58.331989pt;}
._51{width:59.578788pt;}
._7d{width:61.261484pt;}
._1b{width:70.194124pt;}
._7e{width:74.938788pt;}
._8a{width:76.860039pt;}
._46{width:83.924461pt;}
._33{width:85.430388pt;}
._34{width:87.125024pt;}
._78{width:88.411359pt;}
._3b{width:89.677867pt;}
._97{width:91.191417pt;}
._22{width:93.552505pt;}
._5c{width:95.121928pt;}
._19{width:96.115152pt;}
._7c{width:99.274632pt;}
._44{width:100.164237pt;}
._1a{width:101.266221pt;}
._55{width:102.334996pt;}
._37{width:110.798723pt;}
._5d{width:112.082971pt;}
._70{width:113.564109pt;}
._64{width:115.246536pt;}
._67{width:116.886098pt;}
._45{width:118.513886pt;}
._1c{width:121.875682pt;}
._6b{width:124.294721pt;}
._43{width:126.200425pt;}
._5b{width:127.452977pt;}
._7a{width:130.010842pt;}
._77{width:131.545032pt;}
._1e{width:132.632875pt;}
._6a{width:136.653567pt;}
._3c{width:139.651868pt;}
._88{width:143.459598pt;}
._3a{width:144.776227pt;}
._59{width:146.650916pt;}
._30{width:149.260041pt;}
._25{width:151.010154pt;}
._89{width:152.429238pt;}
._21{width:157.003797pt;}
._74{width:158.833407pt;}
._5f{width:161.056567pt;}
._62{width:162.629347pt;}
._39{width:163.903628pt;}
._61{width:165.877993pt;}
._2e{width:167.604518pt;}
._4c{width:173.524478pt;}
._8c{width:174.829261pt;}
._81{width:176.529640pt;}
._35{width:177.444017pt;}
._84{width:181.880240pt;}
._75{width:183.809668pt;}
._80{width:185.179871pt;}
._8b{width:186.391171pt;}
._40{width:187.692736pt;}
._96{width:190.967441pt;}
._6e{width:192.115253pt;}
._5a{width:200.460508pt;}
._54{width:201.420600pt;}
._72{width:205.964762pt;}
._6c{width:207.150239pt;}
._31{width:209.471263pt;}
._38{width:212.994260pt;}
._73{width:215.190098pt;}
._3f{width:216.517257pt;}
._79{width:222.769543pt;}
._52{width:223.927386pt;}
._32{width:224.844340pt;}
._68{width:229.599479pt;}
._6d{width:230.865743pt;}
._6f{width:235.023187pt;}
._4e{width:236.769547pt;}
._76{width:239.525941pt;}
._3e{width:241.252465pt;}
._36{width:242.779598pt;}
._58{width:244.004996pt;}
._3d{width:248.960209pt;}
._71{width:250.413029pt;}
._7f{width:252.974697pt;}
._66{width:255.669803pt;}
._4a{width:257.903306pt;}
._86{width:258.975619pt;}
._87{width:262.527486pt;}
._47{width:267.473540pt;}
._69{width:268.943495pt;}
._7b{width:276.029707pt;}
._4f{width:278.212703pt;}
._42{width:280.571747pt;}
._41{width:283.305449pt;}
._82{width:292.898420pt;}
._65{width:295.906447pt;}
._95{width:297.348816pt;}
._83{width:298.444300pt;}
._4b{width:299.465769pt;}
._85{width:308.222540pt;}
._99{width:326.632947pt;}
._98{width:333.210913pt;}
._60{width:334.627857pt;}
._48{width:339.866614pt;}
._4d{width:390.023922pt;}
._56{width:492.109580pt;}
._53{width:562.136615pt;}
._50{width:577.609523pt;}
._63{width:670.846749pt;}
.fs7{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs2{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.800400pt;}
.y4{bottom:291.147067pt;}
.y26{bottom:328.587264pt;}
.y4e{bottom:331.626555pt;}
.ye9{bottom:335.626555pt;}
.yea{bottom:335.627200pt;}
.y107{bottom:341.546299pt;}
.y25{bottom:343.946912pt;}
.ycd{bottom:348.266688pt;}
.yce{bottom:348.267067pt;}
.y8c{bottom:349.546299pt;}
.y4d{bottom:349.546811pt;}
.y6f{bottom:349.547067pt;}
.ye8{bottom:353.546811pt;}
.y24{bottom:359.147200pt;}
.y106{bottom:359.626555pt;}
.ya3{bottom:362.186811pt;}
.ya4{bottom:362.187200pt;}
.y23{bottom:365.227067pt;}
.ycc{bottom:366.187200pt;}
.y84{bottom:367.626299pt;}
.y4c{bottom:367.626555pt;}
.y6e{bottom:367.627067pt;}
.ye6{bottom:371.626555pt;}
.ye7{bottom:371.627067pt;}
.y22{bottom:375.147200pt;}
.y105{bottom:377.547067pt;}
.ya2{bottom:380.267067pt;}
.ycb{bottom:384.267067pt;}
.y4b{bottom:385.546043pt;}
.y83{bottom:385.546811pt;}
.y6d{bottom:385.547067pt;}
.ye5{bottom:389.546811pt;}
.y104{bottom:395.626555pt;}
.ya1{bottom:398.187200pt;}
.yc9{bottom:402.186811pt;}
.yca{bottom:402.187200pt;}
.y6b{bottom:403.625787pt;}
.y4a{bottom:403.626299pt;}
.y82{bottom:403.626555pt;}
.y6c{bottom:403.627067pt;}
.y21{bottom:407.466299pt;}
.ye4{bottom:407.627067pt;}
.y13e{bottom:412.747200pt;}
.y13d{bottom:412.747323pt;}
.y103{bottom:413.546811pt;}
.yc8{bottom:420.267067pt;}
.y6a{bottom:421.546299pt;}
.y49{bottom:421.546811pt;}
.y81{bottom:421.547067pt;}
.y20{bottom:425.386811pt;}
.ye3{bottom:425.547067pt;}
.y102{bottom:431.625531pt;}
.yc7{bottom:438.187200pt;}
.y48{bottom:439.625531pt;}
.y69{bottom:439.626555pt;}
.y9b{bottom:439.627067pt;}
.y1f{bottom:443.466555pt;}
.ye2{bottom:443.627067pt;}
.y13c{bottom:447.947835pt;}
.y101{bottom:449.546043pt;}
.y47{bottom:457.546043pt;}
.y67{bottom:457.546299pt;}
.y8b{bottom:457.546811pt;}
.y68{bottom:457.547067pt;}
.y1e{bottom:461.386299pt;}
.yc5{bottom:464.266555pt;}
.yc6{bottom:464.267067pt;}
.y13b{bottom:465.707067pt;}
.y100{bottom:467.626299pt;}
.y46{bottom:475.626299pt;}
.y66{bottom:475.626555pt;}
.y9a{bottom:475.627067pt;}
.y1d{bottom:479.466555pt;}
.ye0{bottom:479.626555pt;}
.ye1{bottom:479.627067pt;}
.yc3{bottom:482.186811pt;}
.yc4{bottom:482.187067pt;}
.y13a{bottom:483.307579pt;}
.yff{bottom:485.546811pt;}
.y45{bottom:493.546811pt;}
.y65{bottom:493.547067pt;}
.y1c{bottom:497.386811pt;}
.ydf{bottom:497.547067pt;}
.yc2{bottom:500.267067pt;}
.y139{bottom:500.907067pt;}
.y138{bottom:500.908091pt;}
.yfe{bottom:503.627067pt;}
.y11f{bottom:511.621179pt;}
.y80{bottom:511.625787pt;}
.y64{bottom:511.626299pt;}
.y44{bottom:511.626555pt;}
.y8a{bottom:511.627067pt;}
.y1b{bottom:515.466555pt;}
.yde{bottom:515.627067pt;}
.yc1{bottom:518.187067pt;}
.y137{bottom:518.507579pt;}
.yfd{bottom:521.547067pt;}
.y11e{bottom:529.541691pt;}
.y7f{bottom:529.546299pt;}
.y43{bottom:529.546811pt;}
.y99{bottom:529.547067pt;}
.y1a{bottom:533.386811pt;}
.y136{bottom:536.107067pt;}
.y135{bottom:536.109883pt;}
.yc0{bottom:536.267067pt;}
.ydc{bottom:541.546811pt;}
.ydd{bottom:541.547067pt;}
.y11d{bottom:547.621947pt;}
.y42{bottom:547.624763pt;}
.y63{bottom:547.625787pt;}
.y7e{bottom:547.626555pt;}
.y98{bottom:547.627067pt;}
.y19{bottom:551.466299pt;}
.y134{bottom:553.870651pt;}
.ybf{bottom:554.187067pt;}
.yfc{bottom:557.547067pt;}
.yda{bottom:559.626555pt;}
.ydb{bottom:559.627067pt;}
.y11c{bottom:565.542459pt;}
.y41{bottom:565.545275pt;}
.y62{bottom:565.546299pt;}
.y97{bottom:565.547067pt;}
.y18{bottom:569.386811pt;}
.y133{bottom:571.470139pt;}
.ybd{bottom:577.546811pt;}
.ybe{bottom:577.547067pt;}
.y11b{bottom:583.622715pt;}
.y40{bottom:583.625531pt;}
.y61{bottom:583.626555pt;}
.y17{bottom:587.467067pt;}
.y132{bottom:589.069627pt;}
.ybc{bottom:595.626555pt;}
.yd9{bottom:595.627067pt;}
.y11a{bottom:601.543227pt;}
.y3f{bottom:601.546043pt;}
.ya0{bottom:601.546299pt;}
.y89{bottom:601.546811pt;}
.y96{bottom:601.547067pt;}
.y16{bottom:605.387067pt;}
.y131{bottom:606.669115pt;}
.yfb{bottom:611.626555pt;}
.ybb{bottom:613.547067pt;}
.y119{bottom:619.623483pt;}
.y3e{bottom:619.626299pt;}
.y88{bottom:619.626555pt;}
.yd7{bottom:621.546811pt;}
.yd8{bottom:621.547067pt;}
.y130{bottom:624.268603pt;}
.yfa{bottom:629.546299pt;}
.yba{bottom:631.627067pt;}
.y118{bottom:637.543995pt;}
.y87{bottom:637.546299pt;}
.y3d{bottom:637.546811pt;}
.yd6{bottom:639.627067pt;}
.y15{bottom:641.386811pt;}
.y12f{bottom:642.029371pt;}
.yf9{bottom:647.626555pt;}
.y117{bottom:655.624251pt;}
.y3c{bottom:655.626555pt;}
.y7d{bottom:655.627067pt;}
.yb8{bottom:657.546811pt;}
.yb9{bottom:657.547067pt;}
.y13{bottom:659.465787pt;}
.y14{bottom:659.467067pt;}
.y12e{bottom:659.628859pt;}
.yf8{bottom:665.546811pt;}
.y116{bottom:673.544763pt;}
.y7b{bottom:673.546043pt;}
.y3b{bottom:673.546299pt;}
.y60{bottom:673.546811pt;}
.y7c{bottom:673.547067pt;}
.yb7{bottom:675.627067pt;}
.y12d{bottom:677.228347pt;}
.y12{bottom:677.386299pt;}
.yd4{bottom:683.626555pt;}
.yd5{bottom:683.627067pt;}
.y115{bottom:691.625019pt;}
.y5f{bottom:691.626299pt;}
.y3a{bottom:691.626555pt;}
.y95{bottom:691.627067pt;}
.yb6{bottom:693.547067pt;}
.y12c{bottom:694.827835pt;}
.y11{bottom:695.466555pt;}
.yd2{bottom:701.546811pt;}
.yd3{bottom:701.547067pt;}
.y114{bottom:709.545531pt;}
.y39{bottom:709.546043pt;}
.y5e{bottom:709.546811pt;}
.y94{bottom:709.547067pt;}
.yb4{bottom:711.626555pt;}
.yb5{bottom:711.627067pt;}
.y12b{bottom:712.427323pt;}
.y10{bottom:713.386299pt;}
.yf7{bottom:719.626555pt;}
.yd1{bottom:719.627067pt;}
.y5d{bottom:727.625531pt;}
.y113{bottom:727.625787pt;}
.y38{bottom:727.626299pt;}
.y93{bottom:727.626555pt;}
.y7a{bottom:727.627067pt;}
.yb3{bottom:729.547067pt;}
.y12a{bottom:730.188091pt;}
.yf{bottom:731.466555pt;}
.yf6{bottom:737.546811pt;}
.yd0{bottom:737.547067pt;}
.y5c{bottom:745.546043pt;}
.y112{bottom:745.546299pt;}
.y37{bottom:745.546811pt;}
.y92{bottom:745.547067pt;}
.yb1{bottom:747.626555pt;}
.yb2{bottom:747.627067pt;}
.y129{bottom:747.787579pt;}
.yd{bottom:749.386811pt;}
.ye{bottom:749.387067pt;}
.yf4{bottom:755.625787pt;}
.yf5{bottom:755.627067pt;}
.y36{bottom:763.625787pt;}
.y5b{bottom:763.626299pt;}
.y111{bottom:763.626555pt;}
.y91{bottom:763.627067pt;}
.y128{bottom:765.387067pt;}
.yb0{bottom:765.547067pt;}
.yc{bottom:767.466555pt;}
.y110{bottom:781.542971pt;}
.y35{bottom:781.546299pt;}
.y5a{bottom:781.546811pt;}
.y90{bottom:781.547067pt;}
.yae{bottom:783.626555pt;}
.yaf{bottom:783.627067pt;}
.yb{bottom:785.386811pt;}
.yf3{bottom:791.626555pt;}
.y10f{bottom:799.623227pt;}
.y59{bottom:799.625787pt;}
.y79{bottom:799.626299pt;}
.y34{bottom:799.626555pt;}
.y9f{bottom:799.627067pt;}
.y127{bottom:800.267067pt;}
.yad{bottom:801.547067pt;}
.ya{bottom:803.466555pt;}
.yf2{bottom:809.547067pt;}
.y10e{bottom:817.543739pt;}
.y58{bottom:817.546299pt;}
.y33{bottom:817.546811pt;}
.ycf{bottom:817.547067pt;}
.yac{bottom:819.627067pt;}
.y9{bottom:821.387067pt;}
.yf1{bottom:827.626555pt;}
.y10d{bottom:835.623995pt;}
.y86{bottom:835.626299pt;}
.y32{bottom:835.626555pt;}
.y78{bottom:835.627067pt;}
.y126{bottom:835.944763pt;}
.y8{bottom:839.467067pt;}
.yaa{bottom:842.826811pt;}
.yab{bottom:842.827067pt;}
.yf0{bottom:845.547067pt;}
.y10c{bottom:853.544507pt;}
.y57{bottom:853.546299pt;}
.y31{bottom:853.546811pt;}
.y77{bottom:853.547067pt;}
.ya9{bottom:860.907067pt;}
.yef{bottom:863.626299pt;}
.y125{bottom:871.624507pt;}
.y10b{bottom:871.624763pt;}
.y30{bottom:871.626299pt;}
.y56{bottom:871.626555pt;}
.y9e{bottom:871.627067pt;}
.ya8{bottom:878.827067pt;}
.yee{bottom:881.546811pt;}
.y124{bottom:889.545019pt;}
.y10a{bottom:889.545275pt;}
.y8f{bottom:889.546043pt;}
.y76{bottom:889.546299pt;}
.y2f{bottom:889.546811pt;}
.y9d{bottom:889.547067pt;}
.y7{bottom:893.867067pt;}
.yed{bottom:899.627067pt;}
.ya7{bottom:902.187067pt;}
.y55{bottom:907.625019pt;}
.y123{bottom:907.625275pt;}
.y109{bottom:907.625531pt;}
.y2e{bottom:907.625787pt;}
.y8e{bottom:907.626299pt;}
.y75{bottom:907.626555pt;}
.y9c{bottom:907.627067pt;}
.ya6{bottom:920.267067pt;}
.y54{bottom:925.545531pt;}
.y122{bottom:925.545787pt;}
.yec{bottom:925.546043pt;}
.y2d{bottom:925.546299pt;}
.y8d{bottom:925.546811pt;}
.y74{bottom:925.547067pt;}
.y5{bottom:936.587067pt;}
.ya5{bottom:938.187067pt;}
.y53{bottom:943.625787pt;}
.y121{bottom:943.626043pt;}
.yeb{bottom:943.626299pt;}
.y2c{bottom:943.626555pt;}
.y73{bottom:943.627067pt;}
.y6{bottom:944.587067pt;}
.y52{bottom:961.546299pt;}
.y120{bottom:961.546555pt;}
.y2b{bottom:961.546811pt;}
.y72{bottom:961.547067pt;}
.y2a{bottom:979.626555pt;}
.y108{bottom:979.626811pt;}
.y85{bottom:979.627067pt;}
.y29{bottom:997.546811pt;}
.y71{bottom:997.547067pt;}
.y51{bottom:997.547323pt;}
.y70{bottom:1015.627067pt;}
.y28{bottom:1015.627579pt;}
.y3{bottom:1035.786939pt;}
.y2{bottom:1035.787067pt;}
.y1{bottom:1054.347067pt;}
.y4f{bottom:1058.746667pt;}
.y27{bottom:1061.547067pt;}
.h16{height:13.520000pt;}
.he{height:30.324375pt;}
.h6{height:31.106875pt;}
.hf{height:36.364375pt;}
.h2{height:37.624687pt;}
.h7{height:38.555000pt;}
.h8{height:42.060000pt;}
.h10{height:42.117188pt;}
.h1{height:46.609688pt;}
.h15{height:47.085938pt;}
.h4{height:47.317500pt;}
.h3{height:53.910000pt;}
.hb{height:53.911024pt;}
.ha{height:53.912048pt;}
.h19{height:53.912581pt;}
.hc{height:53.913072pt;}
.h12{height:53.914096pt;}
.h11{height:53.915120pt;}
.h14{height:53.916144pt;}
.h18{height:53.917168pt;}
.h17{height:53.918192pt;}
.h13{height:53.919216pt;}
.h1d{height:53.926384pt;}
.h1e{height:53.933552pt;}
.hd{height:56.156250pt;}
.h9{height:60.270000pt;}
.h1a{height:60.271024pt;}
.h1b{height:60.271557pt;}
.h1c{height:60.272048pt;}
.h5{height:67.803750pt;}
.h0{height:1122.666667pt;}
.w2{width:3.680000pt;}
.w5{width:4.560000pt;}
.w4{width:7.040000pt;}
.w6{width:8.480000pt;}
.w3{width:8.640000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2b{left:238.080338pt;}
.x1{left:241.920000pt;}
.x33{left:246.399447pt;}
.x7{left:249.440000pt;}
.x2{left:251.520000pt;}
.x62{left:253.440000pt;}
.x24{left:256.960000pt;}
.x3{left:258.080000pt;}
.x5e{left:260.640000pt;}
.xb7{left:262.720000pt;}
.xbc{left:264.960000pt;}
.xb8{left:266.560000pt;}
.x34{left:267.680000pt;}
.x9a{left:268.960000pt;}
.xd9{left:271.360000pt;}
.x25{left:272.320000pt;}
.x6f{left:273.440000pt;}
.x87{left:276.160000pt;}
.x47{left:277.440000pt;}
.x88{left:279.360000pt;}
.xb1{left:281.440000pt;}
.x35{left:282.400000pt;}
.x5c{left:284.000000pt;}
.x48{left:285.120000pt;}
.xba{left:287.040000pt;}
.x27{left:288.640000pt;}
.xd3{left:289.920000pt;}
.x58{left:291.360000pt;}
.x28{left:292.800000pt;}
.xcd{left:293.920000pt;}
.x59{left:296.320000pt;}
.xb5{left:297.760000pt;}
.x36{left:298.720000pt;}
.xc6{left:300.160000pt;}
.x8{left:301.120000pt;}
.x4f{left:303.200000pt;}
.x4{left:306.240000pt;}
.x2e{left:307.520000pt;}
.x37{left:308.640000pt;}
.x9{left:310.720000pt;}
.xbe{left:311.680000pt;}
.x66{left:312.640000pt;}
.x5{left:314.560000pt;}
.xdf{left:315.520000pt;}
.x2d{left:317.440000pt;}
.xd5{left:318.400000pt;}
.x78{left:320.160000pt;}
.xbb{left:323.680000pt;}
.xb4{left:324.640000pt;}
.xd0{left:326.880000pt;}
.x26{left:329.440000pt;}
.x70{left:331.840000pt;}
.x7f{left:333.280000pt;}
.x6b{left:334.720000pt;}
.xc2{left:335.680000pt;}
.x80{left:337.440000pt;}
.x6c{left:340.640000pt;}
.x2f{left:341.600000pt;}
.xbd{left:342.800000pt;}
.xa8{left:345.520000pt;}
.xc1{left:346.960000pt;}
.x9b{left:348.160000pt;}
.x6{left:349.280000pt;}
.x18{left:350.320000pt;}
.x63{left:352.560000pt;}
.x96{left:355.520000pt;}
.x74{left:360.480000pt;}
.x76{left:361.600000pt;}
.x54{left:363.680000pt;}
.xce{left:372.800000pt;}
.x5d{left:374.880000pt;}
.x7b{left:377.440000pt;}
.xd2{left:380.480000pt;}
.xc3{left:382.240000pt;}
.x9f{left:383.680000pt;}
.xa0{left:385.120000pt;}
.x7c{left:386.720000pt;}
.x71{left:388.480000pt;}
.x19{left:390.080000pt;}
.x8e{left:393.760000pt;}
.xaa{left:395.200000pt;}
.xc4{left:399.680000pt;}
.x64{left:406.080000pt;}
.xa{left:407.520000pt;}
.x1a{left:408.480000pt;}
.x1f{left:411.360000pt;}
.xcf{left:414.080000pt;}
.xb{left:415.840000pt;}
.x50{left:417.280000pt;}
.x92{left:419.520000pt;}
.x90{left:421.280000pt;}
.x20{left:422.880000pt;}
.x1b{left:424.320000pt;}
.xa6{left:429.920000pt;}
.xc{left:431.040000pt;}
.x29{left:435.520000pt;}
.x1c{left:438.720000pt;}
.x93{left:440.160000pt;}
.x7e{left:441.920000pt;}
.x1d{left:443.040000pt;}
.x77{left:445.920000pt;}
.x2a{left:447.520000pt;}
.x81{left:448.960000pt;}
.x21{left:453.280000pt;}
.xab{left:455.360000pt;}
.x8b{left:459.200000pt;}
.x72{left:460.320000pt;}
.x22{left:462.720000pt;}
.xc9{left:464.640000pt;}
.xb0{left:467.040000pt;}
.xa7{left:468.160000pt;}
.xa1{left:470.400000pt;}
.x57{left:472.640000pt;}
.xac{left:474.080000pt;}
.x30{left:476.000000pt;}
.x5f{left:477.280000pt;}
.x97{left:478.880000pt;}
.x23{left:483.040000pt;}
.xde{left:484.000000pt;}
.xbf{left:485.520000pt;}
.xa2{left:487.360000pt;}
.xda{left:488.720000pt;}
.x67{left:490.880000pt;}
.x38{left:492.720000pt;}
.x68{left:495.200000pt;}
.x99{left:498.080000pt;}
.xe0{left:499.680000pt;}
.x5a{left:500.800000pt;}
.x98{left:504.480000pt;}
.x39{left:506.880000pt;}
.x6d{left:508.640000pt;}
.x94{left:510.560000pt;}
.xad{left:512.960000pt;}
.xd{left:514.560000pt;}
.x4e{left:516.960000pt;}
.x49{left:519.680000pt;}
.xe{left:521.920000pt;}
.xd7{left:522.880000pt;}
.xd6{left:526.240000pt;}
.xb9{left:527.200000pt;}
.xa4{left:530.560000pt;}
.x2c{left:531.680000pt;}
.xb2{left:534.080000pt;}
.x91{left:535.840000pt;}
.xae{left:540.320000pt;}
.x83{left:542.560000pt;}
.xcb{left:545.280000pt;}
.x9c{left:548.800000pt;}
.xf{left:549.920000pt;}
.x3a{left:555.360000pt;}
.xd1{left:556.800000pt;}
.x10{left:559.520000pt;}
.x89{left:561.440000pt;}
.x51{left:562.560000pt;}
.x3b{left:563.680000pt;}
.x65{left:565.920000pt;}
.x8c{left:568.000000pt;}
.xca{left:571.200000pt;}
.x3c{left:572.960000pt;}
.x31{left:575.360000pt;}
.xa3{left:576.800000pt;}
.x32{left:579.200000pt;}
.xdb{left:582.240000pt;}
.x9d{left:583.840000pt;}
.x8f{left:586.240000pt;}
.xb3{left:589.440000pt;}
.x8d{left:591.520000pt;}
.xc5{left:592.640000pt;}
.x69{left:594.560000pt;}
.x1e{left:596.400000pt;}
.x6e{left:597.600000pt;}
.x82{left:598.560000pt;}
.xcc{left:599.840000pt;}
.x11{left:601.920000pt;}
.x79{left:604.320000pt;}
.x4c{left:606.720000pt;}
.x52{left:608.000000pt;}
.x4d{left:610.560000pt;}
.x12{left:611.520000pt;}
.x8a{left:612.640000pt;}
.xdc{left:613.920000pt;}
.x4a{left:616.000000pt;}
.xc0{left:617.760000pt;}
.x84{left:619.040000pt;}
.x4b{left:620.000000pt;}
.x14{left:622.879534pt;}
.xaf{left:625.520000pt;}
.xa5{left:627.440000pt;}
.xd8{left:629.520000pt;}
.x15{left:632.480000pt;}
.x3d{left:633.760000pt;}
.x73{left:634.720000pt;}
.x53{left:636.320000pt;}
.x3e{left:637.440000pt;}
.xc7{left:639.200000pt;}
.x60{left:641.600000pt;}
.x6a{left:644.000000pt;}
.x55{left:644.960000pt;}
.x3f{left:645.920000pt;}
.xa9{left:652.640000pt;}
.x40{left:654.240000pt;}
.x75{left:656.159867pt;}
.x95{left:657.440000pt;}
.x9e{left:659.200000pt;}
.xb6{left:660.159867pt;}
.x41{left:661.280000pt;}
.x42{left:664.960000pt;}
.x7d{left:668.320000pt;}
.x85{left:671.839867pt;}
.x7a{left:675.839867pt;}
.x56{left:678.400000pt;}
.x16{left:681.280000pt;}
.x61{left:683.520000pt;}
.xd4{left:687.040000pt;}
.x43{left:688.320000pt;}
.x44{left:691.999867pt;}
.xdd{left:695.839867pt;}
.x13{left:697.759867pt;}
.xc8{left:698.880000pt;}
.x45{left:700.320000pt;}
.x86{left:701.440000pt;}
.x46{left:704.800000pt;}
.x17{left:706.559867pt;}
.x5b{left:709.120000pt;}
}




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