
    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_bf9d1f2a7f1075d191d73acc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991000;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_ed7645f8b3d09f9e792e57e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_2dd886574e7e8b1f6e8303f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_54f11f38efe3ea22e4243057.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_691637cfd338189b5ee11706.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_02f0b73fcb78de0a06f2a535.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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_d1f1381dee4f4093e1d622bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962000;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_cd5f2e704bc09bcd9e86d9d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.955000;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_60a523a439607a854c720f1d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.949000;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_6bb811cbf3e119f0864974f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690000;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_a46f45b5098e9d1b98578247.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718000;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_00d02fafb831b01485c907d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966000;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_37adf67dbc21bbb94cb52b45.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_db01c7b19a21ba04e327e267.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.130000;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_9f40bc090089127feff72c15.woff2')format("woff");}.fff{font-family:fff;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4ea9b616f08b7023fbf2b2a8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.942000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000008,-0.179487,0.250000,0.000008,0,0);-ms-transform:matrix(0.000008,-0.179487,0.250000,0.000008,0,0);-webkit-transform:matrix(0.000008,-0.179487,0.250000,0.000008,0,0);}
.m1{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247707,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.979000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.997000px;}
.ls70{letter-spacing:-5.454000px;}
.ls71{letter-spacing:-5.400000px;}
.ls9d{letter-spacing:-5.022000px;}
.ls98{letter-spacing:-4.806000px;}
.ls81{letter-spacing:-4.680000px;}
.ls4f{letter-spacing:-4.620000px;}
.ls5{letter-spacing:-4.442832px;}
.ls88{letter-spacing:-4.140000px;}
.ls0{letter-spacing:-4.087404px;}
.ls53{letter-spacing:-4.080000px;}
.ls74{letter-spacing:-3.900000px;}
.ls76{letter-spacing:-3.780000px;}
.ls3{letter-spacing:-3.731976px;}
.ls8d{letter-spacing:-3.672000px;}
.ls9{letter-spacing:-3.620574px;}
.ls86{letter-spacing:-3.600000px;}
.ls48{letter-spacing:-3.480000px;}
.lsb{letter-spacing:-3.434904px;}
.ls8e{letter-spacing:-3.402000px;}
.ls7a{letter-spacing:-3.360000px;}
.ls5c{letter-spacing:-3.300000px;}
.ls2{letter-spacing:-3.198840px;}
.ls8c{letter-spacing:-3.024000px;}
.ls77{letter-spacing:-2.400000px;}
.ls27{letter-spacing:-2.112000px;}
.ls89{letter-spacing:-1.920000px;}
.ls41{letter-spacing:-1.827000px;}
.ls29{letter-spacing:-1.764000px;}
.ls66{letter-spacing:-1.740000px;}
.ls64{letter-spacing:-1.620000px;}
.ls57{letter-spacing:-1.560000px;}
.ls7b{letter-spacing:-1.440000px;}
.lsa2{letter-spacing:-1.404000px;}
.ls61{letter-spacing:-1.386000px;}
.ls79{letter-spacing:-1.380000px;}
.lsa1{letter-spacing:-1.350000px;}
.ls6b{letter-spacing:-1.323000px;}
.ls75{letter-spacing:-1.320000px;}
.ls2a{letter-spacing:-1.260000px;}
.ls34{letter-spacing:-1.254000px;}
.ls96{letter-spacing:-1.242000px;}
.ls84{letter-spacing:-1.200000px;}
.ls4d{letter-spacing:-1.140000px;}
.ls7d{letter-spacing:-1.083000px;}
.ls44{letter-spacing:-1.080000px;}
.ls2d{letter-spacing:-1.071000px;}
.ls82{letter-spacing:-1.026000px;}
.ls43{letter-spacing:-1.020000px;}
.ls21{letter-spacing:-1.008000px;}
.ls5e{letter-spacing:-0.972000px;}
.ls58{letter-spacing:-0.960000px;}
.ls60{letter-spacing:-0.945000px;}
.lsc{letter-spacing:-0.928350px;}
.ls97{letter-spacing:-0.918000px;}
.ls4a{letter-spacing:-0.900000px;}
.ls42{letter-spacing:-0.882000px;}
.ls99{letter-spacing:-0.864000px;}
.ls6e{letter-spacing:-0.858000px;}
.ls47{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.835518px;}
.ls67{letter-spacing:-0.819000px;}
.ls9f{letter-spacing:-0.810000px;}
.ls4b{letter-spacing:-0.780000px;}
.ls3e{letter-spacing:-0.756000px;}
.ls33{letter-spacing:-0.741000px;}
.ls8a{letter-spacing:-0.726000px;}
.ls5d{letter-spacing:-0.720000px;}
.ls7e{letter-spacing:-0.702000px;}
.ls22{letter-spacing:-0.696000px;}
.ls62{letter-spacing:-0.693000px;}
.ls5b{letter-spacing:-0.660000px;}
.ls15{letter-spacing:-0.648000px;}
.ls69{letter-spacing:-0.630000px;}
.ls45{letter-spacing:-0.600000px;}
.ls26{letter-spacing:-0.596710px;}
.ls17{letter-spacing:-0.594000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls28{letter-spacing:-0.567000px;}
.ls59{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.528000px;}
.ls23{letter-spacing:-0.504000px;}
.ls73{letter-spacing:-0.486000px;}
.ls65{letter-spacing:-0.480000px;}
.ls31{letter-spacing:-0.441000px;}
.ls1e{letter-spacing:-0.432000px;}
.ls52{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.384000px;}
.ls10{letter-spacing:-0.381951px;}
.ls20{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.371341px;}
.ls54{letter-spacing:-0.360000px;}
.lsa3{letter-spacing:-0.324000px;}
.ls63{letter-spacing:-0.315000px;}
.ls50{letter-spacing:-0.300000px;}
.ls85{letter-spacing:-0.270000px;}
.ls68{letter-spacing:-0.252000px;}
.ls5a{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.216000px;}
.ls95{letter-spacing:-0.198000px;}
.ls36{letter-spacing:-0.189000px;}
.lsf{letter-spacing:-0.185671px;}
.ls51{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.177713px;}
.ls9e{letter-spacing:-0.162000px;}
.ls25{letter-spacing:-0.126000px;}
.ls49{letter-spacing:-0.120000px;}
.ls1a{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.096000px;}
.lse{letter-spacing:-0.092835px;}
.ls24{letter-spacing:-0.087000px;}
.ls16{letter-spacing:-0.066000px;}
.ls2b{letter-spacing:-0.063000px;}
.ls46{letter-spacing:-0.060000px;}
.ls14{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:-0.048000px;}
.lsa0{letter-spacing:-0.009000px;}
.ls1{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.024000px;}
.ls7f{letter-spacing:0.054000px;}
.ls78{letter-spacing:0.060000px;}
.ls38{letter-spacing:0.063000px;}
.ls94{letter-spacing:0.108000px;}
.ls72{letter-spacing:0.120000px;}
.ls39{letter-spacing:0.126000px;}
.ls83{letter-spacing:0.162000px;}
.ls30{letter-spacing:0.189000px;}
.ls6c{letter-spacing:0.214200px;}
.ls40{letter-spacing:0.252000px;}
.ls8b{letter-spacing:0.270000px;}
.ls6f{letter-spacing:0.298200px;}
.ls4c{letter-spacing:0.300000px;}
.ls3b{letter-spacing:0.315000px;}
.lsa8{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.330000px;}
.ls4e{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.371341px;}
.ls2c{letter-spacing:0.378000px;}
.ls92{letter-spacing:0.432000px;}
.ls35{letter-spacing:0.441000px;}
.lsa{letter-spacing:0.464176px;}
.ls7c{letter-spacing:0.480000px;}
.ls90{letter-spacing:0.486000px;}
.ls37{letter-spacing:0.504000px;}
.ls80{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.557012px;}
.ls2e{letter-spacing:0.567000px;}
.ls9b{letter-spacing:0.594000px;}
.ls3d{letter-spacing:0.600000px;}
.ls5f{letter-spacing:0.630000px;}
.ls9c{letter-spacing:0.648000px;}
.ls3f{letter-spacing:0.693000px;}
.ls91{letter-spacing:0.702000px;}
.ls32{letter-spacing:0.756000px;}
.ls3a{letter-spacing:0.819000px;}
.ls6d{letter-spacing:0.882000px;}
.ls87{letter-spacing:0.972000px;}
.ls11{letter-spacing:1.007928px;}
.ls55{letter-spacing:1.008000px;}
.ls93{letter-spacing:1.026000px;}
.ls6a{letter-spacing:1.071000px;}
.ls2f{letter-spacing:1.134000px;}
.ls12{letter-spacing:4.243896px;}
.ls56{letter-spacing:47.580000px;}
.lsa5{letter-spacing:89.772000px;}
.lsa7{letter-spacing:89.772600px;}
.lsa4{letter-spacing:89.774400px;}
.ls9a{letter-spacing:89.789400px;}
.lsa6{letter-spacing:89.826000px;}
.ls8f{letter-spacing:89.826600px;}
.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;}
}
.ws3{word-spacing:-44.250637px;}
.ws1{word-spacing:-41.229510px;}
.ws2{word-spacing:-40.696374px;}
.ws0{word-spacing:-40.340946px;}
.ws4{word-spacing:-39.985518px;}
.ws5{word-spacing:-23.765762px;}
.wsb{word-spacing:-23.115915px;}
.wsc{word-spacing:-23.023079px;}
.ws6{word-spacing:-22.837409px;}
.wsa{word-spacing:-22.373232px;}
.ws9{word-spacing:-22.280400px;}
.wse{word-spacing:-21.984000px;}
.ws8{word-spacing:-19.773846px;}
.ws7{word-spacing:-19.588176px;}
.ws39{word-spacing:-17.706000px;}
.ws10{word-spacing:-16.200000px;}
.ws139{word-spacing:-14.805000px;}
.wsb4{word-spacing:-14.742000px;}
.ws7c{word-spacing:-14.616000px;}
.ws3c{word-spacing:-14.586000px;}
.ws13b{word-spacing:-14.553000px;}
.ws36{word-spacing:-14.490000px;}
.ws7a{word-spacing:-14.427000px;}
.ws18c{word-spacing:-14.388000px;}
.ws46{word-spacing:-14.364000px;}
.ws2a{word-spacing:-14.301000px;}
.wsb9{word-spacing:-14.256000px;}
.ws13a{word-spacing:-14.238000px;}
.ws56{word-spacing:-14.220000px;}
.wsb3{word-spacing:-14.190000px;}
.wsd2{word-spacing:-14.175000px;}
.ws123{word-spacing:-14.160000px;}
.ws143{word-spacing:-14.112000px;}
.wsf6{word-spacing:-14.100000px;}
.ws94{word-spacing:-14.049000px;}
.wsb5{word-spacing:-13.986000px;}
.ws53{word-spacing:-13.980000px;}
.ws35{word-spacing:-13.923000px;}
.ws50{word-spacing:-13.920000px;}
.ws16a{word-spacing:-13.860000px;}
.ws89{word-spacing:-13.797000px;}
.ws49{word-spacing:-13.740000px;}
.ws7b{word-spacing:-13.734000px;}
.wse2{word-spacing:-13.680000px;}
.ws45{word-spacing:-13.671000px;}
.ws51{word-spacing:-13.620000px;}
.ws88{word-spacing:-13.608000px;}
.ws4b{word-spacing:-13.560000px;}
.ws95{word-spacing:-13.545000px;}
.ws4e{word-spacing:-13.500000px;}
.ws37{word-spacing:-13.482000px;}
.ws5a{word-spacing:-13.440000px;}
.wsd3{word-spacing:-13.419000px;}
.ws70{word-spacing:-13.380000px;}
.ws2d{word-spacing:-13.356000px;}
.ws59{word-spacing:-13.320000px;}
.ws60{word-spacing:-13.260000px;}
.wsf5{word-spacing:-13.200000px;}
.ws7d{word-spacing:-13.167000px;}
.ws69{word-spacing:-13.140000px;}
.ws6c{word-spacing:-13.080000px;}
.ws34{word-spacing:-13.068000px;}
.ws2c{word-spacing:-13.041000px;}
.ws4a{word-spacing:-13.020000px;}
.ws72{word-spacing:-12.960000px;}
.ws156{word-spacing:-12.906000px;}
.wsd9{word-spacing:-12.900000px;}
.ws4f{word-spacing:-12.840000px;}
.ws28{word-spacing:-12.798000px;}
.ws58{word-spacing:-12.780000px;}
.ws47{word-spacing:-12.720000px;}
.ws48{word-spacing:-12.660000px;}
.ws18b{word-spacing:-12.636000px;}
.ws52{word-spacing:-12.600000px;}
.ws4c{word-spacing:-12.540000px;}
.ws2b{word-spacing:-12.537000px;}
.ws178{word-spacing:-12.528000px;}
.wse8{word-spacing:-12.480000px;}
.ws13c{word-spacing:-12.420000px;}
.ws6b{word-spacing:-12.360000px;}
.ws3a{word-spacing:-12.312000px;}
.wsdb{word-spacing:-12.300000px;}
.ws17c{word-spacing:-12.258000px;}
.wse5{word-spacing:-12.240000px;}
.ws6a{word-spacing:-12.180000px;}
.ws15a{word-spacing:-12.060000px;}
.ws122{word-spacing:-12.000000px;}
.ws112{word-spacing:-11.988000px;}
.ws44{word-spacing:-11.934000px;}
.ws164{word-spacing:-11.880000px;}
.ws111{word-spacing:-11.826000px;}
.wsfd{word-spacing:-11.718000px;}
.ws15b{word-spacing:-11.700000px;}
.ws10e{word-spacing:-11.664000px;}
.ws76{word-spacing:-11.610000px;}
.ws18f{word-spacing:-11.502000px;}
.wsd1{word-spacing:-11.448000px;}
.ws3b{word-spacing:-11.343000px;}
.ws11d{word-spacing:-11.340000px;}
.ws187{word-spacing:-11.232000px;}
.wse1{word-spacing:-11.220000px;}
.wsb2{word-spacing:-11.178000px;}
.ws18d{word-spacing:-11.124000px;}
.ws3d{word-spacing:-10.896000px;}
.ws73{word-spacing:-10.320000px;}
.wseb{word-spacing:-10.260000px;}
.ws4d{word-spacing:-10.140000px;}
.ws149{word-spacing:-10.020000px;}
.wsde{word-spacing:-9.840000px;}
.wsda{word-spacing:-9.720000px;}
.ws5f{word-spacing:-9.540000px;}
.ws159{word-spacing:-9.480000px;}
.ws57{word-spacing:-9.000000px;}
.ws18e{word-spacing:-7.560000px;}
.ws19c{word-spacing:-7.344000px;}
.wsbf{word-spacing:-6.480000px;}
.ws27{word-spacing:-6.300000px;}
.ws22{word-spacing:-5.184000px;}
.ws24{word-spacing:-3.219000px;}
.ws154{word-spacing:-3.150000px;}
.ws142{word-spacing:-3.060000px;}
.ws40{word-spacing:-2.898000px;}
.ws63{word-spacing:-2.835000px;}
.ws141{word-spacing:-2.760000px;}
.ws118{word-spacing:-2.709000px;}
.wsfa{word-spacing:-2.700000px;}
.ws153{word-spacing:-2.583000px;}
.wsa7{word-spacing:-2.520000px;}
.ws13d{word-spacing:-2.457000px;}
.ws21{word-spacing:-2.430000px;}
.wsce{word-spacing:-2.394000px;}
.ws20{word-spacing:-2.376000px;}
.ws16c{word-spacing:-2.331000px;}
.ws152{word-spacing:-2.268000px;}
.ws13{word-spacing:-2.244000px;}
.ws9e{word-spacing:-2.205000px;}
.ws9a{word-spacing:-2.142000px;}
.wsb6{word-spacing:-2.079000px;}
.ws17{word-spacing:-2.052000px;}
.ws42{word-spacing:-2.016000px;}
.ws9c{word-spacing:-1.953000px;}
.ws8c{word-spacing:-1.890000px;}
.ws13f{word-spacing:-1.860000px;}
.ws1f{word-spacing:-1.836000px;}
.ws16b{word-spacing:-1.827000px;}
.wsfb{word-spacing:-1.701000px;}
.ws18{word-spacing:-1.674000px;}
.wsb1{word-spacing:-1.638000px;}
.wsa5{word-spacing:-1.575000px;}
.wsa2{word-spacing:-1.449000px;}
.ws62{word-spacing:-1.386000px;}
.ws140{word-spacing:-1.380000px;}
.ws136{word-spacing:-1.323000px;}
.ws135{word-spacing:-1.260000px;}
.wsf9{word-spacing:-1.200000px;}
.wsf8{word-spacing:-1.197000px;}
.ws11a{word-spacing:-1.134000px;}
.wsd0{word-spacing:-1.071000px;}
.ws114{word-spacing:-1.020000px;}
.ws169{word-spacing:-1.008000px;}
.wsa0{word-spacing:-0.945000px;}
.ws1a0{word-spacing:-0.918000px;}
.ws18a{word-spacing:-0.882000px;}
.ws155{word-spacing:-0.840000px;}
.wsac{word-spacing:-0.756000px;}
.ws137{word-spacing:-0.693000px;}
.ws1a1{word-spacing:-0.648000px;}
.ws97{word-spacing:-0.630000px;}
.ws196{word-spacing:-0.594000px;}
.ws115{word-spacing:-0.504000px;}
.wsa9{word-spacing:-0.441000px;}
.ws19e{word-spacing:-0.432000px;}
.ws32{word-spacing:-0.378000px;}
.ws16{word-spacing:-0.330000px;}
.ws1a2{word-spacing:-0.270000px;}
.ws9f{word-spacing:-0.252000px;}
.ws1a6{word-spacing:-0.216000px;}
.ws38{word-spacing:-0.189000px;}
.ws134{word-spacing:-0.162000px;}
.ws19d{word-spacing:-0.127200px;}
.wsab{word-spacing:-0.126000px;}
.wsb8{word-spacing:-0.063000px;}
.ws1a9{word-spacing:-0.054000px;}
.wsf{word-spacing:-0.051000px;}
.wsd{word-spacing:0.000000px;}
.ws1a{word-spacing:0.048000px;}
.ws12{word-spacing:0.054000px;}
.ws113{word-spacing:0.060000px;}
.ws30{word-spacing:0.063000px;}
.ws26{word-spacing:0.087000px;}
.ws1d{word-spacing:0.096000px;}
.ws19{word-spacing:0.108000px;}
.ws68{word-spacing:0.120000px;}
.ws31{word-spacing:0.126000px;}
.ws1aa{word-spacing:0.162000px;}
.ws99{word-spacing:0.189000px;}
.ws116{word-spacing:0.216000px;}
.ws8a{word-spacing:0.240000px;}
.ws61{word-spacing:0.252000px;}
.wsfc{word-spacing:0.315000px;}
.ws197{word-spacing:0.324000px;}
.ws1e{word-spacing:0.378000px;}
.ws11{word-spacing:0.384000px;}
.ws1c{word-spacing:0.432000px;}
.wsae{word-spacing:0.441000px;}
.ws25{word-spacing:0.504000px;}
.wsbd{word-spacing:0.528000px;}
.ws193{word-spacing:0.540000px;}
.ws2f{word-spacing:0.567000px;}
.ws1b{word-spacing:0.576000px;}
.ws14{word-spacing:0.594000px;}
.ws29{word-spacing:0.596710px;}
.ws138{word-spacing:0.630000px;}
.ws15{word-spacing:0.648000px;}
.wsb7{word-spacing:0.693000px;}
.ws19a{word-spacing:0.702000px;}
.ws8b{word-spacing:0.720000px;}
.ws66{word-spacing:0.756000px;}
.ws167{word-spacing:0.780000px;}
.ws1a8{word-spacing:0.810000px;}
.wsa1{word-spacing:0.819000px;}
.ws67{word-spacing:0.840000px;}
.ws191{word-spacing:0.864000px;}
.wsaf{word-spacing:0.882000px;}
.ws23{word-spacing:1.008000px;}
.ws1a5{word-spacing:1.026000px;}
.ws33{word-spacing:1.071000px;}
.ws117{word-spacing:1.083000px;}
.ws92{word-spacing:1.134000px;}
.ws192{word-spacing:1.188000px;}
.ws91{word-spacing:1.197000px;}
.ws12d{word-spacing:1.200000px;}
.ws119{word-spacing:1.242000px;}
.wsad{word-spacing:1.260000px;}
.ws1ac{word-spacing:1.296000px;}
.wscc{word-spacing:1.323000px;}
.ws1ae{word-spacing:1.350000px;}
.ws8d{word-spacing:1.386000px;}
.ws3f{word-spacing:1.449000px;}
.ws1a3{word-spacing:1.458000px;}
.wsbb{word-spacing:1.512000px;}
.ws90{word-spacing:1.575000px;}
.wsa4{word-spacing:1.638000px;}
.ws194{word-spacing:1.674000px;}
.wsb0{word-spacing:1.701000px;}
.ws195{word-spacing:1.728000px;}
.ws41{word-spacing:1.764000px;}
.ws1ad{word-spacing:1.782000px;}
.ws65{word-spacing:1.827000px;}
.ws1ab{word-spacing:1.836000px;}
.wsa6{word-spacing:1.890000px;}
.ws19f{word-spacing:1.944000px;}
.ws8e{word-spacing:1.953000px;}
.ws1a4{word-spacing:1.998000px;}
.wsaa{word-spacing:2.016000px;}
.wsa8{word-spacing:2.079000px;}
.ws2e{word-spacing:2.112000px;}
.wscf{word-spacing:2.142000px;}
.ws96{word-spacing:2.205000px;}
.ws1a7{word-spacing:2.214000px;}
.wsa3{word-spacing:2.268000px;}
.wsf7{word-spacing:2.331000px;}
.ws19b{word-spacing:2.376000px;}
.ws93{word-spacing:2.394000px;}
.ws199{word-spacing:2.430000px;}
.ws3e{word-spacing:2.457000px;}
.ws43{word-spacing:2.520000px;}
.ws9b{word-spacing:2.583000px;}
.ws64{word-spacing:2.646000px;}
.ws13e{word-spacing:2.709000px;}
.ws12c{word-spacing:2.772000px;}
.wsbc{word-spacing:2.835000px;}
.ws168{word-spacing:2.898000px;}
.ws98{word-spacing:2.961000px;}
.ws8f{word-spacing:3.276000px;}
.ws190{word-spacing:3.348000px;}
.ws9d{word-spacing:3.465000px;}
.ws198{word-spacing:3.510000px;}
.wsba{word-spacing:3.654000px;}
.ws11e{word-spacing:4.740000px;}
.ws5e{word-spacing:4.800000px;}
.wse6{word-spacing:4.986000px;}
.ws163{word-spacing:5.100000px;}
.ws126{word-spacing:5.280000px;}
.ws129{word-spacing:5.580000px;}
.wsec{word-spacing:5.640000px;}
.ws107{word-spacing:6.300000px;}
.ws14e{word-spacing:6.312000px;}
.ws100{word-spacing:6.420000px;}
.wsef{word-spacing:6.540000px;}
.ws151{word-spacing:6.600000px;}
.ws146{word-spacing:6.840000px;}
.wsd6{word-spacing:7.080000px;}
.ws15d{word-spacing:7.380000px;}
.ws106{word-spacing:7.626000px;}
.ws165{word-spacing:8.040000px;}
.wsf4{word-spacing:8.640000px;}
.ws83{word-spacing:8.880000px;}
.wsf1{word-spacing:9.360000px;}
.ws5c{word-spacing:9.666000px;}
.ws101{word-spacing:10.620000px;}
.ws147{word-spacing:10.626000px;}
.ws157{word-spacing:11.100000px;}
.wsf2{word-spacing:11.940000px;}
.ws80{word-spacing:12.660000px;}
.ws127{word-spacing:12.906000px;}
.ws120{word-spacing:13.146000px;}
.ws82{word-spacing:13.206000px;}
.ws6f{word-spacing:13.620000px;}
.wscb{word-spacing:13.662000px;}
.ws87{word-spacing:13.680000px;}
.ws103{word-spacing:14.700000px;}
.ws12a{word-spacing:15.780000px;}
.wsdc{word-spacing:16.680000px;}
.wse3{word-spacing:17.940000px;}
.ws7e{word-spacing:18.240000px;}
.ws14d{word-spacing:18.600000px;}
.wsed{word-spacing:18.900000px;}
.wscd{word-spacing:19.062000px;}
.ws86{word-spacing:19.200000px;}
.ws125{word-spacing:19.860000px;}
.ws6e{word-spacing:20.220000px;}
.ws104{word-spacing:20.640000px;}
.wsd7{word-spacing:22.740000px;}
.wsff{word-spacing:23.460000px;}
.ws144{word-spacing:25.740000px;}
.ws15f{word-spacing:25.980000px;}
.ws14b{word-spacing:29.160000px;}
.ws6d{word-spacing:32.940000px;}
.wsdd{word-spacing:33.120000px;}
.ws15e{word-spacing:34.500000px;}
.ws102{word-spacing:36.660000px;}
.ws121{word-spacing:42.480000px;}
.wsee{word-spacing:43.080000px;}
.wsea{word-spacing:44.700000px;}
.ws85{word-spacing:47.760000px;}
.wse4{word-spacing:48.906000px;}
.ws84{word-spacing:49.500000px;}
.ws12b{word-spacing:51.360000px;}
.ws14c{word-spacing:53.520000px;}
.ws174{word-spacing:53.784000px;}
.ws75{word-spacing:55.242000px;}
.ws14a{word-spacing:56.220000px;}
.wsf3{word-spacing:59.160000px;}
.wsc5{word-spacing:60.048000px;}
.wsd5{word-spacing:61.020000px;}
.ws55{word-spacing:64.500000px;}
.ws108{word-spacing:69.060000px;}
.ws166{word-spacing:70.080000px;}
.ws158{word-spacing:70.380000px;}
.wsdf{word-spacing:70.866000px;}
.ws177{word-spacing:75.060000px;}
.wse0{word-spacing:75.246000px;}
.wsc6{word-spacing:76.572000px;}
.ws172{word-spacing:77.652000px;}
.ws186{word-spacing:79.002000px;}
.ws5d{word-spacing:81.480000px;}
.ws162{word-spacing:85.380000px;}
.ws175{word-spacing:86.130000px;}
.ws11f{word-spacing:86.220000px;}
.ws161{word-spacing:88.620000px;}
.ws17f{word-spacing:90.342000px;}
.wsd8{word-spacing:90.360000px;}
.ws54{word-spacing:90.906000px;}
.ws189{word-spacing:94.608000px;}
.ws105{word-spacing:95.640000px;}
.ws150{word-spacing:96.600000px;}
.wsc7{word-spacing:96.827400px;}
.ws182{word-spacing:99.792000px;}
.ws16f{word-spacing:104.976000px;}
.ws148{word-spacing:106.800000px;}
.ws188{word-spacing:112.914000px;}
.ws145{word-spacing:113.100000px;}
.wsbe{word-spacing:115.506000px;}
.ws183{word-spacing:120.960000px;}
.ws185{word-spacing:121.554000px;}
.ws170{word-spacing:122.580000px;}
.ws11c{word-spacing:125.220000px;}
.ws180{word-spacing:125.550000px;}
.ws17b{word-spacing:125.982000px;}
.ws173{word-spacing:126.198000px;}
.ws17d{word-spacing:127.278000px;}
.ws16d{word-spacing:128.682000px;}
.ws179{word-spacing:130.950000px;}
.ws5b{word-spacing:134.100000px;}
.ws15c{word-spacing:136.500000px;}
.wsc9{word-spacing:138.456000px;}
.ws12f{word-spacing:142.992000px;}
.wse9{word-spacing:147.480000px;}
.ws10f{word-spacing:148.176000px;}
.wsc8{word-spacing:148.716000px;}
.wsca{word-spacing:151.416000px;}
.ws14f{word-spacing:156.180000px;}
.ws81{word-spacing:171.600000px;}
.wsd4{word-spacing:176.166000px;}
.ws128{word-spacing:183.060000px;}
.ws7f{word-spacing:185.406000px;}
.ws124{word-spacing:185.766000px;}
.ws160{word-spacing:194.460000px;}
.ws133{word-spacing:208.062000px;}
.ws71{word-spacing:215.700000px;}
.ws132{word-spacing:223.560000px;}
.wsfe{word-spacing:234.480000px;}
.ws10d{word-spacing:238.248000px;}
.ws11b{word-spacing:247.560000px;}
.ws79{word-spacing:259.416000px;}
.wsc2{word-spacing:284.256000px;}
.wsc3{word-spacing:291.978000px;}
.wsc1{word-spacing:293.058000px;}
.ws77{word-spacing:296.568000px;}
.ws131{word-spacing:317.196000px;}
.wse7{word-spacing:321.720000px;}
.wsc0{word-spacing:335.178000px;}
.ws130{word-spacing:361.044000px;}
.wsc4{word-spacing:375.030000px;}
.ws78{word-spacing:400.631400px;}
.ws176{word-spacing:405.815400px;}
.ws74{word-spacing:423.684000px;}
.ws16e{word-spacing:434.808000px;}
.ws110{word-spacing:459.869400px;}
.wsf0{word-spacing:467.706000px;}
.ws10a{word-spacing:479.250000px;}
.ws184{word-spacing:482.387400px;}
.ws181{word-spacing:483.035400px;}
.ws171{word-spacing:483.143400px;}
.ws17e{word-spacing:488.214000px;}
.ws109{word-spacing:520.560000px;}
.ws17a{word-spacing:523.368000px;}
.ws10b{word-spacing:538.272000px;}
.ws10c{word-spacing:550.098000px;}
.ws12e{word-spacing:804.276000px;}
._8{margin-left:-14.578285px;}
._78{margin-left:-13.330643px;}
._72{margin-left:-10.632189px;}
._a{margin-left:-9.118607px;}
._7{margin-left:-7.712567px;}
._3{margin-left:-6.397682px;}
._11{margin-left:-5.287379px;}
._6{margin-left:-4.245147px;}
._4{margin-left:-2.719921px;}
._5{margin-left:-1.563137px;}
._1{width:1.083547px;}
._2{width:2.664260px;}
._0{width:4.052203px;}
._9{width:5.570118px;}
._4f{width:13.662000px;}
._b{width:14.847137px;}
._2f{width:16.403864px;}
._7f{width:19.269411px;}
._89{width:21.591411px;}
._43{width:22.775864px;}
._25{width:23.880000px;}
._5b{width:24.939411px;}
._3f{width:26.609864px;}
._3d{width:29.376000px;}
._1e{width:30.510000px;}
._45{width:31.860000px;}
._2c{width:33.236727px;}
._41{width:34.772453px;}
._77{width:36.228000px;}
._23{width:37.440000px;}
._66{width:38.448000px;}
._22{width:40.887000px;}
._80{width:42.180000px;}
._1f{width:43.457400px;}
._20{width:45.738000px;}
._21{width:46.746000px;}
._86{width:48.600000px;}
._1d{width:50.188200px;}
._8a{width:53.450589px;}
._73{width:54.603137px;}
._16{width:56.211137px;}
._63{width:60.464058px;}
._39{width:61.980000px;}
._44{width:63.232800px;}
._5c{width:65.486400px;}
._40{width:67.516800px;}
._42{width:69.959400px;}
._8d{width:71.604000px;}
._3b{width:72.930159px;}
._3e{width:74.244000px;}
._31{width:78.906827px;}
._5f{width:84.063421px;}
._3a{width:88.380000px;}
._7e{width:90.603411px;}
._8c{width:99.252000px;}
._91{width:103.784453px;}
._46{width:106.834236px;}
._68{width:109.716285px;}
._4e{width:115.249511px;}
._83{width:119.958821px;}
._54{width:123.812727px;}
._47{width:126.948274px;}
._76{width:138.252000px;}
._27{width:139.452000px;}
._65{width:140.472000px;}
._29{width:141.480000px;}
._48{width:147.417137px;}
._59{width:148.861959px;}
._5d{width:150.240000px;}
._53{width:155.943882px;}
._32{width:158.887921px;}
._55{width:160.974000px;}
._52{width:163.674000px;}
._1b{width:167.909606px;}
._50{width:169.128000px;}
._57{width:171.828000px;}
._87{width:175.692827px;}
._24{width:178.080000px;}
._26{width:190.203137px;}
._38{width:195.841959px;}
._62{width:197.455899px;}
._85{width:200.520000px;}
._58{width:202.923882px;}
._51{width:207.106041px;}
._35{width:211.137137px;}
._7a{width:215.024593px;}
._79{width:216.660000px;}
._5a{width:223.452000px;}
._56{width:233.112274px;}
._74{width:235.020000px;}
._7d{width:236.428374px;}
._75{width:240.714000px;}
._64{width:254.880000px;}
._7b{width:271.083137px;}
._2b{width:275.227386px;}
._7c{width:277.560000px;}
._4c{width:290.177560px;}
._34{width:291.816000px;}
._12{width:296.763711px;}
._49{width:305.316000px;}
._36{width:308.826000px;}
._4d{width:314.086135px;}
._8e{width:316.507511px;}
._4a{width:322.326000px;}
._30{width:333.374195px;}
._4b{width:347.436000px;}
._2a{width:359.274000px;}
._8b{width:366.965740px;}
._61{width:387.243137px;}
._67{width:389.146135px;}
._8f{width:394.895590px;}
._d{width:400.432218px;}
._19{width:401.572928px;}
._6f{width:413.794906px;}
._1a{width:455.137785px;}
._90{width:456.837137px;}
._6e{width:470.442274px;}
._33{width:481.896000px;}
._92{width:495.825137px;}
._6c{width:501.114274px;}
._5e{width:506.913937px;}
._37{width:530.598274px;}
._6a{width:532.818000px;}
._6d{width:535.518000px;}
._69{width:540.699137px;}
._70{width:561.756274px;}
._71{width:563.149633px;}
._6b{width:581.415137px;}
._2d{width:594.953068px;}
._13{width:603.163375px;}
._28{width:622.179010px;}
._e{width:646.989274px;}
._81{width:766.728000px;}
._3c{width:795.588000px;}
._82{width:830.763137px;}
._88{width:838.428000px;}
._17{width:889.776411px;}
._60{width:962.508000px;}
._2e{width:1062.072000px;}
._15{width:1081.069769px;}
._84{width:1225.188000px;}
._14{width:1299.424511px;}
._18{width:1444.880590px;}
._10{width:1496.679137px;}
._f{width:1520.587646px;}
._c{width:1680.564274px;}
._1c{width:1807.647137px;}
.fc3{color:rgb(37,74,165);}
.fc2{color:rgb(246,189,12);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs17{font-size:0.600000px;}
.fs12{font-size:31.405800px;}
.fs16{font-size:44.100000px;}
.fsc{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs15{font-size:57.000000px;}
.fs14{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs5{font-size:75.600000px;}
.fs13{font-size:78.000000px;}
.fsf{font-size:84.000000px;}
.fs4{font-size:84.877800px;}
.fse{font-size:86.400000px;}
.fs10{font-size:87.000000px;}
.fs1{font-size:92.835000px;}
.fs2{font-size:95.487600px;}
.fs6{font-size:96.000000px;}
.fs3{font-size:100.792800px;}
.fs11{font-size:142.023600px;}
.fsd{font-size:144.000000px;}
.fs0{font-size:177.713400px;}
.y0{bottom:0.000000px;}
.ya9{bottom:4.647750px;}
.y55{bottom:8.111700px;}
.ya8{bottom:20.391750px;}
.y56{bottom:21.914100px;}
.y300{bottom:45.761550px;}
.y2d4{bottom:45.773550px;}
.y189{bottom:48.894750px;}
.y260{bottom:54.439500px;}
.y23b{bottom:55.225950px;}
.y2a4{bottom:57.959100px;}
.y1d0{bottom:61.647750px;}
.y2ff{bottom:63.014550px;}
.y2d3{bottom:63.026550px;}
.y26b{bottom:63.757050px;}
.y27a{bottom:64.669500px;}
.yf9{bottom:65.634900px;}
.y212{bottom:65.748750px;}
.y188{bottom:66.147750px;}
.y226{bottom:69.020550px;}
.ya7{bottom:69.283650px;}
.y11{bottom:70.157550px;}
.y165{bottom:72.283650px;}
.y25f{bottom:74.694000px;}
.y8{bottom:75.187500px;}
.y2a3{bottom:75.212100px;}
.y23a{bottom:75.480450px;}
.y77{bottom:77.966400px;}
.y1cf{bottom:78.900750px;}
.y2fe{bottom:80.267550px;}
.y2d2{bottom:80.279550px;}
.y279{bottom:81.922500px;}
.y26a{bottom:84.011550px;}
.yd0{bottom:84.194100px;}
.y151{bottom:85.498800px;}
.y10f{bottom:85.566300px;}
.yf8{bottom:85.889400px;}
.y211{bottom:86.003250px;}
.y225{bottom:89.275050px;}
.ya6{bottom:89.538150px;}
.y10{bottom:90.407550px;}
.y2a2{bottom:92.465100px;}
.y53{bottom:94.861500px;}
.y25e{bottom:94.948500px;}
.y239{bottom:95.734950px;}
.y12d{bottom:96.025800px;}
.y1ce{bottom:96.153750px;}
.y2d1{bottom:97.520550px;}
.y76{bottom:98.220900px;}
.y4b{bottom:98.911200px;}
.y269{bottom:104.266050px;}
.yce{bottom:104.500500px;}
.ycf{bottom:104.504100px;}
.y150{bottom:105.753300px;}
.y10e{bottom:105.820800px;}
.yf7{bottom:106.143900px;}
.y210{bottom:106.257750px;}
.y224{bottom:109.529550px;}
.y2a1{bottom:109.718100px;}
.ya5{bottom:109.792650px;}
.y1f0{bottom:109.975350px;}
.yf{bottom:110.657550px;}
.y52{bottom:111.061500px;}
.y278{bottom:111.933000px;}
.y2d0{bottom:114.773550px;}
.y25d{bottom:115.203000px;}
.y238{bottom:115.989450px;}
.y12c{bottom:116.280300px;}
.y187{bottom:117.163650px;}
.y75{bottom:118.475400px;}
.ycc{bottom:123.846900px;}
.ycd{bottom:123.850500px;}
.y268{bottom:124.520550px;}
.y164{bottom:124.629300px;}
.y14f{bottom:126.007800px;}
.y10d{bottom:126.075300px;}
.yf6{bottom:126.398400px;}
.y20f{bottom:126.512250px;}
.y2a0{bottom:126.971100px;}
.y51{bottom:127.261500px;}
.ya4{bottom:130.047150px;}
.y1ef{bottom:130.229850px;}
.y277{bottom:130.252500px;}
.ye{bottom:130.907550px;}
.y2cf{bottom:132.026550px;}
.y25c{bottom:135.457500px;}
.y237{bottom:136.243950px;}
.y12b{bottom:136.534800px;}
.y186{bottom:137.418150px;}
.y223{bottom:141.779550px;}
.y29f{bottom:144.224100px;}
.y267{bottom:144.775050px;}
.y163{bottom:144.883800px;}
.y14e{bottom:146.262300px;}
.y10c{bottom:146.329800px;}
.yf5{bottom:146.652900px;}
.y20e{bottom:146.766750px;}
.y74{bottom:147.234900px;}
.ycb{bottom:148.386900px;}
.y276{bottom:148.572000px;}
.y2ce{bottom:149.279550px;}
.ya3{bottom:150.301650px;}
.y1ee{bottom:150.484350px;}
.y1cd{bottom:151.482300px;}
.y1af{bottom:153.479850px;}
.y25b{bottom:155.712000px;}
.y236{bottom:156.498450px;}
.y12a{bottom:156.789300px;}
.y185{bottom:157.672650px;}
.yd{bottom:159.661500px;}
.y222{bottom:161.279550px;}
.y29e{bottom:161.477100px;}
.y266{bottom:165.029550px;}
.y162{bottom:165.138300px;}
.y14d{bottom:166.516800px;}
.y2fd{bottom:166.523550px;}
.y2cd{bottom:166.529550px;}
.y10b{bottom:166.584300px;}
.y275{bottom:166.891500px;}
.yf4{bottom:166.907400px;}
.y20d{bottom:167.021250px;}
.y73{bottom:167.489400px;}
.yc9{bottom:168.693450px;}
.yca{bottom:168.696900px;}
.ya2{bottom:170.556150px;}
.y1ed{bottom:170.738850px;}
.y1cc{bottom:171.736800px;}
.y1ae{bottom:173.734350px;}
.y25a{bottom:175.966500px;}
.y235{bottom:176.752950px;}
.y129{bottom:177.043800px;}
.y184{bottom:177.927150px;}
.y29d{bottom:178.730100px;}
.y50{bottom:180.921300px;}
.y7{bottom:181.824000px;}
.y2cc{bottom:183.773550px;}
.y2fc{bottom:183.776550px;}
.y274{bottom:185.211000px;}
.y161{bottom:185.392800px;}
.y14c{bottom:186.771300px;}
.y221{bottom:186.779550px;}
.y10a{bottom:186.838800px;}
.y20c{bottom:187.275750px;}
.y72{bottom:187.743900px;}
.yc7{bottom:188.039850px;}
.yc8{bottom:188.043450px;}
.ya1{bottom:190.810650px;}
.y1ec{bottom:190.993350px;}
.y1cb{bottom:191.991300px;}
.y1ad{bottom:193.988850px;}
.y29c{bottom:195.983100px;}
.y30{bottom:196.142250px;}
.y259{bottom:196.221000px;}
.y234{bottom:197.007450px;}
.y4f{bottom:197.121300px;}
.y128{bottom:197.298300px;}
.y183{bottom:198.181650px;}
.yf3{bottom:199.150500px;}
.y2cb{bottom:201.026550px;}
.y2fb{bottom:201.029550px;}
.y273{bottom:203.530500px;}
.y265{bottom:205.401300px;}
.y160{bottom:205.647300px;}
.y220{bottom:206.279550px;}
.y14b{bottom:207.025800px;}
.y109{bottom:207.093300px;}
.y20b{bottom:207.530250px;}
.y71{bottom:207.998400px;}
.ya0{bottom:211.065150px;}
.y2f{bottom:211.142250px;}
.y1ca{bottom:212.245800px;}
.y6{bottom:212.328000px;}
.yc6{bottom:212.579850px;}
.y29b{bottom:213.236100px;}
.y1ac{bottom:214.243350px;}
.y258{bottom:216.475500px;}
.y127{bottom:217.552800px;}
.y2fa{bottom:218.264550px;}
.y2ca{bottom:218.279550px;}
.y182{bottom:218.436150px;}
.yf2{bottom:218.650500px;}
.y4e{bottom:221.825250px;}
.y272{bottom:221.850000px;}
.y1eb{bottom:223.229850px;}
.y233{bottom:223.251150px;}
.y15f{bottom:225.897300px;}
.y14a{bottom:227.280300px;}
.y108{bottom:227.347800px;}
.y20a{bottom:227.784750px;}
.y29a{bottom:230.489100px;}
.y9f{bottom:231.319650px;}
.y21f{bottom:231.779550px;}
.y1c9{bottom:232.500300px;}
.yc4{bottom:232.886250px;}
.yc5{bottom:232.889850px;}
.y2e{bottom:233.720100px;}
.y3e{bottom:234.139500px;}
.y2f9{bottom:235.517550px;}
.y2c9{bottom:235.526550px;}
.y257{bottom:236.730000px;}
.y70{bottom:236.757900px;}
.y126{bottom:237.807300px;}
.y4d{bottom:238.025250px;}
.y181{bottom:238.677150px;}
.yf0{bottom:238.953450px;}
.yf1{bottom:238.960500px;}
.y271{bottom:240.169500px;}
.y1ea{bottom:242.729850px;}
.y232{bottom:242.751150px;}
.y4{bottom:242.829750px;}
.y5{bottom:242.830500px;}
.y15e{bottom:246.151800px;}
.y1ab{bottom:246.493350px;}
.y149{bottom:247.534800px;}
.y107{bottom:247.602300px;}
.y299{bottom:247.742100px;}
.y209{bottom:248.039250px;}
.y2d{bottom:248.720100px;}
.y3d{bottom:249.139500px;}
.y21e{bottom:251.279550px;}
.y9e{bottom:251.574150px;}
.yc3{bottom:252.236250px;}
.y2f8{bottom:252.770550px;}
.y2c8{bottom:252.779550px;}
.y256{bottom:256.984500px;}
.y6f{bottom:257.012400px;}
.y125{bottom:258.061800px;}
.yef{bottom:258.303450px;}
.y270{bottom:258.489000px;}
.y180{bottom:258.931650px;}
.y231{bottom:262.251150px;}
.y4c{bottom:262.729200px;}
.y1e9{bottom:263.039850px;}
.y298{bottom:264.995100px;}
.y1aa{bottom:265.993350px;}
.y264{bottom:266.149050px;}
.y148{bottom:267.789300px;}
.y106{bottom:267.856800px;}
.y208{bottom:268.293750px;}
.y2c7{bottom:269.972550px;}
.y2f7{bottom:270.023550px;}
.y2c{bottom:271.298100px;}
.y3c{bottom:271.717350px;}
.y9d{bottom:271.828650px;}
.y3{bottom:273.333000px;}
.y1c8{bottom:276.574200px;}
.y21d{bottom:276.779550px;}
.y26f{bottom:276.808500px;}
.yee{bottom:276.843450px;}
.y255{bottom:277.239000px;}
.y6e{bottom:277.266900px;}
.y124{bottom:278.316300px;}
.y17f{bottom:279.186150px;}
.y297{bottom:282.248100px;}
.y1e8{bottom:282.389850px;}
.y230{bottom:282.561150px;}
.yc2{bottom:282.740550px;}
.y15d{bottom:284.923050px;}
.y1a9{bottom:285.493350px;}
.y2b{bottom:286.298100px;}
.y263{bottom:286.403550px;}
.y3b{bottom:286.717350px;}
.y2c6{bottom:287.225550px;}
.y2f6{bottom:287.276550px;}
.y147{bottom:288.043800px;}
.y105{bottom:288.111300px;}
.y207{bottom:288.548250px;}
.y9c{bottom:292.083150px;}
.y1c7{bottom:294.893700px;}
.y26e{bottom:295.128000px;}
.y21c{bottom:296.279550px;}
.yec{bottom:297.150000px;}
.yed{bottom:297.153450px;}
.y254{bottom:297.493500px;}
.y123{bottom:298.570800px;}
.y17e{bottom:299.431650px;}
.y296{bottom:299.495100px;}
.y1e6{bottom:301.736250px;}
.y1e7{bottom:301.739850px;}
.y22f{bottom:301.904100px;}
.yc1{bottom:302.995050px;}
.y2c5{bottom:304.478550px;}
.y2f5{bottom:304.529550px;}
.y1a7{bottom:305.793450px;}
.y1a8{bottom:305.796900px;}
.y6d{bottom:306.026400px;}
.y262{bottom:306.658050px;}
.y146{bottom:308.298300px;}
.y104{bottom:308.365800px;}
.y206{bottom:308.802750px;}
.y2a{bottom:308.876100px;}
.y3a{bottom:309.295350px;}
.y1c6{bottom:313.213200px;}
.y26d{bottom:313.447500px;}
.y21b{bottom:315.779550px;}
.yeb{bottom:316.500000px;}
.y295{bottom:316.748100px;}
.y253{bottom:317.748000px;}
.y122{bottom:318.825300px;}
.y17d{bottom:319.686150px;}
.y1e4{bottom:321.076200px;}
.y1e5{bottom:321.086250px;}
.y22d{bottom:321.250500px;}
.y22e{bottom:321.254100px;}
.y2c4{bottom:321.731550px;}
.y2f4{bottom:321.776550px;}
.y29{bottom:323.876100px;}
.y39{bottom:324.295350px;}
.y1a5{bottom:325.136250px;}
.y1a6{bottom:325.143450px;}
.y6c{bottom:326.280900px;}
.y261{bottom:326.912550px;}
.y145{bottom:328.552800px;}
.y103{bottom:328.620300px;}
.y205{bottom:329.057250px;}
.y1c5{bottom:331.532700px;}
.y9b{bottom:332.583150px;}
.y294{bottom:333.989100px;}
.y15c{bottom:335.165550px;}
.yc0{bottom:335.251050px;}
.y252{bottom:338.002500px;}
.y2c3{bottom:338.984550px;}
.y2f3{bottom:339.029550px;}
.y121{bottom:339.079800px;}
.y22c{bottom:340.600500px;}
.y1a4{bottom:344.486250px;}
.y1e3{bottom:345.616200px;}
.y28{bottom:346.453950px;}
.y6b{bottom:346.535400px;}
.y38{bottom:346.873350px;}
.yea{bottom:346.989150px;}
.y21a{bottom:347.167050px;}
.y144{bottom:348.807300px;}
.y102{bottom:348.874800px;}
.y204{bottom:349.311750px;}
.y293{bottom:351.242100px;}
.y26c{bottom:353.763900px;}
.y15b{bottom:355.420050px;}
.ybf{bottom:355.505550px;}
.y1c4{bottom:356.035200px;}
.y2c2{bottom:356.237550px;}
.y2f2{bottom:356.249550px;}
.y251{bottom:358.257000px;}
.y120{bottom:359.334300px;}
.y22b{bottom:359.946900px;}
.y4a{bottom:360.681300px;}
.y27{bottom:361.453950px;}
.y37{bottom:361.873350px;}
.y17c{bottom:363.765600px;}
.y1a2{bottom:363.829200px;}
.y1a3{bottom:363.836250px;}
.y1e2{bottom:365.116200px;}
.ye9{bottom:367.243650px;}
.y219{bottom:367.421550px;}
.y292{bottom:368.495100px;}
.y143{bottom:369.061800px;}
.y101{bottom:369.129300px;}
.y203{bottom:369.566250px;}
.y2c1{bottom:373.490550px;}
.y2f1{bottom:373.502550px;}
.y6a{bottom:375.294900px;}
.y15a{bottom:375.674550px;}
.ybe{bottom:375.760050px;}
.y229{bottom:379.289850px;}
.y22a{bottom:379.293300px;}
.y11f{bottom:379.588800px;}
.y17b{bottom:382.085100px;}
.y1a1{bottom:383.179200px;}
.y1c3{bottom:383.892450px;}
.y26{bottom:384.031950px;}
.y36{bottom:384.451200px;}
.y250{bottom:384.500550px;}
.y49{bottom:385.172100px;}
.y1e1{bottom:385.426200px;}
.y291{bottom:385.748100px;}
.ye8{bottom:387.498150px;}
.y218{bottom:387.676050px;}
.y142{bottom:389.316300px;}
.y100{bottom:389.383800px;}
.y202{bottom:389.820750px;}
.y2c0{bottom:390.743550px;}
.y2f0{bottom:390.755550px;}
.y9a{bottom:393.296400px;}
.y69{bottom:395.549400px;}
.y159{bottom:395.929050px;}
.ybd{bottom:396.014550px;}
.y228{bottom:398.639850px;}
.y25{bottom:399.031950px;}
.y35{bottom:399.451200px;}
.y11e{bottom:399.843300px;}
.y17a{bottom:400.404600px;}
.y1a0{bottom:402.529200px;}
.y290{bottom:402.989100px;}
.y24f{bottom:404.000550px;}
.y1e0{bottom:404.776200px;}
.ye7{bottom:407.752650px;}
.y217{bottom:407.930550px;}
.y2bf{bottom:407.996550px;}
.y2ef{bottom:408.008550px;}
.y141{bottom:409.570800px;}
.yff{bottom:409.638300px;}
.y201{bottom:410.075250px;}
.y68{bottom:415.803900px;}
.y158{bottom:416.183550px;}
.y227{bottom:417.986250px;}
.y179{bottom:418.724100px;}
.y1c2{bottom:419.341350px;}
.y11d{bottom:420.097800px;}
.y28f{bottom:420.242100px;}
.y24{bottom:421.609950px;}
.y48{bottom:421.624800px;}
.y34{bottom:422.029200px;}
.y1df{bottom:424.126200px;}
.y24d{bottom:424.303500px;}
.y24e{bottom:424.310550px;}
.y2be{bottom:425.249550px;}
.y2ee{bottom:425.261550px;}
.ye6{bottom:428.007150px;}
.y216{bottom:428.185050px;}
.ybc{bottom:428.270550px;}
.y140{bottom:429.825300px;}
.yfe{bottom:429.892800px;}
.y200{bottom:430.329750px;}
.y9{bottom:430.446000px;}
.y99{bottom:431.999400px;}
.y19f{bottom:433.063500px;}
.y67{bottom:436.058400px;}
.y157{bottom:436.438050px;}
.y23{bottom:436.609950px;}
.y33{bottom:437.029200px;}
.y178{bottom:437.043600px;}
.y28e{bottom:437.495100px;}
.y1c1{bottom:439.595850px;}
.y11c{bottom:440.352300px;}
.y2bd{bottom:442.502550px;}
.y2ed{bottom:442.514550px;}
.y1dd{bottom:443.469000px;}
.y1de{bottom:443.472600px;}
.y24c{bottom:443.653500px;}
.y47{bottom:446.115450px;}
.ye5{bottom:448.261650px;}
.y215{bottom:448.439550px;}
.ybb{bottom:448.525050px;}
.y13f{bottom:450.079800px;}
.yfd{bottom:450.147300px;}
.y98{bottom:450.453150px;}
.y1ff{bottom:450.584250px;}
.y19e{bottom:453.318000px;}
.y28d{bottom:454.748100px;}
.y177{bottom:455.363100px;}
.y156{bottom:456.692550px;}
.y8a{bottom:458.173350px;}
.y22{bottom:459.187800px;}
.y32{bottom:459.607200px;}
.y2bc{bottom:459.755550px;}
.y2ec{bottom:459.767550px;}
.y1c0{bottom:459.850350px;}
.y11b{bottom:460.606800px;}
.y1db{bottom:462.811950px;}
.y1dc{bottom:462.819000px;}
.y24a{bottom:462.999900px;}
.y24b{bottom:463.003500px;}
.y66{bottom:464.817900px;}
.ye4{bottom:468.516150px;}
.y214{bottom:468.694050px;}
.yba{bottom:468.779550px;}
.y97{bottom:468.906900px;}
.y13e{bottom:470.334300px;}
.yfc{bottom:470.401800px;}
.y1fe{bottom:470.838750px;}
.y176{bottom:471.860100px;}
.y28c{bottom:471.980100px;}
.y19d{bottom:473.572500px;}
.y21{bottom:474.187800px;}
.y31{bottom:474.607200px;}
.y155{bottom:476.947050px;}
.y2bb{bottom:477.008550px;}
.y2eb{bottom:477.020550px;}
.y11a{bottom:480.861300px;}
.y1da{bottom:482.161950px;}
.y249{bottom:482.349900px;}
.y46{bottom:482.568150px;}
.y65{bottom:485.072400px;}
.y96{bottom:487.360650px;}
.ye3{bottom:488.770650px;}
.y213{bottom:488.948550px;}
.y28b{bottom:489.233100px;}
.y13d{bottom:490.588800px;}
.y1fd{bottom:491.093250px;}
.y2ba{bottom:494.261550px;}
.y2ea{bottom:494.273550px;}
.y89{bottom:495.437850px;}
.y175{bottom:496.362600px;}
.y20{bottom:496.765800px;}
.y119{bottom:501.115800px;}
.y1d8{bottom:501.508350px;}
.y1d9{bottom:501.511950px;}
.y1bf{bottom:503.924250px;}
.y64{bottom:505.326900px;}
.y95{bottom:505.814400px;}
.y19c{bottom:505.816050px;}
.y28a{bottom:506.486100px;}
.y45{bottom:507.058800px;}
.ye2{bottom:509.025150px;}
.y154{bottom:509.203050px;}
.yb9{bottom:509.218800px;}
.yfb{bottom:509.279550px;}
.y13c{bottom:510.843300px;}
.y1fc{bottom:511.347750px;}
.y2b9{bottom:511.514550px;}
.y2e9{bottom:511.526550px;}
.y248{bottom:512.884350px;}
.y88{bottom:515.692350px;}
.y1d7{bottom:520.858350px;}
.y174{bottom:521.054100px;}
.y118{bottom:521.370300px;}
.y1be{bottom:522.243750px;}
.y289{bottom:523.739100px;}
.y94{bottom:524.268150px;}
.y19b{bottom:525.316050px;}
.y63{bottom:525.581400px;}
.y2b8{bottom:528.767550px;}
.y2e8{bottom:528.779550px;}
.ye1{bottom:529.279650px;}
.y153{bottom:529.457550px;}
.y1e{bottom:531.070950px;}
.y13b{bottom:531.097800px;}
.y1fb{bottom:531.602250px;}
.y247{bottom:533.138850px;}
.y87{bottom:535.946850px;}
.y1bd{bottom:540.563250px;}
.y288{bottom:540.992100px;}
.y117{bottom:541.624800px;}
.y93{bottom:542.721900px;}
.y44{bottom:543.511500px;}
.y199{bottom:545.622600px;}
.y19a{bottom:545.626050px;}
.y1b{bottom:545.752800px;}
.y2b7{bottom:546.020550px;}
.y2e7{bottom:546.023550px;}
.y1f{bottom:546.070950px;}
.y1d{bottom:547.570950px;}
.y173{bottom:548.911200px;}
.ye0{bottom:549.534150px;}
.y152{bottom:549.712050px;}
.yfa{bottom:549.727800px;}
.y1d6{bottom:551.343300px;}
.y13a{bottom:551.352300px;}
.y1fa{bottom:551.856750px;}
.y246{bottom:553.393350px;}
.y62{bottom:554.340900px;}
.y287{bottom:558.245100px;}
.y1bc{bottom:558.882750px;}
.y92{bottom:561.175650px;}
.y116{bottom:561.879300px;}
.y2b6{bottom:563.273550px;}
.y2e6{bottom:563.276550px;}
.y1a{bottom:563.752800px;}
.y1c{bottom:564.070950px;}
.y86{bottom:564.706350px;}
.y198{bottom:564.972600px;}
.ydf{bottom:569.788650px;}
.yb8{bottom:569.966550px;}
.y1d5{bottom:571.597800px;}
.y139{bottom:571.606800px;}
.y1f9{bottom:572.111250px;}
.y61{bottom:574.595400px;}
.y286{bottom:575.498100px;}
.y91{bottom:579.629400px;}
.y245{bottom:579.633300px;}
.y2b5{bottom:580.526550px;}
.y2e5{bottom:580.529550px;}
.y115{bottom:582.133800px;}
.y1bb{bottom:583.385250px;}
.y197{bottom:584.319000px;}
.y172{bottom:584.360100px;}
.y85{bottom:584.960850px;}
.y19{bottom:589.004700px;}
.yde{bottom:590.043150px;}
.yb7{bottom:590.221050px;}
.y1d4{bottom:591.852300px;}
.y138{bottom:591.861300px;}
.y1f8{bottom:592.365750px;}
.y285{bottom:592.733100px;}
.y60{bottom:594.849900px;}
.y2e4{bottom:597.773550px;}
.y2b4{bottom:597.779550px;}
.y90{bottom:598.083150px;}
.y244{bottom:599.133300px;}
.y114{bottom:602.388300px;}
.y195{bottom:603.661950px;}
.y196{bottom:603.665550px;}
.y171{bottom:604.614600px;}
.y84{bottom:605.215350px;}
.y284{bottom:609.986100px;}
.yb6{bottom:610.475550px;}
.y1ba{bottom:611.242500px;}
.y1d3{bottom:612.106800px;}
.y137{bottom:612.115800px;}
.y1f7{bottom:612.620250px;}
.y2b3{bottom:615.023550px;}
.y2e3{bottom:615.026550px;}
.y243{bottom:619.443300px;}
.y113{bottom:622.642800px;}
.y193{bottom:623.008350px;}
.y194{bottom:623.011950px;}
.y5f{bottom:623.609400px;}
.y170{bottom:624.855600px;}
.y283{bottom:627.239100px;}
.yb5{bottom:630.730050px;}
.y2b2{bottom:632.276550px;}
.y2e2{bottom:632.279550px;}
.y1d2{bottom:632.361300px;}
.y136{bottom:632.370300px;}
.y18{bottom:632.634000px;}
.y1f6{bottom:632.874750px;}
.y83{bottom:633.974850px;}
.ydd{bottom:634.117200px;}
.y242{bottom:638.793300px;}
.y192{bottom:642.358350px;}
.y112{bottom:642.897300px;}
.y5e{bottom:643.863900px;}
.y282{bottom:644.492100px;}
.y43{bottom:644.650200px;}
.y16f{bottom:645.110100px;}
.y1b9{bottom:646.695900px;}
.y2e1{bottom:649.502550px;}
.y2b1{bottom:649.529550px;}
.yb4{bottom:650.984550px;}
.ydc{bottom:652.436700px;}
.y1d1{bottom:652.615800px;}
.y135{bottom:652.624800px;}
.y82{bottom:654.229350px;}
.y17{bottom:654.886050px;}
.y8f{bottom:657.033150px;}
.y240{bottom:658.139550px;}
.y241{bottom:658.139850px;}
.y281{bottom:661.745100px;}
.y111{bottom:663.151800px;}
.y5d{bottom:664.118400px;}
.y16e{bottom:665.364600px;}
.y2e0{bottom:666.755550px;}
.y2b0{bottom:666.767550px;}
.y1b8{bottom:666.950400px;}
.ydb{bottom:670.756200px;}
.yb3{bottom:671.239050px;}
.y42{bottom:672.400200px;}
.y191{bottom:672.870300px;}
.y134{bottom:672.879300px;}
.y16{bottom:672.886050px;}
.y1f5{bottom:673.374750px;}
.y81{bottom:674.483850px;}
.y23f{bottom:677.489550px;}
.y8e{bottom:678.033150px;}
.y280{bottom:678.998100px;}
.y2df{bottom:684.008550px;}
.y2af{bottom:684.020550px;}
.y16d{bottom:685.619100px;}
.yda{bottom:689.075700px;}
.y15{bottom:690.886050px;}
.yb2{bottom:691.493550px;}
.y5c{bottom:692.877900px;}
.y190{bottom:693.124800px;}
.y133{bottom:693.133800px;}
.y1b7{bottom:699.193950px;}
.y41{bottom:700.150200px;}
.y2de{bottom:701.261550px;}
.y2ae{bottom:701.273550px;}
.y110{bottom:702.014550px;}
.y23e{bottom:702.029550px;}
.y80{bottom:703.243350px;}
.y14{bottom:708.886050px;}
.yb1{bottom:711.748050px;}
.y5b{bottom:713.132400px;}
.y27f{bottom:713.256000px;}
.y18f{bottom:713.379300px;}
.y132{bottom:713.388300px;}
.yd9{bottom:713.578200px;}
.y2dd{bottom:718.514550px;}
.y2ad{bottom:718.526550px;}
.y1b6{bottom:718.693950px;}
.y2{bottom:721.276500px;}
.y23d{bottom:721.529550px;}
.y7f{bottom:723.497850px;}
.y13{bottom:726.886050px;}
.y16c{bottom:729.691800px;}
.yb0{bottom:732.002550px;}
.y18e{bottom:733.633800px;}
.y131{bottom:733.642800px;}
.y2dc{bottom:735.767550px;}
.y2ac{bottom:735.779550px;}
.y1b5{bottom:738.193950px;}
.y8d{bottom:738.626250px;}
.y40{bottom:740.656050px;}
.y23c{bottom:741.029550px;}
.yd8{bottom:741.435450px;}
.y7e{bottom:743.752350px;}
.y12{bottom:744.886050px;}
.y1f4{bottom:747.822300px;}
.y16b{bottom:748.011300px;}
.yaf{bottom:752.257050px;}
.y2ab{bottom:753.017850px;}
.y2db{bottom:753.020550px;}
.y18d{bottom:753.888300px;}
.y130{bottom:753.897300px;}
.y1b3{bottom:758.496900px;}
.y1b4{bottom:758.503950px;}
.y59{bottom:760.882800px;}
.y7d{bottom:764.006850px;}
.y1f3{bottom:766.141800px;}
.y16a{bottom:766.330800px;}
.y8c{bottom:766.382250px;}
.y27e{bottom:767.512800px;}
.y2aa{bottom:770.270850px;}
.y2da{bottom:770.273550px;}
.yae{bottom:772.511550px;}
.y54{bottom:772.837800px;}
.y18c{bottom:774.142800px;}
.y12f{bottom:774.151800px;}
.y1{bottom:775.651500px;}
.yd7{bottom:776.886900px;}
.yc{bottom:777.429150px;}
.y1b2{bottom:777.846900px;}
.y58{bottom:778.239750px;}
.y1f2{bottom:784.461300px;}
.y169{bottom:784.650300px;}
.y27d{bottom:784.765800px;}
.y3f{bottom:785.656050px;}
.y2a9{bottom:787.523850px;}
.y2d9{bottom:787.526550px;}
.yad{bottom:792.766050px;}
.y7c{bottom:792.766350px;}
.ya{bottom:793.255650px;}
.y18b{bottom:794.397300px;}
.y57{bottom:795.596700px;}
.y1b1{bottom:797.189850px;}
.yd6{bottom:797.196900px;}
.y5a{bottom:800.131800px;}
.yb{bottom:801.481050px;}
.y27c{bottom:802.018800px;}
.y1f1{bottom:802.780800px;}
.y168{bottom:802.969800px;}
.y2a8{bottom:804.776850px;}
.y2d8{bottom:804.779550px;}
.yac{bottom:813.020550px;}
.y7b{bottom:813.020850px;}
.y12e{bottom:813.029550px;}
.y18a{bottom:814.651800px;}
.yd4{bottom:816.539850px;}
.yd5{bottom:816.543300px;}
.y27b{bottom:819.271800px;}
.y2d7{bottom:822.023100px;}
.y2a7{bottom:822.029850px;}
.y167{bottom:827.472300px;}
.yab{bottom:833.275050px;}
.y7a{bottom:833.275350px;}
.y1b0{bottom:835.886250px;}
.yd3{bottom:835.889850px;}
.y2d6{bottom:839.276100px;}
.y2a6{bottom:839.282850px;}
.y8b{bottom:850.379700px;}
.yaa{bottom:853.529550px;}
.y79{bottom:853.529850px;}
.yd2{bottom:855.236250px;}
.y166{bottom:855.329700px;}
.y2d5{bottom:856.529100px;}
.y2a5{bottom:856.535850px;}
.yd1{bottom:913.505850px;}
.y78{bottom:913.931100px;}
.h1e{height:22.549364px;}
.h1c{height:28.657500px;}
.h14{height:34.416000px;}
.h10{height:36.567000px;}
.h1a{height:38.394000px;}
.h1b{height:38.556000px;}
.hf{height:38.718000px;}
.h29{height:41.040000px;}
.hd{height:44.289000px;}
.he{height:44.982000px;}
.h22{height:46.170000px;}
.h2c{height:46.224000px;}
.h13{height:46.398000px;}
.hc{height:47.124000px;}
.h12{height:47.322000px;}
.h2d{height:47.529000px;}
.h2a{height:47.565000px;}
.h36{height:47.835000px;}
.h27{height:48.735000px;}
.h28{height:48.792000px;}
.h11{height:51.192000px;}
.h26{height:51.300000px;}
.h2b{height:51.360000px;}
.h19{height:51.408000px;}
.h20{height:53.865000px;}
.h33{height:53.883000px;}
.h21{height:53.928000px;}
.ha{height:53.978400px;}
.h2e{height:56.430000px;}
.h2f{height:56.490000px;}
.h35{height:56.496000px;}
.h30{height:56.922000px;}
.h31{height:58.702500px;}
.h32{height:58.738500px;}
.h34{height:58.756500px;}
.h17{height:59.808000px;}
.h25{height:61.560000px;}
.h16{height:61.689600px;}
.h18{height:62.118000px;}
.h7{height:62.809572px;}
.h23{height:66.690000px;}
.h3{height:68.326560px;}
.hb{height:68.352000px;}
.h4{height:68.697900px;}
.h1f{height:68.832000px;}
.h5{height:70.660824px;}
.h24{height:73.872000px;}
.h6{height:74.586672px;}
.h1d{height:96.007954px;}
.h15{height:100.800000px;}
.h2{height:131.507916px;}
.h1{height:921.000000px;}
.h0{height:921.045000px;}
.h8{height:926.929800px;}
.h9{height:927.000000px;}
.w3{width:42.253500px;}
.w1{width:616.500000px;}
.w0{width:616.530000px;}
.w2{width:616.534800px;}
.x0{left:0.000000px;}
.x24{left:23.385900px;}
.x21{left:29.505000px;}
.x22{left:31.214850px;}
.x1d{left:53.149650px;}
.x1a{left:56.390700px;}
.xa{left:57.643950px;}
.x4d{left:66.655200px;}
.x25{left:73.837650px;}
.x23{left:78.664650px;}
.x28{left:84.610950px;}
.x1{left:86.291550px;}
.x1f{left:104.173350px;}
.xd{left:110.076000px;}
.x20{left:112.677300px;}
.xe{left:114.601800px;}
.xb{left:119.997600px;}
.x14{left:122.680650px;}
.xc{left:124.523400px;}
.x15{left:127.206450px;}
.x19{left:129.232050px;}
.x33{left:142.441050px;}
.x2c{left:146.692950px;}
.xf{left:150.951000px;}
.x10{left:155.476500px;}
.x47{left:159.448950px;}
.x52{left:172.204800px;}
.x40{left:176.456700px;}
.x11{left:179.004000px;}
.x16{left:180.396000px;}
.x12{left:183.529500px;}
.x17{left:184.921500px;}
.x3a{left:187.447650px;}
.x39{left:189.212700px;}
.x2d{left:193.464600px;}
.x38{left:197.716650px;}
.x3e{left:201.968550px;}
.x29{left:206.220450px;}
.x42{left:210.472500px;}
.x49{left:218.976450px;}
.x13{left:236.359500px;}
.x2a{left:244.488300px;}
.x18{left:245.721000px;}
.x4c{left:248.740200px;}
.x53{left:252.992250px;}
.x6{left:257.986500px;}
.x2{left:260.185500px;}
.x2e{left:261.496050px;}
.x7{left:266.317500px;}
.x3{left:268.516500px;}
.x4f{left:270.000300px;}
.x4a{left:274.252050px;}
.x43{left:278.503950px;}
.x37{left:282.756000px;}
.x3b{left:291.259950px;}
.x45{left:295.511850px;}
.x31{left:299.763900px;}
.x48{left:304.015800px;}
.x3f{left:308.267700px;}
.x2f{left:329.527650px;}
.x2b{left:355.039500px;}
.x32{left:359.291400px;}
.x44{left:363.543300px;}
.x50{left:367.795500px;}
.x34{left:376.299300px;}
.x4b{left:384.803250px;}
.x26{left:393.307200px;}
.x46{left:401.811150px;}
.x41{left:414.567000px;}
.x35{left:418.818900px;}
.x27{left:423.070950px;}
.x4{left:427.447500px;}
.x5{left:435.777000px;}
.x54{left:444.330750px;}
.x3c{left:448.582650px;}
.x1e{left:460.311150px;}
.x3d{left:461.338650px;}
.x30{left:469.842600px;}
.x4e{left:482.598600px;}
.x8{left:492.927000px;}
.x9{left:501.258000px;}
.x51{left:525.118350px;}
.x36{left:529.370100px;}
.x1c{left:545.644500px;}
.x1b{left:549.168000px;}
@media print{
.v2{vertical-align:-18.648000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.664000pt;}
.ls70{letter-spacing:-4.848000pt;}
.ls71{letter-spacing:-4.800000pt;}
.ls9d{letter-spacing:-4.464000pt;}
.ls98{letter-spacing:-4.272000pt;}
.ls81{letter-spacing:-4.160000pt;}
.ls4f{letter-spacing:-4.106667pt;}
.ls5{letter-spacing:-3.949184pt;}
.ls88{letter-spacing:-3.680000pt;}
.ls0{letter-spacing:-3.633248pt;}
.ls53{letter-spacing:-3.626667pt;}
.ls74{letter-spacing:-3.466667pt;}
.ls76{letter-spacing:-3.360000pt;}
.ls3{letter-spacing:-3.317312pt;}
.ls8d{letter-spacing:-3.264000pt;}
.ls9{letter-spacing:-3.218288pt;}
.ls86{letter-spacing:-3.200000pt;}
.ls48{letter-spacing:-3.093333pt;}
.lsb{letter-spacing:-3.053248pt;}
.ls8e{letter-spacing:-3.024000pt;}
.ls7a{letter-spacing:-2.986667pt;}
.ls5c{letter-spacing:-2.933333pt;}
.ls2{letter-spacing:-2.843413pt;}
.ls8c{letter-spacing:-2.688000pt;}
.ls77{letter-spacing:-2.133333pt;}
.ls27{letter-spacing:-1.877333pt;}
.ls89{letter-spacing:-1.706667pt;}
.ls41{letter-spacing:-1.624000pt;}
.ls29{letter-spacing:-1.568000pt;}
.ls66{letter-spacing:-1.546667pt;}
.ls64{letter-spacing:-1.440000pt;}
.ls57{letter-spacing:-1.386667pt;}
.ls7b{letter-spacing:-1.280000pt;}
.lsa2{letter-spacing:-1.248000pt;}
.ls61{letter-spacing:-1.232000pt;}
.ls79{letter-spacing:-1.226667pt;}
.lsa1{letter-spacing:-1.200000pt;}
.ls6b{letter-spacing:-1.176000pt;}
.ls75{letter-spacing:-1.173333pt;}
.ls2a{letter-spacing:-1.120000pt;}
.ls34{letter-spacing:-1.114667pt;}
.ls96{letter-spacing:-1.104000pt;}
.ls84{letter-spacing:-1.066667pt;}
.ls4d{letter-spacing:-1.013333pt;}
.ls7d{letter-spacing:-0.962667pt;}
.ls44{letter-spacing:-0.960000pt;}
.ls2d{letter-spacing:-0.952000pt;}
.ls82{letter-spacing:-0.912000pt;}
.ls43{letter-spacing:-0.906667pt;}
.ls21{letter-spacing:-0.896000pt;}
.ls5e{letter-spacing:-0.864000pt;}
.ls58{letter-spacing:-0.853333pt;}
.ls60{letter-spacing:-0.840000pt;}
.lsc{letter-spacing:-0.825200pt;}
.ls97{letter-spacing:-0.816000pt;}
.ls4a{letter-spacing:-0.800000pt;}
.ls42{letter-spacing:-0.784000pt;}
.ls99{letter-spacing:-0.768000pt;}
.ls6e{letter-spacing:-0.762667pt;}
.ls47{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.742683pt;}
.ls67{letter-spacing:-0.728000pt;}
.ls9f{letter-spacing:-0.720000pt;}
.ls4b{letter-spacing:-0.693333pt;}
.ls3e{letter-spacing:-0.672000pt;}
.ls33{letter-spacing:-0.658667pt;}
.ls8a{letter-spacing:-0.645333pt;}
.ls5d{letter-spacing:-0.640000pt;}
.ls7e{letter-spacing:-0.624000pt;}
.ls22{letter-spacing:-0.618667pt;}
.ls62{letter-spacing:-0.616000pt;}
.ls5b{letter-spacing:-0.586667pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls69{letter-spacing:-0.560000pt;}
.ls45{letter-spacing:-0.533333pt;}
.ls26{letter-spacing:-0.530409pt;}
.ls17{letter-spacing:-0.528000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls28{letter-spacing:-0.504000pt;}
.ls59{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.469333pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls73{letter-spacing:-0.432000pt;}
.ls65{letter-spacing:-0.426667pt;}
.ls31{letter-spacing:-0.392000pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls52{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.341333pt;}
.ls10{letter-spacing:-0.339512pt;}
.ls20{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.330081pt;}
.ls54{letter-spacing:-0.320000pt;}
.lsa3{letter-spacing:-0.288000pt;}
.ls63{letter-spacing:-0.280000pt;}
.ls50{letter-spacing:-0.266667pt;}
.ls85{letter-spacing:-0.240000pt;}
.ls68{letter-spacing:-0.224000pt;}
.ls5a{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls95{letter-spacing:-0.176000pt;}
.ls36{letter-spacing:-0.168000pt;}
.lsf{letter-spacing:-0.165041pt;}
.ls51{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.157967pt;}
.ls9e{letter-spacing:-0.144000pt;}
.ls25{letter-spacing:-0.112000pt;}
.ls49{letter-spacing:-0.106667pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.085333pt;}
.lse{letter-spacing:-0.082520pt;}
.ls24{letter-spacing:-0.077333pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls2b{letter-spacing:-0.056000pt;}
.ls46{letter-spacing:-0.053333pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:-0.042667pt;}
.lsa0{letter-spacing:-0.008000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.021333pt;}
.ls7f{letter-spacing:0.048000pt;}
.ls78{letter-spacing:0.053333pt;}
.ls38{letter-spacing:0.056000pt;}
.ls94{letter-spacing:0.096000pt;}
.ls72{letter-spacing:0.106667pt;}
.ls39{letter-spacing:0.112000pt;}
.ls83{letter-spacing:0.144000pt;}
.ls30{letter-spacing:0.168000pt;}
.ls6c{letter-spacing:0.190400pt;}
.ls40{letter-spacing:0.224000pt;}
.ls8b{letter-spacing:0.240000pt;}
.ls6f{letter-spacing:0.265067pt;}
.ls4c{letter-spacing:0.266667pt;}
.ls3b{letter-spacing:0.280000pt;}
.lsa8{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.293333pt;}
.ls4e{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.330081pt;}
.ls2c{letter-spacing:0.336000pt;}
.ls92{letter-spacing:0.384000pt;}
.ls35{letter-spacing:0.392000pt;}
.lsa{letter-spacing:0.412601pt;}
.ls7c{letter-spacing:0.426667pt;}
.ls90{letter-spacing:0.432000pt;}
.ls37{letter-spacing:0.448000pt;}
.ls80{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.495122pt;}
.ls2e{letter-spacing:0.504000pt;}
.ls9b{letter-spacing:0.528000pt;}
.ls3d{letter-spacing:0.533333pt;}
.ls5f{letter-spacing:0.560000pt;}
.ls9c{letter-spacing:0.576000pt;}
.ls3f{letter-spacing:0.616000pt;}
.ls91{letter-spacing:0.624000pt;}
.ls32{letter-spacing:0.672000pt;}
.ls3a{letter-spacing:0.728000pt;}
.ls6d{letter-spacing:0.784000pt;}
.ls87{letter-spacing:0.864000pt;}
.ls11{letter-spacing:0.895936pt;}
.ls55{letter-spacing:0.896000pt;}
.ls93{letter-spacing:0.912000pt;}
.ls6a{letter-spacing:0.952000pt;}
.ls2f{letter-spacing:1.008000pt;}
.ls12{letter-spacing:3.772352pt;}
.ls56{letter-spacing:42.293333pt;}
.lsa5{letter-spacing:79.797333pt;}
.lsa7{letter-spacing:79.797867pt;}
.lsa4{letter-spacing:79.799467pt;}
.ls9a{letter-spacing:79.812800pt;}
.lsa6{letter-spacing:79.845333pt;}
.ls8f{letter-spacing:79.845867pt;}
.ws3{word-spacing:-39.333899pt;}
.ws1{word-spacing:-36.648453pt;}
.ws2{word-spacing:-36.174555pt;}
.ws0{word-spacing:-35.858619pt;}
.ws4{word-spacing:-35.542683pt;}
.ws5{word-spacing:-21.125122pt;}
.wsb{word-spacing:-20.547480pt;}
.wsc{word-spacing:-20.464959pt;}
.ws6{word-spacing:-20.299919pt;}
.wsa{word-spacing:-19.887317pt;}
.ws9{word-spacing:-19.804800pt;}
.wse{word-spacing:-19.541333pt;}
.ws8{word-spacing:-17.576752pt;}
.ws7{word-spacing:-17.411712pt;}
.ws39{word-spacing:-15.738667pt;}
.ws10{word-spacing:-14.400000pt;}
.ws139{word-spacing:-13.160000pt;}
.wsb4{word-spacing:-13.104000pt;}
.ws7c{word-spacing:-12.992000pt;}
.ws3c{word-spacing:-12.965333pt;}
.ws13b{word-spacing:-12.936000pt;}
.ws36{word-spacing:-12.880000pt;}
.ws7a{word-spacing:-12.824000pt;}
.ws18c{word-spacing:-12.789333pt;}
.ws46{word-spacing:-12.768000pt;}
.ws2a{word-spacing:-12.712000pt;}
.wsb9{word-spacing:-12.672000pt;}
.ws13a{word-spacing:-12.656000pt;}
.ws56{word-spacing:-12.640000pt;}
.wsb3{word-spacing:-12.613333pt;}
.wsd2{word-spacing:-12.600000pt;}
.ws123{word-spacing:-12.586667pt;}
.ws143{word-spacing:-12.544000pt;}
.wsf6{word-spacing:-12.533333pt;}
.ws94{word-spacing:-12.488000pt;}
.wsb5{word-spacing:-12.432000pt;}
.ws53{word-spacing:-12.426667pt;}
.ws35{word-spacing:-12.376000pt;}
.ws50{word-spacing:-12.373333pt;}
.ws16a{word-spacing:-12.320000pt;}
.ws89{word-spacing:-12.264000pt;}
.ws49{word-spacing:-12.213333pt;}
.ws7b{word-spacing:-12.208000pt;}
.wse2{word-spacing:-12.160000pt;}
.ws45{word-spacing:-12.152000pt;}
.ws51{word-spacing:-12.106667pt;}
.ws88{word-spacing:-12.096000pt;}
.ws4b{word-spacing:-12.053333pt;}
.ws95{word-spacing:-12.040000pt;}
.ws4e{word-spacing:-12.000000pt;}
.ws37{word-spacing:-11.984000pt;}
.ws5a{word-spacing:-11.946667pt;}
.wsd3{word-spacing:-11.928000pt;}
.ws70{word-spacing:-11.893333pt;}
.ws2d{word-spacing:-11.872000pt;}
.ws59{word-spacing:-11.840000pt;}
.ws60{word-spacing:-11.786667pt;}
.wsf5{word-spacing:-11.733333pt;}
.ws7d{word-spacing:-11.704000pt;}
.ws69{word-spacing:-11.680000pt;}
.ws6c{word-spacing:-11.626667pt;}
.ws34{word-spacing:-11.616000pt;}
.ws2c{word-spacing:-11.592000pt;}
.ws4a{word-spacing:-11.573333pt;}
.ws72{word-spacing:-11.520000pt;}
.ws156{word-spacing:-11.472000pt;}
.wsd9{word-spacing:-11.466667pt;}
.ws4f{word-spacing:-11.413333pt;}
.ws28{word-spacing:-11.376000pt;}
.ws58{word-spacing:-11.360000pt;}
.ws47{word-spacing:-11.306667pt;}
.ws48{word-spacing:-11.253333pt;}
.ws18b{word-spacing:-11.232000pt;}
.ws52{word-spacing:-11.200000pt;}
.ws4c{word-spacing:-11.146667pt;}
.ws2b{word-spacing:-11.144000pt;}
.ws178{word-spacing:-11.136000pt;}
.wse8{word-spacing:-11.093333pt;}
.ws13c{word-spacing:-11.040000pt;}
.ws6b{word-spacing:-10.986667pt;}
.ws3a{word-spacing:-10.944000pt;}
.wsdb{word-spacing:-10.933333pt;}
.ws17c{word-spacing:-10.896000pt;}
.wse5{word-spacing:-10.880000pt;}
.ws6a{word-spacing:-10.826667pt;}
.ws15a{word-spacing:-10.720000pt;}
.ws122{word-spacing:-10.666667pt;}
.ws112{word-spacing:-10.656000pt;}
.ws44{word-spacing:-10.608000pt;}
.ws164{word-spacing:-10.560000pt;}
.ws111{word-spacing:-10.512000pt;}
.wsfd{word-spacing:-10.416000pt;}
.ws15b{word-spacing:-10.400000pt;}
.ws10e{word-spacing:-10.368000pt;}
.ws76{word-spacing:-10.320000pt;}
.ws18f{word-spacing:-10.224000pt;}
.wsd1{word-spacing:-10.176000pt;}
.ws3b{word-spacing:-10.082667pt;}
.ws11d{word-spacing:-10.080000pt;}
.ws187{word-spacing:-9.984000pt;}
.wse1{word-spacing:-9.973333pt;}
.wsb2{word-spacing:-9.936000pt;}
.ws18d{word-spacing:-9.888000pt;}
.ws3d{word-spacing:-9.685333pt;}
.ws73{word-spacing:-9.173333pt;}
.wseb{word-spacing:-9.120000pt;}
.ws4d{word-spacing:-9.013333pt;}
.ws149{word-spacing:-8.906667pt;}
.wsde{word-spacing:-8.746667pt;}
.wsda{word-spacing:-8.640000pt;}
.ws5f{word-spacing:-8.480000pt;}
.ws159{word-spacing:-8.426667pt;}
.ws57{word-spacing:-8.000000pt;}
.ws18e{word-spacing:-6.720000pt;}
.ws19c{word-spacing:-6.528000pt;}
.wsbf{word-spacing:-5.760000pt;}
.ws27{word-spacing:-5.600000pt;}
.ws22{word-spacing:-4.608000pt;}
.ws24{word-spacing:-2.861333pt;}
.ws154{word-spacing:-2.800000pt;}
.ws142{word-spacing:-2.720000pt;}
.ws40{word-spacing:-2.576000pt;}
.ws63{word-spacing:-2.520000pt;}
.ws141{word-spacing:-2.453333pt;}
.ws118{word-spacing:-2.408000pt;}
.wsfa{word-spacing:-2.400000pt;}
.ws153{word-spacing:-2.296000pt;}
.wsa7{word-spacing:-2.240000pt;}
.ws13d{word-spacing:-2.184000pt;}
.ws21{word-spacing:-2.160000pt;}
.wsce{word-spacing:-2.128000pt;}
.ws20{word-spacing:-2.112000pt;}
.ws16c{word-spacing:-2.072000pt;}
.ws152{word-spacing:-2.016000pt;}
.ws13{word-spacing:-1.994667pt;}
.ws9e{word-spacing:-1.960000pt;}
.ws9a{word-spacing:-1.904000pt;}
.wsb6{word-spacing:-1.848000pt;}
.ws17{word-spacing:-1.824000pt;}
.ws42{word-spacing:-1.792000pt;}
.ws9c{word-spacing:-1.736000pt;}
.ws8c{word-spacing:-1.680000pt;}
.ws13f{word-spacing:-1.653333pt;}
.ws1f{word-spacing:-1.632000pt;}
.ws16b{word-spacing:-1.624000pt;}
.wsfb{word-spacing:-1.512000pt;}
.ws18{word-spacing:-1.488000pt;}
.wsb1{word-spacing:-1.456000pt;}
.wsa5{word-spacing:-1.400000pt;}
.wsa2{word-spacing:-1.288000pt;}
.ws62{word-spacing:-1.232000pt;}
.ws140{word-spacing:-1.226667pt;}
.ws136{word-spacing:-1.176000pt;}
.ws135{word-spacing:-1.120000pt;}
.wsf9{word-spacing:-1.066667pt;}
.wsf8{word-spacing:-1.064000pt;}
.ws11a{word-spacing:-1.008000pt;}
.wsd0{word-spacing:-0.952000pt;}
.ws114{word-spacing:-0.906667pt;}
.ws169{word-spacing:-0.896000pt;}
.wsa0{word-spacing:-0.840000pt;}
.ws1a0{word-spacing:-0.816000pt;}
.ws18a{word-spacing:-0.784000pt;}
.ws155{word-spacing:-0.746667pt;}
.wsac{word-spacing:-0.672000pt;}
.ws137{word-spacing:-0.616000pt;}
.ws1a1{word-spacing:-0.576000pt;}
.ws97{word-spacing:-0.560000pt;}
.ws196{word-spacing:-0.528000pt;}
.ws115{word-spacing:-0.448000pt;}
.wsa9{word-spacing:-0.392000pt;}
.ws19e{word-spacing:-0.384000pt;}
.ws32{word-spacing:-0.336000pt;}
.ws16{word-spacing:-0.293333pt;}
.ws1a2{word-spacing:-0.240000pt;}
.ws9f{word-spacing:-0.224000pt;}
.ws1a6{word-spacing:-0.192000pt;}
.ws38{word-spacing:-0.168000pt;}
.ws134{word-spacing:-0.144000pt;}
.ws19d{word-spacing:-0.113067pt;}
.wsab{word-spacing:-0.112000pt;}
.wsb8{word-spacing:-0.056000pt;}
.ws1a9{word-spacing:-0.048000pt;}
.wsf{word-spacing:-0.045333pt;}
.wsd{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.042667pt;}
.ws12{word-spacing:0.048000pt;}
.ws113{word-spacing:0.053333pt;}
.ws30{word-spacing:0.056000pt;}
.ws26{word-spacing:0.077333pt;}
.ws1d{word-spacing:0.085333pt;}
.ws19{word-spacing:0.096000pt;}
.ws68{word-spacing:0.106667pt;}
.ws31{word-spacing:0.112000pt;}
.ws1aa{word-spacing:0.144000pt;}
.ws99{word-spacing:0.168000pt;}
.ws116{word-spacing:0.192000pt;}
.ws8a{word-spacing:0.213333pt;}
.ws61{word-spacing:0.224000pt;}
.wsfc{word-spacing:0.280000pt;}
.ws197{word-spacing:0.288000pt;}
.ws1e{word-spacing:0.336000pt;}
.ws11{word-spacing:0.341333pt;}
.ws1c{word-spacing:0.384000pt;}
.wsae{word-spacing:0.392000pt;}
.ws25{word-spacing:0.448000pt;}
.wsbd{word-spacing:0.469333pt;}
.ws193{word-spacing:0.480000pt;}
.ws2f{word-spacing:0.504000pt;}
.ws1b{word-spacing:0.512000pt;}
.ws14{word-spacing:0.528000pt;}
.ws29{word-spacing:0.530409pt;}
.ws138{word-spacing:0.560000pt;}
.ws15{word-spacing:0.576000pt;}
.wsb7{word-spacing:0.616000pt;}
.ws19a{word-spacing:0.624000pt;}
.ws8b{word-spacing:0.640000pt;}
.ws66{word-spacing:0.672000pt;}
.ws167{word-spacing:0.693333pt;}
.ws1a8{word-spacing:0.720000pt;}
.wsa1{word-spacing:0.728000pt;}
.ws67{word-spacing:0.746667pt;}
.ws191{word-spacing:0.768000pt;}
.wsaf{word-spacing:0.784000pt;}
.ws23{word-spacing:0.896000pt;}
.ws1a5{word-spacing:0.912000pt;}
.ws33{word-spacing:0.952000pt;}
.ws117{word-spacing:0.962667pt;}
.ws92{word-spacing:1.008000pt;}
.ws192{word-spacing:1.056000pt;}
.ws91{word-spacing:1.064000pt;}
.ws12d{word-spacing:1.066667pt;}
.ws119{word-spacing:1.104000pt;}
.wsad{word-spacing:1.120000pt;}
.ws1ac{word-spacing:1.152000pt;}
.wscc{word-spacing:1.176000pt;}
.ws1ae{word-spacing:1.200000pt;}
.ws8d{word-spacing:1.232000pt;}
.ws3f{word-spacing:1.288000pt;}
.ws1a3{word-spacing:1.296000pt;}
.wsbb{word-spacing:1.344000pt;}
.ws90{word-spacing:1.400000pt;}
.wsa4{word-spacing:1.456000pt;}
.ws194{word-spacing:1.488000pt;}
.wsb0{word-spacing:1.512000pt;}
.ws195{word-spacing:1.536000pt;}
.ws41{word-spacing:1.568000pt;}
.ws1ad{word-spacing:1.584000pt;}
.ws65{word-spacing:1.624000pt;}
.ws1ab{word-spacing:1.632000pt;}
.wsa6{word-spacing:1.680000pt;}
.ws19f{word-spacing:1.728000pt;}
.ws8e{word-spacing:1.736000pt;}
.ws1a4{word-spacing:1.776000pt;}
.wsaa{word-spacing:1.792000pt;}
.wsa8{word-spacing:1.848000pt;}
.ws2e{word-spacing:1.877333pt;}
.wscf{word-spacing:1.904000pt;}
.ws96{word-spacing:1.960000pt;}
.ws1a7{word-spacing:1.968000pt;}
.wsa3{word-spacing:2.016000pt;}
.wsf7{word-spacing:2.072000pt;}
.ws19b{word-spacing:2.112000pt;}
.ws93{word-spacing:2.128000pt;}
.ws199{word-spacing:2.160000pt;}
.ws3e{word-spacing:2.184000pt;}
.ws43{word-spacing:2.240000pt;}
.ws9b{word-spacing:2.296000pt;}
.ws64{word-spacing:2.352000pt;}
.ws13e{word-spacing:2.408000pt;}
.ws12c{word-spacing:2.464000pt;}
.wsbc{word-spacing:2.520000pt;}
.ws168{word-spacing:2.576000pt;}
.ws98{word-spacing:2.632000pt;}
.ws8f{word-spacing:2.912000pt;}
.ws190{word-spacing:2.976000pt;}
.ws9d{word-spacing:3.080000pt;}
.ws198{word-spacing:3.120000pt;}
.wsba{word-spacing:3.248000pt;}
.ws11e{word-spacing:4.213333pt;}
.ws5e{word-spacing:4.266667pt;}
.wse6{word-spacing:4.432000pt;}
.ws163{word-spacing:4.533333pt;}
.ws126{word-spacing:4.693333pt;}
.ws129{word-spacing:4.960000pt;}
.wsec{word-spacing:5.013333pt;}
.ws107{word-spacing:5.600000pt;}
.ws14e{word-spacing:5.610667pt;}
.ws100{word-spacing:5.706667pt;}
.wsef{word-spacing:5.813333pt;}
.ws151{word-spacing:5.866667pt;}
.ws146{word-spacing:6.080000pt;}
.wsd6{word-spacing:6.293333pt;}
.ws15d{word-spacing:6.560000pt;}
.ws106{word-spacing:6.778667pt;}
.ws165{word-spacing:7.146667pt;}
.wsf4{word-spacing:7.680000pt;}
.ws83{word-spacing:7.893333pt;}
.wsf1{word-spacing:8.320000pt;}
.ws5c{word-spacing:8.592000pt;}
.ws101{word-spacing:9.440000pt;}
.ws147{word-spacing:9.445333pt;}
.ws157{word-spacing:9.866667pt;}
.wsf2{word-spacing:10.613333pt;}
.ws80{word-spacing:11.253333pt;}
.ws127{word-spacing:11.472000pt;}
.ws120{word-spacing:11.685333pt;}
.ws82{word-spacing:11.738667pt;}
.ws6f{word-spacing:12.106667pt;}
.wscb{word-spacing:12.144000pt;}
.ws87{word-spacing:12.160000pt;}
.ws103{word-spacing:13.066667pt;}
.ws12a{word-spacing:14.026667pt;}
.wsdc{word-spacing:14.826667pt;}
.wse3{word-spacing:15.946667pt;}
.ws7e{word-spacing:16.213333pt;}
.ws14d{word-spacing:16.533333pt;}
.wsed{word-spacing:16.800000pt;}
.wscd{word-spacing:16.944000pt;}
.ws86{word-spacing:17.066667pt;}
.ws125{word-spacing:17.653333pt;}
.ws6e{word-spacing:17.973333pt;}
.ws104{word-spacing:18.346667pt;}
.wsd7{word-spacing:20.213333pt;}
.wsff{word-spacing:20.853333pt;}
.ws144{word-spacing:22.880000pt;}
.ws15f{word-spacing:23.093333pt;}
.ws14b{word-spacing:25.920000pt;}
.ws6d{word-spacing:29.280000pt;}
.wsdd{word-spacing:29.440000pt;}
.ws15e{word-spacing:30.666667pt;}
.ws102{word-spacing:32.586667pt;}
.ws121{word-spacing:37.760000pt;}
.wsee{word-spacing:38.293333pt;}
.wsea{word-spacing:39.733333pt;}
.ws85{word-spacing:42.453333pt;}
.wse4{word-spacing:43.472000pt;}
.ws84{word-spacing:44.000000pt;}
.ws12b{word-spacing:45.653333pt;}
.ws14c{word-spacing:47.573333pt;}
.ws174{word-spacing:47.808000pt;}
.ws75{word-spacing:49.104000pt;}
.ws14a{word-spacing:49.973333pt;}
.wsf3{word-spacing:52.586667pt;}
.wsc5{word-spacing:53.376000pt;}
.wsd5{word-spacing:54.240000pt;}
.ws55{word-spacing:57.333333pt;}
.ws108{word-spacing:61.386667pt;}
.ws166{word-spacing:62.293333pt;}
.ws158{word-spacing:62.560000pt;}
.wsdf{word-spacing:62.992000pt;}
.ws177{word-spacing:66.720000pt;}
.wse0{word-spacing:66.885333pt;}
.wsc6{word-spacing:68.064000pt;}
.ws172{word-spacing:69.024000pt;}
.ws186{word-spacing:70.224000pt;}
.ws5d{word-spacing:72.426667pt;}
.ws162{word-spacing:75.893333pt;}
.ws175{word-spacing:76.560000pt;}
.ws11f{word-spacing:76.640000pt;}
.ws161{word-spacing:78.773333pt;}
.ws17f{word-spacing:80.304000pt;}
.wsd8{word-spacing:80.320000pt;}
.ws54{word-spacing:80.805333pt;}
.ws189{word-spacing:84.096000pt;}
.ws105{word-spacing:85.013333pt;}
.ws150{word-spacing:85.866667pt;}
.wsc7{word-spacing:86.068800pt;}
.ws182{word-spacing:88.704000pt;}
.ws16f{word-spacing:93.312000pt;}
.ws148{word-spacing:94.933333pt;}
.ws188{word-spacing:100.368000pt;}
.ws145{word-spacing:100.533333pt;}
.wsbe{word-spacing:102.672000pt;}
.ws183{word-spacing:107.520000pt;}
.ws185{word-spacing:108.048000pt;}
.ws170{word-spacing:108.960000pt;}
.ws11c{word-spacing:111.306667pt;}
.ws180{word-spacing:111.600000pt;}
.ws17b{word-spacing:111.984000pt;}
.ws173{word-spacing:112.176000pt;}
.ws17d{word-spacing:113.136000pt;}
.ws16d{word-spacing:114.384000pt;}
.ws179{word-spacing:116.400000pt;}
.ws5b{word-spacing:119.200000pt;}
.ws15c{word-spacing:121.333333pt;}
.wsc9{word-spacing:123.072000pt;}
.ws12f{word-spacing:127.104000pt;}
.wse9{word-spacing:131.093333pt;}
.ws10f{word-spacing:131.712000pt;}
.wsc8{word-spacing:132.192000pt;}
.wsca{word-spacing:134.592000pt;}
.ws14f{word-spacing:138.826667pt;}
.ws81{word-spacing:152.533333pt;}
.wsd4{word-spacing:156.592000pt;}
.ws128{word-spacing:162.720000pt;}
.ws7f{word-spacing:164.805333pt;}
.ws124{word-spacing:165.125333pt;}
.ws160{word-spacing:172.853333pt;}
.ws133{word-spacing:184.944000pt;}
.ws71{word-spacing:191.733333pt;}
.ws132{word-spacing:198.720000pt;}
.wsfe{word-spacing:208.426667pt;}
.ws10d{word-spacing:211.776000pt;}
.ws11b{word-spacing:220.053333pt;}
.ws79{word-spacing:230.592000pt;}
.wsc2{word-spacing:252.672000pt;}
.wsc3{word-spacing:259.536000pt;}
.wsc1{word-spacing:260.496000pt;}
.ws77{word-spacing:263.616000pt;}
.ws131{word-spacing:281.952000pt;}
.wse7{word-spacing:285.973333pt;}
.wsc0{word-spacing:297.936000pt;}
.ws130{word-spacing:320.928000pt;}
.wsc4{word-spacing:333.360000pt;}
.ws78{word-spacing:356.116800pt;}
.ws176{word-spacing:360.724800pt;}
.ws74{word-spacing:376.608000pt;}
.ws16e{word-spacing:386.496000pt;}
.ws110{word-spacing:408.772800pt;}
.wsf0{word-spacing:415.738667pt;}
.ws10a{word-spacing:426.000000pt;}
.ws184{word-spacing:428.788800pt;}
.ws181{word-spacing:429.364800pt;}
.ws171{word-spacing:429.460800pt;}
.ws17e{word-spacing:433.968000pt;}
.ws109{word-spacing:462.720000pt;}
.ws17a{word-spacing:465.216000pt;}
.ws10b{word-spacing:478.464000pt;}
.ws10c{word-spacing:488.976000pt;}
.ws12e{word-spacing:714.912000pt;}
._8{margin-left:-12.958476pt;}
._78{margin-left:-11.849461pt;}
._72{margin-left:-9.450835pt;}
._a{margin-left:-8.105429pt;}
._7{margin-left:-6.855616pt;}
._3{margin-left:-5.686829pt;}
._11{margin-left:-4.699892pt;}
._6{margin-left:-3.773464pt;}
._4{margin-left:-2.417708pt;}
._5{margin-left:-1.389455pt;}
._1{width:0.963153pt;}
._2{width:2.368231pt;}
._0{width:3.601958pt;}
._9{width:4.951216pt;}
._4f{width:12.144000pt;}
._b{width:13.197455pt;}
._2f{width:14.581212pt;}
._7f{width:17.128365pt;}
._89{width:19.192365pt;}
._43{width:20.245212pt;}
._25{width:21.226667pt;}
._5b{width:22.168365pt;}
._3f{width:23.653212pt;}
._3d{width:26.112000pt;}
._1e{width:27.120000pt;}
._45{width:28.320000pt;}
._2c{width:29.543757pt;}
._41{width:30.908847pt;}
._77{width:32.202667pt;}
._23{width:33.280000pt;}
._66{width:34.176000pt;}
._22{width:36.344000pt;}
._80{width:37.493333pt;}
._1f{width:38.628800pt;}
._20{width:40.656000pt;}
._21{width:41.552000pt;}
._86{width:43.200000pt;}
._1d{width:44.611733pt;}
._8a{width:47.511635pt;}
._73{width:48.536122pt;}
._16{width:49.965455pt;}
._63{width:53.745829pt;}
._39{width:55.093333pt;}
._44{width:56.206933pt;}
._5c{width:58.210133pt;}
._40{width:60.014933pt;}
._42{width:62.186133pt;}
._8d{width:63.648000pt;}
._3b{width:64.826808pt;}
._3e{width:65.994667pt;}
._31{width:70.139402pt;}
._5f{width:74.723041pt;}
._3a{width:78.560000pt;}
._7e{width:80.536365pt;}
._8c{width:88.224000pt;}
._91{width:92.252847pt;}
._46{width:94.963765pt;}
._68{width:97.525586pt;}
._4e{width:102.444010pt;}
._83{width:106.630063pt;}
._54{width:110.055757pt;}
._47{width:112.842910pt;}
._76{width:122.890667pt;}
._27{width:123.957333pt;}
._65{width:124.864000pt;}
._29{width:125.760000pt;}
._48{width:131.037455pt;}
._59{width:132.321741pt;}
._5d{width:133.546667pt;}
._53{width:138.616784pt;}
._32{width:141.233708pt;}
._55{width:143.088000pt;}
._52{width:145.488000pt;}
._1b{width:149.252983pt;}
._50{width:150.336000pt;}
._57{width:152.736000pt;}
._87{width:156.171402pt;}
._24{width:158.293333pt;}
._26{width:169.069455pt;}
._38{width:174.081741pt;}
._62{width:175.516355pt;}
._85{width:178.240000pt;}
._58{width:180.376784pt;}
._51{width:184.094259pt;}
._35{width:187.677455pt;}
._7a{width:191.132972pt;}
._79{width:192.586667pt;}
._5a{width:198.624000pt;}
._56{width:207.210910pt;}
._74{width:208.906667pt;}
._7d{width:210.158555pt;}
._75{width:213.968000pt;}
._64{width:226.560000pt;}
._7b{width:240.962788pt;}
._2b{width:244.646565pt;}
._7c{width:246.720000pt;}
._4c{width:257.935609pt;}
._34{width:259.392000pt;}
._12{width:263.789965pt;}
._49{width:271.392000pt;}
._36{width:274.512000pt;}
._4d{width:279.187676pt;}
._8e{width:281.340010pt;}
._4a{width:286.512000pt;}
._30{width:296.332618pt;}
._4b{width:308.832000pt;}
._2a{width:319.354667pt;}
._8b{width:326.191769pt;}
._61{width:344.216122pt;}
._67{width:345.907676pt;}
._8f{width:351.018302pt;}
._d{width:355.939749pt;}
._19{width:356.953714pt;}
._6f{width:367.817694pt;}
._1a{width:404.566920pt;}
._90{width:406.077455pt;}
._6e{width:418.170910pt;}
._33{width:428.352000pt;}
._92{width:440.733455pt;}
._6c{width:445.434910pt;}
._5e{width:450.590167pt;}
._37{width:471.642910pt;}
._6a{width:473.616000pt;}
._6d{width:476.016000pt;}
._69{width:480.621455pt;}
._70{width:499.338910pt;}
._71{width:500.577451pt;}
._6b{width:516.813455pt;}
._2d{width:528.847172pt;}
._13{width:536.145222pt;}
._28{width:553.048009pt;}
._e{width:575.101577pt;}
._81{width:681.536000pt;}
._3c{width:707.189333pt;}
._82{width:738.456122pt;}
._88{width:745.269333pt;}
._17{width:790.912365pt;}
._60{width:855.562667pt;}
._2e{width:944.064000pt;}
._15{width:960.950906pt;}
._84{width:1089.056000pt;}
._14{width:1155.044010pt;}
._18{width:1284.338302pt;}
._10{width:1330.381455pt;}
._f{width:1351.633463pt;}
._c{width:1493.834910pt;}
._1c{width:1606.797455pt;}
.fs17{font-size:0.533333pt;}
.fs12{font-size:27.916267pt;}
.fs16{font-size:39.200000pt;}
.fsc{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs15{font-size:50.666667pt;}
.fs14{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs5{font-size:67.200000pt;}
.fs13{font-size:69.333333pt;}
.fsf{font-size:74.666667pt;}
.fs4{font-size:75.446933pt;}
.fse{font-size:76.800000pt;}
.fs10{font-size:77.333333pt;}
.fs1{font-size:82.520000pt;}
.fs2{font-size:84.877867pt;}
.fs6{font-size:85.333333pt;}
.fs3{font-size:89.593600pt;}
.fs11{font-size:126.243200pt;}
.fsd{font-size:128.000000pt;}
.fs0{font-size:157.967467pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:4.131333pt;}
.y55{bottom:7.210400pt;}
.ya8{bottom:18.126000pt;}
.y56{bottom:19.479200pt;}
.y300{bottom:40.676933pt;}
.y2d4{bottom:40.687600pt;}
.y189{bottom:43.462000pt;}
.y260{bottom:48.390667pt;}
.y23b{bottom:49.089733pt;}
.y2a4{bottom:51.519200pt;}
.y1d0{bottom:54.798000pt;}
.y2ff{bottom:56.012933pt;}
.y2d3{bottom:56.023600pt;}
.y26b{bottom:56.672933pt;}
.y27a{bottom:57.484000pt;}
.yf9{bottom:58.342133pt;}
.y212{bottom:58.443333pt;}
.y188{bottom:58.798000pt;}
.y226{bottom:61.351600pt;}
.ya7{bottom:61.585467pt;}
.y11{bottom:62.362267pt;}
.y165{bottom:64.252133pt;}
.y25f{bottom:66.394667pt;}
.y8{bottom:66.833333pt;}
.y2a3{bottom:66.855200pt;}
.y23a{bottom:67.093733pt;}
.y77{bottom:69.303467pt;}
.y1cf{bottom:70.134000pt;}
.y2fe{bottom:71.348933pt;}
.y2d2{bottom:71.359600pt;}
.y279{bottom:72.820000pt;}
.y26a{bottom:74.676933pt;}
.yd0{bottom:74.839200pt;}
.y151{bottom:75.998933pt;}
.y10f{bottom:76.058933pt;}
.yf8{bottom:76.346133pt;}
.y211{bottom:76.447333pt;}
.y225{bottom:79.355600pt;}
.ya6{bottom:79.589467pt;}
.y10{bottom:80.362267pt;}
.y2a2{bottom:82.191200pt;}
.y53{bottom:84.321333pt;}
.y25e{bottom:84.398667pt;}
.y239{bottom:85.097733pt;}
.y12d{bottom:85.356267pt;}
.y1ce{bottom:85.470000pt;}
.y2d1{bottom:86.684933pt;}
.y76{bottom:87.307467pt;}
.y4b{bottom:87.921067pt;}
.y269{bottom:92.680933pt;}
.yce{bottom:92.889333pt;}
.ycf{bottom:92.892533pt;}
.y150{bottom:94.002933pt;}
.y10e{bottom:94.062933pt;}
.yf7{bottom:94.350133pt;}
.y210{bottom:94.451333pt;}
.y224{bottom:97.359600pt;}
.y2a1{bottom:97.527200pt;}
.ya5{bottom:97.593467pt;}
.y1f0{bottom:97.755867pt;}
.yf{bottom:98.362267pt;}
.y52{bottom:98.721333pt;}
.y278{bottom:99.496000pt;}
.y2d0{bottom:102.020933pt;}
.y25d{bottom:102.402667pt;}
.y238{bottom:103.101733pt;}
.y12c{bottom:103.360267pt;}
.y187{bottom:104.145467pt;}
.y75{bottom:105.311467pt;}
.ycc{bottom:110.086133pt;}
.ycd{bottom:110.089333pt;}
.y268{bottom:110.684933pt;}
.y164{bottom:110.781600pt;}
.y14f{bottom:112.006933pt;}
.y10d{bottom:112.066933pt;}
.yf6{bottom:112.354133pt;}
.y20f{bottom:112.455333pt;}
.y2a0{bottom:112.863200pt;}
.y51{bottom:113.121333pt;}
.ya4{bottom:115.597467pt;}
.y1ef{bottom:115.759867pt;}
.y277{bottom:115.780000pt;}
.ye{bottom:116.362267pt;}
.y2cf{bottom:117.356933pt;}
.y25c{bottom:120.406667pt;}
.y237{bottom:121.105733pt;}
.y12b{bottom:121.364267pt;}
.y186{bottom:122.149467pt;}
.y223{bottom:126.026267pt;}
.y29f{bottom:128.199200pt;}
.y267{bottom:128.688933pt;}
.y163{bottom:128.785600pt;}
.y14e{bottom:130.010933pt;}
.y10c{bottom:130.070933pt;}
.yf5{bottom:130.358133pt;}
.y20e{bottom:130.459333pt;}
.y74{bottom:130.875467pt;}
.ycb{bottom:131.899467pt;}
.y276{bottom:132.064000pt;}
.y2ce{bottom:132.692933pt;}
.ya3{bottom:133.601467pt;}
.y1ee{bottom:133.763867pt;}
.y1cd{bottom:134.650933pt;}
.y1af{bottom:136.426533pt;}
.y25b{bottom:138.410667pt;}
.y236{bottom:139.109733pt;}
.y12a{bottom:139.368267pt;}
.y185{bottom:140.153467pt;}
.yd{bottom:141.921333pt;}
.y222{bottom:143.359600pt;}
.y29e{bottom:143.535200pt;}
.y266{bottom:146.692933pt;}
.y162{bottom:146.789600pt;}
.y14d{bottom:148.014933pt;}
.y2fd{bottom:148.020933pt;}
.y2cd{bottom:148.026267pt;}
.y10b{bottom:148.074933pt;}
.y275{bottom:148.348000pt;}
.yf4{bottom:148.362133pt;}
.y20d{bottom:148.463333pt;}
.y73{bottom:148.879467pt;}
.yc9{bottom:149.949733pt;}
.yca{bottom:149.952800pt;}
.ya2{bottom:151.605467pt;}
.y1ed{bottom:151.767867pt;}
.y1cc{bottom:152.654933pt;}
.y1ae{bottom:154.430533pt;}
.y25a{bottom:156.414667pt;}
.y235{bottom:157.113733pt;}
.y129{bottom:157.372267pt;}
.y184{bottom:158.157467pt;}
.y29d{bottom:158.871200pt;}
.y50{bottom:160.818933pt;}
.y7{bottom:161.621333pt;}
.y2cc{bottom:163.354267pt;}
.y2fc{bottom:163.356933pt;}
.y274{bottom:164.632000pt;}
.y161{bottom:164.793600pt;}
.y14c{bottom:166.018933pt;}
.y221{bottom:166.026267pt;}
.y10a{bottom:166.078933pt;}
.y20c{bottom:166.467333pt;}
.y72{bottom:166.883467pt;}
.yc7{bottom:167.146533pt;}
.yc8{bottom:167.149733pt;}
.ya1{bottom:169.609467pt;}
.y1ec{bottom:169.771867pt;}
.y1cb{bottom:170.658933pt;}
.y1ad{bottom:172.434533pt;}
.y29c{bottom:174.207200pt;}
.y30{bottom:174.348667pt;}
.y259{bottom:174.418667pt;}
.y234{bottom:175.117733pt;}
.y4f{bottom:175.218933pt;}
.y128{bottom:175.376267pt;}
.y183{bottom:176.161467pt;}
.yf3{bottom:177.022667pt;}
.y2cb{bottom:178.690267pt;}
.y2fb{bottom:178.692933pt;}
.y273{bottom:180.916000pt;}
.y265{bottom:182.578933pt;}
.y160{bottom:182.797600pt;}
.y220{bottom:183.359600pt;}
.y14b{bottom:184.022933pt;}
.y109{bottom:184.082933pt;}
.y20b{bottom:184.471333pt;}
.y71{bottom:184.887467pt;}
.ya0{bottom:187.613467pt;}
.y2f{bottom:187.682000pt;}
.y1ca{bottom:188.662933pt;}
.y6{bottom:188.736000pt;}
.yc6{bottom:188.959867pt;}
.y29b{bottom:189.543200pt;}
.y1ac{bottom:190.438533pt;}
.y258{bottom:192.422667pt;}
.y127{bottom:193.380267pt;}
.y2fa{bottom:194.012933pt;}
.y2ca{bottom:194.026267pt;}
.y182{bottom:194.165467pt;}
.yf2{bottom:194.356000pt;}
.y4e{bottom:197.178000pt;}
.y272{bottom:197.200000pt;}
.y1eb{bottom:198.426533pt;}
.y233{bottom:198.445467pt;}
.y15f{bottom:200.797600pt;}
.y14a{bottom:202.026933pt;}
.y108{bottom:202.086933pt;}
.y20a{bottom:202.475333pt;}
.y29a{bottom:204.879200pt;}
.y9f{bottom:205.617467pt;}
.y21f{bottom:206.026267pt;}
.y1c9{bottom:206.666933pt;}
.yc4{bottom:207.010000pt;}
.yc5{bottom:207.013200pt;}
.y2e{bottom:207.751200pt;}
.y3e{bottom:208.124000pt;}
.y2f9{bottom:209.348933pt;}
.y2c9{bottom:209.356933pt;}
.y257{bottom:210.426667pt;}
.y70{bottom:210.451467pt;}
.y126{bottom:211.384267pt;}
.y4d{bottom:211.578000pt;}
.y181{bottom:212.157467pt;}
.yf0{bottom:212.403067pt;}
.yf1{bottom:212.409333pt;}
.y271{bottom:213.484000pt;}
.y1ea{bottom:215.759867pt;}
.y232{bottom:215.778800pt;}
.y4{bottom:215.848667pt;}
.y5{bottom:215.849333pt;}
.y15e{bottom:218.801600pt;}
.y1ab{bottom:219.105200pt;}
.y149{bottom:220.030933pt;}
.y107{bottom:220.090933pt;}
.y299{bottom:220.215200pt;}
.y209{bottom:220.479333pt;}
.y2d{bottom:221.084533pt;}
.y3d{bottom:221.457333pt;}
.y21e{bottom:223.359600pt;}
.y9e{bottom:223.621467pt;}
.yc3{bottom:224.210000pt;}
.y2f8{bottom:224.684933pt;}
.y2c8{bottom:224.692933pt;}
.y256{bottom:228.430667pt;}
.y6f{bottom:228.455467pt;}
.y125{bottom:229.388267pt;}
.yef{bottom:229.603067pt;}
.y270{bottom:229.768000pt;}
.y180{bottom:230.161467pt;}
.y231{bottom:233.112133pt;}
.y4c{bottom:233.537067pt;}
.y1e9{bottom:233.813200pt;}
.y298{bottom:235.551200pt;}
.y1aa{bottom:236.438533pt;}
.y264{bottom:236.576933pt;}
.y148{bottom:238.034933pt;}
.y106{bottom:238.094933pt;}
.y208{bottom:238.483333pt;}
.y2c7{bottom:239.975600pt;}
.y2f7{bottom:240.020933pt;}
.y2c{bottom:241.153867pt;}
.y3c{bottom:241.526533pt;}
.y9d{bottom:241.625467pt;}
.y3{bottom:242.962667pt;}
.y1c8{bottom:245.843733pt;}
.y21d{bottom:246.026267pt;}
.y26f{bottom:246.052000pt;}
.yee{bottom:246.083067pt;}
.y255{bottom:246.434667pt;}
.y6e{bottom:246.459467pt;}
.y124{bottom:247.392267pt;}
.y17f{bottom:248.165467pt;}
.y297{bottom:250.887200pt;}
.y1e8{bottom:251.013200pt;}
.y230{bottom:251.165467pt;}
.yc2{bottom:251.324933pt;}
.y15d{bottom:253.264933pt;}
.y1a9{bottom:253.771867pt;}
.y2b{bottom:254.487200pt;}
.y263{bottom:254.580933pt;}
.y3b{bottom:254.859867pt;}
.y2c6{bottom:255.311600pt;}
.y2f6{bottom:255.356933pt;}
.y147{bottom:256.038933pt;}
.y105{bottom:256.098933pt;}
.y207{bottom:256.487333pt;}
.y9c{bottom:259.629467pt;}
.y1c7{bottom:262.127733pt;}
.y26e{bottom:262.336000pt;}
.y21c{bottom:263.359600pt;}
.yec{bottom:264.133333pt;}
.yed{bottom:264.136400pt;}
.y254{bottom:264.438667pt;}
.y123{bottom:265.396267pt;}
.y17e{bottom:266.161467pt;}
.y296{bottom:266.217867pt;}
.y1e6{bottom:268.210000pt;}
.y1e7{bottom:268.213200pt;}
.y22f{bottom:268.359200pt;}
.yc1{bottom:269.328933pt;}
.y2c5{bottom:270.647600pt;}
.y2f5{bottom:270.692933pt;}
.y1a7{bottom:271.816400pt;}
.y1a8{bottom:271.819467pt;}
.y6d{bottom:272.023467pt;}
.y262{bottom:272.584933pt;}
.y146{bottom:274.042933pt;}
.y104{bottom:274.102933pt;}
.y206{bottom:274.491333pt;}
.y2a{bottom:274.556533pt;}
.y3a{bottom:274.929200pt;}
.y1c6{bottom:278.411733pt;}
.y26d{bottom:278.620000pt;}
.y21b{bottom:280.692933pt;}
.yeb{bottom:281.333333pt;}
.y295{bottom:281.553867pt;}
.y253{bottom:282.442667pt;}
.y122{bottom:283.400267pt;}
.y17d{bottom:284.165467pt;}
.y1e4{bottom:285.401067pt;}
.y1e5{bottom:285.410000pt;}
.y22d{bottom:285.556000pt;}
.y22e{bottom:285.559200pt;}
.y2c4{bottom:285.983600pt;}
.y2f4{bottom:286.023600pt;}
.y29{bottom:287.889867pt;}
.y39{bottom:288.262533pt;}
.y1a5{bottom:289.010000pt;}
.y1a6{bottom:289.016400pt;}
.y6c{bottom:290.027467pt;}
.y261{bottom:290.588933pt;}
.y145{bottom:292.046933pt;}
.y103{bottom:292.106933pt;}
.y205{bottom:292.495333pt;}
.y1c5{bottom:294.695733pt;}
.y9b{bottom:295.629467pt;}
.y294{bottom:296.879200pt;}
.y15c{bottom:297.924933pt;}
.yc0{bottom:298.000933pt;}
.y252{bottom:300.446667pt;}
.y2c3{bottom:301.319600pt;}
.y2f3{bottom:301.359600pt;}
.y121{bottom:301.404267pt;}
.y22c{bottom:302.756000pt;}
.y1a4{bottom:306.210000pt;}
.y1e3{bottom:307.214400pt;}
.y28{bottom:307.959067pt;}
.y6b{bottom:308.031467pt;}
.y38{bottom:308.331867pt;}
.yea{bottom:308.434800pt;}
.y21a{bottom:308.592933pt;}
.y144{bottom:310.050933pt;}
.y102{bottom:310.110933pt;}
.y204{bottom:310.499333pt;}
.y293{bottom:312.215200pt;}
.y26c{bottom:314.456800pt;}
.y15b{bottom:315.928933pt;}
.ybf{bottom:316.004933pt;}
.y1c4{bottom:316.475733pt;}
.y2c2{bottom:316.655600pt;}
.y2f2{bottom:316.666267pt;}
.y251{bottom:318.450667pt;}
.y120{bottom:319.408267pt;}
.y22b{bottom:319.952800pt;}
.y4a{bottom:320.605600pt;}
.y27{bottom:321.292400pt;}
.y37{bottom:321.665200pt;}
.y17c{bottom:323.347200pt;}
.y1a2{bottom:323.403733pt;}
.y1a3{bottom:323.410000pt;}
.y1e2{bottom:324.547733pt;}
.ye9{bottom:326.438800pt;}
.y219{bottom:326.596933pt;}
.y292{bottom:327.551200pt;}
.y143{bottom:328.054933pt;}
.y101{bottom:328.114933pt;}
.y203{bottom:328.503333pt;}
.y2c1{bottom:331.991600pt;}
.y2f1{bottom:332.002267pt;}
.y6a{bottom:333.595467pt;}
.y15a{bottom:333.932933pt;}
.ybe{bottom:334.008933pt;}
.y229{bottom:337.146533pt;}
.y22a{bottom:337.149600pt;}
.y11f{bottom:337.412267pt;}
.y17b{bottom:339.631200pt;}
.y1a1{bottom:340.603733pt;}
.y1c3{bottom:341.237733pt;}
.y26{bottom:341.361733pt;}
.y36{bottom:341.734400pt;}
.y250{bottom:341.778267pt;}
.y49{bottom:342.375200pt;}
.y1e1{bottom:342.601067pt;}
.y291{bottom:342.887200pt;}
.ye8{bottom:344.442800pt;}
.y218{bottom:344.600933pt;}
.y142{bottom:346.058933pt;}
.y100{bottom:346.118933pt;}
.y202{bottom:346.507333pt;}
.y2c0{bottom:347.327600pt;}
.y2f0{bottom:347.338267pt;}
.y9a{bottom:349.596800pt;}
.y69{bottom:351.599467pt;}
.y159{bottom:351.936933pt;}
.ybd{bottom:352.012933pt;}
.y228{bottom:354.346533pt;}
.y25{bottom:354.695067pt;}
.y35{bottom:355.067733pt;}
.y11e{bottom:355.416267pt;}
.y17a{bottom:355.915200pt;}
.y1a0{bottom:357.803733pt;}
.y290{bottom:358.212533pt;}
.y24f{bottom:359.111600pt;}
.y1e0{bottom:359.801067pt;}
.ye7{bottom:362.446800pt;}
.y217{bottom:362.604933pt;}
.y2bf{bottom:362.663600pt;}
.y2ef{bottom:362.674267pt;}
.y141{bottom:364.062933pt;}
.yff{bottom:364.122933pt;}
.y201{bottom:364.511333pt;}
.y68{bottom:369.603467pt;}
.y158{bottom:369.940933pt;}
.y227{bottom:371.543333pt;}
.y179{bottom:372.199200pt;}
.y1c2{bottom:372.747867pt;}
.y11d{bottom:373.420267pt;}
.y28f{bottom:373.548533pt;}
.y24{bottom:374.764400pt;}
.y48{bottom:374.777600pt;}
.y34{bottom:375.137067pt;}
.y1df{bottom:377.001067pt;}
.y24d{bottom:377.158667pt;}
.y24e{bottom:377.164933pt;}
.y2be{bottom:377.999600pt;}
.y2ee{bottom:378.010267pt;}
.ye6{bottom:380.450800pt;}
.y216{bottom:380.608933pt;}
.ybc{bottom:380.684933pt;}
.y140{bottom:382.066933pt;}
.yfe{bottom:382.126933pt;}
.y200{bottom:382.515333pt;}
.y9{bottom:382.618667pt;}
.y99{bottom:383.999467pt;}
.y19f{bottom:384.945333pt;}
.y67{bottom:387.607467pt;}
.y157{bottom:387.944933pt;}
.y23{bottom:388.097733pt;}
.y33{bottom:388.470400pt;}
.y178{bottom:388.483200pt;}
.y28e{bottom:388.884533pt;}
.y1c1{bottom:390.751867pt;}
.y11c{bottom:391.424267pt;}
.y2bd{bottom:393.335600pt;}
.y2ed{bottom:393.346267pt;}
.y1dd{bottom:394.194667pt;}
.y1de{bottom:394.197867pt;}
.y24c{bottom:394.358667pt;}
.y47{bottom:396.547067pt;}
.ye5{bottom:398.454800pt;}
.y215{bottom:398.612933pt;}
.ybb{bottom:398.688933pt;}
.y13f{bottom:400.070933pt;}
.yfd{bottom:400.130933pt;}
.y98{bottom:400.402800pt;}
.y1ff{bottom:400.519333pt;}
.y19e{bottom:402.949333pt;}
.y28d{bottom:404.220533pt;}
.y177{bottom:404.767200pt;}
.y156{bottom:405.948933pt;}
.y8a{bottom:407.265200pt;}
.y22{bottom:408.166933pt;}
.y32{bottom:408.539733pt;}
.y2bc{bottom:408.671600pt;}
.y2ec{bottom:408.682267pt;}
.y1c0{bottom:408.755867pt;}
.y11b{bottom:409.428267pt;}
.y1db{bottom:411.388400pt;}
.y1dc{bottom:411.394667pt;}
.y24a{bottom:411.555467pt;}
.y24b{bottom:411.558667pt;}
.y66{bottom:413.171467pt;}
.ye4{bottom:416.458800pt;}
.y214{bottom:416.616933pt;}
.yba{bottom:416.692933pt;}
.y97{bottom:416.806133pt;}
.y13e{bottom:418.074933pt;}
.yfc{bottom:418.134933pt;}
.y1fe{bottom:418.523333pt;}
.y176{bottom:419.431200pt;}
.y28c{bottom:419.537867pt;}
.y19d{bottom:420.953333pt;}
.y21{bottom:421.500267pt;}
.y31{bottom:421.873067pt;}
.y155{bottom:423.952933pt;}
.y2bb{bottom:424.007600pt;}
.y2eb{bottom:424.018267pt;}
.y11a{bottom:427.432267pt;}
.y1da{bottom:428.588400pt;}
.y249{bottom:428.755467pt;}
.y46{bottom:428.949467pt;}
.y65{bottom:431.175467pt;}
.y96{bottom:433.209467pt;}
.ye3{bottom:434.462800pt;}
.y213{bottom:434.620933pt;}
.y28b{bottom:434.873867pt;}
.y13d{bottom:436.078933pt;}
.y1fd{bottom:436.527333pt;}
.y2ba{bottom:439.343600pt;}
.y2ea{bottom:439.354267pt;}
.y89{bottom:440.389200pt;}
.y175{bottom:441.211200pt;}
.y20{bottom:441.569600pt;}
.y119{bottom:445.436267pt;}
.y1d8{bottom:445.785200pt;}
.y1d9{bottom:445.788400pt;}
.y1bf{bottom:447.932667pt;}
.y64{bottom:449.179467pt;}
.y95{bottom:449.612800pt;}
.y19c{bottom:449.614267pt;}
.y28a{bottom:450.209867pt;}
.y45{bottom:450.718933pt;}
.ye2{bottom:452.466800pt;}
.y154{bottom:452.624933pt;}
.yb9{bottom:452.638933pt;}
.yfb{bottom:452.692933pt;}
.y13c{bottom:454.082933pt;}
.y1fc{bottom:454.531333pt;}
.y2b9{bottom:454.679600pt;}
.y2e9{bottom:454.690267pt;}
.y248{bottom:455.897200pt;}
.y88{bottom:458.393200pt;}
.y1d7{bottom:462.985200pt;}
.y174{bottom:463.159200pt;}
.y118{bottom:463.440267pt;}
.y1be{bottom:464.216667pt;}
.y289{bottom:465.545867pt;}
.y94{bottom:466.016133pt;}
.y19b{bottom:466.947600pt;}
.y63{bottom:467.183467pt;}
.y2b8{bottom:470.015600pt;}
.y2e8{bottom:470.026267pt;}
.ye1{bottom:470.470800pt;}
.y153{bottom:470.628933pt;}
.y1e{bottom:472.063067pt;}
.y13b{bottom:472.086933pt;}
.y1fb{bottom:472.535333pt;}
.y247{bottom:473.901200pt;}
.y87{bottom:476.397200pt;}
.y1bd{bottom:480.500667pt;}
.y288{bottom:480.881867pt;}
.y117{bottom:481.444267pt;}
.y93{bottom:482.419467pt;}
.y44{bottom:483.121333pt;}
.y199{bottom:484.997867pt;}
.y19a{bottom:485.000933pt;}
.y1b{bottom:485.113600pt;}
.y2b7{bottom:485.351600pt;}
.y2e7{bottom:485.354267pt;}
.y1f{bottom:485.396400pt;}
.y1d{bottom:486.729733pt;}
.y173{bottom:487.921067pt;}
.ye0{bottom:488.474800pt;}
.y152{bottom:488.632933pt;}
.yfa{bottom:488.646933pt;}
.y1d6{bottom:490.082933pt;}
.y13a{bottom:490.090933pt;}
.y1fa{bottom:490.539333pt;}
.y246{bottom:491.905200pt;}
.y62{bottom:492.747467pt;}
.y287{bottom:496.217867pt;}
.y1bc{bottom:496.784667pt;}
.y92{bottom:498.822800pt;}
.y116{bottom:499.448267pt;}
.y2b6{bottom:500.687600pt;}
.y2e6{bottom:500.690267pt;}
.y1a{bottom:501.113600pt;}
.y1c{bottom:501.396400pt;}
.y86{bottom:501.961200pt;}
.y198{bottom:502.197867pt;}
.ydf{bottom:506.478800pt;}
.yb8{bottom:506.636933pt;}
.y1d5{bottom:508.086933pt;}
.y139{bottom:508.094933pt;}
.y1f9{bottom:508.543333pt;}
.y61{bottom:510.751467pt;}
.y286{bottom:511.553867pt;}
.y91{bottom:515.226133pt;}
.y245{bottom:515.229600pt;}
.y2b5{bottom:516.023600pt;}
.y2e5{bottom:516.026267pt;}
.y115{bottom:517.452267pt;}
.y1bb{bottom:518.564667pt;}
.y197{bottom:519.394667pt;}
.y172{bottom:519.431200pt;}
.y85{bottom:519.965200pt;}
.y19{bottom:523.559733pt;}
.yde{bottom:524.482800pt;}
.yb7{bottom:524.640933pt;}
.y1d4{bottom:526.090933pt;}
.y138{bottom:526.098933pt;}
.y1f8{bottom:526.547333pt;}
.y285{bottom:526.873867pt;}
.y60{bottom:528.755467pt;}
.y2e4{bottom:531.354267pt;}
.y2b4{bottom:531.359600pt;}
.y90{bottom:531.629467pt;}
.y244{bottom:532.562933pt;}
.y114{bottom:535.456267pt;}
.y195{bottom:536.588400pt;}
.y196{bottom:536.591600pt;}
.y171{bottom:537.435200pt;}
.y84{bottom:537.969200pt;}
.y284{bottom:542.209867pt;}
.yb6{bottom:542.644933pt;}
.y1ba{bottom:543.326667pt;}
.y1d3{bottom:544.094933pt;}
.y137{bottom:544.102933pt;}
.y1f7{bottom:544.551333pt;}
.y2b3{bottom:546.687600pt;}
.y2e3{bottom:546.690267pt;}
.y243{bottom:550.616267pt;}
.y113{bottom:553.460267pt;}
.y193{bottom:553.785200pt;}
.y194{bottom:553.788400pt;}
.y5f{bottom:554.319467pt;}
.y170{bottom:555.427200pt;}
.y283{bottom:557.545867pt;}
.yb5{bottom:560.648933pt;}
.y2b2{bottom:562.023600pt;}
.y2e2{bottom:562.026267pt;}
.y1d2{bottom:562.098933pt;}
.y136{bottom:562.106933pt;}
.y18{bottom:562.341333pt;}
.y1f6{bottom:562.555333pt;}
.y83{bottom:563.533200pt;}
.ydd{bottom:563.659733pt;}
.y242{bottom:567.816267pt;}
.y192{bottom:570.985200pt;}
.y112{bottom:571.464267pt;}
.y5e{bottom:572.323467pt;}
.y282{bottom:572.881867pt;}
.y43{bottom:573.022400pt;}
.y16f{bottom:573.431200pt;}
.y1b9{bottom:574.840800pt;}
.y2e1{bottom:577.335600pt;}
.y2b1{bottom:577.359600pt;}
.yb4{bottom:578.652933pt;}
.ydc{bottom:579.943733pt;}
.y1d1{bottom:580.102933pt;}
.y135{bottom:580.110933pt;}
.y82{bottom:581.537200pt;}
.y17{bottom:582.120933pt;}
.y8f{bottom:584.029467pt;}
.y240{bottom:585.012933pt;}
.y241{bottom:585.013200pt;}
.y281{bottom:588.217867pt;}
.y111{bottom:589.468267pt;}
.y5d{bottom:590.327467pt;}
.y16e{bottom:591.435200pt;}
.y2e0{bottom:592.671600pt;}
.y2b0{bottom:592.682267pt;}
.y1b8{bottom:592.844800pt;}
.ydb{bottom:596.227733pt;}
.yb3{bottom:596.656933pt;}
.y42{bottom:597.689067pt;}
.y191{bottom:598.106933pt;}
.y134{bottom:598.114933pt;}
.y16{bottom:598.120933pt;}
.y1f5{bottom:598.555333pt;}
.y81{bottom:599.541200pt;}
.y23f{bottom:602.212933pt;}
.y8e{bottom:602.696133pt;}
.y280{bottom:603.553867pt;}
.y2df{bottom:608.007600pt;}
.y2af{bottom:608.018267pt;}
.y16d{bottom:609.439200pt;}
.yda{bottom:612.511733pt;}
.y15{bottom:614.120933pt;}
.yb2{bottom:614.660933pt;}
.y5c{bottom:615.891467pt;}
.y190{bottom:616.110933pt;}
.y133{bottom:616.118933pt;}
.y1b7{bottom:621.505733pt;}
.y41{bottom:622.355733pt;}
.y2de{bottom:623.343600pt;}
.y2ae{bottom:623.354267pt;}
.y110{bottom:624.012933pt;}
.y23e{bottom:624.026267pt;}
.y80{bottom:625.105200pt;}
.y14{bottom:630.120933pt;}
.yb1{bottom:632.664933pt;}
.y5b{bottom:633.895467pt;}
.y27f{bottom:634.005333pt;}
.y18f{bottom:634.114933pt;}
.y132{bottom:634.122933pt;}
.yd9{bottom:634.291733pt;}
.y2dd{bottom:638.679600pt;}
.y2ad{bottom:638.690267pt;}
.y1b6{bottom:638.839067pt;}
.y2{bottom:641.134667pt;}
.y23d{bottom:641.359600pt;}
.y7f{bottom:643.109200pt;}
.y13{bottom:646.120933pt;}
.y16c{bottom:648.614933pt;}
.yb0{bottom:650.668933pt;}
.y18e{bottom:652.118933pt;}
.y131{bottom:652.126933pt;}
.y2dc{bottom:654.015600pt;}
.y2ac{bottom:654.026267pt;}
.y1b5{bottom:656.172400pt;}
.y8d{bottom:656.556667pt;}
.y40{bottom:658.360933pt;}
.y23c{bottom:658.692933pt;}
.yd8{bottom:659.053733pt;}
.y7e{bottom:661.113200pt;}
.y12{bottom:662.120933pt;}
.y1f4{bottom:664.730933pt;}
.y16b{bottom:664.898933pt;}
.yaf{bottom:668.672933pt;}
.y2ab{bottom:669.349200pt;}
.y2db{bottom:669.351600pt;}
.y18d{bottom:670.122933pt;}
.y130{bottom:670.130933pt;}
.y1b3{bottom:674.219467pt;}
.y1b4{bottom:674.225733pt;}
.y59{bottom:676.340267pt;}
.y7d{bottom:679.117200pt;}
.y1f3{bottom:681.014933pt;}
.y16a{bottom:681.182933pt;}
.y8c{bottom:681.228667pt;}
.y27e{bottom:682.233600pt;}
.y2aa{bottom:684.685200pt;}
.y2da{bottom:684.687600pt;}
.yae{bottom:686.676933pt;}
.y54{bottom:686.966933pt;}
.y18c{bottom:688.126933pt;}
.y12f{bottom:688.134933pt;}
.y1{bottom:689.468000pt;}
.yd7{bottom:690.566133pt;}
.yc{bottom:691.048133pt;}
.y1b2{bottom:691.419467pt;}
.y58{bottom:691.768667pt;}
.y1f2{bottom:697.298933pt;}
.y169{bottom:697.466933pt;}
.y27d{bottom:697.569600pt;}
.y3f{bottom:698.360933pt;}
.y2a9{bottom:700.021200pt;}
.y2d9{bottom:700.023600pt;}
.yad{bottom:704.680933pt;}
.y7c{bottom:704.681200pt;}
.ya{bottom:705.116133pt;}
.y18b{bottom:706.130933pt;}
.y57{bottom:707.197067pt;}
.y1b1{bottom:708.613200pt;}
.yd6{bottom:708.619467pt;}
.y5a{bottom:711.228267pt;}
.yb{bottom:712.427600pt;}
.y27c{bottom:712.905600pt;}
.y1f1{bottom:713.582933pt;}
.y168{bottom:713.750933pt;}
.y2a8{bottom:715.357200pt;}
.y2d8{bottom:715.359600pt;}
.yac{bottom:722.684933pt;}
.y7b{bottom:722.685200pt;}
.y12e{bottom:722.692933pt;}
.y18a{bottom:724.134933pt;}
.yd4{bottom:725.813200pt;}
.yd5{bottom:725.816267pt;}
.y27b{bottom:728.241600pt;}
.y2d7{bottom:730.687200pt;}
.y2a7{bottom:730.693200pt;}
.y167{bottom:735.530933pt;}
.yab{bottom:740.688933pt;}
.y7a{bottom:740.689200pt;}
.y1b0{bottom:743.010000pt;}
.yd3{bottom:743.013200pt;}
.y2d6{bottom:746.023200pt;}
.y2a6{bottom:746.029200pt;}
.y8b{bottom:755.893067pt;}
.yaa{bottom:758.692933pt;}
.y79{bottom:758.693200pt;}
.yd2{bottom:760.210000pt;}
.y166{bottom:760.293067pt;}
.y2d5{bottom:761.359200pt;}
.y2a5{bottom:761.365200pt;}
.yd1{bottom:812.005200pt;}
.y78{bottom:812.383200pt;}
.h1e{height:20.043879pt;}
.h1c{height:25.473333pt;}
.h14{height:30.592000pt;}
.h10{height:32.504000pt;}
.h1a{height:34.128000pt;}
.h1b{height:34.272000pt;}
.hf{height:34.416000pt;}
.h29{height:36.480000pt;}
.hd{height:39.368000pt;}
.he{height:39.984000pt;}
.h22{height:41.040000pt;}
.h2c{height:41.088000pt;}
.h13{height:41.242667pt;}
.hc{height:41.888000pt;}
.h12{height:42.064000pt;}
.h2d{height:42.248000pt;}
.h2a{height:42.280000pt;}
.h36{height:42.520000pt;}
.h27{height:43.320000pt;}
.h28{height:43.370667pt;}
.h11{height:45.504000pt;}
.h26{height:45.600000pt;}
.h2b{height:45.653333pt;}
.h19{height:45.696000pt;}
.h20{height:47.880000pt;}
.h33{height:47.896000pt;}
.h21{height:47.936000pt;}
.ha{height:47.980800pt;}
.h2e{height:50.160000pt;}
.h2f{height:50.213333pt;}
.h35{height:50.218667pt;}
.h30{height:50.597333pt;}
.h31{height:52.180000pt;}
.h32{height:52.212000pt;}
.h34{height:52.228000pt;}
.h17{height:53.162667pt;}
.h25{height:54.720000pt;}
.h16{height:54.835200pt;}
.h18{height:55.216000pt;}
.h7{height:55.830731pt;}
.h23{height:59.280000pt;}
.h3{height:60.734720pt;}
.hb{height:60.757333pt;}
.h4{height:61.064800pt;}
.h1f{height:61.184000pt;}
.h5{height:62.809621pt;}
.h24{height:65.664000pt;}
.h6{height:66.299264pt;}
.h1d{height:85.340403pt;}
.h15{height:89.600000pt;}
.h2{height:116.895925pt;}
.h1{height:818.666667pt;}
.h0{height:818.706667pt;}
.h8{height:823.937600pt;}
.h9{height:824.000000pt;}
.w3{width:37.558667pt;}
.w1{width:548.000000pt;}
.w0{width:548.026667pt;}
.w2{width:548.030933pt;}
.x0{left:0.000000pt;}
.x24{left:20.787467pt;}
.x21{left:26.226667pt;}
.x22{left:27.746533pt;}
.x1d{left:47.244133pt;}
.x1a{left:50.125067pt;}
.xa{left:51.239067pt;}
.x4d{left:59.249067pt;}
.x25{left:65.633467pt;}
.x23{left:69.924133pt;}
.x28{left:75.209733pt;}
.x1{left:76.703600pt;}
.x1f{left:92.598533pt;}
.xd{left:97.845333pt;}
.x20{left:100.157600pt;}
.xe{left:101.868267pt;}
.xb{left:106.664533pt;}
.x14{left:109.049467pt;}
.xc{left:110.687467pt;}
.x15{left:113.072400pt;}
.x19{left:114.872933pt;}
.x33{left:126.614267pt;}
.x2c{left:130.393733pt;}
.xf{left:134.178667pt;}
.x10{left:138.201333pt;}
.x47{left:141.732400pt;}
.x52{left:153.070933pt;}
.x40{left:156.850400pt;}
.x11{left:159.114667pt;}
.x16{left:160.352000pt;}
.x12{left:163.137333pt;}
.x17{left:164.374667pt;}
.x3a{left:166.620133pt;}
.x39{left:168.189067pt;}
.x2d{left:171.968533pt;}
.x38{left:175.748133pt;}
.x3e{left:179.527600pt;}
.x29{left:183.307067pt;}
.x42{left:187.086667pt;}
.x49{left:194.645733pt;}
.x13{left:210.097333pt;}
.x2a{left:217.322933pt;}
.x18{left:218.418667pt;}
.x4c{left:221.102400pt;}
.x53{left:224.882000pt;}
.x6{left:229.321333pt;}
.x2{left:231.276000pt;}
.x2e{left:232.440933pt;}
.x7{left:236.726667pt;}
.x3{left:238.681333pt;}
.x4f{left:240.000267pt;}
.x4a{left:243.779600pt;}
.x43{left:247.559067pt;}
.x37{left:251.338667pt;}
.x3b{left:258.897733pt;}
.x45{left:262.677200pt;}
.x31{left:266.456800pt;}
.x48{left:270.236267pt;}
.x3f{left:274.015733pt;}
.x2f{left:292.913467pt;}
.x2b{left:315.590667pt;}
.x32{left:319.370133pt;}
.x44{left:323.149600pt;}
.x50{left:326.929333pt;}
.x34{left:334.488267pt;}
.x4b{left:342.047333pt;}
.x26{left:349.606400pt;}
.x46{left:357.165467pt;}
.x41{left:368.504000pt;}
.x35{left:372.283467pt;}
.x27{left:376.063067pt;}
.x4{left:379.953333pt;}
.x5{left:387.357333pt;}
.x54{left:394.960667pt;}
.x3c{left:398.740133pt;}
.x1e{left:409.165467pt;}
.x3d{left:410.078800pt;}
.x30{left:417.637867pt;}
.x4e{left:428.976533pt;}
.x8{left:438.157333pt;}
.x9{left:445.562667pt;}
.x51{left:466.771867pt;}
.x36{left:470.551200pt;}
.x1c{left:485.017333pt;}
.x1b{left:488.149333pt;}
}




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