
    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_ceea1b54255296a7f3b9fd41.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9d6a228322e5687b3fb37f26.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106000;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_885d2f65b0263c5331ed39a7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c9c5b5ad598e72be860b7ffa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936000;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_7b927a3d239adeff6d31b2e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109500;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_a0643f52922c4d481c270bf3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965500;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_a6306f93eea73c8b2f5e2b97.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112000;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_52d3cbf766923128d8b17aa3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.972000;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_646456cfc463e005e6604fbf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_7bb8b45c1f8d1dad22a140c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_21ce48c39251ac6b97d6cf9a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_14fbe5d1d5d4d89cca42d6a6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3b36f3dbfac2b50b8a51b581.woff2')format("woff");}.fff{font-family:fff;line-height:0.871094;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_ab97e77d23b5298e959778dd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_267f73c4647f983f717549ea.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.918500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b46364a04d0ab15247bbdac0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.744500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ca22ea21f32ed40db4fbeabe.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5a{transform:matrix(0.170544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170544,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174430,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.209768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209768,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245183,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245569,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.245771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245771,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245821,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245901,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245943,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246267,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.246362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246362,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.246467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246467,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246552,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.246574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246574,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246645,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.246752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246752,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.246757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246757,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247038,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247071,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247583,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247957,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247988,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248031,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248069,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248121,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248391,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248514,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248676,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249029,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249067,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);}
.m96{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);}
.m90{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249674,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249774,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,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);}
.m33{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250479,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250759,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250812,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251083,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251374,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251564,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251583,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251926,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251983,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252171,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252193,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252310,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.252424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252424,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252426,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252864,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252948,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253162,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253284,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253286,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253479,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.253564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253564,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.253864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253864,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254112,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254171,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.254186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254186,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.254326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254326,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254329,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254479,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254697,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.254698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254698,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.254999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254999,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.255163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255163,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-48.111103px;}
.v6{vertical-align:-16.656148px;}
.v2{vertical-align:-15.562800px;}
.v4{vertical-align:-12.603000px;}
.v8{vertical-align:-11.024213px;}
.v7{vertical-align:-8.627645px;}
.v9{vertical-align:-3.534938px;}
.v3{vertical-align:-2.135400px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:12.600000px;}
.vb{vertical-align:15.685800px;}
.v1{vertical-align:20.961000px;}
.vc{vertical-align:30.000000px;}
.ls9e{letter-spacing:-4.599000px;}
.ls79{letter-spacing:-3.936000px;}
.lsa0{letter-spacing:-3.906000px;}
.ls2{letter-spacing:-3.213000px;}
.ls77{letter-spacing:-3.072000px;}
.ls8d{letter-spacing:-2.832000px;}
.lsa1{letter-spacing:-2.772000px;}
.ls94{letter-spacing:-2.640000px;}
.ls84{letter-spacing:-2.544000px;}
.ls9c{letter-spacing:-2.400000px;}
.ls78{letter-spacing:-2.304000px;}
.ls7d{letter-spacing:-1.920000px;}
.ls92{letter-spacing:-1.890000px;}
.ls98{letter-spacing:-1.872000px;}
.ls48{letter-spacing:-1.701000px;}
.ls81{letter-spacing:-1.584000px;}
.ls58{letter-spacing:-1.575000px;}
.ls89{letter-spacing:-1.386000px;}
.ls3d{letter-spacing:-1.323000px;}
.ls82{letter-spacing:-1.296000px;}
.ls5b{letter-spacing:-1.260000px;}
.ls3{letter-spacing:-1.134000px;}
.ls7e{letter-spacing:-1.104000px;}
.ls43{letter-spacing:-1.071000px;}
.ls86{letter-spacing:-1.008000px;}
.ls64{letter-spacing:-0.967574px;}
.ls5e{letter-spacing:-0.948000px;}
.ls45{letter-spacing:-0.945000px;}
.ls7b{letter-spacing:-0.912000px;}
.ls73{letter-spacing:-0.864000px;}
.ls3e{letter-spacing:-0.819000px;}
.ls74{letter-spacing:-0.816000px;}
.ls9a{letter-spacing:-0.768000px;}
.ls31{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.718970px;}
.ls46{letter-spacing:-0.693000px;}
.ls9b{letter-spacing:-0.672000px;}
.ls6b{letter-spacing:-0.630000px;}
.lsf{letter-spacing:-0.567000px;}
.ls95{letter-spacing:-0.528000px;}
.ls10{letter-spacing:-0.504000px;}
.ls96{letter-spacing:-0.480000px;}
.ls6d{letter-spacing:-0.441000px;}
.ls90{letter-spacing:-0.384000px;}
.ls47{letter-spacing:-0.378000px;}
.ls97{letter-spacing:-0.336000px;}
.ls1d{letter-spacing:-0.252000px;}
.ls85{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.179743px;}
.ls2e{letter-spacing:-0.177750px;}
.ls8e{letter-spacing:-0.096000px;}
.ls9f{letter-spacing:-0.084000px;}
.ls44{letter-spacing:-0.063000px;}
.ls39{letter-spacing:-0.059818px;}
.ls75{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.102762px;}
.ls22{letter-spacing:0.103747px;}
.lsa{letter-spacing:0.103914px;}
.ls6{letter-spacing:0.104062px;}
.ls65{letter-spacing:0.104884px;}
.ls14{letter-spacing:0.126000px;}
.ls27{letter-spacing:0.146916px;}
.ls50{letter-spacing:0.177750px;}
.ls54{letter-spacing:0.181420px;}
.ls93{letter-spacing:0.189000px;}
.ls9d{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.214500px;}
.ls26{letter-spacing:0.220374px;}
.ls76{letter-spacing:0.240000px;}
.ls2c{letter-spacing:0.250200px;}
.ls8f{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.315000px;}
.ls8{letter-spacing:0.328200px;}
.ls1c{letter-spacing:0.355500px;}
.ls19{letter-spacing:0.359485px;}
.ls72{letter-spacing:0.384000px;}
.ls1{letter-spacing:0.480000px;}
.ls71{letter-spacing:0.503712px;}
.ls3f{letter-spacing:0.514206px;}
.ls7c{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.550935px;}
.ls80{letter-spacing:0.576000px;}
.ls87{letter-spacing:0.615648px;}
.ls4{letter-spacing:0.630000px;}
.ls6f{letter-spacing:0.672000px;}
.ls83{letter-spacing:0.720000px;}
.lse{letter-spacing:0.766800px;}
.ls6e{letter-spacing:0.768000px;}
.ls25{letter-spacing:0.808038px;}
.ls6c{letter-spacing:0.816000px;}
.ls41{letter-spacing:0.819000px;}
.ls15{letter-spacing:0.844767px;}
.ls99{letter-spacing:0.864000px;}
.ls3c{letter-spacing:1.008000px;}
.ls59{letter-spacing:1.071000px;}
.ls91{letter-spacing:1.104000px;}
.ls42{letter-spacing:1.134000px;}
.ls7f{letter-spacing:1.152000px;}
.ls29{letter-spacing:1.197000px;}
.ls7a{letter-spacing:1.248000px;}
.ls2b{letter-spacing:1.260000px;}
.ls2a{letter-spacing:1.316583px;}
.ls8a{letter-spacing:1.373400px;}
.ls5a{letter-spacing:1.395702px;}
.ls4c{letter-spacing:1.455300px;}
.ls4b{letter-spacing:1.474200px;}
.ls9{letter-spacing:1.505340px;}
.ls4f{letter-spacing:1.512000px;}
.ls4a{letter-spacing:1.530900px;}
.ls52{letter-spacing:1.568700px;}
.ls4d{letter-spacing:1.575000px;}
.ls51{letter-spacing:1.631700px;}
.ls49{letter-spacing:1.650600px;}
.ls5c{letter-spacing:1.890000px;}
.ls28{letter-spacing:1.953000px;}
.ls70{letter-spacing:2.160000px;}
.ls88{letter-spacing:2.208000px;}
.ls4e{letter-spacing:2.234583px;}
.ls17{letter-spacing:2.634345px;}
.ls16{letter-spacing:2.646000px;}
.ls5d{letter-spacing:2.877336px;}
.ls63{letter-spacing:2.936758px;}
.ls5{letter-spacing:15.000000px;}
.ls68{letter-spacing:53.460000px;}
.ls30{letter-spacing:59.072250px;}
.ls3b{letter-spacing:59.638745px;}
.ls37{letter-spacing:59.734457px;}
.ls13{letter-spacing:59.820000px;}
.ls56{letter-spacing:62.093205px;}
.ls67{letter-spacing:63.000000px;}
.ls2f{letter-spacing:63.753000px;}
.ls3a{letter-spacing:64.364383px;}
.ls1f{letter-spacing:64.467679px;}
.ls60{letter-spacing:64.560000px;}
.ls53{letter-spacing:71.280000px;}
.ls62{letter-spacing:80.220000px;}
.ls6a{letter-spacing:80.460000px;}
.ls12{letter-spacing:81.180000px;}
.ls61{letter-spacing:101.460000px;}
.ls32{letter-spacing:157.920000px;}
.lsb{letter-spacing:181.240455px;}
.ls1a{letter-spacing:200.969676px;}
.ls11{letter-spacing:203.460000px;}
.ls5f{letter-spacing:218.099250px;}
.ls69{letter-spacing:218.671814px;}
.ls66{letter-spacing:228.468505px;}
.ls8c{letter-spacing:241.352880px;}
.ls38{letter-spacing:251.999125px;}
.ls57{letter-spacing:255.270600px;}
.ls36{letter-spacing:270.332870px;}
.ls23{letter-spacing:280.008994px;}
.ls2d{letter-spacing:282.287214px;}
.ls34{letter-spacing:288.049608px;}
.ls20{letter-spacing:289.660507px;}
.ls21{letter-spacing:295.435735px;}
.ls24{letter-spacing:336.656830px;}
.lsc{letter-spacing:404.540678px;}
.ls8b{letter-spacing:432.927480px;}
.lsd{letter-spacing:479.673085px;}
.ls55{letter-spacing:493.731000px;}
.ls33{letter-spacing:628.056216px;}
.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;}
}
.ws8c{word-spacing:-628.056216px;}
.ws5f{word-spacing:-404.540678px;}
.ws7d{word-spacing:-309.738640px;}
.ws75{word-spacing:-299.349317px;}
.ws73{word-spacing:-289.984728px;}
.ws63{word-spacing:-285.866757px;}
.ws77{word-spacing:-272.293326px;}
.ws6c{word-spacing:-257.010496px;}
.ws76{word-spacing:-256.817792px;}
.wsac{word-spacing:-228.468505px;}
.wsae{word-spacing:-218.671814px;}
.wsa6{word-spacing:-218.099250px;}
.ws69{word-spacing:-217.920000px;}
.ws48{word-spacing:-203.520000px;}
.ws5e{word-spacing:-200.969676px;}
.wsb0{word-spacing:-140.460000px;}
.ws9c{word-spacing:-140.220000px;}
.ws7f{word-spacing:-130.642949px;}
.wsa1{word-spacing:-105.528000px;}
.ws9b{word-spacing:-101.520000px;}
.wsa2{word-spacing:-95.664000px;}
.ws9a{word-spacing:-91.614000px;}
.ws49{word-spacing:-85.260000px;}
.wsa9{word-spacing:-59.820000px;}
.ws9d{word-spacing:-57.054000px;}
.ws4a{word-spacing:-38.634000px;}
.ws2{word-spacing:-20.412000px;}
.ws12a{word-spacing:-20.328000px;}
.ws84{word-spacing:-15.561000px;}
.ws83{word-spacing:-15.246000px;}
.ws89{word-spacing:-14.616000px;}
.ws12c{word-spacing:-14.553000px;}
.ws46{word-spacing:-14.427000px;}
.ws88{word-spacing:-14.049000px;}
.ws3{word-spacing:-13.824000px;}
.ws87{word-spacing:-13.734000px;}
.ws12d{word-spacing:-13.671000px;}
.wsb8{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.488000px;}
.ws86{word-spacing:-13.482000px;}
.wsbf{word-spacing:-13.392000px;}
.ws85{word-spacing:-13.356000px;}
.ws4{word-spacing:-13.122000px;}
.ws80{word-spacing:-13.104000px;}
.wsee{word-spacing:-12.915000px;}
.ws114{word-spacing:-12.672000px;}
.wsf3{word-spacing:-12.480000px;}
.wsbe{word-spacing:-12.336000px;}
.wse0{word-spacing:-11.952000px;}
.wsd3{word-spacing:-11.808000px;}
.wse7{word-spacing:-11.712000px;}
.ws131{word-spacing:-11.529000px;}
.wsc6{word-spacing:-11.472000px;}
.ws101{word-spacing:-11.376000px;}
.ws11c{word-spacing:-10.704000px;}
.ws118{word-spacing:-10.416000px;}
.ws120{word-spacing:-9.888000px;}
.ws127{word-spacing:-9.828000px;}
.ws97{word-spacing:-9.806643px;}
.ws4b{word-spacing:-9.255708px;}
.ws4f{word-spacing:-8.961876px;}
.ws82{word-spacing:-8.925147px;}
.ws81{word-spacing:-8.484399px;}
.ws50{word-spacing:-8.410941px;}
.ws51{word-spacing:-8.337483px;}
.ws105{word-spacing:-4.284000px;}
.ws28{word-spacing:-2.961000px;}
.wsaa{word-spacing:-2.936758px;}
.ws10{word-spacing:-2.898000px;}
.wsa4{word-spacing:-2.877336px;}
.ws29{word-spacing:-2.835000px;}
.ws2b{word-spacing:-2.709000px;}
.ws14{word-spacing:-2.646000px;}
.ws5b{word-spacing:-2.634345px;}
.ws16{word-spacing:-2.583000px;}
.ws41{word-spacing:-2.520000px;}
.wsb4{word-spacing:-2.457000px;}
.wsad{word-spacing:-2.394000px;}
.ws22{word-spacing:-2.331000px;}
.ws23{word-spacing:-2.268000px;}
.ws40{word-spacing:-2.205000px;}
.ws32{word-spacing:-2.142000px;}
.ws5{word-spacing:-2.088000px;}
.ws96{word-spacing:-2.079000px;}
.ws18{word-spacing:-2.016000px;}
.ws1f{word-spacing:-1.953000px;}
.ws35{word-spacing:-1.890000px;}
.ws36{word-spacing:-1.827000px;}
.ws13{word-spacing:-1.764000px;}
.wsb6{word-spacing:-1.575000px;}
.ws3a{word-spacing:-1.512000px;}
.ws25{word-spacing:-1.449000px;}
.ws10d{word-spacing:-1.386000px;}
.wsb3{word-spacing:-1.323000px;}
.wsc{word-spacing:-1.197000px;}
.ws11{word-spacing:-1.134000px;}
.ws107{word-spacing:-1.128000px;}
.ws21{word-spacing:-1.071000px;}
.ws8e{word-spacing:-1.008000px;}
.ws3f{word-spacing:-0.945000px;}
.wsb7{word-spacing:-0.882000px;}
.ws2d{word-spacing:-0.819000px;}
.ws103{word-spacing:-0.816000px;}
.ws102{word-spacing:-0.768000px;}
.ws94{word-spacing:-0.693000px;}
.ws95{word-spacing:-0.630000px;}
.ws104{word-spacing:-0.576000px;}
.ws3b{word-spacing:-0.567000px;}
.ws2c{word-spacing:-0.504000px;}
.wsb{word-spacing:-0.441000px;}
.ws19{word-spacing:-0.378000px;}
.ws61{word-spacing:-0.355500px;}
.wsf{word-spacing:-0.315000px;}
.ws33{word-spacing:-0.252000px;}
.wsa0{word-spacing:-0.241894px;}
.ws98{word-spacing:-0.237000px;}
.wse{word-spacing:-0.189000px;}
.ws53{word-spacing:-0.126000px;}
.ws55{word-spacing:-0.104062px;}
.ws5d{word-spacing:-0.103914px;}
.ws60{word-spacing:-0.102762px;}
.wsf1{word-spacing:-0.063000px;}
.ws0{word-spacing:0.000000px;}
.wsef{word-spacing:0.048000px;}
.ws56{word-spacing:0.063000px;}
.ws1d{word-spacing:0.126000px;}
.ws34{word-spacing:0.189000px;}
.ws62{word-spacing:0.252000px;}
.ws108{word-spacing:0.315000px;}
.ws31{word-spacing:0.378000px;}
.ws7{word-spacing:0.441000px;}
.ws3c{word-spacing:0.504000px;}
.ws52{word-spacing:0.567000px;}
.ws1c{word-spacing:0.630000px;}
.wsa{word-spacing:0.756000px;}
.ws59{word-spacing:0.819000px;}
.wsa8{word-spacing:0.945000px;}
.wsa5{word-spacing:0.948000px;}
.wsab{word-spacing:0.967574px;}
.ws37{word-spacing:1.008000px;}
.ws24{word-spacing:1.071000px;}
.ws2e{word-spacing:1.134000px;}
.ws15{word-spacing:1.197000px;}
.ws45{word-spacing:1.260000px;}
.wsa7{word-spacing:1.323000px;}
.ws12b{word-spacing:1.386000px;}
.ws20{word-spacing:1.449000px;}
.ws2a{word-spacing:1.512000px;}
.ws1b{word-spacing:1.575000px;}
.ws30{word-spacing:1.638000px;}
.ws58{word-spacing:1.701000px;}
.ws109{word-spacing:1.764000px;}
.ws38{word-spacing:1.827000px;}
.wsf0{word-spacing:1.890000px;}
.ws1e{word-spacing:1.953000px;}
.ws57{word-spacing:2.016000px;}
.ws6{word-spacing:2.142000px;}
.ws27{word-spacing:2.205000px;}
.ws8{word-spacing:2.268000px;}
.ws43{word-spacing:2.331000px;}
.ws1a{word-spacing:2.394000px;}
.ws17{word-spacing:2.520000px;}
.ws10c{word-spacing:2.583000px;}
.ws129{word-spacing:2.640000px;}
.ws12{word-spacing:2.646000px;}
.ws54{word-spacing:2.709000px;}
.ws2f{word-spacing:2.772000px;}
.ws9{word-spacing:2.835000px;}
.ws130{word-spacing:2.898000px;}
.ws67{word-spacing:2.956575px;}
.ws12e{word-spacing:2.961000px;}
.ws44{word-spacing:3.024000px;}
.ws93{word-spacing:3.087000px;}
.ws3e{word-spacing:3.150000px;}
.ws26{word-spacing:3.213000px;}
.ws42{word-spacing:3.528000px;}
.ws10a{word-spacing:3.654000px;}
.wsb5{word-spacing:3.843000px;}
.ws39{word-spacing:3.906000px;}
.ws8f{word-spacing:3.969000px;}
.ws12f{word-spacing:4.032000px;}
.ws3d{word-spacing:4.347000px;}
.wsb1{word-spacing:4.725000px;}
.ws90{word-spacing:5.229000px;}
.ws92{word-spacing:5.292000px;}
.wsb2{word-spacing:5.481000px;}
.ws91{word-spacing:6.363000px;}
.ws10e{word-spacing:6.615000px;}
.ws106{word-spacing:7.875000px;}
.ws66{word-spacing:8.004675px;}
.wsd{word-spacing:8.190000px;}
.ws128{word-spacing:8.505000px;}
.ws10b{word-spacing:10.080000px;}
.ws8a{word-spacing:15.876000px;}
.ws8b{word-spacing:16.443000px;}
.ws68{word-spacing:30.504000px;}
.ws47{word-spacing:38.863539px;}
.ws9f{word-spacing:62.795828px;}
.wsd1{word-spacing:63.374400px;}
.ws70{word-spacing:64.048280px;}
.wse3{word-spacing:76.713600px;}
.wsdc{word-spacing:79.593600px;}
.wscf{word-spacing:80.755200px;}
.ws7e{word-spacing:82.429480px;}
.ws7b{word-spacing:84.427407px;}
.ws71{word-spacing:84.556910px;}
.ws7c{word-spacing:85.659662px;}
.wsa3{word-spacing:88.104569px;}
.ws9e{word-spacing:88.113262px;}
.wscd{word-spacing:92.670936px;}
.wsea{word-spacing:94.497600px;}
.wsc7{word-spacing:95.676552px;}
.wsbc{word-spacing:96.196800px;}
.wsca{word-spacing:96.278400px;}
.ws64{word-spacing:96.887439px;}
.wsaf{word-spacing:97.550813px;}
.ws4d{word-spacing:98.127477px;}
.wsbd{word-spacing:108.792000px;}
.wsbb{word-spacing:109.008000px;}
.wsc2{word-spacing:110.131200px;}
.wsb9{word-spacing:112.228800px;}
.wsc9{word-spacing:112.780800px;}
.ws79{word-spacing:113.893017px;}
.ws6f{word-spacing:114.076789px;}
.wseb{word-spacing:114.844800px;}
.wsec{word-spacing:115.281600px;}
.wsd7{word-spacing:122.409600px;}
.wse9{word-spacing:123.360000px;}
.wse2{word-spacing:123.652800px;}
.wse5{word-spacing:124.699200px;}
.wsd5{word-spacing:125.433600px;}
.wsd6{word-spacing:125.851200px;}
.wsed{word-spacing:127.310400px;}
.wsc8{word-spacing:127.934400px;}
.wsd9{word-spacing:131.107200px;}
.wsc5{word-spacing:131.433600px;}
.wse6{word-spacing:134.174400px;}
.ws65{word-spacing:134.621925px;}
.wsdf{word-spacing:136.694400px;}
.wsc4{word-spacing:142.286400px;}
.wscb{word-spacing:142.660800px;}
.ws7a{word-spacing:143.336371px;}
.wsc1{word-spacing:144.460800px;}
.wse4{word-spacing:146.937600px;}
.wsff{word-spacing:149.352000px;}
.wsce{word-spacing:149.491200px;}
.wsde{word-spacing:149.923200px;}
.wsd8{word-spacing:156.470400px;}
.ws6d{word-spacing:159.839103px;}
.wscc{word-spacing:160.545600px;}
.ws6e{word-spacing:167.623673px;}
.wsc3{word-spacing:170.222400px;}
.wsf2{word-spacing:170.731200px;}
.wse8{word-spacing:172.200744px;}
.wsba{word-spacing:173.184000px;}
.wsdb{word-spacing:174.019200px;}
.wsdd{word-spacing:176.246400px;}
.wse1{word-spacing:179.735568px;}
.wsd0{word-spacing:179.966400px;}
.wsd2{word-spacing:186.144000px;}
.ws5a{word-spacing:201.364314px;}
.wsda{word-spacing:204.038136px;}
.ws4c{word-spacing:208.243656px;}
.ws99{word-spacing:208.539446px;}
.wsd4{word-spacing:211.277352px;}
.wsc0{word-spacing:233.158968px;}
.wsf5{word-spacing:251.515200px;}
.wsfb{word-spacing:275.073600px;}
.ws78{word-spacing:277.660484px;}
.wsf6{word-spacing:285.882168px;}
.wsf7{word-spacing:289.078968px;}
.wsf9{word-spacing:290.266944px;}
.wsf8{word-spacing:294.369168px;}
.ws8d{word-spacing:296.215805px;}
.wsfa{word-spacing:304.291200px;}
.ws74{word-spacing:323.536680px;}
.ws4e{word-spacing:324.315565px;}
.ws11b{word-spacing:351.072000px;}
.ws125{word-spacing:354.916800px;}
.ws123{word-spacing:362.088000px;}
.ws126{word-spacing:367.339200px;}
.ws11f{word-spacing:377.942400px;}
.ws122{word-spacing:378.048000px;}
.ws112{word-spacing:379.022400px;}
.ws117{word-spacing:380.251200px;}
.ws111{word-spacing:380.289600px;}
.ws11e{word-spacing:381.110400px;}
.ws6b{word-spacing:381.210984px;}
.ws116{word-spacing:381.974400px;}
.ws113{word-spacing:383.102400px;}
.ws11a{word-spacing:388.046400px;}
.ws110{word-spacing:389.851200px;}
.ws72{word-spacing:418.680430px;}
.ws6a{word-spacing:435.354612px;}
.ws121{word-spacing:438.182400px;}
.ws115{word-spacing:449.688000px;}
.wsfd{word-spacing:455.073600px;}
.wsfe{word-spacing:457.881600px;}
.wsfc{word-spacing:461.918400px;}
.ws100{word-spacing:483.480000px;}
.wsf4{word-spacing:493.036800px;}
.ws124{word-spacing:504.057600px;}
.ws11d{word-spacing:540.398400px;}
.ws119{word-spacing:570.672000px;}
.ws10f{word-spacing:593.323200px;}
.ws5c{word-spacing:648.031987px;}
._17{margin-left:-1079.943825px;}
._14{margin-left:-843.303375px;}
._3e{margin-left:-555.324000px;}
._3c{margin-left:-472.800000px;}
._34{margin-left:-466.320000px;}
._d{margin-left:-458.100000px;}
._c{margin-left:-348.660000px;}
._1c{margin-left:-333.600000px;}
._38{margin-left:-253.806000px;}
._1b{margin-left:-244.584000px;}
._36{margin-left:-178.105500px;}
._3d{margin-left:-173.256291px;}
._40{margin-left:-163.140000px;}
._3b{margin-left:-71.160000px;}
._51{margin-left:-22.862400px;}
._37{margin-left:-12.180000px;}
._5{margin-left:-8.724600px;}
._56{margin-left:-7.061400px;}
._f{margin-left:-5.925300px;}
._2{margin-left:-4.377600px;}
._4{margin-left:-2.854200px;}
._0{margin-left:-1.800000px;}
._1{width:1.584000px;}
._3{width:2.889600px;}
._9{width:3.923400px;}
._8{width:5.522400px;}
._6{width:7.300800px;}
._7{width:8.942400px;}
._1a{width:15.984000px;}
._29{width:42.712833px;}
._35{width:57.109050px;}
._2a{width:85.215967px;}
._3f{width:92.046000px;}
._b{width:97.689561px;}
._33{width:106.125488px;}
._3a{width:108.189377px;}
._39{width:128.436295px;}
._26{width:136.400668px;}
._30{width:139.364442px;}
._27{width:142.583813px;}
._2f{width:145.406081px;}
._25{width:149.875371px;}
._53{width:165.737400px;}
._54{width:168.797400px;}
._41{width:171.484800px;}
._52{width:187.392000px;}
._18{width:190.340625px;}
._15{width:198.220875px;}
._19{width:202.190625px;}
._12{width:205.729524px;}
._16{width:208.222275px;}
._4a{width:212.136000px;}
._1d{width:217.159018px;}
._4b{width:222.403200px;}
._a{width:230.427070px;}
._32{width:238.339636px;}
._48{width:239.843136px;}
._49{width:241.523400px;}
._45{width:243.238200px;}
._31{width:246.295457px;}
._13{width:251.905275px;}
._2e{width:255.441659px;}
._43{width:261.644400px;}
._42{width:262.932600px;}
._47{width:264.729600px;}
._24{width:266.169873px;}
._4c{width:267.247800px;}
._44{width:270.150936px;}
._2c{width:278.905443px;}
._46{width:282.242736px;}
._4d{width:283.742400px;}
._11{width:289.960110px;}
._21{width:292.102254px;}
._4e{width:305.664000px;}
._22{width:321.856296px;}
._2d{width:324.519365px;}
._20{width:344.910762px;}
._1e{width:356.459533px;}
._23{width:364.357122px;}
._10{width:384.946452px;}
._2b{width:425.084402px;}
._1f{width:469.206348px;}
._4f{width:471.296400px;}
._55{width:514.176000px;}
._28{width:535.093720px;}
._e{width:715.474200px;}
._50{width:1328.352000px;}
.fc4{color:rgb(4,6,6);}
.fc3{color:rgb(23,23,24);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:25.089000px;}
.fs1a{font-size:27.984000px;}
.fs11{font-size:34.254000px;}
.fs15{font-size:34.582200px;}
.fsf{font-size:34.638000px;}
.fsb{font-size:34.687200px;}
.fs18{font-size:34.961400px;}
.fs5{font-size:36.000000px;}
.fs9{font-size:36.729000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs12{font-size:59.250000px;}
.fs16{font-size:59.818200px;}
.fse{font-size:59.914200px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:60.250200px;}
.fs19{font-size:60.473400px;}
.fsc{font-size:61.000200px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs13{font-size:71.148000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs14{font-size:85.377600px;}
.fs17{font-size:86.931000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y147{bottom:3.049800px;}
.y14b{bottom:3.564750px;}
.y141{bottom:3.608700px;}
.y168{bottom:3.609150px;}
.y13e{bottom:3.609450px;}
.y160{bottom:3.609600px;}
.y153{bottom:3.609750px;}
.y14d{bottom:3.609900px;}
.y16a{bottom:3.610050px;}
.y150{bottom:4.500750px;}
.y111{bottom:5.044950px;}
.y117{bottom:5.045400px;}
.y123{bottom:5.052702px;}
.y12a{bottom:5.607900px;}
.y15d{bottom:6.660900px;}
.y173{bottom:6.661050px;}
.y171{bottom:6.661500px;}
.y14a{bottom:7.406700px;}
.y155{bottom:7.499100px;}
.y142{bottom:7.499250px;}
.y115{bottom:7.499850px;}
.y144{bottom:7.500000px;}
.y13d{bottom:7.500150px;}
.y152{bottom:7.500450px;}
.y14e{bottom:7.500600px;}
.y16b{bottom:7.500750px;}
.y112{bottom:8.886900px;}
.y118{bottom:8.887500px;}
.y15a{bottom:8.928750px;}
.y16e{bottom:8.929200px;}
.y125{bottom:8.939801px;}
.y12c{bottom:9.486142px;}
.y15c{bottom:10.582350px;}
.y170{bottom:10.582800px;}
.y149{bottom:14.072250px;}
.y15b{bottom:17.385600px;}
.y16f{bottom:17.386050px;}
.y129{bottom:30.282300px;}
.y122{bottom:30.892650px;}
.y121{bottom:33.279900px;}
.y120{bottom:34.075650px;}
.y12b{bottom:34.161150px;}
.y124{bottom:34.777800px;}
.y5{bottom:66.525004px;}
.y40{bottom:69.472350px;}
.y91{bottom:69.472500px;}
.y4{bottom:97.125005px;}
.y1da{bottom:102.472350px;}
.y6a{bottom:106.972500px;}
.y1eb{bottom:108.472500px;}
.yb2{bottom:108.474000px;}
.y90{bottom:109.974000px;}
.y10e{bottom:114.474000px;}
.y23e{bottom:116.220450px;}
.y16d{bottom:116.648100px;}
.y172{bottom:117.242100px;}
.y169{bottom:119.597100px;}
.y1d9{bottom:121.972350px;}
.y69{bottom:126.472500px;}
.y16c{bottom:127.867050px;}
.yb1{bottom:127.972500px;}
.y8f{bottom:129.472500px;}
.y212{bottom:130.972500px;}
.y10d{bottom:133.972500px;}
.y23d{bottom:134.220450px;}
.y21{bottom:139.264499px;}
.y1ae{bottom:139.972500px;}
.y1d8{bottom:141.472350px;}
.y68{bottom:145.972500px;}
.yb0{bottom:147.472500px;}
.y8e{bottom:148.972500px;}
.y211{bottom:150.472500px;}
.y23c{bottom:152.220450px;}
.y10c{bottom:153.472500px;}
.y13b{bottom:159.472350px;}
.y1ad{bottom:159.472500px;}
.y1d7{bottom:160.975350px;}
.y67{bottom:165.473850px;}
.y189{bottom:166.972350px;}
.yaf{bottom:166.973850px;}
.y1ea{bottom:166.975350px;}
.y8d{bottom:168.472350px;}
.y10a{bottom:168.544050px;}
.y210{bottom:169.972350px;}
.y23b{bottom:170.220450px;}
.y10b{bottom:172.386000px;}
.y108{bottom:172.972350px;}
.y109{bottom:174.116850px;}
.y1fc{bottom:178.861650px;}
.y13a{bottom:178.972350px;}
.y1ac{bottom:178.978350px;}
.y1d6{bottom:180.473850px;}
.y66{bottom:184.972350px;}
.yae{bottom:186.472350px;}
.y1e9{bottom:186.473850px;}
.y8c{bottom:187.972350px;}
.y23a{bottom:188.209200px;}
.y20f{bottom:189.473850px;}
.ycb{bottom:190.978350px;}
.y1fb{bottom:193.861650px;}
.y18{bottom:196.933500px;}
.y139{bottom:198.472350px;}
.y1ab{bottom:198.476850px;}
.y167{bottom:199.754100px;}
.y1d5{bottom:199.972350px;}
.y3f{bottom:201.024300px;}
.yf9{bottom:203.594163px;}
.y106{bottom:204.321150px;}
.y65{bottom:204.472350px;}
.yad{bottom:205.972350px;}
.y188{bottom:205.975350px;}
.y239{bottom:206.211450px;}
.y105{bottom:207.406732px;}
.y8b{bottom:207.472350px;}
.y104{bottom:208.754801px;}
.y1fa{bottom:208.861650px;}
.y20e{bottom:208.972350px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yca{bottom:210.476850px;}
.yf5{bottom:212.160950px;}
.yfd{bottom:214.406763px;}
.y103{bottom:214.791157px;}
.yf8{bottom:215.622209px;}
.y107{bottom:216.910650px;}
.y138{bottom:217.972350px;}
.y1aa{bottom:217.975350px;}
.y1d4{bottom:219.472350px;}
.yf6{bottom:219.509400px;}
.yfb{bottom:219.514967px;}
.y102{bottom:219.524379px;}
.y101{bottom:220.827512px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y64{bottom:223.973850px;}
.y238{bottom:224.213700px;}
.yac{bottom:225.472350px;}
.y187{bottom:225.473850px;}
.y166{bottom:225.481350px;}
.y100{bottom:226.863868px;}
.y8a{bottom:226.972350px;}
.yf7{bottom:227.373150px;}
.y20d{bottom:228.472350px;}
.yc9{bottom:229.975350px;}
.yfa{bottom:231.258150px;}
.yff{bottom:231.267562px;}
.y1e{bottom:234.718504px;}
.yfe{bottom:234.727607px;}
.y15{bottom:234.733496px;}
.y1f9{bottom:235.249650px;}
.y3e{bottom:235.516800px;}
.yf4{bottom:235.939050px;}
.y1a9{bottom:237.473850px;}
.yfc{bottom:238.185750px;}
.y1d3{bottom:238.972350px;}
.y237{bottom:242.215950px;}
.y63{bottom:243.472350px;}
.y186{bottom:244.972350px;}
.yab{bottom:244.973850px;}
.y165{bottom:244.979850px;}
.y89{bottom:246.472350px;}
.y20c{bottom:247.972350px;}
.yc8{bottom:249.473850px;}
.y137{bottom:251.208600px;}
.y3d{bottom:252.013800px;}
.y1f8{bottom:253.417650px;}
.y1a8{bottom:256.972350px;}
.y1d2{bottom:258.472350px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y236{bottom:260.218200px;}
.y62{bottom:262.972350px;}
.yaa{bottom:264.472350px;}
.y164{bottom:264.478350px;}
.y88{bottom:265.973850px;}
.y20b{bottom:267.472350px;}
.yc7{bottom:268.972350px;}
.yf3{bottom:270.472350px;}
.y1f7{bottom:271.585650px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1a7{bottom:276.472350px;}
.y1d1{bottom:277.972350px;}
.y235{bottom:278.220450px;}
.y185{bottom:280.972350px;}
.y61{bottom:282.473850px;}
.y163{bottom:283.976850px;}
.ya9{bottom:283.979850px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y87{bottom:285.472350px;}
.y3c{bottom:286.506300px;}
.y20a{bottom:286.972350px;}
.yc6{bottom:288.472350px;}
.y1f6{bottom:289.753650px;}
.yf2{bottom:289.972350px;}
.y1a6{bottom:295.972350px;}
.y234{bottom:296.220450px;}
.y1d0{bottom:297.473850px;}
.y60{bottom:301.972350px;}
.y3b{bottom:303.003300px;}
.y136{bottom:303.473850px;}
.y162{bottom:303.475350px;}
.ya8{bottom:303.478350px;}
.y86{bottom:304.972350px;}
.y209{bottom:306.472350px;}
.y1f5{bottom:307.921650px;}
.yc5{bottom:307.973850px;}
.yf1{bottom:309.472350px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y233{bottom:314.220450px;}
.y1a5{bottom:315.472350px;}
.y1cf{bottom:316.972350px;}
.y3a{bottom:319.500300px;}
.y5f{bottom:321.472350px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y135{bottom:322.973850px;}
.ya7{bottom:322.976850px;}
.y208{bottom:325.972350px;}
.y1f4{bottom:326.089650px;}
.yc4{bottom:327.472350px;}
.yf0{bottom:328.972350px;}
.y232{bottom:332.220450px;}
.y1a4{bottom:334.972350px;}
.y39{bottom:335.997300px;}
.y1ce{bottom:336.472350px;}
.y15f{bottom:336.605100px;}
.y184{bottom:339.475350px;}
.y85{bottom:340.972350px;}
.y5e{bottom:340.981350px;}
.y15e{bottom:342.466050px;}
.y161{bottom:342.472350px;}
.ya6{bottom:342.475350px;}
.y134{bottom:342.476850px;}
.y1f3{bottom:344.257650px;}
.y207{bottom:345.472350px;}
.yf{bottom:348.133500px;}
.yef{bottom:348.476850px;}
.y259{bottom:349.057950px;}
.y231{bottom:350.213700px;}
.y1a3{bottom:351.322350px;}
.y38{bottom:352.494300px;}
.y1a2{bottom:354.472350px;}
.y1cd{bottom:355.973850px;}
.y183{bottom:358.973850px;}
.y5d{bottom:360.479850px;}
.yc3{bottom:360.708600px;}
.y1e8{bottom:361.972350px;}
.ya5{bottom:361.973850px;}
.y133{bottom:361.975350px;}
.y1f2{bottom:362.425650px;}
.y206{bottom:364.972350px;}
.y258{bottom:365.554950px;}
.yee{bottom:367.975350px;}
.y230{bottom:368.215950px;}
.y37{bottom:368.991300px;}
.y159{bottom:370.742100px;}
.y1a1{bottom:373.972350px;}
.y157{bottom:374.166600px;}
.y1cc{bottom:375.472350px;}
.y182{bottom:378.472350px;}
.y5c{bottom:379.978350px;}
.y158{bottom:381.226800px;}
.ya4{bottom:381.472350px;}
.y132{bottom:381.473850px;}
.y205{bottom:384.472350px;}
.y36{bottom:385.488300px;}
.y22f{bottom:386.218200px;}
.ye{bottom:386.785499px;}
.y1f1{bottom:386.964600px;}
.yed{bottom:387.473850px;}
.y1cb{bottom:394.972350px;}
.y181{bottom:397.972350px;}
.y5b{bottom:399.476850px;}
.y257{bottom:400.047450px;}
.ya3{bottom:400.972350px;}
.y131{bottom:400.973850px;}
.y84{bottom:400.978350px;}
.y1e7{bottom:400.982850px;}
.y35{bottom:401.985300px;}
.y204{bottom:403.982850px;}
.y22e{bottom:404.220450px;}
.y1a0{bottom:406.140000px;}
.yec{bottom:406.972350px;}
.yd{bottom:408.044999px;}
.yc2{bottom:411.472350px;}
.y1ca{bottom:414.478350px;}
.y256{bottom:416.544450px;}
.y180{bottom:417.472350px;}
.y34{bottom:418.482300px;}
.y1f0{bottom:418.973850px;}
.y5a{bottom:418.975350px;}
.ya2{bottom:420.472350px;}
.y130{bottom:420.473850px;}
.y83{bottom:420.476850px;}
.y1e6{bottom:420.481350px;}
.y22d{bottom:422.220450px;}
.y203{bottom:423.481350px;}
.yeb{bottom:426.472350px;}
.yc1{bottom:430.972350px;}
.y255{bottom:433.041450px;}
.y1c9{bottom:433.976850px;}
.y33{bottom:434.979300px;}
.y17f{bottom:436.972350px;}
.y1ef{bottom:438.472350px;}
.y59{bottom:438.473850px;}
.ya1{bottom:439.972350px;}
.y82{bottom:439.975350px;}
.y1e5{bottom:439.979850px;}
.y22c{bottom:440.215950px;}
.y202{bottom:442.979850px;}
.yea{bottom:445.972350px;}
.y254{bottom:449.538450px;}
.yc0{bottom:450.472350px;}
.y32{bottom:451.476300px;}
.y154{bottom:453.296100px;}
.y1c8{bottom:453.475350px;}
.y12f{bottom:456.322350px;}
.y17e{bottom:456.473850px;}
.y156{bottom:456.904650px;}
.y58{bottom:457.972350px;}
.y22b{bottom:458.218200px;}
.ya0{bottom:459.472350px;}
.y81{bottom:459.473850px;}
.y1e4{bottom:459.478350px;}
.y201{bottom:462.478350px;}
.ye9{bottom:465.472350px;}
.y253{bottom:466.035450px;}
.y19f{bottom:467.398650px;}
.y31{bottom:467.973300px;}
.ybf{bottom:469.973850px;}
.y1c7{bottom:472.973850px;}
.y12e{bottom:475.822350px;}
.y17d{bottom:475.972350px;}
.y22a{bottom:476.220450px;}
.y57{bottom:477.472350px;}
.y1ee{bottom:477.473850px;}
.y80{bottom:478.972350px;}
.y1e3{bottom:478.976850px;}
.y200{bottom:481.976850px;}
.y252{bottom:482.532450px;}
.y30{bottom:484.470300px;}
.ye8{bottom:484.986000px;}
.ybe{bottom:489.472350px;}
.y19e{bottom:491.398650px;}
.y151{bottom:491.748600px;}
.y1c6{bottom:492.472350px;}
.y229{bottom:494.220450px;}
.y17c{bottom:495.472350px;}
.y56{bottom:496.972350px;}
.y14f{bottom:498.471600px;}
.y7f{bottom:498.472350px;}
.y1e2{bottom:498.475350px;}
.y251{bottom:499.029450px;}
.y2f{bottom:500.967300px;}
.y1ff{bottom:501.475350px;}
.yc{bottom:502.864502px;}
.ye7{bottom:504.484500px;}
.y128{bottom:506.117100px;}
.ybd{bottom:508.972350px;}
.y1c5{bottom:511.972350px;}
.y228{bottom:512.220450px;}
.y19d{bottom:514.026450px;}
.y17b{bottom:514.972350px;}
.y250{bottom:515.526450px;}
.y55{bottom:516.472350px;}
.y9f{bottom:517.972350px;}
.y7e{bottom:517.973850px;}
.yb{bottom:520.864502px;}
.y1fe{bottom:520.973850px;}
.ye6{bottom:523.983000px;}
.y12d{bottom:526.818300px;}
.y1ed{bottom:527.208600px;}
.ybc{bottom:528.474000px;}
.y227{bottom:530.220450px;}
.y24f{bottom:532.023450px;}
.y19c{bottom:532.190400px;}
.y14c{bottom:532.236600px;}
.y17a{bottom:534.472350px;}
.y2e{bottom:534.475200px;}
.y54{bottom:535.975500px;}
.y7d{bottom:537.472350px;}
.y9e{bottom:537.477000px;}
.ya{bottom:538.864499px;}
.y1fd{bottom:540.472350px;}
.y1c4{bottom:541.368300px;}
.ye5{bottom:543.481500px;}
.ybb{bottom:547.972500px;}
.y226{bottom:548.220450px;}
.y24e{bottom:548.520450px;}
.y19b{bottom:550.354200px;}
.y179{bottom:553.972500px;}
.y53{bottom:555.474000px;}
.y1c3{bottom:556.368300px;}
.y9{bottom:556.864499px;}
.y7c{bottom:556.972500px;}
.y9d{bottom:556.975500px;}
.ye4{bottom:562.980000px;}
.y24d{bottom:565.017450px;}
.y225{bottom:566.220450px;}
.yba{bottom:567.472500px;}
.y19a{bottom:568.518000px;}
.y1c2{bottom:571.368300px;}
.y178{bottom:573.475500px;}
.y52{bottom:574.972500px;}
.y1e1{bottom:576.472500px;}
.y9c{bottom:576.474000px;}
.y127{bottom:576.474300px;}
.y7b{bottom:576.475500px;}
.y24c{bottom:581.514450px;}
.ye3{bottom:582.478500px;}
.y224{bottom:584.220450px;}
.y199{bottom:586.681950px;}
.y177{bottom:592.974000px;}
.y51{bottom:594.472500px;}
.y2d{bottom:595.972350px;}
.y9b{bottom:595.972500px;}
.y7a{bottom:595.974000px;}
.y24b{bottom:598.011450px;}
.y1c1{bottom:599.880300px;}
.y11f{bottom:600.542100px;}
.yb9{bottom:600.708600px;}
.ye2{bottom:601.977000px;}
.y223{bottom:602.220450px;}
.y198{bottom:604.845750px;}
.y176{bottom:612.472500px;}
.y50{bottom:613.972500px;}
.y24a{bottom:614.508450px;}
.y2c{bottom:615.472350px;}
.y79{bottom:615.472500px;}
.y1c0{bottom:620.172300px;}
.y222{bottom:620.220450px;}
.ye1{bottom:621.475500px;}
.y126{bottom:621.991800px;}
.y197{bottom:623.009550px;}
.y249{bottom:631.005450px;}
.y4f{bottom:633.472500px;}
.y2b{bottom:634.972350px;}
.y78{bottom:634.972500px;}
.y1e0{bottom:634.980000px;}
.y9a{bottom:634.983000px;}
.y221{bottom:638.220450px;}
.y1bf{bottom:640.462050px;}
.ye0{bottom:640.974000px;}
.y196{bottom:641.177550px;}
.y175{bottom:644.208600px;}
.y8{bottom:645.510000px;}
.y248{bottom:647.502450px;}
.y4e{bottom:652.972500px;}
.y77{bottom:654.472500px;}
.yb8{bottom:654.474000px;}
.y1df{bottom:654.478500px;}
.y99{bottom:654.481500px;}
.y220{bottom:656.215950px;}
.yde{bottom:656.862300px;}
.ydd{bottom:660.472500px;}
.y1be{bottom:660.747600px;}
.ydf{bottom:660.752850px;}
.y195{bottom:661.464450px;}
.y7{bottom:666.771000px;}
.y148{bottom:668.087100px;}
.y4d{bottom:672.472500px;}
.y2a{bottom:673.972350px;}
.y76{bottom:673.972500px;}
.y11e{bottom:673.977000px;}
.y98{bottom:673.980000px;}
.y21f{bottom:674.218200px;}
.ydb{bottom:676.368900px;}
.yda{bottom:679.972500px;}
.ydc{bottom:680.259600px;}
.y247{bottom:681.005850px;}
.y1bd{bottom:681.039600px;}
.y4c{bottom:691.972500px;}
.y21e{bottom:692.220450px;}
.y29{bottom:693.472350px;}
.y75{bottom:693.472500px;}
.y11d{bottom:693.475500px;}
.y97{bottom:693.478500px;}
.yd7{bottom:696.861150px;}
.y1ec{bottom:698.717250px;}
.yd9{bottom:699.472500px;}
.yd6{bottom:699.474000px;}
.yd8{bottom:700.751700px;}
.y1bc{bottom:701.331600px;}
.y246{bottom:702.010350px;}
.y194{bottom:702.475500px;}
.y146{bottom:709.946100px;}
.y21d{bottom:710.220450px;}
.y4b{bottom:711.472500px;}
.y28{bottom:712.972350px;}
.y74{bottom:712.972500px;}
.y11c{bottom:712.974000px;}
.y96{bottom:712.977000px;}
.yd5{bottom:718.972500px;}
.yd3{bottom:718.974000px;}
.yd4{bottom:720.272850px;}
.y1bb{bottom:721.621500px;}
.y193{bottom:721.974000px;}
.y143{bottom:725.772600px;}
.y6{bottom:726.298500px;}
.y21c{bottom:728.220450px;}
.y4a{bottom:730.977000px;}
.y11b{bottom:732.472500px;}
.y73{bottom:732.475500px;}
.y145{bottom:733.272600px;}
.yd2{bottom:738.473250px;}
.y192{bottom:741.474000px;}
.y1ba{bottom:741.911250px;}
.y21b{bottom:746.220450px;}
.y49{bottom:750.475500px;}
.y11a{bottom:751.972500px;}
.y72{bottom:751.974000px;}
.y3{bottom:752.599495px;}
.y27{bottom:753.938550px;}
.y245{bottom:757.026150px;}
.y191{bottom:760.974000px;}
.y1b9{bottom:762.201150px;}
.y21a{bottom:764.209200px;}
.y140{bottom:764.351100px;}
.y48{bottom:769.974000px;}
.y95{bottom:771.472500px;}
.y119{bottom:771.474000px;}
.y71{bottom:771.477000px;}
.yb7{bottom:771.480000px;}
.yd1{bottom:779.500350px;}
.y190{bottom:780.472500px;}
.y219{bottom:782.211450px;}
.y1b8{bottom:782.490450px;}
.y47{bottom:789.472500px;}
.y26{bottom:789.944550px;}
.y94{bottom:790.972500px;}
.y70{bottom:790.975500px;}
.yb6{bottom:790.978500px;}
.y18f{bottom:799.972500px;}
.y218{bottom:800.213700px;}
.y1b7{bottom:802.782450px;}
.y116{bottom:803.025600px;}
.y114{bottom:803.876100px;}
.y13c{bottom:804.656100px;}
.y46{bottom:808.972500px;}
.y93{bottom:810.472500px;}
.y6f{bottom:810.474000px;}
.yb5{bottom:810.477000px;}
.y1de{bottom:810.480000px;}
.y13f{bottom:811.966500px;}
.yd0{bottom:816.477000px;}
.y217{bottom:818.215950px;}
.y244{bottom:818.523300px;}
.y18e{bottom:819.472500px;}
.y1b6{bottom:820.950450px;}
.y45{bottom:828.475500px;}
.y6e{bottom:829.972500px;}
.yb4{bottom:829.975500px;}
.y1dd{bottom:829.978500px;}
.y1b3{bottom:830.034450px;}
.y1b5{bottom:835.950450px;}
.ycf{bottom:835.975500px;}
.y216{bottom:836.218200px;}
.y243{bottom:836.523300px;}
.y18d{bottom:838.972500px;}
.y110{bottom:843.767100px;}
.y1b2{bottom:845.034450px;}
.y44{bottom:847.974000px;}
.y22{bottom:849.472350px;}
.y6d{bottom:849.472500px;}
.yb3{bottom:849.474000px;}
.y1dc{bottom:849.477000px;}
.y113{bottom:849.875250px;}
.y1b4{bottom:854.118450px;}
.y215{bottom:854.220450px;}
.y242{bottom:854.516550px;}
.yce{bottom:855.474000px;}
.y18c{bottom:858.472500px;}
.y43{bottom:867.472500px;}
.y6c{bottom:868.972500px;}
.y1db{bottom:868.975500px;}
.y214{bottom:872.220450px;}
.y1b1{bottom:872.274450px;}
.y241{bottom:872.518800px;}
.ycd{bottom:874.972500px;}
.y18b{bottom:877.972500px;}
.y2{bottom:879.369000px;}
.y1b0{bottom:887.274450px;}
.y6b{bottom:888.472500px;}
.y92{bottom:888.474000px;}
.y240{bottom:890.521050px;}
.y42{bottom:901.972500px;}
.y174{bottom:902.205600px;}
.y213{bottom:904.972500px;}
.ycc{bottom:907.826100px;}
.y25{bottom:907.972500px;}
.y23f{bottom:908.523300px;}
.y18a{bottom:909.581100px;}
.y1af{bottom:910.973100px;}
.y24{bottom:927.472500px;}
.y41{bottom:946.972350px;}
.y23{bottom:946.972500px;}
.y10f{bottom:946.973100px;}
.y1{bottom:966.726000px;}
.h3c{height:13.725000px;}
.h3d{height:15.000000px;}
.h1c{height:17.432445px;}
.h3b{height:22.498500px;}
.h2a{height:22.500000px;}
.h26{height:23.700000px;}
.h24{height:23.783783px;}
.h27{height:23.800509px;}
.h33{height:24.011664px;}
.h32{height:24.028550px;}
.h1e{height:24.050408px;}
.h30{height:24.067321px;}
.h1a{height:24.084570px;}
.h41{height:24.292027px;}
.h20{height:24.454428px;}
.h3f{height:28.725000px;}
.h37{height:31.403295px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hc{height:33.138000px;}
.h45{height:37.680000px;}
.h25{height:41.139404px;}
.h28{height:41.168335px;}
.h34{height:41.533926px;}
.h1f{height:41.600582px;}
.h1d{height:41.629837px;}
.h3a{height:41.660156px;}
.h17{height:41.689453px;}
.h2c{height:41.830500px;}
.h42{height:42.018383px;}
.h35{height:42.231649px;}
.h21{height:42.299425px;}
.h1b{height:42.360000px;}
.h23{height:42.536641px;}
.h19{height:43.066141px;}
.hd{height:44.184000px;}
.h29{height:44.437500px;}
.h14{height:44.448000px;}
.h4a{height:44.456400px;}
.h4b{height:44.457000px;}
.h49{height:44.458800px;}
.h47{height:44.464200px;}
.h46{height:44.464800px;}
.h4c{height:44.473800px;}
.h36{height:44.863650px;}
.h22{height:44.935650px;}
.h38{height:44.982000px;}
.h2b{height:45.000000px;}
.h3e{height:45.729492px;}
.h7{height:45.960000px;}
.h39{height:47.100000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h31{height:49.350000px;}
.h13{height:50.004000px;}
.h18{height:51.729600px;}
.h16{height:51.810000px;}
.h2d{height:52.425000px;}
.h2e{height:53.361000px;}
.h15{height:53.865000px;}
.hf{height:55.044000px;}
.h2{height:55.152000px;}
.h10{height:55.230000px;}
.h44{height:58.379420px;}
.h43{height:58.380020px;}
.h2f{height:64.033200px;}
.h40{height:65.198250px;}
.h12{height:65.940000px;}
.h11{height:66.672000px;}
.h48{height:67.680000px;}
.h5{height:78.132000px;}
.he{height:79.203000px;}
.h4{height:119.055004px;}
.ha{height:1020.471600px;}
.hb{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.we{width:15.000000px;}
.w11{width:16.200000px;}
.wc{width:18.075000px;}
.w10{width:19.350000px;}
.w8{width:19.351500px;}
.wd{width:22.500000px;}
.w15{width:46.200000px;}
.w7{width:67.425000px;}
.wf{width:85.500000px;}
.w13{width:91.125000px;}
.wb{width:126.075000px;}
.w12{width:127.351500px;}
.w14{width:151.725000px;}
.w6{width:312.150000px;}
.wa{width:324.000000px;}
.w9{width:380.775000px;}
.w2{width:637.794021px;}
.w4{width:714.000000px;}
.w3{width:714.330000px;}
.w5{width:714.330600px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:1.836300px;}
.x29{left:3.001800px;}
.x2e{left:8.977350px;}
.x43{left:10.506000px;}
.x5a{left:11.720400px;}
.x38{left:13.764130px;}
.x3e{left:16.082100px;}
.x47{left:18.984750px;}
.x33{left:22.205255px;}
.x36{left:26.836413px;}
.x2b{left:30.012450px;}
.x2a{left:31.140300px;}
.x3b{left:36.284053px;}
.x3d{left:41.162100px;}
.x39{left:42.337262px;}
.x58{left:47.615400px;}
.x37{left:56.908659px;}
.x35{left:65.260970px;}
.x4c{left:76.547100px;}
.x6{left:81.791400px;}
.x3c{left:83.345911px;}
.x7{left:89.291400px;}
.x32{left:90.368850px;}
.x28{left:91.872600px;}
.x60{left:94.118850px;}
.x34{left:97.630200px;}
.x64{left:98.985450px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x65{left:109.425450px;}
.x30{left:110.513100px;}
.x63{left:112.137450px;}
.x6f{left:116.116650px;}
.x8{left:125.288550px;}
.x5c{left:127.919100px;}
.x40{left:129.527250px;}
.x50{left:132.918600px;}
.x61{left:135.700200px;}
.x41{left:137.360700px;}
.x62{left:143.525400px;}
.x5d{left:145.927200px;}
.x51{left:149.119200px;}
.x23{left:155.184300px;}
.x3f{left:164.050500px;}
.x24{left:167.139900px;}
.x45{left:173.716650px;}
.x4d{left:174.820950px;}
.x6c{left:183.904500px;}
.x5b{left:185.471700px;}
.xa{left:186.643650px;}
.x3a{left:195.165000px;}
.x27{left:201.090000px;}
.x4{left:203.484001px;}
.x67{left:223.005450px;}
.x68{left:232.425450px;}
.x66{left:240.957450px;}
.x56{left:246.062100px;}
.x6d{left:255.484950px;}
.x6e{left:259.935150px;}
.x46{left:263.612100px;}
.x48{left:266.143650px;}
.x31{left:272.651700px;}
.x18{left:274.023900px;}
.x49{left:286.429200px;}
.x1a{left:289.936752px;}
.x42{left:294.128100px;}
.xb{left:298.665300px;}
.x21{left:302.567178px;}
.xf{left:308.637000px;}
.x54{left:314.415600px;}
.xe{left:316.921050px;}
.x10{left:322.509300px;}
.x55{left:325.571700px;}
.x1f{left:327.210101px;}
.x1c{left:334.086150px;}
.x25{left:339.138750px;}
.x52{left:340.961100px;}
.x26{left:349.660200px;}
.x53{left:360.310950px;}
.x19{left:362.174400px;}
.x1d{left:365.451450px;}
.x16{left:369.758250px;}
.x5{left:372.047250px;}
.x57{left:373.412850px;}
.x20{left:377.200029px;}
.x69{left:381.249450px;}
.x1b{left:382.344821px;}
.x1e{left:383.759853px;}
.x17{left:388.533339px;}
.x2c{left:396.315450px;}
.x4e{left:411.096600px;}
.x4f{left:430.598850px;}
.x5e{left:433.027950px;}
.x2d{left:436.270500px;}
.x11{left:449.253150px;}
.x3{left:454.959000px;}
.x2f{left:456.007650px;}
.x12{left:465.042300px;}
.x59{left:468.268050px;}
.xc{left:510.876450px;}
.x6a{left:520.653450px;}
.xd{left:523.737000px;}
.x14{left:526.727100px;}
.x5f{left:527.883150px;}
.x6b{left:530.073450px;}
.x13{left:535.011150px;}
.x15{left:540.599400px;}
.x4a{left:555.803100px;}
.x4b{left:571.119300px;}
.x22{left:595.429800px;}
.x9{left:611.119650px;}
.x70{left:619.783650px;}
@media print{
.v5{vertical-align:-42.765425pt;}
.v6{vertical-align:-14.805465pt;}
.v2{vertical-align:-13.833600pt;}
.v4{vertical-align:-11.202667pt;}
.v8{vertical-align:-9.799300pt;}
.v7{vertical-align:-7.669018pt;}
.v9{vertical-align:-3.142167pt;}
.v3{vertical-align:-1.898133pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:11.200000pt;}
.vb{vertical-align:13.942933pt;}
.v1{vertical-align:18.632000pt;}
.vc{vertical-align:26.666667pt;}
.ls9e{letter-spacing:-4.088000pt;}
.ls79{letter-spacing:-3.498667pt;}
.lsa0{letter-spacing:-3.472000pt;}
.ls2{letter-spacing:-2.856000pt;}
.ls77{letter-spacing:-2.730667pt;}
.ls8d{letter-spacing:-2.517333pt;}
.lsa1{letter-spacing:-2.464000pt;}
.ls94{letter-spacing:-2.346667pt;}
.ls84{letter-spacing:-2.261333pt;}
.ls9c{letter-spacing:-2.133333pt;}
.ls78{letter-spacing:-2.048000pt;}
.ls7d{letter-spacing:-1.706667pt;}
.ls92{letter-spacing:-1.680000pt;}
.ls98{letter-spacing:-1.664000pt;}
.ls48{letter-spacing:-1.512000pt;}
.ls81{letter-spacing:-1.408000pt;}
.ls58{letter-spacing:-1.400000pt;}
.ls89{letter-spacing:-1.232000pt;}
.ls3d{letter-spacing:-1.176000pt;}
.ls82{letter-spacing:-1.152000pt;}
.ls5b{letter-spacing:-1.120000pt;}
.ls3{letter-spacing:-1.008000pt;}
.ls7e{letter-spacing:-0.981333pt;}
.ls43{letter-spacing:-0.952000pt;}
.ls86{letter-spacing:-0.896000pt;}
.ls64{letter-spacing:-0.860066pt;}
.ls5e{letter-spacing:-0.842667pt;}
.ls45{letter-spacing:-0.840000pt;}
.ls7b{letter-spacing:-0.810667pt;}
.ls73{letter-spacing:-0.768000pt;}
.ls3e{letter-spacing:-0.728000pt;}
.ls74{letter-spacing:-0.725333pt;}
.ls9a{letter-spacing:-0.682667pt;}
.ls31{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.639085pt;}
.ls46{letter-spacing:-0.616000pt;}
.ls9b{letter-spacing:-0.597333pt;}
.ls6b{letter-spacing:-0.560000pt;}
.lsf{letter-spacing:-0.504000pt;}
.ls95{letter-spacing:-0.469333pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls96{letter-spacing:-0.426667pt;}
.ls6d{letter-spacing:-0.392000pt;}
.ls90{letter-spacing:-0.341333pt;}
.ls47{letter-spacing:-0.336000pt;}
.ls97{letter-spacing:-0.298667pt;}
.ls1d{letter-spacing:-0.224000pt;}
.ls85{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.159771pt;}
.ls2e{letter-spacing:-0.158000pt;}
.ls8e{letter-spacing:-0.085333pt;}
.ls9f{letter-spacing:-0.074667pt;}
.ls44{letter-spacing:-0.056000pt;}
.ls39{letter-spacing:-0.053172pt;}
.ls75{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.091344pt;}
.ls22{letter-spacing:0.092219pt;}
.lsa{letter-spacing:0.092368pt;}
.ls6{letter-spacing:0.092499pt;}
.ls65{letter-spacing:0.093230pt;}
.ls14{letter-spacing:0.112000pt;}
.ls27{letter-spacing:0.130592pt;}
.ls50{letter-spacing:0.158000pt;}
.ls54{letter-spacing:0.161262pt;}
.ls93{letter-spacing:0.168000pt;}
.ls9d{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.190667pt;}
.ls26{letter-spacing:0.195888pt;}
.ls76{letter-spacing:0.213333pt;}
.ls2c{letter-spacing:0.222400pt;}
.ls8f{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.280000pt;}
.ls8{letter-spacing:0.291733pt;}
.ls1c{letter-spacing:0.316000pt;}
.ls19{letter-spacing:0.319542pt;}
.ls72{letter-spacing:0.341333pt;}
.ls1{letter-spacing:0.426667pt;}
.ls71{letter-spacing:0.447744pt;}
.ls3f{letter-spacing:0.457072pt;}
.ls7c{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.489720pt;}
.ls80{letter-spacing:0.512000pt;}
.ls87{letter-spacing:0.547243pt;}
.ls4{letter-spacing:0.560000pt;}
.ls6f{letter-spacing:0.597333pt;}
.ls83{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.681600pt;}
.ls6e{letter-spacing:0.682667pt;}
.ls25{letter-spacing:0.718256pt;}
.ls6c{letter-spacing:0.725333pt;}
.ls41{letter-spacing:0.728000pt;}
.ls15{letter-spacing:0.750904pt;}
.ls99{letter-spacing:0.768000pt;}
.ls3c{letter-spacing:0.896000pt;}
.ls59{letter-spacing:0.952000pt;}
.ls91{letter-spacing:0.981333pt;}
.ls42{letter-spacing:1.008000pt;}
.ls7f{letter-spacing:1.024000pt;}
.ls29{letter-spacing:1.064000pt;}
.ls7a{letter-spacing:1.109333pt;}
.ls2b{letter-spacing:1.120000pt;}
.ls2a{letter-spacing:1.170296pt;}
.ls8a{letter-spacing:1.220800pt;}
.ls5a{letter-spacing:1.240624pt;}
.ls4c{letter-spacing:1.293600pt;}
.ls4b{letter-spacing:1.310400pt;}
.ls9{letter-spacing:1.338080pt;}
.ls4f{letter-spacing:1.344000pt;}
.ls4a{letter-spacing:1.360800pt;}
.ls52{letter-spacing:1.394400pt;}
.ls4d{letter-spacing:1.400000pt;}
.ls51{letter-spacing:1.450400pt;}
.ls49{letter-spacing:1.467200pt;}
.ls5c{letter-spacing:1.680000pt;}
.ls28{letter-spacing:1.736000pt;}
.ls70{letter-spacing:1.920000pt;}
.ls88{letter-spacing:1.962667pt;}
.ls4e{letter-spacing:1.986296pt;}
.ls17{letter-spacing:2.341640pt;}
.ls16{letter-spacing:2.352000pt;}
.ls5d{letter-spacing:2.557632pt;}
.ls63{letter-spacing:2.610451pt;}
.ls5{letter-spacing:13.333333pt;}
.ls68{letter-spacing:47.520000pt;}
.ls30{letter-spacing:52.508667pt;}
.ls3b{letter-spacing:53.012218pt;}
.ls37{letter-spacing:53.097295pt;}
.ls13{letter-spacing:53.173333pt;}
.ls56{letter-spacing:55.193960pt;}
.ls67{letter-spacing:56.000000pt;}
.ls2f{letter-spacing:56.669333pt;}
.ls3a{letter-spacing:57.212785pt;}
.ls1f{letter-spacing:57.304604pt;}
.ls60{letter-spacing:57.386667pt;}
.ls53{letter-spacing:63.360000pt;}
.ls62{letter-spacing:71.306667pt;}
.ls6a{letter-spacing:71.520000pt;}
.ls12{letter-spacing:72.160000pt;}
.ls61{letter-spacing:90.186667pt;}
.ls32{letter-spacing:140.373333pt;}
.lsb{letter-spacing:161.102627pt;}
.ls1a{letter-spacing:178.639712pt;}
.ls11{letter-spacing:180.853333pt;}
.ls5f{letter-spacing:193.866000pt;}
.ls69{letter-spacing:194.374946pt;}
.ls66{letter-spacing:203.083116pt;}
.ls8c{letter-spacing:214.535893pt;}
.ls38{letter-spacing:223.999222pt;}
.ls57{letter-spacing:226.907200pt;}
.ls36{letter-spacing:240.295885pt;}
.ls23{letter-spacing:248.896884pt;}
.ls2d{letter-spacing:250.921968pt;}
.ls34{letter-spacing:256.044096pt;}
.ls20{letter-spacing:257.476006pt;}
.ls21{letter-spacing:262.609542pt;}
.ls24{letter-spacing:299.250515pt;}
.lsc{letter-spacing:359.591714pt;}
.ls8b{letter-spacing:384.824427pt;}
.lsd{letter-spacing:426.376076pt;}
.ls55{letter-spacing:438.872000pt;}
.ls33{letter-spacing:558.272192pt;}
.ws8c{word-spacing:-558.272192pt;}
.ws5f{word-spacing:-359.591714pt;}
.ws7d{word-spacing:-275.323235pt;}
.ws75{word-spacing:-266.088282pt;}
.ws73{word-spacing:-257.764203pt;}
.ws63{word-spacing:-254.103784pt;}
.ws77{word-spacing:-242.038512pt;}
.ws6c{word-spacing:-228.453774pt;}
.ws76{word-spacing:-228.282482pt;}
.wsac{word-spacing:-203.083116pt;}
.wsae{word-spacing:-194.374946pt;}
.wsa6{word-spacing:-193.866000pt;}
.ws69{word-spacing:-193.706667pt;}
.ws48{word-spacing:-180.906667pt;}
.ws5e{word-spacing:-178.639712pt;}
.wsb0{word-spacing:-124.853333pt;}
.ws9c{word-spacing:-124.640000pt;}
.ws7f{word-spacing:-116.127066pt;}
.wsa1{word-spacing:-93.802667pt;}
.ws9b{word-spacing:-90.240000pt;}
.wsa2{word-spacing:-85.034667pt;}
.ws9a{word-spacing:-81.434667pt;}
.ws49{word-spacing:-75.786667pt;}
.wsa9{word-spacing:-53.173333pt;}
.ws9d{word-spacing:-50.714667pt;}
.ws4a{word-spacing:-34.341333pt;}
.ws2{word-spacing:-18.144000pt;}
.ws12a{word-spacing:-18.069333pt;}
.ws84{word-spacing:-13.832000pt;}
.ws83{word-spacing:-13.552000pt;}
.ws89{word-spacing:-12.992000pt;}
.ws12c{word-spacing:-12.936000pt;}
.ws46{word-spacing:-12.824000pt;}
.ws88{word-spacing:-12.488000pt;}
.ws3{word-spacing:-12.288000pt;}
.ws87{word-spacing:-12.208000pt;}
.ws12d{word-spacing:-12.152000pt;}
.wsb8{word-spacing:-12.096000pt;}
.ws1{word-spacing:-11.989333pt;}
.ws86{word-spacing:-11.984000pt;}
.wsbf{word-spacing:-11.904000pt;}
.ws85{word-spacing:-11.872000pt;}
.ws4{word-spacing:-11.664000pt;}
.ws80{word-spacing:-11.648000pt;}
.wsee{word-spacing:-11.480000pt;}
.ws114{word-spacing:-11.264000pt;}
.wsf3{word-spacing:-11.093333pt;}
.wsbe{word-spacing:-10.965333pt;}
.wse0{word-spacing:-10.624000pt;}
.wsd3{word-spacing:-10.496000pt;}
.wse7{word-spacing:-10.410667pt;}
.ws131{word-spacing:-10.248000pt;}
.wsc6{word-spacing:-10.197333pt;}
.ws101{word-spacing:-10.112000pt;}
.ws11c{word-spacing:-9.514667pt;}
.ws118{word-spacing:-9.258667pt;}
.ws120{word-spacing:-8.789333pt;}
.ws127{word-spacing:-8.736000pt;}
.ws97{word-spacing:-8.717016pt;}
.ws4b{word-spacing:-8.227296pt;}
.ws4f{word-spacing:-7.966112pt;}
.ws82{word-spacing:-7.933464pt;}
.ws81{word-spacing:-7.541688pt;}
.ws50{word-spacing:-7.476392pt;}
.ws51{word-spacing:-7.411096pt;}
.ws105{word-spacing:-3.808000pt;}
.ws28{word-spacing:-2.632000pt;}
.wsaa{word-spacing:-2.610451pt;}
.ws10{word-spacing:-2.576000pt;}
.wsa4{word-spacing:-2.557632pt;}
.ws29{word-spacing:-2.520000pt;}
.ws2b{word-spacing:-2.408000pt;}
.ws14{word-spacing:-2.352000pt;}
.ws5b{word-spacing:-2.341640pt;}
.ws16{word-spacing:-2.296000pt;}
.ws41{word-spacing:-2.240000pt;}
.wsb4{word-spacing:-2.184000pt;}
.wsad{word-spacing:-2.128000pt;}
.ws22{word-spacing:-2.072000pt;}
.ws23{word-spacing:-2.016000pt;}
.ws40{word-spacing:-1.960000pt;}
.ws32{word-spacing:-1.904000pt;}
.ws5{word-spacing:-1.856000pt;}
.ws96{word-spacing:-1.848000pt;}
.ws18{word-spacing:-1.792000pt;}
.ws1f{word-spacing:-1.736000pt;}
.ws35{word-spacing:-1.680000pt;}
.ws36{word-spacing:-1.624000pt;}
.ws13{word-spacing:-1.568000pt;}
.wsb6{word-spacing:-1.400000pt;}
.ws3a{word-spacing:-1.344000pt;}
.ws25{word-spacing:-1.288000pt;}
.ws10d{word-spacing:-1.232000pt;}
.wsb3{word-spacing:-1.176000pt;}
.wsc{word-spacing:-1.064000pt;}
.ws11{word-spacing:-1.008000pt;}
.ws107{word-spacing:-1.002667pt;}
.ws21{word-spacing:-0.952000pt;}
.ws8e{word-spacing:-0.896000pt;}
.ws3f{word-spacing:-0.840000pt;}
.wsb7{word-spacing:-0.784000pt;}
.ws2d{word-spacing:-0.728000pt;}
.ws103{word-spacing:-0.725333pt;}
.ws102{word-spacing:-0.682667pt;}
.ws94{word-spacing:-0.616000pt;}
.ws95{word-spacing:-0.560000pt;}
.ws104{word-spacing:-0.512000pt;}
.ws3b{word-spacing:-0.504000pt;}
.ws2c{word-spacing:-0.448000pt;}
.wsb{word-spacing:-0.392000pt;}
.ws19{word-spacing:-0.336000pt;}
.ws61{word-spacing:-0.316000pt;}
.wsf{word-spacing:-0.280000pt;}
.ws33{word-spacing:-0.224000pt;}
.wsa0{word-spacing:-0.215017pt;}
.ws98{word-spacing:-0.210667pt;}
.wse{word-spacing:-0.168000pt;}
.ws53{word-spacing:-0.112000pt;}
.ws55{word-spacing:-0.092499pt;}
.ws5d{word-spacing:-0.092368pt;}
.ws60{word-spacing:-0.091344pt;}
.wsf1{word-spacing:-0.056000pt;}
.ws0{word-spacing:0.000000pt;}
.wsef{word-spacing:0.042667pt;}
.ws56{word-spacing:0.056000pt;}
.ws1d{word-spacing:0.112000pt;}
.ws34{word-spacing:0.168000pt;}
.ws62{word-spacing:0.224000pt;}
.ws108{word-spacing:0.280000pt;}
.ws31{word-spacing:0.336000pt;}
.ws7{word-spacing:0.392000pt;}
.ws3c{word-spacing:0.448000pt;}
.ws52{word-spacing:0.504000pt;}
.ws1c{word-spacing:0.560000pt;}
.wsa{word-spacing:0.672000pt;}
.ws59{word-spacing:0.728000pt;}
.wsa8{word-spacing:0.840000pt;}
.wsa5{word-spacing:0.842667pt;}
.wsab{word-spacing:0.860066pt;}
.ws37{word-spacing:0.896000pt;}
.ws24{word-spacing:0.952000pt;}
.ws2e{word-spacing:1.008000pt;}
.ws15{word-spacing:1.064000pt;}
.ws45{word-spacing:1.120000pt;}
.wsa7{word-spacing:1.176000pt;}
.ws12b{word-spacing:1.232000pt;}
.ws20{word-spacing:1.288000pt;}
.ws2a{word-spacing:1.344000pt;}
.ws1b{word-spacing:1.400000pt;}
.ws30{word-spacing:1.456000pt;}
.ws58{word-spacing:1.512000pt;}
.ws109{word-spacing:1.568000pt;}
.ws38{word-spacing:1.624000pt;}
.wsf0{word-spacing:1.680000pt;}
.ws1e{word-spacing:1.736000pt;}
.ws57{word-spacing:1.792000pt;}
.ws6{word-spacing:1.904000pt;}
.ws27{word-spacing:1.960000pt;}
.ws8{word-spacing:2.016000pt;}
.ws43{word-spacing:2.072000pt;}
.ws1a{word-spacing:2.128000pt;}
.ws17{word-spacing:2.240000pt;}
.ws10c{word-spacing:2.296000pt;}
.ws129{word-spacing:2.346667pt;}
.ws12{word-spacing:2.352000pt;}
.ws54{word-spacing:2.408000pt;}
.ws2f{word-spacing:2.464000pt;}
.ws9{word-spacing:2.520000pt;}
.ws130{word-spacing:2.576000pt;}
.ws67{word-spacing:2.628067pt;}
.ws12e{word-spacing:2.632000pt;}
.ws44{word-spacing:2.688000pt;}
.ws93{word-spacing:2.744000pt;}
.ws3e{word-spacing:2.800000pt;}
.ws26{word-spacing:2.856000pt;}
.ws42{word-spacing:3.136000pt;}
.ws10a{word-spacing:3.248000pt;}
.wsb5{word-spacing:3.416000pt;}
.ws39{word-spacing:3.472000pt;}
.ws8f{word-spacing:3.528000pt;}
.ws12f{word-spacing:3.584000pt;}
.ws3d{word-spacing:3.864000pt;}
.wsb1{word-spacing:4.200000pt;}
.ws90{word-spacing:4.648000pt;}
.ws92{word-spacing:4.704000pt;}
.wsb2{word-spacing:4.872000pt;}
.ws91{word-spacing:5.656000pt;}
.ws10e{word-spacing:5.880000pt;}
.ws106{word-spacing:7.000000pt;}
.ws66{word-spacing:7.115267pt;}
.wsd{word-spacing:7.280000pt;}
.ws128{word-spacing:7.560000pt;}
.ws10b{word-spacing:8.960000pt;}
.ws8a{word-spacing:14.112000pt;}
.ws8b{word-spacing:14.616000pt;}
.ws68{word-spacing:27.114667pt;}
.ws47{word-spacing:34.545368pt;}
.ws9f{word-spacing:55.818514pt;}
.wsd1{word-spacing:56.332800pt;}
.ws70{word-spacing:56.931804pt;}
.wse3{word-spacing:68.189867pt;}
.wsdc{word-spacing:70.749867pt;}
.wscf{word-spacing:71.782400pt;}
.ws7e{word-spacing:73.270649pt;}
.ws7b{word-spacing:75.046584pt;}
.ws71{word-spacing:75.161698pt;}
.ws7c{word-spacing:76.141922pt;}
.wsa3{word-spacing:78.315172pt;}
.ws9e{word-spacing:78.322899pt;}
.wscd{word-spacing:82.374165pt;}
.wsea{word-spacing:83.997867pt;}
.wsc7{word-spacing:85.045824pt;}
.wsbc{word-spacing:85.508267pt;}
.wsca{word-spacing:85.580800pt;}
.ws64{word-spacing:86.122168pt;}
.wsaf{word-spacing:86.711833pt;}
.ws4d{word-spacing:87.224424pt;}
.wsbd{word-spacing:96.704000pt;}
.wsbb{word-spacing:96.896000pt;}
.wsc2{word-spacing:97.894400pt;}
.wsb9{word-spacing:99.758933pt;}
.wsc9{word-spacing:100.249600pt;}
.ws79{word-spacing:101.238238pt;}
.ws6f{word-spacing:101.401590pt;}
.wseb{word-spacing:102.084267pt;}
.wsec{word-spacing:102.472533pt;}
.wsd7{word-spacing:108.808533pt;}
.wse9{word-spacing:109.653333pt;}
.wse2{word-spacing:109.913600pt;}
.wse5{word-spacing:110.843733pt;}
.wsd5{word-spacing:111.496533pt;}
.wsd6{word-spacing:111.867733pt;}
.wsed{word-spacing:113.164800pt;}
.wsc8{word-spacing:113.719467pt;}
.wsd9{word-spacing:116.539733pt;}
.wsc5{word-spacing:116.829867pt;}
.wse6{word-spacing:119.266133pt;}
.ws65{word-spacing:119.663933pt;}
.wsdf{word-spacing:121.506133pt;}
.wsc4{word-spacing:126.476800pt;}
.wscb{word-spacing:126.809600pt;}
.ws7a{word-spacing:127.410107pt;}
.wsc1{word-spacing:128.409600pt;}
.wse4{word-spacing:130.611200pt;}
.wsff{word-spacing:132.757333pt;}
.wsce{word-spacing:132.881067pt;}
.wsde{word-spacing:133.265067pt;}
.wsd8{word-spacing:139.084800pt;}
.ws6d{word-spacing:142.079202pt;}
.wscc{word-spacing:142.707200pt;}
.ws6e{word-spacing:148.998821pt;}
.wsc3{word-spacing:151.308800pt;}
.wsf2{word-spacing:151.761067pt;}
.wse8{word-spacing:153.067328pt;}
.wsba{word-spacing:153.941333pt;}
.wsdb{word-spacing:154.683733pt;}
.wsdd{word-spacing:156.663467pt;}
.wse1{word-spacing:159.764949pt;}
.wsd0{word-spacing:159.970133pt;}
.wsd2{word-spacing:165.461333pt;}
.ws5a{word-spacing:178.990501pt;}
.wsda{word-spacing:181.367232pt;}
.ws4c{word-spacing:185.105472pt;}
.ws99{word-spacing:185.368397pt;}
.wsd4{word-spacing:187.802091pt;}
.wsc0{word-spacing:207.252416pt;}
.wsf5{word-spacing:223.569067pt;}
.wsfb{word-spacing:244.509867pt;}
.ws78{word-spacing:246.809319pt;}
.wsf6{word-spacing:254.117483pt;}
.wsf7{word-spacing:256.959083pt;}
.wsf9{word-spacing:258.015061pt;}
.wsf8{word-spacing:261.661483pt;}
.ws8d{word-spacing:263.302938pt;}
.wsfa{word-spacing:270.481067pt;}
.ws74{word-spacing:287.588160pt;}
.ws4e{word-spacing:288.280502pt;}
.ws11b{word-spacing:312.064000pt;}
.ws125{word-spacing:315.481600pt;}
.ws123{word-spacing:321.856000pt;}
.ws126{word-spacing:326.523733pt;}
.ws11f{word-spacing:335.948800pt;}
.ws122{word-spacing:336.042667pt;}
.ws112{word-spacing:336.908800pt;}
.ws117{word-spacing:338.001067pt;}
.ws111{word-spacing:338.035200pt;}
.ws11e{word-spacing:338.764800pt;}
.ws6b{word-spacing:338.854208pt;}
.ws116{word-spacing:339.532800pt;}
.ws113{word-spacing:340.535467pt;}
.ws11a{word-spacing:344.930133pt;}
.ws110{word-spacing:346.534400pt;}
.ws72{word-spacing:372.160382pt;}
.ws6a{word-spacing:386.981877pt;}
.ws121{word-spacing:389.495467pt;}
.ws115{word-spacing:399.722667pt;}
.wsfd{word-spacing:404.509867pt;}
.wsfe{word-spacing:407.005867pt;}
.wsfc{word-spacing:410.594133pt;}
.ws100{word-spacing:429.760000pt;}
.wsf4{word-spacing:438.254933pt;}
.ws124{word-spacing:448.051200pt;}
.ws11d{word-spacing:480.354133pt;}
.ws119{word-spacing:507.264000pt;}
.ws10f{word-spacing:527.398400pt;}
.ws5c{word-spacing:576.028433pt;}
._17{margin-left:-959.950067pt;}
._14{margin-left:-749.603000pt;}
._3e{margin-left:-493.621333pt;}
._3c{margin-left:-420.266667pt;}
._34{margin-left:-414.506667pt;}
._d{margin-left:-407.200000pt;}
._c{margin-left:-309.920000pt;}
._1c{margin-left:-296.533333pt;}
._38{margin-left:-225.605333pt;}
._1b{margin-left:-217.408000pt;}
._36{margin-left:-158.316000pt;}
._3d{margin-left:-154.005592pt;}
._40{margin-left:-145.013333pt;}
._3b{margin-left:-63.253333pt;}
._51{margin-left:-20.322133pt;}
._37{margin-left:-10.826667pt;}
._5{margin-left:-7.755200pt;}
._56{margin-left:-6.276800pt;}
._f{margin-left:-5.266933pt;}
._2{margin-left:-3.891200pt;}
._4{margin-left:-2.537067pt;}
._0{margin-left:-1.600000pt;}
._1{width:1.408000pt;}
._3{width:2.568533pt;}
._9{width:3.487467pt;}
._8{width:4.908800pt;}
._6{width:6.489600pt;}
._7{width:7.948800pt;}
._1a{width:14.208000pt;}
._29{width:37.966963pt;}
._35{width:50.763600pt;}
._2a{width:75.747526pt;}
._3f{width:81.818667pt;}
._b{width:86.835166pt;}
._33{width:94.333767pt;}
._3a{width:96.168335pt;}
._39{width:114.165596pt;}
._26{width:121.245038pt;}
._30{width:123.879504pt;}
._27{width:126.741167pt;}
._2f{width:129.249849pt;}
._25{width:133.222552pt;}
._53{width:147.322133pt;}
._54{width:150.042133pt;}
._41{width:152.430933pt;}
._52{width:166.570667pt;}
._18{width:169.191667pt;}
._15{width:176.196333pt;}
._19{width:179.725000pt;}
._12{width:182.870688pt;}
._16{width:185.086467pt;}
._4a{width:188.565333pt;}
._1d{width:193.030238pt;}
._4b{width:197.691733pt;}
._a{width:204.824062pt;}
._32{width:211.857454pt;}
._48{width:213.193899pt;}
._49{width:214.687467pt;}
._45{width:216.211733pt;}
._31{width:218.929295pt;}
._13{width:223.915800pt;}
._2e{width:227.059253pt;}
._43{width:232.572800pt;}
._42{width:233.717867pt;}
._47{width:235.315200pt;}
._24{width:236.595443pt;}
._4c{width:237.553600pt;}
._44{width:240.134165pt;}
._2c{width:247.915949pt;}
._46{width:250.882432pt;}
._4d{width:252.215467pt;}
._11{width:257.742320pt;}
._21{width:259.646448pt;}
._4e{width:271.701333pt;}
._22{width:286.094485pt;}
._2d{width:288.461658pt;}
._20{width:306.587344pt;}
._1e{width:316.852918pt;}
._23{width:323.872997pt;}
._10{width:342.174624pt;}
._2b{width:377.852802pt;}
._1f{width:417.072309pt;}
._4f{width:418.930133pt;}
._55{width:457.045333pt;}
._28{width:475.638862pt;}
._e{width:635.977067pt;}
._50{width:1180.757333pt;}
.fsd{font-size:22.301333pt;}
.fs1a{font-size:24.874667pt;}
.fs11{font-size:30.448000pt;}
.fs15{font-size:30.739733pt;}
.fsf{font-size:30.789333pt;}
.fsb{font-size:30.833067pt;}
.fs18{font-size:31.076800pt;}
.fs5{font-size:32.000000pt;}
.fs9{font-size:32.648000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs12{font-size:52.666667pt;}
.fs16{font-size:53.171733pt;}
.fse{font-size:53.257067pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:53.555733pt;}
.fs19{font-size:53.754133pt;}
.fsc{font-size:54.222400pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs13{font-size:63.242667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs14{font-size:75.891200pt;}
.fs17{font-size:77.272000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y147{bottom:2.710933pt;}
.y14b{bottom:3.168667pt;}
.y141{bottom:3.207733pt;}
.y168{bottom:3.208133pt;}
.y13e{bottom:3.208400pt;}
.y160{bottom:3.208533pt;}
.y153{bottom:3.208667pt;}
.y14d{bottom:3.208800pt;}
.y16a{bottom:3.208933pt;}
.y150{bottom:4.000667pt;}
.y111{bottom:4.484400pt;}
.y117{bottom:4.484800pt;}
.y123{bottom:4.491291pt;}
.y12a{bottom:4.984800pt;}
.y15d{bottom:5.920800pt;}
.y173{bottom:5.920933pt;}
.y171{bottom:5.921333pt;}
.y14a{bottom:6.583733pt;}
.y155{bottom:6.665867pt;}
.y142{bottom:6.666000pt;}
.y115{bottom:6.666533pt;}
.y144{bottom:6.666667pt;}
.y13d{bottom:6.666800pt;}
.y152{bottom:6.667067pt;}
.y14e{bottom:6.667200pt;}
.y16b{bottom:6.667333pt;}
.y112{bottom:7.899467pt;}
.y118{bottom:7.900000pt;}
.y15a{bottom:7.936667pt;}
.y16e{bottom:7.937067pt;}
.y125{bottom:7.946490pt;}
.y12c{bottom:8.432127pt;}
.y15c{bottom:9.406533pt;}
.y170{bottom:9.406933pt;}
.y149{bottom:12.508667pt;}
.y15b{bottom:15.453867pt;}
.y16f{bottom:15.454267pt;}
.y129{bottom:26.917600pt;}
.y122{bottom:27.460133pt;}
.y121{bottom:29.582133pt;}
.y120{bottom:30.289467pt;}
.y12b{bottom:30.365467pt;}
.y124{bottom:30.913600pt;}
.y5{bottom:59.133337pt;}
.y40{bottom:61.753200pt;}
.y91{bottom:61.753333pt;}
.y4{bottom:86.333337pt;}
.y1da{bottom:91.086533pt;}
.y6a{bottom:95.086667pt;}
.y1eb{bottom:96.420000pt;}
.yb2{bottom:96.421333pt;}
.y90{bottom:97.754667pt;}
.y10e{bottom:101.754667pt;}
.y23e{bottom:103.307067pt;}
.y16d{bottom:103.687200pt;}
.y172{bottom:104.215200pt;}
.y169{bottom:106.308533pt;}
.y1d9{bottom:108.419867pt;}
.y69{bottom:112.420000pt;}
.y16c{bottom:113.659600pt;}
.yb1{bottom:113.753333pt;}
.y8f{bottom:115.086667pt;}
.y212{bottom:116.420000pt;}
.y10d{bottom:119.086667pt;}
.y23d{bottom:119.307067pt;}
.y21{bottom:123.790666pt;}
.y1ae{bottom:124.420000pt;}
.y1d8{bottom:125.753200pt;}
.y68{bottom:129.753333pt;}
.yb0{bottom:131.086667pt;}
.y8e{bottom:132.420000pt;}
.y211{bottom:133.753333pt;}
.y23c{bottom:135.307067pt;}
.y10c{bottom:136.420000pt;}
.y13b{bottom:141.753200pt;}
.y1ad{bottom:141.753333pt;}
.y1d7{bottom:143.089200pt;}
.y67{bottom:147.087867pt;}
.y189{bottom:148.419867pt;}
.yaf{bottom:148.421200pt;}
.y1ea{bottom:148.422533pt;}
.y8d{bottom:149.753200pt;}
.y10a{bottom:149.816933pt;}
.y210{bottom:151.086533pt;}
.y23b{bottom:151.307067pt;}
.y10b{bottom:153.232000pt;}
.y108{bottom:153.753200pt;}
.y109{bottom:154.770533pt;}
.y1fc{bottom:158.988133pt;}
.y13a{bottom:159.086533pt;}
.y1ac{bottom:159.091867pt;}
.y1d6{bottom:160.421200pt;}
.y66{bottom:164.419867pt;}
.yae{bottom:165.753200pt;}
.y1e9{bottom:165.754533pt;}
.y8c{bottom:167.086533pt;}
.y23a{bottom:167.297067pt;}
.y20f{bottom:168.421200pt;}
.ycb{bottom:169.758533pt;}
.y1fb{bottom:172.321467pt;}
.y18{bottom:175.052000pt;}
.y139{bottom:176.419867pt;}
.y1ab{bottom:176.423867pt;}
.y167{bottom:177.559200pt;}
.y1d5{bottom:177.753200pt;}
.y3f{bottom:178.688267pt;}
.yf9{bottom:180.972589pt;}
.y106{bottom:181.618800pt;}
.y65{bottom:181.753200pt;}
.yad{bottom:183.086533pt;}
.y188{bottom:183.089200pt;}
.y239{bottom:183.299067pt;}
.y105{bottom:184.361539pt;}
.y8b{bottom:184.419867pt;}
.y104{bottom:185.559823pt;}
.y1fa{bottom:185.654800pt;}
.y20e{bottom:185.753200pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yca{bottom:187.090533pt;}
.yf5{bottom:188.587511pt;}
.yfd{bottom:190.583789pt;}
.y103{bottom:190.925473pt;}
.yf8{bottom:191.664185pt;}
.y107{bottom:192.809467pt;}
.y138{bottom:193.753200pt;}
.y1aa{bottom:193.755867pt;}
.y1d4{bottom:195.086533pt;}
.yf6{bottom:195.119467pt;}
.yfb{bottom:195.124415pt;}
.y102{bottom:195.132781pt;}
.y101{bottom:196.291122pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y64{bottom:199.087867pt;}
.y238{bottom:199.301067pt;}
.yac{bottom:200.419867pt;}
.y187{bottom:200.421200pt;}
.y166{bottom:200.427867pt;}
.y100{bottom:201.656772pt;}
.y8a{bottom:201.753200pt;}
.yf7{bottom:202.109467pt;}
.y20d{bottom:203.086533pt;}
.yc9{bottom:204.422533pt;}
.yfa{bottom:205.562800pt;}
.yff{bottom:205.571166pt;}
.y1e{bottom:208.638670pt;}
.yfe{bottom:208.646762pt;}
.y15{bottom:208.651996pt;}
.y1f9{bottom:209.110800pt;}
.y3e{bottom:209.348267pt;}
.yf4{bottom:209.723600pt;}
.y1a9{bottom:211.087867pt;}
.yfc{bottom:211.720667pt;}
.y1d3{bottom:212.419867pt;}
.y237{bottom:215.303067pt;}
.y63{bottom:216.419867pt;}
.y186{bottom:217.753200pt;}
.yab{bottom:217.754533pt;}
.y165{bottom:217.759867pt;}
.y89{bottom:219.086533pt;}
.y20c{bottom:220.419867pt;}
.yc8{bottom:221.754533pt;}
.y137{bottom:223.296533pt;}
.y3d{bottom:224.012267pt;}
.y1f8{bottom:225.260133pt;}
.y1a8{bottom:228.419867pt;}
.y1d2{bottom:229.753200pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y236{bottom:231.305067pt;}
.y62{bottom:233.753200pt;}
.yaa{bottom:235.086533pt;}
.y164{bottom:235.091867pt;}
.y88{bottom:236.421200pt;}
.y20b{bottom:237.753200pt;}
.yc7{bottom:239.086533pt;}
.yf3{bottom:240.419867pt;}
.y1f7{bottom:241.409467pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1a7{bottom:245.753200pt;}
.y1d1{bottom:247.086533pt;}
.y235{bottom:247.307067pt;}
.y185{bottom:249.753200pt;}
.y61{bottom:251.087867pt;}
.y163{bottom:252.423867pt;}
.ya9{bottom:252.426533pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y87{bottom:253.753200pt;}
.y3c{bottom:254.672267pt;}
.y20a{bottom:255.086533pt;}
.yc6{bottom:256.419867pt;}
.y1f6{bottom:257.558800pt;}
.yf2{bottom:257.753200pt;}
.y1a6{bottom:263.086533pt;}
.y234{bottom:263.307067pt;}
.y1d0{bottom:264.421200pt;}
.y60{bottom:268.419867pt;}
.y3b{bottom:269.336267pt;}
.y136{bottom:269.754533pt;}
.y162{bottom:269.755867pt;}
.ya8{bottom:269.758533pt;}
.y86{bottom:271.086533pt;}
.y209{bottom:272.419867pt;}
.y1f5{bottom:273.708133pt;}
.yc5{bottom:273.754533pt;}
.yf1{bottom:275.086533pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y233{bottom:279.307067pt;}
.y1a5{bottom:280.419867pt;}
.y1cf{bottom:281.753200pt;}
.y3a{bottom:284.000267pt;}
.y5f{bottom:285.753200pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y135{bottom:287.087867pt;}
.ya7{bottom:287.090533pt;}
.y208{bottom:289.753200pt;}
.y1f4{bottom:289.857467pt;}
.yc4{bottom:291.086533pt;}
.yf0{bottom:292.419867pt;}
.y232{bottom:295.307067pt;}
.y1a4{bottom:297.753200pt;}
.y39{bottom:298.664267pt;}
.y1ce{bottom:299.086533pt;}
.y15f{bottom:299.204533pt;}
.y184{bottom:301.755867pt;}
.y85{bottom:303.086533pt;}
.y5e{bottom:303.094533pt;}
.y15e{bottom:304.414267pt;}
.y161{bottom:304.419867pt;}
.ya6{bottom:304.422533pt;}
.y134{bottom:304.423867pt;}
.y1f3{bottom:306.006800pt;}
.y207{bottom:307.086533pt;}
.yf{bottom:309.452000pt;}
.yef{bottom:309.757200pt;}
.y259{bottom:310.273733pt;}
.y231{bottom:311.301067pt;}
.y1a3{bottom:312.286533pt;}
.y38{bottom:313.328267pt;}
.y1a2{bottom:315.086533pt;}
.y1cd{bottom:316.421200pt;}
.y183{bottom:319.087867pt;}
.y5d{bottom:320.426533pt;}
.yc3{bottom:320.629867pt;}
.y1e8{bottom:321.753200pt;}
.ya5{bottom:321.754533pt;}
.y133{bottom:321.755867pt;}
.y1f2{bottom:322.156133pt;}
.y206{bottom:324.419867pt;}
.y258{bottom:324.937733pt;}
.yee{bottom:327.089200pt;}
.y230{bottom:327.303067pt;}
.y37{bottom:327.992267pt;}
.y159{bottom:329.548533pt;}
.y1a1{bottom:332.419867pt;}
.y157{bottom:332.592533pt;}
.y1cc{bottom:333.753200pt;}
.y182{bottom:336.419867pt;}
.y5c{bottom:337.758533pt;}
.y158{bottom:338.868267pt;}
.ya4{bottom:339.086533pt;}
.y132{bottom:339.087867pt;}
.y205{bottom:341.753200pt;}
.y36{bottom:342.656267pt;}
.y22f{bottom:343.305067pt;}
.ye{bottom:343.809333pt;}
.y1f1{bottom:343.968533pt;}
.yed{bottom:344.421200pt;}
.y1cb{bottom:351.086533pt;}
.y181{bottom:353.753200pt;}
.y5b{bottom:355.090533pt;}
.y257{bottom:355.597733pt;}
.ya3{bottom:356.419867pt;}
.y131{bottom:356.421200pt;}
.y84{bottom:356.425200pt;}
.y1e7{bottom:356.429200pt;}
.y35{bottom:357.320267pt;}
.y204{bottom:359.095867pt;}
.y22e{bottom:359.307067pt;}
.y1a0{bottom:361.013333pt;}
.yec{bottom:361.753200pt;}
.yd{bottom:362.706666pt;}
.yc2{bottom:365.753200pt;}
.y1ca{bottom:368.425200pt;}
.y256{bottom:370.261733pt;}
.y180{bottom:371.086533pt;}
.y34{bottom:371.984267pt;}
.y1f0{bottom:372.421200pt;}
.y5a{bottom:372.422533pt;}
.ya2{bottom:373.753200pt;}
.y130{bottom:373.754533pt;}
.y83{bottom:373.757200pt;}
.y1e6{bottom:373.761200pt;}
.y22d{bottom:375.307067pt;}
.y203{bottom:376.427867pt;}
.yeb{bottom:379.086533pt;}
.yc1{bottom:383.086533pt;}
.y255{bottom:384.925733pt;}
.y1c9{bottom:385.757200pt;}
.y33{bottom:386.648267pt;}
.y17f{bottom:388.419867pt;}
.y1ef{bottom:389.753200pt;}
.y59{bottom:389.754533pt;}
.ya1{bottom:391.086533pt;}
.y82{bottom:391.089200pt;}
.y1e5{bottom:391.093200pt;}
.y22c{bottom:391.303067pt;}
.y202{bottom:393.759867pt;}
.yea{bottom:396.419867pt;}
.y254{bottom:399.589733pt;}
.yc0{bottom:400.419867pt;}
.y32{bottom:401.312267pt;}
.y154{bottom:402.929867pt;}
.y1c8{bottom:403.089200pt;}
.y12f{bottom:405.619867pt;}
.y17e{bottom:405.754533pt;}
.y156{bottom:406.137467pt;}
.y58{bottom:407.086533pt;}
.y22b{bottom:407.305067pt;}
.ya0{bottom:408.419867pt;}
.y81{bottom:408.421200pt;}
.y1e4{bottom:408.425200pt;}
.y201{bottom:411.091867pt;}
.ye9{bottom:413.753200pt;}
.y253{bottom:414.253733pt;}
.y19f{bottom:415.465467pt;}
.y31{bottom:415.976267pt;}
.ybf{bottom:417.754533pt;}
.y1c7{bottom:420.421200pt;}
.y12e{bottom:422.953200pt;}
.y17d{bottom:423.086533pt;}
.y22a{bottom:423.307067pt;}
.y57{bottom:424.419867pt;}
.y1ee{bottom:424.421200pt;}
.y80{bottom:425.753200pt;}
.y1e3{bottom:425.757200pt;}
.y200{bottom:428.423867pt;}
.y252{bottom:428.917733pt;}
.y30{bottom:430.640267pt;}
.ye8{bottom:431.098667pt;}
.ybe{bottom:435.086533pt;}
.y19e{bottom:436.798800pt;}
.y151{bottom:437.109867pt;}
.y1c6{bottom:437.753200pt;}
.y229{bottom:439.307067pt;}
.y17c{bottom:440.419867pt;}
.y56{bottom:441.753200pt;}
.y14f{bottom:443.085867pt;}
.y7f{bottom:443.086533pt;}
.y1e2{bottom:443.089200pt;}
.y251{bottom:443.581733pt;}
.y2f{bottom:445.304267pt;}
.y1ff{bottom:445.755867pt;}
.yc{bottom:446.990669pt;}
.ye7{bottom:448.430667pt;}
.y128{bottom:449.881867pt;}
.ybd{bottom:452.419867pt;}
.y1c5{bottom:455.086533pt;}
.y228{bottom:455.307067pt;}
.y19d{bottom:456.912400pt;}
.y17b{bottom:457.753200pt;}
.y250{bottom:458.245733pt;}
.y55{bottom:459.086533pt;}
.y9f{bottom:460.419867pt;}
.y7e{bottom:460.421200pt;}
.yb{bottom:462.990669pt;}
.y1fe{bottom:463.087867pt;}
.ye6{bottom:465.762667pt;}
.y12d{bottom:468.282933pt;}
.y1ed{bottom:468.629867pt;}
.ybc{bottom:469.754667pt;}
.y227{bottom:471.307067pt;}
.y24f{bottom:472.909733pt;}
.y19c{bottom:473.058133pt;}
.y14c{bottom:473.099200pt;}
.y17a{bottom:475.086533pt;}
.y2e{bottom:475.089067pt;}
.y54{bottom:476.422667pt;}
.y7d{bottom:477.753200pt;}
.y9e{bottom:477.757333pt;}
.ya{bottom:478.990666pt;}
.y1fd{bottom:480.419867pt;}
.y1c4{bottom:481.216267pt;}
.ye5{bottom:483.094667pt;}
.ybb{bottom:487.086667pt;}
.y226{bottom:487.307067pt;}
.y24e{bottom:487.573733pt;}
.y19b{bottom:489.203733pt;}
.y179{bottom:492.420000pt;}
.y53{bottom:493.754667pt;}
.y1c3{bottom:494.549600pt;}
.y9{bottom:494.990666pt;}
.y7c{bottom:495.086667pt;}
.y9d{bottom:495.089333pt;}
.ye4{bottom:500.426667pt;}
.y24d{bottom:502.237733pt;}
.y225{bottom:503.307067pt;}
.yba{bottom:504.420000pt;}
.y19a{bottom:505.349333pt;}
.y1c2{bottom:507.882933pt;}
.y178{bottom:509.756000pt;}
.y52{bottom:511.086667pt;}
.y1e1{bottom:512.420000pt;}
.y9c{bottom:512.421333pt;}
.y127{bottom:512.421600pt;}
.y7b{bottom:512.422667pt;}
.y24c{bottom:516.901733pt;}
.ye3{bottom:517.758667pt;}
.y224{bottom:519.307067pt;}
.y199{bottom:521.495067pt;}
.y177{bottom:527.088000pt;}
.y51{bottom:528.420000pt;}
.y2d{bottom:529.753200pt;}
.y9b{bottom:529.753333pt;}
.y7a{bottom:529.754667pt;}
.y24b{bottom:531.565733pt;}
.y1c1{bottom:533.226933pt;}
.y11f{bottom:533.815200pt;}
.yb9{bottom:533.963200pt;}
.ye2{bottom:535.090667pt;}
.y223{bottom:535.307067pt;}
.y198{bottom:537.640667pt;}
.y176{bottom:544.420000pt;}
.y50{bottom:545.753333pt;}
.y24a{bottom:546.229733pt;}
.y2c{bottom:547.086533pt;}
.y79{bottom:547.086667pt;}
.y1c0{bottom:551.264267pt;}
.y222{bottom:551.307067pt;}
.ye1{bottom:552.422667pt;}
.y126{bottom:552.881600pt;}
.y197{bottom:553.786267pt;}
.y249{bottom:560.893733pt;}
.y4f{bottom:563.086667pt;}
.y2b{bottom:564.419867pt;}
.y78{bottom:564.420000pt;}
.y1e0{bottom:564.426667pt;}
.y9a{bottom:564.429333pt;}
.y221{bottom:567.307067pt;}
.y1bf{bottom:569.299600pt;}
.ye0{bottom:569.754667pt;}
.y196{bottom:569.935600pt;}
.y175{bottom:572.629867pt;}
.y8{bottom:573.786667pt;}
.y248{bottom:575.557733pt;}
.y4e{bottom:580.420000pt;}
.y77{bottom:581.753333pt;}
.yb8{bottom:581.754667pt;}
.y1df{bottom:581.758667pt;}
.y99{bottom:581.761333pt;}
.y220{bottom:583.303067pt;}
.yde{bottom:583.877600pt;}
.ydd{bottom:587.086667pt;}
.y1be{bottom:587.331200pt;}
.ydf{bottom:587.335867pt;}
.y195{bottom:587.968400pt;}
.y7{bottom:592.685334pt;}
.y148{bottom:593.855200pt;}
.y4d{bottom:597.753333pt;}
.y2a{bottom:599.086533pt;}
.y76{bottom:599.086667pt;}
.y11e{bottom:599.090667pt;}
.y98{bottom:599.093333pt;}
.y21f{bottom:599.305067pt;}
.ydb{bottom:601.216800pt;}
.yda{bottom:604.420000pt;}
.ydc{bottom:604.675200pt;}
.y247{bottom:605.338533pt;}
.y1bd{bottom:605.368533pt;}
.y4c{bottom:615.086667pt;}
.y21e{bottom:615.307067pt;}
.y29{bottom:616.419867pt;}
.y75{bottom:616.420000pt;}
.y11d{bottom:616.422667pt;}
.y97{bottom:616.425333pt;}
.yd7{bottom:619.432133pt;}
.y1ec{bottom:621.082000pt;}
.yd9{bottom:621.753333pt;}
.yd6{bottom:621.754667pt;}
.yd8{bottom:622.890400pt;}
.y1bc{bottom:623.405867pt;}
.y246{bottom:624.009200pt;}
.y194{bottom:624.422667pt;}
.y146{bottom:631.063200pt;}
.y21d{bottom:631.307067pt;}
.y4b{bottom:632.420000pt;}
.y28{bottom:633.753200pt;}
.y74{bottom:633.753333pt;}
.y11c{bottom:633.754667pt;}
.y96{bottom:633.757333pt;}
.yd5{bottom:639.086667pt;}
.yd3{bottom:639.088000pt;}
.yd4{bottom:640.242533pt;}
.y1bb{bottom:641.441333pt;}
.y193{bottom:641.754667pt;}
.y143{bottom:645.131200pt;}
.y6{bottom:645.598667pt;}
.y21c{bottom:647.307067pt;}
.y4a{bottom:649.757333pt;}
.y11b{bottom:651.086667pt;}
.y73{bottom:651.089333pt;}
.y145{bottom:651.797867pt;}
.yd2{bottom:656.420667pt;}
.y192{bottom:659.088000pt;}
.y1ba{bottom:659.476667pt;}
.y21b{bottom:663.307067pt;}
.y49{bottom:667.089333pt;}
.y11a{bottom:668.420000pt;}
.y72{bottom:668.421333pt;}
.y3{bottom:668.977329pt;}
.y27{bottom:670.167600pt;}
.y245{bottom:672.912133pt;}
.y191{bottom:676.421333pt;}
.y1b9{bottom:677.512133pt;}
.y21a{bottom:679.297067pt;}
.y140{bottom:679.423200pt;}
.y48{bottom:684.421333pt;}
.y95{bottom:685.753333pt;}
.y119{bottom:685.754667pt;}
.y71{bottom:685.757333pt;}
.yb7{bottom:685.760000pt;}
.yd1{bottom:692.889200pt;}
.y190{bottom:693.753333pt;}
.y219{bottom:695.299067pt;}
.y1b8{bottom:695.547067pt;}
.y47{bottom:701.753333pt;}
.y26{bottom:702.172933pt;}
.y94{bottom:703.086667pt;}
.y70{bottom:703.089333pt;}
.yb6{bottom:703.092000pt;}
.y18f{bottom:711.086667pt;}
.y218{bottom:711.301067pt;}
.y1b7{bottom:713.584400pt;}
.y116{bottom:713.800533pt;}
.y114{bottom:714.556533pt;}
.y13c{bottom:715.249867pt;}
.y46{bottom:719.086667pt;}
.y93{bottom:720.420000pt;}
.y6f{bottom:720.421333pt;}
.yb5{bottom:720.424000pt;}
.y1de{bottom:720.426667pt;}
.y13f{bottom:721.748000pt;}
.yd0{bottom:725.757333pt;}
.y217{bottom:727.303067pt;}
.y244{bottom:727.576267pt;}
.y18e{bottom:728.420000pt;}
.y1b6{bottom:729.733733pt;}
.y45{bottom:736.422667pt;}
.y6e{bottom:737.753333pt;}
.yb4{bottom:737.756000pt;}
.y1dd{bottom:737.758667pt;}
.y1b3{bottom:737.808400pt;}
.y1b5{bottom:743.067067pt;}
.ycf{bottom:743.089333pt;}
.y216{bottom:743.305067pt;}
.y243{bottom:743.576267pt;}
.y18d{bottom:745.753333pt;}
.y110{bottom:750.015200pt;}
.y1b2{bottom:751.141733pt;}
.y44{bottom:753.754667pt;}
.y22{bottom:755.086533pt;}
.y6d{bottom:755.086667pt;}
.yb3{bottom:755.088000pt;}
.y1dc{bottom:755.090667pt;}
.y113{bottom:755.444667pt;}
.y1b4{bottom:759.216400pt;}
.y215{bottom:759.307067pt;}
.y242{bottom:759.570267pt;}
.yce{bottom:760.421333pt;}
.y18c{bottom:763.086667pt;}
.y43{bottom:771.086667pt;}
.y6c{bottom:772.420000pt;}
.y1db{bottom:772.422667pt;}
.y214{bottom:775.307067pt;}
.y1b1{bottom:775.355067pt;}
.y241{bottom:775.572267pt;}
.ycd{bottom:777.753333pt;}
.y18b{bottom:780.420000pt;}
.y2{bottom:781.661334pt;}
.y1b0{bottom:788.688400pt;}
.y6b{bottom:789.753333pt;}
.y92{bottom:789.754667pt;}
.y240{bottom:791.574267pt;}
.y42{bottom:801.753333pt;}
.y174{bottom:801.960533pt;}
.y213{bottom:804.420000pt;}
.ycc{bottom:806.956533pt;}
.y25{bottom:807.086667pt;}
.y23f{bottom:807.576267pt;}
.y18a{bottom:808.516533pt;}
.y1af{bottom:809.753867pt;}
.y24{bottom:824.420000pt;}
.y41{bottom:841.753200pt;}
.y23{bottom:841.753333pt;}
.y10f{bottom:841.753867pt;}
.y1{bottom:859.312000pt;}
.h3c{height:12.200000pt;}
.h3d{height:13.333333pt;}
.h1c{height:15.495507pt;}
.h3b{height:19.998667pt;}
.h2a{height:20.000000pt;}
.h26{height:21.066667pt;}
.h24{height:21.141141pt;}
.h27{height:21.156008pt;}
.h33{height:21.343702pt;}
.h32{height:21.358711pt;}
.h1e{height:21.378141pt;}
.h30{height:21.393174pt;}
.h1a{height:21.408506pt;}
.h41{height:21.592913pt;}
.h20{height:21.737269pt;}
.h3f{height:25.533333pt;}
.h37{height:27.914040pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hc{height:29.456000pt;}
.h45{height:33.493333pt;}
.h25{height:36.568359pt;}
.h28{height:36.594076pt;}
.h34{height:36.919045pt;}
.h1f{height:36.978295pt;}
.h1d{height:37.004300pt;}
.h3a{height:37.031250pt;}
.h17{height:37.057292pt;}
.h2c{height:37.182667pt;}
.h42{height:37.349674pt;}
.h35{height:37.539244pt;}
.h21{height:37.599489pt;}
.h1b{height:37.653333pt;}
.h23{height:37.810348pt;}
.h19{height:38.281014pt;}
.hd{height:39.274667pt;}
.h29{height:39.500000pt;}
.h14{height:39.509333pt;}
.h4a{height:39.516800pt;}
.h4b{height:39.517333pt;}
.h49{height:39.518933pt;}
.h47{height:39.523733pt;}
.h46{height:39.524267pt;}
.h4c{height:39.532267pt;}
.h36{height:39.878800pt;}
.h22{height:39.942800pt;}
.h38{height:39.984000pt;}
.h2b{height:40.000000pt;}
.h3e{height:40.648438pt;}
.h7{height:40.853333pt;}
.h39{height:41.866667pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h31{height:43.866667pt;}
.h13{height:44.448000pt;}
.h18{height:45.981867pt;}
.h16{height:46.053333pt;}
.h2d{height:46.600000pt;}
.h2e{height:47.432000pt;}
.h15{height:47.880000pt;}
.hf{height:48.928000pt;}
.h2{height:49.024000pt;}
.h10{height:49.093333pt;}
.h44{height:51.892818pt;}
.h43{height:51.893351pt;}
.h2f{height:56.918400pt;}
.h40{height:57.954000pt;}
.h12{height:58.613333pt;}
.h11{height:59.264000pt;}
.h48{height:60.160000pt;}
.h5{height:69.450667pt;}
.he{height:70.402667pt;}
.h4{height:105.826671pt;}
.ha{height:907.085867pt;}
.hb{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.we{width:13.333333pt;}
.w11{width:14.400000pt;}
.wc{width:16.066667pt;}
.w10{width:17.200000pt;}
.w8{width:17.201333pt;}
.wd{width:20.000000pt;}
.w15{width:41.066667pt;}
.w7{width:59.933333pt;}
.wf{width:76.000000pt;}
.w13{width:81.000000pt;}
.wb{width:112.066667pt;}
.w12{width:113.201333pt;}
.w14{width:134.866667pt;}
.w6{width:277.466667pt;}
.wa{width:288.000000pt;}
.w9{width:338.466667pt;}
.w2{width:566.928019pt;}
.w4{width:634.666667pt;}
.w3{width:634.960000pt;}
.w5{width:634.960533pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:1.632267pt;}
.x29{left:2.668267pt;}
.x2e{left:7.979867pt;}
.x43{left:9.338667pt;}
.x5a{left:10.418133pt;}
.x38{left:12.234782pt;}
.x3e{left:14.295200pt;}
.x47{left:16.875333pt;}
.x33{left:19.738004pt;}
.x36{left:23.854589pt;}
.x2b{left:26.677733pt;}
.x2a{left:27.680267pt;}
.x3b{left:32.252491pt;}
.x3d{left:36.588533pt;}
.x39{left:37.633121pt;}
.x58{left:42.324800pt;}
.x37{left:50.585475pt;}
.x35{left:58.009751pt;}
.x4c{left:68.041867pt;}
.x6{left:72.703467pt;}
.x3c{left:74.085254pt;}
.x7{left:79.370133pt;}
.x32{left:80.327867pt;}
.x28{left:81.664533pt;}
.x60{left:83.661200pt;}
.x34{left:86.782400pt;}
.x64{left:87.987067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x65{left:97.267067pt;}
.x30{left:98.233867pt;}
.x63{left:99.677733pt;}
.x6f{left:103.214800pt;}
.x8{left:111.367600pt;}
.x5c{left:113.705867pt;}
.x40{left:115.135333pt;}
.x50{left:118.149867pt;}
.x61{left:120.622400pt;}
.x41{left:122.098400pt;}
.x62{left:127.578133pt;}
.x5d{left:129.713067pt;}
.x51{left:132.550400pt;}
.x23{left:137.941600pt;}
.x3f{left:145.822667pt;}
.x24{left:148.568800pt;}
.x45{left:154.414800pt;}
.x4d{left:155.396400pt;}
.x6c{left:163.470667pt;}
.x5b{left:164.863733pt;}
.xa{left:165.905467pt;}
.x3a{left:173.480000pt;}
.x27{left:178.746667pt;}
.x4{left:180.874667pt;}
.x67{left:198.227067pt;}
.x68{left:206.600400pt;}
.x66{left:214.184400pt;}
.x56{left:218.721867pt;}
.x6d{left:227.097733pt;}
.x6e{left:231.053467pt;}
.x46{left:234.321867pt;}
.x48{left:236.572133pt;}
.x31{left:242.357067pt;}
.x18{left:243.576800pt;}
.x49{left:254.603733pt;}
.x1a{left:257.721558pt;}
.x42{left:261.447200pt;}
.xb{left:265.480267pt;}
.x21{left:268.948603pt;}
.xf{left:274.344000pt;}
.x54{left:279.480533pt;}
.xe{left:281.707600pt;}
.x10{left:286.674933pt;}
.x55{left:289.397067pt;}
.x1f{left:290.853423pt;}
.x1c{left:296.965467pt;}
.x25{left:301.456667pt;}
.x52{left:303.076533pt;}
.x26{left:310.809067pt;}
.x53{left:320.276400pt;}
.x19{left:321.932800pt;}
.x1d{left:324.845733pt;}
.x16{left:328.674000pt;}
.x5{left:330.708667pt;}
.x57{left:331.922533pt;}
.x20{left:335.288915pt;}
.x69{left:338.888400pt;}
.x1b{left:339.862063pt;}
.x1e{left:341.119869pt;}
.x17{left:345.362968pt;}
.x2c{left:352.280400pt;}
.x4e{left:365.419200pt;}
.x4f{left:382.754533pt;}
.x5e{left:384.913733pt;}
.x2d{left:387.796000pt;}
.x11{left:399.336133pt;}
.x3{left:404.408000pt;}
.x2f{left:405.340133pt;}
.x12{left:413.370933pt;}
.x59{left:416.238267pt;}
.xc{left:454.112400pt;}
.x6a{left:462.803067pt;}
.xd{left:465.544000pt;}
.x14{left:468.201867pt;}
.x5f{left:469.229467pt;}
.x6b{left:471.176400pt;}
.x13{left:475.565467pt;}
.x15{left:480.532800pt;}
.x4a{left:494.047200pt;}
.x4b{left:507.661600pt;}
.x22{left:529.270933pt;}
.x9{left:543.217467pt;}
.x70{left:550.918800pt;}
}




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