
    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_e5d138dde82c33bb598903b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_379abdd565e6fbd1726481f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_86ba100d2ef3696fe6df49dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932000;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_a6be8b86010c1b19148464b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_dbf343fa150ecbb1d8f9a8aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.069000;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_1731c6da08a3acfc9a12cde4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_be737a9b85c6cd6b03c03621.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.450000;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_a39a18f383f2fc693997604b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686000;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_8c05f09ff2ab4255fc672e23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706000;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_6f6d4d14ad741c410ffd4e84.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.903000;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;}
.m7{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.242639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242639,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.242744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242744,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.242758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242758,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.242836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242836,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.242872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242872,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.242953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242953,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.243003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243003,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.243058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243058,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.243092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243092,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.243189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243189,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.243311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243311,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.243383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243383,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.243408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243408,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.243417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243417,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.243639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243639,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.243653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243653,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.243692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243692,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.243708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243708,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.243778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243778,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.243839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243839,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.243858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243858,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.243864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243864,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.243883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243883,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.243892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243892,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.243947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243947,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.244147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244147,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.244156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244156,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.244308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244308,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.244403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244403,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.244511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244511,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244556,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.244689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244689,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.244697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244697,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.244767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244767,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.245069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245069,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.245118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245118,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.245143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245143,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.245158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245158,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.245196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245196,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245244,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245283,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.245331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245331,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.245411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245411,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.245443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245443,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.245528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245528,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.245692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245692,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.245783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245783,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245789,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.245811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245811,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.245929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245929,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.245967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245967,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.245982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245982,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.246053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246053,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.246071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246071,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246131,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246219,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246331,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.246378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246378,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.246389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246389,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246444,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.246571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246571,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246603,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.246619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246619,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.246728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246728,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246758,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246767,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.246769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246769,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.246792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246792,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246806,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.246882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246882,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247061,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247086,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.247097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247097,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247142,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.247314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247314,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.247333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247333,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.247386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247386,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247417,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.mda{transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.247554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247554,0.000000,0.000000,0.250000,0,0);}
.m106{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);}
.m8b{transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247669,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.247721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247721,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.247781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247781,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248056,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.248269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248269,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248406,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248428,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);}
.mbc{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);}
.m124{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);}
.m118{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);}
.m39{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.249004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249004,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249106,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249131,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m78{transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249294,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m1c{transform:matrix(0.249322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249322,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249342,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249492,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.249604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249604,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);}
.mfb{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);}
.me2{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249958,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,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);}
.m80{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250364,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250506,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250733,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);}
.me9{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);}
.mfd{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250928,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251006,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251106,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251253,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251369,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251471,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251508,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251681,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.251829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251829,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.251846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251846,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251997,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.252061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252061,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252086,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.252208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252208,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252361,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.252372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252372,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.252396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252396,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252403,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252442,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.252471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252471,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.252868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252868,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.253146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253146,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.253204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253204,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253375,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253704,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.253825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253825,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.254136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254136,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.254393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254393,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.254421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254421,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.254543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254543,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.254586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254586,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.254896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254896,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.760000px;}
.v2{vertical-align:-15.120000px;}
.v4{vertical-align:-8.099400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.099400px;}
.v3{vertical-align:15.120000px;}
.ls1f{letter-spacing:-5.562000px;}
.ls4b{letter-spacing:-2.940000px;}
.ls28{letter-spacing:-2.772000px;}
.ls4a{letter-spacing:-1.890000px;}
.ls18{letter-spacing:-1.836000px;}
.ls50{letter-spacing:-1.302000px;}
.ls3{letter-spacing:-1.260000px;}
.ls15{letter-spacing:-1.242000px;}
.ls23{letter-spacing:-0.924000px;}
.ls14{letter-spacing:-0.918000px;}
.ls4c{letter-spacing:-0.840000px;}
.ls48{letter-spacing:-0.798000px;}
.ls3b{letter-spacing:-0.756000px;}
.ls4f{letter-spacing:-0.714000px;}
.ls26{letter-spacing:-0.672000px;}
.ls19{letter-spacing:-0.648000px;}
.ls4d{letter-spacing:-0.630000px;}
.ls20{letter-spacing:-0.594000px;}
.ls24{letter-spacing:-0.588000px;}
.ls6{letter-spacing:-0.546000px;}
.ls27{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.486000px;}
.ls43{letter-spacing:-0.420000px;}
.ls22{letter-spacing:-0.414180px;}
.ls25{letter-spacing:-0.378000px;}
.ls4{letter-spacing:-0.330000px;}
.ls47{letter-spacing:-0.294000px;}
.ls13{letter-spacing:-0.270000px;}
.ls4e{letter-spacing:-0.252000px;}
.ls51{letter-spacing:-0.210000px;}
.ls49{letter-spacing:-0.168000px;}
.ls1e{letter-spacing:-0.159300px;}
.ls3c{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.099000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000036px;}
.ls31{letter-spacing:0.000117px;}
.ls45{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.269361px;}
.ls16{letter-spacing:0.269725px;}
.ls40{letter-spacing:0.269818px;}
.ls12{letter-spacing:0.270000px;}
.ls3f{letter-spacing:0.270088px;}
.ls44{letter-spacing:0.270153px;}
.ls3d{letter-spacing:0.270294px;}
.ls0{letter-spacing:0.297000px;}
.ls46{letter-spacing:0.378000px;}
.ls2e{letter-spacing:0.539456px;}
.ls2d{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.540050px;}
.lse{letter-spacing:0.689879px;}
.lsf{letter-spacing:0.690485px;}
.ls41{letter-spacing:0.719576px;}
.ls42{letter-spacing:0.756000px;}
.ls34{letter-spacing:0.932286px;}
.ls2a{letter-spacing:0.938534px;}
.ls33{letter-spacing:0.941800px;}
.ls29{letter-spacing:0.946171px;}
.lsd{letter-spacing:0.946507px;}
.lsc{letter-spacing:0.947109px;}
.ls1a{letter-spacing:0.971152px;}
.ls1c{letter-spacing:0.971758px;}
.ls1b{letter-spacing:0.972000px;}
.ls11{letter-spacing:1.007597px;}
.ls2f{letter-spacing:1.986801px;}
.ls2{letter-spacing:2.100000px;}
.ls3e{letter-spacing:3.943426px;}
.ls2c{letter-spacing:5.356379px;}
.ls9{letter-spacing:5.418768px;}
.ls1d{letter-spacing:5.677829px;}
.ls8{letter-spacing:6.922630px;}
.ls10{letter-spacing:8.371234px;}
.ls35{letter-spacing:9.505518px;}
.ls36{letter-spacing:9.633266px;}
.ls7{letter-spacing:15.418173px;}
.ls32{letter-spacing:15.660598px;}
.lsb{letter-spacing:18.096724px;}
.ls37{letter-spacing:244.767600px;}
.ls39{letter-spacing:246.267000px;}
.ls38{letter-spacing:293.358000px;}
.ls3a{letter-spacing:297.858600px;}
.ls2b{letter-spacing:523.005600px;}
.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;}
}
.ws137{word-spacing:-20.817000px;}
.ws6b{word-spacing:-16.191000px;}
.ws5{word-spacing:-13.122000px;}
.wsf5{word-spacing:-12.798000px;}
.ws28{word-spacing:-12.528000px;}
.ws6a{word-spacing:-12.366000px;}
.ws26{word-spacing:-12.258000px;}
.ws27{word-spacing:-11.988000px;}
.ws7{word-spacing:-11.664000px;}
.ws126{word-spacing:-10.878000px;}
.ws2{word-spacing:-10.794000px;}
.ws23{word-spacing:-10.248000px;}
.wsbe{word-spacing:-10.206000px;}
.ws3{word-spacing:-10.007580px;}
.ws105{word-spacing:-9.618000px;}
.wsc{word-spacing:-9.534000px;}
.ws155{word-spacing:-9.450000px;}
.ws138{word-spacing:-9.324000px;}
.ws154{word-spacing:-9.198000px;}
.ws109{word-spacing:-8.931000px;}
.ws1a2{word-spacing:-8.904000px;}
.ws139{word-spacing:-8.820000px;}
.ws1a3{word-spacing:-8.694000px;}
.wsa{word-spacing:-8.316000px;}
.ws6{word-spacing:-8.019000px;}
.ws9{word-spacing:-7.920000px;}
.ws153{word-spacing:-7.728000px;}
.ws8{word-spacing:-7.689000px;}
.ws98{word-spacing:-7.072920px;}
.wsbd{word-spacing:-6.818040px;}
.ws4{word-spacing:-6.665820px;}
.ws106{word-spacing:-5.625060px;}
.ws73{word-spacing:-5.508000px;}
.ws123{word-spacing:-3.978000px;}
.ws143{word-spacing:-3.456000px;}
.wsf2{word-spacing:-3.348000px;}
.ws16{word-spacing:-2.538000px;}
.ws186{word-spacing:-2.394000px;}
.ws1f{word-spacing:-2.322000px;}
.ws187{word-spacing:-2.268000px;}
.ws85{word-spacing:-2.160000px;}
.ws8f{word-spacing:-1.998000px;}
.ws13{word-spacing:-1.944000px;}
.ws63{word-spacing:-1.836000px;}
.ws8a{word-spacing:-1.674000px;}
.wsa1{word-spacing:-1.458000px;}
.ws159{word-spacing:-1.428000px;}
.ws72{word-spacing:-1.404000px;}
.ws30{word-spacing:-1.350000px;}
.ws199{word-spacing:-1.302000px;}
.ws2b{word-spacing:-1.242000px;}
.ws56{word-spacing:-1.188000px;}
.ws87{word-spacing:-1.134000px;}
.ws5b{word-spacing:-1.080000px;}
.ws29{word-spacing:-1.050000px;}
.ws89{word-spacing:-1.026000px;}
.wsaa{word-spacing:-0.972000px;}
.ws149{word-spacing:-0.966000px;}
.ws176{word-spacing:-0.924000px;}
.ws32{word-spacing:-0.918000px;}
.ws175{word-spacing:-0.882000px;}
.wscc{word-spacing:-0.864000px;}
.ws7d{word-spacing:-0.810000px;}
.wsee{word-spacing:-0.756000px;}
.ws31{word-spacing:-0.702000px;}
.ws179{word-spacing:-0.672000px;}
.ws152{word-spacing:-0.630000px;}
.ws4a{word-spacing:-0.594000px;}
.ws163{word-spacing:-0.588000px;}
.ws19d{word-spacing:-0.546000px;}
.ws10d{word-spacing:-0.540000px;}
.ws1cd{word-spacing:-0.504000px;}
.wsd3{word-spacing:-0.486000px;}
.ws1cc{word-spacing:-0.462000px;}
.wse3{word-spacing:-0.432000px;}
.ws189{word-spacing:-0.420000px;}
.ws1c5{word-spacing:-0.336000px;}
.wsb2{word-spacing:-0.324000px;}
.ws66{word-spacing:-0.270000px;}
.ws14d{word-spacing:-0.252000px;}
.wsd9{word-spacing:-0.216000px;}
.ws188{word-spacing:-0.210000px;}
.ws15a{word-spacing:-0.168000px;}
.ws1c2{word-spacing:-0.126000px;}
.ws3d{word-spacing:-0.108000px;}
.ws6c{word-spacing:-0.054000px;}
.wsdd{word-spacing:-0.042000px;}
.ws108{word-spacing:-0.039000px;}
.wsb{word-spacing:0.000000px;}
.ws17d{word-spacing:0.042000px;}
.ws51{word-spacing:0.108000px;}
.ws158{word-spacing:0.126000px;}
.ws1c{word-spacing:0.162000px;}
.ws160{word-spacing:0.168000px;}
.ws17a{word-spacing:0.210000px;}
.ws42{word-spacing:0.216000px;}
.ws1ca{word-spacing:0.252000px;}
.ws3b{word-spacing:0.270000px;}
.ws18c{word-spacing:0.294000px;}
.ws6e{word-spacing:0.324000px;}
.ws136{word-spacing:0.330000px;}
.ws3c{word-spacing:0.378000px;}
.ws157{word-spacing:0.420000px;}
.ws12e{word-spacing:0.432000px;}
.ws84{word-spacing:0.486000px;}
.ws122{word-spacing:0.504000px;}
.ws169{word-spacing:0.546000px;}
.ws74{word-spacing:0.594000px;}
.ws17f{word-spacing:0.630000px;}
.ws47{word-spacing:0.648000px;}
.ws18d{word-spacing:0.672000px;}
.ws78{word-spacing:0.702000px;}
.ws11b{word-spacing:0.756000px;}
.ws1bb{word-spacing:0.798000px;}
.ws116{word-spacing:0.810000px;}
.ws170{word-spacing:0.840000px;}
.ws1c7{word-spacing:0.882000px;}
.ws54{word-spacing:0.918000px;}
.ws151{word-spacing:0.924000px;}
.ws156{word-spacing:0.966000px;}
.ws4f{word-spacing:0.972000px;}
.ws1d{word-spacing:1.026000px;}
.ws64{word-spacing:1.080000px;}
.ws133{word-spacing:1.134000px;}
.ws17b{word-spacing:1.176000px;}
.ws2f{word-spacing:1.188000px;}
.ws1e{word-spacing:1.242000px;}
.ws177{word-spacing:1.260000px;}
.ws45{word-spacing:1.296000px;}
.ws1c8{word-spacing:1.302000px;}
.wsb5{word-spacing:1.350000px;}
.ws1bc{word-spacing:1.386000px;}
.ws9c{word-spacing:1.404000px;}
.ws62{word-spacing:1.458000px;}
.ws7e{word-spacing:1.512000px;}
.ws7f{word-spacing:1.566000px;}
.ws1b2{word-spacing:1.596000px;}
.ws12b{word-spacing:1.674000px;}
.ws19c{word-spacing:1.722000px;}
.wsd5{word-spacing:1.728000px;}
.ws1a5{word-spacing:1.764000px;}
.ws17e{word-spacing:1.806000px;}
.ws10b{word-spacing:1.890000px;}
.wsd6{word-spacing:1.944000px;}
.ws193{word-spacing:2.016000px;}
.ws21{word-spacing:2.052000px;}
.ws18a{word-spacing:2.058000px;}
.ws1ce{word-spacing:2.100000px;}
.wsb9{word-spacing:2.106000px;}
.ws76{word-spacing:2.160000px;}
.ws18e{word-spacing:2.184000px;}
.wsce{word-spacing:2.214000px;}
.ws19b{word-spacing:2.226000px;}
.ws1c9{word-spacing:2.310000px;}
.ws129{word-spacing:2.376000px;}
.ws9e{word-spacing:2.430000px;}
.ws1ad{word-spacing:2.478000px;}
.ws92{word-spacing:2.484000px;}
.wsb3{word-spacing:2.538000px;}
.ws2c{word-spacing:2.592000px;}
.ws1b5{word-spacing:2.604000px;}
.wsf0{word-spacing:2.700000px;}
.ws16e{word-spacing:2.730000px;}
.ws11f{word-spacing:2.754000px;}
.ws115{word-spacing:2.808000px;}
.ws167{word-spacing:2.856000px;}
.wsd0{word-spacing:2.862000px;}
.ws168{word-spacing:2.898000px;}
.ws5c{word-spacing:2.970000px;}
.wsd7{word-spacing:3.024000px;}
.ws1b1{word-spacing:3.066000px;}
.ws71{word-spacing:3.078000px;}
.ws15{word-spacing:3.132000px;}
.ws161{word-spacing:3.150000px;}
.ws14{word-spacing:3.186000px;}
.ws4b{word-spacing:3.294000px;}
.ws1b{word-spacing:3.348000px;}
.ws1b0{word-spacing:3.360000px;}
.ws48{word-spacing:3.402000px;}
.ws16b{word-spacing:3.444000px;}
.ws55{word-spacing:3.456000px;}
.ws162{word-spacing:3.486000px;}
.ws61{word-spacing:3.564000px;}
.ws1aa{word-spacing:3.612000px;}
.wsf1{word-spacing:3.618000px;}
.ws12c{word-spacing:3.672000px;}
.wsa0{word-spacing:3.726000px;}
.wsa3{word-spacing:3.834000px;}
.ws1ae{word-spacing:3.864000px;}
.ws79{word-spacing:3.942000px;}
.ws16d{word-spacing:3.948000px;}
.ws16c{word-spacing:3.990000px;}
.wsda{word-spacing:3.996000px;}
.wse4{word-spacing:4.104000px;}
.ws16a{word-spacing:4.116000px;}
.ws15b{word-spacing:4.158000px;}
.ws15c{word-spacing:4.200000px;}
.ws164{word-spacing:4.242000px;}
.ws5e{word-spacing:4.266000px;}
.ws18b{word-spacing:4.284000px;}
.ws191{word-spacing:4.452000px;}
.ws20{word-spacing:4.482000px;}
.ws192{word-spacing:4.494000px;}
.ws171{word-spacing:4.536000px;}
.ws1af{word-spacing:4.578000px;}
.ws141{word-spacing:4.644000px;}
.wsad{word-spacing:4.698000px;}
.ws19{word-spacing:4.752000px;}
.ws1c4{word-spacing:4.788000px;}
.wsaf{word-spacing:4.806000px;}
.wsca{word-spacing:4.860000px;}
.ws1d5{word-spacing:4.872000px;}
.wsef{word-spacing:4.914000px;}
.ws1c6{word-spacing:4.956000px;}
.wse6{word-spacing:4.968000px;}
.ws1c3{word-spacing:5.040000px;}
.wse0{word-spacing:5.076000px;}
.ws8d{word-spacing:5.130000px;}
.ws95{word-spacing:5.184000px;}
.ws12d{word-spacing:5.238000px;}
.ws1bd{word-spacing:5.250000px;}
.wscd{word-spacing:5.292000px;}
.ws1b6{word-spacing:5.334000px;}
.ws2e{word-spacing:5.346000px;}
.wsdf{word-spacing:5.400000px;}
.ws12{word-spacing:5.454000px;}
.ws9f{word-spacing:5.508000px;}
.ws4d{word-spacing:5.562000px;}
.wsb0{word-spacing:5.616000px;}
.ws39{word-spacing:5.670000px;}
.ws1a8{word-spacing:5.712000px;}
.ws14e{word-spacing:5.754000px;}
.ws13a{word-spacing:5.832000px;}
.ws190{word-spacing:5.880000px;}
.wsba{word-spacing:5.940000px;}
.wsa6{word-spacing:5.994000px;}
.ws18{word-spacing:6.048000px;}
.ws1a4{word-spacing:6.090000px;}
.ws10a{word-spacing:6.102000px;}
.ws174{word-spacing:6.132000px;}
.wse5{word-spacing:6.156000px;}
.ws40{word-spacing:6.210000px;}
.ws3a{word-spacing:6.318000px;}
.ws2a{word-spacing:6.426000px;}
.ws19e{word-spacing:6.468000px;}
.wsea{word-spacing:6.480000px;}
.ws1c0{word-spacing:6.510000px;}
.ws88{word-spacing:6.534000px;}
.ws1c1{word-spacing:6.552000px;}
.ws11e{word-spacing:6.588000px;}
.wsd2{word-spacing:6.642000px;}
.wsb6{word-spacing:6.696000px;}
.wse7{word-spacing:6.804000px;}
.wsd1{word-spacing:6.858000px;}
.ws43{word-spacing:6.912000px;}
.ws10{word-spacing:6.966000px;}
.ws194{word-spacing:6.972000px;}
.ws16f{word-spacing:7.098000px;}
.ws46{word-spacing:7.128000px;}
.ws15d{word-spacing:7.140000px;}
.ws38{word-spacing:7.182000px;}
.ws19f{word-spacing:7.224000px;}
.ws1a{word-spacing:7.236000px;}
.ws18f{word-spacing:7.266000px;}
.wsed{word-spacing:7.506000px;}
.ws6d{word-spacing:7.560000px;}
.ws8b{word-spacing:7.614000px;}
.ws11a{word-spacing:7.668000px;}
.ws14c{word-spacing:7.770000px;}
.ws140{word-spacing:7.776000px;}
.ws110{word-spacing:7.830000px;}
.ws165{word-spacing:7.854000px;}
.ws166{word-spacing:7.896000px;}
.ws13f{word-spacing:7.938000px;}
.ws1a7{word-spacing:7.980000px;}
.ws41{word-spacing:7.992000px;}
.ws180{word-spacing:8.022000px;}
.ws1a6{word-spacing:8.064000px;}
.ws181{word-spacing:8.106000px;}
.ws17c{word-spacing:8.190000px;}
.wsab{word-spacing:8.208000px;}
.ws49{word-spacing:8.262000px;}
.ws12a{word-spacing:8.316000px;}
.ws8e{word-spacing:8.424000px;}
.ws130{word-spacing:8.478000px;}
.ws184{word-spacing:8.484000px;}
.ws70{word-spacing:8.532000px;}
.ws185{word-spacing:8.568000px;}
.ws134{word-spacing:8.586000px;}
.ws50{word-spacing:8.640000px;}
.ws135{word-spacing:8.748000px;}
.wsae{word-spacing:8.856000px;}
.ws14a{word-spacing:8.862000px;}
.ws1b3{word-spacing:8.904000px;}
.ws14b{word-spacing:8.946000px;}
.ws59{word-spacing:8.964000px;}
.ws1b4{word-spacing:8.988000px;}
.ws3e{word-spacing:9.018000px;}
.wsa8{word-spacing:9.072000px;}
.ws10f{word-spacing:9.234000px;}
.ws1a9{word-spacing:9.240000px;}
.ws15e{word-spacing:9.282000px;}
.ws1ab{word-spacing:9.324000px;}
.wse2{word-spacing:9.342000px;}
.ws15f{word-spacing:9.366000px;}
.ws12f{word-spacing:9.396000px;}
.ws1ac{word-spacing:9.408000px;}
.ws9b{word-spacing:9.450000px;}
.ws3f{word-spacing:9.504000px;}
.ws111{word-spacing:9.558000px;}
.wse{word-spacing:9.612000px;}
.ws1be{word-spacing:9.660000px;}
.wsb1{word-spacing:9.666000px;}
.ws22{word-spacing:9.702000px;}
.ws1bf{word-spacing:9.744000px;}
.ws121{word-spacing:9.774000px;}
.ws195{word-spacing:9.870000px;}
.wsa7{word-spacing:9.882000px;}
.ws5a{word-spacing:9.936000px;}
.ws196{word-spacing:9.954000px;}
.ws120{word-spacing:9.990000px;}
.ws5f{word-spacing:10.044000px;}
.ws1cf{word-spacing:10.080000px;}
.ws65{word-spacing:10.098000px;}
.ws90{word-spacing:10.152000px;}
.ws128{word-spacing:10.368000px;}
.wsec{word-spacing:10.422000px;}
.ws1b7{word-spacing:10.542000px;}
.ws1b8{word-spacing:10.626000px;}
.wse8{word-spacing:10.692000px;}
.ws11c{word-spacing:10.800000px;}
.ws147{word-spacing:10.854000px;}
.wsb8{word-spacing:10.908000px;}
.ws2d{word-spacing:10.962000px;}
.ws1d3{word-spacing:11.046000px;}
.ws183{word-spacing:11.088000px;}
.ws1d4{word-spacing:11.172000px;}
.ws52{word-spacing:11.232000px;}
.ws5d{word-spacing:11.448000px;}
.ws172{word-spacing:11.466000px;}
.wse9{word-spacing:11.502000px;}
.ws173{word-spacing:11.592000px;}
.ws91{word-spacing:11.718000px;}
.wsac{word-spacing:11.772000px;}
.ws83{word-spacing:11.826000px;}
.wsd4{word-spacing:11.880000px;}
.ws67{word-spacing:12.312000px;}
.ws117{word-spacing:12.366000px;}
.wsa4{word-spacing:12.582000px;}
.ws182{word-spacing:13.188000px;}
.ws60{word-spacing:13.230000px;}
.ws80{word-spacing:13.662000px;}
.ws36{word-spacing:13.716000px;}
.wsd{word-spacing:13.770000px;}
.ws127{word-spacing:13.824000px;}
.wsa9{word-spacing:13.986000px;}
.ws57{word-spacing:14.310000px;}
.ws9d{word-spacing:14.418000px;}
.ws178{word-spacing:14.448000px;}
.ws148{word-spacing:14.634000px;}
.wsa2{word-spacing:14.688000px;}
.ws144{word-spacing:14.742000px;}
.ws99{word-spacing:14.850000px;}
.ws4c{word-spacing:14.958000px;}
.ws11d{word-spacing:15.066000px;}
.ws118{word-spacing:15.120000px;}
.wsa5{word-spacing:15.390000px;}
.ws33{word-spacing:15.714000px;}
.ws13b{word-spacing:15.822000px;}
.wsb7{word-spacing:16.200000px;}
.ws77{word-spacing:16.308000px;}
.wsf{word-spacing:16.416000px;}
.ws1cb{word-spacing:16.548000px;}
.ws7c{word-spacing:16.740000px;}
.wse1{word-spacing:16.848000px;}
.ws86{word-spacing:16.956000px;}
.ws10c{word-spacing:17.118000px;}
.ws197{word-spacing:17.178000px;}
.wscf{word-spacing:17.226000px;}
.ws6f{word-spacing:17.280000px;}
.ws198{word-spacing:17.346000px;}
.ws17{word-spacing:17.388000px;}
.ws58{word-spacing:17.442000px;}
.wscb{word-spacing:17.550000px;}
.ws145{word-spacing:17.712000px;}
.ws114{word-spacing:18.090000px;}
.ws131{word-spacing:18.144000px;}
.ws4e{word-spacing:18.360000px;}
.ws7b{word-spacing:18.684000px;}
.ws11{word-spacing:19.116000px;}
.ws44{word-spacing:19.386000px;}
.ws93{word-spacing:19.548000px;}
.ws112{word-spacing:19.710000px;}
.ws14f{word-spacing:19.782000px;}
.ws150{word-spacing:19.950000px;}
.ws82{word-spacing:19.980000px;}
.ws13c{word-spacing:20.142000px;}
.ws113{word-spacing:20.250000px;}
.ws119{word-spacing:20.358000px;}
.ws75{word-spacing:20.466000px;}
.ws19a{word-spacing:20.538000px;}
.ws13e{word-spacing:20.574000px;}
.ws7a{word-spacing:20.682000px;}
.ws10e{word-spacing:21.060000px;}
.ws37{word-spacing:22.032000px;}
.ws132{word-spacing:22.410000px;}
.ws35{word-spacing:22.680000px;}
.ws34{word-spacing:22.842000px;}
.ws94{word-spacing:23.814000px;}
.wseb{word-spacing:23.976000px;}
.wsd8{word-spacing:25.164000px;}
.ws53{word-spacing:26.136000px;}
.ws1b9{word-spacing:26.250000px;}
.ws81{word-spacing:26.568000px;}
.ws1ba{word-spacing:26.754000px;}
.ws8c{word-spacing:27.702000px;}
.ws146{word-spacing:27.756000px;}
.ws13d{word-spacing:28.296000px;}
.wsb4{word-spacing:28.998000px;}
.ws1d0{word-spacing:30.870000px;}
.ws9a{word-spacing:43.200000px;}
.ws142{word-spacing:52.866000px;}
.wsf9{word-spacing:130.384200px;}
.wsff{word-spacing:141.793800px;}
.wsfa{word-spacing:150.141600px;}
.wsfd{word-spacing:157.060200px;}
.wsfe{word-spacing:192.234000px;}
.wsf8{word-spacing:193.733400px;}
.ws101{word-spacing:194.451600px;}
.ws103{word-spacing:195.951600px;}
.wsfc{word-spacing:202.734000px;}
.wsde{word-spacing:221.296800px;}
.wsf7{word-spacing:222.234000px;}
.wsfb{word-spacing:223.733400px;}
.ws102{word-spacing:234.897000px;}
.ws104{word-spacing:252.146400px;}
.ws100{word-spacing:262.015800px;}
.wsf6{word-spacing:273.557400px;}
.wsc7{word-spacing:773.596800px;}
.wsc6{word-spacing:805.890600px;}
.wsbf{word-spacing:820.460400px;}
.wsc0{word-spacing:851.162400px;}
.wsc5{word-spacing:853.430400px;}
.wsc9{word-spacing:854.190600px;}
.wsc8{word-spacing:870.654600px;}
.wsc1{word-spacing:874.303800px;}
.wsc2{word-spacing:901.688400px;}
.wsc3{word-spacing:920.294400px;}
.wsc4{word-spacing:922.520400px;}
.ws124{word-spacing:997.085400px;}
.ws96{word-spacing:997.106400px;}
.wsdb{word-spacing:997.253400px;}
.ws24{word-spacing:997.820400px;}
.ws68{word-spacing:997.925400px;}
.wsbb{word-spacing:998.009400px;}
.wsf3{word-spacing:998.723400px;}
.ws0{word-spacing:999.563400px;}
.ws1d1{word-spacing:1000.676400px;}
.ws1a0{word-spacing:1002.419400px;}
.ws125{word-spacing:1168.319400px;}
.ws97{word-spacing:1168.340400px;}
.wsdc{word-spacing:1168.487400px;}
.ws25{word-spacing:1169.054400px;}
.ws69{word-spacing:1169.159400px;}
.wsbc{word-spacing:1169.243400px;}
.wsf4{word-spacing:1169.957400px;}
.ws1{word-spacing:1170.797400px;}
.ws1d2{word-spacing:1171.910400px;}
.ws1a1{word-spacing:1173.653400px;}
.ws107{word-spacing:1207.084800px;}
._15{margin-left:-33.204600px;}
._11{margin-left:-26.745480px;}
._17{margin-left:-20.253157px;}
._16{margin-left:-16.696952px;}
._29{margin-left:-15.397853px;}
._10{margin-left:-11.628187px;}
._4{margin-left:-9.534480px;}
._b{margin-left:-7.773120px;}
._8{margin-left:-6.040320px;}
._e{margin-left:-4.873320px;}
._0{margin-left:-3.654000px;}
._6{margin-left:-2.214000px;}
._3{margin-left:-1.056840px;}
._1{width:1.864800px;}
._2{width:3.893640px;}
._12{width:5.069578px;}
._9{width:6.332858px;}
._a{width:7.424688px;}
._5{width:9.032460px;}
._d{width:10.900800px;}
._35{width:12.063600px;}
._13{width:13.813612px;}
._f{width:14.923009px;}
._36{width:15.961330px;}
._c{width:18.955340px;}
._2a{width:24.467400px;}
._14{width:26.754113px;}
._2e{width:146.588400px;}
._2d{width:212.939400px;}
._2c{width:215.757000px;}
._2b{width:218.227800px;}
._2f{width:240.445800px;}
._31{width:245.831400px;}
._30{width:248.831400px;}
._39{width:249.937800px;}
._38{width:251.437800px;}
._3b{width:262.663800px;}
._32{width:284.831400px;}
._3a{width:290.470800px;}
._3c{width:312.368400px;}
._3d{width:316.867800px;}
._34{width:331.115400px;}
._33{width:335.903400px;}
._27{width:418.822440px;}
._26{width:471.063600px;}
._1d{width:559.639560px;}
._37{width:607.050000px;}
._20{width:645.831240px;}
._1b{width:678.399240px;}
._22{width:697.892400px;}
._1c{width:704.169240px;}
._21{width:712.046400px;}
._24{width:716.608080px;}
._25{width:717.994080px;}
._18{width:735.536400px;}
._1f{width:737.708400px;}
._1e{width:746.091600px;}
._3e{width:752.767800px;}
._28{width:755.457600px;}
._23{width:758.061480px;}
._1a{width:785.175240px;}
._19{width:846.549240px;}
._7{width:2120.589600px;}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(43,43,42);}
.fc3{color:rgb(126,127,127);}
.fc2{color:rgb(27,28,27);}
.fc1{color:rgb(101,193,97);}
.fc0{color:rgb(112,111,112);}
.fs4{font-size:24.780000px;}
.fsb{font-size:31.860000px;}
.fs6{font-size:33.000000px;}
.fs3{font-size:38.940000px;}
.fsc{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.149650px;}
.y10f{bottom:91.312350px;}
.y10e{bottom:103.312350px;}
.y91{bottom:104.812350px;}
.y15c{bottom:112.374150px;}
.y10d{bottom:115.312350px;}
.y90{bottom:122.812350px;}
.yc5{bottom:122.812500px;}
.y107{bottom:123.748500px;}
.y15b{bottom:124.374150px;}
.y1ea{bottom:125.124150px;}
.y111{bottom:127.312350px;}
.yf4{bottom:128.308050px;}
.y10c{bottom:131.812350px;}
.y18d{bottom:136.374150px;}
.y1e9{bottom:137.124150px;}
.y106{bottom:137.248500px;}
.y8f{bottom:140.812350px;}
.yc4{bottom:140.812500px;}
.y15a{bottom:142.374150px;}
.y10b{bottom:143.812350px;}
.yf3{bottom:146.308050px;}
.y1a8{bottom:148.374150px;}
.y1e8{bottom:149.124150px;}
.y110{bottom:149.812350px;}
.y105{bottom:150.748500px;}
.y159{bottom:154.374150px;}
.y8e{bottom:158.812350px;}
.yc3{bottom:158.812500px;}
.y10a{bottom:161.812350px;}
.y2e{bottom:162.742650px;}
.y104{bottom:164.248500px;}
.y158{bottom:166.374150px;}
.y1e7{bottom:167.124150px;}
.yf2{bottom:168.398100px;}
.y109{bottom:173.812350px;}
.y8d{bottom:176.812350px;}
.yc2{bottom:176.812500px;}
.y103{bottom:177.748500px;}
.y157{bottom:178.374150px;}
.y1e6{bottom:179.124150px;}
.y2d{bottom:179.242650px;}
.y18c{bottom:184.374150px;}
.y108{bottom:185.812350px;}
.yf1{bottom:186.398100px;}
.y156{bottom:190.374150px;}
.y8c{bottom:194.812350px;}
.yc1{bottom:194.812500px;}
.y18b{bottom:196.374150px;}
.y2c{bottom:200.242650px;}
.y155{bottom:202.374150px;}
.y1a7{bottom:208.374150px;}
.yf0{bottom:208.488300px;}
.y8b{bottom:212.812350px;}
.yc0{bottom:212.812500px;}
.y18a{bottom:214.374150px;}
.y154{bottom:220.374150px;}
.y1e5{bottom:225.624150px;}
.y189{bottom:226.374150px;}
.yef{bottom:226.488300px;}
.y8a{bottom:230.812350px;}
.ybf{bottom:230.812500px;}
.y153{bottom:232.374150px;}
.y1e4{bottom:237.624150px;}
.y2b{bottom:237.742650px;}
.y188{bottom:238.374150px;}
.yee{bottom:248.578350px;}
.y89{bottom:248.812350px;}
.ybe{bottom:248.812500px;}
.y1e3{bottom:249.624150px;}
.y152{bottom:250.374150px;}
.y2a{bottom:255.742650px;}
.y187{bottom:256.374150px;}
.y151{bottom:262.374150px;}
.y88{bottom:266.812350px;}
.ybd{bottom:266.812500px;}
.y1e2{bottom:266.874150px;}
.y186{bottom:268.374150px;}
.yed{bottom:270.668400px;}
.y29{bottom:273.742650px;}
.y150{bottom:274.374150px;}
.y1e1{bottom:278.874150px;}
.y1a6{bottom:280.374150px;}
.y87{bottom:284.812350px;}
.ybc{bottom:284.812500px;}
.y185{bottom:286.374150px;}
.y1e0{bottom:290.874150px;}
.y28{bottom:291.742650px;}
.y14f{bottom:292.374150px;}
.yec{bottom:292.758600px;}
.y184{bottom:298.374150px;}
.y86{bottom:302.812350px;}
.ybb{bottom:302.812500px;}
.y14e{bottom:304.374150px;}
.y1df{bottom:308.124150px;}
.y183{bottom:310.374150px;}
.y27{bottom:314.676150px;}
.yeb{bottom:314.848500px;}
.y14d{bottom:316.374150px;}
.y1de{bottom:320.124150px;}
.y85{bottom:320.812350px;}
.yba{bottom:320.812500px;}
.y182{bottom:322.374150px;}
.y1dd{bottom:332.124150px;}
.y26{bottom:332.676150px;}
.y14c{bottom:334.374150px;}
.yea{bottom:336.938700px;}
.y84{bottom:338.812350px;}
.yb9{bottom:338.812500px;}
.y181{bottom:340.374150px;}
.y14b{bottom:346.374150px;}
.y1dc{bottom:349.374150px;}
.y25{bottom:350.676150px;}
.y180{bottom:352.374150px;}
.y83{bottom:356.812350px;}
.yb8{bottom:356.812500px;}
.y14a{bottom:358.374150px;}
.ye9{bottom:359.028750px;}
.y1db{bottom:361.374150px;}
.y1a5{bottom:364.374150px;}
.y24{bottom:368.676150px;}
.y149{bottom:370.374150px;}
.y1da{bottom:373.374150px;}
.y82{bottom:374.812350px;}
.yb7{bottom:374.812500px;}
.y1a4{bottom:376.374150px;}
.ye8{bottom:381.118800px;}
.y17f{bottom:382.374150px;}
.y23{bottom:386.676150px;}
.y148{bottom:388.374150px;}
.y1d9{bottom:390.624150px;}
.y81{bottom:392.812350px;}
.yb6{bottom:392.812500px;}
.y17e{bottom:394.374150px;}
.y147{bottom:400.374150px;}
.y1d8{bottom:402.624150px;}
.ye7{bottom:403.209000px;}
.y22{bottom:404.676150px;}
.y1a3{bottom:406.374150px;}
.y80{bottom:410.812350px;}
.yb5{bottom:410.812500px;}
.y146{bottom:412.374150px;}
.y1d7{bottom:414.624150px;}
.y1a2{bottom:418.374150px;}
.y21{bottom:422.676150px;}
.y17d{bottom:424.374150px;}
.ye6{bottom:425.299050px;}
.y7f{bottom:428.812350px;}
.yb4{bottom:428.812500px;}
.y145{bottom:430.374150px;}
.y1d6{bottom:431.874150px;}
.y17c{bottom:436.374150px;}
.y20{bottom:440.676150px;}
.y144{bottom:442.374150px;}
.y1d5{bottom:443.874150px;}
.y7e{bottom:446.812350px;}
.yb3{bottom:446.812500px;}
.ye5{bottom:447.389100px;}
.y1a1{bottom:448.374150px;}
.y17b{bottom:454.374150px;}
.y1d4{bottom:455.874150px;}
.y1f{bottom:458.676150px;}
.y143{bottom:460.374150px;}
.y7d{bottom:464.812350px;}
.yb2{bottom:464.812500px;}
.y17a{bottom:466.374150px;}
.y54{bottom:468.053550px;}
.ye4{bottom:469.479150px;}
.y142{bottom:472.374150px;}
.y1d3{bottom:473.124150px;}
.y1e{bottom:476.676150px;}
.y179{bottom:478.374150px;}
.y53{bottom:481.553550px;}
.y7c{bottom:482.812350px;}
.yb1{bottom:482.812500px;}
.y141{bottom:484.374150px;}
.y1d2{bottom:485.124150px;}
.y1a0{bottom:490.374150px;}
.ye3{bottom:491.569350px;}
.y1d{bottom:494.676150px;}
.y52{bottom:495.053550px;}
.y178{bottom:496.374150px;}
.y7b{bottom:500.812350px;}
.yb0{bottom:500.812500px;}
.y140{bottom:502.374150px;}
.y177{bottom:508.374150px;}
.y51{bottom:508.553550px;}
.ye2{bottom:513.659400px;}
.y13f{bottom:514.374150px;}
.y1c{bottom:517.609650px;}
.y7a{bottom:518.812350px;}
.yaf{bottom:518.812500px;}
.y176{bottom:520.374150px;}
.y50{bottom:522.053550px;}
.y13e{bottom:526.374150px;}
.y1d1{bottom:531.624150px;}
.y19f{bottom:532.374150px;}
.y4f{bottom:535.553550px;}
.y1b{bottom:535.609650px;}
.ye1{bottom:535.749450px;}
.y79{bottom:536.812350px;}
.yae{bottom:536.812500px;}
.y175{bottom:538.374150px;}
.y1d0{bottom:543.624150px;}
.y13d{bottom:544.374150px;}
.y4e{bottom:549.053550px;}
.y174{bottom:550.374150px;}
.y1a{bottom:553.609650px;}
.y78{bottom:554.812350px;}
.yad{bottom:554.812500px;}
.y13c{bottom:556.374150px;}
.ye0{bottom:557.839500px;}
.y1cf{bottom:560.874150px;}
.y19e{bottom:562.374150px;}
.y4d{bottom:562.553550px;}
.y173{bottom:568.374150px;}
.y19{bottom:571.609650px;}
.y77{bottom:572.812350px;}
.y1ce{bottom:572.874150px;}
.y13b{bottom:574.374150px;}
.y4c{bottom:576.053550px;}
.ydf{bottom:579.929700px;}
.y172{bottom:580.374150px;}
.y1cd{bottom:584.874150px;}
.y13a{bottom:586.374150px;}
.y4b{bottom:589.553550px;}
.y76{bottom:590.812350px;}
.yac{bottom:590.812500px;}
.y171{bottom:592.374150px;}
.y18{bottom:594.543150px;}
.y139{bottom:598.374150px;}
.yde{bottom:602.019750px;}
.y1cc{bottom:602.124150px;}
.y4a{bottom:603.053550px;}
.y170{bottom:604.374150px;}
.y75{bottom:608.812350px;}
.y138{bottom:610.374150px;}
.y17{bottom:612.543150px;}
.y1cb{bottom:614.124150px;}
.y19d{bottom:616.374150px;}
.y49{bottom:616.553550px;}
.y16f{bottom:622.374150px;}
.ydd{bottom:624.109800px;}
.y1ca{bottom:626.124150px;}
.y74{bottom:626.812350px;}
.y137{bottom:628.374150px;}
.y48{bottom:630.053550px;}
.y16{bottom:630.543150px;}
.y16e{bottom:634.374150px;}
.y136{bottom:640.374150px;}
.y1c9{bottom:643.374150px;}
.y47{bottom:643.810050px;}
.y73{bottom:644.812350px;}
.yab{bottom:644.812500px;}
.ydc{bottom:646.199850px;}
.y15{bottom:648.543150px;}
.y135{bottom:652.374150px;}
.y1c8{bottom:655.374150px;}
.y72{bottom:662.812350px;}
.yaa{bottom:662.812500px;}
.y16d{bottom:664.374150px;}
.y46{bottom:664.879050px;}
.y14{bottom:666.543150px;}
.ydb{bottom:668.289900px;}
.y134{bottom:670.374150px;}
.y1c7{bottom:672.624150px;}
.y16c{bottom:676.374150px;}
.y45{bottom:678.379050px;}
.y71{bottom:680.812350px;}
.ya9{bottom:680.812500px;}
.y133{bottom:682.374150px;}
.y13{bottom:684.543150px;}
.y1c6{bottom:684.624150px;}
.yda{bottom:690.380100px;}
.y44{bottom:691.879050px;}
.y132{bottom:694.374150px;}
.y70{bottom:698.812350px;}
.ya8{bottom:698.812500px;}
.y1c5{bottom:701.874150px;}
.y12{bottom:702.543150px;}
.y43{bottom:705.379050px;}
.y131{bottom:706.374150px;}
.y19c{bottom:712.374150px;}
.yd9{bottom:712.470150px;}
.y1c4{bottom:713.874150px;}
.y6f{bottom:716.812350px;}
.ya7{bottom:716.812500px;}
.y16b{bottom:718.374150px;}
.y42{bottom:718.879050px;}
.y11{bottom:720.543150px;}
.y130{bottom:724.374150px;}
.y1c3{bottom:731.124150px;}
.y41{bottom:732.379050px;}
.yd8{bottom:734.560200px;}
.y6e{bottom:734.812350px;}
.ya6{bottom:734.812500px;}
.y12f{bottom:736.374150px;}
.y10{bottom:738.543150px;}
.y19b{bottom:742.374150px;}
.y1c2{bottom:743.124150px;}
.y40{bottom:745.879050px;}
.y12e{bottom:748.374150px;}
.y6d{bottom:752.812350px;}
.ya5{bottom:752.812500px;}
.y19a{bottom:754.374150px;}
.y1c1{bottom:755.124150px;}
.yd7{bottom:756.650250px;}
.y3f{bottom:759.379050px;}
.y16a{bottom:760.374150px;}
.y12d{bottom:766.374150px;}
.y6c{bottom:770.812350px;}
.ya4{bottom:770.812500px;}
.y1c0{bottom:772.374150px;}
.y3e{bottom:773.135400px;}
.y12c{bottom:778.374150px;}
.yd6{bottom:778.740300px;}
.yf{bottom:782.476650px;}
.y1bf{bottom:784.374150px;}
.y6b{bottom:788.812350px;}
.ya3{bottom:788.812500px;}
.y12b{bottom:790.374150px;}
.y3d{bottom:794.204550px;}
.ye{bottom:795.976650px;}
.y199{bottom:796.374150px;}
.yd5{bottom:800.830500px;}
.y169{bottom:802.374150px;}
.y6a{bottom:806.812350px;}
.ya2{bottom:806.812500px;}
.y3c{bottom:807.704550px;}
.y12a{bottom:808.374150px;}
.yd{bottom:809.476650px;}
.y1be{bottom:813.624150px;}
.y168{bottom:814.374150px;}
.y129{bottom:820.374150px;}
.y3b{bottom:821.204550px;}
.yd4{bottom:822.920550px;}
.y69{bottom:824.812350px;}
.ya1{bottom:824.812500px;}
.y1bd{bottom:825.624150px;}
.y198{bottom:826.374150px;}
.yc{bottom:826.756650px;}
.y128{bottom:832.374150px;}
.yb{bottom:836.476650px;}
.y1bc{bottom:837.624150px;}
.y197{bottom:838.374150px;}
.y3a{bottom:842.204550px;}
.y68{bottom:842.812350px;}
.y167{bottom:844.374150px;}
.yd3{bottom:845.010600px;}
.y127{bottom:850.374150px;}
.ya{bottom:853.756650px;}
.y1bb{bottom:854.874150px;}
.y39{bottom:855.704550px;}
.y166{bottom:856.374150px;}
.y93{bottom:858.787500px;}
.y67{bottom:860.812350px;}
.ya0{bottom:860.812500px;}
.y126{bottom:862.374150px;}
.y1ba{bottom:866.874150px;}
.yd2{bottom:867.100650px;}
.y196{bottom:868.374150px;}
.y38{bottom:869.461050px;}
.y125{bottom:874.374150px;}
.y8{bottom:874.860150px;}
.y66{bottom:878.812350px;}
.y9f{bottom:878.812500px;}
.y1b9{bottom:878.874150px;}
.y195{bottom:880.374150px;}
.y9{bottom:880.800150px;}
.y165{bottom:886.374150px;}
.yd1{bottom:889.190850px;}
.y37{bottom:890.529900px;}
.y124{bottom:892.374150px;}
.y1b8{bottom:896.124150px;}
.y65{bottom:896.812350px;}
.y6{bottom:897.360150px;}
.y164{bottom:898.374150px;}
.y7{bottom:903.300150px;}
.y36{bottom:904.029900px;}
.y123{bottom:904.374150px;}
.y1b7{bottom:908.124150px;}
.yd0{bottom:911.280900px;}
.y64{bottom:914.812350px;}
.y9e{bottom:914.812500px;}
.y122{bottom:916.374150px;}
.y35{bottom:917.529900px;}
.y1b6{bottom:920.124150px;}
.y194{bottom:922.374150px;}
.y163{bottom:928.374150px;}
.y34{bottom:931.029900px;}
.y63{bottom:932.812350px;}
.ycf{bottom:933.370950px;}
.y121{bottom:934.374150px;}
.y1b5{bottom:937.374150px;}
.y5{bottom:939.499650px;}
.y162{bottom:940.374150px;}
.y33{bottom:944.786550px;}
.y120{bottom:946.374150px;}
.yfc{bottom:949.017300px;}
.y1b4{bottom:949.374150px;}
.y62{bottom:950.812350px;}
.yce{bottom:955.461150px;}
.y11f{bottom:958.374150px;}
.y1b3{bottom:961.374150px;}
.yfb{bottom:962.517300px;}
.y193{bottom:964.374150px;}
.y32{bottom:965.855550px;}
.y61{bottom:968.812350px;}
.y9d{bottom:968.812500px;}
.y161{bottom:970.374150px;}
.y102{bottom:975.508950px;}
.y11e{bottom:976.374150px;}
.y4{bottom:976.999650px;}
.ycd{bottom:977.551050px;}
.y1b2{bottom:978.624150px;}
.y31{bottom:979.355550px;}
.y160{bottom:982.374150px;}
.yfa{bottom:983.433150px;}
.y60{bottom:986.812350px;}
.y9c{bottom:986.812500px;}
.y11d{bottom:988.374150px;}
.y1b1{bottom:990.624150px;}
.y30{bottom:993.111900px;}
.y101{bottom:996.424800px;}
.ycc{bottom:999.641250px;}
.y11c{bottom:1000.374150px;}
.y1b0{bottom:1002.624150px;}
.y5f{bottom:1004.812350px;}
.y9b{bottom:1004.812500px;}
.yf9{bottom:1005.764850px;}
.y192{bottom:1006.374150px;}
.y11b{bottom:1012.374150px;}
.y2f{bottom:1014.181050px;}
.y3{bottom:1014.499650px;}
.y191{bottom:1018.374150px;}
.y100{bottom:1018.756500px;}
.y1af{bottom:1019.874150px;}
.ycb{bottom:1021.731300px;}
.y5e{bottom:1022.812350px;}
.y9a{bottom:1022.812500px;}
.y15f{bottom:1024.374150px;}
.yf8{bottom:1028.096550px;}
.y11a{bottom:1030.374150px;}
.y1ae{bottom:1031.874150px;}
.y15e{bottom:1036.374150px;}
.y5d{bottom:1040.812350px;}
.y99{bottom:1040.812500px;}
.yff{bottom:1041.088200px;}
.y119{bottom:1042.374150px;}
.yca{bottom:1043.821350px;}
.y1ad{bottom:1043.874150px;}
.yf7{bottom:1050.428250px;}
.y2{bottom:1051.999650px;}
.y118{bottom:1054.374150px;}
.y1ac{bottom:1055.874150px;}
.y5c{bottom:1058.812350px;}
.y98{bottom:1058.812500px;}
.y190{bottom:1060.374150px;}
.yfe{bottom:1063.419900px;}
.yc9{bottom:1065.911550px;}
.y117{bottom:1066.374150px;}
.y18f{bottom:1072.374150px;}
.yf6{bottom:1072.759950px;}
.y1ab{bottom:1073.124150px;}
.y5b{bottom:1076.812350px;}
.y97{bottom:1076.812500px;}
.y15d{bottom:1078.374150px;}
.y116{bottom:1084.374150px;}
.y1aa{bottom:1085.124150px;}
.yfd{bottom:1085.509950px;}
.yc8{bottom:1088.001600px;}
.y5a{bottom:1094.812350px;}
.y96{bottom:1094.812500px;}
.yf5{bottom:1095.091650px;}
.y115{bottom:1096.374150px;}
.y1a9{bottom:1097.124150px;}
.y114{bottom:1108.374150px;}
.yc7{bottom:1110.091650px;}
.y92{bottom:1112.812350px;}
.y95{bottom:1112.812500px;}
.y18e{bottom:1114.374150px;}
.y113{bottom:1126.374150px;}
.y59{bottom:1130.812350px;}
.y94{bottom:1130.812500px;}
.yc6{bottom:1138.132500px;}
.y112{bottom:1138.374150px;}
.y57{bottom:1175.303400px;}
.y56{bottom:1188.803400px;}
.y58{bottom:1202.272050px;}
.y55{bottom:1202.303400px;}
.h6{height:18.386760px;}
.ha{height:23.826000px;}
.h11{height:25.870320px;}
.h5{height:28.971360px;}
.hc{height:30.324000px;}
.h8{height:31.164000px;}
.h2{height:31.248000px;}
.h15{height:31.668000px;}
.h7{height:33.506760px;}
.h13{height:34.104000px;}
.hb{height:34.656000px;}
.h14{height:35.070600px;}
.h16{height:35.241360px;}
.h9{height:40.068000px;}
.h12{height:40.176000px;}
.he{height:43.848000px;}
.h10{height:46.872000px;}
.h4{height:49.104000px;}
.hf{height:53.568000px;}
.hd{height:60.264000px;}
.h3{height:93.744000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:74.409450px;}
.x7{left:82.518000px;}
.x16{left:93.519450px;}
.x9{left:95.653950px;}
.x15{left:202.382250px;}
.x12{left:211.887450px;}
.x14{left:243.578550px;}
.x2{left:332.503950px;}
.xc{left:364.400400px;}
.xd{left:387.515700px;}
.xb{left:457.071600px;}
.xf{left:464.502450px;}
.x17{left:466.086600px;}
.xa{left:478.331100px;}
.x3{left:481.755450px;}
.x5{left:533.648250px;}
.x4{left:657.513150px;}
.x8{left:661.241850px;}
.x11{left:712.226550px;}
.x10{left:717.266550px;}
.xe{left:721.326300px;}
.x13{left:742.933650px;}
.x6{left:766.076850px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v2{vertical-align:-13.440000pt;}
.v4{vertical-align:-7.199467pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.199467pt;}
.v3{vertical-align:13.440000pt;}
.ls1f{letter-spacing:-4.944000pt;}
.ls4b{letter-spacing:-2.613333pt;}
.ls28{letter-spacing:-2.464000pt;}
.ls4a{letter-spacing:-1.680000pt;}
.ls18{letter-spacing:-1.632000pt;}
.ls50{letter-spacing:-1.157333pt;}
.ls3{letter-spacing:-1.120000pt;}
.ls15{letter-spacing:-1.104000pt;}
.ls23{letter-spacing:-0.821333pt;}
.ls14{letter-spacing:-0.816000pt;}
.ls4c{letter-spacing:-0.746667pt;}
.ls48{letter-spacing:-0.709333pt;}
.ls3b{letter-spacing:-0.672000pt;}
.ls4f{letter-spacing:-0.634667pt;}
.ls26{letter-spacing:-0.597333pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls4d{letter-spacing:-0.560000pt;}
.ls20{letter-spacing:-0.528000pt;}
.ls24{letter-spacing:-0.522667pt;}
.ls6{letter-spacing:-0.485333pt;}
.ls27{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.432000pt;}
.ls43{letter-spacing:-0.373333pt;}
.ls22{letter-spacing:-0.368160pt;}
.ls25{letter-spacing:-0.336000pt;}
.ls4{letter-spacing:-0.293333pt;}
.ls47{letter-spacing:-0.261333pt;}
.ls13{letter-spacing:-0.240000pt;}
.ls4e{letter-spacing:-0.224000pt;}
.ls51{letter-spacing:-0.186667pt;}
.ls49{letter-spacing:-0.149333pt;}
.ls1e{letter-spacing:-0.141600pt;}
.ls3c{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.088000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000032pt;}
.ls31{letter-spacing:0.000104pt;}
.ls45{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.239432pt;}
.ls16{letter-spacing:0.239756pt;}
.ls40{letter-spacing:0.239838pt;}
.ls12{letter-spacing:0.240000pt;}
.ls3f{letter-spacing:0.240078pt;}
.ls44{letter-spacing:0.240136pt;}
.ls3d{letter-spacing:0.240261pt;}
.ls0{letter-spacing:0.264000pt;}
.ls46{letter-spacing:0.336000pt;}
.ls2e{letter-spacing:0.479516pt;}
.ls2d{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.480044pt;}
.lse{letter-spacing:0.613226pt;}
.lsf{letter-spacing:0.613764pt;}
.ls41{letter-spacing:0.639623pt;}
.ls42{letter-spacing:0.672000pt;}
.ls34{letter-spacing:0.828698pt;}
.ls2a{letter-spacing:0.834252pt;}
.ls33{letter-spacing:0.837156pt;}
.ls29{letter-spacing:0.841041pt;}
.lsd{letter-spacing:0.841340pt;}
.lsc{letter-spacing:0.841874pt;}
.ls1a{letter-spacing:0.863246pt;}
.ls1c{letter-spacing:0.863785pt;}
.ls1b{letter-spacing:0.864000pt;}
.ls11{letter-spacing:0.895642pt;}
.ls2f{letter-spacing:1.766045pt;}
.ls2{letter-spacing:1.866667pt;}
.ls3e{letter-spacing:3.505268pt;}
.ls2c{letter-spacing:4.761226pt;}
.ls9{letter-spacing:4.816682pt;}
.ls1d{letter-spacing:5.046959pt;}
.ls8{letter-spacing:6.153449pt;}
.ls10{letter-spacing:7.441096pt;}
.ls35{letter-spacing:8.449349pt;}
.ls36{letter-spacing:8.562903pt;}
.ls7{letter-spacing:13.705043pt;}
.ls32{letter-spacing:13.920531pt;}
.lsb{letter-spacing:16.085977pt;}
.ls37{letter-spacing:217.571200pt;}
.ls39{letter-spacing:218.904000pt;}
.ls38{letter-spacing:260.762667pt;}
.ls3a{letter-spacing:264.763200pt;}
.ls2b{letter-spacing:464.893867pt;}
.ws137{word-spacing:-18.504000pt;}
.ws6b{word-spacing:-14.392000pt;}
.ws5{word-spacing:-11.664000pt;}
.wsf5{word-spacing:-11.376000pt;}
.ws28{word-spacing:-11.136000pt;}
.ws6a{word-spacing:-10.992000pt;}
.ws26{word-spacing:-10.896000pt;}
.ws27{word-spacing:-10.656000pt;}
.ws7{word-spacing:-10.368000pt;}
.ws126{word-spacing:-9.669333pt;}
.ws2{word-spacing:-9.594667pt;}
.ws23{word-spacing:-9.109333pt;}
.wsbe{word-spacing:-9.072000pt;}
.ws3{word-spacing:-8.895627pt;}
.ws105{word-spacing:-8.549333pt;}
.wsc{word-spacing:-8.474667pt;}
.ws155{word-spacing:-8.400000pt;}
.ws138{word-spacing:-8.288000pt;}
.ws154{word-spacing:-8.176000pt;}
.ws109{word-spacing:-7.938667pt;}
.ws1a2{word-spacing:-7.914667pt;}
.ws139{word-spacing:-7.840000pt;}
.ws1a3{word-spacing:-7.728000pt;}
.wsa{word-spacing:-7.392000pt;}
.ws6{word-spacing:-7.128000pt;}
.ws9{word-spacing:-7.040000pt;}
.ws153{word-spacing:-6.869333pt;}
.ws8{word-spacing:-6.834667pt;}
.ws98{word-spacing:-6.287040pt;}
.wsbd{word-spacing:-6.060480pt;}
.ws4{word-spacing:-5.925173pt;}
.ws106{word-spacing:-5.000053pt;}
.ws73{word-spacing:-4.896000pt;}
.ws123{word-spacing:-3.536000pt;}
.ws143{word-spacing:-3.072000pt;}
.wsf2{word-spacing:-2.976000pt;}
.ws16{word-spacing:-2.256000pt;}
.ws186{word-spacing:-2.128000pt;}
.ws1f{word-spacing:-2.064000pt;}
.ws187{word-spacing:-2.016000pt;}
.ws85{word-spacing:-1.920000pt;}
.ws8f{word-spacing:-1.776000pt;}
.ws13{word-spacing:-1.728000pt;}
.ws63{word-spacing:-1.632000pt;}
.ws8a{word-spacing:-1.488000pt;}
.wsa1{word-spacing:-1.296000pt;}
.ws159{word-spacing:-1.269333pt;}
.ws72{word-spacing:-1.248000pt;}
.ws30{word-spacing:-1.200000pt;}
.ws199{word-spacing:-1.157333pt;}
.ws2b{word-spacing:-1.104000pt;}
.ws56{word-spacing:-1.056000pt;}
.ws87{word-spacing:-1.008000pt;}
.ws5b{word-spacing:-0.960000pt;}
.ws29{word-spacing:-0.933333pt;}
.ws89{word-spacing:-0.912000pt;}
.wsaa{word-spacing:-0.864000pt;}
.ws149{word-spacing:-0.858667pt;}
.ws176{word-spacing:-0.821333pt;}
.ws32{word-spacing:-0.816000pt;}
.ws175{word-spacing:-0.784000pt;}
.wscc{word-spacing:-0.768000pt;}
.ws7d{word-spacing:-0.720000pt;}
.wsee{word-spacing:-0.672000pt;}
.ws31{word-spacing:-0.624000pt;}
.ws179{word-spacing:-0.597333pt;}
.ws152{word-spacing:-0.560000pt;}
.ws4a{word-spacing:-0.528000pt;}
.ws163{word-spacing:-0.522667pt;}
.ws19d{word-spacing:-0.485333pt;}
.ws10d{word-spacing:-0.480000pt;}
.ws1cd{word-spacing:-0.448000pt;}
.wsd3{word-spacing:-0.432000pt;}
.ws1cc{word-spacing:-0.410667pt;}
.wse3{word-spacing:-0.384000pt;}
.ws189{word-spacing:-0.373333pt;}
.ws1c5{word-spacing:-0.298667pt;}
.wsb2{word-spacing:-0.288000pt;}
.ws66{word-spacing:-0.240000pt;}
.ws14d{word-spacing:-0.224000pt;}
.wsd9{word-spacing:-0.192000pt;}
.ws188{word-spacing:-0.186667pt;}
.ws15a{word-spacing:-0.149333pt;}
.ws1c2{word-spacing:-0.112000pt;}
.ws3d{word-spacing:-0.096000pt;}
.ws6c{word-spacing:-0.048000pt;}
.wsdd{word-spacing:-0.037333pt;}
.ws108{word-spacing:-0.034667pt;}
.wsb{word-spacing:0.000000pt;}
.ws17d{word-spacing:0.037333pt;}
.ws51{word-spacing:0.096000pt;}
.ws158{word-spacing:0.112000pt;}
.ws1c{word-spacing:0.144000pt;}
.ws160{word-spacing:0.149333pt;}
.ws17a{word-spacing:0.186667pt;}
.ws42{word-spacing:0.192000pt;}
.ws1ca{word-spacing:0.224000pt;}
.ws3b{word-spacing:0.240000pt;}
.ws18c{word-spacing:0.261333pt;}
.ws6e{word-spacing:0.288000pt;}
.ws136{word-spacing:0.293333pt;}
.ws3c{word-spacing:0.336000pt;}
.ws157{word-spacing:0.373333pt;}
.ws12e{word-spacing:0.384000pt;}
.ws84{word-spacing:0.432000pt;}
.ws122{word-spacing:0.448000pt;}
.ws169{word-spacing:0.485333pt;}
.ws74{word-spacing:0.528000pt;}
.ws17f{word-spacing:0.560000pt;}
.ws47{word-spacing:0.576000pt;}
.ws18d{word-spacing:0.597333pt;}
.ws78{word-spacing:0.624000pt;}
.ws11b{word-spacing:0.672000pt;}
.ws1bb{word-spacing:0.709333pt;}
.ws116{word-spacing:0.720000pt;}
.ws170{word-spacing:0.746667pt;}
.ws1c7{word-spacing:0.784000pt;}
.ws54{word-spacing:0.816000pt;}
.ws151{word-spacing:0.821333pt;}
.ws156{word-spacing:0.858667pt;}
.ws4f{word-spacing:0.864000pt;}
.ws1d{word-spacing:0.912000pt;}
.ws64{word-spacing:0.960000pt;}
.ws133{word-spacing:1.008000pt;}
.ws17b{word-spacing:1.045333pt;}
.ws2f{word-spacing:1.056000pt;}
.ws1e{word-spacing:1.104000pt;}
.ws177{word-spacing:1.120000pt;}
.ws45{word-spacing:1.152000pt;}
.ws1c8{word-spacing:1.157333pt;}
.wsb5{word-spacing:1.200000pt;}
.ws1bc{word-spacing:1.232000pt;}
.ws9c{word-spacing:1.248000pt;}
.ws62{word-spacing:1.296000pt;}
.ws7e{word-spacing:1.344000pt;}
.ws7f{word-spacing:1.392000pt;}
.ws1b2{word-spacing:1.418667pt;}
.ws12b{word-spacing:1.488000pt;}
.ws19c{word-spacing:1.530667pt;}
.wsd5{word-spacing:1.536000pt;}
.ws1a5{word-spacing:1.568000pt;}
.ws17e{word-spacing:1.605333pt;}
.ws10b{word-spacing:1.680000pt;}
.wsd6{word-spacing:1.728000pt;}
.ws193{word-spacing:1.792000pt;}
.ws21{word-spacing:1.824000pt;}
.ws18a{word-spacing:1.829333pt;}
.ws1ce{word-spacing:1.866667pt;}
.wsb9{word-spacing:1.872000pt;}
.ws76{word-spacing:1.920000pt;}
.ws18e{word-spacing:1.941333pt;}
.wsce{word-spacing:1.968000pt;}
.ws19b{word-spacing:1.978667pt;}
.ws1c9{word-spacing:2.053333pt;}
.ws129{word-spacing:2.112000pt;}
.ws9e{word-spacing:2.160000pt;}
.ws1ad{word-spacing:2.202667pt;}
.ws92{word-spacing:2.208000pt;}
.wsb3{word-spacing:2.256000pt;}
.ws2c{word-spacing:2.304000pt;}
.ws1b5{word-spacing:2.314667pt;}
.wsf0{word-spacing:2.400000pt;}
.ws16e{word-spacing:2.426667pt;}
.ws11f{word-spacing:2.448000pt;}
.ws115{word-spacing:2.496000pt;}
.ws167{word-spacing:2.538667pt;}
.wsd0{word-spacing:2.544000pt;}
.ws168{word-spacing:2.576000pt;}
.ws5c{word-spacing:2.640000pt;}
.wsd7{word-spacing:2.688000pt;}
.ws1b1{word-spacing:2.725333pt;}
.ws71{word-spacing:2.736000pt;}
.ws15{word-spacing:2.784000pt;}
.ws161{word-spacing:2.800000pt;}
.ws14{word-spacing:2.832000pt;}
.ws4b{word-spacing:2.928000pt;}
.ws1b{word-spacing:2.976000pt;}
.ws1b0{word-spacing:2.986667pt;}
.ws48{word-spacing:3.024000pt;}
.ws16b{word-spacing:3.061333pt;}
.ws55{word-spacing:3.072000pt;}
.ws162{word-spacing:3.098667pt;}
.ws61{word-spacing:3.168000pt;}
.ws1aa{word-spacing:3.210667pt;}
.wsf1{word-spacing:3.216000pt;}
.ws12c{word-spacing:3.264000pt;}
.wsa0{word-spacing:3.312000pt;}
.wsa3{word-spacing:3.408000pt;}
.ws1ae{word-spacing:3.434667pt;}
.ws79{word-spacing:3.504000pt;}
.ws16d{word-spacing:3.509333pt;}
.ws16c{word-spacing:3.546667pt;}
.wsda{word-spacing:3.552000pt;}
.wse4{word-spacing:3.648000pt;}
.ws16a{word-spacing:3.658667pt;}
.ws15b{word-spacing:3.696000pt;}
.ws15c{word-spacing:3.733333pt;}
.ws164{word-spacing:3.770667pt;}
.ws5e{word-spacing:3.792000pt;}
.ws18b{word-spacing:3.808000pt;}
.ws191{word-spacing:3.957333pt;}
.ws20{word-spacing:3.984000pt;}
.ws192{word-spacing:3.994667pt;}
.ws171{word-spacing:4.032000pt;}
.ws1af{word-spacing:4.069333pt;}
.ws141{word-spacing:4.128000pt;}
.wsad{word-spacing:4.176000pt;}
.ws19{word-spacing:4.224000pt;}
.ws1c4{word-spacing:4.256000pt;}
.wsaf{word-spacing:4.272000pt;}
.wsca{word-spacing:4.320000pt;}
.ws1d5{word-spacing:4.330667pt;}
.wsef{word-spacing:4.368000pt;}
.ws1c6{word-spacing:4.405333pt;}
.wse6{word-spacing:4.416000pt;}
.ws1c3{word-spacing:4.480000pt;}
.wse0{word-spacing:4.512000pt;}
.ws8d{word-spacing:4.560000pt;}
.ws95{word-spacing:4.608000pt;}
.ws12d{word-spacing:4.656000pt;}
.ws1bd{word-spacing:4.666667pt;}
.wscd{word-spacing:4.704000pt;}
.ws1b6{word-spacing:4.741333pt;}
.ws2e{word-spacing:4.752000pt;}
.wsdf{word-spacing:4.800000pt;}
.ws12{word-spacing:4.848000pt;}
.ws9f{word-spacing:4.896000pt;}
.ws4d{word-spacing:4.944000pt;}
.wsb0{word-spacing:4.992000pt;}
.ws39{word-spacing:5.040000pt;}
.ws1a8{word-spacing:5.077333pt;}
.ws14e{word-spacing:5.114667pt;}
.ws13a{word-spacing:5.184000pt;}
.ws190{word-spacing:5.226667pt;}
.wsba{word-spacing:5.280000pt;}
.wsa6{word-spacing:5.328000pt;}
.ws18{word-spacing:5.376000pt;}
.ws1a4{word-spacing:5.413333pt;}
.ws10a{word-spacing:5.424000pt;}
.ws174{word-spacing:5.450667pt;}
.wse5{word-spacing:5.472000pt;}
.ws40{word-spacing:5.520000pt;}
.ws3a{word-spacing:5.616000pt;}
.ws2a{word-spacing:5.712000pt;}
.ws19e{word-spacing:5.749333pt;}
.wsea{word-spacing:5.760000pt;}
.ws1c0{word-spacing:5.786667pt;}
.ws88{word-spacing:5.808000pt;}
.ws1c1{word-spacing:5.824000pt;}
.ws11e{word-spacing:5.856000pt;}
.wsd2{word-spacing:5.904000pt;}
.wsb6{word-spacing:5.952000pt;}
.wse7{word-spacing:6.048000pt;}
.wsd1{word-spacing:6.096000pt;}
.ws43{word-spacing:6.144000pt;}
.ws10{word-spacing:6.192000pt;}
.ws194{word-spacing:6.197333pt;}
.ws16f{word-spacing:6.309333pt;}
.ws46{word-spacing:6.336000pt;}
.ws15d{word-spacing:6.346667pt;}
.ws38{word-spacing:6.384000pt;}
.ws19f{word-spacing:6.421333pt;}
.ws1a{word-spacing:6.432000pt;}
.ws18f{word-spacing:6.458667pt;}
.wsed{word-spacing:6.672000pt;}
.ws6d{word-spacing:6.720000pt;}
.ws8b{word-spacing:6.768000pt;}
.ws11a{word-spacing:6.816000pt;}
.ws14c{word-spacing:6.906667pt;}
.ws140{word-spacing:6.912000pt;}
.ws110{word-spacing:6.960000pt;}
.ws165{word-spacing:6.981333pt;}
.ws166{word-spacing:7.018667pt;}
.ws13f{word-spacing:7.056000pt;}
.ws1a7{word-spacing:7.093333pt;}
.ws41{word-spacing:7.104000pt;}
.ws180{word-spacing:7.130667pt;}
.ws1a6{word-spacing:7.168000pt;}
.ws181{word-spacing:7.205333pt;}
.ws17c{word-spacing:7.280000pt;}
.wsab{word-spacing:7.296000pt;}
.ws49{word-spacing:7.344000pt;}
.ws12a{word-spacing:7.392000pt;}
.ws8e{word-spacing:7.488000pt;}
.ws130{word-spacing:7.536000pt;}
.ws184{word-spacing:7.541333pt;}
.ws70{word-spacing:7.584000pt;}
.ws185{word-spacing:7.616000pt;}
.ws134{word-spacing:7.632000pt;}
.ws50{word-spacing:7.680000pt;}
.ws135{word-spacing:7.776000pt;}
.wsae{word-spacing:7.872000pt;}
.ws14a{word-spacing:7.877333pt;}
.ws1b3{word-spacing:7.914667pt;}
.ws14b{word-spacing:7.952000pt;}
.ws59{word-spacing:7.968000pt;}
.ws1b4{word-spacing:7.989333pt;}
.ws3e{word-spacing:8.016000pt;}
.wsa8{word-spacing:8.064000pt;}
.ws10f{word-spacing:8.208000pt;}
.ws1a9{word-spacing:8.213333pt;}
.ws15e{word-spacing:8.250667pt;}
.ws1ab{word-spacing:8.288000pt;}
.wse2{word-spacing:8.304000pt;}
.ws15f{word-spacing:8.325333pt;}
.ws12f{word-spacing:8.352000pt;}
.ws1ac{word-spacing:8.362667pt;}
.ws9b{word-spacing:8.400000pt;}
.ws3f{word-spacing:8.448000pt;}
.ws111{word-spacing:8.496000pt;}
.wse{word-spacing:8.544000pt;}
.ws1be{word-spacing:8.586667pt;}
.wsb1{word-spacing:8.592000pt;}
.ws22{word-spacing:8.624000pt;}
.ws1bf{word-spacing:8.661333pt;}
.ws121{word-spacing:8.688000pt;}
.ws195{word-spacing:8.773333pt;}
.wsa7{word-spacing:8.784000pt;}
.ws5a{word-spacing:8.832000pt;}
.ws196{word-spacing:8.848000pt;}
.ws120{word-spacing:8.880000pt;}
.ws5f{word-spacing:8.928000pt;}
.ws1cf{word-spacing:8.960000pt;}
.ws65{word-spacing:8.976000pt;}
.ws90{word-spacing:9.024000pt;}
.ws128{word-spacing:9.216000pt;}
.wsec{word-spacing:9.264000pt;}
.ws1b7{word-spacing:9.370667pt;}
.ws1b8{word-spacing:9.445333pt;}
.wse8{word-spacing:9.504000pt;}
.ws11c{word-spacing:9.600000pt;}
.ws147{word-spacing:9.648000pt;}
.wsb8{word-spacing:9.696000pt;}
.ws2d{word-spacing:9.744000pt;}
.ws1d3{word-spacing:9.818667pt;}
.ws183{word-spacing:9.856000pt;}
.ws1d4{word-spacing:9.930667pt;}
.ws52{word-spacing:9.984000pt;}
.ws5d{word-spacing:10.176000pt;}
.ws172{word-spacing:10.192000pt;}
.wse9{word-spacing:10.224000pt;}
.ws173{word-spacing:10.304000pt;}
.ws91{word-spacing:10.416000pt;}
.wsac{word-spacing:10.464000pt;}
.ws83{word-spacing:10.512000pt;}
.wsd4{word-spacing:10.560000pt;}
.ws67{word-spacing:10.944000pt;}
.ws117{word-spacing:10.992000pt;}
.wsa4{word-spacing:11.184000pt;}
.ws182{word-spacing:11.722667pt;}
.ws60{word-spacing:11.760000pt;}
.ws80{word-spacing:12.144000pt;}
.ws36{word-spacing:12.192000pt;}
.wsd{word-spacing:12.240000pt;}
.ws127{word-spacing:12.288000pt;}
.wsa9{word-spacing:12.432000pt;}
.ws57{word-spacing:12.720000pt;}
.ws9d{word-spacing:12.816000pt;}
.ws178{word-spacing:12.842667pt;}
.ws148{word-spacing:13.008000pt;}
.wsa2{word-spacing:13.056000pt;}
.ws144{word-spacing:13.104000pt;}
.ws99{word-spacing:13.200000pt;}
.ws4c{word-spacing:13.296000pt;}
.ws11d{word-spacing:13.392000pt;}
.ws118{word-spacing:13.440000pt;}
.wsa5{word-spacing:13.680000pt;}
.ws33{word-spacing:13.968000pt;}
.ws13b{word-spacing:14.064000pt;}
.wsb7{word-spacing:14.400000pt;}
.ws77{word-spacing:14.496000pt;}
.wsf{word-spacing:14.592000pt;}
.ws1cb{word-spacing:14.709333pt;}
.ws7c{word-spacing:14.880000pt;}
.wse1{word-spacing:14.976000pt;}
.ws86{word-spacing:15.072000pt;}
.ws10c{word-spacing:15.216000pt;}
.ws197{word-spacing:15.269333pt;}
.wscf{word-spacing:15.312000pt;}
.ws6f{word-spacing:15.360000pt;}
.ws198{word-spacing:15.418667pt;}
.ws17{word-spacing:15.456000pt;}
.ws58{word-spacing:15.504000pt;}
.wscb{word-spacing:15.600000pt;}
.ws145{word-spacing:15.744000pt;}
.ws114{word-spacing:16.080000pt;}
.ws131{word-spacing:16.128000pt;}
.ws4e{word-spacing:16.320000pt;}
.ws7b{word-spacing:16.608000pt;}
.ws11{word-spacing:16.992000pt;}
.ws44{word-spacing:17.232000pt;}
.ws93{word-spacing:17.376000pt;}
.ws112{word-spacing:17.520000pt;}
.ws14f{word-spacing:17.584000pt;}
.ws150{word-spacing:17.733333pt;}
.ws82{word-spacing:17.760000pt;}
.ws13c{word-spacing:17.904000pt;}
.ws113{word-spacing:18.000000pt;}
.ws119{word-spacing:18.096000pt;}
.ws75{word-spacing:18.192000pt;}
.ws19a{word-spacing:18.256000pt;}
.ws13e{word-spacing:18.288000pt;}
.ws7a{word-spacing:18.384000pt;}
.ws10e{word-spacing:18.720000pt;}
.ws37{word-spacing:19.584000pt;}
.ws132{word-spacing:19.920000pt;}
.ws35{word-spacing:20.160000pt;}
.ws34{word-spacing:20.304000pt;}
.ws94{word-spacing:21.168000pt;}
.wseb{word-spacing:21.312000pt;}
.wsd8{word-spacing:22.368000pt;}
.ws53{word-spacing:23.232000pt;}
.ws1b9{word-spacing:23.333333pt;}
.ws81{word-spacing:23.616000pt;}
.ws1ba{word-spacing:23.781333pt;}
.ws8c{word-spacing:24.624000pt;}
.ws146{word-spacing:24.672000pt;}
.ws13d{word-spacing:25.152000pt;}
.wsb4{word-spacing:25.776000pt;}
.ws1d0{word-spacing:27.440000pt;}
.ws9a{word-spacing:38.400000pt;}
.ws142{word-spacing:46.992000pt;}
.wsf9{word-spacing:115.897067pt;}
.wsff{word-spacing:126.038933pt;}
.wsfa{word-spacing:133.459200pt;}
.wsfd{word-spacing:139.609067pt;}
.wsfe{word-spacing:170.874667pt;}
.wsf8{word-spacing:172.207467pt;}
.ws101{word-spacing:172.845867pt;}
.ws103{word-spacing:174.179200pt;}
.wsfc{word-spacing:180.208000pt;}
.wsde{word-spacing:196.708267pt;}
.wsf7{word-spacing:197.541333pt;}
.wsfb{word-spacing:198.874133pt;}
.ws102{word-spacing:208.797333pt;}
.ws104{word-spacing:224.130133pt;}
.ws100{word-spacing:232.902933pt;}
.wsf6{word-spacing:243.162133pt;}
.wsc7{word-spacing:687.641600pt;}
.wsc6{word-spacing:716.347200pt;}
.wsbf{word-spacing:729.298133pt;}
.wsc0{word-spacing:756.588800pt;}
.wsc5{word-spacing:758.604800pt;}
.wsc9{word-spacing:759.280533pt;}
.wsc8{word-spacing:773.915200pt;}
.wsc1{word-spacing:777.158933pt;}
.wsc2{word-spacing:801.500800pt;}
.wsc3{word-spacing:818.039467pt;}
.wsc4{word-spacing:820.018133pt;}
.ws124{word-spacing:886.298133pt;}
.ws96{word-spacing:886.316800pt;}
.wsdb{word-spacing:886.447467pt;}
.ws24{word-spacing:886.951467pt;}
.ws68{word-spacing:887.044800pt;}
.wsbb{word-spacing:887.119467pt;}
.wsf3{word-spacing:887.754133pt;}
.ws0{word-spacing:888.500800pt;}
.ws1d1{word-spacing:889.490133pt;}
.ws1a0{word-spacing:891.039467pt;}
.ws125{word-spacing:1038.506133pt;}
.ws97{word-spacing:1038.524800pt;}
.wsdc{word-spacing:1038.655467pt;}
.ws25{word-spacing:1039.159467pt;}
.ws69{word-spacing:1039.252800pt;}
.wsbc{word-spacing:1039.327467pt;}
.wsf4{word-spacing:1039.962133pt;}
.ws1{word-spacing:1040.708800pt;}
.ws1d2{word-spacing:1041.698133pt;}
.ws1a1{word-spacing:1043.247467pt;}
.ws107{word-spacing:1072.964267pt;}
._15{margin-left:-29.515200pt;}
._11{margin-left:-23.773760pt;}
._17{margin-left:-18.002806pt;}
._16{margin-left:-14.841735pt;}
._29{margin-left:-13.686980pt;}
._10{margin-left:-10.336166pt;}
._4{margin-left:-8.475093pt;}
._b{margin-left:-6.909440pt;}
._8{margin-left:-5.369173pt;}
._e{margin-left:-4.331840pt;}
._0{margin-left:-3.248000pt;}
._6{margin-left:-1.968000pt;}
._3{margin-left:-0.939413pt;}
._1{width:1.657600pt;}
._2{width:3.461013pt;}
._12{width:4.506292pt;}
._9{width:5.629207pt;}
._a{width:6.599723pt;}
._5{width:8.028853pt;}
._d{width:9.689600pt;}
._35{width:10.723200pt;}
._13{width:12.278766pt;}
._f{width:13.264897pt;}
._36{width:14.187849pt;}
._c{width:16.849191pt;}
._2a{width:21.748800pt;}
._14{width:23.781434pt;}
._2e{width:130.300800pt;}
._2d{width:189.279467pt;}
._2c{width:191.784000pt;}
._2b{width:193.980267pt;}
._2f{width:213.729600pt;}
._31{width:218.516800pt;}
._30{width:221.183467pt;}
._39{width:222.166933pt;}
._38{width:223.500267pt;}
._3b{width:233.478933pt;}
._32{width:253.183467pt;}
._3a{width:258.196267pt;}
._3c{width:277.660800pt;}
._3d{width:281.660267pt;}
._34{width:294.324800pt;}
._33{width:298.580800pt;}
._27{width:372.286613pt;}
._26{width:418.723200pt;}
._1d{width:497.457387pt;}
._37{width:539.600000pt;}
._20{width:574.072213pt;}
._1b{width:603.021547pt;}
._22{width:620.348800pt;}
._1c{width:625.928213pt;}
._21{width:632.930133pt;}
._24{width:636.984960pt;}
._25{width:638.216960pt;}
._18{width:653.810133pt;}
._1f{width:655.740800pt;}
._1e{width:663.192533pt;}
._3e{width:669.126933pt;}
._28{width:671.517867pt;}
._23{width:673.832427pt;}
._1a{width:697.933547pt;}
._19{width:752.488213pt;}
._7{width:1884.968533pt;}
.fs4{font-size:22.026667pt;}
.fsb{font-size:28.320000pt;}
.fs6{font-size:29.333333pt;}
.fs3{font-size:34.613333pt;}
.fsc{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.244133pt;}
.y10f{bottom:81.166533pt;}
.y10e{bottom:91.833200pt;}
.y91{bottom:93.166533pt;}
.y15c{bottom:99.888133pt;}
.y10d{bottom:102.499867pt;}
.y90{bottom:109.166533pt;}
.yc5{bottom:109.166667pt;}
.y107{bottom:109.998667pt;}
.y15b{bottom:110.554800pt;}
.y1ea{bottom:111.221467pt;}
.y111{bottom:113.166533pt;}
.yf4{bottom:114.051600pt;}
.y10c{bottom:117.166533pt;}
.y18d{bottom:121.221467pt;}
.y1e9{bottom:121.888133pt;}
.y106{bottom:121.998667pt;}
.y8f{bottom:125.166533pt;}
.yc4{bottom:125.166667pt;}
.y15a{bottom:126.554800pt;}
.y10b{bottom:127.833200pt;}
.yf3{bottom:130.051600pt;}
.y1a8{bottom:131.888133pt;}
.y1e8{bottom:132.554800pt;}
.y110{bottom:133.166533pt;}
.y105{bottom:133.998667pt;}
.y159{bottom:137.221467pt;}
.y8e{bottom:141.166533pt;}
.yc3{bottom:141.166667pt;}
.y10a{bottom:143.833200pt;}
.y2e{bottom:144.660133pt;}
.y104{bottom:145.998667pt;}
.y158{bottom:147.888133pt;}
.y1e7{bottom:148.554800pt;}
.yf2{bottom:149.687200pt;}
.y109{bottom:154.499867pt;}
.y8d{bottom:157.166533pt;}
.yc2{bottom:157.166667pt;}
.y103{bottom:157.998667pt;}
.y157{bottom:158.554800pt;}
.y1e6{bottom:159.221467pt;}
.y2d{bottom:159.326800pt;}
.y18c{bottom:163.888133pt;}
.y108{bottom:165.166533pt;}
.yf1{bottom:165.687200pt;}
.y156{bottom:169.221467pt;}
.y8c{bottom:173.166533pt;}
.yc1{bottom:173.166667pt;}
.y18b{bottom:174.554800pt;}
.y2c{bottom:177.993467pt;}
.y155{bottom:179.888133pt;}
.y1a7{bottom:185.221467pt;}
.yf0{bottom:185.322933pt;}
.y8b{bottom:189.166533pt;}
.yc0{bottom:189.166667pt;}
.y18a{bottom:190.554800pt;}
.y154{bottom:195.888133pt;}
.y1e5{bottom:200.554800pt;}
.y189{bottom:201.221467pt;}
.yef{bottom:201.322933pt;}
.y8a{bottom:205.166533pt;}
.ybf{bottom:205.166667pt;}
.y153{bottom:206.554800pt;}
.y1e4{bottom:211.221467pt;}
.y2b{bottom:211.326800pt;}
.y188{bottom:211.888133pt;}
.yee{bottom:220.958533pt;}
.y89{bottom:221.166533pt;}
.ybe{bottom:221.166667pt;}
.y1e3{bottom:221.888133pt;}
.y152{bottom:222.554800pt;}
.y2a{bottom:227.326800pt;}
.y187{bottom:227.888133pt;}
.y151{bottom:233.221467pt;}
.y88{bottom:237.166533pt;}
.ybd{bottom:237.166667pt;}
.y1e2{bottom:237.221467pt;}
.y186{bottom:238.554800pt;}
.yed{bottom:240.594133pt;}
.y29{bottom:243.326800pt;}
.y150{bottom:243.888133pt;}
.y1e1{bottom:247.888133pt;}
.y1a6{bottom:249.221467pt;}
.y87{bottom:253.166533pt;}
.ybc{bottom:253.166667pt;}
.y185{bottom:254.554800pt;}
.y1e0{bottom:258.554800pt;}
.y28{bottom:259.326800pt;}
.y14f{bottom:259.888133pt;}
.yec{bottom:260.229867pt;}
.y184{bottom:265.221467pt;}
.y86{bottom:269.166533pt;}
.ybb{bottom:269.166667pt;}
.y14e{bottom:270.554800pt;}
.y1df{bottom:273.888133pt;}
.y183{bottom:275.888133pt;}
.y27{bottom:279.712133pt;}
.yeb{bottom:279.865333pt;}
.y14d{bottom:281.221467pt;}
.y1de{bottom:284.554800pt;}
.y85{bottom:285.166533pt;}
.yba{bottom:285.166667pt;}
.y182{bottom:286.554800pt;}
.y1dd{bottom:295.221467pt;}
.y26{bottom:295.712133pt;}
.y14c{bottom:297.221467pt;}
.yea{bottom:299.501067pt;}
.y84{bottom:301.166533pt;}
.yb9{bottom:301.166667pt;}
.y181{bottom:302.554800pt;}
.y14b{bottom:307.888133pt;}
.y1dc{bottom:310.554800pt;}
.y25{bottom:311.712133pt;}
.y180{bottom:313.221467pt;}
.y83{bottom:317.166533pt;}
.yb8{bottom:317.166667pt;}
.y14a{bottom:318.554800pt;}
.ye9{bottom:319.136667pt;}
.y1db{bottom:321.221467pt;}
.y1a5{bottom:323.888133pt;}
.y24{bottom:327.712133pt;}
.y149{bottom:329.221467pt;}
.y1da{bottom:331.888133pt;}
.y82{bottom:333.166533pt;}
.yb7{bottom:333.166667pt;}
.y1a4{bottom:334.554800pt;}
.ye8{bottom:338.772267pt;}
.y17f{bottom:339.888133pt;}
.y23{bottom:343.712133pt;}
.y148{bottom:345.221467pt;}
.y1d9{bottom:347.221467pt;}
.y81{bottom:349.166533pt;}
.yb6{bottom:349.166667pt;}
.y17e{bottom:350.554800pt;}
.y147{bottom:355.888133pt;}
.y1d8{bottom:357.888133pt;}
.ye7{bottom:358.408000pt;}
.y22{bottom:359.712133pt;}
.y1a3{bottom:361.221467pt;}
.y80{bottom:365.166533pt;}
.yb5{bottom:365.166667pt;}
.y146{bottom:366.554800pt;}
.y1d7{bottom:368.554800pt;}
.y1a2{bottom:371.888133pt;}
.y21{bottom:375.712133pt;}
.y17d{bottom:377.221467pt;}
.ye6{bottom:378.043600pt;}
.y7f{bottom:381.166533pt;}
.yb4{bottom:381.166667pt;}
.y145{bottom:382.554800pt;}
.y1d6{bottom:383.888133pt;}
.y17c{bottom:387.888133pt;}
.y20{bottom:391.712133pt;}
.y144{bottom:393.221467pt;}
.y1d5{bottom:394.554800pt;}
.y7e{bottom:397.166533pt;}
.yb3{bottom:397.166667pt;}
.ye5{bottom:397.679200pt;}
.y1a1{bottom:398.554800pt;}
.y17b{bottom:403.888133pt;}
.y1d4{bottom:405.221467pt;}
.y1f{bottom:407.712133pt;}
.y143{bottom:409.221467pt;}
.y7d{bottom:413.166533pt;}
.yb2{bottom:413.166667pt;}
.y17a{bottom:414.554800pt;}
.y54{bottom:416.047600pt;}
.ye4{bottom:417.314800pt;}
.y142{bottom:419.888133pt;}
.y1d3{bottom:420.554800pt;}
.y1e{bottom:423.712133pt;}
.y179{bottom:425.221467pt;}
.y53{bottom:428.047600pt;}
.y7c{bottom:429.166533pt;}
.yb1{bottom:429.166667pt;}
.y141{bottom:430.554800pt;}
.y1d2{bottom:431.221467pt;}
.y1a0{bottom:435.888133pt;}
.ye3{bottom:436.950533pt;}
.y1d{bottom:439.712133pt;}
.y52{bottom:440.047600pt;}
.y178{bottom:441.221467pt;}
.y7b{bottom:445.166533pt;}
.yb0{bottom:445.166667pt;}
.y140{bottom:446.554800pt;}
.y177{bottom:451.888133pt;}
.y51{bottom:452.047600pt;}
.ye2{bottom:456.586133pt;}
.y13f{bottom:457.221467pt;}
.y1c{bottom:460.097467pt;}
.y7a{bottom:461.166533pt;}
.yaf{bottom:461.166667pt;}
.y176{bottom:462.554800pt;}
.y50{bottom:464.047600pt;}
.y13e{bottom:467.888133pt;}
.y1d1{bottom:472.554800pt;}
.y19f{bottom:473.221467pt;}
.y4f{bottom:476.047600pt;}
.y1b{bottom:476.097467pt;}
.ye1{bottom:476.221733pt;}
.y79{bottom:477.166533pt;}
.yae{bottom:477.166667pt;}
.y175{bottom:478.554800pt;}
.y1d0{bottom:483.221467pt;}
.y13d{bottom:483.888133pt;}
.y4e{bottom:488.047600pt;}
.y174{bottom:489.221467pt;}
.y1a{bottom:492.097467pt;}
.y78{bottom:493.166533pt;}
.yad{bottom:493.166667pt;}
.y13c{bottom:494.554800pt;}
.ye0{bottom:495.857333pt;}
.y1cf{bottom:498.554800pt;}
.y19e{bottom:499.888133pt;}
.y4d{bottom:500.047600pt;}
.y173{bottom:505.221467pt;}
.y19{bottom:508.097467pt;}
.y77{bottom:509.166533pt;}
.y1ce{bottom:509.221467pt;}
.y13b{bottom:510.554800pt;}
.y4c{bottom:512.047600pt;}
.ydf{bottom:515.493067pt;}
.y172{bottom:515.888133pt;}
.y1cd{bottom:519.888133pt;}
.y13a{bottom:521.221467pt;}
.y4b{bottom:524.047600pt;}
.y76{bottom:525.166533pt;}
.yac{bottom:525.166667pt;}
.y171{bottom:526.554800pt;}
.y18{bottom:528.482800pt;}
.y139{bottom:531.888133pt;}
.yde{bottom:535.128667pt;}
.y1cc{bottom:535.221467pt;}
.y4a{bottom:536.047600pt;}
.y170{bottom:537.221467pt;}
.y75{bottom:541.166533pt;}
.y138{bottom:542.554800pt;}
.y17{bottom:544.482800pt;}
.y1cb{bottom:545.888133pt;}
.y19d{bottom:547.888133pt;}
.y49{bottom:548.047600pt;}
.y16f{bottom:553.221467pt;}
.ydd{bottom:554.764267pt;}
.y1ca{bottom:556.554800pt;}
.y74{bottom:557.166533pt;}
.y137{bottom:558.554800pt;}
.y48{bottom:560.047600pt;}
.y16{bottom:560.482800pt;}
.y16e{bottom:563.888133pt;}
.y136{bottom:569.221467pt;}
.y1c9{bottom:571.888133pt;}
.y47{bottom:572.275600pt;}
.y73{bottom:573.166533pt;}
.yab{bottom:573.166667pt;}
.ydc{bottom:574.399867pt;}
.y15{bottom:576.482800pt;}
.y135{bottom:579.888133pt;}
.y1c8{bottom:582.554800pt;}
.y72{bottom:589.166533pt;}
.yaa{bottom:589.166667pt;}
.y16d{bottom:590.554800pt;}
.y46{bottom:591.003600pt;}
.y14{bottom:592.482800pt;}
.ydb{bottom:594.035467pt;}
.y134{bottom:595.888133pt;}
.y1c7{bottom:597.888133pt;}
.y16c{bottom:601.221467pt;}
.y45{bottom:603.003600pt;}
.y71{bottom:605.166533pt;}
.ya9{bottom:605.166667pt;}
.y133{bottom:606.554800pt;}
.y13{bottom:608.482800pt;}
.y1c6{bottom:608.554800pt;}
.yda{bottom:613.671200pt;}
.y44{bottom:615.003600pt;}
.y132{bottom:617.221467pt;}
.y70{bottom:621.166533pt;}
.ya8{bottom:621.166667pt;}
.y1c5{bottom:623.888133pt;}
.y12{bottom:624.482800pt;}
.y43{bottom:627.003600pt;}
.y131{bottom:627.888133pt;}
.y19c{bottom:633.221467pt;}
.yd9{bottom:633.306800pt;}
.y1c4{bottom:634.554800pt;}
.y6f{bottom:637.166533pt;}
.ya7{bottom:637.166667pt;}
.y16b{bottom:638.554800pt;}
.y42{bottom:639.003600pt;}
.y11{bottom:640.482800pt;}
.y130{bottom:643.888133pt;}
.y1c3{bottom:649.888133pt;}
.y41{bottom:651.003600pt;}
.yd8{bottom:652.942400pt;}
.y6e{bottom:653.166533pt;}
.ya6{bottom:653.166667pt;}
.y12f{bottom:654.554800pt;}
.y10{bottom:656.482800pt;}
.y19b{bottom:659.888133pt;}
.y1c2{bottom:660.554800pt;}
.y40{bottom:663.003600pt;}
.y12e{bottom:665.221467pt;}
.y6d{bottom:669.166533pt;}
.ya5{bottom:669.166667pt;}
.y19a{bottom:670.554800pt;}
.y1c1{bottom:671.221467pt;}
.yd7{bottom:672.578000pt;}
.y3f{bottom:675.003600pt;}
.y16a{bottom:675.888133pt;}
.y12d{bottom:681.221467pt;}
.y6c{bottom:685.166533pt;}
.ya4{bottom:685.166667pt;}
.y1c0{bottom:686.554800pt;}
.y3e{bottom:687.231467pt;}
.y12c{bottom:691.888133pt;}
.yd6{bottom:692.213600pt;}
.yf{bottom:695.534800pt;}
.y1bf{bottom:697.221467pt;}
.y6b{bottom:701.166533pt;}
.ya3{bottom:701.166667pt;}
.y12b{bottom:702.554800pt;}
.y3d{bottom:705.959600pt;}
.ye{bottom:707.534800pt;}
.y199{bottom:707.888133pt;}
.yd5{bottom:711.849333pt;}
.y169{bottom:713.221467pt;}
.y6a{bottom:717.166533pt;}
.ya2{bottom:717.166667pt;}
.y3c{bottom:717.959600pt;}
.y12a{bottom:718.554800pt;}
.yd{bottom:719.534800pt;}
.y1be{bottom:723.221467pt;}
.y168{bottom:723.888133pt;}
.y129{bottom:729.221467pt;}
.y3b{bottom:729.959600pt;}
.yd4{bottom:731.484933pt;}
.y69{bottom:733.166533pt;}
.ya1{bottom:733.166667pt;}
.y1bd{bottom:733.888133pt;}
.y198{bottom:734.554800pt;}
.yc{bottom:734.894800pt;}
.y128{bottom:739.888133pt;}
.yb{bottom:743.534800pt;}
.y1bc{bottom:744.554800pt;}
.y197{bottom:745.221467pt;}
.y3a{bottom:748.626267pt;}
.y68{bottom:749.166533pt;}
.y167{bottom:750.554800pt;}
.yd3{bottom:751.120533pt;}
.y127{bottom:755.888133pt;}
.ya{bottom:758.894800pt;}
.y1bb{bottom:759.888133pt;}
.y39{bottom:760.626267pt;}
.y166{bottom:761.221467pt;}
.y93{bottom:763.366667pt;}
.y67{bottom:765.166533pt;}
.ya0{bottom:765.166667pt;}
.y126{bottom:766.554800pt;}
.y1ba{bottom:770.554800pt;}
.yd2{bottom:770.756133pt;}
.y196{bottom:771.888133pt;}
.y38{bottom:772.854267pt;}
.y125{bottom:777.221467pt;}
.y8{bottom:777.653467pt;}
.y66{bottom:781.166533pt;}
.y9f{bottom:781.166667pt;}
.y1b9{bottom:781.221467pt;}
.y195{bottom:782.554800pt;}
.y9{bottom:782.933467pt;}
.y165{bottom:787.888133pt;}
.yd1{bottom:790.391867pt;}
.y37{bottom:791.582133pt;}
.y124{bottom:793.221467pt;}
.y1b8{bottom:796.554800pt;}
.y65{bottom:797.166533pt;}
.y6{bottom:797.653467pt;}
.y164{bottom:798.554800pt;}
.y7{bottom:802.933467pt;}
.y36{bottom:803.582133pt;}
.y123{bottom:803.888133pt;}
.y1b7{bottom:807.221467pt;}
.yd0{bottom:810.027467pt;}
.y64{bottom:813.166533pt;}
.y9e{bottom:813.166667pt;}
.y122{bottom:814.554800pt;}
.y35{bottom:815.582133pt;}
.y1b6{bottom:817.888133pt;}
.y194{bottom:819.888133pt;}
.y163{bottom:825.221467pt;}
.y34{bottom:827.582133pt;}
.y63{bottom:829.166533pt;}
.ycf{bottom:829.663067pt;}
.y121{bottom:830.554800pt;}
.y1b5{bottom:833.221467pt;}
.y5{bottom:835.110800pt;}
.y162{bottom:835.888133pt;}
.y33{bottom:839.810267pt;}
.y120{bottom:841.221467pt;}
.yfc{bottom:843.570933pt;}
.y1b4{bottom:843.888133pt;}
.y62{bottom:845.166533pt;}
.yce{bottom:849.298800pt;}
.y11f{bottom:851.888133pt;}
.y1b3{bottom:854.554800pt;}
.yfb{bottom:855.570933pt;}
.y193{bottom:857.221467pt;}
.y32{bottom:858.538267pt;}
.y61{bottom:861.166533pt;}
.y9d{bottom:861.166667pt;}
.y161{bottom:862.554800pt;}
.y102{bottom:867.119067pt;}
.y11e{bottom:867.888133pt;}
.y4{bottom:868.444133pt;}
.ycd{bottom:868.934267pt;}
.y1b2{bottom:869.888133pt;}
.y31{bottom:870.538267pt;}
.y160{bottom:873.221467pt;}
.yfa{bottom:874.162800pt;}
.y60{bottom:877.166533pt;}
.y9c{bottom:877.166667pt;}
.y11d{bottom:878.554800pt;}
.y1b1{bottom:880.554800pt;}
.y30{bottom:882.766133pt;}
.y101{bottom:885.710933pt;}
.ycc{bottom:888.570000pt;}
.y11c{bottom:889.221467pt;}
.y1b0{bottom:891.221467pt;}
.y5f{bottom:893.166533pt;}
.y9b{bottom:893.166667pt;}
.yf9{bottom:894.013200pt;}
.y192{bottom:894.554800pt;}
.y11b{bottom:899.888133pt;}
.y2f{bottom:901.494267pt;}
.y3{bottom:901.777467pt;}
.y191{bottom:905.221467pt;}
.y100{bottom:905.561333pt;}
.y1af{bottom:906.554800pt;}
.ycb{bottom:908.205600pt;}
.y5e{bottom:909.166533pt;}
.y9a{bottom:909.166667pt;}
.y15f{bottom:910.554800pt;}
.yf8{bottom:913.863600pt;}
.y11a{bottom:915.888133pt;}
.y1ae{bottom:917.221467pt;}
.y15e{bottom:921.221467pt;}
.y5d{bottom:925.166533pt;}
.y99{bottom:925.166667pt;}
.yff{bottom:925.411733pt;}
.y119{bottom:926.554800pt;}
.yca{bottom:927.841200pt;}
.y1ad{bottom:927.888133pt;}
.yf7{bottom:933.714000pt;}
.y2{bottom:935.110800pt;}
.y118{bottom:937.221467pt;}
.y1ac{bottom:938.554800pt;}
.y5c{bottom:941.166533pt;}
.y98{bottom:941.166667pt;}
.y190{bottom:942.554800pt;}
.yfe{bottom:945.262133pt;}
.yc9{bottom:947.476933pt;}
.y117{bottom:947.888133pt;}
.y18f{bottom:953.221467pt;}
.yf6{bottom:953.564400pt;}
.y1ab{bottom:953.888133pt;}
.y5b{bottom:957.166533pt;}
.y97{bottom:957.166667pt;}
.y15d{bottom:958.554800pt;}
.y116{bottom:963.888133pt;}
.y1aa{bottom:964.554800pt;}
.yfd{bottom:964.897733pt;}
.yc8{bottom:967.112533pt;}
.y5a{bottom:973.166533pt;}
.y96{bottom:973.166667pt;}
.yf5{bottom:973.414800pt;}
.y115{bottom:974.554800pt;}
.y1a9{bottom:975.221467pt;}
.y114{bottom:985.221467pt;}
.yc7{bottom:986.748133pt;}
.y92{bottom:989.166533pt;}
.y95{bottom:989.166667pt;}
.y18e{bottom:990.554800pt;}
.y113{bottom:1001.221467pt;}
.y59{bottom:1005.166533pt;}
.y94{bottom:1005.166667pt;}
.yc6{bottom:1011.673333pt;}
.y112{bottom:1011.888133pt;}
.y57{bottom:1044.714133pt;}
.y56{bottom:1056.714133pt;}
.y58{bottom:1068.686267pt;}
.y55{bottom:1068.714133pt;}
.h6{height:16.343787pt;}
.ha{height:21.178667pt;}
.h11{height:22.995840pt;}
.h5{height:25.752320pt;}
.hc{height:26.954667pt;}
.h8{height:27.701333pt;}
.h2{height:27.776000pt;}
.h15{height:28.149333pt;}
.h7{height:29.783787pt;}
.h13{height:30.314667pt;}
.hb{height:30.805333pt;}
.h14{height:31.173867pt;}
.h16{height:31.325653pt;}
.h9{height:35.616000pt;}
.h12{height:35.712000pt;}
.he{height:38.976000pt;}
.h10{height:41.664000pt;}
.h4{height:43.648000pt;}
.hf{height:47.616000pt;}
.hd{height:53.568000pt;}
.h3{height:83.328000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.141733pt;}
.x7{left:73.349333pt;}
.x16{left:83.128400pt;}
.x9{left:85.025733pt;}
.x15{left:179.895333pt;}
.x12{left:188.344400pt;}
.x14{left:216.514267pt;}
.x2{left:295.559067pt;}
.xc{left:323.911467pt;}
.xd{left:344.458400pt;}
.xb{left:406.285867pt;}
.xf{left:412.891067pt;}
.x17{left:414.299200pt;}
.xa{left:425.183200pt;}
.x3{left:428.227067pt;}
.x5{left:474.354000pt;}
.x4{left:584.456133pt;}
.x8{left:587.770533pt;}
.x11{left:633.090267pt;}
.x10{left:637.570267pt;}
.xe{left:641.178933pt;}
.x13{left:660.385467pt;}
.x6{left:680.957200pt;}
}




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