
    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_f5c327fcb0717820493344f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.730000;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_11b980129811cc9936ce9a62.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.730000;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_d6caa01d97de85dc38a5023b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.160000;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_6ae559e51a53872c1e8f7d45.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975000;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_f437ca2959f364b14a327da3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160000;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_ad7e3c744f4b33780a1f050e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.154000;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_1faf5f40a2e12c256b158ad0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.148000;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_6b76f95565f6592f321ea6a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.148000;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_ce55b6acec72aaed3f45bbbc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a22d9f625ca5f41236cc8a38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.755000;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_7c1faa028ebabe6691d86248.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.031000;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_1faf5f40a2e12c256b158ad0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.148000;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_d6caa01d97de85dc38a5023b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.160000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ba2ae282e00b4aa0b9554140.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.844727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7c1faa028ebabe6691d86248.woff2')format("woff");}.fff{font-family:fff;line-height:1.031000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_08c2b3156829d74762218fdc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.163000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_20b56a4f31d785f904abd183.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c444cbac2be26f95036e711d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.141000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3ea2e3afb4855d3980a1def4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.718000;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:ff14;src:url('chunks/assets/font_ad7e3c744f4b33780a1f050e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.154000;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:ff15;src:url('chunks/assets/font_930fc4511c3bb2963eccadd2.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.078000;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:ff16;src:url('chunks/assets/font_5c5572636e89c17a7d93f4cd.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.078000;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:ff17;src:url('chunks/assets/font_7771496350f2cdb806c10812.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.900000;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:ff18;src:url('chunks/assets/font_666bc00bca4d9961cfad1755.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.141000;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:ff19;src:url('chunks/assets/font_0b0e74d62cf68adc995e0cfe.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.160000;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:ff1a;src:url('chunks/assets/font_3ea2e3afb4855d3980a1def4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.718000;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:ff1b;src:url('chunks/assets/font_8dcf17485a87de09890081b0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.098000;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:ff1c;src:url('chunks/assets/font_d155d938af612ef2b651bae4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.108000;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:ff1d;src:url('chunks/assets/font_335790c5bd871be842ede51e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.093000;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:ff1e;src:url('chunks/assets/font_378afed23d5a9b41bc4cbbe9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.844727;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:ff1f;src:url('chunks/assets/font_d48d31b4b727186210f468f7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.098000;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:ff20;src:url('chunks/assets/font_25bf7907e13955b11dbe0670.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.108000;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:ff21;src:url('chunks/assets/font_720c5032c1dfbfa3b6fe1e0f.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.078000;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:ff22;src:url('chunks/assets/font_7c1faa028ebabe6691d86248.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.031000;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;}
.m0{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);}
.m16d{transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.246566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246566,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.246882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246882,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247143,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.247152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247152,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247164,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247166,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247252,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.247293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247293,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247357,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247557,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247616,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247637,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);}
.m17b{transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.247907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247907,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247941,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.248023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248023,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.m182{transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248180,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.248239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248239,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);}
.m170{transform:matrix(0.248673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248673,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248709,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248877,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.249052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249052,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);}
.m17c{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.249173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249173,0.000000,0.000000,0.250000,0,0);}
.m168{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249184,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249186,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);}
.m181{transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249216,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249282,0.000000,0.000000,0.250000,0,0);}
.m177{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249316,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);}
.m144{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);}
.m48{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m17e{transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);}
.m178{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);}
.m117{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m75{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);}
.md4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m11c{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250123,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);}
.mb7{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);}
.m21{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);}
.m6d{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);}
.mb1{transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250373,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250386,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250434,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.250441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250441,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.m22{transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250514,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.250609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250609,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);}
.m102{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);}
.m63{transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250845,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250866,0.000000,0.000000,0.250000,0,0);}
.mff{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);}
.m119{transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250873,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.250874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250874,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250984,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.250989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250989,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251039,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.251059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251059,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251064,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.251068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251068,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251139,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251184,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.251198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251198,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251243,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mcc{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);}
.m2{transform:matrix(0.251262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251262,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m39{transform:matrix(0.251411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251411,0.000000,0.000000,0.250000,0,0);}
.m173{transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251422,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251534,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251598,0.000000,0.000000,0.250000,0,0);}
.m17a{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);}
.mbf{transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.251659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251659,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.251734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251734,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251756,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251757,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.251811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251811,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251923,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251955,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251966,0.000000,0.000000,0.250000,0,0);}
.m17f{transform:matrix(0.251989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251989,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.252082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252082,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252098,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252111,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.252130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252130,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252148,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252216,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.252284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252284,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252286,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252293,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252322,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.252423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252423,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.252432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252432,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.252434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252434,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m180{transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252489,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252532,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.252616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252616,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.252623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252623,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252702,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.252893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252893,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.253014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253014,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253036,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.253077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253077,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.253091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253091,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253136,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.253161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253161,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253209,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.253241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253241,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.253302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253302,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.253345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253345,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.253523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253523,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.253591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253591,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253634,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253655,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.253814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253814,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.253927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253927,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.254118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254118,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.254166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254166,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.254244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254244,0.000000,0.000000,0.250000,0,0);}
.m91{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);}
.m136{transform:matrix(0.254257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254257,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.254434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254434,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.254436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254436,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.254443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254443,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.254555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254555,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254648,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255007,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.255020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255020,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.255105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255105,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.255268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255268,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.255548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255548,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.255845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255845,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-21.780000px;}
.v6{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.308000px;}
.v2{vertical-align:8.400000px;}
.v8{vertical-align:17.820000px;}
.v4{vertical-align:21.780000px;}
.v7{vertical-align:23.265000px;}
.v1{vertical-align:32.994000px;}
.ls94{letter-spacing:-8.976000px;}
.ls8a{letter-spacing:-8.514000px;}
.ls7a{letter-spacing:-7.392000px;}
.ls92{letter-spacing:-7.326000px;}
.ls8c{letter-spacing:-7.194000px;}
.ls76{letter-spacing:-6.864000px;}
.ls96{letter-spacing:-6.276600px;}
.ls84{letter-spacing:-6.270000px;}
.ls87{letter-spacing:-6.072000px;}
.ls39{letter-spacing:-5.544000px;}
.ls95{letter-spacing:-5.484600px;}
.ls7b{letter-spacing:-5.458200px;}
.ls85{letter-spacing:-5.372400px;}
.ls8e{letter-spacing:-5.359200px;}
.ls78{letter-spacing:-5.346000px;}
.ls75{letter-spacing:-5.280000px;}
.ls21{letter-spacing:-5.160000px;}
.ls8b{letter-spacing:-5.016000px;}
.ls97{letter-spacing:-4.884000px;}
.ls86{letter-spacing:-4.818000px;}
.ls22{letter-spacing:-4.560000px;}
.ls5b{letter-spacing:-4.536000px;}
.ls4f{letter-spacing:-3.768600px;}
.ls93{letter-spacing:-3.128400px;}
.ls88{letter-spacing:-2.772000px;}
.ls50{letter-spacing:-2.640000px;}
.ls8f{letter-spacing:-2.574000px;}
.ls2b{letter-spacing:-2.544000px;}
.ls79{letter-spacing:-2.527800px;}
.ls91{letter-spacing:-1.848000px;}
.ls8d{letter-spacing:-1.696200px;}
.ls61{letter-spacing:-1.452000px;}
.ls69{letter-spacing:-1.333200px;}
.ls63{letter-spacing:-1.320000px;}
.ls6b{letter-spacing:-1.254000px;}
.ls7c{letter-spacing:-0.990000px;}
.ls65{letter-spacing:-0.924000px;}
.ls67{letter-spacing:-0.891000px;}
.ls68{letter-spacing:-0.858000px;}
.ls62{letter-spacing:-0.842160px;}
.ls1b{letter-spacing:-0.768000px;}
.ls64{letter-spacing:-0.765600px;}
.ls5c{letter-spacing:-0.756000px;}
.ls6a{letter-spacing:-0.726000px;}
.ls55{letter-spacing:-0.648000px;}
.ls66{letter-spacing:-0.535920px;}
.ls48{letter-spacing:-0.528000px;}
.ls6c{letter-spacing:-0.497640px;}
.ls1c{letter-spacing:-0.480000px;}
.ls47{letter-spacing:-0.462000px;}
.ls10{letter-spacing:-0.399000px;}
.ls30{letter-spacing:-0.396000px;}
.ls1d{letter-spacing:-0.378000px;}
.ls31{letter-spacing:-0.363000px;}
.ls23{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.330000px;}
.ls49{letter-spacing:-0.306240px;}
.ls38{letter-spacing:-0.264000px;}
.ls4a{letter-spacing:-0.231000px;}
.ls5f{letter-spacing:-0.229680px;}
.ls59{letter-spacing:-0.216000px;}
.ls5a{letter-spacing:-0.215460px;}
.ls43{letter-spacing:-0.198000px;}
.ls32{letter-spacing:-0.165000px;}
.ls51{letter-spacing:-0.153120px;}
.ls3c{letter-spacing:-0.132000px;}
.ls53{letter-spacing:-0.099000px;}
.ls3d{letter-spacing:-0.076560px;}
.ls34{letter-spacing:-0.066000px;}
.ls60{letter-spacing:-0.057420px;}
.ls54{letter-spacing:-0.038280px;}
.ls6d{letter-spacing:-0.033000px;}
.lse{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000600px;}
.ls2c{letter-spacing:0.004800px;}
.ls3b{letter-spacing:0.026400px;}
.ls3f{letter-spacing:0.033000px;}
.ls7e{letter-spacing:0.038912px;}
.ls45{letter-spacing:0.039600px;}
.ls16{letter-spacing:0.048000px;}
.ls71{letter-spacing:0.053592px;}
.ls1e{letter-spacing:0.060000px;}
.ls26{letter-spacing:0.066000px;}
.ls5e{letter-spacing:0.076560px;}
.ls36{letter-spacing:0.079200px;}
.ls6e{letter-spacing:0.092400px;}
.ls14{letter-spacing:0.096000px;}
.ls2e{letter-spacing:0.099000px;}
.ls73{letter-spacing:0.114840px;}
.ls17{letter-spacing:0.115200px;}
.ls25{letter-spacing:0.132000px;}
.ls15{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.144152px;}
.ls72{letter-spacing:0.165000px;}
.ls19{letter-spacing:0.172800px;}
.ls4c{letter-spacing:0.189000px;}
.ls42{letter-spacing:0.191400px;}
.ls1a{letter-spacing:0.192000px;}
.ls27{letter-spacing:0.198000px;}
.ls58{letter-spacing:0.229680px;}
.ls40{letter-spacing:0.231000px;}
.ls6{letter-spacing:0.240000px;}
.ls4b{letter-spacing:0.248820px;}
.ls2a{letter-spacing:0.264000px;}
.ls46{letter-spacing:0.267960px;}
.ls81{letter-spacing:0.297000px;}
.ls4e{letter-spacing:0.306240px;}
.ls28{letter-spacing:0.330000px;}
.ls35{letter-spacing:0.351585px;}
.ls1f{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.363000px;}
.ls2d{letter-spacing:0.396000px;}
.ls24{letter-spacing:0.420000px;}
.ls4d{letter-spacing:0.431400px;}
.ls44{letter-spacing:0.462000px;}
.ls5{letter-spacing:0.480000px;}
.ls3e{letter-spacing:0.528000px;}
.ls29{letter-spacing:0.594000px;}
.ls77{letter-spacing:0.627000px;}
.ls56{letter-spacing:0.660000px;}
.ls6f{letter-spacing:0.693000px;}
.ls41{letter-spacing:0.726000px;}
.ls57{letter-spacing:0.759000px;}
.lsa{letter-spacing:0.768000px;}
.ls70{letter-spacing:0.891000px;}
.ls82{letter-spacing:0.896105px;}
.ls83{letter-spacing:0.896703px;}
.ls7f{letter-spacing:0.938009px;}
.ls3a{letter-spacing:0.957000px;}
.ls20{letter-spacing:0.960000px;}
.ls89{letter-spacing:0.975624px;}
.ls7d{letter-spacing:1.017279px;}
.ls90{letter-spacing:1.035910px;}
.ls80{letter-spacing:1.157908px;}
.ls3{letter-spacing:1.200000px;}
.ls74{letter-spacing:1.290612px;}
.ls5d{letter-spacing:1.584000px;}
.ls52{letter-spacing:2.366400px;}
.ls7{letter-spacing:2.640000px;}
.ls2{letter-spacing:3.240000px;}
.lsf{letter-spacing:3.600000px;}
.ls0{letter-spacing:4.620000px;}
.ls11{letter-spacing:4.915200px;}
.lsd{letter-spacing:5.400000px;}
.lsc{letter-spacing:6.888000px;}
.ls13{letter-spacing:7.500000px;}
.lsb{letter-spacing:7.680000px;}
.ls1{letter-spacing:8.400000px;}
.ls4{letter-spacing:12.000000px;}
.ls12{letter-spacing:13.200000px;}
.ls9{letter-spacing:321.732000px;}
.ls8{letter-spacing:342.954000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3b{word-spacing:-18.750000px;}
.wse{word-spacing:-18.375000px;}
.ws42{word-spacing:-16.962000px;}
.ws21{word-spacing:-16.896000px;}
.ws4e{word-spacing:-16.830000px;}
.ws3c{word-spacing:-16.698000px;}
.ws38{word-spacing:-16.632000px;}
.ws19{word-spacing:-16.500000px;}
.ws46{word-spacing:-16.434000px;}
.ws52{word-spacing:-16.236000px;}
.ws26{word-spacing:-16.170000px;}
.ws5c{word-spacing:-16.038000px;}
.ws1f{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.446000px;}
.ws22{word-spacing:-12.744000px;}
.ws2a{word-spacing:-12.731400px;}
.ws11{word-spacing:-12.699000px;}
.ws8{word-spacing:-12.528000px;}
.ws7{word-spacing:-12.432000px;}
.ws13{word-spacing:-12.355200px;}
.ws3{word-spacing:-12.240000px;}
.ws10{word-spacing:-12.036000px;}
.ws1b{word-spacing:-12.000000px;}
.ws4f{word-spacing:-11.682000px;}
.ws5e{word-spacing:-11.616000px;}
.ws1d{word-spacing:-11.524800px;}
.ws1c{word-spacing:-11.520000px;}
.ws55{word-spacing:-11.484000px;}
.ws3e{word-spacing:-11.220000px;}
.ws43{word-spacing:-11.154000px;}
.ws12{word-spacing:-11.136000px;}
.ws1a{word-spacing:-11.040000px;}
.ws50{word-spacing:-10.428000px;}
.ws4d{word-spacing:-10.230000px;}
.ws25{word-spacing:-9.837960px;}
.ws28{word-spacing:-9.818820px;}
.ws2f{word-spacing:-9.799680px;}
.ws3a{word-spacing:-9.684840px;}
.ws39{word-spacing:-9.646560px;}
.ws41{word-spacing:-9.636000px;}
.ws5{word-spacing:-9.576000px;}
.ws3f{word-spacing:-9.570000px;}
.ws2d{word-spacing:-9.531720px;}
.ws32{word-spacing:-9.512580px;}
.ws2e{word-spacing:-9.493440px;}
.ws2c{word-spacing:-9.416880px;}
.ws15{word-spacing:-9.412200px;}
.ws37{word-spacing:-9.340320px;}
.ws57{word-spacing:-9.306000px;}
.ws27{word-spacing:-9.263760px;}
.ws59{word-spacing:-9.174000px;}
.ws45{word-spacing:-9.108000px;}
.ws36{word-spacing:-9.072360px;}
.ws16{word-spacing:-9.034200px;}
.ws35{word-spacing:-9.034080px;}
.ws34{word-spacing:-8.804400px;}
.ws33{word-spacing:-8.727840px;}
.ws1{word-spacing:-8.484000px;}
.ws53{word-spacing:-7.986000px;}
.ws2{word-spacing:-7.920000px;}
.wsc{word-spacing:-7.833600px;}
.ws5b{word-spacing:-7.524000px;}
.ws0{word-spacing:-6.972000px;}
.ws14{word-spacing:-6.573600px;}
.wsb{word-spacing:-5.068800px;}
.ws40{word-spacing:-0.528000px;}
.ws49{word-spacing:-0.462000px;}
.ws4c{word-spacing:-0.396000px;}
.ws47{word-spacing:-0.330000px;}
.ws3d{word-spacing:-0.264000px;}
.ws29{word-spacing:-0.226800px;}
.ws4a{word-spacing:-0.198000px;}
.ws24{word-spacing:-0.132000px;}
.wsf{word-spacing:-0.075000px;}
.ws23{word-spacing:-0.066000px;}
.ws9{word-spacing:-0.054000px;}
.ws6{word-spacing:-0.048000px;}
.ws18{word-spacing:-0.037800px;}
.wsd{word-spacing:0.000000px;}
.ws54{word-spacing:0.066000px;}
.ws48{word-spacing:0.132000px;}
.ws30{word-spacing:0.177660px;}
.ws51{word-spacing:0.198000px;}
.ws20{word-spacing:0.330000px;}
.ws2b{word-spacing:0.340200px;}
.ws56{word-spacing:0.462000px;}
.ws31{word-spacing:0.718200px;}
.ws4b{word-spacing:0.924000px;}
.ws44{word-spacing:2.461800px;}
.ws5a{word-spacing:3.062400px;}
.ws58{word-spacing:5.293200px;}
.ws5d{word-spacing:5.418600px;}
.ws1e{word-spacing:1190.885400px;}
.ws17{word-spacing:1205.825400px;}
._f{margin-left:-574.272000px;}
._11{margin-left:-220.176000px;}
._1d{margin-left:-32.637600px;}
._1e{margin-left:-18.949113px;}
._22{margin-left:-16.874078px;}
._20{margin-left:-15.562085px;}
._e{margin-left:-13.446000px;}
._13{margin-left:-12.181800px;}
._15{margin-left:-10.752000px;}
._6{margin-left:-9.276000px;}
._19{margin-left:-8.268000px;}
._25{margin-left:-7.260000px;}
._16{margin-left:-6.220800px;}
._7{margin-left:-5.040000px;}
._1{margin-left:-3.864000px;}
._8{margin-left:-2.788800px;}
._2{margin-left:-1.764000px;}
._0{width:1.512000px;}
._d{width:2.764800px;}
._5{width:4.320000px;}
._1a{width:5.760000px;}
._14{width:7.576200px;}
._1b{width:10.050000px;}
._1f{width:11.180160px;}
._1c{width:12.690000px;}
._4{width:21.596400px;}
._3{width:23.391600px;}
._24{width:43.361774px;}
._23{width:45.738255px;}
._21{width:51.018000px;}
._9{width:117.972000px;}
._17{width:129.065400px;}
._18{width:130.242600px;}
._c{width:176.904000px;}
._b{width:286.830000px;}
._a{width:407.538000px;}
._12{width:1068.149400px;}
._10{width:1749.948600px;}
.fc5{color:rgb(217,25,32);}
.fc3{color:transparent;}
.fc2{color:rgb(241,161,139);}
.fc6{color:rgb(0,0,0);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(239,149,126);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:26.400000px;}
.fs12{font-size:31.320000px;}
.fsd{font-size:36.000000px;}
.fsf{font-size:37.800000px;}
.fs11{font-size:38.280000px;}
.fs7{font-size:39.900000px;}
.fs13{font-size:40.890000px;}
.fs5{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs10{font-size:70.500000px;}
.fsa{font-size:75.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fsc{font-size:132.000000px;}
.fs9{font-size:153.600000px;}
.fs4{font-size:240.000000px;}
.y6c{bottom:-37.771650px;}
.yf0{bottom:-31.626150px;}
.y0{bottom:0.000000px;}
.y9e{bottom:36.400050px;}
.y9f{bottom:37.477050px;}
.yd1{bottom:42.545550px;}
.yd2{bottom:43.622550px;}
.y3a{bottom:50.668950px;}
.y2{bottom:50.988150px;}
.y5a{bottom:81.815100px;}
.yc0{bottom:82.026900px;}
.y111{bottom:88.173000px;}
.y135{bottom:88.173300px;}
.yef{bottom:88.704600px;}
.y1f0{bottom:88.721700px;}
.y236{bottom:90.521700px;}
.y15d{bottom:92.628300px;}
.y9d{bottom:94.969950px;}
.y59{bottom:98.313600px;}
.ybf{bottom:98.847900px;}
.y238{bottom:99.821850px;}
.y134{bottom:104.373300px;}
.yee{bottom:106.704600px;}
.y164{bottom:107.562450px;}
.y1c8{bottom:107.822850px;}
.y216{bottom:108.271800px;}
.y9c{bottom:108.469950px;}
.y1ef{bottom:108.521700px;}
.y110{bottom:108.537750px;}
.y146{bottom:108.828300px;}
.y235{bottom:110.321700px;}
.y15c{bottom:112.017450px;}
.y58{bottom:114.812100px;}
.ybe{bottom:117.794100px;}
.y16b{bottom:120.573300px;}
.y9b{bottom:121.969950px;}
.y145{bottom:123.762450px;}
.yed{bottom:124.704600px;}
.y133{bottom:125.028300px;}
.y1c7{bottom:127.472700px;}
.y16f{bottom:128.217450px;}
.y1ee{bottom:128.321700px;}
.y215{bottom:128.370450px;}
.y10f{bottom:128.902500px;}
.y234{bottom:130.121700px;}
.y57{bottom:131.310600px;}
.y15b{bottom:131.406600px;}
.y9a{bottom:135.472200px;}
.ybd{bottom:136.739700px;}
.y183{bottom:136.773300px;}
.y237{bottom:139.421850px;}
.y144{bottom:139.962450px;}
.y16a{bottom:141.228300px;}
.y1a6{bottom:142.213950px;}
.yec{bottom:142.704600px;}
.y18e{bottom:143.151600px;}
.y132{bottom:144.417450px;}
.y6b{bottom:146.186700px;}
.y15a{bottom:146.340750px;}
.y1c6{bottom:147.122550px;}
.y16e{bottom:147.606600px;}
.y1ed{bottom:148.121700px;}
.y214{bottom:148.469100px;}
.y10e{bottom:149.267250px;}
.y233{bottom:149.921700px;}
.y186{bottom:150.795600px;}
.y18a{bottom:150.795750px;}
.y182{bottom:152.973300px;}
.ybc{bottom:153.560700px;}
.y143{bottom:156.162450px;}
.y18c{bottom:159.221850px;}
.y131{bottom:159.351600px;}
.y163{bottom:160.617450px;}
.yeb{bottom:160.704600px;}
.y1a5{bottom:162.013950px;}
.y1e{bottom:162.164100px;}
.y67{bottom:163.182450px;}
.y13e{bottom:163.806600px;}
.y1c5{bottom:166.772400px;}
.y99{bottom:166.828200px;}
.y159{bottom:166.995750px;}
.y1ec{bottom:167.921700px;}
.y213{bottom:168.567750px;}
.y10d{bottom:169.632150px;}
.y232{bottom:169.721700px;}
.y185{bottom:170.184750px;}
.y142{bottom:172.362450px;}
.ybb{bottom:172.506300px;}
.y38{bottom:173.505300px;}
.y181{bottom:173.628300px;}
.y130{bottom:175.551600px;}
.y173{bottom:176.817450px;}
.yea{bottom:178.704600px;}
.y161{bottom:179.021850px;}
.y98{bottom:180.328200px;}
.y1a4{bottom:181.813950px;}
.y13d{bottom:183.195750px;}
.y1d{bottom:184.918050px;}
.y192{bottom:186.384750px;}
.y1c4{bottom:186.422250px;}
.y1eb{bottom:187.721700px;}
.y175{bottom:188.562450px;}
.y212{bottom:188.666550px;}
.yba{bottom:189.327300px;}
.y231{bottom:189.521700px;}
.y189{bottom:189.573900px;}
.y10c{bottom:189.996900px;}
.y37{bottom:190.002300px;}
.y12f{bottom:191.751600px;}
.y141{bottom:193.017450px;}
.y97{bottom:193.828200px;}
.y162{bottom:196.206600px;}
.y160{bottom:198.821850px;}
.y1c{bottom:199.918050px;}
.y1a3{bottom:201.613950px;}
.y56{bottom:201.853950px;}
.y180{bottom:204.762450px;}
.y191{bottom:205.773900px;}
.y1c3{bottom:206.072100px;}
.y96{bottom:207.328200px;}
.y1ea{bottom:207.521700px;}
.y66{bottom:207.880950px;}
.y12e{bottom:207.951600px;}
.yb9{bottom:208.273500px;}
.y158{bottom:208.316400px;}
.y211{bottom:208.765200px;}
.y188{bottom:208.963050px;}
.y230{bottom:209.021700px;}
.y174{bottom:209.217450px;}
.y10b{bottom:210.361650px;}
.y140{bottom:212.406600px;}
.ye9{bottom:213.712500px;}
.y1b{bottom:214.168050px;}
.y36{bottom:215.004300px;}
.y172{bottom:215.595750px;}
.y15f{bottom:218.621850px;}
.y55{bottom:219.849450px;}
.y95{bottom:220.828200px;}
.y17f{bottom:220.962450px;}
.y1a2{bottom:221.413950px;}
.y190{bottom:225.163050px;}
.y1c2{bottom:225.721950px;}
.y1e9{bottom:227.321700px;}
.y157{bottom:228.116400px;}
.y22f{bottom:228.521700px;}
.y12d{bottom:228.606600px;}
.y210{bottom:228.863850px;}
.y10a{bottom:230.726550px;}
.y35{bottom:231.501300px;}
.y169{bottom:231.795600px;}
.ye8{bottom:233.512500px;}
.y94{bottom:234.341700px;}
.y171{bottom:234.984750px;}
.y1a{bottom:236.922000px;}
.y17e{bottom:237.162450px;}
.y13c{bottom:238.421850px;}
.y1a1{bottom:241.213950px;}
.y65{bottom:243.885450px;}
.y1c1{bottom:245.671800px;}
.yb8{bottom:246.165300px;}
.y168{bottom:246.729750px;}
.y1e8{bottom:247.121700px;}
.y156{bottom:247.916400px;}
.y12c{bottom:247.995750px;}
.y34{bottom:247.998300px;}
.y22e{bottom:248.021700px;}
.y20f{bottom:248.962500px;}
.y109{bottom:251.091300px;}
.y19{bottom:251.928000px;}
.y170{bottom:254.373900px;}
.y54{bottom:255.853950px;}
.y17d{bottom:257.817450px;}
.y13b{bottom:258.221850px;}
.y1a0{bottom:261.013950px;}
.yb7{bottom:262.986300px;}
.y18b{bottom:263.666850px;}
.y33{bottom:264.495300px;}
.y1c0{bottom:265.621650px;}
.y93{bottom:265.697700px;}
.y18{bottom:266.172000px;}
.y1e7{bottom:266.921700px;}
.y167{bottom:267.384750px;}
.y22d{bottom:267.521700px;}
.y155{bottom:267.716400px;}
.y20e{bottom:269.061300px;}
.ye7{bottom:270.320250px;}
.y108{bottom:271.456050px;}
.y17c{bottom:272.751600px;}
.y53{bottom:273.849450px;}
.y13a{bottom:278.021850px;}
.y92{bottom:279.197700px;}
.y19f{bottom:280.813950px;}
.yb6{bottom:281.931150px;}
.y18d{bottom:283.466850px;}
.y1bf{bottom:285.571500px;}
.y1e6{bottom:286.421700px;}
.y166{bottom:286.773900px;}
.y22c{bottom:287.021700px;}
.y154{bottom:287.516400px;}
.ye6{bottom:288.320250px;}
.y17{bottom:288.925950px;}
.y17b{bottom:288.951600px;}
.y20d{bottom:289.159950px;}
.y32{bottom:289.497300px;}
.y52{bottom:291.844950px;}
.y91{bottom:292.697700px;}
.y12b{bottom:297.821850px;}
.y64{bottom:297.885450px;}
.yb5{bottom:298.752150px;}
.y19e{bottom:300.613950px;}
.y16{bottom:303.925950px;}
.y17a{bottom:305.151600px;}
.y1be{bottom:305.521350px;}
.y1e5{bottom:305.921700px;}
.y31{bottom:305.994300px;}
.y165{bottom:306.163050px;}
.y90{bottom:306.197700px;}
.y22b{bottom:306.521700px;}
.y153{bottom:307.316400px;}
.y20c{bottom:309.258600px;}
.y107{bottom:311.620800px;}
.yb4{bottom:315.573150px;}
.y1{bottom:316.769700px;}
.y12a{bottom:317.621850px;}
.y15{bottom:318.175950px;}
.y8f{bottom:319.697700px;}
.y19d{bottom:320.413950px;}
.y179{bottom:321.351600px;}
.y1e4{bottom:325.421700px;}
.y1bd{bottom:325.471200px;}
.y22a{bottom:326.021700px;}
.ye5{bottom:326.120400px;}
.y152{bottom:327.116400px;}
.y20b{bottom:329.357250px;}
.yb3{bottom:334.518000px;}
.y129{bottom:337.421850px;}
.y178{bottom:337.551600px;}
.y30{bottom:338.988300px;}
.y19c{bottom:340.213950px;}
.y14{bottom:340.929900px;}
.ye4{bottom:344.120400px;}
.y1e3{bottom:344.921700px;}
.y1bc{bottom:345.421050px;}
.y229{bottom:345.521700px;}
.y51{bottom:345.844950px;}
.y151{bottom:346.916400px;}
.y20a{bottom:349.455900px;}
.y8e{bottom:351.053700px;}
.yb2{bottom:351.339000px;}
.y63{bottom:351.885450px;}
.y2f{bottom:355.485300px;}
.y13{bottom:355.935900px;}
.y128{bottom:357.221850px;}
.y177{bottom:358.206600px;}
.ye3{bottom:362.120400px;}
.y50{bottom:363.840450px;}
.y1e2{bottom:364.421700px;}
.y8d{bottom:364.553700px;}
.y228{bottom:365.021700px;}
.y150{bottom:366.716400px;}
.yb1{bottom:368.160000px;}
.y19b{bottom:368.517900px;}
.y209{bottom:369.554700px;}
.y12{bottom:370.179900px;}
.y106{bottom:371.585550px;}
.y127{bottom:377.021850px;}
.y176{bottom:377.595750px;}
.y8c{bottom:378.053700px;}
.ye2{bottom:380.120400px;}
.y2e{bottom:380.487300px;}
.y1e1{bottom:383.921700px;}
.y227{bottom:384.521700px;}
.y1bb{bottom:385.170900px;}
.y14f{bottom:386.516400px;}
.yb0{bottom:387.105600px;}
.y19a{bottom:388.317900px;}
.y4f{bottom:388.842450px;}
.y208{bottom:389.653350px;}
.y8b{bottom:391.553700px;}
.y105{bottom:391.950450px;}
.y11{bottom:392.933850px;}
.y126{bottom:396.821850px;}
.y2d{bottom:396.984300px;}
.ye1{bottom:398.120400px;}
.y1e0{bottom:403.421700px;}
.yaf{bottom:403.926600px;}
.y226{bottom:404.021700px;}
.y8a{bottom:405.053700px;}
.y4e{bottom:405.339450px;}
.y62{bottom:405.885450px;}
.y14e{bottom:406.316400px;}
.y10{bottom:407.933850px;}
.y199{bottom:408.117900px;}
.y207{bottom:409.752000px;}
.y104{bottom:412.315200px;}
.y2c{bottom:413.481300px;}
.ye0{bottom:416.120400px;}
.y125{bottom:416.621850px;}
.y89{bottom:418.553700px;}
.y4d{bottom:421.836450px;}
.yf{bottom:422.183850px;}
.yae{bottom:422.872200px;}
.y1df{bottom:422.921700px;}
.y225{bottom:423.521700px;}
.y14d{bottom:426.116400px;}
.y198{bottom:427.917900px;}
.y206{bottom:429.850650px;}
.y88{bottom:432.053700px;}
.y103{bottom:432.679950px;}
.ydf{bottom:434.120400px;}
.y124{bottom:436.421850px;}
.y4c{bottom:438.333450px;}
.y2b{bottom:438.483300px;}
.yad{bottom:439.693200px;}
.y1de{bottom:442.421700px;}
.y224{bottom:443.021700px;}
.ye{bottom:444.937800px;}
.y87{bottom:445.553700px;}
.y14c{bottom:445.916400px;}
.y197{bottom:447.717900px;}
.y205{bottom:449.949450px;}
.yde{bottom:452.120400px;}
.y102{bottom:453.044700px;}
.y2a{bottom:454.980300px;}
.y123{bottom:456.221850px;}
.yac{bottom:458.638050px;}
.y86{bottom:459.053700px;}
.y4b{bottom:459.082950px;}
.yd{bottom:459.943800px;}
.y1dd{bottom:461.921700px;}
.y223{bottom:462.521700px;}
.y1ba{bottom:464.520750px;}
.y196{bottom:467.517900px;}
.y204{bottom:470.048100px;}
.y85{bottom:472.553700px;}
.y101{bottom:473.409600px;}
.y61{bottom:473.682450px;}
.yc{bottom:474.187800px;}
.yab{bottom:475.459050px;}
.y122{bottom:476.021850px;}
.y14b{bottom:479.869200px;}
.y1dc{bottom:481.421700px;}
.y222{bottom:482.021700px;}
.y1b9{bottom:484.470600px;}
.y84{bottom:486.053700px;}
.y195{bottom:487.317900px;}
.yb{bottom:488.437800px;}
.y29{bottom:490.107300px;}
.y203{bottom:490.146750px;}
.y4a{bottom:492.076950px;}
.yaa{bottom:492.280050px;}
.y100{bottom:493.774350px;}
.y121{bottom:495.821850px;}
.y14a{bottom:496.069050px;}
.y83{bottom:499.553700px;}
.y1db{bottom:500.921700px;}
.y221{bottom:501.521700px;}
.y1b8{bottom:504.420450px;}
.y28{bottom:506.604300px;}
.y194{bottom:507.117900px;}
.y49{bottom:508.573950px;}
.ydd{bottom:509.720250px;}
.y202{bottom:510.245400px;}
.ya{bottom:511.191750px;}
.ya9{bottom:511.225650px;}
.y149{bottom:512.269200px;}
.y82{bottom:513.053700px;}
.yff{bottom:514.139100px;}
.y120{bottom:515.621850px;}
.y60{bottom:518.380950px;}
.y1da{bottom:520.421700px;}
.y220{bottom:521.021700px;}
.y1b7{bottom:524.370150px;}
.yd0{bottom:525.694050px;}
.y9{bottom:526.191750px;}
.y193{bottom:526.917900px;}
.ya8{bottom:528.046650px;}
.y148{bottom:528.469200px;}
.y27{bottom:528.919800px;}
.ydc{bottom:529.520400px;}
.y201{bottom:530.344050px;}
.y48{bottom:533.575950px;}
.yfe{bottom:534.503850px;}
.y11f{bottom:535.421850px;}
.y1d9{bottom:539.921700px;}
.y21f{bottom:540.521700px;}
.y13f{bottom:540.866850px;}
.y1b6{bottom:544.320150px;}
.y81{bottom:544.409700px;}
.y147{bottom:544.669050px;}
.ya7{bottom:546.992100px;}
.y8{bottom:548.945700px;}
.ydb{bottom:549.320250px;}
.y47{bottom:550.072950px;}
.y200{bottom:550.442850px;}
.y26{bottom:551.235300px;}
.yfd{bottom:554.868750px;}
.y11e{bottom:555.221850px;}
.y80{bottom:557.909700px;}
.y1d8{bottom:559.421700px;}
.y21e{bottom:560.021700px;}
.ycf{bottom:562.946100px;}
.ya6{bottom:563.813100px;}
.y7{bottom:563.945700px;}
.y1b5{bottom:564.270000px;}
.y46{bottom:566.569950px;}
.yda{bottom:569.120250px;}
.y1ff{bottom:570.541500px;}
.y7f{bottom:571.409700px;}
.y25{bottom:573.550800px;}
.y11d{bottom:575.021700px;}
.yfc{bottom:575.233500px;}
.y5f{bottom:578.374950px;}
.y1d7{bottom:578.921700px;}
.y21d{bottom:579.521700px;}
.ya5{bottom:582.757950px;}
.y45{bottom:583.066950px;}
.y1b4{bottom:584.219850px;}
.y7e{bottom:584.909700px;}
.y6{bottom:586.699500px;}
.y24{bottom:590.047800px;}
.y1fe{bottom:590.640150px;}
.y11c{bottom:594.821850px;}
.yfb{bottom:595.598250px;}
.y7d{bottom:598.409700px;}
.y1d6{bottom:598.421700px;}
.y21c{bottom:599.021700px;}
.ya4{bottom:599.578950px;}
.yce{bottom:600.201000px;}
.y16d{bottom:600.266850px;}
.y5{bottom:601.705500px;}
.y44{bottom:603.816450px;}
.y1b3{bottom:604.169700px;}
.yd9{bottom:608.720250px;}
.y1fd{bottom:610.738800px;}
.y7c{bottom:611.909700px;}
.y23{bottom:612.363300px;}
.y11b{bottom:614.621850px;}
.y4{bottom:615.949500px;}
.yfa{bottom:615.963000px;}
.ya3{bottom:616.405650px;}
.ycd{bottom:616.698000px;}
.y1d5{bottom:617.921700px;}
.y21b{bottom:618.521700px;}
.y5e{bottom:620.373450px;}
.y1b2{bottom:624.119550px;}
.y7b{bottom:625.409700px;}
.yd8{bottom:628.520400px;}
.y1fc{bottom:630.837600px;}
.y11a{bottom:634.421850px;}
.ya2{bottom:635.346150px;}
.yf9{bottom:636.327750px;}
.y1d4{bottom:637.421700px;}
.y21a{bottom:638.021700px;}
.y43{bottom:638.322450px;}
.y7a{bottom:638.909700px;}
.y1b1{bottom:644.069400px;}
.yd7{bottom:648.320250px;}
.y1fb{bottom:650.936250px;}
.y79{bottom:652.409700px;}
.ycc{bottom:653.950050px;}
.y22{bottom:654.065250px;}
.y119{bottom:654.221850px;}
.yf8{bottom:656.692650px;}
.y1d3{bottom:656.921700px;}
.y219{bottom:657.521700px;}
.y1b0{bottom:664.019100px;}
.y78{bottom:665.909700px;}
.yd6{bottom:668.120250px;}
.y5d{bottom:668.379450px;}
.y1fa{bottom:671.034900px;}
.y118{bottom:674.021700px;}
.y42{bottom:674.326950px;}
.y1d2{bottom:676.421700px;}
.y218{bottom:677.021700px;}
.yf7{bottom:677.057400px;}
.y187{bottom:679.466850px;}
.y21{bottom:687.059250px;}
.y1f{bottom:689.353950px;}
.y1f9{bottom:691.133550px;}
.ycb{bottom:691.201950px;}
.y41{bottom:692.322450px;}
.y1af{bottom:692.473050px;}
.y117{bottom:693.821850px;}
.y1d1{bottom:696.221700px;}
.y217{bottom:696.521700px;}
.y77{bottom:697.265700px;}
.yf6{bottom:697.422150px;}
.y184{bottom:699.266850px;}
.y20{bottom:703.556250px;}
.yd5{bottom:707.720250px;}
.y40{bottom:710.322450px;}
.y76{bottom:710.765700px;}
.y1f8{bottom:711.232200px;}
.y1ae{bottom:712.422900px;}
.y116{bottom:713.621850px;}
.y1d0{bottom:716.021700px;}
.ya1{bottom:724.074750px;}
.y3{bottom:724.620600px;}
.y6a{bottom:726.049200px;}
.yca{bottom:728.453850px;}
.yd4{bottom:730.220250px;}
.y1f7{bottom:731.331000px;}
.y1ad{bottom:732.372600px;}
.y139{bottom:733.421850px;}
.y1cf{bottom:735.521700px;}
.y5c{bottom:735.879450px;}
.yf5{bottom:737.586900px;}
.y75{bottom:742.121700px;}
.yc9{bottom:747.085800px;}
.y69{bottom:748.549200px;}
.y1f6{bottom:751.429650px;}
.y1ac{bottom:752.322450px;}
.y115{bottom:753.221700px;}
.y1ce{bottom:755.021700px;}
.y74{bottom:755.621700px;}
.yc8{bottom:763.582800px;}
.y73{bottom:769.121700px;}
.y1f5{bottom:771.528300px;}
.y1ab{bottom:772.272450px;}
.y138{bottom:773.021700px;}
.y1cd{bottom:774.521700px;}
.yc7{bottom:780.079800px;}
.y1f4{bottom:791.626950px;}
.y1aa{bottom:792.222300px;}
.y114{bottom:792.821700px;}
.y1cc{bottom:794.021700px;}
.yf4{bottom:797.551800px;}
.yc6{bottom:798.711750px;}
.y72{bottom:800.477700px;}
.y5b{bottom:809.359950px;}
.y1f3{bottom:811.725750px;}
.y1a9{bottom:812.172150px;}
.y137{bottom:812.621700px;}
.y1cb{bottom:813.521700px;}
.y71{bottom:813.977700px;}
.yc5{bottom:815.208750px;}
.yf3{bottom:816.116550px;}
.y15e{bottom:818.066700px;}
.y3f{bottom:818.331450px;}
.y68{bottom:823.312950px;}
.y70{bottom:827.477700px;}
.yc4{bottom:831.705750px;}
.y1f2{bottom:831.824400px;}
.y1a8{bottom:832.122000px;}
.y136{bottom:832.421700px;}
.y1ca{bottom:833.021700px;}
.y3e{bottom:836.326950px;}
.y6f{bottom:840.977700px;}
.yc3{bottom:850.334850px;}
.y1f1{bottom:851.923050px;}
.y1a7{bottom:852.071850px;}
.y113{bottom:852.221700px;}
.y1c9{bottom:852.521700px;}
.y3d{bottom:854.322450px;}
.y6e{bottom:854.477700px;}
.yf2{bottom:854.481300px;}
.y18f{bottom:857.666700px;}
.yc2{bottom:866.831850px;}
.y6d{bottom:867.977700px;}
.y112{bottom:872.021700px;}
.yf1{bottom:873.046200px;}
.y16c{bottom:877.466700px;}
.y3c{bottom:890.326950px;}
.y39{bottom:892.752000px;}
.y3b{bottom:908.322450px;}
.ya0{bottom:916.873050px;}
.yc1{bottom:916.875300px;}
.yd3{bottom:923.020800px;}
.h11{height:25.910156px;}
.h24{height:32.615400px;}
.h22{height:32.616000px;}
.h23{height:34.069200px;}
.hc{height:35.520000px;}
.h1c{height:43.524000px;}
.h12{height:44.496000px;}
.h5{height:44.832000px;}
.h1b{height:45.264000px;}
.h15{height:45.273000px;}
.h13{height:45.648000px;}
.he{height:47.634000px;}
.h9{height:50.436000px;}
.h19{height:50.438400px;}
.h18{height:50.439000px;}
.h1a{height:50.441400px;}
.h17{height:50.442000px;}
.h8{height:51.354000px;}
.hd{height:52.500000px;}
.h20{height:53.400000px;}
.h6{height:53.751000px;}
.h14{height:55.380000px;}
.h3{height:56.040000px;}
.h25{height:57.816000px;}
.h1f{height:58.740000px;}
.h7{height:62.238000px;}
.h2{height:63.000000px;}
.h21{height:65.071500px;}
.h16{height:69.225000px;}
.h10{height:70.050000px;}
.ha{height:83.430000px;}
.hb{height:107.520000px;}
.hf{height:125.532000px;}
.h4{height:168.000000px;}
.h0{height:971.929350px;}
.h1{height:972.000000px;}
.h1e{height:980.250000px;}
.h1d{height:980.528850px;}
.w0{width:650.905500px;}
.w1{width:651.000000px;}
.w4{width:653.032350px;}
.w5{width:653.250000px;}
.w2{width:655.156350px;}
.w3{width:655.500000px;}
.w6{width:662.918850px;}
.w7{width:663.000000px;}
.x6{left:-669.082350px;}
.xc{left:-662.711550px;}
.xd{left:-605.399550px;}
.x7{left:-539.416050px;}
.x8{left:-530.560050px;}
.x9{left:-511.889550px;}
.xa{left:-410.950050px;}
.xb{left:-390.713550px;}
.xe{left:-266.896500px;}
.x1{left:-26.267250px;}
.x0{left:0.000000px;}
.x16{left:11.988150px;}
.x28{left:14.442150px;}
.xf{left:51.859050px;}
.x2{left:55.433700px;}
.x13{left:82.027500px;}
.x1c{left:84.481500px;}
.x14{left:97.815000px;}
.x17{left:99.031500px;}
.x2a{left:101.489400px;}
.x3e{left:105.741450px;}
.x1e{left:113.994450px;}
.x18{left:116.035500px;}
.x20{left:120.635250px;}
.x1d{left:126.903600px;}
.x5{left:129.313200px;}
.x4{left:130.749900px;}
.x3{left:133.532700px;}
.x36{left:136.755750px;}
.x37{left:147.533250px;}
.x15{left:158.396250px;}
.x24{left:164.953350px;}
.x12{left:173.793450px;}
.x26{left:182.196150px;}
.x27{left:203.355300px;}
.x22{left:205.723650px;}
.x38{left:208.611150px;}
.x39{left:219.339750px;}
.x29{left:235.844850px;}
.x23{left:237.065400px;}
.x1f{left:241.645050px;}
.x21{left:254.902050px;}
.x25{left:262.021650px;}
.x1a{left:281.207100px;}
.x3f{left:298.487100px;}
.x3a{left:329.691600px;}
.x32{left:334.550250px;}
.x3b{left:340.386450px;}
.x33{left:345.406800px;}
.x2e{left:375.016800px;}
.x2f{left:386.168850px;}
.x2d{left:425.273100px;}
.x2b{left:436.040850px;}
.x2c{left:446.710800px;}
.x3c{left:471.301800px;}
.x3d{left:482.147400px;}
.x30{left:505.393800px;}
.x31{left:516.624000px;}
.x19{left:548.503950px;}
.x1b{left:550.957950px;}
.x34{left:558.935550px;}
.x35{left:569.389650px;}
.x10{left:885.444750px;}
.x11{left:1028.595600px;}
@media print{
.v5{vertical-align:-19.360000pt;}
.v6{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.829333pt;}
.v2{vertical-align:7.466667pt;}
.v8{vertical-align:15.840000pt;}
.v4{vertical-align:19.360000pt;}
.v7{vertical-align:20.680000pt;}
.v1{vertical-align:29.328000pt;}
.ls94{letter-spacing:-7.978667pt;}
.ls8a{letter-spacing:-7.568000pt;}
.ls7a{letter-spacing:-6.570667pt;}
.ls92{letter-spacing:-6.512000pt;}
.ls8c{letter-spacing:-6.394667pt;}
.ls76{letter-spacing:-6.101333pt;}
.ls96{letter-spacing:-5.579200pt;}
.ls84{letter-spacing:-5.573333pt;}
.ls87{letter-spacing:-5.397333pt;}
.ls39{letter-spacing:-4.928000pt;}
.ls95{letter-spacing:-4.875200pt;}
.ls7b{letter-spacing:-4.851733pt;}
.ls85{letter-spacing:-4.775467pt;}
.ls8e{letter-spacing:-4.763733pt;}
.ls78{letter-spacing:-4.752000pt;}
.ls75{letter-spacing:-4.693333pt;}
.ls21{letter-spacing:-4.586667pt;}
.ls8b{letter-spacing:-4.458667pt;}
.ls97{letter-spacing:-4.341333pt;}
.ls86{letter-spacing:-4.282667pt;}
.ls22{letter-spacing:-4.053333pt;}
.ls5b{letter-spacing:-4.032000pt;}
.ls4f{letter-spacing:-3.349867pt;}
.ls93{letter-spacing:-2.780800pt;}
.ls88{letter-spacing:-2.464000pt;}
.ls50{letter-spacing:-2.346667pt;}
.ls8f{letter-spacing:-2.288000pt;}
.ls2b{letter-spacing:-2.261333pt;}
.ls79{letter-spacing:-2.246933pt;}
.ls91{letter-spacing:-1.642667pt;}
.ls8d{letter-spacing:-1.507733pt;}
.ls61{letter-spacing:-1.290667pt;}
.ls69{letter-spacing:-1.185067pt;}
.ls63{letter-spacing:-1.173333pt;}
.ls6b{letter-spacing:-1.114667pt;}
.ls7c{letter-spacing:-0.880000pt;}
.ls65{letter-spacing:-0.821333pt;}
.ls67{letter-spacing:-0.792000pt;}
.ls68{letter-spacing:-0.762667pt;}
.ls62{letter-spacing:-0.748587pt;}
.ls1b{letter-spacing:-0.682667pt;}
.ls64{letter-spacing:-0.680533pt;}
.ls5c{letter-spacing:-0.672000pt;}
.ls6a{letter-spacing:-0.645333pt;}
.ls55{letter-spacing:-0.576000pt;}
.ls66{letter-spacing:-0.476373pt;}
.ls48{letter-spacing:-0.469333pt;}
.ls6c{letter-spacing:-0.442347pt;}
.ls1c{letter-spacing:-0.426667pt;}
.ls47{letter-spacing:-0.410667pt;}
.ls10{letter-spacing:-0.354667pt;}
.ls30{letter-spacing:-0.352000pt;}
.ls1d{letter-spacing:-0.336000pt;}
.ls31{letter-spacing:-0.322667pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.293333pt;}
.ls49{letter-spacing:-0.272213pt;}
.ls38{letter-spacing:-0.234667pt;}
.ls4a{letter-spacing:-0.205333pt;}
.ls5f{letter-spacing:-0.204160pt;}
.ls59{letter-spacing:-0.192000pt;}
.ls5a{letter-spacing:-0.191520pt;}
.ls43{letter-spacing:-0.176000pt;}
.ls32{letter-spacing:-0.146667pt;}
.ls51{letter-spacing:-0.136107pt;}
.ls3c{letter-spacing:-0.117333pt;}
.ls53{letter-spacing:-0.088000pt;}
.ls3d{letter-spacing:-0.068053pt;}
.ls34{letter-spacing:-0.058667pt;}
.ls60{letter-spacing:-0.051040pt;}
.ls54{letter-spacing:-0.034027pt;}
.ls6d{letter-spacing:-0.029333pt;}
.lse{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000533pt;}
.ls2c{letter-spacing:0.004267pt;}
.ls3b{letter-spacing:0.023467pt;}
.ls3f{letter-spacing:0.029333pt;}
.ls7e{letter-spacing:0.034588pt;}
.ls45{letter-spacing:0.035200pt;}
.ls16{letter-spacing:0.042667pt;}
.ls71{letter-spacing:0.047637pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls26{letter-spacing:0.058667pt;}
.ls5e{letter-spacing:0.068053pt;}
.ls36{letter-spacing:0.070400pt;}
.ls6e{letter-spacing:0.082133pt;}
.ls14{letter-spacing:0.085333pt;}
.ls2e{letter-spacing:0.088000pt;}
.ls73{letter-spacing:0.102080pt;}
.ls17{letter-spacing:0.102400pt;}
.ls25{letter-spacing:0.117333pt;}
.ls15{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.128135pt;}
.ls72{letter-spacing:0.146667pt;}
.ls19{letter-spacing:0.153600pt;}
.ls4c{letter-spacing:0.168000pt;}
.ls42{letter-spacing:0.170133pt;}
.ls1a{letter-spacing:0.170667pt;}
.ls27{letter-spacing:0.176000pt;}
.ls58{letter-spacing:0.204160pt;}
.ls40{letter-spacing:0.205333pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4b{letter-spacing:0.221173pt;}
.ls2a{letter-spacing:0.234667pt;}
.ls46{letter-spacing:0.238187pt;}
.ls81{letter-spacing:0.264000pt;}
.ls4e{letter-spacing:0.272213pt;}
.ls28{letter-spacing:0.293333pt;}
.ls35{letter-spacing:0.312520pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.322667pt;}
.ls2d{letter-spacing:0.352000pt;}
.ls24{letter-spacing:0.373333pt;}
.ls4d{letter-spacing:0.383467pt;}
.ls44{letter-spacing:0.410667pt;}
.ls5{letter-spacing:0.426667pt;}
.ls3e{letter-spacing:0.469333pt;}
.ls29{letter-spacing:0.528000pt;}
.ls77{letter-spacing:0.557333pt;}
.ls56{letter-spacing:0.586667pt;}
.ls6f{letter-spacing:0.616000pt;}
.ls41{letter-spacing:0.645333pt;}
.ls57{letter-spacing:0.674667pt;}
.lsa{letter-spacing:0.682667pt;}
.ls70{letter-spacing:0.792000pt;}
.ls82{letter-spacing:0.796538pt;}
.ls83{letter-spacing:0.797070pt;}
.ls7f{letter-spacing:0.833786pt;}
.ls3a{letter-spacing:0.850667pt;}
.ls20{letter-spacing:0.853333pt;}
.ls89{letter-spacing:0.867222pt;}
.ls7d{letter-spacing:0.904248pt;}
.ls90{letter-spacing:0.920809pt;}
.ls80{letter-spacing:1.029251pt;}
.ls3{letter-spacing:1.066667pt;}
.ls74{letter-spacing:1.147211pt;}
.ls5d{letter-spacing:1.408000pt;}
.ls52{letter-spacing:2.103467pt;}
.ls7{letter-spacing:2.346667pt;}
.ls2{letter-spacing:2.880000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls0{letter-spacing:4.106667pt;}
.ls11{letter-spacing:4.369067pt;}
.lsd{letter-spacing:4.800000pt;}
.lsc{letter-spacing:6.122667pt;}
.ls13{letter-spacing:6.666667pt;}
.lsb{letter-spacing:6.826667pt;}
.ls1{letter-spacing:7.466667pt;}
.ls4{letter-spacing:10.666667pt;}
.ls12{letter-spacing:11.733333pt;}
.ls9{letter-spacing:285.984000pt;}
.ls8{letter-spacing:304.848000pt;}
.ws3b{word-spacing:-16.666667pt;}
.wse{word-spacing:-16.333333pt;}
.ws42{word-spacing:-15.077333pt;}
.ws21{word-spacing:-15.018667pt;}
.ws4e{word-spacing:-14.960000pt;}
.ws3c{word-spacing:-14.842667pt;}
.ws38{word-spacing:-14.784000pt;}
.ws19{word-spacing:-14.666667pt;}
.ws46{word-spacing:-14.608000pt;}
.ws52{word-spacing:-14.432000pt;}
.ws26{word-spacing:-14.373333pt;}
.ws5c{word-spacing:-14.256000pt;}
.ws1f{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.952000pt;}
.ws22{word-spacing:-11.328000pt;}
.ws2a{word-spacing:-11.316800pt;}
.ws11{word-spacing:-11.288000pt;}
.ws8{word-spacing:-11.136000pt;}
.ws7{word-spacing:-11.050667pt;}
.ws13{word-spacing:-10.982400pt;}
.ws3{word-spacing:-10.880000pt;}
.ws10{word-spacing:-10.698667pt;}
.ws1b{word-spacing:-10.666667pt;}
.ws4f{word-spacing:-10.384000pt;}
.ws5e{word-spacing:-10.325333pt;}
.ws1d{word-spacing:-10.244267pt;}
.ws1c{word-spacing:-10.240000pt;}
.ws55{word-spacing:-10.208000pt;}
.ws3e{word-spacing:-9.973333pt;}
.ws43{word-spacing:-9.914667pt;}
.ws12{word-spacing:-9.898667pt;}
.ws1a{word-spacing:-9.813333pt;}
.ws50{word-spacing:-9.269333pt;}
.ws4d{word-spacing:-9.093333pt;}
.ws25{word-spacing:-8.744853pt;}
.ws28{word-spacing:-8.727840pt;}
.ws2f{word-spacing:-8.710827pt;}
.ws3a{word-spacing:-8.608747pt;}
.ws39{word-spacing:-8.574720pt;}
.ws41{word-spacing:-8.565333pt;}
.ws5{word-spacing:-8.512000pt;}
.ws3f{word-spacing:-8.506667pt;}
.ws2d{word-spacing:-8.472640pt;}
.ws32{word-spacing:-8.455627pt;}
.ws2e{word-spacing:-8.438613pt;}
.ws2c{word-spacing:-8.370560pt;}
.ws15{word-spacing:-8.366400pt;}
.ws37{word-spacing:-8.302507pt;}
.ws57{word-spacing:-8.272000pt;}
.ws27{word-spacing:-8.234453pt;}
.ws59{word-spacing:-8.154667pt;}
.ws45{word-spacing:-8.096000pt;}
.ws36{word-spacing:-8.064320pt;}
.ws16{word-spacing:-8.030400pt;}
.ws35{word-spacing:-8.030293pt;}
.ws34{word-spacing:-7.826133pt;}
.ws33{word-spacing:-7.758080pt;}
.ws1{word-spacing:-7.541333pt;}
.ws53{word-spacing:-7.098667pt;}
.ws2{word-spacing:-7.040000pt;}
.wsc{word-spacing:-6.963200pt;}
.ws5b{word-spacing:-6.688000pt;}
.ws0{word-spacing:-6.197333pt;}
.ws14{word-spacing:-5.843200pt;}
.wsb{word-spacing:-4.505600pt;}
.ws40{word-spacing:-0.469333pt;}
.ws49{word-spacing:-0.410667pt;}
.ws4c{word-spacing:-0.352000pt;}
.ws47{word-spacing:-0.293333pt;}
.ws3d{word-spacing:-0.234667pt;}
.ws29{word-spacing:-0.201600pt;}
.ws4a{word-spacing:-0.176000pt;}
.ws24{word-spacing:-0.117333pt;}
.wsf{word-spacing:-0.066667pt;}
.ws23{word-spacing:-0.058667pt;}
.ws9{word-spacing:-0.048000pt;}
.ws6{word-spacing:-0.042667pt;}
.ws18{word-spacing:-0.033600pt;}
.wsd{word-spacing:0.000000pt;}
.ws54{word-spacing:0.058667pt;}
.ws48{word-spacing:0.117333pt;}
.ws30{word-spacing:0.157920pt;}
.ws51{word-spacing:0.176000pt;}
.ws20{word-spacing:0.293333pt;}
.ws2b{word-spacing:0.302400pt;}
.ws56{word-spacing:0.410667pt;}
.ws31{word-spacing:0.638400pt;}
.ws4b{word-spacing:0.821333pt;}
.ws44{word-spacing:2.188267pt;}
.ws5a{word-spacing:2.722133pt;}
.ws58{word-spacing:4.705067pt;}
.ws5d{word-spacing:4.816533pt;}
.ws1e{word-spacing:1058.564800pt;}
.ws17{word-spacing:1071.844800pt;}
._f{margin-left:-510.464000pt;}
._11{margin-left:-195.712000pt;}
._1d{margin-left:-29.011200pt;}
._1e{margin-left:-16.843656pt;}
._22{margin-left:-14.999180pt;}
._20{margin-left:-13.832964pt;}
._e{margin-left:-11.952000pt;}
._13{margin-left:-10.828267pt;}
._15{margin-left:-9.557333pt;}
._6{margin-left:-8.245333pt;}
._19{margin-left:-7.349333pt;}
._25{margin-left:-6.453333pt;}
._16{margin-left:-5.529600pt;}
._7{margin-left:-4.480000pt;}
._1{margin-left:-3.434667pt;}
._8{margin-left:-2.478933pt;}
._2{margin-left:-1.568000pt;}
._0{width:1.344000pt;}
._d{width:2.457600pt;}
._5{width:3.840000pt;}
._1a{width:5.120000pt;}
._14{width:6.734400pt;}
._1b{width:8.933333pt;}
._1f{width:9.937920pt;}
._1c{width:11.280000pt;}
._4{width:19.196800pt;}
._3{width:20.792533pt;}
._24{width:38.543799pt;}
._23{width:40.656226pt;}
._21{width:45.349333pt;}
._9{width:104.864000pt;}
._17{width:114.724800pt;}
._18{width:115.771200pt;}
._c{width:157.248000pt;}
._b{width:254.960000pt;}
._a{width:362.256000pt;}
._12{width:949.466133pt;}
._10{width:1555.509867pt;}
.fse{font-size:23.466667pt;}
.fs12{font-size:27.840000pt;}
.fsd{font-size:32.000000pt;}
.fsf{font-size:33.600000pt;}
.fs11{font-size:34.026667pt;}
.fs7{font-size:35.466667pt;}
.fs13{font-size:36.346667pt;}
.fs5{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs10{font-size:62.666667pt;}
.fsa{font-size:66.666667pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fsc{font-size:117.333333pt;}
.fs9{font-size:136.533333pt;}
.fs4{font-size:213.333333pt;}
.y6c{bottom:-33.574800pt;}
.yf0{bottom:-28.112133pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:32.355600pt;}
.y9f{bottom:33.312933pt;}
.yd1{bottom:37.818267pt;}
.yd2{bottom:38.775600pt;}
.y3a{bottom:45.039067pt;}
.y2{bottom:45.322800pt;}
.y5a{bottom:72.724533pt;}
.yc0{bottom:72.912800pt;}
.y111{bottom:78.376000pt;}
.y135{bottom:78.376267pt;}
.yef{bottom:78.848533pt;}
.y1f0{bottom:78.863733pt;}
.y236{bottom:80.463733pt;}
.y15d{bottom:82.336267pt;}
.y9d{bottom:84.417733pt;}
.y59{bottom:87.389867pt;}
.ybf{bottom:87.864800pt;}
.y238{bottom:88.730533pt;}
.y134{bottom:92.776267pt;}
.yee{bottom:94.848533pt;}
.y164{bottom:95.611067pt;}
.y1c8{bottom:95.842533pt;}
.y216{bottom:96.241600pt;}
.y9c{bottom:96.417733pt;}
.y1ef{bottom:96.463733pt;}
.y110{bottom:96.478000pt;}
.y146{bottom:96.736267pt;}
.y235{bottom:98.063733pt;}
.y15c{bottom:99.571067pt;}
.y58{bottom:102.055200pt;}
.ybe{bottom:104.705867pt;}
.y16b{bottom:107.176267pt;}
.y9b{bottom:108.417733pt;}
.y145{bottom:110.011067pt;}
.yed{bottom:110.848533pt;}
.y133{bottom:111.136267pt;}
.y1c7{bottom:113.309067pt;}
.y16f{bottom:113.971067pt;}
.y1ee{bottom:114.063733pt;}
.y215{bottom:114.107067pt;}
.y10f{bottom:114.580000pt;}
.y234{bottom:115.663733pt;}
.y57{bottom:116.720533pt;}
.y15b{bottom:116.805867pt;}
.y9a{bottom:120.419733pt;}
.ybd{bottom:121.546400pt;}
.y183{bottom:121.576267pt;}
.y237{bottom:123.930533pt;}
.y144{bottom:124.411067pt;}
.y16a{bottom:125.536267pt;}
.y1a6{bottom:126.412400pt;}
.yec{bottom:126.848533pt;}
.y18e{bottom:127.245867pt;}
.y132{bottom:128.371067pt;}
.y6b{bottom:129.943733pt;}
.y15a{bottom:130.080667pt;}
.y1c6{bottom:130.775600pt;}
.y16e{bottom:131.205867pt;}
.y1ed{bottom:131.663733pt;}
.y214{bottom:131.972533pt;}
.y10e{bottom:132.682000pt;}
.y233{bottom:133.263733pt;}
.y186{bottom:134.040533pt;}
.y18a{bottom:134.040667pt;}
.y182{bottom:135.976267pt;}
.ybc{bottom:136.498400pt;}
.y143{bottom:138.811067pt;}
.y18c{bottom:141.530533pt;}
.y131{bottom:141.645867pt;}
.y163{bottom:142.771067pt;}
.yeb{bottom:142.848533pt;}
.y1a5{bottom:144.012400pt;}
.y1e{bottom:144.145867pt;}
.y67{bottom:145.051067pt;}
.y13e{bottom:145.605867pt;}
.y1c5{bottom:148.242133pt;}
.y99{bottom:148.291733pt;}
.y159{bottom:148.440667pt;}
.y1ec{bottom:149.263733pt;}
.y213{bottom:149.838000pt;}
.y10d{bottom:150.784133pt;}
.y232{bottom:150.863733pt;}
.y185{bottom:151.275333pt;}
.y142{bottom:153.211067pt;}
.ybb{bottom:153.338933pt;}
.y38{bottom:154.226933pt;}
.y181{bottom:154.336267pt;}
.y130{bottom:156.045867pt;}
.y173{bottom:157.171067pt;}
.yea{bottom:158.848533pt;}
.y161{bottom:159.130533pt;}
.y98{bottom:160.291733pt;}
.y1a4{bottom:161.612400pt;}
.y13d{bottom:162.840667pt;}
.y1d{bottom:164.371600pt;}
.y192{bottom:165.675333pt;}
.y1c4{bottom:165.708667pt;}
.y1eb{bottom:166.863733pt;}
.y175{bottom:167.611067pt;}
.y212{bottom:167.703600pt;}
.yba{bottom:168.290933pt;}
.y231{bottom:168.463733pt;}
.y189{bottom:168.510133pt;}
.y10c{bottom:168.886133pt;}
.y37{bottom:168.890933pt;}
.y12f{bottom:170.445867pt;}
.y141{bottom:171.571067pt;}
.y97{bottom:172.291733pt;}
.y162{bottom:174.405867pt;}
.y160{bottom:176.730533pt;}
.y1c{bottom:177.704933pt;}
.y1a3{bottom:179.212400pt;}
.y56{bottom:179.425733pt;}
.y180{bottom:182.011067pt;}
.y191{bottom:182.910133pt;}
.y1c3{bottom:183.175200pt;}
.y96{bottom:184.291733pt;}
.y1ea{bottom:184.463733pt;}
.y66{bottom:184.783067pt;}
.y12e{bottom:184.845867pt;}
.yb9{bottom:185.132000pt;}
.y158{bottom:185.170133pt;}
.y211{bottom:185.569067pt;}
.y188{bottom:185.744933pt;}
.y230{bottom:185.797067pt;}
.y174{bottom:185.971067pt;}
.y10b{bottom:186.988133pt;}
.y140{bottom:188.805867pt;}
.ye9{bottom:189.966667pt;}
.y1b{bottom:190.371600pt;}
.y36{bottom:191.114933pt;}
.y172{bottom:191.640667pt;}
.y15f{bottom:194.330533pt;}
.y55{bottom:195.421733pt;}
.y95{bottom:196.291733pt;}
.y17f{bottom:196.411067pt;}
.y1a2{bottom:196.812400pt;}
.y190{bottom:200.144933pt;}
.y1c2{bottom:200.641733pt;}
.y1e9{bottom:202.063733pt;}
.y157{bottom:202.770133pt;}
.y22f{bottom:203.130400pt;}
.y12d{bottom:203.205867pt;}
.y210{bottom:203.434533pt;}
.y10a{bottom:205.090267pt;}
.y35{bottom:205.778933pt;}
.y169{bottom:206.040533pt;}
.ye8{bottom:207.566667pt;}
.y94{bottom:208.303733pt;}
.y171{bottom:208.875333pt;}
.y1a{bottom:210.597333pt;}
.y17e{bottom:210.811067pt;}
.y13c{bottom:211.930533pt;}
.y1a1{bottom:214.412400pt;}
.y65{bottom:216.787067pt;}
.y1c1{bottom:218.374933pt;}
.yb8{bottom:218.813600pt;}
.y168{bottom:219.315333pt;}
.y1e8{bottom:219.663733pt;}
.y156{bottom:220.370133pt;}
.y12c{bottom:220.440667pt;}
.y34{bottom:220.442933pt;}
.y22e{bottom:220.463733pt;}
.y20f{bottom:221.300000pt;}
.y109{bottom:223.192267pt;}
.y19{bottom:223.936000pt;}
.y170{bottom:226.110133pt;}
.y54{bottom:227.425733pt;}
.y17d{bottom:229.171067pt;}
.y13b{bottom:229.530533pt;}
.y1a0{bottom:232.012400pt;}
.yb7{bottom:233.765600pt;}
.y18b{bottom:234.370533pt;}
.y33{bottom:235.106933pt;}
.y1c0{bottom:236.108133pt;}
.y93{bottom:236.175733pt;}
.y18{bottom:236.597333pt;}
.y1e7{bottom:237.263733pt;}
.y167{bottom:237.675333pt;}
.y22d{bottom:237.797067pt;}
.y155{bottom:237.970133pt;}
.y20e{bottom:239.165600pt;}
.ye7{bottom:240.284667pt;}
.y108{bottom:241.294267pt;}
.y17c{bottom:242.445867pt;}
.y53{bottom:243.421733pt;}
.y13a{bottom:247.130533pt;}
.y92{bottom:248.175733pt;}
.y19f{bottom:249.612400pt;}
.yb6{bottom:250.605467pt;}
.y18d{bottom:251.970533pt;}
.y1bf{bottom:253.841333pt;}
.y1e6{bottom:254.597067pt;}
.y166{bottom:254.910133pt;}
.y22c{bottom:255.130400pt;}
.y154{bottom:255.570133pt;}
.ye6{bottom:256.284667pt;}
.y17{bottom:256.823067pt;}
.y17b{bottom:256.845867pt;}
.y20d{bottom:257.031067pt;}
.y32{bottom:257.330933pt;}
.y52{bottom:259.417733pt;}
.y91{bottom:260.175733pt;}
.y12b{bottom:264.730533pt;}
.y64{bottom:264.787067pt;}
.yb5{bottom:265.557467pt;}
.y19e{bottom:267.212400pt;}
.y16{bottom:270.156400pt;}
.y17a{bottom:271.245867pt;}
.y1be{bottom:271.574533pt;}
.y1e5{bottom:271.930400pt;}
.y31{bottom:271.994933pt;}
.y165{bottom:272.144933pt;}
.y90{bottom:272.175733pt;}
.y22b{bottom:272.463733pt;}
.y153{bottom:273.170133pt;}
.y20c{bottom:274.896533pt;}
.y107{bottom:276.996267pt;}
.yb4{bottom:280.509467pt;}
.y1{bottom:281.573067pt;}
.y12a{bottom:282.330533pt;}
.y15{bottom:282.823067pt;}
.y8f{bottom:284.175733pt;}
.y19d{bottom:284.812400pt;}
.y179{bottom:285.645867pt;}
.y1e4{bottom:289.263733pt;}
.y1bd{bottom:289.307733pt;}
.y22a{bottom:289.797067pt;}
.ye5{bottom:289.884800pt;}
.y152{bottom:290.770133pt;}
.y20b{bottom:292.762000pt;}
.yb3{bottom:297.349333pt;}
.y129{bottom:299.930533pt;}
.y178{bottom:300.045867pt;}
.y30{bottom:301.322933pt;}
.y19c{bottom:302.412400pt;}
.y14{bottom:303.048800pt;}
.ye4{bottom:305.884800pt;}
.y1e3{bottom:306.597067pt;}
.y1bc{bottom:307.040933pt;}
.y229{bottom:307.130400pt;}
.y51{bottom:307.417733pt;}
.y151{bottom:308.370133pt;}
.y20a{bottom:310.627467pt;}
.y8e{bottom:312.047733pt;}
.yb2{bottom:312.301333pt;}
.y63{bottom:312.787067pt;}
.y2f{bottom:315.986933pt;}
.y13{bottom:316.387467pt;}
.y128{bottom:317.530533pt;}
.y177{bottom:318.405867pt;}
.ye3{bottom:321.884800pt;}
.y50{bottom:323.413733pt;}
.y1e2{bottom:323.930400pt;}
.y8d{bottom:324.047733pt;}
.y228{bottom:324.463733pt;}
.y150{bottom:325.970133pt;}
.yb1{bottom:327.253333pt;}
.y19b{bottom:327.571467pt;}
.y209{bottom:328.493067pt;}
.y12{bottom:329.048800pt;}
.y106{bottom:330.298267pt;}
.y127{bottom:335.130533pt;}
.y176{bottom:335.640667pt;}
.y8c{bottom:336.047733pt;}
.ye2{bottom:337.884800pt;}
.y2e{bottom:338.210933pt;}
.y1e1{bottom:341.263733pt;}
.y227{bottom:341.797067pt;}
.y1bb{bottom:342.374133pt;}
.y14f{bottom:343.570133pt;}
.yb0{bottom:344.093867pt;}
.y19a{bottom:345.171467pt;}
.y4f{bottom:345.637733pt;}
.y208{bottom:346.358533pt;}
.y8b{bottom:348.047733pt;}
.y105{bottom:348.400400pt;}
.y11{bottom:349.274533pt;}
.y126{bottom:352.730533pt;}
.y2d{bottom:352.874933pt;}
.ye1{bottom:353.884800pt;}
.y1e0{bottom:358.597067pt;}
.yaf{bottom:359.045867pt;}
.y226{bottom:359.130400pt;}
.y8a{bottom:360.047733pt;}
.y4e{bottom:360.301733pt;}
.y62{bottom:360.787067pt;}
.y14e{bottom:361.170133pt;}
.y10{bottom:362.607867pt;}
.y199{bottom:362.771467pt;}
.y207{bottom:364.224000pt;}
.y104{bottom:366.502400pt;}
.y2c{bottom:367.538933pt;}
.ye0{bottom:369.884800pt;}
.y125{bottom:370.330533pt;}
.y89{bottom:372.047733pt;}
.y4d{bottom:374.965733pt;}
.yf{bottom:375.274533pt;}
.yae{bottom:375.886400pt;}
.y1df{bottom:375.930400pt;}
.y225{bottom:376.463733pt;}
.y14d{bottom:378.770133pt;}
.y198{bottom:380.371467pt;}
.y206{bottom:382.089467pt;}
.y88{bottom:384.047733pt;}
.y103{bottom:384.604400pt;}
.ydf{bottom:385.884800pt;}
.y124{bottom:387.930533pt;}
.y4c{bottom:389.629733pt;}
.y2b{bottom:389.762933pt;}
.yad{bottom:390.838400pt;}
.y1de{bottom:393.263733pt;}
.y224{bottom:393.797067pt;}
.ye{bottom:395.500267pt;}
.y87{bottom:396.047733pt;}
.y14c{bottom:396.370133pt;}
.y197{bottom:397.971467pt;}
.y205{bottom:399.955067pt;}
.yde{bottom:401.884800pt;}
.y102{bottom:402.706400pt;}
.y2a{bottom:404.426933pt;}
.y123{bottom:405.530533pt;}
.yac{bottom:407.678267pt;}
.y86{bottom:408.047733pt;}
.y4b{bottom:408.073733pt;}
.yd{bottom:408.838933pt;}
.y1dd{bottom:410.597067pt;}
.y223{bottom:411.130400pt;}
.y1ba{bottom:412.907333pt;}
.y196{bottom:415.571467pt;}
.y204{bottom:417.820533pt;}
.y85{bottom:420.047733pt;}
.y101{bottom:420.808533pt;}
.y61{bottom:421.051067pt;}
.yc{bottom:421.500267pt;}
.yab{bottom:422.630267pt;}
.y122{bottom:423.130533pt;}
.y14b{bottom:426.550400pt;}
.y1dc{bottom:427.930400pt;}
.y222{bottom:428.463733pt;}
.y1b9{bottom:430.640533pt;}
.y84{bottom:432.047733pt;}
.y195{bottom:433.171467pt;}
.yb{bottom:434.166933pt;}
.y29{bottom:435.650933pt;}
.y203{bottom:435.686000pt;}
.y4a{bottom:437.401733pt;}
.yaa{bottom:437.582267pt;}
.y100{bottom:438.910533pt;}
.y121{bottom:440.730533pt;}
.y14a{bottom:440.950267pt;}
.y83{bottom:444.047733pt;}
.y1db{bottom:445.263733pt;}
.y221{bottom:445.797067pt;}
.y1b8{bottom:448.373733pt;}
.y28{bottom:450.314933pt;}
.y194{bottom:450.771467pt;}
.y49{bottom:452.065733pt;}
.ydd{bottom:453.084667pt;}
.y202{bottom:453.551467pt;}
.ya{bottom:454.392667pt;}
.ya9{bottom:454.422800pt;}
.y149{bottom:455.350400pt;}
.y82{bottom:456.047733pt;}
.yff{bottom:457.012533pt;}
.y120{bottom:458.330533pt;}
.y60{bottom:460.783067pt;}
.y1da{bottom:462.597067pt;}
.y220{bottom:463.130400pt;}
.y1b7{bottom:466.106800pt;}
.yd0{bottom:467.283600pt;}
.y9{bottom:467.726000pt;}
.y193{bottom:468.371467pt;}
.ya8{bottom:469.374800pt;}
.y148{bottom:469.750400pt;}
.y27{bottom:470.150933pt;}
.ydc{bottom:470.684800pt;}
.y201{bottom:471.416933pt;}
.y48{bottom:474.289733pt;}
.yfe{bottom:475.114533pt;}
.y11f{bottom:475.930533pt;}
.y1d9{bottom:479.930400pt;}
.y21f{bottom:480.463733pt;}
.y13f{bottom:480.770533pt;}
.y1b6{bottom:483.840133pt;}
.y81{bottom:483.919733pt;}
.y147{bottom:484.150267pt;}
.ya7{bottom:486.215200pt;}
.y8{bottom:487.951733pt;}
.ydb{bottom:488.284667pt;}
.y47{bottom:488.953733pt;}
.y200{bottom:489.282533pt;}
.y26{bottom:489.986933pt;}
.yfd{bottom:493.216667pt;}
.y11e{bottom:493.530533pt;}
.y80{bottom:495.919733pt;}
.y1d8{bottom:497.263733pt;}
.y21e{bottom:497.797067pt;}
.ycf{bottom:500.396533pt;}
.ya6{bottom:501.167200pt;}
.y7{bottom:501.285067pt;}
.y1b5{bottom:501.573333pt;}
.y46{bottom:503.617733pt;}
.yda{bottom:505.884667pt;}
.y1ff{bottom:507.148000pt;}
.y7f{bottom:507.919733pt;}
.y25{bottom:509.822933pt;}
.y11d{bottom:511.130400pt;}
.yfc{bottom:511.318667pt;}
.y5f{bottom:514.111067pt;}
.y1d7{bottom:514.597067pt;}
.y21d{bottom:515.130400pt;}
.ya5{bottom:518.007067pt;}
.y45{bottom:518.281733pt;}
.y1b4{bottom:519.306533pt;}
.y7e{bottom:519.919733pt;}
.y6{bottom:521.510667pt;}
.y24{bottom:524.486933pt;}
.y1fe{bottom:525.013467pt;}
.y11c{bottom:528.730533pt;}
.yfb{bottom:529.420667pt;}
.y7d{bottom:531.919733pt;}
.y1d6{bottom:531.930400pt;}
.y21c{bottom:532.463733pt;}
.ya4{bottom:532.959067pt;}
.yce{bottom:533.512000pt;}
.y16d{bottom:533.570533pt;}
.y5{bottom:534.849333pt;}
.y44{bottom:536.725733pt;}
.y1b3{bottom:537.039733pt;}
.yd9{bottom:541.084667pt;}
.y1fd{bottom:542.878933pt;}
.y7c{bottom:543.919733pt;}
.y23{bottom:544.322933pt;}
.y11b{bottom:546.330533pt;}
.y4{bottom:547.510667pt;}
.yfa{bottom:547.522667pt;}
.ya3{bottom:547.916133pt;}
.ycd{bottom:548.176000pt;}
.y1d5{bottom:549.263733pt;}
.y21b{bottom:549.797067pt;}
.y5e{bottom:551.443067pt;}
.y1b2{bottom:554.772933pt;}
.y7b{bottom:555.919733pt;}
.yd8{bottom:558.684800pt;}
.y1fc{bottom:560.744533pt;}
.y11a{bottom:563.930533pt;}
.ya2{bottom:564.752133pt;}
.yf9{bottom:565.624667pt;}
.y1d4{bottom:566.597067pt;}
.y21a{bottom:567.130400pt;}
.y43{bottom:567.397733pt;}
.y7a{bottom:567.919733pt;}
.y1b1{bottom:572.506133pt;}
.yd7{bottom:576.284667pt;}
.y1fb{bottom:578.610000pt;}
.y79{bottom:579.919733pt;}
.ycc{bottom:581.288933pt;}
.y22{bottom:581.391333pt;}
.y119{bottom:581.530533pt;}
.yf8{bottom:583.726800pt;}
.y1d3{bottom:583.930400pt;}
.y219{bottom:584.463733pt;}
.y1b0{bottom:590.239200pt;}
.y78{bottom:591.919733pt;}
.yd6{bottom:593.884667pt;}
.y5d{bottom:594.115067pt;}
.y1fa{bottom:596.475467pt;}
.y118{bottom:599.130400pt;}
.y42{bottom:599.401733pt;}
.y1d2{bottom:601.263733pt;}
.y218{bottom:601.797067pt;}
.yf7{bottom:601.828800pt;}
.y187{bottom:603.970533pt;}
.y21{bottom:610.719333pt;}
.y1f{bottom:612.759067pt;}
.y1f9{bottom:614.340933pt;}
.ycb{bottom:614.401733pt;}
.y41{bottom:615.397733pt;}
.y1af{bottom:615.531600pt;}
.y117{bottom:616.730533pt;}
.y1d1{bottom:618.863733pt;}
.y217{bottom:619.130400pt;}
.y77{bottom:619.791733pt;}
.yf6{bottom:619.930800pt;}
.y184{bottom:621.570533pt;}
.y20{bottom:625.383333pt;}
.yd5{bottom:629.084667pt;}
.y40{bottom:631.397733pt;}
.y76{bottom:631.791733pt;}
.y1f8{bottom:632.206400pt;}
.y1ae{bottom:633.264800pt;}
.y116{bottom:634.330533pt;}
.y1d0{bottom:636.463733pt;}
.ya1{bottom:643.622000pt;}
.y3{bottom:644.107200pt;}
.y6a{bottom:645.377067pt;}
.yca{bottom:647.514533pt;}
.yd4{bottom:649.084667pt;}
.y1f7{bottom:650.072000pt;}
.y1ad{bottom:650.997867pt;}
.y139{bottom:651.930533pt;}
.y1cf{bottom:653.797067pt;}
.y5c{bottom:654.115067pt;}
.yf5{bottom:655.632800pt;}
.y75{bottom:659.663733pt;}
.yc9{bottom:664.076267pt;}
.y69{bottom:665.377067pt;}
.y1f6{bottom:667.937467pt;}
.y1ac{bottom:668.731067pt;}
.y115{bottom:669.530400pt;}
.y1ce{bottom:671.130400pt;}
.y74{bottom:671.663733pt;}
.yc8{bottom:678.740267pt;}
.y73{bottom:683.663733pt;}
.y1f5{bottom:685.802933pt;}
.y1ab{bottom:686.464400pt;}
.y138{bottom:687.130400pt;}
.y1cd{bottom:688.463733pt;}
.yc7{bottom:693.404267pt;}
.y1f4{bottom:703.668400pt;}
.y1aa{bottom:704.197600pt;}
.y114{bottom:704.730400pt;}
.y1cc{bottom:705.797067pt;}
.yf4{bottom:708.934933pt;}
.yc6{bottom:709.966000pt;}
.y72{bottom:711.535733pt;}
.y5b{bottom:719.431067pt;}
.y1f3{bottom:721.534000pt;}
.y1a9{bottom:721.930800pt;}
.y137{bottom:722.330400pt;}
.y1cb{bottom:723.130400pt;}
.y71{bottom:723.535733pt;}
.yc5{bottom:724.630000pt;}
.yf3{bottom:725.436933pt;}
.y15e{bottom:727.170400pt;}
.y3f{bottom:727.405733pt;}
.y68{bottom:731.833733pt;}
.y70{bottom:735.535733pt;}
.yc4{bottom:739.294000pt;}
.y1f2{bottom:739.399467pt;}
.y1a8{bottom:739.664000pt;}
.y136{bottom:739.930400pt;}
.y1ca{bottom:740.463733pt;}
.y3e{bottom:743.401733pt;}
.y6f{bottom:747.535733pt;}
.yc3{bottom:755.853200pt;}
.y1f1{bottom:757.264933pt;}
.y1a7{bottom:757.397200pt;}
.y113{bottom:757.530400pt;}
.y1c9{bottom:757.797067pt;}
.y3d{bottom:759.397733pt;}
.y6e{bottom:759.535733pt;}
.yf2{bottom:759.538933pt;}
.y18f{bottom:762.370400pt;}
.yc2{bottom:770.517200pt;}
.y6d{bottom:771.535733pt;}
.y112{bottom:775.130400pt;}
.yf1{bottom:776.041067pt;}
.y16c{bottom:779.970400pt;}
.y3c{bottom:791.401733pt;}
.y39{bottom:793.557333pt;}
.y3b{bottom:807.397733pt;}
.ya0{bottom:814.998267pt;}
.yc1{bottom:815.000267pt;}
.yd3{bottom:820.462933pt;}
.h11{height:23.031250pt;}
.h24{height:28.991467pt;}
.h22{height:28.992000pt;}
.h23{height:30.283733pt;}
.hc{height:31.573333pt;}
.h1c{height:38.688000pt;}
.h12{height:39.552000pt;}
.h5{height:39.850667pt;}
.h1b{height:40.234667pt;}
.h15{height:40.242667pt;}
.h13{height:40.576000pt;}
.he{height:42.341333pt;}
.h9{height:44.832000pt;}
.h19{height:44.834133pt;}
.h18{height:44.834667pt;}
.h1a{height:44.836800pt;}
.h17{height:44.837333pt;}
.h8{height:45.648000pt;}
.hd{height:46.666667pt;}
.h20{height:47.466667pt;}
.h6{height:47.778667pt;}
.h14{height:49.226667pt;}
.h3{height:49.813333pt;}
.h25{height:51.392000pt;}
.h1f{height:52.213333pt;}
.h7{height:55.322667pt;}
.h2{height:56.000000pt;}
.h21{height:57.841333pt;}
.h16{height:61.533333pt;}
.h10{height:62.266667pt;}
.ha{height:74.160000pt;}
.hb{height:95.573333pt;}
.hf{height:111.584000pt;}
.h4{height:149.333333pt;}
.h0{height:863.937200pt;}
.h1{height:864.000000pt;}
.h1e{height:871.333333pt;}
.h1d{height:871.581200pt;}
.w0{width:578.582667pt;}
.w1{width:578.666667pt;}
.w4{width:580.473200pt;}
.w5{width:580.666667pt;}
.w2{width:582.361200pt;}
.w3{width:582.666667pt;}
.w6{width:589.261200pt;}
.w7{width:589.333333pt;}
.x6{left:-594.739867pt;}
.xc{left:-589.076933pt;}
.xd{left:-538.132933pt;}
.x7{left:-479.480933pt;}
.x8{left:-471.608933pt;}
.x9{left:-455.012933pt;}
.xa{left:-365.288933pt;}
.xb{left:-347.300933pt;}
.xe{left:-237.241333pt;}
.x1{left:-23.348667pt;}
.x0{left:0.000000pt;}
.x16{left:10.656133pt;}
.x28{left:12.837467pt;}
.xf{left:46.096933pt;}
.x2{left:49.274400pt;}
.x13{left:72.913333pt;}
.x1c{left:75.094667pt;}
.x14{left:86.946667pt;}
.x17{left:88.028000pt;}
.x2a{left:90.212800pt;}
.x3e{left:93.992400pt;}
.x1e{left:101.328400pt;}
.x18{left:103.142667pt;}
.x20{left:107.231333pt;}
.x1d{left:112.803200pt;}
.x5{left:114.945067pt;}
.x4{left:116.222133pt;}
.x3{left:118.695733pt;}
.x36{left:121.560667pt;}
.x37{left:131.140667pt;}
.x15{left:140.796667pt;}
.x24{left:146.625200pt;}
.x12{left:154.483067pt;}
.x26{left:161.952133pt;}
.x27{left:180.760267pt;}
.x22{left:182.865467pt;}
.x38{left:185.432133pt;}
.x39{left:194.968667pt;}
.x29{left:209.639867pt;}
.x23{left:210.724800pt;}
.x1f{left:214.795600pt;}
.x21{left:226.579600pt;}
.x25{left:232.908133pt;}
.x1a{left:249.961867pt;}
.x3f{left:265.321867pt;}
.x3a{left:293.059200pt;}
.x32{left:297.378000pt;}
.x3b{left:302.565733pt;}
.x33{left:307.028267pt;}
.x2e{left:333.348267pt;}
.x2f{left:343.261200pt;}
.x2d{left:378.020533pt;}
.x2b{left:387.591867pt;}
.x2c{left:397.076267pt;}
.x3c{left:418.934933pt;}
.x3d{left:428.575467pt;}
.x30{left:449.238933pt;}
.x31{left:459.221333pt;}
.x19{left:487.559067pt;}
.x1b{left:489.740400pt;}
.x34{left:496.831600pt;}
.x35{left:506.124133pt;}
.x10{left:787.062000pt;}
.x11{left:914.307200pt;}
}




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