
    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_f7293e51e43eaaf65f7396cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_bbc2074b83a710a9d3e6c98c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.132812;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_42c3f128e6fe7f5a8b83ed4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136719;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_73b8c319730fd53c344952dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128906;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_611d18d63a4d266d0c9764c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979024;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_e4e2fcee54d2d9e7aaa02adc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_6f1398304e9bf998a6a6a131.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.026367;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_0fc3cb0958a1126c960a3788.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970703;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_aff854a747cacbd5b77321b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.136719;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_a8c91cac05a2ac12776e2ed9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.857000;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_37e4d1d5bf2f2ab03ad24964.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_a8c91cac05a2ac12776e2ed9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.857000;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_37e4d1d5bf2f2ab03ad24964.woff2')format("woff");}.fff{font-family:fff;line-height:0.898000;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_0bffdfdd02a0e22a0caf03a8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.973633;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;}
.m8{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);}
.m117{transform:matrix(0.237858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237858,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.238723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238723,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.240458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240458,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.241969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241969,0.000000,0.000000,0.250000,0,0);}
.m119{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);}
.m194{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.243977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243977,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m75{transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245146,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.245154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245154,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);}
.m19e{transform:matrix(0.245348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245348,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.245373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245373,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.245387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245387,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.245392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245392,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.245433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245433,0.000000,0.000000,0.250000,0,0);}
.m195{transform:matrix(0.245444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245444,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245490,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.245519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245519,0.000000,0.000000,0.250000,0,0);}
.m1b4{transform:matrix(0.245562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245562,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m87{transform:matrix(0.245613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245613,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.245619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245619,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.m177{transform:matrix(0.245706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245706,0.000000,0.000000,0.250000,0,0);}
.m1a6{transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m9b{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245858,0.000000,0.000000,0.250000,0,0);}
.m1ac{transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.245904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245904,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.245919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245919,0.000000,0.000000,0.250000,0,0);}
.m19a{transform:matrix(0.246044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246044,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.246202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246202,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246227,0.000000,0.000000,0.250000,0,0);}
.ma5{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);}
.mb0{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);}
.m80{transform:matrix(0.246321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246321,0.000000,0.000000,0.250000,0,0);}
.m191{transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.246348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246348,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.246413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246413,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246442,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.246454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246454,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.246542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246542,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);}
.m178{transform:matrix(0.246552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246552,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.246558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246558,0.000000,0.000000,0.250000,0,0);}
.m17e{transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);}
.m1b7{transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.246727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246727,0.000000,0.000000,0.250000,0,0);}
.m186{transform:matrix(0.246746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246746,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.246794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246794,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246821,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.246892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246892,0.000000,0.000000,0.250000,0,0);}
.m184{transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.246977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246977,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.246998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246998,0.000000,0.000000,0.250000,0,0);}
.m1b6{transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247081,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247092,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247117,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247242,0.000000,0.000000,0.250000,0,0);}
.m187{transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);}
.m185{transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247258,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247308,0.000000,0.000000,0.250000,0,0);}
.mbf{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);}
.m190{transform:matrix(0.247342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247342,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.247348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247348,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.247438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247438,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m29{transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.247504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247504,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247631,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247733,0.000000,0.000000,0.250000,0,0);}
.m6f{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);}
.m1ab{transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247763,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m64{transform:matrix(0.247806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247806,0.000000,0.000000,0.250000,0,0);}
.m1b1{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247817,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247846,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247856,0.000000,0.000000,0.250000,0,0);}
.m1a9{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);}
.m53{transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247908,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247956,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247967,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248002,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248027,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248060,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248087,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248094,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248106,0.000000,0.000000,0.250000,0,0);}
.m1b3{transform:matrix(0.248129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248129,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248217,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248223,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.248283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248283,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);}
.m15f{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);}
.m16{transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.248444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248444,0.000000,0.000000,0.250000,0,0);}
.m1a3{transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248467,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248473,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248533,0.000000,0.000000,0.250000,0,0);}
.m17c{transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248544,0.000000,0.000000,0.250000,0,0);}
.m183{transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);}
.m18a{transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248583,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248621,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);}
.m17f{transform:matrix(0.248719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248719,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248740,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248767,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.m124{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);}
.m1aa{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248817,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248892,0.000000,0.000000,0.250000,0,0);}
.m63{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);}
.m74{transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);}
.m1a2{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248979,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249021,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);}
.m1af{transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249096,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.249137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249137,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m1ae{transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249154,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249169,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249181,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.249204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249204,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249206,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m17b{transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249231,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249256,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m182{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.249333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249333,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249354,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m173{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249506,0.000000,0.000000,0.250000,0,0);}
.m188{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m189{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m1b2{transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249573,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.m1ad{transform:matrix(0.249604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249604,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249621,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.249654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249654,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249679,0.000000,0.000000,0.250000,0,0);}
.m1a1{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249727,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249758,0.000000,0.000000,0.250000,0,0);}
.m181{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m193{transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249823,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m19c{transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m1b5{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.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);}
.m169{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.m197{transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250083,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250210,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m1a0{transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m18b{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250585,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250621,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);}
.m199{transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250652,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m18c{transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m153{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);}
.mde{transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250883,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.250904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250904,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.m1b0{transform:matrix(0.250981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250981,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250994,0.000000,0.000000,0.250000,0,0);}
.m18d{transform:matrix(0.251083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251083,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251098,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);}
.m170{transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.m18f{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.251204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251204,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251206,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.m198{transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251342,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251346,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.251371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251371,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m192{transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.251431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251431,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251437,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251454,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251527,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251558,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);}
.m19b{transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.251633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251633,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.251637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251637,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251702,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251710,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.251719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251719,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251742,0.000000,0.000000,0.250000,0,0);}
.m196{transform:matrix(0.251819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251819,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.251854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251854,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.251977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251977,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.252004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252004,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252025,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.252048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252048,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252119,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252123,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252156,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252169,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252281,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);}
.mce{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);}
.mb{transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);}
.m17a{transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252492,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252496,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.252515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252515,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.252517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252517,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);}
.m1a4{transform:matrix(0.252571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252571,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.252631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252631,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);}
.m19d{transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.252846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252846,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252854,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.252904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252904,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.252917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252917,0.000000,0.000000,0.250000,0,0);}
.m1a7{transform:matrix(0.252919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252919,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.252954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252954,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.252958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252958,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.252962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252962,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253002,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.253019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253019,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.253098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253098,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.253138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253138,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253194,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.253196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253196,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.253210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253210,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253244,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.253304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253304,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.253306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253306,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.253318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253318,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.253319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253319,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.253323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253323,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253354,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253410,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.m133{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);}
.mab{transform:matrix(0.253548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253548,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.253627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253627,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);}
.m1a8{transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);}
.m19f{transform:matrix(0.253819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253819,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253855,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.253883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253883,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.254173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254173,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.254242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254242,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.254285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254285,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.254327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254327,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.254331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254331,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.254369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254369,0.000000,0.000000,0.250000,0,0);}
.m180{transform:matrix(0.254442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254442,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.254527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254527,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.254544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254544,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.254548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254548,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);}
.m18e{transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254946,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.254971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254971,0.000000,0.000000,0.250000,0,0);}
.m1a5{transform:matrix(0.254987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254987,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:35.964000px;}
.ls46{letter-spacing:-8.568000px;}
.ls1b{letter-spacing:-2.160000px;}
.lsd{letter-spacing:-1.728000px;}
.ls1a{letter-spacing:-1.656000px;}
.ls44{letter-spacing:-1.584000px;}
.ls1c{letter-spacing:-1.512000px;}
.ls40{letter-spacing:-1.224000px;}
.ls1e{letter-spacing:-1.152000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-1.008000px;}
.ls25{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.864000px;}
.ls10{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.648000px;}
.ls16{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.432000px;}
.ls33{letter-spacing:-0.396000px;}
.ls11{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.216000px;}
.ls41{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.144000px;}
.ls3e{letter-spacing:-0.120000px;}
.ls12{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.066000px;}
.ls2d{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.010800px;}
.ls29{letter-spacing:0.013080px;}
.ls3f{letter-spacing:0.060000px;}
.ls31{letter-spacing:0.066000px;}
.ls23{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.216000px;}
.ls3d{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.456000px;}
.ls8{letter-spacing:0.480000px;}
.ls20{letter-spacing:0.504000px;}
.ls34{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.660000px;}
.ls2f{letter-spacing:0.720000px;}
.ls36{letter-spacing:0.792000px;}
.ls37{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.936000px;}
.ls2e{letter-spacing:1.008000px;}
.ls30{letter-spacing:1.080000px;}
.ls38{letter-spacing:1.152000px;}
.ls3b{letter-spacing:1.224000px;}
.ls22{letter-spacing:1.323882px;}
.ls43{letter-spacing:1.440000px;}
.ls3a{letter-spacing:1.584000px;}
.ls39{letter-spacing:1.656000px;}
.ls7{letter-spacing:1.890000px;}
.lsc{letter-spacing:2.520000px;}
.ls5{letter-spacing:2.706000px;}
.lse{letter-spacing:2.940000px;}
.ls2{letter-spacing:3.780000px;}
.ls1{letter-spacing:4.200000px;}
.ls45{letter-spacing:4.764588px;}
.ls3c{letter-spacing:6.120000px;}
.ls21{letter-spacing:37.500000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-105.840000px;}
.ws3e{word-spacing:-37.500000px;}
.ws42{word-spacing:-24.437537px;}
.ws3d{word-spacing:-24.341246px;}
.ws28{word-spacing:-23.856000px;}
.ws1f{word-spacing:-20.376000px;}
.ws82{word-spacing:-18.936000px;}
.ws80{word-spacing:-18.432000px;}
.ws78{word-spacing:-18.360000px;}
.ws7c{word-spacing:-18.288000px;}
.ws6f{word-spacing:-18.072000px;}
.ws77{word-spacing:-18.000000px;}
.ws2a{word-spacing:-17.928000px;}
.ws1e{word-spacing:-17.856000px;}
.ws6e{word-spacing:-17.784000px;}
.ws81{word-spacing:-17.712000px;}
.ws6d{word-spacing:-17.640000px;}
.ws54{word-spacing:-17.568000px;}
.ws63{word-spacing:-17.496000px;}
.ws55{word-spacing:-17.352000px;}
.ws43{word-spacing:-17.280000px;}
.ws7a{word-spacing:-17.208000px;}
.ws79{word-spacing:-16.776000px;}
.ws86{word-spacing:-16.434000px;}
.ws7b{word-spacing:-16.200000px;}
.ws5b{word-spacing:-16.170000px;}
.ws4{word-spacing:-15.678036px;}
.ws25{word-spacing:-15.408000px;}
.ws5{word-spacing:-15.060000px;}
.ws6{word-spacing:-14.880000px;}
.wsa{word-spacing:-12.432000px;}
.wsb{word-spacing:-11.952000px;}
.ws23{word-spacing:-11.520000px;}
.ws29{word-spacing:-10.410048px;}
.ws24{word-spacing:-7.704000px;}
.ws21{word-spacing:-7.632000px;}
.ws2{word-spacing:-5.076000px;}
.wse{word-spacing:-4.092000px;}
.ws27{word-spacing:-3.456000px;}
.ws26{word-spacing:-3.096000px;}
.ws33{word-spacing:-2.940000px;}
.ws11{word-spacing:-2.904000px;}
.ws20{word-spacing:-2.520000px;}
.ws7d{word-spacing:-2.448000px;}
.ws1{word-spacing:-2.040000px;}
.ws64{word-spacing:-2.016000px;}
.ws36{word-spacing:-1.872000px;}
.ws3{word-spacing:-1.836000px;}
.ws34{word-spacing:-1.800000px;}
.ws4b{word-spacing:-1.728000px;}
.ws40{word-spacing:-1.656000px;}
.ws60{word-spacing:-1.650000px;}
.wsf{word-spacing:-1.584000px;}
.ws76{word-spacing:-1.512000px;}
.ws70{word-spacing:-1.500000px;}
.ws6c{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.428000px;}
.ws56{word-spacing:-1.368000px;}
.ws14{word-spacing:-1.296000px;}
.wsc{word-spacing:-1.254000px;}
.ws22{word-spacing:-1.224000px;}
.ws50{word-spacing:-1.152000px;}
.ws84{word-spacing:-1.080000px;}
.ws73{word-spacing:-1.020000px;}
.ws4d{word-spacing:-1.008000px;}
.ws12{word-spacing:-0.918000px;}
.ws51{word-spacing:-0.864000px;}
.ws58{word-spacing:-0.792000px;}
.ws62{word-spacing:-0.726000px;}
.ws4c{word-spacing:-0.720000px;}
.ws65{word-spacing:-0.648000px;}
.ws4e{word-spacing:-0.600000px;}
.ws59{word-spacing:-0.576000px;}
.ws5c{word-spacing:-0.504000px;}
.ws15{word-spacing:-0.480000px;}
.ws6a{word-spacing:-0.432000px;}
.ws9{word-spacing:-0.360000px;}
.ws32{word-spacing:-0.288000px;}
.ws31{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.198000px;}
.ws2d{word-spacing:-0.144000px;}
.ws71{word-spacing:-0.120000px;}
.ws41{word-spacing:-0.115271px;}
.ws3c{word-spacing:-0.114817px;}
.ws49{word-spacing:-0.072000px;}
.ws5e{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws4f{word-spacing:0.060000px;}
.ws2e{word-spacing:0.072000px;}
.ws1b{word-spacing:0.096000px;}
.ws13{word-spacing:0.144000px;}
.ws72{word-spacing:0.180000px;}
.ws48{word-spacing:0.216000px;}
.ws46{word-spacing:0.288000px;}
.ws74{word-spacing:0.300000px;}
.ws2c{word-spacing:0.360000px;}
.ws47{word-spacing:0.432000px;}
.ws1c{word-spacing:0.480000px;}
.ws2f{word-spacing:0.504000px;}
.ws35{word-spacing:0.576000px;}
.ws6b{word-spacing:0.648000px;}
.ws1a{word-spacing:0.720000px;}
.ws2b{word-spacing:0.792000px;}
.ws45{word-spacing:0.864000px;}
.ws67{word-spacing:0.936000px;}
.ws17{word-spacing:0.960000px;}
.ws4a{word-spacing:1.008000px;}
.ws3a{word-spacing:1.080000px;}
.ws3b{word-spacing:1.152000px;}
.ws68{word-spacing:1.224000px;}
.ws5a{word-spacing:1.296000px;}
.ws75{word-spacing:1.368000px;}
.ws8{word-spacing:1.440000px;}
.ws7{word-spacing:1.500000px;}
.ws61{word-spacing:1.512000px;}
.ws57{word-spacing:1.584000px;}
.ws5f{word-spacing:1.650000px;}
.ws37{word-spacing:1.656000px;}
.ws38{word-spacing:1.728000px;}
.ws30{word-spacing:1.800000px;}
.ws66{word-spacing:1.872000px;}
.ws69{word-spacing:2.016000px;}
.ws39{word-spacing:2.160000px;}
.ws16{word-spacing:2.208000px;}
.ws53{word-spacing:2.304000px;}
.ws3f{word-spacing:3.096000px;}
.ws52{word-spacing:3.384000px;}
.ws19{word-spacing:3.456000px;}
.ws5d{word-spacing:3.528000px;}
.ws83{word-spacing:3.744000px;}
.ws18{word-spacing:4.080000px;}
.ws7e{word-spacing:5.832000px;}
.ws85{word-spacing:6.480000px;}
.wsd{word-spacing:8.184000px;}
.ws7f{word-spacing:10.296000px;}
._6{margin-left:-971.628000px;}
._7{margin-left:-916.560000px;}
._5{margin-left:-819.376800px;}
._8{margin-left:-36.499356px;}
._a{margin-left:-27.382909px;}
._15{margin-left:-23.464235px;}
._11{margin-left:-22.186235px;}
._12{margin-left:-20.684757px;}
._14{margin-left:-19.345481px;}
._13{margin-left:-17.428200px;}
._16{margin-left:-15.324666px;}
._b{margin-left:-13.626600px;}
._18{margin-left:-12.300000px;}
._1b{margin-left:-10.978885px;}
._17{margin-left:-9.516000px;}
._1a{margin-left:-8.211515px;}
._3{margin-left:-6.372000px;}
._4{margin-left:-5.359200px;}
._9{margin-left:-3.552000px;}
._2{margin-left:-2.460000px;}
._1{margin-left:-1.188000px;}
._0{width:1.200000px;}
._10{width:2.373600px;}
._e{width:3.801600px;}
._f{width:5.151600px;}
._1c{width:6.688494px;}
._1d{width:8.257055px;}
._d{width:10.435200px;}
._19{width:59.927400px;}
._c{width:1168.128000px;}
.fc4{color:rgb(77,74,74);}
.fc7{color:rgb(41,62,117);}
.fc3{color:rgb(44,85,174);}
.fc2{color:transparent;}
.fc1{color:rgb(26,53,107);}
.fc8{color:rgb(57,53,54);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:34.980000px;}
.fs11{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:62.964000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs19{font-size:78.000000px;}
.fs10{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fsc{font-size:111.956400px;}
.fsd{font-size:111.957000px;}
.fs12{font-size:114.817200px;}
.fs16{font-size:115.271400px;}
.fs6{font-size:120.000000px;}
.fse{font-size:123.152400px;}
.fs14{font-size:138.000000px;}
.fs13{font-size:149.262600px;}
.fs17{font-size:149.853000px;}
.fs15{font-size:150.000000px;}
.fs5{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:14.666550px;}
.ybc{bottom:26.542350px;}
.yb1{bottom:28.125000px;}
.yaf{bottom:51.023700px;}
.y25e{bottom:53.350500px;}
.y5{bottom:66.525004px;}
.y38{bottom:72.283650px;}
.y25d{bottom:77.350500px;}
.y1e3{bottom:81.223500px;}
.y194{bottom:82.208550px;}
.y120{bottom:85.039500px;}
.y233{bottom:85.901550px;}
.ye0{bottom:88.186950px;}
.y18d{bottom:89.882400px;}
.y37{bottom:90.283650px;}
.yff{bottom:90.436950px;}
.y178{bottom:95.179200px;}
.y1ae{bottom:95.781750px;}
.y4{bottom:97.125005px;}
.y12c{bottom:97.429200px;}
.y25c{bottom:101.350500px;}
.y11f{bottom:103.039500px;}
.y193{bottom:103.208550px;}
.y13a{bottom:104.421300px;}
.y1c2{bottom:104.781750px;}
.y1e2{bottom:105.223500px;}
.y165{bottom:107.444850px;}
.y21f{bottom:108.673200px;}
.y232{bottom:109.901550px;}
.ydf{bottom:112.186950px;}
.y36{bottom:112.535700px;}
.y18c{bottom:113.432400px;}
.yfe{bottom:114.436950px;}
.y177{bottom:119.179200px;}
.y1ad{bottom:119.781750px;}
.y11e{bottom:121.039500px;}
.y12b{bottom:121.429200px;}
.y192{bottom:124.208550px;}
.y25b{bottom:125.350500px;}
.y139{bottom:128.421300px;}
.y1c1{bottom:128.781750px;}
.y1e1{bottom:129.223500px;}
.yae{bottom:129.974400px;}
.y35{bottom:130.535700px;}
.y203{bottom:131.161350px;}
.y164{bottom:131.444850px;}
.y21e{bottom:132.673200px;}
.y231{bottom:133.901550px;}
.yde{bottom:136.186950px;}
.y18b{bottom:136.982400px;}
.yfd{bottom:138.436950px;}
.y1a3{bottom:138.797550px;}
.y11d{bottom:139.039500px;}
.y22{bottom:139.264499px;}
.y176{bottom:143.179200px;}
.y1ac{bottom:143.781750px;}
.y191{bottom:145.208550px;}
.y12a{bottom:145.429200px;}
.y7e{bottom:147.344850px;}
.y138{bottom:152.421300px;}
.y1c0{bottom:152.781750px;}
.y34{bottom:152.787900px;}
.y1e0{bottom:153.223500px;}
.yad{bottom:153.974400px;}
.y202{bottom:155.161350px;}
.y163{bottom:155.444850px;}
.y21d{bottom:156.673200px;}
.y11c{bottom:157.039500px;}
.y230{bottom:157.901550px;}
.y1a2{bottom:159.797550px;}
.y1e9{bottom:160.186950px;}
.y18a{bottom:160.532400px;}
.yfc{bottom:162.436950px;}
.y7d{bottom:165.344850px;}
.y25a{bottom:166.358250px;}
.y129{bottom:169.429200px;}
.y33{bottom:170.787900px;}
.y1ea{bottom:172.452750px;}
.y137{bottom:176.421300px;}
.y1bf{bottom:176.781750px;}
.ydd{bottom:177.194850px;}
.y1df{bottom:177.223500px;}
.yac{bottom:177.974400px;}
.y201{bottom:179.161350px;}
.y14f{bottom:179.444850px;}
.y21c{bottom:180.673200px;}
.y1a1{bottom:180.797550px;}
.y189{bottom:184.082400px;}
.y175{bottom:184.186950px;}
.y1ab{bottom:184.789650px;}
.yfb{bottom:186.436950px;}
.y32{bottom:188.787900px;}
.y259{bottom:190.358250px;}
.y22f{bottom:194.657550px;}
.y162{bottom:196.452750px;}
.y19{bottom:196.933500px;}
.y7c{bottom:200.352750px;}
.y136{bottom:200.421300px;}
.y1be{bottom:200.781750px;}
.ydc{bottom:201.194850px;}
.y1de{bottom:201.223500px;}
.y1a0{bottom:201.797550px;}
.yab{bottom:201.974400px;}
.y14e{bottom:203.444850px;}
.y1aa{bottom:205.789650px;}
.y188{bottom:207.632400px;}
.y174{bottom:208.186950px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y5c{bottom:209.865150px;}
.yfa{bottom:210.436950px;}
.y200{bottom:215.917350px;}
.y21b{bottom:217.429200px;}
.y7b{bottom:218.352750px;}
.y22e{bottom:218.657550px;}
.y161{bottom:220.452750px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y19f{bottom:222.797550px;}
.y258{bottom:222.862200px;}
.y11b{bottom:224.421300px;}
.ydb{bottom:225.194850px;}
.yaa{bottom:225.974400px;}
.y5b{bottom:226.065150px;}
.y1a9{bottom:226.789650px;}
.y14d{bottom:227.444850px;}
.y187{bottom:231.182400px;}
.y173{bottom:232.186950px;}
.yf9{bottom:234.436950px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y7a{bottom:236.352750px;}
.y1ff{bottom:239.917350px;}
.y21a{bottom:241.429200px;}
.y1bd{bottom:241.789650px;}
.y1dd{bottom:242.231400px;}
.y19e{bottom:243.797550px;}
.y160{bottom:244.452750px;}
.y257{bottom:246.862200px;}
.y1a8{bottom:247.789650px;}
.y11a{bottom:248.421300px;}
.yda{bottom:249.194850px;}
.y14c{bottom:251.444850px;}
.y79{bottom:254.352750px;}
.y186{bottom:254.732400px;}
.y22d{bottom:255.413400px;}
.y172{bottom:256.186950px;}
.yf8{bottom:258.436950px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1fe{bottom:263.917350px;}
.y19d{bottom:264.797400px;}
.y135{bottom:265.429200px;}
.y1bc{bottom:265.789650px;}
.y1dc{bottom:266.231400px;}
.ya9{bottom:266.982300px;}
.y15f{bottom:268.452750px;}
.y119{bottom:272.421300px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yd9{bottom:273.194850px;}
.y185{bottom:278.282400px;}
.y256{bottom:279.366150px;}
.y22c{bottom:279.413400px;}
.y171{bottom:280.187100px;}
.y128{bottom:282.437100px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1fd{bottom:287.917350px;}
.y78{bottom:289.360650px;}
.y134{bottom:289.429200px;}
.y1bb{bottom:289.789650px;}
.y1db{bottom:290.231400px;}
.ya8{bottom:290.982300px;}
.y14b{bottom:292.452750px;}
.y118{bottom:296.421300px;}
.yd8{bottom:297.194850px;}
.yf7{bottom:299.444850px;}
.y184{bottom:301.832400px;}
.y219{bottom:302.185050px;}
.y255{bottom:303.366150px;}
.y22b{bottom:303.413400px;}
.y170{bottom:304.187100px;}
.y5a{bottom:306.044700px;}
.y159{bottom:306.437100px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y133{bottom:313.429200px;}
.y1ba{bottom:313.789650px;}
.y1da{bottom:314.231400px;}
.ya7{bottom:314.982300px;}
.y14a{bottom:316.452750px;}
.y1cf{bottom:320.421300px;}
.yd7{bottom:321.194850px;}
.y59{bottom:322.244700px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yf6{bottom:323.444850px;}
.y77{bottom:324.368550px;}
.y1fc{bottom:324.673200px;}
.y218{bottom:326.185050px;}
.y22a{bottom:327.413400px;}
.y158{bottom:330.437100px;}
.y254{bottom:335.870100px;}
.y117{bottom:337.429200px;}
.y1b9{bottom:337.789650px;}
.y1d9{bottom:338.231400px;}
.y58{bottom:338.444700px;}
.ya6{bottom:338.982300px;}
.y149{bottom:340.452750px;}
.y76{bottom:342.368550px;}
.y183{bottom:342.390300px;}
.y1ce{bottom:344.421300px;}
.yd6{bottom:345.194850px;}
.yf5{bottom:347.444850px;}
.y10{bottom:348.133500px;}
.y1fb{bottom:348.673200px;}
.y217{bottom:350.185050px;}
.y169{bottom:354.437100px;}
.y15e{bottom:357.460650px;}
.y253{bottom:359.870100px;}
.y115{bottom:361.429200px;}
.y1d8{bottom:362.231400px;}
.ya5{bottom:362.982300px;}
.y229{bottom:364.169250px;}
.y148{bottom:364.452750px;}
.y182{bottom:365.940300px;}
.y57{bottom:367.400550px;}
.y116{bottom:367.423200px;}
.y1cd{bottom:368.421300px;}
.yd5{bottom:369.194850px;}
.yf4{bottom:371.444850px;}
.y1fa{bottom:372.673200px;}
.y75{bottom:377.376450px;}
.y1b8{bottom:378.797400px;}
.y15d{bottom:381.460650px;}
.y56{bottom:383.600550px;}
.y252{bottom:383.870100px;}
.y114{bottom:385.429200px;}
.y1d7{bottom:386.231400px;}
.yf{bottom:386.785499px;}
.y216{bottom:386.940900px;}
.ya4{bottom:386.982300px;}
.y228{bottom:388.169250px;}
.y168{bottom:388.452750px;}
.y181{bottom:389.490300px;}
.y1cc{bottom:392.421300px;}
.yd4{bottom:393.194850px;}
.yf3{bottom:395.444850px;}
.y1f9{bottom:396.673200px;}
.y1b7{bottom:399.797400px;}
.y74{bottom:400.280400px;}
.y147{bottom:405.460650px;}
.y251{bottom:407.870100px;}
.ye{bottom:408.044999px;}
.y113{bottom:409.429200px;}
.y215{bottom:410.940900px;}
.ya3{bottom:410.982300px;}
.y167{bottom:412.452750px;}
.y55{bottom:412.556550px;}
.y180{bottom:413.040300px;}
.y1cb{bottom:416.421300px;}
.yd3{bottom:417.194850px;}
.yf2{bottom:419.444850px;}
.y1b6{bottom:420.797400px;}
.y227{bottom:424.925250px;}
.y1d6{bottom:427.239300px;}
.y54{bottom:428.756400px;}
.y146{bottom:429.460650px;}
.y250{bottom:431.870100px;}
.y112{bottom:433.429200px;}
.y214{bottom:434.940900px;}
.ya2{bottom:434.982300px;}
.y166{bottom:436.452750px;}
.y17f{bottom:436.590300px;}
.y1ca{bottom:440.421300px;}
.y16f{bottom:441.194850px;}
.y1b5{bottom:441.797400px;}
.y127{bottom:443.444850px;}
.y1d5{bottom:448.239300px;}
.y226{bottom:448.925250px;}
.y132{bottom:450.437100px;}
.y145{bottom:453.460650px;}
.y24f{bottom:455.870100px;}
.y111{bottom:457.429200px;}
.y53{bottom:457.712400px;}
.yd2{bottom:458.202750px;}
.y213{bottom:458.940900px;}
.y17e{bottom:460.140300px;}
.yf1{bottom:460.452750px;}
.y1b4{bottom:462.797400px;}
.y1c9{bottom:464.421300px;}
.y126{bottom:467.444850px;}
.y1d4{bottom:469.239300px;}
.y52{bottom:473.912400px;}
.y131{bottom:474.437100px;}
.y144{bottom:477.460650px;}
.y24e{bottom:479.870100px;}
.ya1{bottom:479.982300px;}
.y110{bottom:481.429200px;}
.yd1{bottom:482.202750px;}
.y1b3{bottom:483.797400px;}
.yf0{bottom:484.452750px;}
.yd{bottom:484.864502px;}
.y225{bottom:485.681100px;}
.y1c8{bottom:488.421300px;}
.y1d3{bottom:490.239300px;}
.y125{bottom:491.444850px;}
.y212{bottom:495.696900px;}
.y130{bottom:498.437100px;}
.y17d{bottom:500.698200px;}
.y143{bottom:501.460650px;}
.yc{bottom:502.864502px;}
.y51{bottom:502.868250px;}
.y24d{bottom:503.870100px;}
.y1b2{bottom:504.797400px;}
.y10f{bottom:505.429200px;}
.yd0{bottom:506.202750px;}
.yef{bottom:508.452750px;}
.y224{bottom:509.681100px;}
.y1d2{bottom:511.239300px;}
.y157{bottom:515.444850px;}
.y1f8{bottom:518.185050px;}
.y50{bottom:519.068250px;}
.y211{bottom:519.696900px;}
.yb{bottom:520.864502px;}
.y17c{bottom:521.698200px;}
.y12f{bottom:522.437100px;}
.y190{bottom:523.948800px;}
.y142{bottom:525.460650px;}
.y1c7{bottom:529.429200px;}
.ycf{bottom:530.202750px;}
.y1d1{bottom:532.239300px;}
.yee{bottom:532.452750px;}
.y4f{bottom:535.268250px;}
.y24c{bottom:536.374050px;}
.y29{bottom:538.515000px;}
.ya{bottom:538.864499px;}
.y179{bottom:539.444850px;}
.ya0{bottom:541.990200px;}
.y1f7{bottom:542.185050px;}
.y17b{bottom:542.698200px;}
.y210{bottom:543.696900px;}
.y10e{bottom:546.437100px;}
.y18f{bottom:547.948800px;}
.y141{bottom:549.460650px;}
.y1d0{bottom:553.239300px;}
.y1c6{bottom:553.429200px;}
.yce{bottom:554.202750px;}
.yed{bottom:556.452750px;}
.y9{bottom:556.864499px;}
.y24b{bottom:560.374050px;}
.y17a{bottom:563.698200px;}
.y4e{bottom:564.224250px;}
.y1f5{bottom:566.185050px;}
.y10d{bottom:570.437100px;}
.y18e{bottom:571.948800px;}
.y1f6{bottom:572.179050px;}
.y140{bottom:573.460650px;}
.y28{bottom:575.167050px;}
.y1c5{bottom:577.429200px;}
.y16e{bottom:578.202750px;}
.y4d{bottom:580.424250px;}
.yec{bottom:580.452750px;}
.y9f{bottom:582.998100px;}
.y24a{bottom:584.374050px;}
.y1f4{bottom:590.185050px;}
.y15c{bottom:590.468550px;}
.y10c{bottom:594.437100px;}
.ycd{bottom:595.210650px;}
.y4c{bottom:596.624250px;}
.y13f{bottom:597.460650px;}
.y16d{bottom:602.202750px;}
.yeb{bottom:604.452750px;}
.y9e{bottom:606.998100px;}
.y249{bottom:608.374050px;}
.y12e{bottom:611.444850px;}
.y27{bottom:611.818950px;}
.y15b{bottom:614.468550px;}
.y10b{bottom:618.437100px;}
.ycc{bottom:619.210650px;}
.y13e{bottom:621.460650px;}
.y4b{bottom:625.580100px;}
.y16c{bottom:626.202750px;}
.y1f3{bottom:626.940900px;}
.y7f{bottom:628.072650px;}
.y124{bottom:628.452750px;}
.y9d{bottom:630.998100px;}
.y248{bottom:632.374050px;}
.y1a7{bottom:636.956700px;}
.y15a{bottom:638.468550px;}
.y4a{bottom:641.780100px;}
.y10a{bottom:642.437100px;}
.ycb{bottom:643.210650px;}
.yea{bottom:645.460650px;}
.y8{bottom:645.510000px;}
.y16b{bottom:650.202750px;}
.y123{bottom:652.452750px;}
.y19c{bottom:653.964600px;}
.y9c{bottom:654.998100px;}
.y247{bottom:656.374050px;}
.y1c4{bottom:659.444850px;}
.y1a6{bottom:660.956700px;}
.y13d{bottom:662.468550px;}
.y1f2{bottom:663.696900px;}
.y20f{bottom:665.208600px;}
.y109{bottom:666.436950px;}
.y7{bottom:666.771000px;}
.yca{bottom:667.210650px;}
.ye9{bottom:669.460650px;}
.y49{bottom:670.735950px;}
.y156{bottom:676.452750px;}
.y19b{bottom:677.964600px;}
.y246{bottom:680.374050px;}
.y1a5{bottom:684.956700px;}
.y13c{bottom:686.468550px;}
.y48{bottom:686.935950px;}
.y1f1{bottom:687.696900px;}
.y73{bottom:688.280400px;}
.y20e{bottom:689.208600px;}
.y108{bottom:690.436950px;}
.yc9{bottom:691.210650px;}
.ye8{bottom:693.460650px;}
.y9b{bottom:696.005850px;}
.y155{bottom:700.452750px;}
.y19a{bottom:701.964600px;}
.y72{bottom:702.680400px;}
.y47{bottom:703.135950px;}
.y245{bottom:704.374050px;}
.y1a4{bottom:708.956700px;}
.y13b{bottom:710.468550px;}
.y1f0{bottom:711.696900px;}
.y20d{bottom:713.208600px;}
.yc8{bottom:715.210650px;}
.y71{bottom:717.080400px;}
.ye7{bottom:717.460650px;}
.y9a{bottom:720.005850px;}
.y8a{bottom:721.839600px;}
.y1c3{bottom:724.452750px;}
.y199{bottom:725.964600px;}
.y6{bottom:726.298500px;}
.y244{bottom:728.374050px;}
.y31{bottom:728.716500px;}
.y107{bottom:731.444850px;}
.y70{bottom:731.480400px;}
.y46{bottom:732.091950px;}
.y12d{bottom:734.468550px;}
.y1ef{bottom:735.696900px;}
.y20c{bottom:737.208600px;}
.yc7{bottom:739.210650px;}
.y122{bottom:741.460650px;}
.y99{bottom:744.006000px;}
.y45{bottom:748.291950px;}
.y243{bottom:752.374050px;}
.y3{bottom:752.599495px;}
.y6f{bottom:754.384350px;}
.y106{bottom:755.444850px;}
.ye6{bottom:758.468550px;}
.y89{bottom:760.447500px;}
.y223{bottom:761.208600px;}
.y1e8{bottom:763.210650px;}
.y30{bottom:765.368550px;}
.y154{bottom:765.460650px;}
.y98{bottom:768.006000px;}
.y1ee{bottom:772.452750px;}
.y20b{bottom:773.964600px;}
.y198{bottom:775.476450px;}
.y242{bottom:776.374050px;}
.y44{bottom:777.247800px;}
.y105{bottom:779.444850px;}
.yc6{bottom:780.218550px;}
.ye5{bottom:782.468550px;}
.y222{bottom:785.208600px;}
.y1e7{bottom:787.210650px;}
.y153{bottom:789.460650px;}
.y96{bottom:792.006000px;}
.y43{bottom:793.447800px;}
.y6e{bottom:795.392250px;}
.y1ed{bottom:796.452750px;}
.y20a{bottom:797.964600px;}
.y97{bottom:797.999850px;}
.y88{bottom:799.055400px;}
.y197{bottom:799.476450px;}
.y241{bottom:800.374050px;}
.y2f{bottom:802.020450px;}
.y104{bottom:803.444850px;}
.yc5{bottom:804.218550px;}
.ye4{bottom:806.468550px;}
.y221{bottom:809.208600px;}
.y1e6{bottom:811.210650px;}
.y152{bottom:813.460650px;}
.y95{bottom:816.006000px;}
.y1ec{bottom:820.452750px;}
.y209{bottom:821.964600px;}
.y196{bottom:823.476450px;}
.y240{bottom:824.374050px;}
.yc4{bottom:828.218550px;}
.y6d{bottom:828.262650px;}
.ye3{bottom:830.468550px;}
.y235{bottom:834.720450px;}
.y1e5{bottom:835.210650px;}
.y151{bottom:837.460650px;}
.y87{bottom:837.663300px;}
.y94{bottom:840.006000px;}
.y42{bottom:843.653850px;}
.y103{bottom:844.452750px;}
.y208{bottom:845.964600px;}
.y195{bottom:847.476450px;}
.y6c{bottom:851.166600px;}
.yc3{bottom:852.218550px;}
.ye2{bottom:854.468550px;}
.y23f{bottom:856.878000px;}
.y234{bottom:858.720450px;}
.y1e4{bottom:859.210650px;}
.y86{bottom:859.263300px;}
.y150{bottom:861.460650px;}
.y6b{bottom:865.566600px;}
.y41{bottom:867.653850px;}
.y220{bottom:869.964600px;}
.y121{bottom:871.476450px;}
.yc2{bottom:876.218550px;}
.y2e{bottom:876.940200px;}
.yb8{bottom:878.468550px;}
.y2{bottom:879.369000px;}
.y6a{bottom:879.966600px;}
.y85{bottom:880.863300px;}
.y23e{bottom:880.878000px;}
.y93{bottom:881.013750px;}
.y207{bottom:882.720450px;}
.y26{bottom:884.580750px;}
.y1eb{bottom:885.460650px;}
.y40{bottom:891.653850px;}
.y1b1{bottom:893.964600px;}
.ye1{bottom:895.476450px;}
.yc1{bottom:900.218550px;}
.y102{bottom:902.468550px;}
.y69{bottom:902.870550px;}
.y23d{bottom:904.878000px;}
.y92{bottom:905.013750px;}
.y206{bottom:906.720450px;}
.y2d{bottom:909.340200px;}
.y3f{bottom:915.653850px;}
.y68{bottom:917.270550px;}
.y1b0{bottom:917.964600px;}
.y84{bottom:919.471200px;}
.yb7{bottom:919.476450px;}
.y25{bottom:920.580750px;}
.yc0{bottom:924.218550px;}
.y101{bottom:926.468550px;}
.y91{bottom:929.013750px;}
.y205{bottom:930.720450px;}
.y23c{bottom:937.381950px;}
.y3e{bottom:939.653850px;}
.y67{bottom:940.174500px;}
.y2c{bottom:941.740200px;}
.y1af{bottom:941.964600px;}
.yb6{bottom:943.476450px;}
.ybf{bottom:948.218550px;}
.y100{bottom:950.468550px;}
.y90{bottom:953.013750px;}
.y66{bottom:954.574500px;}
.y204{bottom:954.720450px;}
.y24{bottom:956.580750px;}
.y83{bottom:958.079100px;}
.y23b{bottom:961.381950px;}
.y3d{bottom:963.653850px;}
.y1{bottom:966.726000px;}
.yb5{bottom:967.476450px;}
.y65{bottom:968.974500px;}
.ybe{bottom:972.218550px;}
.y8f{bottom:977.013750px;}
.y64{bottom:983.374500px;}
.y23a{bottom:985.381950px;}
.y3c{bottom:987.653850px;}
.y16a{bottom:989.226450px;}
.yb4{bottom:991.476450px;}
.y82{bottom:996.686850px;}
.y8e{bottom:1001.013750px;}
.y63{bottom:1006.278450px;}
.ybd{bottom:1013.226450px;}
.yb3{bottom:1015.476450px;}
.y239{bottom:1017.885900px;}
.y8d{bottom:1025.013750px;}
.y81{bottom:1035.294750px;}
.y238{bottom:1041.885900px;}
.y62{bottom:1047.580500px;}
.y8c{bottom:1049.013750px;}
.y2b{bottom:1059.354300px;}
.y262{bottom:1068.967350px;}
.y23{bottom:1070.834700px;}
.y80{bottom:1073.902650px;}
.y2a{bottom:1083.354300px;}
.y61{bottom:1086.979800px;}
.y237{bottom:1087.145700px;}
.y261{bottom:1092.367350px;}
.y8b{bottom:1094.013750px;}
.yb9{bottom:1096.191000px;}
.y60{bottom:1104.979800px;}
.yb0{bottom:1110.857550px;}
.ybb{bottom:1112.310750px;}
.y260{bottom:1115.767350px;}
.y5f{bottom:1122.979800px;}
.y3b{bottom:1127.437800px;}
.y236{bottom:1132.405500px;}
.y25f{bottom:1139.167350px;}
.y3a{bottom:1149.937800px;}
.y5e{bottom:1157.987700px;}
.yb2{bottom:1185.292350px;}
.y5d{bottom:1187.842800px;}
.y39{bottom:1194.271650px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1a{height:36.492188px;}
.h1e{height:38.081742px;}
.h1b{height:38.103516px;}
.h19{height:38.250000px;}
.h18{height:43.546875px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h14{height:48.726562px;}
.h15{height:48.752930px;}
.h28{height:50.176758px;}
.h29{height:50.242526px;}
.h10{height:54.433594px;}
.h26{height:54.738281px;}
.h2{height:55.152000px;}
.h25{height:57.375000px;}
.h2a{height:58.500000px;}
.h12{height:59.554688px;}
.h27{height:59.586914px;}
.h13{height:59.876953px;}
.h11{height:64.968750px;}
.h24{height:65.003906px;}
.h1c{height:65.320312px;}
.h1d{height:75.796875px;}
.h5{height:78.132000px;}
.he{height:87.093750px;}
.hd{height:97.453125px;}
.hf{height:97.505859px;}
.h16{height:101.078366px;}
.h1f{height:104.483820px;}
.h23{height:104.897100px;}
.hc{height:108.281250px;}
.h20{height:109.968750px;}
.h17{height:111.185931px;}
.h4{height:119.055004px;}
.h21{height:135.351562px;}
.h22{height:166.644000px;}
.hb{height:389.812500px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:1.059000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x25{left:-409.083600px;}
.x0{left:0.000000px;}
.x24{left:54.030450px;}
.x14{left:59.542050px;}
.x26{left:92.399550px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x20{left:139.668300px;}
.x29{left:140.684100px;}
.x2e{left:148.818900px;}
.x32{left:157.692000px;}
.x2f{left:174.330750px;}
.x33{left:178.071300px;}
.x39{left:183.235350px;}
.x1d{left:184.721550px;}
.x38{left:188.691150px;}
.x34{left:194.155350px;}
.x4{left:203.484001px;}
.x30{left:208.346400px;}
.x13{left:259.370100px;}
.x1e{left:271.591950px;}
.xf{left:275.915400px;}
.x1f{left:283.072200px;}
.x8{left:291.287850px;}
.x35{left:292.853100px;}
.x36{left:298.819200px;}
.x21{left:301.885050px;}
.x22{left:307.714650px;}
.x6{left:343.494900px;}
.x7{left:371.605350px;}
.xe{left:397.323150px;}
.x2d{left:426.758100px;}
.x2c{left:428.210850px;}
.x27{left:436.318050px;}
.x23{left:437.770800px;}
.x3a{left:451.988700px;}
.x3{left:454.959000px;}
.x17{left:471.968400px;}
.x1a{left:477.257700px;}
.x19{left:481.389750px;}
.x1c{left:484.115550px;}
.x18{left:491.489700px;}
.x1b{left:494.265600px;}
.x10{left:498.058950px;}
.x5{left:542.312400px;}
.x11{left:547.149300px;}
.xa{left:549.932400px;}
.x12{left:560.847000px;}
.xc{left:561.954000px;}
.xb{left:563.630250px;}
.x2a{left:570.387600px;}
.x2b{left:576.427650px;}
.x16{left:581.246700px;}
.xd{left:584.489250px;}
.x15{left:586.237050px;}
.x9{left:587.927550px;}
.x37{left:679.428450px;}
.x28{left:723.172200px;}
.x31{left:786.614100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:31.968000pt;}
.ls46{letter-spacing:-7.616000pt;}
.ls1b{letter-spacing:-1.920000pt;}
.lsd{letter-spacing:-1.536000pt;}
.ls1a{letter-spacing:-1.472000pt;}
.ls44{letter-spacing:-1.408000pt;}
.ls1c{letter-spacing:-1.344000pt;}
.ls40{letter-spacing:-1.088000pt;}
.ls1e{letter-spacing:-1.024000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls25{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls33{letter-spacing:-0.352000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls41{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls3e{letter-spacing:-0.106667pt;}
.ls12{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.058667pt;}
.ls2d{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.009600pt;}
.ls29{letter-spacing:0.011627pt;}
.ls3f{letter-spacing:0.053333pt;}
.ls31{letter-spacing:0.058667pt;}
.ls23{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.192000pt;}
.ls3d{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.405333pt;}
.ls8{letter-spacing:0.426667pt;}
.ls20{letter-spacing:0.448000pt;}
.ls34{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.586667pt;}
.ls2f{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.704000pt;}
.ls37{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.832000pt;}
.ls2e{letter-spacing:0.896000pt;}
.ls30{letter-spacing:0.960000pt;}
.ls38{letter-spacing:1.024000pt;}
.ls3b{letter-spacing:1.088000pt;}
.ls22{letter-spacing:1.176784pt;}
.ls43{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.408000pt;}
.ls39{letter-spacing:1.472000pt;}
.ls7{letter-spacing:1.680000pt;}
.lsc{letter-spacing:2.240000pt;}
.ls5{letter-spacing:2.405333pt;}
.lse{letter-spacing:2.613333pt;}
.ls2{letter-spacing:3.360000pt;}
.ls1{letter-spacing:3.733333pt;}
.ls45{letter-spacing:4.235190pt;}
.ls3c{letter-spacing:5.440000pt;}
.ls21{letter-spacing:33.333333pt;}
.ws1d{word-spacing:-94.080000pt;}
.ws3e{word-spacing:-33.333333pt;}
.ws42{word-spacing:-21.722255pt;}
.ws3d{word-spacing:-21.636663pt;}
.ws28{word-spacing:-21.205333pt;}
.ws1f{word-spacing:-18.112000pt;}
.ws82{word-spacing:-16.832000pt;}
.ws80{word-spacing:-16.384000pt;}
.ws78{word-spacing:-16.320000pt;}
.ws7c{word-spacing:-16.256000pt;}
.ws6f{word-spacing:-16.064000pt;}
.ws77{word-spacing:-16.000000pt;}
.ws2a{word-spacing:-15.936000pt;}
.ws1e{word-spacing:-15.872000pt;}
.ws6e{word-spacing:-15.808000pt;}
.ws81{word-spacing:-15.744000pt;}
.ws6d{word-spacing:-15.680000pt;}
.ws54{word-spacing:-15.616000pt;}
.ws63{word-spacing:-15.552000pt;}
.ws55{word-spacing:-15.424000pt;}
.ws43{word-spacing:-15.360000pt;}
.ws7a{word-spacing:-15.296000pt;}
.ws79{word-spacing:-14.912000pt;}
.ws86{word-spacing:-14.608000pt;}
.ws7b{word-spacing:-14.400000pt;}
.ws5b{word-spacing:-14.373333pt;}
.ws4{word-spacing:-13.936032pt;}
.ws25{word-spacing:-13.696000pt;}
.ws5{word-spacing:-13.386667pt;}
.ws6{word-spacing:-13.226667pt;}
.wsa{word-spacing:-11.050667pt;}
.wsb{word-spacing:-10.624000pt;}
.ws23{word-spacing:-10.240000pt;}
.ws29{word-spacing:-9.253376pt;}
.ws24{word-spacing:-6.848000pt;}
.ws21{word-spacing:-6.784000pt;}
.ws2{word-spacing:-4.512000pt;}
.wse{word-spacing:-3.637333pt;}
.ws27{word-spacing:-3.072000pt;}
.ws26{word-spacing:-2.752000pt;}
.ws33{word-spacing:-2.613333pt;}
.ws11{word-spacing:-2.581333pt;}
.ws20{word-spacing:-2.240000pt;}
.ws7d{word-spacing:-2.176000pt;}
.ws1{word-spacing:-1.813333pt;}
.ws64{word-spacing:-1.792000pt;}
.ws36{word-spacing:-1.664000pt;}
.ws3{word-spacing:-1.632000pt;}
.ws34{word-spacing:-1.600000pt;}
.ws4b{word-spacing:-1.536000pt;}
.ws40{word-spacing:-1.472000pt;}
.ws60{word-spacing:-1.466667pt;}
.wsf{word-spacing:-1.408000pt;}
.ws76{word-spacing:-1.344000pt;}
.ws70{word-spacing:-1.333333pt;}
.ws6c{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.269333pt;}
.ws56{word-spacing:-1.216000pt;}
.ws14{word-spacing:-1.152000pt;}
.wsc{word-spacing:-1.114667pt;}
.ws22{word-spacing:-1.088000pt;}
.ws50{word-spacing:-1.024000pt;}
.ws84{word-spacing:-0.960000pt;}
.ws73{word-spacing:-0.906667pt;}
.ws4d{word-spacing:-0.896000pt;}
.ws12{word-spacing:-0.816000pt;}
.ws51{word-spacing:-0.768000pt;}
.ws58{word-spacing:-0.704000pt;}
.ws62{word-spacing:-0.645333pt;}
.ws4c{word-spacing:-0.640000pt;}
.ws65{word-spacing:-0.576000pt;}
.ws4e{word-spacing:-0.533333pt;}
.ws59{word-spacing:-0.512000pt;}
.ws5c{word-spacing:-0.448000pt;}
.ws15{word-spacing:-0.426667pt;}
.ws6a{word-spacing:-0.384000pt;}
.ws9{word-spacing:-0.320000pt;}
.ws32{word-spacing:-0.256000pt;}
.ws31{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.176000pt;}
.ws2d{word-spacing:-0.128000pt;}
.ws71{word-spacing:-0.106667pt;}
.ws41{word-spacing:-0.102463pt;}
.ws3c{word-spacing:-0.102060pt;}
.ws49{word-spacing:-0.064000pt;}
.ws5e{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.053333pt;}
.ws2e{word-spacing:0.064000pt;}
.ws1b{word-spacing:0.085333pt;}
.ws13{word-spacing:0.128000pt;}
.ws72{word-spacing:0.160000pt;}
.ws48{word-spacing:0.192000pt;}
.ws46{word-spacing:0.256000pt;}
.ws74{word-spacing:0.266667pt;}
.ws2c{word-spacing:0.320000pt;}
.ws47{word-spacing:0.384000pt;}
.ws1c{word-spacing:0.426667pt;}
.ws2f{word-spacing:0.448000pt;}
.ws35{word-spacing:0.512000pt;}
.ws6b{word-spacing:0.576000pt;}
.ws1a{word-spacing:0.640000pt;}
.ws2b{word-spacing:0.704000pt;}
.ws45{word-spacing:0.768000pt;}
.ws67{word-spacing:0.832000pt;}
.ws17{word-spacing:0.853333pt;}
.ws4a{word-spacing:0.896000pt;}
.ws3a{word-spacing:0.960000pt;}
.ws3b{word-spacing:1.024000pt;}
.ws68{word-spacing:1.088000pt;}
.ws5a{word-spacing:1.152000pt;}
.ws75{word-spacing:1.216000pt;}
.ws8{word-spacing:1.280000pt;}
.ws7{word-spacing:1.333333pt;}
.ws61{word-spacing:1.344000pt;}
.ws57{word-spacing:1.408000pt;}
.ws5f{word-spacing:1.466667pt;}
.ws37{word-spacing:1.472000pt;}
.ws38{word-spacing:1.536000pt;}
.ws30{word-spacing:1.600000pt;}
.ws66{word-spacing:1.664000pt;}
.ws69{word-spacing:1.792000pt;}
.ws39{word-spacing:1.920000pt;}
.ws16{word-spacing:1.962667pt;}
.ws53{word-spacing:2.048000pt;}
.ws3f{word-spacing:2.752000pt;}
.ws52{word-spacing:3.008000pt;}
.ws19{word-spacing:3.072000pt;}
.ws5d{word-spacing:3.136000pt;}
.ws83{word-spacing:3.328000pt;}
.ws18{word-spacing:3.626667pt;}
.ws7e{word-spacing:5.184000pt;}
.ws85{word-spacing:5.760000pt;}
.wsd{word-spacing:7.274667pt;}
.ws7f{word-spacing:9.152000pt;}
._6{margin-left:-863.669333pt;}
._7{margin-left:-814.720000pt;}
._5{margin-left:-728.334933pt;}
._8{margin-left:-32.443872pt;}
._a{margin-left:-24.340364pt;}
._15{margin-left:-20.857098pt;}
._11{margin-left:-19.721098pt;}
._12{margin-left:-18.386451pt;}
._14{margin-left:-17.195983pt;}
._13{margin-left:-15.491733pt;}
._16{margin-left:-13.621925pt;}
._b{margin-left:-12.112533pt;}
._18{margin-left:-10.933333pt;}
._1b{margin-left:-9.759009pt;}
._17{margin-left:-8.458667pt;}
._1a{margin-left:-7.299125pt;}
._3{margin-left:-5.664000pt;}
._4{margin-left:-4.763733pt;}
._9{margin-left:-3.157333pt;}
._2{margin-left:-2.186667pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.066667pt;}
._10{width:2.109867pt;}
._e{width:3.379200pt;}
._f{width:4.579200pt;}
._1c{width:5.945328pt;}
._1d{width:7.339604pt;}
._d{width:9.275733pt;}
._19{width:53.268800pt;}
._c{width:1038.336000pt;}
.fs18{font-size:31.093333pt;}
.fs11{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:55.968000pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs19{font-size:69.333333pt;}
.fs10{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fsc{font-size:99.516800pt;}
.fsd{font-size:99.517333pt;}
.fs12{font-size:102.059733pt;}
.fs16{font-size:102.463467pt;}
.fs6{font-size:106.666667pt;}
.fse{font-size:109.468800pt;}
.fs14{font-size:122.666667pt;}
.fs13{font-size:132.677867pt;}
.fs17{font-size:133.202667pt;}
.fs15{font-size:133.333333pt;}
.fs5{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:13.036933pt;}
.ybc{bottom:23.593200pt;}
.yb1{bottom:25.000000pt;}
.yaf{bottom:45.354400pt;}
.y25e{bottom:47.422667pt;}
.y5{bottom:59.133337pt;}
.y38{bottom:64.252133pt;}
.y25d{bottom:68.756000pt;}
.y1e3{bottom:72.198667pt;}
.y194{bottom:73.074267pt;}
.y120{bottom:75.590667pt;}
.y233{bottom:76.356933pt;}
.ye0{bottom:78.388400pt;}
.y18d{bottom:79.895467pt;}
.y37{bottom:80.252133pt;}
.yff{bottom:80.388400pt;}
.y178{bottom:84.603733pt;}
.y1ae{bottom:85.139333pt;}
.y4{bottom:86.333337pt;}
.y12c{bottom:86.603733pt;}
.y25c{bottom:90.089333pt;}
.y11f{bottom:91.590667pt;}
.y193{bottom:91.740933pt;}
.y13a{bottom:92.818933pt;}
.y1c2{bottom:93.139333pt;}
.y1e2{bottom:93.532000pt;}
.y165{bottom:95.506533pt;}
.y21f{bottom:96.598400pt;}
.y232{bottom:97.690267pt;}
.ydf{bottom:99.721733pt;}
.y36{bottom:100.031733pt;}
.y18c{bottom:100.828800pt;}
.yfe{bottom:101.721733pt;}
.y177{bottom:105.937067pt;}
.y1ad{bottom:106.472667pt;}
.y11e{bottom:107.590667pt;}
.y12b{bottom:107.937067pt;}
.y192{bottom:110.407600pt;}
.y25b{bottom:111.422667pt;}
.y139{bottom:114.152267pt;}
.y1c1{bottom:114.472667pt;}
.y1e1{bottom:114.865333pt;}
.yae{bottom:115.532800pt;}
.y35{bottom:116.031733pt;}
.y203{bottom:116.587867pt;}
.y164{bottom:116.839867pt;}
.y21e{bottom:117.931733pt;}
.y231{bottom:119.023600pt;}
.yde{bottom:121.055067pt;}
.y18b{bottom:121.762133pt;}
.yfd{bottom:123.055067pt;}
.y1a3{bottom:123.375600pt;}
.y11d{bottom:123.590667pt;}
.y22{bottom:123.790666pt;}
.y176{bottom:127.270400pt;}
.y1ac{bottom:127.806000pt;}
.y191{bottom:129.074267pt;}
.y12a{bottom:129.270400pt;}
.y7e{bottom:130.973200pt;}
.y138{bottom:135.485600pt;}
.y1c0{bottom:135.806000pt;}
.y34{bottom:135.811467pt;}
.y1e0{bottom:136.198667pt;}
.yad{bottom:136.866133pt;}
.y202{bottom:137.921200pt;}
.y163{bottom:138.173200pt;}
.y21d{bottom:139.265067pt;}
.y11c{bottom:139.590667pt;}
.y230{bottom:140.356933pt;}
.y1a2{bottom:142.042267pt;}
.y1e9{bottom:142.388400pt;}
.y18a{bottom:142.695467pt;}
.yfc{bottom:144.388400pt;}
.y7d{bottom:146.973200pt;}
.y25a{bottom:147.874000pt;}
.y129{bottom:150.603733pt;}
.y33{bottom:151.811467pt;}
.y1ea{bottom:153.291333pt;}
.y137{bottom:156.818933pt;}
.y1bf{bottom:157.139333pt;}
.ydd{bottom:157.506533pt;}
.y1df{bottom:157.532000pt;}
.yac{bottom:158.199467pt;}
.y201{bottom:159.254533pt;}
.y14f{bottom:159.506533pt;}
.y21c{bottom:160.598400pt;}
.y1a1{bottom:160.708933pt;}
.y189{bottom:163.628800pt;}
.y175{bottom:163.721733pt;}
.y1ab{bottom:164.257467pt;}
.yfb{bottom:165.721733pt;}
.y32{bottom:167.811467pt;}
.y259{bottom:169.207333pt;}
.y22f{bottom:173.028933pt;}
.y162{bottom:174.624667pt;}
.y19{bottom:175.052000pt;}
.y7c{bottom:178.091333pt;}
.y136{bottom:178.152267pt;}
.y1be{bottom:178.472667pt;}
.ydc{bottom:178.839867pt;}
.y1de{bottom:178.865333pt;}
.y1a0{bottom:179.375600pt;}
.yab{bottom:179.532800pt;}
.y14e{bottom:180.839867pt;}
.y1aa{bottom:182.924133pt;}
.y188{bottom:184.562133pt;}
.y174{bottom:185.055067pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y5c{bottom:186.546800pt;}
.yfa{bottom:187.055067pt;}
.y200{bottom:191.926533pt;}
.y21b{bottom:193.270400pt;}
.y7b{bottom:194.091333pt;}
.y22e{bottom:194.362267pt;}
.y161{bottom:195.958000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y19f{bottom:198.042267pt;}
.y258{bottom:198.099733pt;}
.y11b{bottom:199.485600pt;}
.ydb{bottom:200.173200pt;}
.yaa{bottom:200.866133pt;}
.y5b{bottom:200.946800pt;}
.y1a9{bottom:201.590800pt;}
.y14d{bottom:202.173200pt;}
.y187{bottom:205.495467pt;}
.y173{bottom:206.388400pt;}
.yf9{bottom:208.388400pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y7a{bottom:210.091333pt;}
.y1ff{bottom:213.259867pt;}
.y21a{bottom:214.603733pt;}
.y1bd{bottom:214.924133pt;}
.y1dd{bottom:215.316800pt;}
.y19e{bottom:216.708933pt;}
.y160{bottom:217.291333pt;}
.y257{bottom:219.433067pt;}
.y1a8{bottom:220.257467pt;}
.y11a{bottom:220.818933pt;}
.yda{bottom:221.506533pt;}
.y14c{bottom:223.506533pt;}
.y79{bottom:226.091333pt;}
.y186{bottom:226.428800pt;}
.y22d{bottom:227.034133pt;}
.y172{bottom:227.721733pt;}
.yf8{bottom:229.721733pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1fe{bottom:234.593200pt;}
.y19d{bottom:235.375467pt;}
.y135{bottom:235.937067pt;}
.y1bc{bottom:236.257467pt;}
.y1dc{bottom:236.650133pt;}
.ya9{bottom:237.317600pt;}
.y15f{bottom:238.624667pt;}
.y119{bottom:242.152267pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yd9{bottom:242.839867pt;}
.y185{bottom:247.362133pt;}
.y256{bottom:248.325467pt;}
.y22c{bottom:248.367467pt;}
.y171{bottom:249.055200pt;}
.y128{bottom:251.055200pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1fd{bottom:255.926533pt;}
.y78{bottom:257.209467pt;}
.y134{bottom:257.270400pt;}
.y1bb{bottom:257.590800pt;}
.y1db{bottom:257.983467pt;}
.ya8{bottom:258.650933pt;}
.y14b{bottom:259.958000pt;}
.y118{bottom:263.485600pt;}
.yd8{bottom:264.173200pt;}
.yf7{bottom:266.173200pt;}
.y184{bottom:268.295467pt;}
.y219{bottom:268.608933pt;}
.y255{bottom:269.658800pt;}
.y22b{bottom:269.700800pt;}
.y170{bottom:270.388533pt;}
.y5a{bottom:272.039733pt;}
.y159{bottom:272.388533pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y133{bottom:278.603733pt;}
.y1ba{bottom:278.924133pt;}
.y1da{bottom:279.316800pt;}
.ya7{bottom:279.984267pt;}
.y14a{bottom:281.291333pt;}
.y1cf{bottom:284.818933pt;}
.yd7{bottom:285.506533pt;}
.y59{bottom:286.439733pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yf6{bottom:287.506533pt;}
.y77{bottom:288.327600pt;}
.y1fc{bottom:288.598400pt;}
.y218{bottom:289.942267pt;}
.y22a{bottom:291.034133pt;}
.y158{bottom:293.721867pt;}
.y254{bottom:298.551200pt;}
.y117{bottom:299.937067pt;}
.y1b9{bottom:300.257467pt;}
.y1d9{bottom:300.650133pt;}
.y58{bottom:300.839733pt;}
.ya6{bottom:301.317600pt;}
.y149{bottom:302.624667pt;}
.y76{bottom:304.327600pt;}
.y183{bottom:304.346933pt;}
.y1ce{bottom:306.152267pt;}
.yd6{bottom:306.839867pt;}
.yf5{bottom:308.839867pt;}
.y10{bottom:309.452000pt;}
.y1fb{bottom:309.931733pt;}
.y217{bottom:311.275600pt;}
.y169{bottom:315.055200pt;}
.y15e{bottom:317.742800pt;}
.y253{bottom:319.884533pt;}
.y115{bottom:321.270400pt;}
.y1d8{bottom:321.983467pt;}
.ya5{bottom:322.650933pt;}
.y229{bottom:323.706000pt;}
.y148{bottom:323.958000pt;}
.y182{bottom:325.280267pt;}
.y57{bottom:326.578267pt;}
.y116{bottom:326.598400pt;}
.y1cd{bottom:327.485600pt;}
.yd5{bottom:328.173200pt;}
.yf4{bottom:330.173200pt;}
.y1fa{bottom:331.265067pt;}
.y75{bottom:335.445733pt;}
.y1b8{bottom:336.708800pt;}
.y15d{bottom:339.076133pt;}
.y56{bottom:340.978267pt;}
.y252{bottom:341.217867pt;}
.y114{bottom:342.603733pt;}
.y1d7{bottom:343.316800pt;}
.yf{bottom:343.809333pt;}
.y216{bottom:343.947467pt;}
.ya4{bottom:343.984267pt;}
.y228{bottom:345.039333pt;}
.y168{bottom:345.291333pt;}
.y181{bottom:346.213600pt;}
.y1cc{bottom:348.818933pt;}
.yd4{bottom:349.506533pt;}
.yf3{bottom:351.506533pt;}
.y1f9{bottom:352.598400pt;}
.y1b7{bottom:355.375467pt;}
.y74{bottom:355.804800pt;}
.y147{bottom:360.409467pt;}
.y251{bottom:362.551200pt;}
.ye{bottom:362.706666pt;}
.y113{bottom:363.937067pt;}
.y215{bottom:365.280800pt;}
.ya3{bottom:365.317600pt;}
.y167{bottom:366.624667pt;}
.y55{bottom:366.716933pt;}
.y180{bottom:367.146933pt;}
.y1cb{bottom:370.152267pt;}
.yd3{bottom:370.839867pt;}
.yf2{bottom:372.839867pt;}
.y1b6{bottom:374.042133pt;}
.y227{bottom:377.711333pt;}
.y1d6{bottom:379.768267pt;}
.y54{bottom:381.116800pt;}
.y146{bottom:381.742800pt;}
.y250{bottom:383.884533pt;}
.y112{bottom:385.270400pt;}
.y214{bottom:386.614133pt;}
.ya2{bottom:386.650933pt;}
.y166{bottom:387.958000pt;}
.y17f{bottom:388.080267pt;}
.y1ca{bottom:391.485600pt;}
.y16f{bottom:392.173200pt;}
.y1b5{bottom:392.708800pt;}
.y127{bottom:394.173200pt;}
.y1d5{bottom:398.434933pt;}
.y226{bottom:399.044667pt;}
.y132{bottom:400.388533pt;}
.y145{bottom:403.076133pt;}
.y24f{bottom:405.217867pt;}
.y111{bottom:406.603733pt;}
.y53{bottom:406.855467pt;}
.yd2{bottom:407.291333pt;}
.y213{bottom:407.947467pt;}
.y17e{bottom:409.013600pt;}
.yf1{bottom:409.291333pt;}
.y1b4{bottom:411.375467pt;}
.y1c9{bottom:412.818933pt;}
.y126{bottom:415.506533pt;}
.y1d4{bottom:417.101600pt;}
.y52{bottom:421.255467pt;}
.y131{bottom:421.721867pt;}
.y144{bottom:424.409467pt;}
.y24e{bottom:426.551200pt;}
.ya1{bottom:426.650933pt;}
.y110{bottom:427.937067pt;}
.yd1{bottom:428.624667pt;}
.y1b3{bottom:430.042133pt;}
.yf0{bottom:430.624667pt;}
.yd{bottom:430.990669pt;}
.y225{bottom:431.716533pt;}
.y1c8{bottom:434.152267pt;}
.y1d3{bottom:435.768267pt;}
.y125{bottom:436.839867pt;}
.y212{bottom:440.619467pt;}
.y130{bottom:443.055200pt;}
.y17d{bottom:445.065067pt;}
.y143{bottom:445.742800pt;}
.yc{bottom:446.990669pt;}
.y51{bottom:446.994000pt;}
.y24d{bottom:447.884533pt;}
.y1b2{bottom:448.708800pt;}
.y10f{bottom:449.270400pt;}
.yd0{bottom:449.958000pt;}
.yef{bottom:451.958000pt;}
.y224{bottom:453.049867pt;}
.y1d2{bottom:454.434933pt;}
.y157{bottom:458.173200pt;}
.y1f8{bottom:460.608933pt;}
.y50{bottom:461.394000pt;}
.y211{bottom:461.952800pt;}
.yb{bottom:462.990669pt;}
.y17c{bottom:463.731733pt;}
.y12f{bottom:464.388533pt;}
.y190{bottom:465.732267pt;}
.y142{bottom:467.076133pt;}
.y1c7{bottom:470.603733pt;}
.ycf{bottom:471.291333pt;}
.y1d1{bottom:473.101600pt;}
.yee{bottom:473.291333pt;}
.y4f{bottom:475.794000pt;}
.y24c{bottom:476.776933pt;}
.y29{bottom:478.680000pt;}
.ya{bottom:478.990666pt;}
.y179{bottom:479.506533pt;}
.ya0{bottom:481.769067pt;}
.y1f7{bottom:481.942267pt;}
.y17b{bottom:482.398400pt;}
.y210{bottom:483.286133pt;}
.y10e{bottom:485.721867pt;}
.y18f{bottom:487.065600pt;}
.y141{bottom:488.409467pt;}
.y1d0{bottom:491.768267pt;}
.y1c6{bottom:491.937067pt;}
.yce{bottom:492.624667pt;}
.yed{bottom:494.624667pt;}
.y9{bottom:494.990666pt;}
.y24b{bottom:498.110267pt;}
.y17a{bottom:501.065067pt;}
.y4e{bottom:501.532667pt;}
.y1f5{bottom:503.275600pt;}
.y10d{bottom:507.055200pt;}
.y18e{bottom:508.398933pt;}
.y1f6{bottom:508.603600pt;}
.y140{bottom:509.742800pt;}
.y28{bottom:511.259600pt;}
.y1c5{bottom:513.270400pt;}
.y16e{bottom:513.958000pt;}
.y4d{bottom:515.932667pt;}
.yec{bottom:515.958000pt;}
.y9f{bottom:518.220533pt;}
.y24a{bottom:519.443600pt;}
.y1f4{bottom:524.608933pt;}
.y15c{bottom:524.860933pt;}
.y10c{bottom:528.388533pt;}
.ycd{bottom:529.076133pt;}
.y4c{bottom:530.332667pt;}
.y13f{bottom:531.076133pt;}
.y16d{bottom:535.291333pt;}
.yeb{bottom:537.291333pt;}
.y9e{bottom:539.553867pt;}
.y249{bottom:540.776933pt;}
.y12e{bottom:543.506533pt;}
.y27{bottom:543.839067pt;}
.y15b{bottom:546.194267pt;}
.y10b{bottom:549.721867pt;}
.ycc{bottom:550.409467pt;}
.y13e{bottom:552.409467pt;}
.y4b{bottom:556.071200pt;}
.y16c{bottom:556.624667pt;}
.y1f3{bottom:557.280800pt;}
.y7f{bottom:558.286800pt;}
.y124{bottom:558.624667pt;}
.y9d{bottom:560.887200pt;}
.y248{bottom:562.110267pt;}
.y1a7{bottom:566.183733pt;}
.y15a{bottom:567.527600pt;}
.y4a{bottom:570.471200pt;}
.y10a{bottom:571.055200pt;}
.ycb{bottom:571.742800pt;}
.yea{bottom:573.742800pt;}
.y8{bottom:573.786667pt;}
.y16b{bottom:577.958000pt;}
.y123{bottom:579.958000pt;}
.y19c{bottom:581.301867pt;}
.y9c{bottom:582.220533pt;}
.y247{bottom:583.443600pt;}
.y1c4{bottom:586.173200pt;}
.y1a6{bottom:587.517067pt;}
.y13d{bottom:588.860933pt;}
.y1f2{bottom:589.952800pt;}
.y20f{bottom:591.296533pt;}
.y109{bottom:592.388400pt;}
.y7{bottom:592.685334pt;}
.yca{bottom:593.076133pt;}
.ye9{bottom:595.076133pt;}
.y49{bottom:596.209733pt;}
.y156{bottom:601.291333pt;}
.y19b{bottom:602.635200pt;}
.y246{bottom:604.776933pt;}
.y1a5{bottom:608.850400pt;}
.y13c{bottom:610.194267pt;}
.y48{bottom:610.609733pt;}
.y1f1{bottom:611.286133pt;}
.y73{bottom:611.804800pt;}
.y20e{bottom:612.629867pt;}
.y108{bottom:613.721733pt;}
.yc9{bottom:614.409467pt;}
.ye8{bottom:616.409467pt;}
.y9b{bottom:618.671867pt;}
.y155{bottom:622.624667pt;}
.y19a{bottom:623.968533pt;}
.y72{bottom:624.604800pt;}
.y47{bottom:625.009733pt;}
.y245{bottom:626.110267pt;}
.y1a4{bottom:630.183733pt;}
.y13b{bottom:631.527600pt;}
.y1f0{bottom:632.619467pt;}
.y20d{bottom:633.963200pt;}
.yc8{bottom:635.742800pt;}
.y71{bottom:637.404800pt;}
.ye7{bottom:637.742800pt;}
.y9a{bottom:640.005200pt;}
.y8a{bottom:641.635200pt;}
.y1c3{bottom:643.958000pt;}
.y199{bottom:645.301867pt;}
.y6{bottom:645.598667pt;}
.y244{bottom:647.443600pt;}
.y31{bottom:647.748000pt;}
.y107{bottom:650.173200pt;}
.y70{bottom:650.204800pt;}
.y46{bottom:650.748400pt;}
.y12d{bottom:652.860933pt;}
.y1ef{bottom:653.952800pt;}
.y20c{bottom:655.296533pt;}
.yc7{bottom:657.076133pt;}
.y122{bottom:659.076133pt;}
.y99{bottom:661.338667pt;}
.y45{bottom:665.148400pt;}
.y243{bottom:668.776933pt;}
.y3{bottom:668.977329pt;}
.y6f{bottom:670.563867pt;}
.y106{bottom:671.506533pt;}
.ye6{bottom:674.194267pt;}
.y89{bottom:675.953333pt;}
.y223{bottom:676.629867pt;}
.y1e8{bottom:678.409467pt;}
.y30{bottom:680.327600pt;}
.y154{bottom:680.409467pt;}
.y98{bottom:682.672000pt;}
.y1ee{bottom:686.624667pt;}
.y20b{bottom:687.968533pt;}
.y198{bottom:689.312400pt;}
.y242{bottom:690.110267pt;}
.y44{bottom:690.886933pt;}
.y105{bottom:692.839867pt;}
.yc6{bottom:693.527600pt;}
.ye5{bottom:695.527600pt;}
.y222{bottom:697.963200pt;}
.y1e7{bottom:699.742800pt;}
.y153{bottom:701.742800pt;}
.y96{bottom:704.005333pt;}
.y43{bottom:705.286933pt;}
.y6e{bottom:707.015333pt;}
.y1ed{bottom:707.958000pt;}
.y20a{bottom:709.301867pt;}
.y97{bottom:709.333200pt;}
.y88{bottom:710.271467pt;}
.y197{bottom:710.645733pt;}
.y241{bottom:711.443600pt;}
.y2f{bottom:712.907067pt;}
.y104{bottom:714.173200pt;}
.yc5{bottom:714.860933pt;}
.ye4{bottom:716.860933pt;}
.y221{bottom:719.296533pt;}
.y1e6{bottom:721.076133pt;}
.y152{bottom:723.076133pt;}
.y95{bottom:725.338667pt;}
.y1ec{bottom:729.291333pt;}
.y209{bottom:730.635200pt;}
.y196{bottom:731.979067pt;}
.y240{bottom:732.776933pt;}
.yc4{bottom:736.194267pt;}
.y6d{bottom:736.233467pt;}
.ye3{bottom:738.194267pt;}
.y235{bottom:741.973733pt;}
.y1e5{bottom:742.409467pt;}
.y151{bottom:744.409467pt;}
.y87{bottom:744.589600pt;}
.y94{bottom:746.672000pt;}
.y42{bottom:749.914533pt;}
.y103{bottom:750.624667pt;}
.y208{bottom:751.968533pt;}
.y195{bottom:753.312400pt;}
.y6c{bottom:756.592533pt;}
.yc3{bottom:757.527600pt;}
.ye2{bottom:759.527600pt;}
.y23f{bottom:761.669333pt;}
.y234{bottom:763.307067pt;}
.y1e4{bottom:763.742800pt;}
.y86{bottom:763.789600pt;}
.y150{bottom:765.742800pt;}
.y6b{bottom:769.392533pt;}
.y41{bottom:771.247867pt;}
.y220{bottom:773.301867pt;}
.y121{bottom:774.645733pt;}
.yc2{bottom:778.860933pt;}
.y2e{bottom:779.502400pt;}
.yb8{bottom:780.860933pt;}
.y2{bottom:781.661334pt;}
.y6a{bottom:782.192533pt;}
.y85{bottom:782.989600pt;}
.y23e{bottom:783.002667pt;}
.y93{bottom:783.123333pt;}
.y207{bottom:784.640400pt;}
.y26{bottom:786.294000pt;}
.y1eb{bottom:787.076133pt;}
.y40{bottom:792.581200pt;}
.y1b1{bottom:794.635200pt;}
.ye1{bottom:795.979067pt;}
.yc1{bottom:800.194267pt;}
.y102{bottom:802.194267pt;}
.y69{bottom:802.551600pt;}
.y23d{bottom:804.336000pt;}
.y92{bottom:804.456667pt;}
.y206{bottom:805.973733pt;}
.y2d{bottom:808.302400pt;}
.y3f{bottom:813.914533pt;}
.y68{bottom:815.351600pt;}
.y1b0{bottom:815.968533pt;}
.y84{bottom:817.307733pt;}
.yb7{bottom:817.312400pt;}
.y25{bottom:818.294000pt;}
.yc0{bottom:821.527600pt;}
.y101{bottom:823.527600pt;}
.y91{bottom:825.790000pt;}
.y205{bottom:827.307067pt;}
.y23c{bottom:833.228400pt;}
.y3e{bottom:835.247867pt;}
.y67{bottom:835.710667pt;}
.y2c{bottom:837.102400pt;}
.y1af{bottom:837.301867pt;}
.yb6{bottom:838.645733pt;}
.ybf{bottom:842.860933pt;}
.y100{bottom:844.860933pt;}
.y90{bottom:847.123333pt;}
.y66{bottom:848.510667pt;}
.y204{bottom:848.640400pt;}
.y24{bottom:850.294000pt;}
.y83{bottom:851.625867pt;}
.y23b{bottom:854.561733pt;}
.y3d{bottom:856.581200pt;}
.y1{bottom:859.312000pt;}
.yb5{bottom:859.979067pt;}
.y65{bottom:861.310667pt;}
.ybe{bottom:864.194267pt;}
.y8f{bottom:868.456667pt;}
.y64{bottom:874.110667pt;}
.y23a{bottom:875.895067pt;}
.y3c{bottom:877.914533pt;}
.y16a{bottom:879.312400pt;}
.yb4{bottom:881.312400pt;}
.y82{bottom:885.943867pt;}
.y8e{bottom:889.790000pt;}
.y63{bottom:894.469733pt;}
.ybd{bottom:900.645733pt;}
.yb3{bottom:902.645733pt;}
.y239{bottom:904.787467pt;}
.y8d{bottom:911.123333pt;}
.y81{bottom:920.262000pt;}
.y238{bottom:926.120800pt;}
.y62{bottom:931.182667pt;}
.y8c{bottom:932.456667pt;}
.y2b{bottom:941.648267pt;}
.y262{bottom:950.193200pt;}
.y23{bottom:951.853067pt;}
.y80{bottom:954.580133pt;}
.y2a{bottom:962.981600pt;}
.y61{bottom:966.204267pt;}
.y237{bottom:966.351733pt;}
.y261{bottom:970.993200pt;}
.y8b{bottom:972.456667pt;}
.yb9{bottom:974.392000pt;}
.y60{bottom:982.204267pt;}
.yb0{bottom:987.428933pt;}
.ybb{bottom:988.720667pt;}
.y260{bottom:991.793200pt;}
.y5f{bottom:998.204267pt;}
.y3b{bottom:1002.166933pt;}
.y236{bottom:1006.582667pt;}
.y25f{bottom:1012.593200pt;}
.y3a{bottom:1022.166933pt;}
.y5e{bottom:1029.322400pt;}
.yb2{bottom:1053.593200pt;}
.y5d{bottom:1055.860267pt;}
.y39{bottom:1061.574800pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1a{height:32.437500pt;}
.h1e{height:33.850437pt;}
.h1b{height:33.869792pt;}
.h19{height:34.000000pt;}
.h18{height:38.708333pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h14{height:43.312500pt;}
.h15{height:43.335938pt;}
.h28{height:44.601562pt;}
.h29{height:44.660023pt;}
.h10{height:48.385417pt;}
.h26{height:48.656250pt;}
.h2{height:49.024000pt;}
.h25{height:51.000000pt;}
.h2a{height:52.000000pt;}
.h12{height:52.937500pt;}
.h27{height:52.966146pt;}
.h13{height:53.223958pt;}
.h11{height:57.750000pt;}
.h24{height:57.781250pt;}
.h1c{height:58.062500pt;}
.h1d{height:67.375000pt;}
.h5{height:69.450667pt;}
.he{height:77.416667pt;}
.hd{height:86.625000pt;}
.hf{height:86.671875pt;}
.h16{height:89.847436pt;}
.h1f{height:92.874507pt;}
.h23{height:93.241867pt;}
.hc{height:96.250000pt;}
.h20{height:97.750000pt;}
.h17{height:98.831939pt;}
.h4{height:105.826671pt;}
.h21{height:120.312500pt;}
.h22{height:148.128000pt;}
.hb{height:346.500000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:0.941333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x25{left:-363.629867pt;}
.x0{left:0.000000pt;}
.x24{left:48.027067pt;}
.x14{left:52.926267pt;}
.x26{left:82.132933pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x20{left:124.149600pt;}
.x29{left:125.052533pt;}
.x2e{left:132.283467pt;}
.x32{left:140.170667pt;}
.x2f{left:154.960667pt;}
.x33{left:158.285600pt;}
.x39{left:162.875867pt;}
.x1d{left:164.196933pt;}
.x38{left:167.725467pt;}
.x34{left:172.582533pt;}
.x4{left:180.874667pt;}
.x30{left:185.196800pt;}
.x13{left:230.551200pt;}
.x1e{left:241.415067pt;}
.xf{left:245.258133pt;}
.x1f{left:251.619733pt;}
.x8{left:258.922533pt;}
.x35{left:260.313867pt;}
.x36{left:265.617067pt;}
.x21{left:268.342267pt;}
.x22{left:273.524133pt;}
.x6{left:305.328800pt;}
.x7{left:330.315867pt;}
.xe{left:353.176133pt;}
.x2d{left:379.340533pt;}
.x2c{left:380.631867pt;}
.x27{left:387.838267pt;}
.x23{left:389.129600pt;}
.x3a{left:401.767733pt;}
.x3{left:404.408000pt;}
.x17{left:419.527467pt;}
.x1a{left:424.229067pt;}
.x19{left:427.902000pt;}
.x1c{left:430.324933pt;}
.x18{left:436.879733pt;}
.x1b{left:439.347200pt;}
.x10{left:442.719067pt;}
.x5{left:482.055467pt;}
.x11{left:486.354933pt;}
.xa{left:488.828800pt;}
.x12{left:498.530667pt;}
.xc{left:499.514667pt;}
.xb{left:501.004667pt;}
.x2a{left:507.011200pt;}
.x2b{left:512.380133pt;}
.x16{left:516.663733pt;}
.xd{left:519.546000pt;}
.x15{left:521.099600pt;}
.x9{left:522.602267pt;}
.x37{left:603.936400pt;}
.x28{left:642.819733pt;}
.x31{left:699.212533pt;}
}




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