
    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_a58ae35f4f5712d639e29419.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_83d426f4bbf5e9e63a7931ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fee6e5ffd09a2e0946bdf16f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_11a7afce3f9d260a0a510250.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693000;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_6ec2d7370be8bc4a2171b382.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710000;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_ce12ddf658ebb47156832ea5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_4795a4ce60014be803ab9ee3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.803000;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_224ccf9de8c9da74aaf3c8c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.670000;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_2f41bc13d1cb44ae14e9c82e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.689000;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_c0f524d964eec72140d8d1ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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_7b451786137b77d77e27145d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.505000;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_bcd0cefbbe20ff3e2bdcfe8c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_03271be168823554bfdb868c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.670000;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_8f1bf3913d8654919e490145.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;}
.mf{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);}
.m9{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);}
.m19{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);}
.m27{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);}
.m1e{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m1f{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);}
.m29{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);}
.m1{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.me{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m17{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);}
.m23{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);}
.m1c{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);}
.m13{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);}
.m1d{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m26{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);}
.m4{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);}
.m15{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);}
.m21{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);}
.m22{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m24{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);}
.m11{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1a{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);}
.m3{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);}
.mc{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.va{vertical-align:-19.530000px;}
.v2{vertical-align:-17.358000px;}
.v16{vertical-align:-13.776000px;}
.v5{vertical-align:-12.306000px;}
.v6{vertical-align:-10.488000px;}
.v9{vertical-align:-8.070000px;}
.v17{vertical-align:-6.762000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.254000px;}
.v11{vertical-align:9.564000px;}
.v8{vertical-align:10.920000px;}
.v13{vertical-align:14.208000px;}
.vb{vertical-align:17.358000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v12{vertical-align:24.690000px;}
.vd{vertical-align:27.960000px;}
.vf{vertical-align:30.540000px;}
.v4{vertical-align:32.880000px;}
.v14{vertical-align:36.210000px;}
.vc{vertical-align:40.464000px;}
.v15{vertical-align:63.816000px;}
.ve{vertical-align:65.694000px;}
.v10{vertical-align:74.130000px;}
.ls7{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000017px;}
.ls33{letter-spacing:0.000094px;}
.ls75{letter-spacing:0.000583px;}
.ls78{letter-spacing:0.000612px;}
.ls81{letter-spacing:0.000741px;}
.ls7c{letter-spacing:0.000800px;}
.ls12{letter-spacing:0.001133px;}
.ls80{letter-spacing:0.001155px;}
.ls14{letter-spacing:0.002669px;}
.ls4{letter-spacing:0.003488px;}
.ls3c{letter-spacing:0.004200px;}
.ls2a{letter-spacing:0.004310px;}
.ls17{letter-spacing:0.004458px;}
.ls83{letter-spacing:0.004608px;}
.ls31{letter-spacing:0.542815px;}
.ls74{letter-spacing:0.548815px;}
.ls19{letter-spacing:0.642088px;}
.ls73{letter-spacing:0.644755px;}
.lsf{letter-spacing:0.669878px;}
.ls1c{letter-spacing:0.675878px;}
.ls26{letter-spacing:0.717483px;}
.ls4b{letter-spacing:0.744017px;}
.ls3a{letter-spacing:0.750583px;}
.ls6d{letter-spacing:0.765943px;}
.ls70{letter-spacing:0.850185px;}
.ls34{letter-spacing:0.864583px;}
.ls72{letter-spacing:0.878370px;}
.ls71{letter-spacing:0.896755px;}
.ls16{letter-spacing:0.941501px;}
.ls63{letter-spacing:1.112815px;}
.ls6c{letter-spacing:1.131943px;}
.ls40{letter-spacing:1.135740px;}
.ls18{letter-spacing:1.293178px;}
.ls3d{letter-spacing:1.312200px;}
.ls3f{letter-spacing:1.314017px;}
.ls62{letter-spacing:1.317292px;}
.ls5e{letter-spacing:1.318200px;}
.ls35{letter-spacing:1.420741px;}
.ls56{letter-spacing:1.461483px;}
.ls51{letter-spacing:1.467483px;}
.ls36{letter-spacing:1.490725px;}
.ls39{letter-spacing:1.494583px;}
.ls41{letter-spacing:1.496725px;}
.ls4d{letter-spacing:1.542017px;}
.ls6a{letter-spacing:1.666407px;}
.ls65{letter-spacing:1.672407px;}
.ls64{letter-spacing:1.699258px;}
.ls13{letter-spacing:2.019638px;}
.ls52{letter-spacing:2.194741px;}
.ls57{letter-spacing:2.200741px;}
.ls2c{letter-spacing:2.206310px;}
.ls4f{letter-spacing:2.211634px;}
.ls66{letter-spacing:2.224514px;}
.ls6b{letter-spacing:2.230514px;}
.ls10{letter-spacing:2.241586px;}
.ls1d{letter-spacing:2.580845px;}
.ls1e{letter-spacing:2.586845px;}
.ls53{letter-spacing:2.927108px;}
.ls7b{letter-spacing:2.953741px;}
.ls76{letter-spacing:2.985886px;}
.ls2b{letter-spacing:2.987105px;}
.ls69{letter-spacing:2.988571px;}
.ls3b{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls1b{letter-spacing:3.387178px;}
.ls1f{letter-spacing:3.393178px;}
.ls27{letter-spacing:3.436200px;}
.ls28{letter-spacing:3.442200px;}
.lse{letter-spacing:3.507900px;}
.lsd{letter-spacing:3.513900px;}
.ls24{letter-spacing:3.553200px;}
.ls9{letter-spacing:3.559200px;}
.ls48{letter-spacing:7.218017px;}
.ls46{letter-spacing:7.224017px;}
.ls6f{letter-spacing:8.168815px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls60{letter-spacing:12.370200px;}
.ls5a{letter-spacing:12.849483px;}
.ls42{letter-spacing:13.042741px;}
.ls61{letter-spacing:13.089483px;}
.ls59{letter-spacing:13.118725px;}
.ls82{letter-spacing:13.354482px;}
.ls79{letter-spacing:13.448400px;}
.ls7a{letter-spacing:13.454400px;}
.ls7f{letter-spacing:13.458563px;}
.ls7d{letter-spacing:13.490159px;}
.ls85{letter-spacing:13.674517px;}
.ls7e{letter-spacing:13.752441px;}
.ls1a{letter-spacing:13.972800px;}
.ls21{letter-spacing:14.094088px;}
.ls22{letter-spacing:14.100088px;}
.ls11{letter-spacing:14.704798px;}
.ls5c{letter-spacing:14.939675px;}
.lsc{letter-spacing:14.943900px;}
.ls2f{letter-spacing:15.183002px;}
.ls4c{letter-spacing:15.361200px;}
.ls23{letter-spacing:15.508200px;}
.ls5d{letter-spacing:15.616741px;}
.ls77{letter-spacing:15.657483px;}
.ls32{letter-spacing:15.663483px;}
.lsb{letter-spacing:15.840534px;}
.ls67{letter-spacing:16.024407px;}
.ls43{letter-spacing:16.077483px;}
.ls25{letter-spacing:16.139412px;}
.ls58{letter-spacing:16.360741px;}
.ls15{letter-spacing:16.440600px;}
.ls29{letter-spacing:16.441490px;}
.lsa{letter-spacing:16.916495px;}
.ls5f{letter-spacing:17.319483px;}
.ls8{letter-spacing:17.753353px;}
.ls2{letter-spacing:17.929200px;}
.ls37{letter-spacing:18.022741px;}
.ls49{letter-spacing:18.028741px;}
.ls50{letter-spacing:18.069483px;}
.ls84{letter-spacing:18.815106px;}
.ls54{letter-spacing:19.354741px;}
.ls4a{letter-spacing:21.057483px;}
.ls38{letter-spacing:25.245483px;}
.ls47{letter-spacing:36.003483px;}
.ls3{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls30{letter-spacing:94.292700px;}
.ls3e{letter-spacing:179.895483px;}
.ls20{letter-spacing:329.002934px;}
.ls2e{letter-spacing:497.590948px;}
.ls2d{letter-spacing:506.118049px;}
.ls4e{letter-spacing:636.046741px;}
.ls6e{letter-spacing:692.872407px;}
.ls44{letter-spacing:694.060741px;}
.ls5b{letter-spacing:707.987675px;}
.ls55{letter-spacing:716.476741px;}
.ls68{letter-spacing:768.711943px;}
.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;}
}
.wsd0{word-spacing:-45.088735px;}
.wsa8{word-spacing:-14.943900px;}
.ws8b{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.wse8{word-spacing:-4.483170px;}
.wsca{word-spacing:-3.347434px;}
.ws51{word-spacing:-3.048556px;}
.ws41{word-spacing:-2.809453px;}
.wsb1{word-spacing:-2.570351px;}
.wsa5{word-spacing:-2.450800px;}
.ws12d{word-spacing:-2.205734px;}
.ws78{word-spacing:-2.102003px;}
.ws7a{word-spacing:-2.092146px;}
.wse1{word-spacing:-1.912819px;}
.ws59{word-spacing:-1.853044px;}
.ws32{word-spacing:-1.733492px;}
.ws63{word-spacing:-1.673717px;}
.wsae{word-spacing:-1.613941px;}
.ws7c{word-spacing:-1.554166px;}
.ws7b{word-spacing:-1.494390px;}
.wsd2{word-spacing:-1.434614px;}
.ws38{word-spacing:-1.374839px;}
.wsde{word-spacing:-1.181170px;}
.wsb0{word-spacing:-1.135736px;}
.ws12e{word-spacing:-1.129766px;}
.ws40{word-spacing:-1.075961px;}
.wsb3{word-spacing:-1.022170px;}
.wsa9{word-spacing:-1.016185px;}
.ws47{word-spacing:-0.896634px;}
.ws77{word-spacing:-0.836858px;}
.wsb4{word-spacing:-0.806976px;}
.wscc{word-spacing:-0.717307px;}
.ws26{word-spacing:-0.657532px;}
.ws84{word-spacing:-0.597756px;}
.ws65{word-spacing:-0.537980px;}
.ws66{word-spacing:-0.478205px;}
.ws129{word-spacing:-0.430387px;}
.ws48{word-spacing:-0.418429px;}
.ws31{word-spacing:-0.358654px;}
.wsa0{word-spacing:-0.307011px;}
.ws37{word-spacing:-0.298878px;}
.ws13{word-spacing:-0.268992px;}
.ws23{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.215194px;}
.ws44{word-spacing:-0.179327px;}
.wsbc{word-spacing:-0.161395px;}
.ws35{word-spacing:-0.119551px;}
.ws17{word-spacing:-0.107597px;}
.wsfa{word-spacing:-0.071596px;}
.ws24{word-spacing:-0.059776px;}
.ws6b{word-spacing:-0.053798px;}
.wsf{word-spacing:-0.047821px;}
.wsd9{word-spacing:-0.045430px;}
.ws4{word-spacing:-0.041843px;}
.wseb{word-spacing:-0.035866px;}
.wsf4{word-spacing:-0.009644px;}
.wsdc{word-spacing:-0.009272px;}
.wsfd{word-spacing:-0.008549px;}
.wsf6{word-spacing:-0.006451px;}
.wsf2{word-spacing:-0.005533px;}
.ws73{word-spacing:-0.005318px;}
.wsd3{word-spacing:-0.004426px;}
.ws107{word-spacing:-0.003667px;}
.wsee{word-spacing:-0.002490px;}
.ws70{word-spacing:-0.001862px;}
.ws122{word-spacing:-0.001411px;}
.ws1{word-spacing:0.000000px;}
.wscf{word-spacing:0.003025px;}
.ws16{word-spacing:0.053798px;}
.ws3c{word-spacing:0.059776px;}
.ws2b{word-spacing:0.119551px;}
.ws10{word-spacing:0.143462px;}
.ws58{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws1b{word-spacing:0.215194px;}
.ws20{word-spacing:0.239102px;}
.ws103{word-spacing:0.268992px;}
.ws28{word-spacing:0.298878px;}
.ws8f{word-spacing:0.322790px;}
.ws68{word-spacing:0.358654px;}
.ws34{word-spacing:0.418429px;}
.wsfe{word-spacing:0.430387px;}
.ws36{word-spacing:0.478205px;}
.ws10e{word-spacing:0.484186px;}
.ws8a{word-spacing:0.522000px;}
.ws86{word-spacing:0.537980px;}
.wsfc{word-spacing:0.562453px;}
.ws50{word-spacing:0.562500px;}
.ws67{word-spacing:0.566700px;}
.wsac{word-spacing:0.568500px;}
.wsf5{word-spacing:0.569964px;}
.wsf7{word-spacing:0.572364px;}
.wsab{word-spacing:0.597756px;}
.ws7d{word-spacing:0.657532px;}
.wsd4{word-spacing:0.659770px;}
.ws99{word-spacing:0.660816px;}
.ws9f{word-spacing:0.663216px;}
.ws9b{word-spacing:0.667008px;}
.ws9e{word-spacing:0.668208px;}
.ws9a{word-spacing:0.670608px;}
.wsd6{word-spacing:0.687878px;}
.ws9c{word-spacing:0.688925px;}
.ws9d{word-spacing:0.691325px;}
.ws81{word-spacing:0.699379px;}
.ws85{word-spacing:0.717307px;}
.wsf0{word-spacing:0.742009px;}
.wsf8{word-spacing:0.742136px;}
.wsaf{word-spacing:0.745225px;}
.wsf3{word-spacing:0.746689px;}
.ws2d{word-spacing:0.777083px;}
.wsaa{word-spacing:0.896634px;}
.ws53{word-spacing:0.956410px;}
.ws80{word-spacing:0.968371px;}
.ws83{word-spacing:1.016185px;}
.wsc3{word-spacing:1.075961px;}
.ws90{word-spacing:1.075968px;}
.ws43{word-spacing:1.135736px;}
.wsa2{word-spacing:1.195512px;}
.wsd8{word-spacing:1.255288px;}
.ws1d{word-spacing:1.291162px;}
.ws4f{word-spacing:1.315063px;}
.ws3e{word-spacing:1.374839px;}
.ws89{word-spacing:1.434614px;}
.wsb9{word-spacing:1.494390px;}
.ws7f{word-spacing:1.554166px;}
.wsc4{word-spacing:1.613941px;}
.wsa7{word-spacing:1.673717px;}
.wsc7{word-spacing:1.733492px;}
.ws3f{word-spacing:1.793268px;}
.ws69{word-spacing:1.853044px;}
.ws55{word-spacing:1.912819px;}
.ws1c{word-spacing:1.936742px;}
.ws56{word-spacing:1.972595px;}
.ws82{word-spacing:2.032370px;}
.ws10a{word-spacing:2.044339px;}
.ws21{word-spacing:2.092146px;}
.ws39{word-spacing:2.151922px;}
.ws19{word-spacing:2.151936px;}
.ws88{word-spacing:2.211697px;}
.ws12{word-spacing:2.259533px;}
.wsa3{word-spacing:2.271473px;}
.wsb7{word-spacing:2.331248px;}
.ws5c{word-spacing:2.391024px;}
.wsa4{word-spacing:2.450800px;}
.ws30{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws6e{word-spacing:2.528525px;}
.wsce{word-spacing:2.570351px;}
.ws57{word-spacing:2.630126px;}
.ws109{word-spacing:2.636122px;}
.wsc6{word-spacing:2.689902px;}
.ws4d{word-spacing:2.809453px;}
.ws6d{word-spacing:2.851315px;}
.ws11{word-spacing:2.869236px;}
.wsfb{word-spacing:2.929004px;}
.wsa1{word-spacing:2.988780px;}
.ws12b{word-spacing:3.012710px;}
.ws52{word-spacing:3.048556px;}
.ws12c{word-spacing:3.066509px;}
.ws4c{word-spacing:3.108331px;}
.wse0{word-spacing:3.168107px;}
.ws11a{word-spacing:3.217882px;}
.ws116{word-spacing:3.222835px;}
.ws104{word-spacing:3.224832px;}
.ws108{word-spacing:3.227904px;}
.ws1a{word-spacing:3.335501px;}
.ws4a{word-spacing:3.347434px;}
.wsd1{word-spacing:3.407209px;}
.ws113{word-spacing:3.443098px;}
.ws6a{word-spacing:3.466985px;}
.wsbb{word-spacing:3.550694px;}
.wsf9{word-spacing:3.582153px;}
.ws1f{word-spacing:3.586536px;}
.ws101{word-spacing:3.604493px;}
.ws3a{word-spacing:3.706087px;}
.wscd{word-spacing:3.765863px;}
.ws5e{word-spacing:3.825638px;}
.ws6c{word-spacing:3.885414px;}
.wsba{word-spacing:3.927283px;}
.ws42{word-spacing:3.945190px;}
.wsb8{word-spacing:4.004965px;}
.ws22{word-spacing:4.184292px;}
.ws119{word-spacing:4.196275px;}
.ws11d{word-spacing:4.250074px;}
.wsa6{word-spacing:4.303843px;}
.ws5d{word-spacing:4.363619px;}
.ws8d{word-spacing:4.411469px;}
.ws5a{word-spacing:4.483170px;}
.ws27{word-spacing:4.542946px;}
.ws18{word-spacing:4.626662px;}
.ws4e{word-spacing:4.662497px;}
.wsb{word-spacing:4.770079px;}
.wsb2{word-spacing:4.782048px;}
.ws8c{word-spacing:4.788058px;}
.wsc{word-spacing:4.853765px;}
.ws87{word-spacing:4.901599px;}
.ws3b{word-spacing:4.961375px;}
.ws79{word-spacing:4.988496px;}
.ws49{word-spacing:5.021150px;}
.ws4b{word-spacing:5.080926px;}
.ws62{word-spacing:5.140702px;}
.ws5b{word-spacing:5.200477px;}
.ws11f{word-spacing:5.379840px;}
.wscb{word-spacing:5.439580px;}
.wse2{word-spacing:5.451571px;}
.ws1e{word-spacing:5.487437px;}
.ws33{word-spacing:5.499355px;}
.ws64{word-spacing:5.559131px;}
.ws3d{word-spacing:5.738458px;}
.ws7e{word-spacing:5.917784px;}
.ws14{word-spacing:5.917824px;}
.ws71{word-spacing:5.980548px;}
.ws8e{word-spacing:5.986708px;}
.ws127{word-spacing:6.133018px;}
.ws46{word-spacing:6.216662px;}
.ws115{word-spacing:6.240614px;}
.ws2c{word-spacing:6.276438px;}
.ws11c{word-spacing:6.563405px;}
.ws2e{word-spacing:6.635092px;}
.wsc8{word-spacing:6.694867px;}
.ws45{word-spacing:6.754643px;}
.wse4{word-spacing:6.905299px;}
.wsad{word-spacing:7.352399px;}
.ws9{word-spacing:7.782761px;}
.ws114{word-spacing:7.908365px;}
.ws12a{word-spacing:8.069760px;}
.wsc5{word-spacing:8.189257px;}
.ws10c{word-spacing:8.284954px;}
.ws11b{word-spacing:8.392550px;}
.wsdb{word-spacing:8.428360px;}
.ws2f{word-spacing:9.324994px;}
.ws118{word-spacing:9.522317px;}
.ws10b{word-spacing:10.383091px;}
.wsc9{word-spacing:10.759608px;}
.ws125{word-spacing:11.620454px;}
.ws7{word-spacing:12.176255px;}
.ws2{word-spacing:12.929425px;}
.ws102{word-spacing:13.384963px;}
.ws124{word-spacing:13.388851px;}
.ws126{word-spacing:13.390022px;}
.ws128{word-spacing:13.391520px;}
.ws121{word-spacing:13.391846px;}
.ws105{word-spacing:13.395802px;}
.ws120{word-spacing:13.397424px;}
.ws110{word-spacing:13.449600px;}
.ws10f{word-spacing:13.826189px;}
.ws29{word-spacing:14.776565px;}
.wsda{word-spacing:14.882983px;}
.ws54{word-spacing:14.884124px;}
.ws5{word-spacing:15.481836px;}
.wsec{word-spacing:15.952771px;}
.ws8{word-spacing:16.109478px;}
.ws123{word-spacing:16.614653px;}
.ws100{word-spacing:16.618003px;}
.ws117{word-spacing:16.620653px;}
.wsff{word-spacing:16.623706px;}
.ws106{word-spacing:16.731302px;}
.ws112{word-spacing:16.838899px;}
.ws10d{word-spacing:16.946496px;}
.ws111{word-spacing:17.054093px;}
.ws11e{word-spacing:17.645875px;}
.wsdd{word-spacing:17.881884px;}
.wsdf{word-spacing:17.883905px;}
.wsf1{word-spacing:17.887884px;}
.wsef{word-spacing:17.888798px;}
.wsd7{word-spacing:18.470660px;}
.wse9{word-spacing:19.367294px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.wsd{word-spacing:40.068708px;}
.wse7{word-spacing:44.866870px;}
.wsea{word-spacing:44.872870px;}
.wse3{word-spacing:70.097974px;}
.wse6{word-spacing:85.410760px;}
.wse5{word-spacing:92.586760px;}
.ws91{word-spacing:181.458067px;}
.ws98{word-spacing:188.348198px;}
.ws72{word-spacing:215.193600px;}
.ws61{word-spacing:229.181184px;}
.ws74{word-spacing:238.317528px;}
.ws75{word-spacing:242.092800px;}
.ws60{word-spacing:249.355584px;}
.ws5f{word-spacing:251.884109px;}
.ws94{word-spacing:264.725651px;}
.ws93{word-spacing:265.397651px;}
.ws6f{word-spacing:267.485645px;}
.ws95{word-spacing:276.353651px;}
.ws92{word-spacing:277.741849px;}
.ws96{word-spacing:288.662248px;}
.ws97{word-spacing:306.812275px;}
.wsb6{word-spacing:325.641715px;}
.wsb5{word-spacing:339.091315px;}
.ws76{word-spacing:386.392230px;}
.wsbd{word-spacing:396.114067px;}
.wsc2{word-spacing:401.013274px;}
.wsbf{word-spacing:414.516672px;}
.wsc0{word-spacing:427.912474px;}
.wsc1{word-spacing:427.966272px;}
.wsbe{word-spacing:434.368282px;}
.wsd5{word-spacing:608.621299px;}
.wsed{word-spacing:824.598624px;}
._6{margin-left:-35.544868px;}
._52{margin-left:-20.438640px;}
._7{margin-left:-9.898906px;}
._8{margin-left:-7.711052px;}
._b{margin-left:-6.636684px;}
._0{margin-left:-5.397721px;}
._1{margin-left:-3.849538px;}
._53{margin-left:-2.709005px;}
._5{margin-left:-1.506341px;}
._4d{width:1.908043px;}
._9{width:2.949468px;}
._50{width:4.259184px;}
._4e{width:5.666299px;}
._51{width:7.445033px;}
._3{width:10.460700px;}
._16{width:11.955150px;}
._2{width:12.973175px;}
._37{width:13.987490px;}
._c{width:15.135199px;}
._e{width:16.408512px;}
._15{width:18.231558px;}
._f{width:19.367665px;}
._11{width:20.389594px;}
._13{width:22.272538px;}
._10{width:23.617498px;}
._14{width:25.285079px;}
._12{width:27.168192px;}
._1a{width:28.644463px;}
._4{width:30.587087px;}
._1b{width:32.338600px;}
._d{width:34.000589px;}
._19{width:35.458882px;}
._49{width:39.093242px;}
._54{width:41.765440px;}
._4f{width:43.899190px;}
._a{width:54.538476px;}
._55{width:61.868160px;}
._1e{width:108.922109px;}
._39{width:170.218138px;}
._38{width:197.117338px;}
._36{width:235.475597px;}
._23{width:242.576986px;}
._27{width:243.599155px;}
._34{width:248.978995px;}
._1f{width:250.861939px;}
._2f{width:256.110235px;}
._22{width:260.491853px;}
._25{width:262.751386px;}
._28{width:264.472934px;}
._30{width:270.635803px;}
._2a{width:273.511066px;}
._24{width:277.007962px;}
._31{width:285.239117px;}
._2b{width:286.965984px;}
._20{width:289.112602px;}
._3a{width:291.634686px;}
._21{width:295.084224px;}
._41{width:304.714138px;}
._3f{width:307.107302px;}
._32{width:316.173197px;}
._3c{width:318.163738px;}
._2e{width:321.271027px;}
._40{width:322.360013px;}
._33{width:325.211328px;}
._29{width:327.706685px;}
._35{width:332.689306px;}
._3b{width:335.809613px;}
._3d{width:352.056730px;}
._3e{width:353.401690px;}
._1c{width:378.686938px;}
._4a{width:438.945571px;}
._43{width:447.094555px;}
._48{width:448.302067px;}
._44{width:454.811674px;}
._45{width:466.001741px;}
._46{width:468.261274px;}
._47{width:482.464051px;}
._42{width:509.632243px;}
._4b{width:619.811366px;}
._1d{width:623.730994px;}
._4c{width:636.273677px;}
._2c{width:678.416774px;}
._17{width:874.109771px;}
._26{width:982.143590px;}
._2d{width:2380.483511px;}
._18{width:2404.393511px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(53,30,58);}
.fc3{color:rgb(90,40,100);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(72,62,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fse{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fsa{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs1{font-size:52.914960px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fs2{font-size:56.694600px;}
.fs4{font-size:59.775600px;}
.fsc{font-size:62.286600px;}
.fs3{font-size:68.033520px;}
.fs5{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y1a{bottom:9.473101px;}
.y19{bottom:28.937869px;}
.y4f{bottom:31.890000px;}
.y18{bottom:32.769195px;}
.y179{bottom:91.665000px;}
.y2ac{bottom:93.834000px;}
.y22c{bottom:96.882000px;}
.y111{bottom:98.923500px;}
.yf7{bottom:100.326000px;}
.y110{bottom:101.653500px;}
.y205{bottom:101.716500px;}
.y4e{bottom:103.621500px;}
.y16{bottom:104.646000px;}
.y8c{bottom:107.641500px;}
.y178{bottom:110.494500px;}
.y2aa{bottom:111.093000px;}
.y2ab{bottom:111.094500px;}
.y22b{bottom:115.711500px;}
.ya1{bottom:117.339000px;}
.y204{bottom:118.305000px;}
.yf5{bottom:119.155500px;}
.y286{bottom:120.090000px;}
.y10f{bottom:120.483000px;}
.y203{bottom:120.546000px;}
.y128{bottom:121.536000px;}
.y2df{bottom:121.762500px;}
.y4d{bottom:122.449500px;}
.y15{bottom:122.535000px;}
.yf6{bottom:124.581000px;}
.y8b{bottom:126.471000px;}
.y2a9{bottom:128.353500px;}
.y177{bottom:129.324000px;}
.y122{bottom:131.998500px;}
.y22a{bottom:134.541000px;}
.ya0{bottom:136.168500px;}
.yf4{bottom:137.985000px;}
.y285{bottom:138.919500px;}
.y2de{bottom:139.023000px;}
.y10e{bottom:139.312500px;}
.y202{bottom:139.375500px;}
.y14{bottom:140.422500px;}
.y254{bottom:140.601000px;}
.y127{bottom:140.769000px;}
.y4b{bottom:141.279000px;}
.y8a{bottom:145.300500px;}
.y2a8{bottom:145.614000px;}
.y4c{bottom:146.704500px;}
.y176{bottom:148.153500px;}
.y197{bottom:150.724500px;}
.y121{bottom:151.231500px;}
.y229{bottom:153.370500px;}
.yf3{bottom:154.084500px;}
.y9f{bottom:154.998000px;}
.y10d{bottom:155.412000px;}
.y2dd{bottom:156.283500px;}
.y253{bottom:156.366000px;}
.yf2{bottom:156.814500px;}
.y10c{bottom:158.140500px;}
.y201{bottom:158.205000px;}
.y13{bottom:158.310000px;}
.y284{bottom:159.357000px;}
.y252{bottom:159.430500px;}
.y126{bottom:160.002000px;}
.y4a{bottom:160.108500px;}
.y2a7{bottom:162.874500px;}
.y89{bottom:164.130000px;}
.y174{bottom:166.983000px;}
.y196{bottom:169.554000px;}
.y120{bottom:170.463000px;}
.y227{bottom:172.200000px;}
.y175{bottom:172.408500px;}
.y2dc{bottom:173.544000px;}
.y9e{bottom:173.827500px;}
.y133{bottom:174.586500px;}
.yf1{bottom:175.644000px;}
.y12{bottom:176.199000px;}
.y10b{bottom:176.970000px;}
.y200{bottom:177.034500px;}
.y228{bottom:177.624000px;}
.y283{bottom:178.186500px;}
.y251{bottom:178.260000px;}
.y49{bottom:178.938000px;}
.y2a6{bottom:180.135000px;}
.y88{bottom:182.959500px;}
.y1c2{bottom:183.166500px;}
.yc3{bottom:184.431000px;}
.y172{bottom:185.812500px;}
.y2db{bottom:190.804500px;}
.y226{bottom:191.029500px;}
.y173{bottom:191.238000px;}
.y9d{bottom:192.657000px;}
.y132{bottom:193.819500px;}
.y11{bottom:194.086500px;}
.yef{bottom:194.473500px;}
.y10a{bottom:195.799500px;}
.y1ff{bottom:195.864000px;}
.y282{bottom:197.016000px;}
.y250{bottom:197.089500px;}
.y2a5{bottom:197.395500px;}
.y48{bottom:197.767500px;}
.yf0{bottom:199.897500px;}
.y87{bottom:201.789000px;}
.y171{bottom:201.912000px;}
.y1c1{bottom:201.996000px;}
.yc2{bottom:203.260500px;}
.y170{bottom:204.642000px;}
.y195{bottom:207.213000px;}
.y2da{bottom:208.065000px;}
.y225{bottom:209.857500px;}
.y9c{bottom:211.486500px;}
.y10{bottom:211.974000px;}
.y109{bottom:214.629000px;}
.y2a4{bottom:214.656000px;}
.y1fe{bottom:214.693500px;}
.y24f{bottom:215.919000px;}
.y47{bottom:216.597000px;}
.yee{bottom:217.786500px;}
.y281{bottom:220.329000px;}
.y86{bottom:220.618500px;}
.y1c0{bottom:220.824000px;}
.yc1{bottom:222.090000px;}
.y16e{bottom:223.471500px;}
.y2d9{bottom:225.325500px;}
.y224{bottom:228.687000px;}
.y16f{bottom:228.897000px;}
.yf{bottom:229.863000px;}
.y9a{bottom:230.316000px;}
.y108{bottom:230.728500px;}
.y107{bottom:233.458500px;}
.y1fd{bottom:233.523000px;}
.y24e{bottom:234.748500px;}
.y46{bottom:235.426500px;}
.y9b{bottom:235.740000px;}
.y2a3{bottom:236.398500px;}
.y280{bottom:239.158500px;}
.y85{bottom:239.446500px;}
.y16c{bottom:239.571000px;}
.y1bf{bottom:239.653500px;}
.yc0{bottom:240.919500px;}
.y16b{bottom:242.301000px;}
.y2d8{bottom:242.586000px;}
.y223{bottom:247.516500px;}
.y16d{bottom:247.726500px;}
.yed{bottom:248.214000px;}
.y1fc{bottom:252.352500px;}
.y45{bottom:254.256000px;}
.y1e5{bottom:256.854000px;}
.y27f{bottom:257.988000px;}
.y83{bottom:258.276000px;}
.y1be{bottom:258.483000px;}
.ybf{bottom:259.749000px;}
.y2d7{bottom:259.846500px;}
.y16a{bottom:261.130500px;}
.y84{bottom:263.701500px;}
.y99{bottom:263.881500px;}
.y222{bottom:266.346000px;}
.y24d{bottom:266.803500px;}
.yeb{bottom:267.447000px;}
.y2a2{bottom:270.022500px;}
.y1fa{bottom:271.182000px;}
.yec{bottom:272.328000px;}
.y44{bottom:273.085500px;}
.y1fb{bottom:276.606000px;}
.y27e{bottom:276.817500px;}
.y24c{bottom:277.054500px;}
.y82{bottom:277.105500px;}
.y1bd{bottom:277.312500px;}
.ybe{bottom:278.578500px;}
.y106{bottom:278.920500px;}
.y169{bottom:279.960000px;}
.y1e4{bottom:280.494000px;}
.y97{bottom:283.114500px;}
.y221{bottom:285.175500px;}
.ye9{bottom:286.680000px;}
.y98{bottom:287.997000px;}
.y1f8{bottom:290.011500px;}
.yea{bottom:291.561000px;}
.y2d6{bottom:294.366000px;}
.y1f9{bottom:295.435500px;}
.y80{bottom:295.935000px;}
.y105{bottom:295.984500px;}
.y1bc{bottom:296.142000px;}
.y43{bottom:296.398500px;}
.y2a1{bottom:296.563500px;}
.ybd{bottom:297.408000px;}
.y168{bottom:298.789500px;}
.ye{bottom:299.892000px;}
.y27d{bottom:300.130500px;}
.y81{bottom:301.360500px;}
.y220{bottom:304.005000px;}
.y1e3{bottom:304.135500px;}
.y1f7{bottom:308.841000px;}
.y2d5{bottom:311.626500px;}
.y104{bottom:312.423000px;}
.y2a0{bottom:314.137500px;}
.y167{bottom:314.542500px;}
.y7f{bottom:314.764500px;}
.y1bb{bottom:314.971500px;}
.ybc{bottom:316.237500px;}
.y166{bottom:317.619000px;}
.yd{bottom:317.779500px;}
.y24b{bottom:320.101500px;}
.y21f{bottom:322.834500px;}
.y1f5{bottom:327.670500px;}
.y1e2{bottom:327.775500px;}
.y103{bottom:328.860000px;}
.y2d4{bottom:328.887000px;}
.ybb{bottom:332.337000px;}
.y1f6{bottom:333.094500px;}
.y165{bottom:333.372000px;}
.y7d{bottom:333.594000px;}
.y27c{bottom:333.754500px;}
.y1ba{bottom:333.801000px;}
.yba{bottom:335.067000px;}
.yc{bottom:335.667000px;}
.y164{bottom:336.448500px;}
.y24a{bottom:338.931000px;}
.y7e{bottom:339.019500px;}
.y29f{bottom:340.678500px;}
.y21e{bottom:341.664000px;}
.y102{bottom:345.298500px;}
.y2d3{bottom:346.147500px;}
.y1f4{bottom:350.983500px;}
.y1e1{bottom:351.417000px;}
.y7c{bottom:352.423500px;}
.y27a{bottom:352.584000px;}
.y1b9{bottom:352.630500px;}
.yb{bottom:353.556000px;}
.yb9{bottom:353.895000px;}
.y163{bottom:355.278000px;}
.y249{bottom:357.760500px;}
.y27b{bottom:358.008000px;}
.y29e{bottom:358.252500px;}
.y21d{bottom:360.493500px;}
.y101{bottom:361.737000px;}
.y2d2{bottom:363.408000px;}
.y161{bottom:371.031000px;}
.y7b{bottom:371.253000px;}
.y279{bottom:371.413500px;}
.y1b8{bottom:371.460000px;}
.y42{bottom:371.548500px;}
.yb8{bottom:372.724500px;}
.y160{bottom:374.107500px;}
.y1e0{bottom:375.057000px;}
.y248{bottom:376.590000px;}
.y21b{bottom:379.323000px;}
.y162{bottom:379.531500px;}
.y2d1{bottom:380.668500px;}
.ya{bottom:381.904500px;}
.y1f3{bottom:384.607500px;}
.y21c{bottom:384.748500px;}
.y29d{bottom:384.793500px;}
.y100{bottom:385.378500px;}
.y7a{bottom:390.082500px;}
.y278{bottom:390.243000px;}
.y1b7{bottom:390.289500px;}
.y41{bottom:391.005000px;}
.yb6{bottom:391.554000px;}
.y15e{bottom:392.937000px;}
.y247{bottom:395.419500px;}
.yb7{bottom:396.979500px;}
.y2d0{bottom:397.929000px;}
.y21a{bottom:398.152500px;}
.y15f{bottom:398.361000px;}
.y1df{bottom:398.698500px;}
.y9{bottom:399.792000px;}
.y1f2{bottom:403.437000px;}
.y79{bottom:408.912000px;}
.yff{bottom:409.018500px;}
.y276{bottom:409.072500px;}
.y1b6{bottom:409.119000px;}
.yb5{bottom:410.383500px;}
.y29c{bottom:411.333000px;}
.y15d{bottom:411.766500px;}
.y246{bottom:414.249000px;}
.y194{bottom:414.337500px;}
.y277{bottom:414.496500px;}
.y2cf{bottom:415.188000px;}
.y219{bottom:416.982000px;}
.y1f0{bottom:422.266500px;}
.y1de{bottom:422.338500px;}
.y8{bottom:426.646500px;}
.y1f1{bottom:427.690500px;}
.y78{bottom:427.741500px;}
.y275{bottom:427.902000px;}
.y1b5{bottom:427.948500px;}
.y40{bottom:428.395500px;}
.yb4{bottom:429.213000px;}
.y15c{bottom:430.596000px;}
.y2ce{bottom:432.448500px;}
.y245{bottom:433.078500px;}
.y193{bottom:433.167000px;}
.y218{bottom:435.811500px;}
.y29b{bottom:437.874000px;}
.yfe{bottom:440.638500px;}
.y1ef{bottom:441.094500px;}
.y7{bottom:444.534000px;}
.y1dd{bottom:445.980000px;}
.y77{bottom:446.571000px;}
.y274{bottom:446.731500px;}
.y1b4{bottom:446.778000px;}
.y3f{bottom:447.852000px;}
.yb3{bottom:448.042500px;}
.y15b{bottom:449.425500px;}
.y2cd{bottom:449.709000px;}
.y244{bottom:451.908000px;}
.y192{bottom:451.996500px;}
.y217{bottom:454.641000px;}
.y29a{bottom:455.448000px;}
.yfc{bottom:459.871500px;}
.y1ee{bottom:459.924000px;}
.y6{bottom:462.423000px;}
.y76{bottom:462.670500px;}
.yfd{bottom:464.754000px;}
.y75{bottom:465.400500px;}
.y1b3{bottom:465.607500px;}
.yb2{bottom:466.872000px;}
.y2cc{bottom:466.969500px;}
.y3d{bottom:467.310000px;}
.y159{bottom:468.255000px;}
.y1dc{bottom:469.620000px;}
.y273{bottom:470.043000px;}
.y191{bottom:470.824500px;}
.y3e{bottom:472.191000px;}
.y216{bottom:473.470500px;}
.y15a{bottom:473.679000px;}
.y243{bottom:475.219500px;}
.y1ed{bottom:478.753500px;}
.y2e3{bottom:479.671500px;}
.y5{bottom:480.310500px;}
.y299{bottom:481.989000px;}
.y74{bottom:484.230000px;}
.y1b2{bottom:484.437000px;}
.yb1{bottom:485.701500px;}
.y3c{bottom:486.766500px;}
.y158{bottom:487.084500px;}
.y242{bottom:490.911000px;}
.y1db{bottom:493.261500px;}
.y215{bottom:496.783500px;}
.y2e2{bottom:496.932000px;}
.y1eb{bottom:497.583000px;}
.y4{bottom:498.198000px;}
.yfb{bottom:498.531000px;}
.y298{bottom:499.563000px;}
.y2cb{bottom:501.490500px;}
.y1ec{bottom:503.008500px;}
.y73{bottom:503.059500px;}
.y1b1{bottom:503.266500px;}
.y272{bottom:503.667000px;}
.yaf{bottom:504.531000px;}
.y156{bottom:505.914000px;}
.y3b{bottom:506.223000px;}
.ye8{bottom:509.488500px;}
.yb0{bottom:509.956500px;}
.y157{bottom:511.338000px;}
.y2e1{bottom:514.192500px;}
.y214{bottom:515.613000px;}
.y3{bottom:516.087000px;}
.y1ea{bottom:516.412500px;}
.y1da{bottom:516.901500px;}
.y297{bottom:517.137000px;}
.yf9{bottom:517.764000px;}
.y2ca{bottom:518.751000px;}
.y72{bottom:519.159000px;}
.y18f{bottom:519.648000px;}
.y71{bottom:521.889000px;}
.y271{bottom:522.496500px;}
.yfa{bottom:522.646500px;}
.y241{bottom:524.535000px;}
.y155{bottom:524.743500px;}
.y39{bottom:525.681000px;}
.y1b0{bottom:526.579500px;}
.y190{bottom:527.313000px;}
.ye7{bottom:528.318000px;}
.y3a{bottom:530.563500px;}
.y2{bottom:533.974500px;}
.y213{bottom:534.442500px;}
.y296{bottom:534.711000px;}
.y1e9{bottom:535.242000px;}
.y2c9{bottom:536.011500px;}
.yae{bottom:538.096500px;}
.y18e{bottom:538.477500px;}
.y153{bottom:540.496500px;}
.y1d9{bottom:540.543000px;}
.y70{bottom:540.718500px;}
.y270{bottom:541.326000px;}
.y152{bottom:543.573000px;}
.y37{bottom:545.137500px;}
.ye6{bottom:547.147500px;}
.y154{bottom:548.997000px;}
.y38{bottom:550.020000px;}
.y1{bottom:551.862000px;}
.y295{bottom:552.285000px;}
.y212{bottom:553.272000px;}
.y1e7{bottom:554.071500px;}
.y240{bottom:555.330000px;}
.yac{bottom:557.329500px;}
.y1e8{bottom:559.497000px;}
.y6f{bottom:559.548000px;}
.y26f{bottom:560.155500px;}
.yad{bottom:562.212000px;}
.y150{bottom:562.401000px;}
.y1af{bottom:563.574000px;}
.y1d8{bottom:564.183000px;}
.y36{bottom:564.595500px;}
.y23f{bottom:565.582500px;}
.ye5{bottom:565.977000px;}
.y151{bottom:567.826500px;}
.y2c8{bottom:570.531000px;}
.y211{bottom:572.101500px;}
.y18d{bottom:575.647500px;}
.yaa{bottom:576.562500px;}
.y131{bottom:577.929000px;}
.y6e{bottom:578.377500px;}
.yab{bottom:581.445000px;}
.y1ae{bottom:582.418500px;}
.y35{bottom:584.052000px;}
.ye4{bottom:584.806500px;}
.y1e6{bottom:587.637000px;}
.y294{bottom:587.791500px;}
.y1d7{bottom:587.824500px;}
.y26d{bottom:588.400500px;}
.y210{bottom:590.931000px;}
.y26e{bottom:593.535000px;}
.y12f{bottom:596.758500px;}
.y6d{bottom:597.207000px;}
.y1ad{bottom:598.857000px;}
.y130{bottom:602.182500px;}
.y34{bottom:603.508500px;}
.ye3{bottom:603.636000px;}
.y2c7{bottom:605.052000px;}
.y23e{bottom:606.864000px;}
.y14f{bottom:608.479500px;}
.y293{bottom:611.104500px;}
.y1d6{bottom:611.464500px;}
.y26c{bottom:613.182000px;}
.y18c{bottom:613.306500px;}
.y20f{bottom:614.242500px;}
.y1ac{bottom:615.294000px;}
.y12d{bottom:615.588000px;}
.y6c{bottom:616.036500px;}
.ye1{bottom:620.223000px;}
.y12e{bottom:621.012000px;}
.y2c6{bottom:622.312500px;}
.ye0{bottom:622.465500px;}
.y32{bottom:622.966500px;}
.y14e{bottom:624.918000px;}
.y23d{bottom:625.693500px;}
.y33{bottom:627.847500px;}
.ye2{bottom:627.889500px;}
.y292{bottom:629.934000px;}
.y20e{bottom:630.342000px;}
.y1ab{bottom:631.732500px;}
.y18b{bottom:632.136000px;}
.y20d{bottom:633.072000px;}
.y12c{bottom:634.417500px;}
.y6a{bottom:634.866000px;}
.y1d5{bottom:635.106000px;}
.y2c5{bottom:639.573000px;}
.y6b{bottom:640.290000px;}
.yde{bottom:641.295000px;}
.y14d{bottom:641.356500px;}
.y31{bottom:642.423000px;}
.y23c{bottom:644.523000px;}
.ydf{bottom:646.719000px;}
.y26b{bottom:647.701500px;}
.y1aa{bottom:648.171000px;}
.y291{bottom:648.763500px;}
.y20b{bottom:651.901500px;}
.y11f{bottom:653.247000px;}
.y69{bottom:653.695500px;}
.y2c4{bottom:656.833500px;}
.y20c{bottom:657.327000px;}
.y12b{bottom:657.730500px;}
.y14c{bottom:657.795000px;}
.y1d4{bottom:658.746000px;}
.ydd{bottom:660.124500px;}
.y30{bottom:661.879500px;}
.y23b{bottom:663.352500px;}
.y1a9{bottom:664.609500px;}
.y290{bottom:667.593000px;}
.y189{bottom:669.795000px;}
.y209{bottom:670.731000px;}
.y11e{bottom:672.076500px;}
.y68{bottom:672.525000px;}
.y2c3{bottom:674.094000px;}
.y14b{bottom:674.233500px;}
.y20a{bottom:676.156500px;}
.y18a{bottom:677.949000px;}
.ydc{bottom:678.954000px;}
.y1a8{bottom:681.048000px;}
.y2e{bottom:681.337500px;}
.y23a{bottom:682.182000px;}
.y1d3{bottom:682.387500px;}
.y26a{bottom:684.154500px;}
.y2f{bottom:686.220000px;}
.y28f{bottom:686.422500px;}
.y208{bottom:689.560500px;}
.y11d{bottom:690.906000px;}
.y67{bottom:691.354500px;}
.y1a7{bottom:697.486500px;}
.ydb{bottom:697.783500px;}
.y14a{bottom:697.873500px;}
.y269{bottom:699.919500px;}
.y2d{bottom:700.794000px;}
.y239{bottom:701.011500px;}
.y268{bottom:702.984000px;}
.y28e{bottom:705.252000px;}
.y1d2{bottom:706.027500px;}
.y2c2{bottom:708.613500px;}
.y11c{bottom:709.735500px;}
.y66{bottom:710.184000px;}
.y207{bottom:712.873500px;}
.y1a6{bottom:713.925000px;}
.yda{bottom:716.613000px;}
.y2c{bottom:720.252000px;}
.y149{bottom:721.515000px;}
.y28d{bottom:724.081500px;}
.y238{bottom:724.324500px;}
.y2c1{bottom:725.874000px;}
.y11b{bottom:728.565000px;}
.y65{bottom:729.013500px;}
.y1d1{bottom:729.667500px;}
.y1a5{bottom:730.363500px;}
.y206{bottom:733.047000px;}
.y12a{bottom:734.437500px;}
.yd9{bottom:735.442500px;}
.y267{bottom:737.505000px;}
.y148{bottom:737.952000px;}
.y2b{bottom:739.708500px;}
.y2c0{bottom:743.134500px;}
.y237{bottom:744.499500px;}
.y188{bottom:745.113000px;}
.y1a4{bottom:746.802000px;}
.y11a{bottom:747.394500px;}
.y64{bottom:747.841500px;}
.y125{bottom:747.843000px;}
.y1d0{bottom:753.309000px;}
.yd8{bottom:754.270500px;}
.y147{bottom:754.390500px;}
.y2a{bottom:759.165000px;}
.y2bf{bottom:760.395000px;}
.y1a3{bottom:763.240500px;}
.y187{bottom:763.942500px;}
.y118{bottom:766.224000px;}
.y63{bottom:766.671000px;}
.y266{bottom:769.852500px;}
.y146{bottom:770.829000px;}
.y119{bottom:771.648000px;}
.y129{bottom:772.096500px;}
.yd7{bottom:773.100000px;}
.y265{bottom:775.371000px;}
.y1cf{bottom:776.949000px;}
.y2be{bottom:777.655500px;}
.y29{bottom:778.623000px;}
.y236{bottom:781.494000px;}
.y96{bottom:785.053500px;}
.y62{bottom:785.500500px;}
.y1a2{bottom:786.880500px;}
.y145{bottom:787.267500px;}
.y186{bottom:790.926000px;}
.yd6{bottom:791.929500px;}
.y2bd{bottom:794.916000px;}
.y264{bottom:797.628000px;}
.y28{bottom:798.079500px;}
.y235{bottom:800.338500px;}
.y1ce{bottom:800.590500px;}
.y94{bottom:803.883000px;}
.y61{bottom:804.330000px;}
.y95{bottom:809.307000px;}
.y1a1{bottom:810.522000px;}
.yd5{bottom:810.759000px;}
.y144{bottom:810.909000px;}
.y2bc{bottom:812.176500px;}
.y234{bottom:816.775500px;}
.y27{bottom:817.536000px;}
.y93{bottom:822.712500px;}
.y60{bottom:823.159500px;}
.y1cd{bottom:824.230500px;}
.y263{bottom:826.630500px;}
.y117{bottom:828.136500px;}
.y2bb{bottom:829.437000px;}
.yd3{bottom:829.588500px;}
.y262{bottom:832.149000px;}
.y233{bottom:833.214000px;}
.y143{bottom:834.549000px;}
.yd4{bottom:835.014000px;}
.y185{bottom:839.259000px;}
.y92{bottom:841.540500px;}
.y5f{bottom:841.989000px;}
.y1a0{bottom:842.140500px;}
.y2ba{bottom:846.697500px;}
.y1cc{bottom:847.872000px;}
.yd1{bottom:848.418000px;}
.y232{bottom:849.652500px;}
.y142{bottom:850.987500px;}
.y26{bottom:853.662000px;}
.yd2{bottom:853.843500px;}
.y184{bottom:858.088500px;}
.y90{bottom:860.370000px;}
.y5e{bottom:860.818500px;}
.y19e{bottom:861.373500px;}
.y2b9{bottom:863.956500px;}
.y91{bottom:865.795500px;}
.y231{bottom:866.091000px;}
.y124{bottom:866.244000px;}
.y19f{bottom:866.256000px;}
.y141{bottom:867.426000px;}
.y25{bottom:869.802000px;}
.y261{bottom:870.097500px;}
.y1cb{bottom:871.512000px;}
.y8f{bottom:879.199500px;}
.y5d{bottom:879.648000px;}
.y2b8{bottom:881.217000px;}
.y140{bottom:883.864500px;}
.y230{bottom:889.732500px;}
.y24{bottom:890.281500px;}
.yd0{bottom:893.880000px;}
.y1ca{bottom:895.153500px;}
.y183{bottom:895.747500px;}
.y8e{bottom:898.029000px;}
.y25f{bottom:898.237500px;}
.y5c{bottom:898.477500px;}
.y13f{bottom:900.303000px;}
.y23{bottom:902.082000px;}
.y260{bottom:902.970000px;}
.y22{bottom:906.421500px;}
.ycf{bottom:910.318500px;}
.y25e{bottom:914.424000px;}
.y182{bottom:914.577000px;}
.y2b7{bottom:915.738000px;}
.y115{bottom:916.858500px;}
.y5b{bottom:917.307000px;}
.y21{bottom:918.220500px;}
.y1c9{bottom:918.793500px;}
.y25d{bottom:919.942500px;}
.y8d{bottom:921.342000px;}
.y22f{bottom:921.351000px;}
.y116{bottom:922.284000px;}
.y19d{bottom:922.732500px;}
.y13e{bottom:923.943000px;}
.yce{bottom:926.757000px;}
.y2b6{bottom:932.998500px;}
.y114{bottom:935.688000px;}
.y5a{bottom:936.136500px;}
.y20{bottom:938.700000px;}
.y28c{bottom:940.171500px;}
.y22e{bottom:940.584000px;}
.y19c{bottom:941.562000px;}
.y1c8{bottom:942.435000px;}
.ycd{bottom:943.195500px;}
.y13d{bottom:947.584500px;}
.y2b5{bottom:950.259000px;}
.y181{bottom:952.236000px;}
.y113{bottom:954.517500px;}
.y1f{bottom:954.840000px;}
.y59{bottom:954.966000px;}
.y25c{bottom:957.892500px;}
.ycc{bottom:959.634000px;}
.y19b{bottom:960.391500px;}
.y1c7{bottom:966.075000px;}
.y2b4{bottom:967.519500px;}
.ya9{bottom:969.312000px;}
.y180{bottom:971.065500px;}
.y58{bottom:973.795500px;}
.y25b{bottom:973.992000px;}
.ycb{bottom:976.072500px;}
.y13c{bottom:976.107000px;}
.y25a{bottom:976.722000px;}
.y112{bottom:977.830500px;}
.y19a{bottom:979.219500px;}
.y2b3{bottom:984.780000px;}
.ya8{bottom:988.141500px;}
.y1c6{bottom:989.716500px;}
.y57{bottom:992.625000px;}
.y13b{bottom:995.542500px;}
.y259{bottom:995.551500px;}
.y1e{bottom:997.057500px;}
.y199{bottom:998.049000px;}
.yc9{bottom:999.712500px;}
.y2e0{bottom:1002.039000px;}
.y2b2{bottom:1002.040500px;}
.ya7{bottom:1006.971000px;}
.yca{bottom:1007.932500px;}
.y17e{bottom:1008.724500px;}
.y56{bottom:1011.454500px;}
.y1c5{bottom:1013.356500px;}
.yc8{bottom:1016.151000px;}
.y17f{bottom:1016.878500px;}
.y2b1{bottom:1019.299500px;}
.ya6{bottom:1025.800500px;}
.y258{bottom:1026.571500px;}
.y13a{bottom:1030.152000px;}
.y55{bottom:1030.284000px;}
.yc7{bottom:1032.589500px;}
.y17d{bottom:1035.708000px;}
.y2b0{bottom:1036.560000px;}
.y1d{bottom:1036.975500px;}
.y1c4{bottom:1036.998000px;}
.ya5{bottom:1044.630000px;}
.y17b{bottom:1046.383500px;}
.y28b{bottom:1046.872500px;}
.y257{bottom:1046.940000px;}
.y139{bottom:1047.367500px;}
.y54{bottom:1049.113500px;}
.y138{bottom:1049.383500px;}
.y2af{bottom:1053.820500px;}
.y17c{bottom:1054.537500px;}
.yc6{bottom:1056.231000px;}
.ya4{bottom:1063.459500px;}
.yf8{bottom:1064.866500px;}
.y289{bottom:1065.207000px;}
.y28a{bottom:1065.213000px;}
.y1c{bottom:1065.220500px;}
.y136{bottom:1065.994500px;}
.y137{bottom:1066.599000px;}
.y53{bottom:1067.943000px;}
.y135{bottom:1068.616500px;}
.y2ae{bottom:1071.081000px;}
.y198{bottom:1073.367000px;}
.y256{bottom:1077.925500px;}
.ya2{bottom:1082.289000px;}
.y287{bottom:1083.696000px;}
.y288{bottom:1084.036500px;}
.y1c3{bottom:1085.832000px;}
.y52{bottom:1086.772500px;}
.ya3{bottom:1087.713000px;}
.yc5{bottom:1087.849500px;}
.y2ad{bottom:1088.341500px;}
.y255{bottom:1089.243000px;}
.y22d{bottom:1092.196500px;}
.y1b{bottom:1093.464000px;}
.y17a{bottom:1102.872000px;}
.y51{bottom:1105.602000px;}
.yc4{bottom:1107.082500px;}
.y123{bottom:1111.026000px;}
.y134{bottom:1111.965000px;}
.y17{bottom:1136.952000px;}
.y50{bottom:1168.366500px;}
.h3b{height:22.978637px;}
.h17{height:25.339046px;}
.hb{height:26.110157px;}
.h22{height:26.576410px;}
.h15{height:28.154308px;}
.hf{height:29.037733px;}
.h1c{height:29.529146px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h14{height:31.526842px;}
.h12{height:33.072749px;}
.h2d{height:33.299897px;}
.h39{height:34.410749px;}
.hc{height:34.813397px;}
.h13{height:35.052500px;}
.h5{height:35.876343px;}
.h1a{height:36.905702px;}
.h27{height:37.334628px;}
.h23{height:37.658880px;}
.hd{height:38.734848px;}
.he{height:39.165235px;}
.h6{height:39.402747px;}
.h1d{height:39.434227px;}
.h26{height:41.482876px;}
.h24{height:41.842920px;}
.h28{height:42.247486px;}
.h2e{height:42.777485px;}
.h10{height:43.038432px;}
.h11{height:43.516637px;}
.h8{height:43.815515px;}
.h7{height:46.126727px;}
.h19{height:48.561733px;}
.h18{height:48.567733px;}
.h20{height:49.991558px;}
.h4{height:50.931027px;}
.h21{height:52.402876px;}
.h16{height:53.222842px;}
.h25{height:53.228842px;}
.ha{height:54.405312px;}
.h3c{height:54.768749px;}
.h29{height:54.774749px;}
.h30{height:54.995897px;}
.h38{height:60.193200px;}
.h36{height:66.419897px;}
.h32{height:66.425897px;}
.h37{height:68.158950px;}
.h34{height:68.164950px;}
.h35{height:68.788950px;}
.h1b{height:71.614848px;}
.h1f{height:72.039235px;}
.h1e{height:72.045235px;}
.h2f{height:76.715897px;}
.h9{height:77.469696px;}
.h2c{height:84.520637px;}
.h2a{height:86.554950px;}
.h2b{height:86.560950px;}
.h3a{height:91.844700px;}
.h31{height:98.993897px;}
.h33{height:107.429897px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x3{left:60.027581px;}
.xa1{left:67.885500px;}
.x115{left:85.848000px;}
.xa4{left:90.292500px;}
.xa5{left:94.414500px;}
.xa3{left:170.115000px;}
.x2{left:181.274369px;}
.xa2{left:192.879000px;}
.x11a{left:238.488000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x104{left:251.526000px;}
.x80{left:257.085000px;}
.xaf{left:258.223500px;}
.xc8{left:260.065500px;}
.x119{left:261.747000px;}
.x105{left:263.389500px;}
.xec{left:264.532500px;}
.x100{left:265.998000px;}
.x63{left:268.518000px;}
.x5{left:269.914500px;}
.x84{left:271.240500px;}
.xc9{left:272.253000px;}
.x94{left:276.162000px;}
.x6c{left:278.389500px;}
.x15{left:281.479500px;}
.x6d{left:283.467000px;}
.x70{left:284.803500px;}
.xed{left:286.360500px;}
.xca{left:288.708000px;}
.x81{left:290.230500px;}
.x71{left:291.610500px;}
.x10e{left:294.007500px;}
.xf9{left:295.543500px;}
.x62{left:300.312000px;}
.xfa{left:302.349000px;}
.xee{left:304.299000px;}
.x19{left:305.973000px;}
.x8f{left:307.810500px;}
.x7{left:309.409500px;}
.xf1{left:310.915500px;}
.x1a{left:313.444500px;}
.xf2{left:315.037500px;}
.x98{left:316.215000px;}
.x54{left:318.271500px;}
.x1b{left:321.058500px;}
.x14{left:322.825500px;}
.x55{left:325.078500px;}
.x99{left:327.183000px;}
.x1c{left:328.530000px;}
.xd0{left:329.614500px;}
.x8d{left:334.338000px;}
.xe8{left:335.485500px;}
.x101{left:339.592500px;}
.x31{left:340.902000px;}
.x66{left:343.318500px;}
.x9a{left:345.906000px;}
.x56{left:347.331000px;}
.x65{left:349.728000px;}
.xa7{left:351.124500px;}
.x5d{left:353.685000px;}
.xf4{left:354.690000px;}
.x32{left:355.846500px;}
.xb5{left:357.106500px;}
.x85{left:358.707000px;}
.x57{left:362.275500px;}
.xb6{left:363.912000px;}
.xde{left:365.095500px;}
.x64{left:366.109500px;}
.xbe{left:367.402500px;}
.x7e{left:368.659500px;}
.xdc{left:369.673500px;}
.x5e{left:370.830000px;}
.x9b{left:372.805500px;}
.xbf{left:374.208000px;}
.xdd{left:376.480500px;}
.x5f{left:379.048500px;}
.xe{left:382.503000px;}
.x7f{left:383.604000px;}
.x86{left:385.354500px;}
.x28{left:387.786000px;}
.xf{left:388.831500px;}
.x114{left:390.739500px;}
.x9c{left:393.034500px;}
.xfd{left:398.937000px;}
.xac{left:400.668000px;}
.x29{left:402.730500px;}
.x89{left:405.085500px;}
.x2a{left:406.459500px;}
.x6e{left:408.147000px;}
.x9d{left:411.756000px;}
.xe2{left:413.169000px;}
.x6f{left:414.952500px;}
.x37{left:417.753000px;}
.x3f{left:420.019500px;}
.x2b{left:421.402500px;}
.x9e{left:423.750000px;}
.x40{left:426.826500px;}
.x67{left:428.503500px;}
.x106{left:429.631500px;}
.x38{left:432.697500px;}
.x91{left:434.235000px;}
.x78{left:435.447000px;}
.xae{left:437.704500px;}
.x23{left:439.128000px;}
.x42{left:441.042000px;}
.x9f{left:443.979000px;}
.xf8{left:446.058000px;}
.x41{left:447.166500px;}
.x8a{left:448.744500px;}
.x43{left:451.201500px;}
.xf0{left:452.901000px;}
.x24{left:454.071000px;}
.x12{left:455.487000px;}
.xa0{left:457.207500px;}
.x10a{left:458.745000px;}
.x13{left:461.814000px;}
.x108{left:462.997500px;}
.x10b{left:465.705000px;}
.x107{left:467.544000px;}
.x2c{left:468.624000px;}
.xc{left:472.540500px;}
.x25{left:476.577000px;}
.xa{left:477.673500px;}
.xd{left:478.867500px;}
.x58{left:480.865500px;}
.xb{left:484.000500px;}
.xa8{left:487.219500px;}
.x8b{left:490.293000px;}
.x16{left:492.130500px;}
.xa9{left:494.025000px;}
.x90{left:495.030000px;}
.x4a{left:496.248000px;}
.xb0{left:497.995500px;}
.x17{left:499.752000px;}
.xfc{left:500.980500px;}
.x4b{left:503.053500px;}
.xe3{left:504.759000px;}
.x18{left:507.223500px;}
.xd1{left:508.407000px;}
.x1d{left:510.256500px;}
.x33{left:513.183000px;}
.x10{left:515.524500px;}
.x1e{left:517.729500px;}
.x34{left:519.609000px;}
.x11{left:521.853000px;}
.xb1{left:523.585500px;}
.x1f{left:525.351000px;}
.xdb{left:527.077500px;}
.x4c{left:528.966000px;}
.x7b{left:530.688000px;}
.xcd{left:532.132500px;}
.x75{left:533.574000px;}
.x8c{left:535.503000px;}
.xe4{left:538.258500px;}
.x20{left:540.294000px;}
.x39{left:541.950000px;}
.xad{left:543.207000px;}
.xcb{left:544.608000px;}
.x4d{left:546.423000px;}
.x111{left:547.596000px;}
.xc3{left:549.586500px;}
.x3a{left:551.179500px;}
.x4e{left:553.147500px;}
.xb3{left:554.776500px;}
.xa6{left:557.440500px;}
.x96{left:558.754500px;}
.xe9{left:560.151000px;}
.x3b{left:567.831000px;}
.x112{left:569.898000px;}
.x46{left:572.703000px;}
.x3c{left:574.638000px;}
.xb4{left:576.138000px;}
.xd2{left:577.242000px;}
.x60{left:579.486000px;}
.xd3{left:584.049000px;}
.xdf{left:585.237000px;}
.x61{left:586.293000px;}
.x47{left:587.647500px;}
.x10c{left:589.120500px;}
.xe0{left:592.042500px;}
.x6a{left:595.884000px;}
.x82{left:596.935500px;}
.x109{left:600.853500px;}
.x69{left:602.295000px;}
.xb7{left:610.101000px;}
.x2d{left:611.241000px;}
.xfb{left:612.300000px;}
.xff{left:613.987500px;}
.xb8{left:616.908000px;}
.x68{left:618.676500px;}
.x48{left:620.602500px;}
.xb9{left:621.987000px;}
.x2e{left:626.185500px;}
.x49{left:627.409500px;}
.xba{left:632.275500px;}
.xef{left:633.477000px;}
.xea{left:635.859000px;}
.xeb{left:642.664500px;}
.xbb{left:644.101500px;}
.x44{left:646.555500px;}
.x10f{left:648.921000px;}
.xcc{left:651.481500px;}
.xaa{left:652.599000px;}
.xf5{left:657.040500px;}
.x113{left:658.668000px;}
.x45{left:661.498500px;}
.xbc{left:664.290000px;}
.xd9{left:665.319000px;}
.x4f{left:666.934500px;}
.x117{left:668.964000px;}
.x110{left:670.102500px;}
.x97{left:673.986000px;}
.xd4{left:675.445500px;}
.xbd{left:677.848500px;}
.x6b{left:681.070500px;}
.xd5{left:682.252500px;}
.xce{left:683.380500px;}
.x50{left:684.391500px;}
.xda{left:687.445500px;}
.xcf{left:690.187500px;}
.x51{left:692.608500px;}
.xe7{left:696.706500px;}
.x8{left:701.713500px;}
.x92{left:703.428000px;}
.x2f{left:706.065000px;}
.x9{left:708.042000px;}
.x93{left:710.233500px;}
.x30{left:712.870500px;}
.x35{left:714.436500px;}
.x7c{left:718.189500px;}
.x36{left:720.862500px;}
.xe5{left:723.187500px;}
.x83{left:726.601500px;}
.x116{left:728.386500px;}
.xc5{left:729.525000px;}
.xf6{left:730.798500px;}
.xd6{left:733.024500px;}
.xc4{left:734.266500px;}
.x52{left:735.982500px;}
.x8e{left:739.353000px;}
.xab{left:740.431500px;}
.x53{left:744.291000px;}
.xf7{left:745.741500px;}
.x76{left:746.754000px;}
.xc6{left:749.700000px;}
.xe1{left:751.312500px;}
.x77{left:753.082500px;}
.x102{left:754.111500px;}
.xd7{left:755.407500px;}
.xb2{left:756.676500px;}
.xc0{left:757.975500px;}
.x118{left:759.649500px;}
.x7d{left:760.797000px;}
.x21{left:764.332500px;}
.x95{left:766.999500px;}
.xfe{left:768.562500px;}
.xc7{left:769.617000px;}
.x3d{left:774.241500px;}
.xd8{left:775.590000px;}
.x22{left:777.070500px;}
.x10d{left:778.374000px;}
.x103{left:784.710000px;}
.x3e{left:789.184500px;}
.x72{left:794.172000px;}
.x87{left:799.920000px;}
.xe6{left:801.577500px;}
.x59{left:804.973500px;}
.x79{left:807.807000px;}
.x5a{left:811.302000px;}
.x7a{left:814.134000px;}
.x26{left:818.002500px;}
.xc1{left:819.615000px;}
.x74{left:821.565000px;}
.x88{left:822.592500px;}
.xc2{left:826.422000px;}
.x5b{left:828.964500px;}
.xf3{left:831.556500px;}
.x27{left:832.947000px;}
.x5c{left:835.690500px;}
.x73{left:837.867000px;}
@media print{
.va{vertical-align:-17.360000pt;}
.v2{vertical-align:-15.429333pt;}
.v16{vertical-align:-12.245333pt;}
.v5{vertical-align:-10.938667pt;}
.v6{vertical-align:-9.322667pt;}
.v9{vertical-align:-7.173333pt;}
.v17{vertical-align:-6.010667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.114667pt;}
.v11{vertical-align:8.501333pt;}
.v8{vertical-align:9.706667pt;}
.v13{vertical-align:12.629333pt;}
.vb{vertical-align:15.429333pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v12{vertical-align:21.946667pt;}
.vd{vertical-align:24.853333pt;}
.vf{vertical-align:27.146667pt;}
.v4{vertical-align:29.226667pt;}
.v14{vertical-align:32.186667pt;}
.vc{vertical-align:35.968000pt;}
.v15{vertical-align:56.725333pt;}
.ve{vertical-align:58.394667pt;}
.v10{vertical-align:65.893333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000015pt;}
.ls33{letter-spacing:0.000084pt;}
.ls75{letter-spacing:0.000518pt;}
.ls78{letter-spacing:0.000544pt;}
.ls81{letter-spacing:0.000659pt;}
.ls7c{letter-spacing:0.000711pt;}
.ls12{letter-spacing:0.001007pt;}
.ls80{letter-spacing:0.001026pt;}
.ls14{letter-spacing:0.002372pt;}
.ls4{letter-spacing:0.003100pt;}
.ls3c{letter-spacing:0.003733pt;}
.ls2a{letter-spacing:0.003831pt;}
.ls17{letter-spacing:0.003963pt;}
.ls83{letter-spacing:0.004096pt;}
.ls31{letter-spacing:0.482502pt;}
.ls74{letter-spacing:0.487835pt;}
.ls19{letter-spacing:0.570745pt;}
.ls73{letter-spacing:0.573116pt;}
.lsf{letter-spacing:0.595447pt;}
.ls1c{letter-spacing:0.600781pt;}
.ls26{letter-spacing:0.637762pt;}
.ls4b{letter-spacing:0.661348pt;}
.ls3a{letter-spacing:0.667185pt;}
.ls6d{letter-spacing:0.680838pt;}
.ls70{letter-spacing:0.755720pt;}
.ls34{letter-spacing:0.768518pt;}
.ls72{letter-spacing:0.780773pt;}
.ls71{letter-spacing:0.797116pt;}
.ls16{letter-spacing:0.836890pt;}
.ls63{letter-spacing:0.989169pt;}
.ls6c{letter-spacing:1.006172pt;}
.ls40{letter-spacing:1.009547pt;}
.ls18{letter-spacing:1.149491pt;}
.ls3d{letter-spacing:1.166400pt;}
.ls3f{letter-spacing:1.168015pt;}
.ls62{letter-spacing:1.170926pt;}
.ls5e{letter-spacing:1.171733pt;}
.ls35{letter-spacing:1.262881pt;}
.ls56{letter-spacing:1.299096pt;}
.ls51{letter-spacing:1.304429pt;}
.ls36{letter-spacing:1.325089pt;}
.ls39{letter-spacing:1.328518pt;}
.ls41{letter-spacing:1.330422pt;}
.ls4d{letter-spacing:1.370682pt;}
.ls6a{letter-spacing:1.481251pt;}
.ls65{letter-spacing:1.486584pt;}
.ls64{letter-spacing:1.510451pt;}
.ls13{letter-spacing:1.795234pt;}
.ls52{letter-spacing:1.950881pt;}
.ls57{letter-spacing:1.956214pt;}
.ls2c{letter-spacing:1.961165pt;}
.ls4f{letter-spacing:1.965897pt;}
.ls66{letter-spacing:1.977346pt;}
.ls6b{letter-spacing:1.982679pt;}
.ls10{letter-spacing:1.992521pt;}
.ls1d{letter-spacing:2.294084pt;}
.ls1e{letter-spacing:2.299418pt;}
.ls53{letter-spacing:2.601874pt;}
.ls7b{letter-spacing:2.625548pt;}
.ls76{letter-spacing:2.654121pt;}
.ls2b{letter-spacing:2.655204pt;}
.ls69{letter-spacing:2.656508pt;}
.ls3b{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls1b{letter-spacing:3.010825pt;}
.ls1f{letter-spacing:3.016158pt;}
.ls27{letter-spacing:3.054400pt;}
.ls28{letter-spacing:3.059733pt;}
.lse{letter-spacing:3.118133pt;}
.lsd{letter-spacing:3.123467pt;}
.ls24{letter-spacing:3.158400pt;}
.ls9{letter-spacing:3.163733pt;}
.ls48{letter-spacing:6.416015pt;}
.ls46{letter-spacing:6.421348pt;}
.ls6f{letter-spacing:7.261169pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls60{letter-spacing:10.995733pt;}
.ls5a{letter-spacing:11.421762pt;}
.ls42{letter-spacing:11.593548pt;}
.ls61{letter-spacing:11.635096pt;}
.ls59{letter-spacing:11.661089pt;}
.ls82{letter-spacing:11.870650pt;}
.ls79{letter-spacing:11.954133pt;}
.ls7a{letter-spacing:11.959467pt;}
.ls7f{letter-spacing:11.963167pt;}
.ls7d{letter-spacing:11.991252pt;}
.ls85{letter-spacing:12.155126pt;}
.ls7e{letter-spacing:12.224392pt;}
.ls1a{letter-spacing:12.420267pt;}
.ls21{letter-spacing:12.528078pt;}
.ls22{letter-spacing:12.533411pt;}
.ls11{letter-spacing:13.070931pt;}
.ls5c{letter-spacing:13.279711pt;}
.lsc{letter-spacing:13.283467pt;}
.ls2f{letter-spacing:13.496002pt;}
.ls4c{letter-spacing:13.654400pt;}
.ls23{letter-spacing:13.785067pt;}
.ls5d{letter-spacing:13.881548pt;}
.ls77{letter-spacing:13.917762pt;}
.ls32{letter-spacing:13.923096pt;}
.lsb{letter-spacing:14.080475pt;}
.ls67{letter-spacing:14.243918pt;}
.ls43{letter-spacing:14.291096pt;}
.ls25{letter-spacing:14.346144pt;}
.ls58{letter-spacing:14.542881pt;}
.ls15{letter-spacing:14.613867pt;}
.ls29{letter-spacing:14.614658pt;}
.lsa{letter-spacing:15.036884pt;}
.ls5f{letter-spacing:15.395096pt;}
.ls8{letter-spacing:15.780758pt;}
.ls2{letter-spacing:15.937067pt;}
.ls37{letter-spacing:16.020214pt;}
.ls49{letter-spacing:16.025548pt;}
.ls50{letter-spacing:16.061762pt;}
.ls84{letter-spacing:16.724539pt;}
.ls54{letter-spacing:17.204214pt;}
.ls4a{letter-spacing:18.717762pt;}
.ls38{letter-spacing:22.440429pt;}
.ls47{letter-spacing:32.003096pt;}
.ls3{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls30{letter-spacing:83.815733pt;}
.ls3e{letter-spacing:159.907096pt;}
.ls20{letter-spacing:292.447053pt;}
.ls2e{letter-spacing:442.303065pt;}
.ls2d{letter-spacing:449.882710pt;}
.ls4e{letter-spacing:565.374881pt;}
.ls6e{letter-spacing:615.886584pt;}
.ls44{letter-spacing:616.942881pt;}
.ls5b{letter-spacing:629.322378pt;}
.ls55{letter-spacing:636.868214pt;}
.ls68{letter-spacing:683.299505pt;}
.wsd0{word-spacing:-40.078876pt;}
.wsa8{word-spacing:-13.283467pt;}
.ws8b{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.wse8{word-spacing:-3.985040pt;}
.wsca{word-spacing:-2.975497pt;}
.ws51{word-spacing:-2.709827pt;}
.ws41{word-spacing:-2.497292pt;}
.wsb1{word-spacing:-2.284756pt;}
.wsa5{word-spacing:-2.178489pt;}
.ws12d{word-spacing:-1.960653pt;}
.ws78{word-spacing:-1.868447pt;}
.ws7a{word-spacing:-1.859685pt;}
.wse1{word-spacing:-1.700284pt;}
.ws59{word-spacing:-1.647150pt;}
.ws32{word-spacing:-1.540882pt;}
.ws63{word-spacing:-1.487748pt;}
.wsae{word-spacing:-1.434614pt;}
.ws7c{word-spacing:-1.381481pt;}
.ws7b{word-spacing:-1.328347pt;}
.wsd2{word-spacing:-1.275213pt;}
.ws38{word-spacing:-1.222079pt;}
.wsde{word-spacing:-1.049929pt;}
.wsb0{word-spacing:-1.009543pt;}
.ws12e{word-spacing:-1.004237pt;}
.ws40{word-spacing:-0.956410pt;}
.wsb3{word-spacing:-0.908595pt;}
.wsa9{word-spacing:-0.903276pt;}
.ws47{word-spacing:-0.797008pt;}
.ws77{word-spacing:-0.743874pt;}
.wsb4{word-spacing:-0.717312pt;}
.wscc{word-spacing:-0.637606pt;}
.ws26{word-spacing:-0.584473pt;}
.ws84{word-spacing:-0.531339pt;}
.ws65{word-spacing:-0.478205pt;}
.ws66{word-spacing:-0.425071pt;}
.ws129{word-spacing:-0.382566pt;}
.ws48{word-spacing:-0.371937pt;}
.ws31{word-spacing:-0.318803pt;}
.wsa0{word-spacing:-0.272899pt;}
.ws37{word-spacing:-0.265669pt;}
.ws13{word-spacing:-0.239104pt;}
.ws23{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.191283pt;}
.ws44{word-spacing:-0.159402pt;}
.wsbc{word-spacing:-0.143462pt;}
.ws35{word-spacing:-0.106268pt;}
.ws17{word-spacing:-0.095642pt;}
.wsfa{word-spacing:-0.063641pt;}
.ws24{word-spacing:-0.053134pt;}
.ws6b{word-spacing:-0.047821pt;}
.wsf{word-spacing:-0.042507pt;}
.wsd9{word-spacing:-0.040382pt;}
.ws4{word-spacing:-0.037194pt;}
.wseb{word-spacing:-0.031881pt;}
.wsf4{word-spacing:-0.008573pt;}
.wsdc{word-spacing:-0.008242pt;}
.wsfd{word-spacing:-0.007599pt;}
.wsf6{word-spacing:-0.005734pt;}
.wsf2{word-spacing:-0.004918pt;}
.ws73{word-spacing:-0.004727pt;}
.wsd3{word-spacing:-0.003934pt;}
.ws107{word-spacing:-0.003260pt;}
.wsee{word-spacing:-0.002213pt;}
.ws70{word-spacing:-0.001655pt;}
.ws122{word-spacing:-0.001254pt;}
.ws1{word-spacing:0.000000pt;}
.wscf{word-spacing:0.002689pt;}
.ws16{word-spacing:0.047821pt;}
.ws3c{word-spacing:0.053134pt;}
.ws2b{word-spacing:0.106268pt;}
.ws10{word-spacing:0.127522pt;}
.ws58{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws1b{word-spacing:0.191283pt;}
.ws20{word-spacing:0.212535pt;}
.ws103{word-spacing:0.239104pt;}
.ws28{word-spacing:0.265669pt;}
.ws8f{word-spacing:0.286925pt;}
.ws68{word-spacing:0.318803pt;}
.ws34{word-spacing:0.371937pt;}
.wsfe{word-spacing:0.382566pt;}
.ws36{word-spacing:0.425071pt;}
.ws10e{word-spacing:0.430387pt;}
.ws8a{word-spacing:0.464000pt;}
.ws86{word-spacing:0.478205pt;}
.wsfc{word-spacing:0.499958pt;}
.ws50{word-spacing:0.500000pt;}
.ws67{word-spacing:0.503733pt;}
.wsac{word-spacing:0.505333pt;}
.wsf5{word-spacing:0.506635pt;}
.wsf7{word-spacing:0.508768pt;}
.wsab{word-spacing:0.531339pt;}
.ws7d{word-spacing:0.584473pt;}
.wsd4{word-spacing:0.586462pt;}
.ws99{word-spacing:0.587392pt;}
.ws9f{word-spacing:0.589525pt;}
.ws9b{word-spacing:0.592896pt;}
.ws9e{word-spacing:0.593963pt;}
.ws9a{word-spacing:0.596096pt;}
.wsd6{word-spacing:0.611447pt;}
.ws9c{word-spacing:0.612378pt;}
.ws9d{word-spacing:0.614511pt;}
.ws81{word-spacing:0.621670pt;}
.ws85{word-spacing:0.637606pt;}
.wsf0{word-spacing:0.659564pt;}
.wsf8{word-spacing:0.659677pt;}
.wsaf{word-spacing:0.662422pt;}
.wsf3{word-spacing:0.663724pt;}
.ws2d{word-spacing:0.690740pt;}
.wsaa{word-spacing:0.797008pt;}
.ws53{word-spacing:0.850142pt;}
.ws80{word-spacing:0.860774pt;}
.ws83{word-spacing:0.903276pt;}
.wsc3{word-spacing:0.956410pt;}
.ws90{word-spacing:0.956416pt;}
.ws43{word-spacing:1.009543pt;}
.wsa2{word-spacing:1.062677pt;}
.wsd8{word-spacing:1.115811pt;}
.ws1d{word-spacing:1.147699pt;}
.ws4f{word-spacing:1.168945pt;}
.ws3e{word-spacing:1.222079pt;}
.ws89{word-spacing:1.275213pt;}
.wsb9{word-spacing:1.328347pt;}
.ws7f{word-spacing:1.381481pt;}
.wsc4{word-spacing:1.434614pt;}
.wsa7{word-spacing:1.487748pt;}
.wsc7{word-spacing:1.540882pt;}
.ws3f{word-spacing:1.594016pt;}
.ws69{word-spacing:1.647150pt;}
.ws55{word-spacing:1.700284pt;}
.ws1c{word-spacing:1.721549pt;}
.ws56{word-spacing:1.753418pt;}
.ws82{word-spacing:1.806551pt;}
.ws10a{word-spacing:1.817190pt;}
.ws21{word-spacing:1.859685pt;}
.ws39{word-spacing:1.912819pt;}
.ws19{word-spacing:1.912832pt;}
.ws88{word-spacing:1.965953pt;}
.ws12{word-spacing:2.008474pt;}
.wsa3{word-spacing:2.019087pt;}
.wsb7{word-spacing:2.072221pt;}
.ws5c{word-spacing:2.125355pt;}
.wsa4{word-spacing:2.178489pt;}
.ws30{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws6e{word-spacing:2.247578pt;}
.wsce{word-spacing:2.284756pt;}
.ws57{word-spacing:2.337890pt;}
.ws109{word-spacing:2.343219pt;}
.wsc6{word-spacing:2.391024pt;}
.ws4d{word-spacing:2.497292pt;}
.ws6d{word-spacing:2.534502pt;}
.ws11{word-spacing:2.550432pt;}
.wsfb{word-spacing:2.603559pt;}
.wsa1{word-spacing:2.656693pt;}
.ws12b{word-spacing:2.677965pt;}
.ws52{word-spacing:2.709827pt;}
.ws12c{word-spacing:2.725786pt;}
.ws4c{word-spacing:2.762961pt;}
.wse0{word-spacing:2.816095pt;}
.ws11a{word-spacing:2.860339pt;}
.ws116{word-spacing:2.864742pt;}
.ws104{word-spacing:2.866517pt;}
.ws108{word-spacing:2.869248pt;}
.ws1a{word-spacing:2.964890pt;}
.ws4a{word-spacing:2.975497pt;}
.wsd1{word-spacing:3.028630pt;}
.ws113{word-spacing:3.060531pt;}
.ws6a{word-spacing:3.081764pt;}
.wsbb{word-spacing:3.156173pt;}
.wsf9{word-spacing:3.184136pt;}
.ws1f{word-spacing:3.188032pt;}
.ws101{word-spacing:3.203994pt;}
.ws3a{word-spacing:3.294300pt;}
.wscd{word-spacing:3.347434pt;}
.ws5e{word-spacing:3.400567pt;}
.ws6c{word-spacing:3.453701pt;}
.wsba{word-spacing:3.490918pt;}
.ws42{word-spacing:3.506835pt;}
.wsb8{word-spacing:3.559969pt;}
.ws22{word-spacing:3.719371pt;}
.ws119{word-spacing:3.730022pt;}
.ws11d{word-spacing:3.777843pt;}
.wsa6{word-spacing:3.825638pt;}
.ws5d{word-spacing:3.878772pt;}
.ws8d{word-spacing:3.921306pt;}
.ws5a{word-spacing:3.985040pt;}
.ws27{word-spacing:4.038174pt;}
.ws18{word-spacing:4.112589pt;}
.ws4e{word-spacing:4.144442pt;}
.wsb{word-spacing:4.240070pt;}
.wsb2{word-spacing:4.250709pt;}
.ws8c{word-spacing:4.256051pt;}
.wsc{word-spacing:4.314458pt;}
.ws87{word-spacing:4.356977pt;}
.ws3b{word-spacing:4.410111pt;}
.ws79{word-spacing:4.434219pt;}
.ws49{word-spacing:4.463245pt;}
.ws4b{word-spacing:4.516379pt;}
.ws62{word-spacing:4.569513pt;}
.ws5b{word-spacing:4.622646pt;}
.ws11f{word-spacing:4.782080pt;}
.wscb{word-spacing:4.835182pt;}
.wse2{word-spacing:4.845841pt;}
.ws1e{word-spacing:4.877722pt;}
.ws33{word-spacing:4.888316pt;}
.ws64{word-spacing:4.941450pt;}
.ws3d{word-spacing:5.100851pt;}
.ws7e{word-spacing:5.260253pt;}
.ws14{word-spacing:5.260288pt;}
.ws71{word-spacing:5.316043pt;}
.ws8e{word-spacing:5.321518pt;}
.ws127{word-spacing:5.451571pt;}
.ws46{word-spacing:5.525922pt;}
.ws115{word-spacing:5.547213pt;}
.ws2c{word-spacing:5.579056pt;}
.ws11c{word-spacing:5.834138pt;}
.ws2e{word-spacing:5.897859pt;}
.wsc8{word-spacing:5.950993pt;}
.ws45{word-spacing:6.004127pt;}
.wse4{word-spacing:6.138044pt;}
.wsad{word-spacing:6.535466pt;}
.ws9{word-spacing:6.918010pt;}
.ws114{word-spacing:7.029658pt;}
.ws12a{word-spacing:7.173120pt;}
.wsc5{word-spacing:7.279340pt;}
.ws10c{word-spacing:7.364403pt;}
.ws11b{word-spacing:7.460045pt;}
.wsdb{word-spacing:7.491875pt;}
.ws2f{word-spacing:8.288883pt;}
.ws118{word-spacing:8.464282pt;}
.ws10b{word-spacing:9.229414pt;}
.wsc9{word-spacing:9.564096pt;}
.ws125{word-spacing:10.329293pt;}
.ws7{word-spacing:10.823338pt;}
.ws2{word-spacing:11.492822pt;}
.ws102{word-spacing:11.897745pt;}
.ws124{word-spacing:11.901201pt;}
.ws126{word-spacing:11.902242pt;}
.ws128{word-spacing:11.903573pt;}
.ws121{word-spacing:11.903863pt;}
.ws105{word-spacing:11.907379pt;}
.ws120{word-spacing:11.908821pt;}
.ws110{word-spacing:11.955200pt;}
.ws10f{word-spacing:12.289946pt;}
.ws29{word-spacing:13.134725pt;}
.wsda{word-spacing:13.229318pt;}
.ws54{word-spacing:13.230333pt;}
.ws5{word-spacing:13.761632pt;}
.wsec{word-spacing:14.180241pt;}
.ws8{word-spacing:14.319536pt;}
.ws123{word-spacing:14.768580pt;}
.ws100{word-spacing:14.771558pt;}
.ws117{word-spacing:14.773914pt;}
.wsff{word-spacing:14.776627pt;}
.ws106{word-spacing:14.872269pt;}
.ws112{word-spacing:14.967910pt;}
.ws10d{word-spacing:15.063552pt;}
.ws111{word-spacing:15.159194pt;}
.ws11e{word-spacing:15.685222pt;}
.wsdd{word-spacing:15.895008pt;}
.wsdf{word-spacing:15.896804pt;}
.wsf1{word-spacing:15.900341pt;}
.wsef{word-spacing:15.901154pt;}
.wsd7{word-spacing:16.418365pt;}
.wse9{word-spacing:17.215373pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.wsd{word-spacing:35.616629pt;}
.wse7{word-spacing:39.881662pt;}
.wsea{word-spacing:39.886995pt;}
.wse3{word-spacing:62.309310pt;}
.wse6{word-spacing:75.920675pt;}
.wse5{word-spacing:82.299342pt;}
.ws91{word-spacing:161.296060pt;}
.ws98{word-spacing:167.420621pt;}
.ws72{word-spacing:191.283200pt;}
.ws61{word-spacing:203.716608pt;}
.ws74{word-spacing:211.837803pt;}
.ws75{word-spacing:215.193600pt;}
.ws60{word-spacing:221.649408pt;}
.ws5f{word-spacing:223.896986pt;}
.ws94{word-spacing:235.311690pt;}
.ws93{word-spacing:235.909023pt;}
.ws6f{word-spacing:237.765018pt;}
.ws95{word-spacing:245.647690pt;}
.ws92{word-spacing:246.881644pt;}
.ws96{word-spacing:256.588665pt;}
.ws97{word-spacing:272.722022pt;}
.wsb6{word-spacing:289.459302pt;}
.wsb5{word-spacing:301.414502pt;}
.ws76{word-spacing:343.459760pt;}
.wsbd{word-spacing:352.101393pt;}
.wsc2{word-spacing:356.456243pt;}
.wsbf{word-spacing:368.459264pt;}
.wsc0{word-spacing:380.366643pt;}
.wsc1{word-spacing:380.414464pt;}
.wsbe{word-spacing:386.105139pt;}
.wsd5{word-spacing:540.996710pt;}
.wsed{word-spacing:732.976555pt;}
._6{margin-left:-31.595439pt;}
._52{margin-left:-18.167680pt;}
._7{margin-left:-8.799027pt;}
._8{margin-left:-6.854269pt;}
._b{margin-left:-5.899275pt;}
._0{margin-left:-4.797974pt;}
._1{margin-left:-3.421811pt;}
._53{margin-left:-2.408004pt;}
._5{margin-left:-1.338970pt;}
._4d{width:1.696038pt;}
._9{width:2.621749pt;}
._50{width:3.785941pt;}
._4e{width:5.036710pt;}
._51{width:6.617807pt;}
._3{width:9.298400pt;}
._16{width:10.626800pt;}
._2{width:11.531711pt;}
._37{width:12.433325pt;}
._c{width:13.453510pt;}
._e{width:14.585344pt;}
._15{width:16.205829pt;}
._f{width:17.215702pt;}
._11{width:18.124083pt;}
._13{width:19.797811pt;}
._10{width:20.993331pt;}
._14{width:22.475626pt;}
._12{width:24.149504pt;}
._1a{width:25.461745pt;}
._4{width:27.188522pt;}
._1b{width:28.745422pt;}
._d{width:30.222746pt;}
._19{width:31.519006pt;}
._49{width:34.749549pt;}
._54{width:37.124835pt;}
._4f{width:39.021502pt;}
._a{width:48.478645pt;}
._55{width:54.993920pt;}
._1e{width:96.819652pt;}
._39{width:151.305011pt;}
._38{width:175.215411pt;}
._36{width:209.311642pt;}
._23{width:215.623987pt;}
._27{width:216.532582pt;}
._34{width:221.314662pt;}
._1f{width:222.988390pt;}
._2f{width:227.653542pt;}
._22{width:231.548314pt;}
._25{width:233.556787pt;}
._28{width:235.087053pt;}
._30{width:240.565158pt;}
._2a{width:243.120947pt;}
._24{width:246.229299pt;}
._31{width:253.545882pt;}
._2b{width:255.080875pt;}
._20{width:256.988979pt;}
._3a{width:259.230832pt;}
._21{width:262.297088pt;}
._41{width:270.857011pt;}
._3f{width:272.984269pt;}
._32{width:281.042842pt;}
._3c{width:282.812211pt;}
._2e{width:285.574246pt;}
._40{width:286.542234pt;}
._33{width:289.076736pt;}
._29{width:291.294831pt;}
._35{width:295.723827pt;}
._3b{width:298.497434pt;}
._3d{width:312.939315pt;}
._3e{width:314.134835pt;}
._1c{width:336.610611pt;}
._4a{width:390.173841pt;}
._43{width:397.417382pt;}
._48{width:398.490726pt;}
._44{width:404.277043pt;}
._45{width:414.223770pt;}
._46{width:416.232243pt;}
._47{width:428.856934pt;}
._42{width:453.006438pt;}
._4b{width:550.943437pt;}
._1d{width:554.427550pt;}
._4c{width:565.576602pt;}
._2c{width:603.037133pt;}
._17{width:776.986463pt;}
._26{width:873.016525pt;}
._2d{width:2115.985343pt;}
._18{width:2137.238676pt;}
.fs7{font-size:31.880533pt;}
.fse{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fsa{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs1{font-size:47.035520pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fs2{font-size:50.395200pt;}
.fs4{font-size:53.133867pt;}
.fsc{font-size:55.365867pt;}
.fs3{font-size:60.474240pt;}
.fs5{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:8.420534pt;}
.y19{bottom:25.722550pt;}
.y4f{bottom:28.346667pt;}
.y18{bottom:29.128174pt;}
.y179{bottom:81.480000pt;}
.y2ac{bottom:83.408000pt;}
.y22c{bottom:86.117333pt;}
.y111{bottom:87.932000pt;}
.yf7{bottom:89.178667pt;}
.y110{bottom:90.358667pt;}
.y205{bottom:90.414667pt;}
.y4e{bottom:92.108000pt;}
.y16{bottom:93.018667pt;}
.y8c{bottom:95.681333pt;}
.y178{bottom:98.217333pt;}
.y2aa{bottom:98.749333pt;}
.y2ab{bottom:98.750667pt;}
.y22b{bottom:102.854667pt;}
.ya1{bottom:104.301333pt;}
.y204{bottom:105.160000pt;}
.yf5{bottom:105.916000pt;}
.y286{bottom:106.746667pt;}
.y10f{bottom:107.096000pt;}
.y203{bottom:107.152000pt;}
.y128{bottom:108.032000pt;}
.y2df{bottom:108.233333pt;}
.y4d{bottom:108.844000pt;}
.y15{bottom:108.920000pt;}
.yf6{bottom:110.738667pt;}
.y8b{bottom:112.418667pt;}
.y2a9{bottom:114.092000pt;}
.y177{bottom:114.954667pt;}
.y122{bottom:117.332000pt;}
.y22a{bottom:119.592000pt;}
.ya0{bottom:121.038667pt;}
.yf4{bottom:122.653333pt;}
.y285{bottom:123.484000pt;}
.y2de{bottom:123.576000pt;}
.y10e{bottom:123.833333pt;}
.y202{bottom:123.889333pt;}
.y14{bottom:124.820000pt;}
.y254{bottom:124.978667pt;}
.y127{bottom:125.128000pt;}
.y4b{bottom:125.581333pt;}
.y8a{bottom:129.156000pt;}
.y2a8{bottom:129.434667pt;}
.y4c{bottom:130.404000pt;}
.y176{bottom:131.692000pt;}
.y197{bottom:133.977333pt;}
.y121{bottom:134.428000pt;}
.y229{bottom:136.329333pt;}
.yf3{bottom:136.964000pt;}
.y9f{bottom:137.776000pt;}
.y10d{bottom:138.144000pt;}
.y2dd{bottom:138.918667pt;}
.y253{bottom:138.992000pt;}
.yf2{bottom:139.390667pt;}
.y10c{bottom:140.569333pt;}
.y201{bottom:140.626667pt;}
.y13{bottom:140.720000pt;}
.y284{bottom:141.650667pt;}
.y252{bottom:141.716000pt;}
.y126{bottom:142.224000pt;}
.y4a{bottom:142.318667pt;}
.y2a7{bottom:144.777333pt;}
.y89{bottom:145.893333pt;}
.y174{bottom:148.429333pt;}
.y196{bottom:150.714667pt;}
.y120{bottom:151.522667pt;}
.y227{bottom:153.066667pt;}
.y175{bottom:153.252000pt;}
.y2dc{bottom:154.261333pt;}
.y9e{bottom:154.513333pt;}
.y133{bottom:155.188000pt;}
.yf1{bottom:156.128000pt;}
.y12{bottom:156.621333pt;}
.y10b{bottom:157.306667pt;}
.y200{bottom:157.364000pt;}
.y228{bottom:157.888000pt;}
.y283{bottom:158.388000pt;}
.y251{bottom:158.453333pt;}
.y49{bottom:159.056000pt;}
.y2a6{bottom:160.120000pt;}
.y88{bottom:162.630667pt;}
.y1c2{bottom:162.814667pt;}
.yc3{bottom:163.938667pt;}
.y172{bottom:165.166667pt;}
.y2db{bottom:169.604000pt;}
.y226{bottom:169.804000pt;}
.y173{bottom:169.989333pt;}
.y9d{bottom:171.250667pt;}
.y132{bottom:172.284000pt;}
.y11{bottom:172.521333pt;}
.yef{bottom:172.865333pt;}
.y10a{bottom:174.044000pt;}
.y1ff{bottom:174.101333pt;}
.y282{bottom:175.125333pt;}
.y250{bottom:175.190667pt;}
.y2a5{bottom:175.462667pt;}
.y48{bottom:175.793333pt;}
.yf0{bottom:177.686667pt;}
.y87{bottom:179.368000pt;}
.y171{bottom:179.477333pt;}
.y1c1{bottom:179.552000pt;}
.yc2{bottom:180.676000pt;}
.y170{bottom:181.904000pt;}
.y195{bottom:184.189333pt;}
.y2da{bottom:184.946667pt;}
.y225{bottom:186.540000pt;}
.y9c{bottom:187.988000pt;}
.y10{bottom:188.421333pt;}
.y109{bottom:190.781333pt;}
.y2a4{bottom:190.805333pt;}
.y1fe{bottom:190.838667pt;}
.y24f{bottom:191.928000pt;}
.y47{bottom:192.530667pt;}
.yee{bottom:193.588000pt;}
.y281{bottom:195.848000pt;}
.y86{bottom:196.105333pt;}
.y1c0{bottom:196.288000pt;}
.yc1{bottom:197.413333pt;}
.y16e{bottom:198.641333pt;}
.y2d9{bottom:200.289333pt;}
.y224{bottom:203.277333pt;}
.y16f{bottom:203.464000pt;}
.yf{bottom:204.322667pt;}
.y9a{bottom:204.725333pt;}
.y108{bottom:205.092000pt;}
.y107{bottom:207.518667pt;}
.y1fd{bottom:207.576000pt;}
.y24e{bottom:208.665333pt;}
.y46{bottom:209.268000pt;}
.y9b{bottom:209.546667pt;}
.y2a3{bottom:210.132000pt;}
.y280{bottom:212.585333pt;}
.y85{bottom:212.841333pt;}
.y16c{bottom:212.952000pt;}
.y1bf{bottom:213.025333pt;}
.yc0{bottom:214.150667pt;}
.y16b{bottom:215.378667pt;}
.y2d8{bottom:215.632000pt;}
.y223{bottom:220.014667pt;}
.y16d{bottom:220.201333pt;}
.yed{bottom:220.634667pt;}
.y1fc{bottom:224.313333pt;}
.y45{bottom:226.005333pt;}
.y1e5{bottom:228.314667pt;}
.y27f{bottom:229.322667pt;}
.y83{bottom:229.578667pt;}
.y1be{bottom:229.762667pt;}
.ybf{bottom:230.888000pt;}
.y2d7{bottom:230.974667pt;}
.y16a{bottom:232.116000pt;}
.y84{bottom:234.401333pt;}
.y99{bottom:234.561333pt;}
.y222{bottom:236.752000pt;}
.y24d{bottom:237.158667pt;}
.yeb{bottom:237.730667pt;}
.y2a2{bottom:240.020000pt;}
.y1fa{bottom:241.050667pt;}
.yec{bottom:242.069333pt;}
.y44{bottom:242.742667pt;}
.y1fb{bottom:245.872000pt;}
.y27e{bottom:246.060000pt;}
.y24c{bottom:246.270667pt;}
.y82{bottom:246.316000pt;}
.y1bd{bottom:246.500000pt;}
.ybe{bottom:247.625333pt;}
.y106{bottom:247.929333pt;}
.y169{bottom:248.853333pt;}
.y1e4{bottom:249.328000pt;}
.y97{bottom:251.657333pt;}
.y221{bottom:253.489333pt;}
.ye9{bottom:254.826667pt;}
.y98{bottom:255.997333pt;}
.y1f8{bottom:257.788000pt;}
.yea{bottom:259.165333pt;}
.y2d6{bottom:261.658667pt;}
.y1f9{bottom:262.609333pt;}
.y80{bottom:263.053333pt;}
.y105{bottom:263.097333pt;}
.y1bc{bottom:263.237333pt;}
.y43{bottom:263.465333pt;}
.y2a1{bottom:263.612000pt;}
.ybd{bottom:264.362667pt;}
.y168{bottom:265.590667pt;}
.ye{bottom:266.570667pt;}
.y27d{bottom:266.782667pt;}
.y81{bottom:267.876000pt;}
.y220{bottom:270.226667pt;}
.y1e3{bottom:270.342667pt;}
.y1f7{bottom:274.525333pt;}
.y2d5{bottom:277.001333pt;}
.y104{bottom:277.709333pt;}
.y2a0{bottom:279.233333pt;}
.y167{bottom:279.593333pt;}
.y7f{bottom:279.790667pt;}
.y1bb{bottom:279.974667pt;}
.ybc{bottom:281.100000pt;}
.y166{bottom:282.328000pt;}
.yd{bottom:282.470667pt;}
.y24b{bottom:284.534667pt;}
.y21f{bottom:286.964000pt;}
.y1f5{bottom:291.262667pt;}
.y1e2{bottom:291.356000pt;}
.y103{bottom:292.320000pt;}
.y2d4{bottom:292.344000pt;}
.ybb{bottom:295.410667pt;}
.y1f6{bottom:296.084000pt;}
.y165{bottom:296.330667pt;}
.y7d{bottom:296.528000pt;}
.y27c{bottom:296.670667pt;}
.y1ba{bottom:296.712000pt;}
.yba{bottom:297.837333pt;}
.yc{bottom:298.370667pt;}
.y164{bottom:299.065333pt;}
.y24a{bottom:301.272000pt;}
.y7e{bottom:301.350667pt;}
.y29f{bottom:302.825333pt;}
.y21e{bottom:303.701333pt;}
.y102{bottom:306.932000pt;}
.y2d3{bottom:307.686667pt;}
.y1f4{bottom:311.985333pt;}
.y1e1{bottom:312.370667pt;}
.y7c{bottom:313.265333pt;}
.y27a{bottom:313.408000pt;}
.y1b9{bottom:313.449333pt;}
.yb{bottom:314.272000pt;}
.yb9{bottom:314.573333pt;}
.y163{bottom:315.802667pt;}
.y249{bottom:318.009333pt;}
.y27b{bottom:318.229333pt;}
.y29e{bottom:318.446667pt;}
.y21d{bottom:320.438667pt;}
.y101{bottom:321.544000pt;}
.y2d2{bottom:323.029333pt;}
.y161{bottom:329.805333pt;}
.y7b{bottom:330.002667pt;}
.y279{bottom:330.145333pt;}
.y1b8{bottom:330.186667pt;}
.y42{bottom:330.265333pt;}
.yb8{bottom:331.310667pt;}
.y160{bottom:332.540000pt;}
.y1e0{bottom:333.384000pt;}
.y248{bottom:334.746667pt;}
.y21b{bottom:337.176000pt;}
.y162{bottom:337.361333pt;}
.y2d1{bottom:338.372000pt;}
.ya{bottom:339.470667pt;}
.y1f3{bottom:341.873333pt;}
.y21c{bottom:341.998667pt;}
.y29d{bottom:342.038667pt;}
.y100{bottom:342.558667pt;}
.y7a{bottom:346.740000pt;}
.y278{bottom:346.882667pt;}
.y1b7{bottom:346.924000pt;}
.y41{bottom:347.560000pt;}
.yb6{bottom:348.048000pt;}
.y15e{bottom:349.277333pt;}
.y247{bottom:351.484000pt;}
.yb7{bottom:352.870667pt;}
.y2d0{bottom:353.714667pt;}
.y21a{bottom:353.913333pt;}
.y15f{bottom:354.098667pt;}
.y1df{bottom:354.398667pt;}
.y9{bottom:355.370667pt;}
.y1f2{bottom:358.610667pt;}
.y79{bottom:363.477333pt;}
.yff{bottom:363.572000pt;}
.y276{bottom:363.620000pt;}
.y1b6{bottom:363.661333pt;}
.yb5{bottom:364.785333pt;}
.y29c{bottom:365.629333pt;}
.y15d{bottom:366.014667pt;}
.y246{bottom:368.221333pt;}
.y194{bottom:368.300000pt;}
.y277{bottom:368.441333pt;}
.y2cf{bottom:369.056000pt;}
.y219{bottom:370.650667pt;}
.y1f0{bottom:375.348000pt;}
.y1de{bottom:375.412000pt;}
.y8{bottom:379.241333pt;}
.y1f1{bottom:380.169333pt;}
.y78{bottom:380.214667pt;}
.y275{bottom:380.357333pt;}
.y1b5{bottom:380.398667pt;}
.y40{bottom:380.796000pt;}
.yb4{bottom:381.522667pt;}
.y15c{bottom:382.752000pt;}
.y2ce{bottom:384.398667pt;}
.y245{bottom:384.958667pt;}
.y193{bottom:385.037333pt;}
.y218{bottom:387.388000pt;}
.y29b{bottom:389.221333pt;}
.yfe{bottom:391.678667pt;}
.y1ef{bottom:392.084000pt;}
.y7{bottom:395.141333pt;}
.y1dd{bottom:396.426667pt;}
.y77{bottom:396.952000pt;}
.y274{bottom:397.094667pt;}
.y1b4{bottom:397.136000pt;}
.y3f{bottom:398.090667pt;}
.yb3{bottom:398.260000pt;}
.y15b{bottom:399.489333pt;}
.y2cd{bottom:399.741333pt;}
.y244{bottom:401.696000pt;}
.y192{bottom:401.774667pt;}
.y217{bottom:404.125333pt;}
.y29a{bottom:404.842667pt;}
.yfc{bottom:408.774667pt;}
.y1ee{bottom:408.821333pt;}
.y6{bottom:411.042667pt;}
.y76{bottom:411.262667pt;}
.yfd{bottom:413.114667pt;}
.y75{bottom:413.689333pt;}
.y1b3{bottom:413.873333pt;}
.yb2{bottom:414.997333pt;}
.y2cc{bottom:415.084000pt;}
.y3d{bottom:415.386667pt;}
.y159{bottom:416.226667pt;}
.y1dc{bottom:417.440000pt;}
.y273{bottom:417.816000pt;}
.y191{bottom:418.510667pt;}
.y3e{bottom:419.725333pt;}
.y216{bottom:420.862667pt;}
.y15a{bottom:421.048000pt;}
.y243{bottom:422.417333pt;}
.y1ed{bottom:425.558667pt;}
.y2e3{bottom:426.374667pt;}
.y5{bottom:426.942667pt;}
.y299{bottom:428.434667pt;}
.y74{bottom:430.426667pt;}
.y1b2{bottom:430.610667pt;}
.yb1{bottom:431.734667pt;}
.y3c{bottom:432.681333pt;}
.y158{bottom:432.964000pt;}
.y242{bottom:436.365333pt;}
.y1db{bottom:438.454667pt;}
.y215{bottom:441.585333pt;}
.y2e2{bottom:441.717333pt;}
.y1eb{bottom:442.296000pt;}
.y4{bottom:442.842667pt;}
.yfb{bottom:443.138667pt;}
.y298{bottom:444.056000pt;}
.y2cb{bottom:445.769333pt;}
.y1ec{bottom:447.118667pt;}
.y73{bottom:447.164000pt;}
.y1b1{bottom:447.348000pt;}
.y272{bottom:447.704000pt;}
.yaf{bottom:448.472000pt;}
.y156{bottom:449.701333pt;}
.y3b{bottom:449.976000pt;}
.ye8{bottom:452.878667pt;}
.yb0{bottom:453.294667pt;}
.y157{bottom:454.522667pt;}
.y2e1{bottom:457.060000pt;}
.y214{bottom:458.322667pt;}
.y3{bottom:458.744000pt;}
.y1ea{bottom:459.033333pt;}
.y1da{bottom:459.468000pt;}
.y297{bottom:459.677333pt;}
.yf9{bottom:460.234667pt;}
.y2ca{bottom:461.112000pt;}
.y72{bottom:461.474667pt;}
.y18f{bottom:461.909333pt;}
.y71{bottom:463.901333pt;}
.y271{bottom:464.441333pt;}
.yfa{bottom:464.574667pt;}
.y241{bottom:466.253333pt;}
.y155{bottom:466.438667pt;}
.y39{bottom:467.272000pt;}
.y1b0{bottom:468.070667pt;}
.y190{bottom:468.722667pt;}
.ye7{bottom:469.616000pt;}
.y3a{bottom:471.612000pt;}
.y2{bottom:474.644000pt;}
.y213{bottom:475.060000pt;}
.y296{bottom:475.298667pt;}
.y1e9{bottom:475.770667pt;}
.y2c9{bottom:476.454667pt;}
.yae{bottom:478.308000pt;}
.y18e{bottom:478.646667pt;}
.y153{bottom:480.441333pt;}
.y1d9{bottom:480.482667pt;}
.y70{bottom:480.638667pt;}
.y270{bottom:481.178667pt;}
.y152{bottom:483.176000pt;}
.y37{bottom:484.566667pt;}
.ye6{bottom:486.353333pt;}
.y154{bottom:487.997333pt;}
.y38{bottom:488.906667pt;}
.y1{bottom:490.544000pt;}
.y295{bottom:490.920000pt;}
.y212{bottom:491.797333pt;}
.y1e7{bottom:492.508000pt;}
.y240{bottom:493.626667pt;}
.yac{bottom:495.404000pt;}
.y1e8{bottom:497.330667pt;}
.y6f{bottom:497.376000pt;}
.y26f{bottom:497.916000pt;}
.yad{bottom:499.744000pt;}
.y150{bottom:499.912000pt;}
.y1af{bottom:500.954667pt;}
.y1d8{bottom:501.496000pt;}
.y36{bottom:501.862667pt;}
.y23f{bottom:502.740000pt;}
.ye5{bottom:503.090667pt;}
.y151{bottom:504.734667pt;}
.y2c8{bottom:507.138667pt;}
.y211{bottom:508.534667pt;}
.y18d{bottom:511.686667pt;}
.yaa{bottom:512.500000pt;}
.y131{bottom:513.714667pt;}
.y6e{bottom:514.113333pt;}
.yab{bottom:516.840000pt;}
.y1ae{bottom:517.705333pt;}
.y35{bottom:519.157333pt;}
.ye4{bottom:519.828000pt;}
.y1e6{bottom:522.344000pt;}
.y294{bottom:522.481333pt;}
.y1d7{bottom:522.510667pt;}
.y26d{bottom:523.022667pt;}
.y210{bottom:525.272000pt;}
.y26e{bottom:527.586667pt;}
.y12f{bottom:530.452000pt;}
.y6d{bottom:530.850667pt;}
.y1ad{bottom:532.317333pt;}
.y130{bottom:535.273333pt;}
.y34{bottom:536.452000pt;}
.ye3{bottom:536.565333pt;}
.y2c7{bottom:537.824000pt;}
.y23e{bottom:539.434667pt;}
.y14f{bottom:540.870667pt;}
.y293{bottom:543.204000pt;}
.y1d6{bottom:543.524000pt;}
.y26c{bottom:545.050667pt;}
.y18c{bottom:545.161333pt;}
.y20f{bottom:545.993333pt;}
.y1ac{bottom:546.928000pt;}
.y12d{bottom:547.189333pt;}
.y6c{bottom:547.588000pt;}
.ye1{bottom:551.309333pt;}
.y12e{bottom:552.010667pt;}
.y2c6{bottom:553.166667pt;}
.ye0{bottom:553.302667pt;}
.y32{bottom:553.748000pt;}
.y14e{bottom:555.482667pt;}
.y23d{bottom:556.172000pt;}
.y33{bottom:558.086667pt;}
.ye2{bottom:558.124000pt;}
.y292{bottom:559.941333pt;}
.y20e{bottom:560.304000pt;}
.y1ab{bottom:561.540000pt;}
.y18b{bottom:561.898667pt;}
.y20d{bottom:562.730667pt;}
.y12c{bottom:563.926667pt;}
.y6a{bottom:564.325333pt;}
.y1d5{bottom:564.538667pt;}
.y2c5{bottom:568.509333pt;}
.y6b{bottom:569.146667pt;}
.yde{bottom:570.040000pt;}
.y14d{bottom:570.094667pt;}
.y31{bottom:571.042667pt;}
.y23c{bottom:572.909333pt;}
.ydf{bottom:574.861333pt;}
.y26b{bottom:575.734667pt;}
.y1aa{bottom:576.152000pt;}
.y291{bottom:576.678667pt;}
.y20b{bottom:579.468000pt;}
.y11f{bottom:580.664000pt;}
.y69{bottom:581.062667pt;}
.y2c4{bottom:583.852000pt;}
.y20c{bottom:584.290667pt;}
.y12b{bottom:584.649333pt;}
.y14c{bottom:584.706667pt;}
.y1d4{bottom:585.552000pt;}
.ydd{bottom:586.777333pt;}
.y30{bottom:588.337333pt;}
.y23b{bottom:589.646667pt;}
.y1a9{bottom:590.764000pt;}
.y290{bottom:593.416000pt;}
.y189{bottom:595.373333pt;}
.y209{bottom:596.205333pt;}
.y11e{bottom:597.401333pt;}
.y68{bottom:597.800000pt;}
.y2c3{bottom:599.194667pt;}
.y14b{bottom:599.318667pt;}
.y20a{bottom:601.028000pt;}
.y18a{bottom:602.621333pt;}
.ydc{bottom:603.514667pt;}
.y1a8{bottom:605.376000pt;}
.y2e{bottom:605.633333pt;}
.y23a{bottom:606.384000pt;}
.y1d3{bottom:606.566667pt;}
.y26a{bottom:608.137333pt;}
.y2f{bottom:609.973333pt;}
.y28f{bottom:610.153333pt;}
.y208{bottom:612.942667pt;}
.y11d{bottom:614.138667pt;}
.y67{bottom:614.537333pt;}
.y1a7{bottom:619.988000pt;}
.ydb{bottom:620.252000pt;}
.y14a{bottom:620.332000pt;}
.y269{bottom:622.150667pt;}
.y2d{bottom:622.928000pt;}
.y239{bottom:623.121333pt;}
.y268{bottom:624.874667pt;}
.y28e{bottom:626.890667pt;}
.y1d2{bottom:627.580000pt;}
.y2c2{bottom:629.878667pt;}
.y11c{bottom:630.876000pt;}
.y66{bottom:631.274667pt;}
.y207{bottom:633.665333pt;}
.y1a6{bottom:634.600000pt;}
.yda{bottom:636.989333pt;}
.y2c{bottom:640.224000pt;}
.y149{bottom:641.346667pt;}
.y28d{bottom:643.628000pt;}
.y238{bottom:643.844000pt;}
.y2c1{bottom:645.221333pt;}
.y11b{bottom:647.613333pt;}
.y65{bottom:648.012000pt;}
.y1d1{bottom:648.593333pt;}
.y1a5{bottom:649.212000pt;}
.y206{bottom:651.597333pt;}
.y12a{bottom:652.833333pt;}
.yd9{bottom:653.726667pt;}
.y267{bottom:655.560000pt;}
.y148{bottom:655.957333pt;}
.y2b{bottom:657.518667pt;}
.y2c0{bottom:660.564000pt;}
.y237{bottom:661.777333pt;}
.y188{bottom:662.322667pt;}
.y1a4{bottom:663.824000pt;}
.y11a{bottom:664.350667pt;}
.y64{bottom:664.748000pt;}
.y125{bottom:664.749333pt;}
.y1d0{bottom:669.608000pt;}
.yd8{bottom:670.462667pt;}
.y147{bottom:670.569333pt;}
.y2a{bottom:674.813333pt;}
.y2bf{bottom:675.906667pt;}
.y1a3{bottom:678.436000pt;}
.y187{bottom:679.060000pt;}
.y118{bottom:681.088000pt;}
.y63{bottom:681.485333pt;}
.y266{bottom:684.313333pt;}
.y146{bottom:685.181333pt;}
.y119{bottom:685.909333pt;}
.y129{bottom:686.308000pt;}
.yd7{bottom:687.200000pt;}
.y265{bottom:689.218667pt;}
.y1cf{bottom:690.621333pt;}
.y2be{bottom:691.249333pt;}
.y29{bottom:692.109333pt;}
.y236{bottom:694.661333pt;}
.y96{bottom:697.825333pt;}
.y62{bottom:698.222667pt;}
.y1a2{bottom:699.449333pt;}
.y145{bottom:699.793333pt;}
.y186{bottom:703.045333pt;}
.yd6{bottom:703.937333pt;}
.y2bd{bottom:706.592000pt;}
.y264{bottom:709.002667pt;}
.y28{bottom:709.404000pt;}
.y235{bottom:711.412000pt;}
.y1ce{bottom:711.636000pt;}
.y94{bottom:714.562667pt;}
.y61{bottom:714.960000pt;}
.y95{bottom:719.384000pt;}
.y1a1{bottom:720.464000pt;}
.yd5{bottom:720.674667pt;}
.y144{bottom:720.808000pt;}
.y2bc{bottom:721.934667pt;}
.y234{bottom:726.022667pt;}
.y27{bottom:726.698667pt;}
.y93{bottom:731.300000pt;}
.y60{bottom:731.697333pt;}
.y1cd{bottom:732.649333pt;}
.y263{bottom:734.782667pt;}
.y117{bottom:736.121333pt;}
.y2bb{bottom:737.277333pt;}
.yd3{bottom:737.412000pt;}
.y262{bottom:739.688000pt;}
.y233{bottom:740.634667pt;}
.y143{bottom:741.821333pt;}
.yd4{bottom:742.234667pt;}
.y185{bottom:746.008000pt;}
.y92{bottom:748.036000pt;}
.y5f{bottom:748.434667pt;}
.y1a0{bottom:748.569333pt;}
.y2ba{bottom:752.620000pt;}
.y1cc{bottom:753.664000pt;}
.yd1{bottom:754.149333pt;}
.y232{bottom:755.246667pt;}
.y142{bottom:756.433333pt;}
.y26{bottom:758.810667pt;}
.yd2{bottom:758.972000pt;}
.y184{bottom:762.745333pt;}
.y90{bottom:764.773333pt;}
.y5e{bottom:765.172000pt;}
.y19e{bottom:765.665333pt;}
.y2b9{bottom:767.961333pt;}
.y91{bottom:769.596000pt;}
.y231{bottom:769.858667pt;}
.y124{bottom:769.994667pt;}
.y19f{bottom:770.005333pt;}
.y141{bottom:771.045333pt;}
.y25{bottom:773.157333pt;}
.y261{bottom:773.420000pt;}
.y1cb{bottom:774.677333pt;}
.y8f{bottom:781.510667pt;}
.y5d{bottom:781.909333pt;}
.y2b8{bottom:783.304000pt;}
.y140{bottom:785.657333pt;}
.y230{bottom:790.873333pt;}
.y24{bottom:791.361333pt;}
.yd0{bottom:794.560000pt;}
.y1ca{bottom:795.692000pt;}
.y183{bottom:796.220000pt;}
.y8e{bottom:798.248000pt;}
.y25f{bottom:798.433333pt;}
.y5c{bottom:798.646667pt;}
.y13f{bottom:800.269333pt;}
.y23{bottom:801.850667pt;}
.y260{bottom:802.640000pt;}
.y22{bottom:805.708000pt;}
.ycf{bottom:809.172000pt;}
.y25e{bottom:812.821333pt;}
.y182{bottom:812.957333pt;}
.y2b7{bottom:813.989333pt;}
.y115{bottom:814.985333pt;}
.y5b{bottom:815.384000pt;}
.y21{bottom:816.196000pt;}
.y1c9{bottom:816.705333pt;}
.y25d{bottom:817.726667pt;}
.y8d{bottom:818.970667pt;}
.y22f{bottom:818.978667pt;}
.y116{bottom:819.808000pt;}
.y19d{bottom:820.206667pt;}
.y13e{bottom:821.282667pt;}
.yce{bottom:823.784000pt;}
.y2b6{bottom:829.332000pt;}
.y114{bottom:831.722667pt;}
.y5a{bottom:832.121333pt;}
.y20{bottom:834.400000pt;}
.y28c{bottom:835.708000pt;}
.y22e{bottom:836.074667pt;}
.y19c{bottom:836.944000pt;}
.y1c8{bottom:837.720000pt;}
.ycd{bottom:838.396000pt;}
.y13d{bottom:842.297333pt;}
.y2b5{bottom:844.674667pt;}
.y181{bottom:846.432000pt;}
.y113{bottom:848.460000pt;}
.y1f{bottom:848.746667pt;}
.y59{bottom:848.858667pt;}
.y25c{bottom:851.460000pt;}
.ycc{bottom:853.008000pt;}
.y19b{bottom:853.681333pt;}
.y1c7{bottom:858.733333pt;}
.y2b4{bottom:860.017333pt;}
.ya9{bottom:861.610667pt;}
.y180{bottom:863.169333pt;}
.y58{bottom:865.596000pt;}
.y25b{bottom:865.770667pt;}
.ycb{bottom:867.620000pt;}
.y13c{bottom:867.650667pt;}
.y25a{bottom:868.197333pt;}
.y112{bottom:869.182667pt;}
.y19a{bottom:870.417333pt;}
.y2b3{bottom:875.360000pt;}
.ya8{bottom:878.348000pt;}
.y1c6{bottom:879.748000pt;}
.y57{bottom:882.333333pt;}
.y13b{bottom:884.926667pt;}
.y259{bottom:884.934667pt;}
.y1e{bottom:886.273333pt;}
.y199{bottom:887.154667pt;}
.yc9{bottom:888.633333pt;}
.y2e0{bottom:890.701333pt;}
.y2b2{bottom:890.702667pt;}
.ya7{bottom:895.085333pt;}
.yca{bottom:895.940000pt;}
.y17e{bottom:896.644000pt;}
.y56{bottom:899.070667pt;}
.y1c5{bottom:900.761333pt;}
.yc8{bottom:903.245333pt;}
.y17f{bottom:903.892000pt;}
.y2b1{bottom:906.044000pt;}
.ya6{bottom:911.822667pt;}
.y258{bottom:912.508000pt;}
.y13a{bottom:915.690667pt;}
.y55{bottom:915.808000pt;}
.yc7{bottom:917.857333pt;}
.y17d{bottom:920.629333pt;}
.y2b0{bottom:921.386667pt;}
.y1d{bottom:921.756000pt;}
.y1c4{bottom:921.776000pt;}
.ya5{bottom:928.560000pt;}
.y17b{bottom:930.118667pt;}
.y28b{bottom:930.553333pt;}
.y257{bottom:930.613333pt;}
.y139{bottom:930.993333pt;}
.y54{bottom:932.545333pt;}
.y138{bottom:932.785333pt;}
.y2af{bottom:936.729333pt;}
.y17c{bottom:937.366667pt;}
.yc6{bottom:938.872000pt;}
.ya4{bottom:945.297333pt;}
.yf8{bottom:946.548000pt;}
.y289{bottom:946.850667pt;}
.y28a{bottom:946.856000pt;}
.y1c{bottom:946.862667pt;}
.y136{bottom:947.550667pt;}
.y137{bottom:948.088000pt;}
.y53{bottom:949.282667pt;}
.y135{bottom:949.881333pt;}
.y2ae{bottom:952.072000pt;}
.y198{bottom:954.104000pt;}
.y256{bottom:958.156000pt;}
.ya2{bottom:962.034667pt;}
.y287{bottom:963.285333pt;}
.y288{bottom:963.588000pt;}
.y1c3{bottom:965.184000pt;}
.y52{bottom:966.020000pt;}
.ya3{bottom:966.856000pt;}
.yc5{bottom:966.977333pt;}
.y2ad{bottom:967.414667pt;}
.y255{bottom:968.216000pt;}
.y22d{bottom:970.841333pt;}
.y1b{bottom:971.968000pt;}
.y17a{bottom:980.330667pt;}
.y51{bottom:982.757333pt;}
.yc4{bottom:984.073333pt;}
.y123{bottom:987.578667pt;}
.y134{bottom:988.413333pt;}
.y17{bottom:1010.624000pt;}
.y50{bottom:1038.548000pt;}
.h3b{height:20.425455pt;}
.h17{height:22.523597pt;}
.hb{height:23.209028pt;}
.h22{height:23.623475pt;}
.h15{height:25.026051pt;}
.hf{height:25.811318pt;}
.h1c{height:26.248130pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h14{height:28.023859pt;}
.h12{height:29.397999pt;}
.h2d{height:29.599908pt;}
.h39{height:30.587332pt;}
.hc{height:30.945242pt;}
.h13{height:31.157778pt;}
.h5{height:31.890083pt;}
.h1a{height:32.805069pt;}
.h27{height:33.186336pt;}
.h23{height:33.474560pt;}
.hd{height:34.430976pt;}
.he{height:34.813542pt;}
.h6{height:35.024664pt;}
.h1d{height:35.052646pt;}
.h26{height:36.873667pt;}
.h24{height:37.193707pt;}
.h28{height:37.553321pt;}
.h2e{height:38.024431pt;}
.h10{height:38.256384pt;}
.h11{height:38.681455pt;}
.h8{height:38.947124pt;}
.h7{height:41.001535pt;}
.h19{height:43.165985pt;}
.h18{height:43.171318pt;}
.h20{height:44.436941pt;}
.h4{height:45.272024pt;}
.h21{height:46.580334pt;}
.h16{height:47.309193pt;}
.h25{height:47.314526pt;}
.ha{height:48.360277pt;}
.h3c{height:48.683332pt;}
.h29{height:48.688666pt;}
.h30{height:48.885242pt;}
.h38{height:53.505067pt;}
.h36{height:59.039908pt;}
.h32{height:59.045242pt;}
.h37{height:60.585733pt;}
.h34{height:60.591067pt;}
.h35{height:61.145733pt;}
.h1b{height:63.657643pt;}
.h1f{height:64.034876pt;}
.h1e{height:64.040209pt;}
.h2f{height:68.191908pt;}
.h9{height:68.861952pt;}
.h2c{height:75.129455pt;}
.h2a{height:76.937733pt;}
.h2b{height:76.943067pt;}
.h3a{height:81.639733pt;}
.h31{height:87.994575pt;}
.h33{height:95.493242pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x3{left:53.357850pt;}
.xa1{left:60.342667pt;}
.x115{left:76.309333pt;}
.xa4{left:80.260000pt;}
.xa5{left:83.924000pt;}
.xa3{left:151.213333pt;}
.x2{left:161.132773pt;}
.xa2{left:171.448000pt;}
.x11a{left:211.989333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x104{left:223.578667pt;}
.x80{left:228.520000pt;}
.xaf{left:229.532000pt;}
.xc8{left:231.169333pt;}
.x119{left:232.664000pt;}
.x105{left:234.124000pt;}
.xec{left:235.140000pt;}
.x100{left:236.442667pt;}
.x63{left:238.682667pt;}
.x5{left:239.924000pt;}
.x84{left:241.102667pt;}
.xc9{left:242.002667pt;}
.x94{left:245.477333pt;}
.x6c{left:247.457333pt;}
.x15{left:250.204000pt;}
.x6d{left:251.970667pt;}
.x70{left:253.158667pt;}
.xed{left:254.542667pt;}
.xca{left:256.629333pt;}
.x81{left:257.982667pt;}
.x71{left:259.209333pt;}
.x10e{left:261.340000pt;}
.xf9{left:262.705333pt;}
.x62{left:266.944000pt;}
.xfa{left:268.754667pt;}
.xee{left:270.488000pt;}
.x19{left:271.976000pt;}
.x8f{left:273.609333pt;}
.x7{left:275.030667pt;}
.xf1{left:276.369333pt;}
.x1a{left:278.617333pt;}
.xf2{left:280.033333pt;}
.x98{left:281.080000pt;}
.x54{left:282.908000pt;}
.x1b{left:285.385333pt;}
.x14{left:286.956000pt;}
.x55{left:288.958667pt;}
.x99{left:290.829333pt;}
.x1c{left:292.026667pt;}
.xd0{left:292.990667pt;}
.x8d{left:297.189333pt;}
.xe8{left:298.209333pt;}
.x101{left:301.860000pt;}
.x31{left:303.024000pt;}
.x66{left:305.172000pt;}
.x9a{left:307.472000pt;}
.x56{left:308.738667pt;}
.x65{left:310.869333pt;}
.xa7{left:312.110667pt;}
.x5d{left:314.386667pt;}
.xf4{left:315.280000pt;}
.x32{left:316.308000pt;}
.xb5{left:317.428000pt;}
.x85{left:318.850667pt;}
.x57{left:322.022667pt;}
.xb6{left:323.477333pt;}
.xde{left:324.529333pt;}
.x64{left:325.430667pt;}
.xbe{left:326.580000pt;}
.x7e{left:327.697333pt;}
.xdc{left:328.598667pt;}
.x5e{left:329.626667pt;}
.x9b{left:331.382667pt;}
.xbf{left:332.629333pt;}
.xdd{left:334.649333pt;}
.x5f{left:336.932000pt;}
.xe{left:340.002667pt;}
.x7f{left:340.981333pt;}
.x86{left:342.537333pt;}
.x28{left:344.698667pt;}
.xf{left:345.628000pt;}
.x114{left:347.324000pt;}
.x9c{left:349.364000pt;}
.xfd{left:354.610667pt;}
.xac{left:356.149333pt;}
.x29{left:357.982667pt;}
.x89{left:360.076000pt;}
.x2a{left:361.297333pt;}
.x6e{left:362.797333pt;}
.x9d{left:366.005333pt;}
.xe2{left:367.261333pt;}
.x6f{left:368.846667pt;}
.x37{left:371.336000pt;}
.x3f{left:373.350667pt;}
.x2b{left:374.580000pt;}
.x9e{left:376.666667pt;}
.x40{left:379.401333pt;}
.x67{left:380.892000pt;}
.x106{left:381.894667pt;}
.x38{left:384.620000pt;}
.x91{left:385.986667pt;}
.x78{left:387.064000pt;}
.xae{left:389.070667pt;}
.x23{left:390.336000pt;}
.x42{left:392.037333pt;}
.x9f{left:394.648000pt;}
.xf8{left:396.496000pt;}
.x41{left:397.481333pt;}
.x8a{left:398.884000pt;}
.x43{left:401.068000pt;}
.xf0{left:402.578667pt;}
.x24{left:403.618667pt;}
.x12{left:404.877333pt;}
.xa0{left:406.406667pt;}
.x10a{left:407.773333pt;}
.x13{left:410.501333pt;}
.x108{left:411.553333pt;}
.x10b{left:413.960000pt;}
.x107{left:415.594667pt;}
.x2c{left:416.554667pt;}
.xc{left:420.036000pt;}
.x25{left:423.624000pt;}
.xa{left:424.598667pt;}
.xd{left:425.660000pt;}
.x58{left:427.436000pt;}
.xb{left:430.222667pt;}
.xa8{left:433.084000pt;}
.x8b{left:435.816000pt;}
.x16{left:437.449333pt;}
.xa9{left:439.133333pt;}
.x90{left:440.026667pt;}
.x4a{left:441.109333pt;}
.xb0{left:442.662667pt;}
.x17{left:444.224000pt;}
.xfc{left:445.316000pt;}
.x4b{left:447.158667pt;}
.xe3{left:448.674667pt;}
.x18{left:450.865333pt;}
.xd1{left:451.917333pt;}
.x1d{left:453.561333pt;}
.x33{left:456.162667pt;}
.x10{left:458.244000pt;}
.x1e{left:460.204000pt;}
.x34{left:461.874667pt;}
.x11{left:463.869333pt;}
.xb1{left:465.409333pt;}
.x1f{left:466.978667pt;}
.xdb{left:468.513333pt;}
.x4c{left:470.192000pt;}
.x7b{left:471.722667pt;}
.xcd{left:473.006667pt;}
.x75{left:474.288000pt;}
.x8c{left:476.002667pt;}
.xe4{left:478.452000pt;}
.x20{left:480.261333pt;}
.x39{left:481.733333pt;}
.xad{left:482.850667pt;}
.xcb{left:484.096000pt;}
.x4d{left:485.709333pt;}
.x111{left:486.752000pt;}
.xc3{left:488.521333pt;}
.x3a{left:489.937333pt;}
.x4e{left:491.686667pt;}
.xb3{left:493.134667pt;}
.xa6{left:495.502667pt;}
.x96{left:496.670667pt;}
.xe9{left:497.912000pt;}
.x3b{left:504.738667pt;}
.x112{left:506.576000pt;}
.x46{left:509.069333pt;}
.x3c{left:510.789333pt;}
.xb4{left:512.122667pt;}
.xd2{left:513.104000pt;}
.x60{left:515.098667pt;}
.xd3{left:519.154667pt;}
.xdf{left:520.210667pt;}
.x61{left:521.149333pt;}
.x47{left:522.353333pt;}
.x10c{left:523.662667pt;}
.xe0{left:526.260000pt;}
.x6a{left:529.674667pt;}
.x82{left:530.609333pt;}
.x109{left:534.092000pt;}
.x69{left:535.373333pt;}
.xb7{left:542.312000pt;}
.x2d{left:543.325333pt;}
.xfb{left:544.266667pt;}
.xff{left:545.766667pt;}
.xb8{left:548.362667pt;}
.x68{left:549.934667pt;}
.x48{left:551.646667pt;}
.xb9{left:552.877333pt;}
.x2e{left:556.609333pt;}
.x49{left:557.697333pt;}
.xba{left:562.022667pt;}
.xef{left:563.090667pt;}
.xea{left:565.208000pt;}
.xeb{left:571.257333pt;}
.xbb{left:572.534667pt;}
.x44{left:574.716000pt;}
.x10f{left:576.818667pt;}
.xcc{left:579.094667pt;}
.xaa{left:580.088000pt;}
.xf5{left:584.036000pt;}
.x113{left:585.482667pt;}
.x45{left:587.998667pt;}
.xbc{left:590.480000pt;}
.xd9{left:591.394667pt;}
.x4f{left:592.830667pt;}
.x117{left:594.634667pt;}
.x110{left:595.646667pt;}
.x97{left:599.098667pt;}
.xd4{left:600.396000pt;}
.xbd{left:602.532000pt;}
.x6b{left:605.396000pt;}
.xd5{left:606.446667pt;}
.xce{left:607.449333pt;}
.x50{left:608.348000pt;}
.xda{left:611.062667pt;}
.xcf{left:613.500000pt;}
.x51{left:615.652000pt;}
.xe7{left:619.294667pt;}
.x8{left:623.745333pt;}
.x92{left:625.269333pt;}
.x2f{left:627.613333pt;}
.x9{left:629.370667pt;}
.x93{left:631.318667pt;}
.x30{left:633.662667pt;}
.x35{left:635.054667pt;}
.x7c{left:638.390667pt;}
.x36{left:640.766667pt;}
.xe5{left:642.833333pt;}
.x83{left:645.868000pt;}
.x116{left:647.454667pt;}
.xc5{left:648.466667pt;}
.xf6{left:649.598667pt;}
.xd6{left:651.577333pt;}
.xc4{left:652.681333pt;}
.x52{left:654.206667pt;}
.x8e{left:657.202667pt;}
.xab{left:658.161333pt;}
.x53{left:661.592000pt;}
.xf7{left:662.881333pt;}
.x76{left:663.781333pt;}
.xc6{left:666.400000pt;}
.xe1{left:667.833333pt;}
.x77{left:669.406667pt;}
.x102{left:670.321333pt;}
.xd7{left:671.473333pt;}
.xb2{left:672.601333pt;}
.xc0{left:673.756000pt;}
.x118{left:675.244000pt;}
.x7d{left:676.264000pt;}
.x21{left:679.406667pt;}
.x95{left:681.777333pt;}
.xfe{left:683.166667pt;}
.xc7{left:684.104000pt;}
.x3d{left:688.214667pt;}
.xd8{left:689.413333pt;}
.x22{left:690.729333pt;}
.x10d{left:691.888000pt;}
.x103{left:697.520000pt;}
.x3e{left:701.497333pt;}
.x72{left:705.930667pt;}
.x87{left:711.040000pt;}
.xe6{left:712.513333pt;}
.x59{left:715.532000pt;}
.x79{left:718.050667pt;}
.x5a{left:721.157333pt;}
.x7a{left:723.674667pt;}
.x26{left:727.113333pt;}
.xc1{left:728.546667pt;}
.x74{left:730.280000pt;}
.x88{left:731.193333pt;}
.xc2{left:734.597333pt;}
.x5b{left:736.857333pt;}
.xf3{left:739.161333pt;}
.x27{left:740.397333pt;}
.x5c{left:742.836000pt;}
.x73{left:744.770667pt;}
}




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