
    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_2783c07f3a84e5d706da691e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a1f9733917b375c48b34c0db.woff2')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_333b77dda6740126ffd44faf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_649242cf7a3b8b57fab4f384.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.858398;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bf2b626ad90ee51fa24ed91e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_aac10ca4566772d1ebef7667.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.770000;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_ab0abc17c91b9d84e155ad1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_79ee11a0beb2c3ae6386cdc1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.142000;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_08e7675f0aef27e7c8f694ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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_aef7e2222718edb2abb1cdb0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.753000;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_0863aa08ade312326b1fcc7b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9d3a0a25933c0ef9d343a009.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.965820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_77be3639fb219951560a357d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8798a4d6db2640031b619638.woff2')format("woff");}.fff{font-family:fff;line-height:0.858887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_48e425f60f3196338a636b92.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_013503f3c093625045c5d5d9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.673828;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7ab16791cc64e44cb0f10f2b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.951172;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;}
.m29{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1{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);}
.m1c{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);}
.m25{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);}
.m14{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);}
.m12{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);}
.m9{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);}
.m3{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);}
.m26{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);}
.m21{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);}
.m1d{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);}
.m5{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);}
.m17{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);}
.m1e{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);}
.me{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);}
.m1b{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);}
.m24{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);}
.m8{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);}
.m23{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);}
.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);}
.m1f{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);}
.m19{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);}
.m2b{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);}
.m22{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);}
.m2a{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);}
.m10{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);}
.m28{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);}
.m7{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);}
.m18{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);}
.mc{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m11{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);}
.m27{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);}
.mb{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);}
.m1a{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);}
.m6{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);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.282105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282105,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.284275,0.000633,-0.000720,0.249999,0,0);-ms-transform:matrix(0.284275,0.000633,-0.000720,0.249999,0,0);-webkit-transform:matrix(0.284275,0.000633,-0.000720,0.249999,0,0);}
.m2d{transform:matrix(0.312997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312997,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v6{vertical-align:-10.464000px;}
.vb{vertical-align:-9.012000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:2.664000px;}
.v4{vertical-align:3.695626px;}
.v5{vertical-align:11.148000px;}
.vf{vertical-align:13.128000px;}
.vc{vertical-align:17.280000px;}
.v8{vertical-align:20.562000px;}
.v1{vertical-align:21.702000px;}
.vd{vertical-align:24.690000px;}
.v7{vertical-align:40.470000px;}
.v9{vertical-align:44.712000px;}
.va{vertical-align:62.616000px;}
.ls5{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.000800px;}
.ls4d{letter-spacing:0.000845px;}
.ls4e{letter-spacing:0.001555px;}
.ls4b{letter-spacing:0.002467px;}
.ls4f{letter-spacing:0.003178px;}
.ls48{letter-spacing:0.003580px;}
.ls46{letter-spacing:0.003668px;}
.ls47{letter-spacing:0.004614px;}
.ls5a{letter-spacing:0.004800px;}
.ls4a{letter-spacing:0.031500px;}
.ls42{letter-spacing:0.118494px;}
.ls3f{letter-spacing:0.297986px;}
.ls41{letter-spacing:0.303986px;}
.ls31{letter-spacing:0.445200px;}
.ls2f{letter-spacing:0.542815px;}
.ls39{letter-spacing:0.562200px;}
.ls33{letter-spacing:0.568200px;}
.ls18{letter-spacing:0.714783px;}
.ls3c{letter-spacing:0.717483px;}
.ls22{letter-spacing:0.718766px;}
.ls1e{letter-spacing:0.720783px;}
.ls3e{letter-spacing:0.723483px;}
.ls36{letter-spacing:0.741292px;}
.ls30{letter-spacing:0.747292px;}
.ls2c{letter-spacing:0.748483px;}
.ls25{letter-spacing:1.044337px;}
.ls12{letter-spacing:1.312766px;}
.ls38{letter-spacing:1.317292px;}
.ls19{letter-spacing:1.318766px;}
.ls9{letter-spacing:1.420741px;}
.ls2a{letter-spacing:1.494390px;}
.ls15{letter-spacing:1.968783px;}
.lse{letter-spacing:2.573675px;}
.lsa{letter-spacing:2.989200px;}
.ls7{letter-spacing:3.551225px;}
.ls40{letter-spacing:3.733200px;}
.ls14{letter-spacing:3.739200px;}
.ls20{letter-spacing:4.303258px;}
.ls28{letter-spacing:4.322160px;}
.ls23{letter-spacing:4.531258px;}
.ls11{letter-spacing:7.918200px;}
.lsd{letter-spacing:9.512100px;}
.ls8{letter-spacing:9.560383px;}
.ls1b{letter-spacing:9.967200px;}
.ls0{letter-spacing:10.461300px;}
.lsb{letter-spacing:10.706100px;}
.lsc{letter-spacing:10.712100px;}
.ls4{letter-spacing:11.954850px;}
.ls53{letter-spacing:13.031081px;}
.ls1d{letter-spacing:13.083483px;}
.ls17{letter-spacing:13.089483px;}
.ls56{letter-spacing:13.448400px;}
.ls57{letter-spacing:13.454400px;}
.ls58{letter-spacing:13.460580px;}
.ls5b{letter-spacing:13.499247px;}
.ls59{letter-spacing:13.654482px;}
.ls5d{letter-spacing:13.726871px;}
.ls3b{letter-spacing:14.121802px;}
.ls3a{letter-spacing:14.658422px;}
.ls4c{letter-spacing:14.764573px;}
.ls32{letter-spacing:14.943900px;}
.ls49{letter-spacing:15.063451px;}
.ls55{letter-spacing:15.183002px;}
.ls13{letter-spacing:15.355200px;}
.ls44{letter-spacing:15.687634px;}
.ls45{letter-spacing:15.688766px;}
.ls6{letter-spacing:15.900310px;}
.ls16{letter-spacing:15.925258px;}
.ls1c{letter-spacing:15.931258px;}
.ls2e{letter-spacing:17.872904px;}
.ls2d{letter-spacing:17.929200px;}
.ls5c{letter-spacing:18.003341px;}
.ls51{letter-spacing:18.166825px;}
.ls10{letter-spacing:18.700766px;}
.ls43{letter-spacing:18.813943px;}
.ls27{letter-spacing:19.863483px;}
.lsf{letter-spacing:20.341200px;}
.ls26{letter-spacing:20.930160px;}
.ls1f{letter-spacing:21.589200px;}
.ls1a{letter-spacing:21.595200px;}
.ls50{letter-spacing:25.492825px;}
.ls24{letter-spacing:33.345634px;}
.ls1{letter-spacing:62.761200px;}
.ls3{letter-spacing:62.917200px;}
.ls2{letter-spacing:64.321654px;}
.ls3d{letter-spacing:153.520200px;}
.ls29{letter-spacing:172.770337px;}
.ls35{letter-spacing:229.399200px;}
.ls34{letter-spacing:259.285200px;}
.ls52{letter-spacing:367.771010px;}
.ls37{letter-spacing:465.427200px;}
.ls21{letter-spacing:542.933674px;}
.ls2b{letter-spacing:719.826337px;}
.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;}
}
.ws63{word-spacing:-47.337600px;}
.wsa3{word-spacing:-46.472386px;}
.ws6b{word-spacing:-26.389382px;}
.wsa1{word-spacing:-20.756441px;}
.ws55{word-spacing:-19.526400px;}
.ws9{word-spacing:-14.943900px;}
.ws9a{word-spacing:-13.449600px;}
.ws9d{word-spacing:-13.178880px;}
.ws20{word-spacing:-11.955150px;}
.ws58{word-spacing:-11.441277px;}
.ws8{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.wsa2{word-spacing:-9.716236px;}
.ws67{word-spacing:-5.200477px;}
.wsc8{word-spacing:-3.287658px;}
.ws8a{word-spacing:-2.988780px;}
.ws6e{word-spacing:-2.809453px;}
.wsc6{word-spacing:-2.689902px;}
.ws4a{word-spacing:-2.570351px;}
.ws24{word-spacing:-2.510575px;}
.ws6f{word-spacing:-2.391024px;}
.ws48{word-spacing:-2.211697px;}
.ws53{word-spacing:-1.972595px;}
.ws3b{word-spacing:-1.912819px;}
.ws94{word-spacing:-1.733492px;}
.ws60{word-spacing:-1.613941px;}
.ws6a{word-spacing:-1.554166px;}
.wsf2{word-spacing:-1.506355px;}
.ws4d{word-spacing:-1.494390px;}
.ws83{word-spacing:-1.374839px;}
.wsb1{word-spacing:-1.315063px;}
.wsa9{word-spacing:-1.195512px;}
.ws5b{word-spacing:-1.165188px;}
.wsc0{word-spacing:-1.135736px;}
.ws5d{word-spacing:-1.075961px;}
.wsb2{word-spacing:-0.956410px;}
.ws65{word-spacing:-0.896634px;}
.ws66{word-spacing:-0.836858px;}
.ws74{word-spacing:-0.777083px;}
.wsbb{word-spacing:-0.717307px;}
.ws47{word-spacing:-0.597756px;}
.ws40{word-spacing:-0.537980px;}
.ws12{word-spacing:-0.358654px;}
.ws2c{word-spacing:-0.298878px;}
.wsd3{word-spacing:-0.268992px;}
.ws15{word-spacing:-0.239102px;}
.wse3{word-spacing:-0.215194px;}
.ws16{word-spacing:-0.179327px;}
.wscd{word-spacing:-0.161395px;}
.ws14{word-spacing:-0.119551px;}
.wsdd{word-spacing:-0.107597px;}
.ws5a{word-spacing:-0.101858px;}
.ws64{word-spacing:-0.062287px;}
.ws1d{word-spacing:-0.059776px;}
.wsd7{word-spacing:-0.053798px;}
.ws21{word-spacing:-0.047821px;}
.ws8d{word-spacing:-0.045430px;}
.ws5{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.wscc{word-spacing:0.053798px;}
.ws10{word-spacing:0.059776px;}
.wsf7{word-spacing:0.107597px;}
.wse{word-spacing:0.119551px;}
.ws81{word-spacing:0.135878px;}
.wsdf{word-spacing:0.161395px;}
.ws2{word-spacing:0.167371px;}
.wsf{word-spacing:0.179327px;}
.wsdb{word-spacing:0.215194px;}
.wsa7{word-spacing:0.226677px;}
.ws1e{word-spacing:0.239102px;}
.wsce{word-spacing:0.268992px;}
.ws11{word-spacing:0.298878px;}
.ws29{word-spacing:0.358654px;}
.ws39{word-spacing:0.418429px;}
.wse5{word-spacing:0.430387px;}
.ws57{word-spacing:0.432000px;}
.wsc1{word-spacing:0.478205px;}
.ws72{word-spacing:0.597756px;}
.ws56{word-spacing:0.604541px;}
.ws96{word-spacing:0.657532px;}
.ws5c{word-spacing:0.709309px;}
.ws31{word-spacing:0.717307px;}
.ws6c{word-spacing:0.749777px;}
.wsd8{word-spacing:0.753178px;}
.ws28{word-spacing:0.777083px;}
.ws2b{word-spacing:0.836858px;}
.ws78{word-spacing:0.896634px;}
.ws30{word-spacing:0.956410px;}
.ws54{word-spacing:1.016185px;}
.ws71{word-spacing:1.135736px;}
.wsa0{word-spacing:1.195512px;}
.ws84{word-spacing:1.255288px;}
.ws37{word-spacing:1.315063px;}
.wsda{word-spacing:1.344960px;}
.ws38{word-spacing:1.374839px;}
.ws42{word-spacing:1.434614px;}
.wse2{word-spacing:1.506355px;}
.ws50{word-spacing:1.613941px;}
.ws18{word-spacing:1.673717px;}
.wsc2{word-spacing:1.733492px;}
.ws45{word-spacing:1.853044px;}
.ws13{word-spacing:1.912819px;}
.ws3d{word-spacing:1.972595px;}
.ws23{word-spacing:2.032370px;}
.ws27{word-spacing:2.092146px;}
.ws70{word-spacing:2.151922px;}
.ws77{word-spacing:2.211697px;}
.wsbd{word-spacing:2.259533px;}
.ws3e{word-spacing:2.331248px;}
.ws76{word-spacing:2.391024px;}
.wsb9{word-spacing:2.450800px;}
.wsef{word-spacing:2.474726px;}
.ws6{word-spacing:2.510252px;}
.ws33{word-spacing:2.570351px;}
.wsd1{word-spacing:2.582323px;}
.wsa8{word-spacing:2.630126px;}
.ws2d{word-spacing:2.689902px;}
.wsba{word-spacing:2.809453px;}
.wsed{word-spacing:2.851315px;}
.ws3a{word-spacing:2.869229px;}
.wsb{word-spacing:2.869236px;}
.wsca{word-spacing:2.929004px;}
.ws25{word-spacing:3.048556px;}
.ws43{word-spacing:3.108331px;}
.ws85{word-spacing:3.168107px;}
.ws46{word-spacing:3.227882px;}
.wsf0{word-spacing:3.227904px;}
.ws3c{word-spacing:3.287658px;}
.ws8c{word-spacing:3.347434px;}
.ws89{word-spacing:3.407209px;}
.ws19{word-spacing:3.466985px;}
.ws100{word-spacing:3.496896px;}
.ws1a{word-spacing:3.583475px;}
.ws1c{word-spacing:3.586536px;}
.wsab{word-spacing:3.604493px;}
.ws17{word-spacing:3.646312px;}
.wsd{word-spacing:3.706087px;}
.wsff{word-spacing:3.712090px;}
.ws79{word-spacing:3.825638px;}
.ws75{word-spacing:3.885414px;}
.ws59{word-spacing:3.899045px;}
.ws82{word-spacing:3.900182px;}
.ws26{word-spacing:4.064741px;}
.ws51{word-spacing:4.124516px;}
.ws2e{word-spacing:4.184292px;}
.wsb3{word-spacing:4.244068px;}
.ws1b{word-spacing:4.303872px;}
.ws49{word-spacing:4.423394px;}
.ws2f{word-spacing:4.542946px;}
.wsa6{word-spacing:4.782048px;}
.ws97{word-spacing:4.961375px;}
.wsb8{word-spacing:5.021150px;}
.ws73{word-spacing:5.080926px;}
.ws35{word-spacing:5.140702px;}
.wsd4{word-spacing:5.164646px;}
.wsb5{word-spacing:5.200477px;}
.ws44{word-spacing:5.320028px;}
.wsf5{word-spacing:5.433638px;}
.ws22{word-spacing:5.439580px;}
.wsb6{word-spacing:5.499355px;}
.ws4e{word-spacing:5.559131px;}
.wsc7{word-spacing:5.618906px;}
.wsc9{word-spacing:5.738458px;}
.ws41{word-spacing:5.798233px;}
.ws6d{word-spacing:5.858009px;}
.wscb{word-spacing:5.917784px;}
.wsfb{word-spacing:5.971622px;}
.ws3f{word-spacing:5.977560px;}
.ws88{word-spacing:6.037336px;}
.wsb7{word-spacing:6.156887px;}
.wseb{word-spacing:6.186816px;}
.ws4b{word-spacing:6.336214px;}
.wsd0{word-spacing:6.402010px;}
.wsaa{word-spacing:6.455765px;}
.ws2a{word-spacing:6.515540px;}
.wsf8{word-spacing:6.724800px;}
.wsd2{word-spacing:7.047590px;}
.ws9c{word-spacing:7.173072px;}
.ws9b{word-spacing:7.232848px;}
.ws32{word-spacing:7.471950px;}
.ws52{word-spacing:7.531726px;}
.ws69{word-spacing:7.591501px;}
.ws68{word-spacing:7.651277px;}
.wsb4{word-spacing:7.770828px;}
.ws4f{word-spacing:8.069706px;}
.ws93{word-spacing:8.189257px;}
.ws36{word-spacing:8.249033px;}
.ws34{word-spacing:8.308808px;}
.wsbf{word-spacing:8.368584px;}
.ws9f{word-spacing:8.715341px;}
.wsf3{word-spacing:9.139296px;}
.wsfc{word-spacing:9.140813px;}
.ws99{word-spacing:9.199526px;}
.ws61{word-spacing:9.803198px;}
.wsc{word-spacing:11.146218px;}
.ws1f{word-spacing:11.910929px;}
.ws3{word-spacing:12.929425px;}
.wse4{word-spacing:13.180608px;}
.wsde{word-spacing:13.288205px;}
.wsd6{word-spacing:13.395802px;}
.wsf4{word-spacing:13.396022px;}
.wsfd{word-spacing:13.557197px;}
.wsf6{word-spacing:13.600357px;}
.wsdc{word-spacing:13.610995px;}
.wse6{word-spacing:13.826189px;}
.ws4c{word-spacing:14.884124px;}
.wscf{word-spacing:16.272940px;}
.wse7{word-spacing:16.408512px;}
.wse1{word-spacing:16.614259px;}
.wse9{word-spacing:16.615267px;}
.wsfa{word-spacing:16.618195px;}
.wsea{word-spacing:16.620067px;}
.wsd9{word-spacing:16.623706px;}
.wse8{word-spacing:16.677504px;}
.wsfe{word-spacing:16.731302px;}
.wse0{word-spacing:16.838899px;}
.wsf1{word-spacing:16.946496px;}
.ws5e{word-spacing:17.285110px;}
.ws62{word-spacing:18.000827px;}
.ws95{word-spacing:18.470660px;}
.ws9e{word-spacing:19.180685px;}
.ws8e{word-spacing:19.363932px;}
.wsec{word-spacing:19.582618px;}
.wsee{word-spacing:25.661837px;}
.wsf9{word-spacing:27.867571px;}
.ws1{word-spacing:28.455541px;}
.ws7{word-spacing:46.650245px;}
.wsbc{word-spacing:53.379611px;}
.wsa{word-spacing:61.547815px;}
.ws8b{word-spacing:115.845113px;}
.ws87{word-spacing:132.761608px;}
.ws86{word-spacing:145.182600px;}
.wsd5{word-spacing:154.401408px;}
.ws98{word-spacing:165.339310px;}
.wsc3{word-spacing:180.163658px;}
.ws7b{word-spacing:188.890896px;}
.wsbe{word-spacing:210.589439px;}
.ws7a{word-spacing:212.083829px;}
.ws80{word-spacing:213.877097px;}
.ws7c{word-spacing:265.224337px;}
.wsc4{word-spacing:280.048686px;}
.wsa4{word-spacing:298.340020px;}
.wsae{word-spacing:305.686800px;}
.wsac{word-spacing:317.408436px;}
.wsaf{word-spacing:388.780502px;}
.ws7f{word-spacing:392.606141px;}
.ws7d{word-spacing:392.734926px;}
.ws7e{word-spacing:431.349000px;}
.wsad{word-spacing:483.465053px;}
.ws92{word-spacing:504.924493px;}
.ws8f{word-spacing:505.657259px;}
.ws90{word-spacing:505.663259px;}
.ws91{word-spacing:507.574276px;}
.wsa5{word-spacing:573.785984px;}
.wsc5{word-spacing:737.212475px;}
.ws5f{word-spacing:858.317840px;}
.wsb0{word-spacing:897.847200px;}
._f{margin-left:-7.400224px;}
._2{margin-left:-6.150892px;}
._17{margin-left:-5.128751px;}
._6{margin-left:-3.921289px;}
._20{margin-left:-2.857278px;}
._3{margin-left:-1.506341px;}
._4{width:1.131316px;}
._1c{width:2.220539px;}
._5{width:3.534415px;}
._1b{width:5.110469px;}
._1d{width:7.897151px;}
._1{width:12.971268px;}
._b{width:14.824386px;}
._18{width:15.828583px;}
._12{width:17.526202px;}
._8{width:18.530436px;}
._9{width:20.096552px;}
._e{width:21.818094px;}
._7{width:23.432094px;}
._13{width:24.687323px;}
._0{width:25.942536px;}
._10{width:27.138122px;}
._16{width:28.154308px;}
._a{width:29.541097px;}
._11{width:32.338600px;}
._1f{width:33.438462px;}
._15{width:34.681799px;}
._19{width:35.745809px;}
._2d{width:37.610803px;}
._14{width:40.420256px;}
._1e{width:41.902696px;}
._1a{width:43.409036px;}
._35{width:44.818727px;}
._43{width:56.297223px;}
._42{width:61.868160px;}
._3e{width:71.713267px;}
._40{width:77.846285px;}
._41{width:79.514035px;}
._38{width:83.566289px;}
._3d{width:93.548814px;}
._37{width:98.211311px;}
._3f{width:107.758195px;}
._2f{width:153.204863px;}
._2b{width:172.691708px;}
._2c{width:180.223434px;}
._34{width:189.428876px;}
._32{width:193.732720px;}
._23{width:207.182230px;}
._33{width:210.350336px;}
._3a{width:240.417463px;}
._22{width:243.854552px;}
._21{width:252.061754px;}
._39{width:255.421139px;}
._26{width:273.652697px;}
._25{width:296.845630px;}
._3b{width:311.921032px;}
._3c{width:314.479432px;}
._24{width:337.361536px;}
._29{width:349.986138px;}
._28{width:363.196546px;}
._27{width:407.968470px;}
._2a{width:491.295619px;}
._36{width:501.696611px;}
._30{width:645.755807px;}
._31{width:668.649862px;}
._c{width:1834.562700px;}
._2e{width:2488.892700px;}
._d{width:2512.802700px;}
.fc4{color:rgb(14,15,14);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:0.480000px;}
.fs4{font-size:35.865600px;}
.fsd{font-size:37.371600px;}
.fs10{font-size:37.440000px;}
.fs0{font-size:41.842800px;}
.fs13{font-size:42.615072px;}
.fs3{font-size:45.429600px;}
.fs14{font-size:46.242907px;}
.fse{font-size:46.800000px;}
.fsc{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs11{font-size:48.000000px;}
.fs9{font-size:50.625120px;}
.fsa{font-size:53.798400px;}
.fsf{font-size:57.600000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs7{font-size:86.400000px;}
.fs12{font-size:91.842660px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y266{bottom:2.614221px;}
.y1a5{bottom:5.154786px;}
.y188{bottom:11.164725px;}
.ya3{bottom:18.260160px;}
.ya5{bottom:18.356280px;}
.ya0{bottom:18.387240px;}
.ya7{bottom:18.734617px;}
.y9a{bottom:18.743040px;}
.y1a4{bottom:20.362320px;}
.y198{bottom:28.173750px;}
.ya6{bottom:32.111280px;}
.ya2{bottom:33.360000px;}
.ya1{bottom:33.379680px;}
.ya4{bottom:33.475320px;}
.y9f{bottom:33.506280px;}
.y98{bottom:44.640000px;}
.y99{bottom:44.661600px;}
.y97{bottom:44.661840px;}
.y3e{bottom:45.921000px;}
.y267{bottom:51.990750px;}
.y1a3{bottom:55.200825px;}
.y96{bottom:70.580400px;}
.y197{bottom:72.880875px;}
.y1a7{bottom:77.320710px;}
.y1a6{bottom:82.353645px;}
.y1a8{bottom:90.459450px;}
.y189{bottom:93.157200px;}
.y187{bottom:96.621525px;}
.y1ac{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.yc7{bottom:102.783000px;}
.y1a1{bottom:104.951970px;}
.yc6{bottom:106.659000px;}
.y1ef{bottom:108.940500px;}
.y114{bottom:108.970500px;}
.y30c{bottom:109.020000px;}
.y1a0{bottom:109.091610px;}
.y94{bottom:114.490800px;}
.y284{bottom:114.985500px;}
.yc8{bottom:116.407500px;}
.y2da{bottom:117.231000px;}
.y1a2{bottom:118.090710px;}
.y14{bottom:118.147500px;}
.y1ab{bottom:120.610500px;}
.y3d{bottom:122.253000px;}
.y196{bottom:122.595000px;}
.y193{bottom:124.941815px;}
.y33d{bottom:125.112000px;}
.y186{bottom:127.478700px;}
.y91{bottom:128.088240px;}
.y30b{bottom:128.170500px;}
.y184{bottom:128.527500px;}
.y1ee{bottom:129.832500px;}
.y113{bottom:129.861000px;}
.y19e{bottom:130.881960px;}
.y8c{bottom:132.234000px;}
.y19d{bottom:135.214650px;}
.y283{bottom:135.877500px;}
.y13{bottom:136.035000px;}
.y2d9{bottom:136.731000px;}
.y70{bottom:137.298000px;}
.y93{bottom:140.409840px;}
.y1aa{bottom:141.502500px;}
.y3c{bottom:143.145000px;}
.y8f{bottom:143.280000px;}
.y8e{bottom:143.325600px;}
.y19f{bottom:144.020700px;}
.yc5{bottom:144.043500px;}
.y33c{bottom:144.262500px;}
.y30a{bottom:147.321000px;}
.y183{bottom:149.419500px;}
.y1ed{bottom:150.723000px;}
.y112{bottom:150.753000px;}
.y264{bottom:152.655000px;}
.y8b{bottom:153.126000px;}
.y12{bottom:153.924000px;}
.y90{bottom:154.006800px;}
.y1d3{bottom:154.167000px;}
.y282{bottom:156.769500px;}
.y6f{bottom:158.190000px;}
.y160{bottom:158.544000px;}
.y134{bottom:160.947000px;}
.yf1{bottom:162.303000px;}
.y33b{bottom:163.413000px;}
.y3b{bottom:164.035500px;}
.yc4{bottom:164.935500px;}
.y2d8{bottom:165.195000px;}
.y92{bottom:166.328400px;}
.y309{bottom:166.471500px;}
.y2b1{bottom:167.491500px;}
.yc3{bottom:168.454500px;}
.y182{bottom:170.310000px;}
.y1ec{bottom:171.615000px;}
.y111{bottom:171.645000px;}
.y11{bottom:171.811500px;}
.y1d2{bottom:172.101000px;}
.y263{bottom:173.547000px;}
.y8a{bottom:174.016500px;}
.y1a9{bottom:176.011500px;}
.y21c{bottom:176.556000px;}
.y281{bottom:177.660000px;}
.y6e{bottom:179.082000px;}
.y15f{bottom:179.434500px;}
.yf0{bottom:180.235500px;}
.y133{bottom:181.837500px;}
.y33a{bottom:182.563500px;}
.y2d7{bottom:184.695000px;}
.y3a{bottom:184.927500px;}
.y308{bottom:185.622000px;}
.yc2{bottom:185.826000px;}
.y2b0{bottom:188.383500px;}
.y10{bottom:189.699000px;}
.y1d1{bottom:190.033500px;}
.y181{bottom:191.202000px;}
.y1eb{bottom:192.507000px;}
.y262{bottom:194.439000px;}
.y89{bottom:194.908500px;}
.y110{bottom:197.019000px;}
.y21b{bottom:197.448000px;}
.yef{bottom:198.168000px;}
.y19c{bottom:198.441000px;}
.y280{bottom:198.552000px;}
.y6d{bottom:199.972500px;}
.y15e{bottom:200.326500px;}
.y339{bottom:201.714000px;}
.y132{bottom:202.729500px;}
.y2d6{bottom:204.193500px;}
.y307{bottom:204.774000px;}
.y39{bottom:205.819500px;}
.y194{bottom:206.421815px;}
.yc1{bottom:206.718000px;}
.yf{bottom:207.588000px;}
.y2af{bottom:209.275500px;}
.y180{bottom:212.094000px;}
.y1ea{bottom:213.399000px;}
.y261{bottom:215.329500px;}
.y1d0{bottom:215.467500px;}
.y88{bottom:215.800500px;}
.y21a{bottom:218.338500px;}
.y27f{bottom:219.444000px;}
.y6c{bottom:220.864500px;}
.y15d{bottom:221.218500px;}
.yee{bottom:223.602000px;}
.y131{bottom:223.621500px;}
.y2d5{bottom:223.692000px;}
.y306{bottom:223.924500px;}
.ye{bottom:225.475500px;}
.y38{bottom:226.710000px;}
.y171{bottom:228.069900px;}
.y2ae{bottom:230.166000px;}
.y9d{bottom:231.526560px;}
.y10f{bottom:232.362000px;}
.y17f{bottom:232.986000px;}
.y1cf{bottom:233.400000px;}
.y1e9{bottom:234.289500px;}
.y9e{bottom:235.363752px;}
.y260{bottom:236.221500px;}
.ybc{bottom:236.523000px;}
.y87{bottom:236.691000px;}
.y219{bottom:239.230500px;}
.y338{bottom:240.015000px;}
.y27e{bottom:240.334500px;}
.yed{bottom:241.534500px;}
.ybe{bottom:241.597500px;}
.y6b{bottom:241.756500px;}
.ybf{bottom:241.768500px;}
.y15c{bottom:242.110500px;}
.y305{bottom:243.075000px;}
.y130{bottom:244.512000px;}
.y9c{bottom:246.600000px;}
.y9b{bottom:246.645600px;}
.ybb{bottom:246.775500px;}
.y37{bottom:247.602000px;}
.yc0{bottom:249.028500px;}
.y2ad{bottom:251.058000px;}
.ybd{bottom:251.472000px;}
.yd{bottom:252.330000px;}
.y10e{bottom:253.252500px;}
.y17e{bottom:253.876500px;}
.y1e8{bottom:255.181500px;}
.y25f{bottom:257.113500px;}
.y86{bottom:257.583000px;}
.y337{bottom:259.165500px;}
.yec{bottom:259.467000px;}
.y218{bottom:260.122500px;}
.y2d4{bottom:261.123000px;}
.y27d{bottom:261.226500px;}
.y304{bottom:262.225500px;}
.y6a{bottom:262.647000px;}
.y15b{bottom:263.001000px;}
.y12f{bottom:265.404000px;}
.y1ce{bottom:266.065500px;}
.yc{bottom:270.217500px;}
.y2ac{bottom:271.950000px;}
.y36{bottom:272.977500px;}
.y10d{bottom:274.144500px;}
.y17d{bottom:274.768500px;}
.y1e7{bottom:276.073500px;}
.y25e{bottom:278.004000px;}
.y336{bottom:278.316000px;}
.y85{bottom:278.475000px;}
.y217{bottom:281.013000px;}
.y303{bottom:281.376000px;}
.y2d3{bottom:282.015000px;}
.y27c{bottom:282.118500px;}
.y69{bottom:283.539000px;}
.y15a{bottom:283.893000px;}
.y1cd{bottom:285.298500px;}
.y12e{bottom:286.296000px;}
.yb{bottom:288.105000px;}
.yba{bottom:290.440500px;}
.yeb{bottom:292.132500px;}
.y2ab{bottom:292.840500px;}
.y10c{bottom:295.036500px;}
.y17c{bottom:295.660500px;}
.y1e6{bottom:296.964000px;}
.y335{bottom:297.466500px;}
.y84{bottom:299.365500px;}
.y302{bottom:300.526500px;}
.y216{bottom:301.905000px;}
.y2d2{bottom:302.907000px;}
.y27b{bottom:303.010500px;}
.y25d{bottom:303.379500px;}
.y68{bottom:304.431000px;}
.ya{bottom:305.994000px;}
.y12d{bottom:307.186500px;}
.y159{bottom:309.267000px;}
.yb9{bottom:311.332500px;}
.y2aa{bottom:313.732500px;}
.y10b{bottom:315.927000px;}
.y17b{bottom:316.551000px;}
.y334{bottom:316.617000px;}
.y1e5{bottom:317.856000px;}
.y301{bottom:319.677000px;}
.y83{bottom:320.257500px;}
.y1cc{bottom:322.402500px;}
.y215{bottom:322.797000px;}
.y9{bottom:323.881500px;}
.y27a{bottom:323.901000px;}
.y67{bottom:325.323000px;}
.y12c{bottom:328.078500px;}
.y2d1{bottom:328.281000px;}
.yea{bottom:329.238000px;}
.y158{bottom:331.161000px;}
.yb8{bottom:332.224500px;}
.y2a9{bottom:334.624500px;}
.y25c{bottom:335.524500px;}
.y333{bottom:335.767500px;}
.y10a{bottom:336.819000px;}
.y17a{bottom:337.443000px;}
.y1e4{bottom:338.748000px;}
.y300{bottom:338.827500px;}
.y82{bottom:341.149500px;}
.y8{bottom:341.769000px;}
.y1cb{bottom:343.294500px;}
.y214{bottom:343.687500px;}
.y279{bottom:344.793000px;}
.y66{bottom:346.213500px;}
.y12b{bottom:348.970500px;}
.y2d0{bottom:349.173000px;}
.ye9{bottom:350.128500px;}
.y35{bottom:352.188000px;}
.yb7{bottom:353.116500px;}
.y332{bottom:354.918000px;}
.y2a8{bottom:355.516500px;}
.y109{bottom:357.711000px;}
.y2ff{bottom:357.978000px;}
.y179{bottom:358.335000px;}
.y1e3{bottom:359.638500px;}
.y7{bottom:359.658000px;}
.y81{bottom:362.041500px;}
.y1ca{bottom:364.185000px;}
.y213{bottom:364.579500px;}
.y278{bottom:365.685000px;}
.y257{bottom:365.917500px;}
.y157{bottom:366.502500px;}
.y65{bottom:367.105500px;}
.y12a{bottom:369.861000px;}
.y2cf{bottom:370.063500px;}
.ye8{bottom:371.020500px;}
.yb6{bottom:374.007000px;}
.y331{bottom:374.070000px;}
.y2a7{bottom:376.407000px;}
.y2fe{bottom:377.128500px;}
.y108{bottom:378.603000px;}
.y178{bottom:379.225500px;}
.y19b{bottom:380.262000px;}
.y1e2{bottom:380.530500px;}
.y80{bottom:382.932000px;}
.y6{bottom:383.523000px;}
.y1c9{bottom:385.077000px;}
.y212{bottom:385.471500px;}
.y277{bottom:386.575500px;}
.y156{bottom:387.394500px;}
.y64{bottom:387.997500px;}
.y255{bottom:390.667500px;}
.y129{bottom:390.753000px;}
.y2ce{bottom:390.955500px;}
.y34{bottom:391.012500px;}
.ye7{bottom:391.912500px;}
.y330{bottom:393.220500px;}
.yb5{bottom:394.899000px;}
.y2fd{bottom:396.279000px;}
.y2a6{bottom:397.299000px;}
.y107{bottom:399.493500px;}
.y177{bottom:400.117500px;}
.y19a{bottom:401.154000px;}
.y5{bottom:401.410500px;}
.y1e1{bottom:401.422500px;}
.y7f{bottom:403.824000px;}
.y1c8{bottom:405.969000px;}
.y211{bottom:406.363500px;}
.y24f{bottom:407.166000px;}
.y155{bottom:408.286500px;}
.y63{bottom:408.888000px;}
.y128{bottom:411.645000px;}
.y2cd{bottom:411.847500px;}
.y33{bottom:411.904500px;}
.y276{bottom:411.951000px;}
.y32f{bottom:412.371000px;}
.ye5{bottom:412.803000px;}
.y2fc{bottom:415.429500px;}
.yb4{bottom:415.791000px;}
.y2a5{bottom:418.191000px;}
.ye6{bottom:418.228500px;}
.y4{bottom:419.299500px;}
.y176{bottom:421.009500px;}
.y1e0{bottom:422.313000px;}
.y7e{bottom:424.716000px;}
.y1c7{bottom:426.859500px;}
.y210{bottom:427.254000px;}
.y154{bottom:429.177000px;}
.y62{bottom:429.780000px;}
.y32e{bottom:431.521500px;}
.y127{bottom:432.537000px;}
.y2cc{bottom:432.739500px;}
.y32{bottom:432.796500px;}
.ye4{bottom:433.695000px;}
.y2fb{bottom:434.580000px;}
.y106{bottom:435.121500px;}
.y199{bottom:435.663000px;}
.yb3{bottom:436.681500px;}
.y3{bottom:437.187000px;}
.y2a4{bottom:439.081500px;}
.y175{bottom:441.900000px;}
.y1df{bottom:443.205000px;}
.y7d{bottom:445.606500px;}
.y250{bottom:446.841000px;}
.y275{bottom:447.292500px;}
.y1c6{bottom:447.751500px;}
.y20f{bottom:448.146000px;}
.y153{bottom:450.069000px;}
.y61{bottom:450.672000px;}
.y126{bottom:453.427500px;}
.y2cb{bottom:453.630000px;}
.y31{bottom:453.687000px;}
.y2fa{bottom:453.730500px;}
.ye3{bottom:454.587000px;}
.yb2{bottom:457.573500px;}
.y195{bottom:458.092500px;}
.y192{bottom:458.467060px;}
.y2a3{bottom:459.973500px;}
.y2{bottom:461.052000px;}
.y174{bottom:462.792000px;}
.y1de{bottom:464.097000px;}
.y7c{bottom:466.498500px;}
.y274{bottom:468.184500px;}
.y1c5{bottom:468.643500px;}
.y20e{bottom:469.038000px;}
.y32d{bottom:469.822500px;}
.y152{bottom:470.961000px;}
.y60{bottom:471.562500px;}
.y2f9{bottom:472.881000px;}
.y124{bottom:474.319500px;}
.y2c9{bottom:474.522000px;}
.y30{bottom:474.579000px;}
.ye2{bottom:475.477500px;}
.yb1{bottom:478.465500px;}
.y1{bottom:478.941000px;}
.y125{bottom:479.743500px;}
.y2ca{bottom:479.946000px;}
.y2a2{bottom:480.865500px;}
.y1dd{bottom:484.989000px;}
.y251{bottom:486.514500px;}
.y7b{bottom:487.390500px;}
.y32c{bottom:488.973000px;}
.y273{bottom:489.076500px;}
.y1c4{bottom:489.535500px;}
.y20d{bottom:489.928500px;}
.y2f8{bottom:492.031500px;}
.y5f{bottom:492.454500px;}
.y123{bottom:495.211500px;}
.y2c8{bottom:495.414000px;}
.y2f{bottom:495.471000px;}
.y151{bottom:496.335000px;}
.ye1{bottom:496.369500px;}
.y173{bottom:498.420000px;}
.y2a1{bottom:501.756000px;}
.y1dc{bottom:505.879500px;}
.y32b{bottom:508.123500px;}
.y7a{bottom:508.281000px;}
.yb0{bottom:509.802000px;}
.y272{bottom:509.967000px;}
.y1c3{bottom:510.426000px;}
.y2f7{bottom:511.182000px;}
.y256{bottom:512.590500px;}
.y5e{bottom:513.346500px;}
.y20c{bottom:515.304000px;}
.y122{bottom:516.102000px;}
.y2c7{bottom:516.304500px;}
.y2e{bottom:516.361500px;}
.y172{bottom:517.653000px;}
.ye0{bottom:521.745000px;}
.y2a0{bottom:522.648000px;}
.y252{bottom:526.263000px;}
.y1db{bottom:526.771500px;}
.y32a{bottom:527.274000px;}
.y79{bottom:529.173000px;}
.y2f6{bottom:530.332500px;}
.y271{bottom:530.859000px;}
.y1c2{bottom:531.318000px;}
.y150{bottom:531.678000px;}
.y5d{bottom:534.237000px;}
.y2c6{bottom:537.196500px;}
.y2d{bottom:537.253500px;}
.y170{bottom:540.082500px;}
.y29f{bottom:543.540000px;}
.y329{bottom:546.424500px;}
.y1da{bottom:547.663500px;}
.y2f5{bottom:549.483000px;}
.y78{bottom:550.065000px;}
.y20b{bottom:550.645500px;}
.yaf{bottom:551.586000px;}
.y121{bottom:551.730000px;}
.y270{bottom:551.751000px;}
.y1c1{bottom:552.210000px;}
.y14f{bottom:552.568500px;}
.y5c{bottom:555.129000px;}
.ydf{bottom:557.086500px;}
.y2c5{bottom:558.088500px;}
.y2c{bottom:558.145500px;}
.y29e{bottom:564.430500px;}
.y328{bottom:565.575000px;}
.y253{bottom:565.938000px;}
.y1d9{bottom:568.554000px;}
.y2f4{bottom:568.633500px;}
.y77{bottom:570.955500px;}
.y20a{bottom:571.537500px;}
.yae{bottom:572.476500px;}
.y26f{bottom:572.643000px;}
.y1c0{bottom:573.100500px;}
.y14e{bottom:573.460500px;}
.y5b{bottom:576.021000px;}
.yde{bottom:577.978500px;}
.y2c4{bottom:578.979000px;}
.y2b{bottom:579.036000px;}
.y327{bottom:584.725500px;}
.y29d{bottom:585.322500px;}
.y11d{bottom:587.448000px;}
.y2f3{bottom:587.784000px;}
.y25b{bottom:588.057000px;}
.y1d8{bottom:589.446000px;}
.y76{bottom:591.847500px;}
.y209{bottom:592.429500px;}
.yad{bottom:593.368500px;}
.y26e{bottom:593.533500px;}
.y1bf{bottom:593.992500px;}
.y14d{bottom:594.352500px;}
.y5a{bottom:596.913000px;}
.ydd{bottom:598.870500px;}
.y2c3{bottom:599.871000px;}
.y2a{bottom:599.928000px;}
.y25a{bottom:603.057000px;}
.y326{bottom:603.876000px;}
.y254{bottom:605.611500px;}
.y29c{bottom:606.214500px;}
.y2f2{bottom:606.936000px;}
.y1d7{bottom:610.338000px;}
.y75{bottom:612.739500px;}
.y208{bottom:613.320000px;}
.yac{bottom:614.260500px;}
.y26d{bottom:614.425500px;}
.y1be{bottom:614.884500px;}
.y14c{bottom:615.243000px;}
.y59{bottom:617.803500px;}
.y259{bottom:618.057000px;}
.ydc{bottom:619.761000px;}
.y2c2{bottom:620.763000px;}
.y29{bottom:620.820000px;}
.y325{bottom:623.026500px;}
.y11b{bottom:623.071500px;}
.y2f1{bottom:626.086500px;}
.y29b{bottom:627.106500px;}
.y1d6{bottom:631.228500px;}
.y258{bottom:633.055500px;}
.y74{bottom:633.631500px;}
.y207{bottom:634.212000px;}
.y105{bottom:634.489500px;}
.yab{bottom:635.151000px;}
.y26c{bottom:635.317500px;}
.y1bd{bottom:635.775000px;}
.y14b{bottom:636.135000px;}
.y58{bottom:638.695500px;}
.ydb{bottom:640.653000px;}
.y2c1{bottom:641.653500px;}
.y28{bottom:641.712000px;}
.y324{bottom:642.177000px;}
.y2f0{bottom:645.237000px;}
.y29a{bottom:647.997000px;}
.y1d5{bottom:652.120500px;}
.y73{bottom:654.522000px;}
.y206{bottom:655.104000px;}
.y104{bottom:655.381500px;}
.yaa{bottom:656.043000px;}
.y26b{bottom:656.208000px;}
.y1bc{bottom:656.667000px;}
.y120{bottom:656.821500px;}
.y14a{bottom:657.027000px;}
.y57{bottom:659.587500px;}
.y323{bottom:661.327500px;}
.yda{bottom:661.545000px;}
.y2c0{bottom:662.545500px;}
.y27{bottom:662.602500px;}
.y2ef{bottom:664.387500px;}
.y115{bottom:668.070000px;}
.y299{bottom:668.889000px;}
.y11f{bottom:675.570000px;}
.y205{bottom:675.996000px;}
.y103{bottom:676.272000px;}
.y26a{bottom:677.100000px;}
.y1bb{bottom:677.559000px;}
.y149{bottom:677.917500px;}
.y24e{bottom:678.865500px;}
.y72{bottom:679.897500px;}
.y56{bottom:680.478000px;}
.ya9{bottom:681.418500px;}
.yd9{bottom:682.435500px;}
.y2bf{bottom:683.437500px;}
.y26{bottom:683.494500px;}
.y2ee{bottom:683.538000px;}
.y1d4{bottom:687.748500px;}
.y298{bottom:689.781000px;}
.y11e{bottom:694.320000px;}
.y204{bottom:696.886500px;}
.y102{bottom:697.164000px;}
.y191{bottom:697.363500px;}
.y269{bottom:697.992000px;}
.y1ba{bottom:698.449500px;}
.y322{bottom:699.628500px;}
.y24d{bottom:699.756000px;}
.y55{bottom:701.370000px;}
.y2ed{bottom:702.688500px;}
.yd8{bottom:703.327500px;}
.y71{bottom:704.329500px;}
.y25{bottom:704.386500px;}
.y297{bottom:710.671500px;}
.y116{bottom:713.068500px;}
.ya8{bottom:713.563500px;}
.y203{bottom:717.778500px;}
.y190{bottom:718.255500px;}
.y321{bottom:718.779000px;}
.y1b9{bottom:719.341500px;}
.y2ec{bottom:721.839000px;}
.y54{bottom:722.262000px;}
.yd7{bottom:724.219500px;}
.y2be{bottom:725.220000px;}
.y24{bottom:725.277000px;}
.y148{bottom:725.890500px;}
.y296{bottom:731.563500px;}
.y101{bottom:732.792000px;}
.y268{bottom:733.620000px;}
.y24c{bottom:735.384000px;}
.y8d{bottom:735.993000px;}
.y320{bottom:737.929500px;}
.y202{bottom:738.670500px;}
.y18f{bottom:739.147500px;}
.y1b8{bottom:740.233500px;}
.y2eb{bottom:740.989500px;}
.y53{bottom:743.152500px;}
.yd6{bottom:745.110000px;}
.y2bd{bottom:746.112000px;}
.y23{bottom:746.169000px;}
.y147{bottom:751.324500px;}
.y24b{bottom:754.617000px;}
.y265{bottom:756.048000px;}
.y295{bottom:756.937500px;}
.y31f{bottom:757.081500px;}
.y201{bottom:759.561000px;}
.y18e{bottom:760.038000px;}
.y2ea{bottom:760.140000px;}
.y117{bottom:761.818500px;}
.yfe{bottom:763.185000px;}
.y52{bottom:764.044500px;}
.yd5{bottom:766.002000px;}
.y22{bottom:767.061000px;}
.y2bc{bottom:771.486000px;}
.y1b7{bottom:775.861500px;}
.y31e{bottom:776.232000px;}
.yfc{bottom:779.683500px;}
.y200{bottom:780.453000px;}
.y18d{bottom:780.930000px;}
.y2e9{bottom:783.774000px;}
.y146{bottom:783.990000px;}
.y51{bottom:784.936500px;}
.y23e{bottom:785.010000px;}
.yd4{bottom:786.894000px;}
.y21{bottom:787.951500px;}
.y2bb{bottom:792.378000px;}
.y294{bottom:792.565500px;}
.y11c{bottom:793.674000px;}
.y31d{bottom:795.382500px;}
.yf5{bottom:796.633500px;}
.y1ff{bottom:801.345000px;}
.y50{bottom:805.827000px;}
.y1b6{bottom:806.253000px;}
.y18c{bottom:806.305500px;}
.y118{bottom:806.817000px;}
.yd3{bottom:807.784500px;}
.y22d{bottom:809.758500px;}
.y100{bottom:811.633500px;}
.y2ba{bottom:813.270000px;}
.y31c{bottom:814.533000px;}
.y145{bottom:821.094000px;}
.y1fe{bottom:822.235500px;}
.y290{bottom:822.958500px;}
.y2e8{bottom:823.674000px;}
.y227{bottom:826.258500px;}
.y4f{bottom:826.719000px;}
.y20{bottom:826.776000px;}
.y1b3{bottom:827.703000px;}
.yd2{bottom:828.676500px;}
.yf6{bottom:830.382000px;}
.y95{bottom:832.353000px;}
.y16f{bottom:832.615500px;}
.y31b{bottom:833.683500px;}
.y2b9{bottom:834.160500px;}
.y18b{bottom:837.331500px;}
.yff{bottom:837.882000px;}
.y144{bottom:841.986000px;}
.y1fd{bottom:843.127500px;}
.y2e7{bottom:843.174000px;}
.y1ad{bottom:844.203000px;}
.y232{bottom:846.208500px;}
.y4e{bottom:847.611000px;}
.y1f{bottom:847.668000px;}
.y28d{bottom:847.708500px;}
.yd1{bottom:849.568500px;}
.y228{bottom:850.183500px;}
.y119{bottom:851.815500px;}
.y31a{bottom:852.834000px;}
.y18a{bottom:856.564500px;}
.y16c{bottom:858.207000px;}
.y2b8{bottom:859.536000px;}
.y2e6{bottom:862.672500px;}
.y1fc{bottom:864.019500px;}
.yf7{bottom:864.132000px;}
.y285{bottom:864.207000px;}
.y23d{bottom:864.334500px;}
.y233{bottom:866.157000px;}
.y4d{bottom:868.503000px;}
.yd0{bottom:870.460500px;}
.y319{bottom:871.984500px;}
.y229{bottom:874.107000px;}
.y143{bottom:877.614000px;}
.y16a{bottom:877.707000px;}
.y1b5{bottom:878.094000px;}
.y185{bottom:878.994000px;}
.y2b7{bottom:880.428000px;}
.y293{bottom:881.982000px;}
.y2e5{bottom:882.171000px;}
.y1fb{bottom:884.910000px;}
.y234{bottom:886.107000px;}
.y1ae{bottom:888.301500px;}
.y4c{bottom:889.393500px;}
.y318{bottom:891.135000px;}
.ycf{bottom:891.351000px;}
.y1e{bottom:892.027500px;}
.y242{bottom:894.727500px;}
.y292{bottom:895.182000px;}
.y24a{bottom:896.752500px;}
.y11a{bottom:896.814000px;}
.yf8{bottom:897.880500px;}
.y286{bottom:898.032000px;}
.y22a{bottom:898.107000px;}
.y161{bottom:899.457000px;}
.y2b6{bottom:901.318500px;}
.y2e4{bottom:901.669500px;}
.y1d{bottom:903.828000px;}
.y1fa{bottom:905.802000px;}
.y235{bottom:906.057000px;}
.y241{bottom:906.277500px;}
.y249{bottom:908.301000px;}
.y291{bottom:908.380500px;}
.y4b{bottom:910.285500px;}
.yce{bottom:912.243000px;}
.y13f{bottom:912.955500px;}
.y240{bottom:917.826000px;}
.y248{bottom:919.851000px;}
.y22b{bottom:922.030500px;}
.y2b5{bottom:922.210500px;}
.y1c{bottom:924.306000px;}
.yfd{bottom:924.766500px;}
.y236{bottom:926.005500px;}
.y1f9{bottom:926.694000px;}
.y162{bottom:927.955500px;}
.y23f{bottom:929.376000px;}
.y317{bottom:929.436000px;}
.y4a{bottom:931.177500px;}
.y247{bottom:931.401000px;}
.yf9{bottom:931.630500px;}
.y2e3{bottom:931.828500px;}
.y287{bottom:931.855500px;}
.y1af{bottom:932.400000px;}
.ycd{bottom:933.135000px;}
.y1b{bottom:936.106500px;}
.y28f{bottom:939.535500px;}
.y2b4{bottom:943.102500px;}
.y16b{bottom:944.731500px;}
.y22c{bottom:945.955500px;}
.y13d{bottom:947.080500px;}
.y1f8{bottom:947.584500px;}
.y316{bottom:948.586500px;}
.y49{bottom:952.068000px;}
.ycc{bottom:954.025500px;}
.y2e2{bottom:955.810500px;}
.y163{bottom:956.455500px;}
.y1a{bottom:956.586000px;}
.y135{bottom:963.954000px;}
.y2b3{bottom:963.993000px;}
.yfa{bottom:965.379000px;}
.y288{bottom:965.679000px;}
.y315{bottom:967.737000px;}
.y1f7{bottom:968.476500px;}
.y48{bottom:972.960000px;}
.y238{bottom:974.004000px;}
.ycb{bottom:974.917500px;}
.y142{bottom:975.204000px;}
.y1b0{bottom:976.498500px;}
.y2b2{bottom:984.885000px;}
.y164{bottom:984.954000px;}
.y340{bottom:985.146000px;}
.y314{bottom:986.887500px;}
.y1f6{bottom:989.368500px;}
.y136{bottom:989.379000px;}
.y47{bottom:993.852000px;}
.y13e{bottom:993.903000px;}
.y141{bottom:993.954000px;}
.y2e1{bottom:994.635000px;}
.yca{bottom:995.809500px;}
.y226{bottom:998.754000px;}
.yfb{bottom:999.127500px;}
.y289{bottom:999.579000px;}
.y19{bottom:1001.262000px;}
.y33f{bottom:1004.298000px;}
.y313{bottom:1006.038000px;}
.y1f5{bottom:1010.260500px;}
.y140{bottom:1012.704000px;}
.y165{bottom:1013.454000px;}
.y2e0{bottom:1014.133500px;}
.y46{bottom:1014.742500px;}
.y137{bottom:1014.879000px;}
.y21d{bottom:1015.254000px;}
.y1b1{bottom:1020.598500px;}
.yc9{bottom:1021.183500px;}
.y33e{bottom:1023.448500px;}
.y312{bottom:1025.188500px;}
.y21e{bottom:1030.177500px;}
.y1f4{bottom:1031.151000px;}
.y28a{bottom:1033.402500px;}
.y2df{bottom:1033.632000px;}
.y45{bottom:1035.634500px;}
.y22e{bottom:1039.177500px;}
.y18{bottom:1040.086500px;}
.y138{bottom:1040.302500px;}
.y166{bottom:1041.952500px;}
.y311{bottom:1044.339000px;}
.y21f{bottom:1045.177500px;}
.y1f3{bottom:1052.043000px;}
.y2de{bottom:1053.130500px;}
.y237{bottom:1053.255000px;}
.y1b4{bottom:1053.447000px;}
.y44{bottom:1056.526500px;}
.y220{bottom:1060.102500px;}
.y22f{bottom:1063.102500px;}
.y310{bottom:1063.489500px;}
.y1b2{bottom:1064.697000px;}
.y139{bottom:1065.727500px;}
.y28b{bottom:1067.227500px;}
.y167{bottom:1070.452500px;}
.y17{bottom:1071.424500px;}
.y2dd{bottom:1072.629000px;}
.y1f2{bottom:1072.935000px;}
.y221{bottom:1075.102500px;}
.y43{bottom:1077.417000px;}
.y23c{bottom:1080.721500px;}
.y30f{bottom:1082.640000px;}
.yf4{bottom:1083.474000px;}
.y246{bottom:1083.721500px;}
.y230{bottom:1087.026000px;}
.y222{bottom:1090.026000px;}
.y13a{bottom:1091.151000px;}
.y2dc{bottom:1092.129000px;}
.y23b{bottom:1092.271500px;}
.y1f1{bottom:1093.825500px;}
.y16e{bottom:1095.201000px;}
.y245{bottom:1095.271500px;}
.y42{bottom:1098.309000px;}
.y168{bottom:1098.951000px;}
.y28c{bottom:1101.051000px;}
.y30e{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.y23a{bottom:1103.821500px;}
.y223{bottom:1104.951000px;}
.y244{bottom:1106.821500px;}
.yf3{bottom:1108.908000px;}
.y231{bottom:1110.951000px;}
.y16d{bottom:1113.951000px;}
.y1f0{bottom:1114.717500px;}
.y239{bottom:1115.371500px;}
.y13b{bottom:1116.651000px;}
.y28e{bottom:1117.926000px;}
.y243{bottom:1118.371500px;}
.y41{bottom:1119.201000px;}
.y224{bottom:1119.951000px;}
.y2db{bottom:1120.593000px;}
.y30d{bottom:1120.941000px;}
.y169{bottom:1127.451000px;}
.y225{bottom:1134.874500px;}
.y40{bottom:1140.091500px;}
.yf2{bottom:1141.573500px;}
.y13c{bottom:1142.074500px;}
.y3f{bottom:1200.196500px;}
.hf{height:0.456000px;}
.h7{height:26.110157px;}
.h17{height:29.529146px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h30{height:31.024938px;}
.h33{height:33.072749px;}
.h28{height:33.508800px;}
.h13{height:34.433981px;}
.h21{height:34.504637px;}
.h32{height:34.682180px;}
.h8{height:34.813397px;}
.hc{height:35.052500px;}
.h24{height:35.503200px;}
.h2c{height:36.468750px;}
.h14{height:38.697729px;}
.h15{height:39.165235px;}
.h26{height:39.434227px;}
.h9{height:43.217759px;}
.ha{height:43.516637px;}
.h4{height:43.815515px;}
.h2a{height:44.043750px;}
.h1a{height:44.831700px;}
.h16{height:46.714950px;}
.hb{height:51.861658px;}
.h6{height:54.547601px;}
.h1b{height:56.065200px;}
.h25{height:57.199200px;}
.h23{height:57.205200px;}
.he{height:58.767188px;}
.h22{height:60.193200px;}
.h2f{height:62.513998px;}
.h1e{height:66.742950px;}
.h1c{height:67.426950px;}
.h5{height:77.792486px;}
.h1d{height:78.011897px;}
.h1f{height:78.695897px;}
.h18{height:83.986637px;}
.h19{height:87.724950px;}
.h20{height:88.726157px;}
.h29{height:138.600000px;}
.h2e{height:159.300000px;}
.hd{height:170.280000px;}
.h12{height:179.640000px;}
.h2b{height:216.300375px;}
.h2d{height:216.750000px;}
.h10{height:267.000000px;}
.h11{height:276.000000px;}
.h27{height:276.300000px;}
.h31{height:323.100000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:148.440000px;}
.w4{width:291.960000px;}
.w3{width:430.920000px;}
.w9{width:445.500000px;}
.wa{width:448.125000px;}
.w2{width:533.040000px;}
.w8{width:554.400000px;}
.wb{width:558.900000px;}
.w7{width:570.096000px;}
.wc{width:574.650000px;}
.w6{width:583.200000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa4{left:1.479052px;}
.xa9{left:4.145972px;}
.xa3{left:7.630875px;}
.x2d{left:15.204000px;}
.x2e{left:18.227904px;}
.x30{left:21.206400px;}
.x31{left:22.214208px;}
.x34{left:23.930681px;}
.x33{left:25.082400px;}
.x29{left:28.028880px;}
.xac{left:47.819565px;}
.x1{left:53.574000px;}
.x2a{left:62.040000px;}
.x3d{left:67.024200px;}
.xa7{left:70.492500px;}
.x2b{left:74.123400px;}
.x3a{left:77.967600px;}
.xc5{left:85.848000px;}
.x35{left:88.200000px;}
.x36{left:100.243200px;}
.x3b{left:105.000000px;}
.x3c{left:111.715800px;}
.xab{left:131.480010px;}
.xaa{left:138.234600px;}
.xa5{left:168.423803px;}
.xa8{left:170.152125px;}
.xa6{left:173.860125px;}
.x3f{left:184.371600px;}
.x3e{left:187.251600px;}
.xb0{left:214.809300px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x37{left:252.608400px;}
.xb9{left:257.002500px;}
.x28{left:258.351000px;}
.x3{left:269.914500px;}
.xad{left:272.417850px;}
.x9c{left:274.176000px;}
.x83{left:278.751000px;}
.x5{left:281.479500px;}
.x61{left:284.665500px;}
.x9b{left:285.831000px;}
.xb7{left:288.222000px;}
.x89{left:289.567500px;}
.x1a{left:291.439500px;}
.x5d{left:293.106000px;}
.x43{left:294.502500px;}
.xb6{left:295.695000px;}
.x6e{left:298.651500px;}
.x38{left:300.240000px;}
.x8b{left:301.858500px;}
.x5e{left:303.378000px;}
.x1b{left:306.384000px;}
.x44{left:308.407500px;}
.x8a{left:313.066500px;}
.x79{left:314.862000px;}
.x45{left:316.125000px;}
.x1c{left:320.475000px;}
.x39{left:322.440000px;}
.x16{left:325.113000px;}
.xc{left:326.550000px;}
.x6f{left:328.714500px;}
.x46{left:330.030000px;}
.xa2{left:332.228700px;}
.xd{left:334.021500px;}
.x1d{left:335.419500px;}
.x47{left:337.746000px;}
.x17{left:340.057500px;}
.x14{left:343.141500px;}
.x70{left:348.795000px;}
.x15{left:350.614500px;}
.x94{left:352.726500px;}
.x48{left:355.398000px;}
.x62{left:359.625000px;}
.x1e{left:366.531000px;}
.x84{left:367.555500px;}
.x4d{left:369.202500px;}
.x22{left:370.831500px;}
.xb5{left:373.780500px;}
.x4b{left:375.258000px;}
.x9d{left:378.321300px;}
.x1f{left:381.475500px;}
.x85{left:382.498500px;}
.x23{left:385.776000px;}
.xbb{left:387.838500px;}
.xba{left:396.699000px;}
.x2c{left:401.871000px;}
.x4e{left:405.114000px;}
.xc4{left:407.659500px;}
.xc2{left:411.028500px;}
.xb1{left:414.143550px;}
.x66{left:415.515000px;}
.x65{left:417.667500px;}
.x90{left:420.159000px;}
.x50{left:425.670000px;}
.x4f{left:428.815500px;}
.x51{left:434.016000px;}
.x40{left:435.980400px;}
.x98{left:441.468000px;}
.xb3{left:443.515500px;}
.x82{left:448.617000px;}
.x8d{left:451.924500px;}
.x99{left:453.135000px;}
.xae{left:454.955400px;}
.x53{left:458.917500px;}
.x52{left:462.063000px;}
.x54{left:467.263500px;}
.x6{left:468.480000px;}
.x76{left:470.416500px;}
.x7{left:475.951500px;}
.xaf{left:478.237500px;}
.x7a{left:479.832000px;}
.x41{left:481.455754px;}
.x95{left:483.262500px;}
.xc3{left:484.918500px;}
.x42{left:485.967000px;}
.x20{left:494.644500px;}
.x6b{left:497.352000px;}
.x8c{left:499.104000px;}
.xb2{left:500.550000px;}
.x21{left:509.587500px;}
.x68{left:511.228500px;}
.x55{left:515.866500px;}
.x56{left:523.612500px;}
.x77{left:525.234000px;}
.x69{left:527.880000px;}
.x78{left:528.981000px;}
.x8e{left:532.426500px;}
.x6c{left:534.834000px;}
.xa1{left:536.092500px;}
.xbc{left:539.293500px;}
.x2f{left:540.831000px;}
.x12{left:543.348000px;}
.x96{left:546.003000px;}
.x57{left:550.672500px;}
.x49{left:552.309000px;}
.x6d{left:554.086500px;}
.x4c{left:556.186500px;}
.x13{left:558.292500px;}
.x97{left:564.384000px;}
.x11{left:567.258000px;}
.x91{left:571.836000px;}
.xb8{left:573.159000px;}
.x10{left:575.379000px;}
.x6a{left:578.379000px;}
.x67{left:580.950000px;}
.xe{left:582.781500px;}
.x9a{left:583.936500px;}
.x92{left:586.780500px;}
.x63{left:588.391500px;}
.xf{left:590.253000px;}
.x9e{left:591.946500px;}
.x7b{left:595.072500px;}
.x64{left:596.887500px;}
.x75{left:601.723500px;}
.x8f{left:606.247500px;}
.x58{left:608.580000px;}
.x4a{left:610.782000px;}
.x7c{left:614.431500px;}
.x59{left:616.326000px;}
.x9f{left:618.039000px;}
.xbd{left:621.472500px;}
.x71{left:625.521000px;}
.x86{left:628.933500px;}
.xa0{left:634.066500px;}
.x72{left:640.464000px;}
.x5a{left:643.386000px;}
.x18{left:647.157000px;}
.x5b{left:651.132000px;}
.xc0{left:657.832500px;}
.x19{left:662.100000px;}
.xbe{left:666.691500px;}
.xc1{left:671.127000px;}
.xbf{left:672.184500px;}
.x24{left:678.081000px;}
.x5c{left:683.268000px;}
.x32{left:684.351000px;}
.x25{left:693.024000px;}
.x7d{left:717.654000px;}
.x5f{left:732.054000px;}
.x7e{left:735.721500px;}
.x73{left:740.676000px;}
.x7f{left:743.041500px;}
.x60{left:746.998500px;}
.x93{left:750.945000px;}
.x74{left:755.620500px;}
.x26{left:762.355500px;}
.x8{left:764.611500px;}
.x80{left:770.380500px;}
.x9{left:772.083000px;}
.xb4{left:776.739000px;}
.x81{left:798.804000px;}
.x87{left:816.951000px;}
.xa{left:825.510000px;}
.x88{left:831.894000px;}
.xb{left:832.981500px;}
.x27{left:837.060000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v6{vertical-align:-9.301333pt;}
.vb{vertical-align:-8.010667pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:2.368000pt;}
.v4{vertical-align:3.285001pt;}
.v5{vertical-align:9.909333pt;}
.vf{vertical-align:11.669333pt;}
.vc{vertical-align:15.360000pt;}
.v8{vertical-align:18.277333pt;}
.v1{vertical-align:19.290667pt;}
.vd{vertical-align:21.946667pt;}
.v7{vertical-align:35.973333pt;}
.v9{vertical-align:39.744000pt;}
.va{vertical-align:55.658667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.000711pt;}
.ls4d{letter-spacing:0.000751pt;}
.ls4e{letter-spacing:0.001382pt;}
.ls4b{letter-spacing:0.002193pt;}
.ls4f{letter-spacing:0.002825pt;}
.ls48{letter-spacing:0.003182pt;}
.ls46{letter-spacing:0.003261pt;}
.ls47{letter-spacing:0.004101pt;}
.ls5a{letter-spacing:0.004267pt;}
.ls4a{letter-spacing:0.028000pt;}
.ls42{letter-spacing:0.105328pt;}
.ls3f{letter-spacing:0.264877pt;}
.ls41{letter-spacing:0.270210pt;}
.ls31{letter-spacing:0.395733pt;}
.ls2f{letter-spacing:0.482502pt;}
.ls39{letter-spacing:0.499733pt;}
.ls33{letter-spacing:0.505067pt;}
.ls18{letter-spacing:0.635362pt;}
.ls3c{letter-spacing:0.637762pt;}
.ls22{letter-spacing:0.638903pt;}
.ls1e{letter-spacing:0.640696pt;}
.ls3e{letter-spacing:0.643096pt;}
.ls36{letter-spacing:0.658926pt;}
.ls30{letter-spacing:0.664259pt;}
.ls2c{letter-spacing:0.665318pt;}
.ls25{letter-spacing:0.928300pt;}
.ls12{letter-spacing:1.166903pt;}
.ls38{letter-spacing:1.170926pt;}
.ls19{letter-spacing:1.172237pt;}
.ls9{letter-spacing:1.262881pt;}
.ls2a{letter-spacing:1.328347pt;}
.ls15{letter-spacing:1.750029pt;}
.lse{letter-spacing:2.287711pt;}
.lsa{letter-spacing:2.657067pt;}
.ls7{letter-spacing:3.156645pt;}
.ls40{letter-spacing:3.318400pt;}
.ls14{letter-spacing:3.323733pt;}
.ls20{letter-spacing:3.825118pt;}
.ls28{letter-spacing:3.841920pt;}
.ls23{letter-spacing:4.027785pt;}
.ls11{letter-spacing:7.038400pt;}
.lsd{letter-spacing:8.455200pt;}
.ls8{letter-spacing:8.498118pt;}
.ls1b{letter-spacing:8.859733pt;}
.ls0{letter-spacing:9.298933pt;}
.lsb{letter-spacing:9.516533pt;}
.lsc{letter-spacing:9.521867pt;}
.ls4{letter-spacing:10.626533pt;}
.ls53{letter-spacing:11.583183pt;}
.ls1d{letter-spacing:11.629762pt;}
.ls17{letter-spacing:11.635096pt;}
.ls56{letter-spacing:11.954133pt;}
.ls57{letter-spacing:11.959467pt;}
.ls58{letter-spacing:11.964960pt;}
.ls5b{letter-spacing:11.999330pt;}
.ls59{letter-spacing:12.137317pt;}
.ls5d{letter-spacing:12.201663pt;}
.ls3b{letter-spacing:12.552713pt;}
.ls3a{letter-spacing:13.029709pt;}
.ls4c{letter-spacing:13.124065pt;}
.ls32{letter-spacing:13.283467pt;}
.ls49{letter-spacing:13.389734pt;}
.ls55{letter-spacing:13.496002pt;}
.ls13{letter-spacing:13.649067pt;}
.ls44{letter-spacing:13.944563pt;}
.ls45{letter-spacing:13.945570pt;}
.ls6{letter-spacing:14.133609pt;}
.ls16{letter-spacing:14.155785pt;}
.ls1c{letter-spacing:14.161118pt;}
.ls2e{letter-spacing:15.887026pt;}
.ls2d{letter-spacing:15.937067pt;}
.ls5c{letter-spacing:16.002970pt;}
.ls51{letter-spacing:16.148289pt;}
.ls10{letter-spacing:16.622903pt;}
.ls43{letter-spacing:16.723505pt;}
.ls27{letter-spacing:17.656429pt;}
.lsf{letter-spacing:18.081067pt;}
.ls26{letter-spacing:18.604587pt;}
.ls1f{letter-spacing:19.190400pt;}
.ls1a{letter-spacing:19.195733pt;}
.ls50{letter-spacing:22.660289pt;}
.ls24{letter-spacing:29.640563pt;}
.ls1{letter-spacing:55.787733pt;}
.ls3{letter-spacing:55.926400pt;}
.ls2{letter-spacing:57.174803pt;}
.ls3d{letter-spacing:136.462400pt;}
.ls29{letter-spacing:153.573633pt;}
.ls35{letter-spacing:203.910400pt;}
.ls34{letter-spacing:230.475733pt;}
.ls52{letter-spacing:326.907565pt;}
.ls37{letter-spacing:413.713067pt;}
.ls21{letter-spacing:482.607710pt;}
.ls2b{letter-spacing:639.845633pt;}
.ws63{word-spacing:-42.077867pt;}
.wsa3{word-spacing:-41.308788pt;}
.ws6b{word-spacing:-23.457229pt;}
.wsa1{word-spacing:-18.450170pt;}
.ws55{word-spacing:-17.356800pt;}
.ws9{word-spacing:-13.283467pt;}
.ws9a{word-spacing:-11.955200pt;}
.ws9d{word-spacing:-11.714560pt;}
.ws20{word-spacing:-10.626800pt;}
.ws58{word-spacing:-10.170024pt;}
.ws8{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.wsa2{word-spacing:-8.636655pt;}
.ws67{word-spacing:-4.622646pt;}
.wsc8{word-spacing:-2.922363pt;}
.ws8a{word-spacing:-2.656693pt;}
.ws6e{word-spacing:-2.497292pt;}
.wsc6{word-spacing:-2.391024pt;}
.ws4a{word-spacing:-2.284756pt;}
.ws24{word-spacing:-2.231622pt;}
.ws6f{word-spacing:-2.125355pt;}
.ws48{word-spacing:-1.965953pt;}
.ws53{word-spacing:-1.753418pt;}
.ws3b{word-spacing:-1.700284pt;}
.ws94{word-spacing:-1.540882pt;}
.ws60{word-spacing:-1.434614pt;}
.ws6a{word-spacing:-1.381481pt;}
.wsf2{word-spacing:-1.338982pt;}
.ws4d{word-spacing:-1.328347pt;}
.ws83{word-spacing:-1.222079pt;}
.wsb1{word-spacing:-1.168945pt;}
.wsa9{word-spacing:-1.062677pt;}
.ws5b{word-spacing:-1.035722pt;}
.wsc0{word-spacing:-1.009543pt;}
.ws5d{word-spacing:-0.956410pt;}
.wsb2{word-spacing:-0.850142pt;}
.ws65{word-spacing:-0.797008pt;}
.ws66{word-spacing:-0.743874pt;}
.ws74{word-spacing:-0.690740pt;}
.wsbb{word-spacing:-0.637606pt;}
.ws47{word-spacing:-0.531339pt;}
.ws40{word-spacing:-0.478205pt;}
.ws12{word-spacing:-0.318803pt;}
.ws2c{word-spacing:-0.265669pt;}
.wsd3{word-spacing:-0.239104pt;}
.ws15{word-spacing:-0.212535pt;}
.wse3{word-spacing:-0.191283pt;}
.ws16{word-spacing:-0.159402pt;}
.wscd{word-spacing:-0.143462pt;}
.ws14{word-spacing:-0.106268pt;}
.wsdd{word-spacing:-0.095642pt;}
.ws5a{word-spacing:-0.090540pt;}
.ws64{word-spacing:-0.055366pt;}
.ws1d{word-spacing:-0.053134pt;}
.wsd7{word-spacing:-0.047821pt;}
.ws21{word-spacing:-0.042507pt;}
.ws8d{word-spacing:-0.040382pt;}
.ws5{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.wscc{word-spacing:0.047821pt;}
.ws10{word-spacing:0.053134pt;}
.wsf7{word-spacing:0.095642pt;}
.wse{word-spacing:0.106268pt;}
.ws81{word-spacing:0.120781pt;}
.wsdf{word-spacing:0.143462pt;}
.ws2{word-spacing:0.148774pt;}
.wsf{word-spacing:0.159402pt;}
.wsdb{word-spacing:0.191283pt;}
.wsa7{word-spacing:0.201490pt;}
.ws1e{word-spacing:0.212535pt;}
.wsce{word-spacing:0.239104pt;}
.ws11{word-spacing:0.265669pt;}
.ws29{word-spacing:0.318803pt;}
.ws39{word-spacing:0.371937pt;}
.wse5{word-spacing:0.382566pt;}
.ws57{word-spacing:0.384000pt;}
.wsc1{word-spacing:0.425071pt;}
.ws72{word-spacing:0.531339pt;}
.ws56{word-spacing:0.537370pt;}
.ws96{word-spacing:0.584473pt;}
.ws5c{word-spacing:0.630496pt;}
.ws31{word-spacing:0.637606pt;}
.ws6c{word-spacing:0.666468pt;}
.wsd8{word-spacing:0.669491pt;}
.ws28{word-spacing:0.690740pt;}
.ws2b{word-spacing:0.743874pt;}
.ws78{word-spacing:0.797008pt;}
.ws30{word-spacing:0.850142pt;}
.ws54{word-spacing:0.903276pt;}
.ws71{word-spacing:1.009543pt;}
.wsa0{word-spacing:1.062677pt;}
.ws84{word-spacing:1.115811pt;}
.ws37{word-spacing:1.168945pt;}
.wsda{word-spacing:1.195520pt;}
.ws38{word-spacing:1.222079pt;}
.ws42{word-spacing:1.275213pt;}
.wse2{word-spacing:1.338982pt;}
.ws50{word-spacing:1.434614pt;}
.ws18{word-spacing:1.487748pt;}
.wsc2{word-spacing:1.540882pt;}
.ws45{word-spacing:1.647150pt;}
.ws13{word-spacing:1.700284pt;}
.ws3d{word-spacing:1.753418pt;}
.ws23{word-spacing:1.806551pt;}
.ws27{word-spacing:1.859685pt;}
.ws70{word-spacing:1.912819pt;}
.ws77{word-spacing:1.965953pt;}
.wsbd{word-spacing:2.008474pt;}
.ws3e{word-spacing:2.072221pt;}
.ws76{word-spacing:2.125355pt;}
.wsb9{word-spacing:2.178489pt;}
.wsef{word-spacing:2.199757pt;}
.ws6{word-spacing:2.231335pt;}
.ws33{word-spacing:2.284756pt;}
.wsd1{word-spacing:2.295398pt;}
.wsa8{word-spacing:2.337890pt;}
.ws2d{word-spacing:2.391024pt;}
.wsba{word-spacing:2.497292pt;}
.wsed{word-spacing:2.534502pt;}
.ws3a{word-spacing:2.550426pt;}
.wsb{word-spacing:2.550432pt;}
.wsca{word-spacing:2.603559pt;}
.ws25{word-spacing:2.709827pt;}
.ws43{word-spacing:2.762961pt;}
.ws85{word-spacing:2.816095pt;}
.ws46{word-spacing:2.869229pt;}
.wsf0{word-spacing:2.869248pt;}
.ws3c{word-spacing:2.922363pt;}
.ws8c{word-spacing:2.975497pt;}
.ws89{word-spacing:3.028630pt;}
.ws19{word-spacing:3.081764pt;}
.ws100{word-spacing:3.108352pt;}
.ws1a{word-spacing:3.185311pt;}
.ws1c{word-spacing:3.188032pt;}
.wsab{word-spacing:3.203994pt;}
.ws17{word-spacing:3.241166pt;}
.wsd{word-spacing:3.294300pt;}
.wsff{word-spacing:3.299635pt;}
.ws79{word-spacing:3.400567pt;}
.ws75{word-spacing:3.453701pt;}
.ws59{word-spacing:3.465818pt;}
.ws82{word-spacing:3.466829pt;}
.ws26{word-spacing:3.613103pt;}
.ws51{word-spacing:3.666237pt;}
.ws2e{word-spacing:3.719371pt;}
.wsb3{word-spacing:3.772505pt;}
.ws1b{word-spacing:3.825664pt;}
.ws49{word-spacing:3.931906pt;}
.ws2f{word-spacing:4.038174pt;}
.wsa6{word-spacing:4.250709pt;}
.ws97{word-spacing:4.410111pt;}
.wsb8{word-spacing:4.463245pt;}
.ws73{word-spacing:4.516379pt;}
.ws35{word-spacing:4.569513pt;}
.wsd4{word-spacing:4.590797pt;}
.wsb5{word-spacing:4.622646pt;}
.ws44{word-spacing:4.728914pt;}
.wsf5{word-spacing:4.829901pt;}
.ws22{word-spacing:4.835182pt;}
.wsb6{word-spacing:4.888316pt;}
.ws4e{word-spacing:4.941450pt;}
.wsc7{word-spacing:4.994583pt;}
.wsc9{word-spacing:5.100851pt;}
.ws41{word-spacing:5.153985pt;}
.ws6d{word-spacing:5.207119pt;}
.wscb{word-spacing:5.260253pt;}
.wsfb{word-spacing:5.308109pt;}
.ws3f{word-spacing:5.313387pt;}
.ws88{word-spacing:5.366521pt;}
.wsb7{word-spacing:5.472788pt;}
.wseb{word-spacing:5.499392pt;}
.ws4b{word-spacing:5.632190pt;}
.wsd0{word-spacing:5.690675pt;}
.wsaa{word-spacing:5.738458pt;}
.ws2a{word-spacing:5.791591pt;}
.wsf8{word-spacing:5.977600pt;}
.wsd2{word-spacing:6.264525pt;}
.ws9c{word-spacing:6.376064pt;}
.ws9b{word-spacing:6.429198pt;}
.ws32{word-spacing:6.641733pt;}
.ws52{word-spacing:6.694867pt;}
.ws69{word-spacing:6.748001pt;}
.ws68{word-spacing:6.801135pt;}
.wsb4{word-spacing:6.907403pt;}
.ws4f{word-spacing:7.173072pt;}
.ws93{word-spacing:7.279340pt;}
.ws36{word-spacing:7.332474pt;}
.ws34{word-spacing:7.385607pt;}
.wsbf{word-spacing:7.438741pt;}
.ws9f{word-spacing:7.746970pt;}
.wsf3{word-spacing:8.123819pt;}
.wsfc{word-spacing:8.125167pt;}
.ws99{word-spacing:8.177357pt;}
.ws61{word-spacing:8.713954pt;}
.wsc{word-spacing:9.907750pt;}
.ws1f{word-spacing:10.587492pt;}
.ws3{word-spacing:11.492822pt;}
.wse4{word-spacing:11.716096pt;}
.wsde{word-spacing:11.811738pt;}
.wsd6{word-spacing:11.907379pt;}
.wsf4{word-spacing:11.907575pt;}
.wsfd{word-spacing:12.050842pt;}
.wsf6{word-spacing:12.089207pt;}
.wsdc{word-spacing:12.098662pt;}
.wse6{word-spacing:12.289946pt;}
.ws4c{word-spacing:13.230333pt;}
.wscf{word-spacing:14.464836pt;}
.wse7{word-spacing:14.585344pt;}
.wse1{word-spacing:14.768230pt;}
.wse9{word-spacing:14.769126pt;}
.wsfa{word-spacing:14.771729pt;}
.wsea{word-spacing:14.773393pt;}
.wsd9{word-spacing:14.776627pt;}
.wse8{word-spacing:14.824448pt;}
.wsfe{word-spacing:14.872269pt;}
.wse0{word-spacing:14.967910pt;}
.wsf1{word-spacing:15.063552pt;}
.ws5e{word-spacing:15.364542pt;}
.ws62{word-spacing:16.000735pt;}
.ws95{word-spacing:16.418365pt;}
.ws9e{word-spacing:17.049498pt;}
.ws8e{word-spacing:17.212384pt;}
.wsec{word-spacing:17.406771pt;}
.wsee{word-spacing:22.810522pt;}
.wsf9{word-spacing:24.771174pt;}
.ws1{word-spacing:25.293814pt;}
.ws7{word-spacing:41.466884pt;}
.wsbc{word-spacing:47.448543pt;}
.wsa{word-spacing:54.709169pt;}
.ws8b{word-spacing:102.973434pt;}
.ws87{word-spacing:118.010318pt;}
.ws86{word-spacing:129.051200pt;}
.wsd5{word-spacing:137.245696pt;}
.ws98{word-spacing:146.968275pt;}
.wsc3{word-spacing:160.145474pt;}
.ws7b{word-spacing:167.903019pt;}
.wsbe{word-spacing:187.190612pt;}
.ws7a{word-spacing:188.518959pt;}
.ws80{word-spacing:190.112975pt;}
.ws7c{word-spacing:235.754966pt;}
.wsc4{word-spacing:248.932165pt;}
.wsa4{word-spacing:265.191129pt;}
.wsae{word-spacing:271.721600pt;}
.wsac{word-spacing:282.140832pt;}
.wsaf{word-spacing:345.582669pt;}
.ws7f{word-spacing:348.983236pt;}
.ws7d{word-spacing:349.097712pt;}
.ws7e{word-spacing:383.421333pt;}
.wsad{word-spacing:429.746714pt;}
.ws92{word-spacing:448.821772pt;}
.ws8f{word-spacing:449.473119pt;}
.ws90{word-spacing:449.478452pt;}
.ws91{word-spacing:451.177134pt;}
.wsa5{word-spacing:510.031986pt;}
.wsc5{word-spacing:655.299978pt;}
.ws5f{word-spacing:762.949191pt;}
.wsb0{word-spacing:798.086400pt;}
._f{margin-left:-6.577977pt;}
._2{margin-left:-5.467459pt;}
._17{margin-left:-4.558890pt;}
._6{margin-left:-3.485590pt;}
._20{margin-left:-2.539803pt;}
._3{margin-left:-1.338970pt;}
._4{width:1.005614pt;}
._1c{width:1.973812pt;}
._5{width:3.141702pt;}
._1b{width:4.542639pt;}
._1d{width:7.019690pt;}
._1{width:11.530016pt;}
._b{width:13.177232pt;}
._18{width:14.069852pt;}
._12{width:15.578846pt;}
._8{width:16.471499pt;}
._9{width:17.863602pt;}
._e{width:19.393861pt;}
._7{width:20.828528pt;}
._13{width:21.944287pt;}
._0{width:23.060032pt;}
._10{width:24.122775pt;}
._16{width:25.026051pt;}
._a{width:26.258753pt;}
._11{width:28.745422pt;}
._1f{width:29.723077pt;}
._15{width:30.828266pt;}
._19{width:31.774052pt;}
._2d{width:33.431825pt;}
._14{width:35.929117pt;}
._1e{width:37.246841pt;}
._1a{width:38.585810pt;}
._35{width:39.838868pt;}
._43{width:50.041976pt;}
._42{width:54.993920pt;}
._3e{width:63.745126pt;}
._40{width:69.196698pt;}
._41{width:70.679142pt;}
._38{width:74.281146pt;}
._3d{width:83.154501pt;}
._37{width:87.298943pt;}
._3f{width:95.785062pt;}
._2f{width:136.182100pt;}
._2b{width:153.503741pt;}
._2c{width:160.198608pt;}
._34{width:168.381223pt;}
._32{width:172.206862pt;}
._23{width:184.161982pt;}
._33{width:186.978077pt;}
._3a{width:213.704412pt;}
._22{width:216.759602pt;}
._21{width:224.054893pt;}
._39{width:227.041012pt;}
._26{width:243.246842pt;}
._25{width:263.862782pt;}
._3b{width:277.263139pt;}
._3c{width:279.537273pt;}
._24{width:299.876921pt;}
._29{width:311.098789pt;}
._28{width:322.841374pt;}
._27{width:362.638640pt;}
._2a{width:436.707217pt;}
._36{width:445.952543pt;}
._30{width:574.005162pt;}
._31{width:594.355433pt;}
._c{width:1630.722400pt;}
._2e{width:2212.349067pt;}
._d{width:2233.602400pt;}
.fs8{font-size:0.426667pt;}
.fs4{font-size:31.880533pt;}
.fsd{font-size:33.219200pt;}
.fs10{font-size:33.280000pt;}
.fs0{font-size:37.193600pt;}
.fs13{font-size:37.880064pt;}
.fs3{font-size:40.381867pt;}
.fs14{font-size:41.104806pt;}
.fse{font-size:41.600000pt;}
.fsc{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs11{font-size:42.666667pt;}
.fs9{font-size:45.000107pt;}
.fsa{font-size:47.820800pt;}
.fsf{font-size:51.200000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs7{font-size:76.800000pt;}
.fs12{font-size:81.637920pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y266{bottom:2.323752pt;}
.y1a5{bottom:4.582032pt;}
.y188{bottom:9.924200pt;}
.ya3{bottom:16.231253pt;}
.ya5{bottom:16.316693pt;}
.ya0{bottom:16.344213pt;}
.ya7{bottom:16.652993pt;}
.y9a{bottom:16.660480pt;}
.y1a4{bottom:18.099840pt;}
.y198{bottom:25.043333pt;}
.ya6{bottom:28.543360pt;}
.ya2{bottom:29.653333pt;}
.ya1{bottom:29.670827pt;}
.ya4{bottom:29.755840pt;}
.y9f{bottom:29.783360pt;}
.y98{bottom:39.680000pt;}
.y99{bottom:39.699200pt;}
.y97{bottom:39.699413pt;}
.y3e{bottom:40.818667pt;}
.y267{bottom:46.214000pt;}
.y1a3{bottom:49.067400pt;}
.y96{bottom:62.738133pt;}
.y197{bottom:64.783000pt;}
.y1a7{bottom:68.729520pt;}
.y1a6{bottom:73.203240pt;}
.y1a8{bottom:80.408400pt;}
.y189{bottom:82.806400pt;}
.y187{bottom:85.885800pt;}
.y1ac{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.yc7{bottom:91.362667pt;}
.y1a1{bottom:93.290640pt;}
.yc6{bottom:94.808000pt;}
.y1ef{bottom:96.836000pt;}
.y114{bottom:96.862667pt;}
.y30c{bottom:96.906667pt;}
.y1a0{bottom:96.970320pt;}
.y94{bottom:101.769600pt;}
.y284{bottom:102.209333pt;}
.yc8{bottom:103.473333pt;}
.y2da{bottom:104.205333pt;}
.y1a2{bottom:104.969520pt;}
.y14{bottom:105.020000pt;}
.y1ab{bottom:107.209333pt;}
.y3d{bottom:108.669333pt;}
.y196{bottom:108.973333pt;}
.y193{bottom:111.059391pt;}
.y33d{bottom:111.210667pt;}
.y186{bottom:113.314400pt;}
.y91{bottom:113.856213pt;}
.y30b{bottom:113.929333pt;}
.y184{bottom:114.246667pt;}
.y1ee{bottom:115.406667pt;}
.y113{bottom:115.432000pt;}
.y19e{bottom:116.339520pt;}
.y8c{bottom:117.541333pt;}
.y19d{bottom:120.190800pt;}
.y283{bottom:120.780000pt;}
.y13{bottom:120.920000pt;}
.y2d9{bottom:121.538667pt;}
.y70{bottom:122.042667pt;}
.y93{bottom:124.808747pt;}
.y1aa{bottom:125.780000pt;}
.y3c{bottom:127.240000pt;}
.y8f{bottom:127.360000pt;}
.y8e{bottom:127.400533pt;}
.y19f{bottom:128.018400pt;}
.yc5{bottom:128.038667pt;}
.y33c{bottom:128.233333pt;}
.y30a{bottom:130.952000pt;}
.y183{bottom:132.817333pt;}
.y1ed{bottom:133.976000pt;}
.y112{bottom:134.002667pt;}
.y264{bottom:135.693333pt;}
.y8b{bottom:136.112000pt;}
.y12{bottom:136.821333pt;}
.y90{bottom:136.894933pt;}
.y1d3{bottom:137.037333pt;}
.y282{bottom:139.350667pt;}
.y6f{bottom:140.613333pt;}
.y160{bottom:140.928000pt;}
.y134{bottom:143.064000pt;}
.yf1{bottom:144.269333pt;}
.y33b{bottom:145.256000pt;}
.y3b{bottom:145.809333pt;}
.yc4{bottom:146.609333pt;}
.y2d8{bottom:146.840000pt;}
.y92{bottom:147.847467pt;}
.y309{bottom:147.974667pt;}
.y2b1{bottom:148.881333pt;}
.yc3{bottom:149.737333pt;}
.y182{bottom:151.386667pt;}
.y1ec{bottom:152.546667pt;}
.y111{bottom:152.573333pt;}
.y11{bottom:152.721333pt;}
.y1d2{bottom:152.978667pt;}
.y263{bottom:154.264000pt;}
.y8a{bottom:154.681333pt;}
.y1a9{bottom:156.454667pt;}
.y21c{bottom:156.938667pt;}
.y281{bottom:157.920000pt;}
.y6e{bottom:159.184000pt;}
.y15f{bottom:159.497333pt;}
.yf0{bottom:160.209333pt;}
.y133{bottom:161.633333pt;}
.y33a{bottom:162.278667pt;}
.y2d7{bottom:164.173333pt;}
.y3a{bottom:164.380000pt;}
.y308{bottom:164.997333pt;}
.yc2{bottom:165.178667pt;}
.y2b0{bottom:167.452000pt;}
.y10{bottom:168.621333pt;}
.y1d1{bottom:168.918667pt;}
.y181{bottom:169.957333pt;}
.y1eb{bottom:171.117333pt;}
.y262{bottom:172.834667pt;}
.y89{bottom:173.252000pt;}
.y110{bottom:175.128000pt;}
.y21b{bottom:175.509333pt;}
.yef{bottom:176.149333pt;}
.y19c{bottom:176.392000pt;}
.y280{bottom:176.490667pt;}
.y6d{bottom:177.753333pt;}
.y15e{bottom:178.068000pt;}
.y339{bottom:179.301333pt;}
.y132{bottom:180.204000pt;}
.y2d6{bottom:181.505333pt;}
.y307{bottom:182.021333pt;}
.y39{bottom:182.950667pt;}
.y194{bottom:183.486057pt;}
.yc1{bottom:183.749333pt;}
.yf{bottom:184.522667pt;}
.y2af{bottom:186.022667pt;}
.y180{bottom:188.528000pt;}
.y1ea{bottom:189.688000pt;}
.y261{bottom:191.404000pt;}
.y1d0{bottom:191.526667pt;}
.y88{bottom:191.822667pt;}
.y21a{bottom:194.078667pt;}
.y27f{bottom:195.061333pt;}
.y6c{bottom:196.324000pt;}
.y15d{bottom:196.638667pt;}
.yee{bottom:198.757333pt;}
.y131{bottom:198.774667pt;}
.y2d5{bottom:198.837333pt;}
.y306{bottom:199.044000pt;}
.ye{bottom:200.422667pt;}
.y38{bottom:201.520000pt;}
.y171{bottom:202.728800pt;}
.y2ae{bottom:204.592000pt;}
.y9d{bottom:205.801387pt;}
.y10f{bottom:206.544000pt;}
.y17f{bottom:207.098667pt;}
.y1cf{bottom:207.466667pt;}
.y1e9{bottom:208.257333pt;}
.y9e{bottom:209.212224pt;}
.y260{bottom:209.974667pt;}
.ybc{bottom:210.242667pt;}
.y87{bottom:210.392000pt;}
.y219{bottom:212.649333pt;}
.y338{bottom:213.346667pt;}
.y27e{bottom:213.630667pt;}
.yed{bottom:214.697333pt;}
.ybe{bottom:214.753333pt;}
.y6b{bottom:214.894667pt;}
.ybf{bottom:214.905333pt;}
.y15c{bottom:215.209333pt;}
.y305{bottom:216.066667pt;}
.y130{bottom:217.344000pt;}
.y9c{bottom:219.200000pt;}
.y9b{bottom:219.240533pt;}
.ybb{bottom:219.356000pt;}
.y37{bottom:220.090667pt;}
.yc0{bottom:221.358667pt;}
.y2ad{bottom:223.162667pt;}
.ybd{bottom:223.530667pt;}
.yd{bottom:224.293333pt;}
.y10e{bottom:225.113333pt;}
.y17e{bottom:225.668000pt;}
.y1e8{bottom:226.828000pt;}
.y25f{bottom:228.545333pt;}
.y86{bottom:228.962667pt;}
.y337{bottom:230.369333pt;}
.yec{bottom:230.637333pt;}
.y218{bottom:231.220000pt;}
.y2d4{bottom:232.109333pt;}
.y27d{bottom:232.201333pt;}
.y304{bottom:233.089333pt;}
.y6a{bottom:233.464000pt;}
.y15b{bottom:233.778667pt;}
.y12f{bottom:235.914667pt;}
.y1ce{bottom:236.502667pt;}
.yc{bottom:240.193333pt;}
.y2ac{bottom:241.733333pt;}
.y36{bottom:242.646667pt;}
.y10d{bottom:243.684000pt;}
.y17d{bottom:244.238667pt;}
.y1e7{bottom:245.398667pt;}
.y25e{bottom:247.114667pt;}
.y336{bottom:247.392000pt;}
.y85{bottom:247.533333pt;}
.y217{bottom:249.789333pt;}
.y303{bottom:250.112000pt;}
.y2d3{bottom:250.680000pt;}
.y27c{bottom:250.772000pt;}
.y69{bottom:252.034667pt;}
.y15a{bottom:252.349333pt;}
.y1cd{bottom:253.598667pt;}
.y12e{bottom:254.485333pt;}
.yb{bottom:256.093333pt;}
.yba{bottom:258.169333pt;}
.yeb{bottom:259.673333pt;}
.y2ab{bottom:260.302667pt;}
.y10c{bottom:262.254667pt;}
.y17c{bottom:262.809333pt;}
.y1e6{bottom:263.968000pt;}
.y335{bottom:264.414667pt;}
.y84{bottom:266.102667pt;}
.y302{bottom:267.134667pt;}
.y216{bottom:268.360000pt;}
.y2d2{bottom:269.250667pt;}
.y27b{bottom:269.342667pt;}
.y25d{bottom:269.670667pt;}
.y68{bottom:270.605333pt;}
.ya{bottom:271.994667pt;}
.y12d{bottom:273.054667pt;}
.y159{bottom:274.904000pt;}
.yb9{bottom:276.740000pt;}
.y2aa{bottom:278.873333pt;}
.y10b{bottom:280.824000pt;}
.y17b{bottom:281.378667pt;}
.y334{bottom:281.437333pt;}
.y1e5{bottom:282.538667pt;}
.y301{bottom:284.157333pt;}
.y83{bottom:284.673333pt;}
.y1cc{bottom:286.580000pt;}
.y215{bottom:286.930667pt;}
.y9{bottom:287.894667pt;}
.y27a{bottom:287.912000pt;}
.y67{bottom:289.176000pt;}
.y12c{bottom:291.625333pt;}
.y2d1{bottom:291.805333pt;}
.yea{bottom:292.656000pt;}
.y158{bottom:294.365333pt;}
.yb8{bottom:295.310667pt;}
.y2a9{bottom:297.444000pt;}
.y25c{bottom:298.244000pt;}
.y333{bottom:298.460000pt;}
.y10a{bottom:299.394667pt;}
.y17a{bottom:299.949333pt;}
.y1e4{bottom:301.109333pt;}
.y300{bottom:301.180000pt;}
.y82{bottom:303.244000pt;}
.y8{bottom:303.794667pt;}
.y1cb{bottom:305.150667pt;}
.y214{bottom:305.500000pt;}
.y279{bottom:306.482667pt;}
.y66{bottom:307.745333pt;}
.y12b{bottom:310.196000pt;}
.y2d0{bottom:310.376000pt;}
.ye9{bottom:311.225333pt;}
.y35{bottom:313.056000pt;}
.yb7{bottom:313.881333pt;}
.y332{bottom:315.482667pt;}
.y2a8{bottom:316.014667pt;}
.y109{bottom:317.965333pt;}
.y2ff{bottom:318.202667pt;}
.y179{bottom:318.520000pt;}
.y1e3{bottom:319.678667pt;}
.y7{bottom:319.696000pt;}
.y81{bottom:321.814667pt;}
.y1ca{bottom:323.720000pt;}
.y213{bottom:324.070667pt;}
.y278{bottom:325.053333pt;}
.y257{bottom:325.260000pt;}
.y157{bottom:325.780000pt;}
.y65{bottom:326.316000pt;}
.y12a{bottom:328.765333pt;}
.y2cf{bottom:328.945333pt;}
.ye8{bottom:329.796000pt;}
.yb6{bottom:332.450667pt;}
.y331{bottom:332.506667pt;}
.y2a7{bottom:334.584000pt;}
.y2fe{bottom:335.225333pt;}
.y108{bottom:336.536000pt;}
.y178{bottom:337.089333pt;}
.y19b{bottom:338.010667pt;}
.y1e2{bottom:338.249333pt;}
.y80{bottom:340.384000pt;}
.y6{bottom:340.909333pt;}
.y1c9{bottom:342.290667pt;}
.y212{bottom:342.641333pt;}
.y277{bottom:343.622667pt;}
.y156{bottom:344.350667pt;}
.y64{bottom:344.886667pt;}
.y255{bottom:347.260000pt;}
.y129{bottom:347.336000pt;}
.y2ce{bottom:347.516000pt;}
.y34{bottom:347.566667pt;}
.ye7{bottom:348.366667pt;}
.y330{bottom:349.529333pt;}
.yb5{bottom:351.021333pt;}
.y2fd{bottom:352.248000pt;}
.y2a6{bottom:353.154667pt;}
.y107{bottom:355.105333pt;}
.y177{bottom:355.660000pt;}
.y19a{bottom:356.581333pt;}
.y5{bottom:356.809333pt;}
.y1e1{bottom:356.820000pt;}
.y7f{bottom:358.954667pt;}
.y1c8{bottom:360.861333pt;}
.y211{bottom:361.212000pt;}
.y24f{bottom:361.925333pt;}
.y155{bottom:362.921333pt;}
.y63{bottom:363.456000pt;}
.y128{bottom:365.906667pt;}
.y2cd{bottom:366.086667pt;}
.y33{bottom:366.137333pt;}
.y276{bottom:366.178667pt;}
.y32f{bottom:366.552000pt;}
.ye5{bottom:366.936000pt;}
.y2fc{bottom:369.270667pt;}
.yb4{bottom:369.592000pt;}
.y2a5{bottom:371.725333pt;}
.ye6{bottom:371.758667pt;}
.y4{bottom:372.710667pt;}
.y176{bottom:374.230667pt;}
.y1e0{bottom:375.389333pt;}
.y7e{bottom:377.525333pt;}
.y1c7{bottom:379.430667pt;}
.y210{bottom:379.781333pt;}
.y154{bottom:381.490667pt;}
.y62{bottom:382.026667pt;}
.y32e{bottom:383.574667pt;}
.y127{bottom:384.477333pt;}
.y2cc{bottom:384.657333pt;}
.y32{bottom:384.708000pt;}
.ye4{bottom:385.506667pt;}
.y2fb{bottom:386.293333pt;}
.y106{bottom:386.774667pt;}
.y199{bottom:387.256000pt;}
.yb3{bottom:388.161333pt;}
.y3{bottom:388.610667pt;}
.y2a4{bottom:390.294667pt;}
.y175{bottom:392.800000pt;}
.y1df{bottom:393.960000pt;}
.y7d{bottom:396.094667pt;}
.y250{bottom:397.192000pt;}
.y275{bottom:397.593333pt;}
.y1c6{bottom:398.001333pt;}
.y20f{bottom:398.352000pt;}
.y153{bottom:400.061333pt;}
.y61{bottom:400.597333pt;}
.y126{bottom:403.046667pt;}
.y2cb{bottom:403.226667pt;}
.y31{bottom:403.277333pt;}
.y2fa{bottom:403.316000pt;}
.ye3{bottom:404.077333pt;}
.yb2{bottom:406.732000pt;}
.y195{bottom:407.193333pt;}
.y192{bottom:407.526276pt;}
.y2a3{bottom:408.865333pt;}
.y2{bottom:409.824000pt;}
.y174{bottom:411.370667pt;}
.y1de{bottom:412.530667pt;}
.y7c{bottom:414.665333pt;}
.y274{bottom:416.164000pt;}
.y1c5{bottom:416.572000pt;}
.y20e{bottom:416.922667pt;}
.y32d{bottom:417.620000pt;}
.y152{bottom:418.632000pt;}
.y60{bottom:419.166667pt;}
.y2f9{bottom:420.338667pt;}
.y124{bottom:421.617333pt;}
.y2c9{bottom:421.797333pt;}
.y30{bottom:421.848000pt;}
.ye2{bottom:422.646667pt;}
.yb1{bottom:425.302667pt;}
.y1{bottom:425.725333pt;}
.y125{bottom:426.438667pt;}
.y2ca{bottom:426.618667pt;}
.y2a2{bottom:427.436000pt;}
.y1dd{bottom:431.101333pt;}
.y251{bottom:432.457333pt;}
.y7b{bottom:433.236000pt;}
.y32c{bottom:434.642667pt;}
.y273{bottom:434.734667pt;}
.y1c4{bottom:435.142667pt;}
.y20d{bottom:435.492000pt;}
.y2f8{bottom:437.361333pt;}
.y5f{bottom:437.737333pt;}
.y123{bottom:440.188000pt;}
.y2c8{bottom:440.368000pt;}
.y2f{bottom:440.418667pt;}
.y151{bottom:441.186667pt;}
.ye1{bottom:441.217333pt;}
.y173{bottom:443.040000pt;}
.y2a1{bottom:446.005333pt;}
.y1dc{bottom:449.670667pt;}
.y32b{bottom:451.665333pt;}
.y7a{bottom:451.805333pt;}
.yb0{bottom:453.157333pt;}
.y272{bottom:453.304000pt;}
.y1c3{bottom:453.712000pt;}
.y2f7{bottom:454.384000pt;}
.y256{bottom:455.636000pt;}
.y5e{bottom:456.308000pt;}
.y20c{bottom:458.048000pt;}
.y122{bottom:458.757333pt;}
.y2c7{bottom:458.937333pt;}
.y2e{bottom:458.988000pt;}
.y172{bottom:460.136000pt;}
.ye0{bottom:463.773333pt;}
.y2a0{bottom:464.576000pt;}
.y252{bottom:467.789333pt;}
.y1db{bottom:468.241333pt;}
.y32a{bottom:468.688000pt;}
.y79{bottom:470.376000pt;}
.y2f6{bottom:471.406667pt;}
.y271{bottom:471.874667pt;}
.y1c2{bottom:472.282667pt;}
.y150{bottom:472.602667pt;}
.y5d{bottom:474.877333pt;}
.y2c6{bottom:477.508000pt;}
.y2d{bottom:477.558667pt;}
.y170{bottom:480.073333pt;}
.y29f{bottom:483.146667pt;}
.y329{bottom:485.710667pt;}
.y1da{bottom:486.812000pt;}
.y2f5{bottom:488.429333pt;}
.y78{bottom:488.946667pt;}
.y20b{bottom:489.462667pt;}
.yaf{bottom:490.298667pt;}
.y121{bottom:490.426667pt;}
.y270{bottom:490.445333pt;}
.y1c1{bottom:490.853333pt;}
.y14f{bottom:491.172000pt;}
.y5c{bottom:493.448000pt;}
.ydf{bottom:495.188000pt;}
.y2c5{bottom:496.078667pt;}
.y2c{bottom:496.129333pt;}
.y29e{bottom:501.716000pt;}
.y328{bottom:502.733333pt;}
.y253{bottom:503.056000pt;}
.y1d9{bottom:505.381333pt;}
.y2f4{bottom:505.452000pt;}
.y77{bottom:507.516000pt;}
.y20a{bottom:508.033333pt;}
.yae{bottom:508.868000pt;}
.y26f{bottom:509.016000pt;}
.y1c0{bottom:509.422667pt;}
.y14e{bottom:509.742667pt;}
.y5b{bottom:512.018667pt;}
.yde{bottom:513.758667pt;}
.y2c4{bottom:514.648000pt;}
.y2b{bottom:514.698667pt;}
.y327{bottom:519.756000pt;}
.y29d{bottom:520.286667pt;}
.y11d{bottom:522.176000pt;}
.y2f3{bottom:522.474667pt;}
.y25b{bottom:522.717333pt;}
.y1d8{bottom:523.952000pt;}
.y76{bottom:526.086667pt;}
.y209{bottom:526.604000pt;}
.yad{bottom:527.438667pt;}
.y26e{bottom:527.585333pt;}
.y1bf{bottom:527.993333pt;}
.y14d{bottom:528.313333pt;}
.y5a{bottom:530.589333pt;}
.ydd{bottom:532.329333pt;}
.y2c3{bottom:533.218667pt;}
.y2a{bottom:533.269333pt;}
.y25a{bottom:536.050667pt;}
.y326{bottom:536.778667pt;}
.y254{bottom:538.321333pt;}
.y29c{bottom:538.857333pt;}
.y2f2{bottom:539.498667pt;}
.y1d7{bottom:542.522667pt;}
.y75{bottom:544.657333pt;}
.y208{bottom:545.173333pt;}
.yac{bottom:546.009333pt;}
.y26d{bottom:546.156000pt;}
.y1be{bottom:546.564000pt;}
.y14c{bottom:546.882667pt;}
.y59{bottom:549.158667pt;}
.y259{bottom:549.384000pt;}
.ydc{bottom:550.898667pt;}
.y2c2{bottom:551.789333pt;}
.y29{bottom:551.840000pt;}
.y325{bottom:553.801333pt;}
.y11b{bottom:553.841333pt;}
.y2f1{bottom:556.521333pt;}
.y29b{bottom:557.428000pt;}
.y1d6{bottom:561.092000pt;}
.y258{bottom:562.716000pt;}
.y74{bottom:563.228000pt;}
.y207{bottom:563.744000pt;}
.y105{bottom:563.990667pt;}
.yab{bottom:564.578667pt;}
.y26c{bottom:564.726667pt;}
.y1bd{bottom:565.133333pt;}
.y14b{bottom:565.453333pt;}
.y58{bottom:567.729333pt;}
.ydb{bottom:569.469333pt;}
.y2c1{bottom:570.358667pt;}
.y28{bottom:570.410667pt;}
.y324{bottom:570.824000pt;}
.y2f0{bottom:573.544000pt;}
.y29a{bottom:575.997333pt;}
.y1d5{bottom:579.662667pt;}
.y73{bottom:581.797333pt;}
.y206{bottom:582.314667pt;}
.y104{bottom:582.561333pt;}
.yaa{bottom:583.149333pt;}
.y26b{bottom:583.296000pt;}
.y1bc{bottom:583.704000pt;}
.y120{bottom:583.841333pt;}
.y14a{bottom:584.024000pt;}
.y57{bottom:586.300000pt;}
.y323{bottom:587.846667pt;}
.yda{bottom:588.040000pt;}
.y2c0{bottom:588.929333pt;}
.y27{bottom:588.980000pt;}
.y2ef{bottom:590.566667pt;}
.y115{bottom:593.840000pt;}
.y299{bottom:594.568000pt;}
.y11f{bottom:600.506667pt;}
.y205{bottom:600.885333pt;}
.y103{bottom:601.130667pt;}
.y26a{bottom:601.866667pt;}
.y1bb{bottom:602.274667pt;}
.y149{bottom:602.593333pt;}
.y24e{bottom:603.436000pt;}
.y72{bottom:604.353333pt;}
.y56{bottom:604.869333pt;}
.ya9{bottom:605.705333pt;}
.yd9{bottom:606.609333pt;}
.y2bf{bottom:607.500000pt;}
.y26{bottom:607.550667pt;}
.y2ee{bottom:607.589333pt;}
.y1d4{bottom:611.332000pt;}
.y298{bottom:613.138667pt;}
.y11e{bottom:617.173333pt;}
.y204{bottom:619.454667pt;}
.y102{bottom:619.701333pt;}
.y191{bottom:619.878667pt;}
.y269{bottom:620.437333pt;}
.y1ba{bottom:620.844000pt;}
.y322{bottom:621.892000pt;}
.y24d{bottom:622.005333pt;}
.y55{bottom:623.440000pt;}
.y2ed{bottom:624.612000pt;}
.yd8{bottom:625.180000pt;}
.y71{bottom:626.070667pt;}
.y25{bottom:626.121333pt;}
.y297{bottom:631.708000pt;}
.y116{bottom:633.838667pt;}
.ya8{bottom:634.278667pt;}
.y203{bottom:638.025333pt;}
.y190{bottom:638.449333pt;}
.y321{bottom:638.914667pt;}
.y1b9{bottom:639.414667pt;}
.y2ec{bottom:641.634667pt;}
.y54{bottom:642.010667pt;}
.yd7{bottom:643.750667pt;}
.y2be{bottom:644.640000pt;}
.y24{bottom:644.690667pt;}
.y148{bottom:645.236000pt;}
.y296{bottom:650.278667pt;}
.y101{bottom:651.370667pt;}
.y268{bottom:652.106667pt;}
.y24c{bottom:653.674667pt;}
.y8d{bottom:654.216000pt;}
.y320{bottom:655.937333pt;}
.y202{bottom:656.596000pt;}
.y18f{bottom:657.020000pt;}
.y1b8{bottom:657.985333pt;}
.y2eb{bottom:658.657333pt;}
.y53{bottom:660.580000pt;}
.yd6{bottom:662.320000pt;}
.y2bd{bottom:663.210667pt;}
.y23{bottom:663.261333pt;}
.y147{bottom:667.844000pt;}
.y24b{bottom:670.770667pt;}
.y265{bottom:672.042667pt;}
.y295{bottom:672.833333pt;}
.y31f{bottom:672.961333pt;}
.y201{bottom:675.165333pt;}
.y18e{bottom:675.589333pt;}
.y2ea{bottom:675.680000pt;}
.y117{bottom:677.172000pt;}
.yfe{bottom:678.386667pt;}
.y52{bottom:679.150667pt;}
.yd5{bottom:680.890667pt;}
.y22{bottom:681.832000pt;}
.y2bc{bottom:685.765333pt;}
.y1b7{bottom:689.654667pt;}
.y31e{bottom:689.984000pt;}
.yfc{bottom:693.052000pt;}
.y200{bottom:693.736000pt;}
.y18d{bottom:694.160000pt;}
.y2e9{bottom:696.688000pt;}
.y146{bottom:696.880000pt;}
.y51{bottom:697.721333pt;}
.y23e{bottom:697.786667pt;}
.yd4{bottom:699.461333pt;}
.y21{bottom:700.401333pt;}
.y2bb{bottom:704.336000pt;}
.y294{bottom:704.502667pt;}
.y11c{bottom:705.488000pt;}
.y31d{bottom:707.006667pt;}
.yf5{bottom:708.118667pt;}
.y1ff{bottom:712.306667pt;}
.y50{bottom:716.290667pt;}
.y1b6{bottom:716.669333pt;}
.y18c{bottom:716.716000pt;}
.y118{bottom:717.170667pt;}
.yd3{bottom:718.030667pt;}
.y22d{bottom:719.785333pt;}
.y100{bottom:721.452000pt;}
.y2ba{bottom:722.906667pt;}
.y31c{bottom:724.029333pt;}
.y145{bottom:729.861333pt;}
.y1fe{bottom:730.876000pt;}
.y290{bottom:731.518667pt;}
.y2e8{bottom:732.154667pt;}
.y227{bottom:734.452000pt;}
.y4f{bottom:734.861333pt;}
.y20{bottom:734.912000pt;}
.y1b3{bottom:735.736000pt;}
.yd2{bottom:736.601333pt;}
.yf6{bottom:738.117333pt;}
.y95{bottom:739.869333pt;}
.y16f{bottom:740.102667pt;}
.y31b{bottom:741.052000pt;}
.y2b9{bottom:741.476000pt;}
.y18b{bottom:744.294667pt;}
.yff{bottom:744.784000pt;}
.y144{bottom:748.432000pt;}
.y1fd{bottom:749.446667pt;}
.y2e7{bottom:749.488000pt;}
.y1ad{bottom:750.402667pt;}
.y232{bottom:752.185333pt;}
.y4e{bottom:753.432000pt;}
.y1f{bottom:753.482667pt;}
.y28d{bottom:753.518667pt;}
.yd1{bottom:755.172000pt;}
.y228{bottom:755.718667pt;}
.y119{bottom:757.169333pt;}
.y31a{bottom:758.074667pt;}
.y18a{bottom:761.390667pt;}
.y16c{bottom:762.850667pt;}
.y2b8{bottom:764.032000pt;}
.y2e6{bottom:766.820000pt;}
.y1fc{bottom:768.017333pt;}
.yf7{bottom:768.117333pt;}
.y285{bottom:768.184000pt;}
.y23d{bottom:768.297333pt;}
.y233{bottom:769.917333pt;}
.y4d{bottom:772.002667pt;}
.yd0{bottom:773.742667pt;}
.y319{bottom:775.097333pt;}
.y229{bottom:776.984000pt;}
.y143{bottom:780.101333pt;}
.y16a{bottom:780.184000pt;}
.y1b5{bottom:780.528000pt;}
.y185{bottom:781.328000pt;}
.y2b7{bottom:782.602667pt;}
.y293{bottom:783.984000pt;}
.y2e5{bottom:784.152000pt;}
.y1fb{bottom:786.586667pt;}
.y234{bottom:787.650667pt;}
.y1ae{bottom:789.601333pt;}
.y4c{bottom:790.572000pt;}
.y318{bottom:792.120000pt;}
.ycf{bottom:792.312000pt;}
.y1e{bottom:792.913333pt;}
.y242{bottom:795.313333pt;}
.y292{bottom:795.717333pt;}
.y24a{bottom:797.113333pt;}
.y11a{bottom:797.168000pt;}
.yf8{bottom:798.116000pt;}
.y286{bottom:798.250667pt;}
.y22a{bottom:798.317333pt;}
.y161{bottom:799.517333pt;}
.y2b6{bottom:801.172000pt;}
.y2e4{bottom:801.484000pt;}
.y1d{bottom:803.402667pt;}
.y1fa{bottom:805.157333pt;}
.y235{bottom:805.384000pt;}
.y241{bottom:805.580000pt;}
.y249{bottom:807.378667pt;}
.y291{bottom:807.449333pt;}
.y4b{bottom:809.142667pt;}
.yce{bottom:810.882667pt;}
.y13f{bottom:811.516000pt;}
.y240{bottom:815.845333pt;}
.y248{bottom:817.645333pt;}
.y22b{bottom:819.582667pt;}
.y2b5{bottom:819.742667pt;}
.y1c{bottom:821.605333pt;}
.yfd{bottom:822.014667pt;}
.y236{bottom:823.116000pt;}
.y1f9{bottom:823.728000pt;}
.y162{bottom:824.849333pt;}
.y23f{bottom:826.112000pt;}
.y317{bottom:826.165333pt;}
.y4a{bottom:827.713333pt;}
.y247{bottom:827.912000pt;}
.yf9{bottom:828.116000pt;}
.y2e3{bottom:828.292000pt;}
.y287{bottom:828.316000pt;}
.y1af{bottom:828.800000pt;}
.ycd{bottom:829.453333pt;}
.y1b{bottom:832.094667pt;}
.y28f{bottom:835.142667pt;}
.y2b4{bottom:838.313333pt;}
.y16b{bottom:839.761333pt;}
.y22c{bottom:840.849333pt;}
.y13d{bottom:841.849333pt;}
.y1f8{bottom:842.297333pt;}
.y316{bottom:843.188000pt;}
.y49{bottom:846.282667pt;}
.ycc{bottom:848.022667pt;}
.y2e2{bottom:849.609333pt;}
.y163{bottom:850.182667pt;}
.y1a{bottom:850.298667pt;}
.y135{bottom:856.848000pt;}
.y2b3{bottom:856.882667pt;}
.yfa{bottom:858.114667pt;}
.y288{bottom:858.381333pt;}
.y315{bottom:860.210667pt;}
.y1f7{bottom:860.868000pt;}
.y48{bottom:864.853333pt;}
.y238{bottom:865.781333pt;}
.ycb{bottom:866.593333pt;}
.y142{bottom:866.848000pt;}
.y1b0{bottom:867.998667pt;}
.y2b2{bottom:875.453333pt;}
.y164{bottom:875.514667pt;}
.y340{bottom:875.685333pt;}
.y314{bottom:877.233333pt;}
.y1f6{bottom:879.438667pt;}
.y136{bottom:879.448000pt;}
.y47{bottom:883.424000pt;}
.y13e{bottom:883.469333pt;}
.y141{bottom:883.514667pt;}
.y2e1{bottom:884.120000pt;}
.yca{bottom:885.164000pt;}
.y226{bottom:887.781333pt;}
.yfb{bottom:888.113333pt;}
.y289{bottom:888.514667pt;}
.y19{bottom:890.010667pt;}
.y33f{bottom:892.709333pt;}
.y313{bottom:894.256000pt;}
.y1f5{bottom:898.009333pt;}
.y140{bottom:900.181333pt;}
.y165{bottom:900.848000pt;}
.y2e0{bottom:901.452000pt;}
.y46{bottom:901.993333pt;}
.y137{bottom:902.114667pt;}
.y21d{bottom:902.448000pt;}
.y1b1{bottom:907.198667pt;}
.yc9{bottom:907.718667pt;}
.y33e{bottom:909.732000pt;}
.y312{bottom:911.278667pt;}
.y21e{bottom:915.713333pt;}
.y1f4{bottom:916.578667pt;}
.y28a{bottom:918.580000pt;}
.y2df{bottom:918.784000pt;}
.y45{bottom:920.564000pt;}
.y22e{bottom:923.713333pt;}
.y18{bottom:924.521333pt;}
.y138{bottom:924.713333pt;}
.y166{bottom:926.180000pt;}
.y311{bottom:928.301333pt;}
.y21f{bottom:929.046667pt;}
.y1f3{bottom:935.149333pt;}
.y2de{bottom:936.116000pt;}
.y237{bottom:936.226667pt;}
.y1b4{bottom:936.397333pt;}
.y44{bottom:939.134667pt;}
.y220{bottom:942.313333pt;}
.y22f{bottom:944.980000pt;}
.y310{bottom:945.324000pt;}
.y1b2{bottom:946.397333pt;}
.y139{bottom:947.313333pt;}
.y28b{bottom:948.646667pt;}
.y167{bottom:951.513333pt;}
.y17{bottom:952.377333pt;}
.y2dd{bottom:953.448000pt;}
.y1f2{bottom:953.720000pt;}
.y221{bottom:955.646667pt;}
.y43{bottom:957.704000pt;}
.y23c{bottom:960.641333pt;}
.y30f{bottom:962.346667pt;}
.yf4{bottom:963.088000pt;}
.y246{bottom:963.308000pt;}
.y230{bottom:966.245333pt;}
.y222{bottom:968.912000pt;}
.y13a{bottom:969.912000pt;}
.y2dc{bottom:970.781333pt;}
.y23b{bottom:970.908000pt;}
.y1f1{bottom:972.289333pt;}
.y16e{bottom:973.512000pt;}
.y245{bottom:973.574667pt;}
.y42{bottom:976.274667pt;}
.y168{bottom:976.845333pt;}
.y28c{bottom:978.712000pt;}
.y30e{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.y23a{bottom:981.174667pt;}
.y223{bottom:982.178667pt;}
.y244{bottom:983.841333pt;}
.yf3{bottom:985.696000pt;}
.y231{bottom:987.512000pt;}
.y16d{bottom:990.178667pt;}
.y1f0{bottom:990.860000pt;}
.y239{bottom:991.441333pt;}
.y13b{bottom:992.578667pt;}
.y28e{bottom:993.712000pt;}
.y243{bottom:994.108000pt;}
.y41{bottom:994.845333pt;}
.y224{bottom:995.512000pt;}
.y2db{bottom:996.082667pt;}
.y30d{bottom:996.392000pt;}
.y169{bottom:1002.178667pt;}
.y225{bottom:1008.777333pt;}
.y40{bottom:1013.414667pt;}
.yf2{bottom:1014.732000pt;}
.y13c{bottom:1015.177333pt;}
.y3f{bottom:1066.841333pt;}
.hf{height:0.405333pt;}
.h7{height:23.209028pt;}
.h17{height:26.248130pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h30{height:27.577722pt;}
.h33{height:29.397999pt;}
.h28{height:29.785600pt;}
.h13{height:30.607983pt;}
.h21{height:30.670788pt;}
.h32{height:30.828605pt;}
.h8{height:30.945242pt;}
.hc{height:31.157778pt;}
.h24{height:31.558400pt;}
.h2c{height:32.416667pt;}
.h14{height:34.397982pt;}
.h15{height:34.813542pt;}
.h26{height:35.052646pt;}
.h9{height:38.415786pt;}
.ha{height:38.681455pt;}
.h4{height:38.947124pt;}
.h2a{height:39.150000pt;}
.h1a{height:39.850400pt;}
.h16{height:41.524400pt;}
.hb{height:46.099251pt;}
.h6{height:48.486756pt;}
.h1b{height:49.835733pt;}
.h25{height:50.843733pt;}
.h23{height:50.849067pt;}
.he{height:52.237500pt;}
.h22{height:53.505067pt;}
.h2f{height:55.567998pt;}
.h1e{height:59.327067pt;}
.h1c{height:59.935067pt;}
.h5{height:69.148877pt;}
.h1d{height:69.343908pt;}
.h1f{height:69.951908pt;}
.h18{height:74.654788pt;}
.h19{height:77.977733pt;}
.h20{height:78.867695pt;}
.h29{height:123.200000pt;}
.h2e{height:141.600000pt;}
.hd{height:151.360000pt;}
.h12{height:159.680000pt;}
.h2b{height:192.267000pt;}
.h2d{height:192.666667pt;}
.h10{height:237.333333pt;}
.h11{height:245.333333pt;}
.h27{height:245.600000pt;}
.h31{height:287.200000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:131.946667pt;}
.w4{width:259.520000pt;}
.w3{width:383.040000pt;}
.w9{width:396.000000pt;}
.wa{width:398.333333pt;}
.w2{width:473.813333pt;}
.w8{width:492.800000pt;}
.wb{width:496.800000pt;}
.w7{width:506.752000pt;}
.wc{width:510.800000pt;}
.w6{width:518.400000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa4{left:1.314713pt;}
.xa9{left:3.685308pt;}
.xa3{left:6.783000pt;}
.x2d{left:13.514667pt;}
.x2e{left:16.202581pt;}
.x30{left:18.850133pt;}
.x31{left:19.745963pt;}
.x34{left:21.271716pt;}
.x33{left:22.295467pt;}
.x29{left:24.914560pt;}
.xac{left:42.506280pt;}
.x1{left:47.621333pt;}
.x2a{left:55.146667pt;}
.x3d{left:59.577067pt;}
.xa7{left:62.660000pt;}
.x2b{left:65.887467pt;}
.x3a{left:69.304533pt;}
.xc5{left:76.309333pt;}
.x35{left:78.400000pt;}
.x36{left:89.105067pt;}
.x3b{left:93.333333pt;}
.x3c{left:99.302933pt;}
.xab{left:116.871120pt;}
.xaa{left:122.875200pt;}
.xa5{left:149.710047pt;}
.xa8{left:151.246333pt;}
.xa6{left:154.542333pt;}
.x3f{left:163.885867pt;}
.x3e{left:166.445867pt;}
.xb0{left:190.941600pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x37{left:224.540800pt;}
.xb9{left:228.446667pt;}
.x28{left:229.645333pt;}
.x3{left:239.924000pt;}
.xad{left:242.149200pt;}
.x9c{left:243.712000pt;}
.x83{left:247.778667pt;}
.x5{left:250.204000pt;}
.x61{left:253.036000pt;}
.x9b{left:254.072000pt;}
.xb7{left:256.197333pt;}
.x89{left:257.393333pt;}
.x1a{left:259.057333pt;}
.x5d{left:260.538667pt;}
.x43{left:261.780000pt;}
.xb6{left:262.840000pt;}
.x6e{left:265.468000pt;}
.x38{left:266.880000pt;}
.x8b{left:268.318667pt;}
.x5e{left:269.669333pt;}
.x1b{left:272.341333pt;}
.x44{left:274.140000pt;}
.x8a{left:278.281333pt;}
.x79{left:279.877333pt;}
.x45{left:281.000000pt;}
.x1c{left:284.866667pt;}
.x39{left:286.613333pt;}
.x16{left:288.989333pt;}
.xc{left:290.266667pt;}
.x6f{left:292.190667pt;}
.x46{left:293.360000pt;}
.xa2{left:295.314400pt;}
.xd{left:296.908000pt;}
.x1d{left:298.150667pt;}
.x47{left:300.218667pt;}
.x17{left:302.273333pt;}
.x14{left:305.014667pt;}
.x70{left:310.040000pt;}
.x15{left:311.657333pt;}
.x94{left:313.534667pt;}
.x48{left:315.909333pt;}
.x62{left:319.666667pt;}
.x1e{left:325.805333pt;}
.x84{left:326.716000pt;}
.x4d{left:328.180000pt;}
.x22{left:329.628000pt;}
.xb5{left:332.249333pt;}
.x4b{left:333.562667pt;}
.x9d{left:336.285600pt;}
.x1f{left:339.089333pt;}
.x85{left:339.998667pt;}
.x23{left:342.912000pt;}
.xbb{left:344.745333pt;}
.xba{left:352.621333pt;}
.x2c{left:357.218667pt;}
.x4e{left:360.101333pt;}
.xc4{left:362.364000pt;}
.xc2{left:365.358667pt;}
.xb1{left:368.127600pt;}
.x66{left:369.346667pt;}
.x65{left:371.260000pt;}
.x90{left:373.474667pt;}
.x50{left:378.373333pt;}
.x4f{left:381.169333pt;}
.x51{left:385.792000pt;}
.x40{left:387.538133pt;}
.x98{left:392.416000pt;}
.xb3{left:394.236000pt;}
.x82{left:398.770667pt;}
.x8d{left:401.710667pt;}
.x99{left:402.786667pt;}
.xae{left:404.404800pt;}
.x53{left:407.926667pt;}
.x52{left:410.722667pt;}
.x54{left:415.345333pt;}
.x6{left:416.426667pt;}
.x76{left:418.148000pt;}
.x7{left:423.068000pt;}
.xaf{left:425.100000pt;}
.x7a{left:426.517333pt;}
.x41{left:427.960670pt;}
.x95{left:429.566667pt;}
.xc3{left:431.038667pt;}
.x42{left:431.970667pt;}
.x20{left:439.684000pt;}
.x6b{left:442.090667pt;}
.x8c{left:443.648000pt;}
.xb2{left:444.933333pt;}
.x21{left:452.966667pt;}
.x68{left:454.425333pt;}
.x55{left:458.548000pt;}
.x56{left:465.433333pt;}
.x77{left:466.874667pt;}
.x69{left:469.226667pt;}
.x78{left:470.205333pt;}
.x8e{left:473.268000pt;}
.x6c{left:475.408000pt;}
.xa1{left:476.526667pt;}
.xbc{left:479.372000pt;}
.x2f{left:480.738667pt;}
.x12{left:482.976000pt;}
.x96{left:485.336000pt;}
.x57{left:489.486667pt;}
.x49{left:490.941333pt;}
.x6d{left:492.521333pt;}
.x4c{left:494.388000pt;}
.x13{left:496.260000pt;}
.x97{left:501.674667pt;}
.x11{left:504.229333pt;}
.x91{left:508.298667pt;}
.xb8{left:509.474667pt;}
.x10{left:511.448000pt;}
.x6a{left:514.114667pt;}
.x67{left:516.400000pt;}
.xe{left:518.028000pt;}
.x9a{left:519.054667pt;}
.x92{left:521.582667pt;}
.x63{left:523.014667pt;}
.xf{left:524.669333pt;}
.x9e{left:526.174667pt;}
.x7b{left:528.953333pt;}
.x64{left:530.566667pt;}
.x75{left:534.865333pt;}
.x8f{left:538.886667pt;}
.x58{left:540.960000pt;}
.x4a{left:542.917333pt;}
.x7c{left:546.161333pt;}
.x59{left:547.845333pt;}
.x9f{left:549.368000pt;}
.xbd{left:552.420000pt;}
.x71{left:556.018667pt;}
.x86{left:559.052000pt;}
.xa0{left:563.614667pt;}
.x72{left:569.301333pt;}
.x5a{left:571.898667pt;}
.x18{left:575.250667pt;}
.x5b{left:578.784000pt;}
.xc0{left:584.740000pt;}
.x19{left:588.533333pt;}
.xbe{left:592.614667pt;}
.xc1{left:596.557333pt;}
.xbf{left:597.497333pt;}
.x24{left:602.738667pt;}
.x5c{left:607.349333pt;}
.x32{left:608.312000pt;}
.x25{left:616.021333pt;}
.x7d{left:637.914667pt;}
.x5f{left:650.714667pt;}
.x7e{left:653.974667pt;}
.x73{left:658.378667pt;}
.x7f{left:660.481333pt;}
.x60{left:663.998667pt;}
.x93{left:667.506667pt;}
.x74{left:671.662667pt;}
.x26{left:677.649333pt;}
.x8{left:679.654667pt;}
.x80{left:684.782667pt;}
.x9{left:686.296000pt;}
.xb4{left:690.434667pt;}
.x81{left:710.048000pt;}
.x87{left:726.178667pt;}
.xa{left:733.786667pt;}
.x88{left:739.461333pt;}
.xb{left:740.428000pt;}
.x27{left:744.053333pt;}
}




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