
    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_9c0d3765713a88a3de84dc00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_3152cd2d473758904e17bcf7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_6e82a1c5037620c4737c124c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_3f3f7f6020d02974c743702e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_91e3f804406ff7a33fda701b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8fea0eb550ba4475ac0d8224.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_66d634129585aa8d1a41878d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_eaa27de361070d581db06c75.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.451000;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_ffa29bda9a53826c29524422.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_267945bd8b4e27ced509b63a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_7ed99820a7ba80255439f1b3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_e6c793a934a6f6c4dac7e31e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c5ffa3c8048d100bb232723a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.685000;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_9b19619d8732b8aa4e6b2c15.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1513f85b7055bb8fc2437139.woff2')format("woff");}.fff{font-family:fff;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_29ae10d8562792e2fde04a89.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d83a2eec7b7fe85868b965e8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_cfb713f2d8517ebadaad59c6.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b8990ee2c31e563e34caa5b8.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7e30ea21e814cf86abfce831.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8624453de4f0ee874158bee2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.717000;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:ff16;src:url('chunks/assets/font_37c994a5fbb40f418d4b898e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.899000;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:ff17;src:url('chunks/assets/font_9b6bb90eacddc3173cadfcb3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.684000;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:ff18;src:url('chunks/assets/font_f46ae148fe9eb230349b7eac.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.999000;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:ff19;src:url('chunks/assets/font_afd962b087fc99341a6d7730.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_868754ec89aaf15c1cc4eb74.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_64d07d44adbcd15b45890371.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.923000;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:ff1c;src:url('chunks/assets/font_439ce67632d33ed9b684fb0a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_bcba8c1f8f7003f5dfee404d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.685000;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:ff1e;src:url('chunks/assets/font_bbcd3822e440313659102901.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.820000;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:ff1f;src:url('chunks/assets/font_66774acd56c758b9e63c57e5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.431000;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:ff20;src:url('chunks/assets/font_3f134b477e567663b8af733a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.717000;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:ff21;src:url('chunks/assets/font_e1f11971d597f17944c04c41.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_517616f1a52108a4568265ad.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.453000;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:ff23;src:url('chunks/assets/font_ef63c189fc84fc5dace05f23.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.001000;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:ff24;src:url('chunks/assets/font_edd341e5f251f988ad5640dd.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.683000;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;}
.m3{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);}
.m1b{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.mb{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);}
.m5{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);}
.m1c{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);}
.m11{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);}
.m17{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);}
.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);}
.m7{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.ma{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);}
.m19{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m12{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);}
.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);}
.md{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);}
.m1d{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);}
.mc{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);}
.m1e{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);}
.m4{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);}
.m10{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.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);}
.m2{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);}
.m14{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);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v1a{vertical-align:-49.836000px;}
.v16{vertical-align:-27.030000px;}
.v1{vertical-align:-25.104000px;}
.v8{vertical-align:-22.854000px;}
.v22{vertical-align:-16.776000px;}
.v14{vertical-align:-15.072000px;}
.v1c{vertical-align:-13.320000px;}
.vf{vertical-align:-10.398000px;}
.v5{vertical-align:-8.964000px;}
.v2{vertical-align:-5.976000px;}
.v21{vertical-align:-4.134000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.988000px;}
.vb{vertical-align:6.366000px;}
.v1b{vertical-align:8.370000px;}
.v4{vertical-align:9.468000px;}
.v7{vertical-align:14.778000px;}
.va{vertical-align:16.182000px;}
.v10{vertical-align:18.960000px;}
.v6{vertical-align:21.696000px;}
.v3{vertical-align:22.854000px;}
.v9{vertical-align:27.024000px;}
.v18{vertical-align:31.842000px;}
.ve{vertical-align:34.464000px;}
.v20{vertical-align:39.936000px;}
.vc{vertical-align:43.206000px;}
.vd{vertical-align:44.280000px;}
.v17{vertical-align:58.212000px;}
.v12{vertical-align:68.034000px;}
.v19{vertical-align:71.922000px;}
.v1d{vertical-align:79.362000px;}
.v13{vertical-align:89.178000px;}
.v15{vertical-align:103.104000px;}
.v1e{vertical-align:139.506000px;}
.v1f{vertical-align:143.466000px;}
.lsc{letter-spacing:0.000000px;}
.lsc0{letter-spacing:0.000334px;}
.lse1{letter-spacing:0.000476px;}
.ls10{letter-spacing:0.000611px;}
.ls3a{letter-spacing:0.000780px;}
.lsa1{letter-spacing:0.000843px;}
.ls89{letter-spacing:0.001044px;}
.lsad{letter-spacing:0.001050px;}
.ls2e{letter-spacing:0.001590px;}
.ls4a{letter-spacing:0.001593px;}
.ls4e{letter-spacing:0.001597px;}
.ls17{letter-spacing:0.002137px;}
.lsbf{letter-spacing:0.002250px;}
.lsb8{letter-spacing:0.002481px;}
.lsd5{letter-spacing:0.002613px;}
.ls8d{letter-spacing:0.002640px;}
.ls60{letter-spacing:0.002682px;}
.lsb1{letter-spacing:0.002696px;}
.ls73{letter-spacing:0.002698px;}
.ls5c{letter-spacing:0.002700px;}
.ls2d{letter-spacing:0.003239px;}
.ls81{letter-spacing:0.003630px;}
.ls6f{letter-spacing:0.003683px;}
.lscc{letter-spacing:0.003750px;}
.ls75{letter-spacing:0.004332px;}
.ls84{letter-spacing:0.004338px;}
.ls27{letter-spacing:0.004878px;}
.ls1{letter-spacing:0.005017px;}
.ls2{letter-spacing:0.005124px;}
.ls43{letter-spacing:0.005148px;}
.lsb9{letter-spacing:0.005357px;}
.lsb5{letter-spacing:0.005668px;}
.lsb7{letter-spacing:0.005781px;}
.lsd7{letter-spacing:0.007044px;}
.ls99{letter-spacing:0.008084px;}
.ls53{letter-spacing:0.008335px;}
.ls45{letter-spacing:0.008502px;}
.lse6{letter-spacing:0.009020px;}
.lsea{letter-spacing:0.009901px;}
.lsdd{letter-spacing:0.010101px;}
.ls7c{letter-spacing:0.011240px;}
.ls76{letter-spacing:0.011366px;}
.lsdf{letter-spacing:0.011790px;}
.ls63{letter-spacing:0.011905px;}
.ls48{letter-spacing:0.014084px;}
.ls12{letter-spacing:0.014136px;}
.ls3{letter-spacing:0.014452px;}
.ls1e{letter-spacing:0.014628px;}
.lsc4{letter-spacing:0.015681px;}
.ls49{letter-spacing:0.015839px;}
.ls32{letter-spacing:0.016063px;}
.lsd8{letter-spacing:0.016223px;}
.lse9{letter-spacing:0.016428px;}
.ls87{letter-spacing:0.016829px;}
.lsce{letter-spacing:0.017051px;}
.ls58{letter-spacing:0.017146px;}
.lsde{letter-spacing:0.017285px;}
.ls6e{letter-spacing:0.017905px;}
.ls34{letter-spacing:0.022730px;}
.ls69{letter-spacing:0.024408px;}
.lsca{letter-spacing:0.026478px;}
.ls9f{letter-spacing:0.030711px;}
.ls5a{letter-spacing:0.035273px;}
.ls9e{letter-spacing:0.261818px;}
.ls9{letter-spacing:0.268992px;}
.ls2b{letter-spacing:0.327273px;}
.ls95{letter-spacing:1.291156px;}
.ls7{letter-spacing:1.506355px;}
.lsa{letter-spacing:1.520291px;}
.ls5{letter-spacing:1.535856px;}
.ls8{letter-spacing:1.537060px;}
.ls59{letter-spacing:1.767274px;}
.lsa0{letter-spacing:1.796917px;}
.ls80{letter-spacing:1.799882px;}
.ls9a{letter-spacing:1.802609px;}
.ls67{letter-spacing:1.803170px;}
.ls9d{letter-spacing:1.815432px;}
.ls24{letter-spacing:1.817712px;}
.ls9b{letter-spacing:1.819576px;}
.ls26{letter-spacing:1.820137px;}
.ls7e{letter-spacing:1.823712px;}
.lscf{letter-spacing:1.830215px;}
.ls55{letter-spacing:1.832729px;}
.ls82{letter-spacing:1.832928px;}
.ls5b{letter-spacing:2.290911px;}
.ls5f{letter-spacing:2.330601px;}
.lsd2{letter-spacing:2.343209px;}
.ls3b{letter-spacing:2.356366px;}
.ls28{letter-spacing:2.487275px;}
.lsa5{letter-spacing:2.984343px;}
.ls31{letter-spacing:2.984915px;}
.lsd0{letter-spacing:2.985072px;}
.lse0{letter-spacing:2.985113px;}
.ls74{letter-spacing:2.985890px;}
.ls8e{letter-spacing:2.986031px;}
.ls40{letter-spacing:2.986059px;}
.ls13{letter-spacing:2.986362px;}
.ls4{letter-spacing:2.988557px;}
.lsc5{letter-spacing:2.988710px;}
.ls1f{letter-spacing:2.989739px;}
.lsa6{letter-spacing:2.990343px;}
.ls36{letter-spacing:2.990915px;}
.ls61{letter-spacing:2.991072px;}
.ls46{letter-spacing:2.991113px;}
.lsc8{letter-spacing:2.994710px;}
.ls38{letter-spacing:2.995739px;}
.lsd4{letter-spacing:3.000075px;}
.lsd1{letter-spacing:3.338185px;}
.ls7a{letter-spacing:3.665458px;}
.ls14{letter-spacing:4.252362px;}
.ls97{letter-spacing:4.259615px;}
.ls96{letter-spacing:4.265615px;}
.ls42{letter-spacing:4.394022px;}
.ls44{letter-spacing:4.400022px;}
.ls6{letter-spacing:4.500557px;}
.ls2c{letter-spacing:4.897739px;}
.lsb6{letter-spacing:4.903739px;}
.lsab{letter-spacing:5.105459px;}
.ls52{letter-spacing:5.220499px;}
.ls3c{letter-spacing:5.290996px;}
.ls30{letter-spacing:5.295141px;}
.lsdb{letter-spacing:5.311591px;}
.ls3f{letter-spacing:5.317591px;}
.lsd9{letter-spacing:5.330070px;}
.lsb{letter-spacing:5.478557px;}
.lsd6{letter-spacing:5.976532px;}
.ls8a{letter-spacing:5.976557px;}
.ls7f{letter-spacing:6.715739px;}
.ls25{letter-spacing:6.721739px;}
.ls88{letter-spacing:6.930557px;}
.ls93{letter-spacing:7.069097px;}
.lsa7{letter-spacing:7.168296px;}
.ls70{letter-spacing:8.340557px;}
.lse4{letter-spacing:10.633578px;}
.lsb4{letter-spacing:10.906350px;}
.lsaf{letter-spacing:10.912350px;}
.ls50{letter-spacing:10.930918px;}
.lsf{letter-spacing:13.270183px;}
.ls79{letter-spacing:13.892915px;}
.ls1d{letter-spacing:13.898915px;}
.ls1b{letter-spacing:14.530921px;}
.ls68{letter-spacing:14.596376px;}
.ls8c{letter-spacing:14.782200px;}
.ls91{letter-spacing:14.788200px;}
.lsc3{letter-spacing:15.924326px;}
.lsbe{letter-spacing:16.272710px;}
.ls65{letter-spacing:16.363650px;}
.lse{letter-spacing:16.617617px;}
.ls4f{letter-spacing:17.528915px;}
.ls6b{letter-spacing:17.529072px;}
.ls47{letter-spacing:17.533739px;}
.ls4b{letter-spacing:17.534915px;}
.ls23{letter-spacing:17.539739px;}
.ls33{letter-spacing:18.130924px;}
.ls3e{letter-spacing:18.179412px;}
.lsa2{letter-spacing:18.180843px;}
.ls3d{letter-spacing:18.182706px;}
.lsda{letter-spacing:18.185412px;}
.ls19{letter-spacing:18.196379px;}
.lsb0{letter-spacing:18.209778px;}
.ls11{letter-spacing:19.588362px;}
.lseb{letter-spacing:19.591409px;}
.lsc2{letter-spacing:19.941274px;}
.lse7{letter-spacing:19.965050px;}
.ls56{letter-spacing:20.029108px;}
.ls4d{letter-spacing:20.348700px;}
.ls86{letter-spacing:20.520557px;}
.ls39{letter-spacing:20.552744px;}
.ls62{letter-spacing:20.659301px;}
.ls5e{letter-spacing:21.164915px;}
.ls18{letter-spacing:21.169739px;}
.ls1c{letter-spacing:21.170915px;}
.ls51{letter-spacing:21.172059px;}
.ls64{letter-spacing:21.175739px;}
.lsd3{letter-spacing:21.180075px;}
.lsd{letter-spacing:21.280114px;}
.ls94{letter-spacing:21.318926px;}
.ls57{letter-spacing:21.403654px;}
.ls15{letter-spacing:21.419468px;}
.lsc9{letter-spacing:21.469109px;}
.ls4c{letter-spacing:21.719412px;}
.ls20{letter-spacing:21.796382px;}
.ls21{letter-spacing:21.861836px;}
.lscd{letter-spacing:21.927291px;}
.ls98{letter-spacing:22.123655px;}
.lse3{letter-spacing:22.698445px;}
.lsc1{letter-spacing:22.915739px;}
.ls7d{letter-spacing:23.077739px;}
.ls22{letter-spacing:23.083739px;}
.ls1a{letter-spacing:23.301838px;}
.ls77{letter-spacing:24.800915px;}
.ls35{letter-spacing:24.805739px;}
.ls16{letter-spacing:24.806915px;}
.ls54{letter-spacing:24.808059px;}
.ls5d{letter-spacing:24.810371px;}
.lscb{letter-spacing:24.811739px;}
.ls66{letter-spacing:24.901739px;}
.ls85{letter-spacing:25.116557px;}
.ls72{letter-spacing:25.772915px;}
.lse2{letter-spacing:25.903409px;}
.ls37{letter-spacing:26.407739px;}
.ls78{letter-spacing:26.967295px;}
.ls83{letter-spacing:28.531739px;}
.lse5{letter-spacing:28.603660px;}
.ls92{letter-spacing:28.865479px;}
.lsdc{letter-spacing:30.501844px;}
.ls7b{letter-spacing:33.512755px;}
.ls6c{letter-spacing:35.439072px;}
.ls2f{letter-spacing:35.869121px;}
.lsae{letter-spacing:47.037113px;}
.lsb3{letter-spacing:52.429135px;}
.ls6a{letter-spacing:53.619072px;}
.lsb2{letter-spacing:55.388915px;}
.ls6d{letter-spacing:55.567301px;}
.lsac{letter-spacing:56.814593px;}
.ls8b{letter-spacing:56.985739px;}
.lsa4{letter-spacing:66.281412px;}
.lsa3{letter-spacing:66.416113px;}
.ls2a{letter-spacing:66.422113px;}
.ls90{letter-spacing:66.461644px;}
.lse8{letter-spacing:74.958602px;}
.lsa9{letter-spacing:87.806113px;}
.ls29{letter-spacing:87.812113px;}
.ls71{letter-spacing:96.639739px;}
.lsbc{letter-spacing:98.548362px;}
.ls8f{letter-spacing:104.872059px;}
.lsa8{letter-spacing:107.660113px;}
.lsbb{letter-spacing:108.160362px;}
.ls41{letter-spacing:141.774664px;}
.ls9c{letter-spacing:141.840118px;}
.lsaa{letter-spacing:148.967914px;}
.lsc6{letter-spacing:174.741737px;}
.lsc7{letter-spacing:175.485737px;}
.lsba{letter-spacing:259.090362px;}
.ls0{letter-spacing:349.381819px;}
.lsbd{letter-spacing:573.552185px;}
.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;}
}
.wsc1{word-spacing:-104.846402px;}
.ws79{word-spacing:-65.520055px;}
.ws6b{word-spacing:-65.454600px;}
.ws6d{word-spacing:-50.923679px;}
.wsb2{word-spacing:-48.685131px;}
.ws68{word-spacing:-47.323676px;}
.ws6a{word-spacing:-47.258221px;}
.ws34{word-spacing:-42.637126px;}
.ws8b{word-spacing:-40.125610px;}
.ws8f{word-spacing:-40.107527px;}
.ws20{word-spacing:-38.937826px;}
.ws52{word-spacing:-36.379667px;}
.ws7b{word-spacing:-34.560029px;}
.ws78{word-spacing:-33.453846px;}
.ws39{word-spacing:-33.211407px;}
.ws3c{word-spacing:-32.727300px;}
.ws41{word-spacing:-32.714209px;}
.ws14{word-spacing:-31.832513px;}
.ws80{word-spacing:-31.771663px;}
.ws51{word-spacing:-31.706208px;}
.ws9b{word-spacing:-29.887800px;}
.ws1f{word-spacing:-29.875845px;}
.ws2c{word-spacing:-28.955301px;}
.wsf{word-spacing:-27.646998px;}
.ws94{word-spacing:-24.506202px;}
.ws6f{word-spacing:-24.440748px;}
.wsc0{word-spacing:-22.379985px;}
.ws9d{word-spacing:-22.320209px;}
.ws3e{word-spacing:-20.971654px;}
.ws6e{word-spacing:-18.183288px;}
.ws7c{word-spacing:-17.149105px;}
.ws97{word-spacing:-16.605662px;}
.ws0{word-spacing:-16.139475px;}
.wsaa{word-spacing:-15.674748px;}
.ws46{word-spacing:-15.674668px;}
.ws45{word-spacing:-15.579034px;}
.ws62{word-spacing:-15.512740px;}
.wsae{word-spacing:-15.381831px;}
.wsa6{word-spacing:-15.054558px;}
.ws60{word-spacing:-14.989103px;}
.wsd{word-spacing:-14.358793px;}
.wse{word-spacing:-14.304995px;}
.wsa1{word-spacing:-14.282668px;}
.ws88{word-spacing:-13.483648px;}
.ws3{word-spacing:-13.449600px;}
.ws95{word-spacing:-13.090920px;}
.ws87{word-spacing:-12.803570px;}
.ws56{word-spacing:-12.763647px;}
.wsb8{word-spacing:-12.567283px;}
.ws72{word-spacing:-12.305465px;}
.ws66{word-spacing:-12.109101px;}
.wsa7{word-spacing:-12.041595px;}
.ws71{word-spacing:-12.041168px;}
.ws89{word-spacing:-12.038668px;}
.ws73{word-spacing:-12.032668px;}
.ws1d{word-spacing:-11.895344px;}
.ws29{word-spacing:-11.835569px;}
.ws64{word-spacing:-11.476915px;}
.ws7f{word-spacing:-11.389100px;}
.ws63{word-spacing:-11.323646px;}
.ws82{word-spacing:-11.258191px;}
.ws38{word-spacing:-11.192737px;}
.ws49{word-spacing:-11.127282px;}
.wsa{word-spacing:-11.066331px;}
.ws3f{word-spacing:-11.061827px;}
.ws32{word-spacing:-10.930918px;}
.ws57{word-spacing:-10.865464px;}
.ws1c{word-spacing:-10.819384px;}
.ws37{word-spacing:-10.800009px;}
.wsce{word-spacing:-10.759608px;}
.ws47{word-spacing:-10.734554px;}
.wsca{word-spacing:-10.699832px;}
.ws48{word-spacing:-10.669100px;}
.wsc8{word-spacing:-10.640057px;}
.wsb{word-spacing:-10.635944px;}
.ws3b{word-spacing:-10.603645px;}
.ws93{word-spacing:-10.538191px;}
.wsab{word-spacing:-10.472736px;}
.ws5f{word-spacing:-10.407281px;}
.wsc6{word-spacing:-10.400954px;}
.wsd0{word-spacing:-10.221628px;}
.ws4a{word-spacing:-10.210918px;}
.ws26{word-spacing:-10.102076px;}
.ws40{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws2e{word-spacing:-9.922750px;}
.ws13{word-spacing:-9.893526px;}
.ws77{word-spacing:-9.890190px;}
.wscf{word-spacing:-9.868952px;}
.ws2a{word-spacing:-9.803198px;}
.wsc9{word-spacing:-9.749400px;}
.wsd4{word-spacing:-9.743423px;}
.ws30{word-spacing:-9.683647px;}
.ws9{word-spacing:-9.570735px;}
.ws27{word-spacing:-9.564096px;}
.wsc{word-spacing:-9.516937px;}
.wsc7{word-spacing:-9.510298px;}
.ws55{word-spacing:-9.490917px;}
.wsd1{word-spacing:-9.450522px;}
.ws7d{word-spacing:-9.425462px;}
.ws90{word-spacing:-9.294553px;}
.ws12{word-spacing:-9.247945px;}
.wsd5{word-spacing:-9.211420px;}
.ws8{word-spacing:-9.194147px;}
.wsc5{word-spacing:-9.151644px;}
.wsd2{word-spacing:-8.972318px;}
.wsd3{word-spacing:-8.852766px;}
.wsb7{word-spacing:-8.574553px;}
.wsb3{word-spacing:-8.405168px;}
.wsad{word-spacing:-8.399168px;}
.ws25{word-spacing:-8.368584px;}
.ws5e{word-spacing:-8.050916px;}
.ws53{word-spacing:-7.920007px;}
.ws65{word-spacing:-7.854552px;}
.wsc4{word-spacing:-7.776806px;}
.ws92{word-spacing:-7.723643px;}
.ws2f{word-spacing:-7.412174px;}
.wsac{word-spacing:-7.265461px;}
.ws86{word-spacing:-7.252370px;}
.wscb{word-spacing:-7.113296px;}
.wscd{word-spacing:-7.053521px;}
.ws75{word-spacing:-6.800668px;}
.ws5{word-spacing:-6.773219px;}
.ws1e{word-spacing:-6.694867px;}
.wscc{word-spacing:-6.581294px;}
.wsb9{word-spacing:-6.283642px;}
.ws11{word-spacing:-6.224475px;}
.ws58{word-spacing:-6.087278px;}
.wsa4{word-spacing:-6.043096px;}
.ws1b{word-spacing:-6.037336px;}
.ws5b{word-spacing:-5.956369px;}
.ws24{word-spacing:-5.917784px;}
.ws31{word-spacing:-5.825459px;}
.ws3a{word-spacing:-5.760005px;}
.ws28{word-spacing:-5.499355px;}
.wsa8{word-spacing:-5.498186px;}
.wsba{word-spacing:-5.432732px;}
.ws10{word-spacing:-5.428259px;}
.ws5a{word-spacing:-5.170913px;}
.ws1a{word-spacing:-5.027128px;}
.ws59{word-spacing:-4.850186px;}
.wsbb{word-spacing:-4.778186px;}
.wsbe{word-spacing:-4.581822px;}
.wsbc{word-spacing:-4.189094px;}
.wsbd{word-spacing:-4.123640px;}
.wsb1{word-spacing:-3.730912px;}
.ws8e{word-spacing:-3.665458px;}
.ws44{word-spacing:-3.652367px;}
.wsa2{word-spacing:-3.586560px;}
.ws22{word-spacing:-3.335478px;}
.ws5c{word-spacing:-3.272730px;}
.ws5d{word-spacing:-2.814548px;}
.ws54{word-spacing:-2.618184px;}
.ws61{word-spacing:-2.552729px;}
.wsb0{word-spacing:-0.772364px;}
.wsbf{word-spacing:-0.717307px;}
.wsb5{word-spacing:-0.654546px;}
.ws2{word-spacing:-0.167372px;}
.ws3d{word-spacing:-0.117818px;}
.wsa0{word-spacing:-0.071731px;}
.ws42{word-spacing:-0.065455px;}
.ws2b{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.ws67{word-spacing:-0.052364px;}
.ws4b{word-spacing:-0.047821px;}
.ws96{word-spacing:-0.041843px;}
.ws17{word-spacing:0.000000px;}
.wsc3{word-spacing:0.011955px;}
.ws4e{word-spacing:0.013091px;}
.ws2d{word-spacing:0.131506px;}
.wsaf{word-spacing:0.340364px;}
.ws18{word-spacing:2.683639px;}
.ws6{word-spacing:2.951516px;}
.wsb6{word-spacing:3.141821px;}
.wsa5{word-spacing:5.136452px;}
.ws81{word-spacing:7.680452px;}
.ws8a{word-spacing:7.788452px;}
.ws84{word-spacing:7.800452px;}
.ws8d{word-spacing:8.754452px;}
.ws15{word-spacing:9.145728px;}
.ws8c{word-spacing:9.546452px;}
.ws19{word-spacing:11.429123px;}
.wsa9{word-spacing:13.221829px;}
.ws16{word-spacing:15.278746px;}
.ws21{word-spacing:16.224403px;}
.ws23{word-spacing:16.227303px;}
.ws85{word-spacing:17.481037px;}
.ws6c{word-spacing:17.486394px;}
.ws43{word-spacing:17.487037px;}
.ws50{word-spacing:18.196379px;}
.wsa3{word-spacing:18.879038px;}
.wsc2{word-spacing:19.561890px;}
.ws83{word-spacing:21.120151px;}
.ws69{word-spacing:21.123038px;}
.ws7e{word-spacing:21.123668px;}
.ws1{word-spacing:23.312640px;}
.ws4d{word-spacing:25.333790px;}
.ws4f{word-spacing:25.345873px;}
.ws74{word-spacing:26.355037px;}
.ws4c{word-spacing:29.009479px;}
.wsb4{word-spacing:31.542572px;}
.ws36{word-spacing:34.370970px;}
.ws76{word-spacing:43.104452px;}
.ws91{word-spacing:43.110452px;}
.ws7a{word-spacing:99.137537px;}
.ws70{word-spacing:99.202992px;}
.ws98{word-spacing:144.806908px;}
.ws9a{word-spacing:173.922754px;}
.ws9c{word-spacing:177.682403px;}
.ws99{word-spacing:202.560403px;}
.ws9e{word-spacing:480.366403px;}
.ws9f{word-spacing:513.993303px;}
.ws33{word-spacing:2202.931881px;}
.ws35{word-spacing:2229.126812px;}
._5f{margin-left:-74.241314px;}
._59{margin-left:-30.501844px;}
._53{margin-left:-19.146942px;}
._4a{margin-left:-17.287195px;}
._48{margin-left:-10.548999px;}
._1{margin-left:-8.091257px;}
._2{margin-left:-5.881958px;}
._4{margin-left:-4.519066px;}
._7{margin-left:-3.275736px;}
._3{margin-left:-1.673717px;}
._5{width:1.506355px;}
._0{width:2.668393px;}
._8{width:4.196275px;}
._52{width:5.478636px;}
._47{width:6.700936px;}
._d{width:19.307538px;}
._56{width:20.496278px;}
._50{width:21.790266px;}
._b{width:23.037556px;}
._6{width:24.269045px;}
._e{width:26.839244px;}
._44{width:28.602761px;}
._43{width:29.621032px;}
._5a{width:30.894571px;}
._c{width:32.278824px;}
._4c{width:34.661036px;}
._46{width:35.869121px;}
._a{width:37.048907px;}
._9{width:39.141053px;}
._5c{width:42.938218px;}
._4d{width:44.163654px;}
._45{width:45.265581px;}
._5d{width:48.642017px;}
._5b{width:51.316406px;}
._62{width:52.542752px;}
._4b{width:55.214680px;}
._4e{width:64.157532px;}
._55{width:66.263329px;}
._4f{width:69.148404px;}
._54{width:77.378416px;}
._49{width:83.650979px;}
._64{width:115.665786px;}
._57{width:141.334032px;}
._51{width:142.460473px;}
._61{width:184.706604px;}
._63{width:251.356398px;}
._58{width:258.884702px;}
._60{width:266.467660px;}
._65{width:364.033404px;}
._5e{width:397.447964px;}
._25{width:886.111661px;}
._1f{width:1010.157084px;}
._40{width:1072.466018px;}
._18{width:1094.136235px;}
._36{width:1097.006383px;}
._37{width:1201.453676px;}
._19{width:1267.720935px;}
._2a{width:1272.424711px;}
._41{width:1409.209435px;}
._16{width:1411.300225px;}
._20{width:1442.156545px;}
._3f{width:1460.999413px;}
._38{width:1480.738600px;}
._14{width:1484.697884px;}
._15{width:1493.726713px;}
._33{width:1507.873862px;}
._21{width:1510.360238px;}
._1d{width:1550.036773px;}
._2c{width:1569.430482px;}
._1b{width:1575.433158px;}
._42{width:1604.627869px;}
._1c{width:1614.603405px;}
._1e{width:1618.231217px;}
._3d{width:1652.790347px;}
._2f{width:1683.164879px;}
._13{width:1685.517647px;}
._2b{width:1692.373368px;}
._3a{width:1711.083485px;}
._27{width:1725.764170px;}
._2e{width:1734.506084px;}
._32{width:1756.714297px;}
._23{width:1759.874072px;}
._22{width:1790.573179px;}
._3e{width:1791.742406px;}
._29{width:1794.275089px;}
._1a{width:1802.943199px;}
._10{width:1810.985159px;}
._12{width:1813.154117px;}
._2d{width:1817.736838px;}
._3b{width:1822.244250px;}
._35{width:1842.492124px;}
._26{width:1878.469751px;}
._24{width:1907.474195px;}
._39{width:1919.107160px;}
._31{width:1939.388837px;}
._3c{width:1978.558790px;}
._11{width:1982.383553px;}
._17{width:2004.806085px;}
._30{width:2066.373619px;}
._28{width:2109.798122px;}
._34{width:2160.284490px;}
._f{width:2237.849006px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs7{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:117.160200px;}
.fs2{font-size:167.372400px;}
.y0{bottom:0.000000px;}
.ycd{bottom:154.336500px;}
.y1fe{bottom:155.559000px;}
.y83{bottom:156.268500px;}
.yf9{bottom:156.661500px;}
.y50{bottom:160.314000px;}
.yf8{bottom:160.707000px;}
.y1ae{bottom:161.515500px;}
.y1ad{bottom:165.561000px;}
.y17{bottom:169.684500px;}
.y16{bottom:172.051500px;}
.y33{bottom:173.425500px;}
.ycc{bottom:176.631000px;}
.y1fd{bottom:186.754500px;}
.ya2{bottom:190.800000px;}
.y6a{bottom:191.530500px;}
.y140{bottom:192.235500px;}
.y1d2{bottom:193.662000px;}
.y15{bottom:196.708500px;}
.y1e6{bottom:198.112500px;}
.ye3{bottom:203.067000px;}
.y82{bottom:203.988000px;}
.yb4{bottom:205.197000px;}
.y110{bottom:205.240500px;}
.y15c{bottom:206.302500px;}
.y13f{bottom:206.848500px;}
.y123{bottom:208.071000px;}
.y4f{bottom:208.551000px;}
.ycb{bottom:209.265000px;}
.y1ac{bottom:209.976000px;}
.y22a{bottom:210.669000px;}
.y13e{bottom:210.892500px;}
.yf7{bottom:212.442000px;}
.y1c1{bottom:213.652500px;}
.y1e5{bottom:220.407000px;}
.y17e{bottom:221.286000px;}
.y69{bottom:222.745500px;}
.y14{bottom:224.355000px;}
.y1d1{bottom:229.062000px;}
.y10f{bottom:233.272500px;}
.y81{bottom:234.474000px;}
.y10e{bottom:235.726500px;}
.y1fc{bottom:236.049000px;}
.y4e{bottom:239.731500px;}
.yca{bottom:239.751000px;}
.y15a{bottom:241.066500px;}
.y229{bottom:241.155000px;}
.ya1{bottom:243.199500px;}
.y192{bottom:245.410500px;}
.y15b{bottom:248.245500px;}
.y13{bottom:249.012000px;}
.y1c0{bottom:249.054000px;}
.yb3{bottom:250.080000px;}
.y215{bottom:251.770500px;}
.y122{bottom:252.961500px;}
.y68{bottom:253.962000px;}
.y1ab{bottom:254.569500px;}
.ye2{bottom:254.812500px;}
.y1d0{bottom:255.961500px;}
.y13d{bottom:257.796000px;}
.y1e4{bottom:258.358500px;}
.y159{bottom:259.315500px;}
.yf6{bottom:261.736500px;}
.y158{bottom:263.361000px;}
.yf5{bottom:265.782000px;}
.y4d{bottom:270.910500px;}
.yc9{bottom:272.232000px;}
.y17d{bottom:273.031500px;}
.y1bf{bottom:275.952000px;}
.y12{bottom:276.658500px;}
.y80{bottom:278.146500px;}
.y10d{bottom:280.653000px;}
.y1fb{bottom:281.296500px;}
.y214{bottom:282.745500px;}
.y1cf{bottom:283.458000px;}
.y13b{bottom:290.490000px;}
.y228{bottom:292.900500px;}
.yc8{bottom:294.526500px;}
.y13a{bottom:297.613500px;}
.y121{bottom:297.853500px;}
.y191{bottom:298.099500px;}
.y157{bottom:298.279500px;}
.y11{bottom:298.950000px;}
.y1aa{bottom:299.161500px;}
.y10{bottom:301.317000px;}
.yb2{bottom:301.825500px;}
.y4c{bottom:302.089500px;}
.y67{bottom:302.271000px;}
.y1be{bottom:302.851500px;}
.y13c{bottom:304.794000px;}
.ya0{bottom:307.849500px;}
.y138{bottom:308.839500px;}
.y1e3{bottom:310.803000px;}
.y139{bottom:312.606000px;}
.y213{bottom:313.231500px;}
.ye1{bottom:315.073500px;}
.yf4{bottom:317.518500px;}
.y7f{bottom:321.820500px;}
.y17b{bottom:321.963000px;}
.y10c{bottom:325.579500px;}
.y1fa{bottom:326.545500px;}
.yc7{bottom:327.160500px;}
.yf{bottom:328.962000px;}
.y17c{bottom:329.142000px;}
.y1bd{bottom:330.348000px;}
.y17a{bottom:333.187500px;}
.y4b{bottom:333.270000px;}
.y66{bottom:333.487500px;}
.y9f{bottom:338.335500px;}
.y1a9{bottom:339.709500px;}
.y212{bottom:343.716000px;}
.y1a8{bottom:343.755000px;}
.y120{bottom:349.599000px;}
.y156{bottom:350.025000px;}
.y190{bottom:351.766500px;}
.ye{bottom:353.620500px;}
.y227{bottom:353.815500px;}
.y137{bottom:355.741500px;}
.ye0{bottom:357.826500px;}
.yb1{bottom:362.421000px;}
.y65{bottom:364.702500px;}
.y7e{bottom:365.494500px;}
.yf3{bottom:366.813000px;}
.y9e{bottom:368.820000px;}
.yf2{bottom:370.858500px;}
.y1f9{bottom:371.794500px;}
.y211{bottom:374.202000px;}
.y1e2{bottom:375.715500px;}
.y10b{bottom:377.325000px;}
.y1ce{bottom:378.631500px;}
.yc6{bottom:378.906000px;}
.yd{bottom:381.267000px;}
.y4a{bottom:381.507000px;}
.y226{bottom:384.301500px;}
.y1a7{bottom:388.348500px;}
.y135{bottom:389.436000px;}
.y64{bottom:395.919000px;}
.y134{bottom:396.559500px;}
.y1bc{bottom:397.513500px;}
.y9d{bottom:399.306000px;}
.y155{bottom:399.567000px;}
.ydf{bottom:400.579500px;}
.y1f8{bottom:402.279000px;}
.y136{bottom:403.740000px;}
.y210{bottom:404.688000px;}
.y179{bottom:405.771000px;}
.yc{bottom:405.924000px;}
.y1e1{bottom:406.201500px;}
.yb0{bottom:407.304000px;}
.y133{bottom:407.784000px;}
.y7d{bottom:409.167000px;}
.y11f{bottom:410.259000px;}
.y154{bottom:410.793000px;}
.y49{bottom:412.686000px;}
.y32{bottom:417.919500px;}
.yf1{bottom:422.593500px;}
.y18f{bottom:423.663000px;}
.y9c{bottom:429.792000px;}
.y1cd{bottom:430.470000px;}
.yde{bottom:431.065500px;}
.y1a6{bottom:431.269500px;}
.yb{bottom:433.570500px;}
.y225{bottom:434.214000px;}
.y1e0{bottom:436.687500px;}
.y10a{bottom:437.926500px;}
.yc5{bottom:439.315500px;}
.y48{bottom:443.866500px;}
.y63{bottom:444.228000px;}
.y31{bottom:448.405500px;}
.yaf{bottom:452.187000px;}
.y7c{bottom:452.841000px;}
.y1f7{bottom:454.026000px;}
.y18e{bottom:454.149000px;}
.y132{bottom:454.687500px;}
.y11e{bottom:455.566500px;}
.y1b7{bottom:456.108000px;}
.y153{bottom:456.780000px;}
.y20f{bottom:456.922500px;}
.y178{bottom:457.516500px;}
.ya{bottom:458.227500px;}
.y9b{bottom:460.932000px;}
.y249{bottom:461.434500px;}
.y1a5{bottom:461.754000px;}
.y109{bottom:468.412500px;}
.ydd{bottom:473.820000px;}
.yf0{bottom:474.330000px;}
.y47{bottom:475.045500px;}
.y30{bottom:478.891500px;}
.y224{bottom:479.644500px;}
.yc4{bottom:481.525500px;}
.y248{bottom:488.334000px;}
.y1df{bottom:489.132000px;}
.y9{bottom:491.260500px;}
.y9a{bottom:491.416500px;}
.y152{bottom:491.544000px;}
.y62{bottom:492.537000px;}
.y7b{bottom:496.515000px;}
.yae{bottom:497.070000px;}
.y108{bottom:498.898500px;}
.y11d{bottom:500.874000px;}
.y1bb{bottom:503.904000px;}
.y1a4{bottom:506.169000px;}
.y46{bottom:506.224500px;}
.y131{bottom:506.433000px;}
.y177{bottom:506.448000px;}
.y18c{bottom:508.759500px;}
.y223{bottom:510.129000px;}
.y18d{bottom:512.526000px;}
.y151{bottom:513.838500px;}
.y1f6{bottom:514.677000px;}
.y247{bottom:515.233500px;}
.ydc{bottom:516.573000px;}
.y2f{bottom:519.268500px;}
.y20e{bottom:520.627500px;}
.yc3{bottom:521.184000px;}
.y99{bottom:521.902500px;}
.yc2{bottom:525.229500px;}
.yef{bottom:526.066500px;}
.y7a{bottom:527.001000px;}
.y176{bottom:528.742500px;}
.y11c{bottom:534.957000px;}
.y45{bottom:537.405000px;}
.y1cc{bottom:539.749500px;}
.y61{bottom:540.847500px;}
.y246{bottom:542.133000px;}
.y2e{bottom:542.472000px;}
.y8{bottom:543.672000px;}
.y2d{bottom:546.166500px;}
.y150{bottom:548.757000px;}
.yad{bottom:548.815500px;}
.y1a3{bottom:550.584000px;}
.y107{bottom:550.644000px;}
.y1b6{bottom:550.771500px;}
.y98{bottom:552.388500px;}
.y1de{bottom:554.044500px;}
.y222{bottom:555.559500px;}
.y1f5{bottom:555.880500px;}
.y11b{bottom:557.251500px;}
.y20d{bottom:557.793000px;}
.y175{bottom:559.770000px;}
.y1f4{bottom:559.926000px;}
.y18b{bottom:561.448500px;}
.y130{bottom:567.345000px;}
.ydb{bottom:568.318500px;}
.yc1{bottom:568.933500px;}
.y245{bottom:569.031000px;}
.y7{bottom:570.570000px;}
.y79{bottom:570.673500px;}
.y60{bottom:572.062500px;}
.y2c{bottom:573.066000px;}
.yee{bottom:579.406500px;}
.y20c{bottom:580.087500px;}
.y1a2{bottom:581.070000px;}
.y97{bottom:582.874500px;}
.y44{bottom:585.642000px;}
.y221{bottom:586.045500px;}
.y171{bottom:586.887000px;}
.y14f{bottom:590.700000px;}
.y11a{bottom:591.489000px;}
.y170{bottom:594.319500px;}
.y14e{bottom:594.745500px;}
.y244{bottom:595.930500px;}
.y6{bottom:597.469500px;}
.y1ba{bottom:597.502500px;}
.y2b{bottom:599.965500px;}
.y173{bottom:601.498500px;}
.y5f{bottom:603.279000px;}
.y1f3{bottom:605.173500px;}
.y172{bottom:605.544000px;}
.y1dd{bottom:608.853000px;}
.yac{bottom:609.409500px;}
.y106{bottom:611.245500px;}
.y174{bottom:612.568500px;}
.yc0{bottom:612.639000px;}
.y96{bottom:614.013000px;}
.y12e{bottom:614.247000px;}
.y78{bottom:614.347500px;}
.y18a{bottom:615.115500px;}
.y16f{bottom:616.614000px;}
.y43{bottom:616.821000px;}
.y20b{bottom:617.406000px;}
.y12f{bottom:618.015000px;}
.y243{bottom:622.830000px;}
.y2a{bottom:626.865000px;}
.yda{bottom:628.578000px;}
.yed{bottom:631.141500px;}
.y220{bottom:631.474500px;}
.y1a1{bottom:632.815500px;}
.y5e{bottom:634.494000px;}
.y119{bottom:636.796500px;}
.y1cb{bottom:640.321500px;}
.y14d{bottom:640.734000px;}
.y16e{bottom:643.596000px;}
.y1b5{bottom:644.254500px;}
.y95{bottom:644.499000px;}
.y1f2{bottom:646.377000px;}
.y16d{bottom:647.641500px;}
.y42{bottom:648.001500px;}
.y242{bottom:649.729500px;}
.y1f1{bottom:650.422500px;}
.y29{bottom:653.763000px;}
.yab{bottom:654.159000px;}
.y105{bottom:656.172000px;}
.ybf{bottom:656.343000px;}
.y77{bottom:656.526000px;}
.y1dc{bottom:657.780000px;}
.yd9{bottom:659.064000px;}
.y12d{bottom:661.150500px;}
.y20a{bottom:669.640500px;}
.y16b{bottom:674.515500px;}
.y94{bottom:674.985000px;}
.y241{bottom:676.627500px;}
.y21f{bottom:676.905000px;}
.y41{bottom:679.180500px;}
.y28{bottom:680.662500px;}
.y118{bottom:682.102500px;}
.y5d{bottom:682.804500px;}
.yec{bottom:684.492000px;}
.y189{bottom:687.012000px;}
.y16c{bottom:689.127000px;}
.y1a0{bottom:689.290500px;}
.yd8{bottom:689.550000px;}
.y1b9{bottom:690.990000px;}
.y14c{bottom:692.479500px;}
.y169{bottom:693.172500px;}
.y19f{bottom:693.336000px;}
.y1f0{bottom:695.671500px;}
.yaa{bottom:698.908500px;}
.y1c8{bottom:700.506000px;}
.y76{bottom:700.873500px;}
.y104{bottom:701.098500px;}
.y240{bottom:703.527000px;}
.y93{bottom:705.471000px;}
.y16a{bottom:705.631500px;}
.y1db{bottom:706.707000px;}
.y27{bottom:707.562000px;}
.y12b{bottom:708.054000px;}
.ybe{bottom:708.088500px;}
.y40{bottom:710.361000px;}
.y12c{bottom:711.820500px;}
.y188{bottom:717.496500px;}
.yd7{bottom:720.036000px;}
.y21e{bottom:726.817500px;}
.y23f{bottom:730.426500px;}
.y5c{bottom:731.113500px;}
.y209{bottom:733.345500px;}
.y117{bottom:733.848000px;}
.y168{bottom:735.270000px;}
.y92{bottom:735.957000px;}
.y1ef{bottom:736.875000px;}
.y19e{bottom:737.751000px;}
.y1b4{bottom:738.876000px;}
.y1ee{bottom:740.919000px;}
.y5{bottom:741.493500px;}
.y3f{bottom:741.540000px;}
.ya9{bottom:743.658000px;}
.y75{bottom:745.219500px;}
.y26{bottom:749.404500px;}
.y12a{bottom:750.910500px;}
.y103{bottom:752.844000px;}
.y14b{bottom:753.247500px;}
.yeb{bottom:754.572000px;}
.y1ca{bottom:754.785000px;}
.y129{bottom:754.956000px;}
.y23e{bottom:757.326000px;}
.y187{bottom:760.882500px;}
.y1da{bottom:761.515500px;}
.y208{bottom:763.831500px;}
.y91{bottom:766.441500px;}
.ybd{bottom:768.498000px;}
.yd6{bottom:771.781500px;}
.y3e{bottom:772.719000px;}
.y21d{bottom:778.563000px;}
.y5b{bottom:779.422500px;}
.y1ed{bottom:782.122500px;}
.y19d{bottom:782.164500px;}
.y186{bottom:783.177000px;}
.y14a{bottom:783.732000px;}
.y23d{bottom:784.224000px;}
.y1b8{bottom:784.533000px;}
.y1ec{bottom:786.168000px;}
.y167{bottom:787.015500px;}
.ya8{bottom:787.047000px;}
.y74{bottom:787.398000px;}
.y25{bottom:791.248500px;}
.y116{bottom:794.509500px;}
.y90{bottom:796.927500px;}
.yea{bottom:806.308500px;}
.y128{bottom:806.701500px;}
.y5a{bottom:810.639000px;}
.y23c{bottom:811.123500px;}
.y1d9{bottom:811.237500px;}
.ybc{bottom:812.202000px;}
.y102{bottom:813.445500px;}
.y149{bottom:814.218000px;}
.y207{bottom:816.066000px;}
.y73{bottom:817.884000px;}
.y19b{bottom:818.904000px;}
.y3d{bottom:820.957500px;}
.y185{bottom:824.796000px;}
.y24{bottom:827.113500px;}
.y8f{bottom:828.067500px;}
.y1b3{bottom:831.402000px;}
.y1eb{bottom:831.417000px;}
.ya7{bottom:831.930000px;}
.yd5{bottom:832.041000px;}
.y199{bottom:835.162500px;}
.y197{bottom:836.152500px;}
.y23b{bottom:838.023000px;}
.y21c{bottom:839.478000px;}
.y115{bottom:839.817000px;}
.y1c9{bottom:840.298500px;}
.y59{bottom:841.854000px;}
.y166{bottom:843.126000px;}
.y148{bottom:844.704000px;}
.y198{bottom:844.726500px;}
.y165{bottom:847.171500px;}
.y72{bottom:848.370000px;}
.ye9{bottom:848.424000px;}
.y19a{bottom:849.390000px;}
.y3c{bottom:852.136500px;}
.y23{bottom:854.013000px;}
.ybb{bottom:855.907500px;}
.y101{bottom:858.372000px;}
.y8e{bottom:858.553500px;}
.y1d8{bottom:860.259000px;}
.y127{bottom:863.568000px;}
.y23a{bottom:864.922500px;}
.y184{bottom:866.260500px;}
.y126{bottom:867.613500px;}
.y21b{bottom:869.964000px;}
.ye8{bottom:870.718500px;}
.y19c{bottom:871.029000px;}
.y58{bottom:873.070500px;}
.yd4{bottom:873.300000px;}
.y1ea{bottom:876.666000px;}
.ya6{bottom:876.813000px;}
.y71{bottom:878.856000px;}
.y206{bottom:879.024000px;}
.y205{bottom:879.771000px;}
.y22{bottom:880.912500px;}
.y3b{bottom:883.315500px;}
.y114{bottom:885.124500px;}
.y196{bottom:887.049000px;}
.y183{bottom:888.555000px;}
.y8d{bottom:889.038000px;}
.y1d7{bottom:890.745000px;}
.y239{bottom:891.820500px;}
.y147{bottom:896.449500px;}
.y1b2{bottom:897.201000px;}
.yba{bottom:899.611500px;}
.y4{bottom:902.547000px;}
.y100{bottom:903.298500px;}
.y57{bottom:904.287000px;}
.y21a{bottom:905.662500px;}
.y21{bottom:907.810500px;}
.y70{bottom:909.340500px;}
.y203{bottom:910.257000px;}
.ye7{bottom:911.385000px;}
.y233{bottom:912.460500px;}
.y219{bottom:912.841500px;}
.y3a{bottom:914.496000px;}
.y125{bottom:914.517000px;}
.y204{bottom:916.195500px;}
.y218{bottom:916.887000px;}
.yd3{bottom:917.338500px;}
.y238{bottom:918.720000px;}
.y8c{bottom:919.524000px;}
.y164{bottom:919.755000px;}
.ya5{bottom:921.696000px;}
.y1e9{bottom:921.913500px;}
.y182{bottom:930.174000px;}
.y3{bottom:933.928500px;}
.y20{bottom:934.710000px;}
.y56{bottom:935.502000px;}
.y113{bottom:936.870000px;}
.y195{bottom:938.794500px;}
.y6f{bottom:939.826500px;}
.y232{bottom:939.957000px;}
.y1c7{bottom:941.415000px;}
.y1b1{bottom:942.630000px;}
.y1d6{bottom:943.189500px;}
.yb9{bottom:943.315500px;}
.y237{bottom:945.619500px;}
.y39{bottom:945.675000px;}
.yff{bottom:948.225000px;}
.y162{bottom:950.628000px;}
.y8a{bottom:957.184500px;}
.y146{bottom:957.217500px;}
.y163{bottom:957.807000px;}
.yd2{bottom:961.378500px;}
.y1f{bottom:961.609500px;}
.y202{bottom:962.491500px;}
.y217{bottom:963.811500px;}
.y8b{bottom:964.363500px;}
.ye6{bottom:964.734000px;}
.y124{bottom:966.262500px;}
.ya4{bottom:966.579000px;}
.y231{bottom:966.856500px;}
.y1e8{bottom:967.162500px;}
.y89{bottom:968.409000px;}
.y161{bottom:968.877000px;}
.y236{bottom:972.519000px;}
.y160{bottom:972.922500px;}
.y38{bottom:976.855500px;}
.y145{bottom:983.244000px;}
.y6e{bottom:983.500500px;}
.y55{bottom:983.811000px;}
.y181{bottom:983.841000px;}
.y144{bottom:987.703500px;}
.y1b0{bottom:988.060500px;}
.y1e{bottom:988.509000px;}
.yfe{bottom:993.151500px;}
.y230{bottom:993.756000px;}
.yb8{bottom:995.061000px;}
.y112{bottom:997.530000px;}
.y1c4{bottom:998.830500px;}
.y194{bottom:999.316500px;}
.y235{bottom:999.417000px;}
.y2{bottom:999.790500px;}
.y1c5{bottom:1000.231500px;}
.y1c6{bottom:1001.380500px;}
.yd1{bottom:1002.637500px;}
.y15f{bottom:1003.950000px;}
.y37{bottom:1008.034500px;}
.y1d5{bottom:1008.102000px;}
.y216{bottom:1010.736000px;}
.y1e7{bottom:1012.411500px;}
.y54{bottom:1015.027500px;}
.y88{bottom:1017.294000px;}
.ya3{bottom:1018.324500px;}
.y22f{bottom:1020.655500px;}
.y142{bottom:1023.499500px;}
.yfd{bottom:1024.870500px;}
.y201{bottom:1026.196500px;}
.y234{bottom:1026.316500px;}
.y6d{bottom:1027.174500px;}
.y1d{bottom:1027.213500px;}
.yfc{bottom:1031.994000px;}
.y1c{bottom:1032.636000px;}
.y1af{bottom:1033.489500px;}
.ycf{bottom:1034.167500px;}
.ye5{bottom:1034.814000px;}
.y143{bottom:1038.111000px;}
.y1d4{bottom:1038.588000px;}
.y36{bottom:1039.213500px;}
.y1{bottom:1040.139000px;}
.yd0{bottom:1041.346500px;}
.y15e{bottom:1042.002000px;}
.y141{bottom:1042.156500px;}
.y111{bottom:1042.837500px;}
.yfa{bottom:1043.218500px;}
.y193{bottom:1043.730000px;}
.yce{bottom:1045.392000px;}
.y15d{bottom:1046.047500px;}
.y53{bottom:1046.244000px;}
.yfb{bottom:1046.986500px;}
.y22e{bottom:1047.553500px;}
.y87{bottom:1047.780000px;}
.yb7{bottom:1055.470500px;}
.y180{bottom:1055.737500px;}
.y200{bottom:1057.171500px;}
.y6c{bottom:1057.659000px;}
.y1a{bottom:1059.342000px;}
.y1b{bottom:1065.280500px;}
.y22d{bottom:1075.051500px;}
.y52{bottom:1077.459000px;}
.y86{bottom:1078.920000px;}
.y17f{bottom:1086.223500px;}
.y35{bottom:1087.452000px;}
.y1ff{bottom:1087.657500px;}
.y6b{bottom:1088.145000px;}
.ye4{bottom:1088.154000px;}
.y1d3{bottom:1091.032500px;}
.yb6{bottom:1096.933500px;}
.yb5{bottom:1097.680500px;}
.y22c{bottom:1102.696500px;}
.y19{bottom:1108.509000px;}
.y51{bottom:1108.675500px;}
.y85{bottom:1109.404500px;}
.y1c2{bottom:1125.658500px;}
.y1c3{bottom:1128.093000px;}
.y22b{bottom:1129.596000px;}
.y84{bottom:1135.845000px;}
.y18{bottom:1139.890500px;}
.y34{bottom:1192.194000px;}
.h36{height:2.988780px;}
.h33{height:11.358780px;}
.h3d{height:13.210408px;}
.hb{height:15.816730px;}
.h13{height:17.494800px;}
.hf{height:28.202047px;}
.h2c{height:34.018950px;}
.h2a{height:34.024950px;}
.he{height:35.865450px;}
.h8{height:37.927872px;}
.h9{height:39.531504px;}
.h7{height:40.348800px;}
.h3a{height:41.245164px;}
.h10{height:42.799330px;}
.h6{height:44.831700px;}
.h16{height:45.163674px;}
.ha{height:46.704624px;}
.h22{height:46.865494px;}
.hd{height:49.090950px;}
.hc{height:49.816800px;}
.h3f{height:49.892047px;}
.h11{height:49.898047px;}
.h5{height:50.211840px;}
.h3b{height:50.274632px;}
.h2b{height:52.680624px;}
.h29{height:52.686624px;}
.h38{height:53.050950px;}
.h3{height:53.798400px;}
.h3e{height:55.503275px;}
.h1d{height:57.419702px;}
.h12{height:59.609700px;}
.h15{height:59.613450px;}
.h19{height:59.619450px;}
.h3c{height:59.637275px;}
.h2{height:60.254040px;}
.h1f{height:60.407702px;}
.h20{height:60.689702px;}
.h30{height:61.194780px;}
.h14{height:62.889450px;}
.h25{height:62.895450px;}
.h18{height:65.272950px;}
.h31{height:67.707450px;}
.h26{height:67.752624px;}
.h1e{height:68.050950px;}
.h40{height:68.110950px;}
.h39{height:75.801450px;}
.h2f{height:77.376780px;}
.h27{height:78.298950px;}
.h2e{height:78.304950px;}
.h17{height:79.071450px;}
.h1a{height:93.370950px;}
.h21{height:93.988950px;}
.h32{height:93.994950px;}
.h23{height:103.899450px;}
.h28{height:106.092780px;}
.h2d{height:106.098780px;}
.h1c{height:107.787450px;}
.h41{height:109.552950px;}
.h4{height:118.812914px;}
.h34{height:120.081450px;}
.h1b{height:138.268950px;}
.h35{height:142.494780px;}
.h37{height:146.454780px;}
.h24{height:148.797450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x29{left:108.000000px;}
.x2a{left:110.739000px;}
.x32{left:114.363000px;}
.xf7{left:115.471500px;}
.x31{left:120.273000px;}
.x45{left:123.865500px;}
.xb{left:125.227500px;}
.x2e{left:126.636000px;}
.x34{left:127.771500px;}
.x36{left:130.416000px;}
.x2d{left:132.999000px;}
.xf8{left:140.212500px;}
.x53{left:147.226500px;}
.x2f{left:150.747000px;}
.x30{left:151.882500px;}
.xe7{left:153.655500px;}
.x33{left:154.837500px;}
.x3a{left:156.982500px;}
.x23{left:158.809500px;}
.xc6{left:160.036500px;}
.x59{left:162.543000px;}
.x1{left:169.545000px;}
.x9a{left:172.539000px;}
.x20{left:173.754000px;}
.x3f{left:177.474000px;}
.x4d{left:178.630500px;}
.x9b{left:181.189500px;}
.xc7{left:183.481500px;}
.xe6{left:186.951000px;}
.x50{left:189.309000px;}
.x40{left:190.656000px;}
.x4e{left:195.649500px;}
.x10{left:197.130000px;}
.xc8{left:200.887500px;}
.x9f{left:202.834500px;}
.x41{left:204.729000px;}
.x4f{left:209.197500px;}
.xea{left:211.722000px;}
.x1e{left:214.422000px;}
.xc9{left:216.798000px;}
.x11{left:219.121500px;}
.x1f{left:221.125500px;}
.xf1{left:222.139500px;}
.xbe{left:227.458500px;}
.x77{left:229.191000px;}
.xcc{left:231.655500px;}
.x1b{left:233.403000px;}
.xdc{left:234.898500px;}
.xaf{left:238.401000px;}
.x12{left:240.367500px;}
.xec{left:243.112500px;}
.x82{left:244.131000px;}
.xc0{left:249.708000px;}
.x13{left:251.766000px;}
.x65{left:258.925500px;}
.xf6{left:261.211500px;}
.x14{left:262.216500px;}
.x81{left:263.823000px;}
.xe0{left:268.068000px;}
.x83{left:269.955000px;}
.x3{left:274.819500px;}
.x15{left:276.592500px;}
.x42{left:278.406000px;}
.x72{left:281.929500px;}
.x26{left:283.296000px;}
.xa0{left:285.561000px;}
.x98{left:286.896000px;}
.xaa{left:288.562500px;}
.x5d{left:290.773500px;}
.x58{left:293.943000px;}
.x27{left:295.722000px;}
.xca{left:296.880000px;}
.x61{left:298.366500px;}
.x3b{left:300.781500px;}
.x19{left:303.547500px;}
.x16{left:305.520000px;}
.x3c{left:308.964000px;}
.xbb{left:310.647000px;}
.x7c{left:312.219000px;}
.x86{left:314.292000px;}
.x1a{left:315.661500px;}
.x3d{left:317.014500px;}
.xef{left:318.102000px;}
.x2{left:319.108500px;}
.x4b{left:321.397500px;}
.x28{left:322.621500px;}
.x3e{left:325.197000px;}
.x87{left:326.683500px;}
.x79{left:327.961500px;}
.x7{left:329.793000px;}
.xbc{left:330.988500px;}
.x5c{left:333.607500px;}
.x8d{left:335.073000px;}
.xf5{left:336.661500px;}
.x7e{left:337.740000px;}
.xed{left:339.007500px;}
.x93{left:340.711500px;}
.x5f{left:342.256500px;}
.xa7{left:344.038500px;}
.x43{left:346.215000px;}
.xda{left:347.641500px;}
.x9c{left:349.050000px;}
.x5b{left:350.247000px;}
.x97{left:351.271500px;}
.x17{left:353.263500px;}
.xa5{left:355.104000px;}
.xad{left:357.573000px;}
.x4{left:359.668500px;}
.x5a{left:361.963500px;}
.x18{left:363.135000px;}
.x25{left:366.267000px;}
.x49{left:368.515500px;}
.x8b{left:370.536000px;}
.x35{left:373.006500px;}
.x7a{left:374.383500px;}
.x5{left:375.504000px;}
.xe1{left:376.962000px;}
.x44{left:378.156000px;}
.x64{left:379.293000px;}
.x6{left:381.384000px;}
.x1c{left:382.602000px;}
.x66{left:384.789000px;}
.x7b{left:387.063000px;}
.x46{left:388.876500px;}
.x4a{left:390.751500px;}
.x8{left:392.640000px;}
.x24{left:394.846500px;}
.x76{left:397.690500px;}
.x39{left:399.963000px;}
.x5e{left:401.862000px;}
.xdb{left:402.972000px;}
.x62{left:404.034000px;}
.x9{left:405.966000px;}
.x8a{left:407.488500px;}
.x2c{left:409.203000px;}
.x78{left:412.213500px;}
.x94{left:414.805500px;}
.x9d{left:416.142000px;}
.xf0{left:419.815500px;}
.x7d{left:421.899000px;}
.xa2{left:428.176500px;}
.x7f{left:430.779000px;}
.x84{left:432.033000px;}
.xa4{left:434.466000px;}
.x90{left:436.369500px;}
.xba{left:439.902000px;}
.x67{left:441.939000px;}
.xb9{left:444.496500px;}
.xe8{left:447.000000px;}
.x9e{left:448.078500px;}
.xb2{left:451.341000px;}
.xbf{left:459.672000px;}
.x95{left:463.168500px;}
.xb3{left:464.448000px;}
.x88{left:465.735000px;}
.xbd{left:469.815000px;}
.x85{left:471.426000px;}
.x47{left:474.040500px;}
.x6b{left:475.312500px;}
.xa3{left:477.516000px;}
.x80{left:479.130000px;}
.x6c{left:483.493500px;}
.x91{left:484.722000px;}
.xae{left:487.023000px;}
.xb0{left:488.667000px;}
.x48{left:490.242000px;}
.x6d{left:491.839500px;}
.xe9{left:493.528500px;}
.x6e{left:500.020500px;}
.x8e{left:501.184500px;}
.x51{left:505.030500px;}
.xcb{left:506.802000px;}
.xb6{left:508.605000px;}
.x8f{left:509.835000px;}
.x1d{left:511.759500px;}
.x96{left:515.797500px;}
.x92{left:520.036500px;}
.x4c{left:527.968500px;}
.xb4{left:532.378500px;}
.xcd{left:537.246000px;}
.xa8{left:538.512000px;}
.xce{left:543.559500px;}
.xc{left:546.415500px;}
.xa1{left:550.450500px;}
.xa9{left:551.653500px;}
.xcf{left:555.832500px;}
.xdd{left:557.509500px;}
.xb7{left:558.741000px;}
.x60{left:561.955500px;}
.xb8{left:566.923500px;}
.xd{left:568.348500px;}
.xb5{left:570.112500px;}
.xd0{left:572.098500px;}
.x89{left:573.421500px;}
.xc1{left:575.055000px;}
.xab{left:578.641500px;}
.x99{left:580.308000px;}
.x8c{left:581.862000px;}
.xe{left:584.355000px;}
.xde{left:585.363000px;}
.xac{left:591.180000px;}
.xc2{left:594.457500px;}
.x69{left:604.431000px;}
.xb1{left:608.674500px;}
.x6a{left:612.612000px;}
.x68{left:617.787000px;}
.xdf{left:619.191000px;}
.xee{left:624.667500px;}
.xe2{left:634.864500px;}
.xa6{left:644.688000px;}
.xf{left:646.564500px;}
.xc3{left:648.963000px;}
.x37{left:653.028000px;}
.x52{left:657.765000px;}
.x6f{left:659.478000px;}
.x38{left:661.209000px;}
.x70{left:667.660500px;}
.x21{left:669.903000px;}
.x54{left:674.491500px;}
.x22{left:677.374500px;}
.x56{left:680.913000px;}
.x71{left:686.419500px;}
.xf2{left:689.782500px;}
.xc4{left:693.441000px;}
.xc5{left:699.678000px;}
.xf3{left:702.963000px;}
.x57{left:707.469000px;}
.x73{left:710.257500px;}
.x55{left:713.221500px;}
.x74{left:716.748000px;}
.xf4{left:724.224000px;}
.xe3{left:730.506000px;}
.xeb{left:735.672000px;}
.xe4{left:736.741500px;}
.xd1{left:745.656000px;}
.xd2{left:755.611500px;}
.xd4{left:759.523500px;}
.x75{left:764.493000px;}
.xd5{left:767.704500px;}
.xe5{left:769.378500px;}
.xd6{left:776.491500px;}
.xd3{left:781.225500px;}
.xd7{left:784.674000px;}
.x63{left:791.013000px;}
.xd8{left:793.461000px;}
.x2b{left:799.195500px;}
.xd9{left:801.643500px;}
@media print{
.v1a{vertical-align:-44.298667pt;}
.v16{vertical-align:-24.026667pt;}
.v1{vertical-align:-22.314667pt;}
.v8{vertical-align:-20.314667pt;}
.v22{vertical-align:-14.912000pt;}
.v14{vertical-align:-13.397333pt;}
.v1c{vertical-align:-11.840000pt;}
.vf{vertical-align:-9.242667pt;}
.v5{vertical-align:-7.968000pt;}
.v2{vertical-align:-5.312000pt;}
.v21{vertical-align:-3.674667pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:2.656000pt;}
.vb{vertical-align:5.658667pt;}
.v1b{vertical-align:7.440000pt;}
.v4{vertical-align:8.416000pt;}
.v7{vertical-align:13.136000pt;}
.va{vertical-align:14.384000pt;}
.v10{vertical-align:16.853333pt;}
.v6{vertical-align:19.285333pt;}
.v3{vertical-align:20.314667pt;}
.v9{vertical-align:24.021333pt;}
.v18{vertical-align:28.304000pt;}
.ve{vertical-align:30.634667pt;}
.v20{vertical-align:35.498667pt;}
.vc{vertical-align:38.405333pt;}
.vd{vertical-align:39.360000pt;}
.v17{vertical-align:51.744000pt;}
.v12{vertical-align:60.474667pt;}
.v19{vertical-align:63.930667pt;}
.v1d{vertical-align:70.544000pt;}
.v13{vertical-align:79.269333pt;}
.v15{vertical-align:91.648000pt;}
.v1e{vertical-align:124.005333pt;}
.v1f{vertical-align:127.525333pt;}
.lsc{letter-spacing:0.000000pt;}
.lsc0{letter-spacing:0.000297pt;}
.lse1{letter-spacing:0.000423pt;}
.ls10{letter-spacing:0.000543pt;}
.ls3a{letter-spacing:0.000694pt;}
.lsa1{letter-spacing:0.000749pt;}
.ls89{letter-spacing:0.000928pt;}
.lsad{letter-spacing:0.000933pt;}
.ls2e{letter-spacing:0.001414pt;}
.ls4a{letter-spacing:0.001416pt;}
.ls4e{letter-spacing:0.001420pt;}
.ls17{letter-spacing:0.001899pt;}
.lsbf{letter-spacing:0.002000pt;}
.lsb8{letter-spacing:0.002205pt;}
.lsd5{letter-spacing:0.002323pt;}
.ls8d{letter-spacing:0.002346pt;}
.ls60{letter-spacing:0.002384pt;}
.lsb1{letter-spacing:0.002397pt;}
.ls73{letter-spacing:0.002399pt;}
.ls5c{letter-spacing:0.002400pt;}
.ls2d{letter-spacing:0.002879pt;}
.ls81{letter-spacing:0.003227pt;}
.ls6f{letter-spacing:0.003273pt;}
.lscc{letter-spacing:0.003333pt;}
.ls75{letter-spacing:0.003851pt;}
.ls84{letter-spacing:0.003856pt;}
.ls27{letter-spacing:0.004336pt;}
.ls1{letter-spacing:0.004460pt;}
.ls2{letter-spacing:0.004555pt;}
.ls43{letter-spacing:0.004576pt;}
.lsb9{letter-spacing:0.004762pt;}
.lsb5{letter-spacing:0.005038pt;}
.lsb7{letter-spacing:0.005138pt;}
.lsd7{letter-spacing:0.006262pt;}
.ls99{letter-spacing:0.007186pt;}
.ls53{letter-spacing:0.007409pt;}
.ls45{letter-spacing:0.007557pt;}
.lse6{letter-spacing:0.008018pt;}
.lsea{letter-spacing:0.008801pt;}
.lsdd{letter-spacing:0.008979pt;}
.ls7c{letter-spacing:0.009991pt;}
.ls76{letter-spacing:0.010103pt;}
.lsdf{letter-spacing:0.010480pt;}
.ls63{letter-spacing:0.010582pt;}
.ls48{letter-spacing:0.012519pt;}
.ls12{letter-spacing:0.012565pt;}
.ls3{letter-spacing:0.012846pt;}
.ls1e{letter-spacing:0.013002pt;}
.lsc4{letter-spacing:0.013938pt;}
.ls49{letter-spacing:0.014079pt;}
.ls32{letter-spacing:0.014279pt;}
.lsd8{letter-spacing:0.014420pt;}
.lse9{letter-spacing:0.014603pt;}
.ls87{letter-spacing:0.014959pt;}
.lsce{letter-spacing:0.015156pt;}
.ls58{letter-spacing:0.015241pt;}
.lsde{letter-spacing:0.015365pt;}
.ls6e{letter-spacing:0.015916pt;}
.ls34{letter-spacing:0.020204pt;}
.ls69{letter-spacing:0.021696pt;}
.lsca{letter-spacing:0.023536pt;}
.ls9f{letter-spacing:0.027299pt;}
.ls5a{letter-spacing:0.031354pt;}
.ls9e{letter-spacing:0.232727pt;}
.ls9{letter-spacing:0.239104pt;}
.ls2b{letter-spacing:0.290909pt;}
.ls95{letter-spacing:1.147694pt;}
.ls7{letter-spacing:1.338982pt;}
.lsa{letter-spacing:1.351369pt;}
.ls5{letter-spacing:1.365205pt;}
.ls8{letter-spacing:1.366275pt;}
.ls59{letter-spacing:1.570910pt;}
.lsa0{letter-spacing:1.597260pt;}
.ls80{letter-spacing:1.599895pt;}
.ls9a{letter-spacing:1.602319pt;}
.ls67{letter-spacing:1.602818pt;}
.ls9d{letter-spacing:1.613718pt;}
.ls24{letter-spacing:1.615744pt;}
.ls9b{letter-spacing:1.617401pt;}
.ls26{letter-spacing:1.617899pt;}
.ls7e{letter-spacing:1.621078pt;}
.lscf{letter-spacing:1.626858pt;}
.ls55{letter-spacing:1.629092pt;}
.ls82{letter-spacing:1.629269pt;}
.ls5b{letter-spacing:2.036365pt;}
.ls5f{letter-spacing:2.071646pt;}
.lsd2{letter-spacing:2.082853pt;}
.ls3b{letter-spacing:2.094547pt;}
.ls28{letter-spacing:2.210911pt;}
.lsa5{letter-spacing:2.652749pt;}
.ls31{letter-spacing:2.653258pt;}
.lsd0{letter-spacing:2.653398pt;}
.lse0{letter-spacing:2.653433pt;}
.ls74{letter-spacing:2.654124pt;}
.ls8e{letter-spacing:2.654249pt;}
.ls40{letter-spacing:2.654275pt;}
.ls13{letter-spacing:2.654544pt;}
.ls4{letter-spacing:2.656495pt;}
.lsc5{letter-spacing:2.656631pt;}
.ls1f{letter-spacing:2.657546pt;}
.lsa6{letter-spacing:2.658083pt;}
.ls36{letter-spacing:2.658591pt;}
.ls61{letter-spacing:2.658731pt;}
.ls46{letter-spacing:2.658767pt;}
.lsc8{letter-spacing:2.661964pt;}
.ls38{letter-spacing:2.662879pt;}
.lsd4{letter-spacing:2.666734pt;}
.lsd1{letter-spacing:2.967275pt;}
.ls7a{letter-spacing:3.258185pt;}
.ls14{letter-spacing:3.779878pt;}
.ls97{letter-spacing:3.786325pt;}
.ls96{letter-spacing:3.791658pt;}
.ls42{letter-spacing:3.905798pt;}
.ls44{letter-spacing:3.911131pt;}
.ls6{letter-spacing:4.000495pt;}
.ls2c{letter-spacing:4.353546pt;}
.lsb6{letter-spacing:4.358879pt;}
.lsab{letter-spacing:4.538186pt;}
.ls52{letter-spacing:4.640444pt;}
.ls3c{letter-spacing:4.703108pt;}
.ls30{letter-spacing:4.706792pt;}
.lsdb{letter-spacing:4.721414pt;}
.ls3f{letter-spacing:4.726748pt;}
.lsd9{letter-spacing:4.737840pt;}
.lsb{letter-spacing:4.869828pt;}
.lsd6{letter-spacing:5.312473pt;}
.ls8a{letter-spacing:5.312495pt;}
.ls7f{letter-spacing:5.969546pt;}
.ls25{letter-spacing:5.974879pt;}
.ls88{letter-spacing:6.160495pt;}
.ls93{letter-spacing:6.283642pt;}
.lsa7{letter-spacing:6.371818pt;}
.ls70{letter-spacing:7.413828pt;}
.lse4{letter-spacing:9.452070pt;}
.lsb4{letter-spacing:9.694533pt;}
.lsaf{letter-spacing:9.699867pt;}
.ls50{letter-spacing:9.716372pt;}
.lsf{letter-spacing:11.795718pt;}
.ls79{letter-spacing:12.349258pt;}
.ls1d{letter-spacing:12.354591pt;}
.ls1b{letter-spacing:12.916374pt;}
.ls68{letter-spacing:12.974556pt;}
.ls8c{letter-spacing:13.139733pt;}
.ls91{letter-spacing:13.145067pt;}
.lsc3{letter-spacing:14.154957pt;}
.lsbe{letter-spacing:14.464631pt;}
.ls65{letter-spacing:14.545467pt;}
.lse{letter-spacing:14.771215pt;}
.ls4f{letter-spacing:15.581258pt;}
.ls6b{letter-spacing:15.581398pt;}
.ls47{letter-spacing:15.585546pt;}
.ls4b{letter-spacing:15.586591pt;}
.ls23{letter-spacing:15.590879pt;}
.ls33{letter-spacing:16.116377pt;}
.ls3e{letter-spacing:16.159477pt;}
.lsa2{letter-spacing:16.160749pt;}
.ls3d{letter-spacing:16.162405pt;}
.lsda{letter-spacing:16.164811pt;}
.ls19{letter-spacing:16.174559pt;}
.lsb0{letter-spacing:16.186469pt;}
.ls11{letter-spacing:17.411878pt;}
.lseb{letter-spacing:17.414586pt;}
.lsc2{letter-spacing:17.725577pt;}
.lse7{letter-spacing:17.746711pt;}
.ls56{letter-spacing:17.803651pt;}
.ls4d{letter-spacing:18.087733pt;}
.ls86{letter-spacing:18.240495pt;}
.ls39{letter-spacing:18.269106pt;}
.ls62{letter-spacing:18.363823pt;}
.ls5e{letter-spacing:18.813258pt;}
.ls18{letter-spacing:18.817546pt;}
.ls1c{letter-spacing:18.818591pt;}
.ls51{letter-spacing:18.819608pt;}
.ls64{letter-spacing:18.822879pt;}
.lsd3{letter-spacing:18.826734pt;}
.lsd{letter-spacing:18.915657pt;}
.ls94{letter-spacing:18.950156pt;}
.ls57{letter-spacing:19.025470pt;}
.ls15{letter-spacing:19.039527pt;}
.lsc9{letter-spacing:19.083652pt;}
.ls4c{letter-spacing:19.306144pt;}
.ls20{letter-spacing:19.374562pt;}
.ls21{letter-spacing:19.432743pt;}
.lscd{letter-spacing:19.490925pt;}
.ls98{letter-spacing:19.665471pt;}
.lse3{letter-spacing:20.176396pt;}
.lsc1{letter-spacing:20.369546pt;}
.ls7d{letter-spacing:20.513546pt;}
.ls22{letter-spacing:20.518879pt;}
.ls1a{letter-spacing:20.712745pt;}
.ls77{letter-spacing:22.045258pt;}
.ls35{letter-spacing:22.049546pt;}
.ls16{letter-spacing:22.050591pt;}
.ls54{letter-spacing:22.051608pt;}
.ls5d{letter-spacing:22.053663pt;}
.lscb{letter-spacing:22.054879pt;}
.ls66{letter-spacing:22.134879pt;}
.ls85{letter-spacing:22.325828pt;}
.ls72{letter-spacing:22.909258pt;}
.lse2{letter-spacing:23.025253pt;}
.ls37{letter-spacing:23.473546pt;}
.ls78{letter-spacing:23.970929pt;}
.ls83{letter-spacing:25.361546pt;}
.lse5{letter-spacing:25.425476pt;}
.ls92{letter-spacing:25.658203pt;}
.lsdc{letter-spacing:27.112750pt;}
.ls7b{letter-spacing:29.789116pt;}
.ls6c{letter-spacing:31.501398pt;}
.ls2f{letter-spacing:31.883663pt;}
.lsae{letter-spacing:41.810767pt;}
.lsb3{letter-spacing:46.603675pt;}
.ls6a{letter-spacing:47.661398pt;}
.lsb2{letter-spacing:49.234591pt;}
.ls6d{letter-spacing:49.393156pt;}
.lsac{letter-spacing:50.501860pt;}
.ls8b{letter-spacing:50.653991pt;}
.lsa4{letter-spacing:58.916811pt;}
.lsa3{letter-spacing:59.036545pt;}
.ls2a{letter-spacing:59.041878pt;}
.ls90{letter-spacing:59.077017pt;}
.lse8{letter-spacing:66.629869pt;}
.lsa9{letter-spacing:78.049878pt;}
.ls29{letter-spacing:78.055212pt;}
.ls71{letter-spacing:85.901991pt;}
.lsbc{letter-spacing:87.598544pt;}
.ls8f{letter-spacing:93.219608pt;}
.lsa8{letter-spacing:95.697878pt;}
.lsbb{letter-spacing:96.142544pt;}
.ls41{letter-spacing:126.021923pt;}
.ls9c{letter-spacing:126.080105pt;}
.lsaa{letter-spacing:132.415924pt;}
.lsc6{letter-spacing:155.325988pt;}
.lsc7{letter-spacing:155.987322pt;}
.lsba{letter-spacing:230.302544pt;}
.ls0{letter-spacing:310.561617pt;}
.lsbd{letter-spacing:509.824165pt;}
.wsc1{word-spacing:-93.196802pt;}
.ws79{word-spacing:-58.240049pt;}
.ws6b{word-spacing:-58.181867pt;}
.ws6d{word-spacing:-45.265492pt;}
.wsb2{word-spacing:-43.275672pt;}
.ws68{word-spacing:-42.065490pt;}
.ws6a{word-spacing:-42.007308pt;}
.ws34{word-spacing:-37.899668pt;}
.ws8b{word-spacing:-35.667209pt;}
.ws8f{word-spacing:-35.651135pt;}
.ws20{word-spacing:-34.611401pt;}
.ws52{word-spacing:-32.337481pt;}
.ws7b{word-spacing:-30.720026pt;}
.ws78{word-spacing:-29.736752pt;}
.ws39{word-spacing:-29.521250pt;}
.ws3c{word-spacing:-29.090933pt;}
.ws41{word-spacing:-29.079297pt;}
.ws14{word-spacing:-28.295567pt;}
.ws80{word-spacing:-28.241478pt;}
.ws51{word-spacing:-28.183296pt;}
.ws9b{word-spacing:-26.566933pt;}
.ws1f{word-spacing:-26.556307pt;}
.ws2c{word-spacing:-25.738045pt;}
.wsf{word-spacing:-24.575109pt;}
.ws94{word-spacing:-21.783291pt;}
.ws6f{word-spacing:-21.725109pt;}
.wsc0{word-spacing:-19.893320pt;}
.ws9d{word-spacing:-19.840186pt;}
.ws3e{word-spacing:-18.641470pt;}
.ws6e{word-spacing:-16.162923pt;}
.ws7c{word-spacing:-15.243649pt;}
.ws97{word-spacing:-14.760588pt;}
.ws0{word-spacing:-14.346200pt;}
.wsaa{word-spacing:-13.933110pt;}
.ws46{word-spacing:-13.933039pt;}
.ws45{word-spacing:-13.848030pt;}
.ws62{word-spacing:-13.789102pt;}
.wsae{word-spacing:-13.672739pt;}
.wsa6{word-spacing:-13.381829pt;}
.ws60{word-spacing:-13.323647pt;}
.wsd{word-spacing:-12.763372pt;}
.wse{word-spacing:-12.715551pt;}
.wsa1{word-spacing:-12.695705pt;}
.ws88{word-spacing:-11.985465pt;}
.ws3{word-spacing:-11.955200pt;}
.ws95{word-spacing:-11.636373pt;}
.ws87{word-spacing:-11.380951pt;}
.ws56{word-spacing:-11.345464pt;}
.wsb8{word-spacing:-11.170918pt;}
.ws72{word-spacing:-10.938191pt;}
.ws66{word-spacing:-10.763645pt;}
.wsa7{word-spacing:-10.703640pt;}
.ws71{word-spacing:-10.703261pt;}
.ws89{word-spacing:-10.701039pt;}
.ws73{word-spacing:-10.695705pt;}
.ws1d{word-spacing:-10.573639pt;}
.ws29{word-spacing:-10.520506pt;}
.ws64{word-spacing:-10.201702pt;}
.ws7f{word-spacing:-10.123645pt;}
.ws63{word-spacing:-10.065463pt;}
.ws82{word-spacing:-10.007281pt;}
.ws38{word-spacing:-9.949099pt;}
.ws49{word-spacing:-9.890917pt;}
.wsa{word-spacing:-9.836739pt;}
.ws3f{word-spacing:-9.832735pt;}
.ws32{word-spacing:-9.716372pt;}
.ws57{word-spacing:-9.658190pt;}
.ws1c{word-spacing:-9.617230pt;}
.ws37{word-spacing:-9.600008pt;}
.wsce{word-spacing:-9.564096pt;}
.ws47{word-spacing:-9.541826pt;}
.wsca{word-spacing:-9.510962pt;}
.ws48{word-spacing:-9.483644pt;}
.wsc8{word-spacing:-9.457828pt;}
.wsb{word-spacing:-9.454172pt;}
.ws3b{word-spacing:-9.425462pt;}
.ws93{word-spacing:-9.367281pt;}
.wsab{word-spacing:-9.309099pt;}
.ws5f{word-spacing:-9.250917pt;}
.wsc6{word-spacing:-9.245293pt;}
.wsd0{word-spacing:-9.085891pt;}
.ws4a{word-spacing:-9.076371pt;}
.ws26{word-spacing:-8.979623pt;}
.ws40{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws2e{word-spacing:-8.820222pt;}
.ws13{word-spacing:-8.794245pt;}
.ws77{word-spacing:-8.791280pt;}
.wscf{word-spacing:-8.772401pt;}
.ws2a{word-spacing:-8.713954pt;}
.wsc9{word-spacing:-8.666134pt;}
.wsd4{word-spacing:-8.660820pt;}
.ws30{word-spacing:-8.607686pt;}
.ws9{word-spacing:-8.507320pt;}
.ws27{word-spacing:-8.501419pt;}
.wsc{word-spacing:-8.459500pt;}
.wsc7{word-spacing:-8.453598pt;}
.ws55{word-spacing:-8.436371pt;}
.wsd1{word-spacing:-8.400464pt;}
.ws7d{word-spacing:-8.378189pt;}
.ws90{word-spacing:-8.261825pt;}
.ws12{word-spacing:-8.220396pt;}
.wsd5{word-spacing:-8.187929pt;}
.ws8{word-spacing:-8.172575pt;}
.wsc5{word-spacing:-8.134795pt;}
.wsd2{word-spacing:-7.975393pt;}
.wsd3{word-spacing:-7.869126pt;}
.wsb7{word-spacing:-7.621825pt;}
.wsb3{word-spacing:-7.471261pt;}
.wsad{word-spacing:-7.465927pt;}
.ws25{word-spacing:-7.438741pt;}
.ws5e{word-spacing:-7.156370pt;}
.ws53{word-spacing:-7.040006pt;}
.ws65{word-spacing:-6.981824pt;}
.wsc4{word-spacing:-6.912716pt;}
.ws92{word-spacing:-6.865460pt;}
.ws2f{word-spacing:-6.588599pt;}
.wsac{word-spacing:-6.458187pt;}
.ws86{word-spacing:-6.446551pt;}
.wscb{word-spacing:-6.322930pt;}
.wscd{word-spacing:-6.269796pt;}
.ws75{word-spacing:-6.045039pt;}
.ws5{word-spacing:-6.020639pt;}
.ws1e{word-spacing:-5.950993pt;}
.wscc{word-spacing:-5.850039pt;}
.wsb9{word-spacing:-5.585459pt;}
.ws11{word-spacing:-5.532867pt;}
.ws58{word-spacing:-5.410914pt;}
.wsa4{word-spacing:-5.371641pt;}
.ws1b{word-spacing:-5.366521pt;}
.ws5b{word-spacing:-5.294550pt;}
.ws24{word-spacing:-5.260253pt;}
.ws31{word-spacing:-5.178186pt;}
.ws3a{word-spacing:-5.120004pt;}
.ws28{word-spacing:-4.888316pt;}
.wsa8{word-spacing:-4.887277pt;}
.wsba{word-spacing:-4.829095pt;}
.ws10{word-spacing:-4.825119pt;}
.ws5a{word-spacing:-4.596367pt;}
.ws1a{word-spacing:-4.468558pt;}
.ws59{word-spacing:-4.311276pt;}
.wsbb{word-spacing:-4.247276pt;}
.wsbe{word-spacing:-4.072731pt;}
.wsbc{word-spacing:-3.723639pt;}
.wsbd{word-spacing:-3.665458pt;}
.wsb1{word-spacing:-3.316366pt;}
.ws8e{word-spacing:-3.258185pt;}
.ws44{word-spacing:-3.246548pt;}
.wsa2{word-spacing:-3.188053pt;}
.ws22{word-spacing:-2.964870pt;}
.ws5c{word-spacing:-2.909093pt;}
.ws5d{word-spacing:-2.501820pt;}
.ws54{word-spacing:-2.327275pt;}
.ws61{word-spacing:-2.269093pt;}
.wsb0{word-spacing:-0.686546pt;}
.wsbf{word-spacing:-0.637606pt;}
.wsb5{word-spacing:-0.581819pt;}
.ws2{word-spacing:-0.148775pt;}
.ws3d{word-spacing:-0.104727pt;}
.wsa0{word-spacing:-0.063761pt;}
.ws42{word-spacing:-0.058182pt;}
.ws2b{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047821pt;}
.ws67{word-spacing:-0.046545pt;}
.ws4b{word-spacing:-0.042507pt;}
.ws96{word-spacing:-0.037194pt;}
.ws17{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.010627pt;}
.ws4e{word-spacing:0.011636pt;}
.ws2d{word-spacing:0.116895pt;}
.wsaf{word-spacing:0.302546pt;}
.ws18{word-spacing:2.385457pt;}
.ws6{word-spacing:2.623570pt;}
.wsb6{word-spacing:2.792730pt;}
.wsa5{word-spacing:4.565735pt;}
.ws81{word-spacing:6.827069pt;}
.ws8a{word-spacing:6.923069pt;}
.ws84{word-spacing:6.933735pt;}
.ws8d{word-spacing:7.781735pt;}
.ws15{word-spacing:8.129536pt;}
.ws8c{word-spacing:8.485735pt;}
.ws19{word-spacing:10.159221pt;}
.wsa9{word-spacing:11.752737pt;}
.ws16{word-spacing:13.581107pt;}
.ws21{word-spacing:14.421691pt;}
.ws23{word-spacing:14.424269pt;}
.ws85{word-spacing:15.538700pt;}
.ws6c{word-spacing:15.543461pt;}
.ws43{word-spacing:15.544033pt;}
.ws50{word-spacing:16.174559pt;}
.wsa3{word-spacing:16.781367pt;}
.wsc2{word-spacing:17.388346pt;}
.ws83{word-spacing:18.773467pt;}
.ws69{word-spacing:18.776033pt;}
.ws7e{word-spacing:18.776594pt;}
.ws1{word-spacing:20.722347pt;}
.ws4d{word-spacing:22.518924pt;}
.ws4f{word-spacing:22.529665pt;}
.ws74{word-spacing:23.426700pt;}
.ws4c{word-spacing:25.786203pt;}
.wsb4{word-spacing:28.037842pt;}
.ws36{word-spacing:30.551973pt;}
.ws76{word-spacing:38.315069pt;}
.ws91{word-spacing:38.320402pt;}
.ws7a{word-spacing:88.122255pt;}
.ws70{word-spacing:88.180437pt;}
.ws98{word-spacing:128.717252pt;}
.ws9a{word-spacing:154.598003pt;}
.ws9c{word-spacing:157.939914pt;}
.ws99{word-spacing:180.053691pt;}
.ws9e{word-spacing:426.992358pt;}
.ws9f{word-spacing:456.882936pt;}
.ws33{word-spacing:1958.161672pt;}
.ws35{word-spacing:1981.446055pt;}
._5f{margin-left:-65.992279pt;}
._59{margin-left:-27.112750pt;}
._53{margin-left:-17.019504pt;}
._4a{margin-left:-15.366396pt;}
._48{margin-left:-9.376888pt;}
._1{margin-left:-7.192228pt;}
._2{margin-left:-5.228407pt;}
._4{margin-left:-4.016947pt;}
._7{margin-left:-2.911765pt;}
._3{margin-left:-1.487748pt;}
._5{width:1.338982pt;}
._0{width:2.371905pt;}
._8{width:3.730022pt;}
._52{width:4.869899pt;}
._47{width:5.956388pt;}
._d{width:17.162256pt;}
._56{width:18.218914pt;}
._50{width:19.369126pt;}
._b{width:20.477827pt;}
._6{width:21.572484pt;}
._e{width:23.857106pt;}
._44{width:25.424676pt;}
._43{width:26.329806pt;}
._5a{width:27.461841pt;}
._c{width:28.692288pt;}
._4c{width:30.809810pt;}
._46{width:31.883663pt;}
._a{width:32.932362pt;}
._9{width:34.792047pt;}
._5c{width:38.167305pt;}
._4d{width:39.256581pt;}
._45{width:40.236072pt;}
._5d{width:43.237348pt;}
._5b{width:45.614583pt;}
._62{width:46.704669pt;}
._4b{width:49.079716pt;}
._4e{width:57.028917pt;}
._55{width:58.900737pt;}
._4f{width:61.465248pt;}
._54{width:68.780814pt;}
._49{width:74.356426pt;}
._64{width:102.814032pt;}
._57{width:125.630251pt;}
._51{width:126.631532pt;}
._61{width:164.183648pt;}
._63{width:223.427909pt;}
._58{width:230.119735pt;}
._60{width:236.860142pt;}
._65{width:323.585248pt;}
._5e{width:353.287079pt;}
._25{width:787.654810pt;}
._1f{width:897.917408pt;}
._40{width:953.303127pt;}
._18{width:972.565542pt;}
._36{width:975.116785pt;}
._37{width:1067.958823pt;}
._19{width:1126.863053pt;}
._2a{width:1131.044187pt;}
._41{width:1252.630609pt;}
._16{width:1254.489089pt;}
._20{width:1281.916929pt;}
._3f{width:1298.666145pt;}
._38{width:1316.212089pt;}
._14{width:1319.731452pt;}
._15{width:1327.757078pt;}
._33{width:1340.332322pt;}
._21{width:1342.542434pt;}
._1d{width:1377.810465pt;}
._2c{width:1395.049317pt;}
._1b{width:1400.385029pt;}
._42{width:1426.335883pt;}
._1c{width:1435.203027pt;}
._1e{width:1438.427749pt;}
._3d{width:1469.146975pt;}
._2f{width:1496.146559pt;}
._13{width:1498.237908pt;}
._2b{width:1504.331883pt;}
._3a{width:1520.963098pt;}
._27{width:1534.012595pt;}
._2e{width:1541.783186pt;}
._32{width:1561.523820pt;}
._23{width:1564.332509pt;}
._22{width:1591.620604pt;}
._3e{width:1592.659917pt;}
._29{width:1594.911190pt;}
._1a{width:1602.616177pt;}
._10{width:1609.764586pt;}
._12{width:1611.692548pt;}
._2d{width:1615.766078pt;}
._3b{width:1619.772667pt;}
._35{width:1637.770777pt;}
._26{width:1669.750890pt;}
._24{width:1695.532618pt;}
._39{width:1705.873031pt;}
._31{width:1723.901188pt;}
._3c{width:1758.718925pt;}
._11{width:1762.118714pt;}
._17{width:1782.049853pt;}
._30{width:1836.776550pt;}
._28{width:1875.376108pt;}
._34{width:1920.252880pt;}
._f{width:1989.199116pt;}
.fsa{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs7{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:104.142400pt;}
.fs2{font-size:148.775467pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:137.188000pt;}
.y1fe{bottom:138.274667pt;}
.y83{bottom:138.905333pt;}
.yf9{bottom:139.254667pt;}
.y50{bottom:142.501333pt;}
.yf8{bottom:142.850667pt;}
.y1ae{bottom:143.569333pt;}
.y1ad{bottom:147.165333pt;}
.y17{bottom:150.830667pt;}
.y16{bottom:152.934667pt;}
.y33{bottom:154.156000pt;}
.ycc{bottom:157.005333pt;}
.y1fd{bottom:166.004000pt;}
.ya2{bottom:169.600000pt;}
.y6a{bottom:170.249333pt;}
.y140{bottom:170.876000pt;}
.y1d2{bottom:172.144000pt;}
.y15{bottom:174.852000pt;}
.y1e6{bottom:176.100000pt;}
.ye3{bottom:180.504000pt;}
.y82{bottom:181.322667pt;}
.yb4{bottom:182.397333pt;}
.y110{bottom:182.436000pt;}
.y15c{bottom:183.380000pt;}
.y13f{bottom:183.865333pt;}
.y123{bottom:184.952000pt;}
.y4f{bottom:185.378667pt;}
.ycb{bottom:186.013333pt;}
.y1ac{bottom:186.645333pt;}
.y22a{bottom:187.261333pt;}
.y13e{bottom:187.460000pt;}
.yf7{bottom:188.837333pt;}
.y1c1{bottom:189.913333pt;}
.y1e5{bottom:195.917333pt;}
.y17e{bottom:196.698667pt;}
.y69{bottom:197.996000pt;}
.y14{bottom:199.426667pt;}
.y1d1{bottom:203.610667pt;}
.y10f{bottom:207.353333pt;}
.y81{bottom:208.421333pt;}
.y10e{bottom:209.534667pt;}
.y1fc{bottom:209.821333pt;}
.y4e{bottom:213.094667pt;}
.yca{bottom:213.112000pt;}
.y15a{bottom:214.281333pt;}
.y229{bottom:214.360000pt;}
.ya1{bottom:216.177333pt;}
.y192{bottom:218.142667pt;}
.y15b{bottom:220.662667pt;}
.y13{bottom:221.344000pt;}
.y1c0{bottom:221.381333pt;}
.yb3{bottom:222.293333pt;}
.y215{bottom:223.796000pt;}
.y122{bottom:224.854667pt;}
.y68{bottom:225.744000pt;}
.y1ab{bottom:226.284000pt;}
.ye2{bottom:226.500000pt;}
.y1d0{bottom:227.521333pt;}
.y13d{bottom:229.152000pt;}
.y1e4{bottom:229.652000pt;}
.y159{bottom:230.502667pt;}
.yf6{bottom:232.654667pt;}
.y158{bottom:234.098667pt;}
.yf5{bottom:236.250667pt;}
.y4d{bottom:240.809333pt;}
.yc9{bottom:241.984000pt;}
.y17d{bottom:242.694667pt;}
.y1bf{bottom:245.290667pt;}
.y12{bottom:245.918667pt;}
.y80{bottom:247.241333pt;}
.y10d{bottom:249.469333pt;}
.y1fb{bottom:250.041333pt;}
.y214{bottom:251.329333pt;}
.y1cf{bottom:251.962667pt;}
.y13b{bottom:258.213333pt;}
.y228{bottom:260.356000pt;}
.yc8{bottom:261.801333pt;}
.y13a{bottom:264.545333pt;}
.y121{bottom:264.758667pt;}
.y191{bottom:264.977333pt;}
.y157{bottom:265.137333pt;}
.y11{bottom:265.733333pt;}
.y1aa{bottom:265.921333pt;}
.y10{bottom:267.837333pt;}
.yb2{bottom:268.289333pt;}
.y4c{bottom:268.524000pt;}
.y67{bottom:268.685333pt;}
.y1be{bottom:269.201333pt;}
.y13c{bottom:270.928000pt;}
.ya0{bottom:273.644000pt;}
.y138{bottom:274.524000pt;}
.y1e3{bottom:276.269333pt;}
.y139{bottom:277.872000pt;}
.y213{bottom:278.428000pt;}
.ye1{bottom:280.065333pt;}
.yf4{bottom:282.238667pt;}
.y7f{bottom:286.062667pt;}
.y17b{bottom:286.189333pt;}
.y10c{bottom:289.404000pt;}
.y1fa{bottom:290.262667pt;}
.yc7{bottom:290.809333pt;}
.yf{bottom:292.410667pt;}
.y17c{bottom:292.570667pt;}
.y1bd{bottom:293.642667pt;}
.y17a{bottom:296.166667pt;}
.y4b{bottom:296.240000pt;}
.y66{bottom:296.433333pt;}
.y9f{bottom:300.742667pt;}
.y1a9{bottom:301.964000pt;}
.y212{bottom:305.525333pt;}
.y1a8{bottom:305.560000pt;}
.y120{bottom:310.754667pt;}
.y156{bottom:311.133333pt;}
.y190{bottom:312.681333pt;}
.ye{bottom:314.329333pt;}
.y227{bottom:314.502667pt;}
.y137{bottom:316.214667pt;}
.ye0{bottom:318.068000pt;}
.yb1{bottom:322.152000pt;}
.y65{bottom:324.180000pt;}
.y7e{bottom:324.884000pt;}
.yf3{bottom:326.056000pt;}
.y9e{bottom:327.840000pt;}
.yf2{bottom:329.652000pt;}
.y1f9{bottom:330.484000pt;}
.y211{bottom:332.624000pt;}
.y1e2{bottom:333.969333pt;}
.y10b{bottom:335.400000pt;}
.y1ce{bottom:336.561333pt;}
.yc6{bottom:336.805333pt;}
.yd{bottom:338.904000pt;}
.y4a{bottom:339.117333pt;}
.y226{bottom:341.601333pt;}
.y1a7{bottom:345.198667pt;}
.y135{bottom:346.165333pt;}
.y64{bottom:351.928000pt;}
.y134{bottom:352.497333pt;}
.y1bc{bottom:353.345333pt;}
.y9d{bottom:354.938667pt;}
.y155{bottom:355.170667pt;}
.ydf{bottom:356.070667pt;}
.y1f8{bottom:357.581333pt;}
.y136{bottom:358.880000pt;}
.y210{bottom:359.722667pt;}
.y179{bottom:360.685333pt;}
.yc{bottom:360.821333pt;}
.y1e1{bottom:361.068000pt;}
.yb0{bottom:362.048000pt;}
.y133{bottom:362.474667pt;}
.y7d{bottom:363.704000pt;}
.y11f{bottom:364.674667pt;}
.y154{bottom:365.149333pt;}
.y49{bottom:366.832000pt;}
.y32{bottom:371.484000pt;}
.yf1{bottom:375.638667pt;}
.y18f{bottom:376.589333pt;}
.y9c{bottom:382.037333pt;}
.y1cd{bottom:382.640000pt;}
.yde{bottom:383.169333pt;}
.y1a6{bottom:383.350667pt;}
.yb{bottom:385.396000pt;}
.y225{bottom:385.968000pt;}
.y1e0{bottom:388.166667pt;}
.y10a{bottom:389.268000pt;}
.yc5{bottom:390.502667pt;}
.y48{bottom:394.548000pt;}
.y63{bottom:394.869333pt;}
.y31{bottom:398.582667pt;}
.yaf{bottom:401.944000pt;}
.y7c{bottom:402.525333pt;}
.y1f7{bottom:403.578667pt;}
.y18e{bottom:403.688000pt;}
.y132{bottom:404.166667pt;}
.y11e{bottom:404.948000pt;}
.y1b7{bottom:405.429333pt;}
.y153{bottom:406.026667pt;}
.y20f{bottom:406.153333pt;}
.y178{bottom:406.681333pt;}
.ya{bottom:407.313333pt;}
.y9b{bottom:409.717333pt;}
.y249{bottom:410.164000pt;}
.y1a5{bottom:410.448000pt;}
.y109{bottom:416.366667pt;}
.ydd{bottom:421.173333pt;}
.yf0{bottom:421.626667pt;}
.y47{bottom:422.262667pt;}
.y30{bottom:425.681333pt;}
.y224{bottom:426.350667pt;}
.yc4{bottom:428.022667pt;}
.y248{bottom:434.074667pt;}
.y1df{bottom:434.784000pt;}
.y9{bottom:436.676000pt;}
.y9a{bottom:436.814667pt;}
.y152{bottom:436.928000pt;}
.y62{bottom:437.810667pt;}
.y7b{bottom:441.346667pt;}
.yae{bottom:441.840000pt;}
.y108{bottom:443.465333pt;}
.y11d{bottom:445.221333pt;}
.y1bb{bottom:447.914667pt;}
.y1a4{bottom:449.928000pt;}
.y46{bottom:449.977333pt;}
.y131{bottom:450.162667pt;}
.y177{bottom:450.176000pt;}
.y18c{bottom:452.230667pt;}
.y223{bottom:453.448000pt;}
.y18d{bottom:455.578667pt;}
.y151{bottom:456.745333pt;}
.y1f6{bottom:457.490667pt;}
.y247{bottom:457.985333pt;}
.ydc{bottom:459.176000pt;}
.y2f{bottom:461.572000pt;}
.y20e{bottom:462.780000pt;}
.yc3{bottom:463.274667pt;}
.y99{bottom:463.913333pt;}
.yc2{bottom:466.870667pt;}
.yef{bottom:467.614667pt;}
.y7a{bottom:468.445333pt;}
.y176{bottom:469.993333pt;}
.y11c{bottom:475.517333pt;}
.y45{bottom:477.693333pt;}
.y1cc{bottom:479.777333pt;}
.y61{bottom:480.753333pt;}
.y246{bottom:481.896000pt;}
.y2e{bottom:482.197333pt;}
.y8{bottom:483.264000pt;}
.y2d{bottom:485.481333pt;}
.y150{bottom:487.784000pt;}
.yad{bottom:487.836000pt;}
.y1a3{bottom:489.408000pt;}
.y107{bottom:489.461333pt;}
.y1b6{bottom:489.574667pt;}
.y98{bottom:491.012000pt;}
.y1de{bottom:492.484000pt;}
.y222{bottom:493.830667pt;}
.y1f5{bottom:494.116000pt;}
.y11b{bottom:495.334667pt;}
.y20d{bottom:495.816000pt;}
.y175{bottom:497.573333pt;}
.y1f4{bottom:497.712000pt;}
.y18b{bottom:499.065333pt;}
.y130{bottom:504.306667pt;}
.ydb{bottom:505.172000pt;}
.yc1{bottom:505.718667pt;}
.y245{bottom:505.805333pt;}
.y7{bottom:507.173333pt;}
.y79{bottom:507.265333pt;}
.y60{bottom:508.500000pt;}
.y2c{bottom:509.392000pt;}
.yee{bottom:515.028000pt;}
.y20c{bottom:515.633333pt;}
.y1a2{bottom:516.506667pt;}
.y97{bottom:518.110667pt;}
.y44{bottom:520.570667pt;}
.y221{bottom:520.929333pt;}
.y171{bottom:521.677333pt;}
.y14f{bottom:525.066667pt;}
.y11a{bottom:525.768000pt;}
.y170{bottom:528.284000pt;}
.y14e{bottom:528.662667pt;}
.y244{bottom:529.716000pt;}
.y6{bottom:531.084000pt;}
.y1ba{bottom:531.113333pt;}
.y2b{bottom:533.302667pt;}
.y173{bottom:534.665333pt;}
.y5f{bottom:536.248000pt;}
.y1f3{bottom:537.932000pt;}
.y172{bottom:538.261333pt;}
.y1dd{bottom:541.202667pt;}
.yac{bottom:541.697333pt;}
.y106{bottom:543.329333pt;}
.y174{bottom:544.505333pt;}
.yc0{bottom:544.568000pt;}
.y96{bottom:545.789333pt;}
.y12e{bottom:545.997333pt;}
.y78{bottom:546.086667pt;}
.y18a{bottom:546.769333pt;}
.y16f{bottom:548.101333pt;}
.y43{bottom:548.285333pt;}
.y20b{bottom:548.805333pt;}
.y12f{bottom:549.346667pt;}
.y243{bottom:553.626667pt;}
.y2a{bottom:557.213333pt;}
.yda{bottom:558.736000pt;}
.yed{bottom:561.014667pt;}
.y220{bottom:561.310667pt;}
.y1a1{bottom:562.502667pt;}
.y5e{bottom:563.994667pt;}
.y119{bottom:566.041333pt;}
.y1cb{bottom:569.174667pt;}
.y14d{bottom:569.541333pt;}
.y16e{bottom:572.085333pt;}
.y1b5{bottom:572.670667pt;}
.y95{bottom:572.888000pt;}
.y1f2{bottom:574.557333pt;}
.y16d{bottom:575.681333pt;}
.y42{bottom:576.001333pt;}
.y242{bottom:577.537333pt;}
.y1f1{bottom:578.153333pt;}
.y29{bottom:581.122667pt;}
.yab{bottom:581.474667pt;}
.y105{bottom:583.264000pt;}
.ybf{bottom:583.416000pt;}
.y77{bottom:583.578667pt;}
.y1dc{bottom:584.693333pt;}
.yd9{bottom:585.834667pt;}
.y12d{bottom:587.689333pt;}
.y20a{bottom:595.236000pt;}
.y16b{bottom:599.569333pt;}
.y94{bottom:599.986667pt;}
.y241{bottom:601.446667pt;}
.y21f{bottom:601.693333pt;}
.y41{bottom:603.716000pt;}
.y28{bottom:605.033333pt;}
.y118{bottom:606.313333pt;}
.y5d{bottom:606.937333pt;}
.yec{bottom:608.437333pt;}
.y189{bottom:610.677333pt;}
.y16c{bottom:612.557333pt;}
.y1a0{bottom:612.702667pt;}
.yd8{bottom:612.933333pt;}
.y1b9{bottom:614.213333pt;}
.y14c{bottom:615.537333pt;}
.y169{bottom:616.153333pt;}
.y19f{bottom:616.298667pt;}
.y1f0{bottom:618.374667pt;}
.yaa{bottom:621.252000pt;}
.y1c8{bottom:622.672000pt;}
.y76{bottom:622.998667pt;}
.y104{bottom:623.198667pt;}
.y240{bottom:625.357333pt;}
.y93{bottom:627.085333pt;}
.y16a{bottom:627.228000pt;}
.y1db{bottom:628.184000pt;}
.y27{bottom:628.944000pt;}
.y12b{bottom:629.381333pt;}
.ybe{bottom:629.412000pt;}
.y40{bottom:631.432000pt;}
.y12c{bottom:632.729333pt;}
.y188{bottom:637.774667pt;}
.yd7{bottom:640.032000pt;}
.y21e{bottom:646.060000pt;}
.y23f{bottom:649.268000pt;}
.y5c{bottom:649.878667pt;}
.y209{bottom:651.862667pt;}
.y117{bottom:652.309333pt;}
.y168{bottom:653.573333pt;}
.y92{bottom:654.184000pt;}
.y1ef{bottom:655.000000pt;}
.y19e{bottom:655.778667pt;}
.y1b4{bottom:656.778667pt;}
.y1ee{bottom:658.594667pt;}
.y5{bottom:659.105333pt;}
.y3f{bottom:659.146667pt;}
.ya9{bottom:661.029333pt;}
.y75{bottom:662.417333pt;}
.y26{bottom:666.137333pt;}
.y12a{bottom:667.476000pt;}
.y103{bottom:669.194667pt;}
.y14b{bottom:669.553333pt;}
.yeb{bottom:670.730667pt;}
.y1ca{bottom:670.920000pt;}
.y129{bottom:671.072000pt;}
.y23e{bottom:673.178667pt;}
.y187{bottom:676.340000pt;}
.y1da{bottom:676.902667pt;}
.y208{bottom:678.961333pt;}
.y91{bottom:681.281333pt;}
.ybd{bottom:683.109333pt;}
.yd6{bottom:686.028000pt;}
.y3e{bottom:686.861333pt;}
.y21d{bottom:692.056000pt;}
.y5b{bottom:692.820000pt;}
.y1ed{bottom:695.220000pt;}
.y19d{bottom:695.257333pt;}
.y186{bottom:696.157333pt;}
.y14a{bottom:696.650667pt;}
.y23d{bottom:697.088000pt;}
.y1b8{bottom:697.362667pt;}
.y1ec{bottom:698.816000pt;}
.y167{bottom:699.569333pt;}
.ya8{bottom:699.597333pt;}
.y74{bottom:699.909333pt;}
.y25{bottom:703.332000pt;}
.y116{bottom:706.230667pt;}
.y90{bottom:708.380000pt;}
.yea{bottom:716.718667pt;}
.y128{bottom:717.068000pt;}
.y5a{bottom:720.568000pt;}
.y23c{bottom:720.998667pt;}
.y1d9{bottom:721.100000pt;}
.ybc{bottom:721.957333pt;}
.y102{bottom:723.062667pt;}
.y149{bottom:723.749333pt;}
.y207{bottom:725.392000pt;}
.y73{bottom:727.008000pt;}
.y19b{bottom:727.914667pt;}
.y3d{bottom:729.740000pt;}
.y185{bottom:733.152000pt;}
.y24{bottom:735.212000pt;}
.y8f{bottom:736.060000pt;}
.y1b3{bottom:739.024000pt;}
.y1eb{bottom:739.037333pt;}
.ya7{bottom:739.493333pt;}
.yd5{bottom:739.592000pt;}
.y199{bottom:742.366667pt;}
.y197{bottom:743.246667pt;}
.y23b{bottom:744.909333pt;}
.y21c{bottom:746.202667pt;}
.y115{bottom:746.504000pt;}
.y1c9{bottom:746.932000pt;}
.y59{bottom:748.314667pt;}
.y166{bottom:749.445333pt;}
.y148{bottom:750.848000pt;}
.y198{bottom:750.868000pt;}
.y165{bottom:753.041333pt;}
.y72{bottom:754.106667pt;}
.ye9{bottom:754.154667pt;}
.y19a{bottom:755.013333pt;}
.y3c{bottom:757.454667pt;}
.y23{bottom:759.122667pt;}
.ybb{bottom:760.806667pt;}
.y101{bottom:762.997333pt;}
.y8e{bottom:763.158667pt;}
.y1d8{bottom:764.674667pt;}
.y127{bottom:767.616000pt;}
.y23a{bottom:768.820000pt;}
.y184{bottom:770.009333pt;}
.y126{bottom:771.212000pt;}
.y21b{bottom:773.301333pt;}
.ye8{bottom:773.972000pt;}
.y19c{bottom:774.248000pt;}
.y58{bottom:776.062667pt;}
.yd4{bottom:776.266667pt;}
.y1ea{bottom:779.258667pt;}
.ya6{bottom:779.389333pt;}
.y71{bottom:781.205333pt;}
.y206{bottom:781.354667pt;}
.y205{bottom:782.018667pt;}
.y22{bottom:783.033333pt;}
.y3b{bottom:785.169333pt;}
.y114{bottom:786.777333pt;}
.y196{bottom:788.488000pt;}
.y183{bottom:789.826667pt;}
.y8d{bottom:790.256000pt;}
.y1d7{bottom:791.773333pt;}
.y239{bottom:792.729333pt;}
.y147{bottom:796.844000pt;}
.y1b2{bottom:797.512000pt;}
.yba{bottom:799.654667pt;}
.y4{bottom:802.264000pt;}
.y100{bottom:802.932000pt;}
.y57{bottom:803.810667pt;}
.y21a{bottom:805.033333pt;}
.y21{bottom:806.942667pt;}
.y70{bottom:808.302667pt;}
.y203{bottom:809.117333pt;}
.ye7{bottom:810.120000pt;}
.y233{bottom:811.076000pt;}
.y219{bottom:811.414667pt;}
.y3a{bottom:812.885333pt;}
.y125{bottom:812.904000pt;}
.y204{bottom:814.396000pt;}
.y218{bottom:815.010667pt;}
.yd3{bottom:815.412000pt;}
.y238{bottom:816.640000pt;}
.y8c{bottom:817.354667pt;}
.y164{bottom:817.560000pt;}
.ya5{bottom:819.285333pt;}
.y1e9{bottom:819.478667pt;}
.y182{bottom:826.821333pt;}
.y3{bottom:830.158667pt;}
.y20{bottom:830.853333pt;}
.y56{bottom:831.557333pt;}
.y113{bottom:832.773333pt;}
.y195{bottom:834.484000pt;}
.y6f{bottom:835.401333pt;}
.y232{bottom:835.517333pt;}
.y1c7{bottom:836.813333pt;}
.y1b1{bottom:837.893333pt;}
.y1d6{bottom:838.390667pt;}
.yb9{bottom:838.502667pt;}
.y237{bottom:840.550667pt;}
.y39{bottom:840.600000pt;}
.yff{bottom:842.866667pt;}
.y162{bottom:845.002667pt;}
.y8a{bottom:850.830667pt;}
.y146{bottom:850.860000pt;}
.y163{bottom:851.384000pt;}
.yd2{bottom:854.558667pt;}
.y1f{bottom:854.764000pt;}
.y202{bottom:855.548000pt;}
.y217{bottom:856.721333pt;}
.y8b{bottom:857.212000pt;}
.ye6{bottom:857.541333pt;}
.y124{bottom:858.900000pt;}
.ya4{bottom:859.181333pt;}
.y231{bottom:859.428000pt;}
.y1e8{bottom:859.700000pt;}
.y89{bottom:860.808000pt;}
.y161{bottom:861.224000pt;}
.y236{bottom:864.461333pt;}
.y160{bottom:864.820000pt;}
.y38{bottom:868.316000pt;}
.y145{bottom:873.994667pt;}
.y6e{bottom:874.222667pt;}
.y55{bottom:874.498667pt;}
.y181{bottom:874.525333pt;}
.y144{bottom:877.958667pt;}
.y1b0{bottom:878.276000pt;}
.y1e{bottom:878.674667pt;}
.yfe{bottom:882.801333pt;}
.y230{bottom:883.338667pt;}
.yb8{bottom:884.498667pt;}
.y112{bottom:886.693333pt;}
.y1c4{bottom:887.849333pt;}
.y194{bottom:888.281333pt;}
.y235{bottom:888.370667pt;}
.y2{bottom:888.702667pt;}
.y1c5{bottom:889.094667pt;}
.y1c6{bottom:890.116000pt;}
.yd1{bottom:891.233333pt;}
.y15f{bottom:892.400000pt;}
.y37{bottom:896.030667pt;}
.y1d5{bottom:896.090667pt;}
.y216{bottom:898.432000pt;}
.y1e7{bottom:899.921333pt;}
.y54{bottom:902.246667pt;}
.y88{bottom:904.261333pt;}
.ya3{bottom:905.177333pt;}
.y22f{bottom:907.249333pt;}
.y142{bottom:909.777333pt;}
.yfd{bottom:910.996000pt;}
.y201{bottom:912.174667pt;}
.y234{bottom:912.281333pt;}
.y6d{bottom:913.044000pt;}
.y1d{bottom:913.078667pt;}
.yfc{bottom:917.328000pt;}
.y1c{bottom:917.898667pt;}
.y1af{bottom:918.657333pt;}
.ycf{bottom:919.260000pt;}
.ye5{bottom:919.834667pt;}
.y143{bottom:922.765333pt;}
.y1d4{bottom:923.189333pt;}
.y36{bottom:923.745333pt;}
.y1{bottom:924.568000pt;}
.yd0{bottom:925.641333pt;}
.y15e{bottom:926.224000pt;}
.y141{bottom:926.361333pt;}
.y111{bottom:926.966667pt;}
.yfa{bottom:927.305333pt;}
.y193{bottom:927.760000pt;}
.yce{bottom:929.237333pt;}
.y15d{bottom:929.820000pt;}
.y53{bottom:929.994667pt;}
.yfb{bottom:930.654667pt;}
.y22e{bottom:931.158667pt;}
.y87{bottom:931.360000pt;}
.yb7{bottom:938.196000pt;}
.y180{bottom:938.433333pt;}
.y200{bottom:939.708000pt;}
.y6c{bottom:940.141333pt;}
.y1a{bottom:941.637333pt;}
.y1b{bottom:946.916000pt;}
.y22d{bottom:955.601333pt;}
.y52{bottom:957.741333pt;}
.y86{bottom:959.040000pt;}
.y17f{bottom:965.532000pt;}
.y35{bottom:966.624000pt;}
.y1ff{bottom:966.806667pt;}
.y6b{bottom:967.240000pt;}
.ye4{bottom:967.248000pt;}
.y1d3{bottom:969.806667pt;}
.yb6{bottom:975.052000pt;}
.yb5{bottom:975.716000pt;}
.y22c{bottom:980.174667pt;}
.y19{bottom:985.341333pt;}
.y51{bottom:985.489333pt;}
.y85{bottom:986.137333pt;}
.y1c2{bottom:1000.585333pt;}
.y1c3{bottom:1002.749333pt;}
.y22b{bottom:1004.085333pt;}
.y84{bottom:1009.640000pt;}
.y18{bottom:1013.236000pt;}
.y34{bottom:1059.728000pt;}
.h36{height:2.656693pt;}
.h33{height:10.096693pt;}
.h3d{height:11.742585pt;}
.hb{height:14.059315pt;}
.h13{height:15.550933pt;}
.hf{height:25.068486pt;}
.h2c{height:30.239067pt;}
.h2a{height:30.244400pt;}
.he{height:31.880400pt;}
.h8{height:33.713664pt;}
.h9{height:35.139115pt;}
.h7{height:35.865600pt;}
.h3a{height:36.662368pt;}
.h10{height:38.043849pt;}
.h6{height:39.850400pt;}
.h16{height:40.145488pt;}
.ha{height:41.515221pt;}
.h22{height:41.658217pt;}
.hd{height:43.636400pt;}
.hc{height:44.281600pt;}
.h3f{height:44.348486pt;}
.h11{height:44.353820pt;}
.h5{height:44.632747pt;}
.h3b{height:44.688562pt;}
.h2b{height:46.827221pt;}
.h29{height:46.832555pt;}
.h38{height:47.156400pt;}
.h3{height:47.820800pt;}
.h3e{height:49.336244pt;}
.h1d{height:51.039735pt;}
.h12{height:52.986400pt;}
.h15{height:52.989733pt;}
.h19{height:52.995067pt;}
.h3c{height:53.010911pt;}
.h2{height:53.559147pt;}
.h1f{height:53.695735pt;}
.h20{height:53.946402pt;}
.h30{height:54.395360pt;}
.h14{height:55.901733pt;}
.h25{height:55.907067pt;}
.h18{height:58.020400pt;}
.h31{height:60.184400pt;}
.h26{height:60.224555pt;}
.h1e{height:60.489733pt;}
.h40{height:60.543067pt;}
.h39{height:67.379067pt;}
.h2f{height:68.779360pt;}
.h27{height:69.599067pt;}
.h2e{height:69.604400pt;}
.h17{height:70.285733pt;}
.h1a{height:82.996400pt;}
.h21{height:83.545733pt;}
.h32{height:83.551067pt;}
.h23{height:92.355067pt;}
.h28{height:94.304693pt;}
.h2d{height:94.310027pt;}
.h1c{height:95.811067pt;}
.h41{height:97.380400pt;}
.h4{height:105.611479pt;}
.h34{height:106.739067pt;}
.h1b{height:122.905733pt;}
.h35{height:126.662027pt;}
.h37{height:130.182027pt;}
.h24{height:132.264400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x29{left:96.000000pt;}
.x2a{left:98.434667pt;}
.x32{left:101.656000pt;}
.xf7{left:102.641333pt;}
.x31{left:106.909333pt;}
.x45{left:110.102667pt;}
.xb{left:111.313333pt;}
.x2e{left:112.565333pt;}
.x34{left:113.574667pt;}
.x36{left:115.925333pt;}
.x2d{left:118.221333pt;}
.xf8{left:124.633333pt;}
.x53{left:130.868000pt;}
.x2f{left:133.997333pt;}
.x30{left:135.006667pt;}
.xe7{left:136.582667pt;}
.x33{left:137.633333pt;}
.x3a{left:139.540000pt;}
.x23{left:141.164000pt;}
.xc6{left:142.254667pt;}
.x59{left:144.482667pt;}
.x1{left:150.706667pt;}
.x9a{left:153.368000pt;}
.x20{left:154.448000pt;}
.x3f{left:157.754667pt;}
.x4d{left:158.782667pt;}
.x9b{left:161.057333pt;}
.xc7{left:163.094667pt;}
.xe6{left:166.178667pt;}
.x50{left:168.274667pt;}
.x40{left:169.472000pt;}
.x4e{left:173.910667pt;}
.x10{left:175.226667pt;}
.xc8{left:178.566667pt;}
.x9f{left:180.297333pt;}
.x41{left:181.981333pt;}
.x4f{left:185.953333pt;}
.xea{left:188.197333pt;}
.x1e{left:190.597333pt;}
.xc9{left:192.709333pt;}
.x11{left:194.774667pt;}
.x1f{left:196.556000pt;}
.xf1{left:197.457333pt;}
.xbe{left:202.185333pt;}
.x77{left:203.725333pt;}
.xcc{left:205.916000pt;}
.x1b{left:207.469333pt;}
.xdc{left:208.798667pt;}
.xaf{left:211.912000pt;}
.x12{left:213.660000pt;}
.xec{left:216.100000pt;}
.x82{left:217.005333pt;}
.xc0{left:221.962667pt;}
.x13{left:223.792000pt;}
.x65{left:230.156000pt;}
.xf6{left:232.188000pt;}
.x14{left:233.081333pt;}
.x81{left:234.509333pt;}
.xe0{left:238.282667pt;}
.x83{left:239.960000pt;}
.x3{left:244.284000pt;}
.x15{left:245.860000pt;}
.x42{left:247.472000pt;}
.x72{left:250.604000pt;}
.x26{left:251.818667pt;}
.xa0{left:253.832000pt;}
.x98{left:255.018667pt;}
.xaa{left:256.500000pt;}
.x5d{left:258.465333pt;}
.x58{left:261.282667pt;}
.x27{left:262.864000pt;}
.xca{left:263.893333pt;}
.x61{left:265.214667pt;}
.x3b{left:267.361333pt;}
.x19{left:269.820000pt;}
.x16{left:271.573333pt;}
.x3c{left:274.634667pt;}
.xbb{left:276.130667pt;}
.x7c{left:277.528000pt;}
.x86{left:279.370667pt;}
.x1a{left:280.588000pt;}
.x3d{left:281.790667pt;}
.xef{left:282.757333pt;}
.x2{left:283.652000pt;}
.x4b{left:285.686667pt;}
.x28{left:286.774667pt;}
.x3e{left:289.064000pt;}
.x87{left:290.385333pt;}
.x79{left:291.521333pt;}
.x7{left:293.149333pt;}
.xbc{left:294.212000pt;}
.x5c{left:296.540000pt;}
.x8d{left:297.842667pt;}
.xf5{left:299.254667pt;}
.x7e{left:300.213333pt;}
.xed{left:301.340000pt;}
.x93{left:302.854667pt;}
.x5f{left:304.228000pt;}
.xa7{left:305.812000pt;}
.x43{left:307.746667pt;}
.xda{left:309.014667pt;}
.x9c{left:310.266667pt;}
.x5b{left:311.330667pt;}
.x97{left:312.241333pt;}
.x17{left:314.012000pt;}
.xa5{left:315.648000pt;}
.xad{left:317.842667pt;}
.x4{left:319.705333pt;}
.x5a{left:321.745333pt;}
.x18{left:322.786667pt;}
.x25{left:325.570667pt;}
.x49{left:327.569333pt;}
.x8b{left:329.365333pt;}
.x35{left:331.561333pt;}
.x7a{left:332.785333pt;}
.x5{left:333.781333pt;}
.xe1{left:335.077333pt;}
.x44{left:336.138667pt;}
.x64{left:337.149333pt;}
.x6{left:339.008000pt;}
.x1c{left:340.090667pt;}
.x66{left:342.034667pt;}
.x7b{left:344.056000pt;}
.x46{left:345.668000pt;}
.x4a{left:347.334667pt;}
.x8{left:349.013333pt;}
.x24{left:350.974667pt;}
.x76{left:353.502667pt;}
.x39{left:355.522667pt;}
.x5e{left:357.210667pt;}
.xdb{left:358.197333pt;}
.x62{left:359.141333pt;}
.x9{left:360.858667pt;}
.x8a{left:362.212000pt;}
.x2c{left:363.736000pt;}
.x78{left:366.412000pt;}
.x94{left:368.716000pt;}
.x9d{left:369.904000pt;}
.xf0{left:373.169333pt;}
.x7d{left:375.021333pt;}
.xa2{left:380.601333pt;}
.x7f{left:382.914667pt;}
.x84{left:384.029333pt;}
.xa4{left:386.192000pt;}
.x90{left:387.884000pt;}
.xba{left:391.024000pt;}
.x67{left:392.834667pt;}
.xb9{left:395.108000pt;}
.xe8{left:397.333333pt;}
.x9e{left:398.292000pt;}
.xb2{left:401.192000pt;}
.xbf{left:408.597333pt;}
.x95{left:411.705333pt;}
.xb3{left:412.842667pt;}
.x88{left:413.986667pt;}
.xbd{left:417.613333pt;}
.x85{left:419.045333pt;}
.x47{left:421.369333pt;}
.x6b{left:422.500000pt;}
.xa3{left:424.458667pt;}
.x80{left:425.893333pt;}
.x6c{left:429.772000pt;}
.x91{left:430.864000pt;}
.xae{left:432.909333pt;}
.xb0{left:434.370667pt;}
.x48{left:435.770667pt;}
.x6d{left:437.190667pt;}
.xe9{left:438.692000pt;}
.x6e{left:444.462667pt;}
.x8e{left:445.497333pt;}
.x51{left:448.916000pt;}
.xcb{left:450.490667pt;}
.xb6{left:452.093333pt;}
.x8f{left:453.186667pt;}
.x1d{left:454.897333pt;}
.x96{left:458.486667pt;}
.x92{left:462.254667pt;}
.x4c{left:469.305333pt;}
.xb4{left:473.225333pt;}
.xcd{left:477.552000pt;}
.xa8{left:478.677333pt;}
.xce{left:483.164000pt;}
.xc{left:485.702667pt;}
.xa1{left:489.289333pt;}
.xa9{left:490.358667pt;}
.xcf{left:494.073333pt;}
.xdd{left:495.564000pt;}
.xb7{left:496.658667pt;}
.x60{left:499.516000pt;}
.xb8{left:503.932000pt;}
.xd{left:505.198667pt;}
.xb5{left:506.766667pt;}
.xd0{left:508.532000pt;}
.x89{left:509.708000pt;}
.xc1{left:511.160000pt;}
.xab{left:514.348000pt;}
.x99{left:515.829333pt;}
.x8c{left:517.210667pt;}
.xe{left:519.426667pt;}
.xde{left:520.322667pt;}
.xac{left:525.493333pt;}
.xc2{left:528.406667pt;}
.x69{left:537.272000pt;}
.xb1{left:541.044000pt;}
.x6a{left:544.544000pt;}
.x68{left:549.144000pt;}
.xdf{left:550.392000pt;}
.xee{left:555.260000pt;}
.xe2{left:564.324000pt;}
.xa6{left:573.056000pt;}
.xf{left:574.724000pt;}
.xc3{left:576.856000pt;}
.x37{left:580.469333pt;}
.x52{left:584.680000pt;}
.x6f{left:586.202667pt;}
.x38{left:587.741333pt;}
.x70{left:593.476000pt;}
.x21{left:595.469333pt;}
.x54{left:599.548000pt;}
.x22{left:602.110667pt;}
.x56{left:605.256000pt;}
.x71{left:610.150667pt;}
.xf2{left:613.140000pt;}
.xc4{left:616.392000pt;}
.xc5{left:621.936000pt;}
.xf3{left:624.856000pt;}
.x57{left:628.861333pt;}
.x73{left:631.340000pt;}
.x55{left:633.974667pt;}
.x74{left:637.109333pt;}
.xf4{left:643.754667pt;}
.xe3{left:649.338667pt;}
.xeb{left:653.930667pt;}
.xe4{left:654.881333pt;}
.xd1{left:662.805333pt;}
.xd2{left:671.654667pt;}
.xd4{left:675.132000pt;}
.x75{left:679.549333pt;}
.xd5{left:682.404000pt;}
.xe5{left:683.892000pt;}
.xd6{left:690.214667pt;}
.xd3{left:694.422667pt;}
.xd7{left:697.488000pt;}
.x63{left:703.122667pt;}
.xd8{left:705.298667pt;}
.x2b{left:710.396000pt;}
.xd9{left:712.572000pt;}
}




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