
    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_3f387f991640e2b7711775bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107000;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_bc953e0a93bfbd86da612c90.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096000;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_1b4bd3a72723f5351be917de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.965000;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_a45048392e1ffb173dee0455.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102000;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_a0dd798c6d444860ce54c22d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112000;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_8fd24fb7d4365841fb137b82.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965000;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_6c7aca067b76b8855d36dda9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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_e09dbfd93337f541822da090.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983000;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_8025d5a2315261e72f0e82de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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;}
.m9{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);}
.m26{transform:matrix(0.242612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242612,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.242972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242972,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.243089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243089,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.243322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243322,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.243635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243635,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.243638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243638,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.243743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243743,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.244097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244097,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.244110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244110,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.244192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244192,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.244227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244227,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.244411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244411,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.244413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244413,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244442,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.244453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244453,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.244547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244547,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.244570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244570,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244722,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.244732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244732,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.244747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244747,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.244967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244967,0.000000,0.000000,0.250000,0,0);}
.m138{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);}
.m1d{transform:matrix(0.245010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245010,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245103,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.245178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245178,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.245182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245182,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.245233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245233,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.245553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245553,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245597,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.245757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245757,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245760,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.245846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245846,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.246035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246035,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m10a{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);}
.mbb{transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246243,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.246321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246321,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.246338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246338,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.246365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246365,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246532,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.246639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246639,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.246658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246658,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.246663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246663,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246795,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.246804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246804,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246843,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);}
.m6e{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);}
.m89{transform:matrix(0.246936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246936,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247008,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247057,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.247230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247230,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.247306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247306,0.000000,0.000000,0.250000,0,0);}
.mce{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);}
.m126{transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.247422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247422,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.247433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247433,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.247588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247588,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247647,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247933,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);}
.mbe{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);}
.m110{transform:matrix(0.248022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248022,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248097,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248118,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248207,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248267,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.248506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248506,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248643,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248652,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248821,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248839,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.248953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248953,0.000000,0.000000,0.250000,0,0);}
.m44{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);}
.m4b{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);}
.mda{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);}
.mf3{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249102,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m81{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249369,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249388,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.m12e{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);}
.m41{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,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);}
.m32{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);}
.m6c{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);}
.m12{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.me3{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250837,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250972,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251087,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251767,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.251942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251942,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.252213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252213,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);}
.m13c{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);}
.m107{transform:matrix(0.252663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252663,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252844,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.253216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253216,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253217,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.253370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253370,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253457,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.253508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253508,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.253727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253727,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.253742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253742,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253832,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253878,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.254192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254192,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.254372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254372,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m13d{transform:matrix(0.254939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254939,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254993,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.255115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255115,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.255442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255442,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255597,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.255983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255983,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.256016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256016,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.256119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256119,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.256582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256582,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.256657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256657,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.256913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256913,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257222,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:19.980000px;}
.ls49{letter-spacing:-1.275000px;}
.ls2f{letter-spacing:-1.092000px;}
.ls24{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.780000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.600000px;}
.ls44{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.462000px;}
.ls41{letter-spacing:-0.454740px;}
.ls6{letter-spacing:-0.420000px;}
.ls21{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.349800px;}
.lsa{letter-spacing:-0.336000px;}
.ls51{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.294000px;}
.ls50{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.210000px;}
.ls25{letter-spacing:-0.209880px;}
.ls8{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.168000px;}
.ls4{letter-spacing:-0.162000px;}
.ls42{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.126000px;}
.ls1b{letter-spacing:-0.120000px;}
.ls4f{letter-spacing:-0.108000px;}
.ls40{letter-spacing:-0.096000px;}
.ls31{letter-spacing:-0.084000px;}
.ls37{letter-spacing:-0.069960px;}
.ls5{letter-spacing:-0.060000px;}
.ls4e{letter-spacing:-0.054000px;}
.ls36{letter-spacing:-0.048000px;}
.ls1c{letter-spacing:-0.042000px;}
.ls2a{letter-spacing:-0.034980px;}
.ls3{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.030000px;}
.ls45{letter-spacing:0.042000px;}
.ls4d{letter-spacing:0.054000px;}
.ls19{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.084000px;}
.ls32{letter-spacing:0.090000px;}
.ls34{letter-spacing:0.096000px;}
.ls2e{letter-spacing:0.104940px;}
.ls4a{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.126000px;}
.ls33{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.144664px;}
.ls4c{letter-spacing:0.162000px;}
.ls27{letter-spacing:0.168000px;}
.ls2c{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.240000px;}
.ls2d{letter-spacing:0.270000px;}
.ls3f{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls15{letter-spacing:0.349020px;}
.ls14{letter-spacing:0.349440px;}
.ls3d{letter-spacing:0.349800px;}
.ls3e{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.390000px;}
.ls48{letter-spacing:0.419760px;}
.ls39{letter-spacing:0.420000px;}
.ls52{letter-spacing:0.459000px;}
.ls16{letter-spacing:0.480000px;}
.ls3a{letter-spacing:0.510000px;}
.ls10{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.576000px;}
.lse{letter-spacing:0.600000px;}
.ls3b{letter-spacing:0.660000px;}
.ls47{letter-spacing:0.690000px;}
.lsf{letter-spacing:0.720000px;}
.ls3c{letter-spacing:0.780000px;}
.ls29{letter-spacing:0.890400px;}
.ls12{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.125000px;}
.ls1{letter-spacing:1.350000px;}
.ls0{letter-spacing:1.620000px;}
.lsd{letter-spacing:2.310000px;}
.ls35{letter-spacing:3.606000px;}
.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;}
}
.wsca{word-spacing:-19.125000px;}
.ws1b{word-spacing:-18.360000px;}
.ws2{word-spacing:-17.280000px;}
.wsa1{word-spacing:-14.100000px;}
.ws97{word-spacing:-13.500000px;}
.wsb6{word-spacing:-13.440000px;}
.ws1{word-spacing:-12.960000px;}
.ws15{word-spacing:-12.390000px;}
.wscc{word-spacing:-12.150000px;}
.wscd{word-spacing:-12.096000px;}
.ws44{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.786000px;}
.ws0{word-spacing:-8.395200px;}
.wsc4{word-spacing:-8.290260px;}
.wsa2{word-spacing:-8.220300px;}
.ws60{word-spacing:-7.975440px;}
.ws3{word-spacing:-7.870500px;}
.ws57{word-spacing:-7.835520px;}
.ws6e{word-spacing:-7.520700px;}
.wsad{word-spacing:-7.415760px;}
.ws80{word-spacing:-6.716160px;}
.wsae{word-spacing:-3.060000px;}
.wsb8{word-spacing:-2.940000px;}
.ws1f{word-spacing:-2.820000px;}
.wsc{word-spacing:-2.760000px;}
.wsa{word-spacing:-2.700000px;}
.wsb0{word-spacing:-2.640000px;}
.wsdb{word-spacing:-2.538000px;}
.ws9f{word-spacing:-2.520000px;}
.wsd5{word-spacing:-2.484000px;}
.ws5b{word-spacing:-2.460000px;}
.wsda{word-spacing:-2.430000px;}
.ws93{word-spacing:-2.400000px;}
.wsb3{word-spacing:-2.352000px;}
.ws83{word-spacing:-2.304000px;}
.ws3b{word-spacing:-2.280000px;}
.ws65{word-spacing:-2.220000px;}
.ws84{word-spacing:-2.208000px;}
.ws4a{word-spacing:-2.160000px;}
.ws10{word-spacing:-2.142000px;}
.wsdd{word-spacing:-2.106000px;}
.ws13{word-spacing:-2.100000px;}
.ws2b{word-spacing:-2.058000px;}
.ws2a{word-spacing:-2.016000px;}
.ws7b{word-spacing:-1.980000px;}
.ws61{word-spacing:-1.920000px;}
.wsbe{word-spacing:-1.890000px;}
.wsa5{word-spacing:-1.860000px;}
.ws5a{word-spacing:-1.800000px;}
.wsde{word-spacing:-1.782000px;}
.ws3e{word-spacing:-1.740000px;}
.ws2f{word-spacing:-1.680000px;}
.ws30{word-spacing:-1.638000px;}
.ws9b{word-spacing:-1.620000px;}
.ws3d{word-spacing:-1.560000px;}
.ws76{word-spacing:-1.500000px;}
.wsa8{word-spacing:-1.488000px;}
.ws23{word-spacing:-1.440000px;}
.ws95{word-spacing:-1.380000px;}
.ws85{word-spacing:-1.344000px;}
.ws34{word-spacing:-1.320000px;}
.ws7d{word-spacing:-1.260000px;}
.ws5c{word-spacing:-1.200000px;}
.ws4e{word-spacing:-1.140000px;}
.wsce{word-spacing:-1.125000px;}
.wsaf{word-spacing:-1.080000px;}
.wsbc{word-spacing:-1.056000px;}
.ws69{word-spacing:-1.020000px;}
.ws21{word-spacing:-0.960000px;}
.ws56{word-spacing:-0.924000px;}
.ws22{word-spacing:-0.900000px;}
.ws6{word-spacing:-0.864000px;}
.ws36{word-spacing:-0.840000px;}
.wsbb{word-spacing:-0.816000px;}
.ws8a{word-spacing:-0.780000px;}
.ws6d{word-spacing:-0.756000px;}
.ws7{word-spacing:-0.720000px;}
.wsb2{word-spacing:-0.672000px;}
.ws20{word-spacing:-0.660000px;}
.ws2c{word-spacing:-0.630000px;}
.ws24{word-spacing:-0.600000px;}
.wsd4{word-spacing:-0.594000px;}
.ws1d{word-spacing:-0.576000px;}
.ws78{word-spacing:-0.540000px;}
.wsba{word-spacing:-0.528000px;}
.ws45{word-spacing:-0.480000px;}
.ws1a{word-spacing:-0.420000px;}
.wsc5{word-spacing:-0.378000px;}
.wsbd{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.336000px;}
.ws4d{word-spacing:-0.300000px;}
.ws2d{word-spacing:-0.294000px;}
.ws18{word-spacing:-0.240000px;}
.ws70{word-spacing:-0.180000px;}
.ws5e{word-spacing:-0.168000px;}
.ws55{word-spacing:-0.126000px;}
.ws90{word-spacing:-0.120000px;}
.ws52{word-spacing:-0.084000px;}
.ws37{word-spacing:-0.060000px;}
.wsbf{word-spacing:-0.042000px;}
.ws5{word-spacing:0.000000px;}
.wsb7{word-spacing:0.034980px;}
.ws29{word-spacing:0.042000px;}
.wsd9{word-spacing:0.054000px;}
.ws63{word-spacing:0.060000px;}
.ws9a{word-spacing:0.069960px;}
.ws8e{word-spacing:0.084000px;}
.wse2{word-spacing:0.108000px;}
.ws27{word-spacing:0.120000px;}
.ws5d{word-spacing:0.126000px;}
.ws8{word-spacing:0.162000px;}
.ws9e{word-spacing:0.168000px;}
.ws48{word-spacing:0.180000px;}
.ws49{word-spacing:0.209880px;}
.ws12{word-spacing:0.210000px;}
.ws74{word-spacing:0.240000px;}
.ws11{word-spacing:0.294000px;}
.ws79{word-spacing:0.300000px;}
.wsf{word-spacing:0.336000px;}
.ws62{word-spacing:0.360000px;}
.ws9d{word-spacing:0.378000px;}
.ws99{word-spacing:0.420000px;}
.wsa3{word-spacing:0.480000px;}
.ws6c{word-spacing:0.504000px;}
.ws75{word-spacing:0.540000px;}
.wsa0{word-spacing:0.546000px;}
.ws43{word-spacing:0.588000px;}
.ws7a{word-spacing:0.600000px;}
.ws4c{word-spacing:0.660000px;}
.ws59{word-spacing:0.720000px;}
.wse0{word-spacing:0.756000px;}
.ws14{word-spacing:0.780000px;}
.wsc2{word-spacing:0.816000px;}
.ws19{word-spacing:0.840000px;}
.ws87{word-spacing:0.960000px;}
.wsdc{word-spacing:0.972000px;}
.ws40{word-spacing:1.008000px;}
.ws89{word-spacing:1.020000px;}
.wsb5{word-spacing:1.080000px;}
.ws6b{word-spacing:1.092000px;}
.ws88{word-spacing:1.140000px;}
.ws54{word-spacing:1.176000px;}
.wsb4{word-spacing:1.200000px;}
.ws53{word-spacing:1.218000px;}
.ws47{word-spacing:1.260000px;}
.wscb{word-spacing:1.275000px;}
.ws2e{word-spacing:1.302000px;}
.ws51{word-spacing:1.320000px;}
.wsa7{word-spacing:1.344000px;}
.wsd7{word-spacing:1.350000px;}
.ws50{word-spacing:1.380000px;}
.ws82{word-spacing:1.392000px;}
.ws6a{word-spacing:1.428000px;}
.wsa4{word-spacing:1.440000px;}
.wsc8{word-spacing:1.470000px;}
.ws28{word-spacing:1.500000px;}
.ws94{word-spacing:1.560000px;}
.ws72{word-spacing:1.620000px;}
.wsd1{word-spacing:1.674000px;}
.ws8c{word-spacing:1.680000px;}
.ws3f{word-spacing:1.740000px;}
.wsc1{word-spacing:1.776000px;}
.ws4f{word-spacing:1.800000px;}
.wsc3{word-spacing:1.860000px;}
.ws38{word-spacing:1.920000px;}
.ws64{word-spacing:1.980000px;}
.wsc0{word-spacing:2.016000px;}
.ws6f{word-spacing:2.040000px;}
.wsd2{word-spacing:2.052000px;}
.ws17{word-spacing:2.100000px;}
.ws31{word-spacing:2.160000px;}
.ws26{word-spacing:2.220000px;}
.ws9c{word-spacing:2.226000px;}
.ws42{word-spacing:2.268000px;}
.ws58{word-spacing:2.280000px;}
.wsb{word-spacing:2.340000px;}
.ws16{word-spacing:2.400000px;}
.wsdf{word-spacing:2.430000px;}
.wsc6{word-spacing:2.460000px;}
.wsd8{word-spacing:2.484000px;}
.ws46{word-spacing:2.520000px;}
.wsc7{word-spacing:2.580000px;}
.ws3a{word-spacing:2.640000px;}
.ws9{word-spacing:2.700000px;}
.ws33{word-spacing:2.760000px;}
.wsd6{word-spacing:2.808000px;}
.ws7c{word-spacing:2.820000px;}
.ws35{word-spacing:2.880000px;}
.ws8f{word-spacing:2.940000px;}
.ws7f{word-spacing:3.000000px;}
.ws96{word-spacing:3.024000px;}
.ws4b{word-spacing:3.060000px;}
.ws71{word-spacing:3.120000px;}
.wsac{word-spacing:3.180000px;}
.ws98{word-spacing:3.240000px;}
.ws5f{word-spacing:3.276000px;}
.wsaa{word-spacing:3.300000px;}
.ws41{word-spacing:3.318000px;}
.ws68{word-spacing:3.360000px;}
.ws8d{word-spacing:3.420000px;}
.wsb9{word-spacing:3.456000px;}
.ws77{word-spacing:3.480000px;}
.ws91{word-spacing:3.540000px;}
.ws32{word-spacing:3.600000px;}
.ws8b{word-spacing:3.660000px;}
.wsd3{word-spacing:3.672000px;}
.wsa6{word-spacing:3.696000px;}
.ws67{word-spacing:3.720000px;}
.ws81{word-spacing:3.744000px;}
.wsa9{word-spacing:3.780000px;}
.ws86{word-spacing:3.792000px;}
.ws73{word-spacing:3.840000px;}
.wscf{word-spacing:3.942000px;}
.wsc9{word-spacing:3.960000px;}
.wsd0{word-spacing:3.996000px;}
.ws7e{word-spacing:4.020000px;}
.wsab{word-spacing:4.080000px;}
.wsb1{word-spacing:4.140000px;}
.ws92{word-spacing:4.200000px;}
.ws66{word-spacing:4.260000px;}
.ws39{word-spacing:4.320000px;}
.wse{word-spacing:4.380000px;}
.wsd{word-spacing:4.440000px;}
.ws1e{word-spacing:4.500000px;}
.wse1{word-spacing:5.022000px;}
.ws25{word-spacing:5.040000px;}
.ws3c{word-spacing:5.940000px;}
._4{margin-left:-4.719000px;}
._3{margin-left:-3.348000px;}
._2{margin-left:-2.301000px;}
._0{margin-left:-1.014000px;}
._5{width:1.350000px;}
._d{width:2.727600px;}
._b{width:3.780000px;}
._6{width:11.760000px;}
._8{width:13.050000px;}
._9{width:15.225000px;}
._a{width:16.350000px;}
._c{width:20.025000px;}
._7{width:22.608000px;}
._1{width:29.640000px;}
.fc4{color:rgb(238,41,57);}
.fc3{color:rgb(4,6,6);}
.fc1{color:rgb(239,52,51);}
.fc2{color:rgb(98,106,104);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fs4{font-size:34.980000px;}
.fs1{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:75.000000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:73.757700px;}
.y1{bottom:81.520200px;}
.y2{bottom:85.457700px;}
.y1f{bottom:140.187600px;}
.y43{bottom:140.187750px;}
.y4e{bottom:140.187900px;}
.y79{bottom:140.188050px;}
.y88{bottom:140.188200px;}
.yb5{bottom:142.486950px;}
.y3d{bottom:152.787600px;}
.y1e{bottom:152.787750px;}
.y4d{bottom:152.787900px;}
.y78{bottom:152.788050px;}
.y87{bottom:152.788200px;}
.yb4{bottom:158.686950px;}
.y59{bottom:165.387600px;}
.y42{bottom:165.387750px;}
.y3c{bottom:165.387900px;}
.y77{bottom:165.388050px;}
.y86{bottom:165.388200px;}
.yb3{bottom:174.886950px;}
.y41{bottom:177.987750px;}
.y3b{bottom:177.987900px;}
.y76{bottom:177.988050px;}
.y85{bottom:177.988200px;}
.y40{bottom:190.587750px;}
.y3a{bottom:190.587900px;}
.y5a{bottom:190.588050px;}
.y84{bottom:190.588200px;}
.yb2{bottom:191.086950px;}
.y5f{bottom:196.486950px;}
.y3f{bottom:203.187750px;}
.y39{bottom:203.187900px;}
.y50{bottom:203.188050px;}
.y75{bottom:203.188200px;}
.yb1{bottom:207.286950px;}
.y5e{bottom:215.236950px;}
.y48{bottom:215.787750px;}
.y38{bottom:215.787900px;}
.y4f{bottom:215.788050px;}
.y74{bottom:215.788200px;}
.y73{bottom:220.486950px;}
.yb0{bottom:223.486950px;}
.y47{bottom:228.387750px;}
.y37{bottom:228.387900px;}
.y5d{bottom:228.388200px;}
.y51{bottom:233.986950px;}
.y72{bottom:235.486950px;}
.yaf{bottom:239.686950px;}
.y36{bottom:240.987900px;}
.y4c{bottom:240.988050px;}
.y5c{bottom:240.988350px;}
.y71{bottom:250.486950px;}
.y1d{bottom:252.736950px;}
.y35{bottom:253.587900px;}
.y4b{bottom:253.588050px;}
.yae{bottom:255.886950px;}
.y46{bottom:266.187900px;}
.y4a{bottom:266.188050px;}
.y1c{bottom:271.486950px;}
.yad{bottom:272.086950px;}
.y3e{bottom:276.481950px;}
.y45{bottom:278.787900px;}
.y49{bottom:278.788050px;}
.yac{bottom:288.286950px;}
.y1b{bottom:290.236950px;}
.yab{bottom:304.486950px;}
.y34{bottom:308.986950px;}
.yaa{bottom:320.686950px;}
.y1a{bottom:327.736950px;}
.ya9{bottom:336.886950px;}
.y19{bottom:346.486950px;}
.ya8{bottom:353.086950px;}
.y18{bottom:365.236950px;}
.ya7{bottom:369.286950px;}
.y17{bottom:383.986950px;}
.ya6{bottom:385.486950px;}
.ya5{bottom:401.686950px;}
.y16{bottom:402.736950px;}
.ya4{bottom:417.886950px;}
.y15{bottom:421.486950px;}
.ya3{bottom:434.086950px;}
.yd2{bottom:439.186950px;}
.y14{bottom:440.236950px;}
.ya2{bottom:450.286950px;}
.yd1{bottom:455.386950px;}
.y13{bottom:458.986950px;}
.ya1{bottom:466.486950px;}
.yd0{bottom:471.586950px;}
.y12{bottom:477.736950px;}
.ya0{bottom:482.686950px;}
.ycf{bottom:487.786950px;}
.y83{bottom:494.236950px;}
.y11{bottom:496.486950px;}
.y9f{bottom:498.886950px;}
.yce{bottom:503.986950px;}
.y82{bottom:509.236950px;}
.y9e{bottom:515.086950px;}
.y10{bottom:515.236950px;}
.y6f{bottom:516.736950px;}
.ycd{bottom:520.186950px;}
.y81{bottom:524.236950px;}
.y9d{bottom:531.286950px;}
.y6e{bottom:531.736950px;}
.y33{bottom:533.986950px;}
.ycc{bottom:536.386950px;}
.y80{bottom:539.236950px;}
.y6d{bottom:546.736950px;}
.y9c{bottom:547.486950px;}
.ycb{bottom:552.586950px;}
.y32{bottom:552.736950px;}
.y7f{bottom:554.236950px;}
.y6c{bottom:561.736950px;}
.y9b{bottom:563.686950px;}
.yca{bottom:568.786950px;}
.y7e{bottom:569.236950px;}
.yf{bottom:571.485450px;}
.y31{bottom:571.486950px;}
.y6b{bottom:576.736950px;}
.y9a{bottom:579.886950px;}
.yc9{bottom:584.986950px;}
.ye{bottom:590.236950px;}
.y6a{bottom:591.736950px;}
.y99{bottom:596.086950px;}
.yc8{bottom:601.186950px;}
.y69{bottom:606.736950px;}
.y30{bottom:608.986950px;}
.y98{bottom:612.286950px;}
.yc7{bottom:617.386950px;}
.yd{bottom:627.736950px;}
.y97{bottom:628.486950px;}
.yc6{bottom:633.586950px;}
.y7d{bottom:636.736950px;}
.y96{bottom:644.686950px;}
.y2f{bottom:646.486950px;}
.yc5{bottom:649.786950px;}
.y5b{bottom:651.481950px;}
.y7c{bottom:651.736950px;}
.y95{bottom:660.886950px;}
.y2d{bottom:665.236950px;}
.yc4{bottom:665.986950px;}
.y7b{bottom:666.736950px;}
.yc{bottom:668.668950px;}
.y94{bottom:677.086950px;}
.y7a{bottom:681.736950px;}
.yc3{bottom:682.186950px;}
.y2c{bottom:683.986950px;}
.yb{bottom:691.168950px;}
.y93{bottom:693.286950px;}
.yc2{bottom:698.386950px;}
.y2b{bottom:702.736950px;}
.y68{bottom:707.731950px;}
.y92{bottom:709.486950px;}
.ya{bottom:713.668950px;}
.yc1{bottom:714.586950px;}
.y2e{bottom:721.486950px;}
.y91{bottom:725.686950px;}
.y44{bottom:726.481950px;}
.yc0{bottom:730.786950px;}
.y9{bottom:736.168950px;}
.y2a{bottom:740.236950px;}
.y90{bottom:741.886950px;}
.ybf{bottom:746.986950px;}
.y8f{bottom:758.086950px;}
.y29{bottom:758.986950px;}
.ybe{bottom:763.186950px;}
.y8e{bottom:774.286950px;}
.y28{bottom:777.736950px;}
.y58{bottom:779.236950px;}
.ybd{bottom:779.386950px;}
.y8d{bottom:790.486950px;}
.y57{bottom:794.236950px;}
.ybc{bottom:795.587100px;}
.y27{bottom:796.486950px;}
.y8{bottom:799.486950px;}
.y8c{bottom:806.686950px;}
.y56{bottom:809.236950px;}
.ybb{bottom:811.786950px;}
.y67{bottom:813.736950px;}
.y26{bottom:815.236950px;}
.y8b{bottom:822.886950px;}
.y55{bottom:824.236950px;}
.y7{bottom:826.486950px;}
.yba{bottom:827.986950px;}
.y66{bottom:828.736950px;}
.y25{bottom:833.986950px;}
.y8a{bottom:839.087100px;}
.y54{bottom:839.236950px;}
.y65{bottom:843.736950px;}
.yb9{bottom:844.186950px;}
.y24{bottom:852.736950px;}
.y6{bottom:853.486950px;}
.y53{bottom:854.236950px;}
.y89{bottom:855.286950px;}
.y64{bottom:858.736950px;}
.yb8{bottom:860.386950px;}
.y52{bottom:869.236950px;}
.y23{bottom:871.486950px;}
.y63{bottom:873.736950px;}
.yb7{bottom:876.586950px;}
.y5{bottom:880.486950px;}
.y62{bottom:888.736950px;}
.y22{bottom:890.236950px;}
.yb6{bottom:892.786950px;}
.y61{bottom:903.736950px;}
.y4{bottom:907.486950px;}
.y21{bottom:908.986950px;}
.y70{bottom:913.982100px;}
.y60{bottom:918.736950px;}
.y20{bottom:970.167150px;}
.hb{height:30.117780px;}
.h3{height:33.462000px;}
.ha{height:36.036000px;}
.h10{height:39.798000px;}
.hd{height:41.184000px;}
.he{height:41.760000px;}
.h7{height:46.332000px;}
.hf{height:46.494000px;}
.h6{height:51.480000px;}
.h9{height:51.660000px;}
.h2{height:52.200000px;}
.h8{height:62.280000px;}
.hc{height:64.875000px;}
.h5{height:78.300000px;}
.h4{height:93.960000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:90.566850px;}
.x3{left:109.317000px;}
.x16{left:111.921600px;}
.xd{left:119.001600px;}
.x4{left:120.471450px;}
.x7{left:135.531450px;}
.x8{left:154.281450px;}
.xe{left:180.531450px;}
.x14{left:201.637200px;}
.x15{left:210.646050px;}
.x6{left:384.719550px;}
.x9{left:403.210650px;}
.xa{left:407.673600px;}
.xb{left:430.808550px;}
.xc{left:438.837750px;}
.x5{left:474.916650px;}
.xf{left:535.737600px;}
.x10{left:543.644700px;}
.x12{left:575.830200px;}
.x11{left:581.917800px;}
.x13{left:583.798050px;}
.x1{left:587.303250px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:17.760000pt;}
.ls49{letter-spacing:-1.133333pt;}
.ls2f{letter-spacing:-0.970667pt;}
.ls24{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.533333pt;}
.ls44{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.410667pt;}
.ls41{letter-spacing:-0.404213pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.310933pt;}
.lsa{letter-spacing:-0.298667pt;}
.ls51{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.261333pt;}
.ls50{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.186667pt;}
.ls25{letter-spacing:-0.186560pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.149333pt;}
.ls4{letter-spacing:-0.144000pt;}
.ls42{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.112000pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls4f{letter-spacing:-0.096000pt;}
.ls40{letter-spacing:-0.085333pt;}
.ls31{letter-spacing:-0.074667pt;}
.ls37{letter-spacing:-0.062187pt;}
.ls5{letter-spacing:-0.053333pt;}
.ls4e{letter-spacing:-0.048000pt;}
.ls36{letter-spacing:-0.042667pt;}
.ls1c{letter-spacing:-0.037333pt;}
.ls2a{letter-spacing:-0.031093pt;}
.ls3{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.026667pt;}
.ls45{letter-spacing:0.037333pt;}
.ls4d{letter-spacing:0.048000pt;}
.ls19{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.074667pt;}
.ls32{letter-spacing:0.080000pt;}
.ls34{letter-spacing:0.085333pt;}
.ls2e{letter-spacing:0.093280pt;}
.ls4a{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.112000pt;}
.ls33{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.128591pt;}
.ls4c{letter-spacing:0.144000pt;}
.ls27{letter-spacing:0.149333pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.213333pt;}
.ls2d{letter-spacing:0.240000pt;}
.ls3f{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls15{letter-spacing:0.310240pt;}
.ls14{letter-spacing:0.310613pt;}
.ls3d{letter-spacing:0.310933pt;}
.ls3e{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.346667pt;}
.ls48{letter-spacing:0.373120pt;}
.ls39{letter-spacing:0.373333pt;}
.ls52{letter-spacing:0.408000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls3a{letter-spacing:0.453333pt;}
.ls10{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.533333pt;}
.ls3b{letter-spacing:0.586667pt;}
.ls47{letter-spacing:0.613333pt;}
.lsf{letter-spacing:0.640000pt;}
.ls3c{letter-spacing:0.693333pt;}
.ls29{letter-spacing:0.791467pt;}
.ls12{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.000000pt;}
.ls1{letter-spacing:1.200000pt;}
.ls0{letter-spacing:1.440000pt;}
.lsd{letter-spacing:2.053333pt;}
.ls35{letter-spacing:3.205333pt;}
.wsca{word-spacing:-17.000000pt;}
.ws1b{word-spacing:-16.320000pt;}
.ws2{word-spacing:-15.360000pt;}
.wsa1{word-spacing:-12.533333pt;}
.ws97{word-spacing:-12.000000pt;}
.wsb6{word-spacing:-11.946667pt;}
.ws1{word-spacing:-11.520000pt;}
.ws15{word-spacing:-11.013333pt;}
.wscc{word-spacing:-10.800000pt;}
.wscd{word-spacing:-10.752000pt;}
.ws44{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.698667pt;}
.ws0{word-spacing:-7.462400pt;}
.wsc4{word-spacing:-7.369120pt;}
.wsa2{word-spacing:-7.306933pt;}
.ws60{word-spacing:-7.089280pt;}
.ws3{word-spacing:-6.996000pt;}
.ws57{word-spacing:-6.964907pt;}
.ws6e{word-spacing:-6.685067pt;}
.wsad{word-spacing:-6.591787pt;}
.ws80{word-spacing:-5.969920pt;}
.wsae{word-spacing:-2.720000pt;}
.wsb8{word-spacing:-2.613333pt;}
.ws1f{word-spacing:-2.506667pt;}
.wsc{word-spacing:-2.453333pt;}
.wsa{word-spacing:-2.400000pt;}
.wsb0{word-spacing:-2.346667pt;}
.wsdb{word-spacing:-2.256000pt;}
.ws9f{word-spacing:-2.240000pt;}
.wsd5{word-spacing:-2.208000pt;}
.ws5b{word-spacing:-2.186667pt;}
.wsda{word-spacing:-2.160000pt;}
.ws93{word-spacing:-2.133333pt;}
.wsb3{word-spacing:-2.090667pt;}
.ws83{word-spacing:-2.048000pt;}
.ws3b{word-spacing:-2.026667pt;}
.ws65{word-spacing:-1.973333pt;}
.ws84{word-spacing:-1.962667pt;}
.ws4a{word-spacing:-1.920000pt;}
.ws10{word-spacing:-1.904000pt;}
.wsdd{word-spacing:-1.872000pt;}
.ws13{word-spacing:-1.866667pt;}
.ws2b{word-spacing:-1.829333pt;}
.ws2a{word-spacing:-1.792000pt;}
.ws7b{word-spacing:-1.760000pt;}
.ws61{word-spacing:-1.706667pt;}
.wsbe{word-spacing:-1.680000pt;}
.wsa5{word-spacing:-1.653333pt;}
.ws5a{word-spacing:-1.600000pt;}
.wsde{word-spacing:-1.584000pt;}
.ws3e{word-spacing:-1.546667pt;}
.ws2f{word-spacing:-1.493333pt;}
.ws30{word-spacing:-1.456000pt;}
.ws9b{word-spacing:-1.440000pt;}
.ws3d{word-spacing:-1.386667pt;}
.ws76{word-spacing:-1.333333pt;}
.wsa8{word-spacing:-1.322667pt;}
.ws23{word-spacing:-1.280000pt;}
.ws95{word-spacing:-1.226667pt;}
.ws85{word-spacing:-1.194667pt;}
.ws34{word-spacing:-1.173333pt;}
.ws7d{word-spacing:-1.120000pt;}
.ws5c{word-spacing:-1.066667pt;}
.ws4e{word-spacing:-1.013333pt;}
.wsce{word-spacing:-1.000000pt;}
.wsaf{word-spacing:-0.960000pt;}
.wsbc{word-spacing:-0.938667pt;}
.ws69{word-spacing:-0.906667pt;}
.ws21{word-spacing:-0.853333pt;}
.ws56{word-spacing:-0.821333pt;}
.ws22{word-spacing:-0.800000pt;}
.ws6{word-spacing:-0.768000pt;}
.ws36{word-spacing:-0.746667pt;}
.wsbb{word-spacing:-0.725333pt;}
.ws8a{word-spacing:-0.693333pt;}
.ws6d{word-spacing:-0.672000pt;}
.ws7{word-spacing:-0.640000pt;}
.wsb2{word-spacing:-0.597333pt;}
.ws20{word-spacing:-0.586667pt;}
.ws2c{word-spacing:-0.560000pt;}
.ws24{word-spacing:-0.533333pt;}
.wsd4{word-spacing:-0.528000pt;}
.ws1d{word-spacing:-0.512000pt;}
.ws78{word-spacing:-0.480000pt;}
.wsba{word-spacing:-0.469333pt;}
.ws45{word-spacing:-0.426667pt;}
.ws1a{word-spacing:-0.373333pt;}
.wsc5{word-spacing:-0.336000pt;}
.wsbd{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.298667pt;}
.ws4d{word-spacing:-0.266667pt;}
.ws2d{word-spacing:-0.261333pt;}
.ws18{word-spacing:-0.213333pt;}
.ws70{word-spacing:-0.160000pt;}
.ws5e{word-spacing:-0.149333pt;}
.ws55{word-spacing:-0.112000pt;}
.ws90{word-spacing:-0.106667pt;}
.ws52{word-spacing:-0.074667pt;}
.ws37{word-spacing:-0.053333pt;}
.wsbf{word-spacing:-0.037333pt;}
.ws5{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.031093pt;}
.ws29{word-spacing:0.037333pt;}
.wsd9{word-spacing:0.048000pt;}
.ws63{word-spacing:0.053333pt;}
.ws9a{word-spacing:0.062187pt;}
.ws8e{word-spacing:0.074667pt;}
.wse2{word-spacing:0.096000pt;}
.ws27{word-spacing:0.106667pt;}
.ws5d{word-spacing:0.112000pt;}
.ws8{word-spacing:0.144000pt;}
.ws9e{word-spacing:0.149333pt;}
.ws48{word-spacing:0.160000pt;}
.ws49{word-spacing:0.186560pt;}
.ws12{word-spacing:0.186667pt;}
.ws74{word-spacing:0.213333pt;}
.ws11{word-spacing:0.261333pt;}
.ws79{word-spacing:0.266667pt;}
.wsf{word-spacing:0.298667pt;}
.ws62{word-spacing:0.320000pt;}
.ws9d{word-spacing:0.336000pt;}
.ws99{word-spacing:0.373333pt;}
.wsa3{word-spacing:0.426667pt;}
.ws6c{word-spacing:0.448000pt;}
.ws75{word-spacing:0.480000pt;}
.wsa0{word-spacing:0.485333pt;}
.ws43{word-spacing:0.522667pt;}
.ws7a{word-spacing:0.533333pt;}
.ws4c{word-spacing:0.586667pt;}
.ws59{word-spacing:0.640000pt;}
.wse0{word-spacing:0.672000pt;}
.ws14{word-spacing:0.693333pt;}
.wsc2{word-spacing:0.725333pt;}
.ws19{word-spacing:0.746667pt;}
.ws87{word-spacing:0.853333pt;}
.wsdc{word-spacing:0.864000pt;}
.ws40{word-spacing:0.896000pt;}
.ws89{word-spacing:0.906667pt;}
.wsb5{word-spacing:0.960000pt;}
.ws6b{word-spacing:0.970667pt;}
.ws88{word-spacing:1.013333pt;}
.ws54{word-spacing:1.045333pt;}
.wsb4{word-spacing:1.066667pt;}
.ws53{word-spacing:1.082667pt;}
.ws47{word-spacing:1.120000pt;}
.wscb{word-spacing:1.133333pt;}
.ws2e{word-spacing:1.157333pt;}
.ws51{word-spacing:1.173333pt;}
.wsa7{word-spacing:1.194667pt;}
.wsd7{word-spacing:1.200000pt;}
.ws50{word-spacing:1.226667pt;}
.ws82{word-spacing:1.237333pt;}
.ws6a{word-spacing:1.269333pt;}
.wsa4{word-spacing:1.280000pt;}
.wsc8{word-spacing:1.306667pt;}
.ws28{word-spacing:1.333333pt;}
.ws94{word-spacing:1.386667pt;}
.ws72{word-spacing:1.440000pt;}
.wsd1{word-spacing:1.488000pt;}
.ws8c{word-spacing:1.493333pt;}
.ws3f{word-spacing:1.546667pt;}
.wsc1{word-spacing:1.578667pt;}
.ws4f{word-spacing:1.600000pt;}
.wsc3{word-spacing:1.653333pt;}
.ws38{word-spacing:1.706667pt;}
.ws64{word-spacing:1.760000pt;}
.wsc0{word-spacing:1.792000pt;}
.ws6f{word-spacing:1.813333pt;}
.wsd2{word-spacing:1.824000pt;}
.ws17{word-spacing:1.866667pt;}
.ws31{word-spacing:1.920000pt;}
.ws26{word-spacing:1.973333pt;}
.ws9c{word-spacing:1.978667pt;}
.ws42{word-spacing:2.016000pt;}
.ws58{word-spacing:2.026667pt;}
.wsb{word-spacing:2.080000pt;}
.ws16{word-spacing:2.133333pt;}
.wsdf{word-spacing:2.160000pt;}
.wsc6{word-spacing:2.186667pt;}
.wsd8{word-spacing:2.208000pt;}
.ws46{word-spacing:2.240000pt;}
.wsc7{word-spacing:2.293333pt;}
.ws3a{word-spacing:2.346667pt;}
.ws9{word-spacing:2.400000pt;}
.ws33{word-spacing:2.453333pt;}
.wsd6{word-spacing:2.496000pt;}
.ws7c{word-spacing:2.506667pt;}
.ws35{word-spacing:2.560000pt;}
.ws8f{word-spacing:2.613333pt;}
.ws7f{word-spacing:2.666667pt;}
.ws96{word-spacing:2.688000pt;}
.ws4b{word-spacing:2.720000pt;}
.ws71{word-spacing:2.773333pt;}
.wsac{word-spacing:2.826667pt;}
.ws98{word-spacing:2.880000pt;}
.ws5f{word-spacing:2.912000pt;}
.wsaa{word-spacing:2.933333pt;}
.ws41{word-spacing:2.949333pt;}
.ws68{word-spacing:2.986667pt;}
.ws8d{word-spacing:3.040000pt;}
.wsb9{word-spacing:3.072000pt;}
.ws77{word-spacing:3.093333pt;}
.ws91{word-spacing:3.146667pt;}
.ws32{word-spacing:3.200000pt;}
.ws8b{word-spacing:3.253333pt;}
.wsd3{word-spacing:3.264000pt;}
.wsa6{word-spacing:3.285333pt;}
.ws67{word-spacing:3.306667pt;}
.ws81{word-spacing:3.328000pt;}
.wsa9{word-spacing:3.360000pt;}
.ws86{word-spacing:3.370667pt;}
.ws73{word-spacing:3.413333pt;}
.wscf{word-spacing:3.504000pt;}
.wsc9{word-spacing:3.520000pt;}
.wsd0{word-spacing:3.552000pt;}
.ws7e{word-spacing:3.573333pt;}
.wsab{word-spacing:3.626667pt;}
.wsb1{word-spacing:3.680000pt;}
.ws92{word-spacing:3.733333pt;}
.ws66{word-spacing:3.786667pt;}
.ws39{word-spacing:3.840000pt;}
.wse{word-spacing:3.893333pt;}
.wsd{word-spacing:3.946667pt;}
.ws1e{word-spacing:4.000000pt;}
.wse1{word-spacing:4.464000pt;}
.ws25{word-spacing:4.480000pt;}
.ws3c{word-spacing:5.280000pt;}
._4{margin-left:-4.194667pt;}
._3{margin-left:-2.976000pt;}
._2{margin-left:-2.045333pt;}
._0{margin-left:-0.901333pt;}
._5{width:1.200000pt;}
._d{width:2.424533pt;}
._b{width:3.360000pt;}
._6{width:10.453333pt;}
._8{width:11.600000pt;}
._9{width:13.533333pt;}
._a{width:14.533333pt;}
._c{width:17.800000pt;}
._7{width:20.096000pt;}
._1{width:26.346667pt;}
.fsa{font-size:24.874667pt;}
.fs4{font-size:31.093333pt;}
.fs1{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:66.666667pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:65.562400pt;}
.y1{bottom:72.462400pt;}
.y2{bottom:75.962400pt;}
.y1f{bottom:124.611200pt;}
.y43{bottom:124.611333pt;}
.y4e{bottom:124.611467pt;}
.y79{bottom:124.611600pt;}
.y88{bottom:124.611733pt;}
.yb5{bottom:126.655067pt;}
.y3d{bottom:135.811200pt;}
.y1e{bottom:135.811333pt;}
.y4d{bottom:135.811467pt;}
.y78{bottom:135.811600pt;}
.y87{bottom:135.811733pt;}
.yb4{bottom:141.055067pt;}
.y59{bottom:147.011200pt;}
.y42{bottom:147.011333pt;}
.y3c{bottom:147.011467pt;}
.y77{bottom:147.011600pt;}
.y86{bottom:147.011733pt;}
.yb3{bottom:155.455067pt;}
.y41{bottom:158.211333pt;}
.y3b{bottom:158.211467pt;}
.y76{bottom:158.211600pt;}
.y85{bottom:158.211733pt;}
.y40{bottom:169.411333pt;}
.y3a{bottom:169.411467pt;}
.y5a{bottom:169.411600pt;}
.y84{bottom:169.411733pt;}
.yb2{bottom:169.855067pt;}
.y5f{bottom:174.655067pt;}
.y3f{bottom:180.611333pt;}
.y39{bottom:180.611467pt;}
.y50{bottom:180.611600pt;}
.y75{bottom:180.611733pt;}
.yb1{bottom:184.255067pt;}
.y5e{bottom:191.321733pt;}
.y48{bottom:191.811333pt;}
.y38{bottom:191.811467pt;}
.y4f{bottom:191.811600pt;}
.y74{bottom:191.811733pt;}
.y73{bottom:195.988400pt;}
.yb0{bottom:198.655067pt;}
.y47{bottom:203.011333pt;}
.y37{bottom:203.011467pt;}
.y5d{bottom:203.011733pt;}
.y51{bottom:207.988400pt;}
.y72{bottom:209.321733pt;}
.yaf{bottom:213.055067pt;}
.y36{bottom:214.211467pt;}
.y4c{bottom:214.211600pt;}
.y5c{bottom:214.211867pt;}
.y71{bottom:222.655067pt;}
.y1d{bottom:224.655067pt;}
.y35{bottom:225.411467pt;}
.y4b{bottom:225.411600pt;}
.yae{bottom:227.455067pt;}
.y46{bottom:236.611467pt;}
.y4a{bottom:236.611600pt;}
.y1c{bottom:241.321733pt;}
.yad{bottom:241.855067pt;}
.y3e{bottom:245.761733pt;}
.y45{bottom:247.811467pt;}
.y49{bottom:247.811600pt;}
.yac{bottom:256.255067pt;}
.y1b{bottom:257.988400pt;}
.yab{bottom:270.655067pt;}
.y34{bottom:274.655067pt;}
.yaa{bottom:285.055067pt;}
.y1a{bottom:291.321733pt;}
.ya9{bottom:299.455067pt;}
.y19{bottom:307.988400pt;}
.ya8{bottom:313.855067pt;}
.y18{bottom:324.655067pt;}
.ya7{bottom:328.255067pt;}
.y17{bottom:341.321733pt;}
.ya6{bottom:342.655067pt;}
.ya5{bottom:357.055067pt;}
.y16{bottom:357.988400pt;}
.ya4{bottom:371.455067pt;}
.y15{bottom:374.655067pt;}
.ya3{bottom:385.855067pt;}
.yd2{bottom:390.388400pt;}
.y14{bottom:391.321733pt;}
.ya2{bottom:400.255067pt;}
.yd1{bottom:404.788400pt;}
.y13{bottom:407.988400pt;}
.ya1{bottom:414.655067pt;}
.yd0{bottom:419.188400pt;}
.y12{bottom:424.655067pt;}
.ya0{bottom:429.055067pt;}
.ycf{bottom:433.588400pt;}
.y83{bottom:439.321733pt;}
.y11{bottom:441.321733pt;}
.y9f{bottom:443.455067pt;}
.yce{bottom:447.988400pt;}
.y82{bottom:452.655067pt;}
.y9e{bottom:457.855067pt;}
.y10{bottom:457.988400pt;}
.y6f{bottom:459.321733pt;}
.ycd{bottom:462.388400pt;}
.y81{bottom:465.988400pt;}
.y9d{bottom:472.255067pt;}
.y6e{bottom:472.655067pt;}
.y33{bottom:474.655067pt;}
.ycc{bottom:476.788400pt;}
.y80{bottom:479.321733pt;}
.y6d{bottom:485.988400pt;}
.y9c{bottom:486.655067pt;}
.ycb{bottom:491.188400pt;}
.y32{bottom:491.321733pt;}
.y7f{bottom:492.655067pt;}
.y6c{bottom:499.321733pt;}
.y9b{bottom:501.055067pt;}
.yca{bottom:505.588400pt;}
.y7e{bottom:505.988400pt;}
.yf{bottom:507.987067pt;}
.y31{bottom:507.988400pt;}
.y6b{bottom:512.655067pt;}
.y9a{bottom:515.455067pt;}
.yc9{bottom:519.988400pt;}
.ye{bottom:524.655067pt;}
.y6a{bottom:525.988400pt;}
.y99{bottom:529.855067pt;}
.yc8{bottom:534.388400pt;}
.y69{bottom:539.321733pt;}
.y30{bottom:541.321733pt;}
.y98{bottom:544.255067pt;}
.yc7{bottom:548.788400pt;}
.yd{bottom:557.988400pt;}
.y97{bottom:558.655067pt;}
.yc6{bottom:563.188400pt;}
.y7d{bottom:565.988400pt;}
.y96{bottom:573.055067pt;}
.y2f{bottom:574.655067pt;}
.yc5{bottom:577.588400pt;}
.y5b{bottom:579.095067pt;}
.y7c{bottom:579.321733pt;}
.y95{bottom:587.455067pt;}
.y2d{bottom:591.321733pt;}
.yc4{bottom:591.988400pt;}
.y7b{bottom:592.655067pt;}
.yc{bottom:594.372400pt;}
.y94{bottom:601.855067pt;}
.y7a{bottom:605.988400pt;}
.yc3{bottom:606.388400pt;}
.y2c{bottom:607.988400pt;}
.yb{bottom:614.372400pt;}
.y93{bottom:616.255067pt;}
.yc2{bottom:620.788400pt;}
.y2b{bottom:624.655067pt;}
.y68{bottom:629.095067pt;}
.y92{bottom:630.655067pt;}
.ya{bottom:634.372400pt;}
.yc1{bottom:635.188400pt;}
.y2e{bottom:641.321733pt;}
.y91{bottom:645.055067pt;}
.y44{bottom:645.761733pt;}
.yc0{bottom:649.588400pt;}
.y9{bottom:654.372400pt;}
.y2a{bottom:657.988400pt;}
.y90{bottom:659.455067pt;}
.ybf{bottom:663.988400pt;}
.y8f{bottom:673.855067pt;}
.y29{bottom:674.655067pt;}
.ybe{bottom:678.388400pt;}
.y8e{bottom:688.255067pt;}
.y28{bottom:691.321733pt;}
.y58{bottom:692.655067pt;}
.ybd{bottom:692.788400pt;}
.y8d{bottom:702.655067pt;}
.y57{bottom:705.988400pt;}
.ybc{bottom:707.188533pt;}
.y27{bottom:707.988400pt;}
.y8{bottom:710.655067pt;}
.y8c{bottom:717.055067pt;}
.y56{bottom:719.321733pt;}
.ybb{bottom:721.588400pt;}
.y67{bottom:723.321733pt;}
.y26{bottom:724.655067pt;}
.y8b{bottom:731.455067pt;}
.y55{bottom:732.655067pt;}
.y7{bottom:734.655067pt;}
.yba{bottom:735.988400pt;}
.y66{bottom:736.655067pt;}
.y25{bottom:741.321733pt;}
.y8a{bottom:745.855200pt;}
.y54{bottom:745.988400pt;}
.y65{bottom:749.988400pt;}
.yb9{bottom:750.388400pt;}
.y24{bottom:757.988400pt;}
.y6{bottom:758.655067pt;}
.y53{bottom:759.321733pt;}
.y89{bottom:760.255067pt;}
.y64{bottom:763.321733pt;}
.yb8{bottom:764.788400pt;}
.y52{bottom:772.655067pt;}
.y23{bottom:774.655067pt;}
.y63{bottom:776.655067pt;}
.yb7{bottom:779.188400pt;}
.y5{bottom:782.655067pt;}
.y62{bottom:789.988400pt;}
.y22{bottom:791.321733pt;}
.yb6{bottom:793.588400pt;}
.y61{bottom:803.321733pt;}
.y4{bottom:806.655067pt;}
.y21{bottom:807.988400pt;}
.y70{bottom:812.428533pt;}
.y60{bottom:816.655067pt;}
.y20{bottom:862.370800pt;}
.hb{height:26.771360pt;}
.h3{height:29.744000pt;}
.ha{height:32.032000pt;}
.h10{height:35.376000pt;}
.hd{height:36.608000pt;}
.he{height:37.120000pt;}
.h7{height:41.184000pt;}
.hf{height:41.328000pt;}
.h6{height:45.760000pt;}
.h9{height:45.920000pt;}
.h2{height:46.400000pt;}
.h8{height:55.360000pt;}
.hc{height:57.666667pt;}
.h5{height:69.600000pt;}
.h4{height:83.520000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:80.503867pt;}
.x3{left:97.170667pt;}
.x16{left:99.485867pt;}
.xd{left:105.779200pt;}
.x4{left:107.085733pt;}
.x7{left:120.472400pt;}
.x8{left:137.139067pt;}
.xe{left:160.472400pt;}
.x14{left:179.233067pt;}
.x15{left:187.240933pt;}
.x6{left:341.972933pt;}
.x9{left:358.409467pt;}
.xa{left:362.376533pt;}
.xb{left:382.940933pt;}
.xc{left:390.078000pt;}
.x5{left:422.148133pt;}
.xf{left:476.211200pt;}
.x10{left:483.239733pt;}
.x12{left:511.849067pt;}
.x11{left:517.260267pt;}
.x13{left:518.931600pt;}
.x1{left:522.047333pt;}
}




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