
    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_3582521bfdf26033eadade7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.997000;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_422b961cfac139f5ed24668b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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_af6732ace9a4e552e7ce5410.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_af6732ace9a4e552e7ce5410.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_3be8d652fd7bf60c859dd1a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008039;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_134d7a8db4fbba1c562617cd.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_78aa20fb5c972fc06c629fc0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_af6732ace9a4e552e7ce5410.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.067000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_af6732ace9a4e552e7ce5410.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.067000;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);}
.m153{transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);}
.m7a{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);}
.m15e{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);}
.mcb{transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247655,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.247666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247666,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.247744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247744,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.247847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247847,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247857,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);}
.m138{transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);}
.m168{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);}
.m17b{transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248163,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248184,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);}
.m16d{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);}
.m133{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);}
.mfb{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248436,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248460,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248594,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248596,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.248656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248656,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248669,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.248697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248697,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248708,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248760,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);}
.m40{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);}
.mc0{transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248913,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.mf7{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);}
.m7f{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);}
.m29{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.mce{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249128,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249156,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);}
.m17c{transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249269,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249281,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m2b{transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m6b{transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m9e{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249367,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);}
.m51{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);}
.m114{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249503,0.000000,0.000000,0.250000,0,0);}
.mcf{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);}
.m162{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m10f{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);}
.m85{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);}
.m84{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m17a{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m98{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);}
.m15{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m13c{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);}
.mbf{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.m11e{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);}
.m11d{transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m13e{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);}
.m6d{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m166{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);}
.m6e{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);}
.m56{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249944,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m173{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);}
.md1{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);}
.m15f{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,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);}
.m139{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m177{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m43{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);}
.m156{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.mf1{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.mee{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);}
.med{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.m128{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);}
.maf{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250303,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.ma9{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);}
.m8{transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.mb5{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);}
.mdb{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.ma8{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);}
.m12f{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.m157{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);}
.m144{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);}
.m126{transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.mde{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m178{transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250583,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m16e{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);}
.m124{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);}
.m130{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);}
.m131{transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250887,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.m68{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);}
.m125{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250987,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m5e{transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);}
.me0{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);}
.mfa{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);}
.m6c{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m32{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);}
.m31{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.ma5{transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251165,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251245,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.251347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251347,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m83{transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);}
.m65{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);}
.m38{transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251512,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.m14b{transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.251638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251638,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251648,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251716,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.m170{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);}
.md0{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.251822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251822,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251883,0.000000,0.000000,0.250000,0,0);}
.m57{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);}
.ma0{transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251908,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251913,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.m99{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);}
.m9{transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252013,0.000000,0.000000,0.250000,0,0);}
.m111{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);}
.m86{transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252232,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);}
.m58{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);}
.maa{transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.252298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252298,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252345,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252381,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);}
.mb0{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);}
.m8a{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls4c{letter-spacing:-2.160000px;}
.ls28{letter-spacing:-1.776000px;}
.ls24{letter-spacing:-1.500000px;}
.ls3b{letter-spacing:-1.200000px;}
.ls21{letter-spacing:-0.960000px;}
.ls4b{letter-spacing:-0.864000px;}
.ls38{letter-spacing:-0.768000px;}
.ls4a{letter-spacing:-0.648000px;}
.ls37{letter-spacing:-0.576000px;}
.ls33{letter-spacing:-0.540000px;}
.ls32{letter-spacing:-0.480000px;}
.ls27{letter-spacing:-0.420000px;}
.ls31{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.335808px;}
.ls34{letter-spacing:-0.314820px;}
.ls2b{letter-spacing:-0.300000px;}
.ls39{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.210000px;}
.ls1f{letter-spacing:-0.192000px;}
.ls10{letter-spacing:-0.180000px;}
.ls44{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.126000px;}
.ls8{letter-spacing:-0.120000px;}
.ls42{letter-spacing:-0.108000px;}
.ls3d{letter-spacing:-0.104940px;}
.ls26{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.083952px;}
.ls9{letter-spacing:-0.060000px;}
.ls25{letter-spacing:-0.055968px;}
.ls43{letter-spacing:-0.054000px;}
.ls14{letter-spacing:-0.048000px;}
.ls2e{letter-spacing:-0.034980px;}
.ls17{letter-spacing:-0.027984px;}
.ls5{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.013992px;}
.ls1e{letter-spacing:0.024000px;}
.ls3a{letter-spacing:0.027984px;}
.ls30{letter-spacing:0.030000px;}
.ls22{letter-spacing:0.034980px;}
.ls12{letter-spacing:0.048000px;}
.ls46{letter-spacing:0.054000px;}
.ls2d{letter-spacing:0.055968px;}
.ls3{letter-spacing:0.060000px;}
.ls1b{letter-spacing:0.069960px;}
.ls20{letter-spacing:0.083952px;}
.lsf{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.096000px;}
.ls1c{letter-spacing:0.104940px;}
.ls48{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.111936px;}
.ls1{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.139920px;}
.ls1a{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.150000px;}
.ls49{letter-spacing:0.162000px;}
.ls3e{letter-spacing:0.167904px;}
.ls3f{letter-spacing:0.174900px;}
.ls4{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.210000px;}
.ls41{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.240000px;}
.ls47{letter-spacing:0.243000px;}
.lsc{letter-spacing:0.270000px;}
.ls3c{letter-spacing:0.288000px;}
.lse{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.330000px;}
.lsd{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.378000px;}
.ls2c{letter-spacing:0.420000px;}
.ls2a{letter-spacing:0.464400px;}
.ls45{letter-spacing:0.594000px;}
.lsb{letter-spacing:0.600000px;}
.ls40{letter-spacing:1.084200px;}
.ls2f{letter-spacing:1.124400px;}
.ls35{letter-spacing:1.356971px;}
.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;}
}
.ws94{word-spacing:-12.360000px;}
.ws40{word-spacing:-12.240000px;}
.ws47{word-spacing:-12.000000px;}
.ws63{word-spacing:-11.880000px;}
.wsad{word-spacing:-11.016000px;}
.wsb5{word-spacing:-10.908000px;}
.wsc8{word-spacing:-10.854000px;}
.wsac{word-spacing:-10.800000px;}
.wsae{word-spacing:-10.746000px;}
.ws74{word-spacing:-10.500000px;}
.ws48{word-spacing:-9.696000px;}
.ws35{word-spacing:-9.600000px;}
.ws36{word-spacing:-9.552000px;}
.ws6e{word-spacing:-8.640000px;}
.wsa0{word-spacing:-8.400000px;}
.ws7f{word-spacing:-7.824000px;}
.wsa9{word-spacing:-7.170900px;}
.ws55{word-spacing:-7.100940px;}
.ws54{word-spacing:-7.065960px;}
.ws73{word-spacing:-7.030980px;}
.ws33{word-spacing:-6.996000px;}
.ws85{word-spacing:-6.961020px;}
.ws56{word-spacing:-5.708736px;}
.ws7c{word-spacing:-5.680752px;}
.ws86{word-spacing:-5.652768px;}
.ws5c{word-spacing:-5.610792px;}
.ws34{word-spacing:-5.596800px;}
.ws49{word-spacing:-5.568816px;}
.ws95{word-spacing:-5.540832px;}
.ws96{word-spacing:-5.512848px;}
.ws89{word-spacing:-2.400000px;}
.ws4d{word-spacing:-1.920000px;}
.ws2b{word-spacing:-1.860000px;}
.ws6{word-spacing:-1.800000px;}
.ws1d{word-spacing:-1.740000px;}
.ws9d{word-spacing:-1.680000px;}
.wsb8{word-spacing:-1.674000px;}
.ws75{word-spacing:-1.620000px;}
.wsc2{word-spacing:-1.566000px;}
.ws78{word-spacing:-1.560000px;}
.ws1{word-spacing:-1.512000px;}
.ws41{word-spacing:-1.500000px;}
.ws9b{word-spacing:-1.488000px;}
.wsd{word-spacing:-1.440000px;}
.ws72{word-spacing:-1.392000px;}
.ws59{word-spacing:-1.380000px;}
.wsc5{word-spacing:-1.350000px;}
.ws31{word-spacing:-1.320000px;}
.ws2{word-spacing:-1.302000px;}
.wsa7{word-spacing:-1.296000px;}
.ws13{word-spacing:-1.260000px;}
.ws9f{word-spacing:-1.248000px;}
.ws2a{word-spacing:-1.200000px;}
.ws42{word-spacing:-1.140000px;}
.ws6a{word-spacing:-1.104000px;}
.ws22{word-spacing:-1.080000px;}
.ws53{word-spacing:-1.056000px;}
.ws9c{word-spacing:-1.020000px;}
.ws6c{word-spacing:-0.960000px;}
.ws66{word-spacing:-0.912000px;}
.ws2c{word-spacing:-0.900000px;}
.ws3b{word-spacing:-0.864000px;}
.ws79{word-spacing:-0.840000px;}
.wsc4{word-spacing:-0.810000px;}
.ws57{word-spacing:-0.780000px;}
.ws8e{word-spacing:-0.768000px;}
.wsd1{word-spacing:-0.756000px;}
.ws2d{word-spacing:-0.720000px;}
.ws1c{word-spacing:-0.660000px;}
.wsaf{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.600000px;}
.wsa2{word-spacing:-0.576000px;}
.ws50{word-spacing:-0.540000px;}
.ws7a{word-spacing:-0.528000px;}
.wsba{word-spacing:-0.486000px;}
.ws92{word-spacing:-0.480000px;}
.ws9a{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.420000px;}
.ws3c{word-spacing:-0.384000px;}
.ws12{word-spacing:-0.360000px;}
.wsbc{word-spacing:-0.324000px;}
.ws5d{word-spacing:-0.300000px;}
.ws68{word-spacing:-0.288000px;}
.wscb{word-spacing:-0.270000px;}
.ws23{word-spacing:-0.240000px;}
.wsb7{word-spacing:-0.216000px;}
.ws3e{word-spacing:-0.192000px;}
.wsa{word-spacing:-0.180000px;}
.wsa5{word-spacing:-0.167904px;}
.wsb2{word-spacing:-0.162000px;}
.ws61{word-spacing:-0.144000px;}
.ws76{word-spacing:-0.139920px;}
.ws26{word-spacing:-0.120000px;}
.ws5b{word-spacing:-0.111936px;}
.wsc7{word-spacing:-0.108000px;}
.ws5e{word-spacing:-0.096000px;}
.ws6d{word-spacing:-0.083952px;}
.ws8{word-spacing:-0.060000px;}
.wsbb{word-spacing:-0.054000px;}
.ws5f{word-spacing:-0.048000px;}
.wsa1{word-spacing:-0.034980px;}
.ws9e{word-spacing:-0.027984px;}
.ws0{word-spacing:0.000000px;}
.ws60{word-spacing:0.027984px;}
.ws3d{word-spacing:0.048000px;}
.wsb4{word-spacing:0.054000px;}
.ws7b{word-spacing:0.055968px;}
.wse{word-spacing:0.060000px;}
.ws44{word-spacing:0.083952px;}
.ws62{word-spacing:0.096000px;}
.wsa3{word-spacing:0.104940px;}
.wsb0{word-spacing:0.108000px;}
.ws11{word-spacing:0.120000px;}
.ws45{word-spacing:0.144000px;}
.wsb9{word-spacing:0.162000px;}
.ws10{word-spacing:0.180000px;}
.ws65{word-spacing:0.192000px;}
.wsbd{word-spacing:0.216000px;}
.wsc{word-spacing:0.240000px;}
.ws81{word-spacing:0.288000px;}
.ws29{word-spacing:0.300000px;}
.ws93{word-spacing:0.314820px;}
.wscd{word-spacing:0.324000px;}
.ws98{word-spacing:0.335808px;}
.ws52{word-spacing:0.336000px;}
.ws2e{word-spacing:0.360000px;}
.ws3a{word-spacing:0.420000px;}
.ws46{word-spacing:0.432000px;}
.ws84{word-spacing:0.480000px;}
.ws4a{word-spacing:0.540000px;}
.ws99{word-spacing:0.576000px;}
.wscf{word-spacing:0.594000px;}
.ws32{word-spacing:0.600000px;}
.wsbe{word-spacing:0.648000px;}
.ws16{word-spacing:0.660000px;}
.ws19{word-spacing:0.720000px;}
.ws14{word-spacing:0.780000px;}
.ws27{word-spacing:0.840000px;}
.ws4e{word-spacing:0.900000px;}
.ws67{word-spacing:0.912000px;}
.wsf{word-spacing:0.960000px;}
.ws64{word-spacing:1.020000px;}
.wsa8{word-spacing:1.056000px;}
.ws4c{word-spacing:1.080000px;}
.wsab{word-spacing:1.104000px;}
.wsb1{word-spacing:1.134000px;}
.ws43{word-spacing:1.140000px;}
.wsc0{word-spacing:1.188000px;}
.ws83{word-spacing:1.200000px;}
.ws69{word-spacing:1.248000px;}
.ws37{word-spacing:1.260000px;}
.wsd0{word-spacing:1.296000px;}
.ws21{word-spacing:1.320000px;}
.ws71{word-spacing:1.380000px;}
.ws70{word-spacing:1.440000px;}
.wsb{word-spacing:1.500000px;}
.ws2f{word-spacing:1.560000px;}
.ws58{word-spacing:1.620000px;}
.wsc9{word-spacing:1.674000px;}
.ws8d{word-spacing:1.680000px;}
.ws80{word-spacing:1.740000px;}
.wsa4{word-spacing:1.800000px;}
.wsc6{word-spacing:1.836000px;}
.ws5{word-spacing:1.860000px;}
.ws51{word-spacing:1.872000px;}
.wsbf{word-spacing:1.890000px;}
.ws3f{word-spacing:1.920000px;}
.ws3{word-spacing:1.974000px;}
.ws4f{word-spacing:1.980000px;}
.ws28{word-spacing:2.040000px;}
.ws38{word-spacing:2.100000px;}
.wsc3{word-spacing:2.106000px;}
.ws18{word-spacing:2.160000px;}
.wsb3{word-spacing:2.214000px;}
.ws6b{word-spacing:2.220000px;}
.ws9{word-spacing:2.280000px;}
.ws5a{word-spacing:2.304000px;}
.wscc{word-spacing:2.322000px;}
.ws15{word-spacing:2.340000px;}
.wsc1{word-spacing:2.376000px;}
.ws4{word-spacing:2.400000px;}
.ws7e{word-spacing:2.448000px;}
.ws7{word-spacing:2.460000px;}
.ws4b{word-spacing:2.520000px;}
.ws97{word-spacing:2.640000px;}
.wsce{word-spacing:2.646000px;}
.ws1b{word-spacing:2.700000px;}
.ws25{word-spacing:2.760000px;}
.wsa6{word-spacing:2.784000px;}
.ws20{word-spacing:2.820000px;}
.wsaa{word-spacing:3.000000px;}
.ws77{word-spacing:3.060000px;}
.ws7d{word-spacing:3.120000px;}
.ws39{word-spacing:3.180000px;}
.ws17{word-spacing:3.240000px;}
.ws30{word-spacing:3.420000px;}
.ws1e{word-spacing:3.480000px;}
.ws1f{word-spacing:3.540000px;}
.ws8b{word-spacing:3.600000px;}
.ws6f{word-spacing:3.780000px;}
.ws82{word-spacing:3.840000px;}
.wsca{word-spacing:3.996000px;}
.ws8a{word-spacing:4.980000px;}
.ws88{word-spacing:5.400000px;}
.ws87{word-spacing:5.820000px;}
.wsb6{word-spacing:5.994000px;}
.ws8f{word-spacing:6.360000px;}
.ws8c{word-spacing:6.960000px;}
.ws91{word-spacing:8.820000px;}
.ws90{word-spacing:8.880000px;}
._4{margin-left:-9.360000px;}
._7{margin-left:-7.432800px;}
._1{margin-left:-6.009600px;}
._2{margin-left:-4.051200px;}
._3{margin-left:-2.403600px;}
._0{margin-left:-1.200000px;}
._6{width:1.057200px;}
._5{width:2.376000px;}
._8{width:3.483600px;}
._a{width:4.606800px;}
._9{width:6.630000px;}
._b{width:7.662000px;}
._c{width:9.192000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:50.226900px;}
.y25{bottom:54.502500px;}
.y5{bottom:86.740200px;}
.ybc{bottom:86.740350px;}
.yc5{bottom:90.736350px;}
.y1a6{bottom:99.059100px;}
.y4{bottom:99.490200px;}
.ybb{bottom:101.740350px;}
.ycd{bottom:101.740500px;}
.ye8{bottom:105.736350px;}
.yc4{bottom:105.736500px;}
.y4b{bottom:106.998300px;}
.y95{bottom:107.216400px;}
.y72{bottom:107.545800px;}
.y3{bottom:112.240200px;}
.y1a5{bottom:115.559100px;}
.y177{bottom:116.632950px;}
.yba{bottom:116.740350px;}
.ye7{bottom:116.740500px;}
.y123{bottom:116.740650px;}
.ycf{bottom:120.736350px;}
.ycc{bottom:120.736500px;}
.yc3{bottom:120.736650px;}
.y2{bottom:124.990200px;}
.y4a{bottom:127.256400px;}
.y94{bottom:127.692600px;}
.y71{bottom:128.351400px;}
.y13d{bottom:130.045350px;}
.ye3{bottom:131.740350px;}
.ye6{bottom:131.740500px;}
.ycb{bottom:131.740650px;}
.yc2{bottom:131.740800px;}
.y1a4{bottom:132.059100px;}
.y176{bottom:133.132950px;}
.yb9{bottom:135.736350px;}
.yce{bottom:135.736500px;}
.y10e{bottom:135.736650px;}
.y1{bottom:141.992100px;}
.y13c{bottom:144.445350px;}
.ye2{bottom:146.740350px;}
.yb8{bottom:146.740500px;}
.y137{bottom:146.740650px;}
.yc1{bottom:146.740800px;}
.y49{bottom:147.514500px;}
.y93{bottom:148.168650px;}
.y1a3{bottom:148.559100px;}
.y70{bottom:149.157000px;}
.y175{bottom:149.632950px;}
.y14d{bottom:150.736350px;}
.ye5{bottom:150.736500px;}
.yca{bottom:150.736650px;}
.y151{bottom:150.736800px;}
.y132{bottom:154.282950px;}
.y12a{bottom:157.525050px;}
.y13b{bottom:158.845350px;}
.ye1{bottom:161.740350px;}
.yb7{bottom:161.740500px;}
.y101{bottom:161.740650px;}
.yc0{bottom:161.740800px;}
.y10d{bottom:161.740950px;}
.y1a2{bottom:165.059100px;}
.ydd{bottom:165.736500px;}
.y136{bottom:165.736650px;}
.y174{bottom:166.132950px;}
.y48{bottom:167.772600px;}
.y13a{bottom:168.048750px;}
.y92{bottom:168.644850px;}
.y6f{bottom:169.962750px;}
.y131{bottom:174.532950px;}
.ye0{bottom:176.740350px;}
.yb6{bottom:176.740500px;}
.ydc{bottom:176.740650px;}
.ybf{bottom:176.740800px;}
.y150{bottom:176.740950px;}
.y129{bottom:177.775050px;}
.y15a{bottom:180.736650px;}
.yc9{bottom:180.736800px;}
.y10c{bottom:180.736950px;}
.y1a1{bottom:181.559100px;}
.y173{bottom:182.632950px;}
.y47{bottom:188.030700px;}
.y139{bottom:188.298750px;}
.y91{bottom:189.121050px;}
.y22{bottom:190.002300px;}
.y6e{bottom:190.768350px;}
.ydf{bottom:191.740350px;}
.ydb{bottom:191.740650px;}
.ybe{bottom:191.740800px;}
.yc8{bottom:191.740950px;}
.y122{bottom:194.782950px;}
.yb5{bottom:195.736500px;}
.y100{bottom:195.736650px;}
.ybd{bottom:195.736800px;}
.y14f{bottom:195.736950px;}
.y130{bottom:196.132950px;}
.y128{bottom:198.025050px;}
.y1a0{bottom:198.059100px;}
.y172{bottom:199.132950px;}
.y159{bottom:206.740350px;}
.yda{bottom:206.740650px;}
.yc7{bottom:206.740950px;}
.y46{bottom:208.288950px;}
.ye4{bottom:208.548750px;}
.y90{bottom:209.597250px;}
.y14c{bottom:209.639550px;}
.yde{bottom:210.736350px;}
.y10b{bottom:210.736950px;}
.y6d{bottom:211.573950px;}
.y19f{bottom:214.559100px;}
.y121{bottom:215.032950px;}
.y171{bottom:215.632950px;}
.y12f{bottom:216.382950px;}
.y127{bottom:218.275050px;}
.y158{bottom:221.740350px;}
.yd9{bottom:221.740650px;}
.y14b{bottom:224.039550px;}
.yc6{bottom:225.736950px;}
.y45{bottom:228.547050px;}
.yb4{bottom:228.798750px;}
.y19e{bottom:231.059100px;}
.y170{bottom:232.132950px;}
.y6c{bottom:232.379550px;}
.y120{bottom:235.282950px;}
.y21{bottom:235.764150px;}
.y12e{bottom:236.632950px;}
.y157{bottom:236.740350px;}
.yd8{bottom:236.740650px;}
.y126{bottom:238.525050px;}
.y8f{bottom:238.577400px;}
.y140{bottom:246.945600px;}
.y19d{bottom:247.559100px;}
.y16f{bottom:248.632950px;}
.y44{bottom:248.805150px;}
.yb3{bottom:249.048750px;}
.yd7{bottom:251.740650px;}
.yff{bottom:252.290850px;}
.y6b{bottom:253.185300px;}
.y11f{bottom:255.532950px;}
.y156{bottom:255.736350px;}
.yd6{bottom:255.736650px;}
.y20{bottom:256.014150px;}
.y10a{bottom:256.882950px;}
.y125{bottom:258.775050px;}
.y14a{bottom:261.129600px;}
.y13f{bottom:261.345600px;}
.y19c{bottom:264.059100px;}
.y16e{bottom:265.132950px;}
.yd5{bottom:266.740800px;}
.y43{bottom:269.063250px;}
.yb2{bottom:269.298750px;}
.y155{bottom:270.736500px;}
.yfe{bottom:272.540850px;}
.y6a{bottom:273.990900px;}
.y149{bottom:275.529600px;}
.y13e{bottom:275.745600px;}
.y11e{bottom:275.782950px;}
.y1f{bottom:276.264150px;}
.y109{bottom:277.132950px;}
.y124{bottom:279.025050px;}
.y19b{bottom:280.559100px;}
.y16d{bottom:281.632950px;}
.yd4{bottom:281.740800px;}
.y8e{bottom:283.215450px;}
.y154{bottom:285.736650px;}
.y42{bottom:289.321350px;}
.yb1{bottom:289.548750px;}
.yfd{bottom:292.790850px;}
.y69{bottom:294.796500px;}
.y11d{bottom:296.032950px;}
.y1e{bottom:296.514150px;}
.y19a{bottom:297.059100px;}
.y108{bottom:297.382950px;}
.y16c{bottom:298.132950px;}
.y135{bottom:299.275050px;}
.yd3{bottom:300.736800px;}
.y8d{bottom:303.691650px;}
.y41{bottom:309.579450px;}
.yb0{bottom:309.798750px;}
.yd2{bottom:311.740950px;}
.yfc{bottom:313.040850px;}
.y199{bottom:313.559100px;}
.y16b{bottom:314.632950px;}
.y68{bottom:315.602100px;}
.y11c{bottom:316.282950px;}
.y1d{bottom:316.764150px;}
.y107{bottom:317.632950px;}
.y134{bottom:319.525050px;}
.y8c{bottom:324.167700px;}
.y153{bottom:326.740950px;}
.y40{bottom:329.837550px;}
.yaf{bottom:330.048750px;}
.y198{bottom:330.059100px;}
.yd1{bottom:330.736950px;}
.y16a{bottom:331.132950px;}
.yfb{bottom:333.290850px;}
.y67{bottom:336.407850px;}
.y11b{bottom:336.532950px;}
.y1c{bottom:337.014150px;}
.y106{bottom:337.882950px;}
.y133{bottom:339.775050px;}
.y8b{bottom:344.644050px;}
.y197{bottom:346.559100px;}
.y169{bottom:347.632950px;}
.y3f{bottom:350.095650px;}
.yae{bottom:350.298750px;}
.yfa{bottom:353.540850px;}
.y138{bottom:355.293750px;}
.y11a{bottom:356.782950px;}
.y66{bottom:357.213450px;}
.y1b{bottom:357.264150px;}
.y105{bottom:358.132950px;}
.y196{bottom:363.059100px;}
.y168{bottom:364.132950px;}
.y8a{bottom:365.120250px;}
.y3e{bottom:370.353900px;}
.yad{bottom:370.548750px;}
.yf9{bottom:373.790850px;}
.y119{bottom:377.032950px;}
.y1a{bottom:377.514150px;}
.y65{bottom:378.019050px;}
.y104{bottom:378.382950px;}
.y195{bottom:379.559100px;}
.y167{bottom:380.632950px;}
.y89{bottom:385.596300px;}
.y3d{bottom:390.612000px;}
.yac{bottom:390.798750px;}
.yf8{bottom:394.040850px;}
.y194{bottom:396.059100px;}
.y166{bottom:397.132950px;}
.y118{bottom:397.282950px;}
.y19{bottom:397.764150px;}
.y103{bottom:398.632950px;}
.y64{bottom:398.824650px;}
.y88{bottom:406.072500px;}
.y3c{bottom:410.870100px;}
.yab{bottom:411.048750px;}
.y193{bottom:412.559100px;}
.y165{bottom:413.632950px;}
.yf7{bottom:414.290850px;}
.y14e{bottom:416.043750px;}
.y117{bottom:417.532950px;}
.y18{bottom:418.014150px;}
.y12d{bottom:418.882950px;}
.y63{bottom:419.630400px;}
.y87{bottom:426.548700px;}
.y102{bottom:427.386900px;}
.y192{bottom:429.059100px;}
.y164{bottom:430.132950px;}
.y3b{bottom:431.128200px;}
.yaa{bottom:431.298750px;}
.yf6{bottom:434.540850px;}
.y116{bottom:437.782950px;}
.y17{bottom:438.264150px;}
.y12c{bottom:439.132950px;}
.y62{bottom:440.436000px;}
.y191{bottom:445.559100px;}
.y163{bottom:446.632950px;}
.y86{bottom:447.024900px;}
.y3a{bottom:451.386300px;}
.ya9{bottom:451.548750px;}
.yf5{bottom:454.790850px;}
.y115{bottom:458.032950px;}
.y16{bottom:458.514150px;}
.y148{bottom:459.382950px;}
.y61{bottom:461.241600px;}
.y190{bottom:462.059100px;}
.y162{bottom:463.132950px;}
.y85{bottom:467.501100px;}
.y12b{bottom:467.886900px;}
.y39{bottom:471.644400px;}
.ya8{bottom:471.798750px;}
.yf4{bottom:475.040850px;}
.y114{bottom:478.282950px;}
.y18f{bottom:478.559100px;}
.y15{bottom:478.764150px;}
.y147{bottom:479.632950px;}
.y60{bottom:482.047200px;}
.y84{bottom:487.977300px;}
.y161{bottom:488.136900px;}
.y38{bottom:491.902500px;}
.ya7{bottom:492.048750px;}
.y18e{bottom:495.059100px;}
.yf3{bottom:495.290850px;}
.y113{bottom:498.532950px;}
.y14{bottom:499.014150px;}
.y146{bottom:499.882950px;}
.y5f{bottom:502.852950px;}
.y83{bottom:508.453500px;}
.y18d{bottom:511.559100px;}
.y37{bottom:512.160600px;}
.ya6{bottom:512.298750px;}
.yf2{bottom:515.540850px;}
.y112{bottom:518.782950px;}
.y13{bottom:519.264150px;}
.y145{bottom:520.132950px;}
.y5e{bottom:523.658550px;}
.y18c{bottom:528.059100px;}
.y82{bottom:528.929700px;}
.y36{bottom:532.418850px;}
.ya5{bottom:532.548750px;}
.yf1{bottom:535.790850px;}
.y111{bottom:539.032950px;}
.y12{bottom:539.514150px;}
.y144{bottom:540.382950px;}
.y5d{bottom:544.464150px;}
.y18b{bottom:544.559100px;}
.y81{bottom:549.405900px;}
.y35{bottom:552.676950px;}
.ya4{bottom:552.798750px;}
.yf0{bottom:556.040850px;}
.y11{bottom:559.764150px;}
.y143{bottom:560.632950px;}
.y18a{bottom:561.059100px;}
.y5c{bottom:565.269750px;}
.y80{bottom:569.882100px;}
.y34{bottom:572.935050px;}
.ya3{bottom:573.048750px;}
.yef{bottom:576.290850px;}
.y189{bottom:577.559100px;}
.y10{bottom:580.014150px;}
.y142{bottom:580.882950px;}
.y5b{bottom:586.075350px;}
.y7f{bottom:590.358150px;}
.y33{bottom:593.193150px;}
.ya2{bottom:593.298750px;}
.y188{bottom:594.059100px;}
.yee{bottom:596.540850px;}
.yf{bottom:600.264150px;}
.y160{bottom:601.132950px;}
.y5a{bottom:606.881100px;}
.y141{bottom:609.636900px;}
.y187{bottom:610.559100px;}
.y7e{bottom:610.834500px;}
.y32{bottom:613.451250px;}
.ya1{bottom:613.548750px;}
.yed{bottom:616.790850px;}
.ye{bottom:620.514150px;}
.y15f{bottom:621.382950px;}
.y186{bottom:627.059100px;}
.y59{bottom:627.686700px;}
.y7d{bottom:631.310550px;}
.y31{bottom:633.709350px;}
.ya0{bottom:633.798750px;}
.yec{bottom:637.040850px;}
.yd0{bottom:638.793750px;}
.yd{bottom:640.764150px;}
.y15e{bottom:641.632950px;}
.y185{bottom:643.559100px;}
.y58{bottom:648.492300px;}
.y7c{bottom:651.786750px;}
.y30{bottom:653.967450px;}
.y9f{bottom:654.048750px;}
.yeb{bottom:657.290850px;}
.y184{bottom:660.059100px;}
.yc{bottom:661.014150px;}
.y15d{bottom:661.882950px;}
.y57{bottom:669.298050px;}
.y7b{bottom:672.263100px;}
.y2f{bottom:674.225700px;}
.y9e{bottom:674.298750px;}
.y183{bottom:676.559100px;}
.yea{bottom:677.540850px;}
.yb{bottom:681.264150px;}
.y15c{bottom:682.132950px;}
.y56{bottom:690.103650px;}
.y7a{bottom:692.739150px;}
.y182{bottom:693.059100px;}
.y2e{bottom:694.483800px;}
.y9d{bottom:694.548750px;}
.ye9{bottom:697.790850px;}
.y181{bottom:709.559100px;}
.y15b{bottom:710.886900px;}
.y55{bottom:710.909250px;}
.y79{bottom:713.215350px;}
.y2d{bottom:714.741900px;}
.y9c{bottom:714.798750px;}
.y110{bottom:718.040850px;}
.y180{bottom:726.059100px;}
.y54{bottom:731.714850px;}
.y78{bottom:733.691550px;}
.y2c{bottom:735.000000px;}
.y9b{bottom:735.048750px;}
.y10f{bottom:738.290850px;}
.y17f{bottom:742.559100px;}
.y53{bottom:752.520600px;}
.y77{bottom:754.167750px;}
.y2b{bottom:755.258100px;}
.y9a{bottom:755.298750px;}
.y17e{bottom:759.059100px;}
.y52{bottom:773.326200px;}
.ya{bottom:773.797650px;}
.y76{bottom:774.643950px;}
.y2a{bottom:775.516200px;}
.y99{bottom:775.548750px;}
.y17d{bottom:775.559100px;}
.y17c{bottom:792.059100px;}
.y51{bottom:794.131800px;}
.y75{bottom:795.120150px;}
.y29{bottom:795.774300px;}
.y98{bottom:795.798750px;}
.y9{bottom:807.553500px;}
.y17b{bottom:808.559100px;}
.y50{bottom:814.937400px;}
.y74{bottom:815.596350px;}
.y28{bottom:816.032550px;}
.y97{bottom:816.048750px;}
.y17a{bottom:825.059100px;}
.y4f{bottom:835.743000px;}
.y73{bottom:836.072550px;}
.y27{bottom:836.290500px;}
.y96{bottom:836.298750px;}
.y152{bottom:841.293750px;}
.y179{bottom:841.559100px;}
.y26{bottom:856.548750px;}
.y178{bottom:858.059100px;}
.y8{bottom:880.653450px;}
.y7{bottom:880.653600px;}
.y6{bottom:893.253600px;}
.y24{bottom:898.288950px;}
.y4d{bottom:898.290300px;}
.y23{bottom:898.309800px;}
.y4c{bottom:898.311150px;}
.hc{height:21.743568px;}
.he{height:24.730860px;}
.h3{height:29.694000px;}
.h4{height:32.634000px;}
.h2{height:33.936000px;}
.hf{height:34.032000px;}
.hd{height:34.465882px;}
.h8{height:37.296000px;}
.h12{height:38.178000px;}
.h14{height:38.286000px;}
.h11{height:38.774118px;}
.h13{height:41.958000px;}
.h5{height:42.420000px;}
.h10{height:42.540000px;}
.hb{height:43.082353px;}
.ha{height:44.710860px;}
.h7{height:46.620000px;}
.h9{height:48.951000px;}
.h6{height:55.944000px;}
.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;}
.x7{left:180.316950px;}
.x8{left:184.001550px;}
.x5{left:191.338500px;}
.xd{left:207.689250px;}
.xe{left:216.226050px;}
.xb{left:229.339350px;}
.xc{left:237.875250px;}
.x11{left:330.848400px;}
.x12{left:339.240000px;}
.x3{left:350.493600px;}
.xf{left:366.312750px;}
.x10{left:374.596350px;}
.x2{left:441.664650px;}
.x9{left:565.616850px;}
.x6{left:569.891550px;}
.xa{left:574.015800px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls4c{letter-spacing:-1.920000pt;}
.ls28{letter-spacing:-1.578667pt;}
.ls24{letter-spacing:-1.333333pt;}
.ls3b{letter-spacing:-1.066667pt;}
.ls21{letter-spacing:-0.853333pt;}
.ls4b{letter-spacing:-0.768000pt;}
.ls38{letter-spacing:-0.682667pt;}
.ls4a{letter-spacing:-0.576000pt;}
.ls37{letter-spacing:-0.512000pt;}
.ls33{letter-spacing:-0.480000pt;}
.ls32{letter-spacing:-0.426667pt;}
.ls27{letter-spacing:-0.373333pt;}
.ls31{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.298496pt;}
.ls34{letter-spacing:-0.279840pt;}
.ls2b{letter-spacing:-0.266667pt;}
.ls39{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.186667pt;}
.ls1f{letter-spacing:-0.170667pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls44{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.112000pt;}
.ls8{letter-spacing:-0.106667pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls3d{letter-spacing:-0.093280pt;}
.ls26{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.074624pt;}
.ls9{letter-spacing:-0.053333pt;}
.ls25{letter-spacing:-0.049749pt;}
.ls43{letter-spacing:-0.048000pt;}
.ls14{letter-spacing:-0.042667pt;}
.ls2e{letter-spacing:-0.031093pt;}
.ls17{letter-spacing:-0.024875pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.012437pt;}
.ls1e{letter-spacing:0.021333pt;}
.ls3a{letter-spacing:0.024875pt;}
.ls30{letter-spacing:0.026667pt;}
.ls22{letter-spacing:0.031093pt;}
.ls12{letter-spacing:0.042667pt;}
.ls46{letter-spacing:0.048000pt;}
.ls2d{letter-spacing:0.049749pt;}
.ls3{letter-spacing:0.053333pt;}
.ls1b{letter-spacing:0.062187pt;}
.ls20{letter-spacing:0.074624pt;}
.lsf{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.085333pt;}
.ls1c{letter-spacing:0.093280pt;}
.ls48{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.099499pt;}
.ls1{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.124373pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.133333pt;}
.ls49{letter-spacing:0.144000pt;}
.ls3e{letter-spacing:0.149248pt;}
.ls3f{letter-spacing:0.155467pt;}
.ls4{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.186667pt;}
.ls41{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls47{letter-spacing:0.216000pt;}
.lsc{letter-spacing:0.240000pt;}
.ls3c{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.293333pt;}
.lsd{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.336000pt;}
.ls2c{letter-spacing:0.373333pt;}
.ls2a{letter-spacing:0.412800pt;}
.ls45{letter-spacing:0.528000pt;}
.lsb{letter-spacing:0.533333pt;}
.ls40{letter-spacing:0.963733pt;}
.ls2f{letter-spacing:0.999467pt;}
.ls35{letter-spacing:1.206197pt;}
.ws94{word-spacing:-10.986667pt;}
.ws40{word-spacing:-10.880000pt;}
.ws47{word-spacing:-10.666667pt;}
.ws63{word-spacing:-10.560000pt;}
.wsad{word-spacing:-9.792000pt;}
.wsb5{word-spacing:-9.696000pt;}
.wsc8{word-spacing:-9.648000pt;}
.wsac{word-spacing:-9.600000pt;}
.wsae{word-spacing:-9.552000pt;}
.ws74{word-spacing:-9.333333pt;}
.ws48{word-spacing:-8.618667pt;}
.ws35{word-spacing:-8.533333pt;}
.ws36{word-spacing:-8.490667pt;}
.ws6e{word-spacing:-7.680000pt;}
.wsa0{word-spacing:-7.466667pt;}
.ws7f{word-spacing:-6.954667pt;}
.wsa9{word-spacing:-6.374133pt;}
.ws55{word-spacing:-6.311947pt;}
.ws54{word-spacing:-6.280853pt;}
.ws73{word-spacing:-6.249760pt;}
.ws33{word-spacing:-6.218667pt;}
.ws85{word-spacing:-6.187573pt;}
.ws56{word-spacing:-5.074432pt;}
.ws7c{word-spacing:-5.049557pt;}
.ws86{word-spacing:-5.024683pt;}
.ws5c{word-spacing:-4.987371pt;}
.ws34{word-spacing:-4.974933pt;}
.ws49{word-spacing:-4.950059pt;}
.ws95{word-spacing:-4.925184pt;}
.ws96{word-spacing:-4.900309pt;}
.ws89{word-spacing:-2.133333pt;}
.ws4d{word-spacing:-1.706667pt;}
.ws2b{word-spacing:-1.653333pt;}
.ws6{word-spacing:-1.600000pt;}
.ws1d{word-spacing:-1.546667pt;}
.ws9d{word-spacing:-1.493333pt;}
.wsb8{word-spacing:-1.488000pt;}
.ws75{word-spacing:-1.440000pt;}
.wsc2{word-spacing:-1.392000pt;}
.ws78{word-spacing:-1.386667pt;}
.ws1{word-spacing:-1.344000pt;}
.ws41{word-spacing:-1.333333pt;}
.ws9b{word-spacing:-1.322667pt;}
.wsd{word-spacing:-1.280000pt;}
.ws72{word-spacing:-1.237333pt;}
.ws59{word-spacing:-1.226667pt;}
.wsc5{word-spacing:-1.200000pt;}
.ws31{word-spacing:-1.173333pt;}
.ws2{word-spacing:-1.157333pt;}
.wsa7{word-spacing:-1.152000pt;}
.ws13{word-spacing:-1.120000pt;}
.ws9f{word-spacing:-1.109333pt;}
.ws2a{word-spacing:-1.066667pt;}
.ws42{word-spacing:-1.013333pt;}
.ws6a{word-spacing:-0.981333pt;}
.ws22{word-spacing:-0.960000pt;}
.ws53{word-spacing:-0.938667pt;}
.ws9c{word-spacing:-0.906667pt;}
.ws6c{word-spacing:-0.853333pt;}
.ws66{word-spacing:-0.810667pt;}
.ws2c{word-spacing:-0.800000pt;}
.ws3b{word-spacing:-0.768000pt;}
.ws79{word-spacing:-0.746667pt;}
.wsc4{word-spacing:-0.720000pt;}
.ws57{word-spacing:-0.693333pt;}
.ws8e{word-spacing:-0.682667pt;}
.wsd1{word-spacing:-0.672000pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws1c{word-spacing:-0.586667pt;}
.wsaf{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.533333pt;}
.wsa2{word-spacing:-0.512000pt;}
.ws50{word-spacing:-0.480000pt;}
.ws7a{word-spacing:-0.469333pt;}
.wsba{word-spacing:-0.432000pt;}
.ws92{word-spacing:-0.426667pt;}
.ws9a{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.373333pt;}
.ws3c{word-spacing:-0.341333pt;}
.ws12{word-spacing:-0.320000pt;}
.wsbc{word-spacing:-0.288000pt;}
.ws5d{word-spacing:-0.266667pt;}
.ws68{word-spacing:-0.256000pt;}
.wscb{word-spacing:-0.240000pt;}
.ws23{word-spacing:-0.213333pt;}
.wsb7{word-spacing:-0.192000pt;}
.ws3e{word-spacing:-0.170667pt;}
.wsa{word-spacing:-0.160000pt;}
.wsa5{word-spacing:-0.149248pt;}
.wsb2{word-spacing:-0.144000pt;}
.ws61{word-spacing:-0.128000pt;}
.ws76{word-spacing:-0.124373pt;}
.ws26{word-spacing:-0.106667pt;}
.ws5b{word-spacing:-0.099499pt;}
.wsc7{word-spacing:-0.096000pt;}
.ws5e{word-spacing:-0.085333pt;}
.ws6d{word-spacing:-0.074624pt;}
.ws8{word-spacing:-0.053333pt;}
.wsbb{word-spacing:-0.048000pt;}
.ws5f{word-spacing:-0.042667pt;}
.wsa1{word-spacing:-0.031093pt;}
.ws9e{word-spacing:-0.024875pt;}
.ws0{word-spacing:0.000000pt;}
.ws60{word-spacing:0.024875pt;}
.ws3d{word-spacing:0.042667pt;}
.wsb4{word-spacing:0.048000pt;}
.ws7b{word-spacing:0.049749pt;}
.wse{word-spacing:0.053333pt;}
.ws44{word-spacing:0.074624pt;}
.ws62{word-spacing:0.085333pt;}
.wsa3{word-spacing:0.093280pt;}
.wsb0{word-spacing:0.096000pt;}
.ws11{word-spacing:0.106667pt;}
.ws45{word-spacing:0.128000pt;}
.wsb9{word-spacing:0.144000pt;}
.ws10{word-spacing:0.160000pt;}
.ws65{word-spacing:0.170667pt;}
.wsbd{word-spacing:0.192000pt;}
.wsc{word-spacing:0.213333pt;}
.ws81{word-spacing:0.256000pt;}
.ws29{word-spacing:0.266667pt;}
.ws93{word-spacing:0.279840pt;}
.wscd{word-spacing:0.288000pt;}
.ws98{word-spacing:0.298496pt;}
.ws52{word-spacing:0.298667pt;}
.ws2e{word-spacing:0.320000pt;}
.ws3a{word-spacing:0.373333pt;}
.ws46{word-spacing:0.384000pt;}
.ws84{word-spacing:0.426667pt;}
.ws4a{word-spacing:0.480000pt;}
.ws99{word-spacing:0.512000pt;}
.wscf{word-spacing:0.528000pt;}
.ws32{word-spacing:0.533333pt;}
.wsbe{word-spacing:0.576000pt;}
.ws16{word-spacing:0.586667pt;}
.ws19{word-spacing:0.640000pt;}
.ws14{word-spacing:0.693333pt;}
.ws27{word-spacing:0.746667pt;}
.ws4e{word-spacing:0.800000pt;}
.ws67{word-spacing:0.810667pt;}
.wsf{word-spacing:0.853333pt;}
.ws64{word-spacing:0.906667pt;}
.wsa8{word-spacing:0.938667pt;}
.ws4c{word-spacing:0.960000pt;}
.wsab{word-spacing:0.981333pt;}
.wsb1{word-spacing:1.008000pt;}
.ws43{word-spacing:1.013333pt;}
.wsc0{word-spacing:1.056000pt;}
.ws83{word-spacing:1.066667pt;}
.ws69{word-spacing:1.109333pt;}
.ws37{word-spacing:1.120000pt;}
.wsd0{word-spacing:1.152000pt;}
.ws21{word-spacing:1.173333pt;}
.ws71{word-spacing:1.226667pt;}
.ws70{word-spacing:1.280000pt;}
.wsb{word-spacing:1.333333pt;}
.ws2f{word-spacing:1.386667pt;}
.ws58{word-spacing:1.440000pt;}
.wsc9{word-spacing:1.488000pt;}
.ws8d{word-spacing:1.493333pt;}
.ws80{word-spacing:1.546667pt;}
.wsa4{word-spacing:1.600000pt;}
.wsc6{word-spacing:1.632000pt;}
.ws5{word-spacing:1.653333pt;}
.ws51{word-spacing:1.664000pt;}
.wsbf{word-spacing:1.680000pt;}
.ws3f{word-spacing:1.706667pt;}
.ws3{word-spacing:1.754667pt;}
.ws4f{word-spacing:1.760000pt;}
.ws28{word-spacing:1.813333pt;}
.ws38{word-spacing:1.866667pt;}
.wsc3{word-spacing:1.872000pt;}
.ws18{word-spacing:1.920000pt;}
.wsb3{word-spacing:1.968000pt;}
.ws6b{word-spacing:1.973333pt;}
.ws9{word-spacing:2.026667pt;}
.ws5a{word-spacing:2.048000pt;}
.wscc{word-spacing:2.064000pt;}
.ws15{word-spacing:2.080000pt;}
.wsc1{word-spacing:2.112000pt;}
.ws4{word-spacing:2.133333pt;}
.ws7e{word-spacing:2.176000pt;}
.ws7{word-spacing:2.186667pt;}
.ws4b{word-spacing:2.240000pt;}
.ws97{word-spacing:2.346667pt;}
.wsce{word-spacing:2.352000pt;}
.ws1b{word-spacing:2.400000pt;}
.ws25{word-spacing:2.453333pt;}
.wsa6{word-spacing:2.474667pt;}
.ws20{word-spacing:2.506667pt;}
.wsaa{word-spacing:2.666667pt;}
.ws77{word-spacing:2.720000pt;}
.ws7d{word-spacing:2.773333pt;}
.ws39{word-spacing:2.826667pt;}
.ws17{word-spacing:2.880000pt;}
.ws30{word-spacing:3.040000pt;}
.ws1e{word-spacing:3.093333pt;}
.ws1f{word-spacing:3.146667pt;}
.ws8b{word-spacing:3.200000pt;}
.ws6f{word-spacing:3.360000pt;}
.ws82{word-spacing:3.413333pt;}
.wsca{word-spacing:3.552000pt;}
.ws8a{word-spacing:4.426667pt;}
.ws88{word-spacing:4.800000pt;}
.ws87{word-spacing:5.173333pt;}
.wsb6{word-spacing:5.328000pt;}
.ws8f{word-spacing:5.653333pt;}
.ws8c{word-spacing:6.186667pt;}
.ws91{word-spacing:7.840000pt;}
.ws90{word-spacing:7.893333pt;}
._4{margin-left:-8.320000pt;}
._7{margin-left:-6.606933pt;}
._1{margin-left:-5.341867pt;}
._2{margin-left:-3.601067pt;}
._3{margin-left:-2.136533pt;}
._0{margin-left:-1.066667pt;}
._6{width:0.939733pt;}
._5{width:2.112000pt;}
._8{width:3.096533pt;}
._a{width:4.094933pt;}
._9{width:5.893333pt;}
._b{width:6.810667pt;}
._c{width:8.170667pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:44.646133pt;}
.y25{bottom:48.446667pt;}
.y5{bottom:77.102400pt;}
.ybc{bottom:77.102533pt;}
.yc5{bottom:80.654533pt;}
.y1a6{bottom:88.052533pt;}
.y4{bottom:88.435733pt;}
.ybb{bottom:90.435867pt;}
.ycd{bottom:90.436000pt;}
.ye8{bottom:93.987867pt;}
.yc4{bottom:93.988000pt;}
.y4b{bottom:95.109600pt;}
.y95{bottom:95.303467pt;}
.y72{bottom:95.596267pt;}
.y3{bottom:99.769067pt;}
.y1a5{bottom:102.719200pt;}
.y177{bottom:103.673733pt;}
.yba{bottom:103.769200pt;}
.ye7{bottom:103.769333pt;}
.y123{bottom:103.769467pt;}
.ycf{bottom:107.321200pt;}
.ycc{bottom:107.321333pt;}
.yc3{bottom:107.321467pt;}
.y2{bottom:111.102400pt;}
.y4a{bottom:113.116800pt;}
.y94{bottom:113.504533pt;}
.y71{bottom:114.090133pt;}
.y13d{bottom:115.595867pt;}
.ye3{bottom:117.102533pt;}
.ye6{bottom:117.102667pt;}
.ycb{bottom:117.102800pt;}
.yc2{bottom:117.102933pt;}
.y1a4{bottom:117.385867pt;}
.y176{bottom:118.340400pt;}
.yb9{bottom:120.654533pt;}
.yce{bottom:120.654667pt;}
.y10e{bottom:120.654800pt;}
.y1{bottom:126.215200pt;}
.y13c{bottom:128.395867pt;}
.ye2{bottom:130.435867pt;}
.yb8{bottom:130.436000pt;}
.y137{bottom:130.436133pt;}
.yc1{bottom:130.436267pt;}
.y49{bottom:131.124000pt;}
.y93{bottom:131.705467pt;}
.y1a3{bottom:132.052533pt;}
.y70{bottom:132.584000pt;}
.y175{bottom:133.007067pt;}
.y14d{bottom:133.987867pt;}
.ye5{bottom:133.988000pt;}
.yca{bottom:133.988133pt;}
.y151{bottom:133.988267pt;}
.y132{bottom:137.140400pt;}
.y12a{bottom:140.022267pt;}
.y13b{bottom:141.195867pt;}
.ye1{bottom:143.769200pt;}
.yb7{bottom:143.769333pt;}
.y101{bottom:143.769467pt;}
.yc0{bottom:143.769600pt;}
.y10d{bottom:143.769733pt;}
.y1a2{bottom:146.719200pt;}
.ydd{bottom:147.321333pt;}
.y136{bottom:147.321467pt;}
.y174{bottom:147.673733pt;}
.y48{bottom:149.131200pt;}
.y13a{bottom:149.376667pt;}
.y92{bottom:149.906533pt;}
.y6f{bottom:151.078000pt;}
.y131{bottom:155.140400pt;}
.ye0{bottom:157.102533pt;}
.yb6{bottom:157.102667pt;}
.ydc{bottom:157.102800pt;}
.ybf{bottom:157.102933pt;}
.y150{bottom:157.103067pt;}
.y129{bottom:158.022267pt;}
.y15a{bottom:160.654800pt;}
.yc9{bottom:160.654933pt;}
.y10c{bottom:160.655067pt;}
.y1a1{bottom:161.385867pt;}
.y173{bottom:162.340400pt;}
.y47{bottom:167.138400pt;}
.y139{bottom:167.376667pt;}
.y91{bottom:168.107600pt;}
.y22{bottom:168.890933pt;}
.y6e{bottom:169.571867pt;}
.ydf{bottom:170.435867pt;}
.ydb{bottom:170.436133pt;}
.ybe{bottom:170.436267pt;}
.yc8{bottom:170.436400pt;}
.y122{bottom:173.140400pt;}
.yb5{bottom:173.988000pt;}
.y100{bottom:173.988133pt;}
.ybd{bottom:173.988267pt;}
.y14f{bottom:173.988400pt;}
.y130{bottom:174.340400pt;}
.y128{bottom:176.022267pt;}
.y1a0{bottom:176.052533pt;}
.y172{bottom:177.007067pt;}
.y159{bottom:183.769200pt;}
.yda{bottom:183.769467pt;}
.yc7{bottom:183.769733pt;}
.y46{bottom:185.145733pt;}
.ye4{bottom:185.376667pt;}
.y90{bottom:186.308667pt;}
.y14c{bottom:186.346267pt;}
.yde{bottom:187.321200pt;}
.y10b{bottom:187.321733pt;}
.y6d{bottom:188.065733pt;}
.y19f{bottom:190.719200pt;}
.y121{bottom:191.140400pt;}
.y171{bottom:191.673733pt;}
.y12f{bottom:192.340400pt;}
.y127{bottom:194.022267pt;}
.y158{bottom:197.102533pt;}
.yd9{bottom:197.102800pt;}
.y14b{bottom:199.146267pt;}
.yc6{bottom:200.655067pt;}
.y45{bottom:203.152933pt;}
.yb4{bottom:203.376667pt;}
.y19e{bottom:205.385867pt;}
.y170{bottom:206.340400pt;}
.y6c{bottom:206.559600pt;}
.y120{bottom:209.140400pt;}
.y21{bottom:209.568133pt;}
.y12e{bottom:210.340400pt;}
.y157{bottom:210.435867pt;}
.yd8{bottom:210.436133pt;}
.y126{bottom:212.022267pt;}
.y8f{bottom:212.068800pt;}
.y140{bottom:219.507200pt;}
.y19d{bottom:220.052533pt;}
.y16f{bottom:221.007067pt;}
.y44{bottom:221.160133pt;}
.yb3{bottom:221.376667pt;}
.yd7{bottom:223.769467pt;}
.yff{bottom:224.258533pt;}
.y6b{bottom:225.053600pt;}
.y11f{bottom:227.140400pt;}
.y156{bottom:227.321200pt;}
.yd6{bottom:227.321467pt;}
.y20{bottom:227.568133pt;}
.y10a{bottom:228.340400pt;}
.y125{bottom:230.022267pt;}
.y14a{bottom:232.115200pt;}
.y13f{bottom:232.307200pt;}
.y19c{bottom:234.719200pt;}
.y16e{bottom:235.673733pt;}
.yd5{bottom:237.102933pt;}
.y43{bottom:239.167333pt;}
.yb2{bottom:239.376667pt;}
.y155{bottom:240.654667pt;}
.yfe{bottom:242.258533pt;}
.y6a{bottom:243.547467pt;}
.y149{bottom:244.915200pt;}
.y13e{bottom:245.107200pt;}
.y11e{bottom:245.140400pt;}
.y1f{bottom:245.568133pt;}
.y109{bottom:246.340400pt;}
.y124{bottom:248.022267pt;}
.y19b{bottom:249.385867pt;}
.y16d{bottom:250.340400pt;}
.yd4{bottom:250.436267pt;}
.y8e{bottom:251.747067pt;}
.y154{bottom:253.988133pt;}
.y42{bottom:257.174533pt;}
.yb1{bottom:257.376667pt;}
.yfd{bottom:260.258533pt;}
.y69{bottom:262.041333pt;}
.y11d{bottom:263.140400pt;}
.y1e{bottom:263.568133pt;}
.y19a{bottom:264.052533pt;}
.y108{bottom:264.340400pt;}
.y16c{bottom:265.007067pt;}
.y135{bottom:266.022267pt;}
.yd3{bottom:267.321600pt;}
.y8d{bottom:269.948133pt;}
.y41{bottom:275.181733pt;}
.yb0{bottom:275.376667pt;}
.yd2{bottom:277.103067pt;}
.yfc{bottom:278.258533pt;}
.y199{bottom:278.719200pt;}
.y16b{bottom:279.673733pt;}
.y68{bottom:280.535200pt;}
.y11c{bottom:281.140400pt;}
.y1d{bottom:281.568133pt;}
.y107{bottom:282.340400pt;}
.y134{bottom:284.022267pt;}
.y8c{bottom:288.149067pt;}
.y153{bottom:290.436400pt;}
.y40{bottom:293.188933pt;}
.yaf{bottom:293.376667pt;}
.y198{bottom:293.385867pt;}
.yd1{bottom:293.988400pt;}
.y16a{bottom:294.340400pt;}
.yfb{bottom:296.258533pt;}
.y67{bottom:299.029200pt;}
.y11b{bottom:299.140400pt;}
.y1c{bottom:299.568133pt;}
.y106{bottom:300.340400pt;}
.y133{bottom:302.022267pt;}
.y8b{bottom:306.350267pt;}
.y197{bottom:308.052533pt;}
.y169{bottom:309.007067pt;}
.y3f{bottom:311.196133pt;}
.yae{bottom:311.376667pt;}
.yfa{bottom:314.258533pt;}
.y138{bottom:315.816667pt;}
.y11a{bottom:317.140400pt;}
.y66{bottom:317.523067pt;}
.y1b{bottom:317.568133pt;}
.y105{bottom:318.340400pt;}
.y196{bottom:322.719200pt;}
.y168{bottom:323.673733pt;}
.y8a{bottom:324.551333pt;}
.y3e{bottom:329.203467pt;}
.yad{bottom:329.376667pt;}
.yf9{bottom:332.258533pt;}
.y119{bottom:335.140400pt;}
.y1a{bottom:335.568133pt;}
.y65{bottom:336.016933pt;}
.y104{bottom:336.340400pt;}
.y195{bottom:337.385867pt;}
.y167{bottom:338.340400pt;}
.y89{bottom:342.752267pt;}
.y3d{bottom:347.210667pt;}
.yac{bottom:347.376667pt;}
.yf8{bottom:350.258533pt;}
.y194{bottom:352.052533pt;}
.y166{bottom:353.007067pt;}
.y118{bottom:353.140400pt;}
.y19{bottom:353.568133pt;}
.y103{bottom:354.340400pt;}
.y64{bottom:354.510800pt;}
.y88{bottom:360.953333pt;}
.y3c{bottom:365.217867pt;}
.yab{bottom:365.376667pt;}
.y193{bottom:366.719200pt;}
.y165{bottom:367.673733pt;}
.yf7{bottom:368.258533pt;}
.y14e{bottom:369.816667pt;}
.y117{bottom:371.140400pt;}
.y18{bottom:371.568133pt;}
.y12d{bottom:372.340400pt;}
.y63{bottom:373.004800pt;}
.y87{bottom:379.154400pt;}
.y102{bottom:379.899467pt;}
.y192{bottom:381.385867pt;}
.y164{bottom:382.340400pt;}
.y3b{bottom:383.225067pt;}
.yaa{bottom:383.376667pt;}
.yf6{bottom:386.258533pt;}
.y116{bottom:389.140400pt;}
.y17{bottom:389.568133pt;}
.y12c{bottom:390.340400pt;}
.y62{bottom:391.498667pt;}
.y191{bottom:396.052533pt;}
.y163{bottom:397.007067pt;}
.y86{bottom:397.355467pt;}
.y3a{bottom:401.232267pt;}
.ya9{bottom:401.376667pt;}
.yf5{bottom:404.258533pt;}
.y115{bottom:407.140400pt;}
.y16{bottom:407.568133pt;}
.y148{bottom:408.340400pt;}
.y61{bottom:409.992533pt;}
.y190{bottom:410.719200pt;}
.y162{bottom:411.673733pt;}
.y85{bottom:415.556533pt;}
.y12b{bottom:415.899467pt;}
.y39{bottom:419.239467pt;}
.ya8{bottom:419.376667pt;}
.yf4{bottom:422.258533pt;}
.y114{bottom:425.140400pt;}
.y18f{bottom:425.385867pt;}
.y15{bottom:425.568133pt;}
.y147{bottom:426.340400pt;}
.y60{bottom:428.486400pt;}
.y84{bottom:433.757600pt;}
.y161{bottom:433.899467pt;}
.y38{bottom:437.246667pt;}
.ya7{bottom:437.376667pt;}
.y18e{bottom:440.052533pt;}
.yf3{bottom:440.258533pt;}
.y113{bottom:443.140400pt;}
.y14{bottom:443.568133pt;}
.y146{bottom:444.340400pt;}
.y5f{bottom:446.980400pt;}
.y83{bottom:451.958667pt;}
.y18d{bottom:454.719200pt;}
.y37{bottom:455.253867pt;}
.ya6{bottom:455.376667pt;}
.yf2{bottom:458.258533pt;}
.y112{bottom:461.140400pt;}
.y13{bottom:461.568133pt;}
.y145{bottom:462.340400pt;}
.y5e{bottom:465.474267pt;}
.y18c{bottom:469.385867pt;}
.y82{bottom:470.159733pt;}
.y36{bottom:473.261200pt;}
.ya5{bottom:473.376667pt;}
.yf1{bottom:476.258533pt;}
.y111{bottom:479.140400pt;}
.y12{bottom:479.568133pt;}
.y144{bottom:480.340400pt;}
.y5d{bottom:483.968133pt;}
.y18b{bottom:484.052533pt;}
.y81{bottom:488.360800pt;}
.y35{bottom:491.268400pt;}
.ya4{bottom:491.376667pt;}
.yf0{bottom:494.258533pt;}
.y11{bottom:497.568133pt;}
.y143{bottom:498.340400pt;}
.y18a{bottom:498.719200pt;}
.y5c{bottom:502.462000pt;}
.y80{bottom:506.561867pt;}
.y34{bottom:509.275600pt;}
.ya3{bottom:509.376667pt;}
.yef{bottom:512.258533pt;}
.y189{bottom:513.385867pt;}
.y10{bottom:515.568133pt;}
.y142{bottom:516.340400pt;}
.y5b{bottom:520.955867pt;}
.y7f{bottom:524.762800pt;}
.y33{bottom:527.282800pt;}
.ya2{bottom:527.376667pt;}
.y188{bottom:528.052533pt;}
.yee{bottom:530.258533pt;}
.yf{bottom:533.568133pt;}
.y160{bottom:534.340400pt;}
.y5a{bottom:539.449867pt;}
.y141{bottom:541.899467pt;}
.y187{bottom:542.719200pt;}
.y7e{bottom:542.964000pt;}
.y32{bottom:545.290000pt;}
.ya1{bottom:545.376667pt;}
.yed{bottom:548.258533pt;}
.ye{bottom:551.568133pt;}
.y15f{bottom:552.340400pt;}
.y186{bottom:557.385867pt;}
.y59{bottom:557.943733pt;}
.y7d{bottom:561.164933pt;}
.y31{bottom:563.297200pt;}
.ya0{bottom:563.376667pt;}
.yec{bottom:566.258533pt;}
.yd0{bottom:567.816667pt;}
.yd{bottom:569.568133pt;}
.y15e{bottom:570.340400pt;}
.y185{bottom:572.052533pt;}
.y58{bottom:576.437600pt;}
.y7c{bottom:579.366000pt;}
.y30{bottom:581.304400pt;}
.y9f{bottom:581.376667pt;}
.yeb{bottom:584.258533pt;}
.y184{bottom:586.719200pt;}
.yc{bottom:587.568133pt;}
.y15d{bottom:588.340400pt;}
.y57{bottom:594.931600pt;}
.y7b{bottom:597.567200pt;}
.y2f{bottom:599.311733pt;}
.y9e{bottom:599.376667pt;}
.y183{bottom:601.385867pt;}
.yea{bottom:602.258533pt;}
.yb{bottom:605.568133pt;}
.y15c{bottom:606.340400pt;}
.y56{bottom:613.425467pt;}
.y7a{bottom:615.768133pt;}
.y182{bottom:616.052533pt;}
.y2e{bottom:617.318933pt;}
.y9d{bottom:617.376667pt;}
.ye9{bottom:620.258533pt;}
.y181{bottom:630.719200pt;}
.y15b{bottom:631.899467pt;}
.y55{bottom:631.919333pt;}
.y79{bottom:633.969200pt;}
.y2d{bottom:635.326133pt;}
.y9c{bottom:635.376667pt;}
.y110{bottom:638.258533pt;}
.y180{bottom:645.385867pt;}
.y54{bottom:650.413200pt;}
.y78{bottom:652.170267pt;}
.y2c{bottom:653.333333pt;}
.y9b{bottom:653.376667pt;}
.y10f{bottom:656.258533pt;}
.y17f{bottom:660.052533pt;}
.y53{bottom:668.907200pt;}
.y77{bottom:670.371333pt;}
.y2b{bottom:671.340533pt;}
.y9a{bottom:671.376667pt;}
.y17e{bottom:674.719200pt;}
.y52{bottom:687.401067pt;}
.ya{bottom:687.820133pt;}
.y76{bottom:688.572400pt;}
.y2a{bottom:689.347733pt;}
.y99{bottom:689.376667pt;}
.y17d{bottom:689.385867pt;}
.y17c{bottom:704.052533pt;}
.y51{bottom:705.894933pt;}
.y75{bottom:706.773467pt;}
.y29{bottom:707.354933pt;}
.y98{bottom:707.376667pt;}
.y9{bottom:717.825333pt;}
.y17b{bottom:718.719200pt;}
.y50{bottom:724.388800pt;}
.y74{bottom:724.974533pt;}
.y28{bottom:725.362267pt;}
.y97{bottom:725.376667pt;}
.y17a{bottom:733.385867pt;}
.y4f{bottom:742.882667pt;}
.y73{bottom:743.175600pt;}
.y27{bottom:743.369333pt;}
.y96{bottom:743.376667pt;}
.y152{bottom:747.816667pt;}
.y179{bottom:748.052533pt;}
.y26{bottom:761.376667pt;}
.y178{bottom:762.719200pt;}
.y8{bottom:782.803067pt;}
.y7{bottom:782.803200pt;}
.y6{bottom:794.003200pt;}
.y24{bottom:798.479067pt;}
.y4d{bottom:798.480267pt;}
.y23{bottom:798.497600pt;}
.y4c{bottom:798.498800pt;}
.hc{height:19.327616pt;}
.he{height:21.982987pt;}
.h3{height:26.394667pt;}
.h4{height:29.008000pt;}
.h2{height:30.165333pt;}
.hf{height:30.250667pt;}
.hd{height:30.636340pt;}
.h8{height:33.152000pt;}
.h12{height:33.936000pt;}
.h14{height:34.032000pt;}
.h11{height:34.465882pt;}
.h13{height:37.296000pt;}
.h5{height:37.706667pt;}
.h10{height:37.813333pt;}
.hb{height:38.295425pt;}
.ha{height:39.742987pt;}
.h7{height:41.440000pt;}
.h9{height:43.512000pt;}
.h6{height:49.728000pt;}
.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;}
.x7{left:160.281733pt;}
.x8{left:163.556933pt;}
.x5{left:170.078667pt;}
.xd{left:184.612667pt;}
.xe{left:192.200933pt;}
.xb{left:203.857200pt;}
.xc{left:211.444667pt;}
.x11{left:294.087467pt;}
.x12{left:301.546667pt;}
.x3{left:311.549867pt;}
.xf{left:325.611333pt;}
.x10{left:332.974533pt;}
.x2{left:392.590800pt;}
.x9{left:502.770533pt;}
.x6{left:506.570267pt;}
.xa{left:510.236267pt;}
}




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