
    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_0fceba9b19471f233e2fff8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_13267e75962d5b98d0c8e0be.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722656;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_d6b4ffe218a09222b5cfc944.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990000;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_89eb4776526a45e05a257189.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_0fceba9b19471f233e2fff8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_17383d5dca149337230c8c2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.928000;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_d58678d5f60a12c3f4222646.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_90cc637cedd869d73ba28149.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_02511ed8009cacad51ef201c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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_04a8f792c6fce36bd64832cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e4a65e421e3654fea27344b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.081000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_321c71287bcd820544c0bc4f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4b7392e4ed4bfe21265a0cea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_91f10b3e6fcaafba38cad32e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ca9ae15ee03ab89ba7cf27e2.woff2')format("woff");}.fff{font-family:fff;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_068d3290257f79adbb1366df.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.928000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0a425748313ce77ba6bbadcf.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.081000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_dc87b6b1410b4709766fe635.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3d5f14a82d514b659ea978e1.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0a425748313ce77ba6bbadcf.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.081000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_068d3290257f79adbb1366df.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.928000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_7965a44b863989a6d815f950.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_78cb2d514ad32fa6530c3d29.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.937000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_6cfb5de7fb2cc6b83346e0ca.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_517ba4689b77cadc6250a065.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_78cb2d514ad32fa6530c3d29.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.937000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_e7d30e755af36e5f3031d962.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_a12c03d377ffab9a07655d7d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_f2743a05ba05af008a2e12cc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.937000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f2743a05ba05af008a2e12cc.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.937000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_f2743a05ba05af008a2e12cc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.937000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_f2743a05ba05af008a2e12cc.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.937000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_436e01e5b610dec76536317d.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_814fab4b937a37af96f69abc.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.666992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_9f1cd2b13b77d0d82b3a756b.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.677246;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;}
.m54{transform:matrix(0.242895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242895,0.000000,0.000000,0.250000,0,0);}
.mda{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);}
.mf2{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.245543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245543,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.245545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245545,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.246143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246143,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.246424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246424,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246574,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.246813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246813,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.246955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246955,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246998,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.247095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247095,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.247174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247174,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.247437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247437,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247481,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m6b{transform:matrix(0.247524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247524,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.247576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247576,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247639,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247714,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.247804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247804,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.247805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247805,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.247926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247926,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247969,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.248032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248032,0.000000,0.000000,0.250000,0,0);}
.me1{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);}
.m139{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.248053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248053,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248071,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248266,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248268,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248276,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m6c{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);}
.m3a{transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248392,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.248437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248437,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.248461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248461,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248517,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248562,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);}
.m38{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);}
.m11f{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248916,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248957,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);}
.m138{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);}
.m34{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249074,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249117,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249124,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249126,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.249137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249137,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249224,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249274,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249372,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249374,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m76{transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);}
.m137{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);}
.m118{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249426,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249467,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249509,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249579,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.249626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249626,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);}
.m14d{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);}
.m13b{transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249737,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249881,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,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);}
.m10f{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250371,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250637,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250758,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);}
.m86{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.250858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250858,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250936,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.250953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250953,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250981,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250990,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251063,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251192,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.251292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251292,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251363,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.251426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251426,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251434,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251479,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.251513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251513,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251552,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251662,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251733,0.000000,0.000000,0.250000,0,0);}
.m119{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);}
.mf8{transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252066,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.252124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252124,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252129,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.252224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252224,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.252258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252258,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252276,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252393,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.252424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252424,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.252629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252629,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252639,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252831,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.252853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252853,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.253039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253039,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.253134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253134,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.253551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253551,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.253553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253553,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.253618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253618,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253813,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.254029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254029,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254032,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254119,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.254157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254157,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.254976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254976,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-60.480000px;}
.v7{vertical-align:-25.920000px;}
.v8{vertical-align:-17.280000px;}
.va{vertical-align:-12.960000px;}
.v5{vertical-align:-1.056000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.600000px;}
.v4{vertical-align:11.400000px;}
.v3{vertical-align:12.600000px;}
.v1{vertical-align:18.000000px;}
.v6{vertical-align:48.000000px;}
.ls2{letter-spacing:-34.104000px;}
.ls4{letter-spacing:-6.426000px;}
.ls63{letter-spacing:-4.731000px;}
.ls1{letter-spacing:-3.978000px;}
.ls40{letter-spacing:-3.504000px;}
.ls49{letter-spacing:-2.223000px;}
.ls99{letter-spacing:-1.824000px;}
.ls32{letter-spacing:-1.449000px;}
.ls98{letter-spacing:-1.311000px;}
.ls25{letter-spacing:-1.260000px;}
.ls97{letter-spacing:-1.254000px;}
.ls30{letter-spacing:-1.197000px;}
.ls48{letter-spacing:-1.140000px;}
.ls7b{letter-spacing:-1.134000px;}
.ls8e{letter-spacing:-1.083000px;}
.ls78{letter-spacing:-1.071000px;}
.ls67{letter-spacing:-1.026000px;}
.ls33{letter-spacing:-1.008000px;}
.ls8f{letter-spacing:-0.969000px;}
.ls4b{letter-spacing:-0.960000px;}
.ls34{letter-spacing:-0.945000px;}
.ls90{letter-spacing:-0.912000px;}
.ls8{letter-spacing:-0.882000px;}
.ls65{letter-spacing:-0.855000px;}
.ls66{letter-spacing:-0.798000px;}
.ls9{letter-spacing:-0.756000px;}
.ls74{letter-spacing:-0.741000px;}
.ls31{letter-spacing:-0.693000px;}
.ls73{letter-spacing:-0.684000px;}
.ls79{letter-spacing:-0.630000px;}
.ls3a{letter-spacing:-0.627000px;}
.ls35{letter-spacing:-0.570000px;}
.ls7a{letter-spacing:-0.567000px;}
.ls4a{letter-spacing:-0.513000px;}
.ls27{letter-spacing:-0.504000px;}
.ls62{letter-spacing:-0.456000px;}
.ls2b{letter-spacing:-0.441000px;}
.ls96{letter-spacing:-0.438900px;}
.ls3c{letter-spacing:-0.420000px;}
.ls36{letter-spacing:-0.399000px;}
.ls2a{letter-spacing:-0.378000px;}
.ls91{letter-spacing:-0.359100px;}
.ls39{letter-spacing:-0.342000px;}
.ls26{letter-spacing:-0.315000px;}
.ls38{letter-spacing:-0.285000px;}
.ls29{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.228000px;}
.ls3b{letter-spacing:-0.210000px;}
.ls28{letter-spacing:-0.189000px;}
.lsb{letter-spacing:-0.171000px;}
.ls37{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.114000px;}
.ls24{letter-spacing:-0.063000px;}
.lsc{letter-spacing:-0.057000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000600px;}
.ls82{letter-spacing:0.009310px;}
.ls95{letter-spacing:0.022539px;}
.ls5e{letter-spacing:0.031500px;}
.ls7e{letter-spacing:0.039975px;}
.ls7f{letter-spacing:0.042750px;}
.ls54{letter-spacing:0.055575px;}
.ls55{letter-spacing:0.057000px;}
.ls53{letter-spacing:0.057350px;}
.ls60{letter-spacing:0.063000px;}
.ls20{letter-spacing:0.083560px;}
.ls71{letter-spacing:0.094500px;}
.ls7d{letter-spacing:0.112134px;}
.ls1f{letter-spacing:0.114000px;}
.ls68{letter-spacing:0.126000px;}
.ls9b{letter-spacing:0.132525px;}
.ls9a{letter-spacing:0.133439px;}
.ls1e{letter-spacing:0.142500px;}
.ls22{letter-spacing:0.171000px;}
.lsf{letter-spacing:0.189000px;}
.ls87{letter-spacing:0.217496px;}
.ls86{letter-spacing:0.217743px;}
.ls88{letter-spacing:0.218025px;}
.ls23{letter-spacing:0.228000px;}
.ls5f{letter-spacing:0.252000px;}
.ls76{letter-spacing:0.270471px;}
.ls21{letter-spacing:0.285000px;}
.ls8c{letter-spacing:0.299250px;}
.ls8b{letter-spacing:0.300008px;}
.ls5c{letter-spacing:0.315000px;}
.ls44{letter-spacing:0.342000px;}
.ls1d{letter-spacing:0.346500px;}
.ls43{letter-spacing:0.358098px;}
.ls61{letter-spacing:0.378000px;}
.ls8a{letter-spacing:0.408000px;}
.ls75{letter-spacing:0.415736px;}
.ls7c{letter-spacing:0.427500px;}
.ls18{letter-spacing:0.441000px;}
.ls42{letter-spacing:0.456000px;}
.ls41{letter-spacing:0.465975px;}
.ls85{letter-spacing:0.478800px;}
.ls84{letter-spacing:0.479982px;}
.ls2c{letter-spacing:0.504000px;}
.ls89{letter-spacing:0.507889px;}
.ls4d{letter-spacing:0.513000px;}
.ls9c{letter-spacing:0.534000px;}
.ls93{letter-spacing:0.541500px;}
.ls2f{letter-spacing:0.567000px;}
.ls50{letter-spacing:0.570000px;}
.ls10{letter-spacing:0.598500px;}
.ls64{letter-spacing:0.627000px;}
.ls19{letter-spacing:0.630000px;}
.ls80{letter-spacing:0.641250px;}
.ls12{letter-spacing:0.661200px;}
.ls52{letter-spacing:0.684000px;}
.ls81{letter-spacing:0.684747px;}
.ls15{letter-spacing:0.693000px;}
.ls2e{letter-spacing:0.741000px;}
.ls5{letter-spacing:0.756000px;}
.ls6c{letter-spacing:0.797815px;}
.ls6e{letter-spacing:0.797920px;}
.ls6{letter-spacing:0.798000px;}
.ls5a{letter-spacing:0.819000px;}
.ls92{letter-spacing:0.832800px;}
.ls6b{letter-spacing:0.855000px;}
.lse{letter-spacing:0.882000px;}
.ls1c{letter-spacing:0.913500px;}
.ls5d{letter-spacing:0.943800px;}
.ls16{letter-spacing:0.944400px;}
.ls11{letter-spacing:0.945000px;}
.ls17{letter-spacing:0.945600px;}
.ls51{letter-spacing:0.969000px;}
.ls72{letter-spacing:0.976500px;}
.ls57{letter-spacing:1.008000px;}
.ls69{letter-spacing:1.028400px;}
.ls77{letter-spacing:1.045800px;}
.ls14{letter-spacing:1.071000px;}
.ls7{letter-spacing:1.075800px;}
.ls5b{letter-spacing:1.083591px;}
.ls13{letter-spacing:1.134000px;}
.ls2d{letter-spacing:1.197000px;}
.ls3e{letter-spacing:1.228500px;}
.ls58{letter-spacing:1.260000px;}
.ls3d{letter-spacing:1.323000px;}
.ls56{letter-spacing:1.386000px;}
.ls1a{letter-spacing:1.449000px;}
.ls1b{letter-spacing:1.512000px;}
.ls47{letter-spacing:1.722000px;}
.ls70{letter-spacing:2.456400px;}
.ls4f{letter-spacing:2.564400px;}
.ls8d{letter-spacing:2.961600px;}
.ls94{letter-spacing:3.026707px;}
.ls4c{letter-spacing:3.847843px;}
.ls83{letter-spacing:4.012465px;}
.ls4e{letter-spacing:4.044821px;}
.ls6f{letter-spacing:4.137787px;}
.ls6d{letter-spacing:4.310836px;}
.ls59{letter-spacing:5.184536px;}
.ls46{letter-spacing:84.201000px;}
.ls45{letter-spacing:168.914400px;}
.ls6a{letter-spacing:623.760000px;}
.ls3f{letter-spacing:762.144000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,80,255),0 0.015em rgb(0,80,255),0.015em 0 rgb(0,80,255),0 -0.015em  rgb(0,80,255);}
.sc1{text-shadow:-0.015em 0 rgb(255,242,0),0 0.015em rgb(255,242,0),0.015em 0 rgb(255,242,0),0 -0.015em  rgb(255,242,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,80,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,242,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-121.128000px;}
.ws12b{word-spacing:-57.000000px;}
.ws0{word-spacing:-54.000000px;}
.ws129{word-spacing:-42.750000px;}
.wsd{word-spacing:-26.688000px;}
.wsa4{word-spacing:-17.010000px;}
.wsa5{word-spacing:-16.821000px;}
.ws25{word-spacing:-16.695000px;}
.ws24{word-spacing:-16.632000px;}
.wsa7{word-spacing:-16.254000px;}
.wsde{word-spacing:-16.191000px;}
.wsa6{word-spacing:-16.065000px;}
.wsc9{word-spacing:-15.876000px;}
.ws54{word-spacing:-15.750000px;}
.wsa8{word-spacing:-15.687000px;}
.wsdd{word-spacing:-15.624000px;}
.ws5a{word-spacing:-15.561000px;}
.wsc8{word-spacing:-15.498000px;}
.ws56{word-spacing:-15.435000px;}
.wsef{word-spacing:-15.372000px;}
.wsdc{word-spacing:-15.309000px;}
.wsd8{word-spacing:-15.105000px;}
.ws55{word-spacing:-15.057000px;}
.ws5b{word-spacing:-14.868000px;}
.ws85{word-spacing:-14.805000px;}
.ws12f{word-spacing:-14.791500px;}
.wsf{word-spacing:-14.763000px;}
.ws86{word-spacing:-14.742000px;}
.ws105{word-spacing:-14.706000px;}
.wsf5{word-spacing:-14.679000px;}
.ws9d{word-spacing:-14.535000px;}
.ws59{word-spacing:-14.478000px;}
.ws57{word-spacing:-14.421000px;}
.wsa0{word-spacing:-14.307000px;}
.ws87{word-spacing:-14.301000px;}
.ws11{word-spacing:-14.250000px;}
.ws12c{word-spacing:-14.193000px;}
.ws10{word-spacing:-14.136000px;}
.ws9f{word-spacing:-14.079000px;}
.ws88{word-spacing:-14.022000px;}
.ws9b{word-spacing:-13.965000px;}
.wsd7{word-spacing:-13.908000px;}
.ws103{word-spacing:-13.851000px;}
.wsff{word-spacing:-13.794000px;}
.ws109{word-spacing:-13.737000px;}
.ws58{word-spacing:-13.680000px;}
.ws9e{word-spacing:-13.623000px;}
.ws104{word-spacing:-13.566000px;}
.wsc{word-spacing:-13.500000px;}
.ws12e{word-spacing:-13.452000px;}
.ws108{word-spacing:-13.395000px;}
.ws9{word-spacing:-13.344000px;}
.ws10d{word-spacing:-13.338000px;}
.wsdb{word-spacing:-13.281000px;}
.wsa1{word-spacing:-13.167000px;}
.ws12d{word-spacing:-12.996000px;}
.wsa3{word-spacing:-12.757500px;}
.ws82{word-spacing:-11.812500px;}
.ws6{word-spacing:-11.676000px;}
.wsd4{word-spacing:-11.466000px;}
.ws102{word-spacing:-11.371500px;}
.ws101{word-spacing:-11.328750px;}
.wscc{word-spacing:-11.256000px;}
.ws106{word-spacing:-11.166300px;}
.ws83{word-spacing:-11.153475px;}
.ws5{word-spacing:-11.088000px;}
.ws4{word-spacing:-11.004000px;}
.ws10a{word-spacing:-10.986750px;}
.ws107{word-spacing:-10.905525px;}
.ws13e{word-spacing:-10.820025px;}
.wse{word-spacing:-10.794000px;}
.wsa2{word-spacing:-10.743075px;}
.ws100{word-spacing:-10.730250px;}
.ws84{word-spacing:-10.687500px;}
.ws10c{word-spacing:-9.975000px;}
.ws7b{word-spacing:-9.840000px;}
.ws10b{word-spacing:-9.615900px;}
.ws12a{word-spacing:-9.536100px;}
.ws9c{word-spacing:-9.519000px;}
.wsa{word-spacing:-9.340800px;}
.ws7{word-spacing:-8.757000px;}
.ws13f{word-spacing:-6.384000px;}
.ws116{word-spacing:-6.327000px;}
.ws136{word-spacing:-4.560000px;}
.wsaa{word-spacing:-4.446000px;}
.ws29{word-spacing:-4.032000px;}
.ws27{word-spacing:-3.969000px;}
.ws2e{word-spacing:-3.906000px;}
.ws75{word-spacing:-3.780000px;}
.wsae{word-spacing:-3.762000px;}
.ws93{word-spacing:-3.717000px;}
.ws134{word-spacing:-3.705000px;}
.ws8e{word-spacing:-3.648000px;}
.ws17{word-spacing:-3.591000px;}
.ws1b{word-spacing:-3.534000px;}
.ws31{word-spacing:-3.528000px;}
.wsfe{word-spacing:-3.477000px;}
.wsf8{word-spacing:-3.402000px;}
.wsce{word-spacing:-3.339000px;}
.wse3{word-spacing:-3.276000px;}
.ws2d{word-spacing:-3.213000px;}
.wsfd{word-spacing:-3.192000px;}
.wsc5{word-spacing:-3.150000px;}
.ws13a{word-spacing:-3.135000px;}
.ws39{word-spacing:-3.087000px;}
.ws64{word-spacing:-3.024000px;}
.wscd{word-spacing:-2.961000px;}
.ws78{word-spacing:-2.940000px;}
.ws11b{word-spacing:-2.907000px;}
.ws126{word-spacing:-2.850000px;}
.ws10e{word-spacing:-2.793000px;}
.ws92{word-spacing:-2.772000px;}
.ws138{word-spacing:-2.736000px;}
.wsc2{word-spacing:-2.709000px;}
.ws110{word-spacing:-2.679000px;}
.ws34{word-spacing:-2.646000px;}
.ws130{word-spacing:-2.622000px;}
.ws62{word-spacing:-2.583000px;}
.ws139{word-spacing:-2.565000px;}
.wsb9{word-spacing:-2.508000px;}
.ws6b{word-spacing:-2.457000px;}
.wsb5{word-spacing:-2.451000px;}
.wsda{word-spacing:-2.394000px;}
.wsbf{word-spacing:-2.331000px;}
.ws12{word-spacing:-2.322000px;}
.ws11d{word-spacing:-2.280000px;}
.ws5f{word-spacing:-2.268000px;}
.ws121{word-spacing:-2.223000px;}
.wsf6{word-spacing:-2.205000px;}
.ws8f{word-spacing:-2.166000px;}
.wsfa{word-spacing:-2.142000px;}
.ws51{word-spacing:-2.109000px;}
.wsbc{word-spacing:-2.079000px;}
.ws132{word-spacing:-2.052000px;}
.ws66{word-spacing:-2.016000px;}
.ws123{word-spacing:-1.995000px;}
.wsa9{word-spacing:-1.938000px;}
.wsd6{word-spacing:-1.932000px;}
.ws117{word-spacing:-1.881000px;}
.ws69{word-spacing:-1.827000px;}
.ws11c{word-spacing:-1.767000px;}
.wsf9{word-spacing:-1.764000px;}
.ws21{word-spacing:-1.710000px;}
.ws11e{word-spacing:-1.596000px;}
.ws81{word-spacing:-1.575000px;}
.ws8d{word-spacing:-1.539000px;}
.wse5{word-spacing:-1.512000px;}
.ws18{word-spacing:-1.482000px;}
.wsc7{word-spacing:-1.449000px;}
.wsee{word-spacing:-1.386000px;}
.ws125{word-spacing:-1.368000px;}
.ws94{word-spacing:-1.323000px;}
.ws8c{word-spacing:-1.254000px;}
.ws50{word-spacing:-1.197000px;}
.ws5d{word-spacing:-1.134000px;}
.wsb1{word-spacing:-1.083000px;}
.ws119{word-spacing:-1.026000px;}
.ws68{word-spacing:-1.008000px;}
.wsb4{word-spacing:-0.969000px;}
.ws3f{word-spacing:-0.945000px;}
.ws11a{word-spacing:-0.912000px;}
.ws72{word-spacing:-0.882000px;}
.ws22{word-spacing:-0.855000px;}
.ws7e{word-spacing:-0.819000px;}
.ws46{word-spacing:-0.798000px;}
.ws19{word-spacing:-0.741000px;}
.ws74{word-spacing:-0.693000px;}
.ws4d{word-spacing:-0.684000px;}
.ws1a{word-spacing:-0.627000px;}
.ws99{word-spacing:-0.588000px;}
.ws4e{word-spacing:-0.570000px;}
.ws71{word-spacing:-0.567000px;}
.ws98{word-spacing:-0.513000px;}
.wsc6{word-spacing:-0.504000px;}
.ws10f{word-spacing:-0.456000px;}
.ws38{word-spacing:-0.441000px;}
.wse1{word-spacing:-0.399000px;}
.ws30{word-spacing:-0.378000px;}
.ws4a{word-spacing:-0.342000px;}
.wsc1{word-spacing:-0.315000px;}
.wsab{word-spacing:-0.285000px;}
.wsc0{word-spacing:-0.252000px;}
.wse6{word-spacing:-0.189000px;}
.ws124{word-spacing:-0.171000px;}
.ws2c{word-spacing:-0.126000px;}
.ws95{word-spacing:-0.114000px;}
.ws40{word-spacing:-0.063000px;}
.wsaf{word-spacing:-0.057000px;}
.ws53{word-spacing:-0.048000px;}
.ws8{word-spacing:-0.042000px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:0.057000px;}
.wsbd{word-spacing:0.063000px;}
.ws1c{word-spacing:0.114000px;}
.ws5e{word-spacing:0.126000px;}
.wsac{word-spacing:0.171000px;}
.wsc4{word-spacing:0.189000px;}
.ws76{word-spacing:0.210000px;}
.ws97{word-spacing:0.228000px;}
.ws7f{word-spacing:0.252000px;}
.ws112{word-spacing:0.285000px;}
.ws2a{word-spacing:0.315000px;}
.ws118{word-spacing:0.342000px;}
.ws33{word-spacing:0.378000px;}
.wsb7{word-spacing:0.399000px;}
.ws77{word-spacing:0.420000px;}
.ws67{word-spacing:0.441000px;}
.ws5c{word-spacing:0.504000px;}
.ws52{word-spacing:0.513000px;}
.wsb6{word-spacing:0.570000px;}
.ws15{word-spacing:0.627000px;}
.ws3a{word-spacing:0.630000px;}
.wsdf{word-spacing:0.684000px;}
.ws61{word-spacing:0.693000px;}
.ws115{word-spacing:0.741000px;}
.ws14{word-spacing:0.756000px;}
.wsad{word-spacing:0.798000px;}
.ws36{word-spacing:0.819000px;}
.wsb3{word-spacing:0.855000px;}
.ws13{word-spacing:0.882000px;}
.ws127{word-spacing:0.912000px;}
.ws35{word-spacing:0.945000px;}
.ws9a{word-spacing:0.960000px;}
.ws135{word-spacing:0.969000px;}
.ws32{word-spacing:1.008000px;}
.ws4c{word-spacing:1.026000px;}
.ws2b{word-spacing:1.071000px;}
.ws1f{word-spacing:1.083000px;}
.wsbe{word-spacing:1.134000px;}
.ws80{word-spacing:1.197000px;}
.wse0{word-spacing:1.254000px;}
.ws28{word-spacing:1.260000px;}
.ws1e{word-spacing:1.311000px;}
.wsf7{word-spacing:1.323000px;}
.ws8b{word-spacing:1.368000px;}
.wse4{word-spacing:1.386000px;}
.ws70{word-spacing:1.425000px;}
.wsf4{word-spacing:1.428000px;}
.ws60{word-spacing:1.449000px;}
.wscf{word-spacing:1.470000px;}
.ws1d{word-spacing:1.482000px;}
.ws2f{word-spacing:1.512000px;}
.ws114{word-spacing:1.539000px;}
.ws41{word-spacing:1.575000px;}
.ws16{word-spacing:1.596000px;}
.ws90{word-spacing:1.638000px;}
.ws13d{word-spacing:1.653000px;}
.wse9{word-spacing:1.701000px;}
.wse8{word-spacing:1.764000px;}
.ws4b{word-spacing:1.824000px;}
.ws6a{word-spacing:1.827000px;}
.ws120{word-spacing:1.881000px;}
.wsba{word-spacing:1.938000px;}
.wseb{word-spacing:1.953000px;}
.ws113{word-spacing:2.052000px;}
.ws44{word-spacing:2.079000px;}
.ws13c{word-spacing:2.109000px;}
.ws43{word-spacing:2.142000px;}
.ws45{word-spacing:2.205000px;}
.ws11f{word-spacing:2.223000px;}
.ws7d{word-spacing:2.268000px;}
.ws128{word-spacing:2.280000px;}
.ws63{word-spacing:2.331000px;}
.ws4f{word-spacing:2.337000px;}
.ws122{word-spacing:2.394000px;}
.wse2{word-spacing:2.451000px;}
.wsea{word-spacing:2.457000px;}
.ws13b{word-spacing:2.565000px;}
.ws65{word-spacing:2.583000px;}
.ws137{word-spacing:2.622000px;}
.wsed{word-spacing:2.646000px;}
.ws6d{word-spacing:2.679000px;}
.ws42{word-spacing:2.709000px;}
.ws79{word-spacing:2.730000px;}
.ws131{word-spacing:2.736000px;}
.ws3d{word-spacing:2.772000px;}
.ws73{word-spacing:2.898000px;}
.ws6e{word-spacing:2.907000px;}
.wse7{word-spacing:2.961000px;}
.ws111{word-spacing:2.964000px;}
.ws47{word-spacing:3.021000px;}
.ws3e{word-spacing:3.024000px;}
.ws133{word-spacing:3.078000px;}
.ws96{word-spacing:3.135000px;}
.ws91{word-spacing:3.150000px;}
.ws6f{word-spacing:3.192000px;}
.wsd5{word-spacing:3.213000px;}
.wsb8{word-spacing:3.249000px;}
.wsfb{word-spacing:3.276000px;}
.ws3b{word-spacing:3.339000px;}
.wsb0{word-spacing:3.420000px;}
.wsfc{word-spacing:3.465000px;}
.ws6c{word-spacing:3.477000px;}
.ws48{word-spacing:3.534000px;}
.ws49{word-spacing:3.591000px;}
.wsec{word-spacing:3.654000px;}
.wsbb{word-spacing:3.717000px;}
.wsf3{word-spacing:3.780000px;}
.ws37{word-spacing:3.843000px;}
.ws26{word-spacing:3.906000px;}
.ws3c{word-spacing:3.969000px;}
.ws3{word-spacing:3.978000px;}
.wsb2{word-spacing:4.104000px;}
.wsc3{word-spacing:4.599000px;}
.wsb{word-spacing:6.426000px;}
.ws89{word-spacing:70.857000px;}
.ws7a{word-spacing:99.378600px;}
.ws8a{word-spacing:115.726800px;}
.wsf0{word-spacing:389.940000px;}
.wsf1{word-spacing:413.640000px;}
.wsf2{word-spacing:428.700000px;}
.wsd9{word-spacing:443.220000px;}
.wsca{word-spacing:502.680000px;}
.wscb{word-spacing:523.620000px;}
.wsd2{word-spacing:528.060000px;}
.ws7c{word-spacing:533.472000px;}
.wsd0{word-spacing:580.020000px;}
.wsd1{word-spacing:621.000000px;}
.wsd3{word-spacing:731.100000px;}
.ws23{word-spacing:2289.052800px;}
._2d{margin-left:-1206.288000px;}
._f{margin-left:-18.445200px;}
._c{margin-left:-16.528819px;}
._15{margin-left:-15.213300px;}
._7{margin-left:-14.211000px;}
._1{margin-left:-11.240400px;}
._b{margin-left:-9.137400px;}
._9{margin-left:-7.837666px;}
._2{margin-left:-6.426000px;}
._a{margin-left:-4.881000px;}
._8{margin-left:-3.792600px;}
._3{margin-left:-2.398200px;}
._4{margin-left:-1.179600px;}
._5{width:1.006800px;}
._11{width:2.772000px;}
._0{width:3.949200px;}
._69{width:5.092200px;}
._41{width:26.748000px;}
._17{width:34.638900px;}
._2f{width:38.347200px;}
._10{width:44.627146px;}
._5e{width:45.723000px;}
._2e{width:46.768200px;}
._57{width:49.960200px;}
._53{width:52.224254px;}
._16{width:55.718419px;}
._51{width:60.200746px;}
._36{width:66.190800px;}
._e{width:67.948328px;}
._21{width:71.080800px;}
._26{width:72.712800px;}
._55{width:74.071781px;}
._5c{width:75.590419px;}
._31{width:77.495400px;}
._3d{width:84.201000px;}
._4e{width:86.785200px;}
._32{width:88.012200px;}
._59{width:89.175854px;}
._44{width:90.272448px;}
._64{width:98.441400px;}
._39{width:99.695400px;}
._30{width:105.046800px;}
._4c{width:106.243200px;}
._48{width:108.931200px;}
._42{width:111.131146px;}
._1c{width:112.722600px;}
._47{width:115.984454px;}
._35{width:118.393800px;}
._25{width:120.808800px;}
._40{width:122.020200px;}
._4f{width:124.051200px;}
._4b{width:125.484000px;}
._45{width:126.485400px;}
._28{width:132.393254px;}
._46{width:134.707200px;}
._5b{width:139.123200px;}
._4d{width:142.226400px;}
._27{width:144.808800px;}
._50{width:146.275200px;}
._20{width:148.168800px;}
._4a{width:149.905800px;}
._5d{width:152.784600px;}
._1e{width:154.648800px;}
._d{width:164.461152px;}
._38{width:165.811200px;}
._3c{width:168.914400px;}
._3e{width:170.179200px;}
._33{width:174.001800px;}
._34{width:183.385800px;}
._3f{width:185.571600px;}
._49{width:189.007800px;}
._13{width:190.868700px;}
._54{width:201.379200px;}
._1d{width:203.320800px;}
._43{width:206.881800px;}
._23{width:214.072800px;}
._14{width:216.879300px;}
._12{width:228.786600px;}
._56{width:229.955673px;}
._3a{width:233.091000px;}
._3b{width:241.961400px;}
._58{width:243.660000px;}
._2a{width:256.818600px;}
._1b{width:270.376800px;}
._1f{width:271.465800px;}
._52{width:284.253994px;}
._6{width:301.980600px;}
._29{width:304.888800px;}
._37{width:306.953400px;}
._2c{width:311.176800px;}
._19{width:323.634600px;}
._2b{width:326.104800px;}
._5f{width:339.302381px;}
._24{width:409.155300px;}
._5a{width:410.933400px;}
._65{width:460.197600px;}
._1a{width:479.593800px;}
._22{width:491.065800px;}
._61{width:531.120000px;}
._63{width:538.980000px;}
._62{width:582.180000px;}
._68{width:593.253600px;}
._60{width:620.340000px;}
._67{width:706.197600px;}
._66{width:715.221600px;}
._18{width:839.176800px;}
.fca{color:rgb(249,245,245);}
.fc6{color:rgb(5,3,1);}
.fc5{color:rgb(89,193,52);}
.fc4{color:transparent;}
.fc7{color:rgb(244,238,239);}
.fc2{color:rgb(35,80,169);}
.fc1{color:rgb(195,25,58);}
.fc9{color:rgb(244,244,244);}
.fc8{color:rgb(246,246,246);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:31.500000px;}
.fs6{font-size:33.600000px;}
.fs8{font-size:36.000000px;}
.fse{font-size:39.900000px;}
.fs3{font-size:42.000000px;}
.fs11{font-size:42.750000px;}
.fsd{font-size:44.100000px;}
.fsf{font-size:47.250000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fsa{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.fs10{font-size:432.000000px;}
.fs2{font-size:588.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:53.145300px;}
.y31{bottom:53.318100px;}
.y30{bottom:53.318250px;}
.y131{bottom:103.904850px;}
.yd1{bottom:125.730750px;}
.yef{bottom:126.047400px;}
.y79{bottom:126.047550px;}
.y21e{bottom:126.217050px;}
.y15f{bottom:140.612550px;}
.yd0{bottom:140.612700px;}
.y27f{bottom:140.740650px;}
.y148{bottom:140.776650px;}
.y21d{bottom:141.129300px;}
.yee{bottom:143.985150px;}
.y78{bottom:143.985300px;}
.yc{bottom:148.818900px;}
.y15e{bottom:155.494500px;}
.y27e{bottom:155.750550px;}
.ycf{bottom:155.805000px;}
.y147{bottom:155.822700px;}
.y21c{bottom:156.041700px;}
.yb{bottom:160.818900px;}
.yed{bottom:161.922900px;}
.y77{bottom:161.923050px;}
.y5e{bottom:165.318900px;}
.y15d{bottom:170.376450px;}
.yce{bottom:170.686950px;}
.y27d{bottom:170.760300px;}
.y146{bottom:170.868750px;}
.y21b{bottom:170.953950px;}
.y36{bottom:172.818900px;}
.yec{bottom:179.860650px;}
.y76{bottom:179.860800px;}
.y5d{bottom:181.818900px;}
.ya{bottom:181.922850px;}
.y35{bottom:184.818900px;}
.y15c{bottom:185.258250px;}
.y27c{bottom:185.770200px;}
.y21a{bottom:185.866200px;}
.y145{bottom:185.914650px;}
.y1e0{bottom:186.321900px;}
.y9{bottom:193.922850px;}
.ycd{bottom:194.383200px;}
.y34{bottom:196.818900px;}
.yeb{bottom:197.798400px;}
.y75{bottom:197.798550px;}
.y5c{bottom:198.318900px;}
.y15b{bottom:200.140200px;}
.y219{bottom:200.778600px;}
.y27b{bottom:200.780100px;}
.y8{bottom:205.922850px;}
.y33{bottom:208.818900px;}
.y144{bottom:211.590600px;}
.ycc{bottom:212.320950px;}
.y5b{bottom:214.818900px;}
.y218{bottom:215.690850px;}
.y1de{bottom:215.736150px;}
.y74{bottom:215.736300px;}
.y27a{bottom:215.789850px;}
.y1df{bottom:217.149150px;}
.y7{bottom:217.922850px;}
.y32{bottom:220.818900px;}
.y143{bottom:226.636650px;}
.ycb{bottom:230.569200px;}
.y217{bottom:230.603100px;}
.y279{bottom:230.799750px;}
.y5a{bottom:231.318900px;}
.y15a{bottom:232.011000px;}
.y73{bottom:233.674050px;}
.y6{bottom:234.174750px;}
.y20a{bottom:238.502700px;}
.y1d3{bottom:239.994750px;}
.y1af{bottom:241.810650px;}
.y1dd{bottom:242.362200px;}
.y216{bottom:245.515350px;}
.y278{bottom:245.809650px;}
.y5{bottom:246.774750px;}
.y59{bottom:247.818900px;}
.yca{bottom:248.506950px;}
.y159{bottom:249.948750px;}
.y209{bottom:251.258700px;}
.ydb{bottom:251.611650px;}
.y72{bottom:251.611800px;}
.y142{bottom:252.312600px;}
.y1d2{bottom:252.750600px;}
.y1e6{bottom:254.447700px;}
.y1dc{bottom:255.118200px;}
.y1ae{bottom:256.692600px;}
.y125{bottom:259.677150px;}
.y215{bottom:260.427750px;}
.y277{bottom:260.819400px;}
.y208{bottom:264.014550px;}
.y58{bottom:264.318900px;}
.y1d1{bottom:265.506600px;}
.yc9{bottom:266.444700px;}
.y1e5{bottom:267.203550px;}
.y141{bottom:267.358500px;}
.y1db{bottom:267.874050px;}
.y4{bottom:267.878700px;}
.y71{bottom:269.549550px;}
.y1ad{bottom:271.574400px;}
.y124{bottom:274.017300px;}
.y214{bottom:275.340000px;}
.y276{bottom:275.829300px;}
.y207{bottom:276.770550px;}
.y1d0{bottom:278.262450px;}
.y1e4{bottom:279.959400px;}
.y3{bottom:280.478700px;}
.y1da{bottom:280.629900px;}
.y57{bottom:280.818900px;}
.yc8{bottom:284.382450px;}
.y1ac{bottom:286.456350px;}
.y70{bottom:287.487300px;}
.y123{bottom:287.627100px;}
.y206{bottom:289.526400px;}
.y213{bottom:290.252250px;}
.y275{bottom:290.839200px;}
.y1cf{bottom:291.018450px;}
.y1e3{bottom:292.715400px;}
.y140{bottom:293.034450px;}
.y1d9{bottom:293.385900px;}
.y56{bottom:297.318900px;}
.y122{bottom:301.236900px;}
.y1ab{bottom:301.338300px;}
.y205{bottom:302.282250px;}
.yc7{bottom:302.630700px;}
.y1ce{bottom:303.774300px;}
.y158{bottom:304.593450px;}
.y212{bottom:305.164650px;}
.y6f{bottom:305.425050px;}
.y1e2{bottom:305.471250px;}
.y274{bottom:305.849100px;}
.y1d8{bottom:306.141750px;}
.y13f{bottom:308.080500px;}
.y55{bottom:313.818900px;}
.y121{bottom:315.577050px;}
.y1aa{bottom:316.220100px;}
.y1d7{bottom:318.897600px;}
.y211{bottom:320.076900px;}
.y273{bottom:320.858850px;}
.y157{bottom:322.531200px;}
.y13e{bottom:323.126400px;}
.y6e{bottom:323.362800px;}
.y120{bottom:329.186850px;}
.y54{bottom:330.318900px;}
.y1a9{bottom:331.102050px;}
.y210{bottom:334.989000px;}
.y272{bottom:335.868750px;}
.y13d{bottom:338.172450px;}
.y156{bottom:340.468950px;}
.y6d{bottom:341.300550px;}
.yc6{bottom:342.269850px;}
.y11f{bottom:342.796650px;}
.y53{bottom:346.818900px;}
.y20f{bottom:349.901400px;}
.y271{bottom:350.878650px;}
.y13c{bottom:353.218500px;}
.y11e{bottom:356.406450px;}
.yc5{bottom:357.151800px;}
.y1a8{bottom:357.889500px;}
.y155{bottom:358.406700px;}
.y6c{bottom:359.238300px;}
.y52{bottom:363.318900px;}
.y20e{bottom:364.813650px;}
.y270{bottom:365.888550px;}
.y11b{bottom:370.746600px;}
.y11d{bottom:370.806450px;}
.yc4{bottom:372.033750px;}
.y1a7{bottom:372.771300px;}
.y154{bottom:376.344450px;}
.y6b{bottom:377.176050px;}
.y13b{bottom:378.894450px;}
.y20d{bottom:379.725900px;}
.y51{bottom:379.818900px;}
.y26f{bottom:380.898450px;}
.y11a{bottom:385.146600px;}
.y11c{bottom:385.206450px;}
.yc3{bottom:387.226050px;}
.y1a6{bottom:387.653250px;}
.y13a{bottom:393.940350px;}
.y153{bottom:394.282200px;}
.y20c{bottom:394.638300px;}
.yda{bottom:395.090250px;}
.y6a{bottom:395.113800px;}
.y26e{bottom:395.908200px;}
.y50{bottom:396.318900px;}
.y119{bottom:398.756400px;}
.yc2{bottom:402.108000px;}
.y1a5{bottom:402.535050px;}
.yd9{bottom:409.972200px;}
.y26d{bottom:410.918100px;}
.y152{bottom:412.219950px;}
.y4f{bottom:412.818900px;}
.y69{bottom:413.051550px;}
.y116{bottom:413.096550px;}
.y118{bottom:413.156400px;}
.yc1{bottom:417.300300px;}
.y1a4{bottom:417.417000px;}
.y2f{bottom:419.940150px;}
.y20b{bottom:422.306400px;}
.yd8{bottom:424.854150px;}
.y26c{bottom:425.928000px;}
.y115{bottom:427.496550px;}
.y117{bottom:427.556400px;}
.y4e{bottom:429.318900px;}
.y151{bottom:430.157700px;}
.y68{bottom:430.989300px;}
.yc0{bottom:432.182250px;}
.y1a3{bottom:432.298800px;}
.y139{bottom:432.372150px;}
.y2e{bottom:436.192050px;}
.yd7{bottom:439.735950px;}
.y26b{bottom:440.937750px;}
.y113{bottom:441.106350px;}
.y4d{bottom:445.818900px;}
.y1a2{bottom:447.180750px;}
.ybf{bottom:447.374700px;}
.y150{bottom:448.095450px;}
.y2d{bottom:448.192050px;}
.y67{bottom:448.927050px;}
.yd6{bottom:454.617900px;}
.y112{bottom:455.506350px;}
.y114{bottom:455.566200px;}
.y26a{bottom:455.947650px;}
.y1a1{bottom:462.062550px;}
.y4c{bottom:462.318900px;}
.ybe{bottom:465.622800px;}
.y14f{bottom:466.033200px;}
.y138{bottom:466.044150px;}
.y66{bottom:466.864800px;}
.y10f{bottom:469.116150px;}
.yd5{bottom:469.499700px;}
.y269{bottom:470.957550px;}
.y1a0{bottom:476.944500px;}
.y2c{bottom:477.199950px;}
.y10e{bottom:483.516150px;}
.y14e{bottom:483.970950px;}
.yd4{bottom:484.381650px;}
.y65{bottom:484.802550px;}
.y268{bottom:485.967300px;}
.y19f{bottom:491.826450px;}
.y2b{bottom:493.452000px;}
.y4b{bottom:496.449900px;}
.y10d{bottom:497.916150px;}
.yd3{bottom:499.263450px;}
.y267{bottom:500.977200px;}
.ybd{bottom:501.808800px;}
.y14d{bottom:501.908700px;}
.y137{bottom:502.083750px;}
.y64{bottom:502.740300px;}
.y19e{bottom:506.708250px;}
.y4a{bottom:507.699900px;}
.y10c{bottom:512.316150px;}
.y111{bottom:512.376000px;}
.yd2{bottom:514.145400px;}
.y266{bottom:515.987100px;}
.y49{bottom:518.949900px;}
.ybc{bottom:519.746550px;}
.y14c{bottom:519.846450px;}
.y136{bottom:520.185600px;}
.y63{bottom:520.678050px;}
.y19d{bottom:521.590200px;}
.y2a{bottom:522.459750px;}
.y10b{bottom:526.716150px;}
.y110{bottom:526.776000px;}
.y265{bottom:530.997000px;}
.ybb{bottom:537.684300px;}
.y14b{bottom:537.784200px;}
.y135{bottom:538.287450px;}
.y7a{bottom:538.615650px;}
.y62{bottom:538.615800px;}
.y29{bottom:538.711800px;}
.y109{bottom:540.325950px;}
.y264{bottom:546.006750px;}
.y19c{bottom:548.377650px;}
.yea{bottom:554.240250px;}
.y108{bottom:554.725950px;}
.y10a{bottom:554.785800px;}
.y28{bottom:554.963700px;}
.yba{bottom:555.622050px;}
.y48{bottom:555.711600px;}
.y14a{bottom:555.721950px;}
.y134{bottom:556.389300px;}
.y1c7{bottom:556.553550px;}
.y263{bottom:561.016650px;}
.y19b{bottom:563.259450px;}
.ye9{bottom:566.996250px;}
.y107{bottom:568.335750px;}
.y27{bottom:571.215750px;}
.yb9{bottom:573.559800px;}
.y149{bottom:573.659700px;}
.y61{bottom:574.491300px;}
.y262{bottom:576.026550px;}
.y19a{bottom:578.141400px;}
.ye8{bottom:579.752100px;}
.y104{bottom:581.945550px;}
.y106{bottom:582.005400px;}
.y26{bottom:587.467650px;}
.y261{bottom:591.036450px;}
.yb8{bottom:591.497550px;}
.y133{bottom:592.428900px;}
.y1c6{bottom:592.429050px;}
.ye7{bottom:592.507950px;}
.y103{bottom:596.345550px;}
.y105{bottom:596.405400px;}
.y199{bottom:604.928850px;}
.y260{bottom:606.046200px;}
.y44{bottom:606.682200px;}
.yb7{bottom:609.435300px;}
.y102{bottom:609.955350px;}
.y1c5{bottom:610.366800px;}
.y1fd{bottom:610.881600px;}
.y198{bottom:619.810650px;}
.y25f{bottom:621.056100px;}
.y101{bottom:623.565150px;}
.y1fc{bottom:625.763400px;}
.y1c4{bottom:628.304550px;}
.ydc{bottom:635.732700px;}
.y25e{bottom:636.066000px;}
.y100{bottom:637.175100px;}
.y43{bottom:644.193900px;}
.y180{bottom:645.441150px;}
.yb6{bottom:645.621300px;}
.y1ff{bottom:646.242300px;}
.y197{bottom:646.598100px;}
.yff{bottom:650.784900px;}
.y25d{bottom:651.075750px;}
.y1fb{bottom:652.550850px;}
.ydd{bottom:656.537700px;}
.y17f{bottom:658.991100px;}
.y42{bottom:660.693900px;}
.y196{bottom:661.479900px;}
.y1c9{bottom:663.278850px;}
.ye5{bottom:663.908700px;}
.y1c3{bottom:664.180050px;}
.yfc{bottom:664.394700px;}
.y25c{bottom:666.085650px;}
.y1fa{bottom:667.432650px;}
.ye6{bottom:668.537700px;}
.y17e{bottom:673.391100px;}
.y195{bottom:676.361850px;}
.y41{bottom:677.193900px;}
.yfb{bottom:678.794700px;}
.y25b{bottom:681.095550px;}
.y1c2{bottom:682.117800px;}
.y1f9{bottom:682.314600px;}
.y1d6{bottom:682.539000px;}
.y17d{bottom:686.941050px;}
.yfa{bottom:693.194700px;}
.yfe{bottom:693.254550px;}
.y40{bottom:693.693900px;}
.y25a{bottom:696.105450px;}
.yb5{bottom:699.745050px;}
.y1c1{bottom:700.055550px;}
.y17c{bottom:701.341050px;}
.y194{bottom:703.149300px;}
.yf9{bottom:707.594700px;}
.yfd{bottom:707.654550px;}
.y1f8{bottom:709.102050px;}
.y259{bottom:711.115200px;}
.y17b{bottom:714.891000px;}
.yb4{bottom:717.682800px;}
.y1c0{bottom:717.993300px;}
.yf7{bottom:721.204500px;}
.y1cb{bottom:721.733850px;}
.y1f7{bottom:723.983850px;}
.y25{bottom:725.334600px;}
.y3f{bottom:725.583750px;}
.y258{bottom:726.125100px;}
.y17a{bottom:728.440950px;}
.y193{bottom:729.936750px;}
.y202{bottom:731.139000px;}
.yf6{bottom:735.604500px;}
.yb3{bottom:735.620550px;}
.y9b{bottom:735.747600px;}
.y82{bottom:735.747750px;}
.y1bf{bottom:735.931050px;}
.y1f6{bottom:738.865800px;}
.y24{bottom:740.334600px;}
.y257{bottom:741.135000px;}
.y1ca{bottom:741.683850px;}
.y179{bottom:741.990900px;}
.y3e{bottom:742.083750px;}
.y81{bottom:747.747750px;}
.yf5{bottom:750.004500px;}
.y9a{bottom:752.247600px;}
.yb2{bottom:753.558300px;}
.y1be{bottom:753.868800px;}
.y178{bottom:755.540700px;}
.y256{bottom:756.144900px;}
.y192{bottom:756.724050px;}
.y3d{bottom:758.583750px;}
.y80{bottom:759.747750px;}
.yf4{bottom:764.404500px;}
.y1f5{bottom:765.653250px;}
.y99{bottom:768.747600px;}
.y255{bottom:771.154650px;}
.yb1{bottom:771.496050px;}
.y191{bottom:771.605850px;}
.y7f{bottom:771.747750px;}
.y1bd{bottom:771.806550px;}
.y177{bottom:772.279650px;}
.y23{bottom:772.342500px;}
.y3c{bottom:775.083750px;}
.yf3{bottom:778.744650px;}
.yf8{bottom:778.804500px;}
.y1f4{bottom:780.535050px;}
.y7e{bottom:783.747750px;}
.y22{bottom:784.942350px;}
.y98{bottom:785.247600px;}
.y254{bottom:786.164550px;}
.yb0{bottom:789.433800px;}
.y1bc{bottom:789.744300px;}
.y204{bottom:791.619000px;}
.y3b{bottom:792.091500px;}
.y176{bottom:792.483600px;}
.y1f3{bottom:795.417000px;}
.yde{bottom:795.449700px;}
.y7d{bottom:795.747750px;}
.y21{bottom:797.542350px;}
.y190{bottom:798.393300px;}
.yf2{bottom:798.732300px;}
.y253{bottom:801.174450px;}
.y97{bottom:801.747600px;}
.y175{bottom:806.883600px;}
.yaf{bottom:807.371550px;}
.y1bb{bottom:807.682050px;}
.y7c{bottom:807.747750px;}
.y20{bottom:810.142500px;}
.y1f2{bottom:810.298800px;}
.y18f{bottom:813.275250px;}
.y252{bottom:816.184350px;}
.y96{bottom:818.247600px;}
.y7b{bottom:819.747750px;}
.y174{bottom:820.433400px;}
.y1f{bottom:822.742350px;}
.y1f1{bottom:825.180750px;}
.yae{bottom:825.309300px;}
.y1ba{bottom:825.619800px;}
.y18e{bottom:828.157050px;}
.y251{bottom:831.194100px;}
.y173{bottom:833.983500px;}
.y95{bottom:834.747600px;}
.y1e{bottom:835.342500px;}
.y1f0{bottom:840.062550px;}
.y3a{bottom:840.481350px;}
.yf1{bottom:842.131650px;}
.yad{bottom:843.247050px;}
.y1b9{bottom:843.557550px;}
.y250{bottom:846.204000px;}
.y172{bottom:847.533300px;}
.y1d{bottom:847.942350px;}
.y94{bottom:851.247600px;}
.yf0{bottom:854.887500px;}
.y18d{bottom:854.944500px;}
.y39{bottom:856.981350px;}
.y23a{bottom:857.985750px;}
.y23c{bottom:858.045750px;}
.y1c{bottom:860.542350px;}
.y171{bottom:861.083250px;}
.yac{bottom:861.184800px;}
.y24f{bottom:861.213900px;}
.y1b8{bottom:861.495300px;}
.ydf{bottom:865.313700px;}
.y93{bottom:867.747600px;}
.y1ef{bottom:869.826450px;}
.y239{bottom:872.385750px;}
.y23b{bottom:872.445600px;}
.y1b{bottom:873.142500px;}
.y38{bottom:873.481350px;}
.y170{bottom:874.633200px;}
.y24e{bottom:876.223800px;}
.yab{bottom:879.122550px;}
.y1b7{bottom:879.433050px;}
.y18c{bottom:881.731950px;}
.y92{bottom:884.247600px;}
.y1ee{bottom:884.708250px;}
.y1a{bottom:885.742350px;}
.y237{bottom:885.995550px;}
.y16f{bottom:888.183150px;}
.y37{bottom:889.981350px;}
.y24d{bottom:891.233550px;}
.y18b{bottom:896.613900px;}
.yaa{bottom:897.060300px;}
.y1b6{bottom:897.370800px;}
.y19{bottom:898.342500px;}
.y1ed{bottom:899.590200px;}
.y236{bottom:900.395550px;}
.y238{bottom:900.455400px;}
.y91{bottom:900.747600px;}
.y16e{bottom:901.733100px;}
.y132{bottom:903.543300px;}
.y24c{bottom:906.243450px;}
.y18{bottom:910.942350px;}
.y234{bottom:914.005350px;}
.y1ec{bottom:914.472150px;}
.ya9{bottom:914.998050px;}
.y16d{bottom:915.283050px;}
.y1b5{bottom:915.308550px;}
.y90{bottom:917.247600px;}
.y24b{bottom:921.253200px;}
.ye3{bottom:922.028850px;}
.y18a{bottom:923.401200px;}
.y17{bottom:923.542350px;}
.ye4{bottom:926.509350px;}
.y233{bottom:928.405350px;}
.y235{bottom:928.465200px;}
.y16c{bottom:928.833000px;}
.y1eb{bottom:929.353950px;}
.ye0{bottom:930.929700px;}
.ya8{bottom:932.935800px;}
.y1b4{bottom:933.246300px;}
.y8f{bottom:933.747600px;}
.y130{bottom:934.984500px;}
.y16{bottom:936.142500px;}
.y24a{bottom:936.263100px;}
.y231{bottom:942.015150px;}
.y16b{bottom:942.382800px;}
.y12e{bottom:944.132100px;}
.y1ea{bottom:944.235900px;}
.y15{bottom:948.742350px;}
.y189{bottom:950.188650px;}
.y8e{bottom:950.247750px;}
.ya7{bottom:950.873550px;}
.y1fe{bottom:951.184050px;}
.y249{bottom:951.273000px;}
.y16a{bottom:955.932900px;}
.y230{bottom:956.415150px;}
.y232{bottom:956.475000px;}
.y1e9{bottom:959.117850px;}
.y12f{bottom:960.797100px;}
.y14{bottom:961.342500px;}
.y248{bottom:966.282900px;}
.y8d{bottom:966.747750px;}
.ya6{bottom:968.811300px;}
.y1b3{bottom:969.121800px;}
.y169{bottom:969.482700px;}
.y22d{bottom:970.024950px;}
.y22f{bottom:970.084950px;}
.y128{bottom:971.516100px;}
.y13{bottom:973.942350px;}
.y1e8{bottom:973.999650px;}
.ye1{bottom:975.173700px;}
.y12c{bottom:976.220100px;}
.y188{bottom:976.976100px;}
.y247{bottom:981.292650px;}
.y287{bottom:982.572450px;}
.y168{bottom:983.032650px;}
.y8c{bottom:983.247750px;}
.y22c{bottom:984.424950px;}
.y22e{bottom:984.484800px;}
.ya5{bottom:986.749050px;}
.y1b2{bottom:987.059550px;}
.y1e7{bottom:988.881450px;}
.y47{bottom:989.007900px;}
.y12d{bottom:989.888100px;}
.y246{bottom:996.302550px;}
.y167{bottom:996.582600px;}
.ye2{bottom:997.409700px;}
.y286{bottom:997.454250px;}
.y229{bottom:998.034900px;}
.y22b{bottom:998.094750px;}
.y8b{bottom:999.747750px;}
.y12{bottom:1003.550100px;}
.y187{bottom:1003.763400px;}
.ya4{bottom:1004.686800px;}
.y1b1{bottom:1004.997300px;}
.y166{bottom:1010.132550px;}
.y245{bottom:1011.312450px;}
.y285{bottom:1012.336200px;}
.y228{bottom:1012.434750px;}
.y22a{bottom:1012.494750px;}
.y8a{bottom:1016.247750px;}
.y186{bottom:1018.645350px;}
.y46{bottom:1019.007900px;}
.ya3{bottom:1022.624550px;}
.y1b0{bottom:1022.935050px;}
.y165{bottom:1024.532550px;}
.y225{bottom:1026.044700px;}
.y227{bottom:1026.104550px;}
.y244{bottom:1026.322200px;}
.y89{bottom:1032.747750px;}
.y11{bottom:1033.158000px;}
.y185{bottom:1033.527150px;}
.y1{bottom:1035.971700px;}
.y164{bottom:1038.932550px;}
.y224{bottom:1040.444700px;}
.y226{bottom:1040.504550px;}
.ya2{bottom:1040.872800px;}
.y243{bottom:1041.332100px;}
.y1cd{bottom:1047.593850px;}
.y45{bottom:1049.007900px;}
.y88{bottom:1049.247750px;}
.y222{bottom:1054.054500px;}
.y163{bottom:1055.671500px;}
.y242{bottom:1056.342000px;}
.y284{bottom:1056.981750px;}
.ya1{bottom:1058.810550px;}
.y184{bottom:1060.314600px;}
.y10{bottom:1062.765900px;}
.y87{bottom:1065.747750px;}
.y221{bottom:1068.454500px;}
.y223{bottom:1068.514350px;}
.y241{bottom:1071.351900px;}
.y283{bottom:1071.863700px;}
.y1d5{bottom:1072.419000px;}
.y183{bottom:1075.196550px;}
.y162{bottom:1075.875300px;}
.ya0{bottom:1076.748300px;}
.y200{bottom:1079.979000px;}
.y86{bottom:1082.247750px;}
.y12a{bottom:1085.084100px;}
.y240{bottom:1086.361650px;}
.y2{bottom:1086.378000px;}
.y282{bottom:1086.745650px;}
.y220{bottom:1088.442150px;}
.y182{bottom:1090.078350px;}
.yf{bottom:1092.373800px;}
.y9f{bottom:1094.685900px;}
.y1d4{bottom:1097.259000px;}
.y85{bottom:1098.747750px;}
.y23f{bottom:1101.371550px;}
.y281{bottom:1101.627450px;}
.y201{bottom:1103.739000px;}
.y203{bottom:1109.139000px;}
.y127{bottom:1110.271950px;}
.y9e{bottom:1112.623800px;}
.y84{bottom:1115.247750px;}
.y23e{bottom:1116.381450px;}
.y280{bottom:1116.509400px;}
.y181{bottom:1116.865800px;}
.y1e1{bottom:1119.219150px;}
.y161{bottom:1119.274500px;}
.ye{bottom:1121.981700px;}
.y126{bottom:1122.799950px;}
.y129{bottom:1123.124100px;}
.y1c8{bottom:1123.328850px;}
.y1cc{bottom:1123.343850px;}
.y12b{bottom:1123.640100px;}
.y9d{bottom:1130.561550px;}
.y23d{bottom:1131.391350px;}
.y83{bottom:1131.747750px;}
.y21f{bottom:1131.841350px;}
.y160{bottom:1132.030500px;}
.yd{bottom:1134.581700px;}
.y60{bottom:1202.244000px;}
.y9c{bottom:1202.244150px;}
.h15{height:26.316000px;}
.ha{height:28.296000px;}
.h18{height:30.702000px;}
.h5{height:30.828000px;}
.h4{height:33.012000px;}
.h1b{height:34.272000px;}
.h19{height:35.088000px;}
.h20{height:35.952750px;}
.h7{height:37.529297px;}
.h8{height:37.728000px;}
.h1c{height:37.967400px;}
.h1d{height:37.968000px;}
.h6{height:38.136000px;}
.h12{height:38.976000px;}
.he{height:40.086000px;}
.h14{height:40.757714px;}
.hc{height:43.848000px;}
.hd{height:43.860000px;}
.h17{height:45.048000px;}
.h11{height:46.284000px;}
.hb{height:46.872000px;}
.h1f{height:47.937000px;}
.h9{height:48.720000px;}
.h10{height:49.476000px;}
.h21{height:50.484000px;}
.h13{height:51.156000px;}
.h16{height:52.983000px;}
.h23{height:54.684000px;}
.hf{height:70.176000px;}
.h2{height:74.868000px;}
.h22{height:91.860000px;}
.h1e{height:207.094500px;}
.h1a{height:302.400000px;}
.h3{height:431.592000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:531.027000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:42.519750px;}
.x3{left:74.409450px;}
.x34{left:75.419250px;}
.x55{left:81.647700px;}
.x1e{left:83.475900px;}
.x4c{left:85.342650px;}
.x1f{left:87.217650px;}
.x5e{left:89.816700px;}
.x69{left:91.417350px;}
.x5b{left:92.757000px;}
.x47{left:94.283100px;}
.x4{left:95.669250px;}
.x5d{left:99.237000px;}
.x60{left:101.189400px;}
.x49{left:102.756600px;}
.x4a{left:107.356950px;}
.x5{left:108.425100px;}
.x43{left:111.708600px;}
.x7{left:116.929200px;}
.x56{left:118.472700px;}
.x26{left:123.198600px;}
.x1b{left:129.685050px;}
.x46{left:133.655400px;}
.x45{left:135.190800px;}
.x44{left:138.025500px;}
.x76{left:140.002500px;}
.x4d{left:147.079650px;}
.x4b{left:148.362750px;}
.xe{left:150.022800px;}
.x61{left:153.460500px;}
.x75{left:157.240050px;}
.x51{left:164.125950px;}
.x48{left:165.462600px;}
.xc{left:167.262450px;}
.x8{left:170.299650px;}
.x24{left:171.919350px;}
.x23{left:174.471150px;}
.xa{left:176.171850px;}
.x41{left:180.943500px;}
.x9{left:182.557500px;}
.x3a{left:189.580650px;}
.xd{left:191.264400px;}
.x25{left:193.613850px;}
.x5f{left:199.316550px;}
.xb{left:207.181200px;}
.x3d{left:228.844650px;}
.x3f{left:255.652650px;}
.x65{left:261.283500px;}
.x59{left:270.737700px;}
.x66{left:274.039350px;}
.x1d{left:275.314950px;}
.x27{left:282.159600px;}
.x53{left:284.190900px;}
.x52{left:287.143800px;}
.x36{left:330.537450px;}
.x3e{left:336.088650px;}
.x3b{left:338.632650px;}
.x40{left:358.195650px;}
.x1a{left:360.961650px;}
.x10{left:370.999950px;}
.x1c{left:377.693100px;}
.x38{left:380.277150px;}
.x37{left:390.945150px;}
.x62{left:411.356550px;}
.x39{left:418.264650px;}
.x15{left:425.581350px;}
.x4f{left:437.261850px;}
.x5c{left:448.077000px;}
.x57{left:449.567700px;}
.x20{left:457.196700px;}
.x67{left:460.062900px;}
.x35{left:461.497950px;}
.x77{left:463.914450px;}
.x6c{left:466.610400px;}
.x6a{left:468.379650px;}
.x22{left:469.842600px;}
.x7f{left:471.018600px;}
.x64{left:474.094350px;}
.x33{left:482.806050px;}
.x74{left:486.809850px;}
.x4e{left:489.180750px;}
.x7e{left:493.913700px;}
.x50{left:507.007200px;}
.x6b{left:511.638600px;}
.x42{left:514.801500px;}
.x80{left:517.948650px;}
.x6d{left:520.494450px;}
.x79{left:521.941950px;}
.x78{left:523.077450px;}
.x7a{left:527.759850px;}
.x2e{left:529.348200px;}
.x11{left:530.574000px;}
.x28{left:533.622000px;}
.x81{left:543.748200px;}
.x7b{left:553.862700px;}
.x29{left:563.385900px;}
.x3c{left:580.996650px;}
.x6e{left:583.948500px;}
.x82{left:596.433150px;}
.x30{left:602.190750px;}
.x16{left:607.342350px;}
.x31{left:613.766700px;}
.x58{left:616.622700px;}
.x6f{left:621.511650px;}
.x2f{left:634.492200px;}
.x83{left:639.764550px;}
.x85{left:643.330800px;}
.x17{left:646.994100px;}
.x19{left:657.831000px;}
.x32{left:663.262200px;}
.x84{left:667.042050px;}
.x18{left:668.535750px;}
.x14{left:674.910900px;}
.x1{left:680.090250px;}
.x63{left:685.316550px;}
.x2c{left:688.000200px;}
.x2b{left:697.756200px;}
.x12{left:699.204000px;}
.x68{left:704.976450px;}
.x70{left:706.249200px;}
.x13{left:707.730000px;}
.x5a{left:717.902700px;}
.x54{left:722.994150px;}
.xf{left:727.410300px;}
.x71{left:735.108600px;}
.x2d{left:737.596200px;}
.x72{left:769.475250px;}
.x7c{left:771.161250px;}
.x2a{left:772.306200px;}
.x6{left:786.802350px;}
.x73{left:798.345300px;}
.x7d{left:803.237400px;}
.x21{left:813.451050px;}
@media print{
.v9{vertical-align:-53.760000pt;}
.v7{vertical-align:-23.040000pt;}
.v8{vertical-align:-15.360000pt;}
.va{vertical-align:-11.520000pt;}
.v5{vertical-align:-0.938667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.533333pt;}
.v4{vertical-align:10.133333pt;}
.v3{vertical-align:11.200000pt;}
.v1{vertical-align:16.000000pt;}
.v6{vertical-align:42.666667pt;}
.ls2{letter-spacing:-30.314667pt;}
.ls4{letter-spacing:-5.712000pt;}
.ls63{letter-spacing:-4.205333pt;}
.ls1{letter-spacing:-3.536000pt;}
.ls40{letter-spacing:-3.114667pt;}
.ls49{letter-spacing:-1.976000pt;}
.ls99{letter-spacing:-1.621333pt;}
.ls32{letter-spacing:-1.288000pt;}
.ls98{letter-spacing:-1.165333pt;}
.ls25{letter-spacing:-1.120000pt;}
.ls97{letter-spacing:-1.114667pt;}
.ls30{letter-spacing:-1.064000pt;}
.ls48{letter-spacing:-1.013333pt;}
.ls7b{letter-spacing:-1.008000pt;}
.ls8e{letter-spacing:-0.962667pt;}
.ls78{letter-spacing:-0.952000pt;}
.ls67{letter-spacing:-0.912000pt;}
.ls33{letter-spacing:-0.896000pt;}
.ls8f{letter-spacing:-0.861333pt;}
.ls4b{letter-spacing:-0.853333pt;}
.ls34{letter-spacing:-0.840000pt;}
.ls90{letter-spacing:-0.810667pt;}
.ls8{letter-spacing:-0.784000pt;}
.ls65{letter-spacing:-0.760000pt;}
.ls66{letter-spacing:-0.709333pt;}
.ls9{letter-spacing:-0.672000pt;}
.ls74{letter-spacing:-0.658667pt;}
.ls31{letter-spacing:-0.616000pt;}
.ls73{letter-spacing:-0.608000pt;}
.ls79{letter-spacing:-0.560000pt;}
.ls3a{letter-spacing:-0.557333pt;}
.ls35{letter-spacing:-0.506667pt;}
.ls7a{letter-spacing:-0.504000pt;}
.ls4a{letter-spacing:-0.456000pt;}
.ls27{letter-spacing:-0.448000pt;}
.ls62{letter-spacing:-0.405333pt;}
.ls2b{letter-spacing:-0.392000pt;}
.ls96{letter-spacing:-0.390133pt;}
.ls3c{letter-spacing:-0.373333pt;}
.ls36{letter-spacing:-0.354667pt;}
.ls2a{letter-spacing:-0.336000pt;}
.ls91{letter-spacing:-0.319200pt;}
.ls39{letter-spacing:-0.304000pt;}
.ls26{letter-spacing:-0.280000pt;}
.ls38{letter-spacing:-0.253333pt;}
.ls29{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.202667pt;}
.ls3b{letter-spacing:-0.186667pt;}
.ls28{letter-spacing:-0.168000pt;}
.lsb{letter-spacing:-0.152000pt;}
.ls37{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls24{letter-spacing:-0.056000pt;}
.lsc{letter-spacing:-0.050667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000533pt;}
.ls82{letter-spacing:0.008276pt;}
.ls95{letter-spacing:0.020035pt;}
.ls5e{letter-spacing:0.028000pt;}
.ls7e{letter-spacing:0.035533pt;}
.ls7f{letter-spacing:0.038000pt;}
.ls54{letter-spacing:0.049400pt;}
.ls55{letter-spacing:0.050667pt;}
.ls53{letter-spacing:0.050978pt;}
.ls60{letter-spacing:0.056000pt;}
.ls20{letter-spacing:0.074276pt;}
.ls71{letter-spacing:0.084000pt;}
.ls7d{letter-spacing:0.099675pt;}
.ls1f{letter-spacing:0.101333pt;}
.ls68{letter-spacing:0.112000pt;}
.ls9b{letter-spacing:0.117800pt;}
.ls9a{letter-spacing:0.118612pt;}
.ls1e{letter-spacing:0.126667pt;}
.ls22{letter-spacing:0.152000pt;}
.lsf{letter-spacing:0.168000pt;}
.ls87{letter-spacing:0.193330pt;}
.ls86{letter-spacing:0.193550pt;}
.ls88{letter-spacing:0.193800pt;}
.ls23{letter-spacing:0.202667pt;}
.ls5f{letter-spacing:0.224000pt;}
.ls76{letter-spacing:0.240419pt;}
.ls21{letter-spacing:0.253333pt;}
.ls8c{letter-spacing:0.266000pt;}
.ls8b{letter-spacing:0.266674pt;}
.ls5c{letter-spacing:0.280000pt;}
.ls44{letter-spacing:0.304000pt;}
.ls1d{letter-spacing:0.308000pt;}
.ls43{letter-spacing:0.318310pt;}
.ls61{letter-spacing:0.336000pt;}
.ls8a{letter-spacing:0.362667pt;}
.ls75{letter-spacing:0.369543pt;}
.ls7c{letter-spacing:0.380000pt;}
.ls18{letter-spacing:0.392000pt;}
.ls42{letter-spacing:0.405333pt;}
.ls41{letter-spacing:0.414200pt;}
.ls85{letter-spacing:0.425600pt;}
.ls84{letter-spacing:0.426650pt;}
.ls2c{letter-spacing:0.448000pt;}
.ls89{letter-spacing:0.451457pt;}
.ls4d{letter-spacing:0.456000pt;}
.ls9c{letter-spacing:0.474667pt;}
.ls93{letter-spacing:0.481333pt;}
.ls2f{letter-spacing:0.504000pt;}
.ls50{letter-spacing:0.506667pt;}
.ls10{letter-spacing:0.532000pt;}
.ls64{letter-spacing:0.557333pt;}
.ls19{letter-spacing:0.560000pt;}
.ls80{letter-spacing:0.570000pt;}
.ls12{letter-spacing:0.587733pt;}
.ls52{letter-spacing:0.608000pt;}
.ls81{letter-spacing:0.608664pt;}
.ls15{letter-spacing:0.616000pt;}
.ls2e{letter-spacing:0.658667pt;}
.ls5{letter-spacing:0.672000pt;}
.ls6c{letter-spacing:0.709169pt;}
.ls6e{letter-spacing:0.709262pt;}
.ls6{letter-spacing:0.709333pt;}
.ls5a{letter-spacing:0.728000pt;}
.ls92{letter-spacing:0.740267pt;}
.ls6b{letter-spacing:0.760000pt;}
.lse{letter-spacing:0.784000pt;}
.ls1c{letter-spacing:0.812000pt;}
.ls5d{letter-spacing:0.838933pt;}
.ls16{letter-spacing:0.839467pt;}
.ls11{letter-spacing:0.840000pt;}
.ls17{letter-spacing:0.840533pt;}
.ls51{letter-spacing:0.861333pt;}
.ls72{letter-spacing:0.868000pt;}
.ls57{letter-spacing:0.896000pt;}
.ls69{letter-spacing:0.914133pt;}
.ls77{letter-spacing:0.929600pt;}
.ls14{letter-spacing:0.952000pt;}
.ls7{letter-spacing:0.956267pt;}
.ls5b{letter-spacing:0.963192pt;}
.ls13{letter-spacing:1.008000pt;}
.ls2d{letter-spacing:1.064000pt;}
.ls3e{letter-spacing:1.092000pt;}
.ls58{letter-spacing:1.120000pt;}
.ls3d{letter-spacing:1.176000pt;}
.ls56{letter-spacing:1.232000pt;}
.ls1a{letter-spacing:1.288000pt;}
.ls1b{letter-spacing:1.344000pt;}
.ls47{letter-spacing:1.530667pt;}
.ls70{letter-spacing:2.183467pt;}
.ls4f{letter-spacing:2.279467pt;}
.ls8d{letter-spacing:2.632533pt;}
.ls94{letter-spacing:2.690406pt;}
.ls4c{letter-spacing:3.420305pt;}
.ls83{letter-spacing:3.566636pt;}
.ls4e{letter-spacing:3.595396pt;}
.ls6f{letter-spacing:3.678033pt;}
.ls6d{letter-spacing:3.831854pt;}
.ls59{letter-spacing:4.608476pt;}
.ls46{letter-spacing:74.845333pt;}
.ls45{letter-spacing:150.146133pt;}
.ls6a{letter-spacing:554.453333pt;}
.ls3f{letter-spacing:677.461333pt;}
.ws1{word-spacing:-107.669333pt;}
.ws12b{word-spacing:-50.666667pt;}
.ws0{word-spacing:-48.000000pt;}
.ws129{word-spacing:-38.000000pt;}
.wsd{word-spacing:-23.722667pt;}
.wsa4{word-spacing:-15.120000pt;}
.wsa5{word-spacing:-14.952000pt;}
.ws25{word-spacing:-14.840000pt;}
.ws24{word-spacing:-14.784000pt;}
.wsa7{word-spacing:-14.448000pt;}
.wsde{word-spacing:-14.392000pt;}
.wsa6{word-spacing:-14.280000pt;}
.wsc9{word-spacing:-14.112000pt;}
.ws54{word-spacing:-14.000000pt;}
.wsa8{word-spacing:-13.944000pt;}
.wsdd{word-spacing:-13.888000pt;}
.ws5a{word-spacing:-13.832000pt;}
.wsc8{word-spacing:-13.776000pt;}
.ws56{word-spacing:-13.720000pt;}
.wsef{word-spacing:-13.664000pt;}
.wsdc{word-spacing:-13.608000pt;}
.wsd8{word-spacing:-13.426667pt;}
.ws55{word-spacing:-13.384000pt;}
.ws5b{word-spacing:-13.216000pt;}
.ws85{word-spacing:-13.160000pt;}
.ws12f{word-spacing:-13.148000pt;}
.wsf{word-spacing:-13.122667pt;}
.ws86{word-spacing:-13.104000pt;}
.ws105{word-spacing:-13.072000pt;}
.wsf5{word-spacing:-13.048000pt;}
.ws9d{word-spacing:-12.920000pt;}
.ws59{word-spacing:-12.869333pt;}
.ws57{word-spacing:-12.818667pt;}
.wsa0{word-spacing:-12.717333pt;}
.ws87{word-spacing:-12.712000pt;}
.ws11{word-spacing:-12.666667pt;}
.ws12c{word-spacing:-12.616000pt;}
.ws10{word-spacing:-12.565333pt;}
.ws9f{word-spacing:-12.514667pt;}
.ws88{word-spacing:-12.464000pt;}
.ws9b{word-spacing:-12.413333pt;}
.wsd7{word-spacing:-12.362667pt;}
.ws103{word-spacing:-12.312000pt;}
.wsff{word-spacing:-12.261333pt;}
.ws109{word-spacing:-12.210667pt;}
.ws58{word-spacing:-12.160000pt;}
.ws9e{word-spacing:-12.109333pt;}
.ws104{word-spacing:-12.058667pt;}
.wsc{word-spacing:-12.000000pt;}
.ws12e{word-spacing:-11.957333pt;}
.ws108{word-spacing:-11.906667pt;}
.ws9{word-spacing:-11.861333pt;}
.ws10d{word-spacing:-11.856000pt;}
.wsdb{word-spacing:-11.805333pt;}
.wsa1{word-spacing:-11.704000pt;}
.ws12d{word-spacing:-11.552000pt;}
.wsa3{word-spacing:-11.340000pt;}
.ws82{word-spacing:-10.500000pt;}
.ws6{word-spacing:-10.378667pt;}
.wsd4{word-spacing:-10.192000pt;}
.ws102{word-spacing:-10.108000pt;}
.ws101{word-spacing:-10.070000pt;}
.wscc{word-spacing:-10.005333pt;}
.ws106{word-spacing:-9.925600pt;}
.ws83{word-spacing:-9.914200pt;}
.ws5{word-spacing:-9.856000pt;}
.ws4{word-spacing:-9.781333pt;}
.ws10a{word-spacing:-9.766000pt;}
.ws107{word-spacing:-9.693800pt;}
.ws13e{word-spacing:-9.617800pt;}
.wse{word-spacing:-9.594667pt;}
.wsa2{word-spacing:-9.549400pt;}
.ws100{word-spacing:-9.538000pt;}
.ws84{word-spacing:-9.500000pt;}
.ws10c{word-spacing:-8.866667pt;}
.ws7b{word-spacing:-8.746667pt;}
.ws10b{word-spacing:-8.547467pt;}
.ws12a{word-spacing:-8.476533pt;}
.ws9c{word-spacing:-8.461333pt;}
.wsa{word-spacing:-8.302933pt;}
.ws7{word-spacing:-7.784000pt;}
.ws13f{word-spacing:-5.674667pt;}
.ws116{word-spacing:-5.624000pt;}
.ws136{word-spacing:-4.053333pt;}
.wsaa{word-spacing:-3.952000pt;}
.ws29{word-spacing:-3.584000pt;}
.ws27{word-spacing:-3.528000pt;}
.ws2e{word-spacing:-3.472000pt;}
.ws75{word-spacing:-3.360000pt;}
.wsae{word-spacing:-3.344000pt;}
.ws93{word-spacing:-3.304000pt;}
.ws134{word-spacing:-3.293333pt;}
.ws8e{word-spacing:-3.242667pt;}
.ws17{word-spacing:-3.192000pt;}
.ws1b{word-spacing:-3.141333pt;}
.ws31{word-spacing:-3.136000pt;}
.wsfe{word-spacing:-3.090667pt;}
.wsf8{word-spacing:-3.024000pt;}
.wsce{word-spacing:-2.968000pt;}
.wse3{word-spacing:-2.912000pt;}
.ws2d{word-spacing:-2.856000pt;}
.wsfd{word-spacing:-2.837333pt;}
.wsc5{word-spacing:-2.800000pt;}
.ws13a{word-spacing:-2.786667pt;}
.ws39{word-spacing:-2.744000pt;}
.ws64{word-spacing:-2.688000pt;}
.wscd{word-spacing:-2.632000pt;}
.ws78{word-spacing:-2.613333pt;}
.ws11b{word-spacing:-2.584000pt;}
.ws126{word-spacing:-2.533333pt;}
.ws10e{word-spacing:-2.482667pt;}
.ws92{word-spacing:-2.464000pt;}
.ws138{word-spacing:-2.432000pt;}
.wsc2{word-spacing:-2.408000pt;}
.ws110{word-spacing:-2.381333pt;}
.ws34{word-spacing:-2.352000pt;}
.ws130{word-spacing:-2.330667pt;}
.ws62{word-spacing:-2.296000pt;}
.ws139{word-spacing:-2.280000pt;}
.wsb9{word-spacing:-2.229333pt;}
.ws6b{word-spacing:-2.184000pt;}
.wsb5{word-spacing:-2.178667pt;}
.wsda{word-spacing:-2.128000pt;}
.wsbf{word-spacing:-2.072000pt;}
.ws12{word-spacing:-2.064000pt;}
.ws11d{word-spacing:-2.026667pt;}
.ws5f{word-spacing:-2.016000pt;}
.ws121{word-spacing:-1.976000pt;}
.wsf6{word-spacing:-1.960000pt;}
.ws8f{word-spacing:-1.925333pt;}
.wsfa{word-spacing:-1.904000pt;}
.ws51{word-spacing:-1.874667pt;}
.wsbc{word-spacing:-1.848000pt;}
.ws132{word-spacing:-1.824000pt;}
.ws66{word-spacing:-1.792000pt;}
.ws123{word-spacing:-1.773333pt;}
.wsa9{word-spacing:-1.722667pt;}
.wsd6{word-spacing:-1.717333pt;}
.ws117{word-spacing:-1.672000pt;}
.ws69{word-spacing:-1.624000pt;}
.ws11c{word-spacing:-1.570667pt;}
.wsf9{word-spacing:-1.568000pt;}
.ws21{word-spacing:-1.520000pt;}
.ws11e{word-spacing:-1.418667pt;}
.ws81{word-spacing:-1.400000pt;}
.ws8d{word-spacing:-1.368000pt;}
.wse5{word-spacing:-1.344000pt;}
.ws18{word-spacing:-1.317333pt;}
.wsc7{word-spacing:-1.288000pt;}
.wsee{word-spacing:-1.232000pt;}
.ws125{word-spacing:-1.216000pt;}
.ws94{word-spacing:-1.176000pt;}
.ws8c{word-spacing:-1.114667pt;}
.ws50{word-spacing:-1.064000pt;}
.ws5d{word-spacing:-1.008000pt;}
.wsb1{word-spacing:-0.962667pt;}
.ws119{word-spacing:-0.912000pt;}
.ws68{word-spacing:-0.896000pt;}
.wsb4{word-spacing:-0.861333pt;}
.ws3f{word-spacing:-0.840000pt;}
.ws11a{word-spacing:-0.810667pt;}
.ws72{word-spacing:-0.784000pt;}
.ws22{word-spacing:-0.760000pt;}
.ws7e{word-spacing:-0.728000pt;}
.ws46{word-spacing:-0.709333pt;}
.ws19{word-spacing:-0.658667pt;}
.ws74{word-spacing:-0.616000pt;}
.ws4d{word-spacing:-0.608000pt;}
.ws1a{word-spacing:-0.557333pt;}
.ws99{word-spacing:-0.522667pt;}
.ws4e{word-spacing:-0.506667pt;}
.ws71{word-spacing:-0.504000pt;}
.ws98{word-spacing:-0.456000pt;}
.wsc6{word-spacing:-0.448000pt;}
.ws10f{word-spacing:-0.405333pt;}
.ws38{word-spacing:-0.392000pt;}
.wse1{word-spacing:-0.354667pt;}
.ws30{word-spacing:-0.336000pt;}
.ws4a{word-spacing:-0.304000pt;}
.wsc1{word-spacing:-0.280000pt;}
.wsab{word-spacing:-0.253333pt;}
.wsc0{word-spacing:-0.224000pt;}
.wse6{word-spacing:-0.168000pt;}
.ws124{word-spacing:-0.152000pt;}
.ws2c{word-spacing:-0.112000pt;}
.ws95{word-spacing:-0.101333pt;}
.ws40{word-spacing:-0.056000pt;}
.wsaf{word-spacing:-0.050667pt;}
.ws53{word-spacing:-0.042667pt;}
.ws8{word-spacing:-0.037333pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:0.050667pt;}
.wsbd{word-spacing:0.056000pt;}
.ws1c{word-spacing:0.101333pt;}
.ws5e{word-spacing:0.112000pt;}
.wsac{word-spacing:0.152000pt;}
.wsc4{word-spacing:0.168000pt;}
.ws76{word-spacing:0.186667pt;}
.ws97{word-spacing:0.202667pt;}
.ws7f{word-spacing:0.224000pt;}
.ws112{word-spacing:0.253333pt;}
.ws2a{word-spacing:0.280000pt;}
.ws118{word-spacing:0.304000pt;}
.ws33{word-spacing:0.336000pt;}
.wsb7{word-spacing:0.354667pt;}
.ws77{word-spacing:0.373333pt;}
.ws67{word-spacing:0.392000pt;}
.ws5c{word-spacing:0.448000pt;}
.ws52{word-spacing:0.456000pt;}
.wsb6{word-spacing:0.506667pt;}
.ws15{word-spacing:0.557333pt;}
.ws3a{word-spacing:0.560000pt;}
.wsdf{word-spacing:0.608000pt;}
.ws61{word-spacing:0.616000pt;}
.ws115{word-spacing:0.658667pt;}
.ws14{word-spacing:0.672000pt;}
.wsad{word-spacing:0.709333pt;}
.ws36{word-spacing:0.728000pt;}
.wsb3{word-spacing:0.760000pt;}
.ws13{word-spacing:0.784000pt;}
.ws127{word-spacing:0.810667pt;}
.ws35{word-spacing:0.840000pt;}
.ws9a{word-spacing:0.853333pt;}
.ws135{word-spacing:0.861333pt;}
.ws32{word-spacing:0.896000pt;}
.ws4c{word-spacing:0.912000pt;}
.ws2b{word-spacing:0.952000pt;}
.ws1f{word-spacing:0.962667pt;}
.wsbe{word-spacing:1.008000pt;}
.ws80{word-spacing:1.064000pt;}
.wse0{word-spacing:1.114667pt;}
.ws28{word-spacing:1.120000pt;}
.ws1e{word-spacing:1.165333pt;}
.wsf7{word-spacing:1.176000pt;}
.ws8b{word-spacing:1.216000pt;}
.wse4{word-spacing:1.232000pt;}
.ws70{word-spacing:1.266667pt;}
.wsf4{word-spacing:1.269333pt;}
.ws60{word-spacing:1.288000pt;}
.wscf{word-spacing:1.306667pt;}
.ws1d{word-spacing:1.317333pt;}
.ws2f{word-spacing:1.344000pt;}
.ws114{word-spacing:1.368000pt;}
.ws41{word-spacing:1.400000pt;}
.ws16{word-spacing:1.418667pt;}
.ws90{word-spacing:1.456000pt;}
.ws13d{word-spacing:1.469333pt;}
.wse9{word-spacing:1.512000pt;}
.wse8{word-spacing:1.568000pt;}
.ws4b{word-spacing:1.621333pt;}
.ws6a{word-spacing:1.624000pt;}
.ws120{word-spacing:1.672000pt;}
.wsba{word-spacing:1.722667pt;}
.wseb{word-spacing:1.736000pt;}
.ws113{word-spacing:1.824000pt;}
.ws44{word-spacing:1.848000pt;}
.ws13c{word-spacing:1.874667pt;}
.ws43{word-spacing:1.904000pt;}
.ws45{word-spacing:1.960000pt;}
.ws11f{word-spacing:1.976000pt;}
.ws7d{word-spacing:2.016000pt;}
.ws128{word-spacing:2.026667pt;}
.ws63{word-spacing:2.072000pt;}
.ws4f{word-spacing:2.077333pt;}
.ws122{word-spacing:2.128000pt;}
.wse2{word-spacing:2.178667pt;}
.wsea{word-spacing:2.184000pt;}
.ws13b{word-spacing:2.280000pt;}
.ws65{word-spacing:2.296000pt;}
.ws137{word-spacing:2.330667pt;}
.wsed{word-spacing:2.352000pt;}
.ws6d{word-spacing:2.381333pt;}
.ws42{word-spacing:2.408000pt;}
.ws79{word-spacing:2.426667pt;}
.ws131{word-spacing:2.432000pt;}
.ws3d{word-spacing:2.464000pt;}
.ws73{word-spacing:2.576000pt;}
.ws6e{word-spacing:2.584000pt;}
.wse7{word-spacing:2.632000pt;}
.ws111{word-spacing:2.634667pt;}
.ws47{word-spacing:2.685333pt;}
.ws3e{word-spacing:2.688000pt;}
.ws133{word-spacing:2.736000pt;}
.ws96{word-spacing:2.786667pt;}
.ws91{word-spacing:2.800000pt;}
.ws6f{word-spacing:2.837333pt;}
.wsd5{word-spacing:2.856000pt;}
.wsb8{word-spacing:2.888000pt;}
.wsfb{word-spacing:2.912000pt;}
.ws3b{word-spacing:2.968000pt;}
.wsb0{word-spacing:3.040000pt;}
.wsfc{word-spacing:3.080000pt;}
.ws6c{word-spacing:3.090667pt;}
.ws48{word-spacing:3.141333pt;}
.ws49{word-spacing:3.192000pt;}
.wsec{word-spacing:3.248000pt;}
.wsbb{word-spacing:3.304000pt;}
.wsf3{word-spacing:3.360000pt;}
.ws37{word-spacing:3.416000pt;}
.ws26{word-spacing:3.472000pt;}
.ws3c{word-spacing:3.528000pt;}
.ws3{word-spacing:3.536000pt;}
.wsb2{word-spacing:3.648000pt;}
.wsc3{word-spacing:4.088000pt;}
.wsb{word-spacing:5.712000pt;}
.ws89{word-spacing:62.984000pt;}
.ws7a{word-spacing:88.336533pt;}
.ws8a{word-spacing:102.868267pt;}
.wsf0{word-spacing:346.613333pt;}
.wsf1{word-spacing:367.680000pt;}
.wsf2{word-spacing:381.066667pt;}
.wsd9{word-spacing:393.973333pt;}
.wsca{word-spacing:446.826667pt;}
.wscb{word-spacing:465.440000pt;}
.wsd2{word-spacing:469.386667pt;}
.ws7c{word-spacing:474.197333pt;}
.wsd0{word-spacing:515.573333pt;}
.wsd1{word-spacing:552.000000pt;}
.wsd3{word-spacing:649.866667pt;}
.ws23{word-spacing:2034.713600pt;}
._2d{margin-left:-1072.256000pt;}
._f{margin-left:-16.395733pt;}
._c{margin-left:-14.692284pt;}
._15{margin-left:-13.522933pt;}
._7{margin-left:-12.632000pt;}
._1{margin-left:-9.991467pt;}
._b{margin-left:-8.122133pt;}
._9{margin-left:-6.966814pt;}
._2{margin-left:-5.712000pt;}
._a{margin-left:-4.338667pt;}
._8{margin-left:-3.371200pt;}
._3{margin-left:-2.131733pt;}
._4{margin-left:-1.048533pt;}
._5{width:0.894933pt;}
._11{width:2.464000pt;}
._0{width:3.510400pt;}
._69{width:4.526400pt;}
._41{width:23.776000pt;}
._17{width:30.790133pt;}
._2f{width:34.086400pt;}
._10{width:39.668574pt;}
._5e{width:40.642667pt;}
._2e{width:41.571733pt;}
._57{width:44.409067pt;}
._53{width:46.421559pt;}
._16{width:49.527484pt;}
._51{width:53.511774pt;}
._36{width:58.836267pt;}
._e{width:60.398514pt;}
._21{width:63.182933pt;}
._26{width:64.633600pt;}
._55{width:65.841583pt;}
._5c{width:67.191484pt;}
._31{width:68.884800pt;}
._3d{width:74.845333pt;}
._4e{width:77.142400pt;}
._32{width:78.233067pt;}
._59{width:79.267426pt;}
._44{width:80.242176pt;}
._64{width:87.503467pt;}
._39{width:88.618133pt;}
._30{width:93.374933pt;}
._4c{width:94.438400pt;}
._48{width:96.827733pt;}
._42{width:98.783241pt;}
._1c{width:100.197867pt;}
._47{width:103.097293pt;}
._35{width:105.238933pt;}
._25{width:107.385600pt;}
._40{width:108.462400pt;}
._4f{width:110.267733pt;}
._4b{width:111.541333pt;}
._45{width:112.431467pt;}
._28{width:117.682893pt;}
._46{width:119.739733pt;}
._5b{width:123.665067pt;}
._4d{width:126.423467pt;}
._27{width:128.718933pt;}
._50{width:130.022400pt;}
._20{width:131.705600pt;}
._4a{width:133.249600pt;}
._5d{width:135.808533pt;}
._1e{width:137.465600pt;}
._d{width:146.187690pt;}
._38{width:147.387733pt;}
._3c{width:150.146133pt;}
._3e{width:151.270400pt;}
._33{width:154.668267pt;}
._34{width:163.009600pt;}
._3f{width:164.952533pt;}
._49{width:168.006933pt;}
._13{width:169.661067pt;}
._54{width:179.003733pt;}
._1d{width:180.729600pt;}
._43{width:183.894933pt;}
._23{width:190.286933pt;}
._14{width:192.781600pt;}
._12{width:203.365867pt;}
._56{width:204.405043pt;}
._3a{width:207.192000pt;}
._3b{width:215.076800pt;}
._58{width:216.586667pt;}
._2a{width:228.283200pt;}
._1b{width:240.334933pt;}
._1f{width:241.302933pt;}
._52{width:252.670217pt;}
._6{width:268.427200pt;}
._29{width:271.012267pt;}
._37{width:272.847467pt;}
._2c{width:276.601600pt;}
._19{width:287.675200pt;}
._2b{width:289.870933pt;}
._5f{width:301.602116pt;}
._24{width:363.693600pt;}
._5a{width:365.274133pt;}
._65{width:409.064533pt;}
._1a{width:426.305600pt;}
._22{width:436.502933pt;}
._61{width:472.106667pt;}
._63{width:479.093333pt;}
._62{width:517.493333pt;}
._68{width:527.336533pt;}
._60{width:551.413333pt;}
._67{width:627.731200pt;}
._66{width:635.752533pt;}
._18{width:745.934933pt;}
.fs4{font-size:28.000000pt;}
.fs6{font-size:29.866667pt;}
.fs8{font-size:32.000000pt;}
.fse{font-size:35.466667pt;}
.fs3{font-size:37.333333pt;}
.fs11{font-size:38.000000pt;}
.fsd{font-size:39.200000pt;}
.fsf{font-size:42.000000pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fsa{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.fs10{font-size:384.000000pt;}
.fs2{font-size:522.666667pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:47.240267pt;}
.y31{bottom:47.393867pt;}
.y30{bottom:47.394000pt;}
.y131{bottom:92.359867pt;}
.yd1{bottom:111.760667pt;}
.yef{bottom:112.042133pt;}
.y79{bottom:112.042267pt;}
.y21e{bottom:112.192933pt;}
.y15f{bottom:124.988933pt;}
.yd0{bottom:124.989067pt;}
.y27f{bottom:125.102800pt;}
.y148{bottom:125.134800pt;}
.y21d{bottom:125.448267pt;}
.yee{bottom:127.986800pt;}
.y78{bottom:127.986933pt;}
.yc{bottom:132.283467pt;}
.y15e{bottom:138.217333pt;}
.y27e{bottom:138.444933pt;}
.ycf{bottom:138.493333pt;}
.y147{bottom:138.509067pt;}
.y21c{bottom:138.703733pt;}
.yb{bottom:142.950133pt;}
.yed{bottom:143.931467pt;}
.y77{bottom:143.931600pt;}
.y5e{bottom:146.950133pt;}
.y15d{bottom:151.445733pt;}
.yce{bottom:151.721733pt;}
.y27d{bottom:151.786933pt;}
.y146{bottom:151.883333pt;}
.y21b{bottom:151.959067pt;}
.y36{bottom:153.616800pt;}
.yec{bottom:159.876133pt;}
.y76{bottom:159.876267pt;}
.y5d{bottom:161.616800pt;}
.ya{bottom:161.709200pt;}
.y35{bottom:164.283467pt;}
.y15c{bottom:164.674000pt;}
.y27c{bottom:165.129067pt;}
.y21a{bottom:165.214400pt;}
.y145{bottom:165.257467pt;}
.y1e0{bottom:165.619467pt;}
.y9{bottom:172.375867pt;}
.ycd{bottom:172.785067pt;}
.y34{bottom:174.950133pt;}
.yeb{bottom:175.820800pt;}
.y75{bottom:175.820933pt;}
.y5c{bottom:176.283467pt;}
.y15b{bottom:177.902400pt;}
.y219{bottom:178.469867pt;}
.y27b{bottom:178.471200pt;}
.y8{bottom:183.042533pt;}
.y33{bottom:185.616800pt;}
.y144{bottom:188.080533pt;}
.ycc{bottom:188.729733pt;}
.y5b{bottom:190.950133pt;}
.y218{bottom:191.725200pt;}
.y1de{bottom:191.765467pt;}
.y74{bottom:191.765600pt;}
.y27a{bottom:191.813200pt;}
.y1df{bottom:193.021467pt;}
.y7{bottom:193.709200pt;}
.y32{bottom:196.283467pt;}
.y143{bottom:201.454800pt;}
.ycb{bottom:204.950400pt;}
.y217{bottom:204.980533pt;}
.y279{bottom:205.155333pt;}
.y5a{bottom:205.616800pt;}
.y15a{bottom:206.232000pt;}
.y73{bottom:207.710267pt;}
.y6{bottom:208.155333pt;}
.y20a{bottom:212.002400pt;}
.y1d3{bottom:213.328667pt;}
.y1af{bottom:214.942800pt;}
.y1dd{bottom:215.433067pt;}
.y216{bottom:218.235867pt;}
.y278{bottom:218.497467pt;}
.y5{bottom:219.355333pt;}
.y59{bottom:220.283467pt;}
.yca{bottom:220.895067pt;}
.y159{bottom:222.176667pt;}
.y209{bottom:223.341067pt;}
.ydb{bottom:223.654800pt;}
.y72{bottom:223.654933pt;}
.y142{bottom:224.277867pt;}
.y1d2{bottom:224.667200pt;}
.y1e6{bottom:226.175733pt;}
.y1dc{bottom:226.771733pt;}
.y1ae{bottom:228.171200pt;}
.y125{bottom:230.824133pt;}
.y215{bottom:231.491333pt;}
.y277{bottom:231.839467pt;}
.y208{bottom:234.679600pt;}
.y58{bottom:234.950133pt;}
.y1d1{bottom:236.005867pt;}
.yc9{bottom:236.839733pt;}
.y1e5{bottom:237.514267pt;}
.y141{bottom:237.652000pt;}
.y1db{bottom:238.110267pt;}
.y4{bottom:238.114400pt;}
.y71{bottom:239.599600pt;}
.y1ad{bottom:241.399467pt;}
.y124{bottom:243.570933pt;}
.y214{bottom:244.746667pt;}
.y276{bottom:245.181600pt;}
.y207{bottom:246.018267pt;}
.y1d0{bottom:247.344400pt;}
.y1e4{bottom:248.852800pt;}
.y3{bottom:249.314400pt;}
.y1da{bottom:249.448800pt;}
.y57{bottom:249.616800pt;}
.yc8{bottom:252.784400pt;}
.y1ac{bottom:254.627867pt;}
.y70{bottom:255.544267pt;}
.y123{bottom:255.668533pt;}
.y206{bottom:257.356800pt;}
.y213{bottom:258.002000pt;}
.y275{bottom:258.523733pt;}
.y1cf{bottom:258.683067pt;}
.y1e3{bottom:260.191467pt;}
.y140{bottom:260.475067pt;}
.y1d9{bottom:260.787467pt;}
.y56{bottom:264.283467pt;}
.y122{bottom:267.766133pt;}
.y1ab{bottom:267.856267pt;}
.y205{bottom:268.695333pt;}
.yc7{bottom:269.005067pt;}
.y1ce{bottom:270.021600pt;}
.y158{bottom:270.749733pt;}
.y212{bottom:271.257467pt;}
.y6f{bottom:271.488933pt;}
.y1e2{bottom:271.530000pt;}
.y274{bottom:271.865867pt;}
.y1d8{bottom:272.126000pt;}
.y13f{bottom:273.849333pt;}
.y55{bottom:278.950133pt;}
.y121{bottom:280.512933pt;}
.y1aa{bottom:281.084533pt;}
.y1d7{bottom:283.464533pt;}
.y211{bottom:284.512800pt;}
.y273{bottom:285.207867pt;}
.y157{bottom:286.694400pt;}
.y13e{bottom:287.223467pt;}
.y6e{bottom:287.433600pt;}
.y120{bottom:292.610533pt;}
.y54{bottom:293.616800pt;}
.y1a9{bottom:294.312933pt;}
.y210{bottom:297.768000pt;}
.y272{bottom:298.550000pt;}
.y13d{bottom:300.597733pt;}
.y156{bottom:302.639067pt;}
.y6d{bottom:303.378267pt;}
.yc6{bottom:304.239867pt;}
.y11f{bottom:304.708133pt;}
.y53{bottom:308.283467pt;}
.y20f{bottom:311.023467pt;}
.y271{bottom:311.892133pt;}
.y13c{bottom:313.972000pt;}
.y11e{bottom:316.805733pt;}
.yc5{bottom:317.468267pt;}
.y1a8{bottom:318.124000pt;}
.y155{bottom:318.583733pt;}
.y6c{bottom:319.322933pt;}
.y52{bottom:322.950133pt;}
.y20e{bottom:324.278800pt;}
.y270{bottom:325.234267pt;}
.y11b{bottom:329.552533pt;}
.y11d{bottom:329.605733pt;}
.yc4{bottom:330.696667pt;}
.y1a7{bottom:331.352267pt;}
.y154{bottom:334.528400pt;}
.y6b{bottom:335.267600pt;}
.y13b{bottom:336.795067pt;}
.y20d{bottom:337.534133pt;}
.y51{bottom:337.616800pt;}
.y26f{bottom:338.576400pt;}
.y11a{bottom:342.352533pt;}
.y11c{bottom:342.405733pt;}
.yc3{bottom:344.200933pt;}
.y1a6{bottom:344.580667pt;}
.y13a{bottom:350.169200pt;}
.y153{bottom:350.473067pt;}
.y20c{bottom:350.789600pt;}
.yda{bottom:351.191333pt;}
.y6a{bottom:351.212267pt;}
.y26e{bottom:351.918400pt;}
.y50{bottom:352.283467pt;}
.y119{bottom:354.450133pt;}
.yc2{bottom:357.429333pt;}
.y1a5{bottom:357.808933pt;}
.yd9{bottom:364.419733pt;}
.y26d{bottom:365.260533pt;}
.y152{bottom:366.417733pt;}
.y4f{bottom:366.950133pt;}
.y69{bottom:367.156933pt;}
.y116{bottom:367.196933pt;}
.y118{bottom:367.250133pt;}
.yc1{bottom:370.933600pt;}
.y1a4{bottom:371.037333pt;}
.y2f{bottom:373.280133pt;}
.y20b{bottom:375.383467pt;}
.yd8{bottom:377.648133pt;}
.y26c{bottom:378.602667pt;}
.y115{bottom:379.996933pt;}
.y117{bottom:380.050133pt;}
.y4e{bottom:381.616800pt;}
.y151{bottom:382.362400pt;}
.y68{bottom:383.101600pt;}
.yc0{bottom:384.162000pt;}
.y1a3{bottom:384.265600pt;}
.y139{bottom:384.330800pt;}
.y2e{bottom:387.726267pt;}
.yd7{bottom:390.876400pt;}
.y26b{bottom:391.944667pt;}
.y113{bottom:392.094533pt;}
.y4d{bottom:396.283467pt;}
.y1a2{bottom:397.494000pt;}
.ybf{bottom:397.666400pt;}
.y150{bottom:398.307067pt;}
.y2d{bottom:398.392933pt;}
.y67{bottom:399.046267pt;}
.yd6{bottom:404.104800pt;}
.y112{bottom:404.894533pt;}
.y114{bottom:404.947733pt;}
.y26a{bottom:405.286800pt;}
.y1a1{bottom:410.722267pt;}
.y4c{bottom:410.950133pt;}
.ybe{bottom:413.886933pt;}
.y14f{bottom:414.251733pt;}
.y138{bottom:414.261467pt;}
.y66{bottom:414.990933pt;}
.y10f{bottom:416.992133pt;}
.yd5{bottom:417.333067pt;}
.y269{bottom:418.628933pt;}
.y1a0{bottom:423.950667pt;}
.y2c{bottom:424.177733pt;}
.y10e{bottom:429.792133pt;}
.y14e{bottom:430.196400pt;}
.yd4{bottom:430.561467pt;}
.y65{bottom:430.935600pt;}
.y268{bottom:431.970933pt;}
.y19f{bottom:437.179067pt;}
.y2b{bottom:438.624000pt;}
.y4b{bottom:441.288800pt;}
.y10d{bottom:442.592133pt;}
.yd3{bottom:443.789733pt;}
.y267{bottom:445.313067pt;}
.ybd{bottom:446.052267pt;}
.y14d{bottom:446.141067pt;}
.y137{bottom:446.296667pt;}
.y64{bottom:446.880267pt;}
.y19e{bottom:450.407333pt;}
.y4a{bottom:451.288800pt;}
.y10c{bottom:455.392133pt;}
.y111{bottom:455.445333pt;}
.yd2{bottom:457.018133pt;}
.y266{bottom:458.655200pt;}
.y49{bottom:461.288800pt;}
.ybc{bottom:461.996933pt;}
.y14c{bottom:462.085733pt;}
.y136{bottom:462.387200pt;}
.y63{bottom:462.824933pt;}
.y19d{bottom:463.635733pt;}
.y2a{bottom:464.408667pt;}
.y10b{bottom:468.192133pt;}
.y110{bottom:468.245333pt;}
.y265{bottom:471.997333pt;}
.ybb{bottom:477.941600pt;}
.y14b{bottom:478.030400pt;}
.y135{bottom:478.477733pt;}
.y7a{bottom:478.769467pt;}
.y62{bottom:478.769600pt;}
.y29{bottom:478.854933pt;}
.y109{bottom:480.289733pt;}
.y264{bottom:485.339333pt;}
.y19c{bottom:487.446800pt;}
.yea{bottom:492.658000pt;}
.y108{bottom:493.089733pt;}
.y10a{bottom:493.142933pt;}
.y28{bottom:493.301067pt;}
.yba{bottom:493.886267pt;}
.y48{bottom:493.965867pt;}
.y14a{bottom:493.975067pt;}
.y134{bottom:494.568267pt;}
.y1c7{bottom:494.714267pt;}
.y263{bottom:498.681467pt;}
.y19b{bottom:500.675067pt;}
.ye9{bottom:503.996667pt;}
.y107{bottom:505.187333pt;}
.y27{bottom:507.747333pt;}
.yb9{bottom:509.830933pt;}
.y149{bottom:509.919733pt;}
.y61{bottom:510.658933pt;}
.y262{bottom:512.023600pt;}
.y19a{bottom:513.903467pt;}
.ye8{bottom:515.335200pt;}
.y104{bottom:517.284933pt;}
.y106{bottom:517.338133pt;}
.y26{bottom:522.193467pt;}
.y261{bottom:525.365733pt;}
.yb8{bottom:525.775600pt;}
.y133{bottom:526.603467pt;}
.y1c6{bottom:526.603600pt;}
.ye7{bottom:526.673733pt;}
.y103{bottom:530.084933pt;}
.y105{bottom:530.138133pt;}
.y199{bottom:537.714533pt;}
.y260{bottom:538.707733pt;}
.y44{bottom:539.273067pt;}
.yb7{bottom:541.720267pt;}
.y102{bottom:542.182533pt;}
.y1c5{bottom:542.548267pt;}
.y1fd{bottom:543.005867pt;}
.y198{bottom:550.942800pt;}
.y25f{bottom:552.049867pt;}
.y101{bottom:554.280133pt;}
.y1fc{bottom:556.234133pt;}
.y1c4{bottom:558.492933pt;}
.ydc{bottom:565.095733pt;}
.y25e{bottom:565.392000pt;}
.y100{bottom:566.377867pt;}
.y43{bottom:572.616800pt;}
.y180{bottom:573.725467pt;}
.yb6{bottom:573.885600pt;}
.y1ff{bottom:574.437600pt;}
.y197{bottom:574.753867pt;}
.yff{bottom:578.475467pt;}
.y25d{bottom:578.734000pt;}
.y1fb{bottom:580.045200pt;}
.ydd{bottom:583.589067pt;}
.y17f{bottom:585.769867pt;}
.y42{bottom:587.283467pt;}
.y196{bottom:587.982133pt;}
.y1c9{bottom:589.581200pt;}
.ye5{bottom:590.141067pt;}
.y1c3{bottom:590.382267pt;}
.yfc{bottom:590.573067pt;}
.y25c{bottom:592.076133pt;}
.y1fa{bottom:593.273467pt;}
.ye6{bottom:594.255733pt;}
.y17e{bottom:598.569867pt;}
.y195{bottom:601.210533pt;}
.y41{bottom:601.950133pt;}
.yfb{bottom:603.373067pt;}
.y25b{bottom:605.418267pt;}
.y1c2{bottom:606.326933pt;}
.y1f9{bottom:606.501867pt;}
.y1d6{bottom:606.701333pt;}
.y17d{bottom:610.614267pt;}
.yfa{bottom:616.173067pt;}
.yfe{bottom:616.226267pt;}
.y40{bottom:616.616800pt;}
.y25a{bottom:618.760400pt;}
.yb5{bottom:621.995600pt;}
.y1c1{bottom:622.271600pt;}
.y17c{bottom:623.414267pt;}
.y194{bottom:625.021600pt;}
.yf9{bottom:628.973067pt;}
.yfd{bottom:629.026267pt;}
.y1f8{bottom:630.312933pt;}
.y259{bottom:632.102400pt;}
.y17b{bottom:635.458667pt;}
.yb4{bottom:637.940267pt;}
.y1c0{bottom:638.216267pt;}
.yf7{bottom:641.070667pt;}
.y1cb{bottom:641.541200pt;}
.y1f7{bottom:643.541200pt;}
.y25{bottom:644.741867pt;}
.y3f{bottom:644.963333pt;}
.y258{bottom:645.444533pt;}
.y17a{bottom:647.503067pt;}
.y193{bottom:648.832667pt;}
.y202{bottom:649.901333pt;}
.yf6{bottom:653.870667pt;}
.yb3{bottom:653.884933pt;}
.y9b{bottom:653.997867pt;}
.y82{bottom:653.998000pt;}
.y1bf{bottom:654.160933pt;}
.y1f6{bottom:656.769600pt;}
.y24{bottom:658.075200pt;}
.y257{bottom:658.786667pt;}
.y1ca{bottom:659.274533pt;}
.y179{bottom:659.547467pt;}
.y3e{bottom:659.630000pt;}
.y81{bottom:664.664667pt;}
.yf5{bottom:666.670667pt;}
.y9a{bottom:668.664533pt;}
.yb2{bottom:669.829600pt;}
.y1be{bottom:670.105600pt;}
.y178{bottom:671.591733pt;}
.y256{bottom:672.128800pt;}
.y192{bottom:672.643600pt;}
.y3d{bottom:674.296667pt;}
.y80{bottom:675.331333pt;}
.yf4{bottom:679.470667pt;}
.y1f5{bottom:680.580667pt;}
.y99{bottom:683.331200pt;}
.y255{bottom:685.470800pt;}
.yb1{bottom:685.774267pt;}
.y191{bottom:685.871867pt;}
.y7f{bottom:685.998000pt;}
.y1bd{bottom:686.050267pt;}
.y177{bottom:686.470800pt;}
.y23{bottom:686.526667pt;}
.y3c{bottom:688.963333pt;}
.yf3{bottom:692.217467pt;}
.yf8{bottom:692.270667pt;}
.y1f4{bottom:693.808933pt;}
.y7e{bottom:696.664667pt;}
.y22{bottom:697.726533pt;}
.y98{bottom:697.997867pt;}
.y254{bottom:698.812933pt;}
.yb0{bottom:701.718933pt;}
.y1bc{bottom:701.994933pt;}
.y204{bottom:703.661333pt;}
.y3b{bottom:704.081333pt;}
.y176{bottom:704.429867pt;}
.y1f3{bottom:707.037333pt;}
.yde{bottom:707.066400pt;}
.y7d{bottom:707.331333pt;}
.y21{bottom:708.926533pt;}
.y190{bottom:709.682933pt;}
.yf2{bottom:709.984267pt;}
.y253{bottom:712.155067pt;}
.y97{bottom:712.664533pt;}
.y175{bottom:717.229867pt;}
.yaf{bottom:717.663600pt;}
.y1bb{bottom:717.939600pt;}
.y7c{bottom:717.998000pt;}
.y20{bottom:720.126667pt;}
.y1f2{bottom:720.265600pt;}
.y18f{bottom:722.911333pt;}
.y252{bottom:725.497200pt;}
.y96{bottom:727.331200pt;}
.y7b{bottom:728.664667pt;}
.y174{bottom:729.274133pt;}
.y1f{bottom:731.326533pt;}
.y1f1{bottom:733.494000pt;}
.yae{bottom:733.608267pt;}
.y1ba{bottom:733.884267pt;}
.y18e{bottom:736.139600pt;}
.y251{bottom:738.839200pt;}
.y173{bottom:741.318667pt;}
.y95{bottom:741.997867pt;}
.y1e{bottom:742.526667pt;}
.y1f0{bottom:746.722267pt;}
.y3a{bottom:747.094533pt;}
.yf1{bottom:748.561467pt;}
.yad{bottom:749.552933pt;}
.y1b9{bottom:749.828933pt;}
.y250{bottom:752.181333pt;}
.y172{bottom:753.362933pt;}
.y1d{bottom:753.726533pt;}
.y94{bottom:756.664533pt;}
.yf0{bottom:759.900000pt;}
.y18d{bottom:759.950667pt;}
.y39{bottom:761.761200pt;}
.y23a{bottom:762.654000pt;}
.y23c{bottom:762.707333pt;}
.y1c{bottom:764.926533pt;}
.y171{bottom:765.407333pt;}
.yac{bottom:765.497600pt;}
.y24f{bottom:765.523467pt;}
.y1b8{bottom:765.773600pt;}
.ydf{bottom:769.167733pt;}
.y93{bottom:771.331200pt;}
.y1ef{bottom:773.179067pt;}
.y239{bottom:775.454000pt;}
.y23b{bottom:775.507200pt;}
.y1b{bottom:776.126667pt;}
.y38{bottom:776.427867pt;}
.y170{bottom:777.451733pt;}
.y24e{bottom:778.865600pt;}
.yab{bottom:781.442267pt;}
.y1b7{bottom:781.718267pt;}
.y18c{bottom:783.761733pt;}
.y92{bottom:785.997867pt;}
.y1ee{bottom:786.407333pt;}
.y1a{bottom:787.326533pt;}
.y237{bottom:787.551600pt;}
.y16f{bottom:789.496133pt;}
.y37{bottom:791.094533pt;}
.y24d{bottom:792.207600pt;}
.y18b{bottom:796.990133pt;}
.yaa{bottom:797.386933pt;}
.y1b6{bottom:797.662933pt;}
.y19{bottom:798.526667pt;}
.y1ed{bottom:799.635733pt;}
.y236{bottom:800.351600pt;}
.y238{bottom:800.404800pt;}
.y91{bottom:800.664533pt;}
.y16e{bottom:801.540533pt;}
.y132{bottom:803.149600pt;}
.y24c{bottom:805.549733pt;}
.y18{bottom:809.726533pt;}
.y234{bottom:812.449200pt;}
.y1ec{bottom:812.864133pt;}
.ya9{bottom:813.331600pt;}
.y16d{bottom:813.584933pt;}
.y1b5{bottom:813.607600pt;}
.y90{bottom:815.331200pt;}
.y24b{bottom:818.891733pt;}
.ye3{bottom:819.581200pt;}
.y18a{bottom:820.801067pt;}
.y17{bottom:820.926533pt;}
.ye4{bottom:823.563867pt;}
.y233{bottom:825.249200pt;}
.y235{bottom:825.302400pt;}
.y16c{bottom:825.629333pt;}
.y1eb{bottom:826.092400pt;}
.ye0{bottom:827.493067pt;}
.ya8{bottom:829.276267pt;}
.y1b4{bottom:829.552267pt;}
.y8f{bottom:829.997867pt;}
.y130{bottom:831.097333pt;}
.y16{bottom:832.126667pt;}
.y24a{bottom:832.233867pt;}
.y231{bottom:837.346800pt;}
.y16b{bottom:837.673600pt;}
.y12e{bottom:839.228533pt;}
.y1ea{bottom:839.320800pt;}
.y15{bottom:843.326533pt;}
.y189{bottom:844.612133pt;}
.y8e{bottom:844.664667pt;}
.ya7{bottom:845.220933pt;}
.y1fe{bottom:845.496933pt;}
.y249{bottom:845.576000pt;}
.y16a{bottom:849.718133pt;}
.y230{bottom:850.146800pt;}
.y232{bottom:850.200000pt;}
.y1e9{bottom:852.549200pt;}
.y12f{bottom:854.041867pt;}
.y14{bottom:854.526667pt;}
.y248{bottom:858.918133pt;}
.y8d{bottom:859.331333pt;}
.ya6{bottom:861.165600pt;}
.y1b3{bottom:861.441600pt;}
.y169{bottom:861.762400pt;}
.y22d{bottom:862.244400pt;}
.y22f{bottom:862.297733pt;}
.y128{bottom:863.569867pt;}
.y13{bottom:865.726533pt;}
.y1e8{bottom:865.777467pt;}
.ye1{bottom:866.821067pt;}
.y12c{bottom:867.751200pt;}
.y188{bottom:868.423200pt;}
.y247{bottom:872.260133pt;}
.y287{bottom:873.397733pt;}
.y168{bottom:873.806800pt;}
.y8c{bottom:873.998000pt;}
.y22c{bottom:875.044400pt;}
.y22e{bottom:875.097600pt;}
.ya5{bottom:877.110267pt;}
.y1b2{bottom:877.386267pt;}
.y1e7{bottom:879.005733pt;}
.y47{bottom:879.118133pt;}
.y12d{bottom:879.900533pt;}
.y246{bottom:885.602267pt;}
.y167{bottom:885.851200pt;}
.ye2{bottom:886.586400pt;}
.y286{bottom:886.626000pt;}
.y229{bottom:887.142133pt;}
.y22b{bottom:887.195333pt;}
.y8b{bottom:888.664667pt;}
.y12{bottom:892.044533pt;}
.y187{bottom:892.234133pt;}
.ya4{bottom:893.054933pt;}
.y1b1{bottom:893.330933pt;}
.y166{bottom:897.895600pt;}
.y245{bottom:898.944400pt;}
.y285{bottom:899.854400pt;}
.y228{bottom:899.942000pt;}
.y22a{bottom:899.995333pt;}
.y8a{bottom:903.331333pt;}
.y186{bottom:905.462533pt;}
.y46{bottom:905.784800pt;}
.ya3{bottom:908.999600pt;}
.y1b0{bottom:909.275600pt;}
.y165{bottom:910.695600pt;}
.y225{bottom:912.039733pt;}
.y227{bottom:912.092933pt;}
.y244{bottom:912.286400pt;}
.y89{bottom:917.998000pt;}
.y11{bottom:918.362667pt;}
.y185{bottom:918.690800pt;}
.y1{bottom:920.863733pt;}
.y164{bottom:923.495600pt;}
.y224{bottom:924.839733pt;}
.y226{bottom:924.892933pt;}
.ya2{bottom:925.220267pt;}
.y243{bottom:925.628533pt;}
.y1cd{bottom:931.194533pt;}
.y45{bottom:932.451467pt;}
.y88{bottom:932.664667pt;}
.y222{bottom:936.937333pt;}
.y163{bottom:938.374667pt;}
.y242{bottom:938.970667pt;}
.y284{bottom:939.539333pt;}
.ya1{bottom:941.164933pt;}
.y184{bottom:942.501867pt;}
.y10{bottom:944.680800pt;}
.y87{bottom:947.331333pt;}
.y221{bottom:949.737333pt;}
.y223{bottom:949.790533pt;}
.y241{bottom:952.312800pt;}
.y283{bottom:952.767733pt;}
.y1d5{bottom:953.261333pt;}
.y183{bottom:955.730267pt;}
.y162{bottom:956.333600pt;}
.ya0{bottom:957.109600pt;}
.y200{bottom:959.981333pt;}
.y86{bottom:961.998000pt;}
.y12a{bottom:964.519200pt;}
.y240{bottom:965.654800pt;}
.y2{bottom:965.669333pt;}
.y282{bottom:965.996133pt;}
.y220{bottom:967.504133pt;}
.y182{bottom:968.958533pt;}
.yf{bottom:970.998933pt;}
.y9f{bottom:973.054133pt;}
.y1d4{bottom:975.341333pt;}
.y85{bottom:976.664667pt;}
.y23f{bottom:978.996933pt;}
.y281{bottom:979.224400pt;}
.y201{bottom:981.101333pt;}
.y203{bottom:985.901333pt;}
.y127{bottom:986.908400pt;}
.y9e{bottom:988.998933pt;}
.y84{bottom:991.331333pt;}
.y23e{bottom:992.339067pt;}
.y280{bottom:992.452800pt;}
.y181{bottom:992.769600pt;}
.y1e1{bottom:994.861467pt;}
.y161{bottom:994.910667pt;}
.ye{bottom:997.317067pt;}
.y126{bottom:998.044400pt;}
.y129{bottom:998.332533pt;}
.y1c8{bottom:998.514533pt;}
.y1cc{bottom:998.527867pt;}
.y12b{bottom:998.791200pt;}
.y9d{bottom:1004.943600pt;}
.y23d{bottom:1005.681200pt;}
.y83{bottom:1005.998000pt;}
.y21f{bottom:1006.081200pt;}
.y160{bottom:1006.249333pt;}
.yd{bottom:1008.517067pt;}
.y60{bottom:1068.661333pt;}
.y9c{bottom:1068.661467pt;}
.h15{height:23.392000pt;}
.ha{height:25.152000pt;}
.h18{height:27.290667pt;}
.h5{height:27.402667pt;}
.h4{height:29.344000pt;}
.h1b{height:30.464000pt;}
.h19{height:31.189333pt;}
.h20{height:31.958000pt;}
.h7{height:33.359375pt;}
.h8{height:33.536000pt;}
.h1c{height:33.748800pt;}
.h1d{height:33.749333pt;}
.h6{height:33.898667pt;}
.h12{height:34.645333pt;}
.he{height:35.632000pt;}
.h14{height:36.229079pt;}
.hc{height:38.976000pt;}
.hd{height:38.986667pt;}
.h17{height:40.042667pt;}
.h11{height:41.141333pt;}
.hb{height:41.664000pt;}
.h1f{height:42.610667pt;}
.h9{height:43.306667pt;}
.h10{height:43.978667pt;}
.h21{height:44.874667pt;}
.h13{height:45.472000pt;}
.h16{height:47.096000pt;}
.h23{height:48.608000pt;}
.hf{height:62.378667pt;}
.h2{height:66.549333pt;}
.h22{height:81.653333pt;}
.h1e{height:184.084000pt;}
.h1a{height:268.800000pt;}
.h3{height:383.637333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:472.024000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:37.795333pt;}
.x3{left:66.141733pt;}
.x34{left:67.039333pt;}
.x55{left:72.575733pt;}
.x1e{left:74.200800pt;}
.x4c{left:75.860133pt;}
.x1f{left:77.526800pt;}
.x5e{left:79.837067pt;}
.x69{left:81.259867pt;}
.x5b{left:82.450667pt;}
.x47{left:83.807200pt;}
.x4{left:85.039333pt;}
.x5d{left:88.210667pt;}
.x60{left:89.946133pt;}
.x49{left:91.339200pt;}
.x4a{left:95.428400pt;}
.x5{left:96.377867pt;}
.x43{left:99.296533pt;}
.x7{left:103.937067pt;}
.x56{left:105.309067pt;}
.x26{left:109.509867pt;}
.x1b{left:115.275600pt;}
.x46{left:118.804800pt;}
.x45{left:120.169600pt;}
.x44{left:122.689333pt;}
.x76{left:124.446667pt;}
.x4d{left:130.737467pt;}
.x4b{left:131.878000pt;}
.xe{left:133.353600pt;}
.x61{left:136.409333pt;}
.x75{left:139.768933pt;}
.x51{left:145.889733pt;}
.x48{left:147.077867pt;}
.xc{left:148.677733pt;}
.x8{left:151.377467pt;}
.x24{left:152.817200pt;}
.x23{left:155.085467pt;}
.xa{left:156.597200pt;}
.x41{left:160.838667pt;}
.x9{left:162.273333pt;}
.x3a{left:168.516133pt;}
.xd{left:170.012800pt;}
.x25{left:172.101200pt;}
.x5f{left:177.170267pt;}
.xb{left:184.161067pt;}
.x3d{left:203.417467pt;}
.x3f{left:227.246800pt;}
.x65{left:232.252000pt;}
.x59{left:240.655733pt;}
.x66{left:243.590533pt;}
.x1d{left:244.724400pt;}
.x27{left:250.808533pt;}
.x53{left:252.614133pt;}
.x52{left:255.238933pt;}
.x36{left:293.811067pt;}
.x3e{left:298.745467pt;}
.x3b{left:301.006800pt;}
.x40{left:318.396133pt;}
.x1a{left:320.854800pt;}
.x10{left:329.777733pt;}
.x1c{left:335.727200pt;}
.x38{left:338.024133pt;}
.x37{left:347.506800pt;}
.x62{left:365.650267pt;}
.x39{left:371.790800pt;}
.x15{left:378.294533pt;}
.x4f{left:388.677200pt;}
.x5c{left:398.290667pt;}
.x57{left:399.615733pt;}
.x20{left:406.397067pt;}
.x67{left:408.944800pt;}
.x35{left:410.220400pt;}
.x77{left:412.368400pt;}
.x6c{left:414.764800pt;}
.x6a{left:416.337467pt;}
.x22{left:417.637867pt;}
.x7f{left:418.683200pt;}
.x64{left:421.417200pt;}
.x33{left:429.160933pt;}
.x74{left:432.719867pt;}
.x4e{left:434.827333pt;}
.x7e{left:439.034400pt;}
.x50{left:450.673067pt;}
.x6b{left:454.789867pt;}
.x42{left:457.601333pt;}
.x80{left:460.398800pt;}
.x6d{left:462.661733pt;}
.x79{left:463.948400pt;}
.x78{left:464.957733pt;}
.x7a{left:469.119867pt;}
.x2e{left:470.531733pt;}
.x11{left:471.621333pt;}
.x28{left:474.330667pt;}
.x81{left:483.331733pt;}
.x7b{left:492.322400pt;}
.x29{left:500.787467pt;}
.x3c{left:516.441467pt;}
.x6e{left:519.065333pt;}
.x82{left:530.162800pt;}
.x30{left:535.280667pt;}
.x16{left:539.859867pt;}
.x31{left:545.570400pt;}
.x58{left:548.109067pt;}
.x6f{left:552.454800pt;}
.x2f{left:563.993067pt;}
.x83{left:568.679600pt;}
.x85{left:571.849600pt;}
.x17{left:575.105867pt;}
.x19{left:584.738667pt;}
.x32{left:589.566400pt;}
.x84{left:592.926267pt;}
.x18{left:594.254000pt;}
.x14{left:599.920800pt;}
.x1{left:604.524667pt;}
.x63{left:609.170267pt;}
.x2c{left:611.555733pt;}
.x2b{left:620.227733pt;}
.x12{left:621.514667pt;}
.x68{left:626.645733pt;}
.x70{left:627.777067pt;}
.x13{left:629.093333pt;}
.x5a{left:638.135733pt;}
.x54{left:642.661467pt;}
.xf{left:646.586933pt;}
.x71{left:653.429867pt;}
.x2d{left:655.641067pt;}
.x72{left:683.978000pt;}
.x7c{left:685.476667pt;}
.x2a{left:686.494400pt;}
.x6{left:699.379867pt;}
.x73{left:709.640267pt;}
.x7d{left:713.988800pt;}
.x21{left:723.067600pt;}
}




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