
    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_de6fc4b394f5f16cdec84430.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957000;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_c4974ff6aa0381f6a5f06b44.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_b57170a69f494df4ab1134c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_7146de8e6bf1fa638e6c0b62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_dff6d17a8e2b56a41b130a72.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.165000;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_7586d0adce1e0d03eaf22957.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.142000;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_4f1059691be52a3fef8966b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.785000;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_81ad6d336d206db7b6e35e21.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937500;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_73c056eb6bf56ea4ae71645c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.165000;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_e15433f60dee24ec6f5659a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142000;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;}
.m8b{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m24{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247739,0.000000,0.000000,0.250000,0,0);}
.m8c{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);}
.m35{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.247948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247948,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248189,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248236,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);}
.md5{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);}
.m2{transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.248387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248387,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248559,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248736,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248784,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248816,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248834,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249173,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249266,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249307,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249352,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.249371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249371,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249552,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,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);}
.mf8{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m37{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);}
.m6f{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250187,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250387,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250542,0.000000,0.000000,0.250000,0,0);}
.m6d{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);}
.mda{transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.250729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250729,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.mf3{transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250868,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);}
.m5a{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);}
.m98{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.251068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251068,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251334,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.251387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251387,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251693,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.251711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251711,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.252223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252223,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v9{vertical-align:-19.980000px;}
.vb{vertical-align:-15.480000px;}
.v5{vertical-align:-4.512000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.512000px;}
.v3{vertical-align:18.981000px;}
.v6{vertical-align:19.992000px;}
.v1{vertical-align:21.967200px;}
.v8{vertical-align:25.488000px;}
.v4{vertical-align:30.000000px;}
.va{vertical-align:34.512000px;}
.ls42{letter-spacing:-5.400000px;}
.ls71{letter-spacing:-4.560000px;}
.ls63{letter-spacing:-3.960000px;}
.ls4b{letter-spacing:-3.510000px;}
.ls28{letter-spacing:-3.300000px;}
.ls58{letter-spacing:-3.234000px;}
.ls4c{letter-spacing:-3.072000px;}
.ls29{letter-spacing:-2.904000px;}
.ls4f{letter-spacing:-2.448000px;}
.ls59{letter-spacing:-2.310000px;}
.ls64{letter-spacing:-2.280000px;}
.ls84{letter-spacing:-1.995000px;}
.ls85{letter-spacing:-1.938000px;}
.ls82{letter-spacing:-1.890000px;}
.ls34{letter-spacing:-1.800000px;}
.ls1c{letter-spacing:-1.620000px;}
.ls79{letter-spacing:-1.350000px;}
.ls1d{letter-spacing:-1.320000px;}
.ls18{letter-spacing:-1.056000px;}
.ls15{letter-spacing:-0.990000px;}
.ls17{letter-spacing:-0.924000px;}
.ls73{letter-spacing:-0.912000px;}
.ls56{letter-spacing:-0.840000px;}
.ls4d{letter-spacing:-0.810000px;}
.ls16{letter-spacing:-0.726000px;}
.ls4e{letter-spacing:-0.672000px;}
.ls72{letter-spacing:-0.627000px;}
.ls27{letter-spacing:-0.540000px;}
.ls54{letter-spacing:-0.538692px;}
.ls1e{letter-spacing:-0.462000px;}
.ls6f{letter-spacing:-0.456000px;}
.ls5b{letter-spacing:-0.420000px;}
.ls68{letter-spacing:-0.399000px;}
.lsa{letter-spacing:-0.396000px;}
.ls26{letter-spacing:-0.360000px;}
.ls7c{letter-spacing:-0.342000px;}
.ls14{letter-spacing:-0.330000px;}
.ls61{letter-spacing:-0.300000px;}
.ls7b{letter-spacing:-0.285000px;}
.ls2c{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.264000px;}
.ls5f{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.228000px;}
.lsb{letter-spacing:-0.198000px;}
.ls57{letter-spacing:-0.180000px;}
.ls7a{letter-spacing:-0.171000px;}
.ls32{letter-spacing:-0.153912px;}
.lsc{letter-spacing:-0.132000px;}
.ls35{letter-spacing:-0.120000px;}
.ls12{letter-spacing:-0.115434px;}
.ls7{letter-spacing:-0.114000px;}
.ls55{letter-spacing:-0.076956px;}
.ls9{letter-spacing:-0.066000px;}
.ls33{letter-spacing:-0.060000px;}
.ls70{letter-spacing:-0.057000px;}
.ls38{letter-spacing:-0.038478px;}
.ls6{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000090px;}
.ls2e{letter-spacing:0.000097px;}
.ls1a{letter-spacing:0.010800px;}
.ls50{letter-spacing:0.013200px;}
.ls75{letter-spacing:0.025800px;}
.ls13{letter-spacing:0.033000px;}
.ls44{letter-spacing:0.038478px;}
.ls7d{letter-spacing:0.057000px;}
.ls4{letter-spacing:0.066000px;}
.ls5e{letter-spacing:0.076956px;}
.ls5d{letter-spacing:0.078000px;}
.ls76{letter-spacing:0.085500px;}
.ls69{letter-spacing:0.114000px;}
.ls37{letter-spacing:0.115434px;}
.ls10{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.132000px;}
.ls36{letter-spacing:0.138600px;}
.ls0{letter-spacing:0.142500px;}
.ls45{letter-spacing:0.153912px;}
.ls67{letter-spacing:0.165300px;}
.ls66{letter-spacing:0.171000px;}
.ls5c{letter-spacing:0.180000px;}
.ls7e{letter-spacing:0.188100px;}
.ls3{letter-spacing:0.198000px;}
.ls51{letter-spacing:0.210000px;}
.ls81{letter-spacing:0.216600px;}
.ls60{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.264000px;}
.ls53{letter-spacing:0.270000px;}
.ls78{letter-spacing:0.285000px;}
.ls5a{letter-spacing:0.300000px;}
.ls23{letter-spacing:0.307302px;}
.ls2f{letter-spacing:0.307440px;}
.ls31{letter-spacing:0.307824px;}
.ls62{letter-spacing:0.330000px;}
.ls77{letter-spacing:0.342000px;}
.ls52{letter-spacing:0.360000px;}
.lse{letter-spacing:0.396000px;}
.ls6d{letter-spacing:0.399000px;}
.ls6b{letter-spacing:0.465234px;}
.ls74{letter-spacing:0.478800px;}
.ls24{letter-spacing:0.508200px;}
.ls20{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.534600px;}
.ls43{letter-spacing:0.538692px;}
.ls6e{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.561000px;}
.ls80{letter-spacing:0.570000px;}
.ls21{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.600000px;}
.ls41{letter-spacing:0.615648px;}
.ls7f{letter-spacing:0.627000px;}
.lsf{letter-spacing:0.660000px;}
.ls2d{letter-spacing:0.679800px;}
.ls65{letter-spacing:0.684000px;}
.ls6c{letter-spacing:0.712500px;}
.ls2{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.726000px;}
.ls83{letter-spacing:0.741000px;}
.ls3c{letter-spacing:0.792000px;}
.ls6a{letter-spacing:0.798000px;}
.ls3b{letter-spacing:0.924000px;}
.ls2b{letter-spacing:0.990000px;}
.ls3f{letter-spacing:1.023000px;}
.ls3d{letter-spacing:1.056000px;}
.ls11{letter-spacing:1.080000px;}
.ls39{letter-spacing:1.188000px;}
.ls5{letter-spacing:1.350000px;}
.ls40{letter-spacing:1.386000px;}
.ls3a{letter-spacing:1.452000px;}
.ls30{letter-spacing:1.890000px;}
.ls3e{letter-spacing:4.996200px;}
.ls49{letter-spacing:146.544000px;}
.ls4a{letter-spacing:147.840000px;}
.ls46{letter-spacing:149.040000px;}
.ls47{letter-spacing:151.248000px;}
.ls48{letter-spacing:152.592000px;}
.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;}
}
.ws16a{word-spacing:-57.000000px;}
.ws1{word-spacing:-16.632000px;}
.ws124{word-spacing:-16.302000px;}
.wsaa{word-spacing:-14.916000px;}
.ws86{word-spacing:-14.850000px;}
.wsb2{word-spacing:-14.784000px;}
.ws89{word-spacing:-14.688000px;}
.ws8a{word-spacing:-14.454000px;}
.ws6a{word-spacing:-14.388000px;}
.ws122{word-spacing:-14.190000px;}
.ws193{word-spacing:-14.148000px;}
.ws9e{word-spacing:-14.058000px;}
.wsf6{word-spacing:-13.992000px;}
.wsb3{word-spacing:-13.926000px;}
.ws3e{word-spacing:-13.893000px;}
.ws1e{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws9b{word-spacing:-13.794000px;}
.ws54{word-spacing:-13.728000px;}
.ws12e{word-spacing:-13.662000px;}
.ws7b{word-spacing:-13.530000px;}
.wsbb{word-spacing:-13.464000px;}
.ws6b{word-spacing:-13.398000px;}
.ws9f{word-spacing:-13.068000px;}
.wsf7{word-spacing:-13.002000px;}
.ws10f{word-spacing:-12.900000px;}
.ws3f{word-spacing:-12.870000px;}
.ws9c{word-spacing:-12.804000px;}
.wsa8{word-spacing:-12.798000px;}
.ws116{word-spacing:-12.780000px;}
.ws144{word-spacing:-12.768000px;}
.ws7d{word-spacing:-12.738000px;}
.ws17d{word-spacing:-12.711000px;}
.ws12f{word-spacing:-12.672000px;}
.ws137{word-spacing:-12.654000px;}
.wsa9{word-spacing:-12.606000px;}
.ws20{word-spacing:-12.600000px;}
.ws180{word-spacing:-12.597000px;}
.ws53{word-spacing:-12.540000px;}
.wsa0{word-spacing:-12.480000px;}
.ws182{word-spacing:-12.369000px;}
.ws114{word-spacing:-12.360000px;}
.ws8e{word-spacing:-12.300000px;}
.ws7a{word-spacing:-12.258000px;}
.ws181{word-spacing:-12.255000px;}
.ws138{word-spacing:-12.141000px;}
.ws123{word-spacing:-12.120000px;}
.ws17e{word-spacing:-12.084000px;}
.ws18c{word-spacing:-12.027000px;}
.ws135{word-spacing:-11.970000px;}
.ws147{word-spacing:-11.913000px;}
.ws117{word-spacing:-11.880000px;}
.ws146{word-spacing:-11.856000px;}
.ws170{word-spacing:-11.799000px;}
.wsfe{word-spacing:-11.760000px;}
.ws148{word-spacing:-11.742000px;}
.ws118{word-spacing:-11.700000px;}
.ws88{word-spacing:-11.685000px;}
.wsa1{word-spacing:-11.640000px;}
.ws136{word-spacing:-11.571000px;}
.ws10d{word-spacing:-11.550000px;}
.ws143{word-spacing:-11.514000px;}
.ws115{word-spacing:-11.460000px;}
.ws169{word-spacing:-11.448000px;}
.ws139{word-spacing:-11.286000px;}
.ws52{word-spacing:-11.178000px;}
.ws17f{word-spacing:-11.172000px;}
.ws134{word-spacing:-11.115000px;}
.ws7c{word-spacing:-10.956000px;}
.ws183{word-spacing:-10.944000px;}
.ws149{word-spacing:-10.887000px;}
.wsd8{word-spacing:-10.830000px;}
.ws8d{word-spacing:-10.800000px;}
.ws112{word-spacing:-10.560000px;}
.wsd1{word-spacing:-10.080000px;}
.ws18e{word-spacing:-10.032000px;}
.ws18d{word-spacing:-9.975000px;}
.wsff{word-spacing:-9.840000px;}
.ws12d{word-spacing:-9.405000px;}
.wsb1{word-spacing:-8.619072px;}
.ws8b{word-spacing:-8.388204px;}
.wsba{word-spacing:-8.234292px;}
.ws9a{word-spacing:-8.195814px;}
.ws113{word-spacing:-8.157336px;}
.ws10e{word-spacing:-8.118858px;}
.ws2{word-spacing:-8.080380px;}
.ws9d{word-spacing:-8.041902px;}
.wsfd{word-spacing:-8.003424px;}
.ws1f{word-spacing:-7.964946px;}
.ws145{word-spacing:-7.443744px;}
.ws8c{word-spacing:-7.345800px;}
.ws16c{word-spacing:-6.978510px;}
.ws87{word-spacing:-6.812355px;}
.ws16b{word-spacing:-6.480045px;}
.ws14d{word-spacing:-3.192000px;}
.ws5a{word-spacing:-2.970000px;}
.wsac{word-spacing:-2.904000px;}
.ws13c{word-spacing:-2.850000px;}
.ws17{word-spacing:-2.838000px;}
.wsd{word-spacing:-2.772000px;}
.ws63{word-spacing:-2.706000px;}
.ws111{word-spacing:-2.700000px;}
.ws40{word-spacing:-2.640000px;}
.ws11a{word-spacing:-2.580000px;}
.ws4c{word-spacing:-2.574000px;}
.ws161{word-spacing:-2.565000px;}
.ws78{word-spacing:-2.520000px;}
.ws1a{word-spacing:-2.508000px;}
.ws166{word-spacing:-2.451000px;}
.ws49{word-spacing:-2.442000px;}
.ws6{word-spacing:-2.394000px;}
.ws4d{word-spacing:-2.376000px;}
.ws79{word-spacing:-2.340000px;}
.ws5c{word-spacing:-2.310000px;}
.ws178{word-spacing:-2.280000px;}
.ws2c{word-spacing:-2.244000px;}
.ws153{word-spacing:-2.223000px;}
.wsf9{word-spacing:-2.220000px;}
.ws4e{word-spacing:-2.178000px;}
.ws2a{word-spacing:-2.112000px;}
.ws2e{word-spacing:-2.046000px;}
.ws107{word-spacing:-2.040000px;}
.ws7{word-spacing:-1.995000px;}
.ws27{word-spacing:-1.980000px;}
.ws4{word-spacing:-1.938000px;}
.ws6c{word-spacing:-1.914000px;}
.ws162{word-spacing:-1.881000px;}
.wsb9{word-spacing:-1.860000px;}
.ws16{word-spacing:-1.848000px;}
.wsf8{word-spacing:-1.800000px;}
.ws6d{word-spacing:-1.782000px;}
.ws158{word-spacing:-1.767000px;}
.ws121{word-spacing:-1.740000px;}
.ws4a{word-spacing:-1.716000px;}
.wsf2{word-spacing:-1.680000px;}
.ws3a{word-spacing:-1.650000px;}
.ws14f{word-spacing:-1.596000px;}
.ws5f{word-spacing:-1.584000px;}
.wsa4{word-spacing:-1.518000px;}
.ws106{word-spacing:-1.500000px;}
.ws150{word-spacing:-1.482000px;}
.wsad{word-spacing:-1.452000px;}
.wsdb{word-spacing:-1.440000px;}
.ws84{word-spacing:-1.386000px;}
.ws110{word-spacing:-1.380000px;}
.ws18a{word-spacing:-1.368000px;}
.ws1d{word-spacing:-1.350000px;}
.ws60{word-spacing:-1.320000px;}
.wsa3{word-spacing:-1.308252px;}
.ws97{word-spacing:-1.260000px;}
.ws4b{word-spacing:-1.254000px;}
.ws173{word-spacing:-1.197000px;}
.ws51{word-spacing:-1.188000px;}
.ws77{word-spacing:-1.140000px;}
.wsbc{word-spacing:-1.122000px;}
.wsb7{word-spacing:-1.080000px;}
.ws32{word-spacing:-1.056000px;}
.ws108{word-spacing:-1.020000px;}
.ws23{word-spacing:-0.990000px;}
.wsa5{word-spacing:-0.960000px;}
.ws83{word-spacing:-0.924000px;}
.ws157{word-spacing:-0.912000px;}
.wsa2{word-spacing:-0.858000px;}
.ws8{word-spacing:-0.855000px;}
.ws68{word-spacing:-0.840000px;}
.ws15b{word-spacing:-0.798000px;}
.ws12{word-spacing:-0.792000px;}
.wsfa{word-spacing:-0.780000px;}
.ws11{word-spacing:-0.726000px;}
.ws7f{word-spacing:-0.720000px;}
.ws140{word-spacing:-0.684000px;}
.ws36{word-spacing:-0.660000px;}
.wsae{word-spacing:-0.615648px;}
.wsc{word-spacing:-0.600000px;}
.ws13{word-spacing:-0.594000px;}
.ws14e{word-spacing:-0.570000px;}
.wsfc{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.528000px;}
.ws188{word-spacing:-0.513000px;}
.wsd9{word-spacing:-0.480000px;}
.ws15a{word-spacing:-0.465234px;}
.wsb6{word-spacing:-0.462000px;}
.ws187{word-spacing:-0.399000px;}
.ws1b{word-spacing:-0.396000px;}
.ws94{word-spacing:-0.360000px;}
.ws191{word-spacing:-0.342000px;}
.ws61{word-spacing:-0.330000px;}
.ws93{word-spacing:-0.264000px;}
.ws67{word-spacing:-0.240000px;}
.ws8f{word-spacing:-0.198000px;}
.ws171{word-spacing:-0.171000px;}
.ws26{word-spacing:-0.132000px;}
.ws126{word-spacing:-0.120000px;}
.wse{word-spacing:-0.066000px;}
.ws190{word-spacing:-0.057000px;}
.wsb4{word-spacing:-0.038478px;}
.ws3{word-spacing:0.000000px;}
.wsa6{word-spacing:0.060000px;}
.ws129{word-spacing:0.066000px;}
.ws130{word-spacing:0.076956px;}
.ws141{word-spacing:0.114000px;}
.ws128{word-spacing:0.115434px;}
.ws35{word-spacing:0.132000px;}
.ws92{word-spacing:0.153912px;}
.ws160{word-spacing:0.171000px;}
.ws10a{word-spacing:0.180000px;}
.ws5d{word-spacing:0.198000px;}
.ws151{word-spacing:0.228000px;}
.ws10b{word-spacing:0.240000px;}
.ws5b{word-spacing:0.264000px;}
.ws58{word-spacing:0.330000px;}
.ws15f{word-spacing:0.342000px;}
.wsa7{word-spacing:0.360000px;}
.wsbe{word-spacing:0.396000px;}
.ws13d{word-spacing:0.399000px;}
.ws7e{word-spacing:0.462000px;}
.ws16f{word-spacing:0.513000px;}
.ws55{word-spacing:0.528000px;}
.ws105{word-spacing:0.538692px;}
.ws154{word-spacing:0.570000px;}
.ws37{word-spacing:0.594000px;}
.ws167{word-spacing:0.627000px;}
.ws15{word-spacing:0.660000px;}
.ws16e{word-spacing:0.684000px;}
.ws46{word-spacing:0.726000px;}
.ws16d{word-spacing:0.741000px;}
.ws91{word-spacing:0.792000px;}
.ws9{word-spacing:0.798000px;}
.ws11c{word-spacing:0.840000px;}
.ws152{word-spacing:0.855000px;}
.ws38{word-spacing:0.858000px;}
.ws11f{word-spacing:0.900000px;}
.ws168{word-spacing:0.912000px;}
.ws73{word-spacing:0.924000px;}
.ws13f{word-spacing:0.969000px;}
.ws2d{word-spacing:0.990000px;}
.ws59{word-spacing:1.056000px;}
.ws75{word-spacing:1.122000px;}
.ws98{word-spacing:1.140000px;}
.ws2f{word-spacing:1.188000px;}
.ws80{word-spacing:1.254000px;}
.ws96{word-spacing:1.260000px;}
.ws50{word-spacing:1.320000px;}
.ws2b{word-spacing:1.386000px;}
.ws18b{word-spacing:1.425000px;}
.ws133{word-spacing:1.440000px;}
.ws18{word-spacing:1.452000px;}
.ws5{word-spacing:1.482000px;}
.ws82{word-spacing:1.518000px;}
.ws11b{word-spacing:1.560000px;}
.ws56{word-spacing:1.584000px;}
.ws15e{word-spacing:1.596000px;}
.ws11d{word-spacing:1.620000px;}
.ws34{word-spacing:1.650000px;}
.ws17a{word-spacing:1.653000px;}
.ws47{word-spacing:1.716000px;}
.ws13a{word-spacing:1.767000px;}
.ws119{word-spacing:1.782000px;}
.ws14c{word-spacing:1.824000px;}
.wsbd{word-spacing:1.848000px;}
.ws177{word-spacing:1.881000px;}
.wsf1{word-spacing:1.914000px;}
.ws132{word-spacing:1.920000px;}
.ws175{word-spacing:1.938000px;}
.ws3b{word-spacing:1.980000px;}
.ws41{word-spacing:2.046000px;}
.ws13b{word-spacing:2.109000px;}
.ws6f{word-spacing:2.112000px;}
.ws155{word-spacing:2.166000px;}
.ws21{word-spacing:2.178000px;}
.ws76{word-spacing:2.244000px;}
.wsb8{word-spacing:2.280000px;}
.ws39{word-spacing:2.310000px;}
.ws156{word-spacing:2.337000px;}
.ws109{word-spacing:2.340000px;}
.ws48{word-spacing:2.376000px;}
.wsa{word-spacing:2.394000px;}
.ws74{word-spacing:2.442000px;}
.ws22{word-spacing:2.508000px;}
.wsfb{word-spacing:2.520000px;}
.ws33{word-spacing:2.574000px;}
.ws66{word-spacing:2.580000px;}
.ws31{word-spacing:2.640000px;}
.ws64{word-spacing:2.706000px;}
.ws127{word-spacing:2.760000px;}
.ws65{word-spacing:2.772000px;}
.ws24{word-spacing:2.838000px;}
.ws176{word-spacing:2.850000px;}
.ws4f{word-spacing:2.904000px;}
.ws184{word-spacing:2.964000px;}
.ws45{word-spacing:2.970000px;}
.ws189{word-spacing:3.021000px;}
.ws5e{word-spacing:3.036000px;}
.ws71{word-spacing:3.102000px;}
.ws14{word-spacing:3.168000px;}
.ws163{word-spacing:3.192000px;}
.ws19{word-spacing:3.234000px;}
.ws81{word-spacing:3.300000px;}
.ws179{word-spacing:3.306000px;}
.ws10{word-spacing:3.366000px;}
.ws164{word-spacing:3.420000px;}
.ws14a{word-spacing:3.477000px;}
.ws29{word-spacing:3.498000px;}
.ws174{word-spacing:3.534000px;}
.ws11e{word-spacing:3.540000px;}
.ws44{word-spacing:3.564000px;}
.wsf{word-spacing:3.630000px;}
.ws14b{word-spacing:3.648000px;}
.ws57{word-spacing:3.696000px;}
.ws172{word-spacing:3.705000px;}
.wsab{word-spacing:3.762000px;}
.ws17b{word-spacing:3.819000px;}
.wsb5{word-spacing:3.828000px;}
.ws95{word-spacing:3.840000px;}
.ws90{word-spacing:3.894000px;}
.wsb{word-spacing:3.933000px;}
.ws42{word-spacing:3.960000px;}
.ws18f{word-spacing:3.990000px;}
.ws72{word-spacing:4.026000px;}
.ws12a{word-spacing:4.080000px;}
.ws30{word-spacing:4.092000px;}
.ws186{word-spacing:4.104000px;}
.ws3c{word-spacing:4.140000px;}
.wsf0{word-spacing:4.158000px;}
.ws62{word-spacing:4.224000px;}
.ws6e{word-spacing:4.290000px;}
.ws13e{word-spacing:4.332000px;}
.ws70{word-spacing:4.356000px;}
.ws28{word-spacing:4.422000px;}
.ws125{word-spacing:4.488000px;}
.ws185{word-spacing:4.503000px;}
.ws1c{word-spacing:4.554000px;}
.ws25{word-spacing:4.620000px;}
.ws15d{word-spacing:4.674000px;}
.wsf4{word-spacing:4.752000px;}
.ws15c{word-spacing:5.016000px;}
.ws159{word-spacing:5.358000px;}
.wsaf{word-spacing:5.610000px;}
.ws12c{word-spacing:7.920000px;}
.ws165{word-spacing:7.980000px;}
.wscd{word-spacing:55.278480px;}
.wsda{word-spacing:55.279080px;}
.wsc2{word-spacing:61.296000px;}
.wsd0{word-spacing:62.832000px;}
.wsc9{word-spacing:63.168000px;}
.wsc5{word-spacing:64.176000px;}
.wse6{word-spacing:66.048000px;}
.wsc4{word-spacing:67.344000px;}
.wsef{word-spacing:90.480000px;}
.ws104{word-spacing:106.678740px;}
.wsc0{word-spacing:108.576000px;}
.wsd3{word-spacing:110.208000px;}
.wsd7{word-spacing:114.672000px;}
.wsed{word-spacing:114.912000px;}
.wsea{word-spacing:115.104000px;}
.wse8{word-spacing:115.488000px;}
.wsca{word-spacing:117.600000px;}
.wsde{word-spacing:119.232000px;}
.wscb{word-spacing:120.432000px;}
.wse5{word-spacing:120.768000px;}
.wsd6{word-spacing:120.864000px;}
.wsce{word-spacing:124.800000px;}
.wse9{word-spacing:124.850880px;}
.wsc8{word-spacing:126.240000px;}
.wsd2{word-spacing:126.899460px;}
.wsc6{word-spacing:130.224000px;}
.wse7{word-spacing:131.712000px;}
.wsdf{word-spacing:133.152000px;}
.wse2{word-spacing:135.408000px;}
.wscc{word-spacing:136.800000px;}
.wsc7{word-spacing:137.904000px;}
.wsec{word-spacing:138.192000px;}
.wse3{word-spacing:138.720000px;}
.wse4{word-spacing:140.880000px;}
.wse1{word-spacing:141.024000px;}
.wsc3{word-spacing:141.216000px;}
.wse0{word-spacing:142.800000px;}
.wsd4{word-spacing:147.024000px;}
.ws100{word-spacing:164.880000px;}
.wsc1{word-spacing:225.888000px;}
.wsf3{word-spacing:300.388500px;}
.wsdd{word-spacing:300.389100px;}
.ws103{word-spacing:440.592000px;}
.wsd5{word-spacing:525.024000px;}
.wscf{word-spacing:638.640000px;}
.wseb{word-spacing:872.784000px;}
.wsee{word-spacing:963.936000px;}
.ws102{word-spacing:1061.472000px;}
.ws101{word-spacing:1219.344000px;}
.ws194{word-spacing:1879.364400px;}
.ws192{word-spacing:1884.440400px;}
.ws131{word-spacing:1897.670400px;}
.wsf5{word-spacing:1897.886400px;}
.ws120{word-spacing:1900.748400px;}
.ws3d{word-spacing:1901.720400px;}
.ws69{word-spacing:1901.936400px;}
.ws12b{word-spacing:1902.152400px;}
.ws85{word-spacing:1902.746400px;}
.ws142{word-spacing:1905.230400px;}
.ws10c{word-spacing:1907.066400px;}
.ws99{word-spacing:1907.876400px;}
.wsdc{word-spacing:1908.632400px;}
.ws17c{word-spacing:1909.442400px;}
.wsbf{word-spacing:1916.516400px;}
.wsb0{word-spacing:1920.998400px;}
._e{margin-left:-2620.296000px;}
._15{margin-left:-2618.676000px;}
._11{margin-left:-2617.596000px;}
._d{margin-left:-18.612000px;}
._1d{margin-left:-17.207400px;}
._1f{margin-left:-16.069200px;}
._9{margin-left:-14.364000px;}
._17{margin-left:-13.222800px;}
._a{margin-left:-12.172500px;}
._2{margin-left:-10.710000px;}
._7{margin-left:-9.046200px;}
._18{margin-left:-7.587000px;}
._c{margin-left:-6.482400px;}
._8{margin-left:-5.130000px;}
._4{margin-left:-4.069800px;}
._0{margin-left:-2.550000px;}
._1{margin-left:-1.030200px;}
._3{width:1.020000px;}
._5{width:3.009000px;}
._6{width:4.275000px;}
._b{width:5.396400px;}
._16{width:6.732000px;}
._20{width:7.742400px;}
._e5{width:16.302000px;}
._d1{width:24.000000px;}
._a2{width:27.180000px;}
._e4{width:28.560000px;}
._1a{width:30.120000px;}
._d0{width:31.320000px;}
._9f{width:32.340000px;}
._e7{width:33.360000px;}
._1e{width:34.680000px;}
._9e{width:35.700000px;}
._22{width:37.260000px;}
._ce{width:39.360000px;}
._1c{width:40.800000px;}
._e6{width:43.020000px;}
._21{width:44.040000px;}
._24{width:48.576000px;}
._1b{width:49.980000px;}
._96{width:52.272000px;}
._10{width:55.440000px;}
._19{width:56.640000px;}
._12{width:59.760000px;}
._14{width:61.140000px;}
._13{width:64.200000px;}
._f{width:66.480000px;}
._6c{width:67.824000px;}
._5c{width:69.264000px;}
._2f{width:70.464000px;}
._9b{width:72.310200px;}
._88{width:73.680000px;}
._4e{width:74.950200px;}
._2a{width:77.328000px;}
._e2{width:81.120000px;}
._e0{width:82.228800px;}
._e3{width:83.908200px;}
._df{width:85.252800px;}
._c2{width:90.547800px;}
._e1{width:97.494000px;}
._29{width:100.224000px;}
._28{width:104.742000px;}
._2c{width:112.560000px;}
._d6{width:116.160000px;}
._d5{width:119.593200px;}
._2b{width:122.724000px;}
._a6{width:123.840000px;}
._a3{width:125.664000px;}
._a9{width:127.008000px;}
._80{width:128.304000px;}
._78{width:130.080000px;}
._5f{width:131.947800px;}
._72{width:133.248000px;}
._25{width:134.352000px;}
._6a{width:136.704000px;}
._4a{width:137.974200px;}
._5a{width:139.248000px;}
._b5{width:140.324400px;}
._82{width:142.492200px;}
._a5{width:143.948400px;}
._32{width:145.324200px;}
._89{width:146.452200px;}
._66{width:147.766200px;}
._43{width:150.358200px;}
._3a{width:151.894200px;}
._2d{width:153.648000px;}
._54{width:154.758000px;}
._26{width:157.584000px;}
._95{width:159.408000px;}
._5e{width:160.416000px;}
._8d{width:164.352000px;}
._c4{width:167.808000px;}
._bf{width:171.360000px;}
._49{width:172.416000px;}
._6e{width:173.424000px;}
._92{width:174.528000px;}
._31{width:175.968000px;}
._4f{width:177.097800px;}
._65{width:178.447800px;}
._42{width:180.240000px;}
._39{width:181.894200px;}
._b7{width:188.055600px;}
._d7{width:192.121800px;}
._98{width:200.502000px;}
._2e{width:218.866200px;}
._c9{width:219.991200px;}
._61{width:223.488000px;}
._35{width:225.360000px;}
._67{width:227.665800px;}
._8f{width:230.352000px;}
._c1{width:236.814000px;}
._3d{width:238.464000px;}
._62{width:242.064000px;}
._a0{width:244.009800px;}
._4c{width:245.497800px;}
._3f{width:247.296000px;}
._cf{width:249.513600px;}
._7f{width:254.160000px;}
._94{width:255.744000px;}
._55{width:257.305200px;}
._cc{width:259.248000px;}
._8c{width:260.544000px;}
._46{width:261.600000px;}
._70{width:264.960000px;}
._a8{width:268.543200px;}
._37{width:270.336000px;}
._77{width:271.885800px;}
._7e{width:274.008000px;}
._6b{width:275.356200px;}
._36{width:277.296000px;}
._3e{width:279.840000px;}
._51{width:281.641800px;}
._47{width:282.768000px;}
._b2{width:284.736000px;}
._59{width:286.681800px;}
._a1{width:288.187200px;}
._ac{width:290.059200px;}
._68{width:294.059400px;}
._63{width:296.928000px;}
._71{width:299.280000px;}
._c7{width:303.544800px;}
._34{width:304.992000px;}
._5d{width:309.190200px;}
._60{width:312.311400px;}
._86{width:314.022000px;}
._b3{width:317.568000px;}
._ae{width:320.557800px;}
._56{width:321.888000px;}
._8e{width:324.590400px;}
._3c{width:326.160000px;}
._41{width:329.734200px;}
._b1{width:331.584000px;}
._8a{width:333.220800px;}
._30{width:334.726200px;}
._cb{width:336.213600px;}
._45{width:338.064000px;}
._6d{width:342.384000px;}
._c5{width:343.455000px;}
._85{width:345.358200px;}
._53{width:355.488000px;}
._7a{width:358.316400px;}
._dd{width:359.328000px;}
._9c{width:360.576000px;}
._b8{width:368.548200px;}
._58{width:373.968000px;}
._87{width:386.422200px;}
._7c{width:390.678000px;}
._bd{width:410.358000px;}
._48{width:417.174000px;}
._40{width:435.414000px;}
._91{width:441.414000px;}
._d2{width:460.512000px;}
._4d{width:470.799600px;}
._d3{width:499.536000px;}
._38{width:512.374200px;}
._9a{width:524.550000px;}
._64{width:531.052200px;}
._a4{width:540.486000px;}
._7b{width:541.656600px;}
._84{width:545.338200px;}
._5b{width:559.702200px;}
._ca{width:569.328000px;}
._c0{width:572.220000px;}
._cd{width:595.248000px;}
._81{width:606.432000px;}
._b9{width:612.652800px;}
._90{width:615.504000px;}
._bb{width:622.690800px;}
._99{width:624.637200px;}
._75{width:636.169800px;}
._69{width:645.454800px;}
._c6{width:657.126000px;}
._da{width:675.526200px;}
._af{width:684.912000px;}
._a7{width:693.958200px;}
._aa{width:695.110200px;}
._b6{width:696.130200px;}
._b4{width:697.426200px;}
._ad{width:699.778200px;}
._76{width:708.698400px;}
._d8{width:722.790000px;}
._23{width:730.416000px;}
._97{width:774.438000px;}
._27{width:801.219600px;}
._79{width:815.590200px;}
._ab{width:859.567200px;}
._8b{width:861.078000px;}
._b0{width:878.487600px;}
._4b{width:881.906400px;}
._6f{width:883.792200px;}
._33{width:886.428000px;}
._74{width:887.547600px;}
._83{width:888.808800px;}
._50{width:890.720400px;}
._c8{width:892.347000px;}
._44{width:894.837600px;}
._3b{width:896.830200px;}
._93{width:899.429400px;}
._9d{width:901.164000px;}
._7d{width:904.137000px;}
._73{width:909.190200px;}
._bc{width:919.270200px;}
._ba{width:920.880000px;}
._c3{width:938.352000px;}
._52{width:950.899800px;}
._57{width:984.048000px;}
._be{width:986.016000px;}
._d9{width:1063.344000px;}
._d4{width:1065.216000px;}
._dc{width:1145.830200px;}
._db{width:1437.216000px;}
._de{width:1781.062200px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:30.000000px;}
.fs8{font-size:33.231000px;}
.fs9{font-size:34.980000px;}
.fs6{font-size:38.478000px;}
.fsb{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:102.000000px;}
.yff{bottom:-98.999250px;}
.yfe{bottom:-91.499250px;}
.yfd{bottom:-83.999250px;}
.yfc{bottom:-76.499250px;}
.yfb{bottom:-68.999250px;}
.y0{bottom:0.000000px;}
.y26{bottom:89.716500px;}
.y50{bottom:89.716650px;}
.y8a{bottom:89.716800px;}
.yb5{bottom:89.722050px;}
.y1d5{bottom:89.722350px;}
.y20c{bottom:89.739600px;}
.y226{bottom:97.234800px;}
.y228{bottom:100.330200px;}
.y224{bottom:105.632250px;}
.y12c{bottom:107.716500px;}
.y4f{bottom:107.716650px;}
.y89{bottom:107.716800px;}
.yd2{bottom:107.717100px;}
.yb7{bottom:109.700700px;}
.y25{bottom:109.700850px;}
.yb4{bottom:109.703550px;}
.y21b{bottom:109.706550px;}
.y20b{bottom:109.718100px;}
.y225{bottom:115.232550px;}
.y227{bottom:118.327950px;}
.y229{bottom:118.559250px;}
.y223{bottom:123.630000px;}
.y12b{bottom:125.716500px;}
.ye0{bottom:125.716650px;}
.y4e{bottom:125.716800px;}
.y19f{bottom:125.716950px;}
.yd1{bottom:125.717100px;}
.y24{bottom:129.685050px;}
.y15a{bottom:129.690600px;}
.y1ef{bottom:129.690750px;}
.y1be{bottom:129.693300px;}
.yfa{bottom:129.696000px;}
.y20a{bottom:129.696600px;}
.y6f{bottom:129.698850px;}
.y12a{bottom:143.716500px;}
.y171{bottom:143.716650px;}
.y4d{bottom:143.716800px;}
.y19e{bottom:143.716950px;}
.yd0{bottom:143.717100px;}
.ya0{bottom:143.717250px;}
.y23{bottom:149.669250px;}
.y159{bottom:149.672100px;}
.y1bd{bottom:149.674800px;}
.y1d4{bottom:149.675100px;}
.yf9{bottom:149.677500px;}
.y6e{bottom:149.680350px;}
.y1c6{bottom:155.163750px;}
.y12d{bottom:161.716500px;}
.ydf{bottom:161.716800px;}
.y19d{bottom:161.716950px;}
.ycf{bottom:161.717100px;}
.y9f{bottom:161.717250px;}
.yb6{bottom:169.653450px;}
.y88{bottom:169.653600px;}
.y22{bottom:169.656300px;}
.yf8{bottom:169.659000px;}
.y6d{bottom:169.661850px;}
.y1ae{bottom:169.664550px;}
.y21a{bottom:169.693800px;}
.yde{bottom:179.716800px;}
.y167{bottom:179.716950px;}
.yce{bottom:179.717100px;}
.y9e{bottom:179.717250px;}
.y4c{bottom:189.637800px;}
.y21{bottom:189.640500px;}
.y6c{bottom:189.643350px;}
.y1ad{bottom:189.646050px;}
.y1ee{bottom:189.655050px;}
.y219{bottom:189.672300px;}
.ydd{bottom:197.716800px;}
.y166{bottom:197.716950px;}
.ycd{bottom:197.717100px;}
.y9d{bottom:197.717250px;}
.y20{bottom:209.622000px;}
.y6b{bottom:209.624850px;}
.y1ac{bottom:209.627550px;}
.y209{bottom:209.627850px;}
.y1ed{bottom:209.633550px;}
.y1d3{bottom:209.639400px;}
.y218{bottom:209.650800px;}
.y139{bottom:209.652300px;}
.y170{bottom:215.716800px;}
.y165{bottom:215.716950px;}
.y1ab{bottom:215.717100px;}
.y9c{bottom:215.717250px;}
.ycc{bottom:215.717550px;}
.y123{bottom:220.969500px;}
.y1f{bottom:229.606350px;}
.y4b{bottom:229.609050px;}
.y1ec{bottom:229.612050px;}
.y1d2{bottom:229.617900px;}
.ydc{bottom:229.622850px;}
.y217{bottom:229.629300px;}
.yf0{bottom:229.631100px;}
.y138{bottom:229.633800px;}
.y16f{bottom:233.716800px;}
.y164{bottom:233.716950px;}
.y1aa{bottom:233.717100px;}
.ycb{bottom:233.717550px;}
.yb9{bottom:244.276950px;}
.y122{bottom:248.607300px;}
.y1e{bottom:249.590550px;}
.y9b{bottom:249.593400px;}
.y1b7{bottom:249.596100px;}
.y1d1{bottom:249.596400px;}
.y158{bottom:249.601500px;}
.ydb{bottom:249.604350px;}
.y216{bottom:249.607800px;}
.yef{bottom:249.612600px;}
.y137{bottom:249.615300px;}
.y1c5{bottom:249.615450px;}
.y16e{bottom:251.716800px;}
.y163{bottom:251.716950px;}
.y19c{bottom:251.717100px;}
.yca{bottom:251.717550px;}
.y189{bottom:255.085050px;}
.yb8{bottom:262.274700px;}
.y1d{bottom:269.574900px;}
.y6a{bottom:269.577600px;}
.y157{bottom:269.583000px;}
.yda{bottom:269.585850px;}
.y215{bottom:269.586300px;}
.y188{bottom:269.588550px;}
.ye5{bottom:269.591400px;}
.y208{bottom:269.592150px;}
.yee{bottom:269.594100px;}
.y136{bottom:269.596800px;}
.yb3{bottom:269.602350px;}
.y16d{bottom:269.716800px;}
.y162{bottom:269.716950px;}
.y19b{bottom:269.717100px;}
.yc9{bottom:269.717550px;}
.y121{bottom:271.178100px;}
.y120{bottom:279.803100px;}
.y19a{bottom:287.717100px;}
.yc8{bottom:287.717550px;}
.y1c{bottom:289.559100px;}
.y9a{bottom:289.561800px;}
.y156{bottom:289.564500px;}
.y214{bottom:289.564800px;}
.yd9{bottom:289.567350px;}
.yf7{bottom:289.570050px;}
.y207{bottom:289.570650px;}
.y87{bottom:289.572900px;}
.yed{bottom:289.575600px;}
.y135{bottom:289.578300px;}
.y1c4{bottom:289.578450px;}
.yb2{bottom:289.583850px;}
.y1eb{bottom:289.605150px;}
.y199{bottom:305.717100px;}
.yc7{bottom:305.717550px;}
.y69{bottom:309.543300px;}
.y155{bottom:309.546000px;}
.y161{bottom:309.546150px;}
.yd8{bottom:309.548850px;}
.y206{bottom:309.549150px;}
.y4a{bottom:309.551550px;}
.y86{bottom:309.554400px;}
.y1b{bottom:309.557100px;}
.y134{bottom:309.559800px;}
.yb1{bottom:309.565350px;}
.y1ea{bottom:309.583650px;}
.y11f{bottom:310.999050px;}
.y198{bottom:323.717100px;}
.y154{bottom:329.527500px;}
.y68{bottom:329.527650px;}
.y1bc{bottom:329.530350px;}
.yf6{bottom:329.533050px;}
.y85{bottom:329.535900px;}
.y1a{bottom:329.538600px;}
.y133{bottom:329.541300px;}
.y1c3{bottom:329.541450px;}
.yb0{bottom:329.546850px;}
.y1e9{bottom:329.562150px;}
.y11e{bottom:338.636850px;}
.y67{bottom:349.511850px;}
.y49{bottom:349.514550px;}
.y84{bottom:349.517400px;}
.y19{bottom:349.520100px;}
.y132{bottom:349.522800px;}
.y1c2{bottom:349.522950px;}
.y1d0{bottom:349.523400px;}
.yaf{bottom:349.528350px;}
.y1e8{bottom:349.540650px;}
.y11d{bottom:361.207650px;}
.y11c{bottom:368.707650px;}
.y48{bottom:369.496050px;}
.y153{bottom:369.498750px;}
.y83{bottom:369.498900px;}
.y18{bottom:369.501600px;}
.y1cf{bottom:369.501900px;}
.y131{bottom:369.504300px;}
.y66{bottom:369.504450px;}
.y160{bottom:369.507150px;}
.yae{bottom:369.509850px;}
.y1e7{bottom:369.519150px;}
.y205{bottom:369.565200px;}
.y152{bottom:389.480250px;}
.y47{bottom:389.480400px;}
.y17{bottom:389.483100px;}
.y130{bottom:389.485800px;}
.y65{bottom:389.485950px;}
.y15f{bottom:389.488650px;}
.yad{bottom:389.491350px;}
.y1e6{bottom:389.497650px;}
.y213{bottom:389.503350px;}
.y204{bottom:389.543700px;}
.y11b{bottom:398.778600px;}
.y16{bottom:409.464600px;}
.y12f{bottom:409.467300px;}
.y64{bottom:409.467450px;}
.y15e{bottom:409.470150px;}
.yac{bottom:409.472850px;}
.y1e5{bottom:409.476150px;}
.y212{bottom:409.481850px;}
.y203{bottom:409.522200px;}
.yc6{bottom:414.959100px;}
.y11a{bottom:421.349400px;}
.y16c{bottom:426.275400px;}
.y118{bottom:428.849400px;}
.y12e{bottom:429.448800px;}
.y15{bottom:429.448950px;}
.yc5{bottom:429.451650px;}
.y99{bottom:429.454350px;}
.y1e4{bottom:429.454650px;}
.y82{bottom:429.457200px;}
.y211{bottom:429.460350px;}
.y187{bottom:429.462600px;}
.y46{bottom:429.481950px;}
.y202{bottom:429.500700px;}
.ye4{bottom:434.943300px;}
.y117{bottom:436.349400px;}
.y16b{bottom:444.273150px;}
.y1ce{bottom:449.291400px;}
.y14{bottom:449.433150px;}
.y98{bottom:449.435850px;}
.y81{bottom:449.438700px;}
.y210{bottom:449.438850px;}
.y186{bottom:449.444100px;}
.ye3{bottom:449.446950px;}
.y45{bottom:449.463450px;}
.y201{bottom:449.479200px;}
.y119{bottom:451.349400px;}
.y13{bottom:469.417350px;}
.y63{bottom:469.420200px;}
.y1bb{bottom:469.422900px;}
.y1b0{bottom:469.425600px;}
.ye2{bottom:469.428450px;}
.y44{bottom:469.444950px;}
.y200{bottom:469.457700px;}
.y116{bottom:473.920200px;}
.y17e{bottom:477.909450px;}
.y151{bottom:488.766750px;}
.y12{bottom:489.401700px;}
.y1ba{bottom:489.404400px;}
.y185{bottom:489.407100px;}
.yc4{bottom:489.409950px;}
.y43{bottom:489.426450px;}
.y197{bottom:489.431850px;}
.y1ff{bottom:489.436200px;}
.y150{bottom:496.266750px;}
.y115{bottom:501.558000px;}
.y17d{bottom:503.428050px;}
.y62{bottom:509.385900px;}
.yd7{bottom:509.388600px;}
.yc3{bottom:509.391450px;}
.y1cd{bottom:509.391600px;}
.y97{bottom:509.394150px;}
.y20f{bottom:509.397450px;}
.y42{bottom:509.407950px;}
.y1fe{bottom:509.414700px;}
.yec{bottom:514.880400px;}
.y14f{bottom:521.270700px;}
.y14d{bottom:528.770700px;}
.y17c{bottom:528.940050px;}
.y114{bottom:529.195800px;}
.y11{bottom:529.370100px;}
.yc2{bottom:529.372950px;}
.y96{bottom:529.375650px;}
.y20e{bottom:529.375950px;}
.y61{bottom:529.378350px;}
.y41{bottom:529.389450px;}
.y1fd{bottom:529.393200px;}
.y196{bottom:529.394850px;}
.y14c{bottom:536.270700px;}
.y80{bottom:549.354450px;}
.y95{bottom:549.357150px;}
.y60{bottom:549.359850px;}
.y40{bottom:549.370950px;}
.y1fc{bottom:549.371700px;}
.y195{bottom:549.376350px;}
.y1e3{bottom:549.383100px;}
.y14e{bottom:551.270700px;}
.y1c1{bottom:551.427300px;}
.y17b{bottom:554.452050px;}
.y113{bottom:556.833600px;}
.y7f{bottom:569.338650px;}
.y5f{bottom:569.341350px;}
.y15d{bottom:569.346900px;}
.y1fb{bottom:569.350200px;}
.y3f{bottom:569.352450px;}
.y194{bottom:569.357850px;}
.y1e2{bottom:569.361600px;}
.y1b6{bottom:569.368950px;}
.y1c0{bottom:569.425050px;}
.y1cc{bottom:571.322850px;}
.y14b{bottom:573.841650px;}
.y17a{bottom:579.964050px;}
.y112{bottom:584.471400px;}
.y1bf{bottom:587.422800px;}
.y5e{bottom:589.322850px;}
.yd6{bottom:589.325700px;}
.y15c{bottom:589.328400px;}
.y1fa{bottom:589.328700px;}
.y3e{bottom:589.333950px;}
.y193{bottom:589.339350px;}
.y1e1{bottom:589.340100px;}
.y1b5{bottom:589.350450px;}
.yf5{bottom:589.356000px;}
.y14a{bottom:601.479450px;}
.y179{bottom:605.476050px;}
.y111{bottom:607.042350px;}
.y5d{bottom:609.307200px;}
.y15b{bottom:609.309900px;}
.y20d{bottom:609.312900px;}
.y3d{bottom:609.315450px;}
.y1e0{bottom:609.318600px;}
.y192{bottom:609.320850px;}
.y7e{bottom:609.323700px;}
.y1b4{bottom:609.331950px;}
.yf4{bottom:609.337500px;}
.y110{bottom:614.542350px;}
.y10{bottom:626.539200px;}
.y178{bottom:626.980050px;}
.y149{bottom:629.117100px;}
.y94{bottom:629.291400px;}
.y5c{bottom:629.294100px;}
.y3c{bottom:629.296950px;}
.y1df{bottom:629.297100px;}
.y191{bottom:629.302350px;}
.y7d{bottom:629.305200px;}
.y1b3{bottom:629.313450px;}
.yab{bottom:629.316150px;}
.y10f{bottom:639.546300px;}
.y222{bottom:641.059500px;}
.y177{bottom:641.980050px;}
.yf{bottom:644.539200px;}
.y10d{bottom:647.046300px;}
.y5b{bottom:649.275600px;}
.y3b{bottom:649.278450px;}
.yc1{bottom:649.281150px;}
.y190{bottom:649.283850px;}
.y7c{bottom:649.286700px;}
.yeb{bottom:649.289400px;}
.y1a9{bottom:649.294950px;}
.yaa{bottom:649.297650px;}
.yf3{bottom:649.300500px;}
.y148{bottom:651.688050px;}
.y10c{bottom:654.546300px;}
.y221{bottom:659.057250px;}
.y147{bottom:659.188050px;}
.y176{bottom:663.484050px;}
.y3a{bottom:669.259950px;}
.yc0{bottom:669.262650px;}
.y18f{bottom:669.265350px;}
.y7b{bottom:669.268200px;}
.yea{bottom:669.270900px;}
.y1a8{bottom:669.276450px;}
.ya9{bottom:669.279150px;}
.yf2{bottom:669.282000px;}
.y10e{bottom:669.546300px;}
.y220{bottom:677.055000px;}
.y175{bottom:688.996050px;}
.y39{bottom:689.244150px;}
.y18e{bottom:689.246850px;}
.y7a{bottom:689.249700px;}
.ye9{bottom:689.252400px;}
.y1f9{bottom:689.255700px;}
.y1a7{bottom:689.257950px;}
.y146{bottom:689.259000px;}
.ya8{bottom:689.260650px;}
.yf1{bottom:689.263500px;}
.y1de{bottom:689.278650px;}
.y10b{bottom:692.117100px;}
.yd5{bottom:694.738650px;}
.y21f{bottom:695.052750px;}
.ye{bottom:705.058950px;}
.y38{bottom:709.228350px;}
.y79{bottom:709.231200px;}
.ye8{bottom:709.233900px;}
.y1f8{bottom:709.234200px;}
.y5a{bottom:709.236750px;}
.y1a6{bottom:709.239450px;}
.y93{bottom:709.245000px;}
.y1dd{bottom:709.257150px;}
.y21e{bottom:713.050500px;}
.y173{bottom:714.561600px;}
.y174{bottom:715.617600px;}
.y172{bottom:715.749600px;}
.y145{bottom:716.896650px;}
.y10a{bottom:719.754900px;}
.yd{bottom:723.058950px;}
.ybf{bottom:729.212700px;}
.y78{bottom:729.215400px;}
.ye1{bottom:729.218250px;}
.y1a5{bottom:729.220950px;}
.ya7{bottom:729.223650px;}
.y92{bottom:729.226500px;}
.y184{bottom:729.229200px;}
.y37{bottom:729.231900px;}
.y1dc{bottom:729.235650px;}
.yc{bottom:741.063450px;}
.y109{bottom:742.325850px;}
.y144{bottom:744.534600px;}
.ybe{bottom:749.196900px;}
.y59{bottom:749.199750px;}
.y1a4{bottom:749.202450px;}
.ya6{bottom:749.205150px;}
.y91{bottom:749.208000px;}
.y183{bottom:749.210700px;}
.y36{bottom:749.213400px;}
.y1db{bottom:749.214150px;}
.y108{bottom:749.825850px;}
.yb{bottom:759.061200px;}
.y58{bottom:769.181250px;}
.y18d{bottom:769.183950px;}
.y77{bottom:769.186650px;}
.y90{bottom:769.189500px;}
.y182{bottom:769.192200px;}
.y1da{bottom:769.192650px;}
.y35{bottom:769.194900px;}
.ybd{bottom:769.197600px;}
.y143{bottom:772.172400px;}
.y107{bottom:774.829800px;}
.y16a{bottom:775.275900px;}
.ya{bottom:777.058950px;}
.y106{bottom:782.329800px;}
.y57{bottom:789.165450px;}
.y76{bottom:789.168150px;}
.y8f{bottom:789.171000px;}
.y1d9{bottom:789.171150px;}
.y181{bottom:789.173700px;}
.y34{bottom:789.176400px;}
.ybc{bottom:789.179100px;}
.y169{bottom:793.275900px;}
.y9{bottom:795.058950px;}
.y142{bottom:799.810200px;}
.y105{bottom:807.333600px;}
.y75{bottom:809.149650px;}
.y56{bottom:809.152500px;}
.y180{bottom:809.155200px;}
.y33{bottom:809.157900px;}
.ybb{bottom:809.160600px;}
.y21d{bottom:809.161200px;}
.y1cb{bottom:809.163450px;}
.y8{bottom:813.058950px;}
.y104{bottom:814.833600px;}
.y141{bottom:827.448000px;}
.y55{bottom:829.134000px;}
.y17f{bottom:829.136700px;}
.y32{bottom:829.139400px;}
.y21c{bottom:829.139700px;}
.yba{bottom:829.142100px;}
.y1ca{bottom:829.144950px;}
.ye7{bottom:829.147650px;}
.y1f7{bottom:829.162650px;}
.y7{bottom:831.058950px;}
.y103{bottom:839.837550px;}
.y102{bottom:847.337550px;}
.y6{bottom:849.061200px;}
.y54{bottom:849.118200px;}
.y31{bottom:849.120900px;}
.y74{bottom:849.123600px;}
.y1c9{bottom:849.126450px;}
.ye6{bottom:849.129150px;}
.y1af{bottom:849.131850px;}
.yd4{bottom:849.134700px;}
.y1f6{bottom:849.141150px;}
.y140{bottom:855.085650px;}
.y5{bottom:867.058950px;}
.y30{bottom:869.102400px;}
.y73{bottom:869.105100px;}
.y1c8{bottom:869.107950px;}
.y53{bottom:869.110650px;}
.y1a3{bottom:869.113350px;}
.yd3{bottom:869.116200px;}
.y1f5{bottom:869.119650px;}
.y1b9{bottom:869.124450px;}
.y101{bottom:877.408500px;}
.y13f{bottom:882.723600px;}
.y4{bottom:885.058950px;}
.y2f{bottom:889.086600px;}
.y1c7{bottom:889.089450px;}
.y52{bottom:889.092150px;}
.y1a2{bottom:889.094850px;}
.y18c{bottom:889.097700px;}
.y1f4{bottom:889.098150px;}
.y1d8{bottom:889.103850px;}
.y1b8{bottom:889.105950px;}
.y100{bottom:908.235150px;}
.y2e{bottom:909.070950px;}
.y51{bottom:909.073650px;}
.y1a1{bottom:909.076350px;}
.y1f3{bottom:909.076650px;}
.y8e{bottom:909.079200px;}
.ya5{bottom:909.081900px;}
.y1d7{bottom:909.082350px;}
.y168{bottom:909.087450px;}
.y13e{bottom:910.361250px;}
.y1b2{bottom:914.565450px;}
.y2d{bottom:929.055150px;}
.y1a0{bottom:929.057850px;}
.y8d{bottom:929.060700px;}
.y1d6{bottom:929.060850px;}
.ya4{bottom:929.063400px;}
.y72{bottom:929.068950px;}
.y13d{bottom:937.999200px;}
.y129{bottom:945.308100px;}
.y2c{bottom:949.039350px;}
.y8c{bottom:949.042200px;}
.ya3{bottom:949.044900px;}
.y1b1{bottom:949.047600px;}
.y71{bottom:949.050450px;}
.y1f2{bottom:949.056600px;}
.y3{bottom:954.082650px;}
.y128{bottom:963.305850px;}
.y13c{bottom:965.636850px;}
.y2b{bottom:969.023700px;}
.ya2{bottom:969.026400px;}
.y18b{bottom:969.029100px;}
.y70{bottom:969.031950px;}
.y1f1{bottom:969.035100px;}
.y127{bottom:981.303600px;}
.y8b{bottom:989.007900px;}
.y18a{bottom:989.010600px;}
.y2a{bottom:989.013450px;}
.y1f0{bottom:989.013600px;}
.y13b{bottom:993.274650px;}
.y2{bottom:997.585350px;}
.y126{bottom:999.301350px;}
.ya1{bottom:1008.992100px;}
.y29{bottom:1008.994950px;}
.y125{bottom:1017.299100px;}
.y13a{bottom:1024.101450px;}
.y1{bottom:1026.094350px;}
.y28{bottom:1028.976450px;}
.y124{bottom:1035.296850px;}
.y27{bottom:1082.225850px;}
.he{height:27.000000px;}
.hd{height:34.630200px;}
.h15{height:41.856000px;}
.hf{height:43.200000px;}
.h4{height:44.100000px;}
.h16{height:46.935000px;}
.h11{height:46.962000px;}
.hc{height:49.704000px;}
.h8{height:50.868000px;}
.h17{height:51.186000px;}
.h18{height:51.277200px;}
.h5{height:51.300000px;}
.h6{height:52.920000px;}
.ha{height:54.000000px;}
.h14{height:56.599200px;}
.hb{height:59.268000px;}
.h7{height:59.400000px;}
.h9{height:62.172000px;}
.h10{height:73.200000px;}
.h3{height:73.476000px;}
.h2{height:74.970000px;}
.h12{height:76.962000px;}
.h13{height:77.712000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x1f{left:-731.494500px;}
.x1d{left:-730.371300px;}
.x24{left:-411.472050px;}
.x0{left:0.000000px;}
.x10{left:67.687500px;}
.xa{left:71.234100px;}
.x1{left:72.432750px;}
.x7{left:76.186350px;}
.x18{left:77.502750px;}
.x8{left:80.193300px;}
.x5{left:81.268050px;}
.x34{left:83.880600px;}
.x3e{left:92.632500px;}
.xc{left:94.315950px;}
.x2{left:97.348950px;}
.xb{left:98.451750px;}
.x3d{left:101.573850px;}
.x25{left:102.829500px;}
.x6{left:105.705150px;}
.x9{left:106.804950px;}
.x26{left:143.064000px;}
.x14{left:180.328050px;}
.x15{left:189.308850px;}
.x22{left:207.559950px;}
.x27{left:217.476000px;}
.x28{left:257.868000px;}
.x39{left:259.214550px;}
.x3a{left:269.362800px;}
.x16{left:290.088000px;}
.x17{left:301.129800px;}
.x29{left:304.644000px;}
.x2a{left:345.036000px;}
.x2b{left:387.552000px;}
.x35{left:394.870650px;}
.x23{left:396.402150px;}
.x36{left:404.531550px;}
.x3b{left:407.867850px;}
.x3c{left:418.802400px;}
.x2c{left:436.452000px;}
.x20{left:463.061700px;}
.x1e{left:475.276500px;}
.x2d{left:476.844000px;}
.x2e{left:510.864000px;}
.x3{left:522.158700px;}
.x37{left:526.273950px;}
.x21{left:532.673700px;}
.x38{left:536.099550px;}
.x2f{left:544.884000px;}
.x30{left:578.904000px;}
.x31{left:612.924000px;}
.x32{left:653.316000px;}
.x33{left:708.588000px;}
.x12{left:711.505350px;}
.x3f{left:715.948350px;}
.x11{left:717.507900px;}
.x40{left:719.175000px;}
.x4{left:720.254850px;}
.x13{left:721.268400px;}
.xd{left:723.400350px;}
.xe{left:727.217850px;}
.xf{left:735.162600px;}
.x1c{left:1015.434150px;}
.x1a{left:1270.935750px;}
.x19{left:1283.150700px;}
.x1b{left:1340.547750px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v9{vertical-align:-17.760000pt;}
.vb{vertical-align:-13.760000pt;}
.v5{vertical-align:-4.010667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.010667pt;}
.v3{vertical-align:16.872000pt;}
.v6{vertical-align:17.770667pt;}
.v1{vertical-align:19.526400pt;}
.v8{vertical-align:22.656000pt;}
.v4{vertical-align:26.666667pt;}
.va{vertical-align:30.677333pt;}
.ls42{letter-spacing:-4.800000pt;}
.ls71{letter-spacing:-4.053333pt;}
.ls63{letter-spacing:-3.520000pt;}
.ls4b{letter-spacing:-3.120000pt;}
.ls28{letter-spacing:-2.933333pt;}
.ls58{letter-spacing:-2.874667pt;}
.ls4c{letter-spacing:-2.730667pt;}
.ls29{letter-spacing:-2.581333pt;}
.ls4f{letter-spacing:-2.176000pt;}
.ls59{letter-spacing:-2.053333pt;}
.ls64{letter-spacing:-2.026667pt;}
.ls84{letter-spacing:-1.773333pt;}
.ls85{letter-spacing:-1.722667pt;}
.ls82{letter-spacing:-1.680000pt;}
.ls34{letter-spacing:-1.600000pt;}
.ls1c{letter-spacing:-1.440000pt;}
.ls79{letter-spacing:-1.200000pt;}
.ls1d{letter-spacing:-1.173333pt;}
.ls18{letter-spacing:-0.938667pt;}
.ls15{letter-spacing:-0.880000pt;}
.ls17{letter-spacing:-0.821333pt;}
.ls73{letter-spacing:-0.810667pt;}
.ls56{letter-spacing:-0.746667pt;}
.ls4d{letter-spacing:-0.720000pt;}
.ls16{letter-spacing:-0.645333pt;}
.ls4e{letter-spacing:-0.597333pt;}
.ls72{letter-spacing:-0.557333pt;}
.ls27{letter-spacing:-0.480000pt;}
.ls54{letter-spacing:-0.478837pt;}
.ls1e{letter-spacing:-0.410667pt;}
.ls6f{letter-spacing:-0.405333pt;}
.ls5b{letter-spacing:-0.373333pt;}
.ls68{letter-spacing:-0.354667pt;}
.lsa{letter-spacing:-0.352000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls7c{letter-spacing:-0.304000pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls61{letter-spacing:-0.266667pt;}
.ls7b{letter-spacing:-0.253333pt;}
.ls2c{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.234667pt;}
.ls5f{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.202667pt;}
.lsb{letter-spacing:-0.176000pt;}
.ls57{letter-spacing:-0.160000pt;}
.ls7a{letter-spacing:-0.152000pt;}
.ls32{letter-spacing:-0.136811pt;}
.lsc{letter-spacing:-0.117333pt;}
.ls35{letter-spacing:-0.106667pt;}
.ls12{letter-spacing:-0.102608pt;}
.ls7{letter-spacing:-0.101333pt;}
.ls55{letter-spacing:-0.068405pt;}
.ls9{letter-spacing:-0.058667pt;}
.ls33{letter-spacing:-0.053333pt;}
.ls70{letter-spacing:-0.050667pt;}
.ls38{letter-spacing:-0.034203pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000080pt;}
.ls2e{letter-spacing:0.000086pt;}
.ls1a{letter-spacing:0.009600pt;}
.ls50{letter-spacing:0.011733pt;}
.ls75{letter-spacing:0.022933pt;}
.ls13{letter-spacing:0.029333pt;}
.ls44{letter-spacing:0.034203pt;}
.ls7d{letter-spacing:0.050667pt;}
.ls4{letter-spacing:0.058667pt;}
.ls5e{letter-spacing:0.068405pt;}
.ls5d{letter-spacing:0.069333pt;}
.ls76{letter-spacing:0.076000pt;}
.ls69{letter-spacing:0.101333pt;}
.ls37{letter-spacing:0.102608pt;}
.ls10{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.117333pt;}
.ls36{letter-spacing:0.123200pt;}
.ls0{letter-spacing:0.126667pt;}
.ls45{letter-spacing:0.136811pt;}
.ls67{letter-spacing:0.146933pt;}
.ls66{letter-spacing:0.152000pt;}
.ls5c{letter-spacing:0.160000pt;}
.ls7e{letter-spacing:0.167200pt;}
.ls3{letter-spacing:0.176000pt;}
.ls51{letter-spacing:0.186667pt;}
.ls81{letter-spacing:0.192533pt;}
.ls60{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.234667pt;}
.ls53{letter-spacing:0.240000pt;}
.ls78{letter-spacing:0.253333pt;}
.ls5a{letter-spacing:0.266667pt;}
.ls23{letter-spacing:0.273157pt;}
.ls2f{letter-spacing:0.273280pt;}
.ls31{letter-spacing:0.273621pt;}
.ls62{letter-spacing:0.293333pt;}
.ls77{letter-spacing:0.304000pt;}
.ls52{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.352000pt;}
.ls6d{letter-spacing:0.354667pt;}
.ls6b{letter-spacing:0.413541pt;}
.ls74{letter-spacing:0.425600pt;}
.ls24{letter-spacing:0.451733pt;}
.ls20{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.475200pt;}
.ls43{letter-spacing:0.478837pt;}
.ls6e{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.498667pt;}
.ls80{letter-spacing:0.506667pt;}
.ls21{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls41{letter-spacing:0.547243pt;}
.ls7f{letter-spacing:0.557333pt;}
.lsf{letter-spacing:0.586667pt;}
.ls2d{letter-spacing:0.604267pt;}
.ls65{letter-spacing:0.608000pt;}
.ls6c{letter-spacing:0.633333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.645333pt;}
.ls83{letter-spacing:0.658667pt;}
.ls3c{letter-spacing:0.704000pt;}
.ls6a{letter-spacing:0.709333pt;}
.ls3b{letter-spacing:0.821333pt;}
.ls2b{letter-spacing:0.880000pt;}
.ls3f{letter-spacing:0.909333pt;}
.ls3d{letter-spacing:0.938667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls39{letter-spacing:1.056000pt;}
.ls5{letter-spacing:1.200000pt;}
.ls40{letter-spacing:1.232000pt;}
.ls3a{letter-spacing:1.290667pt;}
.ls30{letter-spacing:1.680000pt;}
.ls3e{letter-spacing:4.441067pt;}
.ls49{letter-spacing:130.261333pt;}
.ls4a{letter-spacing:131.413333pt;}
.ls46{letter-spacing:132.480000pt;}
.ls47{letter-spacing:134.442667pt;}
.ls48{letter-spacing:135.637333pt;}
.ws16a{word-spacing:-50.666667pt;}
.ws1{word-spacing:-14.784000pt;}
.ws124{word-spacing:-14.490667pt;}
.wsaa{word-spacing:-13.258667pt;}
.ws86{word-spacing:-13.200000pt;}
.wsb2{word-spacing:-13.141333pt;}
.ws89{word-spacing:-13.056000pt;}
.ws8a{word-spacing:-12.848000pt;}
.ws6a{word-spacing:-12.789333pt;}
.ws122{word-spacing:-12.613333pt;}
.ws193{word-spacing:-12.576000pt;}
.ws9e{word-spacing:-12.496000pt;}
.wsf6{word-spacing:-12.437333pt;}
.wsb3{word-spacing:-12.378667pt;}
.ws3e{word-spacing:-12.349333pt;}
.ws1e{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws9b{word-spacing:-12.261333pt;}
.ws54{word-spacing:-12.202667pt;}
.ws12e{word-spacing:-12.144000pt;}
.ws7b{word-spacing:-12.026667pt;}
.wsbb{word-spacing:-11.968000pt;}
.ws6b{word-spacing:-11.909333pt;}
.ws9f{word-spacing:-11.616000pt;}
.wsf7{word-spacing:-11.557333pt;}
.ws10f{word-spacing:-11.466667pt;}
.ws3f{word-spacing:-11.440000pt;}
.ws9c{word-spacing:-11.381333pt;}
.wsa8{word-spacing:-11.376000pt;}
.ws116{word-spacing:-11.360000pt;}
.ws144{word-spacing:-11.349333pt;}
.ws7d{word-spacing:-11.322667pt;}
.ws17d{word-spacing:-11.298667pt;}
.ws12f{word-spacing:-11.264000pt;}
.ws137{word-spacing:-11.248000pt;}
.wsa9{word-spacing:-11.205333pt;}
.ws20{word-spacing:-11.200000pt;}
.ws180{word-spacing:-11.197333pt;}
.ws53{word-spacing:-11.146667pt;}
.wsa0{word-spacing:-11.093333pt;}
.ws182{word-spacing:-10.994667pt;}
.ws114{word-spacing:-10.986667pt;}
.ws8e{word-spacing:-10.933333pt;}
.ws7a{word-spacing:-10.896000pt;}
.ws181{word-spacing:-10.893333pt;}
.ws138{word-spacing:-10.792000pt;}
.ws123{word-spacing:-10.773333pt;}
.ws17e{word-spacing:-10.741333pt;}
.ws18c{word-spacing:-10.690667pt;}
.ws135{word-spacing:-10.640000pt;}
.ws147{word-spacing:-10.589333pt;}
.ws117{word-spacing:-10.560000pt;}
.ws146{word-spacing:-10.538667pt;}
.ws170{word-spacing:-10.488000pt;}
.wsfe{word-spacing:-10.453333pt;}
.ws148{word-spacing:-10.437333pt;}
.ws118{word-spacing:-10.400000pt;}
.ws88{word-spacing:-10.386667pt;}
.wsa1{word-spacing:-10.346667pt;}
.ws136{word-spacing:-10.285333pt;}
.ws10d{word-spacing:-10.266667pt;}
.ws143{word-spacing:-10.234667pt;}
.ws115{word-spacing:-10.186667pt;}
.ws169{word-spacing:-10.176000pt;}
.ws139{word-spacing:-10.032000pt;}
.ws52{word-spacing:-9.936000pt;}
.ws17f{word-spacing:-9.930667pt;}
.ws134{word-spacing:-9.880000pt;}
.ws7c{word-spacing:-9.738667pt;}
.ws183{word-spacing:-9.728000pt;}
.ws149{word-spacing:-9.677333pt;}
.wsd8{word-spacing:-9.626667pt;}
.ws8d{word-spacing:-9.600000pt;}
.ws112{word-spacing:-9.386667pt;}
.wsd1{word-spacing:-8.960000pt;}
.ws18e{word-spacing:-8.917333pt;}
.ws18d{word-spacing:-8.866667pt;}
.wsff{word-spacing:-8.746667pt;}
.ws12d{word-spacing:-8.360000pt;}
.wsb1{word-spacing:-7.661397pt;}
.ws8b{word-spacing:-7.456181pt;}
.wsba{word-spacing:-7.319371pt;}
.ws9a{word-spacing:-7.285168pt;}
.ws113{word-spacing:-7.250965pt;}
.ws10e{word-spacing:-7.216763pt;}
.ws2{word-spacing:-7.182560pt;}
.ws9d{word-spacing:-7.148357pt;}
.wsfd{word-spacing:-7.114155pt;}
.ws1f{word-spacing:-7.079952pt;}
.ws145{word-spacing:-6.616661pt;}
.ws8c{word-spacing:-6.529600pt;}
.ws16c{word-spacing:-6.203120pt;}
.ws87{word-spacing:-6.055427pt;}
.ws16b{word-spacing:-5.760040pt;}
.ws14d{word-spacing:-2.837333pt;}
.ws5a{word-spacing:-2.640000pt;}
.wsac{word-spacing:-2.581333pt;}
.ws13c{word-spacing:-2.533333pt;}
.ws17{word-spacing:-2.522667pt;}
.wsd{word-spacing:-2.464000pt;}
.ws63{word-spacing:-2.405333pt;}
.ws111{word-spacing:-2.400000pt;}
.ws40{word-spacing:-2.346667pt;}
.ws11a{word-spacing:-2.293333pt;}
.ws4c{word-spacing:-2.288000pt;}
.ws161{word-spacing:-2.280000pt;}
.ws78{word-spacing:-2.240000pt;}
.ws1a{word-spacing:-2.229333pt;}
.ws166{word-spacing:-2.178667pt;}
.ws49{word-spacing:-2.170667pt;}
.ws6{word-spacing:-2.128000pt;}
.ws4d{word-spacing:-2.112000pt;}
.ws79{word-spacing:-2.080000pt;}
.ws5c{word-spacing:-2.053333pt;}
.ws178{word-spacing:-2.026667pt;}
.ws2c{word-spacing:-1.994667pt;}
.ws153{word-spacing:-1.976000pt;}
.wsf9{word-spacing:-1.973333pt;}
.ws4e{word-spacing:-1.936000pt;}
.ws2a{word-spacing:-1.877333pt;}
.ws2e{word-spacing:-1.818667pt;}
.ws107{word-spacing:-1.813333pt;}
.ws7{word-spacing:-1.773333pt;}
.ws27{word-spacing:-1.760000pt;}
.ws4{word-spacing:-1.722667pt;}
.ws6c{word-spacing:-1.701333pt;}
.ws162{word-spacing:-1.672000pt;}
.wsb9{word-spacing:-1.653333pt;}
.ws16{word-spacing:-1.642667pt;}
.wsf8{word-spacing:-1.600000pt;}
.ws6d{word-spacing:-1.584000pt;}
.ws158{word-spacing:-1.570667pt;}
.ws121{word-spacing:-1.546667pt;}
.ws4a{word-spacing:-1.525333pt;}
.wsf2{word-spacing:-1.493333pt;}
.ws3a{word-spacing:-1.466667pt;}
.ws14f{word-spacing:-1.418667pt;}
.ws5f{word-spacing:-1.408000pt;}
.wsa4{word-spacing:-1.349333pt;}
.ws106{word-spacing:-1.333333pt;}
.ws150{word-spacing:-1.317333pt;}
.wsad{word-spacing:-1.290667pt;}
.wsdb{word-spacing:-1.280000pt;}
.ws84{word-spacing:-1.232000pt;}
.ws110{word-spacing:-1.226667pt;}
.ws18a{word-spacing:-1.216000pt;}
.ws1d{word-spacing:-1.200000pt;}
.ws60{word-spacing:-1.173333pt;}
.wsa3{word-spacing:-1.162891pt;}
.ws97{word-spacing:-1.120000pt;}
.ws4b{word-spacing:-1.114667pt;}
.ws173{word-spacing:-1.064000pt;}
.ws51{word-spacing:-1.056000pt;}
.ws77{word-spacing:-1.013333pt;}
.wsbc{word-spacing:-0.997333pt;}
.wsb7{word-spacing:-0.960000pt;}
.ws32{word-spacing:-0.938667pt;}
.ws108{word-spacing:-0.906667pt;}
.ws23{word-spacing:-0.880000pt;}
.wsa5{word-spacing:-0.853333pt;}
.ws83{word-spacing:-0.821333pt;}
.ws157{word-spacing:-0.810667pt;}
.wsa2{word-spacing:-0.762667pt;}
.ws8{word-spacing:-0.760000pt;}
.ws68{word-spacing:-0.746667pt;}
.ws15b{word-spacing:-0.709333pt;}
.ws12{word-spacing:-0.704000pt;}
.wsfa{word-spacing:-0.693333pt;}
.ws11{word-spacing:-0.645333pt;}
.ws7f{word-spacing:-0.640000pt;}
.ws140{word-spacing:-0.608000pt;}
.ws36{word-spacing:-0.586667pt;}
.wsae{word-spacing:-0.547243pt;}
.wsc{word-spacing:-0.533333pt;}
.ws13{word-spacing:-0.528000pt;}
.ws14e{word-spacing:-0.506667pt;}
.wsfc{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.469333pt;}
.ws188{word-spacing:-0.456000pt;}
.wsd9{word-spacing:-0.426667pt;}
.ws15a{word-spacing:-0.413541pt;}
.wsb6{word-spacing:-0.410667pt;}
.ws187{word-spacing:-0.354667pt;}
.ws1b{word-spacing:-0.352000pt;}
.ws94{word-spacing:-0.320000pt;}
.ws191{word-spacing:-0.304000pt;}
.ws61{word-spacing:-0.293333pt;}
.ws93{word-spacing:-0.234667pt;}
.ws67{word-spacing:-0.213333pt;}
.ws8f{word-spacing:-0.176000pt;}
.ws171{word-spacing:-0.152000pt;}
.ws26{word-spacing:-0.117333pt;}
.ws126{word-spacing:-0.106667pt;}
.wse{word-spacing:-0.058667pt;}
.ws190{word-spacing:-0.050667pt;}
.wsb4{word-spacing:-0.034203pt;}
.ws3{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.053333pt;}
.ws129{word-spacing:0.058667pt;}
.ws130{word-spacing:0.068405pt;}
.ws141{word-spacing:0.101333pt;}
.ws128{word-spacing:0.102608pt;}
.ws35{word-spacing:0.117333pt;}
.ws92{word-spacing:0.136811pt;}
.ws160{word-spacing:0.152000pt;}
.ws10a{word-spacing:0.160000pt;}
.ws5d{word-spacing:0.176000pt;}
.ws151{word-spacing:0.202667pt;}
.ws10b{word-spacing:0.213333pt;}
.ws5b{word-spacing:0.234667pt;}
.ws58{word-spacing:0.293333pt;}
.ws15f{word-spacing:0.304000pt;}
.wsa7{word-spacing:0.320000pt;}
.wsbe{word-spacing:0.352000pt;}
.ws13d{word-spacing:0.354667pt;}
.ws7e{word-spacing:0.410667pt;}
.ws16f{word-spacing:0.456000pt;}
.ws55{word-spacing:0.469333pt;}
.ws105{word-spacing:0.478837pt;}
.ws154{word-spacing:0.506667pt;}
.ws37{word-spacing:0.528000pt;}
.ws167{word-spacing:0.557333pt;}
.ws15{word-spacing:0.586667pt;}
.ws16e{word-spacing:0.608000pt;}
.ws46{word-spacing:0.645333pt;}
.ws16d{word-spacing:0.658667pt;}
.ws91{word-spacing:0.704000pt;}
.ws9{word-spacing:0.709333pt;}
.ws11c{word-spacing:0.746667pt;}
.ws152{word-spacing:0.760000pt;}
.ws38{word-spacing:0.762667pt;}
.ws11f{word-spacing:0.800000pt;}
.ws168{word-spacing:0.810667pt;}
.ws73{word-spacing:0.821333pt;}
.ws13f{word-spacing:0.861333pt;}
.ws2d{word-spacing:0.880000pt;}
.ws59{word-spacing:0.938667pt;}
.ws75{word-spacing:0.997333pt;}
.ws98{word-spacing:1.013333pt;}
.ws2f{word-spacing:1.056000pt;}
.ws80{word-spacing:1.114667pt;}
.ws96{word-spacing:1.120000pt;}
.ws50{word-spacing:1.173333pt;}
.ws2b{word-spacing:1.232000pt;}
.ws18b{word-spacing:1.266667pt;}
.ws133{word-spacing:1.280000pt;}
.ws18{word-spacing:1.290667pt;}
.ws5{word-spacing:1.317333pt;}
.ws82{word-spacing:1.349333pt;}
.ws11b{word-spacing:1.386667pt;}
.ws56{word-spacing:1.408000pt;}
.ws15e{word-spacing:1.418667pt;}
.ws11d{word-spacing:1.440000pt;}
.ws34{word-spacing:1.466667pt;}
.ws17a{word-spacing:1.469333pt;}
.ws47{word-spacing:1.525333pt;}
.ws13a{word-spacing:1.570667pt;}
.ws119{word-spacing:1.584000pt;}
.ws14c{word-spacing:1.621333pt;}
.wsbd{word-spacing:1.642667pt;}
.ws177{word-spacing:1.672000pt;}
.wsf1{word-spacing:1.701333pt;}
.ws132{word-spacing:1.706667pt;}
.ws175{word-spacing:1.722667pt;}
.ws3b{word-spacing:1.760000pt;}
.ws41{word-spacing:1.818667pt;}
.ws13b{word-spacing:1.874667pt;}
.ws6f{word-spacing:1.877333pt;}
.ws155{word-spacing:1.925333pt;}
.ws21{word-spacing:1.936000pt;}
.ws76{word-spacing:1.994667pt;}
.wsb8{word-spacing:2.026667pt;}
.ws39{word-spacing:2.053333pt;}
.ws156{word-spacing:2.077333pt;}
.ws109{word-spacing:2.080000pt;}
.ws48{word-spacing:2.112000pt;}
.wsa{word-spacing:2.128000pt;}
.ws74{word-spacing:2.170667pt;}
.ws22{word-spacing:2.229333pt;}
.wsfb{word-spacing:2.240000pt;}
.ws33{word-spacing:2.288000pt;}
.ws66{word-spacing:2.293333pt;}
.ws31{word-spacing:2.346667pt;}
.ws64{word-spacing:2.405333pt;}
.ws127{word-spacing:2.453333pt;}
.ws65{word-spacing:2.464000pt;}
.ws24{word-spacing:2.522667pt;}
.ws176{word-spacing:2.533333pt;}
.ws4f{word-spacing:2.581333pt;}
.ws184{word-spacing:2.634667pt;}
.ws45{word-spacing:2.640000pt;}
.ws189{word-spacing:2.685333pt;}
.ws5e{word-spacing:2.698667pt;}
.ws71{word-spacing:2.757333pt;}
.ws14{word-spacing:2.816000pt;}
.ws163{word-spacing:2.837333pt;}
.ws19{word-spacing:2.874667pt;}
.ws81{word-spacing:2.933333pt;}
.ws179{word-spacing:2.938667pt;}
.ws10{word-spacing:2.992000pt;}
.ws164{word-spacing:3.040000pt;}
.ws14a{word-spacing:3.090667pt;}
.ws29{word-spacing:3.109333pt;}
.ws174{word-spacing:3.141333pt;}
.ws11e{word-spacing:3.146667pt;}
.ws44{word-spacing:3.168000pt;}
.wsf{word-spacing:3.226667pt;}
.ws14b{word-spacing:3.242667pt;}
.ws57{word-spacing:3.285333pt;}
.ws172{word-spacing:3.293333pt;}
.wsab{word-spacing:3.344000pt;}
.ws17b{word-spacing:3.394667pt;}
.wsb5{word-spacing:3.402667pt;}
.ws95{word-spacing:3.413333pt;}
.ws90{word-spacing:3.461333pt;}
.wsb{word-spacing:3.496000pt;}
.ws42{word-spacing:3.520000pt;}
.ws18f{word-spacing:3.546667pt;}
.ws72{word-spacing:3.578667pt;}
.ws12a{word-spacing:3.626667pt;}
.ws30{word-spacing:3.637333pt;}
.ws186{word-spacing:3.648000pt;}
.ws3c{word-spacing:3.680000pt;}
.wsf0{word-spacing:3.696000pt;}
.ws62{word-spacing:3.754667pt;}
.ws6e{word-spacing:3.813333pt;}
.ws13e{word-spacing:3.850667pt;}
.ws70{word-spacing:3.872000pt;}
.ws28{word-spacing:3.930667pt;}
.ws125{word-spacing:3.989333pt;}
.ws185{word-spacing:4.002667pt;}
.ws1c{word-spacing:4.048000pt;}
.ws25{word-spacing:4.106667pt;}
.ws15d{word-spacing:4.154667pt;}
.wsf4{word-spacing:4.224000pt;}
.ws15c{word-spacing:4.458667pt;}
.ws159{word-spacing:4.762667pt;}
.wsaf{word-spacing:4.986667pt;}
.ws12c{word-spacing:7.040000pt;}
.ws165{word-spacing:7.093333pt;}
.wscd{word-spacing:49.136427pt;}
.wsda{word-spacing:49.136960pt;}
.wsc2{word-spacing:54.485333pt;}
.wsd0{word-spacing:55.850667pt;}
.wsc9{word-spacing:56.149333pt;}
.wsc5{word-spacing:57.045333pt;}
.wse6{word-spacing:58.709333pt;}
.wsc4{word-spacing:59.861333pt;}
.wsef{word-spacing:80.426667pt;}
.ws104{word-spacing:94.825547pt;}
.wsc0{word-spacing:96.512000pt;}
.wsd3{word-spacing:97.962667pt;}
.wsd7{word-spacing:101.930667pt;}
.wsed{word-spacing:102.144000pt;}
.wsea{word-spacing:102.314667pt;}
.wse8{word-spacing:102.656000pt;}
.wsca{word-spacing:104.533333pt;}
.wsde{word-spacing:105.984000pt;}
.wscb{word-spacing:107.050667pt;}
.wse5{word-spacing:107.349333pt;}
.wsd6{word-spacing:107.434667pt;}
.wsce{word-spacing:110.933333pt;}
.wse9{word-spacing:110.978560pt;}
.wsc8{word-spacing:112.213333pt;}
.wsd2{word-spacing:112.799520pt;}
.wsc6{word-spacing:115.754667pt;}
.wse7{word-spacing:117.077333pt;}
.wsdf{word-spacing:118.357333pt;}
.wse2{word-spacing:120.362667pt;}
.wscc{word-spacing:121.600000pt;}
.wsc7{word-spacing:122.581333pt;}
.wsec{word-spacing:122.837333pt;}
.wse3{word-spacing:123.306667pt;}
.wse4{word-spacing:125.226667pt;}
.wse1{word-spacing:125.354667pt;}
.wsc3{word-spacing:125.525333pt;}
.wse0{word-spacing:126.933333pt;}
.wsd4{word-spacing:130.688000pt;}
.ws100{word-spacing:146.560000pt;}
.wsc1{word-spacing:200.789333pt;}
.wsf3{word-spacing:267.012000pt;}
.wsdd{word-spacing:267.012533pt;}
.ws103{word-spacing:391.637333pt;}
.wsd5{word-spacing:466.688000pt;}
.wscf{word-spacing:567.680000pt;}
.wseb{word-spacing:775.808000pt;}
.wsee{word-spacing:856.832000pt;}
.ws102{word-spacing:943.530667pt;}
.ws101{word-spacing:1083.861333pt;}
.ws194{word-spacing:1670.546133pt;}
.ws192{word-spacing:1675.058133pt;}
.ws131{word-spacing:1686.818133pt;}
.wsf5{word-spacing:1687.010133pt;}
.ws120{word-spacing:1689.554133pt;}
.ws3d{word-spacing:1690.418133pt;}
.ws69{word-spacing:1690.610133pt;}
.ws12b{word-spacing:1690.802133pt;}
.ws85{word-spacing:1691.330133pt;}
.ws142{word-spacing:1693.538133pt;}
.ws10c{word-spacing:1695.170133pt;}
.ws99{word-spacing:1695.890133pt;}
.wsdc{word-spacing:1696.562133pt;}
.ws17c{word-spacing:1697.282133pt;}
.wsbf{word-spacing:1703.570133pt;}
.wsb0{word-spacing:1707.554133pt;}
._e{margin-left:-2329.152000pt;}
._15{margin-left:-2327.712000pt;}
._11{margin-left:-2326.752000pt;}
._d{margin-left:-16.544000pt;}
._1d{margin-left:-15.295467pt;}
._1f{margin-left:-14.283733pt;}
._9{margin-left:-12.768000pt;}
._17{margin-left:-11.753600pt;}
._a{margin-left:-10.820000pt;}
._2{margin-left:-9.520000pt;}
._7{margin-left:-8.041067pt;}
._18{margin-left:-6.744000pt;}
._c{margin-left:-5.762133pt;}
._8{margin-left:-4.560000pt;}
._4{margin-left:-3.617600pt;}
._0{margin-left:-2.266667pt;}
._1{margin-left:-0.915733pt;}
._3{width:0.906667pt;}
._5{width:2.674667pt;}
._6{width:3.800000pt;}
._b{width:4.796800pt;}
._16{width:5.984000pt;}
._20{width:6.882133pt;}
._e5{width:14.490667pt;}
._d1{width:21.333333pt;}
._a2{width:24.160000pt;}
._e4{width:25.386667pt;}
._1a{width:26.773333pt;}
._d0{width:27.840000pt;}
._9f{width:28.746667pt;}
._e7{width:29.653333pt;}
._1e{width:30.826667pt;}
._9e{width:31.733333pt;}
._22{width:33.120000pt;}
._ce{width:34.986667pt;}
._1c{width:36.266667pt;}
._e6{width:38.240000pt;}
._21{width:39.146667pt;}
._24{width:43.178667pt;}
._1b{width:44.426667pt;}
._96{width:46.464000pt;}
._10{width:49.280000pt;}
._19{width:50.346667pt;}
._12{width:53.120000pt;}
._14{width:54.346667pt;}
._13{width:57.066667pt;}
._f{width:59.093333pt;}
._6c{width:60.288000pt;}
._5c{width:61.568000pt;}
._2f{width:62.634667pt;}
._9b{width:64.275733pt;}
._88{width:65.493333pt;}
._4e{width:66.622400pt;}
._2a{width:68.736000pt;}
._e2{width:72.106667pt;}
._e0{width:73.092267pt;}
._e3{width:74.585067pt;}
._df{width:75.780267pt;}
._c2{width:80.486933pt;}
._e1{width:86.661333pt;}
._29{width:89.088000pt;}
._28{width:93.104000pt;}
._2c{width:100.053333pt;}
._d6{width:103.253333pt;}
._d5{width:106.305067pt;}
._2b{width:109.088000pt;}
._a6{width:110.080000pt;}
._a3{width:111.701333pt;}
._a9{width:112.896000pt;}
._80{width:114.048000pt;}
._78{width:115.626667pt;}
._5f{width:117.286933pt;}
._72{width:118.442667pt;}
._25{width:119.424000pt;}
._6a{width:121.514667pt;}
._4a{width:122.643733pt;}
._5a{width:123.776000pt;}
._b5{width:124.732800pt;}
._82{width:126.659733pt;}
._a5{width:127.954133pt;}
._32{width:129.177067pt;}
._89{width:130.179733pt;}
._66{width:131.347733pt;}
._43{width:133.651733pt;}
._3a{width:135.017067pt;}
._2d{width:136.576000pt;}
._54{width:137.562667pt;}
._26{width:140.074667pt;}
._95{width:141.696000pt;}
._5e{width:142.592000pt;}
._8d{width:146.090667pt;}
._c4{width:149.162667pt;}
._bf{width:152.320000pt;}
._49{width:153.258667pt;}
._6e{width:154.154667pt;}
._92{width:155.136000pt;}
._31{width:156.416000pt;}
._4f{width:157.420267pt;}
._65{width:158.620267pt;}
._42{width:160.213333pt;}
._39{width:161.683733pt;}
._b7{width:167.160533pt;}
._d7{width:170.774933pt;}
._98{width:178.224000pt;}
._2e{width:194.547733pt;}
._c9{width:195.547733pt;}
._61{width:198.656000pt;}
._35{width:200.320000pt;}
._67{width:202.369600pt;}
._8f{width:204.757333pt;}
._c1{width:210.501333pt;}
._3d{width:211.968000pt;}
._62{width:215.168000pt;}
._a0{width:216.897600pt;}
._4c{width:218.220267pt;}
._3f{width:219.818667pt;}
._cf{width:221.789867pt;}
._7f{width:225.920000pt;}
._94{width:227.328000pt;}
._55{width:228.715733pt;}
._cc{width:230.442667pt;}
._8c{width:231.594667pt;}
._46{width:232.533333pt;}
._70{width:235.520000pt;}
._a8{width:238.705067pt;}
._37{width:240.298667pt;}
._77{width:241.676267pt;}
._7e{width:243.562667pt;}
._6b{width:244.761067pt;}
._36{width:246.485333pt;}
._3e{width:248.746667pt;}
._51{width:250.348267pt;}
._47{width:251.349333pt;}
._b2{width:253.098667pt;}
._59{width:254.828267pt;}
._a1{width:256.166400pt;}
._ac{width:257.830400pt;}
._68{width:261.386133pt;}
._63{width:263.936000pt;}
._71{width:266.026667pt;}
._c7{width:269.817600pt;}
._34{width:271.104000pt;}
._5d{width:274.835733pt;}
._60{width:277.610133pt;}
._86{width:279.130667pt;}
._b3{width:282.282667pt;}
._ae{width:284.940267pt;}
._56{width:286.122667pt;}
._8e{width:288.524800pt;}
._3c{width:289.920000pt;}
._41{width:293.097067pt;}
._b1{width:294.741333pt;}
._8a{width:296.196267pt;}
._30{width:297.534400pt;}
._cb{width:298.856533pt;}
._45{width:300.501333pt;}
._6d{width:304.341333pt;}
._c5{width:305.293333pt;}
._85{width:306.985067pt;}
._53{width:315.989333pt;}
._7a{width:318.503467pt;}
._dd{width:319.402667pt;}
._9c{width:320.512000pt;}
._b8{width:327.598400pt;}
._58{width:332.416000pt;}
._87{width:343.486400pt;}
._7c{width:347.269333pt;}
._bd{width:364.762667pt;}
._48{width:370.821333pt;}
._40{width:387.034667pt;}
._91{width:392.368000pt;}
._d2{width:409.344000pt;}
._4d{width:418.488533pt;}
._d3{width:444.032000pt;}
._38{width:455.443733pt;}
._9a{width:466.266667pt;}
._64{width:472.046400pt;}
._a4{width:480.432000pt;}
._7b{width:481.472533pt;}
._84{width:484.745067pt;}
._5b{width:497.513067pt;}
._ca{width:506.069333pt;}
._c0{width:508.640000pt;}
._cd{width:529.109333pt;}
._81{width:539.050667pt;}
._b9{width:544.580267pt;}
._90{width:547.114667pt;}
._bb{width:553.502933pt;}
._99{width:555.233067pt;}
._75{width:565.484267pt;}
._69{width:573.737600pt;}
._c6{width:584.112000pt;}
._da{width:600.467733pt;}
._af{width:608.810667pt;}
._a7{width:616.851733pt;}
._aa{width:617.875733pt;}
._b6{width:618.782400pt;}
._b4{width:619.934400pt;}
._ad{width:622.025067pt;}
._76{width:629.954133pt;}
._d8{width:642.480000pt;}
._23{width:649.258667pt;}
._97{width:688.389333pt;}
._27{width:712.195200pt;}
._79{width:724.969067pt;}
._ab{width:764.059733pt;}
._8b{width:765.402667pt;}
._b0{width:780.877867pt;}
._4b{width:783.916800pt;}
._6f{width:785.593067pt;}
._33{width:787.936000pt;}
._74{width:788.931200pt;}
._83{width:790.052267pt;}
._50{width:791.751467pt;}
._c8{width:793.197333pt;}
._44{width:795.411200pt;}
._3b{width:797.182400pt;}
._93{width:799.492800pt;}
._9d{width:801.034667pt;}
._7d{width:803.677333pt;}
._73{width:808.169067pt;}
._bc{width:817.129067pt;}
._ba{width:818.560000pt;}
._c3{width:834.090667pt;}
._52{width:845.244267pt;}
._57{width:874.709333pt;}
._be{width:876.458667pt;}
._d9{width:945.194667pt;}
._d4{width:946.858667pt;}
._dc{width:1018.515733pt;}
._db{width:1277.525333pt;}
._de{width:1583.166400pt;}
.fsa{font-size:26.666667pt;}
.fs8{font-size:29.538667pt;}
.fs9{font-size:31.093333pt;}
.fs6{font-size:34.202667pt;}
.fsb{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:90.666667pt;}
.yff{bottom:-87.999333pt;}
.yfe{bottom:-81.332667pt;}
.yfd{bottom:-74.666000pt;}
.yfc{bottom:-67.999333pt;}
.yfb{bottom:-61.332667pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:79.748000pt;}
.y50{bottom:79.748133pt;}
.y8a{bottom:79.748267pt;}
.yb5{bottom:79.752933pt;}
.y1d5{bottom:79.753200pt;}
.y20c{bottom:79.768533pt;}
.y226{bottom:86.430933pt;}
.y228{bottom:89.182400pt;}
.y224{bottom:93.895333pt;}
.y12c{bottom:95.748000pt;}
.y4f{bottom:95.748133pt;}
.y89{bottom:95.748267pt;}
.yd2{bottom:95.748533pt;}
.yb7{bottom:97.511733pt;}
.y25{bottom:97.511867pt;}
.yb4{bottom:97.514267pt;}
.y21b{bottom:97.516933pt;}
.y20b{bottom:97.527200pt;}
.y225{bottom:102.428933pt;}
.y227{bottom:105.180400pt;}
.y229{bottom:105.386000pt;}
.y223{bottom:109.893333pt;}
.y12b{bottom:111.748000pt;}
.ye0{bottom:111.748133pt;}
.y4e{bottom:111.748267pt;}
.y19f{bottom:111.748400pt;}
.yd1{bottom:111.748533pt;}
.y24{bottom:115.275600pt;}
.y15a{bottom:115.280533pt;}
.y1ef{bottom:115.280667pt;}
.y1be{bottom:115.282933pt;}
.yfa{bottom:115.285333pt;}
.y20a{bottom:115.285867pt;}
.y6f{bottom:115.287867pt;}
.y12a{bottom:127.748000pt;}
.y171{bottom:127.748133pt;}
.y4d{bottom:127.748267pt;}
.y19e{bottom:127.748400pt;}
.yd0{bottom:127.748533pt;}
.ya0{bottom:127.748667pt;}
.y23{bottom:133.039333pt;}
.y159{bottom:133.041867pt;}
.y1bd{bottom:133.044267pt;}
.y1d4{bottom:133.044533pt;}
.yf9{bottom:133.046667pt;}
.y6e{bottom:133.049200pt;}
.y1c6{bottom:137.923333pt;}
.y12d{bottom:143.748000pt;}
.ydf{bottom:143.748267pt;}
.y19d{bottom:143.748400pt;}
.ycf{bottom:143.748533pt;}
.y9f{bottom:143.748667pt;}
.yb6{bottom:150.803067pt;}
.y88{bottom:150.803200pt;}
.y22{bottom:150.805600pt;}
.yf8{bottom:150.808000pt;}
.y6d{bottom:150.810533pt;}
.y1ae{bottom:150.812933pt;}
.y21a{bottom:150.838933pt;}
.yde{bottom:159.748267pt;}
.y167{bottom:159.748400pt;}
.yce{bottom:159.748533pt;}
.y9e{bottom:159.748667pt;}
.y4c{bottom:168.566933pt;}
.y21{bottom:168.569333pt;}
.y6c{bottom:168.571867pt;}
.y1ad{bottom:168.574267pt;}
.y1ee{bottom:168.582267pt;}
.y219{bottom:168.597600pt;}
.ydd{bottom:175.748267pt;}
.y166{bottom:175.748400pt;}
.ycd{bottom:175.748533pt;}
.y9d{bottom:175.748667pt;}
.y20{bottom:186.330667pt;}
.y6b{bottom:186.333200pt;}
.y1ac{bottom:186.335600pt;}
.y209{bottom:186.335867pt;}
.y1ed{bottom:186.340933pt;}
.y1d3{bottom:186.346133pt;}
.y218{bottom:186.356267pt;}
.y139{bottom:186.357600pt;}
.y170{bottom:191.748267pt;}
.y165{bottom:191.748400pt;}
.y1ab{bottom:191.748533pt;}
.y9c{bottom:191.748667pt;}
.ycc{bottom:191.748933pt;}
.y123{bottom:196.417333pt;}
.y1f{bottom:204.094533pt;}
.y4b{bottom:204.096933pt;}
.y1ec{bottom:204.099600pt;}
.y1d2{bottom:204.104800pt;}
.ydc{bottom:204.109200pt;}
.y217{bottom:204.114933pt;}
.yf0{bottom:204.116533pt;}
.y138{bottom:204.118933pt;}
.y16f{bottom:207.748267pt;}
.y164{bottom:207.748400pt;}
.y1aa{bottom:207.748533pt;}
.ycb{bottom:207.748933pt;}
.yb9{bottom:217.135067pt;}
.y122{bottom:220.984267pt;}
.y1e{bottom:221.858267pt;}
.y9b{bottom:221.860800pt;}
.y1b7{bottom:221.863200pt;}
.y1d1{bottom:221.863467pt;}
.y158{bottom:221.868000pt;}
.ydb{bottom:221.870533pt;}
.y216{bottom:221.873600pt;}
.yef{bottom:221.877867pt;}
.y137{bottom:221.880267pt;}
.y1c5{bottom:221.880400pt;}
.y16e{bottom:223.748267pt;}
.y163{bottom:223.748400pt;}
.y19c{bottom:223.748533pt;}
.yca{bottom:223.748933pt;}
.y189{bottom:226.742267pt;}
.yb8{bottom:233.133067pt;}
.y1d{bottom:239.622133pt;}
.y6a{bottom:239.624533pt;}
.y157{bottom:239.629333pt;}
.yda{bottom:239.631867pt;}
.y215{bottom:239.632267pt;}
.y188{bottom:239.634267pt;}
.ye5{bottom:239.636800pt;}
.y208{bottom:239.637467pt;}
.yee{bottom:239.639200pt;}
.y136{bottom:239.641600pt;}
.yb3{bottom:239.646533pt;}
.y16d{bottom:239.748267pt;}
.y162{bottom:239.748400pt;}
.y19b{bottom:239.748533pt;}
.yc9{bottom:239.748933pt;}
.y121{bottom:241.047200pt;}
.y120{bottom:248.713867pt;}
.y19a{bottom:255.748533pt;}
.yc8{bottom:255.748933pt;}
.y1c{bottom:257.385867pt;}
.y9a{bottom:257.388267pt;}
.y156{bottom:257.390667pt;}
.y214{bottom:257.390933pt;}
.yd9{bottom:257.393200pt;}
.yf7{bottom:257.395600pt;}
.y207{bottom:257.396133pt;}
.y87{bottom:257.398133pt;}
.yed{bottom:257.400533pt;}
.y135{bottom:257.402933pt;}
.y1c4{bottom:257.403067pt;}
.yb2{bottom:257.407867pt;}
.y1eb{bottom:257.426800pt;}
.y199{bottom:271.748533pt;}
.yc7{bottom:271.748933pt;}
.y69{bottom:275.149600pt;}
.y155{bottom:275.152000pt;}
.y161{bottom:275.152133pt;}
.yd8{bottom:275.154533pt;}
.y206{bottom:275.154800pt;}
.y4a{bottom:275.156933pt;}
.y86{bottom:275.159467pt;}
.y1b{bottom:275.161867pt;}
.y134{bottom:275.164267pt;}
.yb1{bottom:275.169200pt;}
.y1ea{bottom:275.185467pt;}
.y11f{bottom:276.443600pt;}
.y198{bottom:287.748533pt;}
.y154{bottom:292.913333pt;}
.y68{bottom:292.913467pt;}
.y1bc{bottom:292.915867pt;}
.yf6{bottom:292.918267pt;}
.y85{bottom:292.920800pt;}
.y1a{bottom:292.923200pt;}
.y133{bottom:292.925600pt;}
.y1c3{bottom:292.925733pt;}
.yb0{bottom:292.930533pt;}
.y1e9{bottom:292.944133pt;}
.y11e{bottom:301.010533pt;}
.y67{bottom:310.677200pt;}
.y49{bottom:310.679600pt;}
.y84{bottom:310.682133pt;}
.y19{bottom:310.684533pt;}
.y132{bottom:310.686933pt;}
.y1c2{bottom:310.687067pt;}
.y1d0{bottom:310.687467pt;}
.yaf{bottom:310.691867pt;}
.y1e8{bottom:310.702800pt;}
.y11d{bottom:321.073467pt;}
.y11c{bottom:327.740133pt;}
.y48{bottom:328.440933pt;}
.y153{bottom:328.443333pt;}
.y83{bottom:328.443467pt;}
.y18{bottom:328.445867pt;}
.y1cf{bottom:328.446133pt;}
.y131{bottom:328.448267pt;}
.y66{bottom:328.448400pt;}
.y160{bottom:328.450800pt;}
.yae{bottom:328.453200pt;}
.y1e7{bottom:328.461467pt;}
.y205{bottom:328.502400pt;}
.y152{bottom:346.204667pt;}
.y47{bottom:346.204800pt;}
.y17{bottom:346.207200pt;}
.y130{bottom:346.209600pt;}
.y65{bottom:346.209733pt;}
.y15f{bottom:346.212133pt;}
.yad{bottom:346.214533pt;}
.y1e6{bottom:346.220133pt;}
.y213{bottom:346.225200pt;}
.y204{bottom:346.261067pt;}
.y11b{bottom:354.469867pt;}
.y16{bottom:363.968533pt;}
.y12f{bottom:363.970933pt;}
.y64{bottom:363.971067pt;}
.y15e{bottom:363.973467pt;}
.yac{bottom:363.975867pt;}
.y1e5{bottom:363.978800pt;}
.y212{bottom:363.983867pt;}
.y203{bottom:364.019733pt;}
.yc6{bottom:368.852533pt;}
.y11a{bottom:374.532800pt;}
.y16c{bottom:378.911467pt;}
.y118{bottom:381.199467pt;}
.y12e{bottom:381.732267pt;}
.y15{bottom:381.732400pt;}
.yc5{bottom:381.734800pt;}
.y99{bottom:381.737200pt;}
.y1e4{bottom:381.737467pt;}
.y82{bottom:381.739733pt;}
.y211{bottom:381.742533pt;}
.y187{bottom:381.744533pt;}
.y46{bottom:381.761733pt;}
.y202{bottom:381.778400pt;}
.ye4{bottom:386.616267pt;}
.y117{bottom:387.866133pt;}
.y16b{bottom:394.909467pt;}
.y1ce{bottom:399.370133pt;}
.y14{bottom:399.496133pt;}
.y98{bottom:399.498533pt;}
.y81{bottom:399.501067pt;}
.y210{bottom:399.501200pt;}
.y186{bottom:399.505867pt;}
.ye3{bottom:399.508400pt;}
.y45{bottom:399.523067pt;}
.y201{bottom:399.537067pt;}
.y119{bottom:401.199467pt;}
.y13{bottom:417.259867pt;}
.y63{bottom:417.262400pt;}
.y1bb{bottom:417.264800pt;}
.y1b0{bottom:417.267200pt;}
.ye2{bottom:417.269733pt;}
.y44{bottom:417.284400pt;}
.y200{bottom:417.295733pt;}
.y116{bottom:421.262400pt;}
.y17e{bottom:424.808400pt;}
.y151{bottom:434.459333pt;}
.y12{bottom:435.023733pt;}
.y1ba{bottom:435.026133pt;}
.y185{bottom:435.028533pt;}
.yc4{bottom:435.031067pt;}
.y43{bottom:435.045733pt;}
.y197{bottom:435.050533pt;}
.y1ff{bottom:435.054400pt;}
.y150{bottom:441.126000pt;}
.y115{bottom:445.829333pt;}
.y17d{bottom:447.491600pt;}
.y62{bottom:452.787467pt;}
.yd7{bottom:452.789867pt;}
.yc3{bottom:452.792400pt;}
.y1cd{bottom:452.792533pt;}
.y97{bottom:452.794800pt;}
.y20f{bottom:452.797733pt;}
.y42{bottom:452.807067pt;}
.y1fe{bottom:452.813067pt;}
.yec{bottom:457.671467pt;}
.y14f{bottom:463.351733pt;}
.y14d{bottom:470.018400pt;}
.y17c{bottom:470.168933pt;}
.y114{bottom:470.396267pt;}
.y11{bottom:470.551200pt;}
.yc2{bottom:470.553733pt;}
.y96{bottom:470.556133pt;}
.y20e{bottom:470.556400pt;}
.y61{bottom:470.558533pt;}
.y41{bottom:470.568400pt;}
.y1fd{bottom:470.571733pt;}
.y196{bottom:470.573200pt;}
.y14c{bottom:476.685067pt;}
.y80{bottom:488.315067pt;}
.y95{bottom:488.317467pt;}
.y60{bottom:488.319867pt;}
.y40{bottom:488.329733pt;}
.y1fc{bottom:488.330400pt;}
.y195{bottom:488.334533pt;}
.y1e3{bottom:488.340533pt;}
.y14e{bottom:490.018400pt;}
.y1c1{bottom:490.157600pt;}
.y17b{bottom:492.846267pt;}
.y113{bottom:494.963200pt;}
.y7f{bottom:506.078800pt;}
.y5f{bottom:506.081200pt;}
.y15d{bottom:506.086133pt;}
.y1fb{bottom:506.089067pt;}
.y3f{bottom:506.091067pt;}
.y194{bottom:506.095867pt;}
.y1e2{bottom:506.099200pt;}
.y1b6{bottom:506.105733pt;}
.y1c0{bottom:506.155600pt;}
.y1cc{bottom:507.842533pt;}
.y14b{bottom:510.081467pt;}
.y17a{bottom:515.523600pt;}
.y112{bottom:519.530133pt;}
.y1bf{bottom:522.153600pt;}
.y5e{bottom:523.842533pt;}
.yd6{bottom:523.845067pt;}
.y15c{bottom:523.847467pt;}
.y1fa{bottom:523.847733pt;}
.y3e{bottom:523.852400pt;}
.y193{bottom:523.857200pt;}
.y1e1{bottom:523.857867pt;}
.y1b5{bottom:523.867067pt;}
.yf5{bottom:523.872000pt;}
.y14a{bottom:534.648400pt;}
.y179{bottom:538.200933pt;}
.y111{bottom:539.593200pt;}
.y5d{bottom:541.606400pt;}
.y15b{bottom:541.608800pt;}
.y20d{bottom:541.611467pt;}
.y3d{bottom:541.613733pt;}
.y1e0{bottom:541.616533pt;}
.y192{bottom:541.618533pt;}
.y7e{bottom:541.621067pt;}
.y1b4{bottom:541.628400pt;}
.yf4{bottom:541.633333pt;}
.y110{bottom:546.259867pt;}
.y10{bottom:556.923733pt;}
.y178{bottom:557.315600pt;}
.y149{bottom:559.215200pt;}
.y94{bottom:559.370133pt;}
.y5c{bottom:559.372533pt;}
.y3c{bottom:559.375067pt;}
.y1df{bottom:559.375200pt;}
.y191{bottom:559.379867pt;}
.y7d{bottom:559.382400pt;}
.y1b3{bottom:559.389733pt;}
.yab{bottom:559.392133pt;}
.y10f{bottom:568.485600pt;}
.y222{bottom:569.830667pt;}
.y177{bottom:570.648933pt;}
.yf{bottom:572.923733pt;}
.y10d{bottom:575.152267pt;}
.y5b{bottom:577.133867pt;}
.y3b{bottom:577.136400pt;}
.yc1{bottom:577.138800pt;}
.y190{bottom:577.141200pt;}
.y7c{bottom:577.143733pt;}
.yeb{bottom:577.146133pt;}
.y1a9{bottom:577.151067pt;}
.yaa{bottom:577.153467pt;}
.yf3{bottom:577.156000pt;}
.y148{bottom:579.278267pt;}
.y10c{bottom:581.818933pt;}
.y221{bottom:585.828667pt;}
.y147{bottom:585.944933pt;}
.y176{bottom:589.763600pt;}
.y3a{bottom:594.897733pt;}
.yc0{bottom:594.900133pt;}
.y18f{bottom:594.902533pt;}
.y7b{bottom:594.905067pt;}
.yea{bottom:594.907467pt;}
.y1a8{bottom:594.912400pt;}
.ya9{bottom:594.914800pt;}
.yf2{bottom:594.917333pt;}
.y10e{bottom:595.152267pt;}
.y220{bottom:601.826667pt;}
.y175{bottom:612.440933pt;}
.y39{bottom:612.661467pt;}
.y18e{bottom:612.663867pt;}
.y7a{bottom:612.666400pt;}
.ye9{bottom:612.668800pt;}
.y1f9{bottom:612.671733pt;}
.y1a7{bottom:612.673733pt;}
.y146{bottom:612.674667pt;}
.ya8{bottom:612.676133pt;}
.yf1{bottom:612.678667pt;}
.y1de{bottom:612.692133pt;}
.y10b{bottom:615.215200pt;}
.yd5{bottom:617.545467pt;}
.y21f{bottom:617.824667pt;}
.ye{bottom:626.719067pt;}
.y38{bottom:630.425200pt;}
.y79{bottom:630.427733pt;}
.ye8{bottom:630.430133pt;}
.y1f8{bottom:630.430400pt;}
.y5a{bottom:630.432667pt;}
.y1a6{bottom:630.435067pt;}
.y93{bottom:630.440000pt;}
.y1dd{bottom:630.450800pt;}
.y21e{bottom:633.822667pt;}
.y173{bottom:635.165867pt;}
.y174{bottom:636.104533pt;}
.y172{bottom:636.221867pt;}
.y145{bottom:637.241467pt;}
.y10a{bottom:639.782133pt;}
.yd{bottom:642.719067pt;}
.ybf{bottom:648.189067pt;}
.y78{bottom:648.191467pt;}
.ye1{bottom:648.194000pt;}
.y1a5{bottom:648.196400pt;}
.ya7{bottom:648.198800pt;}
.y92{bottom:648.201333pt;}
.y184{bottom:648.203733pt;}
.y37{bottom:648.206133pt;}
.y1dc{bottom:648.209467pt;}
.yc{bottom:658.723067pt;}
.y109{bottom:659.845200pt;}
.y144{bottom:661.808533pt;}
.ybe{bottom:665.952800pt;}
.y59{bottom:665.955333pt;}
.y1a4{bottom:665.957733pt;}
.ya6{bottom:665.960133pt;}
.y91{bottom:665.962667pt;}
.y183{bottom:665.965067pt;}
.y36{bottom:665.967467pt;}
.y1db{bottom:665.968133pt;}
.y108{bottom:666.511867pt;}
.yb{bottom:674.721067pt;}
.y58{bottom:683.716667pt;}
.y18d{bottom:683.719067pt;}
.y77{bottom:683.721467pt;}
.y90{bottom:683.724000pt;}
.y182{bottom:683.726400pt;}
.y1da{bottom:683.726800pt;}
.y35{bottom:683.728800pt;}
.ybd{bottom:683.731200pt;}
.y143{bottom:686.375467pt;}
.y107{bottom:688.737600pt;}
.y16a{bottom:689.134133pt;}
.ya{bottom:690.719067pt;}
.y106{bottom:695.404267pt;}
.y57{bottom:701.480400pt;}
.y76{bottom:701.482800pt;}
.y8f{bottom:701.485333pt;}
.y1d9{bottom:701.485467pt;}
.y181{bottom:701.487733pt;}
.y34{bottom:701.490133pt;}
.ybc{bottom:701.492533pt;}
.y169{bottom:705.134133pt;}
.y9{bottom:706.719067pt;}
.y142{bottom:710.942400pt;}
.y105{bottom:717.629867pt;}
.y75{bottom:719.244133pt;}
.y56{bottom:719.246667pt;}
.y180{bottom:719.249067pt;}
.y33{bottom:719.251467pt;}
.ybb{bottom:719.253867pt;}
.y21d{bottom:719.254400pt;}
.y1cb{bottom:719.256400pt;}
.y8{bottom:722.719067pt;}
.y104{bottom:724.296533pt;}
.y141{bottom:735.509333pt;}
.y55{bottom:737.008000pt;}
.y17f{bottom:737.010400pt;}
.y32{bottom:737.012800pt;}
.y21c{bottom:737.013067pt;}
.yba{bottom:737.015200pt;}
.y1ca{bottom:737.017733pt;}
.ye7{bottom:737.020133pt;}
.y1f7{bottom:737.033467pt;}
.y7{bottom:738.719067pt;}
.y103{bottom:746.522267pt;}
.y102{bottom:753.188933pt;}
.y6{bottom:754.721067pt;}
.y54{bottom:754.771733pt;}
.y31{bottom:754.774133pt;}
.y74{bottom:754.776533pt;}
.y1c9{bottom:754.779067pt;}
.ye6{bottom:754.781467pt;}
.y1af{bottom:754.783867pt;}
.yd4{bottom:754.786400pt;}
.y1f6{bottom:754.792133pt;}
.y140{bottom:760.076133pt;}
.y5{bottom:770.719067pt;}
.y30{bottom:772.535467pt;}
.y73{bottom:772.537867pt;}
.y1c8{bottom:772.540400pt;}
.y53{bottom:772.542800pt;}
.y1a3{bottom:772.545200pt;}
.yd3{bottom:772.547733pt;}
.y1f5{bottom:772.550800pt;}
.y1b9{bottom:772.555067pt;}
.y101{bottom:779.918667pt;}
.y13f{bottom:784.643200pt;}
.y4{bottom:786.719067pt;}
.y2f{bottom:790.299200pt;}
.y1c7{bottom:790.301733pt;}
.y52{bottom:790.304133pt;}
.y1a2{bottom:790.306533pt;}
.y18c{bottom:790.309067pt;}
.y1f4{bottom:790.309467pt;}
.y1d8{bottom:790.314533pt;}
.y1b8{bottom:790.316400pt;}
.y100{bottom:807.320133pt;}
.y2e{bottom:808.063067pt;}
.y51{bottom:808.065467pt;}
.y1a1{bottom:808.067867pt;}
.y1f3{bottom:808.068133pt;}
.y8e{bottom:808.070400pt;}
.ya5{bottom:808.072800pt;}
.y1d7{bottom:808.073200pt;}
.y168{bottom:808.077733pt;}
.y13e{bottom:809.210000pt;}
.y1b2{bottom:812.947067pt;}
.y2d{bottom:825.826800pt;}
.y1a0{bottom:825.829200pt;}
.y8d{bottom:825.831733pt;}
.y1d6{bottom:825.831867pt;}
.ya4{bottom:825.834133pt;}
.y72{bottom:825.839067pt;}
.y13d{bottom:833.777067pt;}
.y129{bottom:840.273867pt;}
.y2c{bottom:843.590533pt;}
.y8c{bottom:843.593067pt;}
.ya3{bottom:843.595467pt;}
.y1b1{bottom:843.597867pt;}
.y71{bottom:843.600400pt;}
.y1f2{bottom:843.605867pt;}
.y3{bottom:848.073467pt;}
.y128{bottom:856.271867pt;}
.y13c{bottom:858.343867pt;}
.y2b{bottom:861.354400pt;}
.ya2{bottom:861.356800pt;}
.y18b{bottom:861.359200pt;}
.y70{bottom:861.361733pt;}
.y1f1{bottom:861.364533pt;}
.y127{bottom:872.269867pt;}
.y8b{bottom:879.118133pt;}
.y18a{bottom:879.120533pt;}
.y2a{bottom:879.123067pt;}
.y1f0{bottom:879.123200pt;}
.y13b{bottom:882.910800pt;}
.y2{bottom:886.742533pt;}
.y126{bottom:888.267867pt;}
.ya1{bottom:896.881867pt;}
.y29{bottom:896.884400pt;}
.y125{bottom:904.265867pt;}
.y13a{bottom:910.312400pt;}
.y1{bottom:912.083867pt;}
.y28{bottom:914.645733pt;}
.y124{bottom:920.263867pt;}
.y27{bottom:961.978533pt;}
.he{height:24.000000pt;}
.hd{height:30.782400pt;}
.h15{height:37.205333pt;}
.hf{height:38.400000pt;}
.h4{height:39.200000pt;}
.h16{height:41.720000pt;}
.h11{height:41.744000pt;}
.hc{height:44.181333pt;}
.h8{height:45.216000pt;}
.h17{height:45.498667pt;}
.h18{height:45.579733pt;}
.h5{height:45.600000pt;}
.h6{height:47.040000pt;}
.ha{height:48.000000pt;}
.h14{height:50.310400pt;}
.hb{height:52.682667pt;}
.h7{height:52.800000pt;}
.h9{height:55.264000pt;}
.h10{height:65.066667pt;}
.h3{height:65.312000pt;}
.h2{height:66.640000pt;}
.h12{height:68.410667pt;}
.h13{height:69.077333pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x1f{left:-650.217333pt;}
.x1d{left:-649.218933pt;}
.x24{left:-365.752933pt;}
.x0{left:0.000000pt;}
.x10{left:60.166667pt;}
.xa{left:63.319200pt;}
.x1{left:64.384667pt;}
.x7{left:67.721200pt;}
.x18{left:68.891333pt;}
.x8{left:71.282933pt;}
.x5{left:72.238267pt;}
.x34{left:74.560533pt;}
.x3e{left:82.340000pt;}
.xc{left:83.836400pt;}
.x2{left:86.532400pt;}
.xb{left:87.512667pt;}
.x3d{left:90.287867pt;}
.x25{left:91.404000pt;}
.x6{left:93.960133pt;}
.x9{left:94.937733pt;}
.x26{left:127.168000pt;}
.x14{left:160.291600pt;}
.x15{left:168.274533pt;}
.x22{left:184.497733pt;}
.x27{left:193.312000pt;}
.x28{left:229.216000pt;}
.x39{left:230.412933pt;}
.x3a{left:239.433600pt;}
.x16{left:257.856000pt;}
.x17{left:267.670933pt;}
.x29{left:270.794667pt;}
.x2a{left:306.698667pt;}
.x2b{left:344.490667pt;}
.x35{left:350.996133pt;}
.x23{left:352.357467pt;}
.x36{left:359.583600pt;}
.x3b{left:362.549200pt;}
.x3c{left:372.268800pt;}
.x2c{left:387.957333pt;}
.x20{left:411.610400pt;}
.x1e{left:422.468000pt;}
.x2d{left:423.861333pt;}
.x2e{left:454.101333pt;}
.x3{left:464.141067pt;}
.x37{left:467.799067pt;}
.x21{left:473.487733pt;}
.x38{left:476.532933pt;}
.x2f{left:484.341333pt;}
.x30{left:514.581333pt;}
.x31{left:544.821333pt;}
.x32{left:580.725333pt;}
.x33{left:629.856000pt;}
.x12{left:632.449200pt;}
.x3f{left:636.398533pt;}
.x11{left:637.784800pt;}
.x40{left:639.266667pt;}
.x4{left:640.226533pt;}
.x13{left:641.127467pt;}
.xd{left:643.022533pt;}
.xe{left:646.415867pt;}
.xf{left:653.477867pt;}
.x1c{left:902.608133pt;}
.x1a{left:1129.720667pt;}
.x19{left:1140.578400pt;}
.x1b{left:1191.598000pt;}
}




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