
    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_6dbe1bb74844209a4abf1e9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.839000;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_c78b1817b5f75b77229685dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3c6fb317691ed71dc37b99ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6ed7d4bce28573b86090b57e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1f5adafebafc70e5c46b3ef7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.151000;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_c8ba943e066415e8b3d3a654.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_e4854b6fee98cadc6e0d3ee3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.427000;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_380677adc8064f97e8009a12.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_79db6214492280c928ed7aeb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.014160;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_75493ec1446fa67642cddec2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b75b22e7f467a8c4621690ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.216309;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;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m25{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.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);}
.m1d{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);}
.mc{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);}
.m1{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);}
.m1b{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m6{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);}
.m9{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);}
.m7{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);}
.m19{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);}
.m29{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);}
.m21{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);}
.m10{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);}
.m23{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);}
.m1f{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);}
.me{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);}
.m18{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);}
.m27{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);}
.m28{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);}
.m4{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);}
.m15{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);}
.m11{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);}
.m13{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);}
.ma{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);}
.mf{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);}
.m3{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);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m22{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);}
.m24{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);}
.m1c{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);}
.m16{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);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v5{vertical-align:-19.530000px;}
.v3{vertical-align:-10.920000px;}
.v2{vertical-align:-9.900000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v6{vertical-align:21.696000px;}
.v1{vertical-align:32.874000px;}
.ls5{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000089px;}
.ls4e{letter-spacing:0.000292px;}
.ls4d{letter-spacing:0.000406px;}
.ls7{letter-spacing:0.000466px;}
.ls2{letter-spacing:0.000600px;}
.ls21{letter-spacing:0.000612px;}
.ls22{letter-spacing:0.000683px;}
.ls2e{letter-spacing:0.000800px;}
.ls9{letter-spacing:0.000840px;}
.ls2c{letter-spacing:0.001036px;}
.ls26{letter-spacing:0.001049px;}
.ls45{letter-spacing:0.001356px;}
.ls14{letter-spacing:0.001555px;}
.ls1c{letter-spacing:0.001581px;}
.ls37{letter-spacing:0.001584px;}
.ls1d{letter-spacing:0.001953px;}
.ls33{letter-spacing:0.002096px;}
.ls44{letter-spacing:0.002293px;}
.ls15{letter-spacing:0.002400px;}
.ls2d{letter-spacing:0.002544px;}
.ls1a{letter-spacing:0.002782px;}
.ls3e{letter-spacing:0.002841px;}
.ls29{letter-spacing:0.002973px;}
.ls42{letter-spacing:0.003155px;}
.ls3a{letter-spacing:0.003634px;}
.ls2b{letter-spacing:0.003668px;}
.ls1b{letter-spacing:0.004665px;}
.ls1e{letter-spacing:0.004728px;}
.ls16{letter-spacing:0.004800px;}
.lsb{letter-spacing:0.005398px;}
.ls6{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls19{letter-spacing:2.988600px;}
.ls10{letter-spacing:2.989200px;}
.ls12{letter-spacing:3.507900px;}
.ls11{letter-spacing:3.513900px;}
.ls1f{letter-spacing:3.553200px;}
.ls1{letter-spacing:10.461300px;}
.ls4{letter-spacing:11.954850px;}
.ls46{letter-spacing:13.029992px;}
.ls4b{letter-spacing:13.215750px;}
.ls32{letter-spacing:13.233519px;}
.ls41{letter-spacing:13.279835px;}
.ls47{letter-spacing:13.307796px;}
.ls34{letter-spacing:13.338037px;}
.ls38{letter-spacing:13.365876px;}
.ls28{letter-spacing:13.409259px;}
.ls3f{letter-spacing:13.432812px;}
.ls25{letter-spacing:13.448400px;}
.ls3b{letter-spacing:13.452845px;}
.ls31{letter-spacing:13.453555px;}
.ls24{letter-spacing:13.454400px;}
.ls48{letter-spacing:13.463313px;}
.ls40{letter-spacing:13.477819px;}
.ls27{letter-spacing:13.523373px;}
.ls49{letter-spacing:13.598690px;}
.ls30{letter-spacing:13.611129px;}
.ls43{letter-spacing:13.632634px;}
.ls35{letter-spacing:13.642050px;}
.ls4a{letter-spacing:14.094088px;}
.ls4f{letter-spacing:14.756282px;}
.ls17{letter-spacing:15.063451px;}
.ls23{letter-spacing:15.159831px;}
.ls20{letter-spacing:15.283193px;}
.ls18{letter-spacing:16.440600px;}
.lsa{letter-spacing:16.471429px;}
.ls2f{letter-spacing:16.676400px;}
.ls39{letter-spacing:16.928449px;}
.ls3d{letter-spacing:16.985694px;}
.lsf{letter-spacing:17.929200px;}
.lse{letter-spacing:17.935200px;}
.lsc{letter-spacing:18.724370px;}
.lsd{letter-spacing:18.730252px;}
.ls3c{letter-spacing:18.809224px;}
.ls8{letter-spacing:18.836342px;}
.ls2a{letter-spacing:19.144518px;}
.ls36{letter-spacing:19.650400px;}
.ls3{letter-spacing:28.453654px;}
.ls13{letter-spacing:111.589133px;}
.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;}
}
.ws5b{word-spacing:-14.943900px;}
.ws89{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.wsa7{word-spacing:-11.357888px;}
.ws7{word-spacing:-10.460700px;}
.ws47{word-spacing:-3.347434px;}
.ws70{word-spacing:-2.929004px;}
.wsb0{word-spacing:-2.809453px;}
.ws3a{word-spacing:-2.689902px;}
.wsc9{word-spacing:-2.630126px;}
.ws50{word-spacing:-2.510575px;}
.ws131{word-spacing:-2.420928px;}
.wsc4{word-spacing:-2.391024px;}
.ws12f{word-spacing:-2.367130px;}
.wsa6{word-spacing:-2.331248px;}
.ws1f{word-spacing:-2.259533px;}
.wsc6{word-spacing:-2.211697px;}
.wse0{word-spacing:-2.205734px;}
.wsdf{word-spacing:-2.151936px;}
.ws59{word-spacing:-2.032370px;}
.ws60{word-spacing:-1.972595px;}
.wsd4{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws130{word-spacing:-1.882944px;}
.wsd3{word-spacing:-1.853044px;}
.wsd2{word-spacing:-1.793268px;}
.ws137{word-spacing:-1.775347px;}
.ws49{word-spacing:-1.733492px;}
.ws1d{word-spacing:-1.721549px;}
.ws40{word-spacing:-1.673717px;}
.wsd1{word-spacing:-1.613941px;}
.ws61{word-spacing:-1.554166px;}
.ws9d{word-spacing:-1.494390px;}
.ws97{word-spacing:-1.374839px;}
.ws138{word-spacing:-1.344960px;}
.ws2{word-spacing:-1.322630px;}
.ws102{word-spacing:-1.291162px;}
.ws7a{word-spacing:-1.255288px;}
.ws9e{word-spacing:-1.195512px;}
.ws121{word-spacing:-1.183565px;}
.wsd0{word-spacing:-1.135736px;}
.ws81{word-spacing:-1.129766px;}
.wseb{word-spacing:-1.075968px;}
.ws5c{word-spacing:-1.075961px;}
.ws46{word-spacing:-1.016185px;}
.wse5{word-spacing:-0.968371px;}
.ws62{word-spacing:-0.956410px;}
.ws8e{word-spacing:-0.896634px;}
.ws82{word-spacing:-0.860774px;}
.ws41{word-spacing:-0.836858px;}
.ws118{word-spacing:-0.806976px;}
.ws2d{word-spacing:-0.777083px;}
.ws10b{word-spacing:-0.753178px;}
.ws134{word-spacing:-0.699379px;}
.ws45{word-spacing:-0.657532px;}
.ws87{word-spacing:-0.591782px;}
.wsae{word-spacing:-0.537980px;}
.ws109{word-spacing:-0.484186px;}
.ws7b{word-spacing:-0.478205px;}
.ws77{word-spacing:-0.418429px;}
.ws5e{word-spacing:-0.358654px;}
.wsef{word-spacing:-0.332541px;}
.wsf0{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.ws10d{word-spacing:-0.268992px;}
.ws22{word-spacing:-0.239102px;}
.wsea{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.ws88{word-spacing:-0.161395px;}
.wsf3{word-spacing:-0.149204px;}
.ws24{word-spacing:-0.119551px;}
.ws1a{word-spacing:-0.107597px;}
.ws1{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.053798px;}
.ws12{word-spacing:-0.047821px;}
.ws114{word-spacing:-0.013200px;}
.ws147{word-spacing:-0.011434px;}
.wsec{word-spacing:-0.010810px;}
.wse3{word-spacing:-0.010090px;}
.wsb3{word-spacing:-0.009955px;}
.ws117{word-spacing:-0.009149px;}
.ws13c{word-spacing:-0.008467px;}
.ws8c{word-spacing:-0.008179px;}
.ws125{word-spacing:-0.007987px;}
.wsb1{word-spacing:-0.006845px;}
.wsb8{word-spacing:-0.005971px;}
.ws14a{word-spacing:-0.005434px;}
.ws13d{word-spacing:-0.005222px;}
.ws136{word-spacing:-0.004800px;}
.ws143{word-spacing:-0.004109px;}
.ws2e{word-spacing:-0.003377px;}
.wse2{word-spacing:-0.003293px;}
.ws141{word-spacing:-0.003235px;}
.ws12e{word-spacing:-0.002986px;}
.ws154{word-spacing:-0.002822px;}
.ws6{word-spacing:-0.002798px;}
.wsb6{word-spacing:-0.002400px;}
.ws116{word-spacing:-0.001930px;}
.wse9{word-spacing:-0.001795px;}
.ws86{word-spacing:-0.001392px;}
.ws144{word-spacing:-0.001267px;}
.wsdd{word-spacing:-0.000998px;}
.wsff{word-spacing:-0.000163px;}
.ws0{word-spacing:0.000000px;}
.wsb9{word-spacing:0.001709px;}
.ws8a{word-spacing:0.053798px;}
.ws21{word-spacing:0.059776px;}
.wsfc{word-spacing:0.102960px;}
.ws14{word-spacing:0.107597px;}
.ws23{word-spacing:0.119551px;}
.ws11e{word-spacing:0.137129px;}
.ws9a{word-spacing:0.139683px;}
.ws145{word-spacing:0.148771px;}
.ws16{word-spacing:0.161395px;}
.ws11f{word-spacing:0.164831px;}
.ws48{word-spacing:0.179327px;}
.ws8{word-spacing:0.209214px;}
.ws8d{word-spacing:0.215194px;}
.wsfb{word-spacing:0.219685px;}
.ws34{word-spacing:0.239102px;}
.wsba{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws26{word-spacing:0.298878px;}
.ws18{word-spacing:0.322790px;}
.ws55{word-spacing:0.358654px;}
.ws39{word-spacing:0.418429px;}
.ws9b{word-spacing:0.478205px;}
.ws14e{word-spacing:0.484186px;}
.wsb2{word-spacing:0.526800px;}
.ws74{word-spacing:0.537980px;}
.ws103{word-spacing:0.537984px;}
.wsca{word-spacing:0.567412px;}
.ws6d{word-spacing:0.589588px;}
.wse7{word-spacing:0.591782px;}
.ws42{word-spacing:0.597756px;}
.ws148{word-spacing:0.670752px;}
.ws123{word-spacing:0.699379px;}
.wscd{word-spacing:0.717307px;}
.wscc{word-spacing:0.745467px;}
.ws17{word-spacing:0.753178px;}
.ws99{word-spacing:0.777083px;}
.wse6{word-spacing:0.806976px;}
.ws96{word-spacing:0.836858px;}
.ws95{word-spacing:0.896634px;}
.ws72{word-spacing:0.956410px;}
.ws156{word-spacing:0.968371px;}
.ws7d{word-spacing:1.016185px;}
.ws6e{word-spacing:1.075961px;}
.ws4b{word-spacing:1.135736px;}
.ws44{word-spacing:1.195512px;}
.ws15{word-spacing:1.237363px;}
.ws76{word-spacing:1.315063px;}
.ws12c{word-spacing:1.344960px;}
.ws31{word-spacing:1.374839px;}
.ws12b{word-spacing:1.398758px;}
.ws2b{word-spacing:1.434614px;}
.ws28{word-spacing:1.494390px;}
.wsfd{word-spacing:1.506355px;}
.ws68{word-spacing:1.530978px;}
.ws69{word-spacing:1.554166px;}
.ws7f{word-spacing:1.613941px;}
.ws10c{word-spacing:1.613952px;}
.wsc7{word-spacing:1.673717px;}
.wsa1{word-spacing:1.733492px;}
.ws30{word-spacing:1.793268px;}
.wsa8{word-spacing:1.853044px;}
.ws52{word-spacing:1.912819px;}
.wsbc{word-spacing:1.972595px;}
.ws9{word-spacing:2.008454px;}
.wsbb{word-spacing:2.032370px;}
.ws11a{word-spacing:2.098138px;}
.ws4c{word-spacing:2.151922px;}
.ws63{word-spacing:2.211697px;}
.wsc5{word-spacing:2.271473px;}
.ws152{word-spacing:2.313331px;}
.ws8f{word-spacing:2.331248px;}
.ws32{word-spacing:2.391024px;}
.ws35{word-spacing:2.450800px;}
.ws5{word-spacing:2.512790px;}
.ws149{word-spacing:2.528525px;}
.ws9c{word-spacing:2.570351px;}
.ws4e{word-spacing:2.630126px;}
.wsbe{word-spacing:2.689902px;}
.ws13f{word-spacing:2.689920px;}
.ws12d{word-spacing:2.743718px;}
.ws27{word-spacing:2.749678px;}
.ws19{word-spacing:2.797517px;}
.wsac{word-spacing:2.809453px;}
.wse8{word-spacing:2.851315px;}
.wsab{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.wsdc{word-spacing:2.905114px;}
.wsd9{word-spacing:2.929004px;}
.ws3b{word-spacing:2.988780px;}
.ws113{word-spacing:3.012710px;}
.wscf{word-spacing:3.048556px;}
.ws122{word-spacing:3.066509px;}
.ws3d{word-spacing:3.108331px;}
.ws13e{word-spacing:3.120307px;}
.ws3e{word-spacing:3.162611px;}
.ws3f{word-spacing:3.168107px;}
.ws11d{word-spacing:3.174106px;}
.ws104{word-spacing:3.214992px;}
.ws120{word-spacing:3.217747px;}
.ws119{word-spacing:3.220080px;}
.wsf9{word-spacing:3.221357px;}
.ws142{word-spacing:3.222019px;}
.ws126{word-spacing:3.222547px;}
.ws105{word-spacing:3.222931px;}
.ws14d{word-spacing:3.223142px;}
.ws155{word-spacing:3.223229px;}
.ws150{word-spacing:3.223555px;}
.ws157{word-spacing:3.224246px;}
.ws14b{word-spacing:3.225206px;}
.ws108{word-spacing:3.225658px;}
.wsfe{word-spacing:3.225830px;}
.ws107{word-spacing:3.225869px;}
.wsf2{word-spacing:3.225888px;}
.ws110{word-spacing:3.226848px;}
.ws151{word-spacing:3.226867px;}
.ws146{word-spacing:3.227021px;}
.ws33{word-spacing:3.227882px;}
.wse1{word-spacing:3.227904px;}
.ws115{word-spacing:3.227923px;}
.ws133{word-spacing:3.227933px;}
.ws111{word-spacing:3.228000px;}
.wse4{word-spacing:3.228067px;}
.wsfa{word-spacing:3.228518px;}
.ws140{word-spacing:3.240477px;}
.ws135{word-spacing:3.266590px;}
.ws10e{word-spacing:3.281702px;}
.ws65{word-spacing:3.287658px;}
.ws64{word-spacing:3.347434px;}
.wsf1{word-spacing:3.389299px;}
.ws71{word-spacing:3.407209px;}
.ws101{word-spacing:3.443098px;}
.ws78{word-spacing:3.526760px;}
.ws20{word-spacing:3.586536px;}
.wsf8{word-spacing:3.604493px;}
.ws56{word-spacing:3.646312px;}
.ws6f{word-spacing:3.706087px;}
.ws100{word-spacing:3.712090px;}
.ws6a{word-spacing:3.765863px;}
.ws10a{word-spacing:3.765888px;}
.ws6b{word-spacing:3.789802px;}
.ws106{word-spacing:3.819686px;}
.ws3c{word-spacing:3.825638px;}
.ws14c{word-spacing:3.927283px;}
.wsa0{word-spacing:4.004965px;}
.ws112{word-spacing:4.034880px;}
.ws92{word-spacing:4.064741px;}
.wsa5{word-spacing:4.184292px;}
.wsde{word-spacing:4.196275px;}
.wsa4{word-spacing:4.244068px;}
.ws128{word-spacing:4.250074px;}
.ws43{word-spacing:4.303843px;}
.ws124{word-spacing:4.303872px;}
.ws127{word-spacing:4.357670px;}
.ws29{word-spacing:4.363619px;}
.ws1b{word-spacing:4.465267px;}
.ws80{word-spacing:4.483170px;}
.ws67{word-spacing:4.500580px;}
.wsf4{word-spacing:4.519066px;}
.ws66{word-spacing:4.542946px;}
.ws1e{word-spacing:4.572864px;}
.ws13b{word-spacing:4.626662px;}
.wsaa{word-spacing:4.662497px;}
.ws75{word-spacing:4.722272px;}
.wsd6{word-spacing:4.782048px;}
.ws14f{word-spacing:4.788058px;}
.wsdb{word-spacing:4.895654px;}
.ws2a{word-spacing:4.901599px;}
.ws153{word-spacing:5.003251px;}
.ws91{word-spacing:5.021150px;}
.ws79{word-spacing:5.080926px;}
.wsf7{word-spacing:5.110848px;}
.ws94{word-spacing:5.140702px;}
.wsf6{word-spacing:5.164646px;}
.wscb{word-spacing:5.260253px;}
.wsda{word-spacing:5.272243px;}
.wsbd{word-spacing:5.320028px;}
.ws13a{word-spacing:5.326042px;}
.ws51{word-spacing:5.379804px;}
.ws12a{word-spacing:5.379840px;}
.ws132{word-spacing:5.433638px;}
.ws5d{word-spacing:5.439580px;}
.wsd5{word-spacing:5.499355px;}
.wsa9{word-spacing:5.618906px;}
.wsf5{word-spacing:5.702630px;}
.ws9f{word-spacing:5.738458px;}
.wsee{word-spacing:5.864026px;}
.ws54{word-spacing:5.917784px;}
.ws11b{word-spacing:6.025421px;}
.ws6c{word-spacing:6.037336px;}
.ws10{word-spacing:6.067206px;}
.wsad{word-spacing:6.097111px;}
.ws11{word-spacing:6.150892px;}
.ws11c{word-spacing:6.186816px;}
.ws4f{word-spacing:6.216662px;}
.ws37{word-spacing:6.276438px;}
.ws38{word-spacing:6.336214px;}
.ws10f{word-spacing:6.348211px;}
.ws7e{word-spacing:6.395989px;}
.ws7c{word-spacing:6.455765px;}
.wsaf{word-spacing:6.515540px;}
.wsa3{word-spacing:6.575316px;}
.ws4d{word-spacing:6.694867px;}
.ws57{word-spacing:6.993745px;}
.ws139{word-spacing:6.993792px;}
.wsd7{word-spacing:7.113296px;}
.ws36{word-spacing:7.232848px;}
.wsed{word-spacing:7.424179px;}
.ws53{word-spacing:7.448916px;}
.ws4a{word-spacing:7.471950px;}
.ws98{word-spacing:7.591501px;}
.wsc8{word-spacing:7.651277px;}
.wsd8{word-spacing:7.770828px;}
.ws93{word-spacing:7.830604px;}
.ws5a{word-spacing:7.890379px;}
.wsce{word-spacing:7.950155px;}
.ws5f{word-spacing:8.009930px;}
.ws58{word-spacing:8.069706px;}
.wsa2{word-spacing:8.308808px;}
.wse{word-spacing:8.661460px;}
.ws90{word-spacing:11.058486px;}
.wsc3{word-spacing:14.346144px;}
.ws73{word-spacing:15.242778px;}
.ws4{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.ws129{word-spacing:16.408512px;}
.wsd{word-spacing:17.699504px;}
.wsf{word-spacing:27.448877px;}
.wsc0{word-spacing:117.388109px;}
.wsb7{word-spacing:170.168573px;}
.wsc1{word-spacing:214.171430px;}
.ws83{word-spacing:239.479776px;}
.ws8b{word-spacing:253.196381px;}
.ws85{word-spacing:271.089811px;}
.ws84{word-spacing:283.786560px;}
.wsc2{word-spacing:543.628176px;}
.wsb4{word-spacing:600.815923px;}
.wsbf{word-spacing:815.207155px;}
.wsb5{word-spacing:974.324899px;}
._4b{margin-left:-20.216221px;}
._14{margin-left:-7.277602px;}
._b{margin-left:-6.079219px;}
._7{margin-left:-4.399495px;}
._0{margin-left:-3.287658px;}
._1{margin-left:-1.322630px;}
._2{width:1.091170px;}
._4{width:2.301354px;}
._16{width:3.594103px;}
._15{width:4.729840px;}
._8{width:11.094379px;}
._3{width:12.971268px;}
._5{width:14.406926px;}
._9{width:15.924326px;}
._13{width:17.111727px;}
._a{width:18.506650px;}
._11{width:19.733515px;}
._d{width:20.749700px;}
._17{width:22.415850px;}
._e{width:23.432035px;}
._29{width:24.850318px;}
._c{width:26.794603px;}
._12{width:28.752064px;}
._1b{width:30.605107px;}
._6{width:32.637384px;}
._18{width:34.318762px;}
._19{width:37.068439px;}
._1c{width:38.622605px;}
._4a{width:40.330638px;}
._28{width:41.783144px;}
._1a{width:43.337310px;}
._4c{width:61.868160px;}
._27{width:82.249814px;}
._38{width:91.403482px;}
._21{width:95.653555px;}
._46{width:97.573668px;}
._36{width:136.594138px;}
._47{width:140.037235px;}
._1d{width:154.769539px;}
._1f{width:196.471757px;}
._40{width:207.231437px;}
._1e{width:220.896230px;}
._24{width:227.674829px;}
._22{width:268.454016px;}
._43{width:291.533530px;}
._35{width:293.954458px;}
._25{width:298.419725px;}
._33{width:303.207782px;}
._3c{width:310.255373px;}
._49{width:322.144819px;}
._23{width:338.445734px;}
._41{width:341.787191px;}
._26{width:353.455488px;}
._2d{width:385.035149px;}
._3f{width:401.766451px;}
._32{width:469.368710px;}
._2f{width:510.008832px;}
._31{width:557.411178px;}
._30{width:602.791603px;}
._3e{width:611.042227px;}
._48{width:636.036154px;}
._3d{width:640.147162px;}
._2e{width:651.229632px;}
._3a{width:676.299686px;}
._34{width:719.069414px;}
._39{width:745.269235px;}
._44{width:839.631629px;}
._42{width:925.009690px;}
._f{width:958.502721px;}
._3b{width:1059.075302px;}
._20{width:1146.782957px;}
._45{width:1188.680621px;}
._37{width:1262.379456px;}
._2c{width:2523.060229px;}
._10{width:2546.970229px;}
._2b{width:3377.851066px;}
._2a{width:4002.744229px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(138,67,71);}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fse{font-size:43.600200px;}
.fsa{font-size:45.429600px;}
.fsb{font-size:45.431550px;}
.fs3{font-size:47.236800px;}
.fs8{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:50.856300px;}
.fs7{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fsc{font-size:56.281050px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y1b9{bottom:-214.960523px;}
.y1bb{bottom:-31.180470px;}
.y1ba{bottom:-9.940533px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y8{bottom:14.151273px;}
.y2{bottom:16.185269px;}
.y49{bottom:31.890000px;}
.y23b{bottom:59.142000px;}
.y23a{bottom:75.580500px;}
.y239{bottom:92.019000px;}
.y266{bottom:93.574500px;}
.y103{bottom:97.693500px;}
.y235{bottom:100.239000px;}
.y1a8{bottom:101.764500px;}
.y1f{bottom:102.823500px;}
.y2b7{bottom:103.516500px;}
.y32f{bottom:103.557000px;}
.y48{bottom:103.621500px;}
.yb3{bottom:106.246500px;}
.y7e{bottom:106.677000px;}
.y28e{bottom:106.695000px;}
.y14a{bottom:107.620500px;}
.y234{bottom:108.457500px;}
.y265{bottom:112.404000px;}
.y102{bottom:114.132000px;}
.y2f8{bottom:116.334000px;}
.y1a7{bottom:120.594000px;}
.y1e{bottom:120.711000px;}
.y32e{bottom:120.817500px;}
.y2b6{bottom:122.346000px;}
.y47{bottom:122.449500px;}
.y28d{bottom:122.794500px;}
.ydd{bottom:123.283500px;}
.y149{bottom:124.059000px;}
.y238{bottom:124.896000px;}
.yb2{bottom:125.076000px;}
.y7d{bottom:125.506500px;}
.y28c{bottom:125.524500px;}
.y101{bottom:130.570500px;}
.y264{bottom:131.233500px;}
.y2f7{bottom:133.594500px;}
.y333{bottom:135.454500px;}
.y32d{bottom:138.078000px;}
.y1d{bottom:138.600000px;}
.y175{bottom:139.123500px;}
.y1a6{bottom:139.422000px;}
.y1f3{bottom:139.704000px;}
.y46{bottom:141.279000px;}
.y237{bottom:141.334500px;}
.y28b{bottom:141.624000px;}
.ydc{bottom:142.113000px;}
.yb1{bottom:143.905500px;}
.y7c{bottom:144.336000px;}
.y28a{bottom:144.354000px;}
.y100{bottom:147.009000px;}
.y263{bottom:147.333000px;}
.y146{bottom:147.699000px;}
.y262{bottom:150.063000px;}
.y2f6{bottom:150.855000px;}
.y32c{bottom:155.338500px;}
.y1f2{bottom:155.803500px;}
.y148{bottom:155.919000px;}
.y1c{bottom:156.487500px;}
.y2c2{bottom:156.639000px;}
.y236{bottom:157.773000px;}
.y174{bottom:157.953000px;}
.y1a5{bottom:158.251500px;}
.y1f1{bottom:158.533500px;}
.y45{bottom:160.108500px;}
.y29b{bottom:160.453500px;}
.ydb{bottom:160.942500px;}
.yb0{bottom:162.735000px;}
.y7a{bottom:163.165500px;}
.y289{bottom:163.183500px;}
.yff{bottom:163.447500px;}
.y144{bottom:164.137500px;}
.y261{bottom:166.162500px;}
.y2f5{bottom:168.115500px;}
.y7b{bottom:168.591000px;}
.y260{bottom:168.892500px;}
.y147{bottom:172.356000px;}
.y32b{bottom:172.599000px;}
.y1b{bottom:174.375000px;}
.y173{bottom:176.782500px;}
.y1a4{bottom:177.081000px;}
.y1f0{bottom:177.363000px;}
.y44{bottom:178.938000px;}
.yda{bottom:179.772000px;}
.y145{bottom:180.576000px;}
.y233{bottom:181.413000px;}
.yaf{bottom:181.564500px;}
.y79{bottom:181.995000px;}
.y288{bottom:182.013000px;}
.y2c1{bottom:183.178500px;}
.y2f4{bottom:185.376000px;}
.yfe{bottom:187.087500px;}
.y25f{bottom:187.722000px;}
.y32a{bottom:189.858000px;}
.y1a{bottom:192.264000px;}
.y172{bottom:195.612000px;}
.y1a3{bottom:195.910500px;}
.y1ef{bottom:196.192500px;}
.y2b5{bottom:197.664000px;}
.y43{bottom:197.767500px;}
.y231{bottom:197.851500px;}
.yd9{bottom:198.601500px;}
.yae{bottom:200.394000px;}
.y287{bottom:200.842500px;}
.y2f3{bottom:202.636500px;}
.yfd{bottom:203.526000px;}
.y143{bottom:204.216000px;}
.y332{bottom:204.496500px;}
.y78{bottom:205.308000px;}
.y25e{bottom:206.551500px;}
.y329{bottom:207.118500px;}
.y2c0{bottom:209.719500px;}
.y19{bottom:210.151500px;}
.y1ee{bottom:212.292000px;}
.y232{bottom:214.290000px;}
.y171{bottom:214.441500px;}
.y1a2{bottom:214.740000px;}
.y1ed{bottom:215.022000px;}
.y2b4{bottom:216.493500px;}
.y42{bottom:216.597000px;}
.yd8{bottom:217.431000px;}
.yf5{bottom:218.605500px;}
.yad{bottom:219.223500px;}
.y286{bottom:219.672000px;}
.y2f2{bottom:219.895500px;}
.yfc{bottom:219.964500px;}
.y142{bottom:220.654500px;}
.y328{bottom:224.379000px;}
.y25d{bottom:225.381000px;}
.y18{bottom:228.039000px;}
.yf7{bottom:228.183000px;}
.y170{bottom:233.271000px;}
.y1a1{bottom:233.569500px;}
.y1ec{bottom:233.850000px;}
.y2b3{bottom:235.323000px;}
.y41{bottom:235.426500px;}
.y285{bottom:235.771500px;}
.yd7{bottom:236.260500px;}
.yfb{bottom:236.403000px;}
.y141{bottom:237.093000px;}
.y2f1{bottom:237.156000px;}
.y230{bottom:237.931500px;}
.yac{bottom:238.053000px;}
.y284{bottom:238.501500px;}
.y77{bottom:238.932000px;}
.y331{bottom:239.017500px;}
.y327{bottom:241.639500px;}
.y25c{bottom:244.210500px;}
.yf6{bottom:244.621500px;}
.y13b{bottom:245.313000px;}
.y22e{bottom:246.150000px;}
.y16f{bottom:252.100500px;}
.y1a0{bottom:252.399000px;}
.y1eb{bottom:252.679500px;}
.yfa{bottom:252.841500px;}
.y140{bottom:253.531500px;}
.y2bf{bottom:253.834500px;}
.y40{bottom:254.256000px;}
.y22d{bottom:254.368500px;}
.y2f0{bottom:254.416500px;}
.yd6{bottom:255.090000px;}
.yab{bottom:256.882500px;}
.y283{bottom:257.331000px;}
.y76{bottom:257.761500px;}
.y326{bottom:258.900000px;}
.y139{bottom:261.751500px;}
.y25b{bottom:263.040000px;}
.yf9{bottom:269.280000px;}
.y13f{bottom:269.970000px;}
.y22f{bottom:270.807000px;}
.y16e{bottom:270.930000px;}
.y19f{bottom:271.228500px;}
.y1ea{bottom:271.509000px;}
.y2ef{bottom:271.677000px;}
.y3f{bottom:273.085500px;}
.y29a{bottom:273.430500px;}
.yd5{bottom:273.919500px;}
.yaa{bottom:275.712000px;}
.y282{bottom:276.160500px;}
.y75{bottom:276.591000px;}
.y13a{bottom:278.190000px;}
.y2be{bottom:280.374000px;}
.y25a{bottom:281.869500px;}
.yf8{bottom:285.718500px;}
.y13e{bottom:286.408500px;}
.y2ee{bottom:288.937500px;}
.y16d{bottom:289.759500px;}
.y19e{bottom:290.058000px;}
.y1e9{bottom:290.338500px;}
.y2b2{bottom:291.811500px;}
.y3e{bottom:291.915000px;}
.y281{bottom:292.260000px;}
.yd4{bottom:292.747500px;}
.y325{bottom:293.421000px;}
.y22c{bottom:294.448500px;}
.ya9{bottom:294.541500px;}
.y280{bottom:294.990000px;}
.y74{bottom:295.420500px;}
.y2bd{bottom:297.949500px;}
.y259{bottom:297.969000px;}
.y258{bottom:300.697500px;}
.y22a{bottom:302.667000px;}
.y13d{bottom:302.847000px;}
.y2ed{bottom:306.198000px;}
.y1e8{bottom:306.438000px;}
.y17{bottom:307.299000px;}
.y16c{bottom:308.587500px;}
.y19d{bottom:308.887500px;}
.y1e7{bottom:309.168000px;}
.yf4{bottom:309.358500px;}
.y1bc{bottom:310.216500px;}
.y2b1{bottom:310.641000px;}
.y324{bottom:310.681500px;}
.y3d{bottom:310.744500px;}
.y227{bottom:310.887000px;}
.yd3{bottom:311.577000px;}
.ya8{bottom:313.371000px;}
.y27f{bottom:313.819500px;}
.y73{bottom:314.250000px;}
.y2bc{bottom:315.523500px;}
.y229{bottom:319.105500px;}
.y299{bottom:319.243500px;}
.y13c{bottom:319.285500px;}
.y2ec{bottom:323.458500px;}
.y16{bottom:325.186500px;}
.yf3{bottom:325.797000px;}
.y226{bottom:327.325500px;}
.y16b{bottom:327.417000px;}
.y19c{bottom:327.717000px;}
.y323{bottom:327.940500px;}
.y3c{bottom:329.574000px;}
.y298{bottom:329.919000px;}
.yd2{bottom:330.406500px;}
.ya7{bottom:332.200500px;}
.y1e6{bottom:332.481000px;}
.y1b6{bottom:332.646000px;}
.y27e{bottom:332.649000px;}
.y72{bottom:333.079500px;}
.y228{bottom:335.544000px;}
.y2eb{bottom:340.719000px;}
.yef{bottom:342.235500px;}
.y138{bottom:342.925500px;}
.y15{bottom:343.074000px;}
.y22b{bottom:343.764000px;}
.y322{bottom:345.201000px;}
.y257{bottom:346.159500px;}
.y19b{bottom:346.546500px;}
.y2b0{bottom:348.300000px;}
.y3b{bottom:348.403500px;}
.yee{bottom:350.454000px;}
.ya6{bottom:351.030000px;}
.y27d{bottom:351.478500px;}
.y71{bottom:351.909000px;}
.yd1{bottom:353.719500px;}
.y2ea{bottom:357.978000px;}
.yf2{bottom:358.674000px;}
.y137{bottom:359.364000px;}
.y14{bottom:360.963000px;}
.y321{bottom:362.461500px;}
.y19a{bottom:365.376000px;}
.y1e5{bottom:366.105000px;}
.y2af{bottom:367.129500px;}
.y3a{bottom:367.233000px;}
.y224{bottom:367.404000px;}
.y133{bottom:367.584000px;}
.y256{bottom:369.801000px;}
.ya5{bottom:369.859500px;}
.y27c{bottom:370.308000px;}
.y16a{bottom:370.540500px;}
.y70{bottom:370.738500px;}
.yf1{bottom:375.112500px;}
.y2e9{bottom:375.238500px;}
.y136{bottom:375.802500px;}
.y320{bottom:379.722000px;}
.y222{bottom:383.842500px;}
.y132{bottom:384.022500px;}
.y199{bottom:384.205500px;}
.y1e4{bottom:384.934500px;}
.y39{bottom:386.062500px;}
.yd0{bottom:387.343500px;}
.ya4{bottom:388.689000px;}
.y27b{bottom:389.137500px;}
.y6f{bottom:389.568000px;}
.yf0{bottom:391.551000px;}
.y225{bottom:392.061000px;}
.y135{bottom:392.241000px;}
.y2e8{bottom:392.499000px;}
.y255{bottom:393.441000px;}
.y31f{bottom:396.982500px;}
.y13{bottom:399.024000px;}
.y221{bottom:400.281000px;}
.y1e3{bottom:403.764000px;}
.y38{bottom:404.892000px;}
.ycf{bottom:406.173000px;}
.ya3{bottom:407.518500px;}
.y27a{bottom:407.967000px;}
.y6e{bottom:408.397500px;}
.y134{bottom:408.679500px;}
.y2e7{bottom:409.759500px;}
.y31e{bottom:414.243000px;}
.yed{bottom:415.191000px;}
.y223{bottom:416.719500px;}
.y167{bottom:416.898000px;}
.y12{bottom:416.913000px;}
.y254{bottom:417.082500px;}
.y1e2{bottom:422.593500px;}
.yec{bottom:423.409500px;}
.y2ae{bottom:423.618000px;}
.y37{bottom:423.721500px;}
.yce{bottom:425.002500px;}
.y169{bottom:425.118000px;}
.y253{bottom:425.301000px;}
.ya2{bottom:426.348000px;}
.y279{bottom:426.796500px;}
.y2e6{bottom:427.020000px;}
.y6d{bottom:427.225500px;}
.y31d{bottom:431.503500px;}
.y130{bottom:432.319500px;}
.y11{bottom:434.800500px;}
.y220{bottom:440.359500px;}
.y198{bottom:441.142500px;}
.y1e1{bottom:441.423000px;}
.y168{bottom:441.556500px;}
.y36{bottom:442.551000px;}
.ycd{bottom:443.832000px;}
.y2e5{bottom:444.280500px;}
.ya1{bottom:445.177500px;}
.y278{bottom:445.626000px;}
.y6c{bottom:446.055000px;}
.y21c{bottom:448.579500px;}
.y12f{bottom:448.758000px;}
.y31c{bottom:448.764000px;}
.yea{bottom:455.269500px;}
.y21f{bottom:456.798000px;}
.y252{bottom:457.161000px;}
.ye6{bottom:457.573500px;}
.y197{bottom:459.972000px;}
.y1e0{bottom:460.252500px;}
.y2ad{bottom:461.277000px;}
.y35{bottom:461.380500px;}
.y2e4{bottom:461.541000px;}
.ycc{bottom:462.661500px;}
.ya0{bottom:464.007000px;}
.y277{bottom:464.454000px;}
.y6b{bottom:464.884500px;}
.y21b{bottom:465.018000px;}
.y12e{bottom:465.196500px;}
.y251{bottom:465.381000px;}
.y31b{bottom:466.024500px;}
.y297{bottom:469.879500px;}
.y10{bottom:470.622000px;}
.ye9{bottom:471.708000px;}
.y218{bottom:473.236500px;}
.y166{bottom:473.416500px;}
.y196{bottom:478.801500px;}
.y1df{bottom:479.082000px;}
.yeb{bottom:479.928000px;}
.y34{bottom:480.210000px;}
.y21a{bottom:481.455000px;}
.ycb{bottom:481.491000px;}
.y12d{bottom:481.635000px;}
.y9f{bottom:482.836500px;}
.y276{bottom:483.283500px;}
.y6a{bottom:483.714000px;}
.ye8{bottom:488.146500px;}
.yf{bottom:488.509500px;}
.y21e{bottom:489.675000px;}
.y131{bottom:489.853500px;}
.y128{bottom:489.855000px;}
.y2e3{bottom:496.062000px;}
.y250{bottom:497.241000px;}
.y195{bottom:497.631000px;}
.y219{bottom:497.893500px;}
.y1de{bottom:497.911500px;}
.y12c{bottom:498.073500px;}
.y33{bottom:499.039500px;}
.yca{bottom:500.320500px;}
.y31a{bottom:500.544000px;}
.y9e{bottom:501.666000px;}
.y275{bottom:502.113000px;}
.y69{bottom:502.543500px;}
.y1b8{bottom:503.419501px;}
.ye7{bottom:504.585000px;}
.y24f{bottom:505.459500px;}
.y21d{bottom:506.113500px;}
.y165{bottom:506.292000px;}
.ye{bottom:506.397000px;}
.y1b7{bottom:512.419501px;}
.y2e2{bottom:513.321000px;}
.y12b{bottom:514.512000px;}
.y194{bottom:516.460500px;}
.y1dd{bottom:516.741000px;}
.y319{bottom:517.804500px;}
.y32{bottom:517.869000px;}
.y274{bottom:518.212500px;}
.yc9{bottom:519.150000px;}
.y9d{bottom:520.495500px;}
.y273{bottom:520.942500px;}
.y68{bottom:521.373000px;}
.y164{bottom:522.730500px;}
.yd{bottom:524.286000px;}
.ye5{bottom:528.226500px;}
.y215{bottom:529.753500px;}
.y2e1{bottom:530.581500px;}
.y12a{bottom:530.950500px;}
.y318{bottom:535.065000px;}
.y193{bottom:535.290000px;}
.y1dc{bottom:535.570500px;}
.y2ab{bottom:536.595000px;}
.y296{bottom:537.042000px;}
.y24e{bottom:537.319500px;}
.y217{bottom:537.973500px;}
.yc8{bottom:537.979500px;}
.y9c{bottom:539.323500px;}
.y272{bottom:539.772000px;}
.y67{bottom:540.202500px;}
.y31{bottom:541.180500px;}
.yc{bottom:542.173500px;}
.ye4{bottom:544.663500px;}
.y2ac{bottom:544.749000px;}
.ye2{bottom:545.889000px;}
.y214{bottom:546.192000px;}
.y129{bottom:547.389000px;}
.y2e0{bottom:547.842000px;}
.y317{bottom:552.325500px;}
.y192{bottom:554.118000px;}
.y1db{bottom:554.400000px;}
.y211{bottom:554.412000px;}
.y163{bottom:554.590500px;}
.yc7{bottom:556.809000px;}
.y9b{bottom:558.153000px;}
.y271{bottom:558.601500px;}
.yb{bottom:560.061000px;}
.y24d{bottom:560.961000px;}
.y213{bottom:562.630500px;}
.y162{bottom:562.810500px;}
.y66{bottom:563.515500px;}
.y2df{bottom:565.102500px;}
.ye3{bottom:568.305000px;}
.y316{bottom:569.586000px;}
.y216{bottom:570.850500px;}
.y127{bottom:571.029000px;}
.y191{bottom:572.947500px;}
.y1da{bottom:573.229500px;}
.yc6{bottom:575.638500px;}
.y9a{bottom:576.982500px;}
.y270{bottom:577.431000px;}
.ya{bottom:577.950000px;}
.y212{bottom:579.069000px;}
.y161{bottom:579.249000px;}
.y2de{bottom:582.363000px;}
.y24c{bottom:584.601000px;}
.y315{bottom:586.846500px;}
.y126{bottom:587.467500px;}
.y190{bottom:591.777000px;}
.y1d9{bottom:592.059000px;}
.y2a9{bottom:593.082000px;}
.yc5{bottom:594.468000px;}
.y160{bottom:595.686000px;}
.y99{bottom:595.812000px;}
.y26f{bottom:596.260500px;}
.y65{bottom:597.139500px;}
.y2dd{bottom:599.623500px;}
.ye1{bottom:599.925000px;}
.y7{bottom:600.320964px;}
.y2aa{bottom:601.237500px;}
.y20f{bottom:602.709000px;}
.y123{bottom:603.906000px;}
.y314{bottom:604.107000px;}
.y24b{bottom:608.241000px;}
.y18f{bottom:610.606500px;}
.y1d8{bottom:610.888500px;}
.y20e{bottom:610.929000px;}
.y2a8{bottom:611.911500px;}
.y15f{bottom:612.124500px;}
.yc4{bottom:613.297500px;}
.y98{bottom:614.641500px;}
.y26e{bottom:615.090000px;}
.y64{bottom:615.969000px;}
.y30{bottom:616.330500px;}
.y2dc{bottom:616.884000px;}
.y210{bottom:619.147500px;}
.ye0{bottom:619.158000px;}
.y125{bottom:620.344500px;}
.y313{bottom:621.366000px;}
.y18e{bottom:629.436000px;}
.y1d7{bottom:629.718000px;}
.y24a{bottom:631.882500px;}
.yc3{bottom:632.127000px;}
.y97{bottom:633.471000px;}
.y26d{bottom:633.919500px;}
.y2db{bottom:634.144500px;}
.y63{bottom:634.798500px;}
.y124{bottom:636.783000px;}
.y2bb{bottom:637.954500px;}
.y312{bottom:638.626500px;}
.y15c{bottom:643.984500px;}
.y20d{bottom:647.671500px;}
.y18d{bottom:648.265500px;}
.y1d6{bottom:648.547500px;}
.yc2{bottom:650.956500px;}
.y2da{bottom:651.403500px;}
.y1b4{bottom:652.300500px;}
.ydf{bottom:652.749000px;}
.y62{bottom:653.628000px;}
.y2f{bottom:653.721000px;}
.y249{bottom:655.522500px;}
.y311{bottom:655.887000px;}
.y96{bottom:656.784000px;}
.y20c{bottom:659.227500px;}
.y122{bottom:660.423000px;}
.y18c{bottom:667.095000px;}
.y1d5{bottom:667.375500px;}
.y208{bottom:667.446000px;}
.y11f{bottom:668.643000px;}
.y2d9{bottom:668.664000px;}
.y26c{bottom:668.848500px;}
.yc1{bottom:669.786000px;}
.y1b3{bottom:671.130000px;}
.yde{bottom:671.578500px;}
.y61{bottom:672.457500px;}
.y310{bottom:673.147500px;}
.y2e{bottom:673.177500px;}
.y20b{bottom:675.666000px;}
.y121{bottom:676.861500px;}
.y248{bottom:679.164000px;}
.y207{bottom:683.884500px;}
.y11e{bottom:685.081500px;}
.y18b{bottom:685.924500px;}
.y1d4{bottom:686.205000px;}
.y330{bottom:687.786000px;}
.yc0{bottom:688.615500px;}
.y1b2{bottom:689.959500px;}
.y95{bottom:690.408000px;}
.y60{bottom:691.287000px;}
.y20a{bottom:692.104500px;}
.y2d{bottom:692.635500px;}
.y120{bottom:693.300000px;}
.y156{bottom:701.518500px;}
.y15e{bottom:701.520000px;}
.y247{bottom:702.804000px;}
.y2d8{bottom:703.185000px;}
.y18a{bottom:704.754000px;}
.y1d3{bottom:705.034500px;}
.y2a7{bottom:706.059000px;}
.y26b{bottom:706.507500px;}
.ybf{bottom:707.445000px;}
.y30f{bottom:707.668500px;}
.y209{bottom:708.541500px;}
.y1b1{bottom:708.789000px;}
.y94{bottom:709.237500px;}
.y15b{bottom:709.738500px;}
.y5f{bottom:710.116500px;}
.y2c{bottom:712.092000px;}
.y11c{bottom:716.941500px;}
.y155{bottom:717.957000px;}
.y2d7{bottom:720.445500px;}
.y189{bottom:723.583500px;}
.y1d2{bottom:723.864000px;}
.y30e{bottom:724.929000px;}
.y2ba{bottom:725.337000px;}
.y15a{bottom:726.177000px;}
.ybe{bottom:726.273000px;}
.y246{bottom:726.445500px;}
.y1b0{bottom:727.618500px;}
.y93{bottom:728.067000px;}
.y5e{bottom:728.946000px;}
.y2b{bottom:731.550000px;}
.y205{bottom:732.183000px;}
.y11b{bottom:733.378500px;}
.y15d{bottom:734.395500px;}
.y2d6{bottom:737.706000px;}
.y30d{bottom:742.189500px;}
.y188{bottom:742.413000px;}
.y159{bottom:742.615500px;}
.y1d1{bottom:742.693500px;}
.y2a6{bottom:743.718000px;}
.y2b9{bottom:744.166500px;}
.ybd{bottom:745.102500px;}
.y1af{bottom:746.448000px;}
.y92{bottom:746.896500px;}
.y5d{bottom:747.775500px;}
.y204{bottom:748.621500px;}
.y118{bottom:749.817000px;}
.y245{bottom:750.085500px;}
.y2a{bottom:751.006500px;}
.y2d5{bottom:754.966500px;}
.y11d{bottom:758.037000px;}
.y158{bottom:759.054000px;}
.y30c{bottom:759.450000px;}
.y187{bottom:761.242500px;}
.y1d0{bottom:761.523000px;}
.y2a5{bottom:762.547500px;}
.ybc{bottom:763.932000px;}
.y203{bottom:765.060000px;}
.y1ae{bottom:765.277500px;}
.y91{bottom:765.726000px;}
.y117{bottom:766.255500px;}
.y5c{bottom:766.605000px;}
.y29{bottom:770.463000px;}
.y2d4{bottom:772.227000px;}
.y244{bottom:773.727000px;}
.y157{bottom:775.492500px;}
.y30b{bottom:776.709000px;}
.y186{bottom:780.072000px;}
.y1cf{bottom:780.352500px;}
.y2a4{bottom:781.377000px;}
.y1ff{bottom:781.498500px;}
.y295{bottom:781.825500px;}
.y11a{bottom:782.694000px;}
.ybb{bottom:782.761500px;}
.y1ad{bottom:784.107000px;}
.y90{bottom:784.555500px;}
.y5b{bottom:785.434500px;}
.y2d3{bottom:789.487500px;}
.y206{bottom:789.717000px;}
.y28{bottom:789.921000px;}
.y30a{bottom:793.969500px;}
.y243{bottom:797.367000px;}
.y1fe{bottom:797.937000px;}
.y185{bottom:798.901500px;}
.y119{bottom:799.132500px;}
.y1ce{bottom:799.182000px;}
.yba{bottom:801.591000px;}
.y1ac{bottom:802.936500px;}
.y8f{bottom:803.385000px;}
.y5a{bottom:804.264000px;}
.y2d2{bottom:806.746500px;}
.y1b5{bottom:807.729000px;}
.y27{bottom:809.377500px;}
.y309{bottom:811.230000px;}
.y202{bottom:814.374000px;}
.y152{bottom:815.571000px;}
.y184{bottom:817.731000px;}
.y1cd{bottom:818.011500px;}
.y2b8{bottom:819.484500px;}
.yb9{bottom:820.420500px;}
.y242{bottom:821.008500px;}
.y1ab{bottom:821.766000px;}
.y8e{bottom:822.214500px;}
.y116{bottom:822.774000px;}
.y59{bottom:823.093500px;}
.y154{bottom:823.789500px;}
.y2d1{bottom:824.007000px;}
.y308{bottom:828.490500px;}
.y26{bottom:828.834000px;}
.y201{bottom:830.812500px;}
.y151{bottom:832.009500px;}
.y183{bottom:836.560500px;}
.y1cc{bottom:836.841000px;}
.y2a3{bottom:837.865500px;}
.y115{bottom:839.211000px;}
.yb8{bottom:839.250000px;}
.y1aa{bottom:840.595500px;}
.y8d{bottom:841.044000px;}
.y2d0{bottom:841.267500px;}
.y58{bottom:841.923000px;}
.y241{bottom:844.648500px;}
.y307{bottom:845.751000px;}
.y200{bottom:847.251000px;}
.y25{bottom:848.292000px;}
.y153{bottom:848.448000px;}
.y182{bottom:855.390000px;}
.y114{bottom:855.649500px;}
.y1cb{bottom:855.670500px;}
.y2a2{bottom:856.695000px;}
.y294{bottom:857.143500px;}
.y2cf{bottom:858.528000px;}
.y2a1{bottom:859.425000px;}
.y8c{bottom:859.873500px;}
.y57{bottom:860.751000px;}
.yb7{bottom:862.563000px;}
.y306{bottom:863.011500px;}
.y110{bottom:863.869500px;}
.y1a9{bottom:863.908500px;}
.y24{bottom:867.748500px;}
.y1fd{bottom:870.892500px;}
.y113{bottom:872.088000px;}
.y181{bottom:874.219500px;}
.y1ca{bottom:874.500000px;}
.y2ce{bottom:875.788500px;}
.y240{bottom:876.268500px;}
.y2a0{bottom:878.254500px;}
.y8b{bottom:878.703000px;}
.y56{bottom:879.580500px;}
.y305{bottom:880.272000px;}
.yb6{bottom:882.738000px;}
.y23{bottom:887.206500px;}
.y1fb{bottom:887.331000px;}
.y112{bottom:888.526500px;}
.y180{bottom:893.049000px;}
.y1c9{bottom:893.329500px;}
.y293{bottom:894.802500px;}
.y29f{bottom:897.084000px;}
.y8a{bottom:897.532500px;}
.y55{bottom:898.410000px;}
.y1fc{bottom:903.769500px;}
.y111{bottom:904.965000px;}
.y2cd{bottom:910.309500px;}
.y17f{bottom:911.878500px;}
.y1c8{bottom:912.159000px;}
.y14d{bottom:913.185000px;}
.y303{bottom:914.791500px;}
.y304{bottom:914.793000px;}
.y29e{bottom:915.913500px;}
.y89{bottom:916.362000px;}
.y54{bottom:917.239500px;}
.y150{bottom:921.403500px;}
.y22{bottom:922.140000px;}
.y1f9{bottom:927.409500px;}
.y2cc{bottom:927.570000px;}
.y10e{bottom:928.606500px;}
.y17e{bottom:930.708000px;}
.y1c7{bottom:930.988500px;}
.y302{bottom:932.052000px;}
.y1fa{bottom:932.292000px;}
.y26a{bottom:932.461500px;}
.y29d{bottom:934.743000px;}
.y88{bottom:935.191500px;}
.y53{bottom:936.069000px;}
.y14f{bottom:937.842000px;}
.y21{bottom:938.280000px;}
.y1f7{bottom:943.848000px;}
.y2cb{bottom:944.829000px;}
.y10d{bottom:945.043500px;}
.y23f{bottom:946.807500px;}
.y301{bottom:949.312500px;}
.y17d{bottom:949.537500px;}
.y1c6{bottom:949.818000px;}
.y87{bottom:954.021000px;}
.y14e{bottom:954.280500px;}
.y20{bottom:954.420000px;}
.y29c{bottom:958.054500px;}
.y52{bottom:959.382000px;}
.y1f8{bottom:960.286500px;}
.y10c{bottom:961.482000px;}
.y2ca{bottom:962.089500px;}
.y300{bottom:966.573000px;}
.y17c{bottom:968.367000px;}
.y1c5{bottom:968.647500px;}
.y10f{bottom:969.702000px;}
.y86{bottom:972.849000px;}
.y10b{bottom:977.920500px;}
.y2c9{bottom:979.350000px;}
.y51{bottom:979.557000px;}
.y2ff{bottom:983.833500px;}
.y1f6{bottom:983.926500px;}
.y23e{bottom:984.466500px;}
.y14c{bottom:986.140500px;}
.y17b{bottom:987.196500px;}
.y1c4{bottom:987.477000px;}
.y292{bottom:988.950000px;}
.y85{bottom:991.678500px;}
.y10a{bottom:994.359000px;}
.y6{bottom:995.302500px;}
.y2c8{bottom:996.610500px;}
.y2fe{bottom:1001.094000px;}
.y14b{bottom:1002.579000px;}
.y17a{bottom:1006.026000px;}
.y1c3{bottom:1006.306500px;}
.y291{bottom:1007.778000px;}
.y84{bottom:1010.508000px;}
.y109{bottom:1010.797500px;}
.y50{bottom:1013.181000px;}
.y2c7{bottom:1013.871000px;}
.y1f5{bottom:1015.546500px;}
.y269{bottom:1015.933500px;}
.y2fd{bottom:1018.354500px;}
.y179{bottom:1024.855500px;}
.y1c2{bottom:1025.136000px;}
.y290{bottom:1026.607500px;}
.y83{bottom:1029.337500px;}
.y2c6{bottom:1031.131500px;}
.y4f{bottom:1032.010500px;}
.y108{bottom:1034.439000px;}
.y268{bottom:1034.763000px;}
.y2fc{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y178{bottom:1043.685000px;}
.y1c1{bottom:1043.965500px;}
.y82{bottom:1048.167000px;}
.y2c5{bottom:1048.392000px;}
.y4e{bottom:1050.840000px;}
.y107{bottom:1050.876000px;}
.y105{bottom:1052.101500px;}
.y2fb{bottom:1052.875500px;}
.yb5{bottom:1053.592500px;}
.y23d{bottom:1059.784500px;}
.y177{bottom:1062.513000px;}
.y1c0{bottom:1062.795000px;}
.y2c4{bottom:1065.652500px;}
.y81{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4d{bottom:1069.669500px;}
.y2fa{bottom:1070.134500px;}
.yb4{bottom:1072.422000px;}
.y106{bottom:1074.517500px;}
.y23c{bottom:1078.614000px;}
.y176{bottom:1081.342500px;}
.y1bf{bottom:1081.624500px;}
.y2c3{bottom:1082.913000px;}
.y28f{bottom:1083.096000px;}
.y80{bottom:1085.826000px;}
.y2f9{bottom:1087.395000px;}
.y4c{bottom:1088.499000px;}
.y267{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y1be{bottom:1100.454000px;}
.y1f4{bottom:1101.925500px;}
.y7f{bottom:1104.655500px;}
.y104{bottom:1106.137500px;}
.y4b{bottom:1107.327000px;}
.y1bd{bottom:1119.283500px;}
.y1{bottom:1141.174500px;}
.y4a{bottom:1173.397500px;}
.h20{height:21.058897px;}
.h11{height:22.864061px;}
.h7{height:25.508090px;}
.h21{height:27.167011px;}
.h13{height:30.084428px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.ha{height:36.319550px;}
.h23{height:37.551283px;}
.hd{height:38.734848px;}
.h15{height:39.432893px;}
.h18{height:39.434227px;}
.hc{height:41.508281px;}
.h14{height:41.723369px;}
.h1d{height:42.015310px;}
.hf{height:43.038432px;}
.hb{height:43.660208px;}
.h4{height:43.815515px;}
.h6{height:44.473046px;}
.he{height:46.697011px;}
.h1f{height:47.032145px;}
.h22{height:49.117939px;}
.h2{height:50.931027px;}
.h10{height:51.885221px;}
.h1e{height:52.048979px;}
.h12{height:54.575123px;}
.h16{height:71.608848px;}
.h5{height:77.469696px;}
.h19{height:79.571011px;}
.h17{height:79.577011px;}
.h3{height:94.491000px;}
.h1c{height:435.912000px;}
.h1a{height:892.914000px;}
.h1b{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:210.267043px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1055.298000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:63.308592px;}
.x6a{left:65.068500px;}
.xa2{left:72.238500px;}
.xa6{left:77.268000px;}
.x8d{left:78.882000px;}
.x97{left:83.529000px;}
.x68{left:85.446000px;}
.xb2{left:87.954000px;}
.x80{left:89.634000px;}
.xac{left:90.952500px;}
.x95{left:93.232500px;}
.x12d{left:95.128500px;}
.x6f{left:99.103500px;}
.x9d{left:100.878000px;}
.xd6{left:103.770000px;}
.x8e{left:105.357000px;}
.xa1{left:108.679500px;}
.xa3{left:112.168500px;}
.x79{left:114.435000px;}
.xf0{left:129.700500px;}
.x69{left:136.312500px;}
.xb8{left:163.546500px;}
.xef{left:166.951500px;}
.x72{left:209.368500px;}
.x9e{left:210.882000px;}
.x7a{left:212.253000px;}
.x81{left:215.058000px;}
.xa7{left:216.477000px;}
.xb3{left:218.238000px;}
.x78{left:219.274500px;}
.xb0{left:220.498500px;}
.xa9{left:224.358000px;}
.x85{left:227.721000px;}
.xb1{left:229.294500px;}
.x70{left:230.659500px;}
.xb5{left:232.509000px;}
.xa4{left:234.297000px;}
.x6d{left:236.832000px;}
.xb6{left:239.400000px;}
.xaa{left:240.550500px;}
.xd8{left:242.292012px;}
.x93{left:246.126000px;}
.x6e{left:247.672500px;}
.x6{left:249.832500px;}
.x5{left:250.897500px;}
.x84{left:252.742500px;}
.x71{left:258.123000px;}
.xa8{left:259.878000px;}
.xb4{left:263.919000px;}
.x10b{left:272.791500px;}
.x11f{left:279.217500px;}
.x9{left:282.786000px;}
.xd9{left:285.369000px;}
.xd2{left:288.532500px;}
.xc3{left:291.448500px;}
.xfb{left:293.661000px;}
.xe8{left:295.740000px;}
.xe7{left:296.929500px;}
.x11e{left:299.256000px;}
.xa{left:300.427500px;}
.xd3{left:303.477000px;}
.xbf{left:306.637500px;}
.xb{left:307.899000px;}
.x7{left:309.436500px;}
.x12a{left:312.358500px;}
.x29{left:313.945500px;}
.xdd{left:315.483000px;}
.x123{left:319.275000px;}
.x8{left:321.193500px;}
.xf4{left:322.315500px;}
.x103{left:324.972000px;}
.x2f{left:326.928000px;}
.x2a{left:328.890000px;}
.x10e{left:331.699500px;}
.x67{left:333.102000px;}
.x30{left:334.399500px;}
.x18{left:337.278000px;}
.xf2{left:340.056000px;}
.x58{left:342.894000px;}
.x19{left:344.749500px;}
.x59{left:346.698000px;}
.x1a{left:348.559500px;}
.x2b{left:351.454500px;}
.x10f{left:354.115500px;}
.x109{left:355.225500px;}
.x105{left:360.339000px;}
.x5a{left:361.641000px;}
.x1b{left:363.504000px;}
.x75{left:366.351000px;}
.x62{left:367.495500px;}
.x76{left:369.538500px;}
.xaf{left:370.608000px;}
.x82{left:372.040500px;}
.x9f{left:374.253000px;}
.x8b{left:375.288000px;}
.x83{left:377.224500px;}
.xae{left:378.388500px;}
.x6b{left:379.504500px;}
.xf9{left:381.292500px;}
.x63{left:382.440000px;}
.x27{left:385.152000px;}
.x73{left:387.642000px;}
.xb7{left:389.491500px;}
.xf1{left:390.984000px;}
.x2d{left:392.476500px;}
.xa0{left:394.534500px;}
.x39{left:396.450000px;}
.x28{left:400.096500px;}
.xad{left:403.672500px;}
.x87{left:405.483000px;}
.x2e{left:407.421000px;}
.x94{left:409.329000px;}
.x3a{left:411.394500px;}
.xe5{left:413.218500px;}
.x74{left:415.105500px;}
.xde{left:419.043000px;}
.xc2{left:421.027500px;}
.xe{left:422.292000px;}
.xf3{left:425.217000px;}
.xdf{left:426.364500px;}
.xf{left:429.763500px;}
.xf7{left:431.983500px;}
.x116{left:434.535000px;}
.xe6{left:435.634500px;}
.xe3{left:438.510000px;}
.x10{left:440.200500px;}
.xf8{left:441.823500px;}
.x122{left:443.683500px;}
.x1c{left:445.312500px;}
.x11{left:447.672000px;}
.xe0{left:448.780500px;}
.xe9{left:450.498000px;}
.x64{left:453.993000px;}
.xd0{left:455.536500px;}
.x117{left:456.951000px;}
.x113{left:458.722500px;}
.xea{left:459.892500px;}
.x5e{left:461.091000px;}
.x1f{left:463.081500px;}
.x65{left:468.937500px;}
.xbd{left:470.760000px;}
.x127{left:474.804000px;}
.x5f{left:476.035500px;}
.x20{left:478.026000px;}
.x60{left:479.695500px;}
.x124{left:483.799500px;}
.xbe{left:485.704500px;}
.xeb{left:487.824000px;}
.xc0{left:489.235500px;}
.xc5{left:491.691000px;}
.x31{left:493.624500px;}
.x61{left:494.640000px;}
.x37{left:496.599000px;}
.xc6{left:499.312500px;}
.x118{left:501.937500px;}
.xc1{left:504.180000px;}
.x125{left:506.215500px;}
.x126{left:508.137000px;}
.x38{left:511.543500px;}
.xc7{left:514.257000px;}
.xce{left:518.257500px;}
.x7f{left:523.234500px;}
.x90{left:525.171000px;}
.x88{left:527.712000px;}
.x9a{left:529.117500px;}
.x98{left:531.310500px;}
.x8a{left:532.984500px;}
.x8c{left:534.228000px;}
.xd4{left:535.765500px;}
.xca{left:538.068000px;}
.x8f{left:539.871000px;}
.xa5{left:541.396500px;}
.x99{left:542.608500px;}
.xab{left:544.860000px;}
.x2c{left:549.720000px;}
.x7e{left:551.490000px;}
.x7b{left:552.916500px;}
.x7c{left:555.730500px;}
.xcb{left:556.765500px;}
.x9b{left:559.042500px;}
.x23{left:564.243000px;}
.x41{left:566.311500px;}
.x96{left:568.047000px;}
.x48{left:569.643000px;}
.x24{left:571.050000px;}
.x89{left:572.296500px;}
.x92{left:573.823500px;}
.x42{left:576.151500px;}
.x134{left:577.507500px;}
.x45{left:579.103500px;}
.x86{left:582.088500px;}
.x49{left:584.587500px;}
.x106{left:586.632000px;}
.x111{left:589.276500px;}
.x4e{left:593.836500px;}
.x7d{left:597.978000px;}
.x91{left:599.202000px;}
.xcc{left:600.376500px;}
.xe1{left:603.870000px;}
.x9c{left:605.248500px;}
.xe4{left:606.541500px;}
.x110{left:612.579000px;}
.xcd{left:615.319500px;}
.x10d{left:616.416000px;}
.x104{left:618.132000px;}
.x4a{left:619.986000px;}
.x128{left:621.339000px;}
.xe2{left:626.286000px;}
.xc8{left:628.741500px;}
.x129{left:631.513500px;}
.x4b{left:633.417000px;}
.x121{left:640.071000px;}
.xc9{left:643.684500px;}
.x11d{left:648.471000px;}
.xdc{left:650.392500px;}
.xed{left:652.858500px;}
.xc{left:654.796500px;}
.x46{left:657.360000px;}
.x12{left:658.375500px;}
.x120{left:660.895500px;}
.xd{left:662.268000px;}
.xee{left:663.309000px;}
.x13{left:665.847000px;}
.xfc{left:668.517000px;}
.xf5{left:670.561500px;}
.x47{left:672.304500px;}
.xd1{left:673.764000px;}
.x119{left:675.664500px;}
.x3d{left:677.637000px;}
.xec{left:679.482000px;}
.xf6{left:680.794500px;}
.x10a{left:682.578000px;}
.x11a{left:685.837500px;}
.xd5{left:687.639000px;}
.x32{left:688.987500px;}
.xba{left:690.921000px;}
.x3e{left:692.581500px;}
.x101{left:695.943000px;}
.x33{left:703.932000px;}
.xbb{left:705.864000px;}
.x102{left:708.126000px;}
.x12c{left:710.026500px;}
.x34{left:711.471000px;}
.xfd{left:713.706000px;}
.x135{left:715.425000px;}
.x21{left:718.029000px;}
.x11b{left:721.168500px;}
.xfe{left:723.546000px;}
.x132{left:725.272500px;}
.x35{left:726.415500px;}
.x11c{left:727.975500px;}
.x22{left:732.973500px;}
.xda{left:733.978500px;}
.x10c{left:735.552000px;}
.x12b{left:737.074500px;}
.x12e{left:739.470000px;}
.x5b{left:740.869500px;}
.x5c{left:744.628500px;}
.x112{left:746.322000px;}
.xdb{left:748.923000px;}
.x12f{left:749.992500px;}
.xbc{left:751.111500px;}
.xcf{left:753.787500px;}
.x115{left:756.114000px;}
.x1d{left:757.828500px;}
.x5d{left:759.573000px;}
.x56{left:760.782000px;}
.xff{left:763.056000px;}
.x114{left:764.685000px;}
.x3b{left:765.907500px;}
.x6c{left:767.590500px;}
.xb9{left:769.167000px;}
.x4f{left:771.031500px;}
.x1e{left:772.773000px;}
.x53{left:774.139500px;}
.x57{left:775.725000px;}
.x130{left:776.892000px;}
.xfa{left:779.406000px;}
.x36{left:780.901500px;}
.x131{left:783.045000px;}
.x3c{left:784.056000px;}
.x52{left:785.086500px;}
.x77{left:787.018500px;}
.x50{left:789.124500px;}
.x107{left:790.216500px;}
.x43{left:792.450000px;}
.x4c{left:794.880000px;}
.x54{left:796.636500px;}
.x44{left:802.350000px;}
.x51{left:804.069000px;}
.x4d{left:808.311000px;}
.x100{left:810.226500px;}
.x55{left:811.581000px;}
.x14{left:813.139500px;}
.x25{left:815.053500px;}
.x133{left:816.253500px;}
.x66{left:817.819500px;}
.x15{left:820.612500px;}
.x26{left:821.860500px;}
.x16{left:824.422500px;}
.x3f{left:826.552500px;}
.x108{left:830.037000px;}
.x17{left:831.894000px;}
.xc4{left:832.947000px;}
.x40{left:836.392500px;}
.xd7{left:1085.411981px;}
@media print{
.v5{vertical-align:-17.360000pt;}
.v3{vertical-align:-9.706667pt;}
.v2{vertical-align:-8.800000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v6{vertical-align:19.285333pt;}
.v1{vertical-align:29.221333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000079pt;}
.ls4e{letter-spacing:0.000260pt;}
.ls4d{letter-spacing:0.000361pt;}
.ls7{letter-spacing:0.000414pt;}
.ls2{letter-spacing:0.000533pt;}
.ls21{letter-spacing:0.000544pt;}
.ls22{letter-spacing:0.000607pt;}
.ls2e{letter-spacing:0.000711pt;}
.ls9{letter-spacing:0.000747pt;}
.ls2c{letter-spacing:0.000921pt;}
.ls26{letter-spacing:0.000932pt;}
.ls45{letter-spacing:0.001205pt;}
.ls14{letter-spacing:0.001382pt;}
.ls1c{letter-spacing:0.001405pt;}
.ls37{letter-spacing:0.001408pt;}
.ls1d{letter-spacing:0.001736pt;}
.ls33{letter-spacing:0.001863pt;}
.ls44{letter-spacing:0.002038pt;}
.ls15{letter-spacing:0.002133pt;}
.ls2d{letter-spacing:0.002262pt;}
.ls1a{letter-spacing:0.002473pt;}
.ls3e{letter-spacing:0.002525pt;}
.ls29{letter-spacing:0.002643pt;}
.ls42{letter-spacing:0.002805pt;}
.ls3a{letter-spacing:0.003230pt;}
.ls2b{letter-spacing:0.003261pt;}
.ls1b{letter-spacing:0.004147pt;}
.ls1e{letter-spacing:0.004202pt;}
.ls16{letter-spacing:0.004267pt;}
.lsb{letter-spacing:0.004798pt;}
.ls6{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls19{letter-spacing:2.656533pt;}
.ls10{letter-spacing:2.657067pt;}
.ls12{letter-spacing:3.118133pt;}
.ls11{letter-spacing:3.123467pt;}
.ls1f{letter-spacing:3.158400pt;}
.ls1{letter-spacing:9.298933pt;}
.ls4{letter-spacing:10.626533pt;}
.ls46{letter-spacing:11.582215pt;}
.ls4b{letter-spacing:11.747334pt;}
.ls32{letter-spacing:11.763128pt;}
.ls41{letter-spacing:11.804298pt;}
.ls47{letter-spacing:11.829152pt;}
.ls34{letter-spacing:11.856033pt;}
.ls38{letter-spacing:11.880779pt;}
.ls28{letter-spacing:11.919341pt;}
.ls3f{letter-spacing:11.940277pt;}
.ls25{letter-spacing:11.954133pt;}
.ls3b{letter-spacing:11.958084pt;}
.ls31{letter-spacing:11.958716pt;}
.ls24{letter-spacing:11.959467pt;}
.ls48{letter-spacing:11.967389pt;}
.ls40{letter-spacing:11.980284pt;}
.ls27{letter-spacing:12.020776pt;}
.ls49{letter-spacing:12.087724pt;}
.ls30{letter-spacing:12.098781pt;}
.ls43{letter-spacing:12.117896pt;}
.ls35{letter-spacing:12.126266pt;}
.ls4a{letter-spacing:12.528078pt;}
.ls4f{letter-spacing:13.116695pt;}
.ls17{letter-spacing:13.389734pt;}
.ls23{letter-spacing:13.475405pt;}
.ls20{letter-spacing:13.585061pt;}
.ls18{letter-spacing:14.613867pt;}
.lsa{letter-spacing:14.641270pt;}
.ls2f{letter-spacing:14.823467pt;}
.ls39{letter-spacing:15.047510pt;}
.ls3d{letter-spacing:15.098395pt;}
.lsf{letter-spacing:15.937067pt;}
.lse{letter-spacing:15.942400pt;}
.lsc{letter-spacing:16.643884pt;}
.lsd{letter-spacing:16.649113pt;}
.ls3c{letter-spacing:16.719310pt;}
.ls8{letter-spacing:16.743415pt;}
.ls2a{letter-spacing:17.017349pt;}
.ls36{letter-spacing:17.467022pt;}
.ls3{letter-spacing:25.292137pt;}
.ls13{letter-spacing:99.190340pt;}
.ws5b{word-spacing:-13.283467pt;}
.ws89{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.wsa7{word-spacing:-10.095900pt;}
.ws7{word-spacing:-9.298400pt;}
.ws47{word-spacing:-2.975497pt;}
.ws70{word-spacing:-2.603559pt;}
.wsb0{word-spacing:-2.497292pt;}
.ws3a{word-spacing:-2.391024pt;}
.wsc9{word-spacing:-2.337890pt;}
.ws50{word-spacing:-2.231622pt;}
.ws131{word-spacing:-2.151936pt;}
.wsc4{word-spacing:-2.125355pt;}
.ws12f{word-spacing:-2.104115pt;}
.wsa6{word-spacing:-2.072221pt;}
.ws1f{word-spacing:-2.008474pt;}
.wsc6{word-spacing:-1.965953pt;}
.wse0{word-spacing:-1.960653pt;}
.wsdf{word-spacing:-1.912832pt;}
.ws59{word-spacing:-1.806551pt;}
.ws60{word-spacing:-1.753418pt;}
.wsd4{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws130{word-spacing:-1.673728pt;}
.wsd3{word-spacing:-1.647150pt;}
.wsd2{word-spacing:-1.594016pt;}
.ws137{word-spacing:-1.578086pt;}
.ws49{word-spacing:-1.540882pt;}
.ws1d{word-spacing:-1.530266pt;}
.ws40{word-spacing:-1.487748pt;}
.wsd1{word-spacing:-1.434614pt;}
.ws61{word-spacing:-1.381481pt;}
.ws9d{word-spacing:-1.328347pt;}
.ws97{word-spacing:-1.222079pt;}
.ws138{word-spacing:-1.195520pt;}
.ws2{word-spacing:-1.175671pt;}
.ws102{word-spacing:-1.147699pt;}
.ws7a{word-spacing:-1.115811pt;}
.ws9e{word-spacing:-1.062677pt;}
.ws121{word-spacing:-1.052058pt;}
.wsd0{word-spacing:-1.009543pt;}
.ws81{word-spacing:-1.004237pt;}
.wseb{word-spacing:-0.956416pt;}
.ws5c{word-spacing:-0.956410pt;}
.ws46{word-spacing:-0.903276pt;}
.wse5{word-spacing:-0.860774pt;}
.ws62{word-spacing:-0.850142pt;}
.ws8e{word-spacing:-0.797008pt;}
.ws82{word-spacing:-0.765133pt;}
.ws41{word-spacing:-0.743874pt;}
.ws118{word-spacing:-0.717312pt;}
.ws2d{word-spacing:-0.690740pt;}
.ws10b{word-spacing:-0.669491pt;}
.ws134{word-spacing:-0.621670pt;}
.ws45{word-spacing:-0.584473pt;}
.ws87{word-spacing:-0.526029pt;}
.wsae{word-spacing:-0.478205pt;}
.ws109{word-spacing:-0.430387pt;}
.ws7b{word-spacing:-0.425071pt;}
.ws77{word-spacing:-0.371937pt;}
.ws5e{word-spacing:-0.318803pt;}
.wsef{word-spacing:-0.295592pt;}
.wsf0{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws10d{word-spacing:-0.239104pt;}
.ws22{word-spacing:-0.212535pt;}
.wsea{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.ws88{word-spacing:-0.143462pt;}
.wsf3{word-spacing:-0.132625pt;}
.ws24{word-spacing:-0.106268pt;}
.ws1a{word-spacing:-0.095642pt;}
.ws1{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.047821pt;}
.ws12{word-spacing:-0.042507pt;}
.ws114{word-spacing:-0.011733pt;}
.ws147{word-spacing:-0.010163pt;}
.wsec{word-spacing:-0.009609pt;}
.wse3{word-spacing:-0.008969pt;}
.wsb3{word-spacing:-0.008849pt;}
.ws117{word-spacing:-0.008132pt;}
.ws13c{word-spacing:-0.007526pt;}
.ws8c{word-spacing:-0.007270pt;}
.ws125{word-spacing:-0.007100pt;}
.wsb1{word-spacing:-0.006084pt;}
.wsb8{word-spacing:-0.005308pt;}
.ws14a{word-spacing:-0.004830pt;}
.ws13d{word-spacing:-0.004642pt;}
.ws136{word-spacing:-0.004267pt;}
.ws143{word-spacing:-0.003652pt;}
.ws2e{word-spacing:-0.003002pt;}
.wse2{word-spacing:-0.002927pt;}
.ws141{word-spacing:-0.002876pt;}
.ws12e{word-spacing:-0.002654pt;}
.ws154{word-spacing:-0.002509pt;}
.ws6{word-spacing:-0.002487pt;}
.wsb6{word-spacing:-0.002133pt;}
.ws116{word-spacing:-0.001715pt;}
.wse9{word-spacing:-0.001596pt;}
.ws86{word-spacing:-0.001237pt;}
.ws144{word-spacing:-0.001126pt;}
.wsdd{word-spacing:-0.000887pt;}
.wsff{word-spacing:-0.000145pt;}
.ws0{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.001519pt;}
.ws8a{word-spacing:0.047821pt;}
.ws21{word-spacing:0.053134pt;}
.wsfc{word-spacing:0.091520pt;}
.ws14{word-spacing:0.095642pt;}
.ws23{word-spacing:0.106268pt;}
.ws11e{word-spacing:0.121892pt;}
.ws9a{word-spacing:0.124162pt;}
.ws145{word-spacing:0.132241pt;}
.ws16{word-spacing:0.143462pt;}
.ws11f{word-spacing:0.146516pt;}
.ws48{word-spacing:0.159402pt;}
.ws8{word-spacing:0.185968pt;}
.ws8d{word-spacing:0.191283pt;}
.wsfb{word-spacing:0.195276pt;}
.ws34{word-spacing:0.212535pt;}
.wsba{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws26{word-spacing:0.265669pt;}
.ws18{word-spacing:0.286925pt;}
.ws55{word-spacing:0.318803pt;}
.ws39{word-spacing:0.371937pt;}
.ws9b{word-spacing:0.425071pt;}
.ws14e{word-spacing:0.430387pt;}
.wsb2{word-spacing:0.468267pt;}
.ws74{word-spacing:0.478205pt;}
.ws103{word-spacing:0.478208pt;}
.wsca{word-spacing:0.504366pt;}
.ws6d{word-spacing:0.524078pt;}
.wse7{word-spacing:0.526029pt;}
.ws42{word-spacing:0.531339pt;}
.ws148{word-spacing:0.596224pt;}
.ws123{word-spacing:0.621670pt;}
.wscd{word-spacing:0.637606pt;}
.wscc{word-spacing:0.662637pt;}
.ws17{word-spacing:0.669491pt;}
.ws99{word-spacing:0.690740pt;}
.wse6{word-spacing:0.717312pt;}
.ws96{word-spacing:0.743874pt;}
.ws95{word-spacing:0.797008pt;}
.ws72{word-spacing:0.850142pt;}
.ws156{word-spacing:0.860774pt;}
.ws7d{word-spacing:0.903276pt;}
.ws6e{word-spacing:0.956410pt;}
.ws4b{word-spacing:1.009543pt;}
.ws44{word-spacing:1.062677pt;}
.ws15{word-spacing:1.099878pt;}
.ws76{word-spacing:1.168945pt;}
.ws12c{word-spacing:1.195520pt;}
.ws31{word-spacing:1.222079pt;}
.ws12b{word-spacing:1.243341pt;}
.ws2b{word-spacing:1.275213pt;}
.ws28{word-spacing:1.328347pt;}
.wsfd{word-spacing:1.338982pt;}
.ws68{word-spacing:1.360870pt;}
.ws69{word-spacing:1.381481pt;}
.ws7f{word-spacing:1.434614pt;}
.ws10c{word-spacing:1.434624pt;}
.wsc7{word-spacing:1.487748pt;}
.wsa1{word-spacing:1.540882pt;}
.ws30{word-spacing:1.594016pt;}
.wsa8{word-spacing:1.647150pt;}
.ws52{word-spacing:1.700284pt;}
.wsbc{word-spacing:1.753418pt;}
.ws9{word-spacing:1.785293pt;}
.wsbb{word-spacing:1.806551pt;}
.ws11a{word-spacing:1.865011pt;}
.ws4c{word-spacing:1.912819pt;}
.ws63{word-spacing:1.965953pt;}
.wsc5{word-spacing:2.019087pt;}
.ws152{word-spacing:2.056294pt;}
.ws8f{word-spacing:2.072221pt;}
.ws32{word-spacing:2.125355pt;}
.ws35{word-spacing:2.178489pt;}
.ws5{word-spacing:2.233591pt;}
.ws149{word-spacing:2.247578pt;}
.ws9c{word-spacing:2.284756pt;}
.ws4e{word-spacing:2.337890pt;}
.wsbe{word-spacing:2.391024pt;}
.ws13f{word-spacing:2.391040pt;}
.ws12d{word-spacing:2.438861pt;}
.ws27{word-spacing:2.444158pt;}
.ws19{word-spacing:2.486682pt;}
.wsac{word-spacing:2.497292pt;}
.wse8{word-spacing:2.534502pt;}
.wsab{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.wsdc{word-spacing:2.582323pt;}
.wsd9{word-spacing:2.603559pt;}
.ws3b{word-spacing:2.656693pt;}
.ws113{word-spacing:2.677965pt;}
.wscf{word-spacing:2.709827pt;}
.ws122{word-spacing:2.725786pt;}
.ws3d{word-spacing:2.762961pt;}
.ws13e{word-spacing:2.773606pt;}
.ws3e{word-spacing:2.811210pt;}
.ws3f{word-spacing:2.816095pt;}
.ws11d{word-spacing:2.821427pt;}
.ws104{word-spacing:2.857771pt;}
.ws120{word-spacing:2.860220pt;}
.ws119{word-spacing:2.862293pt;}
.wsf9{word-spacing:2.863428pt;}
.ws142{word-spacing:2.864017pt;}
.ws126{word-spacing:2.864486pt;}
.ws105{word-spacing:2.864828pt;}
.ws14d{word-spacing:2.865015pt;}
.ws155{word-spacing:2.865092pt;}
.ws150{word-spacing:2.865382pt;}
.ws157{word-spacing:2.865997pt;}
.ws14b{word-spacing:2.866850pt;}
.ws108{word-spacing:2.867251pt;}
.wsfe{word-spacing:2.867405pt;}
.ws107{word-spacing:2.867439pt;}
.wsf2{word-spacing:2.867456pt;}
.ws110{word-spacing:2.868309pt;}
.ws151{word-spacing:2.868326pt;}
.ws146{word-spacing:2.868463pt;}
.ws33{word-spacing:2.869229pt;}
.wse1{word-spacing:2.869248pt;}
.ws115{word-spacing:2.869265pt;}
.ws133{word-spacing:2.869274pt;}
.ws111{word-spacing:2.869333pt;}
.wse4{word-spacing:2.869393pt;}
.wsfa{word-spacing:2.869794pt;}
.ws140{word-spacing:2.880424pt;}
.ws135{word-spacing:2.903636pt;}
.ws10e{word-spacing:2.917069pt;}
.ws65{word-spacing:2.922363pt;}
.ws64{word-spacing:2.975497pt;}
.wsf1{word-spacing:3.012710pt;}
.ws71{word-spacing:3.028630pt;}
.ws101{word-spacing:3.060531pt;}
.ws78{word-spacing:3.134898pt;}
.ws20{word-spacing:3.188032pt;}
.wsf8{word-spacing:3.203994pt;}
.ws56{word-spacing:3.241166pt;}
.ws6f{word-spacing:3.294300pt;}
.ws100{word-spacing:3.299635pt;}
.ws6a{word-spacing:3.347434pt;}
.ws10a{word-spacing:3.347456pt;}
.ws6b{word-spacing:3.368713pt;}
.ws106{word-spacing:3.395277pt;}
.ws3c{word-spacing:3.400567pt;}
.ws14c{word-spacing:3.490918pt;}
.wsa0{word-spacing:3.559969pt;}
.ws112{word-spacing:3.586560pt;}
.ws92{word-spacing:3.613103pt;}
.wsa5{word-spacing:3.719371pt;}
.wsde{word-spacing:3.730022pt;}
.wsa4{word-spacing:3.772505pt;}
.ws128{word-spacing:3.777843pt;}
.ws43{word-spacing:3.825638pt;}
.ws124{word-spacing:3.825664pt;}
.ws127{word-spacing:3.873485pt;}
.ws29{word-spacing:3.878772pt;}
.ws1b{word-spacing:3.969126pt;}
.ws80{word-spacing:3.985040pt;}
.ws67{word-spacing:4.000515pt;}
.wsf4{word-spacing:4.016947pt;}
.ws66{word-spacing:4.038174pt;}
.ws1e{word-spacing:4.064768pt;}
.ws13b{word-spacing:4.112589pt;}
.wsaa{word-spacing:4.144442pt;}
.ws75{word-spacing:4.197575pt;}
.wsd6{word-spacing:4.250709pt;}
.ws14f{word-spacing:4.256051pt;}
.wsdb{word-spacing:4.351693pt;}
.ws2a{word-spacing:4.356977pt;}
.ws153{word-spacing:4.447334pt;}
.ws91{word-spacing:4.463245pt;}
.ws79{word-spacing:4.516379pt;}
.wsf7{word-spacing:4.542976pt;}
.ws94{word-spacing:4.569513pt;}
.wsf6{word-spacing:4.590797pt;}
.wscb{word-spacing:4.675780pt;}
.wsda{word-spacing:4.686438pt;}
.wsbd{word-spacing:4.728914pt;}
.ws13a{word-spacing:4.734259pt;}
.ws51{word-spacing:4.782048pt;}
.ws12a{word-spacing:4.782080pt;}
.ws132{word-spacing:4.829901pt;}
.ws5d{word-spacing:4.835182pt;}
.wsd5{word-spacing:4.888316pt;}
.wsa9{word-spacing:4.994583pt;}
.wsf5{word-spacing:5.069005pt;}
.ws9f{word-spacing:5.100851pt;}
.wsee{word-spacing:5.212467pt;}
.ws54{word-spacing:5.260253pt;}
.ws11b{word-spacing:5.355930pt;}
.ws6c{word-spacing:5.366521pt;}
.ws10{word-spacing:5.393072pt;}
.wsad{word-spacing:5.419654pt;}
.ws11{word-spacing:5.467459pt;}
.ws11c{word-spacing:5.499392pt;}
.ws4f{word-spacing:5.525922pt;}
.ws37{word-spacing:5.579056pt;}
.ws38{word-spacing:5.632190pt;}
.ws10f{word-spacing:5.642854pt;}
.ws7e{word-spacing:5.685324pt;}
.ws7c{word-spacing:5.738458pt;}
.wsaf{word-spacing:5.791591pt;}
.wsa3{word-spacing:5.844725pt;}
.ws4d{word-spacing:5.950993pt;}
.ws57{word-spacing:6.216662pt;}
.ws139{word-spacing:6.216704pt;}
.wsd7{word-spacing:6.322930pt;}
.ws36{word-spacing:6.429198pt;}
.wsed{word-spacing:6.599270pt;}
.ws53{word-spacing:6.621259pt;}
.ws4a{word-spacing:6.641733pt;}
.ws98{word-spacing:6.748001pt;}
.wsc8{word-spacing:6.801135pt;}
.wsd8{word-spacing:6.907403pt;}
.ws93{word-spacing:6.960537pt;}
.ws5a{word-spacing:7.013670pt;}
.wsce{word-spacing:7.066804pt;}
.ws5f{word-spacing:7.119938pt;}
.ws58{word-spacing:7.173072pt;}
.wsa2{word-spacing:7.385607pt;}
.wse{word-spacing:7.699075pt;}
.ws90{word-spacing:9.829765pt;}
.wsc3{word-spacing:12.752128pt;}
.ws73{word-spacing:13.549136pt;}
.ws4{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.ws129{word-spacing:14.585344pt;}
.wsd{word-spacing:15.732893pt;}
.wsf{word-spacing:24.399002pt;}
.wsc0{word-spacing:104.344986pt;}
.wsb7{word-spacing:151.260954pt;}
.wsc1{word-spacing:190.374605pt;}
.ws83{word-spacing:212.870912pt;}
.ws8b{word-spacing:225.063450pt;}
.ws85{word-spacing:240.968721pt;}
.ws84{word-spacing:252.254720pt;}
.wsc2{word-spacing:483.225045pt;}
.wsb4{word-spacing:534.058598pt;}
.wsbf{word-spacing:724.628582pt;}
.wsb5{word-spacing:866.066577pt;}
._4b{margin-left:-17.969974pt;}
._14{margin-left:-6.468979pt;}
._b{margin-left:-5.403750pt;}
._7{margin-left:-3.910662pt;}
._0{margin-left:-2.922363pt;}
._1{margin-left:-1.175671pt;}
._2{width:0.969929pt;}
._4{width:2.045648pt;}
._16{width:3.194758pt;}
._15{width:4.204302pt;}
._8{width:9.861670pt;}
._3{width:11.530016pt;}
._5{width:12.806157pt;}
._9{width:14.154957pt;}
._13{width:15.210424pt;}
._a{width:16.450355pt;}
._11{width:17.540902pt;}
._d{width:18.444178pt;}
._17{width:19.925200pt;}
._e{width:20.828476pt;}
._29{width:22.089171pt;}
._c{width:23.817425pt;}
._12{width:25.557390pt;}
._1b{width:27.204540pt;}
._6{width:29.011008pt;}
._18{width:30.505566pt;}
._19{width:32.949724pt;}
._1c{width:34.331204pt;}
._4a{width:35.849456pt;}
._28{width:37.140573pt;}
._1a{width:38.522053pt;}
._4c{width:54.993920pt;}
._27{width:73.110946pt;}
._38{width:81.247539pt;}
._21{width:85.025382pt;}
._46{width:86.732149pt;}
._36{width:121.417011pt;}
._47{width:124.477542pt;}
._1d{width:137.572924pt;}
._1f{width:174.641562pt;}
._40{width:184.205722pt;}
._1e{width:196.352205pt;}
._24{width:202.377626pt;}
._22{width:238.625792pt;}
._43{width:259.140915pt;}
._35{width:261.292851pt;}
._25{width:265.261978pt;}
._33{width:269.518029pt;}
._3c{width:275.782554pt;}
._49{width:286.350950pt;}
._23{width:300.840653pt;}
._41{width:303.810836pt;}
._26{width:314.182656pt;}
._2d{width:342.253466pt;}
._3f{width:357.125734pt;}
._32{width:417.216631pt;}
._2f{width:453.341184pt;}
._31{width:495.476603pt;}
._30{width:535.814758pt;}
._3e{width:543.148646pt;}
._48{width:565.365470pt;}
._3d{width:569.019699pt;}
._2e{width:578.870784pt;}
._3a{width:601.155277pt;}
._34{width:639.172813pt;}
._39{width:662.461542pt;}
._44{width:746.339226pt;}
._42{width:822.230835pt;}
._f{width:852.002419pt;}
._3b{width:941.400269pt;}
._20{width:1019.362628pt;}
._45{width:1056.604996pt;}
._37{width:1122.115072pt;}
._2c{width:2242.720204pt;}
._10{width:2263.973537pt;}
._2b{width:3002.534281pt;}
._2a{width:3557.994870pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fse{font-size:38.755733pt;}
.fsa{font-size:40.381867pt;}
.fsb{font-size:40.383600pt;}
.fs3{font-size:41.988267pt;}
.fs8{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:45.205600pt;}
.fs7{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fsc{font-size:50.027600pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y1b9{bottom:-191.076020pt;}
.y1bb{bottom:-27.715973pt;}
.y1ba{bottom:-8.836029pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:14.386906pt;}
.y49{bottom:28.346667pt;}
.y23b{bottom:52.570667pt;}
.y23a{bottom:67.182667pt;}
.y239{bottom:81.794667pt;}
.y266{bottom:83.177333pt;}
.y103{bottom:86.838667pt;}
.y235{bottom:89.101333pt;}
.y1a8{bottom:90.457333pt;}
.y1f{bottom:91.398667pt;}
.y2b7{bottom:92.014667pt;}
.y32f{bottom:92.050667pt;}
.y48{bottom:92.108000pt;}
.yb3{bottom:94.441333pt;}
.y7e{bottom:94.824000pt;}
.y28e{bottom:94.840000pt;}
.y14a{bottom:95.662667pt;}
.y234{bottom:96.406667pt;}
.y265{bottom:99.914667pt;}
.y102{bottom:101.450667pt;}
.y2f8{bottom:103.408000pt;}
.y1a7{bottom:107.194667pt;}
.y1e{bottom:107.298667pt;}
.y32e{bottom:107.393333pt;}
.y2b6{bottom:108.752000pt;}
.y47{bottom:108.844000pt;}
.y28d{bottom:109.150667pt;}
.ydd{bottom:109.585333pt;}
.y149{bottom:110.274667pt;}
.y238{bottom:111.018667pt;}
.yb2{bottom:111.178667pt;}
.y7d{bottom:111.561333pt;}
.y28c{bottom:111.577333pt;}
.y101{bottom:116.062667pt;}
.y264{bottom:116.652000pt;}
.y2f7{bottom:118.750667pt;}
.y333{bottom:120.404000pt;}
.y32d{bottom:122.736000pt;}
.y1d{bottom:123.200000pt;}
.y175{bottom:123.665333pt;}
.y1a6{bottom:123.930667pt;}
.y1f3{bottom:124.181333pt;}
.y46{bottom:125.581333pt;}
.y237{bottom:125.630667pt;}
.y28b{bottom:125.888000pt;}
.ydc{bottom:126.322667pt;}
.yb1{bottom:127.916000pt;}
.y7c{bottom:128.298667pt;}
.y28a{bottom:128.314667pt;}
.y100{bottom:130.674667pt;}
.y263{bottom:130.962667pt;}
.y146{bottom:131.288000pt;}
.y262{bottom:133.389333pt;}
.y2f6{bottom:134.093333pt;}
.y32c{bottom:138.078667pt;}
.y1f2{bottom:138.492000pt;}
.y148{bottom:138.594667pt;}
.y1c{bottom:139.100000pt;}
.y2c2{bottom:139.234667pt;}
.y236{bottom:140.242667pt;}
.y174{bottom:140.402667pt;}
.y1a5{bottom:140.668000pt;}
.y1f1{bottom:140.918667pt;}
.y45{bottom:142.318667pt;}
.y29b{bottom:142.625333pt;}
.ydb{bottom:143.060000pt;}
.yb0{bottom:144.653333pt;}
.y7a{bottom:145.036000pt;}
.y289{bottom:145.052000pt;}
.yff{bottom:145.286667pt;}
.y144{bottom:145.900000pt;}
.y261{bottom:147.700000pt;}
.y2f5{bottom:149.436000pt;}
.y7b{bottom:149.858667pt;}
.y260{bottom:150.126667pt;}
.y147{bottom:153.205333pt;}
.y32b{bottom:153.421333pt;}
.y1b{bottom:155.000000pt;}
.y173{bottom:157.140000pt;}
.y1a4{bottom:157.405333pt;}
.y1f0{bottom:157.656000pt;}
.y44{bottom:159.056000pt;}
.yda{bottom:159.797333pt;}
.y145{bottom:160.512000pt;}
.y233{bottom:161.256000pt;}
.yaf{bottom:161.390667pt;}
.y79{bottom:161.773333pt;}
.y288{bottom:161.789333pt;}
.y2c1{bottom:162.825333pt;}
.y2f4{bottom:164.778667pt;}
.yfe{bottom:166.300000pt;}
.y25f{bottom:166.864000pt;}
.y32a{bottom:168.762667pt;}
.y1a{bottom:170.901333pt;}
.y172{bottom:173.877333pt;}
.y1a3{bottom:174.142667pt;}
.y1ef{bottom:174.393333pt;}
.y2b5{bottom:175.701333pt;}
.y43{bottom:175.793333pt;}
.y231{bottom:175.868000pt;}
.yd9{bottom:176.534667pt;}
.yae{bottom:178.128000pt;}
.y287{bottom:178.526667pt;}
.y2f3{bottom:180.121333pt;}
.yfd{bottom:180.912000pt;}
.y143{bottom:181.525333pt;}
.y332{bottom:181.774667pt;}
.y78{bottom:182.496000pt;}
.y25e{bottom:183.601333pt;}
.y329{bottom:184.105333pt;}
.y2c0{bottom:186.417333pt;}
.y19{bottom:186.801333pt;}
.y1ee{bottom:188.704000pt;}
.y232{bottom:190.480000pt;}
.y171{bottom:190.614667pt;}
.y1a2{bottom:190.880000pt;}
.y1ed{bottom:191.130667pt;}
.y2b4{bottom:192.438667pt;}
.y42{bottom:192.530667pt;}
.yd8{bottom:193.272000pt;}
.yf5{bottom:194.316000pt;}
.yad{bottom:194.865333pt;}
.y286{bottom:195.264000pt;}
.y2f2{bottom:195.462667pt;}
.yfc{bottom:195.524000pt;}
.y142{bottom:196.137333pt;}
.y328{bottom:199.448000pt;}
.y25d{bottom:200.338667pt;}
.y18{bottom:202.701333pt;}
.yf7{bottom:202.829333pt;}
.y170{bottom:207.352000pt;}
.y1a1{bottom:207.617333pt;}
.y1ec{bottom:207.866667pt;}
.y2b3{bottom:209.176000pt;}
.y41{bottom:209.268000pt;}
.y285{bottom:209.574667pt;}
.yd7{bottom:210.009333pt;}
.yfb{bottom:210.136000pt;}
.y141{bottom:210.749333pt;}
.y2f1{bottom:210.805333pt;}
.y230{bottom:211.494667pt;}
.yac{bottom:211.602667pt;}
.y284{bottom:212.001333pt;}
.y77{bottom:212.384000pt;}
.y331{bottom:212.460000pt;}
.y327{bottom:214.790667pt;}
.y25c{bottom:217.076000pt;}
.yf6{bottom:217.441333pt;}
.y13b{bottom:218.056000pt;}
.y22e{bottom:218.800000pt;}
.y16f{bottom:224.089333pt;}
.y1a0{bottom:224.354667pt;}
.y1eb{bottom:224.604000pt;}
.yfa{bottom:224.748000pt;}
.y140{bottom:225.361333pt;}
.y2bf{bottom:225.630667pt;}
.y40{bottom:226.005333pt;}
.y22d{bottom:226.105333pt;}
.y2f0{bottom:226.148000pt;}
.yd6{bottom:226.746667pt;}
.yab{bottom:228.340000pt;}
.y283{bottom:228.738667pt;}
.y76{bottom:229.121333pt;}
.y326{bottom:230.133333pt;}
.y139{bottom:232.668000pt;}
.y25b{bottom:233.813333pt;}
.yf9{bottom:239.360000pt;}
.y13f{bottom:239.973333pt;}
.y22f{bottom:240.717333pt;}
.y16e{bottom:240.826667pt;}
.y19f{bottom:241.092000pt;}
.y1ea{bottom:241.341333pt;}
.y2ef{bottom:241.490667pt;}
.y3f{bottom:242.742667pt;}
.y29a{bottom:243.049333pt;}
.yd5{bottom:243.484000pt;}
.yaa{bottom:245.077333pt;}
.y282{bottom:245.476000pt;}
.y75{bottom:245.858667pt;}
.y13a{bottom:247.280000pt;}
.y2be{bottom:249.221333pt;}
.y25a{bottom:250.550667pt;}
.yf8{bottom:253.972000pt;}
.y13e{bottom:254.585333pt;}
.y2ee{bottom:256.833333pt;}
.y16d{bottom:257.564000pt;}
.y19e{bottom:257.829333pt;}
.y1e9{bottom:258.078667pt;}
.y2b2{bottom:259.388000pt;}
.y3e{bottom:259.480000pt;}
.y281{bottom:259.786667pt;}
.yd4{bottom:260.220000pt;}
.y325{bottom:260.818667pt;}
.y22c{bottom:261.732000pt;}
.ya9{bottom:261.814667pt;}
.y280{bottom:262.213333pt;}
.y74{bottom:262.596000pt;}
.y2bd{bottom:264.844000pt;}
.y259{bottom:264.861333pt;}
.y258{bottom:267.286667pt;}
.y22a{bottom:269.037333pt;}
.y13d{bottom:269.197333pt;}
.y2ed{bottom:272.176000pt;}
.y1e8{bottom:272.389333pt;}
.y17{bottom:273.154667pt;}
.y16c{bottom:274.300000pt;}
.y19d{bottom:274.566667pt;}
.y1e7{bottom:274.816000pt;}
.yf4{bottom:274.985333pt;}
.y1bc{bottom:275.748000pt;}
.y2b1{bottom:276.125333pt;}
.y324{bottom:276.161333pt;}
.y3d{bottom:276.217333pt;}
.y227{bottom:276.344000pt;}
.yd3{bottom:276.957333pt;}
.ya8{bottom:278.552000pt;}
.y27f{bottom:278.950667pt;}
.y73{bottom:279.333333pt;}
.y2bc{bottom:280.465333pt;}
.y229{bottom:283.649333pt;}
.y299{bottom:283.772000pt;}
.y13c{bottom:283.809333pt;}
.y2ec{bottom:287.518667pt;}
.y16{bottom:289.054667pt;}
.yf3{bottom:289.597333pt;}
.y226{bottom:290.956000pt;}
.y16b{bottom:291.037333pt;}
.y19c{bottom:291.304000pt;}
.y323{bottom:291.502667pt;}
.y3c{bottom:292.954667pt;}
.y298{bottom:293.261333pt;}
.yd2{bottom:293.694667pt;}
.ya7{bottom:295.289333pt;}
.y1e6{bottom:295.538667pt;}
.y1b6{bottom:295.685333pt;}
.y27e{bottom:295.688000pt;}
.y72{bottom:296.070667pt;}
.y228{bottom:298.261333pt;}
.y2eb{bottom:302.861333pt;}
.yef{bottom:304.209333pt;}
.y138{bottom:304.822667pt;}
.y15{bottom:304.954667pt;}
.y22b{bottom:305.568000pt;}
.y322{bottom:306.845333pt;}
.y257{bottom:307.697333pt;}
.y19b{bottom:308.041333pt;}
.y2b0{bottom:309.600000pt;}
.y3b{bottom:309.692000pt;}
.yee{bottom:311.514667pt;}
.ya6{bottom:312.026667pt;}
.y27d{bottom:312.425333pt;}
.y71{bottom:312.808000pt;}
.yd1{bottom:314.417333pt;}
.y2ea{bottom:318.202667pt;}
.yf2{bottom:318.821333pt;}
.y137{bottom:319.434667pt;}
.y14{bottom:320.856000pt;}
.y321{bottom:322.188000pt;}
.y19a{bottom:324.778667pt;}
.y1e5{bottom:325.426667pt;}
.y2af{bottom:326.337333pt;}
.y3a{bottom:326.429333pt;}
.y224{bottom:326.581333pt;}
.y133{bottom:326.741333pt;}
.y256{bottom:328.712000pt;}
.ya5{bottom:328.764000pt;}
.y27c{bottom:329.162667pt;}
.y16a{bottom:329.369333pt;}
.y70{bottom:329.545333pt;}
.yf1{bottom:333.433333pt;}
.y2e9{bottom:333.545333pt;}
.y136{bottom:334.046667pt;}
.y320{bottom:337.530667pt;}
.y222{bottom:341.193333pt;}
.y132{bottom:341.353333pt;}
.y199{bottom:341.516000pt;}
.y1e4{bottom:342.164000pt;}
.y39{bottom:343.166667pt;}
.yd0{bottom:344.305333pt;}
.ya4{bottom:345.501333pt;}
.y27b{bottom:345.900000pt;}
.y6f{bottom:346.282667pt;}
.yf0{bottom:348.045333pt;}
.y225{bottom:348.498667pt;}
.y135{bottom:348.658667pt;}
.y2e8{bottom:348.888000pt;}
.y255{bottom:349.725333pt;}
.y31f{bottom:352.873333pt;}
.y13{bottom:354.688000pt;}
.y221{bottom:355.805333pt;}
.y1e3{bottom:358.901333pt;}
.y38{bottom:359.904000pt;}
.ycf{bottom:361.042667pt;}
.ya3{bottom:362.238667pt;}
.y27a{bottom:362.637333pt;}
.y6e{bottom:363.020000pt;}
.y134{bottom:363.270667pt;}
.y2e7{bottom:364.230667pt;}
.y31e{bottom:368.216000pt;}
.yed{bottom:369.058667pt;}
.y223{bottom:370.417333pt;}
.y167{bottom:370.576000pt;}
.y12{bottom:370.589333pt;}
.y254{bottom:370.740000pt;}
.y1e2{bottom:375.638667pt;}
.yec{bottom:376.364000pt;}
.y2ae{bottom:376.549333pt;}
.y37{bottom:376.641333pt;}
.yce{bottom:377.780000pt;}
.y169{bottom:377.882667pt;}
.y253{bottom:378.045333pt;}
.ya2{bottom:378.976000pt;}
.y279{bottom:379.374667pt;}
.y2e6{bottom:379.573333pt;}
.y6d{bottom:379.756000pt;}
.y31d{bottom:383.558667pt;}
.y130{bottom:384.284000pt;}
.y11{bottom:386.489333pt;}
.y220{bottom:391.430667pt;}
.y198{bottom:392.126667pt;}
.y1e1{bottom:392.376000pt;}
.y168{bottom:392.494667pt;}
.y36{bottom:393.378667pt;}
.ycd{bottom:394.517333pt;}
.y2e5{bottom:394.916000pt;}
.ya1{bottom:395.713333pt;}
.y278{bottom:396.112000pt;}
.y6c{bottom:396.493333pt;}
.y21c{bottom:398.737333pt;}
.y12f{bottom:398.896000pt;}
.y31c{bottom:398.901333pt;}
.yea{bottom:404.684000pt;}
.y21f{bottom:406.042667pt;}
.y252{bottom:406.365333pt;}
.ye6{bottom:406.732000pt;}
.y197{bottom:408.864000pt;}
.y1e0{bottom:409.113333pt;}
.y2ad{bottom:410.024000pt;}
.y35{bottom:410.116000pt;}
.y2e4{bottom:410.258667pt;}
.ycc{bottom:411.254667pt;}
.ya0{bottom:412.450667pt;}
.y277{bottom:412.848000pt;}
.y6b{bottom:413.230667pt;}
.y21b{bottom:413.349333pt;}
.y12e{bottom:413.508000pt;}
.y251{bottom:413.672000pt;}
.y31b{bottom:414.244000pt;}
.y297{bottom:417.670667pt;}
.y10{bottom:418.330667pt;}
.ye9{bottom:419.296000pt;}
.y218{bottom:420.654667pt;}
.y166{bottom:420.814667pt;}
.y196{bottom:425.601333pt;}
.y1df{bottom:425.850667pt;}
.yeb{bottom:426.602667pt;}
.y34{bottom:426.853333pt;}
.y21a{bottom:427.960000pt;}
.ycb{bottom:427.992000pt;}
.y12d{bottom:428.120000pt;}
.y9f{bottom:429.188000pt;}
.y276{bottom:429.585333pt;}
.y6a{bottom:429.968000pt;}
.ye8{bottom:433.908000pt;}
.yf{bottom:434.230667pt;}
.y21e{bottom:435.266667pt;}
.y131{bottom:435.425333pt;}
.y128{bottom:435.426667pt;}
.y2e3{bottom:440.944000pt;}
.y250{bottom:441.992000pt;}
.y195{bottom:442.338667pt;}
.y219{bottom:442.572000pt;}
.y1de{bottom:442.588000pt;}
.y12c{bottom:442.732000pt;}
.y33{bottom:443.590667pt;}
.yca{bottom:444.729333pt;}
.y31a{bottom:444.928000pt;}
.y9e{bottom:445.925333pt;}
.y275{bottom:446.322667pt;}
.y69{bottom:446.705333pt;}
.y1b8{bottom:447.484001pt;}
.ye7{bottom:448.520000pt;}
.y24f{bottom:449.297333pt;}
.y21d{bottom:449.878667pt;}
.y165{bottom:450.037333pt;}
.ye{bottom:450.130667pt;}
.y1b7{bottom:455.484001pt;}
.y2e2{bottom:456.285333pt;}
.y12b{bottom:457.344000pt;}
.y194{bottom:459.076000pt;}
.y1dd{bottom:459.325333pt;}
.y319{bottom:460.270667pt;}
.y32{bottom:460.328000pt;}
.y274{bottom:460.633333pt;}
.yc9{bottom:461.466667pt;}
.y9d{bottom:462.662667pt;}
.y273{bottom:463.060000pt;}
.y68{bottom:463.442667pt;}
.y164{bottom:464.649333pt;}
.yd{bottom:466.032000pt;}
.ye5{bottom:469.534667pt;}
.y215{bottom:470.892000pt;}
.y2e1{bottom:471.628000pt;}
.y12a{bottom:471.956000pt;}
.y318{bottom:475.613333pt;}
.y193{bottom:475.813333pt;}
.y1dc{bottom:476.062667pt;}
.y2ab{bottom:476.973333pt;}
.y296{bottom:477.370667pt;}
.y24e{bottom:477.617333pt;}
.y217{bottom:478.198667pt;}
.yc8{bottom:478.204000pt;}
.y9c{bottom:479.398667pt;}
.y272{bottom:479.797333pt;}
.y67{bottom:480.180000pt;}
.y31{bottom:481.049333pt;}
.yc{bottom:481.932000pt;}
.ye4{bottom:484.145333pt;}
.y2ac{bottom:484.221333pt;}
.ye2{bottom:485.234667pt;}
.y214{bottom:485.504000pt;}
.y129{bottom:486.568000pt;}
.y2e0{bottom:486.970667pt;}
.y317{bottom:490.956000pt;}
.y192{bottom:492.549333pt;}
.y1db{bottom:492.800000pt;}
.y211{bottom:492.810667pt;}
.y163{bottom:492.969333pt;}
.yc7{bottom:494.941333pt;}
.y9b{bottom:496.136000pt;}
.y271{bottom:496.534667pt;}
.yb{bottom:497.832000pt;}
.y24d{bottom:498.632000pt;}
.y213{bottom:500.116000pt;}
.y162{bottom:500.276000pt;}
.y66{bottom:500.902667pt;}
.y2df{bottom:502.313333pt;}
.ye3{bottom:505.160000pt;}
.y316{bottom:506.298667pt;}
.y216{bottom:507.422667pt;}
.y127{bottom:507.581333pt;}
.y191{bottom:509.286667pt;}
.y1da{bottom:509.537333pt;}
.yc6{bottom:511.678667pt;}
.y9a{bottom:512.873333pt;}
.y270{bottom:513.272000pt;}
.ya{bottom:513.733333pt;}
.y212{bottom:514.728000pt;}
.y161{bottom:514.888000pt;}
.y2de{bottom:517.656000pt;}
.y24c{bottom:519.645333pt;}
.y315{bottom:521.641333pt;}
.y126{bottom:522.193333pt;}
.y190{bottom:526.024000pt;}
.y1d9{bottom:526.274667pt;}
.y2a9{bottom:527.184000pt;}
.yc5{bottom:528.416000pt;}
.y160{bottom:529.498667pt;}
.y99{bottom:529.610667pt;}
.y26f{bottom:530.009333pt;}
.y65{bottom:530.790667pt;}
.y2dd{bottom:532.998667pt;}
.ye1{bottom:533.266667pt;}
.y7{bottom:533.618634pt;}
.y2aa{bottom:534.433333pt;}
.y20f{bottom:535.741333pt;}
.y123{bottom:536.805333pt;}
.y314{bottom:536.984000pt;}
.y24b{bottom:540.658667pt;}
.y18f{bottom:542.761333pt;}
.y1d8{bottom:543.012000pt;}
.y20e{bottom:543.048000pt;}
.y2a8{bottom:543.921333pt;}
.y15f{bottom:544.110667pt;}
.yc4{bottom:545.153333pt;}
.y98{bottom:546.348000pt;}
.y26e{bottom:546.746667pt;}
.y64{bottom:547.528000pt;}
.y30{bottom:547.849333pt;}
.y2dc{bottom:548.341333pt;}
.y210{bottom:550.353333pt;}
.ye0{bottom:550.362667pt;}
.y125{bottom:551.417333pt;}
.y313{bottom:552.325333pt;}
.y18e{bottom:559.498667pt;}
.y1d7{bottom:559.749333pt;}
.y24a{bottom:561.673333pt;}
.yc3{bottom:561.890667pt;}
.y97{bottom:563.085333pt;}
.y26d{bottom:563.484000pt;}
.y2db{bottom:563.684000pt;}
.y63{bottom:564.265333pt;}
.y124{bottom:566.029333pt;}
.y2bb{bottom:567.070667pt;}
.y312{bottom:567.668000pt;}
.y15c{bottom:572.430667pt;}
.y20d{bottom:575.708000pt;}
.y18d{bottom:576.236000pt;}
.y1d6{bottom:576.486667pt;}
.yc2{bottom:578.628000pt;}
.y2da{bottom:579.025333pt;}
.y1b4{bottom:579.822667pt;}
.ydf{bottom:580.221333pt;}
.y62{bottom:581.002667pt;}
.y2f{bottom:581.085333pt;}
.y249{bottom:582.686667pt;}
.y311{bottom:583.010667pt;}
.y96{bottom:583.808000pt;}
.y20c{bottom:585.980000pt;}
.y122{bottom:587.042667pt;}
.y18c{bottom:592.973333pt;}
.y1d5{bottom:593.222667pt;}
.y208{bottom:593.285333pt;}
.y11f{bottom:594.349333pt;}
.y2d9{bottom:594.368000pt;}
.y26c{bottom:594.532000pt;}
.yc1{bottom:595.365333pt;}
.y1b3{bottom:596.560000pt;}
.yde{bottom:596.958667pt;}
.y61{bottom:597.740000pt;}
.y310{bottom:598.353333pt;}
.y2e{bottom:598.380000pt;}
.y20b{bottom:600.592000pt;}
.y121{bottom:601.654667pt;}
.y248{bottom:603.701333pt;}
.y207{bottom:607.897333pt;}
.y11e{bottom:608.961333pt;}
.y18b{bottom:609.710667pt;}
.y1d4{bottom:609.960000pt;}
.y330{bottom:611.365333pt;}
.yc0{bottom:612.102667pt;}
.y1b2{bottom:613.297333pt;}
.y95{bottom:613.696000pt;}
.y60{bottom:614.477333pt;}
.y20a{bottom:615.204000pt;}
.y2d{bottom:615.676000pt;}
.y120{bottom:616.266667pt;}
.y156{bottom:623.572000pt;}
.y15e{bottom:623.573333pt;}
.y247{bottom:624.714667pt;}
.y2d8{bottom:625.053333pt;}
.y18a{bottom:626.448000pt;}
.y1d3{bottom:626.697333pt;}
.y2a7{bottom:627.608000pt;}
.y26b{bottom:628.006667pt;}
.ybf{bottom:628.840000pt;}
.y30f{bottom:629.038667pt;}
.y209{bottom:629.814667pt;}
.y1b1{bottom:630.034667pt;}
.y94{bottom:630.433333pt;}
.y15b{bottom:630.878667pt;}
.y5f{bottom:631.214667pt;}
.y2c{bottom:632.970667pt;}
.y11c{bottom:637.281333pt;}
.y155{bottom:638.184000pt;}
.y2d7{bottom:640.396000pt;}
.y189{bottom:643.185333pt;}
.y1d2{bottom:643.434667pt;}
.y30e{bottom:644.381333pt;}
.y2ba{bottom:644.744000pt;}
.y15a{bottom:645.490667pt;}
.ybe{bottom:645.576000pt;}
.y246{bottom:645.729333pt;}
.y1b0{bottom:646.772000pt;}
.y93{bottom:647.170667pt;}
.y5e{bottom:647.952000pt;}
.y2b{bottom:650.266667pt;}
.y205{bottom:650.829333pt;}
.y11b{bottom:651.892000pt;}
.y15d{bottom:652.796000pt;}
.y2d6{bottom:655.738667pt;}
.y30d{bottom:659.724000pt;}
.y188{bottom:659.922667pt;}
.y159{bottom:660.102667pt;}
.y1d1{bottom:660.172000pt;}
.y2a6{bottom:661.082667pt;}
.y2b9{bottom:661.481333pt;}
.ybd{bottom:662.313333pt;}
.y1af{bottom:663.509333pt;}
.y92{bottom:663.908000pt;}
.y5d{bottom:664.689333pt;}
.y204{bottom:665.441333pt;}
.y118{bottom:666.504000pt;}
.y245{bottom:666.742667pt;}
.y2a{bottom:667.561333pt;}
.y2d5{bottom:671.081333pt;}
.y11d{bottom:673.810667pt;}
.y158{bottom:674.714667pt;}
.y30c{bottom:675.066667pt;}
.y187{bottom:676.660000pt;}
.y1d0{bottom:676.909333pt;}
.y2a5{bottom:677.820000pt;}
.ybc{bottom:679.050667pt;}
.y203{bottom:680.053333pt;}
.y1ae{bottom:680.246667pt;}
.y91{bottom:680.645333pt;}
.y117{bottom:681.116000pt;}
.y5c{bottom:681.426667pt;}
.y29{bottom:684.856000pt;}
.y2d4{bottom:686.424000pt;}
.y244{bottom:687.757333pt;}
.y157{bottom:689.326667pt;}
.y30b{bottom:690.408000pt;}
.y186{bottom:693.397333pt;}
.y1cf{bottom:693.646667pt;}
.y2a4{bottom:694.557333pt;}
.y1ff{bottom:694.665333pt;}
.y295{bottom:694.956000pt;}
.y11a{bottom:695.728000pt;}
.ybb{bottom:695.788000pt;}
.y1ad{bottom:696.984000pt;}
.y90{bottom:697.382667pt;}
.y5b{bottom:698.164000pt;}
.y2d3{bottom:701.766667pt;}
.y206{bottom:701.970667pt;}
.y28{bottom:702.152000pt;}
.y30a{bottom:705.750667pt;}
.y243{bottom:708.770667pt;}
.y1fe{bottom:709.277333pt;}
.y185{bottom:710.134667pt;}
.y119{bottom:710.340000pt;}
.y1ce{bottom:710.384000pt;}
.yba{bottom:712.525333pt;}
.y1ac{bottom:713.721333pt;}
.y8f{bottom:714.120000pt;}
.y5a{bottom:714.901333pt;}
.y2d2{bottom:717.108000pt;}
.y1b5{bottom:717.981333pt;}
.y27{bottom:719.446667pt;}
.y309{bottom:721.093333pt;}
.y202{bottom:723.888000pt;}
.y152{bottom:724.952000pt;}
.y184{bottom:726.872000pt;}
.y1cd{bottom:727.121333pt;}
.y2b8{bottom:728.430667pt;}
.yb9{bottom:729.262667pt;}
.y242{bottom:729.785333pt;}
.y1ab{bottom:730.458667pt;}
.y8e{bottom:730.857333pt;}
.y116{bottom:731.354667pt;}
.y59{bottom:731.638667pt;}
.y154{bottom:732.257333pt;}
.y2d1{bottom:732.450667pt;}
.y308{bottom:736.436000pt;}
.y26{bottom:736.741333pt;}
.y201{bottom:738.500000pt;}
.y151{bottom:739.564000pt;}
.y183{bottom:743.609333pt;}
.y1cc{bottom:743.858667pt;}
.y2a3{bottom:744.769333pt;}
.y115{bottom:745.965333pt;}
.yb8{bottom:746.000000pt;}
.y1aa{bottom:747.196000pt;}
.y8d{bottom:747.594667pt;}
.y2d0{bottom:747.793333pt;}
.y58{bottom:748.376000pt;}
.y241{bottom:750.798667pt;}
.y307{bottom:751.778667pt;}
.y200{bottom:753.112000pt;}
.y25{bottom:754.037333pt;}
.y153{bottom:754.176000pt;}
.y182{bottom:760.346667pt;}
.y114{bottom:760.577333pt;}
.y1cb{bottom:760.596000pt;}
.y2a2{bottom:761.506667pt;}
.y294{bottom:761.905333pt;}
.y2cf{bottom:763.136000pt;}
.y2a1{bottom:763.933333pt;}
.y8c{bottom:764.332000pt;}
.y57{bottom:765.112000pt;}
.yb7{bottom:766.722667pt;}
.y306{bottom:767.121333pt;}
.y110{bottom:767.884000pt;}
.y1a9{bottom:767.918667pt;}
.y24{bottom:771.332000pt;}
.y1fd{bottom:774.126667pt;}
.y113{bottom:775.189333pt;}
.y181{bottom:777.084000pt;}
.y1ca{bottom:777.333333pt;}
.y2ce{bottom:778.478667pt;}
.y240{bottom:778.905333pt;}
.y2a0{bottom:780.670667pt;}
.y8b{bottom:781.069333pt;}
.y56{bottom:781.849333pt;}
.y305{bottom:782.464000pt;}
.yb6{bottom:784.656000pt;}
.y23{bottom:788.628000pt;}
.y1fb{bottom:788.738667pt;}
.y112{bottom:789.801333pt;}
.y180{bottom:793.821333pt;}
.y1c9{bottom:794.070667pt;}
.y293{bottom:795.380000pt;}
.y29f{bottom:797.408000pt;}
.y8a{bottom:797.806667pt;}
.y55{bottom:798.586667pt;}
.y1fc{bottom:803.350667pt;}
.y111{bottom:804.413333pt;}
.y2cd{bottom:809.164000pt;}
.y17f{bottom:810.558667pt;}
.y1c8{bottom:810.808000pt;}
.y14d{bottom:811.720000pt;}
.y303{bottom:813.148000pt;}
.y304{bottom:813.149333pt;}
.y29e{bottom:814.145333pt;}
.y89{bottom:814.544000pt;}
.y54{bottom:815.324000pt;}
.y150{bottom:819.025333pt;}
.y22{bottom:819.680000pt;}
.y1f9{bottom:824.364000pt;}
.y2cc{bottom:824.506667pt;}
.y10e{bottom:825.428000pt;}
.y17e{bottom:827.296000pt;}
.y1c7{bottom:827.545333pt;}
.y302{bottom:828.490667pt;}
.y1fa{bottom:828.704000pt;}
.y26a{bottom:828.854667pt;}
.y29d{bottom:830.882667pt;}
.y88{bottom:831.281333pt;}
.y53{bottom:832.061333pt;}
.y14f{bottom:833.637333pt;}
.y21{bottom:834.026667pt;}
.y1f7{bottom:838.976000pt;}
.y2cb{bottom:839.848000pt;}
.y10d{bottom:840.038667pt;}
.y23f{bottom:841.606667pt;}
.y301{bottom:843.833333pt;}
.y17d{bottom:844.033333pt;}
.y1c6{bottom:844.282667pt;}
.y87{bottom:848.018667pt;}
.y14e{bottom:848.249333pt;}
.y20{bottom:848.373333pt;}
.y29c{bottom:851.604000pt;}
.y52{bottom:852.784000pt;}
.y1f8{bottom:853.588000pt;}
.y10c{bottom:854.650667pt;}
.y2ca{bottom:855.190667pt;}
.y300{bottom:859.176000pt;}
.y17c{bottom:860.770667pt;}
.y1c5{bottom:861.020000pt;}
.y10f{bottom:861.957333pt;}
.y86{bottom:864.754667pt;}
.y10b{bottom:869.262667pt;}
.y2c9{bottom:870.533333pt;}
.y51{bottom:870.717333pt;}
.y2ff{bottom:874.518667pt;}
.y1f6{bottom:874.601333pt;}
.y23e{bottom:875.081333pt;}
.y14c{bottom:876.569333pt;}
.y17b{bottom:877.508000pt;}
.y1c4{bottom:877.757333pt;}
.y292{bottom:879.066667pt;}
.y85{bottom:881.492000pt;}
.y10a{bottom:883.874667pt;}
.y6{bottom:884.713333pt;}
.y2c8{bottom:885.876000pt;}
.y2fe{bottom:889.861333pt;}
.y14b{bottom:891.181333pt;}
.y17a{bottom:894.245333pt;}
.y1c3{bottom:894.494667pt;}
.y291{bottom:895.802667pt;}
.y84{bottom:898.229333pt;}
.y109{bottom:898.486667pt;}
.y50{bottom:900.605333pt;}
.y2c7{bottom:901.218667pt;}
.y1f5{bottom:902.708000pt;}
.y269{bottom:903.052000pt;}
.y2fd{bottom:905.204000pt;}
.y179{bottom:910.982667pt;}
.y1c2{bottom:911.232000pt;}
.y290{bottom:912.540000pt;}
.y83{bottom:914.966667pt;}
.y2c6{bottom:916.561333pt;}
.y4f{bottom:917.342667pt;}
.y108{bottom:919.501333pt;}
.y268{bottom:919.789333pt;}
.y2fc{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y178{bottom:927.720000pt;}
.y1c1{bottom:927.969333pt;}
.y82{bottom:931.704000pt;}
.y2c5{bottom:931.904000pt;}
.y4e{bottom:934.080000pt;}
.y107{bottom:934.112000pt;}
.y105{bottom:935.201333pt;}
.y2fb{bottom:935.889333pt;}
.yb5{bottom:936.526667pt;}
.y23d{bottom:942.030667pt;}
.y177{bottom:944.456000pt;}
.y1c0{bottom:944.706667pt;}
.y2c4{bottom:947.246667pt;}
.y81{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4d{bottom:950.817333pt;}
.y2fa{bottom:951.230667pt;}
.yb4{bottom:953.264000pt;}
.y106{bottom:955.126667pt;}
.y23c{bottom:958.768000pt;}
.y176{bottom:961.193333pt;}
.y1bf{bottom:961.444000pt;}
.y2c3{bottom:962.589333pt;}
.y28f{bottom:962.752000pt;}
.y80{bottom:965.178667pt;}
.y2f9{bottom:966.573333pt;}
.y4c{bottom:967.554667pt;}
.y267{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y1be{bottom:978.181333pt;}
.y1f4{bottom:979.489333pt;}
.y7f{bottom:981.916000pt;}
.y104{bottom:983.233333pt;}
.y4b{bottom:984.290667pt;}
.y1bd{bottom:994.918667pt;}
.y1{bottom:1014.377333pt;}
.y4a{bottom:1043.020000pt;}
.h20{height:18.719019pt;}
.h11{height:20.323610pt;}
.h7{height:22.673858pt;}
.h21{height:24.148454pt;}
.h13{height:26.741714pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.ha{height:32.284045pt;}
.h23{height:33.378918pt;}
.hd{height:34.430976pt;}
.h15{height:35.051460pt;}
.h18{height:35.052646pt;}
.hc{height:36.896250pt;}
.h14{height:37.087439pt;}
.h1d{height:37.346943pt;}
.hf{height:38.256384pt;}
.hb{height:38.809074pt;}
.h4{height:38.947124pt;}
.h6{height:39.531597pt;}
.he{height:41.508454pt;}
.h1f{height:41.806351pt;}
.h22{height:43.660390pt;}
.h2{height:45.272024pt;}
.h10{height:46.120196pt;}
.h1e{height:46.265759pt;}
.h12{height:48.511220pt;}
.h16{height:63.652309pt;}
.h5{height:68.861952pt;}
.h19{height:70.729788pt;}
.h17{height:70.735121pt;}
.h3{height:83.992000pt;}
.h1c{height:387.477333pt;}
.h1a{height:793.701333pt;}
.h1b{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:186.904038pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:938.042667pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:56.274304pt;}
.x6a{left:57.838667pt;}
.xa2{left:64.212000pt;}
.xa6{left:68.682667pt;}
.x8d{left:70.117333pt;}
.x97{left:74.248000pt;}
.x68{left:75.952000pt;}
.xb2{left:78.181333pt;}
.x80{left:79.674667pt;}
.xac{left:80.846667pt;}
.x95{left:82.873333pt;}
.x12d{left:84.558667pt;}
.x6f{left:88.092000pt;}
.x9d{left:89.669333pt;}
.xd6{left:92.240000pt;}
.x8e{left:93.650667pt;}
.xa1{left:96.604000pt;}
.xa3{left:99.705333pt;}
.x79{left:101.720000pt;}
.xf0{left:115.289333pt;}
.x69{left:121.166667pt;}
.xb8{left:145.374667pt;}
.xef{left:148.401333pt;}
.x72{left:186.105333pt;}
.x9e{left:187.450667pt;}
.x7a{left:188.669333pt;}
.x81{left:191.162667pt;}
.xa7{left:192.424000pt;}
.xb3{left:193.989333pt;}
.x78{left:194.910667pt;}
.xb0{left:195.998667pt;}
.xa9{left:199.429333pt;}
.x85{left:202.418667pt;}
.xb1{left:203.817333pt;}
.x70{left:205.030667pt;}
.xb5{left:206.674667pt;}
.xa4{left:208.264000pt;}
.x6d{left:210.517333pt;}
.xb6{left:212.800000pt;}
.xaa{left:213.822667pt;}
.xd8{left:215.370678pt;}
.x93{left:218.778667pt;}
.x6e{left:220.153333pt;}
.x6{left:222.073333pt;}
.x5{left:223.020000pt;}
.x84{left:224.660000pt;}
.x71{left:229.442667pt;}
.xa8{left:231.002667pt;}
.xb4{left:234.594667pt;}
.x10b{left:242.481333pt;}
.x11f{left:248.193333pt;}
.x9{left:251.365333pt;}
.xd9{left:253.661333pt;}
.xd2{left:256.473333pt;}
.xc3{left:259.065333pt;}
.xfb{left:261.032000pt;}
.xe8{left:262.880000pt;}
.xe7{left:263.937333pt;}
.x11e{left:266.005333pt;}
.xa{left:267.046667pt;}
.xd3{left:269.757333pt;}
.xbf{left:272.566667pt;}
.xb{left:273.688000pt;}
.x7{left:275.054667pt;}
.x12a{left:277.652000pt;}
.x29{left:279.062667pt;}
.xdd{left:280.429333pt;}
.x123{left:283.800000pt;}
.x8{left:285.505333pt;}
.xf4{left:286.502667pt;}
.x103{left:288.864000pt;}
.x2f{left:290.602667pt;}
.x2a{left:292.346667pt;}
.x10e{left:294.844000pt;}
.x67{left:296.090667pt;}
.x30{left:297.244000pt;}
.x18{left:299.802667pt;}
.xf2{left:302.272000pt;}
.x58{left:304.794667pt;}
.x19{left:306.444000pt;}
.x59{left:308.176000pt;}
.x1a{left:309.830667pt;}
.x2b{left:312.404000pt;}
.x10f{left:314.769333pt;}
.x109{left:315.756000pt;}
.x105{left:320.301333pt;}
.x5a{left:321.458667pt;}
.x1b{left:323.114667pt;}
.x75{left:325.645333pt;}
.x62{left:326.662667pt;}
.x76{left:328.478667pt;}
.xaf{left:329.429333pt;}
.x82{left:330.702667pt;}
.x9f{left:332.669333pt;}
.x8b{left:333.589333pt;}
.x83{left:335.310667pt;}
.xae{left:336.345333pt;}
.x6b{left:337.337333pt;}
.xf9{left:338.926667pt;}
.x63{left:339.946667pt;}
.x27{left:342.357333pt;}
.x73{left:344.570667pt;}
.xb7{left:346.214667pt;}
.xf1{left:347.541333pt;}
.x2d{left:348.868000pt;}
.xa0{left:350.697333pt;}
.x39{left:352.400000pt;}
.x28{left:355.641333pt;}
.xad{left:358.820000pt;}
.x87{left:360.429333pt;}
.x2e{left:362.152000pt;}
.x94{left:363.848000pt;}
.x3a{left:365.684000pt;}
.xe5{left:367.305333pt;}
.x74{left:368.982667pt;}
.xde{left:372.482667pt;}
.xc2{left:374.246667pt;}
.xe{left:375.370667pt;}
.xf3{left:377.970667pt;}
.xdf{left:378.990667pt;}
.xf{left:382.012000pt;}
.xf7{left:383.985333pt;}
.x116{left:386.253333pt;}
.xe6{left:387.230667pt;}
.xe3{left:389.786667pt;}
.x10{left:391.289333pt;}
.xf8{left:392.732000pt;}
.x122{left:394.385333pt;}
.x1c{left:395.833333pt;}
.x11{left:397.930667pt;}
.xe0{left:398.916000pt;}
.xe9{left:400.442667pt;}
.x64{left:403.549333pt;}
.xd0{left:404.921333pt;}
.x117{left:406.178667pt;}
.x113{left:407.753333pt;}
.xea{left:408.793333pt;}
.x5e{left:409.858667pt;}
.x1f{left:411.628000pt;}
.x65{left:416.833333pt;}
.xbd{left:418.453333pt;}
.x127{left:422.048000pt;}
.x5f{left:423.142667pt;}
.x20{left:424.912000pt;}
.x60{left:426.396000pt;}
.x124{left:430.044000pt;}
.xbe{left:431.737333pt;}
.xeb{left:433.621333pt;}
.xc0{left:434.876000pt;}
.xc5{left:437.058667pt;}
.x31{left:438.777333pt;}
.x61{left:439.680000pt;}
.x37{left:441.421333pt;}
.xc6{left:443.833333pt;}
.x118{left:446.166667pt;}
.xc1{left:448.160000pt;}
.x125{left:449.969333pt;}
.x126{left:451.677333pt;}
.x38{left:454.705333pt;}
.xc7{left:457.117333pt;}
.xce{left:460.673333pt;}
.x7f{left:465.097333pt;}
.x90{left:466.818667pt;}
.x88{left:469.077333pt;}
.x9a{left:470.326667pt;}
.x98{left:472.276000pt;}
.x8a{left:473.764000pt;}
.x8c{left:474.869333pt;}
.xd4{left:476.236000pt;}
.xca{left:478.282667pt;}
.x8f{left:479.885333pt;}
.xa5{left:481.241333pt;}
.x99{left:482.318667pt;}
.xab{left:484.320000pt;}
.x2c{left:488.640000pt;}
.x7e{left:490.213333pt;}
.x7b{left:491.481333pt;}
.x7c{left:493.982667pt;}
.xcb{left:494.902667pt;}
.x9b{left:496.926667pt;}
.x23{left:501.549333pt;}
.x41{left:503.388000pt;}
.x96{left:504.930667pt;}
.x48{left:506.349333pt;}
.x24{left:507.600000pt;}
.x89{left:508.708000pt;}
.x92{left:510.065333pt;}
.x42{left:512.134667pt;}
.x134{left:513.340000pt;}
.x45{left:514.758667pt;}
.x86{left:517.412000pt;}
.x49{left:519.633333pt;}
.x106{left:521.450667pt;}
.x111{left:523.801333pt;}
.x4e{left:527.854667pt;}
.x7d{left:531.536000pt;}
.x91{left:532.624000pt;}
.xcc{left:533.668000pt;}
.xe1{left:536.773333pt;}
.x9c{left:537.998667pt;}
.xe4{left:539.148000pt;}
.x110{left:544.514667pt;}
.xcd{left:546.950667pt;}
.x10d{left:547.925333pt;}
.x104{left:549.450667pt;}
.x4a{left:551.098667pt;}
.x128{left:552.301333pt;}
.xe2{left:556.698667pt;}
.xc8{left:558.881333pt;}
.x129{left:561.345333pt;}
.x4b{left:563.037333pt;}
.x121{left:568.952000pt;}
.xc9{left:572.164000pt;}
.x11d{left:576.418667pt;}
.xdc{left:578.126667pt;}
.xed{left:580.318667pt;}
.xc{left:582.041333pt;}
.x46{left:584.320000pt;}
.x12{left:585.222667pt;}
.x120{left:587.462667pt;}
.xd{left:588.682667pt;}
.xee{left:589.608000pt;}
.x13{left:591.864000pt;}
.xfc{left:594.237333pt;}
.xf5{left:596.054667pt;}
.x47{left:597.604000pt;}
.xd1{left:598.901333pt;}
.x119{left:600.590667pt;}
.x3d{left:602.344000pt;}
.xec{left:603.984000pt;}
.xf6{left:605.150667pt;}
.x10a{left:606.736000pt;}
.x11a{left:609.633333pt;}
.xd5{left:611.234667pt;}
.x32{left:612.433333pt;}
.xba{left:614.152000pt;}
.x3e{left:615.628000pt;}
.x101{left:618.616000pt;}
.x33{left:625.717333pt;}
.xbb{left:627.434667pt;}
.x102{left:629.445333pt;}
.x12c{left:631.134667pt;}
.x34{left:632.418667pt;}
.xfd{left:634.405333pt;}
.x135{left:635.933333pt;}
.x21{left:638.248000pt;}
.x11b{left:641.038667pt;}
.xfe{left:643.152000pt;}
.x132{left:644.686667pt;}
.x35{left:645.702667pt;}
.x11c{left:647.089333pt;}
.x22{left:651.532000pt;}
.xda{left:652.425333pt;}
.x10c{left:653.824000pt;}
.x12b{left:655.177333pt;}
.x12e{left:657.306667pt;}
.x5b{left:658.550667pt;}
.x5c{left:661.892000pt;}
.x112{left:663.397333pt;}
.xdb{left:665.709333pt;}
.x12f{left:666.660000pt;}
.xbc{left:667.654667pt;}
.xcf{left:670.033333pt;}
.x115{left:672.101333pt;}
.x1d{left:673.625333pt;}
.x5d{left:675.176000pt;}
.x56{left:676.250667pt;}
.xff{left:678.272000pt;}
.x114{left:679.720000pt;}
.x3b{left:680.806667pt;}
.x6c{left:682.302667pt;}
.xb9{left:683.704000pt;}
.x4f{left:685.361333pt;}
.x1e{left:686.909333pt;}
.x53{left:688.124000pt;}
.x57{left:689.533333pt;}
.x130{left:690.570667pt;}
.xfa{left:692.805333pt;}
.x36{left:694.134667pt;}
.x131{left:696.040000pt;}
.x3c{left:696.938667pt;}
.x52{left:697.854667pt;}
.x77{left:699.572000pt;}
.x50{left:701.444000pt;}
.x107{left:702.414667pt;}
.x43{left:704.400000pt;}
.x4c{left:706.560000pt;}
.x54{left:708.121333pt;}
.x44{left:713.200000pt;}
.x51{left:714.728000pt;}
.x4d{left:718.498667pt;}
.x100{left:720.201333pt;}
.x55{left:721.405333pt;}
.x14{left:722.790667pt;}
.x25{left:724.492000pt;}
.x133{left:725.558667pt;}
.x66{left:726.950667pt;}
.x15{left:729.433333pt;}
.x26{left:730.542667pt;}
.x16{left:732.820000pt;}
.x3f{left:734.713333pt;}
.x108{left:737.810667pt;}
.x17{left:739.461333pt;}
.xc4{left:740.397333pt;}
.x40{left:743.460000pt;}
.xd7{left:964.810650pt;}
}




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