
    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_82becbc67e7dea0401d4b6ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.013000;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_39649f0d464d83eadb9243ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.118000;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_9f760149585abc9cde86dfac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_a38aea7b71b4b54a42b00754.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.189000;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_097bd5d14ce4209be2825319.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.131000;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_ccab81a56604c570d16a9098.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.125000;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_ee5e543721ca8488f61de0bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.131000;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_98d521c109250112047947c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_559f538ffe094749ab46e4f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_71d2c180f6732885b2789a69.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c48f8a2d0d7d9ffa80a8b145.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4c951603758a069c35c0b9cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2e1ce9891f9018bb4210f2c2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959000;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;}
.m29{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m15{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.243355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243355,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.243357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243357,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243818,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.244068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244068,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.244136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244136,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.244202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244202,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.244245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244245,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.244326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244326,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244502,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m10{transform:matrix(0.244609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244609,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.244672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244672,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.244867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244867,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244920,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.244923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244923,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.244948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244948,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.245201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245201,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.245212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245212,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.245373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245373,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.245427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245427,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.245430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245430,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.245432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245432,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.245459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245459,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.245595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245595,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.245641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245641,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.245711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245711,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245765,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.245927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245927,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.245943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245943,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.246009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246009,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.246014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246014,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246023,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246074,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.246086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246086,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.246089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246089,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246105,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.246145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246145,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246203,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246268,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.246309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246309,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.246318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246318,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.246334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246334,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246357,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.246382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246382,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246395,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.246482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246482,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.246509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246509,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.246534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246534,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246565,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.246709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246709,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.246748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246748,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246802,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.246807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246807,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246893,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.246932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246932,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);}
.mde{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);}
.mc1{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);}
.m9{transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247027,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247074,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247157,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247216,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.247252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247252,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.247293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247293,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247341,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.247548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247548,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.247566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247566,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247684,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247968,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248048,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248182,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248209,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248448,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.me4{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);}
.m81{transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249033,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m6a{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);}
.m109{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1a{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m64{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);}
.m116{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249934,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.m101{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250186,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);}
.m40{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);}
.m7e{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250706,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250868,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251834,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251991,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.252032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252032,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.252130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252130,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252353,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.252382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252382,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.252393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252393,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252411,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252416,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252580,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.252618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252618,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252655,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);}
.m102{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);}
.m71{transform:matrix(0.253070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253070,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.253127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253127,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.253166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253166,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253255,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.253298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253298,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.253386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253386,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.253418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253418,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.253443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253443,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.253639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253639,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.253659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253659,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.253686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253686,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.253714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253714,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.253732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253732,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253741,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.253745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253745,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.254011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254011,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.254366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254366,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254534,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.254598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254598,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.254714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254714,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.254934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254934,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254968,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.254998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254998,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.255016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255016,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.255025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255025,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255289,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.255302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255302,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.255403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255403,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255569,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.255582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255582,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.255652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255652,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255730,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255811,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.255907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255907,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.255936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255936,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.256036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256036,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256475,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.256730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256730,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256918,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.981000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:25.974000px;}
.ls37{letter-spacing:-3.432000px;}
.ls34{letter-spacing:-3.366000px;}
.ls3b{letter-spacing:-2.772000px;}
.ls39{letter-spacing:-2.244000px;}
.ls2a{letter-spacing:-2.160000px;}
.ls3d{letter-spacing:-1.320000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls4b{letter-spacing:-0.924000px;}
.ls44{letter-spacing:-0.858000px;}
.ls42{letter-spacing:-0.792000px;}
.ls49{letter-spacing:-0.726000px;}
.ls45{letter-spacing:-0.660000px;}
.ls36{letter-spacing:-0.654126px;}
.ls16{letter-spacing:-0.627000px;}
.ls6{letter-spacing:-0.612000px;}
.ls4a{letter-spacing:-0.594000px;}
.ls17{letter-spacing:-0.570000px;}
.ls8{letter-spacing:-0.561000px;}
.ls2f{letter-spacing:-0.528000px;}
.ls3{letter-spacing:-0.510000px;}
.ls32{letter-spacing:-0.462000px;}
.ls43{letter-spacing:-0.461736px;}
.ls5{letter-spacing:-0.459000px;}
.ls7{letter-spacing:-0.408000px;}
.ls31{letter-spacing:-0.396000px;}
.ls4c{letter-spacing:-0.384780px;}
.ls15{letter-spacing:-0.342000px;}
.ls22{letter-spacing:-0.332310px;}
.lsf{letter-spacing:-0.330000px;}
.ls30{letter-spacing:-0.307824px;}
.ls4{letter-spacing:-0.306000px;}
.ls13{letter-spacing:-0.285000px;}
.ls10{letter-spacing:-0.264000px;}
.ls56{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.228000px;}
.ls50{letter-spacing:-0.199386px;}
.ls1c{letter-spacing:-0.198000px;}
.ls54{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.171000px;}
.ls12{letter-spacing:-0.132000px;}
.ls3f{letter-spacing:-0.114000px;}
.ls40{letter-spacing:-0.108000px;}
.ls2{letter-spacing:-0.096000px;}
.ls25{letter-spacing:-0.076956px;}
.ls11{letter-spacing:-0.066000px;}
.ls53{letter-spacing:-0.060000px;}
.ls33{letter-spacing:-0.057000px;}
.ls19{letter-spacing:-0.054000px;}
.ls23{letter-spacing:-0.038478px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000291px;}
.ls1a{letter-spacing:0.000360px;}
.ls2b{letter-spacing:0.033000px;}
.ls4d{letter-spacing:0.038478px;}
.ls1e{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.057000px;}
.ls51{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.066000px;}
.ls48{letter-spacing:0.085500px;}
.ls26{letter-spacing:0.099000px;}
.lsd{letter-spacing:0.114000px;}
.ls46{letter-spacing:0.115434px;}
.ls52{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.132000px;}
.ls28{letter-spacing:0.162000px;}
.ls1d{letter-spacing:0.165000px;}
.ls21{letter-spacing:0.171000px;}
.ls55{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.198000px;}
.ls24{letter-spacing:0.216000px;}
.ls47{letter-spacing:0.228000px;}
.ls2c{letter-spacing:0.231000px;}
.ls2d{letter-spacing:0.264000px;}
.ls41{letter-spacing:0.285000px;}
.ls4e{letter-spacing:0.342000px;}
.ls18{letter-spacing:0.399000px;}
.ls3e{letter-spacing:0.461736px;}
.ls35{letter-spacing:0.528000px;}
.ls20{letter-spacing:0.570000px;}
.ls3a{letter-spacing:0.577170px;}
.ls3c{letter-spacing:0.692604px;}
.ls38{letter-spacing:0.924000px;}
.ls0{letter-spacing:1.680000px;}
.lse{letter-spacing:2.373206px;}
.ls27{letter-spacing:2.415660px;}
.ls29{letter-spacing:2.484983px;}
.ls4f{letter-spacing:2.499659px;}
.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;}
}
.ws1e{word-spacing:-14.454000px;}
.ws24{word-spacing:-14.388000px;}
.ws29{word-spacing:-13.200000px;}
.ws2a{word-spacing:-13.134000px;}
.ws2c{word-spacing:-13.002000px;}
.ws22{word-spacing:-12.483000px;}
.ws52{word-spacing:-12.042000px;}
.ws56{word-spacing:-12.000000px;}
.ws33{word-spacing:-11.988000px;}
.ws2e{word-spacing:-11.880000px;}
.ws1f{word-spacing:-11.826000px;}
.ws44{word-spacing:-11.718000px;}
.ws3a{word-spacing:-11.682000px;}
.ws4{word-spacing:-11.169000px;}
.ws2f{word-spacing:-10.962000px;}
.ws32{word-spacing:-10.800000px;}
.ws0{word-spacing:-9.600000px;}
.ws39{word-spacing:-9.003852px;}
.ws3b{word-spacing:-8.888418px;}
.ws4b{word-spacing:-8.542116px;}
.wsb{word-spacing:-8.426682px;}
.ws25{word-spacing:-8.388204px;}
.ws2b{word-spacing:-8.349726px;}
.ws4c{word-spacing:-8.041902px;}
.ws46{word-spacing:-7.964946px;}
.ws1d{word-spacing:-7.800000px;}
.ws23{word-spacing:-7.277589px;}
.ws40{word-spacing:-0.924000px;}
.ws42{word-spacing:-0.692604px;}
.ws27{word-spacing:-0.570000px;}
.ws3d{word-spacing:-0.528000px;}
.ws1b{word-spacing:-0.399000px;}
.ws53{word-spacing:-0.342000px;}
.ws4a{word-spacing:-0.285000px;}
.ws34{word-spacing:-0.264000px;}
.ws50{word-spacing:-0.228000px;}
.ws2d{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.198000px;}
.ws5b{word-spacing:-0.180000px;}
.ws28{word-spacing:-0.171000px;}
.ws31{word-spacing:-0.162000px;}
.ws18{word-spacing:-0.132000px;}
.ws5a{word-spacing:-0.120000px;}
.ws1a{word-spacing:-0.114000px;}
.ws51{word-spacing:-0.076956px;}
.ws11{word-spacing:-0.066000px;}
.ws57{word-spacing:-0.060000px;}
.ws19{word-spacing:-0.057000px;}
.ws1{word-spacing:-0.054000px;}
.wsc{word-spacing:-0.033231px;}
.ws2{word-spacing:0.000000px;}
.ws30{word-spacing:0.038478px;}
.ws1c{word-spacing:0.054000px;}
.ws58{word-spacing:0.060000px;}
.wsf{word-spacing:0.066000px;}
.ws3{word-spacing:0.096000px;}
.ws45{word-spacing:0.108000px;}
.ws43{word-spacing:0.114000px;}
.ws12{word-spacing:0.132000px;}
.ws21{word-spacing:0.171000px;}
.ws59{word-spacing:0.180000px;}
.ws20{word-spacing:0.198000px;}
.ws54{word-spacing:0.199386px;}
.ws14{word-spacing:0.228000px;}
.ws5c{word-spacing:0.240000px;}
.wse{word-spacing:0.264000px;}
.ws13{word-spacing:0.285000px;}
.ws6{word-spacing:0.306000px;}
.ws36{word-spacing:0.307824px;}
.wsd{word-spacing:0.330000px;}
.ws26{word-spacing:0.332310px;}
.ws15{word-spacing:0.342000px;}
.ws55{word-spacing:0.384780px;}
.ws37{word-spacing:0.396000px;}
.ws9{word-spacing:0.408000px;}
.ws7{word-spacing:0.459000px;}
.ws38{word-spacing:0.462000px;}
.ws5{word-spacing:0.510000px;}
.ws35{word-spacing:0.528000px;}
.wsa{word-spacing:0.561000px;}
.ws17{word-spacing:0.570000px;}
.ws4e{word-spacing:0.594000px;}
.ws8{word-spacing:0.612000px;}
.ws16{word-spacing:0.627000px;}
.ws3e{word-spacing:0.654126px;}
.ws49{word-spacing:0.660000px;}
.ws4d{word-spacing:0.726000px;}
.ws47{word-spacing:0.792000px;}
.ws48{word-spacing:0.858000px;}
.ws4f{word-spacing:0.924000px;}
.ws41{word-spacing:2.244000px;}
.ws3c{word-spacing:3.366000px;}
.ws3f{word-spacing:3.432000px;}
._4{margin-left:-6.624000px;}
._2{margin-left:-4.956600px;}
._0{margin-left:-2.964000px;}
._1{margin-left:-1.560000px;}
._5{width:1.679400px;}
._6{width:2.777100px;}
._3{width:4.092000px;}
._7{width:5.441700px;}
._8{width:6.906300px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:33.231000px;}
.fs7{font-size:38.478000px;}
.fsa{font-size:39.000000px;}
.fs1{font-size:45.474000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs6{font-size:363.030000px;}
.y0{bottom:0.000000px;}
.ye{bottom:106.299150px;}
.ybd{bottom:106.299300px;}
.y40{bottom:114.960000px;}
.yd{bottom:125.799150px;}
.ybc{bottom:125.799300px;}
.y116{bottom:129.141300px;}
.y3f{bottom:129.960000px;}
.y3e{bottom:144.960000px;}
.y63{bottom:145.299150px;}
.ybb{bottom:145.299300px;}
.y13e{bottom:146.075400px;}
.y1e7{bottom:147.079350px;}
.y115{bottom:151.983300px;}
.y3d{bottom:159.960000px;}
.y1c3{bottom:162.587250px;}
.y62{bottom:164.799150px;}
.yba{bottom:164.799300px;}
.y1e6{bottom:166.129350px;}
.y13d{bottom:166.325400px;}
.y136{bottom:167.237250px;}
.yf6{bottom:168.021450px;}
.y1c1{bottom:172.083300px;}
.y114{bottom:174.825450px;}
.y3c{bottom:174.960000px;}
.y61{bottom:184.299150px;}
.yb9{bottom:184.299300px;}
.y161{bottom:185.029350px;}
.y1c2{bottom:185.087250px;}
.y1e5{bottom:185.179350px;}
.y13c{bottom:186.575400px;}
.y17f{bottom:186.979350px;}
.y19d{bottom:188.825400px;}
.y135{bottom:189.587250px;}
.y3b{bottom:189.960000px;}
.yf5{bottom:190.221450px;}
.y1c0{bottom:192.333300px;}
.y113{bottom:197.667450px;}
.y199{bottom:202.371450px;}
.y80{bottom:203.799150px;}
.y15a{bottom:203.799300px;}
.y1b9{bottom:203.902800px;}
.y1e4{bottom:204.229350px;}
.y3a{bottom:204.960000px;}
.y13b{bottom:206.825400px;}
.y160{bottom:207.229350px;}
.yde{bottom:207.587250px;}
.y19c{bottom:209.075400px;}
.y17e{bottom:209.179350px;}
.y134{bottom:211.937250px;}
.yf4{bottom:212.421450px;}
.y1bf{bottom:212.583300px;}
.y39{bottom:219.960000px;}
.y112{bottom:220.509450px;}
.y1e3{bottom:223.279350px;}
.ycf{bottom:223.299150px;}
.y198{bottom:224.871450px;}
.y1b8{bottom:226.102650px;}
.y60{bottom:227.075400px;}
.yb8{bottom:227.302800px;}
.y1d3{bottom:227.571450px;}
.y19b{bottom:229.325400px;}
.y15f{bottom:229.429350px;}
.ydd{bottom:230.087250px;}
.y9b{bottom:230.225400px;}
.y17d{bottom:231.379350px;}
.y1be{bottom:232.833300px;}
.y133{bottom:234.287250px;}
.yf3{bottom:234.621450px;}
.y38{bottom:234.960000px;}
.y13a{bottom:235.579350px;}
.y1e2{bottom:242.329350px;}
.yce{bottom:242.799150px;}
.y111{bottom:243.351600px;}
.y7f{bottom:244.487250px;}
.y159{bottom:247.010550px;}
.y5f{bottom:247.325400px;}
.y197{bottom:247.371450px;}
.y1b7{bottom:248.302800px;}
.yb7{bottom:249.802800px;}
.y37{bottom:249.960000px;}
.y1d2{bottom:250.071450px;}
.y9a{bottom:250.475400px;}
.y15e{bottom:251.629350px;}
.ydc{bottom:252.587250px;}
.y1bd{bottom:253.083300px;}
.y17c{bottom:253.579350px;}
.y132{bottom:256.637250px;}
.yf2{bottom:256.821450px;}
.y139{bottom:258.079350px;}
.y1e1{bottom:261.379350px;}
.ycd{bottom:262.299150px;}
.y36{bottom:264.960000px;}
.y110{bottom:266.193600px;}
.y7e{bottom:267.287250px;}
.y5e{bottom:267.575400px;}
.y158{bottom:269.735550px;}
.y196{bottom:269.871450px;}
.y1b6{bottom:270.502650px;}
.y99{bottom:270.725400px;}
.yb6{bottom:272.302800px;}
.y1d1{bottom:272.571450px;}
.y1bc{bottom:273.333300px;}
.y15d{bottom:273.829350px;}
.ydb{bottom:275.087250px;}
.y17b{bottom:275.779350px;}
.y131{bottom:278.987250px;}
.yf1{bottom:279.021450px;}
.y35{bottom:279.960000px;}
.y1e0{bottom:280.429350px;}
.y138{bottom:280.579350px;}
.ycc{bottom:281.799150px;}
.y5d{bottom:287.825400px;}
.y10f{bottom:289.035750px;}
.y7d{bottom:290.087250px;}
.y195{bottom:292.371450px;}
.y157{bottom:292.460550px;}
.y1b5{bottom:292.702800px;}
.y1bb{bottom:293.583300px;}
.y34{bottom:294.960000px;}
.y1d0{bottom:295.071450px;}
.y15c{bottom:296.029350px;}
.yda{bottom:297.587250px;}
.y17a{bottom:297.979350px;}
.y98{bottom:299.479350px;}
.yf0{bottom:301.221450px;}
.y130{bottom:301.337250px;}
.y137{bottom:303.079350px;}
.yb5{bottom:303.306600px;}
.y33{bottom:309.960000px;}
.y10e{bottom:311.877750px;}
.y7c{bottom:312.887250px;}
.y1ba{bottom:313.833300px;}
.y194{bottom:314.871450px;}
.y1b4{bottom:314.902800px;}
.y156{bottom:315.185550px;}
.y5c{bottom:316.579350px;}
.y1cf{bottom:317.571450px;}
.y15b{bottom:318.229350px;}
.y1df{bottom:318.529350px;}
.yd9{bottom:320.087250px;}
.y179{bottom:320.179350px;}
.y97{bottom:322.129350px;}
.yb4{bottom:323.556600px;}
.y12f{bottom:323.687250px;}
.y32{bottom:324.960000px;}
.ycb{bottom:325.579350px;}
.y10d{bottom:334.719750px;}
.y7b{bottom:335.687250px;}
.y1b3{bottom:337.102650px;}
.y193{bottom:337.371450px;}
.y1de{bottom:337.579350px;}
.y155{bottom:337.910550px;}
.y5b{bottom:339.079350px;}
.y31{bottom:339.960000px;}
.y1ce{bottom:340.071450px;}
.yef{bottom:340.429350px;}
.y178{bottom:342.379350px;}
.yd8{bottom:342.587250px;}
.yb3{bottom:343.806600px;}
.y96{bottom:344.779350px;}
.y12e{bottom:346.037250px;}
.yca{bottom:348.079350px;}
.y30{bottom:354.960000px;}
.y1dd{bottom:356.629350px;}
.y10c{bottom:357.561900px;}
.y7a{bottom:358.487250px;}
.y1b2{bottom:359.302800px;}
.y192{bottom:359.871450px;}
.y154{bottom:360.635550px;}
.y5a{bottom:361.579350px;}
.yee{bottom:362.629350px;}
.yb2{bottom:364.056600px;}
.y177{bottom:364.579350px;}
.yd7{bottom:365.087250px;}
.y95{bottom:367.429350px;}
.y12d{bottom:368.387250px;}
.y2f{bottom:369.960000px;}
.yc9{bottom:370.579350px;}
.y1dc{bottom:375.679350px;}
.y1cc{bottom:379.579350px;}
.y10b{bottom:380.403900px;}
.y79{bottom:381.287250px;}
.y1b1{bottom:381.502650px;}
.y153{bottom:383.360550px;}
.y59{bottom:384.079350px;}
.yb1{bottom:384.306600px;}
.yed{bottom:384.829350px;}
.y2e{bottom:384.960000px;}
.y1cd{bottom:385.073850px;}
.y176{bottom:386.779350px;}
.yd6{bottom:387.587250px;}
.y94{bottom:390.079350px;}
.y12c{bottom:390.737250px;}
.y191{bottom:390.875400px;}
.yc8{bottom:393.079350px;}
.y1db{bottom:394.729350px;}
.y2d{bottom:399.960000px;}
.y1cb{bottom:402.079350px;}
.y10a{bottom:403.246050px;}
.y1b0{bottom:403.702800px;}
.y78{bottom:404.087250px;}
.y152{bottom:406.085550px;}
.y58{bottom:406.579350px;}
.yec{bottom:407.029350px;}
.y175{bottom:408.979350px;}
.yc{bottom:409.846350px;}
.yd5{bottom:410.087250px;}
.y190{bottom:411.125400px;}
.y93{bottom:412.729350px;}
.yb0{bottom:413.060550px;}
.y12a{bottom:413.087250px;}
.y1da{bottom:413.779350px;}
.y2c{bottom:414.960000px;}
.yc7{bottom:415.579350px;}
.y12b{bottom:418.581750px;}
.y1ca{bottom:424.579350px;}
.y1af{bottom:425.902800px;}
.y109{bottom:426.088050px;}
.y77{bottom:426.887250px;}
.y151{bottom:428.810550px;}
.y9{bottom:428.876250px;}
.y57{bottom:429.079350px;}
.yeb{bottom:429.229350px;}
.y2b{bottom:429.960000px;}
.y174{bottom:431.179350px;}
.y18f{bottom:431.375400px;}
.yd4{bottom:432.587250px;}
.y1d9{bottom:432.829350px;}
.yaf{bottom:435.260550px;}
.y92{bottom:435.379350px;}
.y129{bottom:435.437250px;}
.yc6{bottom:438.079350px;}
.y2a{bottom:444.960000px;}
.y8{bottom:446.876250px;}
.y1c9{bottom:447.079350px;}
.y1ae{bottom:448.102650px;}
.y108{bottom:448.930050px;}
.y76{bottom:449.687250px;}
.yea{bottom:451.429350px;}
.y14f{bottom:451.535550px;}
.y56{bottom:451.579350px;}
.y18e{bottom:451.625400px;}
.y1d8{bottom:451.879350px;}
.yd3{bottom:455.087250px;}
.y150{bottom:457.030050px;}
.yae{bottom:457.460550px;}
.y128{bottom:457.787250px;}
.y91{bottom:458.029350px;}
.y29{bottom:459.960000px;}
.yc5{bottom:460.579350px;}
.y173{bottom:461.883300px;}
.y1c8{bottom:469.579350px;}
.y1ad{bottom:470.302800px;}
.y1d7{bottom:470.929350px;}
.y107{bottom:471.772200px;}
.y75{bottom:472.487250px;}
.ye9{bottom:473.629350px;}
.y55{bottom:474.079350px;}
.y14e{bottom:474.260550px;}
.y28{bottom:474.960000px;}
.yd2{bottom:477.587250px;}
.yad{bottom:479.660550px;}
.y127{bottom:480.137250px;}
.y18d{bottom:480.379350px;}
.y90{bottom:480.679350px;}
.y172{bottom:482.133300px;}
.yc4{bottom:483.079350px;}
.y1d6{bottom:489.979350px;}
.y1ac{bottom:492.502650px;}
.y106{bottom:494.614200px;}
.y74{bottom:495.287250px;}
.ye8{bottom:495.829350px;}
.y54{bottom:496.579350px;}
.y14d{bottom:496.985550px;}
.yb{bottom:497.995350px;}
.yd1{bottom:500.087250px;}
.y1c7{bottom:500.583300px;}
.yac{bottom:501.860550px;}
.y171{bottom:502.383300px;}
.y126{bottom:502.487250px;}
.y18c{bottom:502.579350px;}
.y27{bottom:502.715850px;}
.y8f{bottom:503.329350px;}
.y19a{bottom:505.579350px;}
.y1d5{bottom:509.029350px;}
.y1ab{bottom:514.702650px;}
.y105{bottom:517.456350px;}
.y26{bottom:517.715850px;}
.ye7{bottom:518.029350px;}
.y73{bottom:518.087250px;}
.y14c{bottom:519.710700px;}
.y1c6{bottom:520.833300px;}
.yc3{bottom:522.587250px;}
.y170{bottom:522.633300px;}
.yab{bottom:524.060550px;}
.y18b{bottom:524.779350px;}
.y125{bottom:524.837250px;}
.y8e{bottom:525.979350px;}
.y52{bottom:527.583300px;}
.y7{bottom:527.655150px;}
.y1d4{bottom:528.079350px;}
.y53{bottom:532.328550px;}
.y25{bottom:532.715850px;}
.ye6{bottom:540.229350px;}
.y104{bottom:540.298350px;}
.y72{bottom:540.887250px;}
.y1c5{bottom:541.083300px;}
.y14b{bottom:542.435550px;}
.yc2{bottom:545.087250px;}
.y1aa{bottom:545.406600px;}
.y6{bottom:545.655150px;}
.yaa{bottom:546.260550px;}
.y18a{bottom:546.979350px;}
.y124{bottom:547.187250px;}
.y24{bottom:547.715850px;}
.y51{bottom:547.833300px;}
.y8d{bottom:548.629350px;}
.y16f{bottom:551.387250px;}
.y1c4{bottom:561.333300px;}
.ye5{bottom:562.429350px;}
.y23{bottom:562.715850px;}
.y103{bottom:563.140350px;}
.y71{bottom:563.687250px;}
.y14a{bottom:565.160550px;}
.y1a9{bottom:565.656600px;}
.yc1{bottom:567.587250px;}
.y50{bottom:568.083300px;}
.y5{bottom:568.151250px;}
.ya9{bottom:568.460700px;}
.y189{bottom:569.179350px;}
.y123{bottom:569.537250px;}
.y8c{bottom:571.279350px;}
.y16e{bottom:573.437250px;}
.y22{bottom:577.715850px;}
.ye4{bottom:584.629350px;}
.y1a8{bottom:585.906600px;}
.y102{bottom:585.982500px;}
.y70{bottom:586.487250px;}
.y149{bottom:587.885550px;}
.y1f6{bottom:588.138750px;}
.y4f{bottom:588.333300px;}
.yc0{bottom:590.087250px;}
.ya8{bottom:590.660550px;}
.y188{bottom:591.379350px;}
.y122{bottom:591.887250px;}
.y21{bottom:592.715850px;}
.y8b{bottom:593.929350px;}
.y16d{bottom:595.487250px;}
.y1a7{bottom:606.156600px;}
.y1f5{bottom:607.638750px;}
.y20{bottom:607.715850px;}
.y4e{bottom:608.583300px;}
.y101{bottom:608.824500px;}
.y6f{bottom:609.287250px;}
.y148{bottom:610.610550px;}
.ybf{bottom:612.587250px;}
.ya7{bottom:612.860550px;}
.y121{bottom:614.237250px;}
.ye3{bottom:615.333300px;}
.y8a{bottom:616.579350px;}
.y16c{bottom:617.537250px;}
.y187{bottom:622.083300px;}
.y1f{bottom:622.715850px;}
.y1a6{bottom:626.406600px;}
.y1f4{bottom:627.138750px;}
.y4d{bottom:628.833300px;}
.y100{bottom:631.666650px;}
.y6e{bottom:632.087250px;}
.y147{bottom:633.335700px;}
.ya6{bottom:635.060550px;}
.ybe{bottom:635.087250px;}
.ye2{bottom:635.583300px;}
.y120{bottom:636.587250px;}
.y1e{bottom:637.715850px;}
.y16b{bottom:639.587250px;}
.y186{bottom:642.333300px;}
.y1f3{bottom:646.638750px;}
.y1a5{bottom:646.656600px;}
.y1d{bottom:652.715850px;}
.yff{bottom:654.508650px;}
.y6d{bottom:654.887250px;}
.ye1{bottom:655.833300px;}
.y146{bottom:656.060550px;}
.y89{bottom:656.237250px;}
.ya5{bottom:657.260550px;}
.y4c{bottom:657.587250px;}
.y11f{bottom:658.937250px;}
.y16a{bottom:661.637250px;}
.y185{bottom:662.583300px;}
.y1f2{bottom:666.138750px;}
.y1c{bottom:667.715850px;}
.y1a4{bottom:675.410550px;}
.ye0{bottom:676.083300px;}
.yfe{bottom:677.350650px;}
.y6c{bottom:677.687250px;}
.y145{bottom:678.785550px;}
.y88{bottom:678.887250px;}
.ya4{bottom:679.460700px;}
.y4a{bottom:680.087250px;}
.y11e{bottom:681.287250px;}
.y1b{bottom:682.715850px;}
.y184{bottom:682.833300px;}
.y169{bottom:683.687250px;}
.y4b{bottom:685.581750px;}
.y1f1{bottom:685.638750px;}
.ydf{bottom:696.333300px;}
.y1a{bottom:697.715850px;}
.y1a3{bottom:697.910550px;}
.yfd{bottom:700.192800px;}
.y6b{bottom:700.487250px;}
.y144{bottom:701.510550px;}
.y87{bottom:701.537250px;}
.ya3{bottom:701.660550px;}
.y49{bottom:702.587250px;}
.y183{bottom:703.083300px;}
.y11d{bottom:703.637250px;}
.y1f0{bottom:705.138750px;}
.y168{bottom:705.737250px;}
.y19{bottom:712.715850px;}
.y1a2{bottom:720.410550px;}
.yfc{bottom:723.034800px;}
.y6a{bottom:723.287250px;}
.y182{bottom:723.333300px;}
.ya2{bottom:723.860550px;}
.y86{bottom:724.187250px;}
.y142{bottom:724.235550px;}
.y1ef{bottom:724.638750px;}
.y48{bottom:725.087250px;}
.y11c{bottom:725.987250px;}
.y18{bottom:727.715850px;}
.y167{bottom:727.787250px;}
.y143{bottom:729.730050px;}
.y17{bottom:742.715850px;}
.y1a1{bottom:742.910550px;}
.y181{bottom:743.583300px;}
.y1ee{bottom:744.138750px;}
.yfb{bottom:745.876950px;}
.ya1{bottom:746.060550px;}
.y69{bottom:746.087250px;}
.y85{bottom:746.837250px;}
.y141{bottom:746.960550px;}
.y47{bottom:747.587250px;}
.y11b{bottom:748.337250px;}
.y166{bottom:749.837250px;}
.y16{bottom:757.715850px;}
.y1ed{bottom:763.638750px;}
.y180{bottom:763.833300px;}
.y1a0{bottom:765.410550px;}
.y4{bottom:766.528200px;}
.ya0{bottom:768.260550px;}
.yfa{bottom:768.718950px;}
.y68{bottom:768.887250px;}
.y84{bottom:769.487250px;}
.y140{bottom:769.685550px;}
.y46{bottom:770.087250px;}
.y11a{bottom:770.687250px;}
.y165{bottom:771.887250px;}
.y15{bottom:772.715850px;}
.y1ec{bottom:783.138750px;}
.y14{bottom:787.715850px;}
.y19f{bottom:787.910550px;}
.y3{bottom:789.028200px;}
.y9f{bottom:790.460700px;}
.yf9{bottom:791.560950px;}
.y67{bottom:791.687250px;}
.y83{bottom:792.137250px;}
.y45{bottom:792.587250px;}
.y119{bottom:793.037250px;}
.y164{bottom:793.937250px;}
.y13f{bottom:800.914500px;}
.y1eb{bottom:802.638750px;}
.y13{bottom:802.715850px;}
.y19e{bottom:810.410550px;}
.yf8{bottom:814.403100px;}
.y66{bottom:814.487250px;}
.y82{bottom:814.787250px;}
.y42{bottom:815.087250px;}
.y118{bottom:815.387250px;}
.y163{bottom:815.987250px;}
.y12{bottom:817.715850px;}
.y9e{bottom:821.164500px;}
.y1ea{bottom:822.138750px;}
.y2{bottom:832.484250px;}
.y11{bottom:832.715850px;}
.yf7{bottom:837.245250px;}
.y65{bottom:837.287250px;}
.y81{bottom:837.437250px;}
.y44{bottom:837.587250px;}
.y117{bottom:837.737250px;}
.y162{bottom:838.037250px;}
.y9d{bottom:841.414500px;}
.y1e9{bottom:841.638750px;}
.yd0{bottom:843.081750px;}
.y10{bottom:847.715850px;}
.y1{bottom:857.984250px;}
.y43{bottom:860.087250px;}
.y1e8{bottom:861.138750px;}
.y9c{bottom:861.664500px;}
.yf{bottom:862.715850px;}
.y64{bottom:871.653600px;}
.y41{bottom:930.708000px;}
.ya{bottom:946.311000px;}
.h12{height:28.645122px;}
.hf{height:33.168036px;}
.h14{height:33.852000px;}
.h7{height:34.080000px;}
.h6{height:41.664000px;}
.h5{height:42.768000px;}
.ha{height:43.962000px;}
.h9{height:44.268000px;}
.h15{height:46.266000px;}
.h8{height:46.548000px;}
.h13{height:46.872000px;}
.h11{height:49.134000px;}
.h10{height:49.476000px;}
.hb{height:50.760000px;}
.h16{height:51.720000px;}
.h17{height:52.080000px;}
.h3{height:56.430000px;}
.he{height:56.892000px;}
.hd{height:57.288000px;}
.h4{height:62.040000px;}
.h2{height:66.690000px;}
.hc{height:312.931860px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x3{left:42.471300px;}
.x4{left:104.756250px;}
.x1{left:106.299150px;}
.x13{left:133.566150px;}
.x2{left:136.569750px;}
.x14{left:142.595400px;}
.x11{left:150.268050px;}
.x12{left:159.630000px;}
.x5{left:183.442950px;}
.x6{left:188.568450px;}
.xd{left:440.544900px;}
.xe{left:449.464950px;}
.xf{left:498.649350px;}
.x10{left:507.473400px;}
.xb{left:586.083300px;}
.x15{left:589.451400px;}
.x7{left:591.367650px;}
.xc{left:595.275600px;}
.x8{left:637.935900px;}
.xa{left:639.603150px;}
.x9{left:645.842550px;}
@media print{
.v4{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.872000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:23.088000pt;}
.ls37{letter-spacing:-3.050667pt;}
.ls34{letter-spacing:-2.992000pt;}
.ls3b{letter-spacing:-2.464000pt;}
.ls39{letter-spacing:-1.994667pt;}
.ls2a{letter-spacing:-1.920000pt;}
.ls3d{letter-spacing:-1.173333pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls4b{letter-spacing:-0.821333pt;}
.ls44{letter-spacing:-0.762667pt;}
.ls42{letter-spacing:-0.704000pt;}
.ls49{letter-spacing:-0.645333pt;}
.ls45{letter-spacing:-0.586667pt;}
.ls36{letter-spacing:-0.581445pt;}
.ls16{letter-spacing:-0.557333pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls4a{letter-spacing:-0.528000pt;}
.ls17{letter-spacing:-0.506667pt;}
.ls8{letter-spacing:-0.498667pt;}
.ls2f{letter-spacing:-0.469333pt;}
.ls3{letter-spacing:-0.453333pt;}
.ls32{letter-spacing:-0.410667pt;}
.ls43{letter-spacing:-0.410432pt;}
.ls5{letter-spacing:-0.408000pt;}
.ls7{letter-spacing:-0.362667pt;}
.ls31{letter-spacing:-0.352000pt;}
.ls4c{letter-spacing:-0.342027pt;}
.ls15{letter-spacing:-0.304000pt;}
.ls22{letter-spacing:-0.295387pt;}
.lsf{letter-spacing:-0.293333pt;}
.ls30{letter-spacing:-0.273621pt;}
.ls4{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.253333pt;}
.ls10{letter-spacing:-0.234667pt;}
.ls56{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.202667pt;}
.ls50{letter-spacing:-0.177232pt;}
.ls1c{letter-spacing:-0.176000pt;}
.ls54{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.152000pt;}
.ls12{letter-spacing:-0.117333pt;}
.ls3f{letter-spacing:-0.101333pt;}
.ls40{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:-0.085333pt;}
.ls25{letter-spacing:-0.068405pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls53{letter-spacing:-0.053333pt;}
.ls33{letter-spacing:-0.050667pt;}
.ls19{letter-spacing:-0.048000pt;}
.ls23{letter-spacing:-0.034203pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000259pt;}
.ls1a{letter-spacing:0.000320pt;}
.ls2b{letter-spacing:0.029333pt;}
.ls4d{letter-spacing:0.034203pt;}
.ls1e{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.050667pt;}
.ls51{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.058667pt;}
.ls48{letter-spacing:0.076000pt;}
.ls26{letter-spacing:0.088000pt;}
.lsd{letter-spacing:0.101333pt;}
.ls46{letter-spacing:0.102608pt;}
.ls52{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.117333pt;}
.ls28{letter-spacing:0.144000pt;}
.ls1d{letter-spacing:0.146667pt;}
.ls21{letter-spacing:0.152000pt;}
.ls55{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.176000pt;}
.ls24{letter-spacing:0.192000pt;}
.ls47{letter-spacing:0.202667pt;}
.ls2c{letter-spacing:0.205333pt;}
.ls2d{letter-spacing:0.234667pt;}
.ls41{letter-spacing:0.253333pt;}
.ls4e{letter-spacing:0.304000pt;}
.ls18{letter-spacing:0.354667pt;}
.ls3e{letter-spacing:0.410432pt;}
.ls35{letter-spacing:0.469333pt;}
.ls20{letter-spacing:0.506667pt;}
.ls3a{letter-spacing:0.513040pt;}
.ls3c{letter-spacing:0.615648pt;}
.ls38{letter-spacing:0.821333pt;}
.ls0{letter-spacing:1.493333pt;}
.lse{letter-spacing:2.109516pt;}
.ls27{letter-spacing:2.147254pt;}
.ls29{letter-spacing:2.208874pt;}
.ls4f{letter-spacing:2.221919pt;}
.ws1e{word-spacing:-12.848000pt;}
.ws24{word-spacing:-12.789333pt;}
.ws29{word-spacing:-11.733333pt;}
.ws2a{word-spacing:-11.674667pt;}
.ws2c{word-spacing:-11.557333pt;}
.ws22{word-spacing:-11.096000pt;}
.ws52{word-spacing:-10.704000pt;}
.ws56{word-spacing:-10.666667pt;}
.ws33{word-spacing:-10.656000pt;}
.ws2e{word-spacing:-10.560000pt;}
.ws1f{word-spacing:-10.512000pt;}
.ws44{word-spacing:-10.416000pt;}
.ws3a{word-spacing:-10.384000pt;}
.ws4{word-spacing:-9.928000pt;}
.ws2f{word-spacing:-9.744000pt;}
.ws32{word-spacing:-9.600000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws39{word-spacing:-8.003424pt;}
.ws3b{word-spacing:-7.900816pt;}
.ws4b{word-spacing:-7.592992pt;}
.wsb{word-spacing:-7.490384pt;}
.ws25{word-spacing:-7.456181pt;}
.ws2b{word-spacing:-7.421979pt;}
.ws4c{word-spacing:-7.148357pt;}
.ws46{word-spacing:-7.079952pt;}
.ws1d{word-spacing:-6.933333pt;}
.ws23{word-spacing:-6.468968pt;}
.ws40{word-spacing:-0.821333pt;}
.ws42{word-spacing:-0.615648pt;}
.ws27{word-spacing:-0.506667pt;}
.ws3d{word-spacing:-0.469333pt;}
.ws1b{word-spacing:-0.354667pt;}
.ws53{word-spacing:-0.304000pt;}
.ws4a{word-spacing:-0.253333pt;}
.ws34{word-spacing:-0.234667pt;}
.ws50{word-spacing:-0.202667pt;}
.ws2d{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.176000pt;}
.ws5b{word-spacing:-0.160000pt;}
.ws28{word-spacing:-0.152000pt;}
.ws31{word-spacing:-0.144000pt;}
.ws18{word-spacing:-0.117333pt;}
.ws5a{word-spacing:-0.106667pt;}
.ws1a{word-spacing:-0.101333pt;}
.ws51{word-spacing:-0.068405pt;}
.ws11{word-spacing:-0.058667pt;}
.ws57{word-spacing:-0.053333pt;}
.ws19{word-spacing:-0.050667pt;}
.ws1{word-spacing:-0.048000pt;}
.wsc{word-spacing:-0.029539pt;}
.ws2{word-spacing:0.000000pt;}
.ws30{word-spacing:0.034203pt;}
.ws1c{word-spacing:0.048000pt;}
.ws58{word-spacing:0.053333pt;}
.wsf{word-spacing:0.058667pt;}
.ws3{word-spacing:0.085333pt;}
.ws45{word-spacing:0.096000pt;}
.ws43{word-spacing:0.101333pt;}
.ws12{word-spacing:0.117333pt;}
.ws21{word-spacing:0.152000pt;}
.ws59{word-spacing:0.160000pt;}
.ws20{word-spacing:0.176000pt;}
.ws54{word-spacing:0.177232pt;}
.ws14{word-spacing:0.202667pt;}
.ws5c{word-spacing:0.213333pt;}
.wse{word-spacing:0.234667pt;}
.ws13{word-spacing:0.253333pt;}
.ws6{word-spacing:0.272000pt;}
.ws36{word-spacing:0.273621pt;}
.wsd{word-spacing:0.293333pt;}
.ws26{word-spacing:0.295387pt;}
.ws15{word-spacing:0.304000pt;}
.ws55{word-spacing:0.342027pt;}
.ws37{word-spacing:0.352000pt;}
.ws9{word-spacing:0.362667pt;}
.ws7{word-spacing:0.408000pt;}
.ws38{word-spacing:0.410667pt;}
.ws5{word-spacing:0.453333pt;}
.ws35{word-spacing:0.469333pt;}
.wsa{word-spacing:0.498667pt;}
.ws17{word-spacing:0.506667pt;}
.ws4e{word-spacing:0.528000pt;}
.ws8{word-spacing:0.544000pt;}
.ws16{word-spacing:0.557333pt;}
.ws3e{word-spacing:0.581445pt;}
.ws49{word-spacing:0.586667pt;}
.ws4d{word-spacing:0.645333pt;}
.ws47{word-spacing:0.704000pt;}
.ws48{word-spacing:0.762667pt;}
.ws4f{word-spacing:0.821333pt;}
.ws41{word-spacing:1.994667pt;}
.ws3c{word-spacing:2.992000pt;}
.ws3f{word-spacing:3.050667pt;}
._4{margin-left:-5.888000pt;}
._2{margin-left:-4.405867pt;}
._0{margin-left:-2.634667pt;}
._1{margin-left:-1.386667pt;}
._5{width:1.492800pt;}
._6{width:2.468533pt;}
._3{width:3.637333pt;}
._7{width:4.837067pt;}
._8{width:6.138933pt;}
.fs9{font-size:29.538667pt;}
.fs7{font-size:34.202667pt;}
.fsa{font-size:34.666667pt;}
.fs1{font-size:40.421333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs6{font-size:322.693333pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:94.488133pt;}
.ybd{bottom:94.488267pt;}
.y40{bottom:102.186667pt;}
.yd{bottom:111.821467pt;}
.ybc{bottom:111.821600pt;}
.y116{bottom:114.792267pt;}
.y3f{bottom:115.520000pt;}
.y3e{bottom:128.853333pt;}
.y63{bottom:129.154800pt;}
.ybb{bottom:129.154933pt;}
.y13e{bottom:129.844800pt;}
.y1e7{bottom:130.737200pt;}
.y115{bottom:135.096267pt;}
.y3d{bottom:142.186667pt;}
.y1c3{bottom:144.522000pt;}
.y62{bottom:146.488133pt;}
.yba{bottom:146.488267pt;}
.y1e6{bottom:147.670533pt;}
.y13d{bottom:147.844800pt;}
.y136{bottom:148.655333pt;}
.yf6{bottom:149.352400pt;}
.y1c1{bottom:152.962933pt;}
.y114{bottom:155.400400pt;}
.y3c{bottom:155.520000pt;}
.y61{bottom:163.821467pt;}
.yb9{bottom:163.821600pt;}
.y161{bottom:164.470533pt;}
.y1c2{bottom:164.522000pt;}
.y1e5{bottom:164.603867pt;}
.y13c{bottom:165.844800pt;}
.y17f{bottom:166.203867pt;}
.y19d{bottom:167.844800pt;}
.y135{bottom:168.522000pt;}
.y3b{bottom:168.853333pt;}
.yf5{bottom:169.085733pt;}
.y1c0{bottom:170.962933pt;}
.y113{bottom:175.704400pt;}
.y199{bottom:179.885733pt;}
.y80{bottom:181.154800pt;}
.y15a{bottom:181.154933pt;}
.y1b9{bottom:181.246933pt;}
.y1e4{bottom:181.537200pt;}
.y3a{bottom:182.186667pt;}
.y13b{bottom:183.844800pt;}
.y160{bottom:184.203867pt;}
.yde{bottom:184.522000pt;}
.y19c{bottom:185.844800pt;}
.y17e{bottom:185.937200pt;}
.y134{bottom:188.388667pt;}
.yf4{bottom:188.819067pt;}
.y1bf{bottom:188.962933pt;}
.y39{bottom:195.520000pt;}
.y112{bottom:196.008400pt;}
.y1e3{bottom:198.470533pt;}
.ycf{bottom:198.488133pt;}
.y198{bottom:199.885733pt;}
.y1b8{bottom:200.980133pt;}
.y60{bottom:201.844800pt;}
.yb8{bottom:202.046933pt;}
.y1d3{bottom:202.285733pt;}
.y19b{bottom:203.844800pt;}
.y15f{bottom:203.937200pt;}
.ydd{bottom:204.522000pt;}
.y9b{bottom:204.644800pt;}
.y17d{bottom:205.670533pt;}
.y1be{bottom:206.962933pt;}
.y133{bottom:208.255333pt;}
.yf3{bottom:208.552400pt;}
.y38{bottom:208.853333pt;}
.y13a{bottom:209.403867pt;}
.y1e2{bottom:215.403867pt;}
.yce{bottom:215.821467pt;}
.y111{bottom:216.312533pt;}
.y7f{bottom:217.322000pt;}
.y159{bottom:219.564933pt;}
.y5f{bottom:219.844800pt;}
.y197{bottom:219.885733pt;}
.y1b7{bottom:220.713600pt;}
.yb7{bottom:222.046933pt;}
.y37{bottom:222.186667pt;}
.y1d2{bottom:222.285733pt;}
.y9a{bottom:222.644800pt;}
.y15e{bottom:223.670533pt;}
.ydc{bottom:224.522000pt;}
.y1bd{bottom:224.962933pt;}
.y17c{bottom:225.403867pt;}
.y132{bottom:228.122000pt;}
.yf2{bottom:228.285733pt;}
.y139{bottom:229.403867pt;}
.y1e1{bottom:232.337200pt;}
.ycd{bottom:233.154800pt;}
.y36{bottom:235.520000pt;}
.y110{bottom:236.616533pt;}
.y7e{bottom:237.588667pt;}
.y5e{bottom:237.844800pt;}
.y158{bottom:239.764933pt;}
.y196{bottom:239.885733pt;}
.y1b6{bottom:240.446800pt;}
.y99{bottom:240.644800pt;}
.yb6{bottom:242.046933pt;}
.y1d1{bottom:242.285733pt;}
.y1bc{bottom:242.962933pt;}
.y15d{bottom:243.403867pt;}
.ydb{bottom:244.522000pt;}
.y17b{bottom:245.137200pt;}
.y131{bottom:247.988667pt;}
.yf1{bottom:248.019067pt;}
.y35{bottom:248.853333pt;}
.y1e0{bottom:249.270533pt;}
.y138{bottom:249.403867pt;}
.ycc{bottom:250.488133pt;}
.y5d{bottom:255.844800pt;}
.y10f{bottom:256.920667pt;}
.y7d{bottom:257.855333pt;}
.y195{bottom:259.885733pt;}
.y157{bottom:259.964933pt;}
.y1b5{bottom:260.180267pt;}
.y1bb{bottom:260.962933pt;}
.y34{bottom:262.186667pt;}
.y1d0{bottom:262.285733pt;}
.y15c{bottom:263.137200pt;}
.yda{bottom:264.522000pt;}
.y17a{bottom:264.870533pt;}
.y98{bottom:266.203867pt;}
.yf0{bottom:267.752400pt;}
.y130{bottom:267.855333pt;}
.y137{bottom:269.403867pt;}
.yb5{bottom:269.605867pt;}
.y33{bottom:275.520000pt;}
.y10e{bottom:277.224667pt;}
.y7c{bottom:278.122000pt;}
.y1ba{bottom:278.962933pt;}
.y194{bottom:279.885733pt;}
.y1b4{bottom:279.913600pt;}
.y156{bottom:280.164933pt;}
.y5c{bottom:281.403867pt;}
.y1cf{bottom:282.285733pt;}
.y15b{bottom:282.870533pt;}
.y1df{bottom:283.137200pt;}
.yd9{bottom:284.522000pt;}
.y179{bottom:284.603867pt;}
.y97{bottom:286.337200pt;}
.yb4{bottom:287.605867pt;}
.y12f{bottom:287.722000pt;}
.y32{bottom:288.853333pt;}
.ycb{bottom:289.403867pt;}
.y10d{bottom:297.528667pt;}
.y7b{bottom:298.388667pt;}
.y1b3{bottom:299.646800pt;}
.y193{bottom:299.885733pt;}
.y1de{bottom:300.070533pt;}
.y155{bottom:300.364933pt;}
.y5b{bottom:301.403867pt;}
.y31{bottom:302.186667pt;}
.y1ce{bottom:302.285733pt;}
.yef{bottom:302.603867pt;}
.y178{bottom:304.337200pt;}
.yd8{bottom:304.522000pt;}
.yb3{bottom:305.605867pt;}
.y96{bottom:306.470533pt;}
.y12e{bottom:307.588667pt;}
.yca{bottom:309.403867pt;}
.y30{bottom:315.520000pt;}
.y1dd{bottom:317.003867pt;}
.y10c{bottom:317.832800pt;}
.y7a{bottom:318.655333pt;}
.y1b2{bottom:319.380267pt;}
.y192{bottom:319.885733pt;}
.y154{bottom:320.564933pt;}
.y5a{bottom:321.403867pt;}
.yee{bottom:322.337200pt;}
.yb2{bottom:323.605867pt;}
.y177{bottom:324.070533pt;}
.yd7{bottom:324.522000pt;}
.y95{bottom:326.603867pt;}
.y12d{bottom:327.455333pt;}
.y2f{bottom:328.853333pt;}
.yc9{bottom:329.403867pt;}
.y1dc{bottom:333.937200pt;}
.y1cc{bottom:337.403867pt;}
.y10b{bottom:338.136800pt;}
.y79{bottom:338.922000pt;}
.y1b1{bottom:339.113467pt;}
.y153{bottom:340.764933pt;}
.y59{bottom:341.403867pt;}
.yb1{bottom:341.605867pt;}
.yed{bottom:342.070533pt;}
.y2e{bottom:342.186667pt;}
.y1cd{bottom:342.287867pt;}
.y176{bottom:343.803867pt;}
.yd6{bottom:344.522000pt;}
.y94{bottom:346.737200pt;}
.y12c{bottom:347.322000pt;}
.y191{bottom:347.444800pt;}
.yc8{bottom:349.403867pt;}
.y1db{bottom:350.870533pt;}
.y2d{bottom:355.520000pt;}
.y1cb{bottom:357.403867pt;}
.y10a{bottom:358.440933pt;}
.y1b0{bottom:358.846933pt;}
.y78{bottom:359.188667pt;}
.y152{bottom:360.964933pt;}
.y58{bottom:361.403867pt;}
.yec{bottom:361.803867pt;}
.y175{bottom:363.537200pt;}
.yc{bottom:364.307867pt;}
.yd5{bottom:364.522000pt;}
.y190{bottom:365.444800pt;}
.y93{bottom:366.870533pt;}
.yb0{bottom:367.164933pt;}
.y12a{bottom:367.188667pt;}
.y1da{bottom:367.803867pt;}
.y2c{bottom:368.853333pt;}
.yc7{bottom:369.403867pt;}
.y12b{bottom:372.072667pt;}
.y1ca{bottom:377.403867pt;}
.y1af{bottom:378.580267pt;}
.y109{bottom:378.744933pt;}
.y77{bottom:379.455333pt;}
.y151{bottom:381.164933pt;}
.y9{bottom:381.223333pt;}
.y57{bottom:381.403867pt;}
.yeb{bottom:381.537200pt;}
.y2b{bottom:382.186667pt;}
.y174{bottom:383.270533pt;}
.y18f{bottom:383.444800pt;}
.yd4{bottom:384.522000pt;}
.y1d9{bottom:384.737200pt;}
.yaf{bottom:386.898267pt;}
.y92{bottom:387.003867pt;}
.y129{bottom:387.055333pt;}
.yc6{bottom:389.403867pt;}
.y2a{bottom:395.520000pt;}
.y8{bottom:397.223333pt;}
.y1c9{bottom:397.403867pt;}
.y1ae{bottom:398.313467pt;}
.y108{bottom:399.048933pt;}
.y76{bottom:399.722000pt;}
.yea{bottom:401.270533pt;}
.y14f{bottom:401.364933pt;}
.y56{bottom:401.403867pt;}
.y18e{bottom:401.444800pt;}
.y1d8{bottom:401.670533pt;}
.yd3{bottom:404.522000pt;}
.y150{bottom:406.248933pt;}
.yae{bottom:406.631600pt;}
.y128{bottom:406.922000pt;}
.y91{bottom:407.137200pt;}
.y29{bottom:408.853333pt;}
.yc5{bottom:409.403867pt;}
.y173{bottom:410.562933pt;}
.y1c8{bottom:417.403867pt;}
.y1ad{bottom:418.046933pt;}
.y1d7{bottom:418.603867pt;}
.y107{bottom:419.353067pt;}
.y75{bottom:419.988667pt;}
.ye9{bottom:421.003867pt;}
.y55{bottom:421.403867pt;}
.y14e{bottom:421.564933pt;}
.y28{bottom:422.186667pt;}
.yd2{bottom:424.522000pt;}
.yad{bottom:426.364933pt;}
.y127{bottom:426.788667pt;}
.y18d{bottom:427.003867pt;}
.y90{bottom:427.270533pt;}
.y172{bottom:428.562933pt;}
.yc4{bottom:429.403867pt;}
.y1d6{bottom:435.537200pt;}
.y1ac{bottom:437.780133pt;}
.y106{bottom:439.657067pt;}
.y74{bottom:440.255333pt;}
.ye8{bottom:440.737200pt;}
.y54{bottom:441.403867pt;}
.y14d{bottom:441.764933pt;}
.yb{bottom:442.662533pt;}
.yd1{bottom:444.522000pt;}
.y1c7{bottom:444.962933pt;}
.yac{bottom:446.098267pt;}
.y171{bottom:446.562933pt;}
.y126{bottom:446.655333pt;}
.y18c{bottom:446.737200pt;}
.y27{bottom:446.858533pt;}
.y8f{bottom:447.403867pt;}
.y19a{bottom:449.403867pt;}
.y1d5{bottom:452.470533pt;}
.y1ab{bottom:457.513467pt;}
.y105{bottom:459.961200pt;}
.y26{bottom:460.191867pt;}
.ye7{bottom:460.470533pt;}
.y73{bottom:460.522000pt;}
.y14c{bottom:461.965067pt;}
.y1c6{bottom:462.962933pt;}
.yc3{bottom:464.522000pt;}
.y170{bottom:464.562933pt;}
.yab{bottom:465.831600pt;}
.y18b{bottom:466.470533pt;}
.y125{bottom:466.522000pt;}
.y8e{bottom:467.537200pt;}
.y52{bottom:468.962933pt;}
.y7{bottom:469.026800pt;}
.y1d4{bottom:469.403867pt;}
.y53{bottom:473.180933pt;}
.y25{bottom:473.525200pt;}
.ye6{bottom:480.203867pt;}
.y104{bottom:480.265200pt;}
.y72{bottom:480.788667pt;}
.y1c5{bottom:480.962933pt;}
.y14b{bottom:482.164933pt;}
.yc2{bottom:484.522000pt;}
.y1aa{bottom:484.805867pt;}
.y6{bottom:485.026800pt;}
.yaa{bottom:485.564933pt;}
.y18a{bottom:486.203867pt;}
.y124{bottom:486.388667pt;}
.y24{bottom:486.858533pt;}
.y51{bottom:486.962933pt;}
.y8d{bottom:487.670533pt;}
.y16f{bottom:490.122000pt;}
.y1c4{bottom:498.962933pt;}
.ye5{bottom:499.937200pt;}
.y23{bottom:500.191867pt;}
.y103{bottom:500.569200pt;}
.y71{bottom:501.055333pt;}
.y14a{bottom:502.364933pt;}
.y1a9{bottom:502.805867pt;}
.yc1{bottom:504.522000pt;}
.y50{bottom:504.962933pt;}
.y5{bottom:505.023333pt;}
.ya9{bottom:505.298400pt;}
.y189{bottom:505.937200pt;}
.y123{bottom:506.255333pt;}
.y8c{bottom:507.803867pt;}
.y16e{bottom:509.722000pt;}
.y22{bottom:513.525200pt;}
.ye4{bottom:519.670533pt;}
.y1a8{bottom:520.805867pt;}
.y102{bottom:520.873333pt;}
.y70{bottom:521.322000pt;}
.y149{bottom:522.564933pt;}
.y1f6{bottom:522.790000pt;}
.y4f{bottom:522.962933pt;}
.yc0{bottom:524.522000pt;}
.ya8{bottom:525.031600pt;}
.y188{bottom:525.670533pt;}
.y122{bottom:526.122000pt;}
.y21{bottom:526.858533pt;}
.y8b{bottom:527.937200pt;}
.y16d{bottom:529.322000pt;}
.y1a7{bottom:538.805867pt;}
.y1f5{bottom:540.123333pt;}
.y20{bottom:540.191867pt;}
.y4e{bottom:540.962933pt;}
.y101{bottom:541.177333pt;}
.y6f{bottom:541.588667pt;}
.y148{bottom:542.764933pt;}
.ybf{bottom:544.522000pt;}
.ya7{bottom:544.764933pt;}
.y121{bottom:545.988667pt;}
.ye3{bottom:546.962933pt;}
.y8a{bottom:548.070533pt;}
.y16c{bottom:548.922000pt;}
.y187{bottom:552.962933pt;}
.y1f{bottom:553.525200pt;}
.y1a6{bottom:556.805867pt;}
.y1f4{bottom:557.456667pt;}
.y4d{bottom:558.962933pt;}
.y100{bottom:561.481467pt;}
.y6e{bottom:561.855333pt;}
.y147{bottom:562.965067pt;}
.ya6{bottom:564.498267pt;}
.ybe{bottom:564.522000pt;}
.ye2{bottom:564.962933pt;}
.y120{bottom:565.855333pt;}
.y1e{bottom:566.858533pt;}
.y16b{bottom:568.522000pt;}
.y186{bottom:570.962933pt;}
.y1f3{bottom:574.790000pt;}
.y1a5{bottom:574.805867pt;}
.y1d{bottom:580.191867pt;}
.yff{bottom:581.785467pt;}
.y6d{bottom:582.122000pt;}
.ye1{bottom:582.962933pt;}
.y146{bottom:583.164933pt;}
.y89{bottom:583.322000pt;}
.ya5{bottom:584.231600pt;}
.y4c{bottom:584.522000pt;}
.y11f{bottom:585.722000pt;}
.y16a{bottom:588.122000pt;}
.y185{bottom:588.962933pt;}
.y1f2{bottom:592.123333pt;}
.y1c{bottom:593.525200pt;}
.y1a4{bottom:600.364933pt;}
.ye0{bottom:600.962933pt;}
.yfe{bottom:602.089467pt;}
.y6c{bottom:602.388667pt;}
.y145{bottom:603.364933pt;}
.y88{bottom:603.455333pt;}
.ya4{bottom:603.965067pt;}
.y4a{bottom:604.522000pt;}
.y11e{bottom:605.588667pt;}
.y1b{bottom:606.858533pt;}
.y184{bottom:606.962933pt;}
.y169{bottom:607.722000pt;}
.y4b{bottom:609.406000pt;}
.y1f1{bottom:609.456667pt;}
.ydf{bottom:618.962933pt;}
.y1a{bottom:620.191867pt;}
.y1a3{bottom:620.364933pt;}
.yfd{bottom:622.393600pt;}
.y6b{bottom:622.655333pt;}
.y144{bottom:623.564933pt;}
.y87{bottom:623.588667pt;}
.ya3{bottom:623.698267pt;}
.y49{bottom:624.522000pt;}
.y183{bottom:624.962933pt;}
.y11d{bottom:625.455333pt;}
.y1f0{bottom:626.790000pt;}
.y168{bottom:627.322000pt;}
.y19{bottom:633.525200pt;}
.y1a2{bottom:640.364933pt;}
.yfc{bottom:642.697600pt;}
.y6a{bottom:642.922000pt;}
.y182{bottom:642.962933pt;}
.ya2{bottom:643.431600pt;}
.y86{bottom:643.722000pt;}
.y142{bottom:643.764933pt;}
.y1ef{bottom:644.123333pt;}
.y48{bottom:644.522000pt;}
.y11c{bottom:645.322000pt;}
.y18{bottom:646.858533pt;}
.y167{bottom:646.922000pt;}
.y143{bottom:648.648933pt;}
.y17{bottom:660.191867pt;}
.y1a1{bottom:660.364933pt;}
.y181{bottom:660.962933pt;}
.y1ee{bottom:661.456667pt;}
.yfb{bottom:663.001733pt;}
.ya1{bottom:663.164933pt;}
.y69{bottom:663.188667pt;}
.y85{bottom:663.855333pt;}
.y141{bottom:663.964933pt;}
.y47{bottom:664.522000pt;}
.y11b{bottom:665.188667pt;}
.y166{bottom:666.522000pt;}
.y16{bottom:673.525200pt;}
.y1ed{bottom:678.790000pt;}
.y180{bottom:678.962933pt;}
.y1a0{bottom:680.364933pt;}
.y4{bottom:681.358400pt;}
.ya0{bottom:682.898267pt;}
.yfa{bottom:683.305733pt;}
.y68{bottom:683.455333pt;}
.y84{bottom:683.988667pt;}
.y140{bottom:684.164933pt;}
.y46{bottom:684.522000pt;}
.y11a{bottom:685.055333pt;}
.y165{bottom:686.122000pt;}
.y15{bottom:686.858533pt;}
.y1ec{bottom:696.123333pt;}
.y14{bottom:700.191867pt;}
.y19f{bottom:700.364933pt;}
.y3{bottom:701.358400pt;}
.y9f{bottom:702.631733pt;}
.yf9{bottom:703.609733pt;}
.y67{bottom:703.722000pt;}
.y83{bottom:704.122000pt;}
.y45{bottom:704.522000pt;}
.y119{bottom:704.922000pt;}
.y164{bottom:705.722000pt;}
.y13f{bottom:711.924000pt;}
.y1eb{bottom:713.456667pt;}
.y13{bottom:713.525200pt;}
.y19e{bottom:720.364933pt;}
.yf8{bottom:723.913867pt;}
.y66{bottom:723.988667pt;}
.y82{bottom:724.255333pt;}
.y42{bottom:724.522000pt;}
.y118{bottom:724.788667pt;}
.y163{bottom:725.322000pt;}
.y12{bottom:726.858533pt;}
.y9e{bottom:729.924000pt;}
.y1ea{bottom:730.790000pt;}
.y2{bottom:739.986000pt;}
.y11{bottom:740.191867pt;}
.yf7{bottom:744.218000pt;}
.y65{bottom:744.255333pt;}
.y81{bottom:744.388667pt;}
.y44{bottom:744.522000pt;}
.y117{bottom:744.655333pt;}
.y162{bottom:744.922000pt;}
.y9d{bottom:747.924000pt;}
.y1e9{bottom:748.123333pt;}
.yd0{bottom:749.406000pt;}
.y10{bottom:753.525200pt;}
.y1{bottom:762.652667pt;}
.y43{bottom:764.522000pt;}
.y1e8{bottom:765.456667pt;}
.y9c{bottom:765.924000pt;}
.yf{bottom:766.858533pt;}
.y64{bottom:774.803200pt;}
.y41{bottom:827.296000pt;}
.ya{bottom:841.165333pt;}
.h12{height:25.462331pt;}
.hf{height:29.482699pt;}
.h14{height:30.090667pt;}
.h7{height:30.293333pt;}
.h6{height:37.034667pt;}
.h5{height:38.016000pt;}
.ha{height:39.077333pt;}
.h9{height:39.349333pt;}
.h15{height:41.125333pt;}
.h8{height:41.376000pt;}
.h13{height:41.664000pt;}
.h11{height:43.674667pt;}
.h10{height:43.978667pt;}
.hb{height:45.120000pt;}
.h16{height:45.973333pt;}
.h17{height:46.293333pt;}
.h3{height:50.160000pt;}
.he{height:50.570667pt;}
.hd{height:50.922667pt;}
.h4{height:55.146667pt;}
.h2{height:59.280000pt;}
.hc{height:278.161653pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x3{left:37.752267pt;}
.x4{left:93.116667pt;}
.x1{left:94.488133pt;}
.x13{left:118.725467pt;}
.x2{left:121.395333pt;}
.x14{left:126.751467pt;}
.x11{left:133.571600pt;}
.x12{left:141.893333pt;}
.x5{left:163.060400pt;}
.x6{left:167.616400pt;}
.xd{left:391.595467pt;}
.xe{left:399.524400pt;}
.xf{left:443.243867pt;}
.x10{left:451.087467pt;}
.xb{left:520.962933pt;}
.x15{left:523.956800pt;}
.x7{left:525.660133pt;}
.xc{left:529.133867pt;}
.x8{left:567.054133pt;}
.xa{left:568.536133pt;}
.x9{left:574.082267pt;}
}




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