
    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_696f271531fcf71049280f6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_53d6f1477f1e1c5c1d35582c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_deddb4acd1d4f20f07d79336.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_238e7e70545870c0f235b614.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.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:ff5;src:url('chunks/assets/font_16edce6c65e1c26467e4e2b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_941ec90e6dce3afb1d0190fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;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_7bf495b7f78de3a0ce45450d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000488;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_7cf4d4b83de52e2dbac35a40.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_cf91e93a0b6636f66ab30944.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_51ed2192ba78703d2ebb26a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_a72c2ed1e29f5d27091f5696.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;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_2f4de6b123a6219e73a028e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.803000;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_c2a6b2afaac4f00462af3ea8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.734000;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;}
.mc{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);}
.m20{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);}
.m1c{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);}
.ma{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);}
.m13{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);}
.m23{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m3{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);}
.m18{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m11{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);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.md{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);}
.m22{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);}
.m14{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);}
.m25{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);}
.m26{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);}
.m2{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);}
.m4{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);}
.m28{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);}
.m10{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);}
.m7{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);}
.me{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);}
.m16{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m1f{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);}
.m1a{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);}
.m1b{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);}
.m5{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);}
.m19{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);}
.m24{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);}
.m1e{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m12{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);}
.v15{vertical-align:-31.590000px;}
.v6{vertical-align:-26.664000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.vc{vertical-align:-10.668000px;}
.ve{vertical-align:-5.982000px;}
.va{vertical-align:-4.704000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:1.278000px;}
.v5{vertical-align:4.644000px;}
.v9{vertical-align:7.266000px;}
.v16{vertical-align:10.254000px;}
.v12{vertical-align:15.192000px;}
.vf{vertical-align:16.656000px;}
.v1{vertical-align:21.696000px;}
.v7{vertical-align:23.910000px;}
.vb{vertical-align:25.182000px;}
.v8{vertical-align:26.190000px;}
.vd{vertical-align:31.164000px;}
.v4{vertical-align:32.880000px;}
.v10{vertical-align:35.862000px;}
.v13{vertical-align:41.844000px;}
.v11{vertical-align:47.820000px;}
.ls1d{letter-spacing:-1.022040px;}
.ls1f{letter-spacing:-0.199298px;}
.ls21{letter-spacing:-0.163526px;}
.ls1b{letter-spacing:-0.097094px;}
.ls15{letter-spacing:-0.077326px;}
.ls17{letter-spacing:-0.045992px;}
.ls1c{letter-spacing:-0.040882px;}
.ls20{letter-spacing:-0.035771px;}
.ls18{letter-spacing:-0.025551px;}
.ls1e{letter-spacing:-0.020441px;}
.ls16{letter-spacing:-0.015331px;}
.ls14{letter-spacing:-0.012209px;}
.ls1a{letter-spacing:-0.010220px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls35{letter-spacing:0.000800px;}
.ls37{letter-spacing:0.001036px;}
.ls36{letter-spacing:0.002544px;}
.ls2{letter-spacing:0.004200px;}
.ls38{letter-spacing:0.004800px;}
.ls11{letter-spacing:0.005110px;}
.lsb{letter-spacing:0.010220px;}
.ls12{letter-spacing:0.015331px;}
.lsa{letter-spacing:0.025551px;}
.lse{letter-spacing:0.035771px;}
.lsc{letter-spacing:0.040882px;}
.lsd{letter-spacing:0.051102px;}
.lsf{letter-spacing:0.071543px;}
.ls10{letter-spacing:0.102204px;}
.ls9{letter-spacing:0.142443px;}
.ls8{letter-spacing:0.154652px;}
.ls28{letter-spacing:0.497764px;}
.ls24{letter-spacing:0.503764px;}
.ls2d{letter-spacing:0.520348px;}
.ls29{letter-spacing:2.984100px;}
.ls2b{letter-spacing:2.990100px;}
.ls19{letter-spacing:5.278837px;}
.ls25{letter-spacing:10.455403px;}
.ls2a{letter-spacing:10.458600px;}
.ls0{letter-spacing:10.461300px;}
.ls23{letter-spacing:10.461403px;}
.ls2c{letter-spacing:10.464600px;}
.ls2f{letter-spacing:10.476190px;}
.ls2e{letter-spacing:10.621283px;}
.ls30{letter-spacing:10.625808px;}
.ls22{letter-spacing:10.961764px;}
.ls26{letter-spacing:10.967764px;}
.ls27{letter-spacing:10.986600px;}
.ls6{letter-spacing:11.954850px;}
.ls3f{letter-spacing:13.404422px;}
.ls31{letter-spacing:13.448400px;}
.ls33{letter-spacing:13.454400px;}
.ls3b{letter-spacing:13.456933px;}
.ls3e{letter-spacing:13.809224px;}
.ls3a{letter-spacing:13.909224px;}
.ls3d{letter-spacing:15.773929px;}
.ls3c{letter-spacing:16.344518px;}
.ls39{letter-spacing:17.038635px;}
.ls40{letter-spacing:19.326871px;}
.ls34{letter-spacing:19.579812px;}
.ls32{letter-spacing:20.850400px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.355200px;}
.ls13{letter-spacing:126.318643px;}
.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;}
}
.ws72{word-spacing:-109.982006px;}
.ws4d{word-spacing:-109.975334px;}
.ws71{word-spacing:-107.005018px;}
.ws74{word-spacing:-103.346726px;}
.ws4e{word-spacing:-96.729523px;}
.ws4f{word-spacing:-96.536381px;}
.ws70{word-spacing:-96.532579px;}
.ws73{word-spacing:-96.531254px;}
.ws75{word-spacing:-96.531053px;}
.ws82{word-spacing:-14.943900px;}
.wsbd{word-spacing:-13.449600px;}
.ws28{word-spacing:-11.955150px;}
.wsb{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws49{word-spacing:-10.329152px;}
.ws4a{word-spacing:-10.174500px;}
.ws80{word-spacing:-4.483170px;}
.wse5{word-spacing:-2.905114px;}
.ws1b{word-spacing:-2.689902px;}
.ws2c{word-spacing:-2.570351px;}
.wsb5{word-spacing:-2.331248px;}
.wsa7{word-spacing:-2.032370px;}
.ws3b{word-spacing:-1.793268px;}
.wsb4{word-spacing:-1.733492px;}
.ws46{word-spacing:-1.554166px;}
.ws81{word-spacing:-1.494390px;}
.wse8{word-spacing:-1.452557px;}
.ws2a{word-spacing:-1.434614px;}
.wsed{word-spacing:-1.398758px;}
.wsfa{word-spacing:-0.914573px;}
.ws21{word-spacing:-0.836858px;}
.wsdb{word-spacing:-0.806976px;}
.ws34{word-spacing:-0.657532px;}
.ws35{word-spacing:-0.478205px;}
.ws91{word-spacing:-0.460271px;}
.ws76{word-spacing:-0.382565px;}
.ws1e{word-spacing:-0.358654px;}
.ws60{word-spacing:-0.332163px;}
.ws1f{word-spacing:-0.298878px;}
.ws13{word-spacing:-0.268992px;}
.ws3a{word-spacing:-0.239102px;}
.ws6f{word-spacing:-0.219739px;}
.wsd8{word-spacing:-0.215194px;}
.ws53{word-spacing:-0.183967px;}
.ws36{word-spacing:-0.179327px;}
.ws9d{word-spacing:-0.167371px;}
.ws17{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws50{word-spacing:-0.065117px;}
.wsc{word-spacing:-0.059776px;}
.wseb{word-spacing:-0.057324px;}
.ws10{word-spacing:-0.053798px;}
.ws4b{word-spacing:-0.051102px;}
.ws7a{word-spacing:-0.047821px;}
.wsf3{word-spacing:-0.009571px;}
.wsdc{word-spacing:-0.005971px;}
.wsc0{word-spacing:-0.004512px;}
.wsee{word-spacing:-0.003466px;}
.wsfc{word-spacing:-0.003014px;}
.wsf8{word-spacing:-0.000326px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:0.001225px;}
.wsd{word-spacing:0.002066px;}
.ws5f{word-spacing:0.005110px;}
.ws9b{word-spacing:0.021392px;}
.ws5e{word-spacing:0.040882px;}
.ws9f{word-spacing:0.041843px;}
.ws6e{word-spacing:0.051102px;}
.ws42{word-spacing:0.053798px;}
.ws29{word-spacing:0.059776px;}
.wsec{word-spacing:0.084994px;}
.ws52{word-spacing:0.091984px;}
.ws78{word-spacing:0.095641px;}
.wsc5{word-spacing:0.107597px;}
.ws23{word-spacing:0.119551px;}
.ws8f{word-spacing:0.125528px;}
.ws9c{word-spacing:0.153978px;}
.ws14{word-spacing:0.161395px;}
.ws9a{word-spacing:0.167371px;}
.ws1a{word-spacing:0.179327px;}
.ws8d{word-spacing:0.209214px;}
.ws11{word-spacing:0.215194px;}
.ws26{word-spacing:0.239102px;}
.wsbc{word-spacing:0.268992px;}
.ws33{word-spacing:0.298878px;}
.wsd2{word-spacing:0.322790px;}
.ws38{word-spacing:0.358654px;}
.wsd1{word-spacing:0.376589px;}
.ws31{word-spacing:0.478205px;}
.wsd9{word-spacing:0.484186px;}
.ws95{word-spacing:0.522247px;}
.ws93{word-spacing:0.522302px;}
.ws8c{word-spacing:0.522910px;}
.ws8b{word-spacing:0.524400px;}
.ws94{word-spacing:0.525604px;}
.wsb8{word-spacing:0.537980px;}
.wse9{word-spacing:0.537984px;}
.ws2b{word-spacing:0.657532px;}
.wsbe{word-spacing:0.699379px;}
.ws6c{word-spacing:0.715428px;}
.ws30{word-spacing:0.717307px;}
.ws64{word-spacing:0.730759px;}
.wsa2{word-spacing:0.777083px;}
.wsb7{word-spacing:0.836858px;}
.ws6d{word-spacing:0.853403px;}
.wsa0{word-spacing:0.860771px;}
.wsb1{word-spacing:1.135736px;}
.wsb0{word-spacing:1.195512px;}
.wsaa{word-spacing:1.315063px;}
.wsc9{word-spacing:1.343021px;}
.ws12{word-spacing:1.344960px;}
.wsda{word-spacing:1.348870px;}
.ws9{word-spacing:1.380812px;}
.ws79{word-spacing:1.386797px;}
.wsb2{word-spacing:1.434614px;}
.wsae{word-spacing:1.494390px;}
.ws59{word-spacing:1.604603px;}
.ws5c{word-spacing:1.619933px;}
.ws5d{word-spacing:1.625044px;}
.ws65{word-spacing:1.711917px;}
.wse3{word-spacing:1.775347px;}
.wsa6{word-spacing:1.793268px;}
.wse2{word-spacing:1.829146px;}
.ws32{word-spacing:1.853044px;}
.ws61{word-spacing:1.870333px;}
.wsea{word-spacing:1.882944px;}
.wsab{word-spacing:1.912819px;}
.ws66{word-spacing:1.931656px;}
.ws22{word-spacing:1.972595px;}
.wse6{word-spacing:1.990541px;}
.ws20{word-spacing:2.032370px;}
.ws45{word-spacing:2.092146px;}
.ws15{word-spacing:2.098138px;}
.wsa1{word-spacing:2.151922px;}
.wse0{word-spacing:2.259533px;}
.wsa3{word-spacing:2.271473px;}
.wse4{word-spacing:2.313331px;}
.ws2e{word-spacing:2.331248px;}
.ws67{word-spacing:2.417125px;}
.wsa5{word-spacing:2.450800px;}
.ws58{word-spacing:2.483557px;}
.ws56{word-spacing:2.498888px;}
.ws2{word-spacing:2.508059px;}
.ws8a{word-spacing:2.510568px;}
.ws41{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws57{word-spacing:2.514218px;}
.ws1c{word-spacing:2.570351px;}
.wsf{word-spacing:2.582323px;}
.wsd3{word-spacing:2.585355px;}
.ws1d{word-spacing:2.630126px;}
.wsd4{word-spacing:2.851315px;}
.ws27{word-spacing:2.869236px;}
.wse1{word-spacing:2.905114px;}
.wsa4{word-spacing:2.988780px;}
.wsf6{word-spacing:3.012710px;}
.ws2d{word-spacing:3.168107px;}
.wsc3{word-spacing:3.218851px;}
.wsbf{word-spacing:3.221088px;}
.wsc7{word-spacing:3.221587px;}
.wsf9{word-spacing:3.222432px;}
.wsf0{word-spacing:3.223411px;}
.wsf1{word-spacing:3.224592px;}
.wsbb{word-spacing:3.224822px;}
.wsf5{word-spacing:3.225245px;}
.wsfd{word-spacing:3.225274px;}
.wsde{word-spacing:3.226800px;}
.wsc4{word-spacing:3.227904px;}
.wsd0{word-spacing:3.229498px;}
.wsfb{word-spacing:3.230986px;}
.wsdf{word-spacing:3.281702px;}
.wsac{word-spacing:3.347434px;}
.wscb{word-spacing:3.389299px;}
.wsc6{word-spacing:3.496896px;}
.ws18{word-spacing:3.510951px;}
.ws3f{word-spacing:3.526760px;}
.ws19{word-spacing:3.586536px;}
.wsd6{word-spacing:3.604493px;}
.wsb9{word-spacing:3.646312px;}
.wsa8{word-spacing:3.706087px;}
.ws48{word-spacing:3.765863px;}
.wsca{word-spacing:3.765888px;}
.wscf{word-spacing:3.819686px;}
.ws2f{word-spacing:3.825638px;}
.wsdd{word-spacing:3.873485px;}
.wsf2{word-spacing:3.927283px;}
.ws7c{word-spacing:3.945190px;}
.ws5b{word-spacing:4.001287px;}
.wsb3{word-spacing:4.004965px;}
.ws5a{word-spacing:4.062609px;}
.wsd7{word-spacing:4.142477px;}
.ws24{word-spacing:4.244068px;}
.wsba{word-spacing:4.250074px;}
.ws6a{word-spacing:4.343670px;}
.ws6b{word-spacing:4.384552px;}
.wse7{word-spacing:4.411469px;}
.wsa9{word-spacing:4.483170px;}
.wsef{word-spacing:4.626662px;}
.ws47{word-spacing:4.662497px;}
.ws39{word-spacing:4.722272px;}
.ws37{word-spacing:4.782048px;}
.ws77{word-spacing:4.829881px;}
.wscc{word-spacing:4.841856px;}
.wsc8{word-spacing:4.895654px;}
.ws7e{word-spacing:4.901599px;}
.ws7f{word-spacing:4.961375px;}
.wsad{word-spacing:5.021150px;}
.wsf7{word-spacing:5.433638px;}
.ws7b{word-spacing:5.439580px;}
.ws7{word-spacing:5.481407px;}
.ws83{word-spacing:5.858009px;}
.wsc1{word-spacing:5.864026px;}
.ws3e{word-spacing:5.977560px;}
.wsce{word-spacing:6.133018px;}
.wsaf{word-spacing:6.156887px;}
.wsf4{word-spacing:6.186816px;}
.ws40{word-spacing:6.216662px;}
.ws43{word-spacing:6.276438px;}
.ws68{word-spacing:6.489954px;}
.ws69{word-spacing:6.535946px;}
.ws7d{word-spacing:6.575316px;}
.ws84{word-spacing:6.814418px;}
.wsb6{word-spacing:6.993745px;}
.ws62{word-spacing:7.108288px;}
.ws3c{word-spacing:7.113296px;}
.ws63{word-spacing:7.210492px;}
.wsc2{word-spacing:7.424179px;}
.ws3d{word-spacing:8.069706px;}
.wse{word-spacing:8.586508px;}
.ws55{word-spacing:8.646458px;}
.ws54{word-spacing:8.672009px;}
.ws5{word-spacing:9.833058px;}
.ws51{word-spacing:9.877405px;}
.ws44{word-spacing:10.221628px;}
.ws6{word-spacing:11.841512px;}
.wsd5{word-spacing:12.158438px;}
.wscd{word-spacing:18.237658px;}
.ws4{word-spacing:22.339429px;}
.ws8{word-spacing:22.720640px;}
.ws4c{word-spacing:112.869043px;}
.ws98{word-spacing:152.076820px;}
.ws96{word-spacing:163.122820px;}
.ws92{word-spacing:190.428098px;}
.ws90{word-spacing:208.559150px;}
.ws88{word-spacing:223.619857px;}
.ws97{word-spacing:247.804127px;}
.ws87{word-spacing:255.028697px;}
.ws8e{word-spacing:259.624127px;}
.ws99{word-spacing:266.757155px;}
.ws9e{word-spacing:321.386125px;}
.ws89{word-spacing:388.335644px;}
.ws86{word-spacing:403.193700px;}
.ws85{word-spacing:1163.168798px;}
._28{margin-left:-22.057344px;}
._29{margin-left:-13.718592px;}
._3a{margin-left:-7.352399px;}
._8{margin-left:-6.168857px;}
._d{margin-left:-5.021150px;}
._0{margin-left:-3.054524px;}
._3{margin-left:-1.464498px;}
._4{width:1.210483px;}
._6{width:2.997246px;}
._f{width:11.955150px;}
._1{width:12.971268px;}
._b{width:14.077150px;}
._2c{width:15.469878px;}
._9{width:16.623706px;}
._20{width:17.723461px;}
._c{width:18.829314px;}
._2b{width:19.965050px;}
._12{width:21.041011px;}
._14{width:22.110834px;}
._a{width:23.348506px;}
._36{width:24.388445px;}
._2{width:25.944936px;}
._16{width:27.448971px;}
._37{width:29.110717px;}
._13{width:30.724658px;}
._e{width:31.740844px;}
._5{width:33.355008px;}
._38{width:34.400854px;}
._3c{width:35.467503px;}
._15{width:36.941321px;}
._3b{width:40.766959px;}
._27{width:44.276083px;}
._7{width:54.405834px;}
._26{width:56.219328px;}
._3d{width:61.868160px;}
._1c{width:87.368102px;}
._24{width:102.324557px;}
._23{width:113.030438px;}
._33{width:127.915296px;}
._1e{width:149.289302px;}
._31{width:157.891420px;}
._2a{width:163.080850px;}
._25{width:169.313818px;}
._32{width:173.101074px;}
._2f{width:175.141434px;}
._30{width:178.585949px;}
._35{width:185.918459px;}
._1b{width:187.702618px;}
._22{width:233.269862px;}
._34{width:268.714462px;}
._17{width:406.913139px;}
._1d{width:458.068320px;}
._2e{width:467.707636px;}
._1a{width:470.301763px;}
._1f{width:568.392509px;}
._19{width:640.900339px;}
._18{width:678.505421px;}
._10{width:734.744162px;}
._21{width:1512.264988px;}
._39{width:2231.907937px;}
._11{width:2255.817937px;}
._2d{width:3733.797937px;}
.fc3{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc2{color:rgb(193,47,40);}
.fc1{color:rgb(31,27,28);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs9{font-size:40.698000px;}
.fs0{font-size:41.842800px;}
.fs1{font-size:43.407276px;}
.fsb{font-size:43.600200px;}
.fs5{font-size:45.429600px;}
.fs7{font-size:47.820600px;}
.fsa{font-size:51.102000px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:54.472928px;}
.fs3{font-size:59.775600px;}
.fs4{font-size:107.596800px;}
.yd2{bottom:-1.039872px;}
.y0{bottom:0.000000px;}
.y19{bottom:6.970601px;}
.y18{bottom:22.089161px;}
.y47{bottom:31.890000px;}
.y17{bottom:37.455004px;}
.y15{bottom:104.646000px;}
.y10f{bottom:108.553500px;}
.y2ba{bottom:115.113000px;}
.y7c{bottom:117.355500px;}
.ydb{bottom:118.228500px;}
.y46{bottom:119.998500px;}
.y14{bottom:122.535000px;}
.y10e{bottom:127.383000px;}
.yb0{bottom:128.262000px;}
.y2e6{bottom:132.867000px;}
.y31c{bottom:133.719000px;}
.y2b9{bottom:133.942500px;}
.y7b{bottom:136.185000px;}
.y45{bottom:138.828000px;}
.y13{bottom:140.422500px;}
.yda{bottom:141.868500px;}
.y10d{bottom:146.212500px;}
.yaf{bottom:147.091500px;}
.y2e5{bottom:150.127500px;}
.y31b{bottom:150.978000px;}
.y2b8{bottom:152.772000px;}
.y7a{bottom:155.013000px;}
.y44{bottom:157.657500px;}
.y12{bottom:158.310000px;}
.y1b6{bottom:159.733500px;}
.y1b3{bottom:164.217000px;}
.y10c{bottom:165.042000px;}
.yd9{bottom:165.510000px;}
.yae{bottom:165.921000px;}
.y2e4{bottom:167.388000px;}
.y31a{bottom:168.238500px;}
.y1b7{bottom:168.826500px;}
.y2b7{bottom:171.601500px;}
.y1a6{bottom:171.690000px;}
.y1b2{bottom:176.172000px;}
.y11{bottom:176.199000px;}
.y43{bottom:176.487000px;}
.y79{bottom:178.326000px;}
.y1aa{bottom:179.161500px;}
.y1a5{bottom:183.645000px;}
.y10b{bottom:183.871500px;}
.y2e3{bottom:184.648500px;}
.yad{bottom:184.750500px;}
.y319{bottom:185.499000px;}
.y1b1{bottom:188.127000px;}
.yd8{bottom:189.150000px;}
.y1b5{bottom:189.622500px;}
.y2b6{bottom:190.431000px;}
.y1a1{bottom:190.872000px;}
.y1a9{bottom:191.116500px;}
.y10{bottom:194.086500px;}
.y42{bottom:195.316500px;}
.y1a4{bottom:195.600000px;}
.y1b4{bottom:197.413500px;}
.y1ad{bottom:198.267000px;}
.y234{bottom:199.740000px;}
.y1b0{bottom:200.083500px;}
.y2e2{bottom:201.907500px;}
.y10a{bottom:202.701000px;}
.y318{bottom:202.759500px;}
.y1a0{bottom:202.827000px;}
.y1a8{bottom:203.071500px;}
.yac{bottom:203.580000px;}
.y1a3{bottom:207.555000px;}
.y2b5{bottom:209.260500px;}
.y1ac{bottom:210.222000px;}
.y233{bottom:211.695000px;}
.y78{bottom:211.950000px;}
.yf{bottom:211.974000px;}
.y1af{bottom:212.038500px;}
.yd7{bottom:212.791500px;}
.y41{bottom:214.146000px;}
.y21e{bottom:214.684500px;}
.y1a7{bottom:215.026500px;}
.y2e1{bottom:219.168000px;}
.y1a2{bottom:219.510000px;}
.y317{bottom:220.020000px;}
.y236{bottom:220.662000px;}
.y109{bottom:221.530500px;}
.y1ab{bottom:222.177000px;}
.yab{bottom:222.409500px;}
.y232{bottom:223.650000px;}
.y1ae{bottom:223.993500px;}
.y21d{bottom:226.639500px;}
.y2b4{bottom:228.090000px;}
.ye{bottom:229.863000px;}
.y77{bottom:230.779500px;}
.y22a{bottom:232.617000px;}
.y40{bottom:232.975500px;}
.y231{bottom:235.605000px;}
.y2e0{bottom:236.428500px;}
.y223{bottom:237.100500px;}
.y316{bottom:237.280500px;}
.y21c{bottom:238.594500px;}
.y108{bottom:240.360000px;}
.yaa{bottom:241.239000px;}
.yd6{bottom:244.410000px;}
.y229{bottom:244.572000px;}
.y2b3{bottom:246.919500px;}
.y191{bottom:247.438500px;}
.y230{bottom:247.561500px;}
.y222{bottom:249.055500px;}
.y76{bottom:249.609000px;}
.y21b{bottom:250.549500px;}
.y3f{bottom:251.805000px;}
.y19e{bottom:251.922000px;}
.y216{bottom:253.294500px;}
.y2df{bottom:253.689000px;}
.y315{bottom:254.541000px;}
.y226{bottom:256.527000px;}
.y107{bottom:259.189500px;}
.y190{bottom:259.393500px;}
.y22f{bottom:259.516500px;}
.y19f{bottom:260.583000px;}
.y195{bottom:260.991000px;}
.y221{bottom:261.010500px;}
.y21a{bottom:262.504500px;}
.y19d{bottom:263.877000px;}
.ya9{bottom:264.550500px;}
.y215{bottom:265.249500px;}
.y2b2{bottom:265.749000px;}
.y228{bottom:268.482000px;}
.y198{bottom:269.854500px;}
.y3e{bottom:270.634500px;}
.y2de{bottom:270.949500px;}
.y18f{bottom:271.348500px;}
.y22e{bottom:271.471500px;}
.y314{bottom:271.801500px;}
.y75{bottom:272.922000px;}
.y194{bottom:272.946000px;}
.y220{bottom:272.965500px;}
.y219{bottom:274.459500px;}
.y18b{bottom:274.680000px;}
.y19c{bottom:275.832000px;}
.y106{bottom:278.019000px;}
.y227{bottom:280.437000px;}
.yd5{bottom:281.514000px;}
.y197{bottom:281.809500px;}
.y225{bottom:282.357000px;}
.y18e{bottom:283.303500px;}
.y22d{bottom:283.426500px;}
.y2b1{bottom:284.578500px;}
.y193{bottom:284.901000px;}
.y21f{bottom:284.920500px;}
.y218{bottom:286.414500px;}
.y18a{bottom:286.635000px;}
.y19b{bottom:287.787000px;}
.y2dd{bottom:288.210000px;}
.y313{bottom:289.062000px;}
.y3d{bottom:289.464000px;}
.y28a{bottom:291.447000px;}
.y235{bottom:292.393500px;}
.y74{bottom:293.095500px;}
.y224{bottom:294.312000px;}
.y18d{bottom:295.258500px;}
.y22c{bottom:295.381500px;}
.y196{bottom:296.431500px;}
.y105{bottom:296.848500px;}
.y192{bottom:296.856000px;}
.yd{bottom:297.166500px;}
.ya8{bottom:298.174500px;}
.y217{bottom:298.371000px;}
.y19a{bottom:299.742000px;}
.y2b0{bottom:303.408000px;}
.yd4{bottom:304.827000px;}
.y2dc{bottom:305.470500px;}
.y289{bottom:305.643000px;}
.y312{bottom:306.321000px;}
.y18c{bottom:307.213500px;}
.y22b{bottom:307.336500px;}
.y3c{bottom:308.293500px;}
.y199{bottom:311.697000px;}
.yc{bottom:315.054000px;}
.y104{bottom:315.678000px;}
.ya7{bottom:317.004000px;}
.y31f{bottom:319.024500px;}
.y288{bottom:319.840500px;}
.y2af{bottom:322.237500px;}
.y2db{bottom:322.731000px;}
.y311{bottom:323.581500px;}
.y73{bottom:326.719500px;}
.y3b{bottom:327.123000px;}
.y20c{bottom:332.374500px;}
.yb{bottom:332.943000px;}
.y103{bottom:334.507500px;}
.yd3{bottom:335.254500px;}
.y213{bottom:335.364000px;}
.y187{bottom:335.428500px;}
.ya6{bottom:335.833500px;}
.y31e{bottom:336.285000px;}
.y1ff{bottom:338.352000px;}
.y214{bottom:338.695500px;}
.y26f{bottom:339.409500px;}
.y2da{bottom:339.991500px;}
.y310{bottom:340.842000px;}
.y2ae{bottom:341.067000px;}
.y20b{bottom:344.329500px;}
.y72{bottom:345.549000px;}
.y204{bottom:345.823500px;}
.y3a{bottom:345.952500px;}
.y286{bottom:346.881000px;}
.y212{bottom:347.319000px;}
.y186{bottom:347.383500px;}
.y1fe{bottom:350.307000px;}
.ya{bottom:350.830500px;}
.y26e{bottom:351.364500px;}
.y287{bottom:351.481500px;}
.y102{bottom:353.337000px;}
.y17c{bottom:353.361000px;}
.y31d{bottom:353.544000px;}
.y277{bottom:354.352500px;}
.ya5{bottom:354.663000px;}
.y172{bottom:355.092000px;}
.y20a{bottom:356.284500px;}
.y2d9{bottom:357.250500px;}
.y280{bottom:357.342000px;}
.ybb{bottom:357.683873px;}
.y203{bottom:357.780000px;}
.y30f{bottom:358.102500px;}
.y285{bottom:358.836000px;}
.y211{bottom:359.274000px;}
.y185{bottom:359.338500px;}
.y2ad{bottom:359.896500px;}
.y189{bottom:360.114000px;}
.y1fd{bottom:362.262000px;}
.y26d{bottom:363.319500px;}
.y176{bottom:363.925500px;}
.y71{bottom:364.378500px;}
.y39{bottom:364.780500px;}
.y1f9{bottom:364.848000px;}
.y27c{bottom:365.133000px;}
.y17b{bottom:365.316000px;}
.y276{bottom:366.309000px;}
.y171{bottom:367.047000px;}
.y209{bottom:368.239500px;}
.y27f{bottom:369.297000px;}
.y202{bottom:369.735000px;}
.y284{bottom:370.791000px;}
.y20d{bottom:371.229000px;}
.y184{bottom:371.295000px;}
.y17e{bottom:371.613000px;}
.y268{bottom:371.881500px;}
.y101{bottom:372.166500px;}
.y279{bottom:372.604500px;}
.ya4{bottom:373.492500px;}
.y1fc{bottom:374.217000px;}
.y2d8{bottom:374.511000px;}
.y26c{bottom:375.274500px;}
.y30e{bottom:375.363000px;}
.y175{bottom:375.880500px;}
.y1f8{bottom:376.803000px;}
.y27b{bottom:377.088000px;}
.y17a{bottom:377.272500px;}
.y275{bottom:378.264000px;}
.y16d{bottom:378.363000px;}
.y2ac{bottom:378.726000px;}
.y170{bottom:379.002000px;}
.y9{bottom:379.179000px;}
.y208{bottom:380.196000px;}
.y27e{bottom:381.252000px;}
.y201{bottom:381.690000px;}
.y283{bottom:382.746000px;}
.y210{bottom:383.184000px;}
.y70{bottom:383.208000px;}
.y183{bottom:383.250000px;}
.y17d{bottom:383.568000px;}
.y38{bottom:383.610000px;}
.y267{bottom:383.838000px;}
.y278{bottom:384.559500px;}
.y205{bottom:385.104000px;}
.y1fb{bottom:386.173500px;}
.y26b{bottom:387.229500px;}
.y272{bottom:387.655500px;}
.y174{bottom:387.835500px;}
.y27a{bottom:389.043000px;}
.y179{bottom:389.227500px;}
.y274{bottom:390.219000px;}
.y16c{bottom:390.318000px;}
.y16f{bottom:390.957000px;}
.y100{bottom:390.996000px;}
.y2d7{bottom:391.771500px;}
.y207{bottom:392.151000px;}
.ya3{bottom:392.322000px;}
.y30d{bottom:392.623500px;}
.y27d{bottom:393.207000px;}
.y200{bottom:393.645000px;}
.y282{bottom:394.702500px;}
.y20f{bottom:395.139000px;}
.y182{bottom:395.205000px;}
.y8{bottom:397.066500px;}
.y2ab{bottom:397.555500px;}
.y1fa{bottom:398.128500px;}
.y26a{bottom:399.184500px;}
.y271{bottom:399.610500px;}
.y173{bottom:399.792000px;}
.y178{bottom:401.182500px;}
.y6f{bottom:402.037500px;}
.y273{bottom:402.174000px;}
.y37{bottom:402.439500px;}
.y16e{bottom:402.912000px;}
.y206{bottom:404.106000px;}
.y281{bottom:406.657500px;}
.y20e{bottom:407.094000px;}
.y181{bottom:407.160000px;}
.y2d6{bottom:409.032000px;}
.yff{bottom:409.825500px;}
.y30c{bottom:409.884000px;}
.y269{bottom:411.141000px;}
.ya2{bottom:411.151500px;}
.y270{bottom:411.565500px;}
.y188{bottom:413.137500px;}
.y2aa{bottom:416.383500px;}
.y177{bottom:417.298500px;}
.y180{bottom:419.115000px;}
.y6e{bottom:420.867000px;}
.y36{bottom:421.269000px;}
.y7{bottom:423.921000px;}
.y2d5{bottom:426.292500px;}
.y30b{bottom:427.144500px;}
.y1f5{bottom:427.620000px;}
.yfe{bottom:428.655000px;}
.y17f{bottom:431.070000px;}
.y25e{bottom:434.035500px;}
.ya1{bottom:434.464500px;}
.y2a9{bottom:435.213000px;}
.y1f4{bottom:439.575000px;}
.y6d{bottom:439.696500px;}
.y35{bottom:440.098500px;}
.y6{bottom:441.810000px;}
.y2d4{bottom:443.553000px;}
.y30a{bottom:444.403500px;}
.y25d{bottom:445.990500px;}
.yfd{bottom:447.484500px;}
.y265{bottom:448.978500px;}
.y266{bottom:451.150500px;}
.y1f3{bottom:451.530000px;}
.y2a8{bottom:454.042500px;}
.y1ec{bottom:454.519500px;}
.y249{bottom:454.956000px;}
.y250{bottom:456.451500px;}
.y25c{bottom:457.945500px;}
.y6c{bottom:458.526000px;}
.y34{bottom:458.928000px;}
.y165{bottom:459.186000px;}
.y5{bottom:459.697500px;}
.y2d3{bottom:460.813500px;}
.y1f7{bottom:460.840500px;}
.y264{bottom:460.933500px;}
.y309{bottom:461.664000px;}
.y1f6{bottom:463.485000px;}
.y1e3{bottom:463.486500px;}
.yfc{bottom:466.314000px;}
.y1eb{bottom:466.474500px;}
.y248{bottom:466.912500px;}
.y24f{bottom:468.406500px;}
.y25b{bottom:469.900500px;}
.y254{bottom:470.220000px;}
.y164{bottom:471.141000px;}
.y2a7{bottom:472.872000px;}
.y263{bottom:472.890000px;}
.y15c{bottom:474.450000px;}
.y256{bottom:474.703500px;}
.y1e2{bottom:475.441500px;}
.y6b{bottom:477.355500px;}
.y4{bottom:477.585000px;}
.y1ea{bottom:478.429500px;}
.y16a{bottom:478.614000px;}
.y247{bottom:478.867500px;}
.y308{bottom:478.924500px;}
.y16b{bottom:478.966500px;}
.y9f{bottom:479.776500px;}
.y243{bottom:479.958000px;}
.y1ef{bottom:480.243000px;}
.y24e{bottom:480.361500px;}
.y1ee{bottom:481.737000px;}
.y251{bottom:481.855500px;}
.y253{bottom:482.175000px;}
.y33{bottom:482.241000px;}
.y2d2{bottom:482.556000px;}
.y163{bottom:483.096000px;}
.y262{bottom:484.845000px;}
.yfb{bottom:485.143500px;}
.y1de{bottom:485.497500px;}
.y148{bottom:486.189000px;}
.y15b{bottom:486.405000px;}
.y255{bottom:486.658500px;}
.y1e1{bottom:487.396500px;}
.y9e{bottom:487.996500px;}
.y153{bottom:489.073500px;}
.y1e9{bottom:490.384500px;}
.y169{bottom:490.569000px;}
.y246{bottom:490.822500px;}
.y2a6{bottom:491.701500px;}
.y242{bottom:491.913000px;}
.y14c{bottom:492.166500px;}
.y24d{bottom:492.316500px;}
.y1ed{bottom:493.693500px;}
.y25a{bottom:493.810500px;}
.y252{bottom:494.130000px;}
.y162{bottom:495.052500px;}
.y3{bottom:495.474000px;}
.y6a{bottom:496.185000px;}
.ya0{bottom:496.215000px;}
.y261{bottom:496.800000px;}
.y1dd{bottom:497.452500px;}
.y147{bottom:498.144000px;}
.y15a{bottom:498.360000px;}
.y1e0{bottom:499.351500px;}
.y152{bottom:501.030000px;}
.y24c{bottom:501.708000px;}
.y1e8{bottom:502.339500px;}
.y168{bottom:502.524000px;}
.y245{bottom:502.777500px;}
.y143{bottom:503.614500px;}
.yfa{bottom:503.973000px;}
.y14b{bottom:504.121500px;}
.y155{bottom:504.280500px;}
.y259{bottom:505.765500px;}
.y161{bottom:507.007500px;}
.y260{bottom:508.755000px;}
.y146{bottom:510.099000px;}
.y154{bottom:510.259500px;}
.y159{bottom:510.315000px;}
.y2a5{bottom:510.531000px;}
.y1df{bottom:511.306500px;}
.y151{bottom:512.985000px;}
.y2{bottom:513.361500px;}
.y307{bottom:513.445500px;}
.y24b{bottom:513.663000px;}
.y1e7{bottom:514.296000px;}
.y167{bottom:514.479000px;}
.y244{bottom:514.732500px;}
.y69{bottom:515.014500px;}
.y142{bottom:515.569500px;}
.y14a{bottom:516.076500px;}
.y2d1{bottom:516.180000px;}
.y258{bottom:517.722000px;}
.y1e6{bottom:518.457000px;}
.y160{bottom:518.962500px;}
.y9c{bottom:519.856500px;}
.y25f{bottom:520.710000px;}
.y145{bottom:522.054000px;}
.y158{bottom:522.270000px;}
.yf9{bottom:522.802500px;}
.y150{bottom:523.123500px;}
.y1f2{bottom:523.261500px;}
.y24a{bottom:525.618000px;}
.y166{bottom:526.434000px;}
.y149{bottom:528.031500px;}
.y9b{bottom:528.075000px;}
.y2a4{bottom:529.360500px;}
.y257{bottom:529.677000px;}
.y1e5{bottom:530.412000px;}
.y306{bottom:530.706000px;}
.y15f{bottom:530.917500px;}
.y1{bottom:531.249000px;}
.yd1{bottom:532.318090px;}
.y68{bottom:533.844000px;}
.y144{bottom:534.009000px;}
.y157{bottom:534.225000px;}
.y14f{bottom:535.078500px;}
.y1f1{bottom:535.216500px;}
.y9d{bottom:536.295000px;}
.yf8{bottom:541.632000px;}
.y1e4{bottom:542.367000px;}
.y2d0{bottom:542.721000px;}
.y15e{bottom:542.872500px;}
.y156{bottom:546.180000px;}
.y14e{bottom:547.033500px;}
.y1f0{bottom:547.171500px;}
.y305{bottom:547.966500px;}
.y2a3{bottom:548.190000px;}
.yd0{bottom:548.688615px;}
.y67{bottom:552.673500px;}
.y15d{bottom:554.827500px;}
.y23f{bottom:555.643500px;}
.y32{bottom:557.391000px;}
.y14d{bottom:558.988500px;}
.y9a{bottom:559.935000px;}
.yf7{bottom:560.461500px;}
.ycf{bottom:565.059141px;}
.y304{bottom:565.227000px;}
.y2a2{bottom:567.019500px;}
.y23e{bottom:567.598500px;}
.y1db{bottom:567.600000px;}
.y2cf{bottom:569.262000px;}
.y66{bottom:571.503000px;}
.y99{bottom:576.373500px;}
.y1cf{bottom:578.059500px;}
.y12b{bottom:578.244000px;}
.yf6{bottom:579.291000px;}
.y1da{bottom:579.555000px;}
.yce{bottom:581.353014px;}
.y241{bottom:582.049500px;}
.y303{bottom:582.487500px;}
.y1c0{bottom:585.532500px;}
.y140{bottom:585.715500px;}
.y2a1{bottom:585.849000px;}
.y240{bottom:588.520500px;}
.y1ce{bottom:590.014500px;}
.y12a{bottom:590.199000px;}
.y65{bottom:590.332500px;}
.y1d9{bottom:591.510000px;}
.y1dc{bottom:591.853500px;}
.y98{bottom:592.812000px;}
.y138{bottom:593.188500px;}
.y23d{bottom:594.498000px;}
.y31{bottom:594.781500px;}
.y141{bottom:594.846000px;}
.y2ce{bottom:595.801500px;}
.y1bf{bottom:597.487500px;}
.y13f{bottom:597.670500px;}
.ycd{bottom:597.723539px;}
.y122{bottom:597.774000px;}
.yf5{bottom:598.119000px;}
.y302{bottom:599.746500px;}
.y1c5{bottom:600.475500px;}
.y94{bottom:601.030500px;}
.y1cd{bottom:601.971000px;}
.y129{bottom:602.154000px;}
.y1d8{bottom:603.465000px;}
.y2a0{bottom:604.678500px;}
.y137{bottom:605.143500px;}
.y23c{bottom:606.453000px;}
.y64{bottom:609.162000px;}
.y97{bottom:609.250500px;}
.y1be{bottom:609.442500px;}
.y13e{bottom:609.625500px;}
.y121{bottom:609.729000px;}
.y1c4{bottom:612.430500px;}
.y2cd{bottom:613.375500px;}
.y238{bottom:613.681500px;}
.y1cc{bottom:613.926000px;}
.ycc{bottom:614.017412px;}
.y128{bottom:614.109000px;}
.y30{bottom:614.238000px;}
.y11c{bottom:614.344500px;}
.y12e{bottom:614.503500px;}
.y1d7{bottom:615.420000px;}
.y1d1{bottom:615.739500px;}
.y131{bottom:615.867000px;}
.y301{bottom:617.007000px;}
.y136{bottom:617.098500px;}
.y1b9{bottom:618.165000px;}
.y23b{bottom:618.408000px;}
.y119{bottom:621.177000px;}
.y1bd{bottom:621.397500px;}
.yf4{bottom:621.432000px;}
.y13d{bottom:621.582000px;}
.y120{bottom:621.685500px;}
.y29f{bottom:623.508000px;}
.y1c3{bottom:624.387000px;}
.y237{bottom:625.636500px;}
.y96{bottom:625.689000px;}
.y1cb{bottom:625.881000px;}
.y127{bottom:626.064000px;}
.y11b{bottom:626.299500px;}
.y12d{bottom:626.460000px;}
.y1d6{bottom:627.375000px;}
.y1d0{bottom:627.694500px;}
.y130{bottom:627.822000px;}
.y63{bottom:627.991500px;}
.y135{bottom:629.053500px;}
.y1b8{bottom:630.120000px;}
.y23a{bottom:630.364500px;}
.ycb{bottom:630.387938px;}
.y2cc{bottom:630.951000px;}
.y118{bottom:633.132000px;}
.y1bc{bottom:633.352500px;}
.y13c{bottom:633.537000px;}
.y11f{bottom:633.640500px;}
.y2f{bottom:633.694500px;}
.y300{bottom:634.267500px;}
.y1c2{bottom:636.342000px;}
.y1ca{bottom:637.836000px;}
.y126{bottom:638.019000px;}
.y11a{bottom:638.254500px;}
.y12c{bottom:638.415000px;}
.y1d5{bottom:639.330000px;}
.y12f{bottom:639.777000px;}
.y134{bottom:641.008500px;}
.y95{bottom:642.127500px;}
.y239{bottom:642.319500px;}
.y29e{bottom:642.337500px;}
.y1bb{bottom:645.307500px;}
.y13b{bottom:645.492000px;}
.y11e{bottom:645.595500px;}
.yca{bottom:646.758464px;}
.y62{bottom:646.821000px;}
.y1c1{bottom:648.297000px;}
.y2cb{bottom:648.525000px;}
.y1c9{bottom:649.791000px;}
.y125{bottom:649.975500px;}
.y1c7{bottom:650.964000px;}
.y1d4{bottom:651.285000px;}
.y2ff{bottom:651.528000px;}
.y133{bottom:652.963500px;}
.y2e{bottom:653.152500px;}
.y123{bottom:653.299500px;}
.yf3{bottom:655.056000px;}
.y1ba{bottom:657.262500px;}
.y13a{bottom:657.447000px;}
.y11d{bottom:657.550500px;}
.y29d{bottom:661.167000px;}
.y1c8{bottom:661.746000px;}
.y124{bottom:661.930500px;}
.y1c6{bottom:662.919000px;}
.y1d3{bottom:663.240000px;}
.y132{bottom:664.918500px;}
.y61{bottom:665.650500px;}
.y93{bottom:665.767500px;}
.yc9{bottom:666.878598px;}
.y2fe{bottom:668.788500px;}
.y139{bottom:669.402000px;}
.y2d{bottom:672.609000px;}
.yf2{bottom:673.885500px;}
.y1d2{bottom:675.196500px;}
.y29c{bottom:679.996500px;}
.y92{bottom:682.206000px;}
.y2ca{bottom:684.031500px;}
.y60{bottom:684.480000px;}
.y2fd{bottom:686.049000px;}
.yc8{bottom:687.074109px;}
.y2c{bottom:692.067000px;}
.yf1{bottom:692.715000px;}
.y117{bottom:695.944500px;}
.y29b{bottom:698.826000px;}
.y115{bottom:701.922000px;}
.y2c9{bottom:702.861000px;}
.y5f{bottom:703.309500px;}
.y8f{bottom:705.846000px;}
.y116{bottom:707.899500px;}
.y113{bottom:708.469500px;}
.y114{bottom:708.588000px;}
.y2b{bottom:711.523500px;}
.yf0{bottom:711.544500px;}
.y91{bottom:714.066000px;}
.y29a{bottom:717.655500px;}
.yc7{bottom:718.744573px;}
.y2fc{bottom:720.570000px;}
.y2c8{bottom:721.690500px;}
.y5e{bottom:722.139000px;}
.y8d{bottom:722.284500px;}
.y112{bottom:722.844000px;}
.y90{bottom:730.504500px;}
.y2a{bottom:730.980000px;}
.yc6{bottom:735.038446px;}
.y299{bottom:736.485000px;}
.y2fb{bottom:737.829000px;}
.y8e{bottom:738.723000px;}
.y2c7{bottom:740.520000px;}
.y5d{bottom:740.968500px;}
.y111{bottom:749.116500px;}
.y29{bottom:750.438000px;}
.yc5{bottom:751.408972px;}
.yef{bottom:751.678500px;}
.y2fa{bottom:755.089500px;}
.y298{bottom:755.314500px;}
.y2c6{bottom:759.349500px;}
.y5c{bottom:759.798000px;}
.y8c{bottom:762.364500px;}
.yee{bottom:765.874500px;}
.yc4{bottom:767.704122px;}
.y28{bottom:769.894500px;}
.y2f9{bottom:772.350000px;}
.y297{bottom:774.144000px;}
.y2c5{bottom:778.179000px;}
.y5b{bottom:778.627500px;}
.yed{bottom:780.072000px;}
.yc3{bottom:784.074648px;}
.y27{bottom:789.351000px;}
.y2f8{bottom:789.610500px;}
.y296{bottom:792.973500px;}
.yec{bottom:794.268000px;}
.y8b{bottom:796.972500px;}
.y2c4{bottom:797.008500px;}
.y5a{bottom:797.457000px;}
.yc2{bottom:800.445173px;}
.y2f7{bottom:806.871000px;}
.y110{bottom:807.739500px;}
.yeb{bottom:808.465500px;}
.y26{bottom:808.809000px;}
.y295{bottom:811.803000px;}
.y2c3{bottom:815.838000px;}
.y59{bottom:816.286500px;}
.yc1{bottom:816.740324px;}
.yea{bottom:822.661500px;}
.y2f6{bottom:824.131500px;}
.y25{bottom:828.265500px;}
.y8a{bottom:830.184000px;}
.y294{bottom:830.632500px;}
.yc0{bottom:833.110849px;}
.y2c2{bottom:834.667500px;}
.y58{bottom:835.114500px;}
.ye9{bottom:836.859000px;}
.y2f5{bottom:841.392000px;}
.y89{bottom:849.013500px;}
.ybf{bottom:849.406000px;}
.y293{bottom:849.462000px;}
.ye8{bottom:851.055000px;}
.y2c1{bottom:853.497000px;}
.y57{bottom:853.944000px;}
.y2f4{bottom:858.652500px;}
.ye7{bottom:865.252500px;}
.y24{bottom:866.851500px;}
.y88{bottom:867.843000px;}
.y292{bottom:868.291500px;}
.ybe{bottom:869.601510px;}
.y2c0{bottom:872.326500px;}
.y56{bottom:872.773500px;}
.y2f3{bottom:875.913000px;}
.ye6{bottom:879.448500px;}
.y23{bottom:882.990000px;}
.y87{bottom:886.672500px;}
.y291{bottom:887.121000px;}
.y22{bottom:887.331000px;}
.yba{bottom:889.810500px;}
.y2bf{bottom:891.156000px;}
.y55{bottom:891.603000px;}
.y2f2{bottom:893.172000px;}
.ye5{bottom:898.293000px;}
.y21{bottom:899.130000px;}
.y86{bottom:905.502000px;}
.y290{bottom:905.950500px;}
.yb9{bottom:908.640000px;}
.y2be{bottom:909.984000px;}
.y54{bottom:910.432500px;}
.ybd{bottom:916.419625px;}
.y20{bottom:919.609500px;}
.ye4{bottom:921.933000px;}
.y85{bottom:924.331500px;}
.ybc{bottom:924.605010px;}
.y28f{bottom:924.778500px;}
.yb8{bottom:927.469500px;}
.y2f1{bottom:927.693000px;}
.y2bd{bottom:928.813500px;}
.y53{bottom:929.262000px;}
.y1f{bottom:931.410000px;}
.y84{bottom:943.161000px;}
.y28e{bottom:943.608000px;}
.y2f0{bottom:944.953500px;}
.ye3{bottom:945.574500px;}
.yb7{bottom:946.299000px;}
.y2bc{bottom:947.643000px;}
.y52{bottom:948.091500px;}
.y1e{bottom:951.888000px;}
.y83{bottom:961.990500px;}
.y2ef{bottom:962.214000px;}
.y28d{bottom:962.437500px;}
.yb6{bottom:965.128500px;}
.y51{bottom:966.921000px;}
.ye2{bottom:969.214500px;}
.y2bb{bottom:970.956000px;}
.y2ee{bottom:979.474500px;}
.y28c{bottom:981.267000px;}
.yb5{bottom:983.958000px;}
.y82{bottom:985.302000px;}
.y50{bottom:985.750500px;}
.ye1{bottom:992.856000px;}
.y1d{bottom:996.565500px;}
.y2ed{bottom:996.735000px;}
.y28b{bottom:1000.096500px;}
.yb4{bottom:1002.787500px;}
.y4f{bottom:1004.580000px;}
.y2ec{bottom:1013.995500px;}
.ye0{bottom:1016.496000px;}
.y81{bottom:1018.926000px;}
.yb3{bottom:1021.617000px;}
.y4e{bottom:1023.409500px;}
.y2eb{bottom:1031.254500px;}
.y1c{bottom:1036.485000px;}
.y80{bottom:1037.755500px;}
.ydf{bottom:1040.137500px;}
.y4d{bottom:1042.239000px;}
.yb2{bottom:1044.928500px;}
.y2ea{bottom:1048.515000px;}
.y7f{bottom:1056.585000px;}
.y4c{bottom:1061.068500px;}
.yde{bottom:1063.777500px;}
.y1b{bottom:1064.728500px;}
.yb1{bottom:1065.103500px;}
.y2e9{bottom:1065.775500px;}
.y7e{bottom:1075.414500px;}
.y4b{bottom:1079.898000px;}
.y2e8{bottom:1083.036000px;}
.ydd{bottom:1087.419000px;}
.y1a{bottom:1092.972000px;}
.y7d{bottom:1094.244000px;}
.y4a{bottom:1098.727500px;}
.y2e7{bottom:1100.296500px;}
.y49{bottom:1117.557000px;}
.ydc{bottom:1119.037500px;}
.y16{bottom:1136.460000px;}
.y48{bottom:1177.662000px;}
.ha{height:26.110157px;}
.h15{height:29.708745px;}
.h14{height:29.967082px;}
.h1c{height:30.126816px;}
.h5{height:30.168057px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h29{height:31.739558px;}
.h1d{height:34.770816px;}
.hb{height:34.813397px;}
.hf{height:35.052500px;}
.h16{height:36.779467px;}
.h6{height:36.932645px;}
.h28{height:36.944318px;}
.h25{height:36.950318px;}
.h17{height:37.303462px;}
.h18{height:37.627840px;}
.h1f{height:37.727558px;}
.h10{height:38.734848px;}
.hc{height:39.165235px;}
.h19{height:39.434227px;}
.h2a{height:40.715558px;}
.hd{height:43.038432px;}
.he{height:43.516637px;}
.h7{height:43.815515px;}
.h23{height:47.117558px;}
.h4{height:50.931027px;}
.h20{height:54.371558px;}
.h9{height:54.405312px;}
.h21{height:55.643558px;}
.h26{height:61.637558px;}
.h12{height:72.039235px;}
.h11{height:72.045235px;}
.h27{height:72.305558px;}
.h8{height:77.469696px;}
.h24{height:78.281558px;}
.h1e{height:80.226816px;}
.h22{height:84.257558px;}
.h13{height:512.965778px;}
.h1a{height:892.914000px;}
.h1b{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:209.166223px;}
.w3{width:421.165650px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x48{left:-168.300000px;}
.x49{left:-2.065500px;}
.x0{left:0.000000px;}
.x4a{left:25.016005px;}
.x1{left:53.574000px;}
.x2{left:59.261731px;}
.x8a{left:62.967000px;}
.x43{left:63.991500px;}
.x3a{left:65.107500px;}
.x39{left:66.171000px;}
.xdb{left:69.097500px;}
.x31{left:70.206000px;}
.xd2{left:71.326500px;}
.xa8{left:73.852500px;}
.x3e{left:81.469500px;}
.x11d{left:85.174500px;}
.x30{left:86.277000px;}
.xcb{left:124.450500px;}
.xd3{left:126.234000px;}
.x8f{left:128.529000px;}
.xff{left:129.643500px;}
.xfc{left:130.794000px;}
.xa9{left:132.577500px;}
.xe7{left:133.671000px;}
.xcc{left:135.177000px;}
.xaa{left:136.407000px;}
.x91{left:138.514500px;}
.xc2{left:140.491500px;}
.xdc{left:141.741000px;}
.x100{left:143.112000px;}
.xdd{left:146.967000px;}
.x90{left:148.509000px;}
.xab{left:149.964000px;}
.xf2{left:151.245000px;}
.xe8{left:158.227500px;}
.xd4{left:159.403500px;}
.x33{left:164.776500px;}
.x8b{left:167.961000px;}
.x32{left:176.907000px;}
.x3b{left:188.682000px;}
.x44{left:203.536500px;}
.x34{left:221.250000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.xae{left:251.253000px;}
.xf3{left:252.561000px;}
.x103{left:256.782000px;}
.x52{left:259.849500px;}
.x53{left:261.933000px;}
.x50{left:264.678000px;}
.xde{left:266.280000px;}
.x93{left:268.732500px;}
.x4{left:269.914500px;}
.x4d{left:271.005000px;}
.xe9{left:272.535000px;}
.x51{left:273.567000px;}
.x4f{left:276.136500px;}
.xc3{left:277.258500px;}
.x4e{left:279.417000px;}
.x6{left:281.479500px;}
.xad{left:282.708000px;}
.xac{left:284.586000px;}
.x92{left:287.202000px;}
.x4c{left:292.114500px;}
.x55{left:306.316500px;}
.x56{left:309.978000px;}
.x116{left:312.501000px;}
.x10e{left:315.003000px;}
.x69{left:317.664000px;}
.x118{left:323.028000px;}
.x57{left:324.922500px;}
.x54{left:326.203500px;}
.x117{left:327.445500px;}
.x58{left:328.584000px;}
.x10f{left:329.946000px;}
.x6a{left:332.608500px;}
.x6b{left:336.420000px;}
.x119{left:337.972500px;}
.x59{left:343.527000px;}
.x5a{left:347.188500px;}
.x1d{left:351.091500px;}
.x1f{left:352.663500px;}
.x3f{left:358.470000px;}
.x40{left:360.789000px;}
.x35{left:361.993500px;}
.x3c{left:364.596000px;}
.x1e{left:366.034500px;}
.x20{left:367.608000px;}
.x45{left:371.206500px;}
.x47{left:378.859500px;}
.x5b{left:380.737500px;}
.x109{left:383.019000px;}
.x5c{left:384.399000px;}
.xea{left:390.882000px;}
.x28{left:394.336500px;}
.xa7{left:396.304500px;}
.xaf{left:397.843500px;}
.x5d{left:399.343500px;}
.xd5{left:400.458000px;}
.x5e{left:403.003500px;}
.xd7{left:405.108000px;}
.xb0{left:407.121000px;}
.x41{left:408.159000px;}
.x29{left:409.281000px;}
.xd6{left:411.928500px;}
.x3d{left:414.775500px;}
.xd1{left:416.326500px;}
.x5f{left:417.948000px;}
.x4b{left:422.507802px;}
.x42{left:430.780500px;}
.x7c{left:437.124000px;}
.x46{left:439.972500px;}
.x7{left:449.860500px;}
.xb{left:452.074500px;}
.x8{left:457.332000px;}
.xc{left:459.546000px;}
.x60{left:471.744000px;}
.x6c{left:475.855500px;}
.x61{left:486.688500px;}
.xe1{left:489.408000px;}
.x62{left:490.410000px;}
.xc4{left:491.997000px;}
.x94{left:493.300500px;}
.x6d{left:494.610000px;}
.x98{left:496.287000px;}
.xf5{left:497.332500px;}
.x2e{left:498.672000px;}
.xd8{left:499.984500px;}
.x96{left:500.988000px;}
.xe0{left:502.296000px;}
.x95{left:503.985000px;}
.x63{left:505.353000px;}
.xe2{left:506.439000px;}
.x19{left:509.290500px;}
.x110{left:512.202000px;}
.x2f{left:513.616500px;}
.x77{left:514.923000px;}
.xf4{left:515.964000px;}
.x97{left:517.239000px;}
.xeb{left:519.666000px;}
.xe3{left:521.199000px;}
.x1a{left:524.235000px;}
.xb1{left:526.026000px;}
.x111{left:527.146500px;}
.xf6{left:528.181500px;}
.x78{left:529.867500px;}
.xdf{left:531.042000px;}
.x79{left:533.677500px;}
.xc5{left:536.617500px;}
.xd9{left:541.968000px;}
.xd{left:548.614500px;}
.x10c{left:550.966500px;}
.x7a{left:552.432000px;}
.xe{left:556.087500px;}
.x10d{left:565.911000px;}
.x7b{left:567.376500px;}
.x6e{left:570.964500px;}
.x26{left:576.978000px;}
.x6f{left:585.909000px;}
.x17{left:590.205000px;}
.x27{left:591.921000px;}
.x24{left:596.955000px;}
.x107{left:603.421500px;}
.x18{left:605.149500px;}
.x11a{left:607.416000px;}
.x25{left:611.899500px;}
.x108{left:618.366000px;}
.x38{left:619.680000px;}
.x10a{left:628.677000px;}
.x36{left:632.167500px;}
.x10b{left:643.621500px;}
.x8c{left:645.792000px;}
.x37{left:649.483500px;}
.xb2{left:651.324000px;}
.x64{left:655.803000px;}
.x106{left:657.250500px;}
.x70{left:662.197500px;}
.x11c{left:663.852000px;}
.x65{left:670.746000px;}
.x66{left:674.557500px;}
.x71{left:677.140500px;}
.x72{left:680.952000px;}
.x76{left:682.923000px;}
.x67{left:689.500500px;}
.x11{left:690.568500px;}
.x87{left:692.928000px;}
.x15{left:694.033500px;}
.x73{left:695.895000px;}
.x12{left:698.040000px;}
.x11b{left:699.166500px;}
.x112{left:701.599500px;}
.x2c{left:703.180500px;}
.x83{left:704.308500px;}
.x13{left:705.438000px;}
.x88{left:707.872500px;}
.x16{left:708.978000px;}
.x68{left:712.066500px;}
.x8d{left:713.983500px;}
.x113{left:716.544000px;}
.x2d{left:718.125000px;}
.x84{left:719.253000px;}
.x14{left:720.381000px;}
.x99{left:721.605000px;}
.x85{left:722.959500px;}
.x114{left:724.068000px;}
.x89{left:726.619500px;}
.x8e{left:729.204000px;}
.x1b{left:732.214500px;}
.x86{left:737.902500px;}
.x115{left:739.012500px;}
.x21{left:748.480500px;}
.x2a{left:755.562000px;}
.x22{left:763.425000px;}
.x2b{left:770.506500px;}
.x7d{left:777.930000px;}
.x7e{left:781.657500px;}
.x74{left:783.874500px;}
.x9c{left:790.350000px;}
.xb3{left:793.101000px;}
.xf7{left:795.511500px;}
.x7f{left:796.602000px;}
.x75{left:798.819000px;}
.x80{left:800.331000px;}
.xb4{left:801.448500px;}
.x9b{left:805.267500px;}
.xb5{left:806.511000px;}
.x9{left:807.847500px;}
.xb6{left:810.267000px;}
.x9a{left:814.189500px;}
.xa{left:815.319000px;}
.x23{left:817.828500px;}
.x81{left:819.003000px;}
.xec{left:820.785000px;}
.xf{left:825.256500px;}
.x10{left:832.729500px;}
.x82{left:833.947500px;}
.x1c{left:837.120000px;}
.xcd{left:889.635000px;}
.xa0{left:891.633000px;}
.xe4{left:892.692000px;}
.xed{left:893.850000px;}
.xb9{left:894.886500px;}
.xbc{left:896.493000px;}
.xce{left:898.087500px;}
.x9d{left:899.793000px;}
.xc6{left:901.011000px;}
.xb8{left:902.188500px;}
.xfe{left:904.630500px;}
.xb7{left:905.938500px;}
.xee{left:908.563500px;}
.xc8{left:910.143000px;}
.x9e{left:911.613000px;}
.xfd{left:913.030500px;}
.x101{left:914.913000px;}
.xda{left:916.267500px;}
.xba{left:921.817500px;}
.xf8{left:923.769000px;}
.xc7{left:926.358000px;}
.xe5{left:931.524000px;}
.xbb{left:934.276500px;}
.xbd{left:939.627000px;}
.x9f{left:941.808000px;}
.xef{left:943.440000px;}
.xcf{left:950.961000px;}
.xa4{left:1069.627500px;}
.xa1{left:1071.466500px;}
.xbe{left:1072.815000px;}
.xd0{left:1074.337500px;}
.xc9{left:1075.551000px;}
.xca{left:1076.592000px;}
.xa2{left:1078.500000px;}
.xc0{left:1080.336000px;}
.xe6{left:1081.507500px;}
.xfa{left:1082.763000px;}
.xbf{left:1083.955500px;}
.x104{left:1086.367500px;}
.xf0{left:1087.654500px;}
.xa5{left:1089.976500px;}
.xf1{left:1094.940000px;}
.xf9{left:1099.809000px;}
.xa3{left:1103.188500px;}
.xa6{left:1105.504500px;}
.x105{left:1109.376000px;}
.xc1{left:1110.855000px;}
.x102{left:1116.552000px;}
.xfb{left:1120.066500px;}
@media print{
.v15{vertical-align:-28.080000pt;}
.v6{vertical-align:-23.701333pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.vc{vertical-align:-9.482667pt;}
.ve{vertical-align:-5.317333pt;}
.va{vertical-align:-4.181333pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:1.136000pt;}
.v5{vertical-align:4.128000pt;}
.v9{vertical-align:6.458667pt;}
.v16{vertical-align:9.114667pt;}
.v12{vertical-align:13.504000pt;}
.vf{vertical-align:14.805333pt;}
.v1{vertical-align:19.285333pt;}
.v7{vertical-align:21.253333pt;}
.vb{vertical-align:22.384000pt;}
.v8{vertical-align:23.280000pt;}
.vd{vertical-align:27.701333pt;}
.v4{vertical-align:29.226667pt;}
.v10{vertical-align:31.877333pt;}
.v13{vertical-align:37.194667pt;}
.v11{vertical-align:42.506667pt;}
.ls1d{letter-spacing:-0.908480pt;}
.ls1f{letter-spacing:-0.177154pt;}
.ls21{letter-spacing:-0.145357pt;}
.ls1b{letter-spacing:-0.086306pt;}
.ls15{letter-spacing:-0.068734pt;}
.ls17{letter-spacing:-0.040882pt;}
.ls1c{letter-spacing:-0.036339pt;}
.ls20{letter-spacing:-0.031797pt;}
.ls18{letter-spacing:-0.022712pt;}
.ls1e{letter-spacing:-0.018170pt;}
.ls16{letter-spacing:-0.013627pt;}
.ls14{letter-spacing:-0.010853pt;}
.ls1a{letter-spacing:-0.009085pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls35{letter-spacing:0.000711pt;}
.ls37{letter-spacing:0.000921pt;}
.ls36{letter-spacing:0.002262pt;}
.ls2{letter-spacing:0.003733pt;}
.ls38{letter-spacing:0.004267pt;}
.ls11{letter-spacing:0.004542pt;}
.lsb{letter-spacing:0.009085pt;}
.ls12{letter-spacing:0.013627pt;}
.lsa{letter-spacing:0.022712pt;}
.lse{letter-spacing:0.031797pt;}
.lsc{letter-spacing:0.036339pt;}
.lsd{letter-spacing:0.045424pt;}
.lsf{letter-spacing:0.063594pt;}
.ls10{letter-spacing:0.090848pt;}
.ls9{letter-spacing:0.126616pt;}
.ls8{letter-spacing:0.137469pt;}
.ls28{letter-spacing:0.442457pt;}
.ls24{letter-spacing:0.447791pt;}
.ls2d{letter-spacing:0.462531pt;}
.ls29{letter-spacing:2.652533pt;}
.ls2b{letter-spacing:2.657867pt;}
.ls19{letter-spacing:4.692299pt;}
.ls25{letter-spacing:9.293692pt;}
.ls2a{letter-spacing:9.296533pt;}
.ls0{letter-spacing:9.298933pt;}
.ls23{letter-spacing:9.299025pt;}
.ls2c{letter-spacing:9.301867pt;}
.ls2f{letter-spacing:9.312169pt;}
.ls2e{letter-spacing:9.441140pt;}
.ls30{letter-spacing:9.445163pt;}
.ls22{letter-spacing:9.743791pt;}
.ls26{letter-spacing:9.749124pt;}
.ls27{letter-spacing:9.765867pt;}
.ls6{letter-spacing:10.626533pt;}
.ls3f{letter-spacing:11.915042pt;}
.ls31{letter-spacing:11.954133pt;}
.ls33{letter-spacing:11.959467pt;}
.ls3b{letter-spacing:11.961718pt;}
.ls3e{letter-spacing:12.274865pt;}
.ls3a{letter-spacing:12.363754pt;}
.ls3d{letter-spacing:14.021271pt;}
.ls3c{letter-spacing:14.528460pt;}
.ls39{letter-spacing:15.145454pt;}
.ls40{letter-spacing:17.179441pt;}
.ls34{letter-spacing:17.404277pt;}
.ls32{letter-spacing:18.533689pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.315733pt;}
.ls13{letter-spacing:112.283238pt;}
.ws72{word-spacing:-97.761783pt;}
.ws4d{word-spacing:-97.755853pt;}
.ws71{word-spacing:-95.115571pt;}
.ws74{word-spacing:-91.863757pt;}
.ws4e{word-spacing:-85.981798pt;}
.ws4f{word-spacing:-85.810116pt;}
.ws70{word-spacing:-85.806737pt;}
.ws73{word-spacing:-85.805559pt;}
.ws75{word-spacing:-85.805380pt;}
.ws82{word-spacing:-13.283467pt;}
.wsbd{word-spacing:-11.955200pt;}
.ws28{word-spacing:-10.626800pt;}
.wsb{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws49{word-spacing:-9.181469pt;}
.ws4a{word-spacing:-9.044000pt;}
.ws80{word-spacing:-3.985040pt;}
.wse5{word-spacing:-2.582323pt;}
.ws1b{word-spacing:-2.391024pt;}
.ws2c{word-spacing:-2.284756pt;}
.wsb5{word-spacing:-2.072221pt;}
.wsa7{word-spacing:-1.806551pt;}
.ws3b{word-spacing:-1.594016pt;}
.wsb4{word-spacing:-1.540882pt;}
.ws46{word-spacing:-1.381481pt;}
.ws81{word-spacing:-1.328347pt;}
.wse8{word-spacing:-1.291162pt;}
.ws2a{word-spacing:-1.275213pt;}
.wsed{word-spacing:-1.243341pt;}
.wsfa{word-spacing:-0.812954pt;}
.ws21{word-spacing:-0.743874pt;}
.wsdb{word-spacing:-0.717312pt;}
.ws34{word-spacing:-0.584473pt;}
.ws35{word-spacing:-0.425071pt;}
.ws91{word-spacing:-0.409130pt;}
.ws76{word-spacing:-0.340058pt;}
.ws1e{word-spacing:-0.318803pt;}
.ws60{word-spacing:-0.295256pt;}
.ws1f{word-spacing:-0.265669pt;}
.ws13{word-spacing:-0.239104pt;}
.ws3a{word-spacing:-0.212535pt;}
.ws6f{word-spacing:-0.195323pt;}
.wsd8{word-spacing:-0.191283pt;}
.ws53{word-spacing:-0.163526pt;}
.ws36{word-spacing:-0.159402pt;}
.ws9d{word-spacing:-0.148774pt;}
.ws17{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws50{word-spacing:-0.057882pt;}
.wsc{word-spacing:-0.053134pt;}
.wseb{word-spacing:-0.050954pt;}
.ws10{word-spacing:-0.047821pt;}
.ws4b{word-spacing:-0.045424pt;}
.ws7a{word-spacing:-0.042507pt;}
.wsf3{word-spacing:-0.008508pt;}
.wsdc{word-spacing:-0.005308pt;}
.wsc0{word-spacing:-0.004011pt;}
.wsee{word-spacing:-0.003081pt;}
.wsfc{word-spacing:-0.002679pt;}
.wsf8{word-spacing:-0.000290pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:0.001089pt;}
.wsd{word-spacing:0.001837pt;}
.ws5f{word-spacing:0.004542pt;}
.ws9b{word-spacing:0.019015pt;}
.ws5e{word-spacing:0.036339pt;}
.ws9f{word-spacing:0.037194pt;}
.ws6e{word-spacing:0.045424pt;}
.ws42{word-spacing:0.047821pt;}
.ws29{word-spacing:0.053134pt;}
.wsec{word-spacing:0.075550pt;}
.ws52{word-spacing:0.081763pt;}
.ws78{word-spacing:0.085014pt;}
.wsc5{word-spacing:0.095642pt;}
.ws23{word-spacing:0.106268pt;}
.ws8f{word-spacing:0.111581pt;}
.ws9c{word-spacing:0.136869pt;}
.ws14{word-spacing:0.143462pt;}
.ws9a{word-spacing:0.148774pt;}
.ws1a{word-spacing:0.159402pt;}
.ws8d{word-spacing:0.185968pt;}
.ws11{word-spacing:0.191283pt;}
.ws26{word-spacing:0.212535pt;}
.wsbc{word-spacing:0.239104pt;}
.ws33{word-spacing:0.265669pt;}
.wsd2{word-spacing:0.286925pt;}
.ws38{word-spacing:0.318803pt;}
.wsd1{word-spacing:0.334746pt;}
.ws31{word-spacing:0.425071pt;}
.wsd9{word-spacing:0.430387pt;}
.ws95{word-spacing:0.464220pt;}
.ws93{word-spacing:0.464269pt;}
.ws8c{word-spacing:0.464809pt;}
.ws8b{word-spacing:0.466133pt;}
.ws94{word-spacing:0.467203pt;}
.wsb8{word-spacing:0.478205pt;}
.wse9{word-spacing:0.478208pt;}
.ws2b{word-spacing:0.584473pt;}
.wsbe{word-spacing:0.621670pt;}
.ws6c{word-spacing:0.635936pt;}
.ws30{word-spacing:0.637606pt;}
.ws64{word-spacing:0.649563pt;}
.wsa2{word-spacing:0.690740pt;}
.wsb7{word-spacing:0.743874pt;}
.ws6d{word-spacing:0.758581pt;}
.wsa0{word-spacing:0.765130pt;}
.wsb1{word-spacing:1.009543pt;}
.wsb0{word-spacing:1.062677pt;}
.wsaa{word-spacing:1.168945pt;}
.wsc9{word-spacing:1.193796pt;}
.ws12{word-spacing:1.195520pt;}
.wsda{word-spacing:1.198996pt;}
.ws9{word-spacing:1.227389pt;}
.ws79{word-spacing:1.232709pt;}
.wsb2{word-spacing:1.275213pt;}
.wsae{word-spacing:1.328347pt;}
.ws59{word-spacing:1.426314pt;}
.ws5c{word-spacing:1.439941pt;}
.ws5d{word-spacing:1.444483pt;}
.ws65{word-spacing:1.521704pt;}
.wse3{word-spacing:1.578086pt;}
.wsa6{word-spacing:1.594016pt;}
.wse2{word-spacing:1.625907pt;}
.ws32{word-spacing:1.647150pt;}
.ws61{word-spacing:1.662518pt;}
.wsea{word-spacing:1.673728pt;}
.wsab{word-spacing:1.700284pt;}
.ws66{word-spacing:1.717027pt;}
.ws22{word-spacing:1.753418pt;}
.wse6{word-spacing:1.769370pt;}
.ws20{word-spacing:1.806551pt;}
.ws45{word-spacing:1.859685pt;}
.ws15{word-spacing:1.865011pt;}
.wsa1{word-spacing:1.912819pt;}
.wse0{word-spacing:2.008474pt;}
.wsa3{word-spacing:2.019087pt;}
.wse4{word-spacing:2.056294pt;}
.ws2e{word-spacing:2.072221pt;}
.ws67{word-spacing:2.148555pt;}
.wsa5{word-spacing:2.178489pt;}
.ws58{word-spacing:2.207606pt;}
.ws56{word-spacing:2.221234pt;}
.ws2{word-spacing:2.229386pt;}
.ws8a{word-spacing:2.231616pt;}
.ws41{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws57{word-spacing:2.234861pt;}
.ws1c{word-spacing:2.284756pt;}
.wsf{word-spacing:2.295398pt;}
.wsd3{word-spacing:2.298093pt;}
.ws1d{word-spacing:2.337890pt;}
.wsd4{word-spacing:2.534502pt;}
.ws27{word-spacing:2.550432pt;}
.wse1{word-spacing:2.582323pt;}
.wsa4{word-spacing:2.656693pt;}
.wsf6{word-spacing:2.677965pt;}
.ws2d{word-spacing:2.816095pt;}
.wsc3{word-spacing:2.861201pt;}
.wsbf{word-spacing:2.863189pt;}
.wsc7{word-spacing:2.863633pt;}
.wsf9{word-spacing:2.864384pt;}
.wsf0{word-spacing:2.865254pt;}
.wsf1{word-spacing:2.866304pt;}
.wsbb{word-spacing:2.866509pt;}
.wsf5{word-spacing:2.866884pt;}
.wsfd{word-spacing:2.866910pt;}
.wsde{word-spacing:2.868267pt;}
.wsc4{word-spacing:2.869248pt;}
.wsd0{word-spacing:2.870665pt;}
.wsfb{word-spacing:2.871987pt;}
.wsdf{word-spacing:2.917069pt;}
.wsac{word-spacing:2.975497pt;}
.wscb{word-spacing:3.012710pt;}
.wsc6{word-spacing:3.108352pt;}
.ws18{word-spacing:3.120845pt;}
.ws3f{word-spacing:3.134898pt;}
.ws19{word-spacing:3.188032pt;}
.wsd6{word-spacing:3.203994pt;}
.wsb9{word-spacing:3.241166pt;}
.wsa8{word-spacing:3.294300pt;}
.ws48{word-spacing:3.347434pt;}
.wsca{word-spacing:3.347456pt;}
.wscf{word-spacing:3.395277pt;}
.ws2f{word-spacing:3.400567pt;}
.wsdd{word-spacing:3.443098pt;}
.wsf2{word-spacing:3.490918pt;}
.ws7c{word-spacing:3.506835pt;}
.ws5b{word-spacing:3.556699pt;}
.wsb3{word-spacing:3.559969pt;}
.ws5a{word-spacing:3.611208pt;}
.wsd7{word-spacing:3.682202pt;}
.ws24{word-spacing:3.772505pt;}
.wsba{word-spacing:3.777843pt;}
.ws6a{word-spacing:3.861040pt;}
.ws6b{word-spacing:3.897379pt;}
.wse7{word-spacing:3.921306pt;}
.wsa9{word-spacing:3.985040pt;}
.wsef{word-spacing:4.112589pt;}
.ws47{word-spacing:4.144442pt;}
.ws39{word-spacing:4.197575pt;}
.ws37{word-spacing:4.250709pt;}
.ws77{word-spacing:4.293227pt;}
.wscc{word-spacing:4.303872pt;}
.wsc8{word-spacing:4.351693pt;}
.ws7e{word-spacing:4.356977pt;}
.ws7f{word-spacing:4.410111pt;}
.wsad{word-spacing:4.463245pt;}
.wsf7{word-spacing:4.829901pt;}
.ws7b{word-spacing:4.835182pt;}
.ws7{word-spacing:4.872362pt;}
.ws83{word-spacing:5.207119pt;}
.wsc1{word-spacing:5.212467pt;}
.ws3e{word-spacing:5.313387pt;}
.wsce{word-spacing:5.451571pt;}
.wsaf{word-spacing:5.472788pt;}
.wsf4{word-spacing:5.499392pt;}
.ws40{word-spacing:5.525922pt;}
.ws43{word-spacing:5.579056pt;}
.ws68{word-spacing:5.768848pt;}
.ws69{word-spacing:5.809730pt;}
.ws7d{word-spacing:5.844725pt;}
.ws84{word-spacing:6.057261pt;}
.wsb6{word-spacing:6.216662pt;}
.ws62{word-spacing:6.318478pt;}
.ws3c{word-spacing:6.322930pt;}
.ws63{word-spacing:6.409326pt;}
.wsc2{word-spacing:6.599270pt;}
.ws3d{word-spacing:7.173072pt;}
.wse{word-spacing:7.632451pt;}
.ws55{word-spacing:7.685741pt;}
.ws54{word-spacing:7.708453pt;}
.ws5{word-spacing:8.740496pt;}
.ws51{word-spacing:8.779915pt;}
.ws44{word-spacing:9.085891pt;}
.ws6{word-spacing:10.525789pt;}
.wsd5{word-spacing:10.807501pt;}
.wscd{word-spacing:16.211251pt;}
.ws4{word-spacing:19.857270pt;}
.ws8{word-spacing:20.196125pt;}
.ws4c{word-spacing:100.328038pt;}
.ws98{word-spacing:135.179395pt;}
.ws96{word-spacing:144.998062pt;}
.ws92{word-spacing:169.269421pt;}
.ws90{word-spacing:185.385911pt;}
.ws88{word-spacing:198.773206pt;}
.ws97{word-spacing:220.270335pt;}
.ws87{word-spacing:226.692175pt;}
.ws8e{word-spacing:230.777002pt;}
.ws99{word-spacing:237.117471pt;}
.ws9e{word-spacing:285.676556pt;}
.ws89{word-spacing:345.187239pt;}
.ws86{word-spacing:358.394400pt;}
.ws85{word-spacing:1033.927821pt;}
._28{margin-left:-19.606528pt;}
._29{margin-left:-12.194304pt;}
._3a{margin-left:-6.535466pt;}
._8{margin-left:-5.483429pt;}
._d{margin-left:-4.463245pt;}
._0{margin-left:-2.715133pt;}
._3{margin-left:-1.301776pt;}
._4{width:1.075985pt;}
._6{width:2.664219pt;}
._f{width:10.626800pt;}
._1{width:11.530016pt;}
._b{width:12.513022pt;}
._2c{width:13.751003pt;}
._9{width:14.776627pt;}
._20{width:15.754188pt;}
._c{width:16.737168pt;}
._2b{width:17.746711pt;}
._12{width:18.703121pt;}
._14{width:19.654075pt;}
._a{width:20.754227pt;}
._36{width:21.678618pt;}
._2{width:23.062165pt;}
._16{width:24.399085pt;}
._37{width:25.876193pt;}
._13{width:27.310807pt;}
._e{width:28.214083pt;}
._5{width:29.648896pt;}
._38{width:30.578537pt;}
._3c{width:31.526670pt;}
._15{width:32.836730pt;}
._3b{width:36.237297pt;}
._27{width:39.356518pt;}
._7{width:48.360741pt;}
._26{width:49.972736pt;}
._3d{width:54.993920pt;}
._1c{width:77.660535pt;}
._24{width:90.955162pt;}
._23{width:100.471501pt;}
._33{width:113.702485pt;}
._1e{width:132.701602pt;}
._31{width:140.347929pt;}
._2a{width:144.960755pt;}
._25{width:150.501171pt;}
._32{width:153.867621pt;}
._2f{width:155.681275pt;}
._30{width:158.743066pt;}
._35{width:165.260852pt;}
._1b{width:166.846771pt;}
._22{width:207.350989pt;}
._34{width:238.857299pt;}
._17{width:361.700568pt;}
._1d{width:407.171840pt;}
._2e{width:415.740121pt;}
._1a{width:418.046012pt;}
._1f{width:505.237786pt;}
._19{width:569.689190pt;}
._18{width:603.115930pt;}
._10{width:653.105922pt;}
._21{width:1344.235545pt;}
._39{width:1983.918166pt;}
._11{width:2005.171499pt;}
._2d{width:3318.931499pt;}
.fsc{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs9{font-size:36.176000pt;}
.fs0{font-size:37.193600pt;}
.fs1{font-size:38.584245pt;}
.fsb{font-size:38.755733pt;}
.fs5{font-size:40.381867pt;}
.fs7{font-size:42.507200pt;}
.fsa{font-size:45.424000pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:48.420380pt;}
.fs3{font-size:53.133867pt;}
.fs4{font-size:95.641600pt;}
.yd2{bottom:-0.924331pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:6.196090pt;}
.y18{bottom:19.634810pt;}
.y47{bottom:28.346667pt;}
.y17{bottom:33.293337pt;}
.y15{bottom:93.018667pt;}
.y10f{bottom:96.492000pt;}
.y2ba{bottom:102.322667pt;}
.y7c{bottom:104.316000pt;}
.ydb{bottom:105.092000pt;}
.y46{bottom:106.665333pt;}
.y14{bottom:108.920000pt;}
.y10e{bottom:113.229333pt;}
.yb0{bottom:114.010667pt;}
.y2e6{bottom:118.104000pt;}
.y31c{bottom:118.861333pt;}
.y2b9{bottom:119.060000pt;}
.y7b{bottom:121.053333pt;}
.y45{bottom:123.402667pt;}
.y13{bottom:124.820000pt;}
.yda{bottom:126.105333pt;}
.y10d{bottom:129.966667pt;}
.yaf{bottom:130.748000pt;}
.y2e5{bottom:133.446667pt;}
.y31b{bottom:134.202667pt;}
.y2b8{bottom:135.797333pt;}
.y7a{bottom:137.789333pt;}
.y44{bottom:140.140000pt;}
.y12{bottom:140.720000pt;}
.y1b6{bottom:141.985333pt;}
.y1b3{bottom:145.970667pt;}
.y10c{bottom:146.704000pt;}
.yd9{bottom:147.120000pt;}
.yae{bottom:147.485333pt;}
.y2e4{bottom:148.789333pt;}
.y31a{bottom:149.545333pt;}
.y1b7{bottom:150.068000pt;}
.y2b7{bottom:152.534667pt;}
.y1a6{bottom:152.613333pt;}
.y1b2{bottom:156.597333pt;}
.y11{bottom:156.621333pt;}
.y43{bottom:156.877333pt;}
.y79{bottom:158.512000pt;}
.y1aa{bottom:159.254667pt;}
.y1a5{bottom:163.240000pt;}
.y10b{bottom:163.441333pt;}
.y2e3{bottom:164.132000pt;}
.yad{bottom:164.222667pt;}
.y319{bottom:164.888000pt;}
.y1b1{bottom:167.224000pt;}
.yd8{bottom:168.133333pt;}
.y1b5{bottom:168.553333pt;}
.y2b6{bottom:169.272000pt;}
.y1a1{bottom:169.664000pt;}
.y1a9{bottom:169.881333pt;}
.y10{bottom:172.521333pt;}
.y42{bottom:173.614667pt;}
.y1a4{bottom:173.866667pt;}
.y1b4{bottom:175.478667pt;}
.y1ad{bottom:176.237333pt;}
.y234{bottom:177.546667pt;}
.y1b0{bottom:177.852000pt;}
.y2e2{bottom:179.473333pt;}
.y10a{bottom:180.178667pt;}
.y318{bottom:180.230667pt;}
.y1a0{bottom:180.290667pt;}
.y1a8{bottom:180.508000pt;}
.yac{bottom:180.960000pt;}
.y1a3{bottom:184.493333pt;}
.y2b5{bottom:186.009333pt;}
.y1ac{bottom:186.864000pt;}
.y233{bottom:188.173333pt;}
.y78{bottom:188.400000pt;}
.yf{bottom:188.421333pt;}
.y1af{bottom:188.478667pt;}
.yd7{bottom:189.148000pt;}
.y41{bottom:190.352000pt;}
.y21e{bottom:190.830667pt;}
.y1a7{bottom:191.134667pt;}
.y2e1{bottom:194.816000pt;}
.y1a2{bottom:195.120000pt;}
.y317{bottom:195.573333pt;}
.y236{bottom:196.144000pt;}
.y109{bottom:196.916000pt;}
.y1ab{bottom:197.490667pt;}
.yab{bottom:197.697333pt;}
.y232{bottom:198.800000pt;}
.y1ae{bottom:199.105333pt;}
.y21d{bottom:201.457333pt;}
.y2b4{bottom:202.746667pt;}
.ye{bottom:204.322667pt;}
.y77{bottom:205.137333pt;}
.y22a{bottom:206.770667pt;}
.y40{bottom:207.089333pt;}
.y231{bottom:209.426667pt;}
.y2e0{bottom:210.158667pt;}
.y223{bottom:210.756000pt;}
.y316{bottom:210.916000pt;}
.y21c{bottom:212.084000pt;}
.y108{bottom:213.653333pt;}
.yaa{bottom:214.434667pt;}
.yd6{bottom:217.253333pt;}
.y229{bottom:217.397333pt;}
.y2b3{bottom:219.484000pt;}
.y191{bottom:219.945333pt;}
.y230{bottom:220.054667pt;}
.y222{bottom:221.382667pt;}
.y76{bottom:221.874667pt;}
.y21b{bottom:222.710667pt;}
.y3f{bottom:223.826667pt;}
.y19e{bottom:223.930667pt;}
.y216{bottom:225.150667pt;}
.y2df{bottom:225.501333pt;}
.y315{bottom:226.258667pt;}
.y226{bottom:228.024000pt;}
.y107{bottom:230.390667pt;}
.y190{bottom:230.572000pt;}
.y22f{bottom:230.681333pt;}
.y19f{bottom:231.629333pt;}
.y195{bottom:231.992000pt;}
.y221{bottom:232.009333pt;}
.y21a{bottom:233.337333pt;}
.y19d{bottom:234.557333pt;}
.ya9{bottom:235.156000pt;}
.y215{bottom:235.777333pt;}
.y2b2{bottom:236.221333pt;}
.y228{bottom:238.650667pt;}
.y198{bottom:239.870667pt;}
.y3e{bottom:240.564000pt;}
.y2de{bottom:240.844000pt;}
.y18f{bottom:241.198667pt;}
.y22e{bottom:241.308000pt;}
.y314{bottom:241.601333pt;}
.y75{bottom:242.597333pt;}
.y194{bottom:242.618667pt;}
.y220{bottom:242.636000pt;}
.y219{bottom:243.964000pt;}
.y18b{bottom:244.160000pt;}
.y19c{bottom:245.184000pt;}
.y106{bottom:247.128000pt;}
.y227{bottom:249.277333pt;}
.yd5{bottom:250.234667pt;}
.y197{bottom:250.497333pt;}
.y225{bottom:250.984000pt;}
.y18e{bottom:251.825333pt;}
.y22d{bottom:251.934667pt;}
.y2b1{bottom:252.958667pt;}
.y193{bottom:253.245333pt;}
.y21f{bottom:253.262667pt;}
.y218{bottom:254.590667pt;}
.y18a{bottom:254.786667pt;}
.y19b{bottom:255.810667pt;}
.y2dd{bottom:256.186667pt;}
.y313{bottom:256.944000pt;}
.y3d{bottom:257.301333pt;}
.y28a{bottom:259.064000pt;}
.y235{bottom:259.905333pt;}
.y74{bottom:260.529333pt;}
.y224{bottom:261.610667pt;}
.y18d{bottom:262.452000pt;}
.y22c{bottom:262.561333pt;}
.y196{bottom:263.494667pt;}
.y105{bottom:263.865333pt;}
.y192{bottom:263.872000pt;}
.yd{bottom:264.148000pt;}
.ya8{bottom:265.044000pt;}
.y217{bottom:265.218667pt;}
.y19a{bottom:266.437333pt;}
.y2b0{bottom:269.696000pt;}
.yd4{bottom:270.957333pt;}
.y2dc{bottom:271.529333pt;}
.y289{bottom:271.682667pt;}
.y312{bottom:272.285333pt;}
.y18c{bottom:273.078667pt;}
.y22b{bottom:273.188000pt;}
.y3c{bottom:274.038667pt;}
.y199{bottom:277.064000pt;}
.yc{bottom:280.048000pt;}
.y104{bottom:280.602667pt;}
.ya7{bottom:281.781333pt;}
.y31f{bottom:283.577333pt;}
.y288{bottom:284.302667pt;}
.y2af{bottom:286.433333pt;}
.y2db{bottom:286.872000pt;}
.y311{bottom:287.628000pt;}
.y73{bottom:290.417333pt;}
.y3b{bottom:290.776000pt;}
.y20c{bottom:295.444000pt;}
.yb{bottom:295.949333pt;}
.y103{bottom:297.340000pt;}
.yd3{bottom:298.004000pt;}
.y213{bottom:298.101333pt;}
.y187{bottom:298.158667pt;}
.ya6{bottom:298.518667pt;}
.y31e{bottom:298.920000pt;}
.y1ff{bottom:300.757333pt;}
.y214{bottom:301.062667pt;}
.y26f{bottom:301.697333pt;}
.y2da{bottom:302.214667pt;}
.y310{bottom:302.970667pt;}
.y2ae{bottom:303.170667pt;}
.y20b{bottom:306.070667pt;}
.y72{bottom:307.154667pt;}
.y204{bottom:307.398667pt;}
.y3a{bottom:307.513333pt;}
.y286{bottom:308.338667pt;}
.y212{bottom:308.728000pt;}
.y186{bottom:308.785333pt;}
.y1fe{bottom:311.384000pt;}
.ya{bottom:311.849333pt;}
.y26e{bottom:312.324000pt;}
.y287{bottom:312.428000pt;}
.y102{bottom:314.077333pt;}
.y17c{bottom:314.098667pt;}
.y31d{bottom:314.261333pt;}
.y277{bottom:314.980000pt;}
.ya5{bottom:315.256000pt;}
.y172{bottom:315.637333pt;}
.y20a{bottom:316.697333pt;}
.y2d9{bottom:317.556000pt;}
.y280{bottom:317.637333pt;}
.ybb{bottom:317.941220pt;}
.y203{bottom:318.026667pt;}
.y30f{bottom:318.313333pt;}
.y285{bottom:318.965333pt;}
.y211{bottom:319.354667pt;}
.y185{bottom:319.412000pt;}
.y2ad{bottom:319.908000pt;}
.y189{bottom:320.101333pt;}
.y1fd{bottom:322.010667pt;}
.y26d{bottom:322.950667pt;}
.y176{bottom:323.489333pt;}
.y71{bottom:323.892000pt;}
.y39{bottom:324.249333pt;}
.y1f9{bottom:324.309333pt;}
.y27c{bottom:324.562667pt;}
.y17b{bottom:324.725333pt;}
.y276{bottom:325.608000pt;}
.y171{bottom:326.264000pt;}
.y209{bottom:327.324000pt;}
.y27f{bottom:328.264000pt;}
.y202{bottom:328.653333pt;}
.y284{bottom:329.592000pt;}
.y20d{bottom:329.981333pt;}
.y184{bottom:330.040000pt;}
.y17e{bottom:330.322667pt;}
.y268{bottom:330.561333pt;}
.y101{bottom:330.814667pt;}
.y279{bottom:331.204000pt;}
.ya4{bottom:331.993333pt;}
.y1fc{bottom:332.637333pt;}
.y2d8{bottom:332.898667pt;}
.y26c{bottom:333.577333pt;}
.y30e{bottom:333.656000pt;}
.y175{bottom:334.116000pt;}
.y1f8{bottom:334.936000pt;}
.y27b{bottom:335.189333pt;}
.y17a{bottom:335.353333pt;}
.y275{bottom:336.234667pt;}
.y16d{bottom:336.322667pt;}
.y2ac{bottom:336.645333pt;}
.y170{bottom:336.890667pt;}
.y9{bottom:337.048000pt;}
.y208{bottom:337.952000pt;}
.y27e{bottom:338.890667pt;}
.y201{bottom:339.280000pt;}
.y283{bottom:340.218667pt;}
.y210{bottom:340.608000pt;}
.y70{bottom:340.629333pt;}
.y183{bottom:340.666667pt;}
.y17d{bottom:340.949333pt;}
.y38{bottom:340.986667pt;}
.y267{bottom:341.189333pt;}
.y278{bottom:341.830667pt;}
.y205{bottom:342.314667pt;}
.y1fb{bottom:343.265333pt;}
.y26b{bottom:344.204000pt;}
.y272{bottom:344.582667pt;}
.y174{bottom:344.742667pt;}
.y27a{bottom:345.816000pt;}
.y179{bottom:345.980000pt;}
.y274{bottom:346.861333pt;}
.y16c{bottom:346.949333pt;}
.y16f{bottom:347.517333pt;}
.y100{bottom:347.552000pt;}
.y2d7{bottom:348.241333pt;}
.y207{bottom:348.578667pt;}
.ya3{bottom:348.730667pt;}
.y30d{bottom:348.998667pt;}
.y27d{bottom:349.517333pt;}
.y200{bottom:349.906667pt;}
.y282{bottom:350.846667pt;}
.y20f{bottom:351.234667pt;}
.y182{bottom:351.293333pt;}
.y8{bottom:352.948000pt;}
.y2ab{bottom:353.382667pt;}
.y1fa{bottom:353.892000pt;}
.y26a{bottom:354.830667pt;}
.y271{bottom:355.209333pt;}
.y173{bottom:355.370667pt;}
.y178{bottom:356.606667pt;}
.y6f{bottom:357.366667pt;}
.y273{bottom:357.488000pt;}
.y37{bottom:357.724000pt;}
.y16e{bottom:358.144000pt;}
.y206{bottom:359.205333pt;}
.y281{bottom:361.473333pt;}
.y20e{bottom:361.861333pt;}
.y181{bottom:361.920000pt;}
.y2d6{bottom:363.584000pt;}
.yff{bottom:364.289333pt;}
.y30c{bottom:364.341333pt;}
.y269{bottom:365.458667pt;}
.ya2{bottom:365.468000pt;}
.y270{bottom:365.836000pt;}
.y188{bottom:367.233333pt;}
.y2aa{bottom:370.118667pt;}
.y177{bottom:370.932000pt;}
.y180{bottom:372.546667pt;}
.y6e{bottom:374.104000pt;}
.y36{bottom:374.461333pt;}
.y7{bottom:376.818667pt;}
.y2d5{bottom:378.926667pt;}
.y30b{bottom:379.684000pt;}
.y1f5{bottom:380.106667pt;}
.yfe{bottom:381.026667pt;}
.y17f{bottom:383.173333pt;}
.y25e{bottom:385.809333pt;}
.ya1{bottom:386.190667pt;}
.y2a9{bottom:386.856000pt;}
.y1f4{bottom:390.733333pt;}
.y6d{bottom:390.841333pt;}
.y35{bottom:391.198667pt;}
.y6{bottom:392.720000pt;}
.y2d4{bottom:394.269333pt;}
.y30a{bottom:395.025333pt;}
.y25d{bottom:396.436000pt;}
.yfd{bottom:397.764000pt;}
.y265{bottom:399.092000pt;}
.y266{bottom:401.022667pt;}
.y1f3{bottom:401.360000pt;}
.y2a8{bottom:403.593333pt;}
.y1ec{bottom:404.017333pt;}
.y249{bottom:404.405333pt;}
.y250{bottom:405.734667pt;}
.y25c{bottom:407.062667pt;}
.y6c{bottom:407.578667pt;}
.y34{bottom:407.936000pt;}
.y165{bottom:408.165333pt;}
.y5{bottom:408.620000pt;}
.y2d3{bottom:409.612000pt;}
.y1f7{bottom:409.636000pt;}
.y264{bottom:409.718667pt;}
.y309{bottom:410.368000pt;}
.y1f6{bottom:411.986667pt;}
.y1e3{bottom:411.988000pt;}
.yfc{bottom:414.501333pt;}
.y1eb{bottom:414.644000pt;}
.y248{bottom:415.033333pt;}
.y24f{bottom:416.361333pt;}
.y25b{bottom:417.689333pt;}
.y254{bottom:417.973333pt;}
.y164{bottom:418.792000pt;}
.y2a7{bottom:420.330667pt;}
.y263{bottom:420.346667pt;}
.y15c{bottom:421.733333pt;}
.y256{bottom:421.958667pt;}
.y1e2{bottom:422.614667pt;}
.y6b{bottom:424.316000pt;}
.y4{bottom:424.520000pt;}
.y1ea{bottom:425.270667pt;}
.y16a{bottom:425.434667pt;}
.y247{bottom:425.660000pt;}
.y308{bottom:425.710667pt;}
.y16b{bottom:425.748000pt;}
.y9f{bottom:426.468000pt;}
.y243{bottom:426.629333pt;}
.y1ef{bottom:426.882667pt;}
.y24e{bottom:426.988000pt;}
.y1ee{bottom:428.210667pt;}
.y251{bottom:428.316000pt;}
.y253{bottom:428.600000pt;}
.y33{bottom:428.658667pt;}
.y2d2{bottom:428.938667pt;}
.y163{bottom:429.418667pt;}
.y262{bottom:430.973333pt;}
.yfb{bottom:431.238667pt;}
.y1de{bottom:431.553333pt;}
.y148{bottom:432.168000pt;}
.y15b{bottom:432.360000pt;}
.y255{bottom:432.585333pt;}
.y1e1{bottom:433.241333pt;}
.y9e{bottom:433.774667pt;}
.y153{bottom:434.732000pt;}
.y1e9{bottom:435.897333pt;}
.y169{bottom:436.061333pt;}
.y246{bottom:436.286667pt;}
.y2a6{bottom:437.068000pt;}
.y242{bottom:437.256000pt;}
.y14c{bottom:437.481333pt;}
.y24d{bottom:437.614667pt;}
.y1ed{bottom:438.838667pt;}
.y25a{bottom:438.942667pt;}
.y252{bottom:439.226667pt;}
.y162{bottom:440.046667pt;}
.y3{bottom:440.421333pt;}
.y6a{bottom:441.053333pt;}
.ya0{bottom:441.080000pt;}
.y261{bottom:441.600000pt;}
.y1dd{bottom:442.180000pt;}
.y147{bottom:442.794667pt;}
.y15a{bottom:442.986667pt;}
.y1e0{bottom:443.868000pt;}
.y152{bottom:445.360000pt;}
.y24c{bottom:445.962667pt;}
.y1e8{bottom:446.524000pt;}
.y168{bottom:446.688000pt;}
.y245{bottom:446.913333pt;}
.y143{bottom:447.657333pt;}
.yfa{bottom:447.976000pt;}
.y14b{bottom:448.108000pt;}
.y155{bottom:448.249333pt;}
.y259{bottom:449.569333pt;}
.y161{bottom:450.673333pt;}
.y260{bottom:452.226667pt;}
.y146{bottom:453.421333pt;}
.y154{bottom:453.564000pt;}
.y159{bottom:453.613333pt;}
.y2a5{bottom:453.805333pt;}
.y1df{bottom:454.494667pt;}
.y151{bottom:455.986667pt;}
.y2{bottom:456.321333pt;}
.y307{bottom:456.396000pt;}
.y24b{bottom:456.589333pt;}
.y1e7{bottom:457.152000pt;}
.y167{bottom:457.314667pt;}
.y244{bottom:457.540000pt;}
.y69{bottom:457.790667pt;}
.y142{bottom:458.284000pt;}
.y14a{bottom:458.734667pt;}
.y2d1{bottom:458.826667pt;}
.y258{bottom:460.197333pt;}
.y1e6{bottom:460.850667pt;}
.y160{bottom:461.300000pt;}
.y9c{bottom:462.094667pt;}
.y25f{bottom:462.853333pt;}
.y145{bottom:464.048000pt;}
.y158{bottom:464.240000pt;}
.yf9{bottom:464.713333pt;}
.y150{bottom:464.998667pt;}
.y1f2{bottom:465.121333pt;}
.y24a{bottom:467.216000pt;}
.y166{bottom:467.941333pt;}
.y149{bottom:469.361333pt;}
.y9b{bottom:469.400000pt;}
.y2a4{bottom:470.542667pt;}
.y257{bottom:470.824000pt;}
.y1e5{bottom:471.477333pt;}
.y306{bottom:471.738667pt;}
.y15f{bottom:471.926667pt;}
.y1{bottom:472.221333pt;}
.yd1{bottom:473.171635pt;}
.y68{bottom:474.528000pt;}
.y144{bottom:474.674667pt;}
.y157{bottom:474.866667pt;}
.y14f{bottom:475.625333pt;}
.y1f1{bottom:475.748000pt;}
.y9d{bottom:476.706667pt;}
.yf8{bottom:481.450667pt;}
.y1e4{bottom:482.104000pt;}
.y2d0{bottom:482.418667pt;}
.y15e{bottom:482.553333pt;}
.y156{bottom:485.493333pt;}
.y14e{bottom:486.252000pt;}
.y1f0{bottom:486.374667pt;}
.y305{bottom:487.081333pt;}
.y2a3{bottom:487.280000pt;}
.yd0{bottom:487.723214pt;}
.y67{bottom:491.265333pt;}
.y15d{bottom:493.180000pt;}
.y23f{bottom:493.905333pt;}
.y32{bottom:495.458667pt;}
.y14d{bottom:496.878667pt;}
.y9a{bottom:497.720000pt;}
.yf7{bottom:498.188000pt;}
.ycf{bottom:502.274792pt;}
.y304{bottom:502.424000pt;}
.y2a2{bottom:504.017333pt;}
.y23e{bottom:504.532000pt;}
.y1db{bottom:504.533333pt;}
.y2cf{bottom:506.010667pt;}
.y66{bottom:508.002667pt;}
.y99{bottom:512.332000pt;}
.y1cf{bottom:513.830667pt;}
.y12b{bottom:513.994667pt;}
.yf6{bottom:514.925333pt;}
.y1da{bottom:515.160000pt;}
.yce{bottom:516.758234pt;}
.y241{bottom:517.377333pt;}
.y303{bottom:517.766667pt;}
.y1c0{bottom:520.473333pt;}
.y140{bottom:520.636000pt;}
.y2a1{bottom:520.754667pt;}
.y240{bottom:523.129333pt;}
.y1ce{bottom:524.457333pt;}
.y12a{bottom:524.621333pt;}
.y65{bottom:524.740000pt;}
.y1d9{bottom:525.786667pt;}
.y1dc{bottom:526.092000pt;}
.y98{bottom:526.944000pt;}
.y138{bottom:527.278667pt;}
.y23d{bottom:528.442667pt;}
.y31{bottom:528.694667pt;}
.y141{bottom:528.752000pt;}
.y2ce{bottom:529.601333pt;}
.y1bf{bottom:531.100000pt;}
.y13f{bottom:531.262667pt;}
.ycd{bottom:531.309813pt;}
.y122{bottom:531.354667pt;}
.yf5{bottom:531.661333pt;}
.y302{bottom:533.108000pt;}
.y1c5{bottom:533.756000pt;}
.y94{bottom:534.249333pt;}
.y1cd{bottom:535.085333pt;}
.y129{bottom:535.248000pt;}
.y1d8{bottom:536.413333pt;}
.y2a0{bottom:537.492000pt;}
.y137{bottom:537.905333pt;}
.y23c{bottom:539.069333pt;}
.y64{bottom:541.477333pt;}
.y97{bottom:541.556000pt;}
.y1be{bottom:541.726667pt;}
.y13e{bottom:541.889333pt;}
.y121{bottom:541.981333pt;}
.y1c4{bottom:544.382667pt;}
.y2cd{bottom:545.222667pt;}
.y238{bottom:545.494667pt;}
.y1cc{bottom:545.712000pt;}
.ycc{bottom:545.793255pt;}
.y128{bottom:545.874667pt;}
.y30{bottom:545.989333pt;}
.y11c{bottom:546.084000pt;}
.y12e{bottom:546.225333pt;}
.y1d7{bottom:547.040000pt;}
.y1d1{bottom:547.324000pt;}
.y131{bottom:547.437333pt;}
.y301{bottom:548.450667pt;}
.y136{bottom:548.532000pt;}
.y1b9{bottom:549.480000pt;}
.y23b{bottom:549.696000pt;}
.y119{bottom:552.157333pt;}
.y1bd{bottom:552.353333pt;}
.yf4{bottom:552.384000pt;}
.y13d{bottom:552.517333pt;}
.y120{bottom:552.609333pt;}
.y29f{bottom:554.229333pt;}
.y1c3{bottom:555.010667pt;}
.y237{bottom:556.121333pt;}
.y96{bottom:556.168000pt;}
.y1cb{bottom:556.338667pt;}
.y127{bottom:556.501333pt;}
.y11b{bottom:556.710667pt;}
.y12d{bottom:556.853333pt;}
.y1d6{bottom:557.666667pt;}
.y1d0{bottom:557.950667pt;}
.y130{bottom:558.064000pt;}
.y63{bottom:558.214667pt;}
.y135{bottom:559.158667pt;}
.y1b8{bottom:560.106667pt;}
.y23a{bottom:560.324000pt;}
.ycb{bottom:560.344834pt;}
.y2cc{bottom:560.845333pt;}
.y118{bottom:562.784000pt;}
.y1bc{bottom:562.980000pt;}
.y13c{bottom:563.144000pt;}
.y11f{bottom:563.236000pt;}
.y2f{bottom:563.284000pt;}
.y300{bottom:563.793333pt;}
.y1c2{bottom:565.637333pt;}
.y1ca{bottom:566.965333pt;}
.y126{bottom:567.128000pt;}
.y11a{bottom:567.337333pt;}
.y12c{bottom:567.480000pt;}
.y1d5{bottom:568.293333pt;}
.y12f{bottom:568.690667pt;}
.y134{bottom:569.785333pt;}
.y95{bottom:570.780000pt;}
.y239{bottom:570.950667pt;}
.y29e{bottom:570.966667pt;}
.y1bb{bottom:573.606667pt;}
.y13b{bottom:573.770667pt;}
.y11e{bottom:573.862667pt;}
.yca{bottom:574.896412pt;}
.y62{bottom:574.952000pt;}
.y1c1{bottom:576.264000pt;}
.y2cb{bottom:576.466667pt;}
.y1c9{bottom:577.592000pt;}
.y125{bottom:577.756000pt;}
.y1c7{bottom:578.634667pt;}
.y1d4{bottom:578.920000pt;}
.y2ff{bottom:579.136000pt;}
.y133{bottom:580.412000pt;}
.y2e{bottom:580.580000pt;}
.y123{bottom:580.710667pt;}
.yf3{bottom:582.272000pt;}
.y1ba{bottom:584.233333pt;}
.y13a{bottom:584.397333pt;}
.y11d{bottom:584.489333pt;}
.y29d{bottom:587.704000pt;}
.y1c8{bottom:588.218667pt;}
.y124{bottom:588.382667pt;}
.y1c6{bottom:589.261333pt;}
.y1d3{bottom:589.546667pt;}
.y132{bottom:591.038667pt;}
.y61{bottom:591.689333pt;}
.y93{bottom:591.793333pt;}
.yc9{bottom:592.780976pt;}
.y2fe{bottom:594.478667pt;}
.y139{bottom:595.024000pt;}
.y2d{bottom:597.874667pt;}
.yf2{bottom:599.009333pt;}
.y1d2{bottom:600.174667pt;}
.y29c{bottom:604.441333pt;}
.y92{bottom:606.405333pt;}
.y2ca{bottom:608.028000pt;}
.y60{bottom:608.426667pt;}
.y2fd{bottom:609.821333pt;}
.yc8{bottom:610.732541pt;}
.y2c{bottom:615.170667pt;}
.yf1{bottom:615.746667pt;}
.y117{bottom:618.617333pt;}
.y29b{bottom:621.178667pt;}
.y115{bottom:623.930667pt;}
.y2c9{bottom:624.765333pt;}
.y5f{bottom:625.164000pt;}
.y8f{bottom:627.418667pt;}
.y116{bottom:629.244000pt;}
.y113{bottom:629.750667pt;}
.y114{bottom:629.856000pt;}
.y2b{bottom:632.465333pt;}
.yf0{bottom:632.484000pt;}
.y91{bottom:634.725333pt;}
.y29a{bottom:637.916000pt;}
.yc7{bottom:638.884065pt;}
.y2fc{bottom:640.506667pt;}
.y2c8{bottom:641.502667pt;}
.y5e{bottom:641.901333pt;}
.y8d{bottom:642.030667pt;}
.y112{bottom:642.528000pt;}
.y90{bottom:649.337333pt;}
.y2a{bottom:649.760000pt;}
.yc6{bottom:653.367508pt;}
.y299{bottom:654.653333pt;}
.y2fb{bottom:655.848000pt;}
.y8e{bottom:656.642667pt;}
.y2c7{bottom:658.240000pt;}
.y5d{bottom:658.638667pt;}
.y111{bottom:665.881333pt;}
.y29{bottom:667.056000pt;}
.yc5{bottom:667.919086pt;}
.yef{bottom:668.158667pt;}
.y2fa{bottom:671.190667pt;}
.y298{bottom:671.390667pt;}
.y2c6{bottom:674.977333pt;}
.y5c{bottom:675.376000pt;}
.y8c{bottom:677.657333pt;}
.yee{bottom:680.777333pt;}
.yc4{bottom:682.403664pt;}
.y28{bottom:684.350667pt;}
.y2f9{bottom:686.533333pt;}
.y297{bottom:688.128000pt;}
.y2c5{bottom:691.714667pt;}
.y5b{bottom:692.113333pt;}
.yed{bottom:693.397333pt;}
.yc3{bottom:696.955242pt;}
.y27{bottom:701.645333pt;}
.y2f8{bottom:701.876000pt;}
.y296{bottom:704.865333pt;}
.yec{bottom:706.016000pt;}
.y8b{bottom:708.420000pt;}
.y2c4{bottom:708.452000pt;}
.y5a{bottom:708.850667pt;}
.yc2{bottom:711.506821pt;}
.y2f7{bottom:717.218667pt;}
.y110{bottom:717.990667pt;}
.yeb{bottom:718.636000pt;}
.y26{bottom:718.941333pt;}
.y295{bottom:721.602667pt;}
.y2c3{bottom:725.189333pt;}
.y59{bottom:725.588000pt;}
.yc1{bottom:725.991399pt;}
.yea{bottom:731.254667pt;}
.y2f6{bottom:732.561333pt;}
.y25{bottom:736.236000pt;}
.y8a{bottom:737.941333pt;}
.y294{bottom:738.340000pt;}
.yc0{bottom:740.542977pt;}
.y2c2{bottom:741.926667pt;}
.y58{bottom:742.324000pt;}
.ye9{bottom:743.874667pt;}
.y2f5{bottom:747.904000pt;}
.y89{bottom:754.678667pt;}
.ybf{bottom:755.027555pt;}
.y293{bottom:755.077333pt;}
.ye8{bottom:756.493333pt;}
.y2c1{bottom:758.664000pt;}
.y57{bottom:759.061333pt;}
.y2f4{bottom:763.246667pt;}
.ye7{bottom:769.113333pt;}
.y24{bottom:770.534667pt;}
.y88{bottom:771.416000pt;}
.y292{bottom:771.814667pt;}
.ybe{bottom:772.979120pt;}
.y2c0{bottom:775.401333pt;}
.y56{bottom:775.798667pt;}
.y2f3{bottom:778.589333pt;}
.ye6{bottom:781.732000pt;}
.y23{bottom:784.880000pt;}
.y87{bottom:788.153333pt;}
.y291{bottom:788.552000pt;}
.y22{bottom:788.738667pt;}
.yba{bottom:790.942667pt;}
.y2bf{bottom:792.138667pt;}
.y55{bottom:792.536000pt;}
.y2f2{bottom:793.930667pt;}
.ye5{bottom:798.482667pt;}
.y21{bottom:799.226667pt;}
.y86{bottom:804.890667pt;}
.y290{bottom:805.289333pt;}
.yb9{bottom:807.680000pt;}
.y2be{bottom:808.874667pt;}
.y54{bottom:809.273333pt;}
.ybd{bottom:814.595222pt;}
.y20{bottom:817.430667pt;}
.ye4{bottom:819.496000pt;}
.y85{bottom:821.628000pt;}
.ybc{bottom:821.871120pt;}
.y28f{bottom:822.025333pt;}
.yb8{bottom:824.417333pt;}
.y2f1{bottom:824.616000pt;}
.y2bd{bottom:825.612000pt;}
.y53{bottom:826.010667pt;}
.y1f{bottom:827.920000pt;}
.y84{bottom:838.365333pt;}
.y28e{bottom:838.762667pt;}
.y2f0{bottom:839.958667pt;}
.ye3{bottom:840.510667pt;}
.yb7{bottom:841.154667pt;}
.y2bc{bottom:842.349333pt;}
.y52{bottom:842.748000pt;}
.y1e{bottom:846.122667pt;}
.y83{bottom:855.102667pt;}
.y2ef{bottom:855.301333pt;}
.y28d{bottom:855.500000pt;}
.yb6{bottom:857.892000pt;}
.y51{bottom:859.485333pt;}
.ye2{bottom:861.524000pt;}
.y2bb{bottom:863.072000pt;}
.y2ee{bottom:870.644000pt;}
.y28c{bottom:872.237333pt;}
.yb5{bottom:874.629333pt;}
.y82{bottom:875.824000pt;}
.y50{bottom:876.222667pt;}
.ye1{bottom:882.538667pt;}
.y1d{bottom:885.836000pt;}
.y2ed{bottom:885.986667pt;}
.y28b{bottom:888.974667pt;}
.yb4{bottom:891.366667pt;}
.y4f{bottom:892.960000pt;}
.y2ec{bottom:901.329333pt;}
.ye0{bottom:903.552000pt;}
.y81{bottom:905.712000pt;}
.yb3{bottom:908.104000pt;}
.y4e{bottom:909.697333pt;}
.y2eb{bottom:916.670667pt;}
.y1c{bottom:921.320000pt;}
.y80{bottom:922.449333pt;}
.ydf{bottom:924.566667pt;}
.y4d{bottom:926.434667pt;}
.yb2{bottom:928.825333pt;}
.y2ea{bottom:932.013333pt;}
.y7f{bottom:939.186667pt;}
.y4c{bottom:943.172000pt;}
.yde{bottom:945.580000pt;}
.y1b{bottom:946.425333pt;}
.yb1{bottom:946.758667pt;}
.y2e9{bottom:947.356000pt;}
.y7e{bottom:955.924000pt;}
.y4b{bottom:959.909333pt;}
.y2e8{bottom:962.698667pt;}
.ydd{bottom:966.594667pt;}
.y1a{bottom:971.530667pt;}
.y7d{bottom:972.661333pt;}
.y4a{bottom:976.646667pt;}
.y2e7{bottom:978.041333pt;}
.y49{bottom:993.384000pt;}
.ydc{bottom:994.700000pt;}
.y16{bottom:1010.186667pt;}
.y48{bottom:1046.810667pt;}
.ha{height:23.209028pt;}
.h15{height:26.407773pt;}
.h14{height:26.637406pt;}
.h1c{height:26.779392pt;}
.h5{height:26.816050pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h29{height:28.212941pt;}
.h1d{height:30.907392pt;}
.hb{height:30.945242pt;}
.hf{height:31.157778pt;}
.h16{height:32.692859pt;}
.h6{height:32.829018pt;}
.h28{height:32.839394pt;}
.h25{height:32.844727pt;}
.h17{height:33.158633pt;}
.h18{height:33.446969pt;}
.h1f{height:33.535607pt;}
.h10{height:34.430976pt;}
.hc{height:34.813542pt;}
.h19{height:35.052646pt;}
.h2a{height:36.191607pt;}
.hd{height:38.256384pt;}
.he{height:38.681455pt;}
.h7{height:38.947124pt;}
.h23{height:41.882274pt;}
.h4{height:45.272024pt;}
.h20{height:48.330274pt;}
.h9{height:48.360277pt;}
.h21{height:49.460941pt;}
.h26{height:54.788941pt;}
.h12{height:64.034876pt;}
.h11{height:64.040209pt;}
.h27{height:64.271607pt;}
.h8{height:68.861952pt;}
.h24{height:69.583607pt;}
.h1e{height:71.312725pt;}
.h22{height:74.895607pt;}
.h13{height:455.969580pt;}
.h1a{height:793.701333pt;}
.h1b{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:185.925531pt;}
.w3{width:374.369467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x48{left:-149.600000pt;}
.x49{left:-1.836000pt;}
.x0{left:0.000000pt;}
.x4a{left:22.236449pt;}
.x1{left:47.621333pt;}
.x2{left:52.677095pt;}
.x8a{left:55.970667pt;}
.x43{left:56.881333pt;}
.x3a{left:57.873333pt;}
.x39{left:58.818667pt;}
.xdb{left:61.420000pt;}
.x31{left:62.405333pt;}
.xd2{left:63.401333pt;}
.xa8{left:65.646667pt;}
.x3e{left:72.417333pt;}
.x11d{left:75.710667pt;}
.x30{left:76.690667pt;}
.xcb{left:110.622667pt;}
.xd3{left:112.208000pt;}
.x8f{left:114.248000pt;}
.xff{left:115.238667pt;}
.xfc{left:116.261333pt;}
.xa9{left:117.846667pt;}
.xe7{left:118.818667pt;}
.xcc{left:120.157333pt;}
.xaa{left:121.250667pt;}
.x91{left:123.124000pt;}
.xc2{left:124.881333pt;}
.xdc{left:125.992000pt;}
.x100{left:127.210667pt;}
.xdd{left:130.637333pt;}
.x90{left:132.008000pt;}
.xab{left:133.301333pt;}
.xf2{left:134.440000pt;}
.xe8{left:140.646667pt;}
.xd4{left:141.692000pt;}
.x33{left:146.468000pt;}
.x8b{left:149.298667pt;}
.x32{left:157.250667pt;}
.x3b{left:167.717333pt;}
.x44{left:180.921333pt;}
.x34{left:196.666667pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.xae{left:223.336000pt;}
.xf3{left:224.498667pt;}
.x103{left:228.250667pt;}
.x52{left:230.977333pt;}
.x53{left:232.829333pt;}
.x50{left:235.269333pt;}
.xde{left:236.693333pt;}
.x93{left:238.873333pt;}
.x4{left:239.924000pt;}
.x4d{left:240.893333pt;}
.xe9{left:242.253333pt;}
.x51{left:243.170667pt;}
.x4f{left:245.454667pt;}
.xc3{left:246.452000pt;}
.x4e{left:248.370667pt;}
.x6{left:250.204000pt;}
.xad{left:251.296000pt;}
.xac{left:252.965333pt;}
.x92{left:255.290667pt;}
.x4c{left:259.657333pt;}
.x55{left:272.281333pt;}
.x56{left:275.536000pt;}
.x116{left:277.778667pt;}
.x10e{left:280.002667pt;}
.x69{left:282.368000pt;}
.x118{left:287.136000pt;}
.x57{left:288.820000pt;}
.x54{left:289.958667pt;}
.x117{left:291.062667pt;}
.x58{left:292.074667pt;}
.x10f{left:293.285333pt;}
.x6a{left:295.652000pt;}
.x6b{left:299.040000pt;}
.x119{left:300.420000pt;}
.x59{left:305.357333pt;}
.x5a{left:308.612000pt;}
.x1d{left:312.081333pt;}
.x1f{left:313.478667pt;}
.x3f{left:318.640000pt;}
.x40{left:320.701333pt;}
.x35{left:321.772000pt;}
.x3c{left:324.085333pt;}
.x1e{left:325.364000pt;}
.x20{left:326.762667pt;}
.x45{left:329.961333pt;}
.x47{left:336.764000pt;}
.x5b{left:338.433333pt;}
.x109{left:340.461333pt;}
.x5c{left:341.688000pt;}
.xea{left:347.450667pt;}
.x28{left:350.521333pt;}
.xa7{left:352.270667pt;}
.xaf{left:353.638667pt;}
.x5d{left:354.972000pt;}
.xd5{left:355.962667pt;}
.x5e{left:358.225333pt;}
.xd7{left:360.096000pt;}
.xb0{left:361.885333pt;}
.x41{left:362.808000pt;}
.x29{left:363.805333pt;}
.xd6{left:366.158667pt;}
.x3d{left:368.689333pt;}
.xd1{left:370.068000pt;}
.x5f{left:371.509333pt;}
.x4b{left:375.562490pt;}
.x42{left:382.916000pt;}
.x7c{left:388.554667pt;}
.x46{left:391.086667pt;}
.x7{left:399.876000pt;}
.xb{left:401.844000pt;}
.x8{left:406.517333pt;}
.xc{left:408.485333pt;}
.x60{left:419.328000pt;}
.x6c{left:422.982667pt;}
.x61{left:432.612000pt;}
.xe1{left:435.029333pt;}
.x62{left:435.920000pt;}
.xc4{left:437.330667pt;}
.x94{left:438.489333pt;}
.x6d{left:439.653333pt;}
.x98{left:441.144000pt;}
.xf5{left:442.073333pt;}
.x2e{left:443.264000pt;}
.xd8{left:444.430667pt;}
.x96{left:445.322667pt;}
.xe0{left:446.485333pt;}
.x95{left:447.986667pt;}
.x63{left:449.202667pt;}
.xe2{left:450.168000pt;}
.x19{left:452.702667pt;}
.x110{left:455.290667pt;}
.x2f{left:456.548000pt;}
.x77{left:457.709333pt;}
.xf4{left:458.634667pt;}
.x97{left:459.768000pt;}
.xeb{left:461.925333pt;}
.xe3{left:463.288000pt;}
.x1a{left:465.986667pt;}
.xb1{left:467.578667pt;}
.x111{left:468.574667pt;}
.xf6{left:469.494667pt;}
.x78{left:470.993333pt;}
.xdf{left:472.037333pt;}
.x79{left:474.380000pt;}
.xc5{left:476.993333pt;}
.xd9{left:481.749333pt;}
.xd{left:487.657333pt;}
.x10c{left:489.748000pt;}
.x7a{left:491.050667pt;}
.xe{left:494.300000pt;}
.x10d{left:503.032000pt;}
.x7b{left:504.334667pt;}
.x6e{left:507.524000pt;}
.x26{left:512.869333pt;}
.x6f{left:520.808000pt;}
.x17{left:524.626667pt;}
.x27{left:526.152000pt;}
.x24{left:530.626667pt;}
.x107{left:536.374667pt;}
.x18{left:537.910667pt;}
.x11a{left:539.925333pt;}
.x25{left:543.910667pt;}
.x108{left:549.658667pt;}
.x38{left:550.826667pt;}
.x10a{left:558.824000pt;}
.x36{left:561.926667pt;}
.x10b{left:572.108000pt;}
.x8c{left:574.037333pt;}
.x37{left:577.318667pt;}
.xb2{left:578.954667pt;}
.x64{left:582.936000pt;}
.x106{left:584.222667pt;}
.x70{left:588.620000pt;}
.x11c{left:590.090667pt;}
.x65{left:596.218667pt;}
.x66{left:599.606667pt;}
.x71{left:601.902667pt;}
.x72{left:605.290667pt;}
.x76{left:607.042667pt;}
.x67{left:612.889333pt;}
.x11{left:613.838667pt;}
.x87{left:615.936000pt;}
.x15{left:616.918667pt;}
.x73{left:618.573333pt;}
.x12{left:620.480000pt;}
.x11b{left:621.481333pt;}
.x112{left:623.644000pt;}
.x2c{left:625.049333pt;}
.x83{left:626.052000pt;}
.x13{left:627.056000pt;}
.x88{left:629.220000pt;}
.x16{left:630.202667pt;}
.x68{left:632.948000pt;}
.x8d{left:634.652000pt;}
.x113{left:636.928000pt;}
.x2d{left:638.333333pt;}
.x84{left:639.336000pt;}
.x14{left:640.338667pt;}
.x99{left:641.426667pt;}
.x85{left:642.630667pt;}
.x114{left:643.616000pt;}
.x89{left:645.884000pt;}
.x8e{left:648.181333pt;}
.x1b{left:650.857333pt;}
.x86{left:655.913333pt;}
.x115{left:656.900000pt;}
.x21{left:665.316000pt;}
.x2a{left:671.610667pt;}
.x22{left:678.600000pt;}
.x2b{left:684.894667pt;}
.x7d{left:691.493333pt;}
.x7e{left:694.806667pt;}
.x74{left:696.777333pt;}
.x9c{left:702.533333pt;}
.xb3{left:704.978667pt;}
.xf7{left:707.121333pt;}
.x7f{left:708.090667pt;}
.x75{left:710.061333pt;}
.x80{left:711.405333pt;}
.xb4{left:712.398667pt;}
.x9b{left:715.793333pt;}
.xb5{left:716.898667pt;}
.x9{left:718.086667pt;}
.xb6{left:720.237333pt;}
.x9a{left:723.724000pt;}
.xa{left:724.728000pt;}
.x23{left:726.958667pt;}
.x81{left:728.002667pt;}
.xec{left:729.586667pt;}
.xf{left:733.561333pt;}
.x10{left:740.204000pt;}
.x82{left:741.286667pt;}
.x1c{left:744.106667pt;}
.xcd{left:790.786667pt;}
.xa0{left:792.562667pt;}
.xe4{left:793.504000pt;}
.xed{left:794.533333pt;}
.xb9{left:795.454667pt;}
.xbc{left:796.882667pt;}
.xce{left:798.300000pt;}
.x9d{left:799.816000pt;}
.xc6{left:800.898667pt;}
.xb8{left:801.945333pt;}
.xfe{left:804.116000pt;}
.xb7{left:805.278667pt;}
.xee{left:807.612000pt;}
.xc8{left:809.016000pt;}
.x9e{left:810.322667pt;}
.xfd{left:811.582667pt;}
.x101{left:813.256000pt;}
.xda{left:814.460000pt;}
.xba{left:819.393333pt;}
.xf8{left:821.128000pt;}
.xc7{left:823.429333pt;}
.xe5{left:828.021333pt;}
.xbb{left:830.468000pt;}
.xbd{left:835.224000pt;}
.x9f{left:837.162667pt;}
.xef{left:838.613333pt;}
.xcf{left:845.298667pt;}
.xa4{left:950.780000pt;}
.xa1{left:952.414667pt;}
.xbe{left:953.613333pt;}
.xd0{left:954.966667pt;}
.xc9{left:956.045333pt;}
.xca{left:956.970667pt;}
.xa2{left:958.666667pt;}
.xc0{left:960.298667pt;}
.xe6{left:961.340000pt;}
.xfa{left:962.456000pt;}
.xbf{left:963.516000pt;}
.x104{left:965.660000pt;}
.xf0{left:966.804000pt;}
.xa5{left:968.868000pt;}
.xf1{left:973.280000pt;}
.xf9{left:977.608000pt;}
.xa3{left:980.612000pt;}
.xa6{left:982.670667pt;}
.x105{left:986.112000pt;}
.xc1{left:987.426667pt;}
.x102{left:992.490667pt;}
.xfb{left:995.614667pt;}
}




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