
    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_3473df24f7617ecd5e0a8e1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128000;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_71512c56cb5e619543721035.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_720144ff5c52be6fb88629ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666000;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_376038c4e524a1f16bdbd029.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1fbade58aa9e0c0ae5a5df2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;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_f06e94bdf14ded90fd415f51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1fbade58aa9e0c0ae5a5df2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247635,0.000000,0.000000,0.250000,0,0);}
.mab{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);}
.m3a{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.247652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247652,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247665,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247878,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247888,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247889,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.247923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247923,0.000000,0.000000,0.250000,0,0);}
.m14c{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);}
.m131{transform:matrix(0.247969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247969,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);}
.m4b{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);}
.m4c{transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248282,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248365,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248394,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.m109{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);}
.m67{transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248480,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m144{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);}
.m8d{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248567,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.248617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248617,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248619,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248687,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248744,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);}
.m122{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);}
.m3f{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);}
.mdc{transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);}
.m12b{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);}
.me8{transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248972,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249283,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);}
.m100{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);}
.ma5{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);}
.m11e{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);}
.mb9{transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249381,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m76{transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.m55{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);}
.mfa{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);}
.m5e{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);}
.m105{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m63{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);}
.m64{transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.maf{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m127{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);}
.me4{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);}
.mef{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);}
.m65{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250230,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250469,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250480,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250523,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250531,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250619,0.000000,0.000000,0.250000,0,0);}
.mb5{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);}
.m85{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250669,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250707,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.250828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250828,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.m99{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251169,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251210,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.mfb{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);}
.ma6{transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251390,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251447,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.251469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251469,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.mf2{transform:matrix(0.251703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251703,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251705,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.251753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251753,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251771,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m38{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);}
.m6d{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);}
.m84{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);}
.m48{transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m90{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.252472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252472,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls19{letter-spacing:-2.400000px;}
.ls3b{letter-spacing:-2.220000px;}
.ls3c{letter-spacing:-2.160000px;}
.ls2c{letter-spacing:-2.100000px;}
.ls56{letter-spacing:-1.944000px;}
.ls21{letter-spacing:-1.920000px;}
.ls45{letter-spacing:-1.800000px;}
.ls3e{letter-spacing:-1.560000px;}
.ls5a{letter-spacing:-1.350000px;}
.ls35{letter-spacing:-1.200000px;}
.ls54{letter-spacing:-1.080000px;}
.ls37{letter-spacing:-0.960000px;}
.ls29{letter-spacing:-0.912000px;}
.ls46{letter-spacing:-0.900000px;}
.ls32{letter-spacing:-0.864000px;}
.ls47{letter-spacing:-0.720000px;}
.ls48{letter-spacing:-0.660000px;}
.ls4c{letter-spacing:-0.540000px;}
.ls4d{letter-spacing:-0.420000px;}
.ls49{letter-spacing:-0.384780px;}
.ls4b{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.240000px;}
.ls55{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.210000px;}
.ls36{letter-spacing:-0.192000px;}
.lsf{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.174900px;}
.ls4e{letter-spacing:-0.162000px;}
.ls25{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.139920px;}
.ls8{letter-spacing:-0.126000px;}
.ls14{letter-spacing:-0.120000px;}
.ls39{letter-spacing:-0.111936px;}
.ls53{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.096000px;}
.ls31{letter-spacing:-0.083952px;}
.lse{letter-spacing:-0.060000px;}
.ls42{letter-spacing:-0.055968px;}
.ls52{letter-spacing:-0.054000px;}
.ls20{letter-spacing:-0.048000px;}
.ls38{letter-spacing:-0.034980px;}
.ls1f{letter-spacing:-0.027984px;}
.ls6{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.013852px;}
.lsd{letter-spacing:0.023400px;}
.ls4a{letter-spacing:0.027984px;}
.ls2a{letter-spacing:0.030000px;}
.ls41{letter-spacing:0.034980px;}
.ls1e{letter-spacing:0.048000px;}
.ls3f{letter-spacing:0.053568px;}
.ls4f{letter-spacing:0.054000px;}
.ls16{letter-spacing:0.055968px;}
.ls3{letter-spacing:0.060000px;}
.ls27{letter-spacing:0.069960px;}
.ls1c{letter-spacing:0.083952px;}
.ls26{letter-spacing:0.090000px;}
.ls43{letter-spacing:0.092400px;}
.ls11{letter-spacing:0.093188px;}
.ls13{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.104940px;}
.ls15{letter-spacing:0.111936px;}
.lsc{letter-spacing:0.120000px;}
.ls30{letter-spacing:0.139920px;}
.ls1d{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.150000px;}
.ls59{letter-spacing:0.162000px;}
.ls10{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.210000px;}
.lsb{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.300000px;}
.ls57{letter-spacing:0.324000px;}
.ls23{letter-spacing:0.330000px;}
.ls2b{letter-spacing:0.355200px;}
.ls1{letter-spacing:0.360000px;}
.ls50{letter-spacing:0.378000px;}
.ls2f{letter-spacing:0.420000px;}
.ls51{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.756600px;}
.ls44{letter-spacing:0.772200px;}
.ls34{letter-spacing:1.150800px;}
.ls3a{letter-spacing:2.335800px;}
.ls3d{letter-spacing:2.359020px;}
.ls40{letter-spacing:2.448036px;}
.ls58{letter-spacing:3.586337px;}
.ls2{letter-spacing:4.696040px;}
.ls5{letter-spacing:8.415446px;}
.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;}
}
.ws2{word-spacing:-12.660000px;}
.ws11{word-spacing:-12.480000px;}
.ws1{word-spacing:-12.360000px;}
.ws7d{word-spacing:-12.300000px;}
.ws29{word-spacing:-12.240000px;}
.ws4e{word-spacing:-12.210000px;}
.ws87{word-spacing:-12.180000px;}
.ws88{word-spacing:-12.120000px;}
.ws12{word-spacing:-12.060000px;}
.wsa8{word-spacing:-12.030000px;}
.ws10{word-spacing:-12.000000px;}
.ws77{word-spacing:-11.940000px;}
.ws67{word-spacing:-11.880000px;}
.wsad{word-spacing:-11.820000px;}
.ws91{word-spacing:-11.700000px;}
.wsb2{word-spacing:-11.340000px;}
.wsba{word-spacing:-10.854000px;}
.wsaf{word-spacing:-10.800000px;}
.ws9d{word-spacing:-10.440000px;}
.ws78{word-spacing:-9.900000px;}
.ws98{word-spacing:-9.840000px;}
.ws97{word-spacing:-9.780000px;}
.wsb9{word-spacing:-9.720000px;}
.ws5c{word-spacing:-9.696000px;}
.ws50{word-spacing:-9.648000px;}
.ws0{word-spacing:-9.600000px;}
.wsd2{word-spacing:-9.450000px;}
.wsbb{word-spacing:-8.856000px;}
.ws7f{word-spacing:-8.736000px;}
.ws70{word-spacing:-8.688000px;}
.ws89{word-spacing:-8.400000px;}
.ws51{word-spacing:-7.680000px;}
.ws7e{word-spacing:-7.135920px;}
.ws6e{word-spacing:-7.065960px;}
.ws13{word-spacing:-6.996000px;}
.ws92{word-spacing:-6.961020px;}
.ws6f{word-spacing:-6.856080px;}
.ws79{word-spacing:-6.821100px;}
.wsb0{word-spacing:-6.611220px;}
.wsa9{word-spacing:-5.708736px;}
.ws4f{word-spacing:-5.680752px;}
.ws14{word-spacing:-5.596800px;}
.wsa5{word-spacing:-5.540832px;}
.ws93{word-spacing:-5.484864px;}
.ws3d{word-spacing:-1.980000px;}
.wsae{word-spacing:-1.920000px;}
.ws20{word-spacing:-1.860000px;}
.wsc4{word-spacing:-1.836000px;}
.ws1f{word-spacing:-1.800000px;}
.wsa{word-spacing:-1.740000px;}
.wsc8{word-spacing:-1.728000px;}
.ws49{word-spacing:-1.680000px;}
.wsca{word-spacing:-1.674000px;}
.wsc{word-spacing:-1.620000px;}
.wsd6{word-spacing:-1.566000px;}
.ws22{word-spacing:-1.560000px;}
.ws5{word-spacing:-1.512000px;}
.ws2b{word-spacing:-1.500000px;}
.ws64{word-spacing:-1.488000px;}
.ws3e{word-spacing:-1.440000px;}
.wsd4{word-spacing:-1.404000px;}
.wsb8{word-spacing:-1.392000px;}
.ws5e{word-spacing:-1.380000px;}
.ws4c{word-spacing:-1.344000px;}
.ws83{word-spacing:-1.320000px;}
.ws6{word-spacing:-1.302000px;}
.wsbd{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.260000px;}
.wsa0{word-spacing:-1.200000px;}
.ws26{word-spacing:-1.152000px;}
.ws60{word-spacing:-1.140000px;}
.wscc{word-spacing:-1.134000px;}
.ws25{word-spacing:-1.104000px;}
.ws3b{word-spacing:-1.080000px;}
.ws4a{word-spacing:-1.020000px;}
.wsbc{word-spacing:-0.972000px;}
.ws5d{word-spacing:-0.960000px;}
.wsb4{word-spacing:-0.918000px;}
.ws21{word-spacing:-0.900000px;}
.ws66{word-spacing:-0.864000px;}
.wsa1{word-spacing:-0.840000px;}
.ws7b{word-spacing:-0.816000px;}
.wsd0{word-spacing:-0.810000px;}
.ws2e{word-spacing:-0.780000px;}
.ws17{word-spacing:-0.720000px;}
.ws6a{word-spacing:-0.660000px;}
.ws34{word-spacing:-0.600000px;}
.ws32{word-spacing:-0.540000px;}
.wsa7{word-spacing:-0.528000px;}
.wsc9{word-spacing:-0.486000px;}
.ws44{word-spacing:-0.480000px;}
.wscd{word-spacing:-0.432000px;}
.ws1e{word-spacing:-0.420000px;}
.wsbf{word-spacing:-0.378000px;}
.ws31{word-spacing:-0.360000px;}
.wscf{word-spacing:-0.324000px;}
.wsd{word-spacing:-0.300000px;}
.ws74{word-spacing:-0.288000px;}
.wsc0{word-spacing:-0.270000px;}
.ws23{word-spacing:-0.240000px;}
.wsc3{word-spacing:-0.216000px;}
.ws39{word-spacing:-0.192000px;}
.ws48{word-spacing:-0.180000px;}
.ws57{word-spacing:-0.144000px;}
.ws96{word-spacing:-0.139920px;}
.ws1d{word-spacing:-0.120000px;}
.ws36{word-spacing:-0.111936px;}
.ws4b{word-spacing:-0.104940px;}
.ws5a{word-spacing:-0.096000px;}
.wsa4{word-spacing:-0.083952px;}
.ws30{word-spacing:-0.060000px;}
.ws3a{word-spacing:-0.055968px;}
.wsb5{word-spacing:-0.054000px;}
.ws59{word-spacing:-0.048000px;}
.ws9e{word-spacing:-0.034980px;}
.wsb1{word-spacing:-0.027984px;}
.ws4{word-spacing:0.000000px;}
.ws58{word-spacing:0.027984px;}
.ws76{word-spacing:0.048000px;}
.wsc2{word-spacing:0.054000px;}
.wsac{word-spacing:0.055968px;}
.ws1c{word-spacing:0.060000px;}
.ws86{word-spacing:0.083952px;}
.ws46{word-spacing:0.096000px;}
.wsc1{word-spacing:0.108000px;}
.ws94{word-spacing:0.120000px;}
.ws45{word-spacing:0.144000px;}
.wsb3{word-spacing:0.162000px;}
.ws2f{word-spacing:0.180000px;}
.wsc5{word-spacing:0.216000px;}
.ws55{word-spacing:0.240000px;}
.ws3c{word-spacing:0.300000px;}
.wsc6{word-spacing:0.324000px;}
.ws7c{word-spacing:0.336000px;}
.ws54{word-spacing:0.360000px;}
.wsab{word-spacing:0.384000px;}
.ws7a{word-spacing:0.420000px;}
.ws8e{word-spacing:0.432000px;}
.ws27{word-spacing:0.480000px;}
.ws5b{word-spacing:0.528000px;}
.ws3f{word-spacing:0.540000px;}
.ws90{word-spacing:0.576000px;}
.ws6b{word-spacing:0.600000px;}
.ws35{word-spacing:0.660000px;}
.ws85{word-spacing:0.672000px;}
.ws53{word-spacing:0.720000px;}
.ws65{word-spacing:0.768000px;}
.ws2a{word-spacing:0.780000px;}
.ws40{word-spacing:0.840000px;}
.ws15{word-spacing:0.900000px;}
.ws63{word-spacing:0.912000px;}
.ws73{word-spacing:0.960000px;}
.ws3{word-spacing:1.008000px;}
.ws19{word-spacing:1.020000px;}
.ws47{word-spacing:1.056000px;}
.wsaa{word-spacing:1.140000px;}
.ws6c{word-spacing:1.152000px;}
.wscb{word-spacing:1.188000px;}
.wsa3{word-spacing:1.200000px;}
.wsce{word-spacing:1.242000px;}
.ws56{word-spacing:1.260000px;}
.ws8d{word-spacing:1.296000px;}
.ws9f{word-spacing:1.320000px;}
.ws28{word-spacing:1.344000px;}
.ws41{word-spacing:1.380000px;}
.ws8f{word-spacing:1.392000px;}
.ws72{word-spacing:1.440000px;}
.ws52{word-spacing:1.500000px;}
.ws8a{word-spacing:1.560000px;}
.ws68{word-spacing:1.620000px;}
.ws9c{word-spacing:1.632000px;}
.wsb6{word-spacing:1.674000px;}
.ws9a{word-spacing:1.680000px;}
.ws81{word-spacing:1.740000px;}
.ws2c{word-spacing:1.800000px;}
.ws75{word-spacing:1.824000px;}
.ws5f{word-spacing:1.860000px;}
.ws9b{word-spacing:1.872000px;}
.ws24{word-spacing:1.920000px;}
.wsb7{word-spacing:1.968000px;}
.ws7{word-spacing:1.974000px;}
.wse{word-spacing:1.980000px;}
.wsd3{word-spacing:1.998000px;}
.ws37{word-spacing:2.016000px;}
.ws80{word-spacing:2.040000px;}
.wsd1{word-spacing:2.052000px;}
.ws38{word-spacing:2.064000px;}
.ws42{word-spacing:2.100000px;}
.ws4d{word-spacing:2.112000px;}
.wsa6{word-spacing:2.160000px;}
.ws33{word-spacing:2.220000px;}
.ws1b{word-spacing:2.280000px;}
.ws18{word-spacing:2.340000px;}
.wsb{word-spacing:2.400000px;}
.ws2d{word-spacing:2.460000px;}
.ws6d{word-spacing:2.496000px;}
.ws71{word-spacing:2.580000px;}
.ws1a{word-spacing:2.700000px;}
.ws95{word-spacing:2.880000px;}
.ws82{word-spacing:2.940000px;}
.wsa2{word-spacing:3.120000px;}
.ws61{word-spacing:3.180000px;}
.ws69{word-spacing:3.240000px;}
.ws62{word-spacing:3.300000px;}
.ws8c{word-spacing:3.540000px;}
.wsbe{word-spacing:3.564000px;}
.ws8{word-spacing:3.600000px;}
.ws8b{word-spacing:3.780000px;}
.ws99{word-spacing:3.840000px;}
.ws84{word-spacing:3.960000px;}
.wsc7{word-spacing:4.212000px;}
.wsd5{word-spacing:4.428000px;}
.ws16{word-spacing:4.560000px;}
.ws43{word-spacing:5.580000px;}
.wsf{word-spacing:6.420000px;}
._7{margin-left:-8.196000px;}
._8{margin-left:-7.170000px;}
._6{margin-left:-5.952000px;}
._2{margin-left:-4.320000px;}
._0{margin-left:-2.400000px;}
._1{margin-left:-1.200000px;}
._5{width:1.248000px;}
._3{width:2.400000px;}
._4{width:3.642000px;}
._9{width:4.701921px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs4{font-size:34.980000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y46{bottom:50.226900px;}
.y1a{bottom:54.502500px;}
.y12b{bottom:86.740050px;}
.y6{bottom:86.740200px;}
.y43{bottom:86.740350px;}
.y15a{bottom:86.789100px;}
.y5b{bottom:90.736350px;}
.y5{bottom:99.490200px;}
.y4f{bottom:101.740200px;}
.y42{bottom:101.740350px;}
.y5a{bottom:101.740500px;}
.y159{bottom:103.199100px;}
.y12a{bottom:103.507800px;}
.y4e{bottom:105.736200px;}
.y61{bottom:105.736350px;}
.y8f{bottom:105.736500px;}
.yb2{bottom:107.178750px;}
.y4{bottom:112.240200px;}
.y4d{bottom:116.740200px;}
.y41{bottom:116.740350px;}
.y60{bottom:116.740500px;}
.y8e{bottom:116.740650px;}
.y158{bottom:119.609100px;}
.y129{bottom:120.275700px;}
.y59{bottom:120.736500px;}
.y3{bottom:124.990200px;}
.yb1{bottom:127.617450px;}
.y4c{bottom:131.740200px;}
.y40{bottom:131.740350px;}
.y58{bottom:131.740500px;}
.y8d{bottom:131.740650px;}
.y69{bottom:135.736350px;}
.yb6{bottom:135.736500px;}
.y157{bottom:136.019100px;}
.y128{bottom:137.043450px;}
.y2{bottom:141.992100px;}
.y4b{bottom:146.740200px;}
.y84{bottom:146.740350px;}
.y5f{bottom:146.740500px;}
.y8c{bottom:146.740650px;}
.yec{bottom:147.798750px;}
.yb0{bottom:148.056150px;}
.y4a{bottom:150.736200px;}
.y3f{bottom:150.736350px;}
.y57{bottom:150.736500px;}
.yb5{bottom:150.736650px;}
.y156{bottom:152.429100px;}
.y127{bottom:153.811350px;}
.y1{bottom:156.992100px;}
.y49{bottom:161.740200px;}
.yfc{bottom:161.740350px;}
.y3e{bottom:161.740500px;}
.y8b{bottom:161.740650px;}
.yea{bottom:161.740800px;}
.y51{bottom:165.736200px;}
.y56{bottom:165.736500px;}
.yeb{bottom:168.048750px;}
.yaf{bottom:168.494850px;}
.y155{bottom:168.839100px;}
.y126{bottom:170.579100px;}
.y6b{bottom:171.290850px;}
.yfb{bottom:176.740350px;}
.y3d{bottom:176.740500px;}
.y8a{bottom:176.740650px;}
.ye9{bottom:176.740800px;}
.y48{bottom:180.736200px;}
.y5e{bottom:180.736500px;}
.y154{bottom:185.249100px;}
.y125{bottom:187.346850px;}
.yb4{bottom:188.298750px;}
.yae{bottom:188.933550px;}
.y6a{bottom:191.540850px;}
.yfa{bottom:191.740350px;}
.y55{bottom:191.740500px;}
.y5d{bottom:191.740650px;}
.yf9{bottom:195.736350px;}
.y3c{bottom:195.736500px;}
.ye8{bottom:195.736800px;}
.y153{bottom:201.659100px;}
.y124{bottom:204.114750px;}
.y68{bottom:206.740500px;}
.y83{bottom:206.740650px;}
.y50{bottom:208.548750px;}
.yad{bottom:209.372250px;}
.y54{bottom:210.736500px;}
.y5c{bottom:210.736650px;}
.y152{bottom:218.069100px;}
.y123{bottom:220.882500px;}
.y67{bottom:221.740500px;}
.y89{bottom:221.740650px;}
.yd2{bottom:221.740800px;}
.y7f{bottom:225.736500px;}
.y82{bottom:225.736650px;}
.y3b{bottom:228.798750px;}
.yac{bottom:229.810950px;}
.y151{bottom:234.479100px;}
.ye7{bottom:235.282950px;}
.y66{bottom:236.740500px;}
.y81{bottom:236.740800px;}
.y122{bottom:237.650250px;}
.y3a{bottom:249.048750px;}
.yab{bottom:250.249650px;}
.y150{bottom:250.889100px;}
.yf8{bottom:251.740500px;}
.y88{bottom:251.740800px;}
.y121{bottom:254.418150px;}
.ye6{bottom:255.532950px;}
.y65{bottom:255.736500px;}
.y80{bottom:255.736800px;}
.y7e{bottom:264.036900px;}
.yf7{bottom:266.740500px;}
.y64{bottom:266.740650px;}
.yd1{bottom:266.740950px;}
.y14f{bottom:267.299100px;}
.y39{bottom:269.298750px;}
.yaa{bottom:270.688350px;}
.y87{bottom:270.736800px;}
.y120{bottom:271.185900px;}
.ye5{bottom:275.782950px;}
.y63{bottom:281.740650px;}
.y86{bottom:281.740950px;}
.y14e{bottom:283.709100px;}
.y7d{bottom:284.286900px;}
.y11f{bottom:287.953650px;}
.y38{bottom:289.548750px;}
.ya9{bottom:291.127050px;}
.ye4{bottom:296.032950px;}
.y62{bottom:296.740650px;}
.y85{bottom:296.740950px;}
.y14d{bottom:300.119100px;}
.y7c{bottom:304.536900px;}
.y11e{bottom:304.721550px;}
.y37{bottom:309.798750px;}
.ya8{bottom:311.565750px;}
.ye3{bottom:316.282950px;}
.y14c{bottom:316.529100px;}
.y11d{bottom:321.489300px;}
.y7b{bottom:324.786900px;}
.y36{bottom:330.048750px;}
.yf6{bottom:331.132950px;}
.y14b{bottom:332.939100px;}
.yd0{bottom:333.048750px;}
.ye2{bottom:336.532950px;}
.y11c{bottom:338.257200px;}
.y7a{bottom:345.036900px;}
.yf5{bottom:347.632950px;}
.ya7{bottom:349.012350px;}
.y14a{bottom:349.349100px;}
.y35{bottom:350.298750px;}
.ycf{bottom:353.298750px;}
.y11b{bottom:355.024950px;}
.ye1{bottom:356.782950px;}
.yf4{bottom:364.132950px;}
.y79{bottom:365.286900px;}
.y149{bottom:365.759100px;}
.ya6{bottom:369.451050px;}
.y34{bottom:370.548750px;}
.y11a{bottom:371.792700px;}
.yce{bottom:373.428750px;}
.ye0{bottom:377.032950px;}
.yf3{bottom:380.632950px;}
.y148{bottom:382.169100px;}
.y78{bottom:385.536900px;}
.y119{bottom:388.560600px;}
.ya5{bottom:389.889750px;}
.y33{bottom:390.798750px;}
.ycd{bottom:393.558750px;}
.yf2{bottom:397.132950px;}
.ydf{bottom:397.282950px;}
.y147{bottom:398.579100px;}
.y118{bottom:405.328350px;}
.y77{bottom:405.786900px;}
.ya4{bottom:410.328300px;}
.y32{bottom:411.048750px;}
.yf1{bottom:413.632950px;}
.ycc{bottom:413.688750px;}
.y146{bottom:414.989100px;}
.y53{bottom:416.043750px;}
.yde{bottom:417.532950px;}
.y117{bottom:422.096100px;}
.y76{bottom:426.036900px;}
.yf0{bottom:430.132950px;}
.ya3{bottom:430.767000px;}
.y31{bottom:431.298750px;}
.y145{bottom:431.399100px;}
.y17{bottom:433.002300px;}
.ycb{bottom:433.818750px;}
.ydd{bottom:437.782950px;}
.y116{bottom:438.864000px;}
.y75{bottom:446.286900px;}
.yef{bottom:446.632950px;}
.y144{bottom:447.809100px;}
.y30{bottom:451.548750px;}
.y16{bottom:453.252300px;}
.yca{bottom:453.948750px;}
.y115{bottom:455.631750px;}
.ydc{bottom:458.032950px;}
.yee{bottom:463.132950px;}
.y143{bottom:464.219100px;}
.y74{bottom:466.536900px;}
.ya2{bottom:468.213600px;}
.y2f{bottom:471.798750px;}
.y114{bottom:472.399500px;}
.yc9{bottom:474.078750px;}
.ydb{bottom:478.282950px;}
.y142{bottom:480.629100px;}
.y73{bottom:486.786900px;}
.yed{bottom:488.136900px;}
.ya1{bottom:488.652300px;}
.y113{bottom:489.167400px;}
.y2e{bottom:492.048750px;}
.yc8{bottom:494.208750px;}
.y141{bottom:497.039100px;}
.yda{bottom:498.532950px;}
.y15{bottom:499.014150px;}
.y112{bottom:505.935150px;}
.ya0{bottom:509.091000px;}
.y2d{bottom:512.298750px;}
.y140{bottom:513.449100px;}
.yc7{bottom:514.338750px;}
.yd9{bottom:518.782950px;}
.y14{bottom:519.264150px;}
.y111{bottom:522.703050px;}
.y72{bottom:524.044800px;}
.y9f{bottom:529.529700px;}
.y13f{bottom:529.859100px;}
.y2c{bottom:532.548750px;}
.yc6{bottom:534.468750px;}
.yd8{bottom:539.032950px;}
.y110{bottom:539.470800px;}
.y13{bottom:539.514150px;}
.y71{bottom:544.294800px;}
.y13e{bottom:546.269100px;}
.y9e{bottom:549.968400px;}
.y2b{bottom:552.798750px;}
.yc5{bottom:554.598750px;}
.y10f{bottom:556.238550px;}
.y12{bottom:559.764150px;}
.y13d{bottom:562.679100px;}
.y70{bottom:564.544800px;}
.y9d{bottom:570.407100px;}
.y10e{bottom:573.006450px;}
.y29{bottom:573.048750px;}
.yc4{bottom:574.728750px;}
.yd7{bottom:576.290850px;}
.y2a{bottom:578.043750px;}
.y13c{bottom:579.089100px;}
.y11{bottom:580.014150px;}
.y6f{bottom:584.794800px;}
.y10d{bottom:589.774200px;}
.y9c{bottom:590.845800px;}
.y28{bottom:593.298750px;}
.yc3{bottom:594.858600px;}
.y13b{bottom:595.499100px;}
.yd6{bottom:596.540850px;}
.y10{bottom:600.264150px;}
.y6e{bottom:605.044800px;}
.y10c{bottom:606.541950px;}
.y9b{bottom:611.284350px;}
.y13a{bottom:611.909100px;}
.y27{bottom:613.548750px;}
.yc2{bottom:614.988750px;}
.yd5{bottom:616.790850px;}
.yf{bottom:620.514150px;}
.y10b{bottom:623.309850px;}
.y6d{bottom:625.294800px;}
.y139{bottom:628.319100px;}
.y9a{bottom:631.723050px;}
.y26{bottom:633.798750px;}
.yc1{bottom:635.118750px;}
.yd4{bottom:637.040850px;}
.y47{bottom:638.793750px;}
.y10a{bottom:640.077600px;}
.ye{bottom:640.764150px;}
.y138{bottom:644.729100px;}
.y6c{bottom:645.544800px;}
.y99{bottom:652.161750px;}
.y25{bottom:654.048750px;}
.yc0{bottom:655.248750px;}
.y109{bottom:656.845500px;}
.yd3{bottom:657.290850px;}
.yd{bottom:661.014150px;}
.y137{bottom:661.139100px;}
.y98{bottom:672.600450px;}
.y108{bottom:673.613250px;}
.y24{bottom:674.298750px;}
.ybf{bottom:675.378750px;}
.y136{bottom:677.549100px;}
.yc{bottom:681.264150px;}
.y107{bottom:690.381000px;}
.y97{bottom:693.039150px;}
.y135{bottom:693.959100px;}
.y23{bottom:694.548750px;}
.ybe{bottom:695.508750px;}
.y106{bottom:707.148900px;}
.y163{bottom:709.559100px;}
.y134{bottom:710.369100px;}
.y96{bottom:713.477850px;}
.y22{bottom:714.798750px;}
.ybd{bottom:715.638750px;}
.y105{bottom:723.916650px;}
.y162{bottom:726.059100px;}
.y133{bottom:726.779100px;}
.y95{bottom:733.916550px;}
.y21{bottom:735.048750px;}
.ybc{bottom:735.768750px;}
.y104{bottom:740.684400px;}
.y161{bottom:742.559100px;}
.y132{bottom:743.189100px;}
.y94{bottom:754.355250px;}
.y20{bottom:755.298750px;}
.ybb{bottom:755.898750px;}
.y103{bottom:757.452300px;}
.y160{bottom:759.059100px;}
.y131{bottom:759.599100px;}
.yb{bottom:773.797650px;}
.y102{bottom:774.220050px;}
.y93{bottom:774.793950px;}
.y1f{bottom:775.548750px;}
.y15f{bottom:775.559100px;}
.y130{bottom:776.009100px;}
.yba{bottom:776.028750px;}
.y101{bottom:790.987950px;}
.y15e{bottom:792.059100px;}
.y12f{bottom:792.419100px;}
.y92{bottom:795.232650px;}
.y1e{bottom:795.798750px;}
.yb9{bottom:796.158750px;}
.ya{bottom:807.553500px;}
.y100{bottom:807.755700px;}
.y15d{bottom:808.559100px;}
.y12e{bottom:808.829100px;}
.y91{bottom:815.671350px;}
.y1d{bottom:816.048750px;}
.yb8{bottom:816.288600px;}
.yff{bottom:824.523450px;}
.y15c{bottom:825.059100px;}
.y12d{bottom:825.239100px;}
.y90{bottom:836.110050px;}
.y1c{bottom:836.298750px;}
.yb7{bottom:836.418750px;}
.yfe{bottom:841.291200px;}
.y52{bottom:841.293750px;}
.y15b{bottom:841.559100px;}
.y12c{bottom:841.649100px;}
.y1b{bottom:856.548750px;}
.yfd{bottom:858.059100px;}
.yb3{bottom:861.543750px;}
.y9{bottom:880.653450px;}
.y8{bottom:880.653600px;}
.y7{bottom:893.253600px;}
.y19{bottom:898.288950px;}
.y45{bottom:898.290300px;}
.y18{bottom:898.309800px;}
.y44{bottom:898.311150px;}
.hb{height:19.756704px;}
.ha{height:24.240000px;}
.h9{height:29.313240px;}
.h4{height:29.652000px;}
.h8{height:33.888000px;}
.hc{height:34.032000px;}
.h3{height:35.196000px;}
.h11{height:38.124000px;}
.h12{height:38.286000px;}
.h2{height:40.224000px;}
.h7{height:42.360000px;}
.hd{height:42.540000px;}
.hf{height:44.478000px;}
.h10{height:45.252000px;}
.he{height:49.293240px;}
.h5{height:50.280000px;}
.h6{height:50.832000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:114.803100px;}
.x1{left:170.078700px;}
.xb{left:180.595650px;}
.x10{left:183.757950px;}
.x5{left:191.338500px;}
.x9{left:214.160250px;}
.xa{left:218.302950px;}
.xe{left:255.418350px;}
.xf{left:263.922450px;}
.x6{left:297.861600px;}
.x7{left:302.081850px;}
.x3{left:359.187600px;}
.x2{left:441.664650px;}
.x11{left:472.783200px;}
.x12{left:481.208550px;}
.xc{left:488.935050px;}
.xd{left:493.148700px;}
.x8{left:569.914050px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls19{letter-spacing:-2.133333pt;}
.ls3b{letter-spacing:-1.973333pt;}
.ls3c{letter-spacing:-1.920000pt;}
.ls2c{letter-spacing:-1.866667pt;}
.ls56{letter-spacing:-1.728000pt;}
.ls21{letter-spacing:-1.706667pt;}
.ls45{letter-spacing:-1.600000pt;}
.ls3e{letter-spacing:-1.386667pt;}
.ls5a{letter-spacing:-1.200000pt;}
.ls35{letter-spacing:-1.066667pt;}
.ls54{letter-spacing:-0.960000pt;}
.ls37{letter-spacing:-0.853333pt;}
.ls29{letter-spacing:-0.810667pt;}
.ls46{letter-spacing:-0.800000pt;}
.ls32{letter-spacing:-0.768000pt;}
.ls47{letter-spacing:-0.640000pt;}
.ls48{letter-spacing:-0.586667pt;}
.ls4c{letter-spacing:-0.480000pt;}
.ls4d{letter-spacing:-0.373333pt;}
.ls49{letter-spacing:-0.342027pt;}
.ls4b{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls55{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.186667pt;}
.ls36{letter-spacing:-0.170667pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.155467pt;}
.ls4e{letter-spacing:-0.144000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.124373pt;}
.ls8{letter-spacing:-0.112000pt;}
.ls14{letter-spacing:-0.106667pt;}
.ls39{letter-spacing:-0.099499pt;}
.ls53{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.085333pt;}
.ls31{letter-spacing:-0.074624pt;}
.lse{letter-spacing:-0.053333pt;}
.ls42{letter-spacing:-0.049749pt;}
.ls52{letter-spacing:-0.048000pt;}
.ls20{letter-spacing:-0.042667pt;}
.ls38{letter-spacing:-0.031093pt;}
.ls1f{letter-spacing:-0.024875pt;}
.ls6{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.012313pt;}
.lsd{letter-spacing:0.020800pt;}
.ls4a{letter-spacing:0.024875pt;}
.ls2a{letter-spacing:0.026667pt;}
.ls41{letter-spacing:0.031093pt;}
.ls1e{letter-spacing:0.042667pt;}
.ls3f{letter-spacing:0.047616pt;}
.ls4f{letter-spacing:0.048000pt;}
.ls16{letter-spacing:0.049749pt;}
.ls3{letter-spacing:0.053333pt;}
.ls27{letter-spacing:0.062187pt;}
.ls1c{letter-spacing:0.074624pt;}
.ls26{letter-spacing:0.080000pt;}
.ls43{letter-spacing:0.082133pt;}
.ls11{letter-spacing:0.082834pt;}
.ls13{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.093280pt;}
.ls15{letter-spacing:0.099499pt;}
.lsc{letter-spacing:0.106667pt;}
.ls30{letter-spacing:0.124373pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.133333pt;}
.ls59{letter-spacing:0.144000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.186667pt;}
.lsb{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.266667pt;}
.ls57{letter-spacing:0.288000pt;}
.ls23{letter-spacing:0.293333pt;}
.ls2b{letter-spacing:0.315733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls50{letter-spacing:0.336000pt;}
.ls2f{letter-spacing:0.373333pt;}
.ls51{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.672533pt;}
.ls44{letter-spacing:0.686400pt;}
.ls34{letter-spacing:1.022933pt;}
.ls3a{letter-spacing:2.076267pt;}
.ls3d{letter-spacing:2.096907pt;}
.ls40{letter-spacing:2.176032pt;}
.ls58{letter-spacing:3.187855pt;}
.ls2{letter-spacing:4.174257pt;}
.ls5{letter-spacing:7.480396pt;}
.ws2{word-spacing:-11.253333pt;}
.ws11{word-spacing:-11.093333pt;}
.ws1{word-spacing:-10.986667pt;}
.ws7d{word-spacing:-10.933333pt;}
.ws29{word-spacing:-10.880000pt;}
.ws4e{word-spacing:-10.853333pt;}
.ws87{word-spacing:-10.826667pt;}
.ws88{word-spacing:-10.773333pt;}
.ws12{word-spacing:-10.720000pt;}
.wsa8{word-spacing:-10.693333pt;}
.ws10{word-spacing:-10.666667pt;}
.ws77{word-spacing:-10.613333pt;}
.ws67{word-spacing:-10.560000pt;}
.wsad{word-spacing:-10.506667pt;}
.ws91{word-spacing:-10.400000pt;}
.wsb2{word-spacing:-10.080000pt;}
.wsba{word-spacing:-9.648000pt;}
.wsaf{word-spacing:-9.600000pt;}
.ws9d{word-spacing:-9.280000pt;}
.ws78{word-spacing:-8.800000pt;}
.ws98{word-spacing:-8.746667pt;}
.ws97{word-spacing:-8.693333pt;}
.wsb9{word-spacing:-8.640000pt;}
.ws5c{word-spacing:-8.618667pt;}
.ws50{word-spacing:-8.576000pt;}
.ws0{word-spacing:-8.533333pt;}
.wsd2{word-spacing:-8.400000pt;}
.wsbb{word-spacing:-7.872000pt;}
.ws7f{word-spacing:-7.765333pt;}
.ws70{word-spacing:-7.722667pt;}
.ws89{word-spacing:-7.466667pt;}
.ws51{word-spacing:-6.826667pt;}
.ws7e{word-spacing:-6.343040pt;}
.ws6e{word-spacing:-6.280853pt;}
.ws13{word-spacing:-6.218667pt;}
.ws92{word-spacing:-6.187573pt;}
.ws6f{word-spacing:-6.094293pt;}
.ws79{word-spacing:-6.063200pt;}
.wsb0{word-spacing:-5.876640pt;}
.wsa9{word-spacing:-5.074432pt;}
.ws4f{word-spacing:-5.049557pt;}
.ws14{word-spacing:-4.974933pt;}
.wsa5{word-spacing:-4.925184pt;}
.ws93{word-spacing:-4.875435pt;}
.ws3d{word-spacing:-1.760000pt;}
.wsae{word-spacing:-1.706667pt;}
.ws20{word-spacing:-1.653333pt;}
.wsc4{word-spacing:-1.632000pt;}
.ws1f{word-spacing:-1.600000pt;}
.wsa{word-spacing:-1.546667pt;}
.wsc8{word-spacing:-1.536000pt;}
.ws49{word-spacing:-1.493333pt;}
.wsca{word-spacing:-1.488000pt;}
.wsc{word-spacing:-1.440000pt;}
.wsd6{word-spacing:-1.392000pt;}
.ws22{word-spacing:-1.386667pt;}
.ws5{word-spacing:-1.344000pt;}
.ws2b{word-spacing:-1.333333pt;}
.ws64{word-spacing:-1.322667pt;}
.ws3e{word-spacing:-1.280000pt;}
.wsd4{word-spacing:-1.248000pt;}
.wsb8{word-spacing:-1.237333pt;}
.ws5e{word-spacing:-1.226667pt;}
.ws4c{word-spacing:-1.194667pt;}
.ws83{word-spacing:-1.173333pt;}
.ws6{word-spacing:-1.157333pt;}
.wsbd{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.120000pt;}
.wsa0{word-spacing:-1.066667pt;}
.ws26{word-spacing:-1.024000pt;}
.ws60{word-spacing:-1.013333pt;}
.wscc{word-spacing:-1.008000pt;}
.ws25{word-spacing:-0.981333pt;}
.ws3b{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.906667pt;}
.wsbc{word-spacing:-0.864000pt;}
.ws5d{word-spacing:-0.853333pt;}
.wsb4{word-spacing:-0.816000pt;}
.ws21{word-spacing:-0.800000pt;}
.ws66{word-spacing:-0.768000pt;}
.wsa1{word-spacing:-0.746667pt;}
.ws7b{word-spacing:-0.725333pt;}
.wsd0{word-spacing:-0.720000pt;}
.ws2e{word-spacing:-0.693333pt;}
.ws17{word-spacing:-0.640000pt;}
.ws6a{word-spacing:-0.586667pt;}
.ws34{word-spacing:-0.533333pt;}
.ws32{word-spacing:-0.480000pt;}
.wsa7{word-spacing:-0.469333pt;}
.wsc9{word-spacing:-0.432000pt;}
.ws44{word-spacing:-0.426667pt;}
.wscd{word-spacing:-0.384000pt;}
.ws1e{word-spacing:-0.373333pt;}
.wsbf{word-spacing:-0.336000pt;}
.ws31{word-spacing:-0.320000pt;}
.wscf{word-spacing:-0.288000pt;}
.wsd{word-spacing:-0.266667pt;}
.ws74{word-spacing:-0.256000pt;}
.wsc0{word-spacing:-0.240000pt;}
.ws23{word-spacing:-0.213333pt;}
.wsc3{word-spacing:-0.192000pt;}
.ws39{word-spacing:-0.170667pt;}
.ws48{word-spacing:-0.160000pt;}
.ws57{word-spacing:-0.128000pt;}
.ws96{word-spacing:-0.124373pt;}
.ws1d{word-spacing:-0.106667pt;}
.ws36{word-spacing:-0.099499pt;}
.ws4b{word-spacing:-0.093280pt;}
.ws5a{word-spacing:-0.085333pt;}
.wsa4{word-spacing:-0.074624pt;}
.ws30{word-spacing:-0.053333pt;}
.ws3a{word-spacing:-0.049749pt;}
.wsb5{word-spacing:-0.048000pt;}
.ws59{word-spacing:-0.042667pt;}
.ws9e{word-spacing:-0.031093pt;}
.wsb1{word-spacing:-0.024875pt;}
.ws4{word-spacing:0.000000pt;}
.ws58{word-spacing:0.024875pt;}
.ws76{word-spacing:0.042667pt;}
.wsc2{word-spacing:0.048000pt;}
.wsac{word-spacing:0.049749pt;}
.ws1c{word-spacing:0.053333pt;}
.ws86{word-spacing:0.074624pt;}
.ws46{word-spacing:0.085333pt;}
.wsc1{word-spacing:0.096000pt;}
.ws94{word-spacing:0.106667pt;}
.ws45{word-spacing:0.128000pt;}
.wsb3{word-spacing:0.144000pt;}
.ws2f{word-spacing:0.160000pt;}
.wsc5{word-spacing:0.192000pt;}
.ws55{word-spacing:0.213333pt;}
.ws3c{word-spacing:0.266667pt;}
.wsc6{word-spacing:0.288000pt;}
.ws7c{word-spacing:0.298667pt;}
.ws54{word-spacing:0.320000pt;}
.wsab{word-spacing:0.341333pt;}
.ws7a{word-spacing:0.373333pt;}
.ws8e{word-spacing:0.384000pt;}
.ws27{word-spacing:0.426667pt;}
.ws5b{word-spacing:0.469333pt;}
.ws3f{word-spacing:0.480000pt;}
.ws90{word-spacing:0.512000pt;}
.ws6b{word-spacing:0.533333pt;}
.ws35{word-spacing:0.586667pt;}
.ws85{word-spacing:0.597333pt;}
.ws53{word-spacing:0.640000pt;}
.ws65{word-spacing:0.682667pt;}
.ws2a{word-spacing:0.693333pt;}
.ws40{word-spacing:0.746667pt;}
.ws15{word-spacing:0.800000pt;}
.ws63{word-spacing:0.810667pt;}
.ws73{word-spacing:0.853333pt;}
.ws3{word-spacing:0.896000pt;}
.ws19{word-spacing:0.906667pt;}
.ws47{word-spacing:0.938667pt;}
.wsaa{word-spacing:1.013333pt;}
.ws6c{word-spacing:1.024000pt;}
.wscb{word-spacing:1.056000pt;}
.wsa3{word-spacing:1.066667pt;}
.wsce{word-spacing:1.104000pt;}
.ws56{word-spacing:1.120000pt;}
.ws8d{word-spacing:1.152000pt;}
.ws9f{word-spacing:1.173333pt;}
.ws28{word-spacing:1.194667pt;}
.ws41{word-spacing:1.226667pt;}
.ws8f{word-spacing:1.237333pt;}
.ws72{word-spacing:1.280000pt;}
.ws52{word-spacing:1.333333pt;}
.ws8a{word-spacing:1.386667pt;}
.ws68{word-spacing:1.440000pt;}
.ws9c{word-spacing:1.450667pt;}
.wsb6{word-spacing:1.488000pt;}
.ws9a{word-spacing:1.493333pt;}
.ws81{word-spacing:1.546667pt;}
.ws2c{word-spacing:1.600000pt;}
.ws75{word-spacing:1.621333pt;}
.ws5f{word-spacing:1.653333pt;}
.ws9b{word-spacing:1.664000pt;}
.ws24{word-spacing:1.706667pt;}
.wsb7{word-spacing:1.749333pt;}
.ws7{word-spacing:1.754667pt;}
.wse{word-spacing:1.760000pt;}
.wsd3{word-spacing:1.776000pt;}
.ws37{word-spacing:1.792000pt;}
.ws80{word-spacing:1.813333pt;}
.wsd1{word-spacing:1.824000pt;}
.ws38{word-spacing:1.834667pt;}
.ws42{word-spacing:1.866667pt;}
.ws4d{word-spacing:1.877333pt;}
.wsa6{word-spacing:1.920000pt;}
.ws33{word-spacing:1.973333pt;}
.ws1b{word-spacing:2.026667pt;}
.ws18{word-spacing:2.080000pt;}
.wsb{word-spacing:2.133333pt;}
.ws2d{word-spacing:2.186667pt;}
.ws6d{word-spacing:2.218667pt;}
.ws71{word-spacing:2.293333pt;}
.ws1a{word-spacing:2.400000pt;}
.ws95{word-spacing:2.560000pt;}
.ws82{word-spacing:2.613333pt;}
.wsa2{word-spacing:2.773333pt;}
.ws61{word-spacing:2.826667pt;}
.ws69{word-spacing:2.880000pt;}
.ws62{word-spacing:2.933333pt;}
.ws8c{word-spacing:3.146667pt;}
.wsbe{word-spacing:3.168000pt;}
.ws8{word-spacing:3.200000pt;}
.ws8b{word-spacing:3.360000pt;}
.ws99{word-spacing:3.413333pt;}
.ws84{word-spacing:3.520000pt;}
.wsc7{word-spacing:3.744000pt;}
.wsd5{word-spacing:3.936000pt;}
.ws16{word-spacing:4.053333pt;}
.ws43{word-spacing:4.960000pt;}
.wsf{word-spacing:5.706667pt;}
._7{margin-left:-7.285333pt;}
._8{margin-left:-6.373333pt;}
._6{margin-left:-5.290667pt;}
._2{margin-left:-3.840000pt;}
._0{margin-left:-2.133333pt;}
._1{margin-left:-1.066667pt;}
._5{width:1.109333pt;}
._3{width:2.133333pt;}
._4{width:3.237333pt;}
._9{width:4.179485pt;}
.fs5{font-size:24.874667pt;}
.fs4{font-size:31.093333pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:44.646133pt;}
.y1a{bottom:48.446667pt;}
.y12b{bottom:77.102267pt;}
.y6{bottom:77.102400pt;}
.y43{bottom:77.102533pt;}
.y15a{bottom:77.145867pt;}
.y5b{bottom:80.654533pt;}
.y5{bottom:88.435733pt;}
.y4f{bottom:90.435733pt;}
.y42{bottom:90.435867pt;}
.y5a{bottom:90.436000pt;}
.y159{bottom:91.732533pt;}
.y12a{bottom:92.006933pt;}
.y4e{bottom:93.987733pt;}
.y61{bottom:93.987867pt;}
.y8f{bottom:93.988000pt;}
.yb2{bottom:95.270000pt;}
.y4{bottom:99.769067pt;}
.y4d{bottom:103.769067pt;}
.y41{bottom:103.769200pt;}
.y60{bottom:103.769333pt;}
.y8e{bottom:103.769467pt;}
.y158{bottom:106.319200pt;}
.y129{bottom:106.911733pt;}
.y59{bottom:107.321333pt;}
.y3{bottom:111.102400pt;}
.yb1{bottom:113.437733pt;}
.y4c{bottom:117.102400pt;}
.y40{bottom:117.102533pt;}
.y58{bottom:117.102667pt;}
.y8d{bottom:117.102800pt;}
.y69{bottom:120.654533pt;}
.yb6{bottom:120.654667pt;}
.y157{bottom:120.905867pt;}
.y128{bottom:121.816400pt;}
.y2{bottom:126.215200pt;}
.y4b{bottom:130.435733pt;}
.y84{bottom:130.435867pt;}
.y5f{bottom:130.436000pt;}
.y8c{bottom:130.436133pt;}
.yec{bottom:131.376667pt;}
.yb0{bottom:131.605467pt;}
.y4a{bottom:133.987733pt;}
.y3f{bottom:133.987867pt;}
.y57{bottom:133.988000pt;}
.yb5{bottom:133.988133pt;}
.y156{bottom:135.492533pt;}
.y127{bottom:136.721200pt;}
.y1{bottom:139.548533pt;}
.y49{bottom:143.769067pt;}
.yfc{bottom:143.769200pt;}
.y3e{bottom:143.769333pt;}
.y8b{bottom:143.769467pt;}
.yea{bottom:143.769600pt;}
.y51{bottom:147.321067pt;}
.y56{bottom:147.321333pt;}
.yeb{bottom:149.376667pt;}
.yaf{bottom:149.773200pt;}
.y155{bottom:150.079200pt;}
.y126{bottom:151.625867pt;}
.y6b{bottom:152.258533pt;}
.yfb{bottom:157.102533pt;}
.y3d{bottom:157.102667pt;}
.y8a{bottom:157.102800pt;}
.ye9{bottom:157.102933pt;}
.y48{bottom:160.654400pt;}
.y5e{bottom:160.654667pt;}
.y154{bottom:164.665867pt;}
.y125{bottom:166.530533pt;}
.yb4{bottom:167.376667pt;}
.yae{bottom:167.940933pt;}
.y6a{bottom:170.258533pt;}
.yfa{bottom:170.435867pt;}
.y55{bottom:170.436000pt;}
.y5d{bottom:170.436133pt;}
.yf9{bottom:173.987867pt;}
.y3c{bottom:173.988000pt;}
.ye8{bottom:173.988267pt;}
.y153{bottom:179.252533pt;}
.y124{bottom:181.435333pt;}
.y68{bottom:183.769333pt;}
.y83{bottom:183.769467pt;}
.y50{bottom:185.376667pt;}
.yad{bottom:186.108667pt;}
.y54{bottom:187.321333pt;}
.y5c{bottom:187.321467pt;}
.y152{bottom:193.839200pt;}
.y123{bottom:196.340000pt;}
.y67{bottom:197.102667pt;}
.y89{bottom:197.102800pt;}
.yd2{bottom:197.102933pt;}
.y7f{bottom:200.654667pt;}
.y82{bottom:200.654800pt;}
.y3b{bottom:203.376667pt;}
.yac{bottom:204.276400pt;}
.y151{bottom:208.425867pt;}
.ye7{bottom:209.140400pt;}
.y66{bottom:210.436000pt;}
.y81{bottom:210.436267pt;}
.y122{bottom:211.244667pt;}
.y3a{bottom:221.376667pt;}
.yab{bottom:222.444133pt;}
.y150{bottom:223.012533pt;}
.yf8{bottom:223.769333pt;}
.y88{bottom:223.769600pt;}
.y121{bottom:226.149467pt;}
.ye6{bottom:227.140400pt;}
.y65{bottom:227.321333pt;}
.y80{bottom:227.321600pt;}
.y7e{bottom:234.699467pt;}
.yf7{bottom:237.102667pt;}
.y64{bottom:237.102800pt;}
.yd1{bottom:237.103067pt;}
.y14f{bottom:237.599200pt;}
.y39{bottom:239.376667pt;}
.yaa{bottom:240.611867pt;}
.y87{bottom:240.654933pt;}
.y120{bottom:241.054133pt;}
.ye5{bottom:245.140400pt;}
.y63{bottom:250.436133pt;}
.y86{bottom:250.436400pt;}
.y14e{bottom:252.185867pt;}
.y7d{bottom:252.699467pt;}
.y11f{bottom:255.958800pt;}
.y38{bottom:257.376667pt;}
.ya9{bottom:258.779600pt;}
.ye4{bottom:263.140400pt;}
.y62{bottom:263.769467pt;}
.y85{bottom:263.769733pt;}
.y14d{bottom:266.772533pt;}
.y7c{bottom:270.699467pt;}
.y11e{bottom:270.863600pt;}
.y37{bottom:275.376667pt;}
.ya8{bottom:276.947333pt;}
.ye3{bottom:281.140400pt;}
.y14c{bottom:281.359200pt;}
.y11d{bottom:285.768267pt;}
.y7b{bottom:288.699467pt;}
.y36{bottom:293.376667pt;}
.yf6{bottom:294.340400pt;}
.y14b{bottom:295.945867pt;}
.yd0{bottom:296.043333pt;}
.ye2{bottom:299.140400pt;}
.y11c{bottom:300.673067pt;}
.y7a{bottom:306.699467pt;}
.yf5{bottom:309.007067pt;}
.ya7{bottom:310.233200pt;}
.y14a{bottom:310.532533pt;}
.y35{bottom:311.376667pt;}
.ycf{bottom:314.043333pt;}
.y11b{bottom:315.577733pt;}
.ye1{bottom:317.140400pt;}
.yf4{bottom:323.673733pt;}
.y79{bottom:324.699467pt;}
.y149{bottom:325.119200pt;}
.ya6{bottom:328.400933pt;}
.y34{bottom:329.376667pt;}
.y11a{bottom:330.482400pt;}
.yce{bottom:331.936667pt;}
.ye0{bottom:335.140400pt;}
.yf3{bottom:338.340400pt;}
.y148{bottom:339.705867pt;}
.y78{bottom:342.699467pt;}
.y119{bottom:345.387200pt;}
.ya5{bottom:346.568667pt;}
.y33{bottom:347.376667pt;}
.ycd{bottom:349.830000pt;}
.yf2{bottom:353.007067pt;}
.ydf{bottom:353.140400pt;}
.y147{bottom:354.292533pt;}
.y118{bottom:360.291867pt;}
.y77{bottom:360.699467pt;}
.ya4{bottom:364.736267pt;}
.y32{bottom:365.376667pt;}
.yf1{bottom:367.673733pt;}
.ycc{bottom:367.723333pt;}
.y146{bottom:368.879200pt;}
.y53{bottom:369.816667pt;}
.yde{bottom:371.140400pt;}
.y117{bottom:375.196533pt;}
.y76{bottom:378.699467pt;}
.yf0{bottom:382.340400pt;}
.ya3{bottom:382.904000pt;}
.y31{bottom:383.376667pt;}
.y145{bottom:383.465867pt;}
.y17{bottom:384.890933pt;}
.ycb{bottom:385.616667pt;}
.ydd{bottom:389.140400pt;}
.y116{bottom:390.101333pt;}
.y75{bottom:396.699467pt;}
.yef{bottom:397.007067pt;}
.y144{bottom:398.052533pt;}
.y30{bottom:401.376667pt;}
.y16{bottom:402.890933pt;}
.yca{bottom:403.510000pt;}
.y115{bottom:405.006000pt;}
.ydc{bottom:407.140400pt;}
.yee{bottom:411.673733pt;}
.y143{bottom:412.639200pt;}
.y74{bottom:414.699467pt;}
.ya2{bottom:416.189867pt;}
.y2f{bottom:419.376667pt;}
.y114{bottom:419.910667pt;}
.yc9{bottom:421.403333pt;}
.ydb{bottom:425.140400pt;}
.y142{bottom:427.225867pt;}
.y73{bottom:432.699467pt;}
.yed{bottom:433.899467pt;}
.ya1{bottom:434.357600pt;}
.y113{bottom:434.815467pt;}
.y2e{bottom:437.376667pt;}
.yc8{bottom:439.296667pt;}
.y141{bottom:441.812533pt;}
.yda{bottom:443.140400pt;}
.y15{bottom:443.568133pt;}
.y112{bottom:449.720133pt;}
.ya0{bottom:452.525333pt;}
.y2d{bottom:455.376667pt;}
.y140{bottom:456.399200pt;}
.yc7{bottom:457.190000pt;}
.yd9{bottom:461.140400pt;}
.y14{bottom:461.568133pt;}
.y111{bottom:464.624933pt;}
.y72{bottom:465.817600pt;}
.y9f{bottom:470.693067pt;}
.y13f{bottom:470.985867pt;}
.y2c{bottom:473.376667pt;}
.yc6{bottom:475.083333pt;}
.yd8{bottom:479.140400pt;}
.y110{bottom:479.529600pt;}
.y13{bottom:479.568133pt;}
.y71{bottom:483.817600pt;}
.y13e{bottom:485.572533pt;}
.y9e{bottom:488.860800pt;}
.y2b{bottom:491.376667pt;}
.yc5{bottom:492.976667pt;}
.y10f{bottom:494.434267pt;}
.y12{bottom:497.568133pt;}
.y13d{bottom:500.159200pt;}
.y70{bottom:501.817600pt;}
.y9d{bottom:507.028533pt;}
.y10e{bottom:509.339067pt;}
.y29{bottom:509.376667pt;}
.yc4{bottom:510.870000pt;}
.yd7{bottom:512.258533pt;}
.y2a{bottom:513.816667pt;}
.y13c{bottom:514.745867pt;}
.y11{bottom:515.568133pt;}
.y6f{bottom:519.817600pt;}
.y10d{bottom:524.243733pt;}
.y9c{bottom:525.196267pt;}
.y28{bottom:527.376667pt;}
.yc3{bottom:528.763200pt;}
.y13b{bottom:529.332533pt;}
.yd6{bottom:530.258533pt;}
.y10{bottom:533.568133pt;}
.y6e{bottom:537.817600pt;}
.y10c{bottom:539.148400pt;}
.y9b{bottom:543.363867pt;}
.y13a{bottom:543.919200pt;}
.y27{bottom:545.376667pt;}
.yc2{bottom:546.656667pt;}
.yd5{bottom:548.258533pt;}
.yf{bottom:551.568133pt;}
.y10b{bottom:554.053200pt;}
.y6d{bottom:555.817600pt;}
.y139{bottom:558.505867pt;}
.y9a{bottom:561.531600pt;}
.y26{bottom:563.376667pt;}
.yc1{bottom:564.550000pt;}
.yd4{bottom:566.258533pt;}
.y47{bottom:567.816667pt;}
.y10a{bottom:568.957867pt;}
.ye{bottom:569.568133pt;}
.y138{bottom:573.092533pt;}
.y6c{bottom:573.817600pt;}
.y99{bottom:579.699333pt;}
.y25{bottom:581.376667pt;}
.yc0{bottom:582.443333pt;}
.y109{bottom:583.862667pt;}
.yd3{bottom:584.258533pt;}
.yd{bottom:587.568133pt;}
.y137{bottom:587.679200pt;}
.y98{bottom:597.867067pt;}
.y108{bottom:598.767333pt;}
.y24{bottom:599.376667pt;}
.ybf{bottom:600.336667pt;}
.y136{bottom:602.265867pt;}
.yc{bottom:605.568133pt;}
.y107{bottom:613.672000pt;}
.y97{bottom:616.034800pt;}
.y135{bottom:616.852533pt;}
.y23{bottom:617.376667pt;}
.ybe{bottom:618.230000pt;}
.y106{bottom:628.576800pt;}
.y163{bottom:630.719200pt;}
.y134{bottom:631.439200pt;}
.y96{bottom:634.202533pt;}
.y22{bottom:635.376667pt;}
.ybd{bottom:636.123333pt;}
.y105{bottom:643.481467pt;}
.y162{bottom:645.385867pt;}
.y133{bottom:646.025867pt;}
.y95{bottom:652.370267pt;}
.y21{bottom:653.376667pt;}
.ybc{bottom:654.016667pt;}
.y104{bottom:658.386133pt;}
.y161{bottom:660.052533pt;}
.y132{bottom:660.612533pt;}
.y94{bottom:670.538000pt;}
.y20{bottom:671.376667pt;}
.ybb{bottom:671.910000pt;}
.y103{bottom:673.290933pt;}
.y160{bottom:674.719200pt;}
.y131{bottom:675.199200pt;}
.yb{bottom:687.820133pt;}
.y102{bottom:688.195600pt;}
.y93{bottom:688.705733pt;}
.y1f{bottom:689.376667pt;}
.y15f{bottom:689.385867pt;}
.y130{bottom:689.785867pt;}
.yba{bottom:689.803333pt;}
.y101{bottom:703.100400pt;}
.y15e{bottom:704.052533pt;}
.y12f{bottom:704.372533pt;}
.y92{bottom:706.873467pt;}
.y1e{bottom:707.376667pt;}
.yb9{bottom:707.696667pt;}
.ya{bottom:717.825333pt;}
.y100{bottom:718.005067pt;}
.y15d{bottom:718.719200pt;}
.y12e{bottom:718.959200pt;}
.y91{bottom:725.041200pt;}
.y1d{bottom:725.376667pt;}
.yb8{bottom:725.589867pt;}
.yff{bottom:732.909733pt;}
.y15c{bottom:733.385867pt;}
.y12d{bottom:733.545867pt;}
.y90{bottom:743.208933pt;}
.y1c{bottom:743.376667pt;}
.yb7{bottom:743.483333pt;}
.yfe{bottom:747.814400pt;}
.y52{bottom:747.816667pt;}
.y15b{bottom:748.052533pt;}
.y12c{bottom:748.132533pt;}
.y1b{bottom:761.376667pt;}
.yfd{bottom:762.719200pt;}
.yb3{bottom:765.816667pt;}
.y9{bottom:782.803067pt;}
.y8{bottom:782.803200pt;}
.y7{bottom:794.003200pt;}
.y19{bottom:798.479067pt;}
.y45{bottom:798.480267pt;}
.y18{bottom:798.497600pt;}
.y44{bottom:798.498800pt;}
.hb{height:17.561515pt;}
.ha{height:21.546667pt;}
.h9{height:26.056213pt;}
.h4{height:26.357333pt;}
.h8{height:30.122667pt;}
.hc{height:30.250667pt;}
.h3{height:31.285333pt;}
.h11{height:33.888000pt;}
.h12{height:34.032000pt;}
.h2{height:35.754667pt;}
.h7{height:37.653333pt;}
.hd{height:37.813333pt;}
.hf{height:39.536000pt;}
.h10{height:40.224000pt;}
.he{height:43.816213pt;}
.h5{height:44.693333pt;}
.h6{height:45.184000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:102.047200pt;}
.x1{left:151.181067pt;}
.xb{left:160.529467pt;}
.x10{left:163.340400pt;}
.x5{left:170.078667pt;}
.x9{left:190.364667pt;}
.xa{left:194.047067pt;}
.xe{left:227.038533pt;}
.xf{left:234.597733pt;}
.x6{left:264.765867pt;}
.x7{left:268.517200pt;}
.x3{left:319.277867pt;}
.x2{left:392.590800pt;}
.x11{left:420.251733pt;}
.x12{left:427.740933pt;}
.xc{left:434.608933pt;}
.xd{left:438.354400pt;}
.x8{left:506.590267pt;}
}




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