
    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_e1d3622643b44295368ee9c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.097000;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_11e0147ca81dcfe87d5e8016.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.068000;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_9315034c5713f2c6d23e5141.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e828a74f4214021d24813bb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_c83e86e17bf84df26cc4f9d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968000;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_8cb1b4db94e73a91a82ba9c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_504195176357d9cab04a202a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.887000;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_a5b33c5524af42361b4910f2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_663384d612407c541609c542.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934000;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_ecb6983855d44ec8ddb19f38.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_cd44cb87012ade217497e668.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_9d4431e42b299303010f3fb5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002000;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_2a1bf95c1d5b70942a61606e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m56{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);}
.m41{transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245055,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245093,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.245198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245198,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.245212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245212,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245573,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.245668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245668,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.246127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246127,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246295,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246360,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246503,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246568,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246760,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246908,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.247213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247213,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.247240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247240,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.247418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247418,0.000000,0.000000,0.250000,0,0);}
.m5e{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);}
.ma9{transform:matrix(0.247628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247628,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);}
.mc4{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);}
.m4b{transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248492,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248532,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.248838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248838,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249172,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249182,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249252,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249578,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249663,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,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);}
.mb0{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.me4{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);}
.m77{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250532,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250827,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250870,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250872,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);}
.m81{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);}
.m57{transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251787,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251803,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251850,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251970,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252078,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252173,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.252402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252402,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252413,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252560,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.252657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252657,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252745,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252823,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252865,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252952,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.253057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253057,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.253282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253282,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253467,0.000000,0.000000,0.250000,0,0);}
.med{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);}
.mea{transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253620,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253763,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.253913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253913,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.254107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254107,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.254217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254217,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.254245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254245,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254348,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.254383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254383,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.254437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254437,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.254747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254747,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254810,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-13.860000px;}
.v1{vertical-align:-4.612200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:24.000000px;}
.ls14{letter-spacing:-2.220000px;}
.lsa{letter-spacing:-1.632000px;}
.ls19{letter-spacing:-1.560000px;}
.ls6{letter-spacing:-1.500000px;}
.ls26{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.960000px;}
.ls1e{letter-spacing:-0.864000px;}
.ls1a{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.756000px;}
.ls20{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.672000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.600000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.300000px;}
.lsf{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.120000px;}
.lse{letter-spacing:-0.060000px;}
.ls1f{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.041291px;}
.ls10{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.720000px;}
.ls21{letter-spacing:1.560000px;}
.ls23{letter-spacing:1.920000px;}
.ls1{letter-spacing:8.994000px;}
.ls22{letter-spacing:35.484000px;}
.ls0{letter-spacing:64.140000px;}
.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;}
}
.ws6{word-spacing:-38.640000px;}
.wsc8{word-spacing:-16.848000px;}
.ws8{word-spacing:-16.560000px;}
.ws92{word-spacing:-15.360000px;}
.ws0{word-spacing:-14.520000px;}
.ws30{word-spacing:-13.620000px;}
.ws15{word-spacing:-13.440000px;}
.ws97{word-spacing:-12.636000px;}
.ws17{word-spacing:-12.420000px;}
.ws4e{word-spacing:-12.180000px;}
.ws7{word-spacing:-11.040000px;}
.ws21{word-spacing:-10.992000px;}
.ws4{word-spacing:-10.896000px;}
.ws79{word-spacing:-10.848000px;}
.ws5{word-spacing:-10.224000px;}
.ws3{word-spacing:-6.300000px;}
.ws2{word-spacing:-5.400000px;}
.wsb{word-spacing:-3.780000px;}
.wsb4{word-spacing:-3.618000px;}
.wsb3{word-spacing:-3.564000px;}
.wsc{word-spacing:-3.216000px;}
.ws7d{word-spacing:-3.132000px;}
.ws8f{word-spacing:-3.078000px;}
.ws8d{word-spacing:-2.970000px;}
.ws70{word-spacing:-2.916000px;}
.wsc3{word-spacing:-2.592000px;}
.wsc2{word-spacing:-2.538000px;}
.ws61{word-spacing:-2.376000px;}
.wsc1{word-spacing:-2.322000px;}
.ws87{word-spacing:-2.268000px;}
.wsb7{word-spacing:-2.160000px;}
.wsa7{word-spacing:-2.106000px;}
.wsf{word-spacing:-2.100000px;}
.ws12{word-spacing:-2.040000px;}
.ws7f{word-spacing:-1.998000px;}
.ws11{word-spacing:-1.980000px;}
.ws33{word-spacing:-1.920000px;}
.ws43{word-spacing:-1.860000px;}
.ws63{word-spacing:-1.848000px;}
.wsc0{word-spacing:-1.836000px;}
.ws48{word-spacing:-1.800000px;}
.ws62{word-spacing:-1.782000px;}
.ws2c{word-spacing:-1.740000px;}
.ws37{word-spacing:-1.680000px;}
.ws72{word-spacing:-1.674000px;}
.ws13{word-spacing:-1.620000px;}
.wsaa{word-spacing:-1.566000px;}
.ws3a{word-spacing:-1.560000px;}
.ws58{word-spacing:-1.500000px;}
.ws35{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.380000px;}
.ws52{word-spacing:-1.320000px;}
.ws60{word-spacing:-1.296000px;}
.ws1b{word-spacing:-1.260000px;}
.wsa1{word-spacing:-1.242000px;}
.ws3c{word-spacing:-1.218000px;}
.ws1a{word-spacing:-1.200000px;}
.ws7b{word-spacing:-1.188000px;}
.ws28{word-spacing:-1.140000px;}
.ws53{word-spacing:-1.080000px;}
.wsd0{word-spacing:-1.026000px;}
.ws4f{word-spacing:-1.020000px;}
.ws74{word-spacing:-0.972000px;}
.ws2b{word-spacing:-0.960000px;}
.ws71{word-spacing:-0.918000px;}
.ws38{word-spacing:-0.900000px;}
.ws7e{word-spacing:-0.864000px;}
.ws42{word-spacing:-0.840000px;}
.ws2a{word-spacing:-0.780000px;}
.ws23{word-spacing:-0.720000px;}
.wsbf{word-spacing:-0.702000px;}
.ws31{word-spacing:-0.660000px;}
.ws50{word-spacing:-0.600000px;}
.ws46{word-spacing:-0.588000px;}
.wsa{word-spacing:-0.540000px;}
.ws34{word-spacing:-0.480000px;}
.ws64{word-spacing:-0.462000px;}
.ws1e{word-spacing:-0.420000px;}
.ws39{word-spacing:-0.360000px;}
.wsa4{word-spacing:-0.324000px;}
.ws26{word-spacing:-0.300000px;}
.ws29{word-spacing:-0.240000px;}
.wsb5{word-spacing:-0.216000px;}
.ws3d{word-spacing:-0.210000px;}
.ws45{word-spacing:-0.180000px;}
.wsbd{word-spacing:-0.162000px;}
.ws19{word-spacing:-0.120000px;}
.ws4b{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws36{word-spacing:0.060000px;}
.ws6f{word-spacing:0.120000px;}
.ws41{word-spacing:0.180000px;}
.wsd{word-spacing:0.240000px;}
.ws66{word-spacing:0.252000px;}
.ws80{word-spacing:0.270000px;}
.ws1f{word-spacing:0.300000px;}
.ws7a{word-spacing:0.360000px;}
.ws2e{word-spacing:0.420000px;}
.ws7c{word-spacing:0.432000px;}
.ws27{word-spacing:0.480000px;}
.ws14{word-spacing:0.540000px;}
.ws49{word-spacing:0.600000px;}
.wsc4{word-spacing:0.648000px;}
.ws6b{word-spacing:0.660000px;}
.ws89{word-spacing:0.720000px;}
.ws6a{word-spacing:0.780000px;}
.wsc6{word-spacing:0.810000px;}
.ws94{word-spacing:0.840000px;}
.ws82{word-spacing:0.882000px;}
.ws6c{word-spacing:0.900000px;}
.ws5b{word-spacing:0.960000px;}
.ws22{word-spacing:1.020000px;}
.ws24{word-spacing:1.080000px;}
.ws4a{word-spacing:1.140000px;}
.ws76{word-spacing:1.188000px;}
.ws4c{word-spacing:1.200000px;}
.ws18{word-spacing:1.260000px;}
.ws75{word-spacing:1.296000px;}
.ws5d{word-spacing:1.320000px;}
.ws3b{word-spacing:1.344000px;}
.ws1d{word-spacing:1.380000px;}
.wsa8{word-spacing:1.404000px;}
.ws54{word-spacing:1.428000px;}
.ws68{word-spacing:1.440000px;}
.ws8e{word-spacing:1.458000px;}
.ws59{word-spacing:1.500000px;}
.ws81{word-spacing:1.512000px;}
.ws1c{word-spacing:1.560000px;}
.ws9b{word-spacing:1.566000px;}
.ws95{word-spacing:1.620000px;}
.ws5e{word-spacing:1.680000px;}
.ws5c{word-spacing:1.740000px;}
.ws6e{word-spacing:1.800000px;}
.wsac{word-spacing:1.836000px;}
.ws25{word-spacing:1.860000px;}
.wsaf{word-spacing:1.890000px;}
.ws32{word-spacing:1.920000px;}
.wsa2{word-spacing:1.944000px;}
.wse{word-spacing:1.980000px;}
.wsa3{word-spacing:1.998000px;}
.ws10{word-spacing:2.040000px;}
.wsa5{word-spacing:2.106000px;}
.ws69{word-spacing:2.160000px;}
.wsba{word-spacing:2.214000px;}
.ws90{word-spacing:2.280000px;}
.wsb2{word-spacing:2.322000px;}
.ws91{word-spacing:2.340000px;}
.ws5a{word-spacing:2.400000px;}
.ws56{word-spacing:2.520000px;}
.wsd6{word-spacing:2.538000px;}
.wsbe{word-spacing:2.592000px;}
.ws77{word-spacing:2.604000px;}
.ws8b{word-spacing:2.646000px;}
.ws65{word-spacing:2.688000px;}
.ws51{word-spacing:2.736000px;}
.ws84{word-spacing:2.754000px;}
.wsa9{word-spacing:2.808000px;}
.wscd{word-spacing:2.916000px;}
.ws98{word-spacing:2.970000px;}
.ws99{word-spacing:3.024000px;}
.ws55{word-spacing:3.108000px;}
.ws5f{word-spacing:3.186000px;}
.wsbb{word-spacing:3.240000px;}
.ws86{word-spacing:3.294000px;}
.wsa6{word-spacing:3.456000px;}
.ws3e{word-spacing:3.822000px;}
.ws85{word-spacing:3.942000px;}
.ws9f{word-spacing:4.104000px;}
.wsa0{word-spacing:4.158000px;}
.wsab{word-spacing:4.266000px;}
.ws73{word-spacing:4.374000px;}
.wsd5{word-spacing:4.428000px;}
.wsb9{word-spacing:4.536000px;}
.wsb8{word-spacing:4.644000px;}
.wsc5{word-spacing:4.698000px;}
.wsce{word-spacing:5.022000px;}
.ws8c{word-spacing:5.076000px;}
.ws2d{word-spacing:5.166000px;}
.wsae{word-spacing:5.292000px;}
.wsc9{word-spacing:5.346000px;}
.wsca{word-spacing:5.400000px;}
.ws88{word-spacing:5.562000px;}
.wsb6{word-spacing:5.616000px;}
.ws3f{word-spacing:5.670000px;}
.ws9a{word-spacing:5.778000px;}
.wsb1{word-spacing:5.886000px;}
.wsb0{word-spacing:5.994000px;}
.wsd4{word-spacing:6.210000px;}
.wsbc{word-spacing:7.344000px;}
.ws9c{word-spacing:8.100000px;}
.ws9d{word-spacing:8.262000px;}
.wscb{word-spacing:8.586000px;}
.wscc{word-spacing:8.748000px;}
.wsd1{word-spacing:10.584000px;}
.wsd2{word-spacing:10.746000px;}
.wsd3{word-spacing:42.066000px;}
.ws9e{word-spacing:42.876000px;}
.wscf{word-spacing:48.600000px;}
.ws93{word-spacing:2174.389200px;}
.wsad{word-spacing:2175.139200px;}
.ws16{word-spacing:2180.215200px;}
.ws2f{word-spacing:2187.919200px;}
.ws6d{word-spacing:2190.295200px;}
.ws57{word-spacing:2191.735200px;}
.ws83{word-spacing:2193.019200px;}
.ws47{word-spacing:2194.027200px;}
.ws96{word-spacing:3604.228200px;}
.wsc7{word-spacing:3604.978200px;}
.ws1{word-spacing:3608.956200px;}
.ws20{word-spacing:3610.054200px;}
.ws40{word-spacing:3617.758200px;}
.ws78{word-spacing:3620.134200px;}
.ws67{word-spacing:3621.574200px;}
.ws8a{word-spacing:3622.858200px;}
.ws4d{word-spacing:3623.866200px;}
._e{margin-left:-6566.193000px;}
._0{margin-left:-6565.119000px;}
._d{margin-left:-6563.193000px;}
._b{margin-left:-6562.012200px;}
._5{margin-left:-110.219400px;}
._7{margin-left:-77.490000px;}
._f{margin-left:-36.936000px;}
._8{margin-left:-10.275600px;}
._a{margin-left:-8.895600px;}
._c{margin-left:-6.253200px;}
._6{margin-left:-4.560000px;}
._2{margin-left:-3.465600px;}
._9{margin-left:-2.442000px;}
._1{margin-left:-1.300800px;}
._3{width:1.944000px;}
._4{width:3.343200px;}
._11{width:4.864800px;}
._10{width:6.186000px;}
.fc4{color:transparent;}
.fc3{color:rgb(143,210,61);}
.fc2{color:rgb(145,143,143);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:24.360000px;}
.fs4{font-size:30.000000px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fsc{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs6{font-size:132.000000px;}
.fs5{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:50.112900px;}
.y56{bottom:72.991650px;}
.y61{bottom:72.991800px;}
.y49{bottom:72.992100px;}
.y65{bottom:76.456650px;}
.y55{bottom:85.591650px;}
.y63{bottom:89.056650px;}
.y60{bottom:89.056800px;}
.y29{bottom:90.992100px;}
.y6b{bottom:91.969800px;}
.y6e{bottom:98.191650px;}
.ybf{bottom:99.992100px;}
.y54{bottom:101.656650px;}
.y6a{bottom:104.569800px;}
.y5f{bottom:108.034800px;}
.y28{bottom:108.992100px;}
.y6d{bottom:110.791650px;}
.y96{bottom:112.770000px;}
.y69{bottom:117.169800px;}
.ybe{bottom:117.992100px;}
.y5e{bottom:123.547950px;}
.y6c{bottom:126.856650px;}
.y27{bottom:126.992100px;}
.y95{bottom:130.770000px;}
.y68{bottom:133.234800px;}
.y5d{bottom:139.612950px;}
.y26{bottom:144.992100px;}
.y5c{bottom:155.126100px;}
.y94{bottom:157.770000px;}
.y25{bottom:162.992100px;}
.y5b{bottom:167.726100px;}
.y93{bottom:175.770000px;}
.y5a{bottom:180.326100px;}
.y24{bottom:180.992100px;}
.ybd{bottom:189.992100px;}
.y59{bottom:192.926100px;}
.y53{bottom:198.992100px;}
.y92{bottom:202.770000px;}
.ybc{bottom:207.992100px;}
.y58{bottom:208.991100px;}
.y23{bottom:216.992100px;}
.y91{bottom:220.770000px;}
.y52{bottom:222.992100px;}
.y48{bottom:234.992100px;}
.y64{bottom:245.492100px;}
.y90{bottom:247.770000px;}
.y22{bottom:252.992100px;}
.y21{bottom:270.992100px;}
.y8f{bottom:274.770000px;}
.y47{bottom:288.992100px;}
.y8e{bottom:292.770000px;}
.ybb{bottom:302.802750px;}
.y46{bottom:306.992100px;}
.y8d{bottom:310.770000px;}
.y20{bottom:311.740200px;}
.yba{bottom:320.802750px;}
.y45{bottom:324.992100px;}
.y1f{bottom:325.240200px;}
.y8c{bottom:337.770000px;}
.yb9{bottom:338.802750px;}
.y44{bottom:342.992100px;}
.y8b{bottom:355.770000px;}
.y1e{bottom:360.992100px;}
.yb8{bottom:365.802750px;}
.y1d{bottom:378.992100px;}
.y8a{bottom:382.770000px;}
.yb7{bottom:383.802750px;}
.y1c{bottom:396.992100px;}
.y89{bottom:400.770000px;}
.yb6{bottom:401.802750px;}
.y1b{bottom:414.992100px;}
.yc8{bottom:416.235600px;}
.y88{bottom:427.770000px;}
.yb5{bottom:428.802750px;}
.y1a{bottom:432.992100px;}
.y87{bottom:445.770000px;}
.yb4{bottom:446.802750px;}
.y19{bottom:450.992100px;}
.yb3{bottom:464.802750px;}
.y18{bottom:468.992100px;}
.y86{bottom:472.770000px;}
.y17{bottom:486.992100px;}
.y85{bottom:490.770000px;}
.yb2{bottom:491.802750px;}
.y16{bottom:504.992100px;}
.yb1{bottom:509.802750px;}
.y84{bottom:517.770000px;}
.y15{bottom:522.992100px;}
.y43{bottom:527.740200px;}
.yb0{bottom:527.802750px;}
.y62{bottom:533.492100px;}
.y83{bottom:535.770000px;}
.y14{bottom:540.992100px;}
.y42{bottom:541.240200px;}
.yaf{bottom:545.802750px;}
.y13{bottom:558.992100px;}
.y82{bottom:562.770000px;}
.yae{bottom:572.802750px;}
.y41{bottom:576.992100px;}
.y81{bottom:580.770000px;}
.y67{bottom:585.992100px;}
.yad{bottom:590.802750px;}
.y12{bottom:594.992100px;}
.yc7{bottom:603.102750px;}
.y66{bottom:605.492100px;}
.y80{bottom:607.770000px;}
.yac{bottom:608.802750px;}
.y40{bottom:612.992100px;}
.y7f{bottom:625.770000px;}
.y3f{bottom:630.992100px;}
.yab{bottom:635.802750px;}
.y3e{bottom:648.992100px;}
.y7e{bottom:652.770000px;}
.yaa{bottom:653.802750px;}
.y11{bottom:660.057450px;}
.y3d{bottom:666.992100px;}
.y7d{bottom:670.770000px;}
.ya9{bottom:671.802750px;}
.y10{bottom:672.057450px;}
.y3c{bottom:684.992100px;}
.ya8{bottom:689.802750px;}
.y7c{bottom:697.770000px;}
.y3b{bottom:702.992100px;}
.yc6{bottom:707.802750px;}
.y7b{bottom:715.770000px;}
.ya7{bottom:716.802750px;}
.yf{bottom:720.057450px;}
.y3a{bottom:720.992100px;}
.ya6{bottom:734.802750px;}
.ye{bottom:737.809350px;}
.y39{bottom:738.992100px;}
.y7a{bottom:742.770000px;}
.ya5{bottom:752.802750px;}
.yd{bottom:755.561400px;}
.y38{bottom:756.992100px;}
.y79{bottom:760.770000px;}
.yc{bottom:769.061400px;}
.y37{bottom:774.992100px;}
.ya4{bottom:779.802750px;}
.yb{bottom:787.061400px;}
.y78{bottom:787.770000px;}
.y51{bottom:792.992100px;}
.ya3{bottom:797.802750px;}
.y77{bottom:805.770000px;}
.y36{bottom:810.992100px;}
.ya2{bottom:815.802750px;}
.y76{bottom:823.770000px;}
.y50{bottom:828.992100px;}
.ya1{bottom:833.802750px;}
.y35{bottom:846.992100px;}
.y75{bottom:850.770000px;}
.y57{bottom:857.492100px;}
.ya0{bottom:860.802750px;}
.y34{bottom:864.992100px;}
.y74{bottom:868.770000px;}
.y9f{bottom:878.802750px;}
.y4f{bottom:882.992100px;}
.ya{bottom:891.992100px;}
.y73{bottom:895.770000px;}
.yc5{bottom:896.802750px;}
.y4e{bottom:900.992100px;}
.y33{bottom:905.740200px;}
.y9e{bottom:905.802750px;}
.y72{bottom:913.770000px;}
.yc4{bottom:914.802750px;}
.y4d{bottom:918.992100px;}
.y32{bottom:919.240200px;}
.y9d{bottom:923.802750px;}
.y9{bottom:936.992100px;}
.y71{bottom:940.770000px;}
.y9c{bottom:941.802750px;}
.y31{bottom:954.992100px;}
.y70{bottom:958.770000px;}
.yc3{bottom:959.802750px;}
.y9b{bottom:968.802750px;}
.y30{bottom:972.992100px;}
.yc2{bottom:977.802750px;}
.y8{bottom:981.992100px;}
.y2f{bottom:990.992100px;}
.y9a{bottom:995.802750px;}
.yc1{bottom:1004.802750px;}
.y2e{bottom:1008.992100px;}
.y99{bottom:1013.802750px;}
.yc0{bottom:1022.802750px;}
.y7{bottom:1026.992100px;}
.y98{bottom:1031.802750px;}
.y6f{bottom:1044.270000px;}
.y2d{bottom:1044.992100px;}
.y97{bottom:1049.802750px;}
.y2{bottom:1062.857250px;}
.y4c{bottom:1123.274400px;}
.y6{bottom:1123.275000px;}
.y2c{bottom:1123.275450px;}
.y4b{bottom:1135.874400px;}
.y5{bottom:1135.874850px;}
.y2b{bottom:1135.875600px;}
.y1{bottom:1138.205400px;}
.y2a{bottom:1149.375600px;}
.y4a{bottom:1150.274400px;}
.y4{bottom:1150.275000px;}
.h15{height:22.553400px;}
.h12{height:22.554000px;}
.h5{height:26.010000px;}
.h7{height:32.886000px;}
.h4{height:36.414000px;}
.hc{height:36.960000px;}
.ha{height:37.248000px;}
.h6{height:38.928000px;}
.h10{height:41.580000px;}
.h11{height:41.904000px;}
.hf{height:46.818000px;}
.he{height:48.660000px;}
.h2{height:52.020000px;}
.hb{height:54.621000px;}
.h14{height:55.440000px;}
.h16{height:55.584000px;}
.hd{height:55.872000px;}
.h13{height:62.928000px;}
.h3{height:89.640000px;}
.h17{height:102.432000px;}
.h9{height:114.444000px;}
.h8{height:130.368000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.xe{left:63.826800px;}
.x7{left:106.299150px;}
.x1b{left:112.428150px;}
.x1c{left:121.299150px;}
.x8{left:126.264000px;}
.xd{left:127.559100px;}
.x9{left:142.299150px;}
.xa{left:158.050650px;}
.x3{left:187.086600px;}
.x10{left:238.336050px;}
.x1d{left:244.465050px;}
.x1e{left:253.336050px;}
.x11{left:259.596000px;}
.x18{left:274.336050px;}
.xc{left:471.744000px;}
.xb{left:505.560000px;}
.x5{left:509.811000px;}
.x14{left:541.784250px;}
.x15{left:547.614000px;}
.x12{left:577.753950px;}
.x4{left:633.886500px;}
.x6{left:684.953250px;}
.x17{left:738.746400px;}
.x13{left:799.496700px;}
.x1{left:800.894850px;}
.x2{left:802.680150px;}
.x19{left:803.737200px;}
.xf{left:1649.890500px;}
.x1a{left:1651.632150px;}
.x16{left:1653.685800px;}
@media print{
.v3{vertical-align:-12.320000pt;}
.v1{vertical-align:-4.099733pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:21.333333pt;}
.ls14{letter-spacing:-1.973333pt;}
.lsa{letter-spacing:-1.450667pt;}
.ls19{letter-spacing:-1.386667pt;}
.ls6{letter-spacing:-1.333333pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.853333pt;}
.ls1e{letter-spacing:-0.768000pt;}
.ls1a{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.672000pt;}
.ls20{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.597333pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.266667pt;}
.lsf{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.106667pt;}
.lse{letter-spacing:-0.053333pt;}
.ls1f{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.036703pt;}
.ls10{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls21{letter-spacing:1.386667pt;}
.ls23{letter-spacing:1.706667pt;}
.ls1{letter-spacing:7.994667pt;}
.ls22{letter-spacing:31.541333pt;}
.ls0{letter-spacing:57.013333pt;}
.ws6{word-spacing:-34.346667pt;}
.wsc8{word-spacing:-14.976000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws92{word-spacing:-13.653333pt;}
.ws0{word-spacing:-12.906667pt;}
.ws30{word-spacing:-12.106667pt;}
.ws15{word-spacing:-11.946667pt;}
.ws97{word-spacing:-11.232000pt;}
.ws17{word-spacing:-11.040000pt;}
.ws4e{word-spacing:-10.826667pt;}
.ws7{word-spacing:-9.813333pt;}
.ws21{word-spacing:-9.770667pt;}
.ws4{word-spacing:-9.685333pt;}
.ws79{word-spacing:-9.642667pt;}
.ws5{word-spacing:-9.088000pt;}
.ws3{word-spacing:-5.600000pt;}
.ws2{word-spacing:-4.800000pt;}
.wsb{word-spacing:-3.360000pt;}
.wsb4{word-spacing:-3.216000pt;}
.wsb3{word-spacing:-3.168000pt;}
.wsc{word-spacing:-2.858667pt;}
.ws7d{word-spacing:-2.784000pt;}
.ws8f{word-spacing:-2.736000pt;}
.ws8d{word-spacing:-2.640000pt;}
.ws70{word-spacing:-2.592000pt;}
.wsc3{word-spacing:-2.304000pt;}
.wsc2{word-spacing:-2.256000pt;}
.ws61{word-spacing:-2.112000pt;}
.wsc1{word-spacing:-2.064000pt;}
.ws87{word-spacing:-2.016000pt;}
.wsb7{word-spacing:-1.920000pt;}
.wsa7{word-spacing:-1.872000pt;}
.wsf{word-spacing:-1.866667pt;}
.ws12{word-spacing:-1.813333pt;}
.ws7f{word-spacing:-1.776000pt;}
.ws11{word-spacing:-1.760000pt;}
.ws33{word-spacing:-1.706667pt;}
.ws43{word-spacing:-1.653333pt;}
.ws63{word-spacing:-1.642667pt;}
.wsc0{word-spacing:-1.632000pt;}
.ws48{word-spacing:-1.600000pt;}
.ws62{word-spacing:-1.584000pt;}
.ws2c{word-spacing:-1.546667pt;}
.ws37{word-spacing:-1.493333pt;}
.ws72{word-spacing:-1.488000pt;}
.ws13{word-spacing:-1.440000pt;}
.wsaa{word-spacing:-1.392000pt;}
.ws3a{word-spacing:-1.386667pt;}
.ws58{word-spacing:-1.333333pt;}
.ws35{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.226667pt;}
.ws52{word-spacing:-1.173333pt;}
.ws60{word-spacing:-1.152000pt;}
.ws1b{word-spacing:-1.120000pt;}
.wsa1{word-spacing:-1.104000pt;}
.ws3c{word-spacing:-1.082667pt;}
.ws1a{word-spacing:-1.066667pt;}
.ws7b{word-spacing:-1.056000pt;}
.ws28{word-spacing:-1.013333pt;}
.ws53{word-spacing:-0.960000pt;}
.wsd0{word-spacing:-0.912000pt;}
.ws4f{word-spacing:-0.906667pt;}
.ws74{word-spacing:-0.864000pt;}
.ws2b{word-spacing:-0.853333pt;}
.ws71{word-spacing:-0.816000pt;}
.ws38{word-spacing:-0.800000pt;}
.ws7e{word-spacing:-0.768000pt;}
.ws42{word-spacing:-0.746667pt;}
.ws2a{word-spacing:-0.693333pt;}
.ws23{word-spacing:-0.640000pt;}
.wsbf{word-spacing:-0.624000pt;}
.ws31{word-spacing:-0.586667pt;}
.ws50{word-spacing:-0.533333pt;}
.ws46{word-spacing:-0.522667pt;}
.wsa{word-spacing:-0.480000pt;}
.ws34{word-spacing:-0.426667pt;}
.ws64{word-spacing:-0.410667pt;}
.ws1e{word-spacing:-0.373333pt;}
.ws39{word-spacing:-0.320000pt;}
.wsa4{word-spacing:-0.288000pt;}
.ws26{word-spacing:-0.266667pt;}
.ws29{word-spacing:-0.213333pt;}
.wsb5{word-spacing:-0.192000pt;}
.ws3d{word-spacing:-0.186667pt;}
.ws45{word-spacing:-0.160000pt;}
.wsbd{word-spacing:-0.144000pt;}
.ws19{word-spacing:-0.106667pt;}
.ws4b{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws36{word-spacing:0.053333pt;}
.ws6f{word-spacing:0.106667pt;}
.ws41{word-spacing:0.160000pt;}
.wsd{word-spacing:0.213333pt;}
.ws66{word-spacing:0.224000pt;}
.ws80{word-spacing:0.240000pt;}
.ws1f{word-spacing:0.266667pt;}
.ws7a{word-spacing:0.320000pt;}
.ws2e{word-spacing:0.373333pt;}
.ws7c{word-spacing:0.384000pt;}
.ws27{word-spacing:0.426667pt;}
.ws14{word-spacing:0.480000pt;}
.ws49{word-spacing:0.533333pt;}
.wsc4{word-spacing:0.576000pt;}
.ws6b{word-spacing:0.586667pt;}
.ws89{word-spacing:0.640000pt;}
.ws6a{word-spacing:0.693333pt;}
.wsc6{word-spacing:0.720000pt;}
.ws94{word-spacing:0.746667pt;}
.ws82{word-spacing:0.784000pt;}
.ws6c{word-spacing:0.800000pt;}
.ws5b{word-spacing:0.853333pt;}
.ws22{word-spacing:0.906667pt;}
.ws24{word-spacing:0.960000pt;}
.ws4a{word-spacing:1.013333pt;}
.ws76{word-spacing:1.056000pt;}
.ws4c{word-spacing:1.066667pt;}
.ws18{word-spacing:1.120000pt;}
.ws75{word-spacing:1.152000pt;}
.ws5d{word-spacing:1.173333pt;}
.ws3b{word-spacing:1.194667pt;}
.ws1d{word-spacing:1.226667pt;}
.wsa8{word-spacing:1.248000pt;}
.ws54{word-spacing:1.269333pt;}
.ws68{word-spacing:1.280000pt;}
.ws8e{word-spacing:1.296000pt;}
.ws59{word-spacing:1.333333pt;}
.ws81{word-spacing:1.344000pt;}
.ws1c{word-spacing:1.386667pt;}
.ws9b{word-spacing:1.392000pt;}
.ws95{word-spacing:1.440000pt;}
.ws5e{word-spacing:1.493333pt;}
.ws5c{word-spacing:1.546667pt;}
.ws6e{word-spacing:1.600000pt;}
.wsac{word-spacing:1.632000pt;}
.ws25{word-spacing:1.653333pt;}
.wsaf{word-spacing:1.680000pt;}
.ws32{word-spacing:1.706667pt;}
.wsa2{word-spacing:1.728000pt;}
.wse{word-spacing:1.760000pt;}
.wsa3{word-spacing:1.776000pt;}
.ws10{word-spacing:1.813333pt;}
.wsa5{word-spacing:1.872000pt;}
.ws69{word-spacing:1.920000pt;}
.wsba{word-spacing:1.968000pt;}
.ws90{word-spacing:2.026667pt;}
.wsb2{word-spacing:2.064000pt;}
.ws91{word-spacing:2.080000pt;}
.ws5a{word-spacing:2.133333pt;}
.ws56{word-spacing:2.240000pt;}
.wsd6{word-spacing:2.256000pt;}
.wsbe{word-spacing:2.304000pt;}
.ws77{word-spacing:2.314667pt;}
.ws8b{word-spacing:2.352000pt;}
.ws65{word-spacing:2.389333pt;}
.ws51{word-spacing:2.432000pt;}
.ws84{word-spacing:2.448000pt;}
.wsa9{word-spacing:2.496000pt;}
.wscd{word-spacing:2.592000pt;}
.ws98{word-spacing:2.640000pt;}
.ws99{word-spacing:2.688000pt;}
.ws55{word-spacing:2.762667pt;}
.ws5f{word-spacing:2.832000pt;}
.wsbb{word-spacing:2.880000pt;}
.ws86{word-spacing:2.928000pt;}
.wsa6{word-spacing:3.072000pt;}
.ws3e{word-spacing:3.397333pt;}
.ws85{word-spacing:3.504000pt;}
.ws9f{word-spacing:3.648000pt;}
.wsa0{word-spacing:3.696000pt;}
.wsab{word-spacing:3.792000pt;}
.ws73{word-spacing:3.888000pt;}
.wsd5{word-spacing:3.936000pt;}
.wsb9{word-spacing:4.032000pt;}
.wsb8{word-spacing:4.128000pt;}
.wsc5{word-spacing:4.176000pt;}
.wsce{word-spacing:4.464000pt;}
.ws8c{word-spacing:4.512000pt;}
.ws2d{word-spacing:4.592000pt;}
.wsae{word-spacing:4.704000pt;}
.wsc9{word-spacing:4.752000pt;}
.wsca{word-spacing:4.800000pt;}
.ws88{word-spacing:4.944000pt;}
.wsb6{word-spacing:4.992000pt;}
.ws3f{word-spacing:5.040000pt;}
.ws9a{word-spacing:5.136000pt;}
.wsb1{word-spacing:5.232000pt;}
.wsb0{word-spacing:5.328000pt;}
.wsd4{word-spacing:5.520000pt;}
.wsbc{word-spacing:6.528000pt;}
.ws9c{word-spacing:7.200000pt;}
.ws9d{word-spacing:7.344000pt;}
.wscb{word-spacing:7.632000pt;}
.wscc{word-spacing:7.776000pt;}
.wsd1{word-spacing:9.408000pt;}
.wsd2{word-spacing:9.552000pt;}
.wsd3{word-spacing:37.392000pt;}
.ws9e{word-spacing:38.112000pt;}
.wscf{word-spacing:43.200000pt;}
.ws93{word-spacing:1932.790400pt;}
.wsad{word-spacing:1933.457067pt;}
.ws16{word-spacing:1937.969067pt;}
.ws2f{word-spacing:1944.817067pt;}
.ws6d{word-spacing:1946.929067pt;}
.ws57{word-spacing:1948.209067pt;}
.ws83{word-spacing:1949.350400pt;}
.ws47{word-spacing:1950.246400pt;}
.ws96{word-spacing:3203.758400pt;}
.wsc7{word-spacing:3204.425067pt;}
.ws1{word-spacing:3207.961067pt;}
.ws20{word-spacing:3208.937067pt;}
.ws40{word-spacing:3215.785067pt;}
.ws78{word-spacing:3217.897067pt;}
.ws67{word-spacing:3219.177067pt;}
.ws8a{word-spacing:3220.318400pt;}
.ws4d{word-spacing:3221.214400pt;}
._e{margin-left:-5836.616000pt;}
._0{margin-left:-5835.661333pt;}
._d{margin-left:-5833.949333pt;}
._b{margin-left:-5832.899733pt;}
._5{margin-left:-97.972800pt;}
._7{margin-left:-68.880000pt;}
._f{margin-left:-32.832000pt;}
._8{margin-left:-9.133867pt;}
._a{margin-left:-7.907200pt;}
._c{margin-left:-5.558400pt;}
._6{margin-left:-4.053333pt;}
._2{margin-left:-3.080533pt;}
._9{margin-left:-2.170667pt;}
._1{margin-left:-1.156267pt;}
._3{width:1.728000pt;}
._4{width:2.971733pt;}
._11{width:4.324267pt;}
._10{width:5.498667pt;}
.fsb{font-size:21.653333pt;}
.fs4{font-size:26.666667pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fsc{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs6{font-size:117.333333pt;}
.fs5{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:44.544800pt;}
.y56{bottom:64.881467pt;}
.y61{bottom:64.881600pt;}
.y49{bottom:64.881867pt;}
.y65{bottom:67.961467pt;}
.y55{bottom:76.081467pt;}
.y63{bottom:79.161467pt;}
.y60{bottom:79.161600pt;}
.y29{bottom:80.881867pt;}
.y6b{bottom:81.750933pt;}
.y6e{bottom:87.281467pt;}
.ybf{bottom:88.881867pt;}
.y54{bottom:90.361467pt;}
.y6a{bottom:92.950933pt;}
.y5f{bottom:96.030933pt;}
.y28{bottom:96.881867pt;}
.y6d{bottom:98.481467pt;}
.y96{bottom:100.240000pt;}
.y69{bottom:104.150933pt;}
.ybe{bottom:104.881867pt;}
.y5e{bottom:109.820400pt;}
.y6c{bottom:112.761467pt;}
.y27{bottom:112.881867pt;}
.y95{bottom:116.240000pt;}
.y68{bottom:118.430933pt;}
.y5d{bottom:124.100400pt;}
.y26{bottom:128.881867pt;}
.y5c{bottom:137.889867pt;}
.y94{bottom:140.240000pt;}
.y25{bottom:144.881867pt;}
.y5b{bottom:149.089867pt;}
.y93{bottom:156.240000pt;}
.y5a{bottom:160.289867pt;}
.y24{bottom:160.881867pt;}
.ybd{bottom:168.881867pt;}
.y59{bottom:171.489867pt;}
.y53{bottom:176.881867pt;}
.y92{bottom:180.240000pt;}
.ybc{bottom:184.881867pt;}
.y58{bottom:185.769867pt;}
.y23{bottom:192.881867pt;}
.y91{bottom:196.240000pt;}
.y52{bottom:198.215200pt;}
.y48{bottom:208.881867pt;}
.y64{bottom:218.215200pt;}
.y90{bottom:220.240000pt;}
.y22{bottom:224.881867pt;}
.y21{bottom:240.881867pt;}
.y8f{bottom:244.240000pt;}
.y47{bottom:256.881867pt;}
.y8e{bottom:260.240000pt;}
.ybb{bottom:269.158000pt;}
.y46{bottom:272.881867pt;}
.y8d{bottom:276.240000pt;}
.y20{bottom:277.102400pt;}
.yba{bottom:285.158000pt;}
.y45{bottom:288.881867pt;}
.y1f{bottom:289.102400pt;}
.y8c{bottom:300.240000pt;}
.yb9{bottom:301.158000pt;}
.y44{bottom:304.881867pt;}
.y8b{bottom:316.240000pt;}
.y1e{bottom:320.881867pt;}
.yb8{bottom:325.158000pt;}
.y1d{bottom:336.881867pt;}
.y8a{bottom:340.240000pt;}
.yb7{bottom:341.158000pt;}
.y1c{bottom:352.881867pt;}
.y89{bottom:356.240000pt;}
.yb6{bottom:357.158000pt;}
.y1b{bottom:368.881867pt;}
.yc8{bottom:369.987200pt;}
.y88{bottom:380.240000pt;}
.yb5{bottom:381.158000pt;}
.y1a{bottom:384.881867pt;}
.y87{bottom:396.240000pt;}
.yb4{bottom:397.158000pt;}
.y19{bottom:400.881867pt;}
.yb3{bottom:413.158000pt;}
.y18{bottom:416.881867pt;}
.y86{bottom:420.240000pt;}
.y17{bottom:432.881867pt;}
.y85{bottom:436.240000pt;}
.yb2{bottom:437.158000pt;}
.y16{bottom:448.881867pt;}
.yb1{bottom:453.158000pt;}
.y84{bottom:460.240000pt;}
.y15{bottom:464.881867pt;}
.y43{bottom:469.102400pt;}
.yb0{bottom:469.158000pt;}
.y62{bottom:474.215200pt;}
.y83{bottom:476.240000pt;}
.y14{bottom:480.881867pt;}
.y42{bottom:481.102400pt;}
.yaf{bottom:485.158000pt;}
.y13{bottom:496.881867pt;}
.y82{bottom:500.240000pt;}
.yae{bottom:509.158000pt;}
.y41{bottom:512.881867pt;}
.y81{bottom:516.240000pt;}
.y67{bottom:520.881867pt;}
.yad{bottom:525.158000pt;}
.y12{bottom:528.881867pt;}
.yc7{bottom:536.091333pt;}
.y66{bottom:538.215200pt;}
.y80{bottom:540.240000pt;}
.yac{bottom:541.158000pt;}
.y40{bottom:544.881867pt;}
.y7f{bottom:556.240000pt;}
.y3f{bottom:560.881867pt;}
.yab{bottom:565.158000pt;}
.y3e{bottom:576.881867pt;}
.y7e{bottom:580.240000pt;}
.yaa{bottom:581.158000pt;}
.y11{bottom:586.717733pt;}
.y3d{bottom:592.881867pt;}
.y7d{bottom:596.240000pt;}
.ya9{bottom:597.158000pt;}
.y10{bottom:597.384400pt;}
.y3c{bottom:608.881867pt;}
.ya8{bottom:613.158000pt;}
.y7c{bottom:620.240000pt;}
.y3b{bottom:624.881867pt;}
.yc6{bottom:629.158000pt;}
.y7b{bottom:636.240000pt;}
.ya7{bottom:637.158000pt;}
.yf{bottom:640.051067pt;}
.y3a{bottom:640.881867pt;}
.ya6{bottom:653.158000pt;}
.ye{bottom:655.830533pt;}
.y39{bottom:656.881867pt;}
.y7a{bottom:660.240000pt;}
.ya5{bottom:669.158000pt;}
.yd{bottom:671.610133pt;}
.y38{bottom:672.881867pt;}
.y79{bottom:676.240000pt;}
.yc{bottom:683.610133pt;}
.y37{bottom:688.881867pt;}
.ya4{bottom:693.158000pt;}
.yb{bottom:699.610133pt;}
.y78{bottom:700.240000pt;}
.y51{bottom:704.881867pt;}
.ya3{bottom:709.158000pt;}
.y77{bottom:716.240000pt;}
.y36{bottom:720.881867pt;}
.ya2{bottom:725.158000pt;}
.y76{bottom:732.240000pt;}
.y50{bottom:736.881867pt;}
.ya1{bottom:741.158000pt;}
.y35{bottom:752.881867pt;}
.y75{bottom:756.240000pt;}
.y57{bottom:762.215200pt;}
.ya0{bottom:765.158000pt;}
.y34{bottom:768.881867pt;}
.y74{bottom:772.240000pt;}
.y9f{bottom:781.158000pt;}
.y4f{bottom:784.881867pt;}
.ya{bottom:792.881867pt;}
.y73{bottom:796.240000pt;}
.yc5{bottom:797.158000pt;}
.y4e{bottom:800.881867pt;}
.y33{bottom:805.102400pt;}
.y9e{bottom:805.158000pt;}
.y72{bottom:812.240000pt;}
.yc4{bottom:813.158000pt;}
.y4d{bottom:816.881867pt;}
.y32{bottom:817.102400pt;}
.y9d{bottom:821.158000pt;}
.y9{bottom:832.881867pt;}
.y71{bottom:836.240000pt;}
.y9c{bottom:837.158000pt;}
.y31{bottom:848.881867pt;}
.y70{bottom:852.240000pt;}
.yc3{bottom:853.158000pt;}
.y9b{bottom:861.158000pt;}
.y30{bottom:864.881867pt;}
.yc2{bottom:869.158000pt;}
.y8{bottom:872.881867pt;}
.y2f{bottom:880.881867pt;}
.y9a{bottom:885.158000pt;}
.yc1{bottom:893.158000pt;}
.y2e{bottom:896.881867pt;}
.y99{bottom:901.158000pt;}
.yc0{bottom:909.158000pt;}
.y7{bottom:912.881867pt;}
.y98{bottom:917.158000pt;}
.y6f{bottom:928.240000pt;}
.y2d{bottom:928.881867pt;}
.y97{bottom:933.158000pt;}
.y2{bottom:944.762000pt;}
.y4c{bottom:998.466133pt;}
.y6{bottom:998.466667pt;}
.y2c{bottom:998.467067pt;}
.y4b{bottom:1009.666133pt;}
.y5{bottom:1009.666533pt;}
.y2b{bottom:1009.667200pt;}
.y1{bottom:1011.738133pt;}
.y2a{bottom:1021.667200pt;}
.y4a{bottom:1022.466133pt;}
.y4{bottom:1022.466667pt;}
.h15{height:20.047467pt;}
.h12{height:20.048000pt;}
.h5{height:23.120000pt;}
.h7{height:29.232000pt;}
.h4{height:32.368000pt;}
.hc{height:32.853333pt;}
.ha{height:33.109333pt;}
.h6{height:34.602667pt;}
.h10{height:36.960000pt;}
.h11{height:37.248000pt;}
.hf{height:41.616000pt;}
.he{height:43.253333pt;}
.h2{height:46.240000pt;}
.hb{height:48.552000pt;}
.h14{height:49.280000pt;}
.h16{height:49.408000pt;}
.hd{height:49.664000pt;}
.h13{height:55.936000pt;}
.h3{height:79.680000pt;}
.h17{height:91.050667pt;}
.h9{height:101.728000pt;}
.h8{height:115.882667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.xe{left:56.734933pt;}
.x7{left:94.488133pt;}
.x1b{left:99.936133pt;}
.x1c{left:107.821467pt;}
.x8{left:112.234667pt;}
.xd{left:113.385867pt;}
.x9{left:126.488133pt;}
.xa{left:140.489467pt;}
.x3{left:166.299200pt;}
.x10{left:211.854267pt;}
.x1d{left:217.302267pt;}
.x1e{left:225.187600pt;}
.x11{left:230.752000pt;}
.x18{left:243.854267pt;}
.xc{left:419.328000pt;}
.xb{left:449.386667pt;}
.x5{left:453.165333pt;}
.x14{left:481.586000pt;}
.x15{left:486.768000pt;}
.x12{left:513.559067pt;}
.x4{left:563.454667pt;}
.x6{left:608.847333pt;}
.x17{left:656.663467pt;}
.x13{left:710.663733pt;}
.x1{left:711.906533pt;}
.x2{left:713.493467pt;}
.x19{left:714.433067pt;}
.xf{left:1466.569333pt;}
.x1a{left:1468.117467pt;}
.x16{left:1469.942933pt;}
}




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