
    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_570b4cedbf79cc91f3903703.woff')format("woff");}.ff1{font-family:ff1;line-height:1.147000;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_84cdd29dc6a54d66fdd8feb8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_32a7df46f9d69f30505e3bc3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_5f90dca3534707eb25fbc52c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.661000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_767ef07d17d2afd2f2c8d46b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_365c66b9926189d71be0a4b5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_21374bd8c73766ef2dc4fbc9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.511000;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_e71124ddf639bd66f80fde3a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.862000;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_00631e619ce1585363507e65.woff')format("woff");}.ff9{font-family:ff9;line-height:0.642000;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_f557f880f9ecdf55171ced5e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.906000;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_48b9799900a851f295a58cc2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.677000;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_13587fa110477eb731532ed2.woff')format("woff");}.ffc{font-family:ffc;line-height:3.005000;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_6927dd9d921a24083dbc5393.woff')format("woff");}.ffd{font-family:ffd;line-height:0.234000;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_b29ca408c43f3c5904070eaa.woff')format("woff");}.ffe{font-family:ffe;line-height:0.897000;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;}
.m1{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);}
.mc{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);}
.m17{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);}
.m20{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);}
.m29{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);}
.m12{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m27{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);}
.m23{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);}
.m6{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);}
.m8{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);}
.m1b{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);}
.m21{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m11{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);}
.m18{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);}
.md{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.mb{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);}
.m1d{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);}
.m7{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);}
.m1c{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);}
.m1e{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);}
.m19{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);}
.m22{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);}
.m5{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);}
.m13{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);}
.ma{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m28{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);}
.mf{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);}
.m10{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);}
.m25{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);}
.m16{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);}
.m3{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);}
.me{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);}
.v17{vertical-align:-45.408000px;}
.v12{vertical-align:-21.696000px;}
.v2{vertical-align:-19.524000px;}
.v3{vertical-align:-17.358000px;}
.ve{vertical-align:-10.698000px;}
.v4{vertical-align:-8.964000px;}
.va{vertical-align:-6.834000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.964000px;}
.vd{vertical-align:11.190000px;}
.vb{vertical-align:12.318000px;}
.v7{vertical-align:17.274000px;}
.v11{vertical-align:20.622000px;}
.v10{vertical-align:21.696000px;}
.v9{vertical-align:24.690000px;}
.v1{vertical-align:26.040000px;}
.v15{vertical-align:31.344000px;}
.v6{vertical-align:40.470000px;}
.v8{vertical-align:43.128000px;}
.vc{vertical-align:45.054000px;}
.vf{vertical-align:53.316000px;}
.v16{vertical-align:76.812000px;}
.v14{vertical-align:84.360000px;}
.v13{vertical-align:89.112000px;}
.v18{vertical-align:104.982000px;}
.ls14{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000017px;}
.ls3f{letter-spacing:0.000054px;}
.ls57{letter-spacing:0.001145px;}
.ls17{letter-spacing:0.001224px;}
.ls19{letter-spacing:0.002725px;}
.ls26{letter-spacing:0.003377px;}
.ls76{letter-spacing:0.003634px;}
.ls65{letter-spacing:0.003900px;}
.ls6e{letter-spacing:0.004200px;}
.ls16{letter-spacing:0.004898px;}
.ls4b{letter-spacing:0.005108px;}
.ls47{letter-spacing:0.005527px;}
.ls3a{letter-spacing:0.005675px;}
.ls80{letter-spacing:0.155527px;}
.ls1f{letter-spacing:0.179108px;}
.ls7c{letter-spacing:0.207634px;}
.ls89{letter-spacing:0.207906px;}
.ls8b{letter-spacing:0.208372px;}
.ls6f{letter-spacing:0.214736px;}
.ls45{letter-spacing:0.435900px;}
.ls59{letter-spacing:0.781136px;}
.ls49{letter-spacing:0.787136px;}
.ls51{letter-spacing:0.968045px;}
.ls30{letter-spacing:1.070383px;}
.ls1a{letter-spacing:1.076383px;}
.ls27{letter-spacing:1.193995px;}
.ls22{letter-spacing:1.199995px;}
.ls53{letter-spacing:1.250725px;}
.ls39{letter-spacing:1.256725px;}
.ls91{letter-spacing:1.339879px;}
.ls0{letter-spacing:1.530259px;}
.ls5{letter-spacing:1.736700px;}
.ls74{letter-spacing:2.270512px;}
.ls73{letter-spacing:2.276512px;}
.ls87{letter-spacing:2.688017px;}
.ls9{letter-spacing:2.798074px;}
.ls48{letter-spacing:2.983500px;}
.ls13{letter-spacing:2.985600px;}
.ls10{letter-spacing:2.985900px;}
.ls79{letter-spacing:2.987518px;}
.ls24{letter-spacing:2.987527px;}
.ls2f{letter-spacing:2.989136px;}
.ls4a{letter-spacing:2.989145px;}
.ls58{letter-spacing:2.989500px;}
.ls6b{letter-spacing:2.990809px;}
.ls81{letter-spacing:2.990847px;}
.ls12{letter-spacing:2.991600px;}
.ls11{letter-spacing:2.991900px;}
.ls72{letter-spacing:2.993518px;}
.ls1e{letter-spacing:2.993527px;}
.ls32{letter-spacing:3.334543px;}
.ls46{letter-spacing:3.580194px;}
.ls21{letter-spacing:3.884725px;}
.ls31{letter-spacing:3.890725px;}
.ls4c{letter-spacing:3.989518px;}
.ls28{letter-spacing:3.995518px;}
.ls4{letter-spacing:4.100726px;}
.ls36{letter-spacing:4.239900px;}
.ls23{letter-spacing:4.600766px;}
.ls44{letter-spacing:4.606766px;}
.ls2{letter-spacing:4.705537px;}
.lsf{letter-spacing:4.729910px;}
.ls7{letter-spacing:4.730074px;}
.ls3{letter-spacing:4.733126px;}
.ls6{letter-spacing:4.733290px;}
.ls1{letter-spacing:4.733453px;}
.lsb{letter-spacing:4.735910px;}
.lse{letter-spacing:4.736074px;}
.lsc{letter-spacing:4.736237px;}
.ls20{letter-spacing:5.379516px;}
.ls7f{letter-spacing:8.368804px;}
.ls5f{letter-spacing:8.791576px;}
.ls8a{letter-spacing:9.832013px;}
.ls7a{letter-spacing:9.962100px;}
.ls8c{letter-spacing:10.055091px;}
.ls3d{letter-spacing:10.161900px;}
.ls70{letter-spacing:10.164263px;}
.ls5a{letter-spacing:10.165145px;}
.ls71{letter-spacing:10.170386px;}
.ls85{letter-spacing:10.742100px;}
.ls50{letter-spacing:11.933651px;}
.ls4d{letter-spacing:13.270183px;}
.ls2c{letter-spacing:13.280725px;}
.ls2b{letter-spacing:13.282718px;}
.ls2a{letter-spacing:13.286725px;}
.ls7b{letter-spacing:13.287634px;}
.ls4e{letter-spacing:13.288718px;}
.ls52{letter-spacing:13.453133px;}
.ls78{letter-spacing:13.491634px;}
.ls90{letter-spacing:13.621512px;}
.ls33{letter-spacing:14.630170px;}
.ls8f{letter-spacing:14.709884px;}
.ls35{letter-spacing:14.823727px;}
.ls6d{letter-spacing:14.851284px;}
.ls1b{letter-spacing:14.942725px;}
.ls8d{letter-spacing:15.013048px;}
.ls15{letter-spacing:15.100607px;}
.ls2d{letter-spacing:15.111202px;}
.ls5b{letter-spacing:16.002791px;}
.ls42{letter-spacing:16.155900px;}
.ls6a{letter-spacing:16.268809px;}
.ls3b{letter-spacing:16.598725px;}
.ls1d{letter-spacing:16.600718px;}
.ls1c{letter-spacing:16.604725px;}
.ls29{letter-spacing:16.606718px;}
.ls86{letter-spacing:17.044058px;}
.ls43{letter-spacing:17.224718px;}
.ls60{letter-spacing:17.368718px;}
.ls7e{letter-spacing:17.436017px;}
.ls68{letter-spacing:17.462809px;}
.ls69{letter-spacing:17.684809px;}
.ls2e{letter-spacing:17.929136px;}
.ls75{letter-spacing:17.931900px;}
.ls34{letter-spacing:18.032645px;}
.ls67{letter-spacing:18.422809px;}
.ls7d{letter-spacing:18.994718px;}
.ls8e{letter-spacing:19.495160px;}
.ls92{letter-spacing:19.517708px;}
.ls3e{letter-spacing:19.593900px;}
.ls5c{letter-spacing:19.605900px;}
.ls5d{letter-spacing:19.607518px;}
.ls5e{letter-spacing:19.611900px;}
.ls38{letter-spacing:19.617900px;}
.ls77{letter-spacing:19.922512px;}
.ls40{letter-spacing:20.377136px;}
.ls41{letter-spacing:20.668718px;}
.ls84{letter-spacing:21.116512px;}
.ls25{letter-spacing:21.224167px;}
.ls37{letter-spacing:21.381900px;}
.ls63{letter-spacing:21.976718px;}
.ls62{letter-spacing:23.660239px;}
.ls93{letter-spacing:23.745900px;}
.ls61{letter-spacing:24.543900px;}
.ls54{letter-spacing:25.202725px;}
.ls8{letter-spacing:25.616700px;}
.lsa{letter-spacing:27.350954px;}
.ls55{letter-spacing:28.234718px;}
.ls88{letter-spacing:31.546718px;}
.ls66{letter-spacing:32.137500px;}
.ls6c{letter-spacing:32.265900px;}
.ls64{letter-spacing:37.647900px;}
.ls56{letter-spacing:39.512725px;}
.ls3c{letter-spacing:75.664718px;}
.lsd{letter-spacing:101.246954px;}
.ls83{letter-spacing:134.296804px;}
.ls82{letter-spacing:168.595500px;}
.ls4f{letter-spacing:455.222100px;}
.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;}
}
.ws84{word-spacing:-74.480398px;}
.ws3a{word-spacing:-61.210214px;}
.ws94{word-spacing:-55.089562px;}
.ws74{word-spacing:-44.683469px;}
.ws6c{word-spacing:-44.592598px;}
.wsb4{word-spacing:-43.397086px;}
.ws5d{word-spacing:-36.881545px;}
.ws93{word-spacing:-33.193613px;}
.ws6a{word-spacing:-29.887800px;}
.wsa6{word-spacing:-26.899200px;}
.ws120{word-spacing:-23.910300px;}
.wsb2{word-spacing:-22.834279px;}
.wsa5{word-spacing:-22.487731px;}
.wsac{word-spacing:-21.818100px;}
.ws9f{word-spacing:-19.785724px;}
.wsf6{word-spacing:-19.666172px;}
.wsb7{word-spacing:-19.367294px;}
.ws85{word-spacing:-18.829314px;}
.ws86{word-spacing:-18.783358px;}
.ws42{word-spacing:-18.530436px;}
.wse2{word-spacing:-18.291334px;}
.ws25{word-spacing:-17.693578px;}
.wsf2{word-spacing:-17.633802px;}
.wsae{word-spacing:-17.394700px;}
.ws15{word-spacing:-17.334924px;}
.wsc1{word-spacing:-17.275148px;}
.wse0{word-spacing:-17.095822px;}
.ws52{word-spacing:-16.976270px;}
.ws1c{word-spacing:-16.796944px;}
.ws5a{word-spacing:-16.737168px;}
.ws5b{word-spacing:-16.731145px;}
.ws54{word-spacing:-16.677392px;}
.ws17{word-spacing:-16.617617px;}
.wse5{word-spacing:-16.557841px;}
.ws27{word-spacing:-16.438290px;}
.ws62{word-spacing:-16.318739px;}
.ws61{word-spacing:-16.292573px;}
.ws63{word-spacing:-16.258963px;}
.ws7e{word-spacing:-16.199188px;}
.wsd5{word-spacing:-16.079636px;}
.ws70{word-spacing:-15.900310px;}
.ws6f{word-spacing:-15.866530px;}
.ws71{word-spacing:-15.840534px;}
.ws7d{word-spacing:-15.780758px;}
.wsbf{word-spacing:-15.720983px;}
.wsdb{word-spacing:-15.709133px;}
.ws78{word-spacing:-15.661207px;}
.ws79{word-spacing:-15.601432px;}
.wsb6{word-spacing:-15.584897px;}
.ws12{word-spacing:-15.541656px;}
.ws69{word-spacing:-15.528690px;}
.ws6b{word-spacing:-15.481880px;}
.wsc6{word-spacing:-15.332544px;}
.ws59{word-spacing:-15.302554px;}
.wsc8{word-spacing:-15.278746px;}
.ws73{word-spacing:-15.274473px;}
.ws75{word-spacing:-15.271995px;}
.ws11{word-spacing:-15.242778px;}
.ws1f{word-spacing:-15.183002px;}
.ws8f{word-spacing:-15.171149px;}
.ws18{word-spacing:-15.123227px;}
.ws65{word-spacing:-15.093468px;}
.ws10{word-spacing:-15.063451px;}
.ws66{word-spacing:-15.061760px;}
.wsaf{word-spacing:-15.040863px;}
.wsb0{word-spacing:-15.038756px;}
.ws92{word-spacing:-15.009754px;}
.ws16{word-spacing:-15.003676px;}
.ws38{word-spacing:-14.944492px;}
.ws1d{word-spacing:-14.943900px;}
.ws7f{word-spacing:-14.925943px;}
.ws30{word-spacing:-14.884124px;}
.ws5c{word-spacing:-14.873366px;}
.ws19{word-spacing:-14.824349px;}
.ws58{word-spacing:-14.803766px;}
.ws57{word-spacing:-14.801223px;}
.ws35{word-spacing:-14.787335px;}
.ws5f{word-spacing:-14.781250px;}
.ws31{word-spacing:-14.764573px;}
.ws9e{word-spacing:-14.749701px;}
.ws1e{word-spacing:-14.704798px;}
.ws81{word-spacing:-14.656012px;}
.ws67{word-spacing:-14.645022px;}
.ws4d{word-spacing:-14.633165px;}
.ws26{word-spacing:-14.585246px;}
.wsc0{word-spacing:-14.525471px;}
.wse4{word-spacing:-14.465695px;}
.ws2c{word-spacing:-14.405920px;}
.ws80{word-spacing:-14.346144px;}
.wsec{word-spacing:-14.226593px;}
.wsb1{word-spacing:-14.167217px;}
.wsb3{word-spacing:-14.162692px;}
.ws50{word-spacing:-14.148979px;}
.ws2e{word-spacing:-14.107042px;}
.wsd2{word-spacing:-14.095181px;}
.wsf4{word-spacing:-14.047266px;}
.ws7b{word-spacing:-13.987490px;}
.ws4f{word-spacing:-13.933786px;}
.wsbe{word-spacing:-13.927715px;}
.ws8a{word-spacing:-13.879987px;}
.ws2d{word-spacing:-13.867939px;}
.wsbd{word-spacing:-13.808164px;}
.wsa8{word-spacing:-13.772390px;}
.wsf8{word-spacing:-13.748388px;}
.ws14{word-spacing:-13.688612px;}
.ws8d{word-spacing:-13.664794px;}
.ws4e{word-spacing:-13.610995px;}
.ws20{word-spacing:-13.569061px;}
.ws4c{word-spacing:-13.557197px;}
.ws4a{word-spacing:-13.503398px;}
.ws51{word-spacing:-13.449600px;}
.ws32{word-spacing:-13.449510px;}
.ws48{word-spacing:-13.395802px;}
.wsba{word-spacing:-13.389734px;}
.ws49{word-spacing:-13.342003px;}
.wsa1{word-spacing:-13.329959px;}
.ws4b{word-spacing:-13.288205px;}
.wscb{word-spacing:-13.270183px;}
.ws47{word-spacing:-13.234406px;}
.ws11c{word-spacing:-13.150665px;}
.ws33{word-spacing:-13.150632px;}
.wsab{word-spacing:-13.090856px;}
.ws8c{word-spacing:-13.073011px;}
.ws22{word-spacing:-13.031081px;}
.wscf{word-spacing:-13.019213px;}
.ws21{word-spacing:-12.971305px;}
.wsde{word-spacing:-12.965414px;}
.wsbb{word-spacing:-12.851754px;}
.ws89{word-spacing:-12.804019px;}
.ws60{word-spacing:-12.791978px;}
.wsc7{word-spacing:-12.750221px;}
.ws36{word-spacing:-12.732203px;}
.wsdd{word-spacing:-12.696422px;}
.wsf1{word-spacing:-12.672427px;}
.ws88{word-spacing:-12.642624px;}
.ws76{word-spacing:-12.612652px;}
.ws113{word-spacing:-12.576818px;}
.wsc4{word-spacing:-12.552876px;}
.wsdc{word-spacing:-12.535027px;}
.ws125{word-spacing:-12.528997px;}
.ws8e{word-spacing:-12.481229px;}
.wsa0{word-spacing:-12.433325px;}
.ws116{word-spacing:-12.385535px;}
.ws9a{word-spacing:-12.373549px;}
.ws118{word-spacing:-12.337715px;}
.wsce{word-spacing:-12.319834px;}
.wse3{word-spacing:-12.313774px;}
.wsd1{word-spacing:-12.212237px;}
.ws123{word-spacing:-12.194253px;}
.ws9d{word-spacing:-12.194222px;}
.ws110{word-spacing:-12.146432px;}
.ws37{word-spacing:-12.134447px;}
.wsd7{word-spacing:-12.104640px;}
.ws104{word-spacing:-12.098612px;}
.ws8b{word-spacing:-12.050842px;}
.wsf9{word-spacing:-12.002971px;}
.ws112{word-spacing:-11.956350px;}
.ws128{word-spacing:-11.955523px;}
.wse{word-spacing:-11.955150px;}
.ws34{word-spacing:-11.955120px;}
.ws127{word-spacing:-11.954493px;}
.ws11e{word-spacing:-11.954320px;}
.ws100{word-spacing:-11.952071px;}
.ws115{word-spacing:-11.950438px;}
.wscd{word-spacing:-11.943245px;}
.ws103{word-spacing:-11.907329px;}
.ws82{word-spacing:-11.895344px;}
.ws119{word-spacing:-11.859509px;}
.wse9{word-spacing:-11.835569px;}
.ws12b{word-spacing:-11.811688px;}
.ws11b{word-spacing:-11.763868px;}
.ws10d{word-spacing:-11.716047px;}
.ws64{word-spacing:-11.716018px;}
.ws129{word-spacing:-11.668226px;}
.ws7a{word-spacing:-11.536691px;}
.wsad{word-spacing:-11.417140px;}
.wsa3{word-spacing:-11.297664px;}
.ws10a{word-spacing:-11.285662px;}
.wsfd{word-spacing:-11.190020px;}
.ws2b{word-spacing:-11.178037px;}
.ws83{word-spacing:-11.118262px;}
.ws68{word-spacing:-11.056800px;}
.ws23{word-spacing:-10.998710px;}
.ws108{word-spacing:-10.950917px;}
.wsa9{word-spacing:-10.867277px;}
.ws41{word-spacing:-10.774962px;}
.ws40{word-spacing:-10.759608px;}
.ws44{word-spacing:-10.580281px;}
.wsb8{word-spacing:-10.460730px;}
.ws10e{word-spacing:-10.424891px;}
.wsd3{word-spacing:-10.400954px;}
.ws106{word-spacing:-10.377070px;}
.wse6{word-spacing:-10.341179px;}
.wsca{word-spacing:-10.281403px;}
.wsda{word-spacing:-10.275494px;}
.ws46{word-spacing:-10.221696px;}
.wsb9{word-spacing:-10.221628px;}
.wsa4{word-spacing:-10.167898px;}
.ws96{word-spacing:-10.161852px;}
.ws28{word-spacing:-10.102076px;}
.ws90{word-spacing:-10.060301px;}
.ws91{word-spacing:-10.006502px;}
.ws43{word-spacing:-9.623872px;}
.ws6d{word-spacing:-9.564096px;}
.wsd9{word-spacing:-9.253325px;}
.wse1{word-spacing:-9.026116px;}
.ws101{word-spacing:-8.751170px;}
.ws3e{word-spacing:-8.667462px;}
.ws3d{word-spacing:-8.663197px;}
.ws3c{word-spacing:-8.660767px;}
.wsd8{word-spacing:-8.553946px;}
.wsf0{word-spacing:-8.547911px;}
.ws24{word-spacing:-8.488135px;}
.wsea{word-spacing:-8.308808px;}
.ws3f{word-spacing:-8.189257px;}
.ws72{word-spacing:-7.950155px;}
.ws9c{word-spacing:-7.890379px;}
.wsee{word-spacing:-7.830604px;}
.wsc3{word-spacing:-7.711052px;}
.ws53{word-spacing:-7.531726px;}
.ws13{word-spacing:-7.471950px;}
.ws98{word-spacing:-7.352399px;}
.wsd0{word-spacing:-7.262784px;}
.wsdf{word-spacing:-6.455765px;}
.wsf7{word-spacing:-6.276438px;}
.wsed{word-spacing:-6.216662px;}
.wsc2{word-spacing:-5.738458px;}
.wsfb{word-spacing:-5.308087px;}
.ws11f{word-spacing:-5.068984px;}
.ws7c{word-spacing:-4.901599px;}
.ws4{word-spacing:-4.762922px;}
.ws5{word-spacing:-0.071731px;}
.ws39{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.057385px;}
.wsfa{word-spacing:-0.053798px;}
.ws7{word-spacing:-0.052603px;}
.wsf{word-spacing:-0.047821px;}
.ws55{word-spacing:-0.043636px;}
.ws1{word-spacing:0.000000px;}
.wsf5{word-spacing:9.982525px;}
.ws11d{word-spacing:10.711814px;}
.ws114{word-spacing:11.285662px;}
.ws126{word-spacing:11.333482px;}
.ws117{word-spacing:11.476944px;}
.ws0{word-spacing:11.590456px;}
.ws124{word-spacing:11.668226px;}
.ws111{word-spacing:11.716047px;}
.ws105{word-spacing:11.763868px;}
.ws10f{word-spacing:11.859509px;}
.wsff{word-spacing:11.907329px;}
.ws122{word-spacing:12.002971px;}
.ws12c{word-spacing:12.050791px;}
.ws11a{word-spacing:12.098612px;}
.ws10c{word-spacing:12.146432px;}
.ws12a{word-spacing:12.194253px;}
.ws2a{word-spacing:12.418464px;}
.ws10b{word-spacing:12.576818px;}
.wsfe{word-spacing:12.672459px;}
.ws109{word-spacing:12.911562px;}
.wsa7{word-spacing:13.062097px;}
.ws1a{word-spacing:13.246306px;}
.wsd{word-spacing:13.395802px;}
.ws107{word-spacing:13.485409px;}
.wsc5{word-spacing:13.503398px;}
.wsd4{word-spacing:14.333712px;}
.wsc9{word-spacing:14.743394px;}
.ws99{word-spacing:14.884124px;}
.wsbc{word-spacing:14.902157px;}
.wsf3{word-spacing:15.003676px;}
.ws102{word-spacing:15.111310px;}
.ws9b{word-spacing:15.183442px;}
.wse7{word-spacing:15.362329px;}
.wsb{word-spacing:15.453423px;}
.ws3{word-spacing:15.467282px;}
.ws9{word-spacing:15.472826px;}
.wsa{word-spacing:15.476516px;}
.wsc{word-spacing:15.480677px;}
.ws87{word-spacing:15.816730px;}
.wseb{word-spacing:15.960085px;}
.wsaa{word-spacing:15.978959px;}
.wsd6{word-spacing:16.247117px;}
.wscc{word-spacing:16.408512px;}
.ws2f{word-spacing:16.557841px;}
.wsa2{word-spacing:16.946496px;}
.ws45{word-spacing:17.861069px;}
.wse8{word-spacing:18.351109px;}
.wsef{word-spacing:21.698543px;}
.wsfc{word-spacing:23.851085px;}
.ws2{word-spacing:25.344918px;}
.ws121{word-spacing:27.401204px;}
.ws97{word-spacing:43.157983px;}
.ws1b{word-spacing:59.715824px;}
.wsb5{word-spacing:89.663400px;}
.ws8{word-spacing:101.189692px;}
.ws12d{word-spacing:104.248908px;}
.ws56{word-spacing:445.268444px;}
.ws95{word-spacing:548.620457px;}
.ws3b{word-spacing:705.650958px;}
.ws5e{word-spacing:763.991944px;}
.ws77{word-spacing:844.509677px;}
.ws6e{word-spacing:866.985302px;}
.ws29{word-spacing:1408.083456px;}
._1f{margin-left:-32.996131px;}
._1a{margin-left:-13.245272px;}
._12{margin-left:-6.276401px;}
._9{margin-left:-4.762922px;}
._2{margin-left:-3.347424px;}
._c{margin-left:-2.271493px;}
._0{margin-left:-1.255284px;}
._8{width:1.312084px;}
._7{width:2.871796px;}
._6{width:4.678930px;}
._3{width:6.569320px;}
._4{width:7.772108px;}
._1c{width:11.178037px;}
._27{width:12.441092px;}
._d{width:13.569102px;}
._23{width:14.653930px;}
._10{width:15.661268px;}
._e{width:17.523245px;}
._1b{width:18.823596px;}
._15{width:19.905295px;}
._a{width:20.962109px;}
._5{width:22.051013px;}
._26{width:23.372256px;}
._b{width:24.388445px;}
._20{width:25.703569px;}
._17{width:26.779550px;}
._f{width:28.817818px;}
._1d{width:29.828035px;}
._18{width:31.083312px;}
._1e{width:32.517724px;}
._24{width:34.762725px;}
._13{width:36.623303px;}
._22{width:38.196608px;}
._25{width:39.753753px;}
._11{width:40.949306px;}
._19{width:42.421570px;}
._21{width:44.592635px;}
._16{width:59.775600px;}
._28{width:157.509109px;}
._14{width:198.683468px;}
._1{width:830.021906px;}
.fc3{color:rgb(46,46,177);}
.fc2{color:rgb(148,54,52);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:32.877000px;}
.fs7{font-size:37.060800px;}
.fs0{font-size:41.842800px;}
.fs5{font-size:43.636200px;}
.fsa{font-size:44.832000px;}
.fs8{font-size:47.820600px;}
.fs4{font-size:52.602600px;}
.fs6{font-size:53.798400px;}
.fs3{font-size:57.384600px;}
.fs9{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y30{bottom:86.494500px;}
.y2f{bottom:101.437500px;}
.y8f{bottom:138.159000px;}
.y8e{bottom:140.400000px;}
.y11a{bottom:143.479500px;}
.y62{bottom:144.462000px;}
.y23e{bottom:145.209000px;}
.y13a{bottom:146.749500px;}
.y2e{bottom:147.606000px;}
.y1d3{bottom:148.678500px;}
.y1b6{bottom:148.959000px;}
.yee{bottom:152.173500px;}
.y1f5{bottom:153.978000px;}
.y8d{bottom:156.091500px;}
.y8c{bottom:158.332500px;}
.y2a3{bottom:160.098000px;}
.y61{bottom:162.394500px;}
.y23d{bottom:163.141500px;}
.y266{bottom:163.285500px;}
.y139{bottom:164.682000px;}
.y2d{bottom:165.538500px;}
.y1d2{bottom:166.611000px;}
.y1b5{bottom:166.893000px;}
.yed{bottom:167.863500px;}
.yec{bottom:170.106000px;}
.y1f4{bottom:171.910500px;}
.y2a2{bottom:174.295500px;}
.y8b{bottom:176.266500px;}
.y60{bottom:180.327000px;}
.y23c{bottom:181.074000px;}
.y138{bottom:182.614500px;}
.y2c{bottom:183.471000px;}
.y20d{bottom:184.027500px;}
.y1d1{bottom:184.543500px;}
.y1b4{bottom:184.825500px;}
.y265{bottom:186.169500px;}
.yeb{bottom:188.038500px;}
.y2a1{bottom:188.491500px;}
.y1f3{bottom:189.844500px;}
.y119{bottom:191.956500px;}
.ybc{bottom:193.068000px;}
.y8a{bottom:194.199000px;}
.y5f{bottom:198.259500px;}
.y23b{bottom:199.006500px;}
.y137{bottom:200.548500px;}
.y2b{bottom:201.403500px;}
.y20c{bottom:201.960000px;}
.y1d0{bottom:202.476000px;}
.y2a0{bottom:202.689000px;}
.y1b3{bottom:202.758000px;}
.yea{bottom:205.971000px;}
.y1f2{bottom:207.777000px;}
.ybb{bottom:208.758000px;}
.y264{bottom:209.053500px;}
.yba{bottom:211.000500px;}
.y89{bottom:212.131500px;}
.y29f{bottom:216.885000px;}
.y23a{bottom:216.939000px;}
.y136{bottom:218.481000px;}
.y2a{bottom:219.336000px;}
.y20b{bottom:219.894000px;}
.y1cf{bottom:220.408500px;}
.y1b2{bottom:220.690500px;}
.ye9{bottom:221.662500px;}
.y5e{bottom:222.918000px;}
.y263{bottom:223.251000px;}
.ye8{bottom:223.903500px;}
.y1f1{bottom:225.709500px;}
.yb9{bottom:228.933000px;}
.y88{bottom:230.064000px;}
.y29e{bottom:231.082500px;}
.y166{bottom:234.711000px;}
.y239{bottom:234.873000px;}
.y135{bottom:236.413500px;}
.y118{bottom:236.788500px;}
.y29{bottom:237.270000px;}
.y262{bottom:237.447000px;}
.y20a{bottom:237.826500px;}
.y1ce{bottom:238.341000px;}
.y1b1{bottom:238.623000px;}
.ye7{bottom:241.836000px;}
.y1f0{bottom:243.642000px;}
.y29d{bottom:245.278500px;}
.yb8{bottom:246.865500px;}
.y163{bottom:247.488000px;}
.y87{bottom:247.996500px;}
.y165{bottom:250.402500px;}
.y161{bottom:252.643500px;}
.y238{bottom:252.805500px;}
.y134{bottom:254.346000px;}
.y28{bottom:255.202500px;}
.y209{bottom:255.759000px;}
.y5d{bottom:255.981000px;}
.y1cd{bottom:256.275000px;}
.y1b0{bottom:256.555500px;}
.y164{bottom:258.531000px;}
.y162{bottom:259.447500px;}
.y29c{bottom:259.476000px;}
.y261{bottom:260.331000px;}
.y1ef{bottom:261.574500px;}
.y86{bottom:263.688000px;}
.yb7{bottom:264.798000px;}
.y85{bottom:265.929000px;}
.y117{bottom:269.454000px;}
.y160{bottom:270.576000px;}
.y237{bottom:270.738000px;}
.y133{bottom:272.278500px;}
.y27{bottom:273.135000px;}
.y29b{bottom:273.672000px;}
.y208{bottom:273.691500px;}
.ye6{bottom:273.757500px;}
.y5c{bottom:273.913500px;}
.y1cc{bottom:274.207500px;}
.y1af{bottom:274.489500px;}
.y260{bottom:274.528500px;}
.y1ee{bottom:279.507000px;}
.yb6{bottom:282.730500px;}
.y83{bottom:283.863000px;}
.y116{bottom:287.386500px;}
.y29a{bottom:287.869500px;}
.y15f{bottom:288.508500px;}
.y236{bottom:288.670500px;}
.y84{bottom:289.287000px;}
.y132{bottom:290.211000px;}
.y26{bottom:291.067500px;}
.y207{bottom:291.624000px;}
.y5b{bottom:291.846000px;}
.y1ae{bottom:292.422000px;}
.ye5{bottom:296.173500px;}
.y25f{bottom:297.412500px;}
.y1ed{bottom:297.441000px;}
.y1cb{bottom:298.864500px;}
.ye4{bottom:299.251500px;}
.y194{bottom:301.795500px;}
.y299{bottom:302.065500px;}
.y115{bottom:305.319000px;}
.y15e{bottom:306.442500px;}
.y235{bottom:306.603000px;}
.y131{bottom:308.145000px;}
.y25{bottom:309.000000px;}
.y206{bottom:309.556500px;}
.y5a{bottom:309.778500px;}
.y1ad{bottom:310.354500px;}
.y82{bottom:314.545500px;}
.y25e{bottom:315.345000px;}
.y1ec{bottom:315.373500px;}
.yb5{bottom:315.607500px;}
.y298{bottom:316.263000px;}
.y193{bottom:319.728000px;}
.y114{bottom:323.251500px;}
.y15d{bottom:324.375000px;}
.y234{bottom:324.535500px;}
.y130{bottom:326.077500px;}
.y113{bottom:326.361000px;}
.y24{bottom:326.932500px;}
.y205{bottom:327.490500px;}
.y59{bottom:327.712500px;}
.y1ac{bottom:328.287000px;}
.ye3{bottom:329.019000px;}
.y297{bottom:330.459000px;}
.y1ca{bottom:331.927500px;}
.y25d{bottom:333.279000px;}
.y192{bottom:337.660500px;}
.y1eb{bottom:340.030500px;}
.y111{bottom:341.185500px;}
.y233{bottom:342.469500px;}
.y12f{bottom:344.010000px;}
.y112{bottom:344.263500px;}
.y296{bottom:344.656500px;}
.ye2{bottom:344.710500px;}
.y23{bottom:344.866500px;}
.y81{bottom:345.228000px;}
.y204{bottom:345.423000px;}
.y57{bottom:345.645000px;}
.y1ab{bottom:346.219500px;}
.ye1{bottom:346.953000px;}
.yb4{bottom:348.484500px;}
.y15c{bottom:349.032000px;}
.y1c9{bottom:349.861500px;}
.y58{bottom:351.069000px;}
.y25c{bottom:351.211500px;}
.y191{bottom:355.593000px;}
.y110{bottom:356.875500px;}
.y295{bottom:358.852500px;}
.y10f{bottom:359.118000px;}
.y12d{bottom:359.701500px;}
.y232{bottom:360.402000px;}
.y80{bottom:360.919500px;}
.y12c{bottom:361.942500px;}
.y22{bottom:362.799000px;}
.y7f{bottom:363.162000px;}
.y203{bottom:363.355500px;}
.y56{bottom:363.577500px;}
.y1aa{bottom:364.152000px;}
.ye0{bottom:364.885500px;}
.yb3{bottom:366.417000px;}
.y12e{bottom:367.368000px;}
.y1c8{bottom:367.794000px;}
.y25b{bottom:369.144000px;}
.y294{bottom:373.050000px;}
.y1ea{bottom:373.093500px;}
.y231{bottom:378.334500px;}
.y7e{bottom:378.852000px;}
.y54{bottom:379.269000px;}
.y12b{bottom:379.875000px;}
.y190{bottom:380.251500px;}
.ydf{bottom:380.577000px;}
.y21{bottom:380.731500px;}
.y7d{bottom:381.094500px;}
.y53{bottom:381.510000px;}
.y1a9{bottom:382.086000px;}
.y15b{bottom:382.095000px;}
.yde{bottom:382.818000px;}
.yb1{bottom:384.349500px;}
.y1c7{bottom:385.726500px;}
.y10e{bottom:385.978500px;}
.y10d{bottom:386.853000px;}
.y55{bottom:386.935500px;}
.y25a{bottom:387.076500px;}
.y293{bottom:387.246000px;}
.yb2{bottom:389.775000px;}
.y1e9{bottom:391.027500px;}
.y230{bottom:396.267000px;}
.y10a{bottom:397.104000px;}
.y12a{bottom:397.807500px;}
.ydd{bottom:398.509500px;}
.y20{bottom:398.664000px;}
.y7c{bottom:399.027000px;}
.y1a8{bottom:400.018500px;}
.y15a{bottom:400.029000px;}
.y109{bottom:400.212000px;}
.y202{bottom:400.392000px;}
.ydc{bottom:400.750500px;}
.y292{bottom:401.443500px;}
.yb0{bottom:402.283500px;}
.y1c6{bottom:403.659000px;}
.y259{bottom:405.009000px;}
.y10c{bottom:407.221500px;}
.y1e8{bottom:408.960000px;}
.y10b{bottom:410.299500px;}
.y18f{bottom:413.257500px;}
.y22f{bottom:414.199500px;}
.y52{bottom:414.387000px;}
.y7b{bottom:414.718500px;}
.y291{bottom:415.639500px;}
.y129{bottom:415.741500px;}
.y1f{bottom:416.596500px;}
.y201{bottom:416.830500px;}
.y7a{bottom:416.959500px;}
.y1a7{bottom:417.951000px;}
.y159{bottom:417.961500px;}
.ydb{bottom:418.683000px;}
.yaf{bottom:420.216000px;}
.y1c5{bottom:421.591500px;}
.y258{bottom:422.941500px;}
.y1e7{bottom:426.892500px;}
.y290{bottom:429.837000px;}
.y18d{bottom:431.190000px;}
.y22e{bottom:432.132000px;}
.y200{bottom:433.269000px;}
.y128{bottom:433.674000px;}
.y1e{bottom:434.529000px;}
.y1a6{bottom:435.883500px;}
.y158{bottom:435.894000px;}
.y18e{bottom:436.614000px;}
.yda{bottom:436.615500px;}
.y108{bottom:437.854500px;}
.yae{bottom:438.148500px;}
.y1c4{bottom:439.524000px;}
.y257{bottom:440.875500px;}
.y28f{bottom:444.033000px;}
.y1e6{bottom:444.825000px;}
.y51{bottom:447.264000px;}
.y79{bottom:447.643500px;}
.y18b{bottom:449.122500px;}
.y1ff{bottom:449.707500px;}
.y22d{bottom:450.066000px;}
.y127{bottom:451.606500px;}
.y1d{bottom:452.463000px;}
.y1a5{bottom:453.816000px;}
.y157{bottom:453.826500px;}
.y18c{bottom:454.546500px;}
.yd9{bottom:454.549500px;}
.y107{bottom:455.787000px;}
.yad{bottom:456.081000px;}
.y1c3{bottom:457.458000px;}
.y28e{bottom:458.230500px;}
.y256{bottom:458.808000px;}
.y1e5{bottom:462.757500px;}
.y50{bottom:465.196500px;}
.y1fe{bottom:466.144500px;}
.y18a{bottom:467.055000px;}
.y22c{bottom:467.998500px;}
.y1c{bottom:470.395500px;}
.y1a4{bottom:471.748500px;}
.y156{bottom:471.759000px;}
.y28d{bottom:472.426500px;}
.yd8{bottom:472.482000px;}
.y106{bottom:473.719500px;}
.yac{bottom:474.013500px;}
.y1c2{bottom:475.390500px;}
.y126{bottom:476.263500px;}
.y255{bottom:476.740500px;}
.y78{bottom:478.326000px;}
.y1e4{bottom:480.690000px;}
.y1fd{bottom:482.583000px;}
.y4f{bottom:483.129000px;}
.y189{bottom:484.987500px;}
.y22b{bottom:485.931000px;}
.y28c{bottom:486.624000px;}
.y1b{bottom:488.328000px;}
.y155{bottom:489.691500px;}
.y105{bottom:491.653500px;}
.yab{bottom:491.946000px;}
.y1c1{bottom:493.323000px;}
.y254{bottom:494.673000px;}
.y77{bottom:496.258500px;}
.y1a3{bottom:496.407000px;}
.yd7{bottom:497.139000px;}
.y1e3{bottom:498.624000px;}
.y4e{bottom:498.820500px;}
.y1fc{bottom:499.021500px;}
.y28b{bottom:500.820000px;}
.y4d{bottom:501.061500px;}
.y188{bottom:502.921500px;}
.y22a{bottom:503.863500px;}
.y1a{bottom:506.260500px;}
.y154{bottom:507.625500px;}
.y125{bottom:509.328000px;}
.y104{bottom:509.586000px;}
.y253{bottom:512.605500px;}
.y76{bottom:514.191000px;}
.y28a{bottom:515.017500px;}
.y1fb{bottom:515.460000px;}
.y1e2{bottom:516.556500px;}
.yaa{bottom:516.604500px;}
.y4c{bottom:516.753000px;}
.y4b{bottom:518.994000px;}
.y187{bottom:520.854000px;}
.y229{bottom:521.796000px;}
.y19{bottom:524.193000px;}
.y153{bottom:525.558000px;}
.y124{bottom:527.260500px;}
.y103{bottom:527.518500px;}
.yd6{bottom:527.961000px;}
.y289{bottom:529.213500px;}
.y1a2{bottom:529.470000px;}
.yd5{bottom:530.202000px;}
.y252{bottom:530.538000px;}
.y1fa{bottom:531.898500px;}
.y75{bottom:532.125000px;}
.y1e1{bottom:534.489000px;}
.y4a{bottom:536.928000px;}
.y186{bottom:538.786500px;}
.y228{bottom:539.728500px;}
.y18{bottom:542.125500px;}
.y1c0{bottom:542.560500px;}
.y288{bottom:543.411000px;}
.y152{bottom:543.490500px;}
.y123{bottom:545.193000px;}
.y101{bottom:545.451000px;}
.y1a1{bottom:547.402500px;}
.yd4{bottom:548.136000px;}
.y1f9{bottom:548.337000px;}
.y251{bottom:548.472000px;}
.y102{bottom:548.529000px;}
.ya9{bottom:549.667500px;}
.y74{bottom:550.057500px;}
.y1e0{bottom:552.421500px;}
.y49{bottom:554.860500px;}
.y185{bottom:556.719000px;}
.y287{bottom:557.607000px;}
.y227{bottom:557.662500px;}
.y1bf{bottom:558.999000px;}
.y17{bottom:560.059500px;}
.y150{bottom:561.423000px;}
.y122{bottom:563.125500px;}
.y1f8{bottom:564.775500px;}
.y1a0{bottom:565.335000px;}
.ya8{bottom:565.359000px;}
.yd3{bottom:566.068500px;}
.y250{bottom:566.404500px;}
.y151{bottom:566.847000px;}
.ya7{bottom:567.600000px;}
.y73{bottom:567.990000px;}
.y100{bottom:570.108000px;}
.y1df{bottom:570.354000px;}
.y286{bottom:571.804500px;}
.y48{bottom:572.793000px;}
.y184{bottom:574.651500px;}
.y1be{bottom:575.437500px;}
.y226{bottom:575.595000px;}
.y14e{bottom:579.355500px;}
.y121{bottom:581.058000px;}
.y1f7{bottom:581.214000px;}
.y19f{bottom:583.269000px;}
.yd2{bottom:584.001000px;}
.y24f{bottom:584.337000px;}
.y14f{bottom:584.781000px;}
.y72{bottom:585.922500px;}
.y285{bottom:586.000500px;}
.y16{bottom:586.734000px;}
.y1de{bottom:588.286500px;}
.y47{bottom:590.725500px;}
.y1bd{bottom:591.876000px;}
.y225{bottom:593.527500px;}
.y14d{bottom:597.288000px;}
.ya6{bottom:597.547500px;}
.y1f6{bottom:597.652500px;}
.y120{bottom:598.990500px;}
.y284{bottom:600.198000px;}
.y19d{bottom:601.201500px;}
.y183{bottom:601.327500px;}
.yd1{bottom:601.933500px;}
.y24e{bottom:602.269500px;}
.y1dd{bottom:606.220500px;}
.y19e{bottom:606.625500px;}
.y1bc{bottom:608.314500px;}
.ya5{bottom:608.329500px;}
.y224{bottom:611.460000px;}
.y283{bottom:614.394000px;}
.y14c{bottom:615.222000px;}
.y46{bottom:615.382500px;}
.y11f{bottom:616.924500px;}
.yff{bottom:617.577000px;}
.y19b{bottom:619.134000px;}
.yd0{bottom:619.866000px;}
.y24d{bottom:620.202000px;}
.y15{bottom:622.599000px;}
.y1dc{bottom:624.153000px;}
.y19c{bottom:624.558000px;}
.y1bb{bottom:624.753000px;}
.y282{bottom:628.591500px;}
.y223{bottom:629.392500px;}
.y14b{bottom:633.154500px;}
.y71{bottom:633.406500px;}
.yfe{bottom:634.014000px;}
.y11e{bottom:634.857000px;}
.y182{bottom:636.013500px;}
.y199{bottom:637.066500px;}
.y24c{bottom:638.134500px;}
.y1ba{bottom:641.191500px;}
.y19a{bottom:642.490500px;}
.y281{bottom:642.787500px;}
.ycf{bottom:646.542000px;}
.y222{bottom:647.325000px;}
.ya4{bottom:648.222000px;}
.y45{bottom:648.447000px;}
.y70{bottom:649.843500px;}
.yfd{bottom:650.452500px;}
.y14a{bottom:651.087000px;}
.y11d{bottom:652.789500px;}
.y181{bottom:653.947500px;}
.y198{bottom:654.999000px;}
.y24b{bottom:656.068500px;}
.y280{bottom:656.985000px;}
.y1b9{bottom:657.630000px;}
.y14{bottom:658.465500px;}
.y148{bottom:663.864000px;}
.y221{bottom:665.259000px;}
.ya3{bottom:666.156000px;}
.y6f{bottom:666.282000px;}
.y44{bottom:666.379500px;}
.yfc{bottom:666.891000px;}
.y145{bottom:669.019500px;}
.y1db{bottom:670.647000px;}
.y27f{bottom:671.182500px;}
.y180{bottom:671.880000px;}
.y24a{bottom:674.001000px;}
.y1b8{bottom:674.068500px;}
.y146{bottom:674.443500px;}
.y149{bottom:674.907000px;}
.y147{bottom:675.823500px;}
.y13{bottom:676.398000px;}
.y11c{bottom:679.464000px;}
.yce{bottom:681.286500px;}
.y6e{bottom:682.720500px;}
.y220{bottom:683.191500px;}
.yfb{bottom:683.329500px;}
.y43{bottom:684.312000px;}
.y27e{bottom:685.378500px;}
.y144{bottom:686.952000px;}
.y1da{bottom:687.085500px;}
.y17f{bottom:689.812500px;}
.y1b7{bottom:690.505500px;}
.ya2{bottom:690.813000px;}
.y249{bottom:691.933500px;}
.y12{bottom:694.330500px;}
.y6d{bottom:699.159000px;}
.ycd{bottom:699.219000px;}
.y27d{bottom:699.576000px;}
.y143{bottom:699.729000px;}
.yfa{bottom:699.768000px;}
.y21f{bottom:701.124000px;}
.y42{bottom:702.244500px;}
.y1d9{bottom:703.524000px;}
.y197{bottom:704.238000px;}
.y141{bottom:704.884500px;}
.y17e{bottom:707.745000px;}
.y248{bottom:709.866000px;}
.y142{bottom:710.773500px;}
.y11{bottom:712.263000px;}
.y27c{bottom:713.772000px;}
.yf9{bottom:714.189000px;}
.y6c{bottom:715.597500px;}
.yf8{bottom:716.206500px;}
.ycc{bottom:717.151500px;}
.y21e{bottom:719.056500px;}
.y1d8{bottom:719.962500px;}
.y41{bottom:720.177000px;}
.y196{bottom:720.675000px;}
.ya1{bottom:723.876000px;}
.y17d{bottom:725.677500px;}
.y247{bottom:727.798500px;}
.y27b{bottom:727.969500px;}
.y10{bottom:730.195500px;}
.y6b{bottom:732.036000px;}
.yf7{bottom:732.645000px;}
.ycb{bottom:735.084000px;}
.y1d7{bottom:736.401000px;}
.y21d{bottom:736.989000px;}
.y195{bottom:737.113500px;}
.y40{bottom:738.111000px;}
.ya0{bottom:741.808500px;}
.y27a{bottom:742.165500px;}
.y17c{bottom:743.610000px;}
.y246{bottom:745.731000px;}
.yf{bottom:748.128000px;}
.y6a{bottom:748.474500px;}
.yf6{bottom:749.083500px;}
.y140{bottom:751.380000px;}
.y1d6{bottom:752.839500px;}
.yca{bottom:753.016500px;}
.y21c{bottom:754.921500px;}
.y3f{bottom:756.043500px;}
.y279{bottom:756.363000px;}
.y9f{bottom:759.741000px;}
.y17b{bottom:761.544000px;}
.y245{bottom:763.665000px;}
.y69{bottom:764.913000px;}
.yf5{bottom:765.522000px;}
.ye{bottom:766.062000px;}
.y13f{bottom:767.818500px;}
.y1d5{bottom:769.276500px;}
.y278{bottom:770.559000px;}
.yc9{bottom:770.949000px;}
.y21b{bottom:772.855500px;}
.y3e{bottom:773.976000px;}
.y9e{bottom:777.675000px;}
.y17a{bottom:779.476500px;}
.yf4{bottom:779.943000px;}
.y68{bottom:781.351500px;}
.y244{bottom:781.597500px;}
.yf3{bottom:781.960500px;}
.yd{bottom:783.994500px;}
.y13e{bottom:784.255500px;}
.y277{bottom:784.756500px;}
.y1d4{bottom:785.715000px;}
.yc8{bottom:788.883000px;}
.y21a{bottom:790.788000px;}
.y3d{bottom:791.908500px;}
.y9d{bottom:795.607500px;}
.y179{bottom:797.409000px;}
.y67{bottom:797.790000px;}
.y13d{bottom:798.064500px;}
.yf2{bottom:798.399000px;}
.y276{bottom:798.952500px;}
.y243{bottom:799.530000px;}
.y13c{bottom:800.694000px;}
.yc{bottom:801.927000px;}
.yc7{bottom:806.815500px;}
.y219{bottom:808.720500px;}
.y9c{bottom:811.299000px;}
.y275{bottom:813.150000px;}
.y9b{bottom:813.540000px;}
.y66{bottom:814.227000px;}
.yf1{bottom:814.836000px;}
.y178{bottom:815.341500px;}
.y13b{bottom:817.132500px;}
.y242{bottom:817.462500px;}
.y3c{bottom:818.583000px;}
.yb{bottom:819.859500px;}
.yc6{bottom:824.748000px;}
.y218{bottom:826.653000px;}
.y274{bottom:827.346000px;}
.y65{bottom:830.665500px;}
.yf0{bottom:831.274500px;}
.y9a{bottom:831.472500px;}
.y177{bottom:833.274000px;}
.y241{bottom:835.395000px;}
.ya{bottom:837.792000px;}
.y273{bottom:841.543500px;}
.y217{bottom:844.585500px;}
.y64{bottom:847.104000px;}
.yef{bottom:847.713000px;}
.y176{bottom:848.965500px;}
.y99{bottom:849.405000px;}
.y175{bottom:851.206500px;}
.y3b{bottom:853.327500px;}
.y272{bottom:855.739500px;}
.y216{bottom:862.518000px;}
.y63{bottom:863.542500px;}
.y98{bottom:867.337500px;}
.y174{bottom:869.140500px;}
.y271{bottom:869.937000px;}
.y3a{bottom:871.261500px;}
.y9{bottom:877.998000px;}
.y215{bottom:880.452000px;}
.yc5{bottom:882.469500px;}
.y270{bottom:884.133000px;}
.y173{bottom:884.830500px;}
.y97{bottom:885.271500px;}
.y172{bottom:887.073000px;}
.y39{bottom:889.194000px;}
.y8{bottom:892.194000px;}
.y240{bottom:894.618000px;}
.y26f{bottom:898.330500px;}
.y214{bottom:898.384500px;}
.yc4{bottom:900.402000px;}
.y96{bottom:900.961500px;}
.y95{bottom:903.204000px;}
.y7{bottom:906.933000px;}
.y38{bottom:907.126500px;}
.y26e{bottom:912.526500px;}
.y16d{bottom:915.619500px;}
.y213{bottom:916.317000px;}
.yc3{bottom:918.334500px;}
.y94{bottom:918.895500px;}
.y170{bottom:920.221500px;}
.y93{bottom:921.136500px;}
.y6{bottom:923.371500px;}
.y16c{bottom:924.883500px;}
.y37{bottom:925.059000px;}
.y26d{bottom:926.724000px;}
.y16b{bottom:929.367000px;}
.y23f{bottom:930.484500px;}
.y212{bottom:934.249500px;}
.yc2{bottom:936.267000px;}
.y168{bottom:938.770500px;}
.y92{bottom:939.069000px;}
.y26c{bottom:940.920000px;}
.y36{bottom:942.991500px;}
.y16f{bottom:944.374500px;}
.y5{bottom:944.469000px;}
.y16e{bottom:949.530000px;}
.y171{bottom:950.725500px;}
.y16a{bottom:952.081500px;}
.y211{bottom:952.182000px;}
.yc1{bottom:954.199500px;}
.y26b{bottom:955.117500px;}
.y169{bottom:956.565000px;}
.y35{bottom:960.924000px;}
.y91{bottom:963.727500px;}
.y4{bottom:965.389500px;}
.y11b{bottom:966.901500px;}
.y26a{bottom:969.313500px;}
.y210{bottom:970.114500px;}
.yc0{bottom:972.132000px;}
.y2a6{bottom:975.868500px;}
.y34{bottom:978.858000px;}
.y167{bottom:982.815000px;}
.y269{bottom:983.511000px;}
.y20f{bottom:988.048500px;}
.ybf{bottom:990.066000px;}
.y33{bottom:996.790500px;}
.y268{bottom:997.707000px;}
.y3{bottom:1002.510000px;}
.y2a5{bottom:1004.262000px;}
.ybe{bottom:1005.756000px;}
.y20e{bottom:1005.981000px;}
.ybd{bottom:1007.998500px;}
.y267{bottom:1011.904500px;}
.y32{bottom:1014.723000px;}
.y2a4{bottom:1018.459500px;}
.y2{bottom:1030.156500px;}
.y90{bottom:1030.414500px;}
.y31{bottom:1032.655500px;}
.y1{bottom:1127.775000px;}
.h31{height:21.937645px;}
.h7{height:25.423709px;}
.h6{height:26.572594px;}
.h5{height:29.934433px;}
.h11{height:30.021706px;}
.hd{height:30.545332px;}
.h13{height:31.287155px;}
.h33{height:32.900573px;}
.h34{height:33.044035px;}
.hb{height:33.265344px;}
.h27{height:35.237952px;}
.ha{height:35.482885px;}
.h1e{height:36.905702px;}
.h15{height:37.013299px;}
.h2d{height:37.060872px;}
.h20{height:38.573453px;}
.h1{height:38.830118px;}
.h12{height:39.153018px;}
.h1a{height:39.509332px;}
.h25{height:40.468081px;}
.he{height:41.006062px;}
.h9{height:41.125613px;}
.h32{height:41.304940px;}
.hf{height:42.859105px;}
.hc{height:44.293720px;}
.h26{height:44.377517px;}
.h1f{height:46.643453px;}
.h17{height:48.117018px;}
.h21{height:48.203299px;}
.h14{height:49.924915px;}
.h28{height:51.167332px;}
.h10{height:51.823105px;}
.h16{height:51.829105px;}
.h2b{height:52.983155px;}
.h1c{height:53.443613px;}
.h30{height:53.557613px;}
.h8{height:55.471757px;}
.h1b{height:55.977155px;}
.h29{height:61.090081px;}
.h2a{height:63.481105px;}
.h4{height:74.849213px;}
.h3{height:74.855213px;}
.h18{height:81.595613px;}
.h19{height:84.253613px;}
.h24{height:85.627613px;}
.h1d{height:86.179613px;}
.h2{height:88.755034px;}
.h23{height:92.187706px;}
.h22{height:94.441613px;}
.h2e{height:121.420872px;}
.h2c{height:126.172872px;}
.h2f{height:142.042872px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:173.647500px;}
.x2{left:174.759000px;}
.x3{left:175.948500px;}
.xba{left:179.236500px;}
.xc1{left:182.934000px;}
.xd7{left:184.660500px;}
.x91{left:185.967000px;}
.xc2{left:189.136500px;}
.x6{left:190.440000px;}
.xd4{left:193.570500px;}
.xd8{left:196.003500px;}
.xc8{left:198.921000px;}
.x7e{left:202.065000px;}
.x92{left:203.407500px;}
.x93{left:204.484500px;}
.x1{left:207.604500px;}
.x94{left:208.884000px;}
.xbb{left:213.441000px;}
.x29{left:215.848500px;}
.x64{left:218.355000px;}
.x76{left:220.675500px;}
.xa6{left:223.813500px;}
.x2c{left:225.009000px;}
.x12{left:226.926000px;}
.x65{left:228.069000px;}
.xd9{left:230.692500px;}
.x101{left:233.128500px;}
.x89{left:234.241500px;}
.xd5{left:236.301000px;}
.x13{left:237.492000px;}
.x8a{left:238.660500px;}
.x14{left:241.999500px;}
.x102{left:243.624000px;}
.x77{left:244.684500px;}
.x5{left:247.275000px;}
.x78{left:251.187000px;}
.x15{left:252.387000px;}
.xda{left:254.040000px;}
.x79{left:258.061500px;}
.xd1{left:259.140000px;}
.xa5{left:260.629500px;}
.xcd{left:261.955500px;}
.x2a{left:262.959000px;}
.x7a{left:265.383000px;}
.x8f{left:266.779500px;}
.xf2{left:268.275000px;}
.x2d{left:269.704500px;}
.xf3{left:271.725000px;}
.x90{left:272.980500px;}
.x7b{left:275.019000px;}
.xd6{left:282.075000px;}
.xe5{left:285.393000px;}
.x2e{left:288.502500px;}
.xe3{left:289.626000px;}
.x2f{left:292.842000px;}
.xe8{left:295.678500px;}
.x46{left:297.508500px;}
.x30{left:301.513500px;}
.x47{left:306.825000px;}
.x9a{left:308.019000px;}
.x98{left:309.636000px;}
.x2b{left:311.706000px;}
.xdb{left:312.945000px;}
.x9{left:315.402000px;}
.x72{left:316.965000px;}
.x81{left:318.717000px;}
.xc6{left:320.488500px;}
.xdc{left:324.288000px;}
.x9b{left:325.458000px;}
.xb0{left:327.240000px;}
.xa{left:329.058000px;}
.xaf{left:330.147000px;}
.x73{left:332.088000px;}
.xb{left:333.154500px;}
.x9c{left:334.774500px;}
.x23{left:337.767000px;}
.x82{left:341.856000px;}
.xf4{left:344.712000px;}
.x80{left:346.926000px;}
.xc3{left:348.016500px;}
.x24{left:350.634000px;}
.x9d{left:351.933000px;}
.xe9{left:353.955000px;}
.x25{left:355.140000px;}
.xc{left:358.405500px;}
.x99{left:360.597000px;}
.x7d{left:363.720000px;}
.xd{left:364.947000px;}
.x31{left:366.457500px;}
.xb1{left:367.557000px;}
.xe4{left:368.754000px;}
.x32{left:370.797000px;}
.xe{left:371.821500px;}
.x7c{left:373.138500px;}
.x9e{left:375.072000px;}
.x11{left:376.803000px;}
.x33{left:379.468500px;}
.x6d{left:382.975500px;}
.x18{left:387.109500px;}
.xf7{left:389.821500px;}
.x3a{left:391.398000px;}
.xbc{left:393.006000px;}
.x4b{left:395.509500px;}
.xf8{left:396.696000px;}
.x19{left:399.810000px;}
.xa4{left:402.559500px;}
.xb7{left:404.499000px;}
.x6e{left:406.996500px;}
.x7f{left:411.517500px;}
.xbd{left:412.707000px;}
.x9f{left:414.244500px;}
.xa7{left:415.518000px;}
.x74{left:417.145500px;}
.x95{left:418.161000px;}
.x4c{left:420.391500px;}
.x96{left:422.560500px;}
.xf9{left:423.825000px;}
.x4d{left:424.897500px;}
.xa0{left:426.280500px;}
.xa8{left:427.392000px;}
.x97{left:431.266500px;}
.x83{left:432.975000px;}
.x4e{left:434.514000px;}
.x3f{left:440.629500px;}
.x40{left:451.197000px;}
.x66{left:454.174500px;}
.x41{left:455.536500px;}
.xc9{left:458.940000px;}
.x42{left:460.513500px;}
.x75{left:461.910000px;}
.x67{left:463.888500px;}
.xa1{left:466.117500px;}
.xce{left:470.146500px;}
.x38{left:471.343500px;}
.xb4{left:474.253500px;}
.xcf{left:476.034000px;}
.x39{left:477.544500px;}
.xb5{left:479.230500px;}
.xab{left:480.378000px;}
.x6f{left:482.470500px;}
.xb6{left:483.729000px;}
.xac{left:484.857000px;}
.x51{left:487.117500px;}
.xad{left:488.913000px;}
.x52{left:491.583000px;}
.xe6{left:492.874500px;}
.xd0{left:493.962000px;}
.x53{left:496.558500px;}
.xae{left:497.692500px;}
.xe7{left:499.377000px;}
.xc4{left:500.854500px;}
.xf5{left:502.144500px;}
.xbf{left:504.069000px;}
.x8e{left:505.972500px;}
.xf6{left:508.345500px;}
.xea{left:512.529000px;}
.xc0{left:513.678000px;}
.x7{left:517.267500px;}
.xeb{left:521.845500px;}
.x3b{left:523.254000px;}
.xb8{left:525.325500px;}
.xc7{left:526.350000px;}
.xfa{left:528.895500px;}
.x3c{left:530.434500px;}
.xef{left:532.920000px;}
.x70{left:535.446000px;}
.x3d{left:541.072500px;}
.x8{left:543.373500px;}
.xec{left:544.629000px;}
.xf0{left:546.154500px;}
.x3e{left:547.275000px;}
.xd2{left:549.415500px;}
.xed{left:553.576500px;}
.x58{left:555.349500px;}
.x71{left:558.229500px;}
.x84{left:562.054500px;}
.xee{left:563.794500px;}
.xb9{left:566.076000px;}
.x85{left:568.257000px;}
.x1f{left:570.514500px;}
.x59{left:572.790000px;}
.x20{left:575.491500px;}
.x5a{left:577.242000px;}
.xc5{left:578.728500px;}
.x21{left:579.832500px;}
.xd3{left:581.151000px;}
.x5b{left:582.219000px;}
.x62{left:586.200000px;}
.x22{left:587.595000px;}
.x34{left:591.814500px;}
.x54{left:594.054000px;}
.x48{left:595.513500px;}
.x49{left:599.854500px;}
.x100{left:602.845500px;}
.x86{left:605.157000px;}
.xa2{left:606.618000px;}
.x4a{left:608.163000px;}
.x35{left:609.658500px;}
.xa3{left:611.593500px;}
.x36{left:613.998000px;}
.x63{left:615.727500px;}
.x43{left:617.427000px;}
.x5c{left:619.377000px;}
.xa9{left:620.631000px;}
.x37{left:622.200000px;}
.x55{left:623.581500px;}
.xaa{left:625.110000px;}
.x44{left:626.910000px;}
.x56{left:628.047000px;}
.x8b{left:630.030000px;}
.x5d{left:632.536500px;}
.x45{left:636.249000px;}
.xfd{left:637.588500px;}
.x26{left:639.379500px;}
.x68{left:641.998500px;}
.x87{left:646.578000px;}
.xdd{left:648.244500px;}
.x57{left:650.829000px;}
.x27{left:652.246500px;}
.x69{left:654.198000px;}
.x28{left:656.716500px;}
.xde{left:658.687500px;}
.xdf{left:660.253500px;}
.x88{left:661.701000px;}
.xf{left:665.986500px;}
.x8c{left:666.999000px;}
.x5e{left:668.035500px;}
.x103{left:670.134000px;}
.x8d{left:671.418000px;}
.x10{left:672.859500px;}
.xbe{left:675.753000px;}
.x1a{left:677.112000px;}
.x6a{left:680.359500px;}
.x1b{left:681.619500px;}
.xe0{left:683.274000px;}
.xfb{left:684.810000px;}
.x5f{left:685.879500px;}
.x60{left:690.331500px;}
.x1c{left:691.470000px;}
.xfe{left:695.415000px;}
.x61{left:699.039000px;}
.xfc{left:700.584000px;}
.xcc{left:704.221500px;}
.x6b{left:705.264000px;}
.x4f{left:706.777500px;}
.xe1{left:709.948500px;}
.x6c{left:712.587000px;}
.xb2{left:713.920500px;}
.x16{left:715.644000px;}
.xb3{left:718.261500px;}
.xe2{left:720.489000px;}
.x17{left:721.845000px;}
.x1d{left:724.284000px;}
.xff{left:725.733000px;}
.xca{left:728.284500px;}
.x50{left:733.017000px;}
.x1e{left:737.424000px;}
.xf1{left:738.720000px;}
.xcb{left:741.424500px;}
@media print{
.v17{vertical-align:-40.362667pt;}
.v12{vertical-align:-19.285333pt;}
.v2{vertical-align:-17.354667pt;}
.v3{vertical-align:-15.429333pt;}
.ve{vertical-align:-9.509333pt;}
.v4{vertical-align:-7.968000pt;}
.va{vertical-align:-6.074667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.968000pt;}
.vd{vertical-align:9.946667pt;}
.vb{vertical-align:10.949333pt;}
.v7{vertical-align:15.354667pt;}
.v11{vertical-align:18.330667pt;}
.v10{vertical-align:19.285333pt;}
.v9{vertical-align:21.946667pt;}
.v1{vertical-align:23.146667pt;}
.v15{vertical-align:27.861333pt;}
.v6{vertical-align:35.973333pt;}
.v8{vertical-align:38.336000pt;}
.vc{vertical-align:40.048000pt;}
.vf{vertical-align:47.392000pt;}
.v16{vertical-align:68.277333pt;}
.v14{vertical-align:74.986667pt;}
.v13{vertical-align:79.210667pt;}
.v18{vertical-align:93.317333pt;}
.ls14{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000015pt;}
.ls3f{letter-spacing:0.000048pt;}
.ls57{letter-spacing:0.001018pt;}
.ls17{letter-spacing:0.001088pt;}
.ls19{letter-spacing:0.002422pt;}
.ls26{letter-spacing:0.003002pt;}
.ls76{letter-spacing:0.003230pt;}
.ls65{letter-spacing:0.003467pt;}
.ls6e{letter-spacing:0.003733pt;}
.ls16{letter-spacing:0.004354pt;}
.ls4b{letter-spacing:0.004541pt;}
.ls47{letter-spacing:0.004913pt;}
.ls3a{letter-spacing:0.005044pt;}
.ls80{letter-spacing:0.138246pt;}
.ls1f{letter-spacing:0.159207pt;}
.ls7c{letter-spacing:0.184563pt;}
.ls89{letter-spacing:0.184805pt;}
.ls8b{letter-spacing:0.185220pt;}
.ls6f{letter-spacing:0.190876pt;}
.ls45{letter-spacing:0.387467pt;}
.ls59{letter-spacing:0.694343pt;}
.ls49{letter-spacing:0.699677pt;}
.ls51{letter-spacing:0.860484pt;}
.ls30{letter-spacing:0.951452pt;}
.ls1a{letter-spacing:0.956785pt;}
.ls27{letter-spacing:1.061329pt;}
.ls22{letter-spacing:1.066662pt;}
.ls53{letter-spacing:1.111756pt;}
.ls39{letter-spacing:1.117089pt;}
.ls91{letter-spacing:1.191003pt;}
.ls0{letter-spacing:1.360230pt;}
.ls5{letter-spacing:1.543733pt;}
.ls74{letter-spacing:2.018233pt;}
.ls73{letter-spacing:2.023566pt;}
.ls87{letter-spacing:2.389348pt;}
.ls9{letter-spacing:2.487177pt;}
.ls48{letter-spacing:2.652000pt;}
.ls13{letter-spacing:2.653867pt;}
.ls10{letter-spacing:2.654133pt;}
.ls79{letter-spacing:2.655572pt;}
.ls24{letter-spacing:2.655580pt;}
.ls2f{letter-spacing:2.657010pt;}
.ls4a{letter-spacing:2.657018pt;}
.ls58{letter-spacing:2.657333pt;}
.ls6b{letter-spacing:2.658497pt;}
.ls81{letter-spacing:2.658531pt;}
.ls12{letter-spacing:2.659200pt;}
.ls11{letter-spacing:2.659467pt;}
.ls72{letter-spacing:2.660905pt;}
.ls1e{letter-spacing:2.660913pt;}
.ls32{letter-spacing:2.964038pt;}
.ls46{letter-spacing:3.182395pt;}
.ls21{letter-spacing:3.453089pt;}
.ls31{letter-spacing:3.458422pt;}
.ls4c{letter-spacing:3.546238pt;}
.ls28{letter-spacing:3.551572pt;}
.ls4{letter-spacing:3.645090pt;}
.ls36{letter-spacing:3.768800pt;}
.ls23{letter-spacing:4.089570pt;}
.ls44{letter-spacing:4.094903pt;}
.ls2{letter-spacing:4.182700pt;}
.lsf{letter-spacing:4.204365pt;}
.ls7{letter-spacing:4.204510pt;}
.ls3{letter-spacing:4.207223pt;}
.ls6{letter-spacing:4.207369pt;}
.ls1{letter-spacing:4.207514pt;}
.lsb{letter-spacing:4.209698pt;}
.lse{letter-spacing:4.209843pt;}
.lsc{letter-spacing:4.209988pt;}
.ls20{letter-spacing:4.781792pt;}
.ls7f{letter-spacing:7.438937pt;}
.ls5f{letter-spacing:7.814735pt;}
.ls8a{letter-spacing:8.739567pt;}
.ls7a{letter-spacing:8.855200pt;}
.ls8c{letter-spacing:8.937859pt;}
.ls3d{letter-spacing:9.032800pt;}
.ls70{letter-spacing:9.034901pt;}
.ls5a{letter-spacing:9.035685pt;}
.ls71{letter-spacing:9.040343pt;}
.ls85{letter-spacing:9.548533pt;}
.ls50{letter-spacing:10.607690pt;}
.ls4d{letter-spacing:11.795718pt;}
.ls2c{letter-spacing:11.805089pt;}
.ls2b{letter-spacing:11.806861pt;}
.ls2a{letter-spacing:11.810422pt;}
.ls7b{letter-spacing:11.811230pt;}
.ls4e{letter-spacing:11.812194pt;}
.ls52{letter-spacing:11.958340pt;}
.ls78{letter-spacing:11.992563pt;}
.ls90{letter-spacing:12.108010pt;}
.ls33{letter-spacing:13.004595pt;}
.ls8f{letter-spacing:13.075452pt;}
.ls35{letter-spacing:13.176646pt;}
.ls6d{letter-spacing:13.201141pt;}
.ls1b{letter-spacing:13.282422pt;}
.ls8d{letter-spacing:13.344931pt;}
.ls15{letter-spacing:13.422762pt;}
.ls2d{letter-spacing:13.432180pt;}
.ls5b{letter-spacing:14.224703pt;}
.ls42{letter-spacing:14.360800pt;}
.ls6a{letter-spacing:14.461163pt;}
.ls3b{letter-spacing:14.754422pt;}
.ls1d{letter-spacing:14.756194pt;}
.ls1c{letter-spacing:14.759756pt;}
.ls29{letter-spacing:14.761527pt;}
.ls86{letter-spacing:15.150273pt;}
.ls43{letter-spacing:15.310861pt;}
.ls60{letter-spacing:15.438861pt;}
.ls7e{letter-spacing:15.498682pt;}
.ls68{letter-spacing:15.522497pt;}
.ls69{letter-spacing:15.719830pt;}
.ls2e{letter-spacing:15.937010pt;}
.ls75{letter-spacing:15.939467pt;}
.ls34{letter-spacing:16.029018pt;}
.ls67{letter-spacing:16.375830pt;}
.ls7d{letter-spacing:16.884194pt;}
.ls8e{letter-spacing:17.329032pt;}
.ls92{letter-spacing:17.349073pt;}
.ls3e{letter-spacing:17.416800pt;}
.ls5c{letter-spacing:17.427467pt;}
.ls5d{letter-spacing:17.428905pt;}
.ls5e{letter-spacing:17.432800pt;}
.ls38{letter-spacing:17.438133pt;}
.ls77{letter-spacing:17.708899pt;}
.ls40{letter-spacing:18.113010pt;}
.ls41{letter-spacing:18.372194pt;}
.ls84{letter-spacing:18.770233pt;}
.ls25{letter-spacing:18.865926pt;}
.ls37{letter-spacing:19.006133pt;}
.ls63{letter-spacing:19.534861pt;}
.ls62{letter-spacing:21.031323pt;}
.ls93{letter-spacing:21.107467pt;}
.ls61{letter-spacing:21.816800pt;}
.ls54{letter-spacing:22.402422pt;}
.ls8{letter-spacing:22.770400pt;}
.lsa{letter-spacing:24.311959pt;}
.ls55{letter-spacing:25.097527pt;}
.ls88{letter-spacing:28.041527pt;}
.ls66{letter-spacing:28.566667pt;}
.ls6c{letter-spacing:28.680800pt;}
.ls64{letter-spacing:33.464800pt;}
.ls56{letter-spacing:35.122422pt;}
.ls3c{letter-spacing:67.257527pt;}
.lsd{letter-spacing:89.997293pt;}
.ls83{letter-spacing:119.374937pt;}
.ls82{letter-spacing:149.862667pt;}
.ls4f{letter-spacing:404.641867pt;}
.ws84{word-spacing:-66.204798pt;}
.ws3a{word-spacing:-54.409079pt;}
.ws94{word-spacing:-48.968499pt;}
.ws74{word-spacing:-39.718639pt;}
.ws6c{word-spacing:-39.637865pt;}
.wsb4{word-spacing:-38.575187pt;}
.ws5d{word-spacing:-32.783596pt;}
.ws93{word-spacing:-29.505434pt;}
.ws6a{word-spacing:-26.566933pt;}
.wsa6{word-spacing:-23.910400pt;}
.ws120{word-spacing:-21.253600pt;}
.wsb2{word-spacing:-20.297137pt;}
.wsa5{word-spacing:-19.989094pt;}
.wsac{word-spacing:-19.393867pt;}
.ws9f{word-spacing:-17.587310pt;}
.wsf6{word-spacing:-17.481042pt;}
.wsb7{word-spacing:-17.215373pt;}
.ws85{word-spacing:-16.737168pt;}
.ws86{word-spacing:-16.696318pt;}
.ws42{word-spacing:-16.471499pt;}
.wse2{word-spacing:-16.258963pt;}
.ws25{word-spacing:-15.727625pt;}
.wsf2{word-spacing:-15.674491pt;}
.wsae{word-spacing:-15.461955pt;}
.ws15{word-spacing:-15.408821pt;}
.wsc1{word-spacing:-15.355687pt;}
.wse0{word-spacing:-15.196286pt;}
.ws52{word-spacing:-15.090018pt;}
.ws1c{word-spacing:-14.930617pt;}
.ws5a{word-spacing:-14.877483pt;}
.ws5b{word-spacing:-14.872129pt;}
.ws54{word-spacing:-14.824349pt;}
.ws17{word-spacing:-14.771215pt;}
.wse5{word-spacing:-14.718081pt;}
.ws27{word-spacing:-14.611813pt;}
.ws62{word-spacing:-14.505546pt;}
.ws61{word-spacing:-14.482287pt;}
.ws63{word-spacing:-14.452412pt;}
.ws7e{word-spacing:-14.399278pt;}
.wsd5{word-spacing:-14.293010pt;}
.ws70{word-spacing:-14.133609pt;}
.ws6f{word-spacing:-14.103582pt;}
.ws71{word-spacing:-14.080475pt;}
.ws7d{word-spacing:-14.027341pt;}
.wsbf{word-spacing:-13.974207pt;}
.wsdb{word-spacing:-13.963674pt;}
.ws78{word-spacing:-13.921073pt;}
.ws79{word-spacing:-13.867939pt;}
.wsb6{word-spacing:-13.853242pt;}
.ws12{word-spacing:-13.814805pt;}
.ws69{word-spacing:-13.803280pt;}
.ws6b{word-spacing:-13.761671pt;}
.wsc6{word-spacing:-13.628928pt;}
.ws59{word-spacing:-13.602270pt;}
.wsc8{word-spacing:-13.581107pt;}
.ws73{word-spacing:-13.577309pt;}
.ws75{word-spacing:-13.575107pt;}
.ws11{word-spacing:-13.549136pt;}
.ws1f{word-spacing:-13.496002pt;}
.ws8f{word-spacing:-13.485466pt;}
.ws18{word-spacing:-13.442868pt;}
.ws65{word-spacing:-13.416416pt;}
.ws10{word-spacing:-13.389734pt;}
.ws66{word-spacing:-13.388232pt;}
.wsaf{word-spacing:-13.369656pt;}
.wsb0{word-spacing:-13.367784pt;}
.ws92{word-spacing:-13.342003pt;}
.ws16{word-spacing:-13.336601pt;}
.ws38{word-spacing:-13.283993pt;}
.ws1d{word-spacing:-13.283467pt;}
.ws7f{word-spacing:-13.267505pt;}
.ws30{word-spacing:-13.230333pt;}
.ws5c{word-spacing:-13.220770pt;}
.ws19{word-spacing:-13.177199pt;}
.ws58{word-spacing:-13.158903pt;}
.ws57{word-spacing:-13.156643pt;}
.ws35{word-spacing:-13.144298pt;}
.ws5f{word-spacing:-13.138889pt;}
.ws31{word-spacing:-13.124065pt;}
.ws9e{word-spacing:-13.110845pt;}
.ws1e{word-spacing:-13.070931pt;}
.ws81{word-spacing:-13.027566pt;}
.ws67{word-spacing:-13.017797pt;}
.ws4d{word-spacing:-13.007258pt;}
.ws26{word-spacing:-12.964663pt;}
.wsc0{word-spacing:-12.911530pt;}
.wse4{word-spacing:-12.858396pt;}
.ws2c{word-spacing:-12.805262pt;}
.ws80{word-spacing:-12.752128pt;}
.wsec{word-spacing:-12.645860pt;}
.wsb1{word-spacing:-12.593082pt;}
.wsb3{word-spacing:-12.589059pt;}
.ws50{word-spacing:-12.576870pt;}
.ws2e{word-spacing:-12.539593pt;}
.wsd2{word-spacing:-12.529050pt;}
.wsf4{word-spacing:-12.486459pt;}
.ws7b{word-spacing:-12.433325pt;}
.ws4f{word-spacing:-12.385587pt;}
.wsbe{word-spacing:-12.380191pt;}
.ws8a{word-spacing:-12.337766pt;}
.ws2d{word-spacing:-12.327057pt;}
.wsbd{word-spacing:-12.273923pt;}
.wsa8{word-spacing:-12.242125pt;}
.wsf8{word-spacing:-12.220789pt;}
.ws14{word-spacing:-12.167655pt;}
.ws8d{word-spacing:-12.146483pt;}
.ws4e{word-spacing:-12.098662pt;}
.ws20{word-spacing:-12.061388pt;}
.ws4c{word-spacing:-12.050842pt;}
.ws4a{word-spacing:-12.003021pt;}
.ws51{word-spacing:-11.955200pt;}
.ws32{word-spacing:-11.955120pt;}
.ws48{word-spacing:-11.907379pt;}
.wsba{word-spacing:-11.901986pt;}
.ws49{word-spacing:-11.859558pt;}
.wsa1{word-spacing:-11.848852pt;}
.ws4b{word-spacing:-11.811738pt;}
.wscb{word-spacing:-11.795718pt;}
.ws47{word-spacing:-11.763917pt;}
.ws11c{word-spacing:-11.689480pt;}
.ws33{word-spacing:-11.689451pt;}
.wsab{word-spacing:-11.636317pt;}
.ws8c{word-spacing:-11.620454pt;}
.ws22{word-spacing:-11.583183pt;}
.wscf{word-spacing:-11.572634pt;}
.ws21{word-spacing:-11.530049pt;}
.wsde{word-spacing:-11.524813pt;}
.wsbb{word-spacing:-11.423781pt;}
.ws89{word-spacing:-11.381350pt;}
.ws60{word-spacing:-11.370647pt;}
.wsc7{word-spacing:-11.333530pt;}
.ws36{word-spacing:-11.317514pt;}
.wsdd{word-spacing:-11.285709pt;}
.wsf1{word-spacing:-11.264380pt;}
.ws88{word-spacing:-11.237888pt;}
.ws76{word-spacing:-11.211246pt;}
.ws113{word-spacing:-11.179394pt;}
.wsc4{word-spacing:-11.158112pt;}
.wsdc{word-spacing:-11.142246pt;}
.ws125{word-spacing:-11.136886pt;}
.ws8e{word-spacing:-11.094426pt;}
.wsa0{word-spacing:-11.051844pt;}
.ws116{word-spacing:-11.009365pt;}
.ws9a{word-spacing:-10.998710pt;}
.ws118{word-spacing:-10.966858pt;}
.wsce{word-spacing:-10.950963pt;}
.wse3{word-spacing:-10.945577pt;}
.wsd1{word-spacing:-10.855322pt;}
.ws123{word-spacing:-10.839336pt;}
.ws9d{word-spacing:-10.839309pt;}
.ws110{word-spacing:-10.796829pt;}
.ws37{word-spacing:-10.786175pt;}
.wsd7{word-spacing:-10.759680pt;}
.ws104{word-spacing:-10.754322pt;}
.ws8b{word-spacing:-10.711859pt;}
.wsf9{word-spacing:-10.669307pt;}
.ws112{word-spacing:-10.627867pt;}
.ws128{word-spacing:-10.627132pt;}
.wse{word-spacing:-10.626800pt;}
.ws34{word-spacing:-10.626773pt;}
.ws127{word-spacing:-10.626216pt;}
.ws11e{word-spacing:-10.626062pt;}
.ws100{word-spacing:-10.624063pt;}
.ws115{word-spacing:-10.622612pt;}
.wscd{word-spacing:-10.616218pt;}
.ws103{word-spacing:-10.584293pt;}
.ws82{word-spacing:-10.573639pt;}
.ws119{word-spacing:-10.541786pt;}
.wse9{word-spacing:-10.520506pt;}
.ws12b{word-spacing:-10.499278pt;}
.ws11b{word-spacing:-10.456771pt;}
.ws10d{word-spacing:-10.414264pt;}
.ws64{word-spacing:-10.414238pt;}
.ws129{word-spacing:-10.371757pt;}
.ws7a{word-spacing:-10.254836pt;}
.wsad{word-spacing:-10.148569pt;}
.wsa3{word-spacing:-10.042368pt;}
.ws10a{word-spacing:-10.031699pt;}
.wsfd{word-spacing:-9.946685pt;}
.ws2b{word-spacing:-9.936033pt;}
.ws83{word-spacing:-9.882899pt;}
.ws68{word-spacing:-9.828267pt;}
.ws23{word-spacing:-9.776631pt;}
.ws108{word-spacing:-9.734149pt;}
.wsa9{word-spacing:-9.659802pt;}
.ws41{word-spacing:-9.577744pt;}
.ws40{word-spacing:-9.564096pt;}
.ws44{word-spacing:-9.404694pt;}
.wsb8{word-spacing:-9.298427pt;}
.ws10e{word-spacing:-9.266570pt;}
.wsd3{word-spacing:-9.245293pt;}
.ws106{word-spacing:-9.224062pt;}
.wse6{word-spacing:-9.192159pt;}
.wsca{word-spacing:-9.139025pt;}
.wsda{word-spacing:-9.133773pt;}
.ws46{word-spacing:-9.085952pt;}
.wsb9{word-spacing:-9.085891pt;}
.wsa4{word-spacing:-9.038131pt;}
.ws96{word-spacing:-9.032757pt;}
.ws28{word-spacing:-8.979623pt;}
.ws90{word-spacing:-8.942490pt;}
.ws91{word-spacing:-8.894669pt;}
.ws43{word-spacing:-8.554553pt;}
.ws6d{word-spacing:-8.501419pt;}
.wsd9{word-spacing:-8.225178pt;}
.wse1{word-spacing:-8.023214pt;}
.ws101{word-spacing:-7.778818pt;}
.ws3e{word-spacing:-7.704411pt;}
.ws3d{word-spacing:-7.700620pt;}
.ws3c{word-spacing:-7.698460pt;}
.wsd8{word-spacing:-7.603507pt;}
.wsf0{word-spacing:-7.598143pt;}
.ws24{word-spacing:-7.545009pt;}
.wsea{word-spacing:-7.385607pt;}
.ws3f{word-spacing:-7.279340pt;}
.ws72{word-spacing:-7.066804pt;}
.ws9c{word-spacing:-7.013670pt;}
.wsee{word-spacing:-6.960537pt;}
.wsc3{word-spacing:-6.854269pt;}
.ws53{word-spacing:-6.694867pt;}
.ws13{word-spacing:-6.641733pt;}
.ws98{word-spacing:-6.535466pt;}
.wsd0{word-spacing:-6.455808pt;}
.wsdf{word-spacing:-5.738458pt;}
.wsf7{word-spacing:-5.579056pt;}
.wsed{word-spacing:-5.525922pt;}
.wsc2{word-spacing:-5.100851pt;}
.wsfb{word-spacing:-4.718299pt;}
.ws11f{word-spacing:-4.505763pt;}
.ws7c{word-spacing:-4.356977pt;}
.ws4{word-spacing:-4.233708pt;}
.ws5{word-spacing:-0.063761pt;}
.ws39{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.051009pt;}
.wsfa{word-spacing:-0.047821pt;}
.ws7{word-spacing:-0.046758pt;}
.wsf{word-spacing:-0.042507pt;}
.ws55{word-spacing:-0.038788pt;}
.ws1{word-spacing:0.000000pt;}
.wsf5{word-spacing:8.873356pt;}
.ws11d{word-spacing:9.521613pt;}
.ws114{word-spacing:10.031699pt;}
.ws126{word-spacing:10.074206pt;}
.ws117{word-spacing:10.201728pt;}
.ws0{word-spacing:10.302627pt;}
.ws124{word-spacing:10.371757pt;}
.ws111{word-spacing:10.414264pt;}
.ws105{word-spacing:10.456771pt;}
.ws10f{word-spacing:10.541786pt;}
.wsff{word-spacing:10.584293pt;}
.ws122{word-spacing:10.669307pt;}
.ws12c{word-spacing:10.711814pt;}
.ws11a{word-spacing:10.754322pt;}
.ws10c{word-spacing:10.796829pt;}
.ws12a{word-spacing:10.839336pt;}
.ws2a{word-spacing:11.038635pt;}
.ws10b{word-spacing:11.179394pt;}
.wsfe{word-spacing:11.264408pt;}
.ws109{word-spacing:11.476944pt;}
.wsa7{word-spacing:11.610753pt;}
.ws1a{word-spacing:11.774494pt;}
.wsd{word-spacing:11.907379pt;}
.ws107{word-spacing:11.987030pt;}
.wsc5{word-spacing:12.003021pt;}
.wsd4{word-spacing:12.741077pt;}
.wsc9{word-spacing:13.105239pt;}
.ws99{word-spacing:13.230333pt;}
.wsbc{word-spacing:13.246362pt;}
.wsf3{word-spacing:13.336601pt;}
.ws102{word-spacing:13.432275pt;}
.ws9b{word-spacing:13.496393pt;}
.wse7{word-spacing:13.655404pt;}
.wsb{word-spacing:13.736376pt;}
.ws3{word-spacing:13.748695pt;}
.ws9{word-spacing:13.753623pt;}
.wsa{word-spacing:13.756903pt;}
.wsc{word-spacing:13.760602pt;}
.ws87{word-spacing:14.059315pt;}
.wseb{word-spacing:14.186742pt;}
.wsaa{word-spacing:14.203519pt;}
.wsd6{word-spacing:14.441882pt;}
.wscc{word-spacing:14.585344pt;}
.ws2f{word-spacing:14.718081pt;}
.wsa2{word-spacing:15.063552pt;}
.ws45{word-spacing:15.876506pt;}
.wse8{word-spacing:16.312097pt;}
.wsef{word-spacing:19.287594pt;}
.wsfc{word-spacing:21.200964pt;}
.ws2{word-spacing:22.528816pt;}
.ws121{word-spacing:24.356626pt;}
.ws97{word-spacing:38.362652pt;}
.ws1b{word-spacing:53.080733pt;}
.wsb5{word-spacing:79.700800pt;}
.ws8{word-spacing:89.946393pt;}
.ws12d{word-spacing:92.665696pt;}
.ws56{word-spacing:395.794173pt;}
.ws95{word-spacing:487.662628pt;}
.ws3b{word-spacing:627.245296pt;}
.ws5e{word-spacing:679.103950pt;}
.ws77{word-spacing:750.675268pt;}
.ws6e{word-spacing:770.653602pt;}
.ws29{word-spacing:1251.629739pt;}
._1f{margin-left:-29.329894pt;}
._1a{margin-left:-11.773575pt;}
._12{margin-left:-5.579023pt;}
._9{margin-left:-4.233708pt;}
._2{margin-left:-2.975488pt;}
._c{margin-left:-2.019105pt;}
._0{margin-left:-1.115808pt;}
._8{width:1.166297pt;}
._7{width:2.552707pt;}
._6{width:4.159049pt;}
._3{width:5.839395pt;}
._4{width:6.908541pt;}
._1c{width:9.936033pt;}
._27{width:11.058749pt;}
._d{width:12.061424pt;}
._23{width:13.025716pt;}
._10{width:13.921127pt;}
._e{width:15.576218pt;}
._1b{width:16.732085pt;}
._15{width:17.693596pt;}
._a{width:18.632986pt;}
._5{width:19.600900pt;}
._26{width:20.775339pt;}
._b{width:21.678618pt;}
._20{width:22.847617pt;}
._17{width:23.804045pt;}
._f{width:25.615838pt;}
._1d{width:26.513809pt;}
._18{width:27.629611pt;}
._1e{width:28.904643pt;}
._24{width:30.900200pt;}
._13{width:32.554047pt;}
._22{width:33.952541pt;}
._25{width:35.336669pt;}
._11{width:36.399383pt;}
._19{width:37.708062pt;}
._21{width:39.637898pt;}
._16{width:53.133867pt;}
._28{width:140.008097pt;}
._14{width:176.607527pt;}
._1{width:737.797250pt;}
.fsb{font-size:29.224000pt;}
.fs7{font-size:32.942933pt;}
.fs0{font-size:37.193600pt;}
.fs5{font-size:38.787733pt;}
.fsa{font-size:39.850667pt;}
.fs8{font-size:42.507200pt;}
.fs4{font-size:46.757867pt;}
.fs6{font-size:47.820800pt;}
.fs3{font-size:51.008533pt;}
.fs9{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:76.884000pt;}
.y2f{bottom:90.166667pt;}
.y8f{bottom:122.808000pt;}
.y8e{bottom:124.800000pt;}
.y11a{bottom:127.537333pt;}
.y62{bottom:128.410667pt;}
.y23e{bottom:129.074667pt;}
.y13a{bottom:130.444000pt;}
.y2e{bottom:131.205333pt;}
.y1d3{bottom:132.158667pt;}
.y1b6{bottom:132.408000pt;}
.yee{bottom:135.265333pt;}
.y1f5{bottom:136.869333pt;}
.y8d{bottom:138.748000pt;}
.y8c{bottom:140.740000pt;}
.y2a3{bottom:142.309333pt;}
.y61{bottom:144.350667pt;}
.y23d{bottom:145.014667pt;}
.y266{bottom:145.142667pt;}
.y139{bottom:146.384000pt;}
.y2d{bottom:147.145333pt;}
.y1d2{bottom:148.098667pt;}
.y1b5{bottom:148.349333pt;}
.yed{bottom:149.212000pt;}
.yec{bottom:151.205333pt;}
.y1f4{bottom:152.809333pt;}
.y2a2{bottom:154.929333pt;}
.y8b{bottom:156.681333pt;}
.y60{bottom:160.290667pt;}
.y23c{bottom:160.954667pt;}
.y138{bottom:162.324000pt;}
.y2c{bottom:163.085333pt;}
.y20d{bottom:163.580000pt;}
.y1d1{bottom:164.038667pt;}
.y1b4{bottom:164.289333pt;}
.y265{bottom:165.484000pt;}
.yeb{bottom:167.145333pt;}
.y2a1{bottom:167.548000pt;}
.y1f3{bottom:168.750667pt;}
.y119{bottom:170.628000pt;}
.ybc{bottom:171.616000pt;}
.y8a{bottom:172.621333pt;}
.y5f{bottom:176.230667pt;}
.y23b{bottom:176.894667pt;}
.y137{bottom:178.265333pt;}
.y2b{bottom:179.025333pt;}
.y20c{bottom:179.520000pt;}
.y1d0{bottom:179.978667pt;}
.y2a0{bottom:180.168000pt;}
.y1b3{bottom:180.229333pt;}
.yea{bottom:183.085333pt;}
.y1f2{bottom:184.690667pt;}
.ybb{bottom:185.562667pt;}
.y264{bottom:185.825333pt;}
.yba{bottom:187.556000pt;}
.y89{bottom:188.561333pt;}
.y29f{bottom:192.786667pt;}
.y23a{bottom:192.834667pt;}
.y136{bottom:194.205333pt;}
.y2a{bottom:194.965333pt;}
.y20b{bottom:195.461333pt;}
.y1cf{bottom:195.918667pt;}
.y1b2{bottom:196.169333pt;}
.ye9{bottom:197.033333pt;}
.y5e{bottom:198.149333pt;}
.y263{bottom:198.445333pt;}
.ye8{bottom:199.025333pt;}
.y1f1{bottom:200.630667pt;}
.yb9{bottom:203.496000pt;}
.y88{bottom:204.501333pt;}
.y29e{bottom:205.406667pt;}
.y166{bottom:208.632000pt;}
.y239{bottom:208.776000pt;}
.y135{bottom:210.145333pt;}
.y118{bottom:210.478667pt;}
.y29{bottom:210.906667pt;}
.y262{bottom:211.064000pt;}
.y20a{bottom:211.401333pt;}
.y1ce{bottom:211.858667pt;}
.y1b1{bottom:212.109333pt;}
.ye7{bottom:214.965333pt;}
.y1f0{bottom:216.570667pt;}
.y29d{bottom:218.025333pt;}
.yb8{bottom:219.436000pt;}
.y163{bottom:219.989333pt;}
.y87{bottom:220.441333pt;}
.y165{bottom:222.580000pt;}
.y161{bottom:224.572000pt;}
.y238{bottom:224.716000pt;}
.y134{bottom:226.085333pt;}
.y28{bottom:226.846667pt;}
.y209{bottom:227.341333pt;}
.y5d{bottom:227.538667pt;}
.y1cd{bottom:227.800000pt;}
.y1b0{bottom:228.049333pt;}
.y164{bottom:229.805333pt;}
.y162{bottom:230.620000pt;}
.y29c{bottom:230.645333pt;}
.y261{bottom:231.405333pt;}
.y1ef{bottom:232.510667pt;}
.y86{bottom:234.389333pt;}
.yb7{bottom:235.376000pt;}
.y85{bottom:236.381333pt;}
.y117{bottom:239.514667pt;}
.y160{bottom:240.512000pt;}
.y237{bottom:240.656000pt;}
.y133{bottom:242.025333pt;}
.y27{bottom:242.786667pt;}
.y29b{bottom:243.264000pt;}
.y208{bottom:243.281333pt;}
.ye6{bottom:243.340000pt;}
.y5c{bottom:243.478667pt;}
.y1cc{bottom:243.740000pt;}
.y1af{bottom:243.990667pt;}
.y260{bottom:244.025333pt;}
.y1ee{bottom:248.450667pt;}
.yb6{bottom:251.316000pt;}
.y83{bottom:252.322667pt;}
.y116{bottom:255.454667pt;}
.y29a{bottom:255.884000pt;}
.y15f{bottom:256.452000pt;}
.y236{bottom:256.596000pt;}
.y84{bottom:257.144000pt;}
.y132{bottom:257.965333pt;}
.y26{bottom:258.726667pt;}
.y207{bottom:259.221333pt;}
.y5b{bottom:259.418667pt;}
.y1ae{bottom:259.930667pt;}
.ye5{bottom:263.265333pt;}
.y25f{bottom:264.366667pt;}
.y1ed{bottom:264.392000pt;}
.y1cb{bottom:265.657333pt;}
.ye4{bottom:266.001333pt;}
.y194{bottom:268.262667pt;}
.y299{bottom:268.502667pt;}
.y115{bottom:271.394667pt;}
.y15e{bottom:272.393333pt;}
.y235{bottom:272.536000pt;}
.y131{bottom:273.906667pt;}
.y25{bottom:274.666667pt;}
.y206{bottom:275.161333pt;}
.y5a{bottom:275.358667pt;}
.y1ad{bottom:275.870667pt;}
.y82{bottom:279.596000pt;}
.y25e{bottom:280.306667pt;}
.y1ec{bottom:280.332000pt;}
.yb5{bottom:280.540000pt;}
.y298{bottom:281.122667pt;}
.y193{bottom:284.202667pt;}
.y114{bottom:287.334667pt;}
.y15d{bottom:288.333333pt;}
.y234{bottom:288.476000pt;}
.y130{bottom:289.846667pt;}
.y113{bottom:290.098667pt;}
.y24{bottom:290.606667pt;}
.y205{bottom:291.102667pt;}
.y59{bottom:291.300000pt;}
.y1ac{bottom:291.810667pt;}
.ye3{bottom:292.461333pt;}
.y297{bottom:293.741333pt;}
.y1ca{bottom:295.046667pt;}
.y25d{bottom:296.248000pt;}
.y192{bottom:300.142667pt;}
.y1eb{bottom:302.249333pt;}
.y111{bottom:303.276000pt;}
.y233{bottom:304.417333pt;}
.y12f{bottom:305.786667pt;}
.y112{bottom:306.012000pt;}
.y296{bottom:306.361333pt;}
.ye2{bottom:306.409333pt;}
.y23{bottom:306.548000pt;}
.y81{bottom:306.869333pt;}
.y204{bottom:307.042667pt;}
.y57{bottom:307.240000pt;}
.y1ab{bottom:307.750667pt;}
.ye1{bottom:308.402667pt;}
.yb4{bottom:309.764000pt;}
.y15c{bottom:310.250667pt;}
.y1c9{bottom:310.988000pt;}
.y58{bottom:312.061333pt;}
.y25c{bottom:312.188000pt;}
.y191{bottom:316.082667pt;}
.y110{bottom:317.222667pt;}
.y295{bottom:318.980000pt;}
.y10f{bottom:319.216000pt;}
.y12d{bottom:319.734667pt;}
.y232{bottom:320.357333pt;}
.y80{bottom:320.817333pt;}
.y12c{bottom:321.726667pt;}
.y22{bottom:322.488000pt;}
.y7f{bottom:322.810667pt;}
.y203{bottom:322.982667pt;}
.y56{bottom:323.180000pt;}
.y1aa{bottom:323.690667pt;}
.ye0{bottom:324.342667pt;}
.yb3{bottom:325.704000pt;}
.y12e{bottom:326.549333pt;}
.y1c8{bottom:326.928000pt;}
.y25b{bottom:328.128000pt;}
.y294{bottom:331.600000pt;}
.y1ea{bottom:331.638667pt;}
.y231{bottom:336.297333pt;}
.y7e{bottom:336.757333pt;}
.y54{bottom:337.128000pt;}
.y12b{bottom:337.666667pt;}
.y190{bottom:338.001333pt;}
.ydf{bottom:338.290667pt;}
.y21{bottom:338.428000pt;}
.y7d{bottom:338.750667pt;}
.y53{bottom:339.120000pt;}
.y1a9{bottom:339.632000pt;}
.y15b{bottom:339.640000pt;}
.yde{bottom:340.282667pt;}
.yb1{bottom:341.644000pt;}
.y1c7{bottom:342.868000pt;}
.y10e{bottom:343.092000pt;}
.y10d{bottom:343.869333pt;}
.y55{bottom:343.942667pt;}
.y25a{bottom:344.068000pt;}
.y293{bottom:344.218667pt;}
.yb2{bottom:346.466667pt;}
.y1e9{bottom:347.580000pt;}
.y230{bottom:352.237333pt;}
.y10a{bottom:352.981333pt;}
.y12a{bottom:353.606667pt;}
.ydd{bottom:354.230667pt;}
.y20{bottom:354.368000pt;}
.y7c{bottom:354.690667pt;}
.y1a8{bottom:355.572000pt;}
.y15a{bottom:355.581333pt;}
.y109{bottom:355.744000pt;}
.y202{bottom:355.904000pt;}
.ydc{bottom:356.222667pt;}
.y292{bottom:356.838667pt;}
.yb0{bottom:357.585333pt;}
.y1c6{bottom:358.808000pt;}
.y259{bottom:360.008000pt;}
.y10c{bottom:361.974667pt;}
.y1e8{bottom:363.520000pt;}
.y10b{bottom:364.710667pt;}
.y18f{bottom:367.340000pt;}
.y22f{bottom:368.177333pt;}
.y52{bottom:368.344000pt;}
.y7b{bottom:368.638667pt;}
.y291{bottom:369.457333pt;}
.y129{bottom:369.548000pt;}
.y1f{bottom:370.308000pt;}
.y201{bottom:370.516000pt;}
.y7a{bottom:370.630667pt;}
.y1a7{bottom:371.512000pt;}
.y159{bottom:371.521333pt;}
.ydb{bottom:372.162667pt;}
.yaf{bottom:373.525333pt;}
.y1c5{bottom:374.748000pt;}
.y258{bottom:375.948000pt;}
.y1e7{bottom:379.460000pt;}
.y290{bottom:382.077333pt;}
.y18d{bottom:383.280000pt;}
.y22e{bottom:384.117333pt;}
.y200{bottom:385.128000pt;}
.y128{bottom:385.488000pt;}
.y1e{bottom:386.248000pt;}
.y1a6{bottom:387.452000pt;}
.y158{bottom:387.461333pt;}
.y18e{bottom:388.101333pt;}
.yda{bottom:388.102667pt;}
.y108{bottom:389.204000pt;}
.yae{bottom:389.465333pt;}
.y1c4{bottom:390.688000pt;}
.y257{bottom:391.889333pt;}
.y28f{bottom:394.696000pt;}
.y1e6{bottom:395.400000pt;}
.y51{bottom:397.568000pt;}
.y79{bottom:397.905333pt;}
.y18b{bottom:399.220000pt;}
.y1ff{bottom:399.740000pt;}
.y22d{bottom:400.058667pt;}
.y127{bottom:401.428000pt;}
.y1d{bottom:402.189333pt;}
.y1a5{bottom:403.392000pt;}
.y157{bottom:403.401333pt;}
.y18c{bottom:404.041333pt;}
.yd9{bottom:404.044000pt;}
.y107{bottom:405.144000pt;}
.yad{bottom:405.405333pt;}
.y1c3{bottom:406.629333pt;}
.y28e{bottom:407.316000pt;}
.y256{bottom:407.829333pt;}
.y1e5{bottom:411.340000pt;}
.y50{bottom:413.508000pt;}
.y1fe{bottom:414.350667pt;}
.y18a{bottom:415.160000pt;}
.y22c{bottom:415.998667pt;}
.y1c{bottom:418.129333pt;}
.y1a4{bottom:419.332000pt;}
.y156{bottom:419.341333pt;}
.y28d{bottom:419.934667pt;}
.yd8{bottom:419.984000pt;}
.y106{bottom:421.084000pt;}
.yac{bottom:421.345333pt;}
.y1c2{bottom:422.569333pt;}
.y126{bottom:423.345333pt;}
.y255{bottom:423.769333pt;}
.y78{bottom:425.178667pt;}
.y1e4{bottom:427.280000pt;}
.y1fd{bottom:428.962667pt;}
.y4f{bottom:429.448000pt;}
.y189{bottom:431.100000pt;}
.y22b{bottom:431.938667pt;}
.y28c{bottom:432.554667pt;}
.y1b{bottom:434.069333pt;}
.y155{bottom:435.281333pt;}
.y105{bottom:437.025333pt;}
.yab{bottom:437.285333pt;}
.y1c1{bottom:438.509333pt;}
.y254{bottom:439.709333pt;}
.y77{bottom:441.118667pt;}
.y1a3{bottom:441.250667pt;}
.yd7{bottom:441.901333pt;}
.y1e3{bottom:443.221333pt;}
.y4e{bottom:443.396000pt;}
.y1fc{bottom:443.574667pt;}
.y28b{bottom:445.173333pt;}
.y4d{bottom:445.388000pt;}
.y188{bottom:447.041333pt;}
.y22a{bottom:447.878667pt;}
.y1a{bottom:450.009333pt;}
.y154{bottom:451.222667pt;}
.y125{bottom:452.736000pt;}
.y104{bottom:452.965333pt;}
.y253{bottom:455.649333pt;}
.y76{bottom:457.058667pt;}
.y28a{bottom:457.793333pt;}
.y1fb{bottom:458.186667pt;}
.y1e2{bottom:459.161333pt;}
.yaa{bottom:459.204000pt;}
.y4c{bottom:459.336000pt;}
.y4b{bottom:461.328000pt;}
.y187{bottom:462.981333pt;}
.y229{bottom:463.818667pt;}
.y19{bottom:465.949333pt;}
.y153{bottom:467.162667pt;}
.y124{bottom:468.676000pt;}
.y103{bottom:468.905333pt;}
.yd6{bottom:469.298667pt;}
.y289{bottom:470.412000pt;}
.y1a2{bottom:470.640000pt;}
.yd5{bottom:471.290667pt;}
.y252{bottom:471.589333pt;}
.y1fa{bottom:472.798667pt;}
.y75{bottom:473.000000pt;}
.y1e1{bottom:475.101333pt;}
.y4a{bottom:477.269333pt;}
.y186{bottom:478.921333pt;}
.y228{bottom:479.758667pt;}
.y18{bottom:481.889333pt;}
.y1c0{bottom:482.276000pt;}
.y288{bottom:483.032000pt;}
.y152{bottom:483.102667pt;}
.y123{bottom:484.616000pt;}
.y101{bottom:484.845333pt;}
.y1a1{bottom:486.580000pt;}
.yd4{bottom:487.232000pt;}
.y1f9{bottom:487.410667pt;}
.y251{bottom:487.530667pt;}
.y102{bottom:487.581333pt;}
.ya9{bottom:488.593333pt;}
.y74{bottom:488.940000pt;}
.y1e0{bottom:491.041333pt;}
.y49{bottom:493.209333pt;}
.y185{bottom:494.861333pt;}
.y287{bottom:495.650667pt;}
.y227{bottom:495.700000pt;}
.y1bf{bottom:496.888000pt;}
.y17{bottom:497.830667pt;}
.y150{bottom:499.042667pt;}
.y122{bottom:500.556000pt;}
.y1f8{bottom:502.022667pt;}
.y1a0{bottom:502.520000pt;}
.ya8{bottom:502.541333pt;}
.yd3{bottom:503.172000pt;}
.y250{bottom:503.470667pt;}
.y151{bottom:503.864000pt;}
.ya7{bottom:504.533333pt;}
.y73{bottom:504.880000pt;}
.y100{bottom:506.762667pt;}
.y1df{bottom:506.981333pt;}
.y286{bottom:508.270667pt;}
.y48{bottom:509.149333pt;}
.y184{bottom:510.801333pt;}
.y1be{bottom:511.500000pt;}
.y226{bottom:511.640000pt;}
.y14e{bottom:514.982667pt;}
.y121{bottom:516.496000pt;}
.y1f7{bottom:516.634667pt;}
.y19f{bottom:518.461333pt;}
.yd2{bottom:519.112000pt;}
.y24f{bottom:519.410667pt;}
.y14f{bottom:519.805333pt;}
.y72{bottom:520.820000pt;}
.y285{bottom:520.889333pt;}
.y16{bottom:521.541333pt;}
.y1de{bottom:522.921333pt;}
.y47{bottom:525.089333pt;}
.y1bd{bottom:526.112000pt;}
.y225{bottom:527.580000pt;}
.y14d{bottom:530.922667pt;}
.ya6{bottom:531.153333pt;}
.y1f6{bottom:531.246667pt;}
.y120{bottom:532.436000pt;}
.y284{bottom:533.509333pt;}
.y19d{bottom:534.401333pt;}
.y183{bottom:534.513333pt;}
.yd1{bottom:535.052000pt;}
.y24e{bottom:535.350667pt;}
.y1dd{bottom:538.862667pt;}
.y19e{bottom:539.222667pt;}
.y1bc{bottom:540.724000pt;}
.ya5{bottom:540.737333pt;}
.y224{bottom:543.520000pt;}
.y283{bottom:546.128000pt;}
.y14c{bottom:546.864000pt;}
.y46{bottom:547.006667pt;}
.y11f{bottom:548.377333pt;}
.yff{bottom:548.957333pt;}
.y19b{bottom:550.341333pt;}
.yd0{bottom:550.992000pt;}
.y24d{bottom:551.290667pt;}
.y15{bottom:553.421333pt;}
.y1dc{bottom:554.802667pt;}
.y19c{bottom:555.162667pt;}
.y1bb{bottom:555.336000pt;}
.y282{bottom:558.748000pt;}
.y223{bottom:559.460000pt;}
.y14b{bottom:562.804000pt;}
.y71{bottom:563.028000pt;}
.yfe{bottom:563.568000pt;}
.y11e{bottom:564.317333pt;}
.y182{bottom:565.345333pt;}
.y199{bottom:566.281333pt;}
.y24c{bottom:567.230667pt;}
.y1ba{bottom:569.948000pt;}
.y19a{bottom:571.102667pt;}
.y281{bottom:571.366667pt;}
.ycf{bottom:574.704000pt;}
.y222{bottom:575.400000pt;}
.ya4{bottom:576.197333pt;}
.y45{bottom:576.397333pt;}
.y70{bottom:577.638667pt;}
.yfd{bottom:578.180000pt;}
.y14a{bottom:578.744000pt;}
.y11d{bottom:580.257333pt;}
.y181{bottom:581.286667pt;}
.y198{bottom:582.221333pt;}
.y24b{bottom:583.172000pt;}
.y280{bottom:583.986667pt;}
.y1b9{bottom:584.560000pt;}
.y14{bottom:585.302667pt;}
.y148{bottom:590.101333pt;}
.y221{bottom:591.341333pt;}
.ya3{bottom:592.138667pt;}
.y6f{bottom:592.250667pt;}
.y44{bottom:592.337333pt;}
.yfc{bottom:592.792000pt;}
.y145{bottom:594.684000pt;}
.y1db{bottom:596.130667pt;}
.y27f{bottom:596.606667pt;}
.y180{bottom:597.226667pt;}
.y24a{bottom:599.112000pt;}
.y1b8{bottom:599.172000pt;}
.y146{bottom:599.505333pt;}
.y149{bottom:599.917333pt;}
.y147{bottom:600.732000pt;}
.y13{bottom:601.242667pt;}
.y11c{bottom:603.968000pt;}
.yce{bottom:605.588000pt;}
.y6e{bottom:606.862667pt;}
.y220{bottom:607.281333pt;}
.yfb{bottom:607.404000pt;}
.y43{bottom:608.277333pt;}
.y27e{bottom:609.225333pt;}
.y144{bottom:610.624000pt;}
.y1da{bottom:610.742667pt;}
.y17f{bottom:613.166667pt;}
.y1b7{bottom:613.782667pt;}
.ya2{bottom:614.056000pt;}
.y249{bottom:615.052000pt;}
.y12{bottom:617.182667pt;}
.y6d{bottom:621.474667pt;}
.ycd{bottom:621.528000pt;}
.y27d{bottom:621.845333pt;}
.y143{bottom:621.981333pt;}
.yfa{bottom:622.016000pt;}
.y21f{bottom:623.221333pt;}
.y42{bottom:624.217333pt;}
.y1d9{bottom:625.354667pt;}
.y197{bottom:625.989333pt;}
.y141{bottom:626.564000pt;}
.y17e{bottom:629.106667pt;}
.y248{bottom:630.992000pt;}
.y142{bottom:631.798667pt;}
.y11{bottom:633.122667pt;}
.y27c{bottom:634.464000pt;}
.yf9{bottom:634.834667pt;}
.y6c{bottom:636.086667pt;}
.yf8{bottom:636.628000pt;}
.ycc{bottom:637.468000pt;}
.y21e{bottom:639.161333pt;}
.y1d8{bottom:639.966667pt;}
.y41{bottom:640.157333pt;}
.y196{bottom:640.600000pt;}
.ya1{bottom:643.445333pt;}
.y17d{bottom:645.046667pt;}
.y247{bottom:646.932000pt;}
.y27b{bottom:647.084000pt;}
.y10{bottom:649.062667pt;}
.y6b{bottom:650.698667pt;}
.yf7{bottom:651.240000pt;}
.ycb{bottom:653.408000pt;}
.y1d7{bottom:654.578667pt;}
.y21d{bottom:655.101333pt;}
.y195{bottom:655.212000pt;}
.y40{bottom:656.098667pt;}
.ya0{bottom:659.385333pt;}
.y27a{bottom:659.702667pt;}
.y17c{bottom:660.986667pt;}
.y246{bottom:662.872000pt;}
.yf{bottom:665.002667pt;}
.y6a{bottom:665.310667pt;}
.yf6{bottom:665.852000pt;}
.y140{bottom:667.893333pt;}
.y1d6{bottom:669.190667pt;}
.yca{bottom:669.348000pt;}
.y21c{bottom:671.041333pt;}
.y3f{bottom:672.038667pt;}
.y279{bottom:672.322667pt;}
.y9f{bottom:675.325333pt;}
.y17b{bottom:676.928000pt;}
.y245{bottom:678.813333pt;}
.y69{bottom:679.922667pt;}
.yf5{bottom:680.464000pt;}
.ye{bottom:680.944000pt;}
.y13f{bottom:682.505333pt;}
.y1d5{bottom:683.801333pt;}
.y278{bottom:684.941333pt;}
.yc9{bottom:685.288000pt;}
.y21b{bottom:686.982667pt;}
.y3e{bottom:687.978667pt;}
.y9e{bottom:691.266667pt;}
.y17a{bottom:692.868000pt;}
.yf4{bottom:693.282667pt;}
.y68{bottom:694.534667pt;}
.y244{bottom:694.753333pt;}
.yf3{bottom:695.076000pt;}
.yd{bottom:696.884000pt;}
.y13e{bottom:697.116000pt;}
.y277{bottom:697.561333pt;}
.y1d4{bottom:698.413333pt;}
.yc8{bottom:701.229333pt;}
.y21a{bottom:702.922667pt;}
.y3d{bottom:703.918667pt;}
.y9d{bottom:707.206667pt;}
.y179{bottom:708.808000pt;}
.y67{bottom:709.146667pt;}
.y13d{bottom:709.390667pt;}
.yf2{bottom:709.688000pt;}
.y276{bottom:710.180000pt;}
.y243{bottom:710.693333pt;}
.y13c{bottom:711.728000pt;}
.yc{bottom:712.824000pt;}
.yc7{bottom:717.169333pt;}
.y219{bottom:718.862667pt;}
.y9c{bottom:721.154667pt;}
.y275{bottom:722.800000pt;}
.y9b{bottom:723.146667pt;}
.y66{bottom:723.757333pt;}
.yf1{bottom:724.298667pt;}
.y178{bottom:724.748000pt;}
.y13b{bottom:726.340000pt;}
.y242{bottom:726.633333pt;}
.y3c{bottom:727.629333pt;}
.yb{bottom:728.764000pt;}
.yc6{bottom:733.109333pt;}
.y218{bottom:734.802667pt;}
.y274{bottom:735.418667pt;}
.y65{bottom:738.369333pt;}
.yf0{bottom:738.910667pt;}
.y9a{bottom:739.086667pt;}
.y177{bottom:740.688000pt;}
.y241{bottom:742.573333pt;}
.ya{bottom:744.704000pt;}
.y273{bottom:748.038667pt;}
.y217{bottom:750.742667pt;}
.y64{bottom:752.981333pt;}
.yef{bottom:753.522667pt;}
.y176{bottom:754.636000pt;}
.y99{bottom:755.026667pt;}
.y175{bottom:756.628000pt;}
.y3b{bottom:758.513333pt;}
.y272{bottom:760.657333pt;}
.y216{bottom:766.682667pt;}
.y63{bottom:767.593333pt;}
.y98{bottom:770.966667pt;}
.y174{bottom:772.569333pt;}
.y271{bottom:773.277333pt;}
.y3a{bottom:774.454667pt;}
.y9{bottom:780.442667pt;}
.y215{bottom:782.624000pt;}
.yc5{bottom:784.417333pt;}
.y270{bottom:785.896000pt;}
.y173{bottom:786.516000pt;}
.y97{bottom:786.908000pt;}
.y172{bottom:788.509333pt;}
.y39{bottom:790.394667pt;}
.y8{bottom:793.061333pt;}
.y240{bottom:795.216000pt;}
.y26f{bottom:798.516000pt;}
.y214{bottom:798.564000pt;}
.yc4{bottom:800.357333pt;}
.y96{bottom:800.854667pt;}
.y95{bottom:802.848000pt;}
.y7{bottom:806.162667pt;}
.y38{bottom:806.334667pt;}
.y26e{bottom:811.134667pt;}
.y16d{bottom:813.884000pt;}
.y213{bottom:814.504000pt;}
.yc3{bottom:816.297333pt;}
.y94{bottom:816.796000pt;}
.y170{bottom:817.974667pt;}
.y93{bottom:818.788000pt;}
.y6{bottom:820.774667pt;}
.y16c{bottom:822.118667pt;}
.y37{bottom:822.274667pt;}
.y26d{bottom:823.754667pt;}
.y16b{bottom:826.104000pt;}
.y23f{bottom:827.097333pt;}
.y212{bottom:830.444000pt;}
.yc2{bottom:832.237333pt;}
.y168{bottom:834.462667pt;}
.y92{bottom:834.728000pt;}
.y26c{bottom:836.373333pt;}
.y36{bottom:838.214667pt;}
.y16f{bottom:839.444000pt;}
.y5{bottom:839.528000pt;}
.y16e{bottom:844.026667pt;}
.y171{bottom:845.089333pt;}
.y16a{bottom:846.294667pt;}
.y211{bottom:846.384000pt;}
.yc1{bottom:848.177333pt;}
.y26b{bottom:848.993333pt;}
.y169{bottom:850.280000pt;}
.y35{bottom:854.154667pt;}
.y91{bottom:856.646667pt;}
.y4{bottom:858.124000pt;}
.y11b{bottom:859.468000pt;}
.y26a{bottom:861.612000pt;}
.y210{bottom:862.324000pt;}
.yc0{bottom:864.117333pt;}
.y2a6{bottom:867.438667pt;}
.y34{bottom:870.096000pt;}
.y167{bottom:873.613333pt;}
.y269{bottom:874.232000pt;}
.y20f{bottom:878.265333pt;}
.ybf{bottom:880.058667pt;}
.y33{bottom:886.036000pt;}
.y268{bottom:886.850667pt;}
.y3{bottom:891.120000pt;}
.y2a5{bottom:892.677333pt;}
.ybe{bottom:894.005333pt;}
.y20e{bottom:894.205333pt;}
.ybd{bottom:895.998667pt;}
.y267{bottom:899.470667pt;}
.y32{bottom:901.976000pt;}
.y2a4{bottom:905.297333pt;}
.y2{bottom:915.694667pt;}
.y90{bottom:915.924000pt;}
.y31{bottom:917.916000pt;}
.y1{bottom:1002.466667pt;}
.h31{height:19.500129pt;}
.h7{height:22.598852pt;}
.h6{height:23.620083pt;}
.h5{height:26.608385pt;}
.h11{height:26.685961pt;}
.hd{height:27.151406pt;}
.h13{height:27.810805pt;}
.h33{height:29.244954pt;}
.h34{height:29.372475pt;}
.hb{height:29.569195pt;}
.h27{height:31.322624pt;}
.ha{height:31.540342pt;}
.h1e{height:32.805069pt;}
.h15{height:32.900710pt;}
.h2d{height:32.942997pt;}
.h20{height:34.287514pt;}
.h1{height:34.515661pt;}
.h12{height:34.802683pt;}
.h1a{height:35.119406pt;}
.h25{height:35.971628pt;}
.he{height:36.449833pt;}
.h9{height:36.556100pt;}
.h32{height:36.715502pt;}
.hf{height:38.096982pt;}
.hc{height:39.372195pt;}
.h26{height:39.446682pt;}
.h1f{height:41.460847pt;}
.h17{height:42.770683pt;}
.h21{height:42.847377pt;}
.h14{height:44.377702pt;}
.h28{height:45.482073pt;}
.h10{height:46.064982pt;}
.h16{height:46.070316pt;}
.h2b{height:47.096138pt;}
.h1c{height:47.505434pt;}
.h30{height:47.606767pt;}
.h8{height:49.308228pt;}
.h1b{height:49.757471pt;}
.h29{height:54.302294pt;}
.h2a{height:56.427649pt;}
.h4{height:66.532634pt;}
.h3{height:66.537967pt;}
.h18{height:72.529434pt;}
.h19{height:74.892100pt;}
.h24{height:76.113434pt;}
.h1d{height:76.604100pt;}
.h2{height:78.893363pt;}
.h23{height:81.944627pt;}
.h22{height:83.948100pt;}
.h2e{height:107.929664pt;}
.h2c{height:112.153664pt;}
.h2f{height:126.260331pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:154.353333pt;}
.x2{left:155.341333pt;}
.x3{left:156.398667pt;}
.xba{left:159.321333pt;}
.xc1{left:162.608000pt;}
.xd7{left:164.142667pt;}
.x91{left:165.304000pt;}
.xc2{left:168.121333pt;}
.x6{left:169.280000pt;}
.xd4{left:172.062667pt;}
.xd8{left:174.225333pt;}
.xc8{left:176.818667pt;}
.x7e{left:179.613333pt;}
.x92{left:180.806667pt;}
.x93{left:181.764000pt;}
.x1{left:184.537333pt;}
.x94{left:185.674667pt;}
.xbb{left:189.725333pt;}
.x29{left:191.865333pt;}
.x64{left:194.093333pt;}
.x76{left:196.156000pt;}
.xa6{left:198.945333pt;}
.x2c{left:200.008000pt;}
.x12{left:201.712000pt;}
.x65{left:202.728000pt;}
.xd9{left:205.060000pt;}
.x101{left:207.225333pt;}
.x89{left:208.214667pt;}
.xd5{left:210.045333pt;}
.x13{left:211.104000pt;}
.x8a{left:212.142667pt;}
.x14{left:215.110667pt;}
.x102{left:216.554667pt;}
.x77{left:217.497333pt;}
.x5{left:219.800000pt;}
.x78{left:223.277333pt;}
.x15{left:224.344000pt;}
.xda{left:225.813333pt;}
.x79{left:229.388000pt;}
.xd1{left:230.346667pt;}
.xa5{left:231.670667pt;}
.xcd{left:232.849333pt;}
.x2a{left:233.741333pt;}
.x7a{left:235.896000pt;}
.x8f{left:237.137333pt;}
.xf2{left:238.466667pt;}
.x2d{left:239.737333pt;}
.xf3{left:241.533333pt;}
.x90{left:242.649333pt;}
.x7b{left:244.461333pt;}
.xd6{left:250.733333pt;}
.xe5{left:253.682667pt;}
.x2e{left:256.446667pt;}
.xe3{left:257.445333pt;}
.x2f{left:260.304000pt;}
.xe8{left:262.825333pt;}
.x46{left:264.452000pt;}
.x30{left:268.012000pt;}
.x47{left:272.733333pt;}
.x9a{left:273.794667pt;}
.x98{left:275.232000pt;}
.x2b{left:277.072000pt;}
.xdb{left:278.173333pt;}
.x9{left:280.357333pt;}
.x72{left:281.746667pt;}
.x81{left:283.304000pt;}
.xc6{left:284.878667pt;}
.xdc{left:288.256000pt;}
.x9b{left:289.296000pt;}
.xb0{left:290.880000pt;}
.xa{left:292.496000pt;}
.xaf{left:293.464000pt;}
.x73{left:295.189333pt;}
.xb{left:296.137333pt;}
.x9c{left:297.577333pt;}
.x23{left:300.237333pt;}
.x82{left:303.872000pt;}
.xf4{left:306.410667pt;}
.x80{left:308.378667pt;}
.xc3{left:309.348000pt;}
.x24{left:311.674667pt;}
.x9d{left:312.829333pt;}
.xe9{left:314.626667pt;}
.x25{left:315.680000pt;}
.xc{left:318.582667pt;}
.x99{left:320.530667pt;}
.x7d{left:323.306667pt;}
.xd{left:324.397333pt;}
.x31{left:325.740000pt;}
.xb1{left:326.717333pt;}
.xe4{left:327.781333pt;}
.x32{left:329.597333pt;}
.xe{left:330.508000pt;}
.x7c{left:331.678667pt;}
.x9e{left:333.397333pt;}
.x11{left:334.936000pt;}
.x33{left:337.305333pt;}
.x6d{left:340.422667pt;}
.x18{left:344.097333pt;}
.xf7{left:346.508000pt;}
.x3a{left:347.909333pt;}
.xbc{left:349.338667pt;}
.x4b{left:351.564000pt;}
.xf8{left:352.618667pt;}
.x19{left:355.386667pt;}
.xa4{left:357.830667pt;}
.xb7{left:359.554667pt;}
.x6e{left:361.774667pt;}
.x7f{left:365.793333pt;}
.xbd{left:366.850667pt;}
.x9f{left:368.217333pt;}
.xa7{left:369.349333pt;}
.x74{left:370.796000pt;}
.x95{left:371.698667pt;}
.x4c{left:373.681333pt;}
.x96{left:375.609333pt;}
.xf9{left:376.733333pt;}
.x4d{left:377.686667pt;}
.xa0{left:378.916000pt;}
.xa8{left:379.904000pt;}
.x97{left:383.348000pt;}
.x83{left:384.866667pt;}
.x4e{left:386.234667pt;}
.x3f{left:391.670667pt;}
.x40{left:401.064000pt;}
.x66{left:403.710667pt;}
.x41{left:404.921333pt;}
.xc9{left:407.946667pt;}
.x42{left:409.345333pt;}
.x75{left:410.586667pt;}
.x67{left:412.345333pt;}
.xa1{left:414.326667pt;}
.xce{left:417.908000pt;}
.x38{left:418.972000pt;}
.xb4{left:421.558667pt;}
.xcf{left:423.141333pt;}
.x39{left:424.484000pt;}
.xb5{left:425.982667pt;}
.xab{left:427.002667pt;}
.x6f{left:428.862667pt;}
.xb6{left:429.981333pt;}
.xac{left:430.984000pt;}
.x51{left:432.993333pt;}
.xad{left:434.589333pt;}
.x52{left:436.962667pt;}
.xe6{left:438.110667pt;}
.xd0{left:439.077333pt;}
.x53{left:441.385333pt;}
.xae{left:442.393333pt;}
.xe7{left:443.890667pt;}
.xc4{left:445.204000pt;}
.xf5{left:446.350667pt;}
.xbf{left:448.061333pt;}
.x8e{left:449.753333pt;}
.xf6{left:451.862667pt;}
.xea{left:455.581333pt;}
.xc0{left:456.602667pt;}
.x7{left:459.793333pt;}
.xeb{left:463.862667pt;}
.x3b{left:465.114667pt;}
.xb8{left:466.956000pt;}
.xc7{left:467.866667pt;}
.xfa{left:470.129333pt;}
.x3c{left:471.497333pt;}
.xef{left:473.706667pt;}
.x70{left:475.952000pt;}
.x3d{left:480.953333pt;}
.x8{left:482.998667pt;}
.xec{left:484.114667pt;}
.xf0{left:485.470667pt;}
.x3e{left:486.466667pt;}
.xd2{left:488.369333pt;}
.xed{left:492.068000pt;}
.x58{left:493.644000pt;}
.x71{left:496.204000pt;}
.x84{left:499.604000pt;}
.xee{left:501.150667pt;}
.xb9{left:503.178667pt;}
.x85{left:505.117333pt;}
.x1f{left:507.124000pt;}
.x59{left:509.146667pt;}
.x20{left:511.548000pt;}
.x5a{left:513.104000pt;}
.xc5{left:514.425333pt;}
.x21{left:515.406667pt;}
.xd3{left:516.578667pt;}
.x5b{left:517.528000pt;}
.x62{left:521.066667pt;}
.x22{left:522.306667pt;}
.x34{left:526.057333pt;}
.x54{left:528.048000pt;}
.x48{left:529.345333pt;}
.x49{left:533.204000pt;}
.x100{left:535.862667pt;}
.x86{left:537.917333pt;}
.xa2{left:539.216000pt;}
.x4a{left:540.589333pt;}
.x35{left:541.918667pt;}
.xa3{left:543.638667pt;}
.x36{left:545.776000pt;}
.x63{left:547.313333pt;}
.x43{left:548.824000pt;}
.x5c{left:550.557333pt;}
.xa9{left:551.672000pt;}
.x37{left:553.066667pt;}
.x55{left:554.294667pt;}
.xaa{left:555.653333pt;}
.x44{left:557.253333pt;}
.x56{left:558.264000pt;}
.x8b{left:560.026667pt;}
.x5d{left:562.254667pt;}
.x45{left:565.554667pt;}
.xfd{left:566.745333pt;}
.x26{left:568.337333pt;}
.x68{left:570.665333pt;}
.x87{left:574.736000pt;}
.xdd{left:576.217333pt;}
.x57{left:578.514667pt;}
.x27{left:579.774667pt;}
.x69{left:581.509333pt;}
.x28{left:583.748000pt;}
.xde{left:585.500000pt;}
.xdf{left:586.892000pt;}
.x88{left:588.178667pt;}
.xf{left:591.988000pt;}
.x8c{left:592.888000pt;}
.x5e{left:593.809333pt;}
.x103{left:595.674667pt;}
.x8d{left:596.816000pt;}
.x10{left:598.097333pt;}
.xbe{left:600.669333pt;}
.x1a{left:601.877333pt;}
.x6a{left:604.764000pt;}
.x1b{left:605.884000pt;}
.xe0{left:607.354667pt;}
.xfb{left:608.720000pt;}
.x5f{left:609.670667pt;}
.x60{left:613.628000pt;}
.x1c{left:614.640000pt;}
.xfe{left:618.146667pt;}
.x61{left:621.368000pt;}
.xfc{left:622.741333pt;}
.xcc{left:625.974667pt;}
.x6b{left:626.901333pt;}
.x4f{left:628.246667pt;}
.xe1{left:631.065333pt;}
.x6c{left:633.410667pt;}
.xb2{left:634.596000pt;}
.x16{left:636.128000pt;}
.xb3{left:638.454667pt;}
.xe2{left:640.434667pt;}
.x17{left:641.640000pt;}
.x1d{left:643.808000pt;}
.xff{left:645.096000pt;}
.xca{left:647.364000pt;}
.x50{left:651.570667pt;}
.x1e{left:655.488000pt;}
.xf1{left:656.640000pt;}
.xcb{left:659.044000pt;}
}




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