
    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_ec59908d8f17cc425ea8ffd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_9006635f0c03493883685931.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.963379;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_cb91767842bd6704993bbab2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_6bd22d0b8cafb49dacdb7133.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.127930;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_0c84c8e4919c8a68035f7c75.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912598;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_7a0c12002302b9e79f84532e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_49cdd86b35b525f5665ffa91.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.990723;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_b7e61f8c5ab45195deb89981.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.949707;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;}
.m62{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m191{transform:matrix(0.240080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240080,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240489,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.240514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240514,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.240628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240628,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.240639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240639,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.240686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240686,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.240733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240733,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.240917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240917,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.240989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240989,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.240992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240992,0.000000,0.000000,0.250000,0,0);}
.m1b5{transform:matrix(0.241017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241017,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.241069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241069,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.241106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241106,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.241194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241194,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.241242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241242,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.241294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241294,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.241558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241558,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.241689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241689,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.241817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241817,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.241942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241942,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.242022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242022,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.242047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242047,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.242228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242228,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.242356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242356,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.242383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242383,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242494,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.242533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242533,0.000000,0.000000,0.250000,0,0);}
.m185{transform:matrix(0.242572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242572,0.000000,0.000000,0.250000,0,0);}
.m17c{transform:matrix(0.242643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242643,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.242657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242657,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.242664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242664,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.242689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242689,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242694,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.242789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242789,0.000000,0.000000,0.250000,0,0);}
.m1ae{transform:matrix(0.243044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243044,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.243047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243047,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.243267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243267,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.243306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243306,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.243394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243394,0.000000,0.000000,0.250000,0,0);}
.m1cb{transform:matrix(0.243442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243442,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.m1ca{transform:matrix(0.243542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243542,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.243589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243589,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.243653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243653,0.000000,0.000000,0.250000,0,0);}
.m1a9{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.243817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243817,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.243819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243819,0.000000,0.000000,0.250000,0,0);}
.m19f{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.243958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243958,0.000000,0.000000,0.250000,0,0);}
.m170{transform:matrix(0.244067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244067,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.244092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244092,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.244228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244228,0.000000,0.000000,0.250000,0,0);}
.m196{transform:matrix(0.244264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244264,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.244297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244297,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.244308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244308,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.244339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244339,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244433,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.244489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244489,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.244583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244583,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.244594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244594,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.244678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244678,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.244714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244714,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.244733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244733,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.244758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244758,0.000000,0.000000,0.250000,0,0);}
.m1a8{transform:matrix(0.244781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244781,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.244878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244878,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.244906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244906,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.244931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244931,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.244989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244989,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.245164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245164,0.000000,0.000000,0.250000,0,0);}
.m194{transform:matrix(0.245178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245178,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245183,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.245228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245228,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.245231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245231,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);}
.m198{transform:matrix(0.245286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245286,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.245306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245306,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.245311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245311,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245336,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.245394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245394,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.245422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245422,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245447,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.245481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245481,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245536,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245542,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245578,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245614,0.000000,0.000000,0.250000,0,0);}
.m1cf{transform:matrix(0.245631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245631,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.245739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245739,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.245778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245778,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.245781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245781,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.245783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245783,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.245797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245797,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.245806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245806,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245878,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245897,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245917,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.245936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245936,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.245981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245981,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);}
.m1b6{transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.246028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246028,0.000000,0.000000,0.250000,0,0);}
.m1a7{transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.246064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246064,0.000000,0.000000,0.250000,0,0);}
.m17a{transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);}
.m173{transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m1af{transform:matrix(0.246122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246122,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.246131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246131,0.000000,0.000000,0.250000,0,0);}
.m1b4{transform:matrix(0.246183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246183,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246233,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.246272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246272,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246294,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246322,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.246328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246328,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.246342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246342,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.246353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246353,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.246381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246381,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);}
.m18b{transform:matrix(0.246453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246453,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246461,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.246508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246508,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.246556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246556,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246594,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246606,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.246611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246611,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246617,0.000000,0.000000,0.250000,0,0);}
.m1c9{transform:matrix(0.246669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246669,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246692,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246733,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.246742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246742,0.000000,0.000000,0.250000,0,0);}
.m1c0{transform:matrix(0.246872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246872,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.246939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246939,0.000000,0.000000,0.250000,0,0);}
.m1c1{transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.247003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247003,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247022,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247044,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.247094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247094,0.000000,0.000000,0.250000,0,0);}
.m1a3{transform:matrix(0.247119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247119,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247167,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247192,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247217,0.000000,0.000000,0.250000,0,0);}
.m1b7{transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.247236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247236,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.247286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247286,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.247294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247294,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.247306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247306,0.000000,0.000000,0.250000,0,0);}
.m180{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247342,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247353,0.000000,0.000000,0.250000,0,0);}
.m1a0{transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.247381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247381,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.247389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247389,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.247464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247464,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m181{transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.247547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247547,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.mca{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);}
.m14e{transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247589,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247636,0.000000,0.000000,0.250000,0,0);}
.m1a4{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);}
.mb9{transform:matrix(0.247692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247692,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247756,0.000000,0.000000,0.250000,0,0);}
.m178{transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);}
.m199{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m1a5{transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m1cc{transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247936,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.247958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247958,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m188{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);}
.m103{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);}
.m182{transform:matrix(0.248108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248108,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);}
.m19c{transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248167,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.248178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248178,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);}
.m120{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);}
.m114{transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248358,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);}
.mbc{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);}
.m119{transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248542,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);}
.m1be{transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);}
.m18c{transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);}
.m1cd{transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248697,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248783,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m19b{transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248914,0.000000,0.000000,0.250000,0,0);}
.m1b9{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248981,0.000000,0.000000,0.250000,0,0);}
.m184{transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);}
.m186{transform:matrix(0.249044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249044,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);}
.m175{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);}
.m19e{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);}
.m73{transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);}
.m189{transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.249217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249217,0.000000,0.000000,0.250000,0,0);}
.m1ad{transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);}
.m1c8{transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249244,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249278,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249292,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.m1a1{transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);}
.m15e{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);}
.m197{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);}
.md3{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);}
.mc0{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.mea{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);}
.m121{transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m1aa{transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m1c4{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);}
.m1c3{transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,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);}
.m13d{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);}
.m177{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m1ab{transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250178,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.m1bc{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250247,0.000000,0.000000,0.250000,0,0);}
.m1a2{transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250258,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);}
.m18e{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.250458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250458,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.m18a{transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250644,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);}
.m1c7{transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m75{transform:matrix(0.250769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250769,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.250831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250831,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250869,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250903,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);}
.m16c{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);}
.m1c6{transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.251022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251022,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251033,0.000000,0.000000,0.250000,0,0);}
.m1b1{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);}
.m193{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.251139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251139,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251233,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1ac{transform:matrix(0.251267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251267,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251472,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251519,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);}
.m1bf{transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251631,0.000000,0.000000,0.250000,0,0);}
.m69{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);}
.m11f{transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251700,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.251719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251719,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251728,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251783,0.000000,0.000000,0.250000,0,0);}
.m19d{transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251836,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251972,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a6{transform:matrix(0.252069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252069,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252108,0.000000,0.000000,0.250000,0,0);}
.m190{transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252133,0.000000,0.000000,0.250000,0,0);}
.m1c5{transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);}
.m1bb{transform:matrix(0.252181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252181,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.252417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252417,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.252433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252433,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18f{transform:matrix(0.252531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252531,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252675,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.252837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252837,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252869,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252908,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252936,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253017,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.253083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253083,0.000000,0.000000,0.250000,0,0);}
.m192{transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253111,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);}
.m1c2{transform:matrix(0.253158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253158,0.000000,0.000000,0.250000,0,0);}
.m17f{transform:matrix(0.253228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253228,0.000000,0.000000,0.250000,0,0);}
.m183{transform:matrix(0.253272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253272,0.000000,0.000000,0.250000,0,0);}
.m1b0{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.253614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253614,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253631,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253658,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.253758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253758,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.253786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253786,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.254061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254061,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254125,0.000000,0.000000,0.250000,0,0);}
.m1ce{transform:matrix(0.254247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254247,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.m1b2{transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254469,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254656,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.254811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254811,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.254847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254847,0.000000,0.000000,0.250000,0,0);}
.m1bd{transform:matrix(0.254978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254978,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.254989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254989,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255103,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.255167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255167,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.255333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255333,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.255647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255647,0.000000,0.000000,0.250000,0,0);}
.m187{transform:matrix(0.255847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255847,0.000000,0.000000,0.250000,0,0);}
.m1b3{transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255906,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.255942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255942,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.256019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256019,0.000000,0.000000,0.250000,0,0);}
.m18d{transform:matrix(0.256042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256042,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.256114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256114,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256164,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.256192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256192,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.256277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256277,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.256281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256281,0.000000,0.000000,0.250000,0,0);}
.m19a{transform:matrix(0.256356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256356,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.256433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256433,0.000000,0.000000,0.250000,0,0);}
.m195{transform:matrix(0.256442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256442,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.256483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256483,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.256542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256542,0.000000,0.000000,0.250000,0,0);}
.m1ba{transform:matrix(0.256842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256842,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.256953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256953,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.257294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257294,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.257458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257458,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257917,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.258444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258444,0.000000,0.000000,0.250000,0,0);}
.m17b{transform:matrix(0.258447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258447,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.258511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258511,0.000000,0.000000,0.250000,0,0);}
.m17e{transform:matrix(0.258543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258543,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.258631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258631,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.258753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258753,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.259117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259117,0.000000,0.000000,0.250000,0,0);}
.m1b8{transform:matrix(0.259283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259283,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.259611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259611,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.259792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259792,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-100.872000px;}
.v8{vertical-align:-17.982000px;}
.v3{vertical-align:-12.012000px;}
.v6{vertical-align:-5.964000px;}
.v5{vertical-align:-4.284000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.964000px;}
.v4{vertical-align:12.012000px;}
.v2{vertical-align:13.761600px;}
.v9{vertical-align:17.982000px;}
.lse{letter-spacing:-15.480000px;}
.ls13{letter-spacing:-8.640000px;}
.ls21{letter-spacing:-6.720000px;}
.ls39{letter-spacing:-6.264000px;}
.ls48{letter-spacing:-5.994000px;}
.ls24{letter-spacing:-5.964000px;}
.ls62{letter-spacing:-4.806000px;}
.ls51{letter-spacing:-4.644000px;}
.ls65{letter-spacing:-4.536000px;}
.ls0{letter-spacing:-4.320000px;}
.ls91{letter-spacing:-4.212000px;}
.ls14{letter-spacing:-4.140000px;}
.ls90{letter-spacing:-4.104000px;}
.ls4b{letter-spacing:-4.050000px;}
.ls17{letter-spacing:-3.960000px;}
.ls2d{letter-spacing:-3.780000px;}
.ls58{letter-spacing:-3.726000px;}
.ls36{letter-spacing:-3.618000px;}
.ls3d{letter-spacing:-3.600000px;}
.ls4e{letter-spacing:-3.564000px;}
.ls5c{letter-spacing:-3.528000px;}
.ls27{letter-spacing:-3.456000px;}
.ls6a{letter-spacing:-3.420000px;}
.ls47{letter-spacing:-3.348000px;}
.ls2c{letter-spacing:-3.300000px;}
.ls9f{letter-spacing:-3.294000px;}
.ls7{letter-spacing:-3.240000px;}
.ls3b{letter-spacing:-3.132000px;}
.ls43{letter-spacing:-3.078000px;}
.ls15{letter-spacing:-3.060000px;}
.ls29{letter-spacing:-3.024000px;}
.ls61{letter-spacing:-2.916000px;}
.ls7f{letter-spacing:-2.808000px;}
.ls8d{letter-spacing:-2.754000px;}
.ls98{letter-spacing:-2.745000px;}
.ls84{letter-spacing:-2.700000px;}
.ls71{letter-spacing:-2.580000px;}
.ls18{letter-spacing:-2.520000px;}
.ls83{letter-spacing:-2.484000px;}
.ls6b{letter-spacing:-2.430000px;}
.ls89{letter-spacing:-2.400000px;}
.ls44{letter-spacing:-2.376000px;}
.ls9b{letter-spacing:-2.322000px;}
.ls2f{letter-spacing:-2.280000px;}
.lsa1{letter-spacing:-2.220000px;}
.ls12{letter-spacing:-2.160000px;}
.ls60{letter-spacing:-2.106000px;}
.ls70{letter-spacing:-2.100000px;}
.ls55{letter-spacing:-1.998000px;}
.ls34{letter-spacing:-1.944000px;}
.ls76{letter-spacing:-1.920000px;}
.ls7e{letter-spacing:-1.782000px;}
.ls7d{letter-spacing:-1.680000px;}
.ls72{letter-spacing:-1.512000px;}
.ls2a{letter-spacing:-1.500000px;}
.ls9c{letter-spacing:-1.458000px;}
.ls26{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.428000px;}
.ls4a{letter-spacing:-1.350000px;}
.ls23{letter-spacing:-1.344000px;}
.ls46{letter-spacing:-1.260000px;}
.ls1c{letter-spacing:-1.242000px;}
.ls8a{letter-spacing:-1.215000px;}
.ls57{letter-spacing:-1.188000px;}
.ls8b{letter-spacing:-1.134000px;}
.ls3e{letter-spacing:-1.092000px;}
.ls25{letter-spacing:-1.080000px;}
.ls80{letter-spacing:-1.070388px;}
.ls97{letter-spacing:-1.035000px;}
.ls92{letter-spacing:-1.020000px;}
.lsc{letter-spacing:-1.008000px;}
.ls5e{letter-spacing:-0.960000px;}
.lsa4{letter-spacing:-0.918000px;}
.lsa2{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.840000px;}
.ls49{letter-spacing:-0.810000px;}
.ls5f{letter-spacing:-0.792000px;}
.ls53{letter-spacing:-0.780000px;}
.ls74{letter-spacing:-0.756000px;}
.ls4{letter-spacing:-0.648000px;}
.ls4d{letter-spacing:-0.630000px;}
.ls6e{letter-spacing:-0.600000px;}
.ls33{letter-spacing:-0.594000px;}
.ls3f{letter-spacing:-0.588000px;}
.ls31{letter-spacing:-0.540000px;}
.ls94{letter-spacing:-0.495000px;}
.ls50{letter-spacing:-0.480000px;}
.ls42{letter-spacing:-0.462000px;}
.ls4c{letter-spacing:-0.450000px;}
.ls77{letter-spacing:-0.432000px;}
.ls73{letter-spacing:-0.420000px;}
.ls28{letter-spacing:-0.378000px;}
.ls85{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.330000px;}
.ls32{letter-spacing:-0.324000px;}
.ls6c{letter-spacing:-0.300000px;}
.ls2e{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.252000px;}
.ls7c{letter-spacing:-0.240000px;}
.ls9a{letter-spacing:-0.225000px;}
.ls30{letter-spacing:-0.216000px;}
.ls5d{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.168000px;}
.lsa{letter-spacing:-0.162000px;}
.ls45{letter-spacing:-0.120000px;}
.lsb{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls87{letter-spacing:0.004608px;}
.ls95{letter-spacing:0.045000px;}
.lsd{letter-spacing:0.054000px;}
.ls41{letter-spacing:0.060000px;}
.ls35{letter-spacing:0.108000px;}
.ls64{letter-spacing:0.135000px;}
.ls78{letter-spacing:0.145800px;}
.ls3a{letter-spacing:0.162000px;}
.ls40{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.216000px;}
.ls75{letter-spacing:0.240000px;}
.ls86{letter-spacing:0.252000px;}
.lsa0{letter-spacing:0.270000px;}
.ls82{letter-spacing:0.300000px;}
.ls8e{letter-spacing:0.315000px;}
.ls1e{letter-spacing:0.324000px;}
.ls4f{letter-spacing:0.360000px;}
.ls93{letter-spacing:0.378000px;}
.ls5{letter-spacing:0.432000px;}
.ls9e{letter-spacing:0.450000px;}
.lsa5{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.486000px;}
.ls96{letter-spacing:0.495000px;}
.ls79{letter-spacing:0.502008px;}
.ls7b{letter-spacing:0.530208px;}
.ls37{letter-spacing:0.540000px;}
.ls3c{letter-spacing:0.594000px;}
.ls88{letter-spacing:0.600000px;}
.ls54{letter-spacing:0.648000px;}
.lsa3{letter-spacing:0.672000px;}
.ls10{letter-spacing:0.702000px;}
.ls52{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.756000px;}
.ls68{letter-spacing:0.765000px;}
.ls81{letter-spacing:0.780000px;}
.ls9{letter-spacing:0.810000px;}
.ls99{letter-spacing:0.855000px;}
.ls38{letter-spacing:0.864000px;}
.ls7a{letter-spacing:0.889008px;}
.ls8f{letter-spacing:0.900000px;}
.ls5a{letter-spacing:0.972000px;}
.ls19{letter-spacing:1.008000px;}
.ls6f{letter-spacing:1.020000px;}
.ls2b{letter-spacing:1.026000px;}
.ls8c{letter-spacing:1.134000px;}
.ls59{letter-spacing:1.188000px;}
.ls69{letter-spacing:1.200000px;}
.ls63{letter-spacing:1.215000px;}
.ls11{letter-spacing:1.242000px;}
.ls66{letter-spacing:1.305000px;}
.ls6{letter-spacing:1.350000px;}
.ls3{letter-spacing:1.404000px;}
.ls5b{letter-spacing:1.674000px;}
.ls1{letter-spacing:1.728000px;}
.ls6d{letter-spacing:1.740000px;}
.ls67{letter-spacing:2.700000px;}
.ls9d{letter-spacing:4.725000px;}
.ls20{letter-spacing:3877.356000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa8{word-spacing:-52.020000px;}
.ws72{word-spacing:-51.840000px;}
.wscf{word-spacing:-50.940000px;}
.ws1a{word-spacing:-49.860000px;}
.wsa9{word-spacing:-49.320000px;}
.ws5{word-spacing:-49.140000px;}
.ws22{word-spacing:-24.444000px;}
.wsa{word-spacing:-24.192000px;}
.ws8{word-spacing:-23.604000px;}
.ws9{word-spacing:-23.016000px;}
.ws1c{word-spacing:-18.876000px;}
.ws77{word-spacing:-18.414000px;}
.ws6c{word-spacing:-16.686000px;}
.ws8d{word-spacing:-16.578000px;}
.ws64{word-spacing:-16.362000px;}
.ws69{word-spacing:-16.200000px;}
.ws6a{word-spacing:-15.984000px;}
.ws38{word-spacing:-15.876000px;}
.ws59{word-spacing:-15.822000px;}
.ws7e{word-spacing:-15.795000px;}
.ws66{word-spacing:-15.768000px;}
.ws63{word-spacing:-15.660000px;}
.ws3e{word-spacing:-15.606000px;}
.ws37{word-spacing:-15.552000px;}
.ws88{word-spacing:-15.498000px;}
.ws4{word-spacing:-15.444000px;}
.wsb2{word-spacing:-15.390000px;}
.ws6b{word-spacing:-15.336000px;}
.ws1d{word-spacing:-15.228000px;}
.ws2d{word-spacing:-15.180000px;}
.ws68{word-spacing:-15.174000px;}
.ws35{word-spacing:-15.120000px;}
.ws3b{word-spacing:-15.066000px;}
.ws3c{word-spacing:-15.012000px;}
.ws36{word-spacing:-14.958000px;}
.ws65{word-spacing:-14.904000px;}
.ws6d{word-spacing:-14.796000px;}
.ws3a{word-spacing:-14.742000px;}
.ws34{word-spacing:-14.688000px;}
.wsd0{word-spacing:-14.520000px;}
.ws7d{word-spacing:-14.400000px;}
.ws3{word-spacing:-14.364000px;}
.ws7a{word-spacing:-14.310000px;}
.wsad{word-spacing:-14.280000px;}
.wsbf{word-spacing:-14.256000px;}
.wsbe{word-spacing:-13.932000px;}
.ws7f{word-spacing:-13.860000px;}
.ws67{word-spacing:-13.824000px;}
.ws5d{word-spacing:-13.770000px;}
.ws78{word-spacing:-13.608000px;}
.wsae{word-spacing:-13.284000px;}
.ws7b{word-spacing:-13.230000px;}
.wsbc{word-spacing:-13.005000px;}
.wsb3{word-spacing:-12.960000px;}
.wsbd{word-spacing:-12.870000px;}
.wsbb{word-spacing:-12.555000px;}
.ws4f{word-spacing:-12.366000px;}
.ws9c{word-spacing:-12.204000px;}
.wsb1{word-spacing:-12.150000px;}
.ws3d{word-spacing:-11.880000px;}
.ws7c{word-spacing:-11.178000px;}
.ws5e{word-spacing:-11.070000px;}
.ws79{word-spacing:-10.908000px;}
.ws50{word-spacing:-9.720000px;}
.ws9e{word-spacing:-8.751996px;}
.ws39{word-spacing:-8.748000px;}
.ws9d{word-spacing:-7.681608px;}
.wsc8{word-spacing:-4.725000px;}
.wsc0{word-spacing:-3.672000px;}
.ws62{word-spacing:-2.700000px;}
.ws6{word-spacing:-1.404000px;}
.ws7{word-spacing:-1.350000px;}
.ws14{word-spacing:-1.242000px;}
.wsca{word-spacing:-1.215000px;}
.wsb5{word-spacing:-1.134000px;}
.ws2e{word-spacing:-1.026000px;}
.ws1b{word-spacing:-1.008000px;}
.wsb7{word-spacing:-0.900000px;}
.wsa0{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.810000px;}
.wsa2{word-spacing:-0.780000px;}
.ws71{word-spacing:-0.756000px;}
.ws56{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.702000px;}
.wsd1{word-spacing:-0.672000px;}
.wsa6{word-spacing:-0.648000px;}
.ws5b{word-spacing:-0.594000px;}
.ws43{word-spacing:-0.540000px;}
.wsc6{word-spacing:-0.495000px;}
.ws1e{word-spacing:-0.486000px;}
.wsd2{word-spacing:-0.480000px;}
.wsc9{word-spacing:-0.450000px;}
.wse{word-spacing:-0.432000px;}
.wsc1{word-spacing:-0.378000px;}
.ws20{word-spacing:-0.324000px;}
.wsa4{word-spacing:-0.300000px;}
.wscc{word-spacing:-0.270000px;}
.wsab{word-spacing:-0.252000px;}
.ws4c{word-spacing:-0.216000px;}
.ws81{word-spacing:-0.180000px;}
.ws44{word-spacing:-0.162000px;}
.ws60{word-spacing:-0.108000px;}
.ws49{word-spacing:-0.060000px;}
.ws11{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws21{word-spacing:0.054000px;}
.wsf{word-spacing:0.108000px;}
.wsc{word-spacing:0.162000px;}
.ws24{word-spacing:0.168000px;}
.ws74{word-spacing:0.180000px;}
.ws33{word-spacing:0.216000px;}
.ws31{word-spacing:0.270000px;}
.ws89{word-spacing:0.300000px;}
.ws96{word-spacing:0.330000px;}
.ws2a{word-spacing:0.378000px;}
.ws93{word-spacing:0.420000px;}
.ws9a{word-spacing:0.432000px;}
.wsc3{word-spacing:0.450000px;}
.ws4a{word-spacing:0.462000px;}
.ws5a{word-spacing:0.480000px;}
.wsc2{word-spacing:0.495000px;}
.ws3f{word-spacing:0.540000px;}
.ws47{word-spacing:0.588000px;}
.ws40{word-spacing:0.594000px;}
.ws8b{word-spacing:0.600000px;}
.ws97{word-spacing:0.648000px;}
.ws94{word-spacing:0.756000px;}
.ws6e{word-spacing:0.780000px;}
.ws52{word-spacing:0.810000px;}
.wsd{word-spacing:0.840000px;}
.wsce{word-spacing:0.864000px;}
.ws80{word-spacing:0.960000px;}
.ws10{word-spacing:1.008000px;}
.wsc4{word-spacing:1.035000px;}
.ws91{word-spacing:1.080000px;}
.ws46{word-spacing:1.092000px;}
.wsb4{word-spacing:1.134000px;}
.wsa7{word-spacing:1.188000px;}
.wsaf{word-spacing:1.215000px;}
.ws1f{word-spacing:1.242000px;}
.ws51{word-spacing:1.260000px;}
.ws25{word-spacing:1.344000px;}
.ws53{word-spacing:1.350000px;}
.ws28{word-spacing:1.440000px;}
.ws92{word-spacing:1.512000px;}
.ws9f{word-spacing:1.680000px;}
.wsa1{word-spacing:1.782000px;}
.ws99{word-spacing:1.920000px;}
.ws41{word-spacing:1.944000px;}
.ws6f{word-spacing:1.998000px;}
.ws8e{word-spacing:2.100000px;}
.ws15{word-spacing:2.160000px;}
.ws32{word-spacing:2.280000px;}
.wsc7{word-spacing:2.322000px;}
.ws4d{word-spacing:2.376000px;}
.ws86{word-spacing:2.430000px;}
.wsa5{word-spacing:2.484000px;}
.ws5f{word-spacing:2.520000px;}
.ws90{word-spacing:2.580000px;}
.wsaa{word-spacing:2.700000px;}
.wsc5{word-spacing:2.745000px;}
.ws2b{word-spacing:3.024000px;}
.ws18{word-spacing:3.060000px;}
.ws4b{word-spacing:3.078000px;}
.ws75{word-spacing:3.240000px;}
.wscb{word-spacing:3.294000px;}
.ws82{word-spacing:3.348000px;}
.ws85{word-spacing:3.420000px;}
.ws29{word-spacing:3.456000px;}
.ws73{word-spacing:3.528000px;}
.ws57{word-spacing:3.564000px;}
.ws45{word-spacing:3.600000px;}
.ws42{word-spacing:3.618000px;}
.ws70{word-spacing:3.726000px;}
.ws30{word-spacing:3.780000px;}
.ws19{word-spacing:3.960000px;}
.ws54{word-spacing:4.050000px;}
.wsb8{word-spacing:4.104000px;}
.ws17{word-spacing:4.140000px;}
.wsb9{word-spacing:4.212000px;}
.ws1{word-spacing:4.320000px;}
.ws26{word-spacing:5.964000px;}
.ws23{word-spacing:6.720000px;}
.ws16{word-spacing:8.640000px;}
.ws12{word-spacing:15.480000px;}
.ws61{word-spacing:17.955000px;}
.ws55{word-spacing:18.945000px;}
.wsb6{word-spacing:46.395000px;}
.ws0{word-spacing:354.375000px;}
.ws84{word-spacing:2475.976800px;}
.ws8a{word-spacing:4742.040000px;}
.ws83{word-spacing:4743.180000px;}
.ws8c{word-spacing:4743.504000px;}
.wsb0{word-spacing:4743.960000px;}
.wsac{word-spacing:4744.320000px;}
.ws58{word-spacing:4744.800000px;}
.ws95{word-spacing:4745.040000px;}
.ws48{word-spacing:4745.160000px;}
.ws5c{word-spacing:4745.460000px;}
.ws76{word-spacing:4745.580000px;}
.ws4e{word-spacing:4745.760000px;}
.ws9b{word-spacing:4746.000000px;}
.ws8f{word-spacing:4746.120000px;}
.ws98{word-spacing:4746.540000px;}
.wsa3{word-spacing:4746.600000px;}
.wsba{word-spacing:4747.560000px;}
.ws27{word-spacing:4747.680000px;}
.ws87{word-spacing:4748.100000px;}
.wscd{word-spacing:4749.960000px;}
.ws2f{word-spacing:4752.120000px;}
.ws2c{word-spacing:4753.860000px;}
._2a{margin-left:-4891.800000px;}
._21{margin-left:-3226.773600px;}
._19{margin-left:-18.466200px;}
._18{margin-left:-15.777105px;}
._16{margin-left:-14.698175px;}
._28{margin-left:-12.461400px;}
._17{margin-left:-8.553600px;}
._2{margin-left:-6.674400px;}
._5{margin-left:-5.616000px;}
._11{margin-left:-4.613400px;}
._6{margin-left:-3.607200px;}
._4{margin-left:-2.505600px;}
._7{margin-left:-1.468800px;}
._3{width:1.533600px;}
._1{width:3.369600px;}
._b{width:4.762800px;}
._0{width:6.264000px;}
._d{width:7.651800px;}
._e{width:8.964000px;}
._15{width:10.395900px;}
._14{width:12.057300px;}
._1e{width:13.694400px;}
._27{width:16.917300px;}
._25{width:18.293400px;}
._10{width:22.986000px;}
._26{width:25.977600px;}
._20{width:29.196000px;}
._1d{width:30.889800px;}
._24{width:75.399438px;}
._13{width:108.000554px;}
._1b{width:118.714500px;}
._29{width:124.697535px;}
._1a{width:126.717992px;}
._f{width:128.458108px;}
._22{width:130.973400px;}
._1c{width:133.126200px;}
._23{width:136.516512px;}
._9{width:848.880000px;}
._a{width:1314.000000px;}
._8{width:1906.719600px;}
._1f{width:2238.848400px;}
._12{width:2335.375200px;}
._c{width:2448.238800px;}
.fc7{color:rgb(43,108,104);}
.fc2{color:transparent;}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(49,79,169);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc3{color:rgb(43,108,103);}
.fc0{color:rgb(0,0,255);}
.fs7{font-size:31.482000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:180.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:58.235850px;}
.y5f{bottom:58.858950px;}
.y2{bottom:73.811550px;}
.y1e{bottom:74.338650px;}
.y12f{bottom:74.384550px;}
.y57{bottom:74.395350px;}
.y10b{bottom:74.399400px;}
.y2b{bottom:74.405400px;}
.y100{bottom:74.407500px;}
.ya0{bottom:74.409450px;}
.y137{bottom:74.412000px;}
.y136{bottom:74.414400px;}
.y5d{bottom:74.419950px;}
.y38{bottom:75.483000px;}
.y114{bottom:75.518400px;}
.yf2{bottom:76.227000px;}
.yb4{bottom:76.545900px;}
.y1d{bottom:90.498150px;}
.y56{bottom:90.554850px;}
.y10a{bottom:90.558900px;}
.y117{bottom:90.560850px;}
.y6e{bottom:90.562950px;}
.y2a{bottom:90.564900px;}
.yc8{bottom:90.566850px;}
.y94{bottom:90.567000px;}
.ye4{bottom:90.569400px;}
.y12e{bottom:99.584550px;}
.y5c{bottom:99.619950px;}
.y37{bottom:100.683000px;}
.y113{bottom:100.718400px;}
.yf1{bottom:101.427000px;}
.yb3{bottom:101.745900px;}
.y14b{bottom:106.710300px;}
.y55{bottom:106.714350px;}
.y11c{bottom:106.716300px;}
.y109{bottom:106.718400px;}
.y10d{bottom:106.720350px;}
.y6d{bottom:106.722450px;}
.y29{bottom:106.724400px;}
.yf4{bottom:106.729350px;}
.y1{bottom:118.793550px;}
.y1c{bottom:122.817150px;}
.y14a{bottom:122.869800px;}
.y106{bottom:122.873850px;}
.y11b{bottom:122.875800px;}
.y108{bottom:122.877900px;}
.y10c{bottom:122.879850px;}
.yc7{bottom:122.881800px;}
.y6c{bottom:122.881950px;}
.yf3{bottom:122.884350px;}
.y12d{bottom:124.784550px;}
.y5b{bottom:124.819950px;}
.y36{bottom:125.883000px;}
.y112{bottom:125.918400px;}
.yf0{bottom:126.627000px;}
.yb2{bottom:126.945900px;}
.y1b{bottom:138.976650px;}
.yc5{bottom:139.021200px;}
.ye8{bottom:139.031250px;}
.y54{bottom:139.033350px;}
.y11a{bottom:139.035300px;}
.yc6{bottom:139.037400px;}
.y2d{bottom:139.039350px;}
.ye3{bottom:139.041900px;}
.y131{bottom:139.044300px;}
.y28{bottom:142.430700px;}
.y12c{bottom:149.984550px;}
.y5a{bottom:150.019950px;}
.y35{bottom:151.083000px;}
.y111{bottom:151.118400px;}
.yef{bottom:151.827000px;}
.yb1{bottom:152.145900px;}
.yc4{bottom:155.180700px;}
.yff{bottom:155.182650px;}
.y9f{bottom:155.188800px;}
.y119{bottom:155.189400px;}
.y8d{bottom:155.190750px;}
.y53{bottom:155.192850px;}
.y6b{bottom:155.194800px;}
.y156{bottom:155.196750px;}
.y82{bottom:155.196900px;}
.y130{bottom:155.199300px;}
.y1a{bottom:171.295650px;}
.yc3{bottom:171.340200px;}
.y13f{bottom:171.344250px;}
.y155{bottom:171.346200px;}
.y9e{bottom:171.348300px;}
.y118{bottom:171.348900px;}
.y8c{bottom:171.350250px;}
.y52{bottom:171.352350px;}
.y6a{bottom:171.354300px;}
.y12b{bottom:175.184550px;}
.y59{bottom:175.219950px;}
.y34{bottom:176.283000px;}
.y110{bottom:176.318400px;}
.yee{bottom:177.027150px;}
.yb0{bottom:177.346050px;}
.y19{bottom:187.455150px;}
.yda{bottom:187.495650px;}
.yc2{bottom:187.499700px;}
.yfe{bottom:187.501650px;}
.y13e{bottom:187.503750px;}
.y154{bottom:187.505700px;}
.y81{bottom:187.507800px;}
.y8b{bottom:187.509750px;}
.y31{bottom:187.511850px;}
.y2e{bottom:187.516350px;}
.yd9{bottom:203.655150px;}
.yc1{bottom:203.659200px;}
.yfd{bottom:203.661150px;}
.y13d{bottom:203.663250px;}
.yd0{bottom:203.665200px;}
.y69{bottom:203.667300px;}
.y51{bottom:203.669250px;}
.y18{bottom:219.774150px;}
.y144{bottom:219.810600px;}
.yd3{bottom:219.812700px;}
.yd8{bottom:219.814650px;}
.ye2{bottom:219.816750px;}
.yc0{bottom:219.818700px;}
.yfc{bottom:219.820650px;}
.y13c{bottom:219.822750px;}
.y8e{bottom:219.824700px;}
.y50{bottom:219.826800px;}
.y12a{bottom:220.184550px;}
.y10f{bottom:221.318400px;}
.yed{bottom:222.027150px;}
.yea{bottom:235.557150px;}
.y17{bottom:235.933650px;}
.y8a{bottom:235.964100px;}
.y143{bottom:235.970100px;}
.yd2{bottom:235.972200px;}
.yd7{bottom:235.974150px;}
.ye1{bottom:235.976250px;}
.ybf{bottom:235.978200px;}
.yfb{bottom:235.980150px;}
.ycf{bottom:235.982250px;}
.y4f{bottom:235.984200px;}
.y16{bottom:252.093150px;}
.y89{bottom:252.123600px;}
.y105{bottom:252.127650px;}
.y142{bottom:252.129600px;}
.yd1{bottom:252.131700px;}
.yd6{bottom:252.133650px;}
.ye0{bottom:252.135750px;}
.y80{bottom:252.137700px;}
.y9d{bottom:252.139650px;}
.y30{bottom:252.141750px;}
.y129{bottom:265.184550px;}
.y10e{bottom:266.318400px;}
.yec{bottom:267.027150px;}
.y15{bottom:268.252650px;}
.y88{bottom:268.283100px;}
.y104{bottom:268.287150px;}
.y141{bottom:268.289100px;}
.yae{bottom:268.291200px;}
.yd5{bottom:268.293150px;}
.ydf{bottom:268.295250px;}
.y4e{bottom:268.297200px;}
.y68{bottom:268.299150px;}
.y14{bottom:284.412150px;}
.y87{bottom:284.442600px;}
.y103{bottom:284.446650px;}
.y93{bottom:284.448600px;}
.yad{bottom:284.450700px;}
.yd4{bottom:284.452650px;}
.yde{bottom:284.454750px;}
.y4d{bottom:284.456700px;}
.y13{bottom:300.571650px;}
.y86{bottom:300.602100px;}
.y13b{bottom:300.604050px;}
.y102{bottom:300.606150px;}
.y92{bottom:300.608100px;}
.yac{bottom:300.610200px;}
.y67{bottom:300.612150px;}
.y153{bottom:300.614100px;}
.y4c{bottom:300.614250px;}
.y128{bottom:310.184550px;}
.yeb{bottom:312.027150px;}
.y7f{bottom:316.761600px;}
.y13a{bottom:316.763550px;}
.y101{bottom:316.765650px;}
.y91{bottom:316.767600px;}
.yab{bottom:316.769700px;}
.y4b{bottom:316.771650px;}
.y12{bottom:332.890650px;}
.y116{bottom:332.919000px;}
.y7e{bottom:332.921100px;}
.y139{bottom:332.923050px;}
.ydb{bottom:332.925150px;}
.y90{bottom:332.927100px;}
.y4a{bottom:332.929200px;}
.y2f{bottom:333.131550px;}
.y11{bottom:349.050150px;}
.y9c{bottom:349.066350px;}
.y146{bottom:349.072500px;}
.y7d{bottom:349.080600px;}
.y138{bottom:349.082550px;}
.yce{bottom:349.084650px;}
.y49{bottom:349.086600px;}
.y127{bottom:355.184550px;}
.y9b{bottom:365.225850px;}
.y145{bottom:365.232000px;}
.y121{bottom:365.236050px;}
.y115{bottom:365.238000px;}
.y7c{bottom:365.240100px;}
.yaa{bottom:365.242050px;}
.y152{bottom:365.244000px;}
.y48{bottom:365.244150px;}
.y125{bottom:365.446500px;}
.y10{bottom:381.369150px;}
.y9a{bottom:381.385350px;}
.ybe{bottom:381.391500px;}
.y151{bottom:381.395400px;}
.ye7{bottom:381.395550px;}
.yfa{bottom:381.397500px;}
.y7b{bottom:381.399600px;}
.y47{bottom:381.401550px;}
.yf{bottom:397.528650px;}
.ydd{bottom:397.544850px;}
.ybd{bottom:397.551000px;}
.y46{bottom:397.552950px;}
.y150{bottom:397.554900px;}
.y27{bottom:397.555050px;}
.yf9{bottom:397.557000px;}
.y66{bottom:397.559100px;}
.ye{bottom:413.688150px;}
.y135{bottom:413.700450px;}
.y99{bottom:413.704350px;}
.ya9{bottom:413.710500px;}
.y45{bottom:413.712450px;}
.y26{bottom:413.714550px;}
.y65{bottom:413.716500px;}
.yd{bottom:429.847650px;}
.y134{bottom:429.859950px;}
.y98{bottom:429.863850px;}
.y7a{bottom:429.865950px;}
.y149{bottom:429.867900px;}
.y64{bottom:429.870000px;}
.y44{bottom:429.871950px;}
.y14f{bottom:429.873900px;}
.y25{bottom:429.874050px;}
.yc{bottom:446.007150px;}
.y124{bottom:446.019450px;}
.y97{bottom:446.023350px;}
.y79{bottom:446.025450px;}
.yf8{bottom:446.027400px;}
.y63{bottom:446.029500px;}
.y43{bottom:446.031450px;}
.yb{bottom:462.166650px;}
.ye6{bottom:462.168750px;}
.y123{bottom:462.178950px;}
.y147{bottom:462.180900px;}
.y96{bottom:462.182850px;}
.y78{bottom:462.184950px;}
.yf7{bottom:462.186900px;}
.y24{bottom:462.189000px;}
.ye5{bottom:478.328250px;}
.y85{bottom:478.334400px;}
.y73{bottom:478.336350px;}
.y122{bottom:478.338450px;}
.ycd{bottom:478.340400px;}
.y95{bottom:478.342350px;}
.y77{bottom:478.344450px;}
.y42{bottom:478.346400px;}
.ya{bottom:494.485650px;}
.ya8{bottom:494.487750px;}
.y14e{bottom:494.491800px;}
.y84{bottom:494.493900px;}
.y72{bottom:494.495850px;}
.ybc{bottom:494.497950px;}
.ycc{bottom:494.499900px;}
.y8f{bottom:494.501850px;}
.y41{bottom:494.503950px;}
.y9{bottom:510.645150px;}
.ya7{bottom:510.647250px;}
.y14d{bottom:510.651300px;}
.y83{bottom:510.653400px;}
.y107{bottom:510.655350px;}
.ybb{bottom:510.657450px;}
.ycb{bottom:510.659400px;}
.y2c{bottom:510.661350px;}
.ya6{bottom:526.806750px;}
.y14c{bottom:526.810800px;}
.y40{bottom:526.812900px;}
.y71{bottom:526.814850px;}
.y76{bottom:526.816950px;}
.y62{bottom:526.818900px;}
.y23{bottom:527.161350px;}
.y8{bottom:542.964150px;}
.ya5{bottom:542.966250px;}
.yf6{bottom:542.968350px;}
.y133{bottom:542.970300px;}
.y3f{bottom:542.972400px;}
.y61{bottom:542.974350px;}
.y75{bottom:542.976450px;}
.y7{bottom:559.123650px;}
.ya4{bottom:559.125750px;}
.ydc{bottom:559.127850px;}
.y132{bottom:559.129800px;}
.yb9{bottom:559.131750px;}
.y3e{bottom:559.131900px;}
.y60{bottom:559.133850px;}
.y120{bottom:575.274300px;}
.y6{bottom:575.283150px;}
.ya3{bottom:575.285250px;}
.y22{bottom:575.287350px;}
.y74{bottom:575.289300px;}
.yb8{bottom:575.291250px;}
.y3d{bottom:575.291400px;}
.y11f{bottom:591.433800px;}
.ya2{bottom:591.444750px;}
.y21{bottom:591.446850px;}
.y3c{bottom:591.448800px;}
.yb5{bottom:593.775900px;}
.y11e{bottom:607.593300px;}
.y70{bottom:607.599450px;}
.y5{bottom:607.602150px;}
.yca{bottom:607.603350px;}
.ya1{bottom:607.604250px;}
.yb7{bottom:607.606200px;}
.y20{bottom:607.606350px;}
.y148{bottom:612.109800px;}
.y32{bottom:612.131850px;}
.yf5{bottom:620.777250px;}
.y11d{bottom:623.752800px;}
.yba{bottom:623.756250px;}
.y140{bottom:623.756850px;}
.y6f{bottom:623.758950px;}
.y4{bottom:623.761650px;}
.yc9{bottom:623.762850px;}
.y3b{bottom:623.763750px;}
.ye9{bottom:623.764950px;}
.yb6{bottom:630.336900px;}
.y33{bottom:630.344100px;}
.y5e{bottom:631.402950px;}
.yaf{bottom:631.407150px;}
.y126{bottom:631.411500px;}
.y3{bottom:639.921150px;}
.y1f{bottom:640.123650px;}
.y3a{bottom:670.542600px;}
.y39{bottom:672.107400px;}
.he{height:39.524414px;}
.hd{height:39.814453px;}
.h3{height:40.130859px;}
.h4{height:40.394531px;}
.hc{height:41.739258px;}
.h8{height:47.777344px;}
.h5{height:48.172852px;}
.h10{height:48.197452px;}
.hf{height:48.205252px;}
.ha{height:53.525391px;}
.hb{height:58.394531px;}
.h7{height:74.320312px;}
.h9{height:159.257812px;}
.h6{height:173.019412px;}
.h2{height:191.109375px;}
.h0{height:710.079000px;}
.h1{height:710.250000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.w2{width:1275.591000px;}
.w3{width:1275.750000px;}
.x0{left:0.000000px;}
.xf{left:26.103600px;}
.x2{left:55.275600px;}
.x14{left:68.033100px;}
.x1{left:85.039350px;}
.x18{left:204.094500px;}
.x24{left:234.359400px;}
.x20{left:251.050050px;}
.x16{left:262.458450px;}
.x10{left:276.678300px;}
.x1c{left:282.997950px;}
.x3{left:327.614100px;}
.x5{left:329.527500px;}
.x23{left:416.692950px;}
.x1b{left:526.893600px;}
.x1a{left:549.280350px;}
.x7{left:721.147500px;}
.x4{left:722.502150px;}
.xa{left:730.854300px;}
.x11{left:734.741700px;}
.x13{left:735.803100px;}
.xe{left:871.653450px;}
.x1f{left:884.411100px;}
.x22{left:900.642900px;}
.x21{left:917.333400px;}
.x17{left:930.017550px;}
.x12{left:944.237400px;}
.x1d{left:949.281450px;}
.xc{left:951.863850px;}
.x19{left:961.001700px;}
.x1e{left:968.230050px;}
.x6{left:996.236250px;}
.x8{left:997.936950px;}
.x15{left:1196.907300px;}
.xd{left:1198.432650px;}
.x9{left:1208.963250px;}
.xb{left:1233.070800px;}
@media print{
.v1{vertical-align:-89.664000pt;}
.v8{vertical-align:-15.984000pt;}
.v3{vertical-align:-10.677333pt;}
.v6{vertical-align:-5.301333pt;}
.v5{vertical-align:-3.808000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.301333pt;}
.v4{vertical-align:10.677333pt;}
.v2{vertical-align:12.232533pt;}
.v9{vertical-align:15.984000pt;}
.lse{letter-spacing:-13.760000pt;}
.ls13{letter-spacing:-7.680000pt;}
.ls21{letter-spacing:-5.973333pt;}
.ls39{letter-spacing:-5.568000pt;}
.ls48{letter-spacing:-5.328000pt;}
.ls24{letter-spacing:-5.301333pt;}
.ls62{letter-spacing:-4.272000pt;}
.ls51{letter-spacing:-4.128000pt;}
.ls65{letter-spacing:-4.032000pt;}
.ls0{letter-spacing:-3.840000pt;}
.ls91{letter-spacing:-3.744000pt;}
.ls14{letter-spacing:-3.680000pt;}
.ls90{letter-spacing:-3.648000pt;}
.ls4b{letter-spacing:-3.600000pt;}
.ls17{letter-spacing:-3.520000pt;}
.ls2d{letter-spacing:-3.360000pt;}
.ls58{letter-spacing:-3.312000pt;}
.ls36{letter-spacing:-3.216000pt;}
.ls3d{letter-spacing:-3.200000pt;}
.ls4e{letter-spacing:-3.168000pt;}
.ls5c{letter-spacing:-3.136000pt;}
.ls27{letter-spacing:-3.072000pt;}
.ls6a{letter-spacing:-3.040000pt;}
.ls47{letter-spacing:-2.976000pt;}
.ls2c{letter-spacing:-2.933333pt;}
.ls9f{letter-spacing:-2.928000pt;}
.ls7{letter-spacing:-2.880000pt;}
.ls3b{letter-spacing:-2.784000pt;}
.ls43{letter-spacing:-2.736000pt;}
.ls15{letter-spacing:-2.720000pt;}
.ls29{letter-spacing:-2.688000pt;}
.ls61{letter-spacing:-2.592000pt;}
.ls7f{letter-spacing:-2.496000pt;}
.ls8d{letter-spacing:-2.448000pt;}
.ls98{letter-spacing:-2.440000pt;}
.ls84{letter-spacing:-2.400000pt;}
.ls71{letter-spacing:-2.293333pt;}
.ls18{letter-spacing:-2.240000pt;}
.ls83{letter-spacing:-2.208000pt;}
.ls6b{letter-spacing:-2.160000pt;}
.ls89{letter-spacing:-2.133333pt;}
.ls44{letter-spacing:-2.112000pt;}
.ls9b{letter-spacing:-2.064000pt;}
.ls2f{letter-spacing:-2.026667pt;}
.lsa1{letter-spacing:-1.973333pt;}
.ls12{letter-spacing:-1.920000pt;}
.ls60{letter-spacing:-1.872000pt;}
.ls70{letter-spacing:-1.866667pt;}
.ls55{letter-spacing:-1.776000pt;}
.ls34{letter-spacing:-1.728000pt;}
.ls76{letter-spacing:-1.706667pt;}
.ls7e{letter-spacing:-1.584000pt;}
.ls7d{letter-spacing:-1.493333pt;}
.ls72{letter-spacing:-1.344000pt;}
.ls2a{letter-spacing:-1.333333pt;}
.ls9c{letter-spacing:-1.296000pt;}
.ls26{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.269333pt;}
.ls4a{letter-spacing:-1.200000pt;}
.ls23{letter-spacing:-1.194667pt;}
.ls46{letter-spacing:-1.120000pt;}
.ls1c{letter-spacing:-1.104000pt;}
.ls8a{letter-spacing:-1.080000pt;}
.ls57{letter-spacing:-1.056000pt;}
.ls8b{letter-spacing:-1.008000pt;}
.ls3e{letter-spacing:-0.970667pt;}
.ls25{letter-spacing:-0.960000pt;}
.ls80{letter-spacing:-0.951456pt;}
.ls97{letter-spacing:-0.920000pt;}
.ls92{letter-spacing:-0.906667pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls5e{letter-spacing:-0.853333pt;}
.lsa4{letter-spacing:-0.816000pt;}
.lsa2{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.746667pt;}
.ls49{letter-spacing:-0.720000pt;}
.ls5f{letter-spacing:-0.704000pt;}
.ls53{letter-spacing:-0.693333pt;}
.ls74{letter-spacing:-0.672000pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls4d{letter-spacing:-0.560000pt;}
.ls6e{letter-spacing:-0.533333pt;}
.ls33{letter-spacing:-0.528000pt;}
.ls3f{letter-spacing:-0.522667pt;}
.ls31{letter-spacing:-0.480000pt;}
.ls94{letter-spacing:-0.440000pt;}
.ls50{letter-spacing:-0.426667pt;}
.ls42{letter-spacing:-0.410667pt;}
.ls4c{letter-spacing:-0.400000pt;}
.ls77{letter-spacing:-0.384000pt;}
.ls73{letter-spacing:-0.373333pt;}
.ls28{letter-spacing:-0.336000pt;}
.ls85{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.293333pt;}
.ls32{letter-spacing:-0.288000pt;}
.ls6c{letter-spacing:-0.266667pt;}
.ls2e{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.224000pt;}
.ls7c{letter-spacing:-0.213333pt;}
.ls9a{letter-spacing:-0.200000pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls5d{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.149333pt;}
.lsa{letter-spacing:-0.144000pt;}
.ls45{letter-spacing:-0.106667pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls87{letter-spacing:0.004096pt;}
.ls95{letter-spacing:0.040000pt;}
.lsd{letter-spacing:0.048000pt;}
.ls41{letter-spacing:0.053333pt;}
.ls35{letter-spacing:0.096000pt;}
.ls64{letter-spacing:0.120000pt;}
.ls78{letter-spacing:0.129600pt;}
.ls3a{letter-spacing:0.144000pt;}
.ls40{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls75{letter-spacing:0.213333pt;}
.ls86{letter-spacing:0.224000pt;}
.lsa0{letter-spacing:0.240000pt;}
.ls82{letter-spacing:0.266667pt;}
.ls8e{letter-spacing:0.280000pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls4f{letter-spacing:0.320000pt;}
.ls93{letter-spacing:0.336000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls9e{letter-spacing:0.400000pt;}
.lsa5{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.432000pt;}
.ls96{letter-spacing:0.440000pt;}
.ls79{letter-spacing:0.446229pt;}
.ls7b{letter-spacing:0.471296pt;}
.ls37{letter-spacing:0.480000pt;}
.ls3c{letter-spacing:0.528000pt;}
.ls88{letter-spacing:0.533333pt;}
.ls54{letter-spacing:0.576000pt;}
.lsa3{letter-spacing:0.597333pt;}
.ls10{letter-spacing:0.624000pt;}
.ls52{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.672000pt;}
.ls68{letter-spacing:0.680000pt;}
.ls81{letter-spacing:0.693333pt;}
.ls9{letter-spacing:0.720000pt;}
.ls99{letter-spacing:0.760000pt;}
.ls38{letter-spacing:0.768000pt;}
.ls7a{letter-spacing:0.790229pt;}
.ls8f{letter-spacing:0.800000pt;}
.ls5a{letter-spacing:0.864000pt;}
.ls19{letter-spacing:0.896000pt;}
.ls6f{letter-spacing:0.906667pt;}
.ls2b{letter-spacing:0.912000pt;}
.ls8c{letter-spacing:1.008000pt;}
.ls59{letter-spacing:1.056000pt;}
.ls69{letter-spacing:1.066667pt;}
.ls63{letter-spacing:1.080000pt;}
.ls11{letter-spacing:1.104000pt;}
.ls66{letter-spacing:1.160000pt;}
.ls6{letter-spacing:1.200000pt;}
.ls3{letter-spacing:1.248000pt;}
.ls5b{letter-spacing:1.488000pt;}
.ls1{letter-spacing:1.536000pt;}
.ls6d{letter-spacing:1.546667pt;}
.ls67{letter-spacing:2.400000pt;}
.ls9d{letter-spacing:4.200000pt;}
.ls20{letter-spacing:3446.538667pt;}
.wsa8{word-spacing:-46.240000pt;}
.ws72{word-spacing:-46.080000pt;}
.wscf{word-spacing:-45.280000pt;}
.ws1a{word-spacing:-44.320000pt;}
.wsa9{word-spacing:-43.840000pt;}
.ws5{word-spacing:-43.680000pt;}
.ws22{word-spacing:-21.728000pt;}
.wsa{word-spacing:-21.504000pt;}
.ws8{word-spacing:-20.981333pt;}
.ws9{word-spacing:-20.458667pt;}
.ws1c{word-spacing:-16.778667pt;}
.ws77{word-spacing:-16.368000pt;}
.ws6c{word-spacing:-14.832000pt;}
.ws8d{word-spacing:-14.736000pt;}
.ws64{word-spacing:-14.544000pt;}
.ws69{word-spacing:-14.400000pt;}
.ws6a{word-spacing:-14.208000pt;}
.ws38{word-spacing:-14.112000pt;}
.ws59{word-spacing:-14.064000pt;}
.ws7e{word-spacing:-14.040000pt;}
.ws66{word-spacing:-14.016000pt;}
.ws63{word-spacing:-13.920000pt;}
.ws3e{word-spacing:-13.872000pt;}
.ws37{word-spacing:-13.824000pt;}
.ws88{word-spacing:-13.776000pt;}
.ws4{word-spacing:-13.728000pt;}
.wsb2{word-spacing:-13.680000pt;}
.ws6b{word-spacing:-13.632000pt;}
.ws1d{word-spacing:-13.536000pt;}
.ws2d{word-spacing:-13.493333pt;}
.ws68{word-spacing:-13.488000pt;}
.ws35{word-spacing:-13.440000pt;}
.ws3b{word-spacing:-13.392000pt;}
.ws3c{word-spacing:-13.344000pt;}
.ws36{word-spacing:-13.296000pt;}
.ws65{word-spacing:-13.248000pt;}
.ws6d{word-spacing:-13.152000pt;}
.ws3a{word-spacing:-13.104000pt;}
.ws34{word-spacing:-13.056000pt;}
.wsd0{word-spacing:-12.906667pt;}
.ws7d{word-spacing:-12.800000pt;}
.ws3{word-spacing:-12.768000pt;}
.ws7a{word-spacing:-12.720000pt;}
.wsad{word-spacing:-12.693333pt;}
.wsbf{word-spacing:-12.672000pt;}
.wsbe{word-spacing:-12.384000pt;}
.ws7f{word-spacing:-12.320000pt;}
.ws67{word-spacing:-12.288000pt;}
.ws5d{word-spacing:-12.240000pt;}
.ws78{word-spacing:-12.096000pt;}
.wsae{word-spacing:-11.808000pt;}
.ws7b{word-spacing:-11.760000pt;}
.wsbc{word-spacing:-11.560000pt;}
.wsb3{word-spacing:-11.520000pt;}
.wsbd{word-spacing:-11.440000pt;}
.wsbb{word-spacing:-11.160000pt;}
.ws4f{word-spacing:-10.992000pt;}
.ws9c{word-spacing:-10.848000pt;}
.wsb1{word-spacing:-10.800000pt;}
.ws3d{word-spacing:-10.560000pt;}
.ws7c{word-spacing:-9.936000pt;}
.ws5e{word-spacing:-9.840000pt;}
.ws79{word-spacing:-9.696000pt;}
.ws50{word-spacing:-8.640000pt;}
.ws9e{word-spacing:-7.779552pt;}
.ws39{word-spacing:-7.776000pt;}
.ws9d{word-spacing:-6.828096pt;}
.wsc8{word-spacing:-4.200000pt;}
.wsc0{word-spacing:-3.264000pt;}
.ws62{word-spacing:-2.400000pt;}
.ws6{word-spacing:-1.248000pt;}
.ws7{word-spacing:-1.200000pt;}
.ws14{word-spacing:-1.104000pt;}
.wsca{word-spacing:-1.080000pt;}
.wsb5{word-spacing:-1.008000pt;}
.ws2e{word-spacing:-0.912000pt;}
.ws1b{word-spacing:-0.896000pt;}
.wsb7{word-spacing:-0.800000pt;}
.wsa0{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.720000pt;}
.wsa2{word-spacing:-0.693333pt;}
.ws71{word-spacing:-0.672000pt;}
.ws56{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.624000pt;}
.wsd1{word-spacing:-0.597333pt;}
.wsa6{word-spacing:-0.576000pt;}
.ws5b{word-spacing:-0.528000pt;}
.ws43{word-spacing:-0.480000pt;}
.wsc6{word-spacing:-0.440000pt;}
.ws1e{word-spacing:-0.432000pt;}
.wsd2{word-spacing:-0.426667pt;}
.wsc9{word-spacing:-0.400000pt;}
.wse{word-spacing:-0.384000pt;}
.wsc1{word-spacing:-0.336000pt;}
.ws20{word-spacing:-0.288000pt;}
.wsa4{word-spacing:-0.266667pt;}
.wscc{word-spacing:-0.240000pt;}
.wsab{word-spacing:-0.224000pt;}
.ws4c{word-spacing:-0.192000pt;}
.ws81{word-spacing:-0.160000pt;}
.ws44{word-spacing:-0.144000pt;}
.ws60{word-spacing:-0.096000pt;}
.ws49{word-spacing:-0.053333pt;}
.ws11{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws21{word-spacing:0.048000pt;}
.wsf{word-spacing:0.096000pt;}
.wsc{word-spacing:0.144000pt;}
.ws24{word-spacing:0.149333pt;}
.ws74{word-spacing:0.160000pt;}
.ws33{word-spacing:0.192000pt;}
.ws31{word-spacing:0.240000pt;}
.ws89{word-spacing:0.266667pt;}
.ws96{word-spacing:0.293333pt;}
.ws2a{word-spacing:0.336000pt;}
.ws93{word-spacing:0.373333pt;}
.ws9a{word-spacing:0.384000pt;}
.wsc3{word-spacing:0.400000pt;}
.ws4a{word-spacing:0.410667pt;}
.ws5a{word-spacing:0.426667pt;}
.wsc2{word-spacing:0.440000pt;}
.ws3f{word-spacing:0.480000pt;}
.ws47{word-spacing:0.522667pt;}
.ws40{word-spacing:0.528000pt;}
.ws8b{word-spacing:0.533333pt;}
.ws97{word-spacing:0.576000pt;}
.ws94{word-spacing:0.672000pt;}
.ws6e{word-spacing:0.693333pt;}
.ws52{word-spacing:0.720000pt;}
.wsd{word-spacing:0.746667pt;}
.wsce{word-spacing:0.768000pt;}
.ws80{word-spacing:0.853333pt;}
.ws10{word-spacing:0.896000pt;}
.wsc4{word-spacing:0.920000pt;}
.ws91{word-spacing:0.960000pt;}
.ws46{word-spacing:0.970667pt;}
.wsb4{word-spacing:1.008000pt;}
.wsa7{word-spacing:1.056000pt;}
.wsaf{word-spacing:1.080000pt;}
.ws1f{word-spacing:1.104000pt;}
.ws51{word-spacing:1.120000pt;}
.ws25{word-spacing:1.194667pt;}
.ws53{word-spacing:1.200000pt;}
.ws28{word-spacing:1.280000pt;}
.ws92{word-spacing:1.344000pt;}
.ws9f{word-spacing:1.493333pt;}
.wsa1{word-spacing:1.584000pt;}
.ws99{word-spacing:1.706667pt;}
.ws41{word-spacing:1.728000pt;}
.ws6f{word-spacing:1.776000pt;}
.ws8e{word-spacing:1.866667pt;}
.ws15{word-spacing:1.920000pt;}
.ws32{word-spacing:2.026667pt;}
.wsc7{word-spacing:2.064000pt;}
.ws4d{word-spacing:2.112000pt;}
.ws86{word-spacing:2.160000pt;}
.wsa5{word-spacing:2.208000pt;}
.ws5f{word-spacing:2.240000pt;}
.ws90{word-spacing:2.293333pt;}
.wsaa{word-spacing:2.400000pt;}
.wsc5{word-spacing:2.440000pt;}
.ws2b{word-spacing:2.688000pt;}
.ws18{word-spacing:2.720000pt;}
.ws4b{word-spacing:2.736000pt;}
.ws75{word-spacing:2.880000pt;}
.wscb{word-spacing:2.928000pt;}
.ws82{word-spacing:2.976000pt;}
.ws85{word-spacing:3.040000pt;}
.ws29{word-spacing:3.072000pt;}
.ws73{word-spacing:3.136000pt;}
.ws57{word-spacing:3.168000pt;}
.ws45{word-spacing:3.200000pt;}
.ws42{word-spacing:3.216000pt;}
.ws70{word-spacing:3.312000pt;}
.ws30{word-spacing:3.360000pt;}
.ws19{word-spacing:3.520000pt;}
.ws54{word-spacing:3.600000pt;}
.wsb8{word-spacing:3.648000pt;}
.ws17{word-spacing:3.680000pt;}
.wsb9{word-spacing:3.744000pt;}
.ws1{word-spacing:3.840000pt;}
.ws26{word-spacing:5.301333pt;}
.ws23{word-spacing:5.973333pt;}
.ws16{word-spacing:7.680000pt;}
.ws12{word-spacing:13.760000pt;}
.ws61{word-spacing:15.960000pt;}
.ws55{word-spacing:16.840000pt;}
.wsb6{word-spacing:41.240000pt;}
.ws0{word-spacing:315.000000pt;}
.ws84{word-spacing:2200.868267pt;}
.ws8a{word-spacing:4215.146667pt;}
.ws83{word-spacing:4216.160000pt;}
.ws8c{word-spacing:4216.448000pt;}
.wsb0{word-spacing:4216.853333pt;}
.wsac{word-spacing:4217.173333pt;}
.ws58{word-spacing:4217.600000pt;}
.ws95{word-spacing:4217.813333pt;}
.ws48{word-spacing:4217.920000pt;}
.ws5c{word-spacing:4218.186667pt;}
.ws76{word-spacing:4218.293333pt;}
.ws4e{word-spacing:4218.453333pt;}
.ws9b{word-spacing:4218.666667pt;}
.ws8f{word-spacing:4218.773333pt;}
.ws98{word-spacing:4219.146667pt;}
.wsa3{word-spacing:4219.200000pt;}
.wsba{word-spacing:4220.053333pt;}
.ws27{word-spacing:4220.160000pt;}
.ws87{word-spacing:4220.533333pt;}
.wscd{word-spacing:4222.186667pt;}
.ws2f{word-spacing:4224.106667pt;}
.ws2c{word-spacing:4225.653333pt;}
._2a{margin-left:-4348.266667pt;}
._21{margin-left:-2868.243200pt;}
._19{margin-left:-16.414400pt;}
._18{margin-left:-14.024094pt;}
._16{margin-left:-13.065044pt;}
._28{margin-left:-11.076800pt;}
._17{margin-left:-7.603200pt;}
._2{margin-left:-5.932800pt;}
._5{margin-left:-4.992000pt;}
._11{margin-left:-4.100800pt;}
._6{margin-left:-3.206400pt;}
._4{margin-left:-2.227200pt;}
._7{margin-left:-1.305600pt;}
._3{width:1.363200pt;}
._1{width:2.995200pt;}
._b{width:4.233600pt;}
._0{width:5.568000pt;}
._d{width:6.801600pt;}
._e{width:7.968000pt;}
._15{width:9.240800pt;}
._14{width:10.717600pt;}
._1e{width:12.172800pt;}
._27{width:15.037600pt;}
._25{width:16.260800pt;}
._10{width:20.432000pt;}
._26{width:23.091200pt;}
._20{width:25.952000pt;}
._1d{width:27.457600pt;}
._24{width:67.021723pt;}
._13{width:96.000492pt;}
._1b{width:105.524000pt;}
._29{width:110.842253pt;}
._1a{width:112.638215pt;}
._f{width:114.184985pt;}
._22{width:116.420800pt;}
._1c{width:118.334400pt;}
._23{width:121.348011pt;}
._9{width:754.560000pt;}
._a{width:1168.000000pt;}
._8{width:1694.861867pt;}
._1f{width:1990.087467pt;}
._12{width:2075.889067pt;}
._c{width:2176.212267pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:160.000000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:51.765200pt;}
.y5f{bottom:52.319067pt;}
.y2{bottom:65.610267pt;}
.y1e{bottom:66.078800pt;}
.y12f{bottom:66.119600pt;}
.y57{bottom:66.129200pt;}
.y10b{bottom:66.132800pt;}
.y2b{bottom:66.138133pt;}
.y100{bottom:66.140000pt;}
.ya0{bottom:66.141733pt;}
.y137{bottom:66.144000pt;}
.y136{bottom:66.146133pt;}
.y5d{bottom:66.151067pt;}
.y38{bottom:67.096000pt;}
.y114{bottom:67.127467pt;}
.yf2{bottom:67.757333pt;}
.yb4{bottom:68.040800pt;}
.y1d{bottom:80.442800pt;}
.y56{bottom:80.493200pt;}
.y10a{bottom:80.496800pt;}
.y117{bottom:80.498533pt;}
.y6e{bottom:80.500400pt;}
.y2a{bottom:80.502133pt;}
.yc8{bottom:80.503867pt;}
.y94{bottom:80.504000pt;}
.ye4{bottom:80.506133pt;}
.y12e{bottom:88.519600pt;}
.y5c{bottom:88.551067pt;}
.y37{bottom:89.496000pt;}
.y113{bottom:89.527467pt;}
.yf1{bottom:90.157333pt;}
.yb3{bottom:90.440800pt;}
.y14b{bottom:94.853600pt;}
.y55{bottom:94.857200pt;}
.y11c{bottom:94.858933pt;}
.y109{bottom:94.860800pt;}
.y10d{bottom:94.862533pt;}
.y6d{bottom:94.864400pt;}
.y29{bottom:94.866133pt;}
.yf4{bottom:94.870533pt;}
.y1{bottom:105.594267pt;}
.y1c{bottom:109.170800pt;}
.y14a{bottom:109.217600pt;}
.y106{bottom:109.221200pt;}
.y11b{bottom:109.222933pt;}
.y108{bottom:109.224800pt;}
.y10c{bottom:109.226533pt;}
.yc7{bottom:109.228267pt;}
.y6c{bottom:109.228400pt;}
.yf3{bottom:109.230533pt;}
.y12d{bottom:110.919600pt;}
.y5b{bottom:110.951067pt;}
.y36{bottom:111.896000pt;}
.y112{bottom:111.927467pt;}
.yf0{bottom:112.557333pt;}
.yb2{bottom:112.840800pt;}
.y1b{bottom:123.534800pt;}
.yc5{bottom:123.574400pt;}
.ye8{bottom:123.583333pt;}
.y54{bottom:123.585200pt;}
.y11a{bottom:123.586933pt;}
.yc6{bottom:123.588800pt;}
.y2d{bottom:123.590533pt;}
.ye3{bottom:123.592800pt;}
.y131{bottom:123.594933pt;}
.y28{bottom:126.605067pt;}
.y12c{bottom:133.319600pt;}
.y5a{bottom:133.351067pt;}
.y35{bottom:134.296000pt;}
.y111{bottom:134.327467pt;}
.yef{bottom:134.957333pt;}
.yb1{bottom:135.240800pt;}
.yc4{bottom:137.938400pt;}
.yff{bottom:137.940133pt;}
.y9f{bottom:137.945600pt;}
.y119{bottom:137.946133pt;}
.y8d{bottom:137.947333pt;}
.y53{bottom:137.949200pt;}
.y6b{bottom:137.950933pt;}
.y156{bottom:137.952667pt;}
.y82{bottom:137.952800pt;}
.y130{bottom:137.954933pt;}
.y1a{bottom:152.262800pt;}
.yc3{bottom:152.302400pt;}
.y13f{bottom:152.306000pt;}
.y155{bottom:152.307733pt;}
.y9e{bottom:152.309600pt;}
.y118{bottom:152.310133pt;}
.y8c{bottom:152.311333pt;}
.y52{bottom:152.313200pt;}
.y6a{bottom:152.314933pt;}
.y12b{bottom:155.719600pt;}
.y59{bottom:155.751067pt;}
.y34{bottom:156.696000pt;}
.y110{bottom:156.727467pt;}
.yee{bottom:157.357467pt;}
.yb0{bottom:157.640933pt;}
.y19{bottom:166.626800pt;}
.yda{bottom:166.662800pt;}
.yc2{bottom:166.666400pt;}
.yfe{bottom:166.668133pt;}
.y13e{bottom:166.670000pt;}
.y154{bottom:166.671733pt;}
.y81{bottom:166.673600pt;}
.y8b{bottom:166.675333pt;}
.y31{bottom:166.677200pt;}
.y2e{bottom:166.681200pt;}
.yd9{bottom:181.026800pt;}
.yc1{bottom:181.030400pt;}
.yfd{bottom:181.032133pt;}
.y13d{bottom:181.034000pt;}
.yd0{bottom:181.035733pt;}
.y69{bottom:181.037600pt;}
.y51{bottom:181.039333pt;}
.y18{bottom:195.354800pt;}
.y144{bottom:195.387200pt;}
.yd3{bottom:195.389067pt;}
.yd8{bottom:195.390800pt;}
.ye2{bottom:195.392667pt;}
.yc0{bottom:195.394400pt;}
.yfc{bottom:195.396133pt;}
.y13c{bottom:195.398000pt;}
.y8e{bottom:195.399733pt;}
.y50{bottom:195.401600pt;}
.y12a{bottom:195.719600pt;}
.y10f{bottom:196.727467pt;}
.yed{bottom:197.357467pt;}
.yea{bottom:209.384133pt;}
.y17{bottom:209.718800pt;}
.y8a{bottom:209.745867pt;}
.y143{bottom:209.751200pt;}
.yd2{bottom:209.753067pt;}
.yd7{bottom:209.754800pt;}
.ye1{bottom:209.756667pt;}
.ybf{bottom:209.758400pt;}
.yfb{bottom:209.760133pt;}
.ycf{bottom:209.762000pt;}
.y4f{bottom:209.763733pt;}
.y16{bottom:224.082800pt;}
.y89{bottom:224.109867pt;}
.y105{bottom:224.113467pt;}
.y142{bottom:224.115200pt;}
.yd1{bottom:224.117067pt;}
.yd6{bottom:224.118800pt;}
.ye0{bottom:224.120667pt;}
.y80{bottom:224.122400pt;}
.y9d{bottom:224.124133pt;}
.y30{bottom:224.126000pt;}
.y129{bottom:235.719600pt;}
.y10e{bottom:236.727467pt;}
.yec{bottom:237.357467pt;}
.y15{bottom:238.446800pt;}
.y88{bottom:238.473867pt;}
.y104{bottom:238.477467pt;}
.y141{bottom:238.479200pt;}
.yae{bottom:238.481067pt;}
.yd5{bottom:238.482800pt;}
.ydf{bottom:238.484667pt;}
.y4e{bottom:238.486400pt;}
.y68{bottom:238.488133pt;}
.y14{bottom:252.810800pt;}
.y87{bottom:252.837867pt;}
.y103{bottom:252.841467pt;}
.y93{bottom:252.843200pt;}
.yad{bottom:252.845067pt;}
.yd4{bottom:252.846800pt;}
.yde{bottom:252.848667pt;}
.y4d{bottom:252.850400pt;}
.y13{bottom:267.174800pt;}
.y86{bottom:267.201867pt;}
.y13b{bottom:267.203600pt;}
.y102{bottom:267.205467pt;}
.y92{bottom:267.207200pt;}
.yac{bottom:267.209067pt;}
.y67{bottom:267.210800pt;}
.y153{bottom:267.212533pt;}
.y4c{bottom:267.212667pt;}
.y128{bottom:275.719600pt;}
.yeb{bottom:277.357467pt;}
.y7f{bottom:281.565867pt;}
.y13a{bottom:281.567600pt;}
.y101{bottom:281.569467pt;}
.y91{bottom:281.571200pt;}
.yab{bottom:281.573067pt;}
.y4b{bottom:281.574800pt;}
.y12{bottom:295.902800pt;}
.y116{bottom:295.928000pt;}
.y7e{bottom:295.929867pt;}
.y139{bottom:295.931600pt;}
.ydb{bottom:295.933467pt;}
.y90{bottom:295.935200pt;}
.y4a{bottom:295.937067pt;}
.y2f{bottom:296.116933pt;}
.y11{bottom:310.266800pt;}
.y9c{bottom:310.281200pt;}
.y146{bottom:310.286667pt;}
.y7d{bottom:310.293867pt;}
.y138{bottom:310.295600pt;}
.yce{bottom:310.297467pt;}
.y49{bottom:310.299200pt;}
.y127{bottom:315.719600pt;}
.y9b{bottom:324.645200pt;}
.y145{bottom:324.650667pt;}
.y121{bottom:324.654267pt;}
.y115{bottom:324.656000pt;}
.y7c{bottom:324.657867pt;}
.yaa{bottom:324.659600pt;}
.y152{bottom:324.661333pt;}
.y48{bottom:324.661467pt;}
.y125{bottom:324.841333pt;}
.y10{bottom:338.994800pt;}
.y9a{bottom:339.009200pt;}
.ybe{bottom:339.014667pt;}
.y151{bottom:339.018133pt;}
.ye7{bottom:339.018267pt;}
.yfa{bottom:339.020000pt;}
.y7b{bottom:339.021867pt;}
.y47{bottom:339.023600pt;}
.yf{bottom:353.358800pt;}
.ydd{bottom:353.373200pt;}
.ybd{bottom:353.378667pt;}
.y46{bottom:353.380400pt;}
.y150{bottom:353.382133pt;}
.y27{bottom:353.382267pt;}
.yf9{bottom:353.384000pt;}
.y66{bottom:353.385867pt;}
.ye{bottom:367.722800pt;}
.y135{bottom:367.733733pt;}
.y99{bottom:367.737200pt;}
.ya9{bottom:367.742667pt;}
.y45{bottom:367.744400pt;}
.y26{bottom:367.746267pt;}
.y65{bottom:367.748000pt;}
.yd{bottom:382.086800pt;}
.y134{bottom:382.097733pt;}
.y98{bottom:382.101200pt;}
.y7a{bottom:382.103067pt;}
.y149{bottom:382.104800pt;}
.y64{bottom:382.106667pt;}
.y44{bottom:382.108400pt;}
.y14f{bottom:382.110133pt;}
.y25{bottom:382.110267pt;}
.yc{bottom:396.450800pt;}
.y124{bottom:396.461733pt;}
.y97{bottom:396.465200pt;}
.y79{bottom:396.467067pt;}
.yf8{bottom:396.468800pt;}
.y63{bottom:396.470667pt;}
.y43{bottom:396.472400pt;}
.yb{bottom:410.814800pt;}
.ye6{bottom:410.816667pt;}
.y123{bottom:410.825733pt;}
.y147{bottom:410.827467pt;}
.y96{bottom:410.829200pt;}
.y78{bottom:410.831067pt;}
.yf7{bottom:410.832800pt;}
.y24{bottom:410.834667pt;}
.ye5{bottom:425.180667pt;}
.y85{bottom:425.186133pt;}
.y73{bottom:425.187867pt;}
.y122{bottom:425.189733pt;}
.ycd{bottom:425.191467pt;}
.y95{bottom:425.193200pt;}
.y77{bottom:425.195067pt;}
.y42{bottom:425.196800pt;}
.ya{bottom:439.542800pt;}
.ya8{bottom:439.544667pt;}
.y14e{bottom:439.548267pt;}
.y84{bottom:439.550133pt;}
.y72{bottom:439.551867pt;}
.ybc{bottom:439.553733pt;}
.ycc{bottom:439.555467pt;}
.y8f{bottom:439.557200pt;}
.y41{bottom:439.559067pt;}
.y9{bottom:453.906800pt;}
.ya7{bottom:453.908667pt;}
.y14d{bottom:453.912267pt;}
.y83{bottom:453.914133pt;}
.y107{bottom:453.915867pt;}
.ybb{bottom:453.917733pt;}
.ycb{bottom:453.919467pt;}
.y2c{bottom:453.921200pt;}
.ya6{bottom:468.272667pt;}
.y14c{bottom:468.276267pt;}
.y40{bottom:468.278133pt;}
.y71{bottom:468.279867pt;}
.y76{bottom:468.281733pt;}
.y62{bottom:468.283467pt;}
.y23{bottom:468.587867pt;}
.y8{bottom:482.634800pt;}
.ya5{bottom:482.636667pt;}
.yf6{bottom:482.638533pt;}
.y133{bottom:482.640267pt;}
.y3f{bottom:482.642133pt;}
.y61{bottom:482.643867pt;}
.y75{bottom:482.645733pt;}
.y7{bottom:496.998800pt;}
.ya4{bottom:497.000667pt;}
.ydc{bottom:497.002533pt;}
.y132{bottom:497.004267pt;}
.yb9{bottom:497.006000pt;}
.y3e{bottom:497.006133pt;}
.y60{bottom:497.007867pt;}
.y120{bottom:511.354933pt;}
.y6{bottom:511.362800pt;}
.ya3{bottom:511.364667pt;}
.y22{bottom:511.366533pt;}
.y74{bottom:511.368267pt;}
.yb8{bottom:511.370000pt;}
.y3d{bottom:511.370133pt;}
.y11f{bottom:525.718933pt;}
.ya2{bottom:525.728667pt;}
.y21{bottom:525.730533pt;}
.y3c{bottom:525.732267pt;}
.yb5{bottom:527.800800pt;}
.y11e{bottom:540.082933pt;}
.y70{bottom:540.088400pt;}
.y5{bottom:540.090800pt;}
.yca{bottom:540.091867pt;}
.ya1{bottom:540.092667pt;}
.yb7{bottom:540.094400pt;}
.y20{bottom:540.094533pt;}
.y148{bottom:544.097600pt;}
.y32{bottom:544.117200pt;}
.yf5{bottom:551.802000pt;}
.y11d{bottom:554.446933pt;}
.yba{bottom:554.450000pt;}
.y140{bottom:554.450533pt;}
.y6f{bottom:554.452400pt;}
.y4{bottom:554.454800pt;}
.yc9{bottom:554.455867pt;}
.y3b{bottom:554.456667pt;}
.ye9{bottom:554.457733pt;}
.yb6{bottom:560.299467pt;}
.y33{bottom:560.305867pt;}
.y5e{bottom:561.247067pt;}
.yaf{bottom:561.250800pt;}
.y126{bottom:561.254667pt;}
.y3{bottom:568.818800pt;}
.y1f{bottom:568.998800pt;}
.y3a{bottom:596.037867pt;}
.y39{bottom:597.428800pt;}
.he{height:35.132812pt;}
.hd{height:35.390625pt;}
.h3{height:35.671875pt;}
.h4{height:35.906250pt;}
.hc{height:37.101562pt;}
.h8{height:42.468750pt;}
.h5{height:42.820312pt;}
.h10{height:42.842179pt;}
.hf{height:42.849112pt;}
.ha{height:47.578125pt;}
.hb{height:51.906250pt;}
.h7{height:66.062500pt;}
.h9{height:141.562500pt;}
.h6{height:153.795033pt;}
.h2{height:169.875000pt;}
.h0{height:631.181333pt;}
.h1{height:631.333333pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.w2{width:1133.858667pt;}
.w3{width:1134.000000pt;}
.x0{left:0.000000pt;}
.xf{left:23.203200pt;}
.x2{left:49.133867pt;}
.x14{left:60.473867pt;}
.x1{left:75.590533pt;}
.x18{left:181.417333pt;}
.x24{left:208.319467pt;}
.x20{left:223.155600pt;}
.x16{left:233.296400pt;}
.x10{left:245.936267pt;}
.x1c{left:251.553733pt;}
.x3{left:291.212533pt;}
.x5{left:292.913333pt;}
.x23{left:370.393733pt;}
.x1b{left:468.349867pt;}
.x1a{left:488.249200pt;}
.x7{left:641.020000pt;}
.x4{left:642.224133pt;}
.xa{left:649.648267pt;}
.x11{left:653.103733pt;}
.x13{left:654.047200pt;}
.xe{left:774.803067pt;}
.x1f{left:786.143200pt;}
.x22{left:800.571467pt;}
.x21{left:815.407467pt;}
.x17{left:826.682267pt;}
.x12{left:839.322133pt;}
.x1d{left:843.805733pt;}
.xc{left:846.101200pt;}
.x19{left:854.223733pt;}
.x1e{left:860.648933pt;}
.x6{left:885.543333pt;}
.x8{left:887.055067pt;}
.x15{left:1063.917600pt;}
.xd{left:1065.273467pt;}
.x9{left:1074.634000pt;}
.xb{left:1096.062933pt;}
}




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