
    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_94397da940c09327d37131dc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9f760149585abc9cde86dfac.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693359;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_ef2955f3896d3bbaa3ae7f84.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740267;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_34282df359e6593ac8374493.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.131000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2f2fc48ff25d17cf307cc43f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_78462e0a10f23ec4b25fdcb6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2e1d6edd72414c5f786384f4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ebe065882aff10f1e01bf475.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965385;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_a4f7cf9c0d2fe95346b5824a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.808000;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_11404601c47b47b20d4af72b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003000;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_bf0be99afc59a9c6a37cb428.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.164000;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_b2e77774b96b85cb0d8fee28.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1c603f9299843d1fe5a68982.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_daa28c1940ef5a913aca8789.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m17{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);}
.m12e{transform:matrix(0.239492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239492,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.241606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241606,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.242033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242033,0.000000,0.000000,0.250000,0,0);}
.md3{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);}
.m139{transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.242782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242782,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.243107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243107,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.243164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243164,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.243430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243430,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.243461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243461,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.243684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243684,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.243797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243797,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.243809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243809,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.244005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244005,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.244097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244097,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244128,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244253,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244305,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.244373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244373,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.244509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244509,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.244566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244566,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.244592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244592,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.244689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244689,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.244944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244944,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.244961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244961,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245503,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.245528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245528,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.245648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245648,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245741,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.245743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245743,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245766,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.245768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245768,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.245789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245789,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.245936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245936,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245989,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.246019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246019,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.246027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246027,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246232,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.246233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246233,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246368,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246417,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.246434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246434,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.246441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246441,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246498,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.246523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246523,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246609,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246743,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246758,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.246758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246758,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246777,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246994,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.247042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247042,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247048,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247191,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247209,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247214,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247339,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247361,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247434,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m73{transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.247523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247523,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.247559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247559,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247757,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247764,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247793,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247809,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247841,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.247989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247989,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248073,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248074,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248183,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m47{transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248228,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248264,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248281,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248291,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248294,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248339,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248566,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248639,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.248752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248752,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248820,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248932,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.m3b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249078,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249086,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249408,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);}
.md9{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);}
.m57{transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m11e{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);}
.m39{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);}
.m3a{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m6f{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);}
.med{transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,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);}
.m109{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250169,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.md{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.250456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250456,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250884,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250968,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);}
.mae{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);}
.m104{transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251109,0.000000,0.000000,0.250000,0,0);}
.m121{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);}
.m33{transform:matrix(0.251219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251219,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);}
.mf9{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);}
.mf8{transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251432,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251566,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251641,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.251659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251659,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251661,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251975,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.252109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252109,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252155,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252166,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252339,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252586,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252661,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252723,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252734,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252886,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252889,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.252959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252959,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.253118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253118,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253131,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.253164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253164,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.253217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253217,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.me6{transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253245,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.253258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253258,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.253284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253284,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.253302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253302,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.253314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253314,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.253411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253411,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.253436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253436,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253466,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.253484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253484,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253525,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.253528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253528,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253572,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253841,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.253844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253844,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253873,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253889,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.254003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254003,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m93{transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254305,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.254407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254407,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.254511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254511,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254542,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.254708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254708,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.254923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254923,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.254939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254939,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.255064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255064,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.255323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255323,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.255330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255330,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.255914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255914,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.255934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255934,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.255956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255956,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256014,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256068,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.256128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256128,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256263,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.256273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256273,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.256495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256495,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.257086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257086,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.257211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257211,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.257357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257357,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257367,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.257455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257455,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.981000px;}
.v3{vertical-align:21.978000px;}
.v1{vertical-align:25.974000px;}
.ls3f{letter-spacing:-0.924000px;}
.ls23{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.741000px;}
.ls2f{letter-spacing:-0.726000px;}
.ls46{letter-spacing:-0.702000px;}
.ls21{letter-spacing:-0.660000px;}
.ls39{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.594000px;}
.ls12{letter-spacing:-0.570000px;}
.ls3c{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.528000px;}
.ls3a{letter-spacing:-0.486000px;}
.ls25{letter-spacing:-0.462000px;}
.ls13{letter-spacing:-0.456000px;}
.ls3d{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.399000px;}
.ls26{letter-spacing:-0.396000px;}
.ls3e{letter-spacing:-0.384780px;}
.ls3b{letter-spacing:-0.378000px;}
.ls3{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.285000px;}
.ls1e{letter-spacing:-0.264000px;}
.ls4a{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.228000px;}
.ls18{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.198000px;}
.ls2a{letter-spacing:-0.192390px;}
.ls49{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.171000px;}
.ls19{letter-spacing:-0.162000px;}
.ls40{letter-spacing:-0.153912px;}
.lse{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.120000px;}
.ls4{letter-spacing:-0.108000px;}
.ls38{letter-spacing:-0.076956px;}
.lsd{letter-spacing:-0.066000px;}
.ls8{letter-spacing:-0.060000px;}
.ls2b{letter-spacing:-0.054000px;}
.ls34{letter-spacing:-0.038478px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000073px;}
.ls1b{letter-spacing:0.000360px;}
.ls27{letter-spacing:0.033000px;}
.ls2d{letter-spacing:0.038478px;}
.ls1c{letter-spacing:0.054000px;}
.ls43{letter-spacing:0.057000px;}
.ls7{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.066000px;}
.ls2c{letter-spacing:0.076956px;}
.ls1a{letter-spacing:0.077454px;}
.ls42{letter-spacing:0.081000px;}
.ls1f{letter-spacing:0.099000px;}
.ls1d{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.132000px;}
.ls2e{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.165000px;}
.ls37{letter-spacing:0.171000px;}
.ls44{letter-spacing:0.189000px;}
.ls1{letter-spacing:0.192000px;}
.lsc{letter-spacing:0.198000px;}
.ls32{letter-spacing:0.216000px;}
.ls41{letter-spacing:0.231000px;}
.ls5{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.264000px;}
.ls33{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.330000px;}
.ls36{letter-spacing:0.342000px;}
.ls30{letter-spacing:0.660000px;}
.ls45{letter-spacing:1.870880px;}
.ls35{letter-spacing:2.427114px;}
.ls31{letter-spacing:2.437134px;}
.ls48{letter-spacing:104.055000px;}
.ls47{letter-spacing:104.055600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws24{word-spacing:-14.454000px;}
.ws2d{word-spacing:-13.530000px;}
.ws7{word-spacing:-13.380000px;}
.ws51{word-spacing:-13.332000px;}
.ws42{word-spacing:-13.266000px;}
.ws1d{word-spacing:-13.200000px;}
.ws8{word-spacing:-13.140000px;}
.ws32{word-spacing:-13.134000px;}
.wsa{word-spacing:-13.080000px;}
.ws33{word-spacing:-13.068000px;}
.ws57{word-spacing:-12.000000px;}
.ws58{word-spacing:-11.940000px;}
.ws3b{word-spacing:-11.934000px;}
.ws36{word-spacing:-11.610000px;}
.ws52{word-spacing:-11.340000px;}
.ws47{word-spacing:-11.178000px;}
.ws3d{word-spacing:-11.070000px;}
.ws3c{word-spacing:-11.016000px;}
.ws1e{word-spacing:-10.908000px;}
.ws1f{word-spacing:-10.800000px;}
.ws30{word-spacing:-10.746000px;}
.ws37{word-spacing:-10.584000px;}
.ws55{word-spacing:-10.314000px;}
.ws53{word-spacing:-10.260000px;}
.ws54{word-spacing:-10.098000px;}
.ws3a{word-spacing:-8.503638px;}
.ws43{word-spacing:-8.465160px;}
.ws22{word-spacing:-8.426682px;}
.ws50{word-spacing:-8.388204px;}
.ws44{word-spacing:-8.349726px;}
.ws4e{word-spacing:-8.272770px;}
.ws2c{word-spacing:-8.234292px;}
.ws4d{word-spacing:-8.041902px;}
.ws3{word-spacing:-3.300000px;}
.ws3e{word-spacing:-0.660000px;}
.ws45{word-spacing:-0.342000px;}
.ws2e{word-spacing:-0.330000px;}
.ws4{word-spacing:-0.288000px;}
.ws41{word-spacing:-0.270000px;}
.ws2f{word-spacing:-0.264000px;}
.ws0{word-spacing:-0.240000px;}
.ws40{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.198000px;}
.ws5{word-spacing:-0.192000px;}
.ws46{word-spacing:-0.171000px;}
.ws39{word-spacing:-0.162000px;}
.ws1a{word-spacing:-0.132000px;}
.wsb{word-spacing:-0.120000px;}
.ws21{word-spacing:-0.108000px;}
.ws34{word-spacing:-0.076956px;}
.wse{word-spacing:-0.066000px;}
.ws9{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.054000px;}
.ws12{word-spacing:-0.039000px;}
.ws35{word-spacing:-0.038478px;}
.ws2{word-spacing:0.000000px;}
.ws3f{word-spacing:0.038478px;}
.ws31{word-spacing:0.054000px;}
.wsc{word-spacing:0.060000px;}
.wsf{word-spacing:0.066000px;}
.ws6{word-spacing:0.108000px;}
.wsd{word-spacing:0.120000px;}
.ws10{word-spacing:0.132000px;}
.ws1c{word-spacing:0.162000px;}
.ws19{word-spacing:0.171000px;}
.ws59{word-spacing:0.180000px;}
.ws23{word-spacing:0.198000px;}
.ws1b{word-spacing:0.216000px;}
.ws16{word-spacing:0.228000px;}
.ws5a{word-spacing:0.240000px;}
.ws20{word-spacing:0.264000px;}
.ws17{word-spacing:0.285000px;}
.ws29{word-spacing:0.330000px;}
.ws4a{word-spacing:0.378000px;}
.ws2b{word-spacing:0.396000px;}
.ws18{word-spacing:0.399000px;}
.ws4c{word-spacing:0.432000px;}
.ws15{word-spacing:0.456000px;}
.ws2a{word-spacing:0.462000px;}
.ws49{word-spacing:0.486000px;}
.ws26{word-spacing:0.528000px;}
.ws4b{word-spacing:0.540000px;}
.ws14{word-spacing:0.570000px;}
.ws28{word-spacing:0.594000px;}
.ws48{word-spacing:0.648000px;}
.ws25{word-spacing:0.660000px;}
.ws56{word-spacing:0.702000px;}
.ws38{word-spacing:0.726000px;}
.ws13{word-spacing:0.741000px;}
.ws27{word-spacing:0.792000px;}
.ws4f{word-spacing:0.924000px;}
._6{margin-left:-6.624000px;}
._9{margin-left:-5.237400px;}
._0{margin-left:-3.978000px;}
._1{margin-left:-2.340000px;}
._3{margin-left:-1.260600px;}
._7{width:1.056000px;}
._5{width:2.412000px;}
._2{width:3.587400px;}
._4{width:4.738800px;}
._8{width:7.504200px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:33.231000px;}
.fsa{font-size:38.478000px;}
.fs7{font-size:39.000000px;}
.fs1{font-size:45.474000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs6{font-size:363.030000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:97.899300px;}
.y12{bottom:106.299150px;}
.y72{bottom:106.299300px;}
.y164{bottom:125.499150px;}
.y1e6{bottom:125.587950px;}
.y11{bottom:125.799150px;}
.ydb{bottom:125.799300px;}
.y1c2{bottom:129.141300px;}
.y163{bottom:144.699150px;}
.y1e5{bottom:144.876600px;}
.y10{bottom:145.299150px;}
.yda{bottom:145.299300px;}
.yd4{bottom:145.733850px;}
.y175{bottom:146.141550px;}
.y71{bottom:148.910550px;}
.y1c1{bottom:151.983300px;}
.y162{bottom:163.899150px;}
.y1e4{bottom:164.165250px;}
.y91{bottom:164.799150px;}
.yd9{bottom:164.799300px;}
.y1a1{bottom:166.769550px;}
.yb1{bottom:167.237250px;}
.y174{bottom:168.641550px;}
.y70{bottom:171.410550px;}
.y1c0{bottom:174.825450px;}
.y161{bottom:183.099150px;}
.y1e3{bottom:183.453900px;}
.y90{bottom:184.299150px;}
.yd8{bottom:184.299300px;}
.y147{bottom:185.479350px;}
.yce{bottom:186.229350px;}
.y194{bottom:186.575400px;}
.y1a0{bottom:187.019550px;}
.yb0{bottom:189.587250px;}
.y173{bottom:191.141550px;}
.y6f{bottom:193.910550px;}
.y1bf{bottom:197.667450px;}
.y160{bottom:202.299150px;}
.y1e2{bottom:202.742550px;}
.y8f{bottom:203.799150px;}
.y34{bottom:204.882750px;}
.y19f{bottom:207.269550px;}
.y146{bottom:207.679350px;}
.ycd{bottom:208.879350px;}
.y193{bottom:209.075400px;}
.yaf{bottom:211.937250px;}
.y172{bottom:213.641550px;}
.y6e{bottom:216.410550px;}
.y1be{bottom:220.509450px;}
.y15f{bottom:221.499150px;}
.y1e1{bottom:222.031200px;}
.y8e{bottom:223.299150px;}
.y33{bottom:224.382750px;}
.yd7{bottom:225.887250px;}
.y19e{bottom:227.519550px;}
.y145{bottom:229.879350px;}
.ycc{bottom:231.529350px;}
.y192{bottom:231.575400px;}
.yae{bottom:234.287250px;}
.y171{bottom:236.141550px;}
.y6d{bottom:238.910550px;}
.y15e{bottom:240.699150px;}
.y1e0{bottom:241.319850px;}
.y113{bottom:242.799150px;}
.y1bd{bottom:243.351600px;}
.y32{bottom:243.882750px;}
.yf8{bottom:246.512250px;}
.yd6{bottom:248.537250px;}
.y144{bottom:252.079350px;}
.y191{bottom:254.075400px;}
.ycb{bottom:254.179350px;}
.y19d{bottom:256.273500px;}
.yad{bottom:256.637250px;}
.y15d{bottom:259.899150px;}
.y1df{bottom:260.608500px;}
.y6c{bottom:261.410550px;}
.y112{bottom:262.299150px;}
.y31{bottom:263.382750px;}
.y8d{bottom:265.337250px;}
.y1bc{bottom:266.193600px;}
.yf6{bottom:269.237250px;}
.yd5{bottom:271.187250px;}
.y170{bottom:271.397400px;}
.y143{bottom:274.279350px;}
.yf7{bottom:274.731750px;}
.y190{bottom:276.575400px;}
.y185{bottom:276.589650px;}
.y19c{bottom:278.773500px;}
.yac{bottom:278.987250px;}
.y15c{bottom:279.099150px;}
.y1de{bottom:279.897150px;}
.y111{bottom:281.799150px;}
.y30{bottom:282.882750px;}
.y6b{bottom:283.910550px;}
.y8c{bottom:288.212250px;}
.y1bb{bottom:289.035750px;}
.yf5{bottom:291.962250px;}
.yca{bottom:293.837250px;}
.y142{bottom:296.479350px;}
.y15b{bottom:298.299150px;}
.y18f{bottom:299.075400px;}
.y1dd{bottom:299.185800px;}
.y110{bottom:301.299150px;}
.yab{bottom:301.337250px;}
.y2f{bottom:302.382750px;}
.y6a{bottom:306.410550px;}
.y8b{bottom:311.087250px;}
.y1ba{bottom:311.877750px;}
.y19b{bottom:314.029350px;}
.yf4{bottom:314.687250px;}
.yc9{bottom:316.487250px;}
.y15a{bottom:317.499150px;}
.y1dc{bottom:318.474450px;}
.y141{bottom:318.679350px;}
.y10f{bottom:320.799150px;}
.yd3{bottom:321.327450px;}
.y18e{bottom:321.575400px;}
.y2e{bottom:321.882750px;}
.yaa{bottom:323.687250px;}
.y69{bottom:328.910550px;}
.y8a{bottom:333.962250px;}
.y1b9{bottom:334.719750px;}
.y159{bottom:336.699150px;}
.yf3{bottom:337.412250px;}
.y1db{bottom:337.763100px;}
.yc8{bottom:339.137250px;}
.y10e{bottom:340.299150px;}
.y140{bottom:340.879350px;}
.y2d{bottom:341.382750px;}
.y4d{bottom:342.587250px;}
.yd2{bottom:343.827450px;}
.y18d{bottom:344.075400px;}
.ya9{bottom:346.037250px;}
.y68{bottom:351.410550px;}
.y158{bottom:355.899150px;}
.y89{bottom:356.837250px;}
.y1da{bottom:357.051750px;}
.y1b8{bottom:357.561900px;}
.y119{bottom:359.799150px;}
.yf2{bottom:360.137250px;}
.y2c{bottom:360.882750px;}
.yc7{bottom:361.787250px;}
.y13f{bottom:363.079350px;}
.y4c{bottom:365.087250px;}
.yd1{bottom:366.327450px;}
.y18c{bottom:366.575400px;}
.ya8{bottom:368.387250px;}
.y67{bottom:373.910550px;}
.y157{bottom:375.099150px;}
.y1d9{bottom:376.340400px;}
.y118{bottom:379.299150px;}
.y88{bottom:379.712250px;}
.y2b{bottom:380.382750px;}
.y1b7{bottom:380.403900px;}
.y10d{bottom:381.604350px;}
.yf1{bottom:382.862250px;}
.yc6{bottom:384.437250px;}
.y13e{bottom:385.279350px;}
.y4b{bottom:387.587250px;}
.yd0{bottom:388.827450px;}
.y18b{bottom:389.075400px;}
.ya7{bottom:390.737250px;}
.yf{bottom:391.846350px;}
.y156{bottom:394.299150px;}
.y1d8{bottom:395.629050px;}
.y66{bottom:396.410550px;}
.y117{bottom:398.799150px;}
.y2a{bottom:399.882750px;}
.y87{bottom:402.587250px;}
.y1b6{bottom:403.246050px;}
.y10c{bottom:403.579350px;}
.yf0{bottom:405.587250px;}
.yc5{bottom:407.087250px;}
.y13d{bottom:407.479350px;}
.y4a{bottom:410.087250px;}
.yc{bottom:410.876250px;}
.y18a{bottom:411.575400px;}
.ya6{bottom:413.087250px;}
.y155{bottom:413.499150px;}
.y184{bottom:414.601350px;}
.y1d7{bottom:414.917700px;}
.y116{bottom:418.299150px;}
.y65{bottom:418.910550px;}
.y29{bottom:419.382750px;}
.y16f{bottom:421.279350px;}
.ycf{bottom:424.083300px;}
.y86{bottom:425.462250px;}
.y10b{bottom:425.554350px;}
.y1b5{bottom:426.088050px;}
.yef{bottom:428.312250px;}
.yb{bottom:428.876250px;}
.y13c{bottom:429.679350px;}
.yc4{bottom:429.737250px;}
.y49{bottom:432.587250px;}
.y154{bottom:432.699150px;}
.y189{bottom:434.075400px;}
.y1d6{bottom:434.206350px;}
.ya5{bottom:435.437250px;}
.y183{bottom:437.101350px;}
.y115{bottom:437.799150px;}
.y28{bottom:438.882750px;}
.y64{bottom:441.410550px;}
.y16e{bottom:443.479350px;}
.ya{bottom:446.876250px;}
.y10a{bottom:447.529350px;}
.y85{bottom:448.337250px;}
.y1b4{bottom:448.930050px;}
.yee{bottom:451.037250px;}
.y13b{bottom:451.879350px;}
.y153{bottom:451.899150px;}
.yc3{bottom:452.387250px;}
.y19a{bottom:453.281250px;}
.y1d5{bottom:453.495000px;}
.y48{bottom:455.087250px;}
.y12c{bottom:457.299150px;}
.ya4{bottom:457.787250px;}
.y27{bottom:458.382750px;}
.y182{bottom:459.151350px;}
.y63{bottom:463.910550px;}
.y16d{bottom:465.679350px;}
.y188{bottom:469.331250px;}
.y109{bottom:469.504350px;}
.y152{bottom:471.099150px;}
.y1eb{bottom:471.138750px;}
.y84{bottom:471.212250px;}
.y1b3{bottom:471.772200px;}
.y1d4{bottom:472.783650px;}
.yed{bottom:473.762250px;}
.y13a{bottom:474.079350px;}
.yc2{bottom:475.037250px;}
.y199{bottom:475.331250px;}
.y12b{bottom:476.799150px;}
.y47{bottom:477.587250px;}
.y26{bottom:477.882750px;}
.ya3{bottom:480.137250px;}
.y181{bottom:481.201350px;}
.y114{bottom:483.081750px;}
.y62{bottom:486.410550px;}
.y16c{bottom:487.879350px;}
.y151{bottom:490.299150px;}
.y1ea{bottom:490.638750px;}
.y1d3{bottom:492.072300px;}
.y82{bottom:494.087250px;}
.y1b2{bottom:494.614200px;}
.y139{bottom:496.279350px;}
.y12a{bottom:496.299150px;}
.yec{bottom:496.487250px;}
.y198{bottom:497.381250px;}
.y25{bottom:497.382750px;}
.yc1{bottom:497.687250px;}
.ye{bottom:497.995350px;}
.y83{bottom:499.581750px;}
.y46{bottom:500.087250px;}
.ya2{bottom:502.487250px;}
.y108{bottom:508.487250px;}
.y150{bottom:509.499150px;}
.y16b{bottom:510.079350px;}
.y1e9{bottom:510.138750px;}
.y1d2{bottom:511.360950px;}
.y180{bottom:511.755300px;}
.y129{bottom:515.799150px;}
.y24{bottom:516.882750px;}
.y81{bottom:516.962250px;}
.y61{bottom:517.414500px;}
.y1b1{bottom:517.456350px;}
.y138{bottom:518.479350px;}
.yeb{bottom:519.212250px;}
.y197{bottom:519.431250px;}
.yc0{bottom:520.337250px;}
.y45{bottom:522.587250px;}
.ya1{bottom:524.837250px;}
.y9{bottom:527.655150px;}
.y14f{bottom:528.699150px;}
.y1e8{bottom:529.638750px;}
.y107{bottom:530.462250px;}
.y1d1{bottom:530.649600px;}
.y16a{bottom:532.279350px;}
.y128{bottom:535.299150px;}
.y23{bottom:536.382750px;}
.y60{bottom:537.664500px;}
.y80{bottom:539.837250px;}
.y1b0{bottom:540.298350px;}
.y137{bottom:540.679350px;}
.yea{bottom:541.937250px;}
.ybf{bottom:542.987250px;}
.y44{bottom:545.087250px;}
.y8{bottom:545.655150px;}
.ya0{bottom:547.187250px;}
.y14e{bottom:547.899150px;}
.y1e7{bottom:549.138750px;}
.y1d0{bottom:549.938250px;}
.y106{bottom:552.437250px;}
.y196{bottom:554.237250px;}
.y169{bottom:554.479350px;}
.y127{bottom:554.799150px;}
.y5f{bottom:557.914500px;}
.y7f{bottom:562.712250px;}
.y136{bottom:562.879350px;}
.y1af{bottom:563.140350px;}
.ye9{bottom:564.662250px;}
.ybe{bottom:565.637250px;}
.y14d{bottom:567.099150px;}
.y43{bottom:567.587250px;}
.y7{bottom:568.151250px;}
.y22{bottom:568.638750px;}
.y1cf{bottom:569.226900px;}
.y9f{bottom:569.537250px;}
.y126{bottom:574.299150px;}
.y105{bottom:574.412250px;}
.y168{bottom:576.679350px;}
.y5e{bottom:578.164500px;}
.y134{bottom:585.079350px;}
.y7e{bottom:585.587250px;}
.y1ae{bottom:585.982500px;}
.y14c{bottom:586.299150px;}
.ye8{bottom:587.387250px;}
.y21{bottom:588.138750px;}
.ybd{bottom:588.287250px;}
.y1ce{bottom:588.515550px;}
.y42{bottom:590.087250px;}
.y135{bottom:590.573850px;}
.y9e{bottom:591.887250px;}
.y104{bottom:596.387250px;}
.y5d{bottom:598.414500px;}
.y167{bottom:598.879350px;}
.y14b{bottom:605.499150px;}
.y133{bottom:607.279350px;}
.y20{bottom:607.638750px;}
.y1cd{bottom:607.804200px;}
.y7d{bottom:608.462250px;}
.y1ad{bottom:608.824500px;}
.ye7{bottom:610.112250px;}
.ybc{bottom:610.937250px;}
.y41{bottom:612.587250px;}
.y9d{bottom:614.237250px;}
.y124{bottom:615.887250px;}
.y103{bottom:618.362250px;}
.y5c{bottom:618.664500px;}
.y166{bottom:621.079350px;}
.y125{bottom:621.381750px;}
.y187{bottom:622.331250px;}
.y14a{bottom:624.699150px;}
.y1cc{bottom:627.092850px;}
.y1f{bottom:627.138750px;}
.y132{bottom:629.479350px;}
.y7c{bottom:631.337250px;}
.y1ac{bottom:631.666650px;}
.ye6{bottom:632.837250px;}
.ybb{bottom:633.587250px;}
.y40{bottom:635.087250px;}
.y9c{bottom:636.587250px;}
.y123{bottom:638.087250px;}
.y5b{bottom:638.914500px;}
.y17f{bottom:639.137250px;}
.y102{bottom:640.337250px;}
.y165{bottom:643.279350px;}
.y149{bottom:643.899150px;}
.y186{bottom:644.831250px;}
.y1cb{bottom:646.381500px;}
.y1e{bottom:646.638750px;}
.y131{bottom:651.679350px;}
.y7b{bottom:654.212250px;}
.y1ab{bottom:654.508650px;}
.ye5{bottom:655.562250px;}
.yba{bottom:656.237250px;}
.y3f{bottom:657.587250px;}
.y9b{bottom:658.937250px;}
.y5a{bottom:659.164500px;}
.y122{bottom:660.287250px;}
.y17e{bottom:661.637250px;}
.y101{bottom:662.312250px;}
.y148{bottom:663.099150px;}
.y1ca{bottom:665.670150px;}
.y1d{bottom:666.138750px;}
.y7a{bottom:677.087250px;}
.y1aa{bottom:677.350650px;}
.ye4{bottom:678.287250px;}
.yb9{bottom:678.887250px;}
.y59{bottom:679.414500px;}
.y3e{bottom:680.087250px;}
.y9a{bottom:681.287250px;}
.y130{bottom:682.383300px;}
.y121{bottom:682.487250px;}
.y17d{bottom:683.687250px;}
.y100{bottom:684.287250px;}
.y1c9{bottom:684.958800px;}
.y1c{bottom:685.638750px;}
.y58{bottom:699.664500px;}
.y79{bottom:699.962250px;}
.y1a9{bottom:700.192800px;}
.ye3{bottom:701.012250px;}
.yb8{bottom:701.537250px;}
.y12f{bottom:702.183300px;}
.y3d{bottom:702.587250px;}
.y99{bottom:703.637250px;}
.y120{bottom:704.687250px;}
.y1b{bottom:705.138750px;}
.y17c{bottom:705.737250px;}
.yff{bottom:706.262250px;}
.y6{bottom:718.528200px;}
.y57{bottom:719.914500px;}
.y12e{bottom:721.983300px;}
.y78{bottom:722.837250px;}
.y1a8{bottom:723.034800px;}
.ye2{bottom:723.737250px;}
.yb7{bottom:724.187250px;}
.y1c8{bottom:724.555350px;}
.y1a{bottom:724.638750px;}
.y3c{bottom:725.087250px;}
.y98{bottom:725.987250px;}
.y11f{bottom:726.887250px;}
.y17b{bottom:727.787250px;}
.yfe{bottom:728.237250px;}
.y1a2{bottom:730.581750px;}
.y56{bottom:740.164500px;}
.y5{bottom:741.028200px;}
.y12d{bottom:741.783300px;}
.y19{bottom:744.138750px;}
.y77{bottom:745.712250px;}
.y1a7{bottom:745.876950px;}
.ye0{bottom:746.462250px;}
.yb6{bottom:746.837250px;}
.y1c7{bottom:747.144000px;}
.y3b{bottom:747.587250px;}
.y96{bottom:748.337250px;}
.y11e{bottom:749.087250px;}
.y17a{bottom:749.837250px;}
.yfd{bottom:750.212250px;}
.ye1{bottom:751.956750px;}
.y97{bottom:753.831750px;}
.y55{bottom:760.414500px;}
.y4{bottom:763.528200px;}
.y18{bottom:763.638750px;}
.y76{bottom:768.587250px;}
.y1a6{bottom:768.718950px;}
.ydf{bottom:769.187250px;}
.yb5{bottom:769.487250px;}
.y1c6{bottom:769.732650px;}
.y3a{bottom:770.087250px;}
.y95{bottom:770.687250px;}
.y11d{bottom:771.287250px;}
.y179{bottom:771.887250px;}
.yfc{bottom:772.187250px;}
.y54{bottom:780.664500px;}
.y17{bottom:783.138750px;}
.y75{bottom:791.462250px;}
.y1a5{bottom:791.560950px;}
.yde{bottom:791.912250px;}
.yb4{bottom:792.137250px;}
.y1c5{bottom:792.321300px;}
.y39{bottom:792.587250px;}
.y94{bottom:793.037250px;}
.y11c{bottom:793.487250px;}
.y178{bottom:793.937250px;}
.yfb{bottom:794.162250px;}
.y53{bottom:800.914500px;}
.y16{bottom:802.638750px;}
.y3{bottom:806.984250px;}
.y74{bottom:814.337250px;}
.y1a4{bottom:814.403100px;}
.ydd{bottom:814.637250px;}
.yb3{bottom:814.787250px;}
.y1c4{bottom:814.909950px;}
.y36{bottom:815.087250px;}
.y93{bottom:815.387250px;}
.y11b{bottom:815.687250px;}
.y177{bottom:815.987250px;}
.yfa{bottom:816.137250px;}
.y52{bottom:821.164500px;}
.y15{bottom:822.138750px;}
.y2{bottom:832.484250px;}
.y73{bottom:837.212250px;}
.y1a3{bottom:837.245250px;}
.ydc{bottom:837.362250px;}
.yb2{bottom:837.437250px;}
.y1c3{bottom:837.498600px;}
.y38{bottom:837.587250px;}
.y92{bottom:837.737250px;}
.y11a{bottom:837.887250px;}
.y176{bottom:838.037250px;}
.yf9{bottom:838.112250px;}
.y51{bottom:841.414500px;}
.y14{bottom:841.638750px;}
.y195{bottom:843.081750px;}
.y1{bottom:857.984250px;}
.y37{bottom:860.087250px;}
.y13{bottom:861.138750px;}
.y50{bottom:861.664500px;}
.y4f{bottom:871.653600px;}
.y35{bottom:930.708000px;}
.yd{bottom:946.311000px;}
.h12{height:25.626348px;}
.h11{height:33.168036px;}
.hf{height:33.618000px;}
.h8{height:34.530462px;}
.hb{height:38.914200px;}
.h7{height:41.376000px;}
.h6{height:42.768000px;}
.he{height:44.160000px;}
.h4{height:46.266000px;}
.h9{height:46.548000px;}
.h5{height:47.561800px;}
.h10{height:49.134000px;}
.ha{height:51.720000px;}
.h2{height:54.678000px;}
.hd{height:56.892000px;}
.h3{height:57.503824px;}
.hc{height:312.931860px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x20{left:41.863650px;}
.x3{left:43.045050px;}
.x4{left:103.848750px;}
.x1{left:106.299150px;}
.xd{left:119.631450px;}
.x2{left:136.569750px;}
.x1e{left:140.699250px;}
.x1f{left:150.002850px;}
.x5{left:162.750300px;}
.x21{left:184.203300px;}
.x1b{left:199.419450px;}
.x22{left:229.911300px;}
.x1c{left:237.555450px;}
.x1d{left:244.881450px;}
.x6{left:249.015450px;}
.x1a{left:260.025450px;}
.xe{left:264.111300px;}
.x16{left:281.986800px;}
.x17{left:291.295800px;}
.xf{left:301.977750px;}
.x18{left:303.850050px;}
.x10{left:311.382300px;}
.x19{left:312.880950px;}
.xb{left:325.143300px;}
.xc{left:329.749200px;}
.x11{left:379.603200px;}
.x12{left:388.907850px;}
.x23{left:488.762850px;}
.x24{left:498.077400px;}
.x14{left:543.266400px;}
.x15{left:552.408300px;}
.x9{left:590.648700px;}
.xa{left:595.275600px;}
.x7{left:638.334150px;}
.x13{left:639.427650px;}
.x8{left:645.842550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.872000pt;}
.v3{vertical-align:19.536000pt;}
.v1{vertical-align:23.088000pt;}
.ls3f{letter-spacing:-0.821333pt;}
.ls23{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.658667pt;}
.ls2f{letter-spacing:-0.645333pt;}
.ls46{letter-spacing:-0.624000pt;}
.ls21{letter-spacing:-0.586667pt;}
.ls39{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.528000pt;}
.ls12{letter-spacing:-0.506667pt;}
.ls3c{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.469333pt;}
.ls3a{letter-spacing:-0.432000pt;}
.ls25{letter-spacing:-0.410667pt;}
.ls13{letter-spacing:-0.405333pt;}
.ls3d{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.354667pt;}
.ls26{letter-spacing:-0.352000pt;}
.ls3e{letter-spacing:-0.342027pt;}
.ls3b{letter-spacing:-0.336000pt;}
.ls3{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.253333pt;}
.ls1e{letter-spacing:-0.234667pt;}
.ls4a{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.202667pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.176000pt;}
.ls2a{letter-spacing:-0.171013pt;}
.ls49{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.152000pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls40{letter-spacing:-0.136811pt;}
.lse{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:-0.096000pt;}
.ls38{letter-spacing:-0.068405pt;}
.lsd{letter-spacing:-0.058667pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls2b{letter-spacing:-0.048000pt;}
.ls34{letter-spacing:-0.034203pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000065pt;}
.ls1b{letter-spacing:0.000320pt;}
.ls27{letter-spacing:0.029333pt;}
.ls2d{letter-spacing:0.034203pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls43{letter-spacing:0.050667pt;}
.ls7{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.058667pt;}
.ls2c{letter-spacing:0.068405pt;}
.ls1a{letter-spacing:0.068848pt;}
.ls42{letter-spacing:0.072000pt;}
.ls1f{letter-spacing:0.088000pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.117333pt;}
.ls2e{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.146667pt;}
.ls37{letter-spacing:0.152000pt;}
.ls44{letter-spacing:0.168000pt;}
.ls1{letter-spacing:0.170667pt;}
.lsc{letter-spacing:0.176000pt;}
.ls32{letter-spacing:0.192000pt;}
.ls41{letter-spacing:0.205333pt;}
.ls5{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.234667pt;}
.ls33{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.293333pt;}
.ls36{letter-spacing:0.304000pt;}
.ls30{letter-spacing:0.586667pt;}
.ls45{letter-spacing:1.663004pt;}
.ls35{letter-spacing:2.157435pt;}
.ls31{letter-spacing:2.166342pt;}
.ls48{letter-spacing:92.493333pt;}
.ls47{letter-spacing:92.493867pt;}
.ws24{word-spacing:-12.848000pt;}
.ws2d{word-spacing:-12.026667pt;}
.ws7{word-spacing:-11.893333pt;}
.ws51{word-spacing:-11.850667pt;}
.ws42{word-spacing:-11.792000pt;}
.ws1d{word-spacing:-11.733333pt;}
.ws8{word-spacing:-11.680000pt;}
.ws32{word-spacing:-11.674667pt;}
.wsa{word-spacing:-11.626667pt;}
.ws33{word-spacing:-11.616000pt;}
.ws57{word-spacing:-10.666667pt;}
.ws58{word-spacing:-10.613333pt;}
.ws3b{word-spacing:-10.608000pt;}
.ws36{word-spacing:-10.320000pt;}
.ws52{word-spacing:-10.080000pt;}
.ws47{word-spacing:-9.936000pt;}
.ws3d{word-spacing:-9.840000pt;}
.ws3c{word-spacing:-9.792000pt;}
.ws1e{word-spacing:-9.696000pt;}
.ws1f{word-spacing:-9.600000pt;}
.ws30{word-spacing:-9.552000pt;}
.ws37{word-spacing:-9.408000pt;}
.ws55{word-spacing:-9.168000pt;}
.ws53{word-spacing:-9.120000pt;}
.ws54{word-spacing:-8.976000pt;}
.ws3a{word-spacing:-7.558789pt;}
.ws43{word-spacing:-7.524587pt;}
.ws22{word-spacing:-7.490384pt;}
.ws50{word-spacing:-7.456181pt;}
.ws44{word-spacing:-7.421979pt;}
.ws4e{word-spacing:-7.353573pt;}
.ws2c{word-spacing:-7.319371pt;}
.ws4d{word-spacing:-7.148357pt;}
.ws3{word-spacing:-2.933333pt;}
.ws3e{word-spacing:-0.586667pt;}
.ws45{word-spacing:-0.304000pt;}
.ws2e{word-spacing:-0.293333pt;}
.ws4{word-spacing:-0.256000pt;}
.ws41{word-spacing:-0.240000pt;}
.ws2f{word-spacing:-0.234667pt;}
.ws0{word-spacing:-0.213333pt;}
.ws40{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.176000pt;}
.ws5{word-spacing:-0.170667pt;}
.ws46{word-spacing:-0.152000pt;}
.ws39{word-spacing:-0.144000pt;}
.ws1a{word-spacing:-0.117333pt;}
.wsb{word-spacing:-0.106667pt;}
.ws21{word-spacing:-0.096000pt;}
.ws34{word-spacing:-0.068405pt;}
.wse{word-spacing:-0.058667pt;}
.ws9{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.048000pt;}
.ws12{word-spacing:-0.034667pt;}
.ws35{word-spacing:-0.034203pt;}
.ws2{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.034203pt;}
.ws31{word-spacing:0.048000pt;}
.wsc{word-spacing:0.053333pt;}
.wsf{word-spacing:0.058667pt;}
.ws6{word-spacing:0.096000pt;}
.wsd{word-spacing:0.106667pt;}
.ws10{word-spacing:0.117333pt;}
.ws1c{word-spacing:0.144000pt;}
.ws19{word-spacing:0.152000pt;}
.ws59{word-spacing:0.160000pt;}
.ws23{word-spacing:0.176000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws16{word-spacing:0.202667pt;}
.ws5a{word-spacing:0.213333pt;}
.ws20{word-spacing:0.234667pt;}
.ws17{word-spacing:0.253333pt;}
.ws29{word-spacing:0.293333pt;}
.ws4a{word-spacing:0.336000pt;}
.ws2b{word-spacing:0.352000pt;}
.ws18{word-spacing:0.354667pt;}
.ws4c{word-spacing:0.384000pt;}
.ws15{word-spacing:0.405333pt;}
.ws2a{word-spacing:0.410667pt;}
.ws49{word-spacing:0.432000pt;}
.ws26{word-spacing:0.469333pt;}
.ws4b{word-spacing:0.480000pt;}
.ws14{word-spacing:0.506667pt;}
.ws28{word-spacing:0.528000pt;}
.ws48{word-spacing:0.576000pt;}
.ws25{word-spacing:0.586667pt;}
.ws56{word-spacing:0.624000pt;}
.ws38{word-spacing:0.645333pt;}
.ws13{word-spacing:0.658667pt;}
.ws27{word-spacing:0.704000pt;}
.ws4f{word-spacing:0.821333pt;}
._6{margin-left:-5.888000pt;}
._9{margin-left:-4.655467pt;}
._0{margin-left:-3.536000pt;}
._1{margin-left:-2.080000pt;}
._3{margin-left:-1.120533pt;}
._7{width:0.938667pt;}
._5{width:2.144000pt;}
._2{width:3.188800pt;}
._4{width:4.212267pt;}
._8{width:6.670400pt;}
.fs9{font-size:29.538667pt;}
.fsa{font-size:34.202667pt;}
.fs7{font-size:34.666667pt;}
.fs1{font-size:40.421333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs6{font-size:322.693333pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:87.021600pt;}
.y12{bottom:94.488133pt;}
.y72{bottom:94.488267pt;}
.y164{bottom:111.554800pt;}
.y1e6{bottom:111.633733pt;}
.y11{bottom:111.821467pt;}
.ydb{bottom:111.821600pt;}
.y1c2{bottom:114.792267pt;}
.y163{bottom:128.621467pt;}
.y1e5{bottom:128.779200pt;}
.y10{bottom:129.154800pt;}
.yda{bottom:129.154933pt;}
.yd4{bottom:129.541200pt;}
.y175{bottom:129.903600pt;}
.y71{bottom:132.364933pt;}
.y1c1{bottom:135.096267pt;}
.y162{bottom:145.688133pt;}
.y1e4{bottom:145.924667pt;}
.y91{bottom:146.488133pt;}
.yd9{bottom:146.488267pt;}
.y1a1{bottom:148.239600pt;}
.yb1{bottom:148.655333pt;}
.y174{bottom:149.903600pt;}
.y70{bottom:152.364933pt;}
.y1c0{bottom:155.400400pt;}
.y161{bottom:162.754800pt;}
.y1e3{bottom:163.070133pt;}
.y90{bottom:163.821467pt;}
.yd8{bottom:163.821600pt;}
.y147{bottom:164.870533pt;}
.yce{bottom:165.537200pt;}
.y194{bottom:165.844800pt;}
.y1a0{bottom:166.239600pt;}
.yb0{bottom:168.522000pt;}
.y173{bottom:169.903600pt;}
.y6f{bottom:172.364933pt;}
.y1bf{bottom:175.704400pt;}
.y160{bottom:179.821467pt;}
.y1e2{bottom:180.215600pt;}
.y8f{bottom:181.154800pt;}
.y34{bottom:182.118000pt;}
.y19f{bottom:184.239600pt;}
.y146{bottom:184.603867pt;}
.ycd{bottom:185.670533pt;}
.y193{bottom:185.844800pt;}
.yaf{bottom:188.388667pt;}
.y172{bottom:189.903600pt;}
.y6e{bottom:192.364933pt;}
.y1be{bottom:196.008400pt;}
.y15f{bottom:196.888133pt;}
.y1e1{bottom:197.361067pt;}
.y8e{bottom:198.488133pt;}
.y33{bottom:199.451333pt;}
.yd7{bottom:200.788667pt;}
.y19e{bottom:202.239600pt;}
.y145{bottom:204.337200pt;}
.ycc{bottom:205.803867pt;}
.y192{bottom:205.844800pt;}
.yae{bottom:208.255333pt;}
.y171{bottom:209.903600pt;}
.y6d{bottom:212.364933pt;}
.y15e{bottom:213.954800pt;}
.y1e0{bottom:214.506533pt;}
.y113{bottom:215.821467pt;}
.y1bd{bottom:216.312533pt;}
.y32{bottom:216.784667pt;}
.yf8{bottom:219.122000pt;}
.yd6{bottom:220.922000pt;}
.y144{bottom:224.070533pt;}
.y191{bottom:225.844800pt;}
.ycb{bottom:225.937200pt;}
.y19d{bottom:227.798667pt;}
.yad{bottom:228.122000pt;}
.y15d{bottom:231.021467pt;}
.y1df{bottom:231.652000pt;}
.y6c{bottom:232.364933pt;}
.y112{bottom:233.154800pt;}
.y31{bottom:234.118000pt;}
.y8d{bottom:235.855333pt;}
.y1bc{bottom:236.616533pt;}
.yf6{bottom:239.322000pt;}
.yd5{bottom:241.055333pt;}
.y170{bottom:241.242133pt;}
.y143{bottom:243.803867pt;}
.yf7{bottom:244.206000pt;}
.y190{bottom:245.844800pt;}
.y185{bottom:245.857467pt;}
.y19c{bottom:247.798667pt;}
.yac{bottom:247.988667pt;}
.y15c{bottom:248.088133pt;}
.y1de{bottom:248.797467pt;}
.y111{bottom:250.488133pt;}
.y30{bottom:251.451333pt;}
.y6b{bottom:252.364933pt;}
.y8c{bottom:256.188667pt;}
.y1bb{bottom:256.920667pt;}
.yf5{bottom:259.522000pt;}
.yca{bottom:261.188667pt;}
.y142{bottom:263.537200pt;}
.y15b{bottom:265.154800pt;}
.y18f{bottom:265.844800pt;}
.y1dd{bottom:265.942933pt;}
.y110{bottom:267.821467pt;}
.yab{bottom:267.855333pt;}
.y2f{bottom:268.784667pt;}
.y6a{bottom:272.364933pt;}
.y8b{bottom:276.522000pt;}
.y1ba{bottom:277.224667pt;}
.y19b{bottom:279.137200pt;}
.yf4{bottom:279.722000pt;}
.yc9{bottom:281.322000pt;}
.y15a{bottom:282.221467pt;}
.y1dc{bottom:283.088400pt;}
.y141{bottom:283.270533pt;}
.y10f{bottom:285.154800pt;}
.yd3{bottom:285.624400pt;}
.y18e{bottom:285.844800pt;}
.y2e{bottom:286.118000pt;}
.yaa{bottom:287.722000pt;}
.y69{bottom:292.364933pt;}
.y8a{bottom:296.855333pt;}
.y1b9{bottom:297.528667pt;}
.y159{bottom:299.288133pt;}
.yf3{bottom:299.922000pt;}
.y1db{bottom:300.233867pt;}
.yc8{bottom:301.455333pt;}
.y10e{bottom:302.488133pt;}
.y140{bottom:303.003867pt;}
.y2d{bottom:303.451333pt;}
.y4d{bottom:304.522000pt;}
.yd2{bottom:305.624400pt;}
.y18d{bottom:305.844800pt;}
.ya9{bottom:307.588667pt;}
.y68{bottom:312.364933pt;}
.y158{bottom:316.354800pt;}
.y89{bottom:317.188667pt;}
.y1da{bottom:317.379333pt;}
.y1b8{bottom:317.832800pt;}
.y119{bottom:319.821467pt;}
.yf2{bottom:320.122000pt;}
.y2c{bottom:320.784667pt;}
.yc7{bottom:321.588667pt;}
.y13f{bottom:322.737200pt;}
.y4c{bottom:324.522000pt;}
.yd1{bottom:325.624400pt;}
.y18c{bottom:325.844800pt;}
.ya8{bottom:327.455333pt;}
.y67{bottom:332.364933pt;}
.y157{bottom:333.421467pt;}
.y1d9{bottom:334.524800pt;}
.y118{bottom:337.154800pt;}
.y88{bottom:337.522000pt;}
.y2b{bottom:338.118000pt;}
.y1b7{bottom:338.136800pt;}
.y10d{bottom:339.203867pt;}
.yf1{bottom:340.322000pt;}
.yc6{bottom:341.722000pt;}
.y13e{bottom:342.470533pt;}
.y4b{bottom:344.522000pt;}
.yd0{bottom:345.624400pt;}
.y18b{bottom:345.844800pt;}
.ya7{bottom:347.322000pt;}
.yf{bottom:348.307867pt;}
.y156{bottom:350.488133pt;}
.y1d8{bottom:351.670267pt;}
.y66{bottom:352.364933pt;}
.y117{bottom:354.488133pt;}
.y2a{bottom:355.451333pt;}
.y87{bottom:357.855333pt;}
.y1b6{bottom:358.440933pt;}
.y10c{bottom:358.737200pt;}
.yf0{bottom:360.522000pt;}
.yc5{bottom:361.855333pt;}
.y13d{bottom:362.203867pt;}
.y4a{bottom:364.522000pt;}
.yc{bottom:365.223333pt;}
.y18a{bottom:365.844800pt;}
.ya6{bottom:367.188667pt;}
.y155{bottom:367.554800pt;}
.y184{bottom:368.534533pt;}
.y1d7{bottom:368.815733pt;}
.y116{bottom:371.821467pt;}
.y65{bottom:372.364933pt;}
.y29{bottom:372.784667pt;}
.y16f{bottom:374.470533pt;}
.ycf{bottom:376.962933pt;}
.y86{bottom:378.188667pt;}
.y10b{bottom:378.270533pt;}
.y1b5{bottom:378.744933pt;}
.yef{bottom:380.722000pt;}
.yb{bottom:381.223333pt;}
.y13c{bottom:381.937200pt;}
.yc4{bottom:381.988667pt;}
.y49{bottom:384.522000pt;}
.y154{bottom:384.621467pt;}
.y189{bottom:385.844800pt;}
.y1d6{bottom:385.961200pt;}
.ya5{bottom:387.055333pt;}
.y183{bottom:388.534533pt;}
.y115{bottom:389.154800pt;}
.y28{bottom:390.118000pt;}
.y64{bottom:392.364933pt;}
.y16e{bottom:394.203867pt;}
.ya{bottom:397.223333pt;}
.y10a{bottom:397.803867pt;}
.y85{bottom:398.522000pt;}
.y1b4{bottom:399.048933pt;}
.yee{bottom:400.922000pt;}
.y13b{bottom:401.670533pt;}
.y153{bottom:401.688133pt;}
.yc3{bottom:402.122000pt;}
.y19a{bottom:402.916667pt;}
.y1d5{bottom:403.106667pt;}
.y48{bottom:404.522000pt;}
.y12c{bottom:406.488133pt;}
.ya4{bottom:406.922000pt;}
.y27{bottom:407.451333pt;}
.y182{bottom:408.134533pt;}
.y63{bottom:412.364933pt;}
.y16d{bottom:413.937200pt;}
.y188{bottom:417.183333pt;}
.y109{bottom:417.337200pt;}
.y152{bottom:418.754800pt;}
.y1eb{bottom:418.790000pt;}
.y84{bottom:418.855333pt;}
.y1b3{bottom:419.353067pt;}
.y1d4{bottom:420.252133pt;}
.yed{bottom:421.122000pt;}
.y13a{bottom:421.403867pt;}
.yc2{bottom:422.255333pt;}
.y199{bottom:422.516667pt;}
.y12b{bottom:423.821467pt;}
.y47{bottom:424.522000pt;}
.y26{bottom:424.784667pt;}
.ya3{bottom:426.788667pt;}
.y181{bottom:427.734533pt;}
.y114{bottom:429.406000pt;}
.y62{bottom:432.364933pt;}
.y16c{bottom:433.670533pt;}
.y151{bottom:435.821467pt;}
.y1ea{bottom:436.123333pt;}
.y1d3{bottom:437.397600pt;}
.y82{bottom:439.188667pt;}
.y1b2{bottom:439.657067pt;}
.y139{bottom:441.137200pt;}
.y12a{bottom:441.154800pt;}
.yec{bottom:441.322000pt;}
.y198{bottom:442.116667pt;}
.y25{bottom:442.118000pt;}
.yc1{bottom:442.388667pt;}
.ye{bottom:442.662533pt;}
.y83{bottom:444.072667pt;}
.y46{bottom:444.522000pt;}
.ya2{bottom:446.655333pt;}
.y108{bottom:451.988667pt;}
.y150{bottom:452.888133pt;}
.y16b{bottom:453.403867pt;}
.y1e9{bottom:453.456667pt;}
.y1d2{bottom:454.543067pt;}
.y180{bottom:454.893600pt;}
.y129{bottom:458.488133pt;}
.y24{bottom:459.451333pt;}
.y81{bottom:459.522000pt;}
.y61{bottom:459.924000pt;}
.y1b1{bottom:459.961200pt;}
.y138{bottom:460.870533pt;}
.yeb{bottom:461.522000pt;}
.y197{bottom:461.716667pt;}
.yc0{bottom:462.522000pt;}
.y45{bottom:464.522000pt;}
.ya1{bottom:466.522000pt;}
.y9{bottom:469.026800pt;}
.y14f{bottom:469.954800pt;}
.y1e8{bottom:470.790000pt;}
.y107{bottom:471.522000pt;}
.y1d1{bottom:471.688533pt;}
.y16a{bottom:473.137200pt;}
.y128{bottom:475.821467pt;}
.y23{bottom:476.784667pt;}
.y60{bottom:477.924000pt;}
.y80{bottom:479.855333pt;}
.y1b0{bottom:480.265200pt;}
.y137{bottom:480.603867pt;}
.yea{bottom:481.722000pt;}
.ybf{bottom:482.655333pt;}
.y44{bottom:484.522000pt;}
.y8{bottom:485.026800pt;}
.ya0{bottom:486.388667pt;}
.y14e{bottom:487.021467pt;}
.y1e7{bottom:488.123333pt;}
.y1d0{bottom:488.834000pt;}
.y106{bottom:491.055333pt;}
.y196{bottom:492.655333pt;}
.y169{bottom:492.870533pt;}
.y127{bottom:493.154800pt;}
.y5f{bottom:495.924000pt;}
.y7f{bottom:500.188667pt;}
.y136{bottom:500.337200pt;}
.y1af{bottom:500.569200pt;}
.ye9{bottom:501.922000pt;}
.ybe{bottom:502.788667pt;}
.y14d{bottom:504.088133pt;}
.y43{bottom:504.522000pt;}
.y7{bottom:505.023333pt;}
.y22{bottom:505.456667pt;}
.y1cf{bottom:505.979467pt;}
.y9f{bottom:506.255333pt;}
.y126{bottom:510.488133pt;}
.y105{bottom:510.588667pt;}
.y168{bottom:512.603867pt;}
.y5e{bottom:513.924000pt;}
.y134{bottom:520.070533pt;}
.y7e{bottom:520.522000pt;}
.y1ae{bottom:520.873333pt;}
.y14c{bottom:521.154800pt;}
.ye8{bottom:522.122000pt;}
.y21{bottom:522.790000pt;}
.ybd{bottom:522.922000pt;}
.y1ce{bottom:523.124933pt;}
.y42{bottom:524.522000pt;}
.y135{bottom:524.954533pt;}
.y9e{bottom:526.122000pt;}
.y104{bottom:530.122000pt;}
.y5d{bottom:531.924000pt;}
.y167{bottom:532.337200pt;}
.y14b{bottom:538.221467pt;}
.y133{bottom:539.803867pt;}
.y20{bottom:540.123333pt;}
.y1cd{bottom:540.270400pt;}
.y7d{bottom:540.855333pt;}
.y1ad{bottom:541.177333pt;}
.ye7{bottom:542.322000pt;}
.ybc{bottom:543.055333pt;}
.y41{bottom:544.522000pt;}
.y9d{bottom:545.988667pt;}
.y124{bottom:547.455333pt;}
.y103{bottom:549.655333pt;}
.y5c{bottom:549.924000pt;}
.y166{bottom:552.070533pt;}
.y125{bottom:552.339333pt;}
.y187{bottom:553.183333pt;}
.y14a{bottom:555.288133pt;}
.y1cc{bottom:557.415867pt;}
.y1f{bottom:557.456667pt;}
.y132{bottom:559.537200pt;}
.y7c{bottom:561.188667pt;}
.y1ac{bottom:561.481467pt;}
.ye6{bottom:562.522000pt;}
.ybb{bottom:563.188667pt;}
.y40{bottom:564.522000pt;}
.y9c{bottom:565.855333pt;}
.y123{bottom:567.188667pt;}
.y5b{bottom:567.924000pt;}
.y17f{bottom:568.122000pt;}
.y102{bottom:569.188667pt;}
.y165{bottom:571.803867pt;}
.y149{bottom:572.354800pt;}
.y186{bottom:573.183333pt;}
.y1cb{bottom:574.561333pt;}
.y1e{bottom:574.790000pt;}
.y131{bottom:579.270533pt;}
.y7b{bottom:581.522000pt;}
.y1ab{bottom:581.785467pt;}
.ye5{bottom:582.722000pt;}
.yba{bottom:583.322000pt;}
.y3f{bottom:584.522000pt;}
.y9b{bottom:585.722000pt;}
.y5a{bottom:585.924000pt;}
.y122{bottom:586.922000pt;}
.y17e{bottom:588.122000pt;}
.y101{bottom:588.722000pt;}
.y148{bottom:589.421467pt;}
.y1ca{bottom:591.706800pt;}
.y1d{bottom:592.123333pt;}
.y7a{bottom:601.855333pt;}
.y1aa{bottom:602.089467pt;}
.ye4{bottom:602.922000pt;}
.yb9{bottom:603.455333pt;}
.y59{bottom:603.924000pt;}
.y3e{bottom:604.522000pt;}
.y9a{bottom:605.588667pt;}
.y130{bottom:606.562933pt;}
.y121{bottom:606.655333pt;}
.y17d{bottom:607.722000pt;}
.y100{bottom:608.255333pt;}
.y1c9{bottom:608.852267pt;}
.y1c{bottom:609.456667pt;}
.y58{bottom:621.924000pt;}
.y79{bottom:622.188667pt;}
.y1a9{bottom:622.393600pt;}
.ye3{bottom:623.122000pt;}
.yb8{bottom:623.588667pt;}
.y12f{bottom:624.162933pt;}
.y3d{bottom:624.522000pt;}
.y99{bottom:625.455333pt;}
.y120{bottom:626.388667pt;}
.y1b{bottom:626.790000pt;}
.y17c{bottom:627.322000pt;}
.yff{bottom:627.788667pt;}
.y6{bottom:638.691733pt;}
.y57{bottom:639.924000pt;}
.y12e{bottom:641.762933pt;}
.y78{bottom:642.522000pt;}
.y1a8{bottom:642.697600pt;}
.ye2{bottom:643.322000pt;}
.yb7{bottom:643.722000pt;}
.y1c8{bottom:644.049200pt;}
.y1a{bottom:644.123333pt;}
.y3c{bottom:644.522000pt;}
.y98{bottom:645.322000pt;}
.y11f{bottom:646.122000pt;}
.y17b{bottom:646.922000pt;}
.yfe{bottom:647.322000pt;}
.y1a2{bottom:649.406000pt;}
.y56{bottom:657.924000pt;}
.y5{bottom:658.691733pt;}
.y12d{bottom:659.362933pt;}
.y19{bottom:661.456667pt;}
.y77{bottom:662.855333pt;}
.y1a7{bottom:663.001733pt;}
.ye0{bottom:663.522000pt;}
.yb6{bottom:663.855333pt;}
.y1c7{bottom:664.128000pt;}
.y3b{bottom:664.522000pt;}
.y96{bottom:665.188667pt;}
.y11e{bottom:665.855333pt;}
.y17a{bottom:666.522000pt;}
.yfd{bottom:666.855333pt;}
.ye1{bottom:668.406000pt;}
.y97{bottom:670.072667pt;}
.y55{bottom:675.924000pt;}
.y4{bottom:678.691733pt;}
.y18{bottom:678.790000pt;}
.y76{bottom:683.188667pt;}
.y1a6{bottom:683.305733pt;}
.ydf{bottom:683.722000pt;}
.yb5{bottom:683.988667pt;}
.y1c6{bottom:684.206800pt;}
.y3a{bottom:684.522000pt;}
.y95{bottom:685.055333pt;}
.y11d{bottom:685.588667pt;}
.y179{bottom:686.122000pt;}
.yfc{bottom:686.388667pt;}
.y54{bottom:693.924000pt;}
.y17{bottom:696.123333pt;}
.y75{bottom:703.522000pt;}
.y1a5{bottom:703.609733pt;}
.yde{bottom:703.922000pt;}
.yb4{bottom:704.122000pt;}
.y1c5{bottom:704.285600pt;}
.y39{bottom:704.522000pt;}
.y94{bottom:704.922000pt;}
.y11c{bottom:705.322000pt;}
.y178{bottom:705.722000pt;}
.yfb{bottom:705.922000pt;}
.y53{bottom:711.924000pt;}
.y16{bottom:713.456667pt;}
.y3{bottom:717.319333pt;}
.y74{bottom:723.855333pt;}
.y1a4{bottom:723.913867pt;}
.ydd{bottom:724.122000pt;}
.yb3{bottom:724.255333pt;}
.y1c4{bottom:724.364400pt;}
.y36{bottom:724.522000pt;}
.y93{bottom:724.788667pt;}
.y11b{bottom:725.055333pt;}
.y177{bottom:725.322000pt;}
.yfa{bottom:725.455333pt;}
.y52{bottom:729.924000pt;}
.y15{bottom:730.790000pt;}
.y2{bottom:739.986000pt;}
.y73{bottom:744.188667pt;}
.y1a3{bottom:744.218000pt;}
.ydc{bottom:744.322000pt;}
.yb2{bottom:744.388667pt;}
.y1c3{bottom:744.443200pt;}
.y38{bottom:744.522000pt;}
.y92{bottom:744.655333pt;}
.y11a{bottom:744.788667pt;}
.y176{bottom:744.922000pt;}
.yf9{bottom:744.988667pt;}
.y51{bottom:747.924000pt;}
.y14{bottom:748.123333pt;}
.y195{bottom:749.406000pt;}
.y1{bottom:762.652667pt;}
.y37{bottom:764.522000pt;}
.y13{bottom:765.456667pt;}
.y50{bottom:765.924000pt;}
.y4f{bottom:774.803200pt;}
.y35{bottom:827.296000pt;}
.yd{bottom:841.165333pt;}
.h12{height:22.778976pt;}
.h11{height:29.482699pt;}
.hf{height:29.882667pt;}
.h8{height:30.693744pt;}
.hb{height:34.590400pt;}
.h7{height:36.778667pt;}
.h6{height:38.016000pt;}
.he{height:39.253333pt;}
.h4{height:41.125333pt;}
.h9{height:41.376000pt;}
.h5{height:42.277156pt;}
.h10{height:43.674667pt;}
.ha{height:45.973333pt;}
.h2{height:48.602667pt;}
.hd{height:50.570667pt;}
.h3{height:51.114510pt;}
.hc{height:278.161653pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x20{left:37.212133pt;}
.x3{left:38.262267pt;}
.x4{left:92.310000pt;}
.x1{left:94.488133pt;}
.xd{left:106.339067pt;}
.x2{left:121.395333pt;}
.x1e{left:125.066000pt;}
.x1f{left:133.335867pt;}
.x5{left:144.666933pt;}
.x21{left:163.736267pt;}
.x1b{left:177.261733pt;}
.x22{left:204.365600pt;}
.x1c{left:211.160400pt;}
.x1d{left:217.672400pt;}
.x6{left:221.347067pt;}
.x1a{left:231.133733pt;}
.xe{left:234.765600pt;}
.x16{left:250.654933pt;}
.x17{left:258.929600pt;}
.xf{left:268.424667pt;}
.x18{left:270.088933pt;}
.x10{left:276.784267pt;}
.x19{left:278.116400pt;}
.xb{left:289.016267pt;}
.xc{left:293.110400pt;}
.x11{left:337.425067pt;}
.x12{left:345.695867pt;}
.x23{left:434.455867pt;}
.x24{left:442.735467pt;}
.x14{left:482.903467pt;}
.x15{left:491.029600pt;}
.x9{left:525.021067pt;}
.xa{left:529.133867pt;}
.x7{left:567.408133pt;}
.x13{left:568.380133pt;}
.x8{left:574.082267pt;}
}




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