
    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_deca35b8b6e25678ba44476b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_132ea062e32f6ae3d75e2d63.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_1123b547ad14beca2e9fead7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1747eba2bf3949dc5e83d9b1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cef94dda70db7e2a8d8a4471.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d55f39dfeae93235967a7cb9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.703000;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_9822e9d8b62f32cacf26c8f2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740000;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_b10322b14aaa79cc89fe90b9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_981d4b6842f585b9b75d9b3e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.006836;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_b24e08f8fd71623904d5c2c7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.211426;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_a2f67c7f0bffb02829d1aff1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_3b513e3e7e14171acf540836.woff')format("woff");}.ffc{font-family:ffc;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{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);}
.m1{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);}
.m13{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);}
.m28{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);}
.m10{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);}
.m1f{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);}
.m4{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);}
.m9{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);}
.m27{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);}
.m22{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);}
.m1e{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);}
.m16{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);}
.m23{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);}
.m18{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);}
.m12{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);}
.m26{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);}
.mc{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);}
.m24{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);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m15{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);}
.md{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);}
.m6{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);}
.m3{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);}
.m21{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);}
.m1d{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);}
.m29{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);}
.m19{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);}
.m5{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);}
.m1a{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);}
.m20{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);}
.mb{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);}
.m1c{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);}
.m17{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);}
.m25{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);}
.ma{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);}
.me{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.930000px;}
.v2{vertical-align:21.696000px;}
.v3{vertical-align:24.690000px;}
.v4{vertical-align:28.392000px;}
.ls68{letter-spacing:-0.360000px;}
.ls60{letter-spacing:-0.150300px;}
.ls5a{letter-spacing:-0.120240px;}
.ls63{letter-spacing:-0.108216px;}
.ls6b{letter-spacing:-0.108000px;}
.ls71{letter-spacing:-0.102204px;}
.ls73{letter-spacing:-0.096192px;}
.ls62{letter-spacing:-0.090180px;}
.ls5f{letter-spacing:-0.084168px;}
.ls61{letter-spacing:-0.072144px;}
.ls65{letter-spacing:-0.066132px;}
.ls6f{letter-spacing:-0.064800px;}
.ls64{letter-spacing:-0.054108px;}
.ls5c{letter-spacing:-0.048096px;}
.ls67{letter-spacing:-0.036072px;}
.ls5d{letter-spacing:-0.030060px;}
.ls6a{letter-spacing:-0.021600px;}
.ls59{letter-spacing:-0.019152px;}
.ls5e{letter-spacing:-0.018036px;}
.ls72{letter-spacing:-0.012024px;}
.ls6d{letter-spacing:-0.010800px;}
.ls5b{letter-spacing:-0.006012px;}
.ls6c{letter-spacing:-0.005400px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000106px;}
.ls11{letter-spacing:0.000175px;}
.ls7{letter-spacing:0.000435px;}
.ls6{letter-spacing:0.000840px;}
.lsa{letter-spacing:0.001139px;}
.ls26{letter-spacing:0.001613px;}
.ls8{letter-spacing:0.001996px;}
.ls57{letter-spacing:0.002170px;}
.lsb{letter-spacing:0.002667px;}
.ls1a{letter-spacing:0.002725px;}
.lsc{letter-spacing:0.002999px;}
.ls7d{letter-spacing:0.004800px;}
.ls53{letter-spacing:0.005400px;}
.ls49{letter-spacing:0.006012px;}
.ls70{letter-spacing:0.007200px;}
.ls52{letter-spacing:0.010800px;}
.ls46{letter-spacing:0.012024px;}
.ls4c{letter-spacing:0.018036px;}
.ls47{letter-spacing:0.024048px;}
.ls54{letter-spacing:0.027000px;}
.ls50{letter-spacing:0.032400px;}
.ls4b{letter-spacing:0.036072px;}
.ls43{letter-spacing:0.048096px;}
.ls41{letter-spacing:0.054108px;}
.ls44{letter-spacing:0.060120px;}
.ls3e{letter-spacing:0.062244px;}
.ls48{letter-spacing:0.072144px;}
.ls51{letter-spacing:0.075600px;}
.ls45{letter-spacing:0.078156px;}
.ls4d{letter-spacing:0.084168px;}
.ls55{letter-spacing:0.091800px;}
.ls42{letter-spacing:0.102204px;}
.ls4a{letter-spacing:0.114228px;}
.ls4f{letter-spacing:0.124200px;}
.ls6e{letter-spacing:0.135000px;}
.ls66{letter-spacing:0.162324px;}
.ls56{letter-spacing:0.168336px;}
.ls40{letter-spacing:0.172368px;}
.ls3f{letter-spacing:0.181944px;}
.ls13{letter-spacing:0.745694px;}
.ls20{letter-spacing:0.746725px;}
.ls18{letter-spacing:0.751694px;}
.ls15{letter-spacing:2.989200px;}
.ls9{letter-spacing:3.559200px;}
.ls0{letter-spacing:8.373300px;}
.ls2b{letter-spacing:11.772053px;}
.ls33{letter-spacing:11.951700px;}
.ls4{letter-spacing:11.954850px;}
.ls25{letter-spacing:11.955150px;}
.ls22{letter-spacing:11.957700px;}
.ls28{letter-spacing:12.524693px;}
.ls27{letter-spacing:12.530693px;}
.ls75{letter-spacing:13.448400px;}
.ls58{letter-spacing:13.451510px;}
.ls76{letter-spacing:13.454400px;}
.ls78{letter-spacing:13.464686px;}
.ls79{letter-spacing:13.550400px;}
.ls74{letter-spacing:13.697339px;}
.ls7e{letter-spacing:13.727951px;}
.ls7b{letter-spacing:13.730828px;}
.ls34{letter-spacing:14.688705px;}
.ls3d{letter-spacing:14.704798px;}
.ls35{letter-spacing:14.789396px;}
.ls2d{letter-spacing:14.790033px;}
.ls19{letter-spacing:14.939675px;}
.ls2e{letter-spacing:14.944200px;}
.ls14{letter-spacing:14.944766px;}
.ls3c{letter-spacing:14.955258px;}
.ls36{letter-spacing:14.985694px;}
.ls2{letter-spacing:15.058092px;}
.ls3a{letter-spacing:15.063451px;}
.ls21{letter-spacing:15.087909px;}
.ls39{letter-spacing:15.163767px;}
.lsf{letter-spacing:15.508200px;}
.lsd{letter-spacing:15.657483px;}
.lse{letter-spacing:15.663483px;}
.ls17{letter-spacing:15.686496px;}
.ls1b{letter-spacing:15.686725px;}
.ls12{letter-spacing:15.692496px;}
.ls16{letter-spacing:15.692725px;}
.ls7a{letter-spacing:15.997459px;}
.ls23{letter-spacing:16.194553px;}
.ls1e{letter-spacing:16.254583px;}
.ls1c{letter-spacing:16.260583px;}
.ls3b{letter-spacing:16.557841px;}
.ls7f{letter-spacing:16.844518px;}
.ls7c{letter-spacing:17.462165px;}
.ls31{letter-spacing:17.488671px;}
.ls1d{letter-spacing:17.935200px;}
.ls2c{letter-spacing:18.053376px;}
.ls1f{letter-spacing:18.679200px;}
.ls32{letter-spacing:18.889090px;}
.ls77{letter-spacing:19.044518px;}
.ls30{letter-spacing:19.606318px;}
.ls3{letter-spacing:19.959259px;}
.ls37{letter-spacing:20.084602px;}
.ls24{letter-spacing:21.006318px;}
.ls38{letter-spacing:22.053376px;}
.ls2f{letter-spacing:23.133157px;}
.ls1{letter-spacing:28.453654px;}
.ls29{letter-spacing:395.020766px;}
.ls2a{letter-spacing:398.344090px;}
.ls4e{letter-spacing:1424.248812px;}
.ls69{letter-spacing:1554.570936px;}
.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;}
}
.wsc5{word-spacing:-54.000000px;}
.ws77{word-spacing:-23.910300px;}
.wsc0{word-spacing:-15.108156px;}
.ws3c{word-spacing:-14.943900px;}
.wsc7{word-spacing:-13.635000px;}
.wsc4{word-spacing:-13.624200px;}
.ws85{word-spacing:-13.449600px;}
.wsbe{word-spacing:-12.151944px;}
.wsbf{word-spacing:-11.970000px;}
.ws28{word-spacing:-11.955150px;}
.ws63{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.wsc2{word-spacing:-9.000000px;}
.wsc3{word-spacing:-8.640000px;}
.wsb8{word-spacing:-3.168107px;}
.wsa9{word-spacing:-3.048556px;}
.wsa0{word-spacing:-2.869229px;}
.ws10b{word-spacing:-2.777544px;}
.ws107{word-spacing:-2.513016px;}
.ws12{word-spacing:-2.510575px;}
.ws108{word-spacing:-2.422836px;}
.ws112{word-spacing:-2.420928px;}
.wsfa{word-spacing:-2.413800px;}
.wsfb{word-spacing:-2.349000px;}
.wsfc{word-spacing:-2.332800px;}
.ws17{word-spacing:-2.271473px;}
.wsa8{word-spacing:-2.151922px;}
.wse6{word-spacing:-2.140272px;}
.ws0{word-spacing:-2.092140px;}
.ws3{word-spacing:-2.089952px;}
.ws10a{word-spacing:-2.074140px;}
.ws109{word-spacing:-2.056104px;}
.wse4{word-spacing:-1.977948px;}
.wse5{word-spacing:-1.959912px;}
.ws2{word-spacing:-1.924769px;}
.ws5a{word-spacing:-1.912819px;}
.wsaa{word-spacing:-1.853044px;}
.wsb9{word-spacing:-1.793268px;}
.wsdd{word-spacing:-1.767528px;}
.ws102{word-spacing:-1.713420px;}
.ws72{word-spacing:-1.673717px;}
.wsdc{word-spacing:-1.623240px;}
.ws142{word-spacing:-1.613952px;}
.wsba{word-spacing:-1.613941px;}
.ws14b{word-spacing:-1.452557px;}
.wsa6{word-spacing:-1.374839px;}
.ws10e{word-spacing:-1.364724px;}
.wsd6{word-spacing:-1.346688px;}
.wsdb{word-spacing:-1.334664px;}
.wsda{word-spacing:-1.322640px;}
.wsbb{word-spacing:-1.315063px;}
.wsd5{word-spacing:-1.232460px;}
.ws141{word-spacing:-1.022170px;}
.ws50{word-spacing:-0.777083px;}
.ws30{word-spacing:-0.717307px;}
.ws7b{word-spacing:-0.669488px;}
.wse8{word-spacing:-0.637272px;}
.ws7e{word-spacing:-0.621668px;}
.wse7{word-spacing:-0.577152px;}
.ws10d{word-spacing:-0.541080px;}
.ws11c{word-spacing:-0.537984px;}
.ws4c{word-spacing:-0.537980px;}
.ws7d{word-spacing:-0.478206px;}
.ws18{word-spacing:-0.478205px;}
.ws3d{word-spacing:-0.418429px;}
.wsad{word-spacing:-0.376589px;}
.wsd9{word-spacing:-0.372744px;}
.ws1a{word-spacing:-0.358654px;}
.wsf6{word-spacing:-0.354708px;}
.ws43{word-spacing:-0.322790px;}
.ws33{word-spacing:-0.298878px;}
.wsd2{word-spacing:-0.272916px;}
.ws13b{word-spacing:-0.268992px;}
.ws10{word-spacing:-0.239102px;}
.ws117{word-spacing:-0.215194px;}
.ws88{word-spacing:-0.191282px;}
.ws1c{word-spacing:-0.179327px;}
.wsfe{word-spacing:-0.167400px;}
.ws110{word-spacing:-0.161395px;}
.wse{word-spacing:-0.119551px;}
.wsc9{word-spacing:-0.107597px;}
.ws7c{word-spacing:-0.095641px;}
.wsd3{word-spacing:-0.071820px;}
.wsc1{word-spacing:-0.060120px;}
.ws11{word-spacing:-0.059776px;}
.wsc6{word-spacing:-0.054000px;}
.wsca{word-spacing:-0.053798px;}
.ws7f{word-spacing:-0.047821px;}
.ws12f{word-spacing:-0.024278px;}
.ws132{word-spacing:-0.023309px;}
.ws140{word-spacing:-0.010282px;}
.ws118{word-spacing:-0.008035px;}
.ws13c{word-spacing:-0.007267px;}
.ws101{word-spacing:-0.007200px;}
.ws138{word-spacing:-0.007190px;}
.ws12d{word-spacing:-0.004637px;}
.ws127{word-spacing:-0.004282px;}
.ws119{word-spacing:-0.003302px;}
.ws14d{word-spacing:-0.002986px;}
.ws12b{word-spacing:-0.001267px;}
.ws7{word-spacing:0.000000px;}
.ws27{word-spacing:0.001390px;}
.ws15{word-spacing:0.002700px;}
.ws149{word-spacing:0.015994px;}
.ws14a{word-spacing:0.032850px;}
.wsd7{word-spacing:0.036072px;}
.ws9f{word-spacing:0.047821px;}
.ws44{word-spacing:0.053798px;}
.ws20{word-spacing:0.059776px;}
.ws9e{word-spacing:0.095641px;}
.wsb1{word-spacing:0.107597px;}
.ws13{word-spacing:0.119551px;}
.wsd8{word-spacing:0.138276px;}
.wsfd{word-spacing:0.145800px;}
.ws45{word-spacing:0.161395px;}
.ws2a{word-spacing:0.179327px;}
.ws100{word-spacing:0.189000px;}
.ws92{word-spacing:0.215194px;}
.ws8{word-spacing:0.239103px;}
.wsff{word-spacing:0.243000px;}
.ws143{word-spacing:0.267555px;}
.ws114{word-spacing:0.268992px;}
.wsee{word-spacing:0.288576px;}
.wsf{word-spacing:0.298878px;}
.ws122{word-spacing:0.322790px;}
.ws9d{word-spacing:0.334744px;}
.wsec{word-spacing:0.336672px;}
.ws2c{word-spacing:0.358654px;}
.ws29{word-spacing:0.418429px;}
.ws6{word-spacing:0.422252px;}
.wseb{word-spacing:0.438876px;}
.ws1d{word-spacing:0.478205px;}
.ws81{word-spacing:0.478206px;}
.wsea{word-spacing:0.517032px;}
.wsaf{word-spacing:0.526027px;}
.wse9{word-spacing:0.535068px;}
.wsc{word-spacing:0.537980px;}
.ws10f{word-spacing:0.541080px;}
.ws135{word-spacing:0.591782px;}
.ws2d{word-spacing:0.597756px;}
.ws7a{word-spacing:0.598500px;}
.ws136{word-spacing:0.645581px;}
.wsa2{word-spacing:0.657532px;}
.ws13d{word-spacing:0.699379px;}
.ws61{word-spacing:0.717307px;}
.ws6a{word-spacing:0.732016px;}
.ws6b{word-spacing:0.732032px;}
.ws6c{word-spacing:0.734116px;}
.wsb6{word-spacing:0.735888px;}
.wsb5{word-spacing:0.736396px;}
.ws99{word-spacing:0.743350px;}
.ws98{word-spacing:0.743633px;}
.ws9a{word-spacing:0.745200px;}
.ws94{word-spacing:0.745450px;}
.ws9b{word-spacing:0.745733px;}
.ws97{word-spacing:0.747533px;}
.ws9c{word-spacing:0.747550px;}
.ws4e{word-spacing:0.748589px;}
.ws4d{word-spacing:0.751567px;}
.ws69{word-spacing:0.761674px;}
.ws67{word-spacing:0.763774px;}
.ws68{word-spacing:0.765874px;}
.wsb4{word-spacing:0.766513px;}
.wsb3{word-spacing:0.768330px;}
.ws95{word-spacing:0.775284px;}
.wsa3{word-spacing:0.777083px;}
.ws96{word-spacing:0.777384px;}
.wsed{word-spacing:0.805608px;}
.ws12a{word-spacing:0.806976px;}
.wsef{word-spacing:0.817632px;}
.ws42{word-spacing:0.836858px;}
.ws3a{word-spacing:0.896634px;}
.ws5c{word-spacing:0.956410px;}
.ws6e{word-spacing:1.016185px;}
.ws147{word-spacing:1.022170px;}
.ws8b{word-spacing:1.135736px;}
.wse3{word-spacing:1.148292px;}
.wse1{word-spacing:1.160316px;}
.ws41{word-spacing:1.195512px;}
.ws126{word-spacing:1.237363px;}
.wse2{word-spacing:1.244484px;}
.ws70{word-spacing:1.255288px;}
.ws2e{word-spacing:1.315063px;}
.ws57{word-spacing:1.374839px;}
.ws145{word-spacing:1.398758px;}
.wsf3{word-spacing:1.466928px;}
.ws53{word-spacing:1.494390px;}
.ws5e{word-spacing:1.554166px;}
.wsf2{word-spacing:1.581156px;}
.ws16{word-spacing:1.613941px;}
.ws137{word-spacing:1.667750px;}
.ws8f{word-spacing:1.673717px;}
.ws40{word-spacing:1.733492px;}
.ws8e{word-spacing:1.793268px;}
.ws58{word-spacing:1.853044px;}
.ws59{word-spacing:1.912819px;}
.ws3b{word-spacing:1.972595px;}
.ws11f{word-spacing:1.990541px;}
.ws56{word-spacing:2.032370px;}
.wsd{word-spacing:2.092146px;}
.ws13f{word-spacing:2.098138px;}
.ws22{word-spacing:2.151922px;}
.ws104{word-spacing:2.176344px;}
.ws3f{word-spacing:2.211697px;}
.ws111{word-spacing:2.221066px;}
.ws133{word-spacing:2.313331px;}
.wsbd{word-spacing:2.331248px;}
.ws12e{word-spacing:2.367130px;}
.ws65{word-spacing:2.391024px;}
.ws123{word-spacing:2.420928px;}
.ws2b{word-spacing:2.450800px;}
.ws121{word-spacing:2.528525px;}
.ws91{word-spacing:2.570351px;}
.ws90{word-spacing:2.630126px;}
.ws144{word-spacing:2.636122px;}
.ws21{word-spacing:2.689902px;}
.ws103{word-spacing:2.711412px;}
.ws39{word-spacing:2.749678px;}
.ws9{word-spacing:2.869236px;}
.ws52{word-spacing:2.929004px;}
.ws89{word-spacing:2.988780px;}
.ws73{word-spacing:3.066509px;}
.ws23{word-spacing:3.108331px;}
.ws8c{word-spacing:3.168107px;}
.ws128{word-spacing:3.174106px;}
.ws19{word-spacing:3.210202px;}
.ws14c{word-spacing:3.217565px;}
.ws148{word-spacing:3.218275px;}
.ws131{word-spacing:3.218890px;}
.ws13a{word-spacing:3.220176px;}
.ws130{word-spacing:3.220435px;}
.ws115{word-spacing:3.222422px;}
.ws146{word-spacing:3.223334px;}
.ws13e{word-spacing:3.223738px;}
.ws116{word-spacing:3.225082px;}
.ws34{word-spacing:3.227882px;}
.ws11b{word-spacing:3.227904px;}
.wscc{word-spacing:3.347434px;}
.ws11d{word-spacing:3.389299px;}
.ws38{word-spacing:3.407209px;}
.wscf{word-spacing:3.443098px;}
.ws14e{word-spacing:3.496896px;}
.wsd0{word-spacing:3.525164px;}
.ws113{word-spacing:3.550694px;}
.ws36{word-spacing:3.586536px;}
.ws5b{word-spacing:3.646312px;}
.ws8a{word-spacing:3.706087px;}
.ws5f{word-spacing:3.765863px;}
.ws5d{word-spacing:3.945190px;}
.wsb0{word-spacing:4.004965px;}
.ws129{word-spacing:4.034880px;}
.wsb{word-spacing:4.064741px;}
.wsce{word-spacing:4.142477px;}
.wsf7{word-spacing:4.163400px;}
.ws62{word-spacing:4.184292px;}
.wsf8{word-spacing:4.249800px;}
.ws1b{word-spacing:4.303872px;}
.ws11a{word-spacing:4.411469px;}
.wsa1{word-spacing:4.423394px;}
.ws106{word-spacing:4.460904px;}
.ws2f{word-spacing:4.483170px;}
.ws105{word-spacing:4.496976px;}
.wsab{word-spacing:4.542946px;}
.wsa7{word-spacing:4.602721px;}
.ws55{word-spacing:4.662497px;}
.wsde{word-spacing:4.707396px;}
.ws35{word-spacing:4.722272px;}
.ws6f{word-spacing:4.782048px;}
.ws134{word-spacing:4.788058px;}
.wsdf{word-spacing:4.797576px;}
.ws60{word-spacing:4.841824px;}
.ws10c{word-spacing:4.863708px;}
.ws74{word-spacing:4.895654px;}
.wse0{word-spacing:4.917816px;}
.ws14{word-spacing:5.021150px;}
.ws25{word-spacing:5.080926px;}
.ws24{word-spacing:5.140702px;}
.wsbc{word-spacing:5.200477px;}
.ws11e{word-spacing:5.218445px;}
.ws66{word-spacing:5.320028px;}
.ws51{word-spacing:5.379804px;}
.ws54{word-spacing:5.499355px;}
.ws32{word-spacing:5.559131px;}
.ws26{word-spacing:5.618906px;}
.ws1f{word-spacing:5.678682px;}
.ws1e{word-spacing:5.738458px;}
.ws4a{word-spacing:5.798233px;}
.ws3e{word-spacing:5.858009px;}
.ws71{word-spacing:6.037336px;}
.ws31{word-spacing:6.097111px;}
.ws37{word-spacing:6.156887px;}
.ws75{word-spacing:6.186816px;}
.wsf9{word-spacing:6.269400px;}
.ws64{word-spacing:6.395989px;}
.wsd1{word-spacing:6.402010px;}
.wsf4{word-spacing:6.535044px;}
.wsf5{word-spacing:6.553080px;}
.wsac{word-spacing:6.635092px;}
.ws139{word-spacing:6.778598px;}
.wsf1{word-spacing:6.961896px;}
.wsf0{word-spacing:6.967908px;}
.wsc8{word-spacing:6.993792px;}
.wsb7{word-spacing:7.113296px;}
.ws4b{word-spacing:7.412174px;}
.wscb{word-spacing:7.591501px;}
.wsa5{word-spacing:7.830604px;}
.wsa4{word-spacing:7.890379px;}
.ws8d{word-spacing:8.189257px;}
.ws125{word-spacing:8.284954px;}
.ws12c{word-spacing:8.553946px;}
.ws120{word-spacing:9.629914px;}
.ws124{word-spacing:10.974874px;}
.ws5{word-spacing:11.297556px;}
.wsd4{word-spacing:11.615688px;}
.wsa{word-spacing:11.952101px;}
.ws6d{word-spacing:13.808164px;}
.wscd{word-spacing:20.819981px;}
.ws1{word-spacing:22.179541px;}
.ws80{word-spacing:37.586992px;}
.ws49{word-spacing:94.469990px;}
.ws47{word-spacing:118.033690px;}
.ws46{word-spacing:138.208090px;}
.ws48{word-spacing:138.261888px;}
.ws78{word-spacing:240.129604px;}
.ws82{word-spacing:274.668882px;}
.ws79{word-spacing:289.946918px;}
.ws83{word-spacing:290.027174px;}
.ws84{word-spacing:320.638464px;}
.ws93{word-spacing:368.516574px;}
.ws76{word-spacing:395.447817px;}
.ws86{word-spacing:415.200832px;}
.ws87{word-spacing:429.078832px;}
.wsb2{word-spacing:603.135804px;}
.ws4f{word-spacing:603.673784px;}
.wsae{word-spacing:1015.169015px;}
._a9{margin-left:-24.047885px;}
._37{margin-left:-11.955150px;}
._14{margin-left:-7.400224px;}
._7{margin-left:-6.395989px;}
._4{margin-left:-5.308087px;}
._1{margin-left:-3.849538px;}
._34{margin-left:-2.630133px;}
._2{margin-left:-1.506341px;}
._2d{width:1.493374px;}
._2b{width:3.658262px;}
._a8{width:6.133018px;}
._0{width:10.879128px;}
._5b{width:12.591793px;}
._15{width:13.676662px;}
._9c{width:14.824386px;}
._12{width:15.888368px;}
._b{width:17.047994px;}
._6{width:18.123958px;}
._5{width:20.036777px;}
._c{width:21.399665px;}
._8{width:23.085332px;}
._16{width:24.424297px;}
._62{width:26.193664px;}
._a{width:27.197898px;}
._11{width:28.632512px;}
._2c{width:30.186678px;}
._13{width:33.175458px;}
._d{width:34.370970px;}
._9{width:36.164238px;}
._10{width:37.299974px;}
._8d{width:38.913916px;}
._8c{width:43.648209px;}
._a5{width:58.490203px;}
._a7{width:61.868160px;}
._3{width:69.366934px;}
._a6{width:71.713267px;}
._3f{width:73.165518px;}
._85{width:77.409402px;}
._86{width:78.951576px;}
._3e{width:82.374203px;}
._17{width:83.387520px;}
._3a{width:85.216309px;}
._3b{width:86.279877px;}
._41{width:87.355840px;}
._3c{width:88.435943px;}
._3d{width:89.520163px;}
._40{width:90.763499px;}
._74{width:96.466109px;}
._88{width:97.508648px;}
._73{width:104.970396px;}
._7c{width:107.043455px;}
._6d{width:108.090416px;}
._89{width:109.774210px;}
._77{width:111.809309px;}
._79{width:113.087909px;}
._8a{width:116.323318px;}
._67{width:120.497418px;}
._78{width:121.586467px;}
._76{width:123.787176px;}
._7f{width:124.811453px;}
._68{width:126.351809px;}
._72{width:127.979560px;}
._87{width:129.005936px;}
._75{width:131.396378px;}
._7d{width:134.792164px;}
._70{width:136.727746px;}
._66{width:137.962451px;}
._64{width:139.755353px;}
._6a{width:141.369294px;}
._7b{width:143.043011px;}
._65{width:147.148985px;}
._27{width:150.689318px;}
._28{width:151.741311px;}
._1e{width:153.486835px;}
._7e{width:155.576569px;}
._6f{width:157.867360px;}
._7a{width:159.780179px;}
._71{width:161.573447px;}
._6b{width:163.678792px;}
._63{width:166.235944px;}
._81{width:168.067340px;}
._6c{width:169.436351px;}
._84{width:172.165679px;}
._1a{width:173.661235px;}
._36{width:176.764020px;}
._26{width:179.202470px;}
._69{width:180.522312px;}
._82{width:181.538497px;}
._83{width:182.757908px;}
._80{width:185.830399px;}
._93{width:187.456282px;}
._29{width:189.800755px;}
._23{width:190.822910px;}
._6e{width:191.939452px;}
._9b{width:193.194739px;}
._95{width:195.824866px;}
._91{width:198.992972px;}
._8f{width:202.459957px;}
._20{width:204.057331px;}
._18{width:205.725082px;}
._1d{width:206.962445px;}
._99{width:208.238995px;}
._1b{width:210.028954px;}
._25{width:211.427712px;}
._2a{width:218.260109px;}
._98{width:221.887027px;}
._90{width:225.712666px;}
._97{width:232.287982px;}
._22{width:236.228774px;}
._1c{width:238.380710px;}
._19{width:245.912486px;}
._21{width:247.365029px;}
._24{width:251.830310px;}
._43{width:261.996455px;}
._48{width:267.615361px;}
._1f{width:272.004710px;}
._38{width:274.968450px;}
._47{width:285.727368px;}
._44{width:289.612782px;}
._56{width:297.024956px;}
._4a{width:300.671268px;}
._61{width:303.476774px;}
._39{width:304.569401px;}
._46{width:307.449810px;}
._49{width:308.753693px;}
._55{width:312.028632px;}
._5f{width:316.980173px;}
._45{width:323.612379px;}
._42{width:326.016122px;}
._5e{width:334.088064px;}
._94{width:358.952478px;}
._8e{width:362.718341px;}
._92{width:365.468018px;}
._9a{width:372.282437px;}
._96{width:375.868973px;}
._5a{width:379.063526px;}
._4e{width:397.627291px;}
._4d{width:399.241232px;}
._4b{width:407.298997px;}
._5d{width:413.494502px;}
._4f{width:415.141542px;}
._58{width:418.429200px;}
._51{width:419.505161px;}
._4c{width:421.776634px;}
._9f{width:423.689453px;}
._59{width:424.873023px;}
._53{width:427.455316px;}
._5c{width:428.719450px;}
._54{width:431.639608px;}
._52{width:433.492651px;}
._57{width:435.943451px;}
._50{width:442.160113px;}
._35{width:446.118377px;}
._60{width:448.840051px;}
._9d{width:860.170884px;}
._a0{width:873.022638px;}
._9e{width:879.538178px;}
._a3{width:881.391222px;}
._a1{width:886.711250px;}
._a2{width:889.460928px;}
._2e{width:1216.971440px;}
._30{width:1228.149478px;}
._33{width:1229.823194px;}
._32{width:1231.257809px;}
._2f{width:1234.665018px;}
._31{width:1248.353630px;}
._e{width:1880.090700px;}
._a4{width:2159.163446px;}
._8b{width:2570.666700px;}
._f{width:2594.576700px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fse{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs9{font-size:43.600200px;}
.fs7{font-size:45.429600px;}
.fs5{font-size:47.337600px;}
.fs3{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsb{font-size:49.829400px;}
.fs8{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fs6{font-size:62.286600px;}
.fs4{font-size:71.731200px;}
.fs10{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.y1f7{bottom:-409.966050px;}
.y21a{bottom:-374.595258px;}
.y219{bottom:-353.625402px;}
.y218{bottom:-332.655546px;}
.y217{bottom:-311.595510px;}
.y216{bottom:-290.625654px;}
.y215{bottom:-269.655798px;}
.y214{bottom:-248.595762px;}
.y213{bottom:-227.625906px;}
.y212{bottom:-206.656050px;}
.y211{bottom:-180.286050px;}
.y210{bottom:-139.244550px;}
.y20f{bottom:-118.275000px;}
.y20e{bottom:-97.305450px;}
.y20d{bottom:-76.245450px;}
.y20c{bottom:-55.275900px;}
.y20b{bottom:-24.855546px;}
.y20a{bottom:-9.105609px;}
.y0{bottom:0.000000px;}
.y40{bottom:45.921000px;}
.yd6{bottom:99.720000px;}
.y16{bottom:100.260000px;}
.yf6{bottom:100.386000px;}
.ya6{bottom:101.388000px;}
.y29f{bottom:105.961500px;}
.y3f{bottom:109.789500px;}
.y73{bottom:111.342000px;}
.y26d{bottom:115.243500px;}
.y15{bottom:118.147500px;}
.y1c0{bottom:118.365000px;}
.y1f3{bottom:120.322500px;}
.yd5{bottom:120.610500px;}
.yf5{bottom:121.278000px;}
.y180{bottom:122.230500px;}
.ya5{bottom:122.280000px;}
.y23d{bottom:123.675000px;}
.y29e{bottom:125.112000px;}
.y3e{bottom:130.681500px;}
.y72{bottom:132.234000px;}
.y26c{bottom:134.394000px;}
.y14{bottom:136.035000px;}
.y1f2{bottom:138.138000px;}
.y1bf{bottom:139.255500px;}
.y14f{bottom:139.693500px;}
.y1f1{bottom:141.213000px;}
.yd3{bottom:141.502500px;}
.yf4{bottom:142.170000px;}
.y17f{bottom:143.121000px;}
.ya3{bottom:143.170500px;}
.y23c{bottom:143.173500px;}
.y29d{bottom:144.262500px;}
.yd4{bottom:146.928000px;}
.ya4{bottom:148.596000px;}
.y3d{bottom:151.573500px;}
.y26b{bottom:153.544500px;}
.y13{bottom:153.924000px;}
.y71{bottom:157.608000px;}
.y14e{bottom:157.626000px;}
.y1be{bottom:160.147500px;}
.y1f0{bottom:162.105000px;}
.yd2{bottom:162.394500px;}
.y23b{bottom:162.672000px;}
.yf3{bottom:163.062000px;}
.y29c{bottom:163.413000px;}
.y17e{bottom:164.013000px;}
.ya2{bottom:164.062500px;}
.y126{bottom:169.312500px;}
.y12{bottom:171.811500px;}
.y3c{bottom:172.465500px;}
.y26a{bottom:172.695000px;}
.y14d{bottom:175.560000px;}
.y1bd{bottom:181.039500px;}
.y70{bottom:182.040000px;}
.y23a{bottom:182.170500px;}
.y29b{bottom:182.563500px;}
.y1ef{bottom:182.997000px;}
.yd1{bottom:183.285000px;}
.y125{bottom:183.510000px;}
.yf2{bottom:183.952500px;}
.y17d{bottom:184.905000px;}
.ya1{bottom:184.954500px;}
.y11{bottom:189.699000px;}
.y269{bottom:191.845500px;}
.y3b{bottom:193.356000px;}
.y14c{bottom:193.492500px;}
.y1ee{bottom:200.812500px;}
.y29a{bottom:201.714000px;}
.y1bc{bottom:201.930000px;}
.y124{bottom:202.801500px;}
.y1ed{bottom:203.887500px;}
.yd0{bottom:204.177000px;}
.yf1{bottom:204.844500px;}
.y17c{bottom:205.795500px;}
.ya0{bottom:205.845000px;}
.y10{bottom:207.586500px;}
.y239{bottom:210.636000px;}
.y268{bottom:210.996000px;}
.y14b{bottom:211.425000px;}
.y3a{bottom:214.248000px;}
.y123{bottom:220.734000px;}
.y6f{bottom:220.864500px;}
.y1bb{bottom:222.822000px;}
.y1ec{bottom:224.779500px;}
.y1a9{bottom:225.069000px;}
.yf{bottom:225.475500px;}
.yf0{bottom:225.736500px;}
.y17b{bottom:226.687500px;}
.y9f{bottom:226.737000px;}
.y14a{bottom:229.357500px;}
.ycf{bottom:229.552500px;}
.y238{bottom:230.134500px;}
.y267{bottom:230.146500px;}
.y39{bottom:235.140000px;}
.y122{bottom:238.668000px;}
.y299{bottom:240.015000px;}
.y6e{bottom:241.756500px;}
.y1ba{bottom:243.714000px;}
.y1eb{bottom:245.671500px;}
.y1a8{bottom:245.961000px;}
.yef{bottom:246.627000px;}
.y149{bottom:247.290000px;}
.y17a{bottom:247.579500px;}
.y9e{bottom:247.629000px;}
.y266{bottom:249.297000px;}
.y237{bottom:249.633000px;}
.ye{bottom:252.330000px;}
.y38{bottom:256.030500px;}
.y121{bottom:256.600500px;}
.y298{bottom:259.165500px;}
.y6d{bottom:262.647000px;}
.y1b9{bottom:264.606000px;}
.yce{bottom:264.894000px;}
.y148{bottom:265.222500px;}
.y1ea{bottom:266.563500px;}
.y1a7{bottom:266.851500px;}
.yee{bottom:267.519000px;}
.y265{bottom:268.447500px;}
.y179{bottom:268.471500px;}
.y9d{bottom:268.521000px;}
.y236{bottom:269.131500px;}
.yd{bottom:270.217500px;}
.y120{bottom:274.533000px;}
.y37{bottom:276.922500px;}
.y297{bottom:278.316000px;}
.y147{bottom:283.156500px;}
.y6c{bottom:283.539000px;}
.y1b8{bottom:285.496500px;}
.ycd{bottom:285.786000px;}
.y9c{bottom:286.681500px;}
.y1e9{bottom:287.454000px;}
.y264{bottom:287.598000px;}
.y1a6{bottom:287.743500px;}
.yc{bottom:288.105000px;}
.yed{bottom:288.411000px;}
.y178{bottom:289.362000px;}
.y9a{bottom:289.411500px;}
.y209{bottom:290.594094px;}
.y11f{bottom:292.465500px;}
.y9b{bottom:294.837000px;}
.y296{bottom:297.466500px;}
.y235{bottom:297.597000px;}
.y36{bottom:297.814500px;}
.y146{bottom:301.089000px;}
.y6b{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.y1b7{bottom:306.388500px;}
.ycc{bottom:306.678000px;}
.y263{bottom:306.748500px;}
.y1e8{bottom:308.346000px;}
.y1a5{bottom:308.635500px;}
.y177{bottom:310.254000px;}
.y99{bottom:310.303500px;}
.y208{bottom:311.564202px;}
.yec{bottom:313.785000px;}
.y295{bottom:316.617000px;}
.y11e{bottom:317.601000px;}
.y234{bottom:317.619000px;}
.y35{bottom:318.705000px;}
.y145{bottom:319.021500px;}
.ya{bottom:323.881500px;}
.y6a{bottom:325.323000px;}
.y262{bottom:325.899000px;}
.y1b6{bottom:327.280500px;}
.ycb{bottom:327.568500px;}
.y1e7{bottom:329.238000px;}
.y1a4{bottom:329.526000px;}
.y176{bottom:331.146000px;}
.y97{bottom:331.195500px;}
.y207{bottom:332.624238px;}
.y294{bottom:335.767500px;}
.y98{bottom:336.619500px;}
.y144{bottom:336.954000px;}
.y233{bottom:337.639500px;}
.y34{bottom:339.597000px;}
.y9{bottom:341.769000px;}
.y261{bottom:345.049500px;}
.y69{bottom:346.213500px;}
.y1b5{bottom:348.171000px;}
.yc9{bottom:348.460500px;}
.yeb{bottom:349.128000px;}
.y1e6{bottom:350.128500px;}
.y11d{bottom:350.266500px;}
.y1a3{bottom:350.418000px;}
.y175{bottom:352.036500px;}
.y95{bottom:352.086000px;}
.y206{bottom:353.594094px;}
.yca{bottom:353.884500px;}
.y143{bottom:354.886500px;}
.y293{bottom:354.918000px;}
.y96{bottom:357.511500px;}
.y8{bottom:359.658000px;}
.y33{bottom:360.489000px;}
.y260{bottom:364.200000px;}
.yc8{bottom:366.622500px;}
.y68{bottom:367.105500px;}
.y1b4{bottom:369.063000px;}
.y2a2{bottom:369.339000px;}
.yc7{bottom:369.352500px;}
.yea{bottom:370.018500px;}
.y94{bottom:370.248000px;}
.y1e5{bottom:371.020500px;}
.y1a2{bottom:371.310000px;}
.y142{bottom:372.820500px;}
.y174{bottom:372.928500px;}
.y93{bottom:372.978000px;}
.y292{bottom:374.070000px;}
.y205{bottom:374.565381px;}
.y232{bottom:375.592500px;}
.y7{bottom:377.545500px;}
.y32{bottom:381.379500px;}
.y25f{bottom:383.350500px;}
.y11c{bottom:387.370500px;}
.y67{bottom:387.997500px;}
.y2a1{bottom:388.489500px;}
.y1b3{bottom:389.955000px;}
.yc6{bottom:390.243000px;}
.y141{bottom:390.753000px;}
.ye9{bottom:390.910500px;}
.y1e4{bottom:391.912500px;}
.y1a1{bottom:392.200500px;}
.y291{bottom:393.220500px;}
.y173{bottom:393.820500px;}
.y92{bottom:393.870000px;}
.y6{bottom:395.433000px;}
.y204{bottom:395.625417px;}
.y231{bottom:396.484500px;}
.y25e{bottom:402.501000px;}
.y31{bottom:406.755000px;}
.y2a0{bottom:407.640000px;}
.y11b{bottom:408.262500px;}
.y140{bottom:408.685500px;}
.y66{bottom:408.888000px;}
.y1b2{bottom:410.845500px;}
.yc5{bottom:411.135000px;}
.ye8{bottom:411.802500px;}
.y290{bottom:412.371000px;}
.y1e3{bottom:412.803000px;}
.y1a0{bottom:413.092500px;}
.y172{bottom:414.711000px;}
.y91{bottom:414.760500px;}
.y203{bottom:416.595273px;}
.y230{bottom:417.376500px;}
.y5{bottom:419.299500px;}
.y25d{bottom:421.651500px;}
.y13f{bottom:426.618000px;}
.y11a{bottom:429.153000px;}
.y65{bottom:429.780000px;}
.y28f{bottom:431.521500px;}
.y1b1{bottom:431.737500px;}
.yc4{bottom:432.027000px;}
.ye7{bottom:432.694500px;}
.y19f{bottom:433.984500px;}
.y171{bottom:435.603000px;}
.y90{bottom:435.652500px;}
.y4{bottom:437.187000px;}
.y202{bottom:437.565129px;}
.y1e2{bottom:438.178500px;}
.y22f{bottom:438.268500px;}
.y25c{bottom:440.802000px;}
.y13e{bottom:444.550500px;}
.y119{bottom:450.045000px;}
.y64{bottom:450.672000px;}
.y1b0{bottom:452.629500px;}
.yc3{bottom:452.917500px;}
.ye6{bottom:453.585000px;}
.y19e{bottom:454.875000px;}
.y3{bottom:455.074500px;}
.y170{bottom:456.495000px;}
.y201{bottom:458.625165px;}
.y22e{bottom:459.159000px;}
.y25b{bottom:459.954000px;}
.y8f{bottom:461.028000px;}
.y13d{bottom:462.483000px;}
.y28e{bottom:469.822500px;}
.y118{bottom:470.937000px;}
.y63{bottom:471.562500px;}
.y2{bottom:472.963500px;}
.y1af{bottom:473.520000px;}
.yc1{bottom:473.809500px;}
.ye5{bottom:474.477000px;}
.y1dc{bottom:474.658500px;}
.y19d{bottom:475.767000px;}
.y16f{bottom:477.385500px;}
.y25a{bottom:479.104500px;}
.yc2{bottom:479.235000px;}
.y200{bottom:479.595021px;}
.y22d{bottom:480.051000px;}
.y13c{bottom:480.417000px;}
.y30{bottom:485.967000px;}
.y1db{bottom:488.856000px;}
.y28d{bottom:488.973000px;}
.y117{bottom:491.827500px;}
.y62{bottom:492.454500px;}
.y1ae{bottom:494.412000px;}
.yc0{bottom:494.701500px;}
.ye4{bottom:495.369000px;}
.y8e{bottom:496.369500px;}
.y1{bottom:496.828500px;}
.y259{bottom:498.255000px;}
.y16e{bottom:498.277500px;}
.y13b{bottom:498.349500px;}
.y1ff{bottom:500.564877px;}
.y22c{bottom:500.943000px;}
.y2f{bottom:506.857500px;}
.y28c{bottom:508.123500px;}
.y1da{bottom:508.147500px;}
.y116{bottom:512.719500px;}
.y61{bottom:513.346500px;}
.y1ad{bottom:515.304000px;}
.ybf{bottom:515.593500px;}
.y13a{bottom:516.282000px;}
.y19c{bottom:516.544500px;}
.y8d{bottom:517.261500px;}
.y258{bottom:517.405500px;}
.y16d{bottom:519.169500px;}
.ye3{bottom:520.743000px;}
.y1fe{bottom:521.624913px;}
.y22b{bottom:521.833500px;}
.y1d9{bottom:526.080000px;}
.y28b{bottom:527.274000px;}
.y19b{bottom:530.742000px;}
.y60{bottom:534.237000px;}
.y1ac{bottom:536.194500px;}
.y257{bottom:536.556000px;}
.y115{bottom:538.095000px;}
.y8c{bottom:538.152000px;}
.y16c{bottom:540.061500px;}
.ybe{bottom:540.967500px;}
.y139{bottom:541.417500px;}
.y1fd{bottom:542.594769px;}
.ye2{bottom:542.635500px;}
.y22a{bottom:542.725500px;}
.y1d8{bottom:544.012500px;}
.y19a{bottom:544.938000px;}
.y2e{bottom:545.682000px;}
.y28a{bottom:546.424500px;}
.y5f{bottom:555.129000px;}
.y256{bottom:555.706500px;}
.y1ab{bottom:557.086500px;}
.y8b{bottom:559.044000px;}
.y199{bottom:559.135500px;}
.y16b{bottom:560.952000px;}
.y1d7{bottom:561.946500px;}
.y114{bottom:562.525500px;}
.y1fc{bottom:563.564625px;}
.y229{bottom:563.617500px;}
.y289{bottom:565.575000px;}
.y138{bottom:566.551500px;}
.y2d{bottom:566.574000px;}
.y198{bottom:573.331500px;}
.y255{bottom:574.857000px;}
.y1e1{bottom:574.902000px;}
.y5e{bottom:576.021000px;}
.ybd{bottom:576.310500px;}
.ye1{bottom:577.978500px;}
.y1d6{bottom:579.879000px;}
.y89{bottom:579.936000px;}
.y228{bottom:584.508000px;}
.y1fb{bottom:584.624661px;}
.y288{bottom:584.725500px;}
.y8a{bottom:585.360000px;}
.y16a{bottom:586.327500px;}
.y2c{bottom:587.466000px;}
.y254{bottom:594.007500px;}
.y197{bottom:595.612500px;}
.y5d{bottom:596.913000px;}
.ybc{bottom:597.201000px;}
.y1d5{bottom:597.811500px;}
.ye0{bottom:598.870500px;}
.y137{bottom:599.217000px;}
.y87{bottom:600.828000px;}
.y113{bottom:601.350000px;}
.y287{bottom:603.876000px;}
.y227{bottom:605.400000px;}
.y88{bottom:606.252000px;}
.y2b{bottom:608.356500px;}
.y1fa{bottom:610.094499px;}
.y253{bottom:613.158000px;}
.y196{bottom:613.545000px;}
.y5c{bottom:617.803500px;}
.ybb{bottom:618.093000px;}
.ydf{bottom:619.761000px;}
.y169{bottom:621.669000px;}
.y86{bottom:621.718500px;}
.y112{bottom:622.242000px;}
.y1d4{bottom:622.947000px;}
.y286{bottom:623.026500px;}
.y226{bottom:626.292000px;}
.y2a{bottom:629.248500px;}
.y195{bottom:631.477500px;}
.y252{bottom:632.308500px;}
.y5b{bottom:638.695500px;}
.yba{bottom:638.985000px;}
.yde{bottom:640.653000px;}
.y285{bottom:642.177000px;}
.y168{bottom:642.561000px;}
.y85{bottom:642.610500px;}
.y111{bottom:643.134000px;}
.y136{bottom:644.445000px;}
.y225{bottom:647.182500px;}
.y1f9{bottom:649.064283px;}
.y194{bottom:649.410000px;}
.y29{bottom:650.140500px;}
.y251{bottom:651.459000px;}
.y1d3{bottom:655.612500px;}
.y135{bottom:658.642500px;}
.y5a{bottom:659.587500px;}
.yb9{bottom:659.875500px;}
.y284{bottom:661.327500px;}
.ydd{bottom:661.545000px;}
.y167{bottom:663.453000px;}
.y84{bottom:663.502500px;}
.y110{bottom:664.024500px;}
.y193{bottom:667.344000px;}
.y224{bottom:668.074500px;}
.y1f8{bottom:670.124319px;}
.y250{bottom:670.609500px;}
.y28{bottom:671.031000px;}
.y1d2{bottom:674.845500px;}
.y134{bottom:679.801500px;}
.y59{bottom:680.478000px;}
.ydc{bottom:682.435500px;}
.y166{bottom:684.343500px;}
.y83{bottom:684.393000px;}
.y10f{bottom:684.916500px;}
.y192{bottom:685.276500px;}
.y223{bottom:688.966500px;}
.y24f{bottom:689.760000px;}
.y27{bottom:691.923000px;}
.y133{bottom:693.999000px;}
.yb8{bottom:698.176500px;}
.y283{bottom:699.628500px;}
.y58{bottom:701.370000px;}
.y191{bottom:703.209000px;}
.ydb{bottom:703.327500px;}
.y165{bottom:705.235500px;}
.y81{bottom:705.285000px;}
.y1aa{bottom:707.811000px;}
.y132{bottom:708.195000px;}
.y222{bottom:709.858500px;}
.y10e{bottom:710.290500px;}
.y1d1{bottom:710.428500px;}
.y82{bottom:710.709000px;}
.y26{bottom:712.815000px;}
.y24e{bottom:713.394000px;}
.y282{bottom:718.779000px;}
.y190{bottom:721.141500px;}
.y1e0{bottom:721.143000px;}
.y57{bottom:722.262000px;}
.y131{bottom:722.392500px;}
.yda{bottom:724.219500px;}
.y164{bottom:726.127500px;}
.y80{bottom:726.177000px;}
.y1f6{bottom:726.284085px;}
.y221{bottom:730.749000px;}
.y1d0{bottom:731.320500px;}
.y25{bottom:733.705500px;}
.y1f5{bottom:735.913950px;}
.yb7{bottom:736.479000px;}
.y130{bottom:736.588500px;}
.y281{bottom:737.929500px;}
.y18f{bottom:739.074000px;}
.y56{bottom:743.152500px;}
.yd9{bottom:745.110000px;}
.y10d{bottom:745.633500px;}
.y163{bottom:747.018000px;}
.y7f{bottom:747.067500px;}
.y12f{bottom:750.786000px;}
.y1cf{bottom:752.211000px;}
.y24d{bottom:753.295500px;}
.y24{bottom:754.597500px;}
.y220{bottom:756.124500px;}
.y18e{bottom:757.006500px;}
.y280{bottom:757.081500px;}
.yb6{bottom:757.369500px;}
.y55{bottom:764.044500px;}
.yd8{bottom:766.002000px;}
.y162{bottom:767.910000px;}
.y12e{bottom:772.185000px;}
.y7e{bottom:772.443000px;}
.y24c{bottom:772.794000px;}
.y1ce{bottom:773.103000px;}
.y18d{bottom:774.940500px;}
.y23{bottom:775.489500px;}
.y27f{bottom:776.232000px;}
.y10c{bottom:776.971500px;}
.yb5{bottom:778.261500px;}
.y12d{bottom:779.283000px;}
.y54{bottom:784.936500px;}
.yd7{bottom:786.894000px;}
.y161{bottom:788.802000px;}
.y21f{bottom:791.752500px;}
.y24b{bottom:792.292500px;}
.y18c{bottom:792.873000px;}
.y1cd{bottom:793.995000px;}
.y27e{bottom:795.382500px;}
.y22{bottom:796.381500px;}
.yb4{bottom:799.153500px;}
.y1df{bottom:804.709500px;}
.y53{bottom:805.827000px;}
.y12c{bottom:807.781500px;}
.y7d{bottom:807.784500px;}
.y10b{bottom:808.308000px;}
.y160{bottom:809.692500px;}
.y18b{bottom:810.805500px;}
.y21e{bottom:810.984000px;}
.y24a{bottom:811.791000px;}
.y27d{bottom:814.533000px;}
.y21{bottom:817.272000px;}
.y1cc{bottom:819.369000px;}
.y12b{bottom:821.977500px;}
.yb3{bottom:824.527500px;}
.y52{bottom:826.719000px;}
.y7c{bottom:828.676500px;}
.y18a{bottom:828.738000px;}
.y21d{bottom:830.217000px;}
.y15f{bottom:830.584500px;}
.y249{bottom:831.289500px;}
.y27c{bottom:833.683500px;}
.y20{bottom:838.164000px;}
.y10a{bottom:846.609000px;}
.y189{bottom:846.670500px;}
.y51{bottom:847.611000px;}
.y21c{bottom:849.450000px;}
.y7b{bottom:849.568500px;}
.y248{bottom:850.788000px;}
.y15e{bottom:851.476500px;}
.y27b{bottom:852.834000px;}
.y12a{bottom:855.016500px;}
.y1cb{bottom:856.561500px;}
.y1f{bottom:859.056000px;}
.yb2{bottom:863.184000px;}
.y188{bottom:864.603000px;}
.y50{bottom:868.503000px;}
.y21b{bottom:868.683000px;}
.y247{bottom:870.286500px;}
.y7a{bottom:870.460500px;}
.y1ca{bottom:870.759000px;}
.y129{bottom:871.308000px;}
.y27a{bottom:871.984500px;}
.y15d{bottom:872.368500px;}
.y128{bottom:874.249500px;}
.yb1{bottom:882.027000px;}
.y187{bottom:882.537000px;}
.y109{bottom:884.910000px;}
.y4f{bottom:889.393500px;}
.y246{bottom:889.786500px;}
.y279{bottom:891.135000px;}
.y79{bottom:891.351000px;}
.y1c9{bottom:893.040000px;}
.y127{bottom:893.482500px;}
.y1f4{bottom:894.102000px;}
.yb0{bottom:898.465500px;}
.y1e{bottom:899.076000px;}
.y186{bottom:900.469500px;}
.y108{bottom:902.725500px;}
.y107{bottom:905.802000px;}
.y4d{bottom:910.285500px;}
.y1c8{bottom:910.972500px;}
.y78{bottom:912.243000px;}
.y15c{bottom:914.563500px;}
.yaf{bottom:914.904000px;}
.y1d{bottom:915.214500px;}
.y4e{bottom:915.709500px;}
.y185{bottom:918.402000px;}
.y105{bottom:923.617500px;}
.y245{bottom:924.427500px;}
.y104{bottom:926.694000px;}
.y15b{bottom:928.759500px;}
.y1c7{bottom:928.905000px;}
.y278{bottom:929.436000px;}
.y4c{bottom:931.177500px;}
.yae{bottom:931.342500px;}
.y1c{bottom:931.354500px;}
.y106{bottom:932.118000px;}
.y77{bottom:933.135000px;}
.y184{bottom:936.334500px;}
.y1c6{bottom:946.837500px;}
.y103{bottom:947.584500px;}
.y15a{bottom:947.604000px;}
.yad{bottom:947.781000px;}
.y244{bottom:948.409500px;}
.y277{bottom:948.586500px;}
.y1de{bottom:950.949000px;}
.y4b{bottom:952.068000px;}
.y76{bottom:954.025500px;}
.y183{bottom:961.470000px;}
.y159{bottom:964.042500px;}
.yac{bottom:964.219500px;}
.y1c5{bottom:964.770000px;}
.y102{bottom:965.400000px;}
.y276{bottom:967.737000px;}
.y101{bottom:968.476500px;}
.y4a{bottom:972.960000px;}
.y75{bottom:974.917500px;}
.y1dd{bottom:979.401000px;}
.y1b{bottom:980.370000px;}
.y158{bottom:980.481000px;}
.y1c4{bottom:982.704000px;}
.y275{bottom:986.887500px;}
.y243{bottom:987.234000px;}
.yaa{bottom:987.859500px;}
.y100{bottom:989.368500px;}
.yab{bottom:992.742000px;}
.y49{bottom:993.852000px;}
.y157{bottom:996.919500px;}
.y182{bottom:997.123500px;}
.y74{bottom:1000.291500px;}
.y1a{bottom:1001.262000px;}
.y274{bottom:1006.038000px;}
.y1c3{bottom:1007.838000px;}
.yff{bottom:1010.260500px;}
.y156{bottom:1013.358000px;}
.y48{bottom:1014.742500px;}
.y242{bottom:1015.699500px;}
.y181{bottom:1016.356500px;}
.ya9{bottom:1019.479500px;}
.y273{bottom:1025.188500px;}
.y155{bottom:1029.795000px;}
.yfd{bottom:1031.151000px;}
.y241{bottom:1035.198000px;}
.y47{bottom:1035.634500px;}
.yfe{bottom:1036.576500px;}
.y19{bottom:1040.086500px;}
.y1c2{bottom:1043.493000px;}
.y272{bottom:1044.339000px;}
.y154{bottom:1046.233500px;}
.yfc{bottom:1052.043000px;}
.y46{bottom:1056.526500px;}
.y153{bottom:1062.672000px;}
.y1c1{bottom:1062.726000px;}
.y271{bottom:1063.489500px;}
.y240{bottom:1063.663500px;}
.yfb{bottom:1069.858500px;}
.y18{bottom:1071.424500px;}
.yfa{bottom:1072.935000px;}
.y45{bottom:1077.417000px;}
.y270{bottom:1082.640000px;}
.y23f{bottom:1083.162000px;}
.y152{bottom:1086.313500px;}
.yf9{bottom:1093.825500px;}
.y44{bottom:1098.309000px;}
.y26f{bottom:1101.790500px;}
.y17{bottom:1102.761000px;}
.ya8{bottom:1103.734500px;}
.y151{bottom:1109.953500px;}
.y23e{bottom:1111.627500px;}
.yf7{bottom:1114.717500px;}
.y43{bottom:1119.201000px;}
.yf8{bottom:1120.141500px;}
.y26e{bottom:1120.941000px;}
.ya7{bottom:1137.363000px;}
.y42{bottom:1140.091500px;}
.y150{bottom:1141.573500px;}
.y41{bottom:1200.196500px;}
.h18{height:25.070054px;}
.ha{height:27.855430px;}
.hf{height:29.037733px;}
.h9{height:31.526842px;}
.h16{height:33.186380px;}
.h14{height:34.574294px;}
.h2{height:37.993262px;}
.he{height:38.896243px;}
.h17{height:39.434227px;}
.hc{height:41.250077px;}
.hb{height:41.482876px;}
.h10{height:41.842920px;}
.h5{height:43.217759px;}
.h6{height:43.421105px;}
.h1c{height:43.622227px;}
.h3{height:43.815515px;}
.h1a{height:44.536816px;}
.hd{height:48.848947px;}
.h1e{height:50.229492px;}
.h8{height:51.861658px;}
.h1f{height:53.015625px;}
.h7{height:54.276245px;}
.h1b{height:55.922168px;}
.h13{height:62.952077px;}
.h15{height:62.966294px;}
.h12{height:65.934077px;}
.h11{height:65.940077px;}
.h4{height:77.792486px;}
.h1d{height:84.719648px;}
.h19{height:260.935500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:689.783250px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xe2{left:-41.387250px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.xa8{left:62.541000px;}
.xe5{left:85.848000px;}
.xa9{left:90.733500px;}
.xa4{left:94.720500px;}
.xe1{left:101.352750px;}
.xa3{left:106.509000px;}
.xb5{left:118.285500px;}
.xc1{left:120.672000px;}
.xb6{left:130.888500px;}
.xe3{left:154.183110px;}
.xc0{left:162.381000px;}
.xc2{left:164.863500px;}
.xd0{left:174.672000px;}
.xe4{left:176.952138px;}
.xc3{left:180.888000px;}
.xa5{left:185.101500px;}
.xa6{left:212.299500px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.x4{left:254.008500px;}
.x4d{left:258.556500px;}
.x8a{left:260.065500px;}
.x86{left:263.644500px;}
.x55{left:265.834500px;}
.x56{left:267.313500px;}
.x94{left:271.326000px;}
.x76{left:274.458000px;}
.xba{left:276.040500px;}
.x6b{left:278.341500px;}
.x6{left:281.479500px;}
.xb8{left:285.852000px;}
.xb9{left:288.040500px;}
.x5b{left:289.557000px;}
.x8b{left:291.588000px;}
.x3f{left:296.277000px;}
.xc5{left:298.785000px;}
.x5c{left:304.501500px;}
.xb1{left:307.063500px;}
.xd{left:308.110500px;}
.x4e{left:310.359000px;}
.x9e{left:311.487000px;}
.x40{left:312.820500px;}
.xbb{left:314.469000px;}
.xe{left:315.583500px;}
.xbc{left:316.650000px;}
.x2b{left:317.685000px;}
.xbe{left:319.108500px;}
.x11{left:320.313000px;}
.xbd{left:321.850500px;}
.xbf{left:323.397000px;}
.x8c{left:324.985500px;}
.x12{left:327.786000px;}
.x71{left:330.403500px;}
.xdf{left:331.519500px;}
.x2c{left:332.629500px;}
.x9f{left:334.728000px;}
.x41{left:340.645500px;}
.xd1{left:342.015000px;}
.x8d{left:345.105000px;}
.x80{left:346.222500px;}
.x42{left:347.452500px;}
.x3b{left:350.479500px;}
.x43{left:353.797500px;}
.x8e{left:355.252500px;}
.xd2{left:356.958000px;}
.x5{left:358.225500px;}
.x79{left:361.834500px;}
.x38{left:365.329500px;}
.x15{left:368.149500px;}
.x7a{left:371.065500px;}
.x6f{left:373.834500px;}
.x16{left:375.622500px;}
.xc7{left:377.292000px;}
.x95{left:381.160500px;}
.xf{left:382.393500px;}
.x8f{left:383.623500px;}
.x6d{left:386.986500px;}
.xd7{left:388.066500px;}
.x10{left:389.865000px;}
.x96{left:391.449000px;}
.x6e{left:396.216000px;}
.xda{left:398.040000px;}
.xa7{left:399.717000px;}
.x66{left:402.087000px;}
.x46{left:403.716000px;}
.x70{left:406.491000px;}
.x47{left:410.521500px;}
.x90{left:412.216500px;}
.xcb{left:414.463500px;}
.xb{left:419.176500px;}
.x58{left:420.180000px;}
.xc{left:426.648000px;}
.xde{left:428.397000px;}
.xcc{left:429.406500px;}
.x61{left:430.624500px;}
.x9c{left:431.698500px;}
.x3e{left:433.117500px;}
.x7d{left:437.730000px;}
.x4f{left:438.826500px;}
.x57{left:440.520000px;}
.x7e{left:445.702500px;}
.x2f{left:455.266500px;}
.xb7{left:456.694500px;}
.x7f{left:460.812000px;}
.x19{left:463.114500px;}
.x91{left:466.257000px;}
.xaa{left:467.284500px;}
.x1d{left:468.520500px;}
.x30{left:470.211000px;}
.x92{left:471.282000px;}
.x1a{left:478.057500px;}
.x1e{left:483.463500px;}
.x48{left:484.711500px;}
.x45{left:487.843500px;}
.x93{left:490.270500px;}
.xe0{left:491.929500px;}
.x13{left:494.362500px;}
.xab{left:496.566000px;}
.x23{left:497.682000px;}
.x14{left:501.834000px;}
.x97{left:507.316500px;}
.xac{left:509.170500px;}
.xc6{left:512.833500px;}
.x24{left:516.289500px;}
.x2d{left:519.556500px;}
.xd4{left:522.673500px;}
.x7b{left:526.962000px;}
.x74{left:528.978000px;}
.x2e{left:534.501000px;}
.x7c{left:536.193000px;}
.x75{left:538.207500px;}
.xd5{left:540.306000px;}
.x37{left:542.973000px;}
.xc8{left:549.213000px;}
.x67{left:552.004500px;}
.x9d{left:553.606500px;}
.xd6{left:555.249000px;}
.x68{left:558.810000px;}
.x39{left:560.596500px;}
.x77{left:562.642500px;}
.xad{left:563.787000px;}
.x82{left:565.299000px;}
.x3a{left:567.402000px;}
.xc9{left:571.777500px;}
.x17{left:574.312500px;}
.x78{left:577.585500px;}
.xce{left:580.039500px;}
.x18{left:581.784000px;}
.xca{left:586.722000px;}
.x64{left:592.087500px;}
.xcf{left:594.984000px;}
.x65{left:598.893000px;}
.xb2{left:603.943500px;}
.xd3{left:619.924500px;}
.x5d{left:623.134500px;}
.x83{left:625.284000px;}
.x50{left:627.712500px;}
.x72{left:633.559500px;}
.x5e{left:638.899500px;}
.x29{left:640.725000px;}
.x73{left:642.790500px;}
.x51{left:644.476500px;}
.x52{left:650.803500px;}
.x9{left:654.934500px;}
.xb3{left:656.830500px;}
.x2a{left:659.353500px;}
.xa{left:662.407500px;}
.x5f{left:664.347000px;}
.x1f{left:666.177000px;}
.xdc{left:669.834000px;}
.x60{left:671.152500px;}
.x21{left:673.921500px;}
.x25{left:679.069500px;}
.x20{left:681.120000px;}
.x53{left:682.885500px;}
.x59{left:684.172500px;}
.x26{left:686.541000px;}
.x22{left:688.864500px;}
.x49{left:690.282000px;}
.x84{left:693.465000px;}
.xcd{left:697.369500px;}
.xb4{left:698.716500px;}
.x5a{left:700.978500px;}
.xa0{left:702.805500px;}
.x4a{left:706.302000px;}
.x85{left:708.408000px;}
.xd9{left:710.820000px;}
.x31{left:714.541500px;}
.xc4{left:723.787500px;}
.xdd{left:727.098000px;}
.x32{left:729.486000px;}
.xa1{left:730.987500px;}
.x4b{left:732.376500px;}
.x87{left:733.833000px;}
.x4c{left:739.183500px;}
.xa2{left:742.750500px;}
.x88{left:744.121500px;}
.x33{left:749.169000px;}
.xae{left:751.605000px;}
.x54{left:752.890500px;}
.xdb{left:758.265000px;}
.x89{left:759.364500px;}
.x34{left:764.112000px;}
.x7{left:767.148000px;}
.x1b{left:771.096000px;}
.x69{left:772.260000px;}
.x8{left:774.621000px;}
.x44{left:776.865000px;}
.x1c{left:777.901500px;}
.xaf{left:781.018500px;}
.x81{left:785.983500px;}
.xd8{left:787.984500px;}
.x62{left:792.192000px;}
.xb0{left:793.756500px;}
.x3c{left:795.085500px;}
.x98{left:797.094000px;}
.x63{left:798.618000px;}
.x3d{left:801.511500px;}
.x35{left:802.656000px;}
.x99{left:807.382500px;}
.x36{left:811.885500px;}
.x6c{left:813.568500px;}
.x27{left:817.785000px;}
.x9a{left:822.625500px;}
.x28{left:832.729500px;}
.x9b{left:835.332000px;}
.x6a{left:837.042000px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.826667pt;}
.v2{vertical-align:19.285333pt;}
.v3{vertical-align:21.946667pt;}
.v4{vertical-align:25.237333pt;}
.ls68{letter-spacing:-0.320000pt;}
.ls60{letter-spacing:-0.133600pt;}
.ls5a{letter-spacing:-0.106880pt;}
.ls63{letter-spacing:-0.096192pt;}
.ls6b{letter-spacing:-0.096000pt;}
.ls71{letter-spacing:-0.090848pt;}
.ls73{letter-spacing:-0.085504pt;}
.ls62{letter-spacing:-0.080160pt;}
.ls5f{letter-spacing:-0.074816pt;}
.ls61{letter-spacing:-0.064128pt;}
.ls65{letter-spacing:-0.058784pt;}
.ls6f{letter-spacing:-0.057600pt;}
.ls64{letter-spacing:-0.048096pt;}
.ls5c{letter-spacing:-0.042752pt;}
.ls67{letter-spacing:-0.032064pt;}
.ls5d{letter-spacing:-0.026720pt;}
.ls6a{letter-spacing:-0.019200pt;}
.ls59{letter-spacing:-0.017024pt;}
.ls5e{letter-spacing:-0.016032pt;}
.ls72{letter-spacing:-0.010688pt;}
.ls6d{letter-spacing:-0.009600pt;}
.ls5b{letter-spacing:-0.005344pt;}
.ls6c{letter-spacing:-0.004800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000094pt;}
.ls11{letter-spacing:0.000156pt;}
.ls7{letter-spacing:0.000387pt;}
.ls6{letter-spacing:0.000747pt;}
.lsa{letter-spacing:0.001012pt;}
.ls26{letter-spacing:0.001434pt;}
.ls8{letter-spacing:0.001774pt;}
.ls57{letter-spacing:0.001929pt;}
.lsb{letter-spacing:0.002370pt;}
.ls1a{letter-spacing:0.002422pt;}
.lsc{letter-spacing:0.002666pt;}
.ls7d{letter-spacing:0.004267pt;}
.ls53{letter-spacing:0.004800pt;}
.ls49{letter-spacing:0.005344pt;}
.ls70{letter-spacing:0.006400pt;}
.ls52{letter-spacing:0.009600pt;}
.ls46{letter-spacing:0.010688pt;}
.ls4c{letter-spacing:0.016032pt;}
.ls47{letter-spacing:0.021376pt;}
.ls54{letter-spacing:0.024000pt;}
.ls50{letter-spacing:0.028800pt;}
.ls4b{letter-spacing:0.032064pt;}
.ls43{letter-spacing:0.042752pt;}
.ls41{letter-spacing:0.048096pt;}
.ls44{letter-spacing:0.053440pt;}
.ls3e{letter-spacing:0.055328pt;}
.ls48{letter-spacing:0.064128pt;}
.ls51{letter-spacing:0.067200pt;}
.ls45{letter-spacing:0.069472pt;}
.ls4d{letter-spacing:0.074816pt;}
.ls55{letter-spacing:0.081600pt;}
.ls42{letter-spacing:0.090848pt;}
.ls4a{letter-spacing:0.101536pt;}
.ls4f{letter-spacing:0.110400pt;}
.ls6e{letter-spacing:0.120000pt;}
.ls66{letter-spacing:0.144288pt;}
.ls56{letter-spacing:0.149632pt;}
.ls40{letter-spacing:0.153216pt;}
.ls3f{letter-spacing:0.161728pt;}
.ls13{letter-spacing:0.662839pt;}
.ls20{letter-spacing:0.663756pt;}
.ls18{letter-spacing:0.668173pt;}
.ls15{letter-spacing:2.657067pt;}
.ls9{letter-spacing:3.163733pt;}
.ls0{letter-spacing:7.442933pt;}
.ls2b{letter-spacing:10.464047pt;}
.ls33{letter-spacing:10.623733pt;}
.ls4{letter-spacing:10.626533pt;}
.ls25{letter-spacing:10.626800pt;}
.ls22{letter-spacing:10.629067pt;}
.ls28{letter-spacing:11.133060pt;}
.ls27{letter-spacing:11.138393pt;}
.ls75{letter-spacing:11.954133pt;}
.ls58{letter-spacing:11.956898pt;}
.ls76{letter-spacing:11.959467pt;}
.ls78{letter-spacing:11.968610pt;}
.ls79{letter-spacing:12.044800pt;}
.ls74{letter-spacing:12.175412pt;}
.ls7e{letter-spacing:12.202623pt;}
.ls7b{letter-spacing:12.205181pt;}
.ls34{letter-spacing:13.056627pt;}
.ls3d{letter-spacing:13.070931pt;}
.ls35{letter-spacing:13.146130pt;}
.ls2d{letter-spacing:13.146696pt;}
.ls19{letter-spacing:13.279711pt;}
.ls2e{letter-spacing:13.283733pt;}
.ls14{letter-spacing:13.284237pt;}
.ls3c{letter-spacing:13.293563pt;}
.ls36{letter-spacing:13.320617pt;}
.ls2{letter-spacing:13.384970pt;}
.ls3a{letter-spacing:13.389734pt;}
.ls21{letter-spacing:13.411474pt;}
.ls39{letter-spacing:13.478904pt;}
.lsf{letter-spacing:13.785067pt;}
.lsd{letter-spacing:13.917762pt;}
.lse{letter-spacing:13.923096pt;}
.ls17{letter-spacing:13.943552pt;}
.ls1b{letter-spacing:13.943756pt;}
.ls12{letter-spacing:13.948885pt;}
.ls16{letter-spacing:13.949089pt;}
.ls7a{letter-spacing:14.219963pt;}
.ls23{letter-spacing:14.395158pt;}
.ls1e{letter-spacing:14.448518pt;}
.ls1c{letter-spacing:14.453852pt;}
.ls3b{letter-spacing:14.718081pt;}
.ls7f{letter-spacing:14.972905pt;}
.ls7c{letter-spacing:15.521924pt;}
.ls31{letter-spacing:15.545485pt;}
.ls1d{letter-spacing:15.942400pt;}
.ls2c{letter-spacing:16.047446pt;}
.ls1f{letter-spacing:16.603733pt;}
.ls32{letter-spacing:16.790302pt;}
.ls77{letter-spacing:16.928460pt;}
.ls30{letter-spacing:17.427838pt;}
.ls3{letter-spacing:17.741563pt;}
.ls37{letter-spacing:17.852979pt;}
.ls24{letter-spacing:18.672282pt;}
.ls38{letter-spacing:19.603001pt;}
.ls2f{letter-spacing:20.562806pt;}
.ls1{letter-spacing:25.292137pt;}
.ls29{letter-spacing:351.129570pt;}
.ls2a{letter-spacing:354.083635pt;}
.ls4e{letter-spacing:1265.998944pt;}
.ls69{letter-spacing:1381.840832pt;}
.wsc5{word-spacing:-48.000000pt;}
.ws77{word-spacing:-21.253600pt;}
.wsc0{word-spacing:-13.429472pt;}
.ws3c{word-spacing:-13.283467pt;}
.wsc7{word-spacing:-12.120000pt;}
.wsc4{word-spacing:-12.110400pt;}
.ws85{word-spacing:-11.955200pt;}
.wsbe{word-spacing:-10.801728pt;}
.wsbf{word-spacing:-10.640000pt;}
.ws28{word-spacing:-10.626800pt;}
.ws63{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.wsc2{word-spacing:-8.000000pt;}
.wsc3{word-spacing:-7.680000pt;}
.wsb8{word-spacing:-2.816095pt;}
.wsa9{word-spacing:-2.709827pt;}
.wsa0{word-spacing:-2.550426pt;}
.ws10b{word-spacing:-2.468928pt;}
.ws107{word-spacing:-2.233792pt;}
.ws12{word-spacing:-2.231622pt;}
.ws108{word-spacing:-2.153632pt;}
.ws112{word-spacing:-2.151936pt;}
.wsfa{word-spacing:-2.145600pt;}
.wsfb{word-spacing:-2.088000pt;}
.wsfc{word-spacing:-2.073600pt;}
.ws17{word-spacing:-2.019087pt;}
.wsa8{word-spacing:-1.912819pt;}
.wse6{word-spacing:-1.902464pt;}
.ws0{word-spacing:-1.859680pt;}
.ws3{word-spacing:-1.857735pt;}
.ws10a{word-spacing:-1.843680pt;}
.ws109{word-spacing:-1.827648pt;}
.wse4{word-spacing:-1.758176pt;}
.wse5{word-spacing:-1.742144pt;}
.ws2{word-spacing:-1.710906pt;}
.ws5a{word-spacing:-1.700284pt;}
.wsaa{word-spacing:-1.647150pt;}
.wsb9{word-spacing:-1.594016pt;}
.wsdd{word-spacing:-1.571136pt;}
.ws102{word-spacing:-1.523040pt;}
.ws72{word-spacing:-1.487748pt;}
.wsdc{word-spacing:-1.442880pt;}
.ws142{word-spacing:-1.434624pt;}
.wsba{word-spacing:-1.434614pt;}
.ws14b{word-spacing:-1.291162pt;}
.wsa6{word-spacing:-1.222079pt;}
.ws10e{word-spacing:-1.213088pt;}
.wsd6{word-spacing:-1.197056pt;}
.wsdb{word-spacing:-1.186368pt;}
.wsda{word-spacing:-1.175680pt;}
.wsbb{word-spacing:-1.168945pt;}
.wsd5{word-spacing:-1.095520pt;}
.ws141{word-spacing:-0.908595pt;}
.ws50{word-spacing:-0.690740pt;}
.ws30{word-spacing:-0.637606pt;}
.ws7b{word-spacing:-0.595101pt;}
.wse8{word-spacing:-0.566464pt;}
.ws7e{word-spacing:-0.552594pt;}
.wse7{word-spacing:-0.513024pt;}
.ws10d{word-spacing:-0.480960pt;}
.ws11c{word-spacing:-0.478208pt;}
.ws4c{word-spacing:-0.478205pt;}
.ws7d{word-spacing:-0.425072pt;}
.ws18{word-spacing:-0.425071pt;}
.ws3d{word-spacing:-0.371937pt;}
.wsad{word-spacing:-0.334746pt;}
.wsd9{word-spacing:-0.331328pt;}
.ws1a{word-spacing:-0.318803pt;}
.wsf6{word-spacing:-0.315296pt;}
.ws43{word-spacing:-0.286925pt;}
.ws33{word-spacing:-0.265669pt;}
.wsd2{word-spacing:-0.242592pt;}
.ws13b{word-spacing:-0.239104pt;}
.ws10{word-spacing:-0.212535pt;}
.ws117{word-spacing:-0.191283pt;}
.ws88{word-spacing:-0.170029pt;}
.ws1c{word-spacing:-0.159402pt;}
.wsfe{word-spacing:-0.148800pt;}
.ws110{word-spacing:-0.143462pt;}
.wse{word-spacing:-0.106268pt;}
.wsc9{word-spacing:-0.095642pt;}
.ws7c{word-spacing:-0.085014pt;}
.wsd3{word-spacing:-0.063840pt;}
.wsc1{word-spacing:-0.053440pt;}
.ws11{word-spacing:-0.053134pt;}
.wsc6{word-spacing:-0.048000pt;}
.wsca{word-spacing:-0.047821pt;}
.ws7f{word-spacing:-0.042507pt;}
.ws12f{word-spacing:-0.021581pt;}
.ws132{word-spacing:-0.020719pt;}
.ws140{word-spacing:-0.009139pt;}
.ws118{word-spacing:-0.007142pt;}
.ws13c{word-spacing:-0.006460pt;}
.ws101{word-spacing:-0.006400pt;}
.ws138{word-spacing:-0.006391pt;}
.ws12d{word-spacing:-0.004122pt;}
.ws127{word-spacing:-0.003806pt;}
.ws119{word-spacing:-0.002935pt;}
.ws14d{word-spacing:-0.002654pt;}
.ws12b{word-spacing:-0.001126pt;}
.ws7{word-spacing:0.000000pt;}
.ws27{word-spacing:0.001236pt;}
.ws15{word-spacing:0.002400pt;}
.ws149{word-spacing:0.014217pt;}
.ws14a{word-spacing:0.029200pt;}
.wsd7{word-spacing:0.032064pt;}
.ws9f{word-spacing:0.042507pt;}
.ws44{word-spacing:0.047821pt;}
.ws20{word-spacing:0.053134pt;}
.ws9e{word-spacing:0.085014pt;}
.wsb1{word-spacing:0.095642pt;}
.ws13{word-spacing:0.106268pt;}
.wsd8{word-spacing:0.122912pt;}
.wsfd{word-spacing:0.129600pt;}
.ws45{word-spacing:0.143462pt;}
.ws2a{word-spacing:0.159402pt;}
.ws100{word-spacing:0.168000pt;}
.ws92{word-spacing:0.191283pt;}
.ws8{word-spacing:0.212536pt;}
.wsff{word-spacing:0.216000pt;}
.ws143{word-spacing:0.237827pt;}
.ws114{word-spacing:0.239104pt;}
.wsee{word-spacing:0.256512pt;}
.wsf{word-spacing:0.265669pt;}
.ws122{word-spacing:0.286925pt;}
.ws9d{word-spacing:0.297550pt;}
.wsec{word-spacing:0.299264pt;}
.ws2c{word-spacing:0.318803pt;}
.ws29{word-spacing:0.371937pt;}
.ws6{word-spacing:0.375335pt;}
.wseb{word-spacing:0.390112pt;}
.ws1d{word-spacing:0.425071pt;}
.ws81{word-spacing:0.425072pt;}
.wsea{word-spacing:0.459584pt;}
.wsaf{word-spacing:0.467579pt;}
.wse9{word-spacing:0.475616pt;}
.wsc{word-spacing:0.478205pt;}
.ws10f{word-spacing:0.480960pt;}
.ws135{word-spacing:0.526029pt;}
.ws2d{word-spacing:0.531339pt;}
.ws7a{word-spacing:0.532000pt;}
.ws136{word-spacing:0.573850pt;}
.wsa2{word-spacing:0.584473pt;}
.ws13d{word-spacing:0.621670pt;}
.ws61{word-spacing:0.637606pt;}
.ws6a{word-spacing:0.650681pt;}
.ws6b{word-spacing:0.650695pt;}
.ws6c{word-spacing:0.652547pt;}
.wsb6{word-spacing:0.654123pt;}
.wsb5{word-spacing:0.654574pt;}
.ws99{word-spacing:0.660755pt;}
.ws98{word-spacing:0.661007pt;}
.ws9a{word-spacing:0.662400pt;}
.ws94{word-spacing:0.662622pt;}
.ws9b{word-spacing:0.662874pt;}
.ws97{word-spacing:0.664474pt;}
.ws9c{word-spacing:0.664489pt;}
.ws4e{word-spacing:0.665412pt;}
.ws4d{word-spacing:0.668060pt;}
.ws69{word-spacing:0.677043pt;}
.ws67{word-spacing:0.678910pt;}
.ws68{word-spacing:0.680777pt;}
.wsb4{word-spacing:0.681345pt;}
.wsb3{word-spacing:0.682960pt;}
.ws95{word-spacing:0.689141pt;}
.wsa3{word-spacing:0.690740pt;}
.ws96{word-spacing:0.691008pt;}
.wsed{word-spacing:0.716096pt;}
.ws12a{word-spacing:0.717312pt;}
.wsef{word-spacing:0.726784pt;}
.ws42{word-spacing:0.743874pt;}
.ws3a{word-spacing:0.797008pt;}
.ws5c{word-spacing:0.850142pt;}
.ws6e{word-spacing:0.903276pt;}
.ws147{word-spacing:0.908595pt;}
.ws8b{word-spacing:1.009543pt;}
.wse3{word-spacing:1.020704pt;}
.wse1{word-spacing:1.031392pt;}
.ws41{word-spacing:1.062677pt;}
.ws126{word-spacing:1.099878pt;}
.wse2{word-spacing:1.106208pt;}
.ws70{word-spacing:1.115811pt;}
.ws2e{word-spacing:1.168945pt;}
.ws57{word-spacing:1.222079pt;}
.ws145{word-spacing:1.243341pt;}
.wsf3{word-spacing:1.303936pt;}
.ws53{word-spacing:1.328347pt;}
.ws5e{word-spacing:1.381481pt;}
.wsf2{word-spacing:1.405472pt;}
.ws16{word-spacing:1.434614pt;}
.ws137{word-spacing:1.482445pt;}
.ws8f{word-spacing:1.487748pt;}
.ws40{word-spacing:1.540882pt;}
.ws8e{word-spacing:1.594016pt;}
.ws58{word-spacing:1.647150pt;}
.ws59{word-spacing:1.700284pt;}
.ws3b{word-spacing:1.753418pt;}
.ws11f{word-spacing:1.769370pt;}
.ws56{word-spacing:1.806551pt;}
.wsd{word-spacing:1.859685pt;}
.ws13f{word-spacing:1.865011pt;}
.ws22{word-spacing:1.912819pt;}
.ws104{word-spacing:1.934528pt;}
.ws3f{word-spacing:1.965953pt;}
.ws111{word-spacing:1.974281pt;}
.ws133{word-spacing:2.056294pt;}
.wsbd{word-spacing:2.072221pt;}
.ws12e{word-spacing:2.104115pt;}
.ws65{word-spacing:2.125355pt;}
.ws123{word-spacing:2.151936pt;}
.ws2b{word-spacing:2.178489pt;}
.ws121{word-spacing:2.247578pt;}
.ws91{word-spacing:2.284756pt;}
.ws90{word-spacing:2.337890pt;}
.ws144{word-spacing:2.343219pt;}
.ws21{word-spacing:2.391024pt;}
.ws103{word-spacing:2.410144pt;}
.ws39{word-spacing:2.444158pt;}
.ws9{word-spacing:2.550432pt;}
.ws52{word-spacing:2.603559pt;}
.ws89{word-spacing:2.656693pt;}
.ws73{word-spacing:2.725786pt;}
.ws23{word-spacing:2.762961pt;}
.ws8c{word-spacing:2.816095pt;}
.ws128{word-spacing:2.821427pt;}
.ws19{word-spacing:2.853513pt;}
.ws14c{word-spacing:2.860058pt;}
.ws148{word-spacing:2.860689pt;}
.ws131{word-spacing:2.861235pt;}
.ws13a{word-spacing:2.862379pt;}
.ws130{word-spacing:2.862609pt;}
.ws115{word-spacing:2.864375pt;}
.ws146{word-spacing:2.865186pt;}
.ws13e{word-spacing:2.865545pt;}
.ws116{word-spacing:2.866739pt;}
.ws34{word-spacing:2.869229pt;}
.ws11b{word-spacing:2.869248pt;}
.wscc{word-spacing:2.975497pt;}
.ws11d{word-spacing:3.012710pt;}
.ws38{word-spacing:3.028630pt;}
.wscf{word-spacing:3.060531pt;}
.ws14e{word-spacing:3.108352pt;}
.wsd0{word-spacing:3.133479pt;}
.ws113{word-spacing:3.156173pt;}
.ws36{word-spacing:3.188032pt;}
.ws5b{word-spacing:3.241166pt;}
.ws8a{word-spacing:3.294300pt;}
.ws5f{word-spacing:3.347434pt;}
.ws5d{word-spacing:3.506835pt;}
.wsb0{word-spacing:3.559969pt;}
.ws129{word-spacing:3.586560pt;}
.wsb{word-spacing:3.613103pt;}
.wsce{word-spacing:3.682202pt;}
.wsf7{word-spacing:3.700800pt;}
.ws62{word-spacing:3.719371pt;}
.wsf8{word-spacing:3.777600pt;}
.ws1b{word-spacing:3.825664pt;}
.ws11a{word-spacing:3.921306pt;}
.wsa1{word-spacing:3.931906pt;}
.ws106{word-spacing:3.965248pt;}
.ws2f{word-spacing:3.985040pt;}
.ws105{word-spacing:3.997312pt;}
.wsab{word-spacing:4.038174pt;}
.wsa7{word-spacing:4.091308pt;}
.ws55{word-spacing:4.144442pt;}
.wsde{word-spacing:4.184352pt;}
.ws35{word-spacing:4.197575pt;}
.ws6f{word-spacing:4.250709pt;}
.ws134{word-spacing:4.256051pt;}
.wsdf{word-spacing:4.264512pt;}
.ws60{word-spacing:4.303843pt;}
.ws10c{word-spacing:4.323296pt;}
.ws74{word-spacing:4.351693pt;}
.wse0{word-spacing:4.371392pt;}
.ws14{word-spacing:4.463245pt;}
.ws25{word-spacing:4.516379pt;}
.ws24{word-spacing:4.569513pt;}
.wsbc{word-spacing:4.622646pt;}
.ws11e{word-spacing:4.638618pt;}
.ws66{word-spacing:4.728914pt;}
.ws51{word-spacing:4.782048pt;}
.ws54{word-spacing:4.888316pt;}
.ws32{word-spacing:4.941450pt;}
.ws26{word-spacing:4.994583pt;}
.ws1f{word-spacing:5.047717pt;}
.ws1e{word-spacing:5.100851pt;}
.ws4a{word-spacing:5.153985pt;}
.ws3e{word-spacing:5.207119pt;}
.ws71{word-spacing:5.366521pt;}
.ws31{word-spacing:5.419654pt;}
.ws37{word-spacing:5.472788pt;}
.ws75{word-spacing:5.499392pt;}
.wsf9{word-spacing:5.572800pt;}
.ws64{word-spacing:5.685324pt;}
.wsd1{word-spacing:5.690675pt;}
.wsf4{word-spacing:5.808928pt;}
.wsf5{word-spacing:5.824960pt;}
.wsac{word-spacing:5.897859pt;}
.ws139{word-spacing:6.025421pt;}
.wsf1{word-spacing:6.188352pt;}
.wsf0{word-spacing:6.193696pt;}
.wsc8{word-spacing:6.216704pt;}
.wsb7{word-spacing:6.322930pt;}
.ws4b{word-spacing:6.588599pt;}
.wscb{word-spacing:6.748001pt;}
.wsa5{word-spacing:6.960537pt;}
.wsa4{word-spacing:7.013670pt;}
.ws8d{word-spacing:7.279340pt;}
.ws125{word-spacing:7.364403pt;}
.ws12c{word-spacing:7.603507pt;}
.ws120{word-spacing:8.559923pt;}
.ws124{word-spacing:9.755443pt;}
.ws5{word-spacing:10.042272pt;}
.wsd4{word-spacing:10.325056pt;}
.wsa{word-spacing:10.624090pt;}
.ws6d{word-spacing:12.273923pt;}
.wscd{word-spacing:18.506650pt;}
.ws1{word-spacing:19.715148pt;}
.ws80{word-spacing:33.410659pt;}
.ws49{word-spacing:83.973325pt;}
.ws47{word-spacing:104.918835pt;}
.ws46{word-spacing:122.851635pt;}
.ws48{word-spacing:122.899456pt;}
.ws78{word-spacing:213.448537pt;}
.ws82{word-spacing:244.150117pt;}
.ws79{word-spacing:257.730594pt;}
.ws83{word-spacing:257.801933pt;}
.ws84{word-spacing:285.011968pt;}
.ws93{word-spacing:327.570288pt;}
.ws76{word-spacing:351.509171pt;}
.ws86{word-spacing:369.067406pt;}
.ws87{word-spacing:381.403406pt;}
.wsb2{word-spacing:536.120715pt;}
.ws4f{word-spacing:536.598919pt;}
.wsae{word-spacing:902.372458pt;}
._a9{margin-left:-21.375898pt;}
._37{margin-left:-10.626800pt;}
._14{margin-left:-6.577977pt;}
._7{margin-left:-5.685324pt;}
._4{margin-left:-4.718299pt;}
._1{margin-left:-3.421811pt;}
._34{margin-left:-2.337896pt;}
._2{margin-left:-1.338970pt;}
._2d{width:1.327443pt;}
._2b{width:3.251789pt;}
._a8{width:5.451571pt;}
._0{width:9.670336pt;}
._5b{width:11.192705pt;}
._15{width:12.157033pt;}
._9c{width:13.177232pt;}
._12{width:14.122994pt;}
._b{width:15.153773pt;}
._6{width:16.110185pt;}
._5{width:17.810468pt;}
._c{width:19.021924pt;}
._8{width:20.520295pt;}
._16{width:21.710486pt;}
._62{width:23.283257pt;}
._a{width:24.175909pt;}
._11{width:25.451122pt;}
._2c{width:26.832603pt;}
._13{width:29.489296pt;}
._d{width:30.551973pt;}
._9{width:32.145989pt;}
._10{width:33.155533pt;}
._8d{width:34.590147pt;}
._8c{width:38.798408pt;}
._a5{width:51.991292pt;}
._a7{width:54.993920pt;}
._3{width:61.659497pt;}
._a6{width:63.745126pt;}
._3f{width:65.036016pt;}
._85{width:68.808357pt;}
._86{width:70.179179pt;}
._3e{width:73.221514pt;}
._17{width:74.122240pt;}
._3a{width:75.747830pt;}
._3b{width:76.693224pt;}
._41{width:77.649636pt;}
._3c{width:78.609727pt;}
._3d{width:79.573478pt;}
._40{width:80.678666pt;}
._74{width:85.747652pt;}
._88{width:86.674354pt;}
._73{width:93.307019pt;}
._7c{width:95.149738pt;}
._6d{width:96.080370pt;}
._89{width:97.577075pt;}
._77{width:99.386053pt;}
._79{width:100.522586pt;}
._8a{width:103.398505pt;}
._67{width:107.108816pt;}
._78{width:108.076860pt;}
._76{width:110.033045pt;}
._7f{width:110.943514pt;}
._68{width:112.312719pt;}
._72{width:113.759609pt;}
._87{width:114.671943pt;}
._75{width:116.796781pt;}
._7d{width:119.815257pt;}
._70{width:121.535774pt;}
._66{width:122.633290pt;}
._64{width:124.226980pt;}
._6a{width:125.661595pt;}
._7b{width:127.149343pt;}
._65{width:130.799098pt;}
._27{width:133.946061pt;}
._28{width:134.881165pt;}
._1e{width:136.432742pt;}
._7e{width:138.290284pt;}
._6f{width:140.326542pt;}
._7a{width:142.026826pt;}
._71{width:143.620842pt;}
._6b{width:145.492259pt;}
._63{width:147.765283pt;}
._81{width:149.393191pt;}
._6c{width:150.610090pt;}
._84{width:153.036159pt;}
._1a{width:154.365542pt;}
._36{width:157.123573pt;}
._26{width:159.291085pt;}
._69{width:160.464277pt;}
._82{width:161.367553pt;}
._83{width:162.451474pt;}
._80{width:165.182577pt;}
._93{width:166.627806pt;}
._29{width:168.711782pt;}
._23{width:169.620365pt;}
._6e{width:170.612846pt;}
._9b{width:171.728657pt;}
._95{width:174.066547pt;}
._91{width:176.882642pt;}
._8f{width:179.964406pt;}
._20{width:181.384294pt;}
._18{width:182.866739pt;}
._1d{width:183.966618pt;}
._99{width:185.101329pt;}
._1b{width:186.692403pt;}
._25{width:187.935744pt;}
._2a{width:194.008986pt;}
._98{width:197.232913pt;}
._90{width:200.633481pt;}
._97{width:206.478206pt;}
._22{width:209.981133pt;}
._1c{width:211.893965pt;}
._19{width:218.588877pt;}
._21{width:219.880026pt;}
._24{width:223.849165pt;}
._43{width:232.885738pt;}
._48{width:237.880321pt;}
._1f{width:241.781965pt;}
._38{width:244.416400pt;}
._47{width:253.979883pt;}
._44{width:257.433584pt;}
._56{width:264.022183pt;}
._4a{width:267.263349pt;}
._61{width:269.757133pt;}
._39{width:270.728357pt;}
._46{width:273.288720pt;}
._49{width:274.447727pt;}
._55{width:277.358784pt;}
._5f{width:281.760154pt;}
._45{width:287.655448pt;}
._42{width:289.792109pt;}
._5e{width:296.967168pt;}
._94{width:319.068869pt;}
._8e{width:322.416303pt;}
._92{width:324.860461pt;}
._9a{width:330.917722pt;}
._96{width:334.105754pt;}
._5a{width:336.945357pt;}
._4e{width:353.446481pt;}
._4d{width:354.881095pt;}
._4b{width:362.043553pt;}
._5d{width:367.550669pt;}
._4f{width:369.014704pt;}
._58{width:371.937067pt;}
._51{width:372.893476pt;}
._4c{width:374.912563pt;}
._9f{width:376.612847pt;}
._59{width:377.664909pt;}
._53{width:379.960281pt;}
._5c{width:381.083955pt;}
._54{width:383.679651pt;}
._52{width:385.326801pt;}
._57{width:387.505290pt;}
._50{width:393.031212pt;}
._35{width:396.549669pt;}
._60{width:398.968934pt;}
._9d{width:764.596341pt;}
._a0{width:776.020123pt;}
._9e{width:781.811714pt;}
._a3{width:783.458864pt;}
._a1{width:788.187778pt;}
._a2{width:790.631936pt;}
._2e{width:1081.752391pt;}
._30{width:1091.688425pt;}
._33{width:1093.176173pt;}
._32{width:1094.451386pt;}
._2f{width:1097.480016pt;}
._31{width:1109.647671pt;}
._e{width:1671.191733pt;}
._a4{width:1919.256397pt;}
._8b{width:2285.037067pt;}
._f{width:2306.290400pt;}
.fsa{font-size:31.880533pt;}
.fse{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs9{font-size:38.755733pt;}
.fs7{font-size:40.381867pt;}
.fs5{font-size:42.077867pt;}
.fs3{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsb{font-size:44.292800pt;}
.fs8{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fs6{font-size:55.365867pt;}
.fs4{font-size:63.761067pt;}
.fs10{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.y1f7{bottom:-364.414267pt;}
.y21a{bottom:-332.973563pt;}
.y219{bottom:-314.333691pt;}
.y218{bottom:-295.693819pt;}
.y217{bottom:-276.973787pt;}
.y216{bottom:-258.333915pt;}
.y215{bottom:-239.694043pt;}
.y214{bottom:-220.974011pt;}
.y213{bottom:-202.334139pt;}
.y212{bottom:-183.694267pt;}
.y211{bottom:-160.254267pt;}
.y210{bottom:-123.772933pt;}
.y20f{bottom:-105.133333pt;}
.y20e{bottom:-86.493733pt;}
.y20d{bottom:-67.773733pt;}
.y20c{bottom:-49.134133pt;}
.y20b{bottom:-22.093819pt;}
.y20a{bottom:-8.093875pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:40.818667pt;}
.yd6{bottom:88.640000pt;}
.y16{bottom:89.120000pt;}
.yf6{bottom:89.232000pt;}
.ya6{bottom:90.122667pt;}
.y29f{bottom:94.188000pt;}
.y3f{bottom:97.590667pt;}
.y73{bottom:98.970667pt;}
.y26d{bottom:102.438667pt;}
.y15{bottom:105.020000pt;}
.y1c0{bottom:105.213333pt;}
.y1f3{bottom:106.953333pt;}
.yd5{bottom:107.209333pt;}
.yf5{bottom:107.802667pt;}
.y180{bottom:108.649333pt;}
.ya5{bottom:108.693333pt;}
.y23d{bottom:109.933333pt;}
.y29e{bottom:111.210667pt;}
.y3e{bottom:116.161333pt;}
.y72{bottom:117.541333pt;}
.y26c{bottom:119.461333pt;}
.y14{bottom:120.920000pt;}
.y1f2{bottom:122.789333pt;}
.y1bf{bottom:123.782667pt;}
.y14f{bottom:124.172000pt;}
.y1f1{bottom:125.522667pt;}
.yd3{bottom:125.780000pt;}
.yf4{bottom:126.373333pt;}
.y17f{bottom:127.218667pt;}
.ya3{bottom:127.262667pt;}
.y23c{bottom:127.265333pt;}
.y29d{bottom:128.233333pt;}
.yd4{bottom:130.602667pt;}
.ya4{bottom:132.085333pt;}
.y3d{bottom:134.732000pt;}
.y26b{bottom:136.484000pt;}
.y13{bottom:136.821333pt;}
.y71{bottom:140.096000pt;}
.y14e{bottom:140.112000pt;}
.y1be{bottom:142.353333pt;}
.y1f0{bottom:144.093333pt;}
.yd2{bottom:144.350667pt;}
.y23b{bottom:144.597333pt;}
.yf3{bottom:144.944000pt;}
.y29c{bottom:145.256000pt;}
.y17e{bottom:145.789333pt;}
.ya2{bottom:145.833333pt;}
.y126{bottom:150.500000pt;}
.y12{bottom:152.721333pt;}
.y3c{bottom:153.302667pt;}
.y26a{bottom:153.506667pt;}
.y14d{bottom:156.053333pt;}
.y1bd{bottom:160.924000pt;}
.y70{bottom:161.813333pt;}
.y23a{bottom:161.929333pt;}
.y29b{bottom:162.278667pt;}
.y1ef{bottom:162.664000pt;}
.yd1{bottom:162.920000pt;}
.y125{bottom:163.120000pt;}
.yf2{bottom:163.513333pt;}
.y17d{bottom:164.360000pt;}
.ya1{bottom:164.404000pt;}
.y11{bottom:168.621333pt;}
.y269{bottom:170.529333pt;}
.y3b{bottom:171.872000pt;}
.y14c{bottom:171.993333pt;}
.y1ee{bottom:178.500000pt;}
.y29a{bottom:179.301333pt;}
.y1bc{bottom:179.493333pt;}
.y124{bottom:180.268000pt;}
.y1ed{bottom:181.233333pt;}
.yd0{bottom:181.490667pt;}
.yf1{bottom:182.084000pt;}
.y17c{bottom:182.929333pt;}
.ya0{bottom:182.973333pt;}
.y10{bottom:184.521333pt;}
.y239{bottom:187.232000pt;}
.y268{bottom:187.552000pt;}
.y14b{bottom:187.933333pt;}
.y3a{bottom:190.442667pt;}
.y123{bottom:196.208000pt;}
.y6f{bottom:196.324000pt;}
.y1bb{bottom:198.064000pt;}
.y1ec{bottom:199.804000pt;}
.y1a9{bottom:200.061333pt;}
.yf{bottom:200.422667pt;}
.yf0{bottom:200.654667pt;}
.y17b{bottom:201.500000pt;}
.y9f{bottom:201.544000pt;}
.y14a{bottom:203.873333pt;}
.ycf{bottom:204.046667pt;}
.y238{bottom:204.564000pt;}
.y267{bottom:204.574667pt;}
.y39{bottom:209.013333pt;}
.y122{bottom:212.149333pt;}
.y299{bottom:213.346667pt;}
.y6e{bottom:214.894667pt;}
.y1ba{bottom:216.634667pt;}
.y1eb{bottom:218.374667pt;}
.y1a8{bottom:218.632000pt;}
.yef{bottom:219.224000pt;}
.y149{bottom:219.813333pt;}
.y17a{bottom:220.070667pt;}
.y9e{bottom:220.114667pt;}
.y266{bottom:221.597333pt;}
.y237{bottom:221.896000pt;}
.ye{bottom:224.293333pt;}
.y38{bottom:227.582667pt;}
.y121{bottom:228.089333pt;}
.y298{bottom:230.369333pt;}
.y6d{bottom:233.464000pt;}
.y1b9{bottom:235.205333pt;}
.yce{bottom:235.461333pt;}
.y148{bottom:235.753333pt;}
.y1ea{bottom:236.945333pt;}
.y1a7{bottom:237.201333pt;}
.yee{bottom:237.794667pt;}
.y265{bottom:238.620000pt;}
.y179{bottom:238.641333pt;}
.y9d{bottom:238.685333pt;}
.y236{bottom:239.228000pt;}
.yd{bottom:240.193333pt;}
.y120{bottom:244.029333pt;}
.y37{bottom:246.153333pt;}
.y297{bottom:247.392000pt;}
.y147{bottom:251.694667pt;}
.y6c{bottom:252.034667pt;}
.y1b8{bottom:253.774667pt;}
.ycd{bottom:254.032000pt;}
.y9c{bottom:254.828000pt;}
.y1e9{bottom:255.514667pt;}
.y264{bottom:255.642667pt;}
.y1a6{bottom:255.772000pt;}
.yc{bottom:256.093333pt;}
.yed{bottom:256.365333pt;}
.y178{bottom:257.210667pt;}
.y9a{bottom:257.254667pt;}
.y209{bottom:258.305861pt;}
.y11f{bottom:259.969333pt;}
.y9b{bottom:262.077333pt;}
.y296{bottom:264.414667pt;}
.y235{bottom:264.530667pt;}
.y36{bottom:264.724000pt;}
.y146{bottom:267.634667pt;}
.y6b{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.y1b7{bottom:272.345333pt;}
.ycc{bottom:272.602667pt;}
.y263{bottom:272.665333pt;}
.y1e8{bottom:274.085333pt;}
.y1a5{bottom:274.342667pt;}
.y177{bottom:275.781333pt;}
.y99{bottom:275.825333pt;}
.y208{bottom:276.945957pt;}
.yec{bottom:278.920000pt;}
.y295{bottom:281.437333pt;}
.y11e{bottom:282.312000pt;}
.y234{bottom:282.328000pt;}
.y35{bottom:283.293333pt;}
.y145{bottom:283.574667pt;}
.ya{bottom:287.894667pt;}
.y6a{bottom:289.176000pt;}
.y262{bottom:289.688000pt;}
.y1b6{bottom:290.916000pt;}
.ycb{bottom:291.172000pt;}
.y1e7{bottom:292.656000pt;}
.y1a4{bottom:292.912000pt;}
.y176{bottom:294.352000pt;}
.y97{bottom:294.396000pt;}
.y207{bottom:295.665989pt;}
.y294{bottom:298.460000pt;}
.y98{bottom:299.217333pt;}
.y144{bottom:299.514667pt;}
.y233{bottom:300.124000pt;}
.y34{bottom:301.864000pt;}
.y9{bottom:303.794667pt;}
.y261{bottom:306.710667pt;}
.y69{bottom:307.745333pt;}
.y1b5{bottom:309.485333pt;}
.yc9{bottom:309.742667pt;}
.yeb{bottom:310.336000pt;}
.y1e6{bottom:311.225333pt;}
.y11d{bottom:311.348000pt;}
.y1a3{bottom:311.482667pt;}
.y175{bottom:312.921333pt;}
.y95{bottom:312.965333pt;}
.y206{bottom:314.305861pt;}
.yca{bottom:314.564000pt;}
.y143{bottom:315.454667pt;}
.y293{bottom:315.482667pt;}
.y96{bottom:317.788000pt;}
.y8{bottom:319.696000pt;}
.y33{bottom:320.434667pt;}
.y260{bottom:323.733333pt;}
.yc8{bottom:325.886667pt;}
.y68{bottom:326.316000pt;}
.y1b4{bottom:328.056000pt;}
.y2a2{bottom:328.301333pt;}
.yc7{bottom:328.313333pt;}
.yea{bottom:328.905333pt;}
.y94{bottom:329.109333pt;}
.y1e5{bottom:329.796000pt;}
.y1a2{bottom:330.053333pt;}
.y142{bottom:331.396000pt;}
.y174{bottom:331.492000pt;}
.y93{bottom:331.536000pt;}
.y292{bottom:332.506667pt;}
.y205{bottom:332.947005pt;}
.y232{bottom:333.860000pt;}
.y7{bottom:335.596000pt;}
.y32{bottom:339.004000pt;}
.y25f{bottom:340.756000pt;}
.y11c{bottom:344.329333pt;}
.y67{bottom:344.886667pt;}
.y2a1{bottom:345.324000pt;}
.y1b3{bottom:346.626667pt;}
.yc6{bottom:346.882667pt;}
.y141{bottom:347.336000pt;}
.ye9{bottom:347.476000pt;}
.y1e4{bottom:348.366667pt;}
.y1a1{bottom:348.622667pt;}
.y291{bottom:349.529333pt;}
.y173{bottom:350.062667pt;}
.y92{bottom:350.106667pt;}
.y6{bottom:351.496000pt;}
.y204{bottom:351.667037pt;}
.y231{bottom:352.430667pt;}
.y25e{bottom:357.778667pt;}
.y31{bottom:361.560000pt;}
.y2a0{bottom:362.346667pt;}
.y11b{bottom:362.900000pt;}
.y140{bottom:363.276000pt;}
.y66{bottom:363.456000pt;}
.y1b2{bottom:365.196000pt;}
.yc5{bottom:365.453333pt;}
.ye8{bottom:366.046667pt;}
.y290{bottom:366.552000pt;}
.y1e3{bottom:366.936000pt;}
.y1a0{bottom:367.193333pt;}
.y172{bottom:368.632000pt;}
.y91{bottom:368.676000pt;}
.y203{bottom:370.306909pt;}
.y230{bottom:371.001333pt;}
.y5{bottom:372.710667pt;}
.y25d{bottom:374.801333pt;}
.y13f{bottom:379.216000pt;}
.y11a{bottom:381.469333pt;}
.y65{bottom:382.026667pt;}
.y28f{bottom:383.574667pt;}
.y1b1{bottom:383.766667pt;}
.yc4{bottom:384.024000pt;}
.ye7{bottom:384.617333pt;}
.y19f{bottom:385.764000pt;}
.y171{bottom:387.202667pt;}
.y90{bottom:387.246667pt;}
.y4{bottom:388.610667pt;}
.y202{bottom:388.946781pt;}
.y1e2{bottom:389.492000pt;}
.y22f{bottom:389.572000pt;}
.y25c{bottom:391.824000pt;}
.y13e{bottom:395.156000pt;}
.y119{bottom:400.040000pt;}
.y64{bottom:400.597333pt;}
.y1b0{bottom:402.337333pt;}
.yc3{bottom:402.593333pt;}
.ye6{bottom:403.186667pt;}
.y19e{bottom:404.333333pt;}
.y3{bottom:404.510667pt;}
.y170{bottom:405.773333pt;}
.y201{bottom:407.666813pt;}
.y22e{bottom:408.141333pt;}
.y25b{bottom:408.848000pt;}
.y8f{bottom:409.802667pt;}
.y13d{bottom:411.096000pt;}
.y28e{bottom:417.620000pt;}
.y118{bottom:418.610667pt;}
.y63{bottom:419.166667pt;}
.y2{bottom:420.412000pt;}
.y1af{bottom:420.906667pt;}
.yc1{bottom:421.164000pt;}
.ye5{bottom:421.757333pt;}
.y1dc{bottom:421.918667pt;}
.y19d{bottom:422.904000pt;}
.y16f{bottom:424.342667pt;}
.y25a{bottom:425.870667pt;}
.yc2{bottom:425.986667pt;}
.y200{bottom:426.306685pt;}
.y22d{bottom:426.712000pt;}
.y13c{bottom:427.037333pt;}
.y30{bottom:431.970667pt;}
.y1db{bottom:434.538667pt;}
.y28d{bottom:434.642667pt;}
.y117{bottom:437.180000pt;}
.y62{bottom:437.737333pt;}
.y1ae{bottom:439.477333pt;}
.yc0{bottom:439.734667pt;}
.ye4{bottom:440.328000pt;}
.y8e{bottom:441.217333pt;}
.y1{bottom:441.625333pt;}
.y259{bottom:442.893333pt;}
.y16e{bottom:442.913333pt;}
.y13b{bottom:442.977333pt;}
.y1ff{bottom:444.946557pt;}
.y22c{bottom:445.282667pt;}
.y2f{bottom:450.540000pt;}
.y28c{bottom:451.665333pt;}
.y1da{bottom:451.686667pt;}
.y116{bottom:455.750667pt;}
.y61{bottom:456.308000pt;}
.y1ad{bottom:458.048000pt;}
.ybf{bottom:458.305333pt;}
.y13a{bottom:458.917333pt;}
.y19c{bottom:459.150667pt;}
.y8d{bottom:459.788000pt;}
.y258{bottom:459.916000pt;}
.y16d{bottom:461.484000pt;}
.ye3{bottom:462.882667pt;}
.y1fe{bottom:463.666589pt;}
.y22b{bottom:463.852000pt;}
.y1d9{bottom:467.626667pt;}
.y28b{bottom:468.688000pt;}
.y19b{bottom:471.770667pt;}
.y60{bottom:474.877333pt;}
.y1ac{bottom:476.617333pt;}
.y257{bottom:476.938667pt;}
.y115{bottom:478.306667pt;}
.y8c{bottom:478.357333pt;}
.y16c{bottom:480.054667pt;}
.ybe{bottom:480.860000pt;}
.y139{bottom:481.260000pt;}
.y1fd{bottom:482.306461pt;}
.ye2{bottom:482.342667pt;}
.y22a{bottom:482.422667pt;}
.y1d8{bottom:483.566667pt;}
.y19a{bottom:484.389333pt;}
.y2e{bottom:485.050667pt;}
.y28a{bottom:485.710667pt;}
.y5f{bottom:493.448000pt;}
.y256{bottom:493.961333pt;}
.y1ab{bottom:495.188000pt;}
.y8b{bottom:496.928000pt;}
.y199{bottom:497.009333pt;}
.y16b{bottom:498.624000pt;}
.y1d7{bottom:499.508000pt;}
.y114{bottom:500.022667pt;}
.y1fc{bottom:500.946333pt;}
.y229{bottom:500.993333pt;}
.y289{bottom:502.733333pt;}
.y138{bottom:503.601333pt;}
.y2d{bottom:503.621333pt;}
.y198{bottom:509.628000pt;}
.y255{bottom:510.984000pt;}
.y1e1{bottom:511.024000pt;}
.y5e{bottom:512.018667pt;}
.ybd{bottom:512.276000pt;}
.ye1{bottom:513.758667pt;}
.y1d6{bottom:515.448000pt;}
.y89{bottom:515.498667pt;}
.y228{bottom:519.562667pt;}
.y1fb{bottom:519.666365pt;}
.y288{bottom:519.756000pt;}
.y8a{bottom:520.320000pt;}
.y16a{bottom:521.180000pt;}
.y2c{bottom:522.192000pt;}
.y254{bottom:528.006667pt;}
.y197{bottom:529.433333pt;}
.y5d{bottom:530.589333pt;}
.ybc{bottom:530.845333pt;}
.y1d5{bottom:531.388000pt;}
.ye0{bottom:532.329333pt;}
.y137{bottom:532.637333pt;}
.y87{bottom:534.069333pt;}
.y113{bottom:534.533333pt;}
.y287{bottom:536.778667pt;}
.y227{bottom:538.133333pt;}
.y88{bottom:538.890667pt;}
.y2b{bottom:540.761333pt;}
.y1fa{bottom:542.306221pt;}
.y253{bottom:545.029333pt;}
.y196{bottom:545.373333pt;}
.y5c{bottom:549.158667pt;}
.ybb{bottom:549.416000pt;}
.ydf{bottom:550.898667pt;}
.y169{bottom:552.594667pt;}
.y86{bottom:552.638667pt;}
.y112{bottom:553.104000pt;}
.y1d4{bottom:553.730667pt;}
.y286{bottom:553.801333pt;}
.y226{bottom:556.704000pt;}
.y2a{bottom:559.332000pt;}
.y195{bottom:561.313333pt;}
.y252{bottom:562.052000pt;}
.y5b{bottom:567.729333pt;}
.yba{bottom:567.986667pt;}
.yde{bottom:569.469333pt;}
.y285{bottom:570.824000pt;}
.y168{bottom:571.165333pt;}
.y85{bottom:571.209333pt;}
.y111{bottom:571.674667pt;}
.y136{bottom:572.840000pt;}
.y225{bottom:575.273333pt;}
.y1f9{bottom:576.946029pt;}
.y194{bottom:577.253333pt;}
.y29{bottom:577.902667pt;}
.y251{bottom:579.074667pt;}
.y1d3{bottom:582.766667pt;}
.y135{bottom:585.460000pt;}
.y5a{bottom:586.300000pt;}
.yb9{bottom:586.556000pt;}
.y284{bottom:587.846667pt;}
.ydd{bottom:588.040000pt;}
.y167{bottom:589.736000pt;}
.y84{bottom:589.780000pt;}
.y110{bottom:590.244000pt;}
.y193{bottom:593.194667pt;}
.y224{bottom:593.844000pt;}
.y1f8{bottom:595.666061pt;}
.y250{bottom:596.097333pt;}
.y28{bottom:596.472000pt;}
.y1d2{bottom:599.862667pt;}
.y134{bottom:604.268000pt;}
.y59{bottom:604.869333pt;}
.ydc{bottom:606.609333pt;}
.y166{bottom:608.305333pt;}
.y83{bottom:608.349333pt;}
.y10f{bottom:608.814667pt;}
.y192{bottom:609.134667pt;}
.y223{bottom:612.414667pt;}
.y24f{bottom:613.120000pt;}
.y27{bottom:615.042667pt;}
.y133{bottom:616.888000pt;}
.yb8{bottom:620.601333pt;}
.y283{bottom:621.892000pt;}
.y58{bottom:623.440000pt;}
.y191{bottom:625.074667pt;}
.ydb{bottom:625.180000pt;}
.y165{bottom:626.876000pt;}
.y81{bottom:626.920000pt;}
.y1aa{bottom:629.165333pt;}
.y132{bottom:629.506667pt;}
.y222{bottom:630.985333pt;}
.y10e{bottom:631.369333pt;}
.y1d1{bottom:631.492000pt;}
.y82{bottom:631.741333pt;}
.y26{bottom:633.613333pt;}
.y24e{bottom:634.128000pt;}
.y282{bottom:638.914667pt;}
.y190{bottom:641.014667pt;}
.y1e0{bottom:641.016000pt;}
.y57{bottom:642.010667pt;}
.y131{bottom:642.126667pt;}
.yda{bottom:643.750667pt;}
.y164{bottom:645.446667pt;}
.y80{bottom:645.490667pt;}
.y1f6{bottom:645.585853pt;}
.y221{bottom:649.554667pt;}
.y1d0{bottom:650.062667pt;}
.y25{bottom:652.182667pt;}
.y1f5{bottom:654.145733pt;}
.yb7{bottom:654.648000pt;}
.y130{bottom:654.745333pt;}
.y281{bottom:655.937333pt;}
.y18f{bottom:656.954667pt;}
.y56{bottom:660.580000pt;}
.yd9{bottom:662.320000pt;}
.y10d{bottom:662.785333pt;}
.y163{bottom:664.016000pt;}
.y7f{bottom:664.060000pt;}
.y12f{bottom:667.365333pt;}
.y1cf{bottom:668.632000pt;}
.y24d{bottom:669.596000pt;}
.y24{bottom:670.753333pt;}
.y220{bottom:672.110667pt;}
.y18e{bottom:672.894667pt;}
.y280{bottom:672.961333pt;}
.yb6{bottom:673.217333pt;}
.y55{bottom:679.150667pt;}
.yd8{bottom:680.890667pt;}
.y162{bottom:682.586667pt;}
.y12e{bottom:686.386667pt;}
.y7e{bottom:686.616000pt;}
.y24c{bottom:686.928000pt;}
.y1ce{bottom:687.202667pt;}
.y18d{bottom:688.836000pt;}
.y23{bottom:689.324000pt;}
.y27f{bottom:689.984000pt;}
.y10c{bottom:690.641333pt;}
.yb5{bottom:691.788000pt;}
.y12d{bottom:692.696000pt;}
.y54{bottom:697.721333pt;}
.yd7{bottom:699.461333pt;}
.y161{bottom:701.157333pt;}
.y21f{bottom:703.780000pt;}
.y24b{bottom:704.260000pt;}
.y18c{bottom:704.776000pt;}
.y1cd{bottom:705.773333pt;}
.y27e{bottom:707.006667pt;}
.y22{bottom:707.894667pt;}
.yb4{bottom:710.358667pt;}
.y1df{bottom:715.297333pt;}
.y53{bottom:716.290667pt;}
.y12c{bottom:718.028000pt;}
.y7d{bottom:718.030667pt;}
.y10b{bottom:718.496000pt;}
.y160{bottom:719.726667pt;}
.y18b{bottom:720.716000pt;}
.y21e{bottom:720.874667pt;}
.y24a{bottom:721.592000pt;}
.y27d{bottom:724.029333pt;}
.y21{bottom:726.464000pt;}
.y1cc{bottom:728.328000pt;}
.y12b{bottom:730.646667pt;}
.yb3{bottom:732.913333pt;}
.y52{bottom:734.861333pt;}
.y7c{bottom:736.601333pt;}
.y18a{bottom:736.656000pt;}
.y21d{bottom:737.970667pt;}
.y15f{bottom:738.297333pt;}
.y249{bottom:738.924000pt;}
.y27c{bottom:741.052000pt;}
.y20{bottom:745.034667pt;}
.y10a{bottom:752.541333pt;}
.y189{bottom:752.596000pt;}
.y51{bottom:753.432000pt;}
.y21c{bottom:755.066667pt;}
.y7b{bottom:755.172000pt;}
.y248{bottom:756.256000pt;}
.y15e{bottom:756.868000pt;}
.y27b{bottom:758.074667pt;}
.y12a{bottom:760.014667pt;}
.y1cb{bottom:761.388000pt;}
.y1f{bottom:763.605333pt;}
.yb2{bottom:767.274667pt;}
.y188{bottom:768.536000pt;}
.y50{bottom:772.002667pt;}
.y21b{bottom:772.162667pt;}
.y247{bottom:773.588000pt;}
.y7a{bottom:773.742667pt;}
.y1ca{bottom:774.008000pt;}
.y129{bottom:774.496000pt;}
.y27a{bottom:775.097333pt;}
.y15d{bottom:775.438667pt;}
.y128{bottom:777.110667pt;}
.yb1{bottom:784.024000pt;}
.y187{bottom:784.477333pt;}
.y109{bottom:786.586667pt;}
.y4f{bottom:790.572000pt;}
.y246{bottom:790.921333pt;}
.y279{bottom:792.120000pt;}
.y79{bottom:792.312000pt;}
.y1c9{bottom:793.813333pt;}
.y127{bottom:794.206667pt;}
.y1f4{bottom:794.757333pt;}
.yb0{bottom:798.636000pt;}
.y1e{bottom:799.178667pt;}
.y186{bottom:800.417333pt;}
.y108{bottom:802.422667pt;}
.y107{bottom:805.157333pt;}
.y4d{bottom:809.142667pt;}
.y1c8{bottom:809.753333pt;}
.y78{bottom:810.882667pt;}
.y15c{bottom:812.945333pt;}
.yaf{bottom:813.248000pt;}
.y1d{bottom:813.524000pt;}
.y4e{bottom:813.964000pt;}
.y185{bottom:816.357333pt;}
.y105{bottom:820.993333pt;}
.y245{bottom:821.713333pt;}
.y104{bottom:823.728000pt;}
.y15b{bottom:825.564000pt;}
.y1c7{bottom:825.693333pt;}
.y278{bottom:826.165333pt;}
.y4c{bottom:827.713333pt;}
.yae{bottom:827.860000pt;}
.y1c{bottom:827.870667pt;}
.y106{bottom:828.549333pt;}
.y77{bottom:829.453333pt;}
.y184{bottom:832.297333pt;}
.y1c6{bottom:841.633333pt;}
.y103{bottom:842.297333pt;}
.y15a{bottom:842.314667pt;}
.yad{bottom:842.472000pt;}
.y244{bottom:843.030667pt;}
.y277{bottom:843.188000pt;}
.y1de{bottom:845.288000pt;}
.y4b{bottom:846.282667pt;}
.y76{bottom:848.022667pt;}
.y183{bottom:854.640000pt;}
.y159{bottom:856.926667pt;}
.yac{bottom:857.084000pt;}
.y1c5{bottom:857.573333pt;}
.y102{bottom:858.133333pt;}
.y276{bottom:860.210667pt;}
.y101{bottom:860.868000pt;}
.y4a{bottom:864.853333pt;}
.y75{bottom:866.593333pt;}
.y1dd{bottom:870.578667pt;}
.y1b{bottom:871.440000pt;}
.y158{bottom:871.538667pt;}
.y1c4{bottom:873.514667pt;}
.y275{bottom:877.233333pt;}
.y243{bottom:877.541333pt;}
.yaa{bottom:878.097333pt;}
.y100{bottom:879.438667pt;}
.yab{bottom:882.437333pt;}
.y49{bottom:883.424000pt;}
.y157{bottom:886.150667pt;}
.y182{bottom:886.332000pt;}
.y74{bottom:889.148000pt;}
.y1a{bottom:890.010667pt;}
.y274{bottom:894.256000pt;}
.y1c3{bottom:895.856000pt;}
.yff{bottom:898.009333pt;}
.y156{bottom:900.762667pt;}
.y48{bottom:901.993333pt;}
.y242{bottom:902.844000pt;}
.y181{bottom:903.428000pt;}
.ya9{bottom:906.204000pt;}
.y273{bottom:911.278667pt;}
.y155{bottom:915.373333pt;}
.yfd{bottom:916.578667pt;}
.y241{bottom:920.176000pt;}
.y47{bottom:920.564000pt;}
.yfe{bottom:921.401333pt;}
.y19{bottom:924.521333pt;}
.y1c2{bottom:927.549333pt;}
.y272{bottom:928.301333pt;}
.y154{bottom:929.985333pt;}
.yfc{bottom:935.149333pt;}
.y46{bottom:939.134667pt;}
.y153{bottom:944.597333pt;}
.y1c1{bottom:944.645333pt;}
.y271{bottom:945.324000pt;}
.y240{bottom:945.478667pt;}
.yfb{bottom:950.985333pt;}
.y18{bottom:952.377333pt;}
.yfa{bottom:953.720000pt;}
.y45{bottom:957.704000pt;}
.y270{bottom:962.346667pt;}
.y23f{bottom:962.810667pt;}
.y152{bottom:965.612000pt;}
.yf9{bottom:972.289333pt;}
.y44{bottom:976.274667pt;}
.y26f{bottom:979.369333pt;}
.y17{bottom:980.232000pt;}
.ya8{bottom:981.097333pt;}
.y151{bottom:986.625333pt;}
.y23e{bottom:988.113333pt;}
.yf7{bottom:990.860000pt;}
.y43{bottom:994.845333pt;}
.yf8{bottom:995.681333pt;}
.y26e{bottom:996.392000pt;}
.ya7{bottom:1010.989333pt;}
.y42{bottom:1013.414667pt;}
.y150{bottom:1014.732000pt;}
.y41{bottom:1066.841333pt;}
.h18{height:22.284493pt;}
.ha{height:24.760382pt;}
.hf{height:25.811318pt;}
.h9{height:28.023859pt;}
.h16{height:29.499005pt;}
.h14{height:30.732706pt;}
.h2{height:33.771789pt;}
.he{height:34.574438pt;}
.h17{height:35.052646pt;}
.hc{height:36.666735pt;}
.hb{height:36.873667pt;}
.h10{height:37.193707pt;}
.h5{height:38.415786pt;}
.h6{height:38.596538pt;}
.h1c{height:38.775312pt;}
.h3{height:38.947124pt;}
.h1a{height:39.588281pt;}
.hd{height:43.421286pt;}
.h1e{height:44.648438pt;}
.h8{height:46.099251pt;}
.h1f{height:47.125000pt;}
.h7{height:48.245551pt;}
.h1b{height:49.708594pt;}
.h13{height:55.957402pt;}
.h15{height:55.970039pt;}
.h12{height:58.608068pt;}
.h11{height:58.613402pt;}
.h4{height:69.148877pt;}
.h1d{height:75.306354pt;}
.h19{height:231.942667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:613.140667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xe2{left:-36.788667pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.xa8{left:55.592000pt;}
.xe5{left:76.309333pt;}
.xa9{left:80.652000pt;}
.xa4{left:84.196000pt;}
.xe1{left:90.091333pt;}
.xa3{left:94.674667pt;}
.xb5{left:105.142667pt;}
.xc1{left:107.264000pt;}
.xb6{left:116.345333pt;}
.xe3{left:137.051653pt;}
.xc0{left:144.338667pt;}
.xc2{left:146.545333pt;}
.xd0{left:155.264000pt;}
.xe4{left:157.290789pt;}
.xc3{left:160.789333pt;}
.xa5{left:164.534667pt;}
.xa6{left:188.710667pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.x4{left:225.785333pt;}
.x4d{left:229.828000pt;}
.x8a{left:231.169333pt;}
.x86{left:234.350667pt;}
.x55{left:236.297333pt;}
.x56{left:237.612000pt;}
.x94{left:241.178667pt;}
.x76{left:243.962667pt;}
.xba{left:245.369333pt;}
.x6b{left:247.414667pt;}
.x6{left:250.204000pt;}
.xb8{left:254.090667pt;}
.xb9{left:256.036000pt;}
.x5b{left:257.384000pt;}
.x8b{left:259.189333pt;}
.x3f{left:263.357333pt;}
.xc5{left:265.586667pt;}
.x5c{left:270.668000pt;}
.xb1{left:272.945333pt;}
.xd{left:273.876000pt;}
.x4e{left:275.874667pt;}
.x9e{left:276.877333pt;}
.x40{left:278.062667pt;}
.xbb{left:279.528000pt;}
.xe{left:280.518667pt;}
.xbc{left:281.466667pt;}
.x2b{left:282.386667pt;}
.xbe{left:283.652000pt;}
.x11{left:284.722667pt;}
.xbd{left:286.089333pt;}
.xbf{left:287.464000pt;}
.x8c{left:288.876000pt;}
.x12{left:291.365333pt;}
.x71{left:293.692000pt;}
.xdf{left:294.684000pt;}
.x2c{left:295.670667pt;}
.x9f{left:297.536000pt;}
.x41{left:302.796000pt;}
.xd1{left:304.013333pt;}
.x8d{left:306.760000pt;}
.x80{left:307.753333pt;}
.x42{left:308.846667pt;}
.x3b{left:311.537333pt;}
.x43{left:314.486667pt;}
.x8e{left:315.780000pt;}
.xd2{left:317.296000pt;}
.x5{left:318.422667pt;}
.x79{left:321.630667pt;}
.x38{left:324.737333pt;}
.x15{left:327.244000pt;}
.x7a{left:329.836000pt;}
.x6f{left:332.297333pt;}
.x16{left:333.886667pt;}
.xc7{left:335.370667pt;}
.x95{left:338.809333pt;}
.xf{left:339.905333pt;}
.x8f{left:340.998667pt;}
.x6d{left:343.988000pt;}
.xd7{left:344.948000pt;}
.x10{left:346.546667pt;}
.x96{left:347.954667pt;}
.x6e{left:352.192000pt;}
.xda{left:353.813333pt;}
.xa7{left:355.304000pt;}
.x66{left:357.410667pt;}
.x46{left:358.858667pt;}
.x70{left:361.325333pt;}
.x47{left:364.908000pt;}
.x90{left:366.414667pt;}
.xcb{left:368.412000pt;}
.xb{left:372.601333pt;}
.x58{left:373.493333pt;}
.xc{left:379.242667pt;}
.xde{left:380.797333pt;}
.xcc{left:381.694667pt;}
.x61{left:382.777333pt;}
.x9c{left:383.732000pt;}
.x3e{left:384.993333pt;}
.x7d{left:389.093333pt;}
.x4f{left:390.068000pt;}
.x57{left:391.573333pt;}
.x7e{left:396.180000pt;}
.x2f{left:404.681333pt;}
.xb7{left:405.950667pt;}
.x7f{left:409.610667pt;}
.x19{left:411.657333pt;}
.x91{left:414.450667pt;}
.xaa{left:415.364000pt;}
.x1d{left:416.462667pt;}
.x30{left:417.965333pt;}
.x92{left:418.917333pt;}
.x1a{left:424.940000pt;}
.x1e{left:429.745333pt;}
.x48{left:430.854667pt;}
.x45{left:433.638667pt;}
.x93{left:435.796000pt;}
.xe0{left:437.270667pt;}
.x13{left:439.433333pt;}
.xab{left:441.392000pt;}
.x23{left:442.384000pt;}
.x14{left:446.074667pt;}
.x97{left:450.948000pt;}
.xac{left:452.596000pt;}
.xc6{left:455.852000pt;}
.x24{left:458.924000pt;}
.x2d{left:461.828000pt;}
.xd4{left:464.598667pt;}
.x7b{left:468.410667pt;}
.x74{left:470.202667pt;}
.x2e{left:475.112000pt;}
.x7c{left:476.616000pt;}
.x75{left:478.406667pt;}
.xd5{left:480.272000pt;}
.x37{left:482.642667pt;}
.xc8{left:488.189333pt;}
.x67{left:490.670667pt;}
.x9d{left:492.094667pt;}
.xd6{left:493.554667pt;}
.x68{left:496.720000pt;}
.x39{left:498.308000pt;}
.x77{left:500.126667pt;}
.xad{left:501.144000pt;}
.x82{left:502.488000pt;}
.x3a{left:504.357333pt;}
.xc9{left:508.246667pt;}
.x17{left:510.500000pt;}
.x78{left:513.409333pt;}
.xce{left:515.590667pt;}
.x18{left:517.141333pt;}
.xca{left:521.530667pt;}
.x64{left:526.300000pt;}
.xcf{left:528.874667pt;}
.x65{left:532.349333pt;}
.xb2{left:536.838667pt;}
.xd3{left:551.044000pt;}
.x5d{left:553.897333pt;}
.x83{left:555.808000pt;}
.x50{left:557.966667pt;}
.x72{left:563.164000pt;}
.x5e{left:567.910667pt;}
.x29{left:569.533333pt;}
.x73{left:571.369333pt;}
.x51{left:572.868000pt;}
.x52{left:578.492000pt;}
.x9{left:582.164000pt;}
.xb3{left:583.849333pt;}
.x2a{left:586.092000pt;}
.xa{left:588.806667pt;}
.x5f{left:590.530667pt;}
.x1f{left:592.157333pt;}
.xdc{left:595.408000pt;}
.x60{left:596.580000pt;}
.x21{left:599.041333pt;}
.x25{left:603.617333pt;}
.x20{left:605.440000pt;}
.x53{left:607.009333pt;}
.x59{left:608.153333pt;}
.x26{left:610.258667pt;}
.x22{left:612.324000pt;}
.x49{left:613.584000pt;}
.x84{left:616.413333pt;}
.xcd{left:619.884000pt;}
.xb4{left:621.081333pt;}
.x5a{left:623.092000pt;}
.xa0{left:624.716000pt;}
.x4a{left:627.824000pt;}
.x85{left:629.696000pt;}
.xd9{left:631.840000pt;}
.x31{left:635.148000pt;}
.xc4{left:643.366667pt;}
.xdd{left:646.309333pt;}
.x32{left:648.432000pt;}
.xa1{left:649.766667pt;}
.x4b{left:651.001333pt;}
.x87{left:652.296000pt;}
.x4c{left:657.052000pt;}
.xa2{left:660.222667pt;}
.x88{left:661.441333pt;}
.x33{left:665.928000pt;}
.xae{left:668.093333pt;}
.x54{left:669.236000pt;}
.xdb{left:674.013333pt;}
.x89{left:674.990667pt;}
.x34{left:679.210667pt;}
.x7{left:681.909333pt;}
.x1b{left:685.418667pt;}
.x69{left:686.453333pt;}
.x8{left:688.552000pt;}
.x44{left:690.546667pt;}
.x1c{left:691.468000pt;}
.xaf{left:694.238667pt;}
.x81{left:698.652000pt;}
.xd8{left:700.430667pt;}
.x62{left:704.170667pt;}
.xb0{left:705.561333pt;}
.x3c{left:706.742667pt;}
.x98{left:708.528000pt;}
.x63{left:709.882667pt;}
.x3d{left:712.454667pt;}
.x35{left:713.472000pt;}
.x99{left:717.673333pt;}
.x36{left:721.676000pt;}
.x6c{left:723.172000pt;}
.x27{left:726.920000pt;}
.x9a{left:731.222667pt;}
.x28{left:740.204000pt;}
.x9b{left:742.517333pt;}
.x6a{left:744.037333pt;}
}




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