
    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_0dbc4e873aaf59a8373443fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_446fee083b903e2aef60647e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_6a60e8c26e37f5fa7cf47037.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_e574fc758c5bc8eeeae9bd45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.133000;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_d7e7975541f2e01a5f1af105.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.223000;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_da32c4e88adc81f42ad36a05.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_d183c2d8f8e822dae313d484.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948000;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_c0c9edb8c4a7be06e58ed024.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.066000;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_5e79e73259628f63fb745e23.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202000;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_43f8083fea50d2afb027da29.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.629000;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_bf7b6b9e1a7e6b3cdee6aa14.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.483000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7785ef680ccd84a1864afb8e.woff2')format("woff");}.fff{font-family:fff;line-height:1.444000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d9913ffb7cae369fe2a359cc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_154f55680e72413a79883ab2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_cf02abcfef3101af16ada8e4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_129ef6c48f3ed807c24bfcac.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1c4bc606c88254adf2421300.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.870000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_c986ef5671aaf1248dd55884.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_06fc69f9cce0301d76b879f0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d46909e9b9f21611b90472e1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.879000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_027d94c5cc4c583cc588c590.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_129ef6c48f3ed807c24bfcac.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_14238906a8e88609bf260e63.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_5e0c98b9d242a224528f8e24.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_1a778f851b47de2d2f04be51.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_4940a3e7a89d52867031ce11.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_9aee95d313aad9c2e6a2dc52.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_a1db3187a795c0a6d890b4b5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_90016703896d6264067d85f4.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_3d8feea72edeb6f4e11a10ab.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_3fa7013f4024b56f2761dc47.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_1f93137301a4ecf5a153aeed.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.885778;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_edadd22e37409185d3201c1a.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.885778;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:ff25;src:url('chunks/assets/font_710d499fecf60f3292786ff5.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.885778;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:ff26;src:url('chunks/assets/font_779357da6e5579486145a253.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.885778;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:ff27;src:url('chunks/assets/font_b21714a880652e14ab572529.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.885778;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:ff28;src:url('chunks/assets/font_fc7f102c33b745031bc10544.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.885778;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;}
.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);}
.m1{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);}
.v3{vertical-align:-18.000000px;}
.v6{vertical-align:-13.663696px;}
.v8{vertical-align:-11.502319px;}
.v5{vertical-align:-8.803345px;}
.v7{vertical-align:-7.453491px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v9{vertical-align:7.686035px;}
.v4{vertical-align:8.803345px;}
.va{vertical-align:18.000092px;}
.v2{vertical-align:26.399780px;}
.ls8d{letter-spacing:-2.058000px;}
.lsb3{letter-spacing:-1.176000px;}
.ls8{letter-spacing:-1.050000px;}
.lse{letter-spacing:-0.912000px;}
.ls90{letter-spacing:-0.823200px;}
.lsd{letter-spacing:-0.705600px;}
.lsf{letter-spacing:-0.624000px;}
.lsb1{letter-spacing:-0.294000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000002px;}
.lsb2{letter-spacing:0.000070px;}
.ls16{letter-spacing:0.000876px;}
.ls84{letter-spacing:0.001042px;}
.ls9a{letter-spacing:0.001062px;}
.ls3e{letter-spacing:0.001164px;}
.ls28{letter-spacing:0.001356px;}
.ls4d{letter-spacing:0.001391px;}
.ls49{letter-spacing:0.001437px;}
.ls6b{letter-spacing:0.002237px;}
.ls55{letter-spacing:0.003440px;}
.ls78{letter-spacing:0.005322px;}
.ls98{letter-spacing:0.005508px;}
.ls82{letter-spacing:0.005563px;}
.ls22{letter-spacing:0.005696px;}
.lsa8{letter-spacing:0.005788px;}
.lsac{letter-spacing:0.005790px;}
.ls7d{letter-spacing:0.005869px;}
.ls1f{letter-spacing:0.005879px;}
.lsa2{letter-spacing:0.006737px;}
.ls12{letter-spacing:0.007287px;}
.ls3a{letter-spacing:0.007288px;}
.ls2a{letter-spacing:0.007526px;}
.ls19{letter-spacing:0.007653px;}
.ls4f{letter-spacing:0.007745px;}
.ls53{letter-spacing:0.007836px;}
.lsa9{letter-spacing:0.008243px;}
.ls40{letter-spacing:0.011599px;}
.ls3c{letter-spacing:0.011645px;}
.ls38{letter-spacing:0.011690px;}
.ls8f{letter-spacing:0.037706px;}
.ls94{letter-spacing:0.038195px;}
.ls95{letter-spacing:0.038951px;}
.ls93{letter-spacing:0.039031px;}
.ls92{letter-spacing:0.039918px;}
.ls91{letter-spacing:0.039978px;}
.ls8e{letter-spacing:0.042086px;}
.ls25{letter-spacing:0.044702px;}
.ls6{letter-spacing:0.676200px;}
.ls4{letter-spacing:0.823200px;}
.ls5{letter-spacing:0.834960px;}
.lsa{letter-spacing:1.176000px;}
.lsc{letter-spacing:1.193614px;}
.lsb{letter-spacing:1.293600px;}
.ls3{letter-spacing:1.411200px;}
.ls2{letter-spacing:1.470000px;}
.ls9{letter-spacing:1.475880px;}
.ls79{letter-spacing:2.558083px;}
.ls7c{letter-spacing:2.558266px;}
.ls7f{letter-spacing:2.603862px;}
.ls87{letter-spacing:2.606370px;}
.ls89{letter-spacing:2.606737px;}
.ls83{letter-spacing:2.608568px;}
.ls75{letter-spacing:2.611721px;}
.ls72{letter-spacing:2.612270px;}
.ls6f{letter-spacing:2.613552px;}
.ls74{letter-spacing:2.614101px;}
.ls9d{letter-spacing:2.625483px;}
.ls9f{letter-spacing:2.626032px;}
.ls99{letter-spacing:2.626215px;}
.lsa6{letter-spacing:2.634418px;}
.lsa3{letter-spacing:2.636798px;}
.ls8a{letter-spacing:2.655259px;}
.ls8b{letter-spacing:2.655992px;}
.ls9e{letter-spacing:2.672907px;}
.ls67{letter-spacing:2.673017px;}
.ls69{letter-spacing:2.673567px;}
.ls6c{letter-spacing:2.720808px;}
.ls2f{letter-spacing:2.818062px;}
.ls29{letter-spacing:2.818611px;}
.ls2d{letter-spacing:2.818613px;}
.ls31{letter-spacing:2.818657px;}
.ls30{letter-spacing:2.869606px;}
.ls60{letter-spacing:2.988417px;}
.ls5e{letter-spacing:2.988600px;}
.ls5c{letter-spacing:2.988966px;}
.ls61{letter-spacing:2.989149px;}
.ls46{letter-spacing:2.991006px;}
.ls54{letter-spacing:2.991463px;}
.ls4a{letter-spacing:2.991555px;}
.ls1b{letter-spacing:2.991647px;}
.ls56{letter-spacing:2.993295px;}
.ls1a{letter-spacing:2.993478px;}
.ls18{letter-spacing:2.993844px;}
.ls44{letter-spacing:2.993935px;}
.ls24{letter-spacing:2.994021px;}
.ls13{letter-spacing:2.994027px;}
.ls39{letter-spacing:2.994788px;}
.ls3f{letter-spacing:2.997168px;}
.ls42{letter-spacing:3.044930px;}
.ls45{letter-spacing:3.045022px;}
.ls4e{letter-spacing:3.047402px;}
.ls21{letter-spacing:3.047494px;}
.lsb0{letter-spacing:3.047860px;}
.ls4c{letter-spacing:3.047951px;}
.ls23{letter-spacing:3.048043px;}
.ls3b{letter-spacing:3.048804px;}
.ls7b{letter-spacing:3.342324px;}
.lsa5{letter-spacing:3.398883px;}
.ls85{letter-spacing:3.409471px;}
.ls71{letter-spacing:3.415738px;}
.ls9b{letter-spacing:3.431879px;}
.ls68{letter-spacing:3.493696px;}
.ls2b{letter-spacing:3.681404px;}
.ls37{letter-spacing:3.751972px;}
.ls5d{letter-spacing:3.797194px;}
.ls43{letter-spacing:3.858559px;}
.lsaf{letter-spacing:3.858651px;}
.ls52{letter-spacing:3.910287px;}
.lsaa{letter-spacing:3.910744px;}
.ls15{letter-spacing:3.910836px;}
.ls20{letter-spacing:3.912484px;}
.lsad{letter-spacing:3.912576px;}
.ls4b{letter-spacing:3.912667px;}
.ls6e{letter-spacing:5.238414px;}
.ls6a{letter-spacing:5.304924px;}
.ls1{letter-spacing:5.460000px;}
.ls27{letter-spacing:5.593138px;}
.ls48{letter-spacing:5.940800px;}
.ls36{letter-spacing:5.953680px;}
.ls51{letter-spacing:5.999620px;}
.ls88{letter-spacing:10.404156px;}
.ls35{letter-spacing:10.964694px;}
.ls34{letter-spacing:11.014308px;}
.ls7e{letter-spacing:11.156965px;}
.ls7a{letter-spacing:11.207221px;}
.ls86{letter-spacing:11.377944px;}
.ls70{letter-spacing:11.401254px;}
.ls8c{letter-spacing:11.429196px;}
.ls73{letter-spacing:11.452611px;}
.ls9c{letter-spacing:11.505328px;}
.lsa4{letter-spacing:11.552426px;}
.ls65{letter-spacing:11.660328px;}
.ls59{letter-spacing:11.677777px;}
.ls64{letter-spacing:11.712852px;}
.ls5a{letter-spacing:11.730380px;}
.ls5f{letter-spacing:11.940790px;}
.ls2c{letter-spacing:12.293827px;}
.ls32{letter-spacing:12.349205px;}
.ls17{letter-spacing:13.057996px;}
.ls14{letter-spacing:13.116815px;}
.ls76{letter-spacing:13.816506px;}
.ls80{letter-spacing:14.087633px;}
.ls6d{letter-spacing:14.116787px;}
.ls96{letter-spacing:14.182001px;}
.lsa0{letter-spacing:14.242023px;}
.ls63{letter-spacing:14.439558px;}
.ls58{letter-spacing:14.815749px;}
.ls26{letter-spacing:15.221809px;}
.lsae{letter-spacing:16.167550px;}
.lsab{letter-spacing:16.167596px;}
.lsa7{letter-spacing:16.168191px;}
.ls10{letter-spacing:16.169930px;}
.ls1d{letter-spacing:16.170113px;}
.ls41{letter-spacing:16.170576px;}
.ls47{letter-spacing:16.170663px;}
.lsa1{letter-spacing:16.784690px;}
.ls3d{letter-spacing:17.017602px;}
.ls66{letter-spacing:17.017775px;}
.ls2e{letter-spacing:17.942342px;}
.ls11{letter-spacing:19.057615px;}
.ls33{letter-spacing:19.795986px;}
.ls62{letter-spacing:19.959119px;}
.ls57{letter-spacing:20.567617px;}
.ls77{letter-spacing:21.359054px;}
.ls81{letter-spacing:21.782100px;}
.ls97{letter-spacing:21.927195px;}
.ls1c{letter-spacing:22.292704px;}
.ls50{letter-spacing:22.351524px;}
.ls5b{letter-spacing:23.671170px;}
.ls1e{letter-spacing:24.998415px;}
.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;}
}
.ws2{word-spacing:-21.216000px;}
.ws76{word-spacing:-14.994000px;}
.ws2d{word-spacing:-13.818000px;}
.wsa8{word-spacing:-13.112400px;}
.ws4{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.ws15f{word-spacing:-11.426400px;}
.ws1{word-spacing:-10.176000px;}
.ws3{word-spacing:-10.117800px;}
.ws15d{word-spacing:-9.855000px;}
.ws15c{word-spacing:-9.315000px;}
.wsaa{word-spacing:-9.024000px;}
.ws6{word-spacing:-8.148000px;}
.ws15e{word-spacing:-6.898500px;}
.wse5{word-spacing:-4.512000px;}
.wse6{word-spacing:-3.936000px;}
.ws16a{word-spacing:-3.870000px;}
.wsa{word-spacing:-1.470000px;}
.ws82{word-spacing:-1.176000px;}
.ws40{word-spacing:-0.999600px;}
.wsdd{word-spacing:-0.940800px;}
.ws23{word-spacing:-0.823200px;}
.ws46{word-spacing:-0.705600px;}
.ws14f{word-spacing:-0.588000px;}
.ws9e{word-spacing:-0.529200px;}
.ws35{word-spacing:-0.411600px;}
.ws148{word-spacing:-0.294000px;}
.wsb2{word-spacing:-0.235200px;}
.ws66{word-spacing:-0.176400px;}
.ws169{word-spacing:-0.135000px;}
.wscb{word-spacing:-0.089405px;}
.wsed{word-spacing:-0.084173px;}
.wsff{word-spacing:-0.079956px;}
.ws106{word-spacing:-0.079836px;}
.ws10c{word-spacing:-0.078062px;}
.ws119{word-spacing:-0.077903px;}
.ws113{word-spacing:-0.076390px;}
.wsf3{word-spacing:-0.075413px;}
.wsc5{word-spacing:-0.058820px;}
.wse8{word-spacing:-0.055378px;}
.wsfa{word-spacing:-0.052603px;}
.ws100{word-spacing:-0.052524px;}
.ws139{word-spacing:-0.051805px;}
.ws135{word-spacing:-0.051593px;}
.ws108{word-spacing:-0.051357px;}
.ws115{word-spacing:-0.051252px;}
.ws10e{word-spacing:-0.050257px;}
.wsef{word-spacing:-0.049614px;}
.wsf9{word-spacing:-0.044702px;}
.wse9{word-spacing:-0.042086px;}
.wsfc{word-spacing:-0.039978px;}
.ws136{word-spacing:-0.039211px;}
.ws116{word-spacing:-0.038951px;}
.ws0{word-spacing:0.000000px;}
.ws33{word-spacing:0.058800px;}
.ws14e{word-spacing:0.117600px;}
.ws27{word-spacing:0.176400px;}
.ws86{word-spacing:0.235200px;}
.ws53{word-spacing:0.352800px;}
.ws14{word-spacing:0.411600px;}
.ws63{word-spacing:0.529200px;}
.ws5e{word-spacing:0.588000px;}
.ws2b{word-spacing:0.646800px;}
.ws1c{word-spacing:0.705600px;}
.ws161{word-spacing:0.764400px;}
.wsd7{word-spacing:0.823200px;}
.ws7b{word-spacing:0.882000px;}
.ws30{word-spacing:0.999600px;}
.ws1b{word-spacing:1.117200px;}
.ws168{word-spacing:1.176000px;}
.ws156{word-spacing:1.234800px;}
.ws47{word-spacing:1.293600px;}
.ws124{word-spacing:1.352400px;}
.wsa3{word-spacing:1.470000px;}
.wsb4{word-spacing:1.528800px;}
.ws94{word-spacing:1.587600px;}
.ws5d{word-spacing:1.646400px;}
.ws41{word-spacing:1.705200px;}
.ws166{word-spacing:1.764000px;}
.wsde{word-spacing:1.822800px;}
.ws54{word-spacing:1.881600px;}
.ws56{word-spacing:1.940400px;}
.ws167{word-spacing:1.999200px;}
.ws3d{word-spacing:2.058000px;}
.wse2{word-spacing:2.116800px;}
.ws150{word-spacing:2.234400px;}
.wsa1{word-spacing:2.293200px;}
.ws164{word-spacing:2.352000px;}
.wsaf{word-spacing:2.410800px;}
.ws11e{word-spacing:2.528400px;}
.ws50{word-spacing:2.587200px;}
.ws36{word-spacing:2.704800px;}
.ws5c{word-spacing:2.763600px;}
.ws6b{word-spacing:2.822400px;}
.ws154{word-spacing:2.940000px;}
.ws121{word-spacing:2.998800px;}
.ws72{word-spacing:3.057600px;}
.ws13{word-spacing:3.116400px;}
.ws5b{word-spacing:3.234000px;}
.ws45{word-spacing:3.292800px;}
.ws163{word-spacing:3.351600px;}
.ws16{word-spacing:3.410400px;}
.ws11d{word-spacing:3.469200px;}
.ws151{word-spacing:3.528000px;}
.ws62{word-spacing:3.586800px;}
.ws4d{word-spacing:3.704400px;}
.ws52{word-spacing:3.763200px;}
.ws160{word-spacing:3.939600px;}
.wsa5{word-spacing:3.998400px;}
.ws4e{word-spacing:4.057200px;}
.ws122{word-spacing:4.116000px;}
.ws3c{word-spacing:4.174800px;}
.wsc2{word-spacing:4.233600px;}
.wsb1{word-spacing:4.292400px;}
.wsd3{word-spacing:4.320000px;}
.ws6e{word-spacing:4.410000px;}
.wse1{word-spacing:4.468800px;}
.wsbc{word-spacing:4.527600px;}
.ws2a{word-spacing:4.586400px;}
.ws3b{word-spacing:4.645200px;}
.ws48{word-spacing:4.704000px;}
.ws123{word-spacing:4.762800px;}
.ws19{word-spacing:4.821600px;}
.ws31{word-spacing:4.880400px;}
.ws7a{word-spacing:4.939200px;}
.wsf{word-spacing:4.998000px;}
.ws7d{word-spacing:5.056800px;}
.ws1e{word-spacing:5.115600px;}
.ws78{word-spacing:5.174400px;}
.ws81{word-spacing:5.233200px;}
.ws32{word-spacing:5.292000px;}
.ws1a{word-spacing:5.409600px;}
.ws4a{word-spacing:5.468400px;}
.wsb5{word-spacing:5.527200px;}
.ws3e{word-spacing:5.586000px;}
.ws65{word-spacing:5.644800px;}
.wsd{word-spacing:5.703600px;}
.ws34{word-spacing:5.762400px;}
.ws60{word-spacing:5.880000px;}
.ws61{word-spacing:5.938800px;}
.ws71{word-spacing:5.997600px;}
.wse4{word-spacing:6.056400px;}
.ws67{word-spacing:6.115200px;}
.wsbb{word-spacing:6.174000px;}
.ws6a{word-spacing:6.291600px;}
.ws6f{word-spacing:6.350400px;}
.ws57{word-spacing:6.409200px;}
.ws85{word-spacing:6.468000px;}
.ws93{word-spacing:6.526800px;}
.ws39{word-spacing:6.644400px;}
.wsad{word-spacing:6.703200px;}
.ws68{word-spacing:6.762000px;}
.ws8e{word-spacing:6.820800px;}
.ws44{word-spacing:6.997200px;}
.wsae{word-spacing:7.114800px;}
.ws17{word-spacing:7.173600px;}
.ws79{word-spacing:7.232400px;}
.wsa2{word-spacing:7.291200px;}
.ws28{word-spacing:7.408800px;}
.ws2e{word-spacing:7.526400px;}
.wsbe{word-spacing:7.585200px;}
.ws84{word-spacing:7.644000px;}
.ws12{word-spacing:7.702800px;}
.wsb9{word-spacing:7.761600px;}
.ws15a{word-spacing:7.820400px;}
.ws29{word-spacing:7.879200px;}
.ws3a{word-spacing:7.938000px;}
.ws91{word-spacing:7.996800px;}
.ws7e{word-spacing:8.055600px;}
.ws51{word-spacing:8.114400px;}
.ws7f{word-spacing:8.173200px;}
.wsa4{word-spacing:8.232000px;}
.wsb3{word-spacing:8.290800px;}
.ws73{word-spacing:8.349600px;}
.ws11a{word-spacing:8.408400px;}
.ws64{word-spacing:8.467200px;}
.ws120{word-spacing:8.526000px;}
.ws15b{word-spacing:8.584800px;}
.ws8b{word-spacing:8.643600px;}
.ws11f{word-spacing:8.702400px;}
.ws14d{word-spacing:8.761200px;}
.ws9{word-spacing:8.820000px;}
.wsb0{word-spacing:8.878800px;}
.ws4f{word-spacing:8.996400px;}
.ws1f{word-spacing:9.349200px;}
.ws75{word-spacing:9.466800px;}
.ws15{word-spacing:9.525600px;}
.wse3{word-spacing:9.584400px;}
.ws152{word-spacing:9.643200px;}
.ws20{word-spacing:9.702000px;}
.ws162{word-spacing:9.760800px;}
.ws58{word-spacing:9.819600px;}
.ws155{word-spacing:9.878400px;}
.ws69{word-spacing:9.937200px;}
.ws99{word-spacing:9.996000px;}
.ws97{word-spacing:10.054800px;}
.ws2c{word-spacing:10.172400px;}
.ws8c{word-spacing:10.231200px;}
.ws25{word-spacing:10.348800px;}
.wsa7{word-spacing:10.525200px;}
.wsd6{word-spacing:10.584000px;}
.ws8d{word-spacing:10.642800px;}
.wse{word-spacing:10.760400px;}
.ws158{word-spacing:10.819200px;}
.ws59{word-spacing:10.995600px;}
.ws89{word-spacing:11.289600px;}
.ws80{word-spacing:11.348400px;}
.ws18{word-spacing:11.407200px;}
.wsa6{word-spacing:11.466000px;}
.wsda{word-spacing:11.642400px;}
.ws10{word-spacing:11.877600px;}
.wsa0{word-spacing:11.936400px;}
.wsdb{word-spacing:12.054000px;}
.ws22{word-spacing:12.171600px;}
.wsd8{word-spacing:12.289200px;}
.ws6c{word-spacing:12.406800px;}
.ws74{word-spacing:12.700800px;}
.wsb{word-spacing:12.759600px;}
.ws11{word-spacing:12.818400px;}
.ws149{word-spacing:12.936000px;}
.wsd9{word-spacing:12.994800px;}
.ws11c{word-spacing:13.053600px;}
.ws83{word-spacing:13.230000px;}
.ws26{word-spacing:13.347600px;}
.wsba{word-spacing:13.406400px;}
.ws49{word-spacing:13.582800px;}
.wsc3{word-spacing:13.700400px;}
.ws5f{word-spacing:13.759200px;}
.ws37{word-spacing:13.818000px;}
.ws165{word-spacing:13.935600px;}
.ws55{word-spacing:13.994400px;}
.ws77{word-spacing:14.053200px;}
.ws153{word-spacing:14.170800px;}
.ws8a{word-spacing:14.229600px;}
.ws24{word-spacing:14.347200px;}
.ws5a{word-spacing:14.406000px;}
.ws10d{word-spacing:14.462711px;}
.ws10f{word-spacing:14.464542px;}
.ws110{word-spacing:14.508304px;}
.ws112{word-spacing:14.508853px;}
.ws111{word-spacing:14.509037px;}
.ws43{word-spacing:14.523600px;}
.ws87{word-spacing:14.700000px;}
.ws114{word-spacing:14.751402px;}
.wsf1{word-spacing:14.758620px;}
.wsf2{word-spacing:14.758711px;}
.wsf0{word-spacing:14.761000px;}
.ws107{word-spacing:14.781446px;}
.ws118{word-spacing:14.798094px;}
.ws117{word-spacing:14.798277px;}
.wsdc{word-spacing:14.817600px;}
.ws10b{word-spacing:14.826492px;}
.ws10a{word-spacing:14.826494px;}
.ws109{word-spacing:14.828321px;}
.ws137{word-spacing:14.847027px;}
.ws134{word-spacing:14.896832px;}
.ws138{word-spacing:14.956008px;}
.ws9f{word-spacing:14.994000px;}
.ws70{word-spacing:15.111600px;}
.ws103{word-spacing:15.114934px;}
.ws102{word-spacing:15.117315px;}
.ws104{word-spacing:15.163640px;}
.ws105{word-spacing:15.165105px;}
.ws101{word-spacing:15.165288px;}
.ws88{word-spacing:15.170400px;}
.ws98{word-spacing:15.229200px;}
.wsb6{word-spacing:15.405600px;}
.wsfb{word-spacing:15.469102px;}
.wsfe{word-spacing:15.520738px;}
.wsfd{word-spacing:15.523118px;}
.ws157{word-spacing:15.523200px;}
.wsee{word-spacing:15.529182px;}
.ws4c{word-spacing:15.582000px;}
.ws14a{word-spacing:15.640800px;}
.wsdf{word-spacing:15.758400px;}
.ws3f{word-spacing:15.817200px;}
.wse7{word-spacing:15.938679px;}
.wsec{word-spacing:15.986744px;}
.wseb{word-spacing:15.989033px;}
.wsea{word-spacing:15.989038px;}
.wsbd{word-spacing:16.287600px;}
.wsc0{word-spacing:16.405200px;}
.ws11b{word-spacing:16.581600px;}
.ws92{word-spacing:16.816800px;}
.wsf8{word-spacing:16.926641px;}
.wsf6{word-spacing:16.926644px;}
.wsca{word-spacing:16.926827px;}
.wsf7{word-spacing:16.927193px;}
.wsc4{word-spacing:16.927376px;}
.wsc6{word-spacing:16.929024px;}
.wsf4{word-spacing:16.929116px;}
.wsc8{word-spacing:16.929207px;}
.ws14b{word-spacing:16.929665px;}
.wsc9{word-spacing:16.929756px;}
.wsf5{word-spacing:16.980660px;}
.wsc7{word-spacing:16.983040px;}
.ws14c{word-spacing:16.983045px;}
.ws42{word-spacing:17.816400px;}
.ws4b{word-spacing:18.345600px;}
.ws2f{word-spacing:18.639600px;}
.ws95{word-spacing:18.816000px;}
.ws8{word-spacing:18.992400px;}
.ws7c{word-spacing:19.404000px;}
.wsbf{word-spacing:19.462800px;}
.ws21{word-spacing:19.521600px;}
.wsc{word-spacing:19.580400px;}
.ws159{word-spacing:19.639200px;}
.ws1d{word-spacing:19.933200px;}
.wsb8{word-spacing:20.227200px;}
.ws96{word-spacing:20.344800px;}
.ws7{word-spacing:20.697600px;}
.wsb7{word-spacing:20.932800px;}
.wsac{word-spacing:21.756000px;}
.ws90{word-spacing:22.167600px;}
.ws9a{word-spacing:22.402800px;}
.ws9b{word-spacing:23.167200px;}
.ws6d{word-spacing:23.226000px;}
.wsc1{word-spacing:23.402400px;}
.ws9d{word-spacing:23.520000px;}
.ws8f{word-spacing:23.990400px;}
.wsd5{word-spacing:27.695994px;}
.wse0{word-spacing:28.341600px;}
.ws38{word-spacing:35.280000px;}
.ws9c{word-spacing:44.688000px;}
.wsd2{word-spacing:74.592000px;}
.wscd{word-spacing:90.336000px;}
.wscc{word-spacing:106.512000px;}
.wsd1{word-spacing:107.472000px;}
.wscf{word-spacing:124.511994px;}
.wsce{word-spacing:160.608000px;}
.wsd4{word-spacing:200.207994px;}
.wsd0{word-spacing:262.848000px;}
.ws12d{word-spacing:428.927995px;}
.ws133{word-spacing:433.871995px;}
.ws12c{word-spacing:454.655995px;}
.ws12b{word-spacing:459.311995px;}
.ws128{word-spacing:478.079995px;}
.ws132{word-spacing:490.415995px;}
.ws127{word-spacing:496.847995px;}
.ws129{word-spacing:515.615995px;}
.ws125{word-spacing:543.935995px;}
.ws12a{word-spacing:698.400000px;}
.ws131{word-spacing:732.576000px;}
.ws142{word-spacing:1039.584000px;}
.ws146{word-spacing:1044.528000px;}
.ws140{word-spacing:1065.312000px;}
.ws145{word-spacing:1069.968000px;}
.ws141{word-spacing:1082.064000px;}
.ws13f{word-spacing:1093.392000px;}
.ws144{word-spacing:1101.072000px;}
.ws147{word-spacing:1107.504000px;}
.ws13d{word-spacing:1126.272000px;}
.ws13a{word-spacing:1154.592000px;}
.wsa9{word-spacing:1196.111963px;}
.wsab{word-spacing:1282.847963px;}
.ws13b{word-spacing:1308.912000px;}
.ws12e{word-spacing:1343.472000px;}
.ws13e{word-spacing:1344.143984px;}
.ws143{word-spacing:1378.319979px;}
.ws126{word-spacing:1900.991922px;}
.ws12f{word-spacing:1924.416056px;}
.ws13c{word-spacing:2610.816000px;}
.ws130{word-spacing:2623.535979px;}
._2{margin-left:-10.368000px;}
._79{margin-left:-8.080800px;}
._9{margin-left:-6.056400px;}
._d{margin-left:-4.945080px;}
._1{margin-left:-3.772800px;}
._0{margin-left:-1.876800px;}
._4{width:1.137600px;}
._3{width:2.299200px;}
._e{width:4.121880px;}
._8{width:6.322080px;}
._a{width:7.761600px;}
._7{width:9.760800px;}
._f{width:11.889577px;}
._10{width:13.492794px;}
._b{width:15.191159px;}
._6{width:17.656788px;}
._c{width:22.303200px;}
._7b{width:26.280000px;}
._5{width:38.180935px;}
._7a{width:44.272800px;}
._4a{width:59.284794px;}
._46{width:63.819073px;}
._3f{width:81.912833px;}
._3c{width:94.087865px;}
._48{width:98.831992px;}
._38{width:99.888000px;}
._2f{width:101.808000px;}
._3b{width:103.444794px;}
._41{width:108.960000px;}
._27{width:110.971200px;}
._45{width:118.257595px;}
._3a{width:121.924800px;}
._26{width:124.272000px;}
._43{width:131.231992px;}
._49{width:132.436798px;}
._29{width:135.023994px;}
._3e{width:140.783992px;}
._30{width:146.830920px;}
._40{width:154.031994px;}
._22{width:156.864000px;}
._34{width:158.447994px;}
._2d{width:162.268800px;}
._39{width:164.496000px;}
._32{width:171.120000px;}
._36{width:184.276800px;}
._21{width:186.100800px;}
._2a{width:198.961080px;}
._47{width:201.326394px;}
._3d{width:206.159994px;}
._2b{width:208.896000px;}
._44{width:212.639982px;}
._23{width:215.712000px;}
._42{width:217.103994px;}
._35{width:225.168000px;}
._33{width:227.985600px;}
._28{width:243.019200px;}
._25{width:249.744000px;}
._2c{width:252.143994px;}
._37{width:263.966400px;}
._2e{width:268.800000px;}
._31{width:279.744000px;}
._24{width:290.784000px;}
._53{width:460.464000px;}
._67{width:473.860800px;}
._57{width:476.991475px;}
._52{width:481.919995px;}
._51{width:486.575995px;}
._62{width:488.591995px;}
._68{width:491.362675px;}
._58{width:500.545075px;}
._5e{width:502.387200px;}
._63{width:511.886395px;}
._5d{width:524.098675px;}
._5f{width:526.127995px;}
._59{width:534.721070px;}
._55{width:549.551995px;}
._56{width:571.252800px;}
._4b{width:589.684800px;}
._4f{width:591.652800px;}
._64{width:600.048000px;}
._66{width:604.751995px;}
._5b{width:610.799979px;}
._5c{width:635.500800px;}
._60{width:644.740800px;}
._65{width:669.676800px;}
._4e{width:678.916800px;}
._50{width:684.993559px;}
._54{width:694.896000px;}
._61{width:697.713600px;}
._69{width:720.974359px;}
._5a{width:733.694400px;}
._75{width:1065.072000px;}
._77{width:1083.046788px;}
._6c{width:1087.777080px;}
._72{width:1119.604779px;}
._1f{width:1121.524763px;}
._73{width:1136.784000px;}
._20{width:1141.924763px;}
._16{width:1182.268763px;}
._1e{width:1184.495963px;}
._1c{width:1204.276763px;}
._6e{width:1216.996779px;}
._14{width:1218.961043px;}
._15{width:1228.895963px;}
._6a{width:1235.428784px;}
._18{width:1236.671963px;}
._13{width:1239.868763px;}
._1b{width:1245.167963px;}
._1a{width:1247.985563px;}
._70{width:1256.544000px;}
._1d{width:1283.966363px;}
._17{width:1288.799963px;}
._12{width:1297.007963px;}
._19{width:1299.743963px;}
._71{width:1302.700800px;}
._6b{width:1309.281584px;}
._11{width:1310.783963px;}
._76{width:1315.420779px;}
._4c{width:1332.528000px;}
._6d{width:1340.639979px;}
._74{width:1343.457579px;}
._78{width:1366.718400px;}
._6f{width:1379.438379px;}
._4d{width:2599.872076px;}
.fc3{color:rgb(86,86,85);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:31.500000px;}
.fs16{font-size:37.706400px;}
.fs1e{font-size:38.194800px;}
.fs20{font-size:38.951400px;}
.fs1c{font-size:39.031200px;}
.fs22{font-size:39.210600px;}
.fs24{font-size:39.370800px;}
.fs1a{font-size:39.917999px;}
.fs18{font-size:39.978000px;}
.fs4{font-size:42.000000px;}
.fs14{font-size:42.086400px;}
.fs12{font-size:44.702399px;}
.fsd{font-size:45.000000px;}
.fs9{font-size:46.199999px;}
.fs5{font-size:48.000000px;}
.fs15{font-size:49.614000px;}
.fs1d{font-size:50.256598px;}
.fs1f{font-size:51.251999px;}
.fs1b{font-size:51.356998px;}
.fs21{font-size:51.593399px;}
.fs23{font-size:51.804600px;}
.fs19{font-size:52.523998px;}
.fs17{font-size:52.602600px;}
.fs10{font-size:54.000000px;}
.fsf{font-size:55.199999px;}
.fs13{font-size:55.377600px;}
.fsb{font-size:58.800000px;}
.fs11{font-size:58.819800px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fsc{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y272{bottom:0.066902px;}
.y25c{bottom:0.069260px;}
.y2c2{bottom:0.134949px;}
.y314{bottom:0.152252px;}
.y229{bottom:0.154346px;}
.y21d{bottom:0.156006px;}
.y271{bottom:1.105202px;}
.y27d{bottom:1.127552px;}
.y267{bottom:1.129646px;}
.y25b{bottom:1.154388px;}
.y212{bottom:1.180389px;}
.y2b9{bottom:1.200714px;}
.y2c1{bottom:1.205383px;}
.y208{bottom:1.216278px;}
.y250{bottom:1.222870px;}
.y228{bottom:1.247852px;}
.y244{bottom:1.248871px;}
.y21c{bottom:1.249352px;}
.y1be{bottom:1.353424px;}
.y31c{bottom:1.367523px;}
.y313{bottom:1.367615px;}
.y30b{bottom:1.368256px;}
.y324{bottom:1.368301px;}
.y1b1{bottom:1.368439px;}
.y211{bottom:3.043488px;}
.y27c{bottom:3.045158px;}
.y266{bottom:3.051132px;}
.y25a{bottom:3.119659px;}
.y2b8{bottom:3.131287px;}
.y24f{bottom:3.194000px;}
.y207{bottom:3.288025px;}
.y243{bottom:3.449707px;}
.y1bd{bottom:3.554077px;}
.y30a{bottom:3.568909px;}
.y1b0{bottom:3.569092px;}
.y66{bottom:6.504272px;}
.y226{bottom:22.172699px;}
.y26e{bottom:36.851257px;}
.y279{bottom:37.581608px;}
.y263{bottom:37.658249px;}
.y257{bottom:38.513214px;}
.y2b3{bottom:39.828003px;}
.y2bc{bottom:39.990418px;}
.y204{bottom:40.604462px;}
.y20e{bottom:43.016693px;}
.y1ba{bottom:43.203278px;}
.y317{bottom:45.404709px;}
.y30e{bottom:45.404755px;}
.y31f{bottom:45.405258px;}
.y305{bottom:45.405487px;}
.y26a{bottom:56.610443px;}
.y275{bottom:57.732159px;}
.y25f{bottom:57.850044px;}
.y253{bottom:59.163895px;}
.y200{bottom:62.376617px;}
.y20b{bottom:65.804993px;}
.y5{bottom:66.525004px;}
.y39{bottom:75.897155px;}
.y220{bottom:87.134857px;}
.y23c{bottom:87.135864px;}
.y215{bottom:87.136368px;}
.y1a9{bottom:87.255478px;}
.y38{bottom:87.898655px;}
.y4{bottom:97.125005px;}
.y37{bottom:99.900155px;}
.y136{bottom:102.116553px;}
.y107{bottom:105.899695px;}
.y302{bottom:106.209291px;}
.yd3{bottom:106.325100px;}
.ya0{bottom:106.642495px;}
.y247{bottom:107.805450px;}
.y1b4{bottom:108.165298px;}
.y1d4{bottom:108.775518px;}
.y36{bottom:111.901655px;}
.y273{bottom:117.028198px;}
.y135{bottom:120.109353px;}
.y14d{bottom:122.884645px;}
.y164{bottom:122.949296px;}
.y1d6{bottom:123.735294px;}
.y106{bottom:123.892495px;}
.y35{bottom:123.903155px;}
.y301{bottom:124.202091px;}
.yd2{bottom:124.339500px;}
.y9f{bottom:124.635295px;}
.y372{bottom:125.011803px;}
.y1d3{bottom:127.003518px;}
.y274{bottom:131.051994px;}
.y27b{bottom:134.097153px;}
.y34{bottom:135.904655px;}
.y134{bottom:138.102153px;}
.y3af{bottom:138.123871px;}
.y371{bottom:138.511803px;}
.y21{bottom:139.264499px;}
.y14c{bottom:140.877445px;}
.y163{bottom:140.942096px;}
.y300{bottom:142.194891px;}
.yd1{bottom:142.332300px;}
.y9e{bottom:142.628095px;}
.y1d2{bottom:145.147518px;}
.y1e5{bottom:146.287666px;}
.y33{bottom:147.906155px;}
.y3ae{bottom:151.623871px;}
.y370{bottom:152.011803px;}
.y27a{bottom:152.330097px;}
.y2c4{bottom:153.535800px;}
.y133{bottom:156.094953px;}
.y14b{bottom:158.877445px;}
.y162{bottom:158.934896px;}
.y2ff{bottom:160.187691px;}
.yd0{bottom:160.325100px;}
.y9d{bottom:160.620895px;}
.y105{bottom:160.642495px;}
.y1d1{bottom:163.291518px;}
.y1e4{bottom:164.515666px;}
.y3ad{bottom:165.123871px;}
.y33e{bottom:168.464542px;}
.y278{bottom:170.551197px;}
.y132{bottom:174.087753px;}
.y2e5{bottom:174.678305px;}
.y21e{bottom:176.262154px;}
.y14a{bottom:176.891857px;}
.y161{bottom:176.927696px;}
.y2fe{bottom:178.180491px;}
.ycf{bottom:178.325100px;}
.y9c{bottom:178.620895px;}
.y3ac{bottom:178.623871px;}
.y104{bottom:178.635295px;}
.y36f{bottom:179.011803px;}
.y1d0{bottom:181.435518px;}
.y3f0{bottom:181.842773px;}
.y1e3{bottom:182.659666px;}
.y69{bottom:185.781303px;}
.y33d{bottom:186.457342px;}
.y277{bottom:186.866547px;}
.y276{bottom:188.784153px;}
.y21f{bottom:190.287003px;}
.y131{bottom:192.087753px;}
.y3ab{bottom:192.123871px;}
.y36e{bottom:192.511803px;}
.y2e4{bottom:192.906305px;}
.y227{bottom:193.735497px;}
.y149{bottom:194.884657px;}
.y160{bottom:194.920496px;}
.y3ef{bottom:195.342773px;}
.y63{bottom:195.675296px;}
.y2fd{bottom:196.173291px;}
.yce{bottom:196.339511px;}
.y103{bottom:196.628095px;}
.y9b{bottom:196.678495px;}
.y18{bottom:196.933500px;}
.y1cf{bottom:199.579518px;}
.y1e2{bottom:200.803666px;}
.y68{bottom:203.781303px;}
.y33c{bottom:204.450142px;}
.y3aa{bottom:205.623871px;}
.y36d{bottom:206.011803px;}
.y3ee{bottom:208.842773px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y130{bottom:210.109353px;}
.y268{bottom:210.555611px;}
.y2e3{bottom:211.050305px;}
.y67{bottom:212.781303px;}
.y148{bottom:212.877457px;}
.y15f{bottom:212.913296px;}
.y62{bottom:213.668096px;}
.y2fc{bottom:214.166091px;}
.ycd{bottom:214.332311px;}
.y102{bottom:214.620895px;}
.y225{bottom:214.660492px;}
.y9a{bottom:214.671295px;}
.y1ce{bottom:217.723518px;}
.y1e1{bottom:218.947666px;}
.y3a9{bottom:219.123871px;}
.y27e{bottom:222.086998px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y3ed{bottom:222.342773px;}
.y33b{bottom:222.500542px;}
.y269{bottom:224.580002px;}
.y270{bottom:227.565605px;}
.y12f{bottom:228.102153px;}
.y2e2{bottom:229.206305px;}
.y15e{bottom:230.906096px;}
.y147{bottom:230.956519px;}
.y61{bottom:231.660896px;}
.y2fb{bottom:232.158891px;}
.ycc{bottom:232.325111px;}
.y101{bottom:232.620895px;}
.y3a8{bottom:232.623871px;}
.y99{bottom:232.664095px;}
.y36c{bottom:233.011803px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y224{bottom:235.585350px;}
.y3ec{bottom:235.842773px;}
.y1cd{bottom:235.867518px;}
.y1e0{bottom:237.091666px;}
.y33a{bottom:240.493342px;}
.y2a7{bottom:243.433482px;}
.y26f{bottom:245.444389px;}
.y12e{bottom:246.094953px;}
.y3a7{bottom:246.123871px;}
.y36b{bottom:246.511803px;}
.y2e1{bottom:247.350305px;}
.y15d{bottom:248.898896px;}
.y146{bottom:248.949319px;}
.y3eb{bottom:249.342773px;}
.y60{bottom:249.668096px;}
.y2fa{bottom:250.151691px;}
.ycb{bottom:250.325111px;}
.y98{bottom:250.656895px;}
.y100{bottom:250.714495px;}
.y1cc{bottom:254.011518px;}
.y1df{bottom:255.235666px;}
.y223{bottom:256.496841px;}
.y339{bottom:258.486142px;}
.y3a6{bottom:259.623871px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y36a{bottom:260.011803px;}
.y2a6{bottom:261.661482px;}
.y3ea{bottom:262.842773px;}
.y26d{bottom:263.311661px;}
.y12d{bottom:264.087753px;}
.y2e0{bottom:265.506305px;}
.y4c{bottom:266.884794px;}
.y15c{bottom:266.891696px;}
.y145{bottom:266.942119px;}
.y5f{bottom:267.660896px;}
.y2f9{bottom:268.144491px;}
.yca{bottom:268.375672px;}
.y97{bottom:268.649695px;}
.yff{bottom:268.707295px;}
.y1cb{bottom:272.155518px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y3a5{bottom:273.123871px;}
.y1de{bottom:273.379666px;}
.y369{bottom:273.511780px;}
.y222{bottom:275.221046px;}
.y3e9{bottom:276.342773px;}
.y338{bottom:276.478942px;}
.y221{bottom:277.421860px;}
.y26c{bottom:279.310043px;}
.y2a5{bottom:279.805482px;}
.y26b{bottom:281.190445px;}
.y12c{bottom:282.087753px;}
.y2df{bottom:283.650305px;}
.y4b{bottom:284.877594px;}
.y15b{bottom:284.884496px;}
.y144{bottom:284.934919px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y5e{bottom:285.675296px;}
.y2f8{bottom:286.137291px;}
.yc9{bottom:286.368472px;}
.y3a4{bottom:286.623871px;}
.y96{bottom:286.642495px;}
.yfe{bottom:286.700095px;}
.y368{bottom:287.011780px;}
.y3e8{bottom:289.842773px;}
.y1ca{bottom:290.299518px;}
.y1dd{bottom:291.523666px;}
.y337{bottom:294.471742px;}
.y2a4{bottom:297.949482px;}
.y3a3{bottom:300.123871px;}
.y213{bottom:300.492142px;}
.y2de{bottom:301.794305px;}
.y25d{bottom:302.790894px;}
.y15a{bottom:302.877296px;}
.y143{bottom:302.927719px;}
.y4a{bottom:302.927994px;}
.y3e7{bottom:303.342773px;}
.y5d{bottom:303.668096px;}
.y2f7{bottom:304.158891px;}
.yc8{bottom:304.361272px;}
.y95{bottom:304.635295px;}
.yfd{bottom:304.692895px;}
.y1c9{bottom:308.443518px;}
.y1dc{bottom:309.667666px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y336{bottom:312.464542px;}
.y3a2{bottom:313.623871px;}
.y367{bottom:314.011780px;}
.y214{bottom:314.515503px;}
.y2a3{bottom:316.093482px;}
.y25e{bottom:316.815010px;}
.y3e6{bottom:316.842773px;}
.y21b{bottom:317.965645px;}
.y265{bottom:319.866142px;}
.y2dd{bottom:319.950305px;}
.y159{bottom:320.877296px;}
.y142{bottom:320.920519px;}
.y49{bottom:320.920794px;}
.y5c{bottom:321.660896px;}
.y2f6{bottom:322.151691px;}
.yc7{bottom:322.354072px;}
.y94{bottom:322.628095px;}
.yfc{bottom:322.685695px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1c8{bottom:326.587518px;}
.y3a1{bottom:327.123871px;}
.y366{bottom:327.511780px;}
.y1db{bottom:327.811666px;}
.y3e5{bottom:330.342773px;}
.y335{bottom:330.457342px;}
.y2a2{bottom:334.237482px;}
.y12b{bottom:336.844793px;}
.y2dc{bottom:338.094305px;}
.y264{bottom:338.136452px;}
.y21a{bottom:338.890640px;}
.y141{bottom:338.913319px;}
.y48{bottom:338.913594px;}
.y158{bottom:338.934919px;}
.y5b{bottom:339.675296px;}
.y2f5{bottom:340.144491px;}
.yc6{bottom:340.346872px;}
.y93{bottom:340.620895px;}
.y3a0{bottom:340.623871px;}
.yfb{bottom:340.678495px;}
.y365{bottom:341.011780px;}
.y3e4{bottom:343.842773px;}
.y1c7{bottom:344.731518px;}
.y1da{bottom:345.955666px;}
.yf{bottom:348.133500px;}
.y334{bottom:348.450142px;}
.y2a1{bottom:352.381482px;}
.y39f{bottom:354.123871px;}
.y12a{bottom:354.837593px;}
.y262{bottom:356.394905px;}
.y140{bottom:356.906119px;}
.y47{bottom:356.906394px;}
.y157{bottom:356.927719px;}
.y3e3{bottom:357.342773px;}
.y5a{bottom:357.668096px;}
.y2f4{bottom:358.137291px;}
.yc5{bottom:358.339672px;}
.yfa{bottom:358.671295px;}
.y92{bottom:358.786541px;}
.y219{bottom:359.815498px;}
.y1c6{bottom:362.875518px;}
.y1d9{bottom:364.099666px;}
.y2db{bottom:364.986305px;}
.y420{bottom:366.342750px;}
.y333{bottom:366.514965px;}
.y39e{bottom:367.623871px;}
.y364{bottom:368.011780px;}
.y2a0{bottom:370.525482px;}
.y3e2{bottom:370.842773px;}
.y261{bottom:372.743546px;}
.y129{bottom:372.844816px;}
.y260{bottom:374.665054px;}
.y13f{bottom:374.898919px;}
.y46{bottom:374.899194px;}
.y156{bottom:374.920519px;}
.y59{bottom:375.660896px;}
.y2f3{bottom:376.137291px;}
.yc4{bottom:376.332472px;}
.yf9{bottom:376.664095px;}
.y91{bottom:376.779341px;}
.y41f{bottom:379.842750px;}
.y218{bottom:380.726990px;}
.y1c5{bottom:381.019518px;}
.y39d{bottom:381.123871px;}
.y363{bottom:381.511780px;}
.y1d8{bottom:382.243666px;}
.y3e1{bottom:384.342773px;}
.y332{bottom:384.507765px;}
.y2da{bottom:385.773319px;}
.ye{bottom:386.785499px;}
.y29f{bottom:388.669482px;}
.y128{bottom:390.837616px;}
.y13e{bottom:392.891719px;}
.y45{bottom:392.891994px;}
.y155{bottom:392.913319px;}
.y41e{bottom:393.342728px;}
.y58{bottom:393.745792px;}
.yc3{bottom:394.325272px;}
.y39c{bottom:394.623871px;}
.yf8{bottom:394.656895px;}
.y90{bottom:394.772141px;}
.y362{bottom:395.011780px;}
.y251{bottom:396.454514px;}
.y3e0{bottom:397.842773px;}
.y1c4{bottom:399.163518px;}
.y217{bottom:399.451218px;}
.y216{bottom:401.651871px;}
.y331{bottom:402.500565px;}
.y2d9{bottom:403.917319px;}
.y29e{bottom:406.813482px;}
.yd{bottom:408.044999px;}
.y39b{bottom:408.123871px;}
.y361{bottom:408.511780px;}
.y127{bottom:408.837616px;}
.y1d7{bottom:409.135666px;}
.y252{bottom:410.479523px;}
.y13d{bottom:410.884519px;}
.y44{bottom:410.884794px;}
.y154{bottom:410.906119px;}
.y3df{bottom:411.342773px;}
.y57{bottom:411.738592px;}
.y2f2{bottom:412.187714px;}
.yc2{bottom:412.325272px;}
.yf7{bottom:412.649695px;}
.y8f{bottom:412.764941px;}
.y259{bottom:413.599182px;}
.y1c3{bottom:417.307518px;}
.y330{bottom:420.493365px;}
.y39a{bottom:421.623871px;}
.y360{bottom:422.011780px;}
.y2d8{bottom:422.061319px;}
.y3de{bottom:424.842773px;}
.y29d{bottom:424.957482px;}
.y13c{bottom:428.877319px;}
.y43{bottom:428.877594px;}
.y153{bottom:428.898919px;}
.y41d{bottom:429.342728px;}
.y56{bottom:429.731392px;}
.y1fd{bottom:429.826041px;}
.y2f1{bottom:430.180514px;}
.yf6{bottom:430.642495px;}
.y8e{bottom:430.757741px;}
.y258{bottom:432.284546px;}
.y1d5{bottom:433.448410px;}
.y399{bottom:435.123871px;}
.y1c2{bottom:435.451518px;}
.y3dd{bottom:438.342773px;}
.y32f{bottom:438.486165px;}
.y2d7{bottom:440.205319px;}
.y41c{bottom:442.842728px;}
.y29c{bottom:443.101482px;}
.y126{bottom:445.587616px;}
.y152{bottom:446.891719px;}
.y13b{bottom:446.906119px;}
.y42{bottom:446.913594px;}
.y55{bottom:447.724192px;}
.y1fc{bottom:447.818841px;}
.y2f0{bottom:448.173314px;}
.y398{bottom:448.623871px;}
.yf5{bottom:448.635295px;}
.y8d{bottom:448.750541px;}
.y256{bottom:450.957916px;}
.y3dc{bottom:451.842773px;}
.y1c1{bottom:453.595518px;}
.y41b{bottom:456.342728px;}
.y32e{bottom:456.478965px;}
.y2d6{bottom:458.349319px;}
.y29b{bottom:461.245482px;}
.y397{bottom:462.123871px;}
.y125{bottom:463.594816px;}
.y151{bottom:464.884519px;}
.y13a{bottom:464.898919px;}
.y41{bottom:464.906394px;}
.y3db{bottom:465.342773px;}
.y54{bottom:465.716992px;}
.y1fb{bottom:465.811641px;}
.y2ef{bottom:466.166114px;}
.yf4{bottom:466.628095px;}
.y8c{bottom:466.743341px;}
.y35f{bottom:467.011780px;}
.yc1{bottom:467.075272px;}
.y255{bottom:467.678100px;}
.y254{bottom:469.643417px;}
.y41a{bottom:469.842728px;}
.y32d{bottom:474.471765px;}
.y396{bottom:475.623871px;}
.y2d5{bottom:476.493319px;}
.y3da{bottom:478.842773px;}
.y1c0{bottom:480.487518px;}
.y124{bottom:481.587616px;}
.y150{bottom:482.877319px;}
.y139{bottom:482.891719px;}
.y40{bottom:482.899194px;}
.y419{bottom:483.342728px;}
.y53{bottom:483.709792px;}
.y1fa{bottom:483.804441px;}
.y2ee{bottom:484.158914px;}
.yf3{bottom:484.620895px;}
.y8b{bottom:484.736141px;}
.y35e{bottom:485.011780px;}
.yc0{bottom:485.082472px;}
.y29a{bottom:488.137482px;}
.y395{bottom:489.123871px;}
.y3d9{bottom:492.342773px;}
.y32c{bottom:492.464565px;}
.y2d4{bottom:494.637319px;}
.y239{bottom:496.686728px;}
.y418{bottom:496.842728px;}
.y123{bottom:499.623616px;}
.y14f{bottom:500.877319px;}
.y138{bottom:500.884519px;}
.y3f{bottom:500.891994px;}
.y52{bottom:501.702592px;}
.y1f9{bottom:501.797241px;}
.y2ed{bottom:502.151714px;}
.y394{bottom:502.623871px;}
.yf2{bottom:502.656895px;}
.y8a{bottom:502.728941px;}
.yc{bottom:502.864502px;}
.y35d{bottom:503.033380px;}
.ybf{bottom:503.075272px;}
.y1bf{bottom:504.800262px;}
.y3d8{bottom:505.842773px;}
.y299{bottom:508.930500px;}
.y417{bottom:510.342728px;}
.y32b{bottom:510.457365px;}
.y2d3{bottom:512.781319px;}
.y238{bottom:514.679528px;}
.y393{bottom:516.123871px;}
.y122{bottom:517.616416px;}
.y137{bottom:518.877319px;}
.y3e{bottom:518.884794px;}
.y14e{bottom:518.887933px;}
.y3d7{bottom:519.342773px;}
.y51{bottom:519.695392px;}
.y1f8{bottom:519.790041px;}
.y2ec{bottom:520.144514px;}
.yf1{bottom:520.649695px;}
.y89{bottom:520.721741px;}
.yb{bottom:520.864502px;}
.y35c{bottom:521.026180px;}
.ybe{bottom:521.089672px;}
.y416{bottom:523.842728px;}
.y298{bottom:527.074500px;}
.y32a{bottom:528.450165px;}
.y392{bottom:529.623871px;}
.y2d2{bottom:530.925319px;}
.y1b3{bottom:531.427505px;}
.y1b2{bottom:531.427780px;}
.y237{bottom:532.672328px;}
.y3d6{bottom:532.842773px;}
.y1bc{bottom:534.981583px;}
.y121{bottom:535.609216px;}
.y3d{bottom:536.877594px;}
.y415{bottom:537.342728px;}
.y50{bottom:537.688192px;}
.y1f7{bottom:537.782841px;}
.y2eb{bottom:538.137314px;}
.yf0{bottom:538.642495px;}
.y88{bottom:538.714541px;}
.ya{bottom:538.864499px;}
.y35b{bottom:539.018980px;}
.ybd{bottom:539.082472px;}
.y391{bottom:543.123871px;}
.y297{bottom:545.218500px;}
.y3d5{bottom:546.342773px;}
.y329{bottom:546.471765px;}
.y2d1{bottom:549.069319px;}
.y236{bottom:550.665128px;}
.y414{bottom:550.842728px;}
.y120{bottom:553.602016px;}
.y3c{bottom:554.884794px;}
.y4f{bottom:555.680992px;}
.y1f6{bottom:555.775641px;}
.y1bb{bottom:555.906600px;}
.y2ea{bottom:556.151714px;}
.y390{bottom:556.623871px;}
.yef{bottom:556.635295px;}
.y87{bottom:556.707341px;}
.y9{bottom:556.864499px;}
.y35a{bottom:557.011780px;}
.ybc{bottom:557.075272px;}
.y199{bottom:557.766730px;}
.y3d4{bottom:559.842773px;}
.y296{bottom:563.362500px;}
.y413{bottom:564.342728px;}
.y328{bottom:564.464565px;}
.y235{bottom:568.657928px;}
.y38f{bottom:570.123871px;}
.y11f{bottom:571.594816px;}
.y3b{bottom:572.877594px;}
.y3d3{bottom:573.342773px;}
.y4e{bottom:573.673792px;}
.y1f5{bottom:573.768441px;}
.y2e9{bottom:574.144514px;}
.yee{bottom:574.628095px;}
.y86{bottom:574.700141px;}
.y359{bottom:575.069380px;}
.ybb{bottom:575.161534px;}
.y198{bottom:575.759530px;}
.y2d0{bottom:575.961319px;}
.y1b9{bottom:576.831436px;}
.y412{bottom:577.842728px;}
.y17e{bottom:579.463518px;}
.y295{bottom:581.506500px;}
.y327{bottom:582.457365px;}
.y38e{bottom:583.623871px;}
.y234{bottom:586.686728px;}
.y3d2{bottom:586.842773px;}
.y3a{bottom:590.877594px;}
.y411{bottom:591.342728px;}
.y4d{bottom:591.666592px;}
.y1f4{bottom:591.761241px;}
.y2e8{bottom:592.137314px;}
.yed{bottom:592.620895px;}
.y85{bottom:592.692941px;}
.y358{bottom:593.062180px;}
.yba{bottom:593.154334px;}
.y197{bottom:593.752330px;}
.y2cf{bottom:596.736310px;}
.y38d{bottom:597.123871px;}
.y17d{bottom:597.691518px;}
.y1b8{bottom:597.756454px;}
.y294{bottom:599.650500px;}
.y3d1{bottom:600.342773px;}
.y326{bottom:600.450165px;}
.y233{bottom:604.679528px;}
.y11e{bottom:608.344816px;}
.y1f3{bottom:609.754041px;}
.y2e7{bottom:610.146776px;}
.y38c{bottom:610.623871px;}
.yec{bottom:610.635295px;}
.y84{bottom:610.685741px;}
.y357{bottom:611.054980px;}
.yb9{bottom:611.147134px;}
.y196{bottom:611.745130px;}
.y3d0{bottom:613.842773px;}
.y2ce{bottom:614.880310px;}
.y17c{bottom:615.835518px;}
.y293{bottom:617.794500px;}
.y325{bottom:618.450165px;}
.y1b7{bottom:618.667969px;}
.y232{bottom:622.672328px;}
.y38b{bottom:624.123871px;}
.y11d{bottom:626.337616px;}
.y3cf{bottom:627.342773px;}
.y410{bottom:627.342808px;}
.y1f2{bottom:627.746841px;}
.yeb{bottom:628.628095px;}
.y83{bottom:628.678541px;}
.y356{bottom:629.047780px;}
.yb8{bottom:629.139934px;}
.y195{bottom:629.737930px;}
.y2cd{bottom:633.024310px;}
.y17b{bottom:633.979518px;}
.y292{bottom:635.938500px;}
.y1b6{bottom:637.392014px;}
.y38a{bottom:637.623871px;}
.y1b5{bottom:639.592804px;}
.y231{bottom:640.665128px;}
.y3ce{bottom:640.842773px;}
.y40f{bottom:640.842808px;}
.y32{bottom:642.215057px;}
.y11c{bottom:644.424108px;}
.y8{bottom:645.510000px;}
.y1f1{bottom:645.746841px;}
.yea{bottom:646.620895px;}
.y82{bottom:646.671341px;}
.y355{bottom:647.040580px;}
.yb7{bottom:647.132734px;}
.y194{bottom:647.752330px;}
.y389{bottom:651.123871px;}
.y2cc{bottom:651.168310px;}
.y17a{bottom:652.123518px;}
.y291{bottom:654.082500px;}
.y3cd{bottom:654.342773px;}
.y40e{bottom:654.342808px;}
.y31e{bottom:655.587021px;}
.y230{bottom:658.657928px;}
.y323{bottom:659.155930px;}
.y1f0{bottom:663.768441px;}
.y388{bottom:664.623871px;}
.ye9{bottom:664.642495px;}
.y81{bottom:664.664141px;}
.y31{bottom:664.715057px;}
.y354{bottom:665.033380px;}
.yb6{bottom:665.125534px;}
.y193{bottom:665.745130px;}
.y7{bottom:666.771000px;}
.y3cc{bottom:667.842773px;}
.y40d{bottom:667.842808px;}
.y2cb{bottom:669.312310px;}
.y179{bottom:670.267518px;}
.y290{bottom:672.226500px;}
.y1a8{bottom:676.537491px;}
.y1a7{bottom:676.537811px;}
.y22f{bottom:676.693928px;}
.y387{bottom:678.123871px;}
.y322{bottom:680.067444px;}
.y1af{bottom:680.106583px;}
.y11b{bottom:681.174108px;}
.y3cb{bottom:681.342773px;}
.y40c{bottom:681.342808px;}
.y31d{bottom:681.574950px;}
.y1ef{bottom:681.761241px;}
.ye8{bottom:682.635295px;}
.y80{bottom:682.656941px;}
.y30{bottom:682.715057px;}
.y353{bottom:683.026180px;}
.yb5{bottom:683.118334px;}
.y192{bottom:683.737930px;}
.y2ca{bottom:687.456310px;}
.y178{bottom:688.411518px;}
.y28f{bottom:690.382500px;}
.y386{bottom:691.623871px;}
.y22e{bottom:694.686728px;}
.y3ca{bottom:694.842773px;}
.y40b{bottom:694.842808px;}
.y321{bottom:698.791672px;}
.y11a{bottom:699.166908px;}
.y1ee{bottom:699.754041px;}
.ye7{bottom:700.628095px;}
.y7f{bottom:700.649741px;}
.y2f{bottom:700.715057px;}
.y320{bottom:700.992279px;}
.y352{bottom:701.018980px;}
.y1ae{bottom:701.031600px;}
.yb4{bottom:701.111134px;}
.y191{bottom:701.737930px;}
.y177{bottom:701.911518px;}
.y385{bottom:705.123871px;}
.y2c9{bottom:705.600310px;}
.y3c9{bottom:708.342773px;}
.y40a{bottom:708.342808px;}
.y28e{bottom:708.526500px;}
.y22d{bottom:712.679528px;}
.y119{bottom:717.159708px;}
.y1ed{bottom:717.746841px;}
.ye6{bottom:718.620895px;}
.y384{bottom:718.623871px;}
.y7e{bottom:718.642541px;}
.y2e{bottom:718.715057px;}
.y351{bottom:719.011780px;}
.yb3{bottom:719.103934px;}
.y176{bottom:720.055518px;}
.y3c8{bottom:721.842773px;}
.y409{bottom:721.842808px;}
.y1ad{bottom:721.956436px;}
.y2c8{bottom:723.744310px;}
.y6{bottom:726.298500px;}
.y28d{bottom:726.670500px;}
.y22c{bottom:730.672328px;}
.y383{bottom:732.123871px;}
.y118{bottom:735.152508px;}
.y3c7{bottom:735.342773px;}
.y408{bottom:735.342808px;}
.y1ec{bottom:735.754041px;}
.y7d{bottom:736.635341px;}
.ye5{bottom:736.642541px;}
.y2d{bottom:736.715057px;}
.y350{bottom:737.026180px;}
.yb2{bottom:737.096734px;}
.y190{bottom:737.745130px;}
.y175{bottom:738.199518px;}
.y2c7{bottom:741.888310px;}
.y1ac{bottom:742.867950px;}
.y382{bottom:745.623871px;}
.y22b{bottom:748.665128px;}
.y3c6{bottom:748.842773px;}
.y407{bottom:748.842808px;}
.y3{bottom:752.599495px;}
.y316{bottom:752.763016px;}
.y28c{bottom:753.562500px;}
.y1eb{bottom:753.746841px;}
.y7c{bottom:754.628141px;}
.ye4{bottom:754.635341px;}
.y2c{bottom:754.715057px;}
.y34f{bottom:755.018980px;}
.yb1{bottom:755.089534px;}
.y18f{bottom:755.737930px;}
.y31b{bottom:756.331192px;}
.y174{bottom:756.343518px;}
.y381{bottom:759.123871px;}
.y2c6{bottom:760.044310px;}
.y1ab{bottom:761.592133px;}
.y3c5{bottom:762.342773px;}
.y406{bottom:762.342808px;}
.y1aa{bottom:763.792969px;}
.y22a{bottom:766.657928px;}
.y1ea{bottom:771.775687px;}
.y117{bottom:771.902508px;}
.y7b{bottom:772.620941px;}
.y380{bottom:772.623871px;}
.ye3{bottom:772.628141px;}
.y2b{bottom:772.715057px;}
.y34e{bottom:773.011780px;}
.yb0{bottom:773.082334px;}
.y18e{bottom:773.831576px;}
.y28b{bottom:774.331518px;}
.y173{bottom:774.487518px;}
.y3c4{bottom:775.842773px;}
.y405{bottom:775.842808px;}
.y31a{bottom:777.242706px;}
.y315{bottom:778.750214px;}
.y37f{bottom:786.123871px;}
.y2c5{bottom:786.936310px;}
.y245{bottom:788.633057px;}
.y3c3{bottom:789.342773px;}
.y404{bottom:789.342808px;}
.y1e9{bottom:789.768487px;}
.y116{bottom:789.895308px;}
.ye2{bottom:790.620941px;}
.y2a{bottom:790.715057px;}
.y7a{bottom:790.721741px;}
.y34d{bottom:791.033380px;}
.yaf{bottom:791.075134px;}
.y1a6{bottom:791.781176px;}
.y18d{bottom:791.824376px;}
.y28a{bottom:792.475518px;}
.y172{bottom:792.631518px;}
.y319{bottom:795.966888px;}
.y318{bottom:798.167725px;}
.y37e{bottom:799.623871px;}
.y246{bottom:802.657471px;}
.y3c2{bottom:802.842773px;}
.y403{bottom:802.842808px;}
.y24e{bottom:805.851471px;}
.y1e8{bottom:807.761287px;}
.y115{bottom:807.888108px;}
.ye1{bottom:808.642541px;}
.y79{bottom:808.714541px;}
.y29{bottom:808.715057px;}
.y34c{bottom:809.026180px;}
.yae{bottom:809.082334px;}
.y1a5{bottom:809.773976px;}
.y18c{bottom:809.817176px;}
.y289{bottom:810.631518px;}
.y171{bottom:810.775518px;}
.y2c3{bottom:811.248871px;}
.y37d{bottom:813.123871px;}
.y3c1{bottom:816.342773px;}
.y402{bottom:816.342808px;}
.y1e7{bottom:825.754087px;}
.y114{bottom:825.880908px;}
.y37c{bottom:826.623871px;}
.ye0{bottom:826.635341px;}
.y78{bottom:826.707341px;}
.y24d{bottom:826.776489px;}
.y2e6{bottom:826.942376px;}
.y34b{bottom:827.018980px;}
.yad{bottom:827.075134px;}
.y1a4{bottom:827.766776px;}
.y18b{bottom:827.809976px;}
.y288{bottom:828.775518px;}
.y170{bottom:828.919518px;}
.y3c0{bottom:829.842773px;}
.y401{bottom:829.842808px;}
.y28{bottom:831.215057px;}
.y3bf{bottom:843.342773px;}
.y400{bottom:843.342808px;}
.y1e6{bottom:843.746887px;}
.y113{bottom:843.873708px;}
.ydf{bottom:844.628141px;}
.y77{bottom:844.700141px;}
.y34a{bottom:845.011780px;}
.yac{bottom:845.082334px;}
.y1a3{bottom:845.759576px;}
.y18a{bottom:845.802776px;}
.y287{bottom:846.919518px;}
.y16f{bottom:847.063518px;}
.y24c{bottom:847.701416px;}
.y3be{bottom:856.842773px;}
.y3ff{bottom:856.842808px;}
.y112{bottom:861.866508px;}
.yde{bottom:862.620941px;}
.y76{bottom:862.692941px;}
.y349{bottom:863.018980px;}
.yab{bottom:863.075134px;}
.y1a2{bottom:863.752376px;}
.y189{bottom:863.795576px;}
.y286{bottom:865.063518px;}
.y16e{bottom:865.207518px;}
.y209{bottom:865.722107px;}
.y24b{bottom:868.626434px;}
.y3bd{bottom:870.342773px;}
.y3fe{bottom:870.342808px;}
.y30d{bottom:872.387970px;}
.y312{bottom:875.956238px;}
.y2{bottom:879.369000px;}
.y20a{bottom:879.746979px;}
.y111{bottom:879.859308px;}
.ydd{bottom:880.656941px;}
.y75{bottom:880.685741px;}
.y348{bottom:881.011780px;}
.yaa{bottom:881.111134px;}
.y1a1{bottom:881.745176px;}
.y188{bottom:881.788376px;}
.y2af{bottom:881.802776px;}
.y210{bottom:882.790466px;}
.y285{bottom:883.207518px;}
.y16d{bottom:883.351518px;}
.y3bc{bottom:883.842773px;}
.y3fd{bottom:883.842808px;}
.y2ba{bottom:887.150391px;}
.y24a{bottom:889.538086px;}
.y37b{bottom:895.623871px;}
.y311{bottom:896.867706px;}
.y3bb{bottom:897.342773px;}
.y3fc{bottom:897.342808px;}
.y110{bottom:897.852108px;}
.y30c{bottom:898.375214px;}
.ydc{bottom:898.649741px;}
.y74{bottom:898.678541px;}
.y347{bottom:899.062180px;}
.ya9{bottom:899.103934px;}
.y1a0{bottom:899.737976px;}
.y187{bottom:899.781176px;}
.y2ae{bottom:899.795576px;}
.y2bb{bottom:901.174530px;}
.y284{bottom:901.363518px;}
.y16c{bottom:901.495518px;}
.y27{bottom:903.552612px;}
.y20f{bottom:903.715668px;}
.y2c0{bottom:904.318176px;}
.y249{bottom:908.491974px;}
.y248{bottom:910.462921px;}
.y3ba{bottom:910.842773px;}
.y3fb{bottom:910.842808px;}
.y310{bottom:915.591888px;}
.y10f{bottom:915.844908px;}
.ydb{bottom:916.642541px;}
.y73{bottom:916.671341px;}
.y346{bottom:917.054980px;}
.ya8{bottom:917.096734px;}
.y19f{bottom:917.737976px;}
.y186{bottom:917.773976px;}
.y2ad{bottom:917.788376px;}
.y30f{bottom:917.792725px;}
.y283{bottom:919.507518px;}
.y16b{bottom:919.639518px;}
.y37a{bottom:922.623871px;}
.y2bf{bottom:922.735657px;}
.y3b9{bottom:924.342773px;}
.y3fa{bottom:924.342808px;}
.y20d{bottom:924.627045px;}
.y10e{bottom:933.837708px;}
.yda{bottom:934.635341px;}
.y72{bottom:934.664141px;}
.y345{bottom:935.047780px;}
.ya7{bottom:935.089534px;}
.y19e{bottom:935.752376px;}
.y185{bottom:935.766776px;}
.y2ac{bottom:935.781176px;}
.y379{bottom:936.123871px;}
.y282{bottom:937.651518px;}
.y16a{bottom:937.783518px;}
.y3b8{bottom:937.842773px;}
.y3f9{bottom:937.842808px;}
.y2be{bottom:939.226685px;}
.y26{bottom:939.565528px;}
.y2bd{bottom:941.164948px;}
.y23a{bottom:941.483093px;}
.y20c{bottom:943.688690px;}
.y3b7{bottom:951.342773px;}
.y3f8{bottom:951.342808px;}
.y10d{bottom:951.866508px;}
.yd9{bottom:952.628141px;}
.y71{bottom:952.656941px;}
.y344{bottom:953.040580px;}
.ya6{bottom:953.082334px;}
.y19d{bottom:953.745176px;}
.y184{bottom:953.759576px;}
.y2ab{bottom:953.773976px;}
.y378{bottom:954.123871px;}
.y23b{bottom:954.444031px;}
.y281{bottom:955.795518px;}
.y169{bottom:955.927518px;}
.y242{bottom:957.893738px;}
.y2b1{bottom:963.031219px;}
.y3b6{bottom:964.842773px;}
.y3f7{bottom:964.842808px;}
.y1{bottom:966.726000px;}
.y1fe{bottom:966.972107px;}
.y377{bottom:967.623871px;}
.y304{bottom:969.562500px;}
.y10c{bottom:969.859308px;}
.yd8{bottom:970.620941px;}
.y70{bottom:970.649741px;}
.y343{bottom:971.033380px;}
.ya5{bottom:971.075134px;}
.y19c{bottom:971.737976px;}
.y183{bottom:971.752376px;}
.y2aa{bottom:971.766776px;}
.y309{bottom:973.131409px;}
.y280{bottom:973.939518px;}
.y168{bottom:974.071518px;}
.y376{bottom:976.623871px;}
.y2b2{bottom:977.054993px;}
.y3b5{bottom:978.342773px;}
.y3f6{bottom:978.342808px;}
.y25{bottom:978.553528px;}
.y241{bottom:978.818573px;}
.y2b7{bottom:980.186279px;}
.y1ff{bottom:981.685455px;}
.y206{bottom:984.973480px;}
.y10b{bottom:987.852108px;}
.yd7{bottom:988.620941px;}
.y6f{bottom:988.642541px;}
.y342{bottom:989.026180px;}
.ya4{bottom:989.082334px;}
.y182{bottom:989.745176px;}
.y2a9{bottom:989.759576px;}
.y3b4{bottom:991.842773px;}
.y3f5{bottom:991.842808px;}
.y27f{bottom:992.095518px;}
.y167{bottom:992.215518px;}
.y308{bottom:994.042969px;}
.y303{bottom:995.550476px;}
.y2b6{bottom:998.528687px;}
.y240{bottom:999.743591px;}
.y375{bottom:1003.623871px;}
.y205{bottom:1004.674072px;}
.y3b3{bottom:1005.342773px;}
.y3f4{bottom:1005.342808px;}
.y10a{bottom:1005.844908px;}
.y6e{bottom:1006.635341px;}
.y341{bottom:1007.018980px;}
.ya3{bottom:1007.075134px;}
.y181{bottom:1007.737976px;}
.y2a8{bottom:1007.752376px;}
.y307{bottom:1012.767150px;}
.y2b5{bottom:1014.952606px;}
.y306{bottom:1014.967987px;}
.y2b4{bottom:1016.882996px;}
.y374{bottom:1017.123871px;}
.y3b2{bottom:1018.842773px;}
.y3f3{bottom:1018.842808px;}
.y166{bottom:1018.987518px;}
.y23f{bottom:1020.654877px;}
.y109{bottom:1023.837708px;}
.y203{bottom:1024.361664px;}
.y6d{bottom:1024.628141px;}
.y340{bottom:1025.011780px;}
.ya2{bottom:1025.075134px;}
.y180{bottom:1025.745176px;}
.y19b{bottom:1025.770630px;}
.y3b1{bottom:1032.342773px;}
.y3f2{bottom:1032.342808px;}
.y24{bottom:1033.362579px;}
.y64{bottom:1035.750183px;}
.y23e{bottom:1039.379059px;}
.y23d{bottom:1041.579895px;}
.y108{bottom:1041.837708px;}
.y202{bottom:1041.990326px;}
.y6c{bottom:1042.620941px;}
.y33f{bottom:1043.011780px;}
.ya1{bottom:1043.075134px;}
.y165{bottom:1043.300079px;}
.y17f{bottom:1043.737976px;}
.y19a{bottom:1043.763430px;}
.y2b0{bottom:1043.796776px;}
.y201{bottom:1044.062073px;}
.y373{bottom:1044.123871px;}
.y3b0{bottom:1045.842773px;}
.y3f1{bottom:1045.842808px;}
.y65{bottom:1110.925507px;}
.y23{bottom:1112.297079px;}
.yd4{bottom:1126.524628px;}
.y6a{bottom:1126.524719px;}
.yd6{bottom:1126.756989px;}
.y22{bottom:1126.925079px;}
.yd5{bottom:1127.300079px;}
.y6b{bottom:1127.304719px;}
.h32{height:26.394480px;}
.h51{height:26.736360px;}
.h14{height:27.070500px;}
.h57{height:27.265980px;}
.h4b{height:27.321840px;}
.h5d{height:27.447420px;}
.h63{height:27.559560px;}
.h17{height:27.814500px;}
.h44{height:27.942599px;}
.h3e{height:27.984600px;}
.h34{height:28.924962px;}
.h4e{height:29.299596px;}
.h2f{height:29.460480px;}
.h54{height:29.879915px;}
.h48{height:29.941130px;}
.h5a{height:30.078952px;}
.h60{height:30.202082px;}
.h45{height:30.621491px;}
.h3f{height:30.667316px;}
.h26{height:31.291679px;}
.h7{height:32.130000px;}
.h2c{height:32.285141px;}
.h33{height:33.290994px;}
.h4f{height:33.722177px;}
.h23{height:34.291943px;}
.h55{height:34.390091px;}
.h49{height:34.460546px;}
.h5b{height:34.619171px;}
.h31{height:34.729800px;}
.h61{height:34.760887px;}
.h4d{height:35.179618px;}
.h42{height:35.243603px;}
.h3c{height:35.296345px;}
.h53{height:35.876399px;}
.h47{height:35.949899px;}
.h59{height:36.115379px;}
.h5f{height:36.263220px;}
.h41{height:36.766799px;}
.h50{height:36.821203px;}
.h3b{height:36.821820px;}
.h12{height:37.086000px;}
.h2d{height:37.158370px;}
.h56{height:37.550341px;}
.h4a{height:37.627165px;}
.h5c{height:37.800509px;}
.h62{height:37.955134px;}
.h2b{height:38.764320px;}
.h24{height:39.468086px;}
.h16{height:39.735000px;}
.h29{height:39.984000px;}
.h2e{height:40.572128px;}
.h22{height:41.173860px;}
.h1e{height:41.424000px;}
.h1f{height:42.384000px;}
.h6a{height:42.840000px;}
.h36{height:43.094556px;}
.h38{height:43.095197px;}
.h25{height:43.095288px;}
.h65{height:43.095292px;}
.h43{height:43.104872px;}
.h3d{height:43.180134px;}
.h67{height:43.785000px;}
.hb{height:45.696000px;}
.h18{height:45.744000px;}
.h69{height:45.814500px;}
.h68{height:45.814592px;}
.h6{height:45.900000px;}
.h1d{height:46.704000px;}
.ha{height:47.232000px;}
.h3{height:48.195000px;}
.h66{height:48.270515px;}
.h28{height:48.271247px;}
.h39{height:48.271431px;}
.h58{height:48.682503px;}
.h5e{height:48.880503px;}
.h10{height:52.980000px;}
.h1c{height:53.406000px;}
.h19{height:53.709599px;}
.h1b{height:54.625200px;}
.h2{height:55.080000px;}
.h64{height:55.500000px;}
.h13{height:55.860000px;}
.h20{height:57.000000px;}
.h11{height:58.380000px;}
.h1a{height:60.564000px;}
.hf{height:61.120200px;}
.h4c{height:65.235003px;}
.h52{height:66.528002px;}
.h46{height:66.664500px;}
.he{height:67.194379px;}
.h40{height:68.177999px;}
.h2a{height:71.740499px;}
.h15{height:72.960000px;}
.h30{height:74.250000px;}
.hc{height:77.142000px;}
.h5{height:78.030000px;}
.h21{height:97.200005px;}
.h37{height:97.230000px;}
.h35{height:97.231499px;}
.h3a{height:116.850002px;}
.h27{height:118.109997px;}
.h4{height:119.055004px;}
.hd{height:137.088000px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:248.655006px;}
.w4{width:264.528007px;}
.w5{width:285.554993px;}
.wc{width:298.919998px;}
.w8{width:300.360008px;}
.w7{width:320.037003px;}
.wd{width:320.038490px;}
.w9{width:324.540000px;}
.wb{width:330.973503px;}
.wa{width:337.801506px;}
.w10{width:383.474991px;}
.wf{width:384.945007px;}
.we{width:403.816498px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x95{left:41.372864px;}
.x26{left:44.414705px;}
.x13{left:47.171082px;}
.x43{left:49.565255px;}
.x9c{left:54.149551px;}
.x36{left:55.274850px;}
.x31{left:56.718145px;}
.x1c{left:58.754242px;}
.xa8{left:60.370331px;}
.xc0{left:67.260144px;}
.x81{left:70.134567px;}
.x92{left:71.306992px;}
.x27{left:75.172498px;}
.x87{left:76.992599px;}
.x14{left:79.854584px;}
.x98{left:82.888641px;}
.x5{left:84.933002px;}
.x46{left:86.150242px;}
.x7a{left:87.249298px;}
.x29{left:88.975354px;}
.x6b{left:90.376785px;}
.x6{left:92.734348px;}
.x7{left:94.683150px;}
.xe{left:97.034552px;}
.x62{left:98.149658px;}
.x7c{left:100.038300px;}
.x1{left:102.045000px;}
.x44{left:104.409004px;}
.x2{left:106.297500px;}
.xd5{left:107.539352px;}
.xbc{left:108.987294px;}
.x39{left:111.475652px;}
.x24{left:115.039500px;}
.x47{left:118.820251px;}
.x9e{left:120.746384px;}
.xa9{left:127.239304px;}
.xa4{left:128.761047px;}
.xc6{left:132.060300px;}
.x49{left:133.481094px;}
.x74{left:134.823761px;}
.x3b{left:136.383306px;}
.xa6{left:141.673187px;}
.x25{left:143.401199px;}
.x90{left:144.897171px;}
.x40{left:149.416500px;}
.x7d{left:151.007080px;}
.x42{left:152.170956px;}
.x2e{left:153.404102px;}
.x30{left:156.480148px;}
.x75{left:157.777176px;}
.x33{left:161.257795px;}
.x52{left:162.866547px;}
.x9a{left:164.406143px;}
.xc8{left:166.039960px;}
.x1f{left:167.528412px;}
.x85{left:170.043136px;}
.x1d{left:171.289948px;}
.x58{left:172.424847px;}
.x45{left:173.508453px;}
.x17{left:176.096100px;}
.x4f{left:177.342751px;}
.x67{left:179.166321px;}
.xcf{left:180.937192px;}
.x2c{left:182.241452px;}
.xae{left:184.120354px;}
.xb8{left:185.154592px;}
.x4e{left:186.319805px;}
.x53{left:188.205894px;}
.x37{left:189.741154px;}
.x19{left:190.743301px;}
.x55{left:191.843691px;}
.xc3{left:192.864750px;}
.xab{left:195.106934px;}
.x28{left:198.016205px;}
.xba{left:199.801954px;}
.x4{left:203.484001px;}
.x56{left:206.491053px;}
.xc4{left:207.511953px;}
.x51{left:209.189095px;}
.x5a{left:210.711159px;}
.x3e{left:212.266195px;}
.x4b{left:215.061745px;}
.x38{left:217.146011px;}
.xa0{left:218.154922px;}
.x54{left:220.889557px;}
.xc1{left:223.272011px;}
.xac{left:225.045914px;}
.xb1{left:226.396947px;}
.x4d{left:229.709106px;}
.x48{left:231.517960px;}
.x5e{left:232.555664px;}
.x77{left:234.857254px;}
.x8a{left:238.547836px;}
.x21{left:242.048859px;}
.xc9{left:243.111295px;}
.x3a{left:245.927856px;}
.xce{left:255.638397px;}
.xc7{left:258.061500px;}
.x2a{left:259.303207px;}
.x32{left:262.430397px;}
.x8c{left:265.758591px;}
.xd1{left:267.309896px;}
.x8{left:270.817497px;}
.x35{left:272.520757px;}
.xb7{left:274.502998px;}
.xb3{left:276.932693px;}
.xc2{left:282.213158px;}
.x5b{left:287.701492px;}
.xad{left:288.811523px;}
.x2b{left:291.294456px;}
.x50{left:292.700111px;}
.x4a{left:293.779793px;}
.x41{left:294.792470px;}
.xbe{left:295.962285px;}
.x3c{left:298.564339px;}
.xaf{left:301.084648px;}
.xbd{left:306.322792px;}
.xb9{left:308.482796px;}
.x2f{left:313.815618px;}
.xa2{left:316.865845px;}
.x3d{left:321.824844px;}
.x4c{left:327.759453px;}
.x59{left:331.190981px;}
.xb0{left:335.077789px;}
.xd0{left:347.020042px;}
.x2d{left:349.913246px;}
.x57{left:356.159843px;}
.xbb{left:365.884804px;}
.x34{left:367.885208px;}
.xca{left:369.098991px;}
.xc5{left:373.594803px;}
.xd2{left:379.859105px;}
.xcd{left:381.337957px;}
.xb4{left:387.970367px;}
.xb2{left:392.479797px;}
.xcb{left:398.489090px;}
.xb6{left:400.209310px;}
.x3f{left:401.718018px;}
.xbf{left:417.360306px;}
.x23{left:418.517120px;}
.x10{left:438.139354px;}
.x3{left:454.959000px;}
.x9{left:457.092894px;}
.xa{left:469.088094px;}
.x5c{left:473.267990px;}
.xcc{left:475.479446px;}
.xd4{left:479.586594px;}
.x6e{left:484.960510px;}
.xf{left:487.089292px;}
.xb5{left:494.364166px;}
.x94{left:513.502670px;}
.x12{left:517.220398px;}
.x72{left:526.164139px;}
.x1b{left:527.830811px;}
.x6f{left:529.804367px;}
.x1a{left:531.097778px;}
.x96{left:535.729202px;}
.x7f{left:538.062149px;}
.x80{left:540.914978px;}
.xc{left:543.076492px;}
.x65{left:548.869949px;}
.x60{left:551.909866px;}
.x8d{left:552.922668px;}
.x61{left:555.176559px;}
.x73{left:556.651657px;}
.x6a{left:558.373489px;}
.x69{left:561.289810px;}
.x97{left:564.397659px;}
.x88{left:569.511429px;}
.x15{left:575.229446px;}
.x7b{left:579.447464px;}
.x8e{left:581.401337px;}
.xa3{left:593.220428px;}
.x9d{left:594.913055px;}
.x8f{left:609.597290px;}
.x1e{left:614.276093px;}
.x70{left:616.468643px;}
.xaa{left:619.925720px;}
.xa5{left:623.147095px;}
.x66{left:630.017990px;}
.x84{left:635.178589px;}
.x16{left:637.491577px;}
.x82{left:639.185257px;}
.x22{left:643.126190px;}
.x99{left:645.902847px;}
.x76{left:660.844482px;}
.x6c{left:663.754486px;}
.x5d{left:665.471832px;}
.x63{left:667.726959px;}
.x89{left:669.206268px;}
.x18{left:671.470779px;}
.xa7{left:673.703110px;}
.x9f{left:692.309830px;}
.x91{left:693.445953px;}
.xb{left:694.929886px;}
.x9b{left:696.253052px;}
.x7e{left:697.555664px;}
.x71{left:702.410248px;}
.x20{left:710.504700px;}
.x68{left:716.242813px;}
.x86{left:717.398117px;}
.x78{left:729.594910px;}
.x8b{left:734.988739px;}
.x83{left:736.984360px;}
.x93{left:739.910706px;}
.xd3{left:741.068390px;}
.xd{left:747.224258px;}
.x5f{left:761.713348px;}
.x6d{left:764.086807px;}
.x64{left:779.736420px;}
.x79{left:783.034332px;}
.xa1{left:785.621063px;}
.x11{left:790.564362px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v6{vertical-align:-12.145508pt;}
.v8{vertical-align:-10.224284pt;}
.v5{vertical-align:-7.825195pt;}
.v7{vertical-align:-6.625326pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v9{vertical-align:6.832031pt;}
.v4{vertical-align:7.825195pt;}
.va{vertical-align:16.000081pt;}
.v2{vertical-align:23.466471pt;}
.ls8d{letter-spacing:-1.829333pt;}
.lsb3{letter-spacing:-1.045333pt;}
.ls8{letter-spacing:-0.933333pt;}
.lse{letter-spacing:-0.810667pt;}
.ls90{letter-spacing:-0.731733pt;}
.lsd{letter-spacing:-0.627200pt;}
.lsf{letter-spacing:-0.554667pt;}
.lsb1{letter-spacing:-0.261333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000001pt;}
.lsb2{letter-spacing:0.000063pt;}
.ls16{letter-spacing:0.000779pt;}
.ls84{letter-spacing:0.000926pt;}
.ls9a{letter-spacing:0.000944pt;}
.ls3e{letter-spacing:0.001034pt;}
.ls28{letter-spacing:0.001205pt;}
.ls4d{letter-spacing:0.001237pt;}
.ls49{letter-spacing:0.001277pt;}
.ls6b{letter-spacing:0.001988pt;}
.ls55{letter-spacing:0.003058pt;}
.ls78{letter-spacing:0.004730pt;}
.ls98{letter-spacing:0.004896pt;}
.ls82{letter-spacing:0.004945pt;}
.ls22{letter-spacing:0.005063pt;}
.lsa8{letter-spacing:0.005145pt;}
.lsac{letter-spacing:0.005146pt;}
.ls7d{letter-spacing:0.005217pt;}
.ls1f{letter-spacing:0.005226pt;}
.lsa2{letter-spacing:0.005988pt;}
.ls12{letter-spacing:0.006477pt;}
.ls3a{letter-spacing:0.006478pt;}
.ls2a{letter-spacing:0.006689pt;}
.ls19{letter-spacing:0.006803pt;}
.ls4f{letter-spacing:0.006884pt;}
.ls53{letter-spacing:0.006966pt;}
.lsa9{letter-spacing:0.007328pt;}
.ls40{letter-spacing:0.010310pt;}
.ls3c{letter-spacing:0.010351pt;}
.ls38{letter-spacing:0.010391pt;}
.ls8f{letter-spacing:0.033517pt;}
.ls94{letter-spacing:0.033951pt;}
.ls95{letter-spacing:0.034623pt;}
.ls93{letter-spacing:0.034694pt;}
.ls92{letter-spacing:0.035483pt;}
.ls91{letter-spacing:0.035536pt;}
.ls8e{letter-spacing:0.037410pt;}
.ls25{letter-spacing:0.039735pt;}
.ls6{letter-spacing:0.601067pt;}
.ls4{letter-spacing:0.731733pt;}
.ls5{letter-spacing:0.742187pt;}
.lsa{letter-spacing:1.045333pt;}
.lsc{letter-spacing:1.060990pt;}
.lsb{letter-spacing:1.149867pt;}
.ls3{letter-spacing:1.254400pt;}
.ls2{letter-spacing:1.306667pt;}
.ls9{letter-spacing:1.311893pt;}
.ls79{letter-spacing:2.273852pt;}
.ls7c{letter-spacing:2.274014pt;}
.ls7f{letter-spacing:2.314544pt;}
.ls87{letter-spacing:2.316774pt;}
.ls89{letter-spacing:2.317099pt;}
.ls83{letter-spacing:2.318727pt;}
.ls75{letter-spacing:2.321530pt;}
.ls72{letter-spacing:2.322018pt;}
.ls6f{letter-spacing:2.323157pt;}
.ls74{letter-spacing:2.323646pt;}
.ls9d{letter-spacing:2.333763pt;}
.ls9f{letter-spacing:2.334251pt;}
.ls99{letter-spacing:2.334414pt;}
.lsa6{letter-spacing:2.341705pt;}
.lsa3{letter-spacing:2.343821pt;}
.ls8a{letter-spacing:2.360231pt;}
.ls8b{letter-spacing:2.360882pt;}
.ls9e{letter-spacing:2.375918pt;}
.ls67{letter-spacing:2.376015pt;}
.ls69{letter-spacing:2.376504pt;}
.ls6c{letter-spacing:2.418496pt;}
.ls2f{letter-spacing:2.504944pt;}
.ls29{letter-spacing:2.505432pt;}
.ls2d{letter-spacing:2.505434pt;}
.ls31{letter-spacing:2.505473pt;}
.ls30{letter-spacing:2.550761pt;}
.ls60{letter-spacing:2.656371pt;}
.ls5e{letter-spacing:2.656533pt;}
.ls5c{letter-spacing:2.656859pt;}
.ls61{letter-spacing:2.657022pt;}
.ls46{letter-spacing:2.658672pt;}
.ls54{letter-spacing:2.659078pt;}
.ls4a{letter-spacing:2.659160pt;}
.ls1b{letter-spacing:2.659241pt;}
.ls56{letter-spacing:2.660706pt;}
.ls1a{letter-spacing:2.660869pt;}
.ls18{letter-spacing:2.661195pt;}
.ls44{letter-spacing:2.661276pt;}
.ls24{letter-spacing:2.661352pt;}
.ls13{letter-spacing:2.661357pt;}
.ls39{letter-spacing:2.662034pt;}
.ls3f{letter-spacing:2.664150pt;}
.ls42{letter-spacing:2.706605pt;}
.ls45{letter-spacing:2.706686pt;}
.ls4e{letter-spacing:2.708802pt;}
.ls21{letter-spacing:2.708883pt;}
.lsb0{letter-spacing:2.709209pt;}
.ls4c{letter-spacing:2.709290pt;}
.ls23{letter-spacing:2.709372pt;}
.ls3b{letter-spacing:2.710048pt;}
.ls7b{letter-spacing:2.970954pt;}
.lsa5{letter-spacing:3.021230pt;}
.ls85{letter-spacing:3.030641pt;}
.ls71{letter-spacing:3.036211pt;}
.ls9b{letter-spacing:3.050559pt;}
.ls68{letter-spacing:3.105508pt;}
.ls2b{letter-spacing:3.272359pt;}
.ls37{letter-spacing:3.335086pt;}
.ls5d{letter-spacing:3.375283pt;}
.ls43{letter-spacing:3.429831pt;}
.lsaf{letter-spacing:3.429912pt;}
.ls52{letter-spacing:3.475810pt;}
.lsaa{letter-spacing:3.476217pt;}
.ls15{letter-spacing:3.476299pt;}
.ls20{letter-spacing:3.477764pt;}
.lsad{letter-spacing:3.477845pt;}
.ls4b{letter-spacing:3.477926pt;}
.ls6e{letter-spacing:4.656368pt;}
.ls6a{letter-spacing:4.715488pt;}
.ls1{letter-spacing:4.853333pt;}
.ls27{letter-spacing:4.971678pt;}
.ls48{letter-spacing:5.280711pt;}
.ls36{letter-spacing:5.292160pt;}
.ls51{letter-spacing:5.332995pt;}
.ls88{letter-spacing:9.248138pt;}
.ls35{letter-spacing:9.746395pt;}
.ls34{letter-spacing:9.790496pt;}
.ls7e{letter-spacing:9.917302pt;}
.ls7a{letter-spacing:9.961974pt;}
.ls86{letter-spacing:10.113728pt;}
.ls70{letter-spacing:10.134448pt;}
.ls8c{letter-spacing:10.159285pt;}
.ls73{letter-spacing:10.180098pt;}
.ls9c{letter-spacing:10.226958pt;}
.lsa4{letter-spacing:10.268823pt;}
.ls65{letter-spacing:10.364736pt;}
.ls59{letter-spacing:10.380246pt;}
.ls64{letter-spacing:10.411424pt;}
.ls5a{letter-spacing:10.427004pt;}
.ls5f{letter-spacing:10.614036pt;}
.ls2c{letter-spacing:10.927846pt;}
.ls32{letter-spacing:10.977071pt;}
.ls17{letter-spacing:11.607107pt;}
.ls14{letter-spacing:11.659391pt;}
.ls76{letter-spacing:12.281338pt;}
.ls80{letter-spacing:12.522340pt;}
.ls6d{letter-spacing:12.548255pt;}
.ls96{letter-spacing:12.606224pt;}
.lsa0{letter-spacing:12.659576pt;}
.ls63{letter-spacing:12.835163pt;}
.ls58{letter-spacing:13.169554pt;}
.ls26{letter-spacing:13.530497pt;}
.lsae{letter-spacing:14.371155pt;}
.lsab{letter-spacing:14.371196pt;}
.lsa7{letter-spacing:14.371725pt;}
.ls10{letter-spacing:14.373271pt;}
.ls1d{letter-spacing:14.373434pt;}
.ls41{letter-spacing:14.373845pt;}
.ls47{letter-spacing:14.373922pt;}
.lsa1{letter-spacing:14.919725pt;}
.ls3d{letter-spacing:15.126757pt;}
.ls66{letter-spacing:15.126911pt;}
.ls2e{letter-spacing:15.948749pt;}
.ls11{letter-spacing:16.940102pt;}
.ls33{letter-spacing:17.596432pt;}
.ls62{letter-spacing:17.741439pt;}
.ls57{letter-spacing:18.282326pt;}
.ls77{letter-spacing:18.985826pt;}
.ls81{letter-spacing:19.361866pt;}
.ls97{letter-spacing:19.490840pt;}
.ls1c{letter-spacing:19.815737pt;}
.ls50{letter-spacing:19.868021pt;}
.ls5b{letter-spacing:21.041040pt;}
.ls1e{letter-spacing:22.220813pt;}
.ws2{word-spacing:-18.858667pt;}
.ws76{word-spacing:-13.328000pt;}
.ws2d{word-spacing:-12.282667pt;}
.wsa8{word-spacing:-11.655467pt;}
.ws4{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.ws15f{word-spacing:-10.156800pt;}
.ws1{word-spacing:-9.045333pt;}
.ws3{word-spacing:-8.993600pt;}
.ws15d{word-spacing:-8.760000pt;}
.ws15c{word-spacing:-8.280000pt;}
.wsaa{word-spacing:-8.021333pt;}
.ws6{word-spacing:-7.242667pt;}
.ws15e{word-spacing:-6.132000pt;}
.wse5{word-spacing:-4.010667pt;}
.wse6{word-spacing:-3.498667pt;}
.ws16a{word-spacing:-3.440000pt;}
.wsa{word-spacing:-1.306667pt;}
.ws82{word-spacing:-1.045333pt;}
.ws40{word-spacing:-0.888533pt;}
.wsdd{word-spacing:-0.836267pt;}
.ws23{word-spacing:-0.731733pt;}
.ws46{word-spacing:-0.627200pt;}
.ws14f{word-spacing:-0.522667pt;}
.ws9e{word-spacing:-0.470400pt;}
.ws35{word-spacing:-0.365867pt;}
.ws148{word-spacing:-0.261333pt;}
.wsb2{word-spacing:-0.209067pt;}
.ws66{word-spacing:-0.156800pt;}
.ws169{word-spacing:-0.120000pt;}
.wscb{word-spacing:-0.079471pt;}
.wsed{word-spacing:-0.074820pt;}
.wsff{word-spacing:-0.071072pt;}
.ws106{word-spacing:-0.070965pt;}
.ws10c{word-spacing:-0.069389pt;}
.ws119{word-spacing:-0.069247pt;}
.ws113{word-spacing:-0.067902pt;}
.wsf3{word-spacing:-0.067034pt;}
.wsc5{word-spacing:-0.052284pt;}
.wse8{word-spacing:-0.049225pt;}
.wsfa{word-spacing:-0.046758pt;}
.ws100{word-spacing:-0.046688pt;}
.ws139{word-spacing:-0.046049pt;}
.ws135{word-spacing:-0.045861pt;}
.ws108{word-spacing:-0.045651pt;}
.ws115{word-spacing:-0.045557pt;}
.ws10e{word-spacing:-0.044673pt;}
.wsef{word-spacing:-0.044101pt;}
.wsf9{word-spacing:-0.039735pt;}
.wse9{word-spacing:-0.037410pt;}
.wsfc{word-spacing:-0.035536pt;}
.ws136{word-spacing:-0.034854pt;}
.ws116{word-spacing:-0.034623pt;}
.ws0{word-spacing:0.000000pt;}
.ws33{word-spacing:0.052267pt;}
.ws14e{word-spacing:0.104533pt;}
.ws27{word-spacing:0.156800pt;}
.ws86{word-spacing:0.209067pt;}
.ws53{word-spacing:0.313600pt;}
.ws14{word-spacing:0.365867pt;}
.ws63{word-spacing:0.470400pt;}
.ws5e{word-spacing:0.522667pt;}
.ws2b{word-spacing:0.574933pt;}
.ws1c{word-spacing:0.627200pt;}
.ws161{word-spacing:0.679467pt;}
.wsd7{word-spacing:0.731733pt;}
.ws7b{word-spacing:0.784000pt;}
.ws30{word-spacing:0.888533pt;}
.ws1b{word-spacing:0.993067pt;}
.ws168{word-spacing:1.045333pt;}
.ws156{word-spacing:1.097600pt;}
.ws47{word-spacing:1.149867pt;}
.ws124{word-spacing:1.202133pt;}
.wsa3{word-spacing:1.306667pt;}
.wsb4{word-spacing:1.358933pt;}
.ws94{word-spacing:1.411200pt;}
.ws5d{word-spacing:1.463467pt;}
.ws41{word-spacing:1.515733pt;}
.ws166{word-spacing:1.568000pt;}
.wsde{word-spacing:1.620267pt;}
.ws54{word-spacing:1.672533pt;}
.ws56{word-spacing:1.724800pt;}
.ws167{word-spacing:1.777067pt;}
.ws3d{word-spacing:1.829333pt;}
.wse2{word-spacing:1.881600pt;}
.ws150{word-spacing:1.986133pt;}
.wsa1{word-spacing:2.038400pt;}
.ws164{word-spacing:2.090667pt;}
.wsaf{word-spacing:2.142933pt;}
.ws11e{word-spacing:2.247467pt;}
.ws50{word-spacing:2.299733pt;}
.ws36{word-spacing:2.404267pt;}
.ws5c{word-spacing:2.456533pt;}
.ws6b{word-spacing:2.508800pt;}
.ws154{word-spacing:2.613333pt;}
.ws121{word-spacing:2.665600pt;}
.ws72{word-spacing:2.717867pt;}
.ws13{word-spacing:2.770133pt;}
.ws5b{word-spacing:2.874667pt;}
.ws45{word-spacing:2.926933pt;}
.ws163{word-spacing:2.979200pt;}
.ws16{word-spacing:3.031467pt;}
.ws11d{word-spacing:3.083733pt;}
.ws151{word-spacing:3.136000pt;}
.ws62{word-spacing:3.188267pt;}
.ws4d{word-spacing:3.292800pt;}
.ws52{word-spacing:3.345067pt;}
.ws160{word-spacing:3.501867pt;}
.wsa5{word-spacing:3.554133pt;}
.ws4e{word-spacing:3.606400pt;}
.ws122{word-spacing:3.658667pt;}
.ws3c{word-spacing:3.710933pt;}
.wsc2{word-spacing:3.763200pt;}
.wsb1{word-spacing:3.815467pt;}
.wsd3{word-spacing:3.840000pt;}
.ws6e{word-spacing:3.920000pt;}
.wse1{word-spacing:3.972267pt;}
.wsbc{word-spacing:4.024533pt;}
.ws2a{word-spacing:4.076800pt;}
.ws3b{word-spacing:4.129067pt;}
.ws48{word-spacing:4.181333pt;}
.ws123{word-spacing:4.233600pt;}
.ws19{word-spacing:4.285867pt;}
.ws31{word-spacing:4.338133pt;}
.ws7a{word-spacing:4.390400pt;}
.wsf{word-spacing:4.442667pt;}
.ws7d{word-spacing:4.494933pt;}
.ws1e{word-spacing:4.547200pt;}
.ws78{word-spacing:4.599467pt;}
.ws81{word-spacing:4.651733pt;}
.ws32{word-spacing:4.704000pt;}
.ws1a{word-spacing:4.808533pt;}
.ws4a{word-spacing:4.860800pt;}
.wsb5{word-spacing:4.913067pt;}
.ws3e{word-spacing:4.965333pt;}
.ws65{word-spacing:5.017600pt;}
.wsd{word-spacing:5.069867pt;}
.ws34{word-spacing:5.122133pt;}
.ws60{word-spacing:5.226667pt;}
.ws61{word-spacing:5.278933pt;}
.ws71{word-spacing:5.331200pt;}
.wse4{word-spacing:5.383467pt;}
.ws67{word-spacing:5.435733pt;}
.wsbb{word-spacing:5.488000pt;}
.ws6a{word-spacing:5.592533pt;}
.ws6f{word-spacing:5.644800pt;}
.ws57{word-spacing:5.697067pt;}
.ws85{word-spacing:5.749333pt;}
.ws93{word-spacing:5.801600pt;}
.ws39{word-spacing:5.906133pt;}
.wsad{word-spacing:5.958400pt;}
.ws68{word-spacing:6.010667pt;}
.ws8e{word-spacing:6.062933pt;}
.ws44{word-spacing:6.219733pt;}
.wsae{word-spacing:6.324267pt;}
.ws17{word-spacing:6.376533pt;}
.ws79{word-spacing:6.428800pt;}
.wsa2{word-spacing:6.481067pt;}
.ws28{word-spacing:6.585600pt;}
.ws2e{word-spacing:6.690133pt;}
.wsbe{word-spacing:6.742400pt;}
.ws84{word-spacing:6.794667pt;}
.ws12{word-spacing:6.846933pt;}
.wsb9{word-spacing:6.899200pt;}
.ws15a{word-spacing:6.951467pt;}
.ws29{word-spacing:7.003733pt;}
.ws3a{word-spacing:7.056000pt;}
.ws91{word-spacing:7.108267pt;}
.ws7e{word-spacing:7.160533pt;}
.ws51{word-spacing:7.212800pt;}
.ws7f{word-spacing:7.265067pt;}
.wsa4{word-spacing:7.317333pt;}
.wsb3{word-spacing:7.369600pt;}
.ws73{word-spacing:7.421867pt;}
.ws11a{word-spacing:7.474133pt;}
.ws64{word-spacing:7.526400pt;}
.ws120{word-spacing:7.578667pt;}
.ws15b{word-spacing:7.630933pt;}
.ws8b{word-spacing:7.683200pt;}
.ws11f{word-spacing:7.735467pt;}
.ws14d{word-spacing:7.787733pt;}
.ws9{word-spacing:7.840000pt;}
.wsb0{word-spacing:7.892267pt;}
.ws4f{word-spacing:7.996800pt;}
.ws1f{word-spacing:8.310400pt;}
.ws75{word-spacing:8.414933pt;}
.ws15{word-spacing:8.467200pt;}
.wse3{word-spacing:8.519467pt;}
.ws152{word-spacing:8.571733pt;}
.ws20{word-spacing:8.624000pt;}
.ws162{word-spacing:8.676267pt;}
.ws58{word-spacing:8.728533pt;}
.ws155{word-spacing:8.780800pt;}
.ws69{word-spacing:8.833067pt;}
.ws99{word-spacing:8.885333pt;}
.ws97{word-spacing:8.937600pt;}
.ws2c{word-spacing:9.042133pt;}
.ws8c{word-spacing:9.094400pt;}
.ws25{word-spacing:9.198933pt;}
.wsa7{word-spacing:9.355733pt;}
.wsd6{word-spacing:9.408000pt;}
.ws8d{word-spacing:9.460267pt;}
.wse{word-spacing:9.564800pt;}
.ws158{word-spacing:9.617067pt;}
.ws59{word-spacing:9.773867pt;}
.ws89{word-spacing:10.035200pt;}
.ws80{word-spacing:10.087467pt;}
.ws18{word-spacing:10.139733pt;}
.wsa6{word-spacing:10.192000pt;}
.wsda{word-spacing:10.348800pt;}
.ws10{word-spacing:10.557867pt;}
.wsa0{word-spacing:10.610133pt;}
.wsdb{word-spacing:10.714667pt;}
.ws22{word-spacing:10.819200pt;}
.wsd8{word-spacing:10.923733pt;}
.ws6c{word-spacing:11.028267pt;}
.ws74{word-spacing:11.289600pt;}
.wsb{word-spacing:11.341867pt;}
.ws11{word-spacing:11.394133pt;}
.ws149{word-spacing:11.498667pt;}
.wsd9{word-spacing:11.550933pt;}
.ws11c{word-spacing:11.603200pt;}
.ws83{word-spacing:11.760000pt;}
.ws26{word-spacing:11.864533pt;}
.wsba{word-spacing:11.916800pt;}
.ws49{word-spacing:12.073600pt;}
.wsc3{word-spacing:12.178133pt;}
.ws5f{word-spacing:12.230400pt;}
.ws37{word-spacing:12.282667pt;}
.ws165{word-spacing:12.387200pt;}
.ws55{word-spacing:12.439467pt;}
.ws77{word-spacing:12.491733pt;}
.ws153{word-spacing:12.596267pt;}
.ws8a{word-spacing:12.648533pt;}
.ws24{word-spacing:12.753067pt;}
.ws5a{word-spacing:12.805333pt;}
.ws10d{word-spacing:12.855743pt;}
.ws10f{word-spacing:12.857371pt;}
.ws110{word-spacing:12.896270pt;}
.ws112{word-spacing:12.896759pt;}
.ws111{word-spacing:12.896921pt;}
.ws43{word-spacing:12.909867pt;}
.ws87{word-spacing:13.066667pt;}
.ws114{word-spacing:13.112358pt;}
.wsf1{word-spacing:13.118773pt;}
.wsf2{word-spacing:13.118854pt;}
.wsf0{word-spacing:13.120889pt;}
.ws107{word-spacing:13.139063pt;}
.ws118{word-spacing:13.153862pt;}
.ws117{word-spacing:13.154024pt;}
.wsdc{word-spacing:13.171200pt;}
.ws10b{word-spacing:13.179104pt;}
.ws10a{word-spacing:13.179106pt;}
.ws109{word-spacing:13.180729pt;}
.ws137{word-spacing:13.197357pt;}
.ws134{word-spacing:13.241628pt;}
.ws138{word-spacing:13.294229pt;}
.ws9f{word-spacing:13.328000pt;}
.ws70{word-spacing:13.432533pt;}
.ws103{word-spacing:13.435497pt;}
.ws102{word-spacing:13.437613pt;}
.ws104{word-spacing:13.478791pt;}
.ws105{word-spacing:13.480094pt;}
.ws101{word-spacing:13.480256pt;}
.ws88{word-spacing:13.484800pt;}
.ws98{word-spacing:13.537067pt;}
.wsb6{word-spacing:13.693867pt;}
.wsfb{word-spacing:13.750313pt;}
.wsfe{word-spacing:13.796211pt;}
.wsfd{word-spacing:13.798327pt;}
.ws157{word-spacing:13.798400pt;}
.wsee{word-spacing:13.803717pt;}
.ws4c{word-spacing:13.850667pt;}
.ws14a{word-spacing:13.902933pt;}
.wsdf{word-spacing:14.007467pt;}
.ws3f{word-spacing:14.059733pt;}
.wse7{word-spacing:14.167714pt;}
.wsec{word-spacing:14.210439pt;}
.wseb{word-spacing:14.212473pt;}
.wsea{word-spacing:14.212478pt;}
.wsbd{word-spacing:14.477867pt;}
.wsc0{word-spacing:14.582400pt;}
.ws11b{word-spacing:14.739200pt;}
.ws92{word-spacing:14.948267pt;}
.wsf8{word-spacing:15.045903pt;}
.wsf6{word-spacing:15.045906pt;}
.wsca{word-spacing:15.046068pt;}
.wsf7{word-spacing:15.046394pt;}
.wsc4{word-spacing:15.046557pt;}
.wsc6{word-spacing:15.048021pt;}
.wsf4{word-spacing:15.048103pt;}
.wsc8{word-spacing:15.048184pt;}
.ws14b{word-spacing:15.048591pt;}
.wsc9{word-spacing:15.048672pt;}
.wsf5{word-spacing:15.093920pt;}
.wsc7{word-spacing:15.096036pt;}
.ws14c{word-spacing:15.096040pt;}
.ws42{word-spacing:15.836800pt;}
.ws4b{word-spacing:16.307200pt;}
.ws2f{word-spacing:16.568533pt;}
.ws95{word-spacing:16.725333pt;}
.ws8{word-spacing:16.882133pt;}
.ws7c{word-spacing:17.248000pt;}
.wsbf{word-spacing:17.300267pt;}
.ws21{word-spacing:17.352533pt;}
.wsc{word-spacing:17.404800pt;}
.ws159{word-spacing:17.457067pt;}
.ws1d{word-spacing:17.718400pt;}
.wsb8{word-spacing:17.979733pt;}
.ws96{word-spacing:18.084267pt;}
.ws7{word-spacing:18.397867pt;}
.wsb7{word-spacing:18.606933pt;}
.wsac{word-spacing:19.338667pt;}
.ws90{word-spacing:19.704533pt;}
.ws9a{word-spacing:19.913600pt;}
.ws9b{word-spacing:20.593067pt;}
.ws6d{word-spacing:20.645333pt;}
.wsc1{word-spacing:20.802133pt;}
.ws9d{word-spacing:20.906667pt;}
.ws8f{word-spacing:21.324800pt;}
.wsd5{word-spacing:24.618662pt;}
.wse0{word-spacing:25.192533pt;}
.ws38{word-spacing:31.360000pt;}
.ws9c{word-spacing:39.722667pt;}
.wsd2{word-spacing:66.304000pt;}
.wscd{word-spacing:80.298667pt;}
.wscc{word-spacing:94.677333pt;}
.wsd1{word-spacing:95.530667pt;}
.wscf{word-spacing:110.677328pt;}
.wsce{word-spacing:142.762667pt;}
.wsd4{word-spacing:177.962662pt;}
.wsd0{word-spacing:233.642667pt;}
.ws12d{word-spacing:381.269329pt;}
.ws133{word-spacing:385.663995pt;}
.ws12c{word-spacing:404.138662pt;}
.ws12b{word-spacing:408.277329pt;}
.ws128{word-spacing:424.959995pt;}
.ws132{word-spacing:435.925329pt;}
.ws127{word-spacing:441.642662pt;}
.ws129{word-spacing:458.325329pt;}
.ws125{word-spacing:483.498662pt;}
.ws12a{word-spacing:620.800000pt;}
.ws131{word-spacing:651.178667pt;}
.ws142{word-spacing:924.074667pt;}
.ws146{word-spacing:928.469333pt;}
.ws140{word-spacing:946.944000pt;}
.ws145{word-spacing:951.082667pt;}
.ws141{word-spacing:961.834667pt;}
.ws13f{word-spacing:971.904000pt;}
.ws144{word-spacing:978.730667pt;}
.ws147{word-spacing:984.448000pt;}
.ws13d{word-spacing:1001.130667pt;}
.ws13a{word-spacing:1026.304000pt;}
.wsa9{word-spacing:1063.210634pt;}
.wsab{word-spacing:1140.309301pt;}
.ws13b{word-spacing:1163.477333pt;}
.ws12e{word-spacing:1194.197333pt;}
.ws13e{word-spacing:1194.794652pt;}
.ws143{word-spacing:1225.173314pt;}
.ws126{word-spacing:1689.770598pt;}
.ws12f{word-spacing:1710.592049pt;}
.ws13c{word-spacing:2320.725333pt;}
.ws130{word-spacing:2332.031982pt;}
._2{margin-left:-9.216000pt;}
._79{margin-left:-7.182933pt;}
._9{margin-left:-5.383467pt;}
._d{margin-left:-4.395627pt;}
._1{margin-left:-3.353600pt;}
._0{margin-left:-1.668267pt;}
._4{width:1.011200pt;}
._3{width:2.043733pt;}
._e{width:3.663893pt;}
._8{width:5.619627pt;}
._a{width:6.899200pt;}
._7{width:8.676267pt;}
._f{width:10.568513pt;}
._10{width:11.993595pt;}
._b{width:13.503253pt;}
._6{width:15.694923pt;}
._c{width:19.825067pt;}
._7b{width:23.360000pt;}
._5{width:33.938609pt;}
._7a{width:39.353600pt;}
._4a{width:52.697595pt;}
._46{width:56.728065pt;}
._3f{width:72.811407pt;}
._3c{width:83.633658pt;}
._48{width:87.850660pt;}
._38{width:88.789333pt;}
._2f{width:90.496000pt;}
._3b{width:91.950928pt;}
._41{width:96.853334pt;}
._27{width:98.641067pt;}
._45{width:105.117862pt;}
._3a{width:108.377600pt;}
._26{width:110.464000pt;}
._43{width:116.650659pt;}
._49{width:117.721598pt;}
._29{width:120.021328pt;}
._3e{width:125.141326pt;}
._30{width:130.516373pt;}
._40{width:136.917328pt;}
._22{width:139.434667pt;}
._34{width:140.842661pt;}
._2d{width:144.238933pt;}
._39{width:146.218667pt;}
._32{width:152.106667pt;}
._36{width:163.801600pt;}
._21{width:165.422933pt;}
._2a{width:176.854293pt;}
._47{width:178.956795pt;}
._3d{width:183.253328pt;}
._2b{width:185.685333pt;}
._44{width:189.013318pt;}
._23{width:191.744000pt;}
._42{width:192.981328pt;}
._35{width:200.149333pt;}
._33{width:202.653867pt;}
._28{width:216.017067pt;}
._25{width:221.994667pt;}
._2c{width:224.127995pt;}
._37{width:234.636800pt;}
._2e{width:238.933333pt;}
._31{width:248.661333pt;}
._24{width:258.474667pt;}
._53{width:409.301333pt;}
._67{width:421.209600pt;}
._57{width:423.992422pt;}
._52{width:428.373329pt;}
._51{width:432.511995pt;}
._62{width:434.303995pt;}
._68{width:436.766822pt;}
._58{width:444.928956pt;}
._5e{width:446.566400pt;}
._63{width:455.010129pt;}
._5d{width:465.865489pt;}
._5f{width:467.669329pt;}
._59{width:475.307618pt;}
._55{width:488.490662pt;}
._56{width:507.780267pt;}
._4b{width:524.164267pt;}
._4f{width:525.913600pt;}
._64{width:533.376000pt;}
._66{width:537.557329pt;}
._5b{width:542.933315pt;}
._5c{width:564.889600pt;}
._60{width:573.102933pt;}
._65{width:595.268267pt;}
._4e{width:603.481600pt;}
._50{width:608.883164pt;}
._54{width:617.685333pt;}
._61{width:620.189867pt;}
._69{width:640.866097pt;}
._5a{width:652.172800pt;}
._75{width:946.730667pt;}
._77{width:962.708256pt;}
._6c{width:966.912960pt;}
._72{width:995.204248pt;}
._1f{width:996.910901pt;}
._73{width:1010.474667pt;}
._20{width:1015.044234pt;}
._16{width:1050.905567pt;}
._1e{width:1052.885301pt;}
._1c{width:1070.468234pt;}
._6e{width:1081.774914pt;}
._14{width:1083.520928pt;}
._15{width:1092.351967pt;}
._6a{width:1098.158919pt;}
._18{width:1099.263967pt;}
._13{width:1102.105567pt;}
._1b{width:1106.815967pt;}
._1a{width:1109.320501pt;}
._70{width:1116.928000pt;}
._1d{width:1141.303434pt;}
._17{width:1145.599967pt;}
._12{width:1152.895967pt;}
._19{width:1155.327967pt;}
._71{width:1157.956267pt;}
._6b{width:1163.805852pt;}
._11{width:1165.141301pt;}
._76{width:1169.262914pt;}
._4c{width:1184.469333pt;}
._6d{width:1191.679981pt;}
._74{width:1194.184514pt;}
._78{width:1214.860800pt;}
._6f{width:1226.167448pt;}
._4d{width:2310.997401pt;}
.fse{font-size:28.000000pt;}
.fs16{font-size:33.516800pt;}
.fs1e{font-size:33.950933pt;}
.fs20{font-size:34.623467pt;}
.fs1c{font-size:34.694400pt;}
.fs22{font-size:34.853867pt;}
.fs24{font-size:34.996267pt;}
.fs1a{font-size:35.482666pt;}
.fs18{font-size:35.536000pt;}
.fs4{font-size:37.333333pt;}
.fs14{font-size:37.410133pt;}
.fs12{font-size:39.735466pt;}
.fsd{font-size:40.000000pt;}
.fs9{font-size:41.066666pt;}
.fs5{font-size:42.666667pt;}
.fs15{font-size:44.101333pt;}
.fs1d{font-size:44.672531pt;}
.fs1f{font-size:45.557332pt;}
.fs1b{font-size:45.650665pt;}
.fs21{font-size:45.860799pt;}
.fs23{font-size:46.048533pt;}
.fs19{font-size:46.687998pt;}
.fs17{font-size:46.757867pt;}
.fs10{font-size:48.000000pt;}
.fsf{font-size:49.066666pt;}
.fs13{font-size:49.224533pt;}
.fsb{font-size:52.266667pt;}
.fs11{font-size:52.284267pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fsc{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y272{bottom:0.059469pt;}
.y25c{bottom:0.061564pt;}
.y2c2{bottom:0.119954pt;}
.y314{bottom:0.135335pt;}
.y229{bottom:0.137197pt;}
.y21d{bottom:0.138672pt;}
.y271{bottom:0.982402pt;}
.y27d{bottom:1.002268pt;}
.y267{bottom:1.004130pt;}
.y25b{bottom:1.026123pt;}
.y212{bottom:1.049235pt;}
.y2b9{bottom:1.067301pt;}
.y2c1{bottom:1.071452pt;}
.y208{bottom:1.081136pt;}
.y250{bottom:1.086995pt;}
.y228{bottom:1.109202pt;}
.y244{bottom:1.110107pt;}
.y21c{bottom:1.110535pt;}
.y1be{bottom:1.203044pt;}
.y31c{bottom:1.215576pt;}
.y313{bottom:1.215658pt;}
.y30b{bottom:1.216227pt;}
.y324{bottom:1.216268pt;}
.y1b1{bottom:1.216390pt;}
.y211{bottom:2.705322pt;}
.y27c{bottom:2.706807pt;}
.y266{bottom:2.712118pt;}
.y25a{bottom:2.773031pt;}
.y2b8{bottom:2.783366pt;}
.y24f{bottom:2.839111pt;}
.y207{bottom:2.922689pt;}
.y243{bottom:3.066406pt;}
.y1bd{bottom:3.159180pt;}
.y30a{bottom:3.172363pt;}
.y1b0{bottom:3.172526pt;}
.y66{bottom:5.781576pt;}
.y226{bottom:19.709066pt;}
.y26e{bottom:32.756673pt;}
.y279{bottom:33.405874pt;}
.y263{bottom:33.473999pt;}
.y257{bottom:34.233968pt;}
.y2b3{bottom:35.402669pt;}
.y2bc{bottom:35.547038pt;}
.y204{bottom:36.092855pt;}
.y20e{bottom:38.237061pt;}
.y1ba{bottom:38.402913pt;}
.y317{bottom:40.359741pt;}
.y30e{bottom:40.359782pt;}
.y31f{bottom:40.360229pt;}
.y305{bottom:40.360433pt;}
.y26a{bottom:50.320394pt;}
.y275{bottom:51.317474pt;}
.y25f{bottom:51.422262pt;}
.y253{bottom:52.590129pt;}
.y200{bottom:55.445882pt;}
.y20b{bottom:58.493327pt;}
.y5{bottom:59.133337pt;}
.y39{bottom:67.464137pt;}
.y220{bottom:77.453206pt;}
.y23c{bottom:77.454102pt;}
.y215{bottom:77.454549pt;}
.y1a9{bottom:77.560425pt;}
.y38{bottom:78.132137pt;}
.y4{bottom:86.333337pt;}
.y37{bottom:88.800137pt;}
.y136{bottom:90.770270pt;}
.y107{bottom:94.133063pt;}
.y302{bottom:94.408259pt;}
.yd3{bottom:94.511200pt;}
.ya0{bottom:94.793329pt;}
.y247{bottom:95.827067pt;}
.y1b4{bottom:96.146932pt;}
.y1d4{bottom:96.689350pt;}
.y36{bottom:99.468137pt;}
.y273{bottom:104.025065pt;}
.y135{bottom:106.763870pt;}
.y14d{bottom:109.230796pt;}
.y164{bottom:109.288264pt;}
.y1d6{bottom:109.986928pt;}
.y106{bottom:110.126663pt;}
.y35{bottom:110.136137pt;}
.y301{bottom:110.401859pt;}
.yd2{bottom:110.524000pt;}
.y9f{bottom:110.786929pt;}
.y372{bottom:111.121602pt;}
.y1d3{bottom:112.892016pt;}
.y274{bottom:116.490662pt;}
.y27b{bottom:119.197469pt;}
.y34{bottom:120.804137pt;}
.y134{bottom:122.757470pt;}
.y3af{bottom:122.776774pt;}
.y371{bottom:123.121602pt;}
.y21{bottom:123.790666pt;}
.y14c{bottom:125.224396pt;}
.y163{bottom:125.281864pt;}
.y300{bottom:126.395459pt;}
.yd1{bottom:126.517600pt;}
.y9e{bottom:126.780529pt;}
.y1d2{bottom:129.020016pt;}
.y1e5{bottom:130.033481pt;}
.y33{bottom:131.472137pt;}
.y3ae{bottom:134.776774pt;}
.y370{bottom:135.121602pt;}
.y27a{bottom:135.404531pt;}
.y2c4{bottom:136.476267pt;}
.y133{bottom:138.751070pt;}
.y14b{bottom:141.224396pt;}
.y162{bottom:141.275464pt;}
.y2ff{bottom:142.389059pt;}
.yd0{bottom:142.511200pt;}
.y9d{bottom:142.774129pt;}
.y105{bottom:142.793329pt;}
.y1d1{bottom:145.148016pt;}
.y1e4{bottom:146.236147pt;}
.y3ad{bottom:146.776774pt;}
.y33e{bottom:149.746259pt;}
.y278{bottom:151.601064pt;}
.y132{bottom:154.744670pt;}
.y2e5{bottom:155.269605pt;}
.y21e{bottom:156.677470pt;}
.y14a{bottom:157.237206pt;}
.y161{bottom:157.269064pt;}
.y2fe{bottom:158.382659pt;}
.ycf{bottom:158.511200pt;}
.y9c{bottom:158.774129pt;}
.y3ac{bottom:158.776774pt;}
.y104{bottom:158.786929pt;}
.y36f{bottom:159.121602pt;}
.y1d0{bottom:161.276016pt;}
.y3f0{bottom:161.638021pt;}
.y1e3{bottom:162.364147pt;}
.y69{bottom:165.138936pt;}
.y33d{bottom:165.739859pt;}
.y277{bottom:166.103597pt;}
.y276{bottom:167.808136pt;}
.y21f{bottom:169.144002pt;}
.y131{bottom:170.744670pt;}
.y3ab{bottom:170.776774pt;}
.y36e{bottom:171.121602pt;}
.y2e4{bottom:171.472271pt;}
.y227{bottom:172.209330pt;}
.y149{bottom:173.230806pt;}
.y160{bottom:173.262664pt;}
.y3ef{bottom:173.638021pt;}
.y63{bottom:173.933597pt;}
.y2fd{bottom:174.376259pt;}
.yce{bottom:174.524010pt;}
.y103{bottom:174.780529pt;}
.y9b{bottom:174.825329pt;}
.y18{bottom:175.052000pt;}
.y1cf{bottom:177.404016pt;}
.y1e2{bottom:178.492147pt;}
.y68{bottom:181.138936pt;}
.y33c{bottom:181.733459pt;}
.y3aa{bottom:182.776774pt;}
.y36d{bottom:183.121602pt;}
.y3ee{bottom:185.638021pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y130{bottom:186.763870pt;}
.y268{bottom:187.160543pt;}
.y2e3{bottom:187.600271pt;}
.y67{bottom:189.138936pt;}
.y148{bottom:189.224406pt;}
.y15f{bottom:189.256264pt;}
.y62{bottom:189.927197pt;}
.y2fc{bottom:190.369859pt;}
.ycd{bottom:190.517610pt;}
.y102{bottom:190.774129pt;}
.y225{bottom:190.809326pt;}
.y9a{bottom:190.818929pt;}
.y1ce{bottom:193.532016pt;}
.y1e1{bottom:194.620147pt;}
.y3a9{bottom:194.776774pt;}
.y27e{bottom:197.410665pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y3ed{bottom:197.638021pt;}
.y33b{bottom:197.778259pt;}
.y269{bottom:199.626668pt;}
.y270{bottom:202.280538pt;}
.y12f{bottom:202.757470pt;}
.y2e2{bottom:203.738938pt;}
.y15e{bottom:205.249864pt;}
.y147{bottom:205.294684pt;}
.y61{bottom:205.920797pt;}
.y2fb{bottom:206.363459pt;}
.ycc{bottom:206.511210pt;}
.y101{bottom:206.774129pt;}
.y3a8{bottom:206.776774pt;}
.y99{bottom:206.812529pt;}
.y36c{bottom:207.121602pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y224{bottom:209.409200pt;}
.y3ec{bottom:209.638021pt;}
.y1cd{bottom:209.660016pt;}
.y1e0{bottom:210.748147pt;}
.y33a{bottom:213.771859pt;}
.y2a7{bottom:216.385317pt;}
.y26f{bottom:218.172791pt;}
.y12e{bottom:218.751070pt;}
.y3a7{bottom:218.776774pt;}
.y36b{bottom:219.121602pt;}
.y2e1{bottom:219.866938pt;}
.y15d{bottom:221.243464pt;}
.y146{bottom:221.288284pt;}
.y3eb{bottom:221.638021pt;}
.y60{bottom:221.927197pt;}
.y2fa{bottom:222.357059pt;}
.ycb{bottom:222.511210pt;}
.y98{bottom:222.806129pt;}
.y100{bottom:222.857329pt;}
.y1cc{bottom:225.788016pt;}
.y1df{bottom:226.876147pt;}
.y223{bottom:227.997192pt;}
.y339{bottom:229.765459pt;}
.y3a6{bottom:230.776774pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y36a{bottom:231.121602pt;}
.y2a6{bottom:232.587984pt;}
.y3ea{bottom:233.638021pt;}
.y26d{bottom:234.054810pt;}
.y12d{bottom:234.744670pt;}
.y2e0{bottom:236.005605pt;}
.y4c{bottom:237.230928pt;}
.y15c{bottom:237.237064pt;}
.y145{bottom:237.281884pt;}
.y5f{bottom:237.920797pt;}
.y2f9{bottom:238.350659pt;}
.yca{bottom:238.556153pt;}
.y97{bottom:238.799729pt;}
.yff{bottom:238.850929pt;}
.y1cb{bottom:241.916016pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y3a5{bottom:242.776774pt;}
.y1de{bottom:243.004147pt;}
.y369{bottom:243.121582pt;}
.y222{bottom:244.640930pt;}
.y3e9{bottom:245.638021pt;}
.y338{bottom:245.759059pt;}
.y221{bottom:246.597209pt;}
.y26c{bottom:248.275594pt;}
.y2a5{bottom:248.715984pt;}
.y26b{bottom:249.947062pt;}
.y12c{bottom:250.744670pt;}
.y2df{bottom:252.133605pt;}
.y4b{bottom:253.224528pt;}
.y15b{bottom:253.230664pt;}
.y144{bottom:253.275484pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y5e{bottom:253.933597pt;}
.y2f8{bottom:254.344259pt;}
.yc9{bottom:254.549753pt;}
.y3a4{bottom:254.776774pt;}
.y96{bottom:254.793329pt;}
.yfe{bottom:254.844529pt;}
.y368{bottom:255.121582pt;}
.y3e8{bottom:257.638021pt;}
.y1ca{bottom:258.044016pt;}
.y1dd{bottom:259.132147pt;}
.y337{bottom:261.752659pt;}
.y2a4{bottom:264.843984pt;}
.y3a3{bottom:266.776774pt;}
.y213{bottom:267.104126pt;}
.y2de{bottom:268.261605pt;}
.y25d{bottom:269.147461pt;}
.y15a{bottom:269.224264pt;}
.y143{bottom:269.269084pt;}
.y4a{bottom:269.269328pt;}
.y3e7{bottom:269.638021pt;}
.y5d{bottom:269.927197pt;}
.y2f7{bottom:270.363459pt;}
.yc8{bottom:270.543353pt;}
.y95{bottom:270.786929pt;}
.yfd{bottom:270.838129pt;}
.y1c9{bottom:274.172016pt;}
.y1dc{bottom:275.260147pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y336{bottom:277.746259pt;}
.y3a2{bottom:278.776774pt;}
.y367{bottom:279.121582pt;}
.y214{bottom:279.569336pt;}
.y2a3{bottom:280.971984pt;}
.y25e{bottom:281.613342pt;}
.y3e6{bottom:281.638021pt;}
.y21b{bottom:282.636129pt;}
.y265{bottom:284.325460pt;}
.y2dd{bottom:284.400271pt;}
.y159{bottom:285.224264pt;}
.y142{bottom:285.262684pt;}
.y49{bottom:285.262928pt;}
.y5c{bottom:285.920797pt;}
.y2f6{bottom:286.357059pt;}
.yc7{bottom:286.536953pt;}
.y94{bottom:286.780529pt;}
.yfc{bottom:286.831729pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1c8{bottom:290.300016pt;}
.y3a1{bottom:290.776774pt;}
.y366{bottom:291.121582pt;}
.y1db{bottom:291.388147pt;}
.y3e5{bottom:293.638021pt;}
.y335{bottom:293.739859pt;}
.y2a2{bottom:297.099984pt;}
.y12b{bottom:299.417594pt;}
.y2dc{bottom:300.528271pt;}
.y264{bottom:300.565735pt;}
.y21a{bottom:301.236125pt;}
.y141{bottom:301.256284pt;}
.y48{bottom:301.256528pt;}
.y158{bottom:301.275484pt;}
.y5b{bottom:301.933597pt;}
.y2f5{bottom:302.350659pt;}
.yc6{bottom:302.530553pt;}
.y93{bottom:302.774129pt;}
.y3a0{bottom:302.776774pt;}
.yfb{bottom:302.825329pt;}
.y365{bottom:303.121582pt;}
.y3e4{bottom:305.638021pt;}
.y1c7{bottom:306.428016pt;}
.y1da{bottom:307.516147pt;}
.yf{bottom:309.452000pt;}
.y334{bottom:309.733459pt;}
.y2a1{bottom:313.227984pt;}
.y39f{bottom:314.776774pt;}
.y12a{bottom:315.411194pt;}
.y262{bottom:316.795471pt;}
.y140{bottom:317.249884pt;}
.y47{bottom:317.250128pt;}
.y157{bottom:317.269084pt;}
.y3e3{bottom:317.638021pt;}
.y5a{bottom:317.927197pt;}
.y2f4{bottom:318.344259pt;}
.yc5{bottom:318.524153pt;}
.yfa{bottom:318.818929pt;}
.y92{bottom:318.921370pt;}
.y219{bottom:319.835999pt;}
.y1c6{bottom:322.556016pt;}
.y1d9{bottom:323.644147pt;}
.y2db{bottom:324.432271pt;}
.y420{bottom:325.638000pt;}
.y333{bottom:325.791080pt;}
.y39e{bottom:326.776774pt;}
.y364{bottom:327.121582pt;}
.y2a0{bottom:329.355984pt;}
.y3e2{bottom:329.638021pt;}
.y261{bottom:331.327596pt;}
.y129{bottom:331.417614pt;}
.y260{bottom:333.035604pt;}
.y13f{bottom:333.243484pt;}
.y46{bottom:333.243728pt;}
.y156{bottom:333.262684pt;}
.y59{bottom:333.920797pt;}
.y2f3{bottom:334.344259pt;}
.yc4{bottom:334.517753pt;}
.yf9{bottom:334.812529pt;}
.y91{bottom:334.914970pt;}
.y41f{bottom:337.638000pt;}
.y218{bottom:338.423991pt;}
.y1c5{bottom:338.684016pt;}
.y39d{bottom:338.776774pt;}
.y363{bottom:339.121582pt;}
.y1d8{bottom:339.772147pt;}
.y3e1{bottom:341.638021pt;}
.y332{bottom:341.784680pt;}
.y2da{bottom:342.909617pt;}
.ye{bottom:343.809333pt;}
.y29f{bottom:345.483984pt;}
.y128{bottom:347.411214pt;}
.y13e{bottom:349.237084pt;}
.y45{bottom:349.237328pt;}
.y155{bottom:349.256284pt;}
.y41e{bottom:349.637980pt;}
.y58{bottom:349.996260pt;}
.yc3{bottom:350.511353pt;}
.y39c{bottom:350.776774pt;}
.yf8{bottom:350.806129pt;}
.y90{bottom:350.908570pt;}
.y362{bottom:351.121582pt;}
.y251{bottom:352.404012pt;}
.y3e0{bottom:353.638021pt;}
.y1c4{bottom:354.812016pt;}
.y217{bottom:355.067749pt;}
.y216{bottom:357.023885pt;}
.y331{bottom:357.778280pt;}
.y2d9{bottom:359.037617pt;}
.y29e{bottom:361.611984pt;}
.yd{bottom:362.706666pt;}
.y39b{bottom:362.776774pt;}
.y361{bottom:363.121582pt;}
.y127{bottom:363.411214pt;}
.y1d7{bottom:363.676147pt;}
.y252{bottom:364.870687pt;}
.y13d{bottom:365.230684pt;}
.y44{bottom:365.230928pt;}
.y154{bottom:365.249884pt;}
.y3df{bottom:365.638021pt;}
.y57{bottom:365.989860pt;}
.y2f2{bottom:366.389079pt;}
.yc2{bottom:366.511353pt;}
.yf7{bottom:366.799729pt;}
.y8f{bottom:366.902170pt;}
.y259{bottom:367.643717pt;}
.y1c3{bottom:370.940016pt;}
.y330{bottom:373.771880pt;}
.y39a{bottom:374.776774pt;}
.y360{bottom:375.121582pt;}
.y2d8{bottom:375.165617pt;}
.y3de{bottom:377.638021pt;}
.y29d{bottom:377.739984pt;}
.y13c{bottom:381.224284pt;}
.y43{bottom:381.224528pt;}
.y153{bottom:381.243484pt;}
.y41d{bottom:381.637980pt;}
.y56{bottom:381.983460pt;}
.y1fd{bottom:382.067592pt;}
.y2f1{bottom:382.382679pt;}
.yf6{bottom:382.793329pt;}
.y8e{bottom:382.895770pt;}
.y258{bottom:384.252930pt;}
.y1d5{bottom:385.287476pt;}
.y399{bottom:386.776774pt;}
.y1c2{bottom:387.068016pt;}
.y3dd{bottom:389.638021pt;}
.y32f{bottom:389.765480pt;}
.y2d7{bottom:391.293617pt;}
.y41c{bottom:393.637980pt;}
.y29c{bottom:393.867984pt;}
.y126{bottom:396.077881pt;}
.y152{bottom:397.237084pt;}
.y13b{bottom:397.249884pt;}
.y42{bottom:397.256528pt;}
.y55{bottom:397.977060pt;}
.y1fc{bottom:398.061192pt;}
.y2f0{bottom:398.376279pt;}
.y398{bottom:398.776774pt;}
.yf5{bottom:398.786929pt;}
.y8d{bottom:398.889370pt;}
.y256{bottom:400.851481pt;}
.y3dc{bottom:401.638021pt;}
.y1c1{bottom:403.196016pt;}
.y41b{bottom:405.637980pt;}
.y32e{bottom:405.759080pt;}
.y2d6{bottom:407.421617pt;}
.y29b{bottom:409.995984pt;}
.y397{bottom:410.776774pt;}
.y125{bottom:412.084281pt;}
.y151{bottom:413.230684pt;}
.y13a{bottom:413.243484pt;}
.y41{bottom:413.250128pt;}
.y3db{bottom:413.638021pt;}
.y54{bottom:413.970660pt;}
.y1fb{bottom:414.054792pt;}
.y2ef{bottom:414.369879pt;}
.yf4{bottom:414.780529pt;}
.y8c{bottom:414.882970pt;}
.y35f{bottom:415.121582pt;}
.yc1{bottom:415.178019pt;}
.y255{bottom:415.713867pt;}
.y254{bottom:417.460815pt;}
.y41a{bottom:417.637980pt;}
.y32d{bottom:421.752680pt;}
.y396{bottom:422.776774pt;}
.y2d5{bottom:423.549617pt;}
.y3da{bottom:425.638021pt;}
.y1c0{bottom:427.100016pt;}
.y124{bottom:428.077881pt;}
.y150{bottom:429.224284pt;}
.y139{bottom:429.237084pt;}
.y40{bottom:429.243728pt;}
.y419{bottom:429.637980pt;}
.y53{bottom:429.964260pt;}
.y1fa{bottom:430.048392pt;}
.y2ee{bottom:430.363479pt;}
.yf3{bottom:430.774129pt;}
.y8b{bottom:430.876570pt;}
.y35e{bottom:431.121582pt;}
.yc0{bottom:431.184419pt;}
.y29a{bottom:433.899984pt;}
.y395{bottom:434.776774pt;}
.y3d9{bottom:437.638021pt;}
.y32c{bottom:437.746280pt;}
.y2d4{bottom:439.677617pt;}
.y239{bottom:441.499314pt;}
.y418{bottom:441.637980pt;}
.y123{bottom:444.109881pt;}
.y14f{bottom:445.224284pt;}
.y138{bottom:445.230684pt;}
.y3f{bottom:445.237328pt;}
.y52{bottom:445.957860pt;}
.y1f9{bottom:446.041992pt;}
.y2ed{bottom:446.357079pt;}
.y394{bottom:446.776774pt;}
.yf2{bottom:446.806129pt;}
.y8a{bottom:446.870170pt;}
.yc{bottom:446.990669pt;}
.y35d{bottom:447.140782pt;}
.ybf{bottom:447.178019pt;}
.y1bf{bottom:448.711344pt;}
.y3d8{bottom:449.638021pt;}
.y299{bottom:452.382667pt;}
.y417{bottom:453.637980pt;}
.y32b{bottom:453.739880pt;}
.y2d3{bottom:455.805617pt;}
.y238{bottom:457.492914pt;}
.y393{bottom:458.776774pt;}
.y122{bottom:460.103481pt;}
.y137{bottom:461.224284pt;}
.y3e{bottom:461.230928pt;}
.y14e{bottom:461.233718pt;}
.y3d7{bottom:461.638021pt;}
.y51{bottom:461.951460pt;}
.y1f8{bottom:462.035592pt;}
.y2ec{bottom:462.350679pt;}
.yf1{bottom:462.799729pt;}
.y89{bottom:462.863770pt;}
.yb{bottom:462.990669pt;}
.y35c{bottom:463.134382pt;}
.ybe{bottom:463.190819pt;}
.y416{bottom:465.637980pt;}
.y298{bottom:468.510667pt;}
.y32a{bottom:469.733480pt;}
.y392{bottom:470.776774pt;}
.y2d2{bottom:471.933617pt;}
.y1b3{bottom:472.380005pt;}
.y1b2{bottom:472.380249pt;}
.y237{bottom:473.486514pt;}
.y3d6{bottom:473.638021pt;}
.y1bc{bottom:475.539185pt;}
.y121{bottom:476.097081pt;}
.y3d{bottom:477.224528pt;}
.y415{bottom:477.637980pt;}
.y50{bottom:477.945060pt;}
.y1f7{bottom:478.029192pt;}
.y2eb{bottom:478.344279pt;}
.yf0{bottom:478.793329pt;}
.y88{bottom:478.857370pt;}
.ya{bottom:478.990666pt;}
.y35b{bottom:479.127982pt;}
.ybd{bottom:479.184419pt;}
.y391{bottom:482.776774pt;}
.y297{bottom:484.638667pt;}
.y3d5{bottom:485.638021pt;}
.y329{bottom:485.752680pt;}
.y2d1{bottom:488.061617pt;}
.y236{bottom:489.480114pt;}
.y414{bottom:489.637980pt;}
.y120{bottom:492.090681pt;}
.y3c{bottom:493.230928pt;}
.y4f{bottom:493.938660pt;}
.y1f6{bottom:494.022792pt;}
.y1bb{bottom:494.139200pt;}
.y2ea{bottom:494.357079pt;}
.y390{bottom:494.776774pt;}
.yef{bottom:494.786929pt;}
.y87{bottom:494.850970pt;}
.y9{bottom:494.990666pt;}
.y35a{bottom:495.121582pt;}
.ybc{bottom:495.178019pt;}
.y199{bottom:495.792649pt;}
.y3d4{bottom:497.638021pt;}
.y296{bottom:500.766667pt;}
.y413{bottom:501.637980pt;}
.y328{bottom:501.746280pt;}
.y235{bottom:505.473714pt;}
.y38f{bottom:506.776774pt;}
.y11f{bottom:508.084281pt;}
.y3b{bottom:509.224528pt;}
.y3d3{bottom:509.638021pt;}
.y4e{bottom:509.932260pt;}
.y1f5{bottom:510.016392pt;}
.y2e9{bottom:510.350679pt;}
.yee{bottom:510.780529pt;}
.y86{bottom:510.844570pt;}
.y359{bottom:511.172782pt;}
.ybb{bottom:511.254697pt;}
.y198{bottom:511.786249pt;}
.y2d0{bottom:511.965617pt;}
.y1b9{bottom:512.739054pt;}
.y412{bottom:513.637980pt;}
.y17e{bottom:515.078683pt;}
.y295{bottom:516.894667pt;}
.y327{bottom:517.739880pt;}
.y38e{bottom:518.776774pt;}
.y234{bottom:521.499314pt;}
.y3d2{bottom:521.638021pt;}
.y3a{bottom:525.224528pt;}
.y411{bottom:525.637980pt;}
.y4d{bottom:525.925860pt;}
.y1f4{bottom:526.009992pt;}
.y2e8{bottom:526.344279pt;}
.yed{bottom:526.774129pt;}
.y85{bottom:526.838170pt;}
.y358{bottom:527.166382pt;}
.yba{bottom:527.248297pt;}
.y197{bottom:527.779849pt;}
.y2cf{bottom:530.432275pt;}
.y38d{bottom:530.776774pt;}
.y17d{bottom:531.281350pt;}
.y1b8{bottom:531.339071pt;}
.y294{bottom:533.022667pt;}
.y3d1{bottom:533.638021pt;}
.y326{bottom:533.733480pt;}
.y233{bottom:537.492914pt;}
.y11e{bottom:540.750948pt;}
.y1f3{bottom:542.003592pt;}
.y2e7{bottom:542.352690pt;}
.y38c{bottom:542.776774pt;}
.yec{bottom:542.786929pt;}
.y84{bottom:542.831770pt;}
.y357{bottom:543.159982pt;}
.yb9{bottom:543.241897pt;}
.y196{bottom:543.773449pt;}
.y3d0{bottom:545.638021pt;}
.y2ce{bottom:546.560275pt;}
.y17c{bottom:547.409350pt;}
.y293{bottom:549.150667pt;}
.y325{bottom:549.733480pt;}
.y1b7{bottom:549.927083pt;}
.y232{bottom:553.486514pt;}
.y38b{bottom:554.776774pt;}
.y11d{bottom:556.744548pt;}
.y3cf{bottom:557.638021pt;}
.y410{bottom:557.638051pt;}
.y1f2{bottom:557.997192pt;}
.yeb{bottom:558.780529pt;}
.y83{bottom:558.825370pt;}
.y356{bottom:559.153582pt;}
.yb8{bottom:559.235497pt;}
.y195{bottom:559.767049pt;}
.y2cd{bottom:562.688275pt;}
.y17b{bottom:563.537350pt;}
.y292{bottom:565.278667pt;}
.y1b6{bottom:566.570679pt;}
.y38a{bottom:566.776774pt;}
.y1b5{bottom:568.526937pt;}
.y231{bottom:569.480114pt;}
.y3ce{bottom:569.638021pt;}
.y40f{bottom:569.638051pt;}
.y32{bottom:570.857829pt;}
.y11c{bottom:572.821429pt;}
.y8{bottom:573.786667pt;}
.y1f1{bottom:573.997192pt;}
.yea{bottom:574.774129pt;}
.y82{bottom:574.818970pt;}
.y355{bottom:575.147182pt;}
.yb7{bottom:575.229097pt;}
.y194{bottom:575.779849pt;}
.y389{bottom:578.776774pt;}
.y2cc{bottom:578.816275pt;}
.y17a{bottom:579.665350pt;}
.y291{bottom:581.406667pt;}
.y3cd{bottom:581.638021pt;}
.y40e{bottom:581.638051pt;}
.y31e{bottom:582.744019pt;}
.y230{bottom:585.473714pt;}
.y323{bottom:585.916382pt;}
.y1f0{bottom:590.016392pt;}
.y388{bottom:590.776774pt;}
.ye9{bottom:590.793329pt;}
.y81{bottom:590.812570pt;}
.y31{bottom:590.857829pt;}
.y354{bottom:591.140782pt;}
.yb6{bottom:591.222697pt;}
.y193{bottom:591.773449pt;}
.y7{bottom:592.685334pt;}
.y3cc{bottom:593.638021pt;}
.y40d{bottom:593.638051pt;}
.y2cb{bottom:594.944275pt;}
.y179{bottom:595.793350pt;}
.y290{bottom:597.534667pt;}
.y1a8{bottom:601.366659pt;}
.y1a7{bottom:601.366943pt;}
.y22f{bottom:601.505714pt;}
.y387{bottom:602.776774pt;}
.y322{bottom:604.504395pt;}
.y1af{bottom:604.539185pt;}
.y11b{bottom:605.488096pt;}
.y3cb{bottom:605.638021pt;}
.y40c{bottom:605.638051pt;}
.y31d{bottom:605.844400pt;}
.y1ef{bottom:606.009992pt;}
.ye8{bottom:606.786929pt;}
.y80{bottom:606.806170pt;}
.y30{bottom:606.857829pt;}
.y353{bottom:607.134382pt;}
.yb5{bottom:607.216297pt;}
.y192{bottom:607.767049pt;}
.y2ca{bottom:611.072275pt;}
.y178{bottom:611.921350pt;}
.y28f{bottom:613.673333pt;}
.y386{bottom:614.776774pt;}
.y22e{bottom:617.499314pt;}
.y3ca{bottom:617.638021pt;}
.y40b{bottom:617.638051pt;}
.y321{bottom:621.148153pt;}
.y11a{bottom:621.481696pt;}
.y1ee{bottom:622.003592pt;}
.ye7{bottom:622.780529pt;}
.y7f{bottom:622.799770pt;}
.y2f{bottom:622.857829pt;}
.y320{bottom:623.104248pt;}
.y352{bottom:623.127982pt;}
.y1ae{bottom:623.139200pt;}
.yb4{bottom:623.209897pt;}
.y191{bottom:623.767049pt;}
.y177{bottom:623.921350pt;}
.y385{bottom:626.776774pt;}
.y2c9{bottom:627.200275pt;}
.y3c9{bottom:629.638021pt;}
.y40a{bottom:629.638051pt;}
.y28e{bottom:629.801333pt;}
.y22d{bottom:633.492914pt;}
.y119{bottom:637.475296pt;}
.y1ed{bottom:637.997192pt;}
.ye6{bottom:638.774129pt;}
.y384{bottom:638.776774pt;}
.y7e{bottom:638.793370pt;}
.y2e{bottom:638.857829pt;}
.y351{bottom:639.121582pt;}
.yb3{bottom:639.203497pt;}
.y176{bottom:640.049350pt;}
.y3c8{bottom:641.638021pt;}
.y409{bottom:641.638051pt;}
.y1ad{bottom:641.739054pt;}
.y2c8{bottom:643.328275pt;}
.y6{bottom:645.598667pt;}
.y28d{bottom:645.929333pt;}
.y22c{bottom:649.486514pt;}
.y383{bottom:650.776774pt;}
.y118{bottom:653.468896pt;}
.y3c7{bottom:653.638021pt;}
.y408{bottom:653.638051pt;}
.y1ec{bottom:654.003592pt;}
.y7d{bottom:654.786970pt;}
.ye5{bottom:654.793370pt;}
.y2d{bottom:654.857829pt;}
.y350{bottom:655.134382pt;}
.yb2{bottom:655.197097pt;}
.y190{bottom:655.773449pt;}
.y175{bottom:656.177350pt;}
.y2c7{bottom:659.456275pt;}
.y1ac{bottom:660.327067pt;}
.y382{bottom:662.776774pt;}
.y22b{bottom:665.480114pt;}
.y3c6{bottom:665.638021pt;}
.y407{bottom:665.638051pt;}
.y3{bottom:668.977329pt;}
.y316{bottom:669.122681pt;}
.y28c{bottom:669.833333pt;}
.y1eb{bottom:669.997192pt;}
.y7c{bottom:670.780570pt;}
.ye4{bottom:670.786970pt;}
.y2c{bottom:670.857829pt;}
.y34f{bottom:671.127982pt;}
.yb1{bottom:671.190697pt;}
.y18f{bottom:671.767049pt;}
.y31b{bottom:672.294393pt;}
.y174{bottom:672.305350pt;}
.y381{bottom:674.776774pt;}
.y2c6{bottom:675.594942pt;}
.y1ab{bottom:676.970785pt;}
.y3c5{bottom:677.638021pt;}
.y406{bottom:677.638051pt;}
.y1aa{bottom:678.927083pt;}
.y22a{bottom:681.473714pt;}
.y1ea{bottom:686.022833pt;}
.y117{bottom:686.135562pt;}
.y7b{bottom:686.774170pt;}
.y380{bottom:686.776774pt;}
.ye3{bottom:686.780570pt;}
.y2b{bottom:686.857829pt;}
.y34e{bottom:687.121582pt;}
.yb0{bottom:687.184297pt;}
.y18e{bottom:687.850290pt;}
.y28b{bottom:688.294683pt;}
.y173{bottom:688.433350pt;}
.y3c4{bottom:689.638021pt;}
.y405{bottom:689.638051pt;}
.y31a{bottom:690.882406pt;}
.y315{bottom:692.222412pt;}
.y37f{bottom:698.776774pt;}
.y2c5{bottom:699.498942pt;}
.y245{bottom:701.007161pt;}
.y3c3{bottom:701.638021pt;}
.y404{bottom:701.638051pt;}
.y1e9{bottom:702.016433pt;}
.y116{bottom:702.129162pt;}
.ye2{bottom:702.774170pt;}
.y2a{bottom:702.857829pt;}
.y7a{bottom:702.863770pt;}
.y34d{bottom:703.140782pt;}
.yaf{bottom:703.177897pt;}
.y1a6{bottom:703.805490pt;}
.y18d{bottom:703.843890pt;}
.y28a{bottom:704.422683pt;}
.y172{bottom:704.561350pt;}
.y319{bottom:707.526123pt;}
.y318{bottom:709.482422pt;}
.y37e{bottom:710.776774pt;}
.y246{bottom:713.473307pt;}
.y3c2{bottom:713.638021pt;}
.y403{bottom:713.638051pt;}
.y24e{bottom:716.312419pt;}
.y1e8{bottom:718.010033pt;}
.y115{bottom:718.122762pt;}
.ye1{bottom:718.793370pt;}
.y79{bottom:718.857370pt;}
.y29{bottom:718.857829pt;}
.y34c{bottom:719.134382pt;}
.yae{bottom:719.184297pt;}
.y1a5{bottom:719.799090pt;}
.y18c{bottom:719.837490pt;}
.y289{bottom:720.561350pt;}
.y171{bottom:720.689350pt;}
.y2c3{bottom:721.110107pt;}
.y37d{bottom:722.776774pt;}
.y3c1{bottom:725.638021pt;}
.y402{bottom:725.638051pt;}
.y1e7{bottom:734.003633pt;}
.y114{bottom:734.116362pt;}
.y37c{bottom:734.776774pt;}
.ye0{bottom:734.786970pt;}
.y78{bottom:734.850970pt;}
.y24d{bottom:734.912435pt;}
.y2e6{bottom:735.059890pt;}
.y34b{bottom:735.127982pt;}
.yad{bottom:735.177897pt;}
.y1a4{bottom:735.792690pt;}
.y18b{bottom:735.831090pt;}
.y288{bottom:736.689350pt;}
.y170{bottom:736.817350pt;}
.y3c0{bottom:737.638021pt;}
.y401{bottom:737.638051pt;}
.y28{bottom:738.857829pt;}
.y3bf{bottom:749.638021pt;}
.y400{bottom:749.638051pt;}
.y1e6{bottom:749.997233pt;}
.y113{bottom:750.109962pt;}
.ydf{bottom:750.780570pt;}
.y77{bottom:750.844570pt;}
.y34a{bottom:751.121582pt;}
.yac{bottom:751.184297pt;}
.y1a3{bottom:751.786290pt;}
.y18a{bottom:751.824690pt;}
.y287{bottom:752.817350pt;}
.y16f{bottom:752.945350pt;}
.y24c{bottom:753.512370pt;}
.y3be{bottom:761.638021pt;}
.y3ff{bottom:761.638051pt;}
.y112{bottom:766.103562pt;}
.yde{bottom:766.774170pt;}
.y76{bottom:766.838170pt;}
.y349{bottom:767.127982pt;}
.yab{bottom:767.177897pt;}
.y1a2{bottom:767.779890pt;}
.y189{bottom:767.818290pt;}
.y286{bottom:768.945350pt;}
.y16e{bottom:769.073350pt;}
.y209{bottom:769.530762pt;}
.y24b{bottom:772.112386pt;}
.y3bd{bottom:773.638021pt;}
.y3fe{bottom:773.638051pt;}
.y30d{bottom:775.455973pt;}
.y312{bottom:778.627767pt;}
.y2{bottom:781.661334pt;}
.y20a{bottom:781.997314pt;}
.y111{bottom:782.097162pt;}
.ydd{bottom:782.806170pt;}
.y75{bottom:782.831770pt;}
.y348{bottom:783.121582pt;}
.yaa{bottom:783.209897pt;}
.y1a1{bottom:783.773490pt;}
.y188{bottom:783.811890pt;}
.y2af{bottom:783.824690pt;}
.y210{bottom:784.702637pt;}
.y285{bottom:785.073350pt;}
.y16d{bottom:785.201350pt;}
.y3bc{bottom:785.638021pt;}
.y3fd{bottom:785.638051pt;}
.y2ba{bottom:788.578125pt;}
.y24a{bottom:790.700521pt;}
.y37b{bottom:796.110107pt;}
.y311{bottom:797.215739pt;}
.y3bb{bottom:797.638021pt;}
.y3fc{bottom:797.638051pt;}
.y110{bottom:798.090762pt;}
.y30c{bottom:798.555745pt;}
.ydc{bottom:798.799770pt;}
.y74{bottom:798.825370pt;}
.y347{bottom:799.166382pt;}
.ya9{bottom:799.203497pt;}
.y1a0{bottom:799.767090pt;}
.y187{bottom:799.805490pt;}
.y2ae{bottom:799.818290pt;}
.y2bb{bottom:801.044027pt;}
.y284{bottom:801.212016pt;}
.y16c{bottom:801.329350pt;}
.y27{bottom:803.157878pt;}
.y20f{bottom:803.302816pt;}
.y2c0{bottom:803.838379pt;}
.y249{bottom:807.548421pt;}
.y248{bottom:809.300374pt;}
.y3ba{bottom:809.638021pt;}
.y3fb{bottom:809.638051pt;}
.y310{bottom:813.859456pt;}
.y10f{bottom:814.084362pt;}
.ydb{bottom:814.793370pt;}
.y73{bottom:814.818970pt;}
.y346{bottom:815.159982pt;}
.ya8{bottom:815.197097pt;}
.y19f{bottom:815.767090pt;}
.y186{bottom:815.799090pt;}
.y2ad{bottom:815.811890pt;}
.y30f{bottom:815.815755pt;}
.y283{bottom:817.340016pt;}
.y16b{bottom:817.457350pt;}
.y37a{bottom:820.110107pt;}
.y2bf{bottom:820.209473pt;}
.y3b9{bottom:821.638021pt;}
.y3fa{bottom:821.638051pt;}
.y20d{bottom:821.890706pt;}
.y10e{bottom:830.077962pt;}
.yda{bottom:830.786970pt;}
.y72{bottom:830.812570pt;}
.y345{bottom:831.153582pt;}
.ya7{bottom:831.190697pt;}
.y19e{bottom:831.779890pt;}
.y185{bottom:831.792690pt;}
.y2ac{bottom:831.805490pt;}
.y379{bottom:832.110107pt;}
.y282{bottom:833.468016pt;}
.y16a{bottom:833.585350pt;}
.y3b8{bottom:833.638021pt;}
.y3f9{bottom:833.638051pt;}
.y2be{bottom:834.868164pt;}
.y26{bottom:835.169358pt;}
.y2bd{bottom:836.591064pt;}
.y23a{bottom:836.873861pt;}
.y20c{bottom:838.834391pt;}
.y3b7{bottom:845.638021pt;}
.y3f8{bottom:845.638051pt;}
.y10d{bottom:846.103562pt;}
.yd9{bottom:846.780570pt;}
.y71{bottom:846.806170pt;}
.y344{bottom:847.147182pt;}
.ya6{bottom:847.184297pt;}
.y19d{bottom:847.773490pt;}
.y184{bottom:847.786290pt;}
.y2ab{bottom:847.799090pt;}
.y378{bottom:848.110107pt;}
.y23b{bottom:848.394694pt;}
.y281{bottom:849.596016pt;}
.y169{bottom:849.713350pt;}
.y242{bottom:851.461100pt;}
.y2b1{bottom:856.027751pt;}
.y3b6{bottom:857.638021pt;}
.y3f7{bottom:857.638051pt;}
.y1{bottom:859.312000pt;}
.y1fe{bottom:859.530762pt;}
.y377{bottom:860.110107pt;}
.y304{bottom:861.833333pt;}
.y10c{bottom:862.097162pt;}
.yd8{bottom:862.774170pt;}
.y70{bottom:862.799770pt;}
.y343{bottom:863.140782pt;}
.ya5{bottom:863.177897pt;}
.y19c{bottom:863.767090pt;}
.y183{bottom:863.779890pt;}
.y2aa{bottom:863.792690pt;}
.y309{bottom:865.005697pt;}
.y280{bottom:865.724016pt;}
.y168{bottom:865.841350pt;}
.y376{bottom:868.110107pt;}
.y2b2{bottom:868.493327pt;}
.y3b5{bottom:869.638021pt;}
.y3f6{bottom:869.638051pt;}
.y25{bottom:869.825358pt;}
.y241{bottom:870.060954pt;}
.y2b7{bottom:871.276693pt;}
.y1ff{bottom:872.609294pt;}
.y206{bottom:875.531982pt;}
.y10b{bottom:878.090762pt;}
.yd7{bottom:878.774170pt;}
.y6f{bottom:878.793370pt;}
.y342{bottom:879.134382pt;}
.ya4{bottom:879.184297pt;}
.y182{bottom:879.773490pt;}
.y2a9{bottom:879.786290pt;}
.y3b4{bottom:881.638021pt;}
.y3f5{bottom:881.638051pt;}
.y27f{bottom:881.862683pt;}
.y167{bottom:881.969350pt;}
.y308{bottom:883.593750pt;}
.y303{bottom:884.933757pt;}
.y2b6{bottom:887.581055pt;}
.y240{bottom:888.660970pt;}
.y375{bottom:892.110107pt;}
.y205{bottom:893.043620pt;}
.y3b3{bottom:893.638021pt;}
.y3f4{bottom:893.638051pt;}
.y10a{bottom:894.084362pt;}
.y6e{bottom:894.786970pt;}
.y341{bottom:895.127982pt;}
.ya3{bottom:895.177897pt;}
.y181{bottom:895.767090pt;}
.y2a8{bottom:895.779890pt;}
.y307{bottom:900.237467pt;}
.y2b5{bottom:902.180094pt;}
.y306{bottom:902.193766pt;}
.y2b4{bottom:903.895996pt;}
.y374{bottom:904.110107pt;}
.y3b2{bottom:905.638021pt;}
.y3f3{bottom:905.638051pt;}
.y166{bottom:905.766683pt;}
.y23f{bottom:907.248779pt;}
.y109{bottom:910.077962pt;}
.y203{bottom:910.543701pt;}
.y6d{bottom:910.780570pt;}
.y340{bottom:911.121582pt;}
.ya2{bottom:911.177897pt;}
.y180{bottom:911.773490pt;}
.y19b{bottom:911.796116pt;}
.y3b1{bottom:917.638021pt;}
.y3f2{bottom:917.638051pt;}
.y24{bottom:918.544515pt;}
.y64{bottom:920.666829pt;}
.y23e{bottom:923.892497pt;}
.y23d{bottom:925.848796pt;}
.y108{bottom:926.077962pt;}
.y202{bottom:926.213623pt;}
.y6c{bottom:926.774170pt;}
.y33f{bottom:927.121582pt;}
.ya1{bottom:927.177897pt;}
.y165{bottom:927.377848pt;}
.y17f{bottom:927.767090pt;}
.y19a{bottom:927.789716pt;}
.y2b0{bottom:927.819357pt;}
.y201{bottom:928.055176pt;}
.y373{bottom:928.110107pt;}
.y3b0{bottom:929.638021pt;}
.y3f1{bottom:929.638051pt;}
.y65{bottom:987.489339pt;}
.y23{bottom:988.708515pt;}
.yd4{bottom:1001.355225pt;}
.y6a{bottom:1001.355306pt;}
.yd6{bottom:1001.561768pt;}
.y22{bottom:1001.711182pt;}
.yd5{bottom:1002.044515pt;}
.y6b{bottom:1002.048639pt;}
.h32{height:23.461760pt;}
.h51{height:23.765653pt;}
.h14{height:24.062667pt;}
.h57{height:24.236427pt;}
.h4b{height:24.286080pt;}
.h5d{height:24.397707pt;}
.h63{height:24.497387pt;}
.h17{height:24.724000pt;}
.h44{height:24.837866pt;}
.h3e{height:24.875200pt;}
.h34{height:25.711077pt;}
.h4e{height:26.044086pt;}
.h2f{height:26.187093pt;}
.h54{height:26.559925pt;}
.h48{height:26.614338pt;}
.h5a{height:26.736846pt;}
.h60{height:26.846295pt;}
.h45{height:27.219103pt;}
.h3f{height:27.259836pt;}
.h26{height:27.814826pt;}
.h7{height:28.560000pt;}
.h2c{height:28.697903pt;}
.h33{height:29.591995pt;}
.h4f{height:29.975268pt;}
.h23{height:30.481727pt;}
.h55{height:30.568970pt;}
.h49{height:30.631596pt;}
.h5b{height:30.772596pt;}
.h31{height:30.870933pt;}
.h61{height:30.898566pt;}
.h4d{height:31.270772pt;}
.h42{height:31.327647pt;}
.h3c{height:31.374529pt;}
.h53{height:31.890133pt;}
.h47{height:31.955466pt;}
.h59{height:32.102559pt;}
.h5f{height:32.233973pt;}
.h41{height:32.681599pt;}
.h50{height:32.729958pt;}
.h3b{height:32.730507pt;}
.h12{height:32.965333pt;}
.h2d{height:33.029662pt;}
.h56{height:33.378081pt;}
.h4a{height:33.446369pt;}
.h5c{height:33.600453pt;}
.h62{height:33.737896pt;}
.h2b{height:34.457173pt;}
.h24{height:35.082743pt;}
.h16{height:35.320000pt;}
.h29{height:35.541333pt;}
.h2e{height:36.064114pt;}
.h22{height:36.598987pt;}
.h1e{height:36.821333pt;}
.h1f{height:37.674667pt;}
.h6a{height:38.080000pt;}
.h36{height:38.306272pt;}
.h38{height:38.306841pt;}
.h25{height:38.306923pt;}
.h65{height:38.306926pt;}
.h43{height:38.315442pt;}
.h3d{height:38.382341pt;}
.h67{height:38.920000pt;}
.hb{height:40.618667pt;}
.h18{height:40.661333pt;}
.h69{height:40.724000pt;}
.h68{height:40.724081pt;}
.h6{height:40.800000pt;}
.h1d{height:41.514667pt;}
.ha{height:41.984000pt;}
.h3{height:42.840000pt;}
.h66{height:42.907124pt;}
.h28{height:42.907775pt;}
.h39{height:42.907938pt;}
.h58{height:43.273336pt;}
.h5e{height:43.449336pt;}
.h10{height:47.093333pt;}
.h1c{height:47.472000pt;}
.h19{height:47.741866pt;}
.h1b{height:48.555733pt;}
.h2{height:48.960000pt;}
.h64{height:49.333333pt;}
.h13{height:49.653333pt;}
.h20{height:50.666667pt;}
.h11{height:51.893333pt;}
.h1a{height:53.834667pt;}
.hf{height:54.329067pt;}
.h4c{height:57.986669pt;}
.h52{height:59.136002pt;}
.h46{height:59.257333pt;}
.he{height:59.728337pt;}
.h40{height:60.602666pt;}
.h2a{height:63.769333pt;}
.h15{height:64.853333pt;}
.h30{height:66.000000pt;}
.hc{height:68.570667pt;}
.h5{height:69.360000pt;}
.h21{height:86.400004pt;}
.h37{height:86.426666pt;}
.h35{height:86.427999pt;}
.h3a{height:103.866669pt;}
.h27{height:104.986664pt;}
.h4{height:105.826671pt;}
.hd{height:121.856000pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:221.026672pt;}
.w4{width:235.136007pt;}
.w5{width:253.826660pt;}
.wc{width:265.706665pt;}
.w8{width:266.986674pt;}
.w7{width:284.477336pt;}
.wd{width:284.478658pt;}
.w9{width:288.480000pt;}
.wb{width:294.198669pt;}
.wa{width:300.268005pt;}
.w10{width:340.866659pt;}
.wf{width:342.173340pt;}
.we{width:358.947998pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x95{left:36.775879pt;}
.x26{left:39.479737pt;}
.x13{left:41.929850pt;}
.x43{left:44.058005pt;}
.x9c{left:48.132935pt;}
.x36{left:49.133200pt;}
.x31{left:50.416129pt;}
.x1c{left:52.225993pt;}
.xa8{left:53.662516pt;}
.xc0{left:59.786795pt;}
.x81{left:62.341838pt;}
.x92{left:63.383993pt;}
.x27{left:66.819998pt;}
.x87{left:68.437866pt;}
.x14{left:70.981852pt;}
.x98{left:73.678792pt;}
.x5{left:75.496002pt;}
.x46{left:76.577993pt;}
.x7a{left:77.554932pt;}
.x29{left:79.089204pt;}
.x6b{left:80.334920pt;}
.x6{left:82.430532pt;}
.x7{left:84.162800pt;}
.xe{left:86.252935pt;}
.x62{left:87.244141pt;}
.x7c{left:88.922933pt;}
.x1{left:90.706667pt;}
.x44{left:92.808004pt;}
.x2{left:94.486667pt;}
.xd5{left:95.590535pt;}
.xbc{left:96.877595pt;}
.x39{left:99.089468pt;}
.x24{left:102.257333pt;}
.x47{left:105.618001pt;}
.x9e{left:107.330119pt;}
.xa9{left:113.101603pt;}
.xa4{left:114.454264pt;}
.xc6{left:117.386933pt;}
.x49{left:118.649862pt;}
.x74{left:119.843343pt;}
.x3b{left:121.229605pt;}
.xa6{left:125.931722pt;}
.x25{left:127.467733pt;}
.x90{left:128.797485pt;}
.x40{left:132.814667pt;}
.x7d{left:134.228516pt;}
.x42{left:135.263072pt;}
.x2e{left:136.359202pt;}
.x30{left:139.093465pt;}
.x75{left:140.246379pt;}
.x33{left:143.340262pt;}
.x52{left:144.770264pt;}
.x9a{left:146.138794pt;}
.xc8{left:147.591076pt;}
.x1f{left:148.914144pt;}
.x85{left:151.149455pt;}
.x1d{left:152.257731pt;}
.x58{left:153.266530pt;}
.x45{left:154.229736pt;}
.x17{left:156.529867pt;}
.x4f{left:157.638000pt;}
.x67{left:159.258952pt;}
.xcf{left:160.833060pt;}
.x2c{left:161.992402pt;}
.xae{left:163.662537pt;}
.xb8{left:164.581859pt;}
.x4e{left:165.617605pt;}
.x53{left:167.294128pt;}
.x37{left:168.658803pt;}
.x19{left:169.549601pt;}
.x55{left:170.527725pt;}
.xc3{left:171.435333pt;}
.xab{left:173.428385pt;}
.x28{left:176.014404pt;}
.xba{left:177.601736pt;}
.x4{left:180.874667pt;}
.x56{left:183.547602pt;}
.xc4{left:184.455069pt;}
.x51{left:185.945862pt;}
.x5a{left:187.298808pt;}
.x3e{left:188.681062pt;}
.x4b{left:191.165995pt;}
.x38{left:193.018677pt;}
.xa0{left:193.915487pt;}
.x54{left:196.346273pt;}
.xc1{left:198.464010pt;}
.xac{left:200.040812pt;}
.xb1{left:201.241731pt;}
.x4d{left:204.185872pt;}
.x48{left:205.793742pt;}
.x5e{left:206.716146pt;}
.x77{left:208.762004pt;}
.x8a{left:212.042521pt;}
.x21{left:215.154541pt;}
.xc9{left:216.098929pt;}
.x3a{left:218.602539pt;}
.xce{left:227.234131pt;}
.xc7{left:229.388000pt;}
.x2a{left:230.491740pt;}
.x32{left:233.271464pt;}
.x8c{left:236.229858pt;}
.xd1{left:237.608796pt;}
.x8{left:240.726664pt;}
.x35{left:242.240673pt;}
.xb7{left:244.002665pt;}
.xb3{left:246.162394pt;}
.xc2{left:250.856140pt;}
.x5b{left:255.734660pt;}
.xad{left:256.721354pt;}
.x2b{left:258.928406pt;}
.x50{left:260.177877pt;}
.x4a{left:261.137594pt;}
.x41{left:262.037751pt;}
.xbe{left:263.077587pt;}
.x3c{left:265.390523pt;}
.xaf{left:267.630798pt;}
.xbd{left:272.286926pt;}
.xb9{left:274.206930pt;}
.x2f{left:278.947216pt;}
.xa2{left:281.658529pt;}
.x3d{left:286.066528pt;}
.x4c{left:291.341736pt;}
.x59{left:294.391983pt;}
.xb0{left:297.846924pt;}
.xd0{left:308.462260pt;}
.x2d{left:311.033997pt;}
.x57{left:316.586528pt;}
.xbb{left:325.230937pt;}
.x34{left:327.009074pt;}
.xca{left:328.087992pt;}
.xc5{left:332.084269pt;}
.xd2{left:337.652538pt;}
.xcd{left:338.967073pt;}
.xb4{left:344.862549pt;}
.xb2{left:348.870931pt;}
.xcb{left:354.212524pt;}
.xb6{left:355.741609pt;}
.x3f{left:357.082682pt;}
.xbf{left:370.986938pt;}
.x23{left:372.015218pt;}
.x10{left:389.457203pt;}
.x3{left:404.408000pt;}
.x9{left:406.304795pt;}
.xa{left:416.967195pt;}
.x5c{left:420.682658pt;}
.xcc{left:422.648397pt;}
.xd4{left:426.299194pt;}
.x6e{left:431.076009pt;}
.xf{left:432.968260pt;}
.xb5{left:439.434814pt;}
.x94{left:456.446818pt;}
.x12{left:459.751465pt;}
.x72{left:467.701457pt;}
.x1b{left:469.182943pt;}
.x6f{left:470.937215pt;}
.x1a{left:472.086914pt;}
.x96{left:476.203735pt;}
.x7f{left:478.277466pt;}
.x80{left:480.813314pt;}
.xc{left:482.734660pt;}
.x65{left:487.884399pt;}
.x60{left:490.586548pt;}
.x8d{left:491.486816pt;}
.x61{left:493.490275pt;}
.x73{left:494.801473pt;}
.x6a{left:496.331991pt;}
.x69{left:498.924276pt;}
.x97{left:501.686808pt;}
.x88{left:506.232381pt;}
.x15{left:511.315063pt;}
.x7b{left:515.064412pt;}
.x8e{left:516.801188pt;}
.xa3{left:527.307048pt;}
.x9d{left:528.811605pt;}
.x8f{left:541.864258pt;}
.x1e{left:546.023193pt;}
.x70{left:547.972127pt;}
.xaa{left:551.045085pt;}
.xa5{left:553.908529pt;}
.x66{left:560.015991pt;}
.x84{left:564.603190pt;}
.x16{left:566.659180pt;}
.x82{left:568.164673pt;}
.x22{left:571.667725pt;}
.x99{left:574.135864pt;}
.x76{left:587.417318pt;}
.x6c{left:590.003988pt;}
.x5d{left:591.530518pt;}
.x63{left:593.535075pt;}
.x89{left:594.850016pt;}
.x18{left:596.862915pt;}
.xa7{left:598.847209pt;}
.x9f{left:615.386515pt;}
.x91{left:616.396403pt;}
.xb{left:617.715454pt;}
.x9b{left:618.891602pt;}
.x7e{left:620.049479pt;}
.x71{left:624.364665pt;}
.x20{left:631.559733pt;}
.x68{left:636.660278pt;}
.x86{left:637.687215pt;}
.x78{left:648.528809pt;}
.x8b{left:653.323324pt;}
.x83{left:655.097209pt;}
.x93{left:657.698405pt;}
.xd3{left:658.727458pt;}
.xd{left:664.199341pt;}
.x5f{left:677.078532pt;}
.x6d{left:679.188273pt;}
.x64{left:693.099040pt;}
.x79{left:696.030518pt;}
.xa1{left:698.329834pt;}
.x11{left:702.723877pt;}
}




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