
    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_e9b0fcb744c6c7362b434fea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.146000;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_bf9e80bdefc52f1f1d9ce102.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c07c39cb71d6c8ef03d7e2b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967000;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_0d6991c317353d1cdfdf7c9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_39ed8df52cf204463dec2e91.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.058000;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_ab332e44e55d3a9029e33bbf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fe5a406a3345dfbe50371b47.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f1d74397f253331a4f1a59c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7ce2350d81e81d5e66b72aea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740267;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7ca0427ee86a94d299f96c5a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eab5c18b199751d648e4da1d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9149e7b6c0d6001d4b0fd671.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1978145624354a56796180fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ef3583a73d1e16135036f55e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.967000;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:fff;src:url('chunks/assets/font_fb87a4eb21cfa4ce9baeed50.woff2')format("woff");}.fff{font-family:fff;line-height:1.100098;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:ff10;src:url('chunks/assets/font_a50113961316295aa893482b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.240723;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:ff11;src:url('chunks/assets/font_a37dd9ea7b4c2c8148b713bd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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:ff12;src:url('chunks/assets/font_5e5018c7e397af69e947e3d9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.868164;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:ff13;src:url('chunks/assets/font_4a44fffea04d8b0ef35a6e48.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.675781;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;}
.m27{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.me1{transform:matrix(0.236809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236809,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.240377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240377,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.241330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241330,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.241373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241373,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.241666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241666,0.000000,0.000000,0.250000,0,0);}
.m178{transform:matrix(0.242041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242041,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.242527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242527,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.242543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242543,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.242566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242566,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243155,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.243168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243168,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.243457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243457,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.243514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243514,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.243533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243533,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.243593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243593,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.243811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243811,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.243813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243813,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.243832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243832,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.243909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243909,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.243916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243916,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.244039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244039,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.244143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244143,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.244145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244145,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.244241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244241,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.244314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244314,0.000000,0.000000,0.250000,0,0);}
.m170{transform:matrix(0.244316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244316,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.244361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244361,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.244386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244386,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.244414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244414,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.244493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244493,0.000000,0.000000,0.250000,0,0);}
.m192{transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.244709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244709,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.244711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244711,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.244748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244748,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.244806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244806,0.000000,0.000000,0.250000,0,0);}
.m18f{transform:matrix(0.244817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244817,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.244852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244852,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.244868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244868,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.244941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244941,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.245041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245041,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.245102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245102,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245111,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.245118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245118,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.245123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245123,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.245134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245134,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.245148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245148,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.245189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245189,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.245316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245316,0.000000,0.000000,0.250000,0,0);}
.m19a{transform:matrix(0.245357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245357,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.245382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245382,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.245486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245486,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245502,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.245568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245568,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245573,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.245577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245577,0.000000,0.000000,0.250000,0,0);}
.m193{transform:matrix(0.245628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245628,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245631,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245659,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.245720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245720,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245758,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.245786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245786,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.245836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245836,0.000000,0.000000,0.250000,0,0);}
.m191{transform:matrix(0.245945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245945,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.245957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245957,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245989,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.246002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246002,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.246045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246045,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246159,0.000000,0.000000,0.250000,0,0);}
.m18b{transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.246236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246236,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246289,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.246393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246393,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246411,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246466,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246495,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246516,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246518,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.246577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246577,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.246623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246623,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.246702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246702,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.246704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246704,0.000000,0.000000,0.250000,0,0);}
.m177{transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.246852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246852,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246868,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246889,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247043,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247048,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.247102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247102,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247111,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247118,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247147,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247206,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m18d{transform:matrix(0.247338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247338,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247370,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247383,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.247384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247384,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247416,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247444,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247461,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247468,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.247477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247477,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247480,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.m6{transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247607,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);}
.m17a{transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247777,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);}
.mb3{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);}
.m15d{transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247911,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247920,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.247932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247932,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247934,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247964,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);}
.m194{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248157,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248181,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248220,0.000000,0.000000,0.250000,0,0);}
.m17c{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.248269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248269,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248270,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248298,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.248336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248336,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248623,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.mb8{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);}
.m92{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248811,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248819,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248948,0.000000,0.000000,0.250000,0,0);}
.mb7{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.248982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248982,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.mf8{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);}
.m169{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249152,0.000000,0.000000,0.250000,0,0);}
.m18e{transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249164,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);}
.m19b{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249273,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.mcf{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);}
.mf5{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249472,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249489,0.000000,0.000000,0.250000,0,0);}
.m196{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.m188{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);}
.m8b{transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.m199{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.maa{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);}
.m142{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,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);}
.m189{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.m183{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);}
.mf4{transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);}
.m187{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);}
.m98{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);}
.m195{transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);}
.m173{transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.ma4{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);}
.m42{transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);}
.m17e{transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251186,0.000000,0.000000,0.250000,0,0);}
.m186{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251243,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);}
.m181{transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251456,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);}
.m190{transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.251509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251509,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.251534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251534,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251539,0.000000,0.000000,0.250000,0,0);}
.m18a{transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251559,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);}
.m163{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);}
.m18c{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m182{transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251839,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252009,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252242,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m78{transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252309,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.252352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252352,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.252406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252406,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252473,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252484,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252514,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252516,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252593,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.252611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252611,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252684,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252709,0.000000,0.000000,0.250000,0,0);}
.m184{transform:matrix(0.252727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252727,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252755,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.252857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252857,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252898,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252930,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);}
.m17b{transform:matrix(0.253159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253159,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);}
.m185{transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253202,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.253214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253214,0.000000,0.000000,0.250000,0,0);}
.m197{transform:matrix(0.253217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253217,0.000000,0.000000,0.250000,0,0);}
.m180{transform:matrix(0.253227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253227,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.253293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253293,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.253295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253295,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.253339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253339,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253652,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.253791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253791,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.253811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253811,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);}
.m17f{transform:matrix(0.253868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253868,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.254031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254031,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.254066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254066,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254164,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.254316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254316,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.254347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254347,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.254486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254486,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254825,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.255002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255002,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.255302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255302,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.255418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255418,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.255623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255623,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.255816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255816,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.255827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255827,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.255875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255875,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.255989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255989,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.256111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256111,0.000000,0.000000,0.250000,0,0);}
.m198{transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256227,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.256286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256286,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.256593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256593,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.256800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256800,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.257073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257073,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.257300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257300,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.257407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257407,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.257452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257452,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-17.226000px;}
.v5{vertical-align:-9.570000px;}
.v4{vertical-align:-8.503800px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.570000px;}
.v3{vertical-align:18.981000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:178.800000px;}
.ls58{letter-spacing:-6.750000px;}
.ls67{letter-spacing:-5.184000px;}
.ls9a{letter-spacing:-2.640000px;}
.ls57{letter-spacing:-2.538000px;}
.ls1c{letter-spacing:-2.484000px;}
.ls1b{letter-spacing:-2.430000px;}
.ls62{letter-spacing:-2.376000px;}
.ls5a{letter-spacing:-2.214000px;}
.ls88{letter-spacing:-2.160000px;}
.ls5c{letter-spacing:-2.052000px;}
.ls1d{letter-spacing:-1.998000px;}
.ls5d{letter-spacing:-1.944000px;}
.ls60{letter-spacing:-1.890000px;}
.ls64{letter-spacing:-1.782000px;}
.ls68{letter-spacing:-1.728000px;}
.ls5e{letter-spacing:-1.404000px;}
.ls5f{letter-spacing:-1.350000px;}
.ls3c{letter-spacing:-1.296000px;}
.ls2e{letter-spacing:-1.188000px;}
.ls8b{letter-spacing:-1.080000px;}
.ls61{letter-spacing:-1.026000px;}
.ls39{letter-spacing:-0.924000px;}
.ls3a{letter-spacing:-0.858000px;}
.ls29{letter-spacing:-0.792000px;}
.ls59{letter-spacing:-0.756000px;}
.ls28{letter-spacing:-0.726000px;}
.ls56{letter-spacing:-0.702000px;}
.ls27{letter-spacing:-0.660000px;}
.ls66{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.594000px;}
.lsa{letter-spacing:-0.528000px;}
.ls15{letter-spacing:-0.462000px;}
.ls8{letter-spacing:-0.396000px;}
.ls8a{letter-spacing:-0.384780px;}
.ls4{letter-spacing:-0.330000px;}
.ls7{letter-spacing:-0.264000px;}
.ls5{letter-spacing:-0.198000px;}
.ls17{letter-spacing:-0.192390px;}
.ls94{letter-spacing:-0.180000px;}
.ls6d{letter-spacing:-0.171000px;}
.ls19{letter-spacing:-0.162000px;}
.ls25{letter-spacing:-0.153912px;}
.ls16{letter-spacing:-0.132000px;}
.ls92{letter-spacing:-0.120000px;}
.ls54{letter-spacing:-0.115434px;}
.ls38{letter-spacing:-0.114000px;}
.lsb{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.066000px;}
.ls93{letter-spacing:-0.060000px;}
.ls1a{letter-spacing:-0.054000px;}
.ls18{letter-spacing:-0.038478px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000194px;}
.ls2d{letter-spacing:0.000600px;}
.ls85{letter-spacing:0.003000px;}
.ls7e{letter-spacing:0.004200px;}
.ls84{letter-spacing:0.005400px;}
.ls86{letter-spacing:0.010882px;}
.ls1f{letter-spacing:0.011375px;}
.ls76{letter-spacing:0.021600px;}
.ls80{letter-spacing:0.024600px;}
.ls6e{letter-spacing:0.027000px;}
.ls91{letter-spacing:0.030000px;}
.ls77{letter-spacing:0.031200px;}
.ls78{letter-spacing:0.031800px;}
.ls22{letter-spacing:0.033000px;}
.ls7d{letter-spacing:0.034837px;}
.ls7a{letter-spacing:0.034878px;}
.ls79{letter-spacing:0.037200px;}
.ls26{letter-spacing:0.038478px;}
.ls43{letter-spacing:0.041315px;}
.ls40{letter-spacing:0.041638px;}
.ls41{letter-spacing:0.041912px;}
.ls3e{letter-spacing:0.054000px;}
.ls6b{letter-spacing:0.057000px;}
.ls8e{letter-spacing:0.060000px;}
.ls2c{letter-spacing:0.066000px;}
.ls89{letter-spacing:0.076956px;}
.ls1e{letter-spacing:0.099000px;}
.ls13{letter-spacing:0.108000px;}
.ls30{letter-spacing:0.114000px;}
.ls95{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.129008px;}
.ls2b{letter-spacing:0.132000px;}
.ls52{letter-spacing:0.135000px;}
.ls10{letter-spacing:0.147998px;}
.lse{letter-spacing:0.162000px;}
.ls8c{letter-spacing:0.165000px;}
.ls24{letter-spacing:0.165600px;}
.ls97{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.192000px;}
.ls69{letter-spacing:0.198000px;}
.ls96{letter-spacing:0.210000px;}
.ls0{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.264000px;}
.ls87{letter-spacing:0.297000px;}
.ls3b{letter-spacing:0.307824px;}
.ls31{letter-spacing:0.330000px;}
.ls2f{letter-spacing:0.342000px;}
.ls53{letter-spacing:0.384780px;}
.ls72{letter-spacing:0.396000px;}
.ls6a{letter-spacing:0.427500px;}
.ls70{letter-spacing:0.462000px;}
.ls35{letter-spacing:0.528000px;}
.ls33{letter-spacing:0.594000px;}
.ls99{letter-spacing:0.625800px;}
.ls32{letter-spacing:0.660000px;}
.ls36{letter-spacing:0.723600px;}
.ls37{letter-spacing:0.724200px;}
.ls73{letter-spacing:0.726000px;}
.ls34{letter-spacing:0.792000px;}
.ls7f{letter-spacing:0.792600px;}
.ls3d{letter-spacing:0.810000px;}
.ls74{letter-spacing:0.858000px;}
.ls46{letter-spacing:0.879600px;}
.ls71{letter-spacing:0.924000px;}
.ls5b{letter-spacing:0.972000px;}
.ls65{letter-spacing:1.026000px;}
.ls83{letter-spacing:1.530000px;}
.lsd{letter-spacing:1.568400px;}
.ls47{letter-spacing:1.851065px;}
.ls6f{letter-spacing:1.956000px;}
.ls8d{letter-spacing:2.056612px;}
.ls21{letter-spacing:2.127000px;}
.ls45{letter-spacing:2.165011px;}
.ls42{letter-spacing:2.188776px;}
.ls4f{letter-spacing:2.197000px;}
.ls50{letter-spacing:2.246339px;}
.ls81{letter-spacing:2.248638px;}
.lsc{letter-spacing:2.320674px;}
.ls55{letter-spacing:2.376000px;}
.ls49{letter-spacing:2.390530px;}
.ls4a{letter-spacing:2.391127px;}
.ls3f{letter-spacing:2.396991px;}
.ls44{letter-spacing:2.397587px;}
.ls82{letter-spacing:2.400258px;}
.ls4d{letter-spacing:2.405122px;}
.ls4e{letter-spacing:2.405718px;}
.ls4b{letter-spacing:2.411954px;}
.ls4c{letter-spacing:2.412548px;}
.ls6c{letter-spacing:2.417744px;}
.ls63{letter-spacing:2.430000px;}
.ls12{letter-spacing:2.455533px;}
.ls51{letter-spacing:2.459393px;}
.ls75{letter-spacing:2.459400px;}
.lsf{letter-spacing:2.468377px;}
.ls11{letter-spacing:2.468966px;}
.ls48{letter-spacing:2.494707px;}
.ls20{letter-spacing:2.647072px;}
.ls23{letter-spacing:2.662120px;}
.ls7b{letter-spacing:2.892827px;}
.ls7c{letter-spacing:2.990770px;}
.ls98{letter-spacing:104.055600px;}
.ls8f{letter-spacing:104.458174px;}
.ls90{letter-spacing:106.575868px;}
.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;}
}
.ws4{word-spacing:-79.069819px;}
.ws6a{word-spacing:-16.104000px;}
.ws17{word-spacing:-14.454000px;}
.ws6c{word-spacing:-14.388000px;}
.ws74{word-spacing:-14.322000px;}
.ws77{word-spacing:-14.256000px;}
.ws7a{word-spacing:-14.190000px;}
.ws6{word-spacing:-14.124000px;}
.ws9{word-spacing:-14.058000px;}
.ws6d{word-spacing:-13.992000px;}
.ws7e{word-spacing:-13.926000px;}
.ws75{word-spacing:-13.794000px;}
.ws36{word-spacing:-13.596000px;}
.ws2b{word-spacing:-13.233000px;}
.ws6b{word-spacing:-13.200000px;}
.ws80{word-spacing:-13.140000px;}
.ws7b{word-spacing:-13.134000px;}
.ws65{word-spacing:-13.068000px;}
.wsa{word-spacing:-12.936000px;}
.ws5{word-spacing:-12.870000px;}
.ws8{word-spacing:-12.804000px;}
.ws7d{word-spacing:-12.540000px;}
.ws76{word-spacing:-12.474000px;}
.ws35{word-spacing:-12.342000px;}
.ws7f{word-spacing:-12.000000px;}
.ws1c{word-spacing:-11.988000px;}
.ws1b{word-spacing:-11.973998px;}
.ws58{word-spacing:-11.961000px;}
.ws1e{word-spacing:-11.934000px;}
.ws47{word-spacing:-11.880000px;}
.wsd{word-spacing:-11.826000px;}
.ws19{word-spacing:-11.772000px;}
.wsc{word-spacing:-11.718000px;}
.ws4c{word-spacing:-11.664000px;}
.ws56{word-spacing:-11.178000px;}
.ws59{word-spacing:-11.124000px;}
.ws1d{word-spacing:-10.962000px;}
.ws57{word-spacing:-10.908000px;}
.ws48{word-spacing:-10.854000px;}
.wsb{word-spacing:-10.800000px;}
.ws49{word-spacing:-10.746000px;}
.ws4b{word-spacing:-10.692000px;}
.ws4a{word-spacing:-10.098000px;}
.ws4e{word-spacing:-10.044000px;}
.ws55{word-spacing:-9.936000px;}
.ws53{word-spacing:-9.882000px;}
.ws1f{word-spacing:-9.828000px;}
.ws50{word-spacing:-9.774000px;}
.ws32{word-spacing:-9.612000px;}
.ws0{word-spacing:-9.600000px;}
.ws37{word-spacing:-9.504000px;}
.ws52{word-spacing:-9.450000px;}
.ws51{word-spacing:-9.396000px;}
.ws4f{word-spacing:-8.586000px;}
.ws2c{word-spacing:-8.465160px;}
.ws7{word-spacing:-8.426682px;}
.ws18{word-spacing:-8.388204px;}
.ws1a{word-spacing:-8.370000px;}
.ws46{word-spacing:-8.311248px;}
.ws2a{word-spacing:-8.272770px;}
.ws16{word-spacing:-8.234292px;}
.ws34{word-spacing:-7.277589px;}
.ws5a{word-spacing:-6.642000px;}
.ws4d{word-spacing:-4.050000px;}
.ws63{word-spacing:-2.430000px;}
.ws5c{word-spacing:-2.376000px;}
.ws60{word-spacing:-2.322000px;}
.ws64{word-spacing:-1.026000px;}
.ws5e{word-spacing:-0.972000px;}
.ws6f{word-spacing:-0.924000px;}
.ws72{word-spacing:-0.858000px;}
.ws45{word-spacing:-0.810000px;}
.ws40{word-spacing:-0.792000px;}
.ws71{word-spacing:-0.726000px;}
.ws3e{word-spacing:-0.660000px;}
.ws3f{word-spacing:-0.594000px;}
.ws41{word-spacing:-0.528000px;}
.ws6e{word-spacing:-0.462000px;}
.ws67{word-spacing:-0.456000px;}
.ws70{word-spacing:-0.396000px;}
.ws5b{word-spacing:-0.384780px;}
.ws38{word-spacing:-0.342000px;}
.ws3d{word-spacing:-0.330000px;}
.ws42{word-spacing:-0.307824px;}
.ws33{word-spacing:-0.264000px;}
.ws2{word-spacing:-0.240000px;}
.ws43{word-spacing:-0.216000px;}
.ws66{word-spacing:-0.198000px;}
.ws86{word-spacing:-0.180000px;}
.ws26{word-spacing:-0.162000px;}
.ws2d{word-spacing:-0.132000px;}
.ws85{word-spacing:-0.120000px;}
.ws3a{word-spacing:-0.114000px;}
.ws27{word-spacing:-0.108000px;}
.ws73{word-spacing:-0.078000px;}
.ws78{word-spacing:-0.076956px;}
.ws2e{word-spacing:-0.066000px;}
.ws82{word-spacing:-0.060000px;}
.ws68{word-spacing:-0.057000px;}
.ws54{word-spacing:-0.054000px;}
.ws29{word-spacing:-0.039000px;}
.ws1{word-spacing:0.000000px;}
.ws24{word-spacing:0.054000px;}
.ws83{word-spacing:0.060000px;}
.ws10{word-spacing:0.066000px;}
.ws15{word-spacing:0.108000px;}
.ws39{word-spacing:0.114000px;}
.ws7c{word-spacing:0.115434px;}
.ws81{word-spacing:0.120000px;}
.ws21{word-spacing:0.132000px;}
.ws23{word-spacing:0.162000px;}
.ws69{word-spacing:0.171000px;}
.ws84{word-spacing:0.180000px;}
.ws22{word-spacing:0.192390px;}
.wsf{word-spacing:0.198000px;}
.ws11{word-spacing:0.264000px;}
.wse{word-spacing:0.330000px;}
.ws79{word-spacing:0.384780px;}
.ws12{word-spacing:0.396000px;}
.ws20{word-spacing:0.462000px;}
.ws14{word-spacing:0.528000px;}
.ws13{word-spacing:0.594000px;}
.ws2f{word-spacing:0.660000px;}
.ws44{word-spacing:0.702000px;}
.ws30{word-spacing:0.726000px;}
.ws31{word-spacing:0.792000px;}
.ws3c{word-spacing:0.858000px;}
.ws3b{word-spacing:0.924000px;}
.ws5f{word-spacing:1.944000px;}
.ws61{word-spacing:1.998000px;}
.ws3{word-spacing:2.016000px;}
.ws62{word-spacing:2.376000px;}
.ws25{word-spacing:2.430000px;}
.ws28{word-spacing:2.484000px;}
.ws5d{word-spacing:2.538000px;}
.ws87{word-spacing:2.640000px;}
._f{margin-left:-15.378000px;}
._7{margin-left:-14.293200px;}
._b{margin-left:-13.070589px;}
._9{margin-left:-11.632800px;}
._d{margin-left:-10.011340px;}
._4{margin-left:-6.624000px;}
._0{margin-left:-5.472000px;}
._1{margin-left:-3.600000px;}
._8{margin-left:-2.587200px;}
._2{margin-left:-1.440000px;}
._5{width:1.066849px;}
._3{width:2.400000px;}
._6{width:3.483600px;}
._a{width:4.510800px;}
._e{width:5.589600px;}
._c{width:7.446373px;}
._11{width:9.463200px;}
._12{width:91.185600px;}
._10{width:101.772000px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.231000px;}
.fs4{font-size:38.478000px;}
.fs6{font-size:39.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:361.049400px;}
.y0{bottom:0.000000px;}
.y153{bottom:106.299150px;}
.y2f{bottom:106.299300px;}
.y25a{bottom:106.299450px;}
.y1f8{bottom:111.563550px;}
.y26a{bottom:117.587250px;}
.y263{bottom:125.799150px;}
.y2e{bottom:125.799300px;}
.y52{bottom:125.799450px;}
.y259{bottom:125.799600px;}
.y290{bottom:126.054150px;}
.y1a3{bottom:128.480700px;}
.y152{bottom:128.526300px;}
.y170{bottom:128.874300px;}
.y1e0{bottom:129.057750px;}
.y1c2{bottom:129.277950px;}
.y1f7{bottom:134.063550px;}
.y269{bottom:140.087250px;}
.y262{bottom:145.299150px;}
.y12b{bottom:145.299300px;}
.y2d{bottom:145.299450px;}
.y73{bottom:145.299600px;}
.y258{bottom:145.299750px;}
.yca{bottom:145.449450px;}
.y28f{bottom:145.809000px;}
.y21a{bottom:146.075400px;}
.y1a2{bottom:150.662250px;}
.y151{bottom:150.753450px;}
.y16f{bottom:151.449300px;}
.y1df{bottom:151.816500px;}
.y1c1{bottom:152.256750px;}
.y1f6{bottom:156.563550px;}
.y268{bottom:162.587250px;}
.y92{bottom:164.179350px;}
.y261{bottom:164.799150px;}
.y12a{bottom:164.799300px;}
.y51{bottom:164.799450px;}
.y2c{bottom:164.799600px;}
.y72{bottom:164.799750px;}
.y257{bottom:164.799900px;}
.yc9{bottom:165.099450px;}
.y28e{bottom:165.113700px;}
.y219{bottom:166.325400px;}
.y133{bottom:167.237250px;}
.y10a{bottom:168.079350px;}
.y183{bottom:174.024450px;}
.y1de{bottom:174.575100px;}
.y1c0{bottom:175.235550px;}
.y1f5{bottom:179.063550px;}
.y236{bottom:181.313550px;}
.y1a1{bottom:181.347750px;}
.y150{bottom:181.484550px;}
.y16e{bottom:182.528400px;}
.y260{bottom:184.299150px;}
.y129{bottom:184.299300px;}
.y50{bottom:184.299600px;}
.y2b{bottom:184.299750px;}
.y71{bottom:184.299900px;}
.y256{bottom:184.300050px;}
.y28d{bottom:184.418550px;}
.yc8{bottom:184.749450px;}
.y267{bottom:185.087250px;}
.y91{bottom:186.079350px;}
.y132{bottom:189.587250px;}
.y109{bottom:190.579350px;}
.y218{bottom:195.079350px;}
.y1bf{bottom:198.214350px;}
.y1f4{bottom:201.563550px;}
.yf6{bottom:202.821450px;}
.y1a0{bottom:203.529300px;}
.y14f{bottom:203.711700px;}
.y28c{bottom:203.723400px;}
.y128{bottom:203.799300px;}
.y4f{bottom:203.799750px;}
.y2a{bottom:203.799900px;}
.y70{bottom:203.800050px;}
.y255{bottom:203.800200px;}
.yc7{bottom:204.399450px;}
.y16d{bottom:205.103550px;}
.y1dd{bottom:205.837650px;}
.yae{bottom:206.946450px;}
.y266{bottom:207.587250px;}
.y90{bottom:207.979350px;}
.ye1{bottom:210.067500px;}
.y131{bottom:211.937250px;}
.yaf{bottom:212.440950px;}
.y108{bottom:213.079350px;}
.y1be{bottom:221.193150px;}
.y28b{bottom:223.028250px;}
.y127{bottom:223.299300px;}
.y4e{bottom:223.299750px;}
.y29{bottom:223.299900px;}
.y6f{bottom:223.300200px;}
.yc6{bottom:224.049450px;}
.yf5{bottom:225.321450px;}
.y19f{bottom:225.710850px;}
.y215{bottom:225.887250px;}
.y14e{bottom:225.938850px;}
.y217{bottom:226.083300px;}
.y182{bottom:227.678550px;}
.y1dc{bottom:228.596250px;}
.yad{bottom:229.446450px;}
.y8f{bottom:229.879350px;}
.y265{bottom:230.087250px;}
.y235{bottom:230.317500px;}
.ye0{bottom:232.567500px;}
.y130{bottom:234.287250px;}
.y107{bottom:235.579350px;}
.y16c{bottom:236.182500px;}
.y28a{bottom:242.333100px;}
.y126{bottom:242.799300px;}
.y4d{bottom:242.799750px;}
.y28{bottom:242.800050px;}
.yc5{bottom:243.699450px;}
.y1bd{bottom:244.171950px;}
.y216{bottom:246.333300px;}
.y253{bottom:246.502650px;}
.yf4{bottom:247.821450px;}
.y19e{bottom:247.892400px;}
.y214{bottom:248.537250px;}
.y25f{bottom:248.583300px;}
.y181{bottom:250.253700px;}
.y234{bottom:250.567500px;}
.y1db{bottom:251.354850px;}
.y8e{bottom:251.779350px;}
.yac{bottom:251.946450px;}
.y254{bottom:251.997150px;}
.y264{bottom:252.587250px;}
.ydf{bottom:255.067500px;}
.y12f{bottom:256.637250px;}
.y14d{bottom:256.669950px;}
.y16b{bottom:258.757650px;}
.y289{bottom:261.637800px;}
.y125{bottom:262.299300px;}
.y4c{bottom:262.299900px;}
.y27{bottom:262.300200px;}
.yc4{bottom:263.349450px;}
.y6e{bottom:264.737250px;}
.y1bc{bottom:267.150750px;}
.y252{bottom:268.702800px;}
.y25e{bottom:271.083300px;}
.y213{bottom:271.187250px;}
.y8d{bottom:273.679350px;}
.y1da{bottom:274.113600px;}
.yab{bottom:274.446450px;}
.y106{bottom:275.087250px;}
.yde{bottom:277.567500px;}
.y19d{bottom:278.577900px;}
.yf3{bottom:278.825400px;}
.y14c{bottom:278.896950px;}
.y12e{bottom:278.987250px;}
.y233{bottom:279.321450px;}
.y288{bottom:280.942650px;}
.y16a{bottom:281.332650px;}
.y124{bottom:281.799300px;}
.y4b{bottom:281.799900px;}
.y26{bottom:281.800200px;}
.yc3{bottom:282.999450px;}
.y6d{bottom:286.787250px;}
.y1bb{bottom:290.129400px;}
.y251{bottom:290.902800px;}
.y25d{bottom:293.583300px;}
.y212{bottom:293.837250px;}
.y8c{bottom:295.579350px;}
.y1d9{bottom:296.872200px;}
.yaa{bottom:296.946450px;}
.y105{bottom:297.587250px;}
.yf2{bottom:299.075400px;}
.y232{bottom:299.571450px;}
.ydd{bottom:300.067500px;}
.y287{bottom:300.247500px;}
.y19c{bottom:300.759450px;}
.y14b{bottom:301.124250px;}
.y123{bottom:301.299300px;}
.y4a{bottom:301.299900px;}
.y12d{bottom:301.337250px;}
.yc2{bottom:302.649450px;}
.y180{bottom:303.907800px;}
.y1f3{bottom:308.571450px;}
.y6c{bottom:308.837250px;}
.y169{bottom:312.411750px;}
.y250{bottom:313.102650px;}
.y1ba{bottom:313.108200px;}
.y25c{bottom:313.833300px;}
.y211{bottom:316.487250px;}
.y8b{bottom:317.479350px;}
.yf1{bottom:319.325400px;}
.ya9{bottom:319.446450px;}
.y286{bottom:319.552350px;}
.y1d8{bottom:319.630800px;}
.y104{bottom:320.087250px;}
.y122{bottom:320.799300px;}
.y49{bottom:320.800050px;}
.yc1{bottom:322.299450px;}
.ydc{bottom:322.567500px;}
.y19b{bottom:322.940850px;}
.y25{bottom:323.537250px;}
.y12c{bottom:323.687250px;}
.y17f{bottom:326.482800px;}
.y231{bottom:328.325400px;}
.y6b{bottom:330.887250px;}
.y1f2{bottom:331.071450px;}
.y14a{bottom:331.855200px;}
.y24f{bottom:335.302800px;}
.y1b9{bottom:336.087000px;}
.y285{bottom:338.857200px;}
.y210{bottom:339.137250px;}
.y8a{bottom:339.379350px;}
.yf0{bottom:339.575400px;}
.y121{bottom:340.299300px;}
.y48{bottom:340.300050px;}
.yc0{bottom:341.949450px;}
.y1d7{bottom:342.389400px;}
.y103{bottom:342.587250px;}
.y168{bottom:343.490700px;}
.ydb{bottom:345.067500px;}
.y19a{bottom:345.122400px;}
.y24{bottom:346.037250px;}
.y230{bottom:348.575400px;}
.ya8{bottom:350.450400px;}
.y6a{bottom:352.937250px;}
.y149{bottom:354.082350px;}
.y2ab{bottom:355.038750px;}
.y24e{bottom:357.502650px;}
.y17e{bottom:357.561900px;}
.y284{bottom:358.162050px;}
.y1b8{bottom:359.065800px;}
.y120{bottom:359.799300px;}
.yef{bottom:359.825400px;}
.y89{bottom:361.279350px;}
.ybf{bottom:361.599450px;}
.y20f{bottom:361.787250px;}
.y1f1{bottom:362.075400px;}
.y102{bottom:365.087250px;}
.y1d6{bottom:365.148150px;}
.y167{bottom:366.065850px;}
.y199{bottom:367.304100px;}
.yda{bottom:367.567500px;}
.y23{bottom:368.387250px;}
.y22f{bottom:368.825400px;}
.ya7{bottom:372.950400px;}
.y2aa{bottom:374.538750px;}
.y69{bottom:374.987250px;}
.y148{bottom:376.309500px;}
.y283{bottom:377.466750px;}
.y11f{bottom:379.299300px;}
.y24d{bottom:379.702800px;}
.yee{bottom:380.075400px;}
.y17d{bottom:380.137050px;}
.ybe{bottom:381.249450px;}
.y1b7{bottom:382.044600px;}
.y47{bottom:382.862250px;}
.y88{bottom:383.179350px;}
.y20e{bottom:384.437250px;}
.y1f0{bottom:384.575400px;}
.y101{bottom:387.587250px;}
.y1d5{bottom:387.906750px;}
.y166{bottom:388.640850px;}
.y198{bottom:389.485500px;}
.yd9{bottom:390.067500px;}
.y22{bottom:390.737250px;}
.ya6{bottom:393.200400px;}
.y2a9{bottom:394.038750px;}
.y282{bottom:396.771600px;}
.y68{bottom:397.037250px;}
.y22e{bottom:397.579350px;}
.y147{bottom:398.536650px;}
.yed{bottom:400.325400px;}
.ybd{bottom:400.899450px;}
.y24c{bottom:401.902800px;}
.y17c{bottom:402.712050px;}
.y1b6{bottom:405.023400px;}
.y87{bottom:405.079350px;}
.y46{bottom:405.587250px;}
.y1ef{bottom:407.075400px;}
.y20d{bottom:407.087250px;}
.y100{bottom:410.087250px;}
.y197{bottom:411.667050px;}
.yd8{bottom:412.567500px;}
.y21{bottom:413.087250px;}
.y2a8{bottom:413.538750px;}
.y281{bottom:416.076450px;}
.y67{bottom:419.087250px;}
.y11e{bottom:419.135850px;}
.y1d4{bottom:419.169300px;}
.y165{bottom:419.719950px;}
.y22d{bottom:420.079350px;}
.ybc{bottom:420.549600px;}
.yec{bottom:420.575400px;}
.y146{bottom:420.763800px;}
.ya5{bottom:421.954350px;}
.y24b{bottom:424.102650px;}
.y17b{bottom:425.287050px;}
.y1b5{bottom:428.002200px;}
.y45{bottom:428.312250px;}
.y1ee{bottom:429.575400px;}
.y20c{bottom:429.737250px;}
.yff{bottom:432.587250px;}
.y8{bottom:432.690150px;}
.y2a7{bottom:433.038750px;}
.yd7{bottom:435.067500px;}
.y280{bottom:435.381300px;}
.y20{bottom:435.437250px;}
.ybb{bottom:440.049600px;}
.yeb{bottom:440.825400px;}
.y66{bottom:441.137250px;}
.y1d3{bottom:441.927900px;}
.y11d{bottom:441.935850px;}
.y164{bottom:442.294950px;}
.y196{bottom:442.352550px;}
.y22c{bottom:442.579350px;}
.y86{bottom:443.987250px;}
.ya4{bottom:444.829350px;}
.y24a{bottom:446.302800px;}
.y17a{bottom:447.862200px;}
.y1b4{bottom:450.981000px;}
.y44{bottom:451.037250px;}
.y4{bottom:451.720050px;}
.y1ed{bottom:452.075400px;}
.y2a6{bottom:452.088750px;}
.y20b{bottom:452.387250px;}
.y27f{bottom:454.686150px;}
.yfe{bottom:455.087250px;}
.yd6{bottom:457.567500px;}
.y1f{bottom:457.787250px;}
.yba{bottom:459.549600px;}
.y145{bottom:459.998850px;}
.yea{bottom:461.075400px;}
.y65{bottom:463.187250px;}
.y195{bottom:464.534100px;}
.y1d2{bottom:464.686500px;}
.y11c{bottom:464.735850px;}
.y163{bottom:464.870100px;}
.y22b{bottom:465.079350px;}
.y85{bottom:465.887250px;}
.ya3{bottom:467.704350px;}
.y249{bottom:468.502650px;}
.y3{bottom:469.720050px;}
.y2a5{bottom:471.138750px;}
.y43{bottom:473.762250px;}
.y1b3{bottom:473.959650px;}
.y27e{bottom:473.990850px;}
.y20a{bottom:475.037250px;}
.yfd{bottom:477.587250px;}
.y179{bottom:478.941300px;}
.yb9{bottom:479.049600px;}
.yd5{bottom:480.067500px;}
.y1e{bottom:480.137250px;}
.ye9{bottom:481.325400px;}
.y144{bottom:482.225850px;}
.y1ec{bottom:483.079350px;}
.y64{bottom:485.237250px;}
.y194{bottom:486.715650px;}
.y162{bottom:487.445100px;}
.y11b{bottom:487.535850px;}
.y22a{bottom:487.579350px;}
.y84{bottom:487.787250px;}
.ya2{bottom:490.579350px;}
.y2a4{bottom:490.638750px;}
.y248{bottom:490.702650px;}
.y27d{bottom:493.295700px;}
.y42{bottom:496.487250px;}
.y1b2{bottom:496.938600px;}
.y209{bottom:497.687250px;}
.yb8{bottom:498.549600px;}
.yfc{bottom:500.087250px;}
.ye8{bottom:501.575400px;}
.y1d{bottom:502.487250px;}
.yd4{bottom:502.567500px;}
.y143{bottom:504.453000px;}
.y1eb{bottom:505.579350px;}
.y63{bottom:507.287250px;}
.y193{bottom:508.897200px;}
.y83{bottom:509.687250px;}
.y178{bottom:510.020250px;}
.y229{bottom:510.079350px;}
.y2a3{bottom:510.138750px;}
.y1d1{bottom:510.203850px;}
.y11a{bottom:510.335850px;}
.y27c{bottom:512.600550px;}
.y247{bottom:512.902800px;}
.ya1{bottom:513.454350px;}
.yb7{bottom:518.049600px;}
.y161{bottom:518.524200px;}
.y41{bottom:519.212250px;}
.y1b1{bottom:519.917250px;}
.y208{bottom:520.337250px;}
.y2{bottom:520.839450px;}
.ye7{bottom:521.825400px;}
.yfb{bottom:522.587250px;}
.y1b{bottom:524.837250px;}
.yd3{bottom:525.067500px;}
.y142{bottom:526.680150px;}
.y1ea{bottom:528.079350px;}
.y62{bottom:529.337250px;}
.y2a2{bottom:529.638750px;}
.y1c{bottom:530.331750px;}
.y192{bottom:531.078750px;}
.y82{bottom:531.587250px;}
.y27b{bottom:531.905400px;}
.y228{bottom:532.579350px;}
.y177{bottom:532.595400px;}
.y1d0{bottom:532.962450px;}
.y119{bottom:533.135850px;}
.y246{bottom:535.102800px;}
.ya0{bottom:536.329350px;}
.yb6{bottom:537.549600px;}
.y1{bottom:538.839450px;}
.y160{bottom:541.099200px;}
.y40{bottom:541.937250px;}
.y1b0{bottom:542.896050px;}
.y207{bottom:542.987250px;}
.yfa{bottom:545.087250px;}
.y1a{bottom:547.187250px;}
.y141{bottom:548.907300px;}
.y2a1{bottom:549.138750px;}
.ye6{bottom:550.579350px;}
.y27a{bottom:551.210100px;}
.y61{bottom:551.387250px;}
.y191{bottom:553.260300px;}
.y81{bottom:553.487250px;}
.y227{bottom:555.079350px;}
.y1cf{bottom:555.721050px;}
.y118{bottom:555.935850px;}
.yb5{bottom:557.049600px;}
.y245{bottom:557.302800px;}
.y9f{bottom:559.204350px;}
.y9{bottom:562.210950px;}
.y15f{bottom:563.674350px;}
.yd2{bottom:564.575400px;}
.y3f{bottom:564.662250px;}
.y206{bottom:565.637250px;}
.y1af{bottom:565.874850px;}
.yf9{bottom:567.587250px;}
.y2a0{bottom:568.638750px;}
.y18{bottom:569.537250px;}
.y279{bottom:570.514950px;}
.y140{bottom:571.134450px;}
.ye5{bottom:573.079350px;}
.y60{bottom:573.437250px;}
.y19{bottom:575.031750px;}
.y80{bottom:575.387250px;}
.y190{bottom:575.441850px;}
.yb4{bottom:576.549600px;}
.y226{bottom:577.579350px;}
.y1ce{bottom:578.479650px;}
.y117{bottom:578.735850px;}
.y244{bottom:579.502650px;}
.y15e{bottom:586.249500px;}
.yd1{bottom:587.075400px;}
.y3d{bottom:587.387250px;}
.y29f{bottom:588.138750px;}
.y205{bottom:588.287250px;}
.y1ae{bottom:588.853650px;}
.y278{bottom:589.819800px;}
.yf8{bottom:590.087250px;}
.y9e{bottom:590.583300px;}
.y16{bottom:591.887250px;}
.y3e{bottom:592.881750px;}
.y13f{bottom:593.361600px;}
.y5f{bottom:595.487250px;}
.ye4{bottom:595.579350px;}
.yb3{bottom:596.049600px;}
.y7f{bottom:597.287250px;}
.y17{bottom:597.381750px;}
.y18f{bottom:597.623400px;}
.y225{bottom:600.079350px;}
.y1cd{bottom:601.238400px;}
.y116{bottom:601.535850px;}
.y242{bottom:601.702650px;}
.y243{bottom:607.197150px;}
.y29e{bottom:607.638750px;}
.y15d{bottom:608.824500px;}
.y277{bottom:609.124650px;}
.yd0{bottom:609.575400px;}
.y3c{bottom:610.112250px;}
.y9d{bottom:610.833300px;}
.y204{bottom:610.937250px;}
.y1ad{bottom:611.832450px;}
.yf7{bottom:612.587250px;}
.y15{bottom:614.237250px;}
.yb2{bottom:615.549600px;}
.y13e{bottom:615.588750px;}
.y176{bottom:617.328450px;}
.y5e{bottom:617.537250px;}
.y1e9{bottom:618.079350px;}
.y25b{bottom:618.081750px;}
.y7e{bottom:619.187250px;}
.y18e{bottom:619.804800px;}
.y224{bottom:622.579350px;}
.y241{bottom:623.902800px;}
.y1cc{bottom:623.997000px;}
.y29d{bottom:627.138750px;}
.y276{bottom:628.429500px;}
.y9c{bottom:631.083300px;}
.y15c{bottom:631.399650px;}
.ycf{bottom:632.075400px;}
.y3b{bottom:632.837250px;}
.y115{bottom:632.839800px;}
.y203{bottom:633.587250px;}
.y1ac{bottom:634.811250px;}
.yb1{bottom:635.049600px;}
.ye3{bottom:635.087250px;}
.y13{bottom:636.587250px;}
.y13d{bottom:637.815900px;}
.y5d{bottom:639.587250px;}
.y175{bottom:639.903600px;}
.y1e8{bottom:640.579350px;}
.y7d{bottom:641.087250px;}
.y18d{bottom:641.986500px;}
.y14{bottom:642.081750px;}
.y223{bottom:645.079350px;}
.y240{bottom:646.102800px;}
.y29c{bottom:646.638750px;}
.y275{bottom:647.734350px;}
.y9b{bottom:651.333300px;}
.y15b{bottom:653.974800px;}
.yce{bottom:654.575400px;}
.y1cb{bottom:655.259550px;}
.y3a{bottom:655.562250px;}
.y114{bottom:655.564800px;}
.y202{bottom:656.237250px;}
.ye2{bottom:657.587250px;}
.y1ab{bottom:657.790050px;}
.y12{bottom:658.937250px;}
.y13c{bottom:660.043050px;}
.y5c{bottom:661.637250px;}
.y174{bottom:662.478600px;}
.y7c{bottom:662.987250px;}
.y1e7{bottom:663.079350px;}
.y18c{bottom:664.167900px;}
.y29b{bottom:666.138750px;}
.y274{bottom:667.039050px;}
.y222{bottom:667.579350px;}
.y23f{bottom:668.302800px;}
.ycd{bottom:677.075400px;}
.y1ca{bottom:678.018150px;}
.y39{bottom:678.287250px;}
.y113{bottom:678.289800px;}
.y201{bottom:678.887250px;}
.y9a{bottom:680.087250px;}
.y1aa{bottom:680.768850px;}
.y11{bottom:681.287250px;}
.y13b{bottom:682.270050px;}
.y5b{bottom:683.687250px;}
.y7b{bottom:684.887250px;}
.y15a{bottom:685.053750px;}
.y1e6{bottom:685.579350px;}
.y29a{bottom:685.638750px;}
.y273{bottom:686.343900px;}
.y18b{bottom:686.349450px;}
.y221{bottom:690.079350px;}
.y23e{bottom:690.502650px;}
.ycc{bottom:699.575400px;}
.y1c9{bottom:700.776750px;}
.y38{bottom:701.012250px;}
.y112{bottom:701.014800px;}
.y200{bottom:701.537250px;}
.y99{bottom:702.587250px;}
.y10{bottom:703.637250px;}
.y1a9{bottom:703.747500px;}
.y13a{bottom:704.497350px;}
.y299{bottom:705.138750px;}
.y272{bottom:705.648750px;}
.y5a{bottom:705.737250px;}
.y7a{bottom:706.787250px;}
.y159{bottom:707.628900px;}
.y220{bottom:712.579350px;}
.y23d{bottom:712.702650px;}
.y173{bottom:716.132700px;}
.y1e5{bottom:716.583300px;}
.y18a{bottom:717.034950px;}
.y1c8{bottom:723.535500px;}
.y37{bottom:723.737250px;}
.y111{bottom:723.739800px;}
.y1ff{bottom:724.187250px;}
.y298{bottom:724.638750px;}
.y271{bottom:724.953600px;}
.y98{bottom:725.087250px;}
.yf{bottom:725.987250px;}
.y139{bottom:726.724350px;}
.y1a8{bottom:726.726450px;}
.y59{bottom:727.787250px;}
.y79{bottom:728.687250px;}
.y158{bottom:730.203900px;}
.ycb{bottom:730.579350px;}
.y21f{bottom:735.079350px;}
.y172{bottom:738.707850px;}
.y1e4{bottom:739.083300px;}
.y189{bottom:739.216500px;}
.y23c{bottom:743.406600px;}
.y297{bottom:744.138750px;}
.y270{bottom:744.258300px;}
.y1c7{bottom:746.294100px;}
.y36{bottom:746.462250px;}
.y110{bottom:746.464800px;}
.y1fe{bottom:746.837250px;}
.y97{bottom:747.587250px;}
.ye{bottom:748.337250px;}
.y138{bottom:748.951500px;}
.y1a7{bottom:749.705100px;}
.y58{bottom:749.837250px;}
.y78{bottom:750.587250px;}
.y157{bottom:752.779050px;}
.y21e{bottom:757.579350px;}
.y171{bottom:761.283000px;}
.y1e3{bottom:761.583300px;}
.y26f{bottom:763.563150px;}
.y296{bottom:763.638750px;}
.y23b{bottom:763.656600px;}
.y1c6{bottom:769.052700px;}
.y35{bottom:769.187250px;}
.y10f{bottom:769.189800px;}
.y1fd{bottom:769.487250px;}
.y188{bottom:769.902000px;}
.y96{bottom:770.087250px;}
.yd{bottom:770.687250px;}
.y137{bottom:771.178650px;}
.y57{bottom:771.887250px;}
.y77{bottom:772.487250px;}
.y1a6{bottom:772.683900px;}
.y21d{bottom:780.079350px;}
.y26e{bottom:782.868000px;}
.y295{bottom:783.138750px;}
.y156{bottom:783.858000px;}
.y1e2{bottom:784.083300px;}
.y1c5{bottom:791.811300px;}
.y34{bottom:791.912250px;}
.y10e{bottom:791.914800px;}
.y187{bottom:792.083550px;}
.y1fc{bottom:792.137250px;}
.y23a{bottom:792.410550px;}
.y95{bottom:792.587250px;}
.yc{bottom:793.037250px;}
.y136{bottom:793.405800px;}
.y56{bottom:793.937250px;}
.y76{bottom:794.387250px;}
.yb0{bottom:798.081750px;}
.y26d{bottom:802.172850px;}
.y294{bottom:802.638750px;}
.y1a5{bottom:804.166650px;}
.y1e1{bottom:806.583300px;}
.y21c{bottom:811.083300px;}
.y239{bottom:812.660550px;}
.y186{bottom:814.265100px;}
.y1c4{bottom:814.569900px;}
.y33{bottom:814.637250px;}
.y10d{bottom:814.639800px;}
.y1fb{bottom:814.787250px;}
.y155{bottom:814.937100px;}
.y94{bottom:815.087250px;}
.ya{bottom:815.387250px;}
.y135{bottom:815.632950px;}
.y55{bottom:815.987250px;}
.y75{bottom:816.287250px;}
.y26c{bottom:821.477550px;}
.y293{bottom:822.138750px;}
.y1a4{bottom:827.145450px;}
.y21b{bottom:831.333300px;}
.y6{bottom:832.484250px;}
.y185{bottom:836.446500px;}
.y1c3{bottom:837.328650px;}
.y32{bottom:837.362250px;}
.y10c{bottom:837.364800px;}
.y1f9{bottom:837.437250px;}
.y154{bottom:837.512100px;}
.y93{bottom:837.587250px;}
.yb{bottom:837.737250px;}
.y134{bottom:837.860100px;}
.y54{bottom:838.037250px;}
.y74{bottom:838.187250px;}
.y26b{bottom:840.782400px;}
.y238{bottom:841.414500px;}
.y292{bottom:841.638750px;}
.y1fa{bottom:842.931750px;}
.y5{bottom:857.984250px;}
.y184{bottom:858.628200px;}
.y31{bottom:860.087250px;}
.y10b{bottom:860.089800px;}
.y291{bottom:861.138750px;}
.y237{bottom:861.664500px;}
.y53{bottom:871.653600px;}
.y30{bottom:930.708000px;}
.y7{bottom:946.311000px;}
.hc{height:33.168036px;}
.h10{height:33.852000px;}
.h7{height:34.080000px;}
.hf{height:38.914200px;}
.h3{height:41.376000px;}
.h4{height:41.664000px;}
.h16{height:42.161133px;}
.h2{height:43.584000px;}
.h17{height:44.601562px;}
.h14{height:46.266000px;}
.hd{height:46.548000px;}
.he{height:46.872000px;}
.h8{height:47.561800px;}
.h13{height:49.134000px;}
.h12{height:49.476000px;}
.h18{height:51.720000px;}
.h19{height:52.080000px;}
.h11{height:52.470000px;}
.h6{height:54.678000px;}
.ha{height:56.892000px;}
.hb{height:57.288000px;}
.h15{height:61.552734px;}
.h5{height:62.010000px;}
.h9{height:311.224583px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.xd{left:41.485800px;}
.x3{left:103.230300px;}
.x1{left:106.299150px;}
.x19{left:127.559100px;}
.x4{left:132.655800px;}
.x10{left:136.063050px;}
.x2{left:137.359950px;}
.x21{left:144.592200px;}
.x1c{left:149.756100px;}
.x1d{left:151.060500px;}
.x22{left:152.964000px;}
.x1e{left:159.513750px;}
.x17{left:169.754250px;}
.x18{left:178.706850px;}
.xe{left:197.160300px;}
.xf{left:206.319150px;}
.x1b{left:290.991900px;}
.x1a{left:328.368900px;}
.x26{left:346.662300px;}
.x7{left:359.263350px;}
.x8{left:363.684750px;}
.x5{left:442.200000px;}
.x6{left:446.829450px;}
.x9{left:519.628800px;}
.xa{left:524.171850px;}
.x15{left:542.817600px;}
.x23{left:544.065900px;}
.x16{left:552.051150px;}
.x24{left:553.494750px;}
.x1f{left:568.661400px;}
.x20{left:573.846750px;}
.x25{left:586.359000px;}
.x13{left:589.532250px;}
.xb{left:590.616900px;}
.xc{left:595.275750px;}
.x11{left:636.950400px;}
.x14{left:638.145150px;}
.x12{left:645.842550px;}
@media print{
.v7{vertical-align:-15.312000pt;}
.v5{vertical-align:-8.506667pt;}
.v4{vertical-align:-7.558933pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.506667pt;}
.v3{vertical-align:16.872000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:158.933333pt;}
.ls58{letter-spacing:-6.000000pt;}
.ls67{letter-spacing:-4.608000pt;}
.ls9a{letter-spacing:-2.346667pt;}
.ls57{letter-spacing:-2.256000pt;}
.ls1c{letter-spacing:-2.208000pt;}
.ls1b{letter-spacing:-2.160000pt;}
.ls62{letter-spacing:-2.112000pt;}
.ls5a{letter-spacing:-1.968000pt;}
.ls88{letter-spacing:-1.920000pt;}
.ls5c{letter-spacing:-1.824000pt;}
.ls1d{letter-spacing:-1.776000pt;}
.ls5d{letter-spacing:-1.728000pt;}
.ls60{letter-spacing:-1.680000pt;}
.ls64{letter-spacing:-1.584000pt;}
.ls68{letter-spacing:-1.536000pt;}
.ls5e{letter-spacing:-1.248000pt;}
.ls5f{letter-spacing:-1.200000pt;}
.ls3c{letter-spacing:-1.152000pt;}
.ls2e{letter-spacing:-1.056000pt;}
.ls8b{letter-spacing:-0.960000pt;}
.ls61{letter-spacing:-0.912000pt;}
.ls39{letter-spacing:-0.821333pt;}
.ls3a{letter-spacing:-0.762667pt;}
.ls29{letter-spacing:-0.704000pt;}
.ls59{letter-spacing:-0.672000pt;}
.ls28{letter-spacing:-0.645333pt;}
.ls56{letter-spacing:-0.624000pt;}
.ls27{letter-spacing:-0.586667pt;}
.ls66{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.528000pt;}
.lsa{letter-spacing:-0.469333pt;}
.ls15{letter-spacing:-0.410667pt;}
.ls8{letter-spacing:-0.352000pt;}
.ls8a{letter-spacing:-0.342027pt;}
.ls4{letter-spacing:-0.293333pt;}
.ls7{letter-spacing:-0.234667pt;}
.ls5{letter-spacing:-0.176000pt;}
.ls17{letter-spacing:-0.171013pt;}
.ls94{letter-spacing:-0.160000pt;}
.ls6d{letter-spacing:-0.152000pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls25{letter-spacing:-0.136811pt;}
.ls16{letter-spacing:-0.117333pt;}
.ls92{letter-spacing:-0.106667pt;}
.ls54{letter-spacing:-0.102608pt;}
.ls38{letter-spacing:-0.101333pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.058667pt;}
.ls93{letter-spacing:-0.053333pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls18{letter-spacing:-0.034203pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000172pt;}
.ls2d{letter-spacing:0.000533pt;}
.ls85{letter-spacing:0.002667pt;}
.ls7e{letter-spacing:0.003733pt;}
.ls84{letter-spacing:0.004800pt;}
.ls86{letter-spacing:0.009673pt;}
.ls1f{letter-spacing:0.010111pt;}
.ls76{letter-spacing:0.019200pt;}
.ls80{letter-spacing:0.021867pt;}
.ls6e{letter-spacing:0.024000pt;}
.ls91{letter-spacing:0.026667pt;}
.ls77{letter-spacing:0.027733pt;}
.ls78{letter-spacing:0.028267pt;}
.ls22{letter-spacing:0.029333pt;}
.ls7d{letter-spacing:0.030966pt;}
.ls7a{letter-spacing:0.031003pt;}
.ls79{letter-spacing:0.033067pt;}
.ls26{letter-spacing:0.034203pt;}
.ls43{letter-spacing:0.036725pt;}
.ls40{letter-spacing:0.037011pt;}
.ls41{letter-spacing:0.037255pt;}
.ls3e{letter-spacing:0.048000pt;}
.ls6b{letter-spacing:0.050667pt;}
.ls8e{letter-spacing:0.053333pt;}
.ls2c{letter-spacing:0.058667pt;}
.ls89{letter-spacing:0.068405pt;}
.ls1e{letter-spacing:0.088000pt;}
.ls13{letter-spacing:0.096000pt;}
.ls30{letter-spacing:0.101333pt;}
.ls95{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.114674pt;}
.ls2b{letter-spacing:0.117333pt;}
.ls52{letter-spacing:0.120000pt;}
.ls10{letter-spacing:0.131553pt;}
.lse{letter-spacing:0.144000pt;}
.ls8c{letter-spacing:0.146667pt;}
.ls24{letter-spacing:0.147200pt;}
.ls97{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.170667pt;}
.ls69{letter-spacing:0.176000pt;}
.ls96{letter-spacing:0.186667pt;}
.ls0{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.234667pt;}
.ls87{letter-spacing:0.264000pt;}
.ls3b{letter-spacing:0.273621pt;}
.ls31{letter-spacing:0.293333pt;}
.ls2f{letter-spacing:0.304000pt;}
.ls53{letter-spacing:0.342027pt;}
.ls72{letter-spacing:0.352000pt;}
.ls6a{letter-spacing:0.380000pt;}
.ls70{letter-spacing:0.410667pt;}
.ls35{letter-spacing:0.469333pt;}
.ls33{letter-spacing:0.528000pt;}
.ls99{letter-spacing:0.556267pt;}
.ls32{letter-spacing:0.586667pt;}
.ls36{letter-spacing:0.643200pt;}
.ls37{letter-spacing:0.643733pt;}
.ls73{letter-spacing:0.645333pt;}
.ls34{letter-spacing:0.704000pt;}
.ls7f{letter-spacing:0.704533pt;}
.ls3d{letter-spacing:0.720000pt;}
.ls74{letter-spacing:0.762667pt;}
.ls46{letter-spacing:0.781867pt;}
.ls71{letter-spacing:0.821333pt;}
.ls5b{letter-spacing:0.864000pt;}
.ls65{letter-spacing:0.912000pt;}
.ls83{letter-spacing:1.360000pt;}
.lsd{letter-spacing:1.394133pt;}
.ls47{letter-spacing:1.645391pt;}
.ls6f{letter-spacing:1.738667pt;}
.ls8d{letter-spacing:1.828099pt;}
.ls21{letter-spacing:1.890667pt;}
.ls45{letter-spacing:1.924454pt;}
.ls42{letter-spacing:1.945579pt;}
.ls4f{letter-spacing:1.952889pt;}
.ls50{letter-spacing:1.996745pt;}
.ls81{letter-spacing:1.998789pt;}
.lsc{letter-spacing:2.062821pt;}
.ls55{letter-spacing:2.112000pt;}
.ls49{letter-spacing:2.124916pt;}
.ls4a{letter-spacing:2.125446pt;}
.ls3f{letter-spacing:2.130658pt;}
.ls44{letter-spacing:2.131189pt;}
.ls82{letter-spacing:2.133563pt;}
.ls4d{letter-spacing:2.137886pt;}
.ls4e{letter-spacing:2.138416pt;}
.ls4b{letter-spacing:2.143959pt;}
.ls4c{letter-spacing:2.144488pt;}
.ls6c{letter-spacing:2.149105pt;}
.ls63{letter-spacing:2.160000pt;}
.ls12{letter-spacing:2.182696pt;}
.ls51{letter-spacing:2.186127pt;}
.ls75{letter-spacing:2.186133pt;}
.lsf{letter-spacing:2.194113pt;}
.ls11{letter-spacing:2.194637pt;}
.ls48{letter-spacing:2.217518pt;}
.ls20{letter-spacing:2.352953pt;}
.ls23{letter-spacing:2.366329pt;}
.ls7b{letter-spacing:2.571402pt;}
.ls7c{letter-spacing:2.658462pt;}
.ls98{letter-spacing:92.493867pt;}
.ls8f{letter-spacing:92.851710pt;}
.ls90{letter-spacing:94.734105pt;}
.ws4{word-spacing:-70.284283pt;}
.ws6a{word-spacing:-14.314667pt;}
.ws17{word-spacing:-12.848000pt;}
.ws6c{word-spacing:-12.789333pt;}
.ws74{word-spacing:-12.730667pt;}
.ws77{word-spacing:-12.672000pt;}
.ws7a{word-spacing:-12.613333pt;}
.ws6{word-spacing:-12.554667pt;}
.ws9{word-spacing:-12.496000pt;}
.ws6d{word-spacing:-12.437333pt;}
.ws7e{word-spacing:-12.378667pt;}
.ws75{word-spacing:-12.261333pt;}
.ws36{word-spacing:-12.085333pt;}
.ws2b{word-spacing:-11.762667pt;}
.ws6b{word-spacing:-11.733333pt;}
.ws80{word-spacing:-11.680000pt;}
.ws7b{word-spacing:-11.674667pt;}
.ws65{word-spacing:-11.616000pt;}
.wsa{word-spacing:-11.498667pt;}
.ws5{word-spacing:-11.440000pt;}
.ws8{word-spacing:-11.381333pt;}
.ws7d{word-spacing:-11.146667pt;}
.ws76{word-spacing:-11.088000pt;}
.ws35{word-spacing:-10.970667pt;}
.ws7f{word-spacing:-10.666667pt;}
.ws1c{word-spacing:-10.656000pt;}
.ws1b{word-spacing:-10.643553pt;}
.ws58{word-spacing:-10.632000pt;}
.ws1e{word-spacing:-10.608000pt;}
.ws47{word-spacing:-10.560000pt;}
.wsd{word-spacing:-10.512000pt;}
.ws19{word-spacing:-10.464000pt;}
.wsc{word-spacing:-10.416000pt;}
.ws4c{word-spacing:-10.368000pt;}
.ws56{word-spacing:-9.936000pt;}
.ws59{word-spacing:-9.888000pt;}
.ws1d{word-spacing:-9.744000pt;}
.ws57{word-spacing:-9.696000pt;}
.ws48{word-spacing:-9.648000pt;}
.wsb{word-spacing:-9.600000pt;}
.ws49{word-spacing:-9.552000pt;}
.ws4b{word-spacing:-9.504000pt;}
.ws4a{word-spacing:-8.976000pt;}
.ws4e{word-spacing:-8.928000pt;}
.ws55{word-spacing:-8.832000pt;}
.ws53{word-spacing:-8.784000pt;}
.ws1f{word-spacing:-8.736000pt;}
.ws50{word-spacing:-8.688000pt;}
.ws32{word-spacing:-8.544000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws37{word-spacing:-8.448000pt;}
.ws52{word-spacing:-8.400000pt;}
.ws51{word-spacing:-8.352000pt;}
.ws4f{word-spacing:-7.632000pt;}
.ws2c{word-spacing:-7.524587pt;}
.ws7{word-spacing:-7.490384pt;}
.ws18{word-spacing:-7.456181pt;}
.ws1a{word-spacing:-7.440000pt;}
.ws46{word-spacing:-7.387776pt;}
.ws2a{word-spacing:-7.353573pt;}
.ws16{word-spacing:-7.319371pt;}
.ws34{word-spacing:-6.468968pt;}
.ws5a{word-spacing:-5.904000pt;}
.ws4d{word-spacing:-3.600000pt;}
.ws63{word-spacing:-2.160000pt;}
.ws5c{word-spacing:-2.112000pt;}
.ws60{word-spacing:-2.064000pt;}
.ws64{word-spacing:-0.912000pt;}
.ws5e{word-spacing:-0.864000pt;}
.ws6f{word-spacing:-0.821333pt;}
.ws72{word-spacing:-0.762667pt;}
.ws45{word-spacing:-0.720000pt;}
.ws40{word-spacing:-0.704000pt;}
.ws71{word-spacing:-0.645333pt;}
.ws3e{word-spacing:-0.586667pt;}
.ws3f{word-spacing:-0.528000pt;}
.ws41{word-spacing:-0.469333pt;}
.ws6e{word-spacing:-0.410667pt;}
.ws67{word-spacing:-0.405333pt;}
.ws70{word-spacing:-0.352000pt;}
.ws5b{word-spacing:-0.342027pt;}
.ws38{word-spacing:-0.304000pt;}
.ws3d{word-spacing:-0.293333pt;}
.ws42{word-spacing:-0.273621pt;}
.ws33{word-spacing:-0.234667pt;}
.ws2{word-spacing:-0.213333pt;}
.ws43{word-spacing:-0.192000pt;}
.ws66{word-spacing:-0.176000pt;}
.ws86{word-spacing:-0.160000pt;}
.ws26{word-spacing:-0.144000pt;}
.ws2d{word-spacing:-0.117333pt;}
.ws85{word-spacing:-0.106667pt;}
.ws3a{word-spacing:-0.101333pt;}
.ws27{word-spacing:-0.096000pt;}
.ws73{word-spacing:-0.069333pt;}
.ws78{word-spacing:-0.068405pt;}
.ws2e{word-spacing:-0.058667pt;}
.ws82{word-spacing:-0.053333pt;}
.ws68{word-spacing:-0.050667pt;}
.ws54{word-spacing:-0.048000pt;}
.ws29{word-spacing:-0.034667pt;}
.ws1{word-spacing:0.000000pt;}
.ws24{word-spacing:0.048000pt;}
.ws83{word-spacing:0.053333pt;}
.ws10{word-spacing:0.058667pt;}
.ws15{word-spacing:0.096000pt;}
.ws39{word-spacing:0.101333pt;}
.ws7c{word-spacing:0.102608pt;}
.ws81{word-spacing:0.106667pt;}
.ws21{word-spacing:0.117333pt;}
.ws23{word-spacing:0.144000pt;}
.ws69{word-spacing:0.152000pt;}
.ws84{word-spacing:0.160000pt;}
.ws22{word-spacing:0.171013pt;}
.wsf{word-spacing:0.176000pt;}
.ws11{word-spacing:0.234667pt;}
.wse{word-spacing:0.293333pt;}
.ws79{word-spacing:0.342027pt;}
.ws12{word-spacing:0.352000pt;}
.ws20{word-spacing:0.410667pt;}
.ws14{word-spacing:0.469333pt;}
.ws13{word-spacing:0.528000pt;}
.ws2f{word-spacing:0.586667pt;}
.ws44{word-spacing:0.624000pt;}
.ws30{word-spacing:0.645333pt;}
.ws31{word-spacing:0.704000pt;}
.ws3c{word-spacing:0.762667pt;}
.ws3b{word-spacing:0.821333pt;}
.ws5f{word-spacing:1.728000pt;}
.ws61{word-spacing:1.776000pt;}
.ws3{word-spacing:1.792000pt;}
.ws62{word-spacing:2.112000pt;}
.ws25{word-spacing:2.160000pt;}
.ws28{word-spacing:2.208000pt;}
.ws5d{word-spacing:2.256000pt;}
.ws87{word-spacing:2.346667pt;}
._f{margin-left:-13.669333pt;}
._7{margin-left:-12.705067pt;}
._b{margin-left:-11.618302pt;}
._9{margin-left:-10.340267pt;}
._d{margin-left:-8.898969pt;}
._4{margin-left:-5.888000pt;}
._0{margin-left:-4.864000pt;}
._1{margin-left:-3.200000pt;}
._8{margin-left:-2.299733pt;}
._2{margin-left:-1.280000pt;}
._5{width:0.948310pt;}
._3{width:2.133333pt;}
._6{width:3.096533pt;}
._a{width:4.009600pt;}
._e{width:4.968533pt;}
._c{width:6.618998pt;}
._11{width:8.411733pt;}
._12{width:81.053867pt;}
._10{width:90.464000pt;}
.fs8{font-size:29.538667pt;}
.fs4{font-size:34.202667pt;}
.fs6{font-size:34.666667pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:320.932800pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:94.488133pt;}
.y2f{bottom:94.488267pt;}
.y25a{bottom:94.488400pt;}
.y1f8{bottom:99.167600pt;}
.y26a{bottom:104.522000pt;}
.y263{bottom:111.821467pt;}
.y2e{bottom:111.821600pt;}
.y52{bottom:111.821733pt;}
.y259{bottom:111.821867pt;}
.y290{bottom:112.048133pt;}
.y1a3{bottom:114.205067pt;}
.y152{bottom:114.245600pt;}
.y170{bottom:114.554933pt;}
.y1e0{bottom:114.718000pt;}
.y1c2{bottom:114.913733pt;}
.y1f7{bottom:119.167600pt;}
.y269{bottom:124.522000pt;}
.y262{bottom:129.154800pt;}
.y12b{bottom:129.154933pt;}
.y2d{bottom:129.155067pt;}
.y73{bottom:129.155200pt;}
.y258{bottom:129.155333pt;}
.yca{bottom:129.288400pt;}
.y28f{bottom:129.608000pt;}
.y21a{bottom:129.844800pt;}
.y1a2{bottom:133.922000pt;}
.y151{bottom:134.003067pt;}
.y16f{bottom:134.621600pt;}
.y1df{bottom:134.948000pt;}
.y1c1{bottom:135.339333pt;}
.y1f6{bottom:139.167600pt;}
.y268{bottom:144.522000pt;}
.y92{bottom:145.937200pt;}
.y261{bottom:146.488133pt;}
.y12a{bottom:146.488267pt;}
.y51{bottom:146.488400pt;}
.y2c{bottom:146.488533pt;}
.y72{bottom:146.488667pt;}
.y257{bottom:146.488800pt;}
.yc9{bottom:146.755067pt;}
.y28e{bottom:146.767733pt;}
.y219{bottom:147.844800pt;}
.y133{bottom:148.655333pt;}
.y10a{bottom:149.403867pt;}
.y183{bottom:154.688400pt;}
.y1de{bottom:155.177867pt;}
.y1c0{bottom:155.764933pt;}
.y1f5{bottom:159.167600pt;}
.y236{bottom:161.167600pt;}
.y1a1{bottom:161.198000pt;}
.y150{bottom:161.319600pt;}
.y16e{bottom:162.247467pt;}
.y260{bottom:163.821467pt;}
.y129{bottom:163.821600pt;}
.y50{bottom:163.821867pt;}
.y2b{bottom:163.822000pt;}
.y71{bottom:163.822133pt;}
.y256{bottom:163.822267pt;}
.y28d{bottom:163.927600pt;}
.yc8{bottom:164.221733pt;}
.y267{bottom:164.522000pt;}
.y91{bottom:165.403867pt;}
.y132{bottom:168.522000pt;}
.y109{bottom:169.403867pt;}
.y218{bottom:173.403867pt;}
.y1bf{bottom:176.190533pt;}
.y1f4{bottom:179.167600pt;}
.yf6{bottom:180.285733pt;}
.y1a0{bottom:180.914933pt;}
.y14f{bottom:181.077067pt;}
.y28c{bottom:181.087467pt;}
.y128{bottom:181.154933pt;}
.y4f{bottom:181.155333pt;}
.y2a{bottom:181.155467pt;}
.y70{bottom:181.155600pt;}
.y255{bottom:181.155733pt;}
.yc7{bottom:181.688400pt;}
.y16d{bottom:182.314267pt;}
.y1dd{bottom:182.966800pt;}
.yae{bottom:183.952400pt;}
.y266{bottom:184.522000pt;}
.y90{bottom:184.870533pt;}
.ye1{bottom:186.726667pt;}
.y131{bottom:188.388667pt;}
.yaf{bottom:188.836400pt;}
.y108{bottom:189.403867pt;}
.y1be{bottom:196.616133pt;}
.y28b{bottom:198.247333pt;}
.y127{bottom:198.488267pt;}
.y4e{bottom:198.488667pt;}
.y29{bottom:198.488800pt;}
.y6f{bottom:198.489067pt;}
.yc6{bottom:199.155067pt;}
.yf5{bottom:200.285733pt;}
.y19f{bottom:200.631867pt;}
.y215{bottom:200.788667pt;}
.y14e{bottom:200.834533pt;}
.y217{bottom:200.962933pt;}
.y182{bottom:202.380933pt;}
.y1dc{bottom:203.196667pt;}
.yad{bottom:203.952400pt;}
.y8f{bottom:204.337200pt;}
.y265{bottom:204.522000pt;}
.y235{bottom:204.726667pt;}
.ye0{bottom:206.726667pt;}
.y130{bottom:208.255333pt;}
.y107{bottom:209.403867pt;}
.y16c{bottom:209.940000pt;}
.y28a{bottom:215.407200pt;}
.y126{bottom:215.821600pt;}
.y4d{bottom:215.822000pt;}
.y28{bottom:215.822267pt;}
.yc5{bottom:216.621733pt;}
.y1bd{bottom:217.041733pt;}
.y216{bottom:218.962933pt;}
.y253{bottom:219.113467pt;}
.yf4{bottom:220.285733pt;}
.y19e{bottom:220.348800pt;}
.y214{bottom:220.922000pt;}
.y25f{bottom:220.962933pt;}
.y181{bottom:222.447733pt;}
.y234{bottom:222.726667pt;}
.y1db{bottom:223.426533pt;}
.y8e{bottom:223.803867pt;}
.yac{bottom:223.952400pt;}
.y254{bottom:223.997467pt;}
.y264{bottom:224.522000pt;}
.ydf{bottom:226.726667pt;}
.y12f{bottom:228.122000pt;}
.y14d{bottom:228.151067pt;}
.y16b{bottom:230.006800pt;}
.y289{bottom:232.566933pt;}
.y125{bottom:233.154933pt;}
.y4c{bottom:233.155467pt;}
.y27{bottom:233.155733pt;}
.yc4{bottom:234.088400pt;}
.y6e{bottom:235.322000pt;}
.y1bc{bottom:237.467333pt;}
.y252{bottom:238.846933pt;}
.y25e{bottom:240.962933pt;}
.y213{bottom:241.055333pt;}
.y8d{bottom:243.270533pt;}
.y1da{bottom:243.656533pt;}
.yab{bottom:243.952400pt;}
.y106{bottom:244.522000pt;}
.yde{bottom:246.726667pt;}
.y19d{bottom:247.624800pt;}
.yf3{bottom:247.844800pt;}
.y14c{bottom:247.908400pt;}
.y12e{bottom:247.988667pt;}
.y233{bottom:248.285733pt;}
.y288{bottom:249.726800pt;}
.y16a{bottom:250.073467pt;}
.y124{bottom:250.488267pt;}
.y4b{bottom:250.488800pt;}
.y26{bottom:250.489067pt;}
.yc3{bottom:251.555067pt;}
.y6d{bottom:254.922000pt;}
.y1bb{bottom:257.892800pt;}
.y251{bottom:258.580267pt;}
.y25d{bottom:260.962933pt;}
.y212{bottom:261.188667pt;}
.y8c{bottom:262.737200pt;}
.y1d9{bottom:263.886400pt;}
.yaa{bottom:263.952400pt;}
.y105{bottom:264.522000pt;}
.yf2{bottom:265.844800pt;}
.y232{bottom:266.285733pt;}
.ydd{bottom:266.726667pt;}
.y287{bottom:266.886667pt;}
.y19c{bottom:267.341733pt;}
.y14b{bottom:267.666000pt;}
.y123{bottom:267.821600pt;}
.y4a{bottom:267.822133pt;}
.y12d{bottom:267.855333pt;}
.yc2{bottom:269.021733pt;}
.y180{bottom:270.140267pt;}
.y1f3{bottom:274.285733pt;}
.y6c{bottom:274.522000pt;}
.y169{bottom:277.699333pt;}
.y250{bottom:278.313467pt;}
.y1ba{bottom:278.318400pt;}
.y25c{bottom:278.962933pt;}
.y211{bottom:281.322000pt;}
.y8b{bottom:282.203867pt;}
.yf1{bottom:283.844800pt;}
.ya9{bottom:283.952400pt;}
.y286{bottom:284.046533pt;}
.y1d8{bottom:284.116267pt;}
.y104{bottom:284.522000pt;}
.y122{bottom:285.154933pt;}
.y49{bottom:285.155600pt;}
.yc1{bottom:286.488400pt;}
.ydc{bottom:286.726667pt;}
.y19b{bottom:287.058533pt;}
.y25{bottom:287.588667pt;}
.y12c{bottom:287.722000pt;}
.y17f{bottom:290.206933pt;}
.y231{bottom:291.844800pt;}
.y6b{bottom:294.122000pt;}
.y1f2{bottom:294.285733pt;}
.y14a{bottom:294.982400pt;}
.y24f{bottom:298.046933pt;}
.y1b9{bottom:298.744000pt;}
.y285{bottom:301.206400pt;}
.y210{bottom:301.455333pt;}
.y8a{bottom:301.670533pt;}
.yf0{bottom:301.844800pt;}
.y121{bottom:302.488267pt;}
.y48{bottom:302.488933pt;}
.yc0{bottom:303.955067pt;}
.y1d7{bottom:304.346133pt;}
.y103{bottom:304.522000pt;}
.y168{bottom:305.325067pt;}
.ydb{bottom:306.726667pt;}
.y19a{bottom:306.775467pt;}
.y24{bottom:307.588667pt;}
.y230{bottom:309.844800pt;}
.ya8{bottom:311.511467pt;}
.y6a{bottom:313.722000pt;}
.y149{bottom:314.739867pt;}
.y2ab{bottom:315.590000pt;}
.y24e{bottom:317.780133pt;}
.y17e{bottom:317.832800pt;}
.y284{bottom:318.366267pt;}
.y1b8{bottom:319.169600pt;}
.y120{bottom:319.821600pt;}
.yef{bottom:319.844800pt;}
.y89{bottom:321.137200pt;}
.ybf{bottom:321.421733pt;}
.y20f{bottom:321.588667pt;}
.y1f1{bottom:321.844800pt;}
.y102{bottom:324.522000pt;}
.y1d6{bottom:324.576133pt;}
.y167{bottom:325.391867pt;}
.y199{bottom:326.492533pt;}
.yda{bottom:326.726667pt;}
.y23{bottom:327.455333pt;}
.y22f{bottom:327.844800pt;}
.ya7{bottom:331.511467pt;}
.y2aa{bottom:332.923333pt;}
.y69{bottom:333.322000pt;}
.y148{bottom:334.497333pt;}
.y283{bottom:335.526000pt;}
.y11f{bottom:337.154933pt;}
.y24d{bottom:337.513600pt;}
.yee{bottom:337.844800pt;}
.y17d{bottom:337.899600pt;}
.ybe{bottom:338.888400pt;}
.y1b7{bottom:339.595200pt;}
.y47{bottom:340.322000pt;}
.y88{bottom:340.603867pt;}
.y20e{bottom:341.722000pt;}
.y1f0{bottom:341.844800pt;}
.y101{bottom:344.522000pt;}
.y1d5{bottom:344.806000pt;}
.y166{bottom:345.458533pt;}
.y198{bottom:346.209333pt;}
.yd9{bottom:346.726667pt;}
.y22{bottom:347.322000pt;}
.ya6{bottom:349.511467pt;}
.y2a9{bottom:350.256667pt;}
.y282{bottom:352.685867pt;}
.y68{bottom:352.922000pt;}
.y22e{bottom:353.403867pt;}
.y147{bottom:354.254800pt;}
.yed{bottom:355.844800pt;}
.ybd{bottom:356.355067pt;}
.y24c{bottom:357.246933pt;}
.y17c{bottom:357.966267pt;}
.y1b6{bottom:360.020800pt;}
.y87{bottom:360.070533pt;}
.y46{bottom:360.522000pt;}
.y1ef{bottom:361.844800pt;}
.y20d{bottom:361.855333pt;}
.y100{bottom:364.522000pt;}
.y197{bottom:365.926267pt;}
.yd8{bottom:366.726667pt;}
.y21{bottom:367.188667pt;}
.y2a8{bottom:367.590000pt;}
.y281{bottom:369.845733pt;}
.y67{bottom:372.522000pt;}
.y11e{bottom:372.565200pt;}
.y1d4{bottom:372.594933pt;}
.y165{bottom:373.084400pt;}
.y22d{bottom:373.403867pt;}
.ybc{bottom:373.821867pt;}
.yec{bottom:373.844800pt;}
.y146{bottom:374.012267pt;}
.ya5{bottom:375.070533pt;}
.y24b{bottom:376.980133pt;}
.y17b{bottom:378.032933pt;}
.y1b5{bottom:380.446400pt;}
.y45{bottom:380.722000pt;}
.y1ee{bottom:381.844800pt;}
.y20c{bottom:381.988667pt;}
.yff{bottom:384.522000pt;}
.y8{bottom:384.613467pt;}
.y2a7{bottom:384.923333pt;}
.yd7{bottom:386.726667pt;}
.y280{bottom:387.005600pt;}
.y20{bottom:387.055333pt;}
.ybb{bottom:391.155200pt;}
.yeb{bottom:391.844800pt;}
.y66{bottom:392.122000pt;}
.y1d3{bottom:392.824800pt;}
.y11d{bottom:392.831867pt;}
.y164{bottom:393.151067pt;}
.y196{bottom:393.202267pt;}
.y22c{bottom:393.403867pt;}
.y86{bottom:394.655333pt;}
.ya4{bottom:395.403867pt;}
.y24a{bottom:396.713600pt;}
.y17a{bottom:398.099733pt;}
.y1b4{bottom:400.872000pt;}
.y44{bottom:400.922000pt;}
.y4{bottom:401.528933pt;}
.y1ed{bottom:401.844800pt;}
.y2a6{bottom:401.856667pt;}
.y20b{bottom:402.122000pt;}
.y27f{bottom:404.165467pt;}
.yfe{bottom:404.522000pt;}
.yd6{bottom:406.726667pt;}
.y1f{bottom:406.922000pt;}
.yba{bottom:408.488533pt;}
.y145{bottom:408.887867pt;}
.yea{bottom:409.844800pt;}
.y65{bottom:411.722000pt;}
.y195{bottom:412.919200pt;}
.y1d2{bottom:413.054667pt;}
.y11c{bottom:413.098533pt;}
.y163{bottom:413.217867pt;}
.y22b{bottom:413.403867pt;}
.y85{bottom:414.122000pt;}
.ya3{bottom:415.737200pt;}
.y249{bottom:416.446800pt;}
.y3{bottom:417.528933pt;}
.y2a5{bottom:418.790000pt;}
.y43{bottom:421.122000pt;}
.y1b3{bottom:421.297467pt;}
.y27e{bottom:421.325200pt;}
.y20a{bottom:422.255333pt;}
.yfd{bottom:424.522000pt;}
.y179{bottom:425.725600pt;}
.yb9{bottom:425.821867pt;}
.yd5{bottom:426.726667pt;}
.y1e{bottom:426.788667pt;}
.ye9{bottom:427.844800pt;}
.y144{bottom:428.645200pt;}
.y1ec{bottom:429.403867pt;}
.y64{bottom:431.322000pt;}
.y194{bottom:432.636133pt;}
.y162{bottom:433.284533pt;}
.y11b{bottom:433.365200pt;}
.y22a{bottom:433.403867pt;}
.y84{bottom:433.588667pt;}
.ya2{bottom:436.070533pt;}
.y2a4{bottom:436.123333pt;}
.y248{bottom:436.180133pt;}
.y27d{bottom:438.485067pt;}
.y42{bottom:441.322000pt;}
.y1b2{bottom:441.723200pt;}
.y209{bottom:442.388667pt;}
.yb8{bottom:443.155200pt;}
.yfc{bottom:444.522000pt;}
.ye8{bottom:445.844800pt;}
.y1d{bottom:446.655333pt;}
.yd4{bottom:446.726667pt;}
.y143{bottom:448.402667pt;}
.y1eb{bottom:449.403867pt;}
.y63{bottom:450.922000pt;}
.y193{bottom:452.353067pt;}
.y83{bottom:453.055333pt;}
.y178{bottom:453.351333pt;}
.y229{bottom:453.403867pt;}
.y2a3{bottom:453.456667pt;}
.y1d1{bottom:453.514533pt;}
.y11a{bottom:453.631867pt;}
.y27c{bottom:455.644933pt;}
.y247{bottom:455.913600pt;}
.ya1{bottom:456.403867pt;}
.yb7{bottom:460.488533pt;}
.y161{bottom:460.910400pt;}
.y41{bottom:461.522000pt;}
.y1b1{bottom:462.148667pt;}
.y208{bottom:462.522000pt;}
.y2{bottom:462.968400pt;}
.ye7{bottom:463.844800pt;}
.yfb{bottom:464.522000pt;}
.y1b{bottom:466.522000pt;}
.yd3{bottom:466.726667pt;}
.y142{bottom:468.160133pt;}
.y1ea{bottom:469.403867pt;}
.y62{bottom:470.522000pt;}
.y2a2{bottom:470.790000pt;}
.y1c{bottom:471.406000pt;}
.y192{bottom:472.070000pt;}
.y82{bottom:472.522000pt;}
.y27b{bottom:472.804800pt;}
.y228{bottom:473.403867pt;}
.y177{bottom:473.418133pt;}
.y1d0{bottom:473.744400pt;}
.y119{bottom:473.898533pt;}
.y246{bottom:475.646933pt;}
.ya0{bottom:476.737200pt;}
.yb6{bottom:477.821867pt;}
.y1{bottom:478.968400pt;}
.y160{bottom:480.977067pt;}
.y40{bottom:481.722000pt;}
.y1b0{bottom:482.574267pt;}
.y207{bottom:482.655333pt;}
.yfa{bottom:484.522000pt;}
.y1a{bottom:486.388667pt;}
.y141{bottom:487.917600pt;}
.y2a1{bottom:488.123333pt;}
.ye6{bottom:489.403867pt;}
.y27a{bottom:489.964533pt;}
.y61{bottom:490.122000pt;}
.y191{bottom:491.786933pt;}
.y81{bottom:491.988667pt;}
.y227{bottom:493.403867pt;}
.y1cf{bottom:493.974267pt;}
.y118{bottom:494.165200pt;}
.yb5{bottom:495.155200pt;}
.y245{bottom:495.380267pt;}
.y9f{bottom:497.070533pt;}
.y9{bottom:499.743067pt;}
.y15f{bottom:501.043867pt;}
.yd2{bottom:501.844800pt;}
.y3f{bottom:501.922000pt;}
.y206{bottom:502.788667pt;}
.y1af{bottom:502.999867pt;}
.yf9{bottom:504.522000pt;}
.y2a0{bottom:505.456667pt;}
.y18{bottom:506.255333pt;}
.y279{bottom:507.124400pt;}
.y140{bottom:507.675067pt;}
.ye5{bottom:509.403867pt;}
.y60{bottom:509.722000pt;}
.y19{bottom:511.139333pt;}
.y80{bottom:511.455333pt;}
.y190{bottom:511.503867pt;}
.yb4{bottom:512.488533pt;}
.y226{bottom:513.403867pt;}
.y1ce{bottom:514.204133pt;}
.y117{bottom:514.431867pt;}
.y244{bottom:515.113467pt;}
.y15e{bottom:521.110667pt;}
.yd1{bottom:521.844800pt;}
.y3d{bottom:522.122000pt;}
.y29f{bottom:522.790000pt;}
.y205{bottom:522.922000pt;}
.y1ae{bottom:523.425467pt;}
.y278{bottom:524.284267pt;}
.yf8{bottom:524.522000pt;}
.y9e{bottom:524.962933pt;}
.y16{bottom:526.122000pt;}
.y3e{bottom:527.006000pt;}
.y13f{bottom:527.432533pt;}
.y5f{bottom:529.322000pt;}
.ye4{bottom:529.403867pt;}
.yb3{bottom:529.821867pt;}
.y7f{bottom:530.922000pt;}
.y17{bottom:531.006000pt;}
.y18f{bottom:531.220800pt;}
.y225{bottom:533.403867pt;}
.y1cd{bottom:534.434133pt;}
.y116{bottom:534.698533pt;}
.y242{bottom:534.846800pt;}
.y243{bottom:539.730800pt;}
.y29e{bottom:540.123333pt;}
.y15d{bottom:541.177333pt;}
.y277{bottom:541.444133pt;}
.yd0{bottom:541.844800pt;}
.y3c{bottom:542.322000pt;}
.y9d{bottom:542.962933pt;}
.y204{bottom:543.055333pt;}
.y1ad{bottom:543.851067pt;}
.yf7{bottom:544.522000pt;}
.y15{bottom:545.988667pt;}
.yb2{bottom:547.155200pt;}
.y13e{bottom:547.190000pt;}
.y176{bottom:548.736400pt;}
.y5e{bottom:548.922000pt;}
.y1e9{bottom:549.403867pt;}
.y25b{bottom:549.406000pt;}
.y7e{bottom:550.388667pt;}
.y18e{bottom:550.937600pt;}
.y224{bottom:553.403867pt;}
.y241{bottom:554.580267pt;}
.y1cc{bottom:554.664000pt;}
.y29d{bottom:557.456667pt;}
.y276{bottom:558.604000pt;}
.y9c{bottom:560.962933pt;}
.y15c{bottom:561.244133pt;}
.ycf{bottom:561.844800pt;}
.y3b{bottom:562.522000pt;}
.y115{bottom:562.524267pt;}
.y203{bottom:563.188667pt;}
.y1ac{bottom:564.276667pt;}
.yb1{bottom:564.488533pt;}
.ye3{bottom:564.522000pt;}
.y13{bottom:565.855333pt;}
.y13d{bottom:566.947467pt;}
.y5d{bottom:568.522000pt;}
.y175{bottom:568.803200pt;}
.y1e8{bottom:569.403867pt;}
.y7d{bottom:569.855333pt;}
.y18d{bottom:570.654667pt;}
.y14{bottom:570.739333pt;}
.y223{bottom:573.403867pt;}
.y240{bottom:574.313600pt;}
.y29c{bottom:574.790000pt;}
.y275{bottom:575.763867pt;}
.y9b{bottom:578.962933pt;}
.y15b{bottom:581.310933pt;}
.yce{bottom:581.844800pt;}
.y1cb{bottom:582.452933pt;}
.y3a{bottom:582.722000pt;}
.y114{bottom:582.724267pt;}
.y202{bottom:583.322000pt;}
.ye2{bottom:584.522000pt;}
.y1ab{bottom:584.702267pt;}
.y12{bottom:585.722000pt;}
.y13c{bottom:586.704933pt;}
.y5c{bottom:588.122000pt;}
.y174{bottom:588.869867pt;}
.y7c{bottom:589.322000pt;}
.y1e7{bottom:589.403867pt;}
.y18c{bottom:590.371467pt;}
.y29b{bottom:592.123333pt;}
.y274{bottom:592.923600pt;}
.y222{bottom:593.403867pt;}
.y23f{bottom:594.046933pt;}
.ycd{bottom:601.844800pt;}
.y1ca{bottom:602.682800pt;}
.y39{bottom:602.922000pt;}
.y113{bottom:602.924267pt;}
.y201{bottom:603.455333pt;}
.y9a{bottom:604.522000pt;}
.y1aa{bottom:605.127867pt;}
.y11{bottom:605.588667pt;}
.y13b{bottom:606.462267pt;}
.y5b{bottom:607.722000pt;}
.y7b{bottom:608.788667pt;}
.y15a{bottom:608.936667pt;}
.y1e6{bottom:609.403867pt;}
.y29a{bottom:609.456667pt;}
.y273{bottom:610.083467pt;}
.y18b{bottom:610.088400pt;}
.y221{bottom:613.403867pt;}
.y23e{bottom:613.780133pt;}
.ycc{bottom:621.844800pt;}
.y1c9{bottom:622.912667pt;}
.y38{bottom:623.122000pt;}
.y112{bottom:623.124267pt;}
.y200{bottom:623.588667pt;}
.y99{bottom:624.522000pt;}
.y10{bottom:625.455333pt;}
.y1a9{bottom:625.553333pt;}
.y13a{bottom:626.219867pt;}
.y299{bottom:626.790000pt;}
.y272{bottom:627.243333pt;}
.y5a{bottom:627.322000pt;}
.y7a{bottom:628.255333pt;}
.y159{bottom:629.003467pt;}
.y220{bottom:633.403867pt;}
.y23d{bottom:633.513467pt;}
.y173{bottom:636.562400pt;}
.y1e5{bottom:636.962933pt;}
.y18a{bottom:637.364400pt;}
.y1c8{bottom:643.142667pt;}
.y37{bottom:643.322000pt;}
.y111{bottom:643.324267pt;}
.y1ff{bottom:643.722000pt;}
.y298{bottom:644.123333pt;}
.y271{bottom:644.403200pt;}
.y98{bottom:644.522000pt;}
.yf{bottom:645.322000pt;}
.y139{bottom:645.977200pt;}
.y1a8{bottom:645.979067pt;}
.y59{bottom:646.922000pt;}
.y79{bottom:647.722000pt;}
.y158{bottom:649.070133pt;}
.ycb{bottom:649.403867pt;}
.y21f{bottom:653.403867pt;}
.y172{bottom:656.629200pt;}
.y1e4{bottom:656.962933pt;}
.y189{bottom:657.081333pt;}
.y23c{bottom:660.805867pt;}
.y297{bottom:661.456667pt;}
.y270{bottom:661.562933pt;}
.y1c7{bottom:663.372533pt;}
.y36{bottom:663.522000pt;}
.y110{bottom:663.524267pt;}
.y1fe{bottom:663.855333pt;}
.y97{bottom:664.522000pt;}
.ye{bottom:665.188667pt;}
.y138{bottom:665.734667pt;}
.y1a7{bottom:666.404533pt;}
.y58{bottom:666.522000pt;}
.y78{bottom:667.188667pt;}
.y157{bottom:669.136933pt;}
.y21e{bottom:673.403867pt;}
.y171{bottom:676.696000pt;}
.y1e3{bottom:676.962933pt;}
.y26f{bottom:678.722800pt;}
.y296{bottom:678.790000pt;}
.y23b{bottom:678.805867pt;}
.y1c6{bottom:683.602400pt;}
.y35{bottom:683.722000pt;}
.y10f{bottom:683.724267pt;}
.y1fd{bottom:683.988667pt;}
.y188{bottom:684.357333pt;}
.y96{bottom:684.522000pt;}
.yd{bottom:685.055333pt;}
.y137{bottom:685.492133pt;}
.y57{bottom:686.122000pt;}
.y77{bottom:686.655333pt;}
.y1a6{bottom:686.830133pt;}
.y21d{bottom:693.403867pt;}
.y26e{bottom:695.882667pt;}
.y295{bottom:696.123333pt;}
.y156{bottom:696.762667pt;}
.y1e2{bottom:696.962933pt;}
.y1c5{bottom:703.832267pt;}
.y34{bottom:703.922000pt;}
.y10e{bottom:703.924267pt;}
.y187{bottom:704.074267pt;}
.y1fc{bottom:704.122000pt;}
.y23a{bottom:704.364933pt;}
.y95{bottom:704.522000pt;}
.yc{bottom:704.922000pt;}
.y136{bottom:705.249600pt;}
.y56{bottom:705.722000pt;}
.y76{bottom:706.122000pt;}
.yb0{bottom:709.406000pt;}
.y26d{bottom:713.042533pt;}
.y294{bottom:713.456667pt;}
.y1a5{bottom:714.814800pt;}
.y1e1{bottom:716.962933pt;}
.y21c{bottom:720.962933pt;}
.y239{bottom:722.364933pt;}
.y186{bottom:723.791200pt;}
.y1c4{bottom:724.062133pt;}
.y33{bottom:724.122000pt;}
.y10d{bottom:724.124267pt;}
.y1fb{bottom:724.255333pt;}
.y155{bottom:724.388533pt;}
.y94{bottom:724.522000pt;}
.ya{bottom:724.788667pt;}
.y135{bottom:725.007067pt;}
.y55{bottom:725.322000pt;}
.y75{bottom:725.588667pt;}
.y26c{bottom:730.202267pt;}
.y293{bottom:730.790000pt;}
.y1a4{bottom:735.240400pt;}
.y21b{bottom:738.962933pt;}
.y6{bottom:739.986000pt;}
.y185{bottom:743.508000pt;}
.y1c3{bottom:744.292133pt;}
.y32{bottom:744.322000pt;}
.y10c{bottom:744.324267pt;}
.y1f9{bottom:744.388667pt;}
.y154{bottom:744.455200pt;}
.y93{bottom:744.522000pt;}
.yb{bottom:744.655333pt;}
.y134{bottom:744.764533pt;}
.y54{bottom:744.922000pt;}
.y74{bottom:745.055333pt;}
.y26b{bottom:747.362133pt;}
.y238{bottom:747.924000pt;}
.y292{bottom:748.123333pt;}
.y1fa{bottom:749.272667pt;}
.y5{bottom:762.652667pt;}
.y184{bottom:763.225067pt;}
.y31{bottom:764.522000pt;}
.y10b{bottom:764.524267pt;}
.y291{bottom:765.456667pt;}
.y237{bottom:765.924000pt;}
.y53{bottom:774.803200pt;}
.y30{bottom:827.296000pt;}
.y7{bottom:841.165333pt;}
.hc{height:29.482699pt;}
.h10{height:30.090667pt;}
.h7{height:30.293333pt;}
.hf{height:34.590400pt;}
.h3{height:36.778667pt;}
.h4{height:37.034667pt;}
.h16{height:37.476562pt;}
.h2{height:38.741333pt;}
.h17{height:39.645833pt;}
.h14{height:41.125333pt;}
.hd{height:41.376000pt;}
.he{height:41.664000pt;}
.h8{height:42.277156pt;}
.h13{height:43.674667pt;}
.h12{height:43.978667pt;}
.h18{height:45.973333pt;}
.h19{height:46.293333pt;}
.h11{height:46.640000pt;}
.h6{height:48.602667pt;}
.ha{height:50.570667pt;}
.hb{height:50.922667pt;}
.h15{height:54.713542pt;}
.h5{height:55.120000pt;}
.h9{height:276.644074pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.xd{left:36.876267pt;}
.x3{left:91.760267pt;}
.x1{left:94.488133pt;}
.x19{left:113.385867pt;}
.x4{left:117.916267pt;}
.x10{left:120.944933pt;}
.x2{left:122.097733pt;}
.x21{left:128.526400pt;}
.x1c{left:133.116533pt;}
.x1d{left:134.276000pt;}
.x22{left:135.968000pt;}
.x1e{left:141.790000pt;}
.x17{left:150.892667pt;}
.x18{left:158.850533pt;}
.xe{left:175.253600pt;}
.xf{left:183.394800pt;}
.x1b{left:258.659467pt;}
.x1a{left:291.883467pt;}
.x26{left:308.144267pt;}
.x7{left:319.345200pt;}
.x8{left:323.275333pt;}
.x5{left:393.066667pt;}
.x6{left:397.181733pt;}
.x9{left:461.892267pt;}
.xa{left:465.930533pt;}
.x15{left:482.504533pt;}
.x23{left:483.614133pt;}
.x16{left:490.712133pt;}
.x24{left:491.995333pt;}
.x1f{left:505.476800pt;}
.x20{left:510.086000pt;}
.x25{left:521.208000pt;}
.x13{left:524.028667pt;}
.xb{left:524.992800pt;}
.xc{left:529.134000pt;}
.x11{left:566.178133pt;}
.x14{left:567.240133pt;}
.x12{left:574.082267pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  