
    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_51dd9c707a51aef51bca0306.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.889000;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_eecd5a41c336bda60f95471c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107000;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_4964614fa7dfb474d0e4039e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.965000;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_dec5933e8324d0779c8eb148.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096000;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_70091edfb2ab1ea9f0d60550.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961000;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_3dbe2282f87ad083d9df4ba0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.094000;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_07d943b26b1831d3d7467215.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102000;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_75aeeaf5d7f4dcfade34e202.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1f05c4f8b01907ac10eab07f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.110000;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_544fa09ec3f753a4d4773d6a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107000;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_997c83bce78e4f1afd009a8c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.096000;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_51dd9c707a51aef51bca0306.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.889000;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_84f2bf78ecff1cc5274264a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.957000;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_26878297bd3e20cfd788f1f1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.842000;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;}
.m58{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242563,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.243215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243215,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243267,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.243286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243286,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.243587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243587,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.243663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243663,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.243967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243967,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.244002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244002,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.244004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244004,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.244090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244090,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.244290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244290,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.244338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244338,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.244389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244389,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.244432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244432,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.244522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244522,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.244597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244597,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.244762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244762,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245098,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.245492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245492,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245743,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245798,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.245832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245832,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245843,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.246115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246115,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246160,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246423,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246432,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246490,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.246493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246493,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246585,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246598,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246710,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.246739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246739,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246918,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247037,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.247158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247158,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247165,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247290,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247354,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247372,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247677,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247853,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247943,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248070,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248103,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248110,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248133,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248235,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248365,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248537,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.248542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248542,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248717,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248846,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.md2{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);}
.m91{transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248970,0.000000,0.000000,0.250000,0,0);}
.ma5{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);}
.m6e{transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);}
.m65{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);}
.m69{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.mbe{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.m67{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);}
.m1a{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249922,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250051,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250148,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250839,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m8f{transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251196,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251360,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251528,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);}
.mba{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);}
.md7{transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252028,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252030,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252287,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252472,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.252738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252738,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.252862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252862,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m54{transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.253962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253962,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254038,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.254192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254192,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.254743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254743,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.255512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255512,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.256560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256560,0.000000,0.000000,0.250000,0,0);}
.m79{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.640000px;}
.v4{vertical-align:15.984000px;}
.v2{vertical-align:19.980000px;}
.v5{vertical-align:51.000000px;}
.ls1{letter-spacing:-24.576000px;}
.lsc{letter-spacing:-13.440000px;}
.ls2{letter-spacing:-10.368000px;}
.lsd{letter-spacing:-5.040000px;}
.ls3{letter-spacing:-3.840000px;}
.ls8{letter-spacing:-3.660000px;}
.ls31{letter-spacing:-1.092000px;}
.ls3f{letter-spacing:-1.020000px;}
.lse{letter-spacing:-0.960000px;}
.ls71{letter-spacing:-0.908688px;}
.ls3c{letter-spacing:-0.900000px;}
.ls3d{letter-spacing:-0.780000px;}
.ls3b{letter-spacing:-0.720000px;}
.ls70{letter-spacing:-0.681516px;}
.ls45{letter-spacing:-0.672000px;}
.ls39{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.600000px;}
.ls75{letter-spacing:-0.567930px;}
.ls40{letter-spacing:-0.540000px;}
.ls6b{letter-spacing:-0.493680px;}
.ls4c{letter-spacing:-0.480000px;}
.ls74{letter-spacing:-0.454344px;}
.ls27{letter-spacing:-0.420000px;}
.ls38{letter-spacing:-0.384780px;}
.ls55{letter-spacing:-0.378000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.349800px;}
.ls10{letter-spacing:-0.336000px;}
.ls4{letter-spacing:-0.324000px;}
.ls28{letter-spacing:-0.300000px;}
.ls48{letter-spacing:-0.279840px;}
.ls52{letter-spacing:-0.270000px;}
.ls73{letter-spacing:-0.252000px;}
.ls3e{letter-spacing:-0.244860px;}
.ls2a{letter-spacing:-0.240000px;}
.ls6f{letter-spacing:-0.227172px;}
.ls54{letter-spacing:-0.216000px;}
.ls41{letter-spacing:-0.209880px;}
.ls29{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.168000px;}
.ls11{letter-spacing:-0.162000px;}
.ls30{letter-spacing:-0.126000px;}
.ls26{letter-spacing:-0.120000px;}
.ls72{letter-spacing:-0.113586px;}
.ls51{letter-spacing:-0.108000px;}
.ls49{letter-spacing:-0.104940px;}
.ls44{letter-spacing:-0.096000px;}
.ls37{letter-spacing:-0.084000px;}
.ls21{letter-spacing:-0.060000px;}
.ls53{letter-spacing:-0.054000px;}
.ls2b{letter-spacing:-0.042000px;}
.ls4b{letter-spacing:-0.034980px;}
.ls7{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000120px;}
.ls1d{letter-spacing:0.030000px;}
.ls47{letter-spacing:0.034980px;}
.ls2d{letter-spacing:0.042000px;}
.ls46{letter-spacing:0.048000px;}
.ls4e{letter-spacing:0.054000px;}
.ls24{letter-spacing:0.060000px;}
.ls35{letter-spacing:0.069960px;}
.ls1c{letter-spacing:0.090000px;}
.ls4f{letter-spacing:0.108000px;}
.ls33{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.126000px;}
.ls42{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.162000px;}
.ls32{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.210000px;}
.ls50{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.240000px;}
.ls5b{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.300000px;}
.ls22{letter-spacing:0.360000px;}
.ls67{letter-spacing:0.378000px;}
.ls43{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.432000px;}
.ls6c{letter-spacing:0.448800px;}
.ls61{letter-spacing:0.499800px;}
.ls58{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.594000px;}
.ls2f{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.648000px;}
.ls69{letter-spacing:0.663600px;}
.ls63{letter-spacing:0.672000px;}
.ls5d{letter-spacing:0.681516px;}
.ls64{letter-spacing:0.714000px;}
.ls60{letter-spacing:0.756000px;}
.lsa{letter-spacing:0.810000px;}
.ls1e{letter-spacing:0.864000px;}
.ls19{letter-spacing:0.900000px;}
.ls12{letter-spacing:0.918000px;}
.ls6d{letter-spacing:1.022274px;}
.ls5{letter-spacing:1.080000px;}
.ls18{letter-spacing:1.125000px;}
.ls6e{letter-spacing:1.135860px;}
.ls4d{letter-spacing:1.200000px;}
.ls2e{letter-spacing:1.344000px;}
.ls1b{letter-spacing:1.350000px;}
.ls5e{letter-spacing:1.554000px;}
.ls1a{letter-spacing:1.620000px;}
.ls20{letter-spacing:2.310000px;}
.ls23{letter-spacing:2.520000px;}
.ls34{letter-spacing:3.360000px;}
.ls59{letter-spacing:4.480200px;}
.ls6a{letter-spacing:4.836000px;}
.ls57{letter-spacing:4.960200px;}
.ls68{letter-spacing:5.250000px;}
.ls62{letter-spacing:5.254118px;}
.ls65{letter-spacing:5.256471px;}
.ls5f{letter-spacing:5.330000px;}
.ls5a{letter-spacing:5.841176px;}
.ls66{letter-spacing:6.685294px;}
.ls5c{letter-spacing:9.068235px;}
.ls56{letter-spacing:14.180588px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-87.936000px;}
.ws0{word-spacing:-73.728000px;}
.wsa{word-spacing:-56.400000px;}
.ws9{word-spacing:-48.000000px;}
.wsee{word-spacing:-30.327462px;}
.wsed{word-spacing:-30.213876px;}
.wsef{word-spacing:-29.191602px;}
.wsf1{word-spacing:-29.078016px;}
.wsf0{word-spacing:-28.964430px;}
.wsf2{word-spacing:-28.737258px;}
.ws107{word-spacing:-28.055742px;}
.ws102{word-spacing:-27.147054px;}
.wsd4{word-spacing:-19.125000px;}
.ws38{word-spacing:-18.360000px;}
.ws1c{word-spacing:-17.280000px;}
.ws12{word-spacing:-13.878000px;}
.ws14{word-spacing:-13.608000px;}
.ws16{word-spacing:-13.554000px;}
.ws39{word-spacing:-13.500000px;}
.wsc0{word-spacing:-13.320000px;}
.ws13{word-spacing:-13.230000px;}
.ws15{word-spacing:-12.960000px;}
.wsce{word-spacing:-12.900000px;}
.wsb{word-spacing:-12.798000px;}
.wsd9{word-spacing:-12.150000px;}
.wsda{word-spacing:-11.826000px;}
.wsac{word-spacing:-11.520000px;}
.wsf3{word-spacing:-10.752000px;}
.ws2{word-spacing:-10.740000px;}
.ws110{word-spacing:-10.500000px;}
.ws50{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.600000px;}
.ws96{word-spacing:-7.940460px;}
.ws1d{word-spacing:-7.870500px;}
.wsc1{word-spacing:-7.765560px;}
.wsba{word-spacing:-7.590660px;}
.ws87{word-spacing:-7.520700px;}
.ws7c{word-spacing:-7.485720px;}
.wsd{word-spacing:-7.440000px;}
.wsa0{word-spacing:-6.716160px;}
.wsd1{word-spacing:-3.420000px;}
.ws8c{word-spacing:-3.000000px;}
.ws47{word-spacing:-2.820000px;}
.ws24{word-spacing:-2.760000px;}
.ws33{word-spacing:-2.700000px;}
.wsc9{word-spacing:-2.640000px;}
.wsf6{word-spacing:-2.592000px;}
.ws48{word-spacing:-2.580000px;}
.wse7{word-spacing:-2.538000px;}
.ws99{word-spacing:-2.520000px;}
.wsde{word-spacing:-2.484000px;}
.wsd8{word-spacing:-2.460000px;}
.wsdc{word-spacing:-2.430000px;}
.wsd5{word-spacing:-2.400000px;}
.ws109{word-spacing:-2.394000px;}
.wsdd{word-spacing:-2.376000px;}
.ws76{word-spacing:-2.340000px;}
.wsa4{word-spacing:-2.304000px;}
.ws7d{word-spacing:-2.280000px;}
.wsa1{word-spacing:-2.220000px;}
.wse1{word-spacing:-2.214000px;}
.wsa6{word-spacing:-2.208000px;}
.ws46{word-spacing:-2.160000px;}
.ws52{word-spacing:-2.100000px;}
.ws4d{word-spacing:-2.058000px;}
.ws4b{word-spacing:-2.040000px;}
.ws61{word-spacing:-2.016000px;}
.wsbf{word-spacing:-1.980000px;}
.ws73{word-spacing:-1.974000px;}
.wsab{word-spacing:-1.932000px;}
.ws30{word-spacing:-1.920000px;}
.wscc{word-spacing:-1.860000px;}
.wsb0{word-spacing:-1.824000px;}
.ws2b{word-spacing:-1.800000px;}
.ws94{word-spacing:-1.764000px;}
.ws7e{word-spacing:-1.740000px;}
.ws104{word-spacing:-1.728000px;}
.ws90{word-spacing:-1.680000px;}
.ws1a{word-spacing:-1.620000px;}
.ws8a{word-spacing:-1.560000px;}
.ws105{word-spacing:-1.512000px;}
.wsc3{word-spacing:-1.500000px;}
.wsa3{word-spacing:-1.488000px;}
.ws106{word-spacing:-1.470000px;}
.wsbe{word-spacing:-1.440000px;}
.ws63{word-spacing:-1.386000px;}
.wsa9{word-spacing:-1.380000px;}
.ws92{word-spacing:-1.320000px;}
.ws23{word-spacing:-1.260000px;}
.ws35{word-spacing:-1.200000px;}
.ws3f{word-spacing:-1.140000px;}
.wsdb{word-spacing:-1.125000px;}
.ws5{word-spacing:-1.080000px;}
.ws54{word-spacing:-1.020000px;}
.ws40{word-spacing:-0.960000px;}
.ws57{word-spacing:-0.900000px;}
.ws4f{word-spacing:-0.882000px;}
.ws1e{word-spacing:-0.864000px;}
.ws6b{word-spacing:-0.840000px;}
.ws56{word-spacing:-0.780000px;}
.wse0{word-spacing:-0.756000px;}
.ws1f{word-spacing:-0.720000px;}
.wscd{word-spacing:-0.714000px;}
.ws101{word-spacing:-0.681516px;}
.wsfe{word-spacing:-0.672000px;}
.wsbb{word-spacing:-0.660000px;}
.ws62{word-spacing:-0.630000px;}
.ws1b{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.576000px;}
.ws2d{word-spacing:-0.546000px;}
.ws29{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.480000px;}
.wsf5{word-spacing:-0.448800px;}
.ws11{word-spacing:-0.432000px;}
.ws58{word-spacing:-0.420000px;}
.ws7b{word-spacing:-0.378000px;}
.ws67{word-spacing:-0.360000px;}
.ws2e{word-spacing:-0.336000px;}
.ws37{word-spacing:-0.300000px;}
.ws86{word-spacing:-0.294000px;}
.ws22{word-spacing:-0.240000px;}
.ws5b{word-spacing:-0.210000px;}
.ws9a{word-spacing:-0.180000px;}
.ws6{word-spacing:-0.162000px;}
.wsf{word-spacing:-0.126000px;}
.ws83{word-spacing:-0.120000px;}
.ws19{word-spacing:-0.108000px;}
.wsa8{word-spacing:-0.096000px;}
.ws70{word-spacing:-0.069960px;}
.ws49{word-spacing:-0.060000px;}
.ws72{word-spacing:-0.042000px;}
.wsad{word-spacing:-0.034980px;}
.ws7{word-spacing:0.000000px;}
.wscf{word-spacing:0.034980px;}
.wsd0{word-spacing:0.042000px;}
.ws93{word-spacing:0.084000px;}
.wsca{word-spacing:0.104940px;}
.ws18{word-spacing:0.108000px;}
.ws55{word-spacing:0.120000px;}
.wsb1{word-spacing:0.144000px;}
.ws20{word-spacing:0.162000px;}
.ws71{word-spacing:0.168000px;}
.ws45{word-spacing:0.180000px;}
.ws8d{word-spacing:0.209880px;}
.ws51{word-spacing:0.240000px;}
.ws89{word-spacing:0.244860px;}
.ws17{word-spacing:0.270000px;}
.ws75{word-spacing:0.300000px;}
.ws4{word-spacing:0.324000px;}
.ws10{word-spacing:0.336000px;}
.ws4c{word-spacing:0.360000px;}
.wsec{word-spacing:0.378000px;}
.ws84{word-spacing:0.420000px;}
.wsbd{word-spacing:0.480000px;}
.wsf4{word-spacing:0.493680px;}
.ws9e{word-spacing:0.540000px;}
.ws10e{word-spacing:0.567930px;}
.ws26{word-spacing:0.600000px;}
.wsb4{word-spacing:0.624000px;}
.ws3c{word-spacing:0.660000px;}
.ws5e{word-spacing:0.672000px;}
.wsff{word-spacing:0.681516px;}
.ws9d{word-spacing:0.720000px;}
.ws80{word-spacing:0.780000px;}
.wsa5{word-spacing:0.816000px;}
.ws68{word-spacing:0.840000px;}
.wsfd{word-spacing:0.882000px;}
.ws59{word-spacing:0.900000px;}
.ws95{word-spacing:0.924000px;}
.ws7a{word-spacing:0.960000px;}
.ws85{word-spacing:1.020000px;}
.ws25{word-spacing:1.080000px;}
.ws64{word-spacing:1.092000px;}
.wsb2{word-spacing:1.104000px;}
.ws69{word-spacing:1.140000px;}
.ws3e{word-spacing:1.200000px;}
.ws9f{word-spacing:1.218000px;}
.ws3b{word-spacing:1.260000px;}
.ws81{word-spacing:1.320000px;}
.ws65{word-spacing:1.344000px;}
.ws21{word-spacing:1.380000px;}
.wsb6{word-spacing:1.440000px;}
.wsfc{word-spacing:1.488000px;}
.ws8e{word-spacing:1.500000px;}
.wsd3{word-spacing:1.512000px;}
.wsa7{word-spacing:1.536000px;}
.wsc4{word-spacing:1.560000px;}
.ws5f{word-spacing:1.596000px;}
.wsb7{word-spacing:1.620000px;}
.ws6c{word-spacing:1.680000px;}
.ws9b{word-spacing:1.740000px;}
.ws78{word-spacing:1.800000px;}
.ws60{word-spacing:1.806000px;}
.wse8{word-spacing:1.836000px;}
.ws34{word-spacing:1.860000px;}
.wsb5{word-spacing:1.920000px;}
.ws97{word-spacing:1.980000px;}
.ws77{word-spacing:2.040000px;}
.ws3d{word-spacing:2.100000px;}
.wsaf{word-spacing:2.112000px;}
.ws74{word-spacing:2.142000px;}
.ws42{word-spacing:2.160000px;}
.wsb9{word-spacing:2.220000px;}
.ws5d{word-spacing:2.268000px;}
.ws6a{word-spacing:2.340000px;}
.wse2{word-spacing:2.376000px;}
.wsc2{word-spacing:2.400000px;}
.wsa2{word-spacing:2.460000px;}
.ws41{word-spacing:2.520000px;}
.ws43{word-spacing:2.580000px;}
.wsb3{word-spacing:2.592000px;}
.ws2a{word-spacing:2.640000px;}
.ws4a{word-spacing:2.700000px;}
.ws2f{word-spacing:2.760000px;}
.ws8f{word-spacing:2.772000px;}
.wse3{word-spacing:2.808000px;}
.ws82{word-spacing:2.820000px;}
.ws6f{word-spacing:2.880000px;}
.wsc8{word-spacing:2.898000px;}
.wse6{word-spacing:2.916000px;}
.ws79{word-spacing:2.940000px;}
.ws66{word-spacing:3.000000px;}
.ws6d{word-spacing:3.120000px;}
.ws10f{word-spacing:3.150000px;}
.ws36{word-spacing:3.180000px;}
.ws44{word-spacing:3.240000px;}
.ws4e{word-spacing:3.276000px;}
.wsd2{word-spacing:3.300000px;}
.ws5c{word-spacing:3.318000px;}
.ws9c{word-spacing:3.360000px;}
.ws7f{word-spacing:3.420000px;}
.ws31{word-spacing:3.480000px;}
.wse4{word-spacing:3.510000px;}
.ws98{word-spacing:3.540000px;}
.wseb{word-spacing:3.564000px;}
.wsb8{word-spacing:3.600000px;}
.ws91{word-spacing:3.660000px;}
.wsc6{word-spacing:3.720000px;}
.ws53{word-spacing:3.780000px;}
.wsae{word-spacing:3.792000px;}
.wsea{word-spacing:3.834000px;}
.wsbc{word-spacing:3.840000px;}
.wse9{word-spacing:3.888000px;}
.wsc7{word-spacing:3.900000px;}
.wse5{word-spacing:3.942000px;}
.wsc5{word-spacing:3.960000px;}
.wsdf{word-spacing:3.996000px;}
.ws8b{word-spacing:4.020000px;}
.ws6e{word-spacing:4.080000px;}
.ws88{word-spacing:4.140000px;}
.ws5a{word-spacing:4.200000px;}
.ws10b{word-spacing:4.242000px;}
.wsd7{word-spacing:4.260000px;}
.ws10d{word-spacing:4.284000px;}
.ws3a{word-spacing:4.320000px;}
.ws27{word-spacing:4.380000px;}
.ws28{word-spacing:4.440000px;}
.wsfa{word-spacing:4.452000px;}
.wsf8{word-spacing:4.464000px;}
.ws32{word-spacing:4.500000px;}
.ws108{word-spacing:4.608000px;}
.wsaa{word-spacing:4.740000px;}
.wscb{word-spacing:4.920000px;}
.ws103{word-spacing:4.944000px;}
.wse{word-spacing:5.040000px;}
.ws10c{word-spacing:5.166000px;}
.ws10a{word-spacing:5.334000px;}
.ws100{word-spacing:7.098000px;}
.wsf9{word-spacing:8.442000px;}
.wsfb{word-spacing:8.568000px;}
.ws2c{word-spacing:8.820000px;}
.wsf7{word-spacing:10.044000px;}
.wsd6{word-spacing:12.960000px;}
._2d{margin-left:-27.374226px;}
._2b{margin-left:-17.055200px;}
._2c{margin-left:-14.352024px;}
._1e{margin-left:-11.466000px;}
._7{margin-left:-9.600000px;}
._10{margin-left:-7.440000px;}
._b{margin-left:-5.655000px;}
._1d{margin-left:-4.325400px;}
._8{margin-left:-3.148800px;}
._a{margin-left:-1.614600px;}
._9{width:1.609200px;}
._c{width:3.060000px;}
._e{width:4.176000px;}
._6{width:5.721600px;}
._4{width:6.988800px;}
._2{width:8.179200px;}
._5{width:10.291200px;}
._21{width:11.400000px;}
._f{width:12.408000px;}
._d{width:13.584000px;}
._1f{width:15.225000px;}
._20{width:16.350000px;}
._3{width:19.737600px;}
._1{width:21.235200px;}
._0{width:22.540800px;}
._14{width:25.596000px;}
._15{width:26.794800px;}
._1c{width:28.795200px;}
._1b{width:30.240600px;}
._13{width:39.798000px;}
._16{width:40.834800px;}
._12{width:53.362800px;}
._1a{width:89.548800px;}
._18{width:93.652800px;}
._19{width:96.136800px;}
._17{width:98.080800px;}
._11{width:244.014600px;}
._25{width:276.627600px;}
._2a{width:446.363106px;}
._26{width:526.225200px;}
._24{width:532.962192px;}
._29{width:585.228894px;}
._27{width:633.316992px;}
._28{width:636.904140px;}
._22{width:729.008130px;}
._23{width:759.169134px;}
.fc9{color:rgb(141,142,149);}
.fc8{color:rgb(37,38,40);}
.fc6{color:rgb(4,6,6);}
.fc5{color:rgb(90,94,100);}
.fc4{color:rgb(98,106,104);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc7{color:rgb(23,23,24);}
.fc1{color:rgb(239,52,51);}
.fc0{color:rgb(78,81,88);}
.fsd{font-size:27.984000px;}
.fsb{font-size:34.980000px;}
.fs7{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fsf{font-size:44.880000px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs9{font-size:75.000000px;}
.fsa{font-size:90.000000px;}
.fs8{font-size:108.000000px;}
.fs10{font-size:113.586000px;}
.fse{font-size:138.000000px;}
.fs5{font-size:240.000000px;}
.fs0{font-size:384.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:73.757700px;}
.y38{bottom:81.520200px;}
.y39{bottom:85.457700px;}
.y37{bottom:140.185950px;}
.ye{bottom:140.187450px;}
.y6a{bottom:140.187600px;}
.y58{bottom:140.187750px;}
.y7c{bottom:140.190900px;}
.yab{bottom:140.192250px;}
.yc8{bottom:140.196900px;}
.ya1{bottom:140.201550px;}
.y8c{bottom:140.205900px;}
.yc4{bottom:140.206050px;}
.ybe{bottom:140.206200px;}
.y94{bottom:140.210700px;}
.y9c{bottom:140.219700px;}
.yfe{bottom:142.486950px;}
.y69{bottom:152.787600px;}
.y57{bottom:152.787750px;}
.yce{bottom:154.587450px;}
.yd1{bottom:154.587600px;}
.yaa{bottom:154.587750px;}
.yc7{bottom:154.592400px;}
.ya0{bottom:154.597050px;}
.y8b{bottom:154.601400px;}
.yc3{bottom:154.601550px;}
.ybd{bottom:154.601700px;}
.y93{bottom:154.606200px;}
.y9b{bottom:154.615200px;}
.y7b{bottom:156.392400px;}
.y12d{bottom:158.339100px;}
.y12e{bottom:158.489100px;}
.yfd{bottom:158.686950px;}
.y36{bottom:158.937450px;}
.y148{bottom:161.436600px;}
.y68{bottom:165.387600px;}
.y56{bottom:165.387750px;}
.y87{bottom:165.396900px;}
.ycf{bottom:167.192400px;}
.y9f{bottom:167.197050px;}
.ycd{bottom:168.987600px;}
.ya9{bottom:168.987900px;}
.y7a{bottom:168.992400px;}
.yb9{bottom:168.992550px;}
.y8a{bottom:168.996900px;}
.yc2{bottom:168.997050px;}
.ybc{bottom:168.997200px;}
.y92{bottom:169.001700px;}
.y9a{bottom:169.010700px;}
.y145{bottom:173.886600px;}
.y147{bottom:174.036600px;}
.yfc{bottom:174.886950px;}
.y67{bottom:177.987750px;}
.y86{bottom:179.792400px;}
.ycc{bottom:181.587600px;}
.yc6{bottom:181.587900px;}
.y9e{bottom:181.592550px;}
.y35{bottom:182.091450px;}
.y79{bottom:183.387900px;}
.yb8{bottom:183.388050px;}
.y89{bottom:183.392400px;}
.yc1{bottom:183.392550px;}
.ybb{bottom:183.392700px;}
.y91{bottom:183.397200px;}
.y99{bottom:183.406200px;}
.y146{bottom:186.636600px;}
.y83{bottom:190.587750px;}
.yfb{bottom:191.086950px;}
.y85{bottom:194.187900px;}
.ycb{bottom:194.192550px;}
.y78{bottom:195.987900px;}
.y9d{bottom:195.988050px;}
.y88{bottom:197.787900px;}
.yc0{bottom:197.788050px;}
.yba{bottom:197.788200px;}
.y90{bottom:197.792700px;}
.y98{bottom:197.801700px;}
.y82{bottom:203.187900px;}
.y12c{bottom:205.347000px;}
.yfa{bottom:207.286950px;}
.y77{bottom:208.587900px;}
.yca{bottom:208.588050px;}
.ybf{bottom:212.187900px;}
.y8f{bottom:212.188200px;}
.y97{bottom:212.197200px;}
.yd0{bottom:215.236950px;}
.y81{bottom:217.587900px;}
.y76{bottom:221.187900px;}
.yf9{bottom:223.486950px;}
.y142{bottom:226.496400px;}
.y96{bottom:226.592700px;}
.y144{bottom:226.646400px;}
.y80{bottom:231.988050px;}
.y34{bottom:232.797450px;}
.y75{bottom:233.787900px;}
.y55{bottom:233.986950px;}
.y143{bottom:239.246400px;}
.yf8{bottom:239.686950px;}
.y95{bottom:240.988200px;}
.y74{bottom:246.388050px;}
.y12b{bottom:250.358850px;}
.y33{bottom:251.548950px;}
.y54{bottom:252.736950px;}
.yf7{bottom:255.886950px;}
.y73{bottom:258.988050px;}
.y7f{bottom:260.792850px;}
.y128{bottom:262.808850px;}
.y12a{bottom:262.958850px;}
.y32{bottom:270.300450px;}
.y66{bottom:271.486950px;}
.y72{bottom:271.588050px;}
.yf6{bottom:272.086950px;}
.y7e{bottom:275.188350px;}
.y129{bottom:275.558850px;}
.y141{bottom:282.008250px;}
.y71{bottom:284.192700px;}
.yf5{bottom:288.286950px;}
.y53{bottom:290.236950px;}
.y13e{bottom:294.458250px;}
.y140{bottom:294.608250px;}
.y70{bottom:298.588200px;}
.y31{bottom:302.254950px;}
.yf4{bottom:304.486950px;}
.y13f{bottom:307.208250px;}
.y52{bottom:308.986950px;}
.y127{bottom:309.816750px;}
.y6f{bottom:311.188200px;}
.yd{bottom:317.480250px;}
.yf3{bottom:320.686950px;}
.y126{bottom:322.416750px;}
.y6e{bottom:323.788200px;}
.y124{bottom:326.916750px;}
.y51{bottom:327.736950px;}
.y7d{bottom:332.731950px;}
.y30{bottom:334.209450px;}
.y6d{bottom:336.388200px;}
.yf2{bottom:336.886950px;}
.yc{bottom:338.480250px;}
.y125{bottom:339.666750px;}
.y50{bottom:346.486950px;}
.y6c{bottom:348.988200px;}
.y13d{bottom:351.470100px;}
.y8e{bottom:351.481950px;}
.yf1{bottom:353.086950px;}
.y6b{bottom:361.588200px;}
.y13a{bottom:363.920100px;}
.y13c{bottom:364.070100px;}
.y4f{bottom:365.236950px;}
.y2f{bottom:366.163950px;}
.yf0{bottom:369.286950px;}
.y123{bottom:373.924500px;}
.y13b{bottom:376.670100px;}
.yb{bottom:380.463750px;}
.y1b{bottom:383.985450px;}
.y4e{bottom:383.986950px;}
.yef{bottom:385.486950px;}
.y121{bottom:386.374650px;}
.y122{bottom:386.524650px;}
.y2e{bottom:398.118450px;}
.yee{bottom:401.686950px;}
.y1a{bottom:402.736950px;}
.ya{bottom:404.471250px;}
.yed{bottom:417.886950px;}
.y137{bottom:419.281800px;}
.y139{bottom:419.431950px;}
.y4d{bottom:421.486950px;}
.ya8{bottom:422.986950px;}
.y2d{bottom:430.072950px;}
.y138{bottom:432.031800px;}
.y120{bottom:433.382400px;}
.yec{bottom:434.086950px;}
.ya7{bottom:437.986950px;}
.y4c{bottom:440.236950px;}
.y11f{bottom:445.982400px;}
.y2c{bottom:448.824450px;}
.yeb{bottom:450.286950px;}
.ya6{bottom:452.986950px;}
.y11d{bottom:458.432400px;}
.y11e{bottom:458.582400px;}
.y19{bottom:458.986950px;}
.yea{bottom:466.486950px;}
.ya5{bottom:467.986950px;}
.y18{bottom:477.736950px;}
.y136{bottom:479.045700px;}
.ye9{bottom:482.686950px;}
.ya4{bottom:482.986950px;}
.y9{bottom:491.475750px;}
.y4b{bottom:496.486950px;}
.ya3{bottom:497.986950px;}
.ye8{bottom:498.886950px;}
.y11c{bottom:505.440300px;}
.y8{bottom:512.480250px;}
.ya2{bottom:512.986950px;}
.ye7{bottom:515.086950px;}
.y4a{bottom:515.236950px;}
.y11a{bottom:517.890300px;}
.y11b{bottom:518.040300px;}
.ye6{bottom:531.286950px;}
.y49{bottom:533.986950px;}
.y134{bottom:538.913400px;}
.y135{bottom:539.063400px;}
.ye5{bottom:547.486950px;}
.y17{bottom:552.730950px;}
.y48{bottom:552.736950px;}
.ye4{bottom:563.686950px;}
.y119{bottom:564.898200px;}
.y65{bottom:571.486950px;}
.y117{bottom:577.348200px;}
.y118{bottom:577.498200px;}
.ye3{bottom:579.886950px;}
.y2b{bottom:583.527450px;}
.y64{bottom:590.236950px;}
.y133{bottom:594.425100px;}
.yc5{bottom:595.231950px;}
.ye2{bottom:596.086950px;}
.y131{bottom:606.875250px;}
.y132{bottom:607.025250px;}
.y16{bottom:608.985450px;}
.y63{bottom:608.986950px;}
.ye1{bottom:612.286950px;}
.y2a{bottom:615.481950px;}
.y15{bottom:627.736950px;}
.ye0{bottom:628.486950px;}
.y7{bottom:631.931100px;}
.y3{bottom:632.188650px;}
.y29{bottom:634.233450px;}
.y116{bottom:637.111950px;}
.ydf{bottom:644.686950px;}
.y41{bottom:646.486950px;}
.y28{bottom:652.984950px;}
.y115{bottom:655.111950px;}
.yde{bottom:660.886950px;}
.y12f{bottom:662.236950px;}
.y130{bottom:662.386950px;}
.y40{bottom:665.236950px;}
.y27{bottom:671.736450px;}
.y11{bottom:672.686400px;}
.y114{bottom:673.861950px;}
.ydd{bottom:677.086950px;}
.yb7{bottom:681.736950px;}
.y62{bottom:683.986950px;}
.ydc{bottom:693.286950px;}
.yb6{bottom:696.736950px;}
.y3f{bottom:702.736950px;}
.y26{bottom:703.690950px;}
.y8d{bottom:707.731950px;}
.ydb{bottom:709.486950px;}
.yb5{bottom:711.736950px;}
.y10a{bottom:714.587100px;}
.y2{bottom:714.652650px;}
.y6{bottom:718.018500px;}
.y47{bottom:718.168950px;}
.y3e{bottom:721.486950px;}
.yda{bottom:725.686950px;}
.yb4{bottom:726.736950px;}
.y14{bottom:729.209550px;}
.y10{bottom:729.686400px;}
.y109{bottom:730.787100px;}
.y5{bottom:734.515500px;}
.y25{bottom:735.645450px;}
.y61{bottom:740.236950px;}
.y46{bottom:740.668950px;}
.y13{bottom:741.211050px;}
.yb3{bottom:741.736950px;}
.yd9{bottom:741.886950px;}
.y84{bottom:745.231950px;}
.y108{bottom:746.987100px;}
.y4{bottom:751.012500px;}
.y12{bottom:753.212550px;}
.y24{bottom:754.396950px;}
.yb2{bottom:756.736950px;}
.yd8{bottom:758.086950px;}
.y3d{bottom:758.986950px;}
.y45{bottom:763.168950px;}
.y107{bottom:763.187100px;}
.y10c{bottom:768.216000px;}
.y10f{bottom:768.834450px;}
.yb1{bottom:771.736950px;}
.y23{bottom:773.148450px;}
.yd7{bottom:774.286950px;}
.y3c{bottom:777.736950px;}
.y106{bottom:779.387100px;}
.y10b{bottom:784.716000px;}
.yf{bottom:786.686400px;}
.yb0{bottom:786.736950px;}
.yd6{bottom:790.487100px;}
.y22{bottom:791.899950px;}
.y105{bottom:795.587100px;}
.y60{bottom:796.486950px;}
.y1{bottom:797.116650px;}
.y10e{bottom:798.849450px;}
.yaf{bottom:801.736950px;}
.yd5{bottom:806.687100px;}
.y21{bottom:810.651450px;}
.y104{bottom:811.786950px;}
.y5f{bottom:815.236950px;}
.yae{bottom:816.736950px;}
.yd4{bottom:822.887100px;}
.y44{bottom:826.486950px;}
.y103{bottom:827.986950px;}
.y10d{bottom:828.864450px;}
.y20{bottom:829.402950px;}
.yad{bottom:831.736950px;}
.y5e{bottom:833.986950px;}
.yc9{bottom:838.982100px;}
.yd3{bottom:839.087100px;}
.y102{bottom:844.187100px;}
.y1f{bottom:848.154450px;}
.y5d{bottom:852.736950px;}
.y43{bottom:853.486950px;}
.yd2{bottom:855.286950px;}
.y101{bottom:860.387100px;}
.y113{bottom:862.331400px;}
.y5c{bottom:871.486950px;}
.y100{bottom:876.587100px;}
.y1e{bottom:880.108950px;}
.y42{bottom:880.486950px;}
.y5b{bottom:890.236950px;}
.yff{bottom:892.786950px;}
.y1d{bottom:898.860450px;}
.y3b{bottom:907.486950px;}
.y5a{bottom:908.986950px;}
.yac{bottom:913.982100px;}
.y1c{bottom:917.611950px;}
.y112{bottom:918.228660px;}
.y111{bottom:930.862380px;}
.y110{bottom:943.496100px;}
.y59{bottom:970.167150px;}
.h1a{height:30.117780px;}
.hc{height:30.576000px;}
.h1f{height:32.672640px;}
.h10{height:33.462000px;}
.h19{height:35.994000px;}
.h18{height:36.036000px;}
.hb{height:36.540000px;}
.h20{height:38.880000px;}
.h1e{height:39.045600px;}
.h4{height:39.312000px;}
.h8{height:41.184000px;}
.h23{height:41.520000px;}
.h1c{height:41.760000px;}
.hf{height:46.278000px;}
.hd{height:46.332000px;}
.h1b{height:46.494000px;}
.h3{height:46.980000px;}
.h7{height:51.480000px;}
.h17{height:51.660000px;}
.h14{height:51.900000px;}
.he{height:52.200000px;}
.h6{height:56.628000px;}
.h5{height:57.420000px;}
.h16{height:62.280000px;}
.h13{height:64.875000px;}
.h12{height:65.250000px;}
.h15{height:78.300000px;}
.h24{height:85.416672px;}
.h21{height:92.184000px;}
.h22{height:92.520000px;}
.h11{height:93.960000px;}
.h1d{height:103.776000px;}
.h9{height:180.480000px;}
.ha{height:183.120000px;}
.h2{height:288.768000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1d{left:45.177150px;}
.x23{left:49.007250px;}
.x21{left:50.173200px;}
.x22{left:78.117150px;}
.x25{left:81.776100px;}
.x24{left:83.193300px;}
.x1{left:84.292350px;}
.x3{left:90.354300px;}
.x27{left:93.759150px;}
.x26{left:94.912350px;}
.x9{left:109.317000px;}
.xa{left:113.121600px;}
.x5{left:135.531450px;}
.x6{left:153.526950px;}
.x18{left:180.531450px;}
.x7{left:211.322850px;}
.x10{left:238.119150px;}
.x15{left:241.690650px;}
.x11{left:244.933500px;}
.x16{left:250.346250px;}
.x1e{left:372.757050px;}
.x20{left:374.172150px;}
.x1f{left:375.386400px;}
.xd{left:381.979800px;}
.xc{left:384.719550px;}
.x4{left:406.807050px;}
.x28{left:417.418650px;}
.x29{left:419.193300px;}
.x2a{left:422.453400px;}
.x2b{left:424.540500px;}
.xb{left:483.379050px;}
.x19{left:505.151850px;}
.x1a{left:513.060000px;}
.x2{left:520.560450px;}
.xe{left:558.493200px;}
.xf{left:566.283000px;}
.x12{left:581.979150px;}
.x8{left:587.303250px;}
.x1b{left:589.675950px;}
.x17{left:595.987200px;}
.x1c{left:597.813900px;}
.x13{left:621.046650px;}
.x14{left:628.711050px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.346667pt;}
.v4{vertical-align:14.208000pt;}
.v2{vertical-align:17.760000pt;}
.v5{vertical-align:45.333333pt;}
.ls1{letter-spacing:-21.845333pt;}
.lsc{letter-spacing:-11.946667pt;}
.ls2{letter-spacing:-9.216000pt;}
.lsd{letter-spacing:-4.480000pt;}
.ls3{letter-spacing:-3.413333pt;}
.ls8{letter-spacing:-3.253333pt;}
.ls31{letter-spacing:-0.970667pt;}
.ls3f{letter-spacing:-0.906667pt;}
.lse{letter-spacing:-0.853333pt;}
.ls71{letter-spacing:-0.807723pt;}
.ls3c{letter-spacing:-0.800000pt;}
.ls3d{letter-spacing:-0.693333pt;}
.ls3b{letter-spacing:-0.640000pt;}
.ls70{letter-spacing:-0.605792pt;}
.ls45{letter-spacing:-0.597333pt;}
.ls39{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls75{letter-spacing:-0.504827pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls6b{letter-spacing:-0.438827pt;}
.ls4c{letter-spacing:-0.426667pt;}
.ls74{letter-spacing:-0.403861pt;}
.ls27{letter-spacing:-0.373333pt;}
.ls38{letter-spacing:-0.342027pt;}
.ls55{letter-spacing:-0.336000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.310933pt;}
.ls10{letter-spacing:-0.298667pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls28{letter-spacing:-0.266667pt;}
.ls48{letter-spacing:-0.248747pt;}
.ls52{letter-spacing:-0.240000pt;}
.ls73{letter-spacing:-0.224000pt;}
.ls3e{letter-spacing:-0.217653pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls6f{letter-spacing:-0.201931pt;}
.ls54{letter-spacing:-0.192000pt;}
.ls41{letter-spacing:-0.186560pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.149333pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls30{letter-spacing:-0.112000pt;}
.ls26{letter-spacing:-0.106667pt;}
.ls72{letter-spacing:-0.100965pt;}
.ls51{letter-spacing:-0.096000pt;}
.ls49{letter-spacing:-0.093280pt;}
.ls44{letter-spacing:-0.085333pt;}
.ls37{letter-spacing:-0.074667pt;}
.ls21{letter-spacing:-0.053333pt;}
.ls53{letter-spacing:-0.048000pt;}
.ls2b{letter-spacing:-0.037333pt;}
.ls4b{letter-spacing:-0.031093pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000107pt;}
.ls1d{letter-spacing:0.026667pt;}
.ls47{letter-spacing:0.031093pt;}
.ls2d{letter-spacing:0.037333pt;}
.ls46{letter-spacing:0.042667pt;}
.ls4e{letter-spacing:0.048000pt;}
.ls24{letter-spacing:0.053333pt;}
.ls35{letter-spacing:0.062187pt;}
.ls1c{letter-spacing:0.080000pt;}
.ls4f{letter-spacing:0.096000pt;}
.ls33{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.112000pt;}
.ls42{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.144000pt;}
.ls32{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.186667pt;}
.ls50{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.213333pt;}
.ls5b{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls22{letter-spacing:0.320000pt;}
.ls67{letter-spacing:0.336000pt;}
.ls43{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.384000pt;}
.ls6c{letter-spacing:0.398933pt;}
.ls61{letter-spacing:0.444267pt;}
.ls58{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.528000pt;}
.ls2f{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.576000pt;}
.ls69{letter-spacing:0.589867pt;}
.ls63{letter-spacing:0.597333pt;}
.ls5d{letter-spacing:0.605792pt;}
.ls64{letter-spacing:0.634667pt;}
.ls60{letter-spacing:0.672000pt;}
.lsa{letter-spacing:0.720000pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls12{letter-spacing:0.816000pt;}
.ls6d{letter-spacing:0.908688pt;}
.ls5{letter-spacing:0.960000pt;}
.ls18{letter-spacing:1.000000pt;}
.ls6e{letter-spacing:1.009653pt;}
.ls4d{letter-spacing:1.066667pt;}
.ls2e{letter-spacing:1.194667pt;}
.ls1b{letter-spacing:1.200000pt;}
.ls5e{letter-spacing:1.381333pt;}
.ls1a{letter-spacing:1.440000pt;}
.ls20{letter-spacing:2.053333pt;}
.ls23{letter-spacing:2.240000pt;}
.ls34{letter-spacing:2.986667pt;}
.ls59{letter-spacing:3.982400pt;}
.ls6a{letter-spacing:4.298667pt;}
.ls57{letter-spacing:4.409067pt;}
.ls68{letter-spacing:4.666667pt;}
.ls62{letter-spacing:4.670327pt;}
.ls65{letter-spacing:4.672418pt;}
.ls5f{letter-spacing:4.737778pt;}
.ls5a{letter-spacing:5.192157pt;}
.ls66{letter-spacing:5.942484pt;}
.ls5c{letter-spacing:8.060654pt;}
.ls56{letter-spacing:12.604967pt;}
.ws1{word-spacing:-78.165333pt;}
.ws0{word-spacing:-65.536000pt;}
.wsa{word-spacing:-50.133333pt;}
.ws9{word-spacing:-42.666667pt;}
.wsee{word-spacing:-26.957744pt;}
.wsed{word-spacing:-26.856779pt;}
.wsef{word-spacing:-25.948091pt;}
.wsf1{word-spacing:-25.847125pt;}
.wsf0{word-spacing:-25.746160pt;}
.wsf2{word-spacing:-25.544229pt;}
.ws107{word-spacing:-24.938437pt;}
.ws102{word-spacing:-24.130715pt;}
.wsd4{word-spacing:-17.000000pt;}
.ws38{word-spacing:-16.320000pt;}
.ws1c{word-spacing:-15.360000pt;}
.ws12{word-spacing:-12.336000pt;}
.ws14{word-spacing:-12.096000pt;}
.ws16{word-spacing:-12.048000pt;}
.ws39{word-spacing:-12.000000pt;}
.wsc0{word-spacing:-11.840000pt;}
.ws13{word-spacing:-11.760000pt;}
.ws15{word-spacing:-11.520000pt;}
.wsce{word-spacing:-11.466667pt;}
.wsb{word-spacing:-11.376000pt;}
.wsd9{word-spacing:-10.800000pt;}
.wsda{word-spacing:-10.512000pt;}
.wsac{word-spacing:-10.240000pt;}
.wsf3{word-spacing:-9.557333pt;}
.ws2{word-spacing:-9.546667pt;}
.ws110{word-spacing:-9.333333pt;}
.ws50{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.533333pt;}
.ws96{word-spacing:-7.058187pt;}
.ws1d{word-spacing:-6.996000pt;}
.wsc1{word-spacing:-6.902720pt;}
.wsba{word-spacing:-6.747253pt;}
.ws87{word-spacing:-6.685067pt;}
.ws7c{word-spacing:-6.653973pt;}
.wsd{word-spacing:-6.613333pt;}
.wsa0{word-spacing:-5.969920pt;}
.wsd1{word-spacing:-3.040000pt;}
.ws8c{word-spacing:-2.666667pt;}
.ws47{word-spacing:-2.506667pt;}
.ws24{word-spacing:-2.453333pt;}
.ws33{word-spacing:-2.400000pt;}
.wsc9{word-spacing:-2.346667pt;}
.wsf6{word-spacing:-2.304000pt;}
.ws48{word-spacing:-2.293333pt;}
.wse7{word-spacing:-2.256000pt;}
.ws99{word-spacing:-2.240000pt;}
.wsde{word-spacing:-2.208000pt;}
.wsd8{word-spacing:-2.186667pt;}
.wsdc{word-spacing:-2.160000pt;}
.wsd5{word-spacing:-2.133333pt;}
.ws109{word-spacing:-2.128000pt;}
.wsdd{word-spacing:-2.112000pt;}
.ws76{word-spacing:-2.080000pt;}
.wsa4{word-spacing:-2.048000pt;}
.ws7d{word-spacing:-2.026667pt;}
.wsa1{word-spacing:-1.973333pt;}
.wse1{word-spacing:-1.968000pt;}
.wsa6{word-spacing:-1.962667pt;}
.ws46{word-spacing:-1.920000pt;}
.ws52{word-spacing:-1.866667pt;}
.ws4d{word-spacing:-1.829333pt;}
.ws4b{word-spacing:-1.813333pt;}
.ws61{word-spacing:-1.792000pt;}
.wsbf{word-spacing:-1.760000pt;}
.ws73{word-spacing:-1.754667pt;}
.wsab{word-spacing:-1.717333pt;}
.ws30{word-spacing:-1.706667pt;}
.wscc{word-spacing:-1.653333pt;}
.wsb0{word-spacing:-1.621333pt;}
.ws2b{word-spacing:-1.600000pt;}
.ws94{word-spacing:-1.568000pt;}
.ws7e{word-spacing:-1.546667pt;}
.ws104{word-spacing:-1.536000pt;}
.ws90{word-spacing:-1.493333pt;}
.ws1a{word-spacing:-1.440000pt;}
.ws8a{word-spacing:-1.386667pt;}
.ws105{word-spacing:-1.344000pt;}
.wsc3{word-spacing:-1.333333pt;}
.wsa3{word-spacing:-1.322667pt;}
.ws106{word-spacing:-1.306667pt;}
.wsbe{word-spacing:-1.280000pt;}
.ws63{word-spacing:-1.232000pt;}
.wsa9{word-spacing:-1.226667pt;}
.ws92{word-spacing:-1.173333pt;}
.ws23{word-spacing:-1.120000pt;}
.ws35{word-spacing:-1.066667pt;}
.ws3f{word-spacing:-1.013333pt;}
.wsdb{word-spacing:-1.000000pt;}
.ws5{word-spacing:-0.960000pt;}
.ws54{word-spacing:-0.906667pt;}
.ws40{word-spacing:-0.853333pt;}
.ws57{word-spacing:-0.800000pt;}
.ws4f{word-spacing:-0.784000pt;}
.ws1e{word-spacing:-0.768000pt;}
.ws6b{word-spacing:-0.746667pt;}
.ws56{word-spacing:-0.693333pt;}
.wse0{word-spacing:-0.672000pt;}
.ws1f{word-spacing:-0.640000pt;}
.wscd{word-spacing:-0.634667pt;}
.ws101{word-spacing:-0.605792pt;}
.wsfe{word-spacing:-0.597333pt;}
.wsbb{word-spacing:-0.586667pt;}
.ws62{word-spacing:-0.560000pt;}
.ws1b{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.512000pt;}
.ws2d{word-spacing:-0.485333pt;}
.ws29{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.426667pt;}
.wsf5{word-spacing:-0.398933pt;}
.ws11{word-spacing:-0.384000pt;}
.ws58{word-spacing:-0.373333pt;}
.ws7b{word-spacing:-0.336000pt;}
.ws67{word-spacing:-0.320000pt;}
.ws2e{word-spacing:-0.298667pt;}
.ws37{word-spacing:-0.266667pt;}
.ws86{word-spacing:-0.261333pt;}
.ws22{word-spacing:-0.213333pt;}
.ws5b{word-spacing:-0.186667pt;}
.ws9a{word-spacing:-0.160000pt;}
.ws6{word-spacing:-0.144000pt;}
.wsf{word-spacing:-0.112000pt;}
.ws83{word-spacing:-0.106667pt;}
.ws19{word-spacing:-0.096000pt;}
.wsa8{word-spacing:-0.085333pt;}
.ws70{word-spacing:-0.062187pt;}
.ws49{word-spacing:-0.053333pt;}
.ws72{word-spacing:-0.037333pt;}
.wsad{word-spacing:-0.031093pt;}
.ws7{word-spacing:0.000000pt;}
.wscf{word-spacing:0.031093pt;}
.wsd0{word-spacing:0.037333pt;}
.ws93{word-spacing:0.074667pt;}
.wsca{word-spacing:0.093280pt;}
.ws18{word-spacing:0.096000pt;}
.ws55{word-spacing:0.106667pt;}
.wsb1{word-spacing:0.128000pt;}
.ws20{word-spacing:0.144000pt;}
.ws71{word-spacing:0.149333pt;}
.ws45{word-spacing:0.160000pt;}
.ws8d{word-spacing:0.186560pt;}
.ws51{word-spacing:0.213333pt;}
.ws89{word-spacing:0.217653pt;}
.ws17{word-spacing:0.240000pt;}
.ws75{word-spacing:0.266667pt;}
.ws4{word-spacing:0.288000pt;}
.ws10{word-spacing:0.298667pt;}
.ws4c{word-spacing:0.320000pt;}
.wsec{word-spacing:0.336000pt;}
.ws84{word-spacing:0.373333pt;}
.wsbd{word-spacing:0.426667pt;}
.wsf4{word-spacing:0.438827pt;}
.ws9e{word-spacing:0.480000pt;}
.ws10e{word-spacing:0.504827pt;}
.ws26{word-spacing:0.533333pt;}
.wsb4{word-spacing:0.554667pt;}
.ws3c{word-spacing:0.586667pt;}
.ws5e{word-spacing:0.597333pt;}
.wsff{word-spacing:0.605792pt;}
.ws9d{word-spacing:0.640000pt;}
.ws80{word-spacing:0.693333pt;}
.wsa5{word-spacing:0.725333pt;}
.ws68{word-spacing:0.746667pt;}
.wsfd{word-spacing:0.784000pt;}
.ws59{word-spacing:0.800000pt;}
.ws95{word-spacing:0.821333pt;}
.ws7a{word-spacing:0.853333pt;}
.ws85{word-spacing:0.906667pt;}
.ws25{word-spacing:0.960000pt;}
.ws64{word-spacing:0.970667pt;}
.wsb2{word-spacing:0.981333pt;}
.ws69{word-spacing:1.013333pt;}
.ws3e{word-spacing:1.066667pt;}
.ws9f{word-spacing:1.082667pt;}
.ws3b{word-spacing:1.120000pt;}
.ws81{word-spacing:1.173333pt;}
.ws65{word-spacing:1.194667pt;}
.ws21{word-spacing:1.226667pt;}
.wsb6{word-spacing:1.280000pt;}
.wsfc{word-spacing:1.322667pt;}
.ws8e{word-spacing:1.333333pt;}
.wsd3{word-spacing:1.344000pt;}
.wsa7{word-spacing:1.365333pt;}
.wsc4{word-spacing:1.386667pt;}
.ws5f{word-spacing:1.418667pt;}
.wsb7{word-spacing:1.440000pt;}
.ws6c{word-spacing:1.493333pt;}
.ws9b{word-spacing:1.546667pt;}
.ws78{word-spacing:1.600000pt;}
.ws60{word-spacing:1.605333pt;}
.wse8{word-spacing:1.632000pt;}
.ws34{word-spacing:1.653333pt;}
.wsb5{word-spacing:1.706667pt;}
.ws97{word-spacing:1.760000pt;}
.ws77{word-spacing:1.813333pt;}
.ws3d{word-spacing:1.866667pt;}
.wsaf{word-spacing:1.877333pt;}
.ws74{word-spacing:1.904000pt;}
.ws42{word-spacing:1.920000pt;}
.wsb9{word-spacing:1.973333pt;}
.ws5d{word-spacing:2.016000pt;}
.ws6a{word-spacing:2.080000pt;}
.wse2{word-spacing:2.112000pt;}
.wsc2{word-spacing:2.133333pt;}
.wsa2{word-spacing:2.186667pt;}
.ws41{word-spacing:2.240000pt;}
.ws43{word-spacing:2.293333pt;}
.wsb3{word-spacing:2.304000pt;}
.ws2a{word-spacing:2.346667pt;}
.ws4a{word-spacing:2.400000pt;}
.ws2f{word-spacing:2.453333pt;}
.ws8f{word-spacing:2.464000pt;}
.wse3{word-spacing:2.496000pt;}
.ws82{word-spacing:2.506667pt;}
.ws6f{word-spacing:2.560000pt;}
.wsc8{word-spacing:2.576000pt;}
.wse6{word-spacing:2.592000pt;}
.ws79{word-spacing:2.613333pt;}
.ws66{word-spacing:2.666667pt;}
.ws6d{word-spacing:2.773333pt;}
.ws10f{word-spacing:2.800000pt;}
.ws36{word-spacing:2.826667pt;}
.ws44{word-spacing:2.880000pt;}
.ws4e{word-spacing:2.912000pt;}
.wsd2{word-spacing:2.933333pt;}
.ws5c{word-spacing:2.949333pt;}
.ws9c{word-spacing:2.986667pt;}
.ws7f{word-spacing:3.040000pt;}
.ws31{word-spacing:3.093333pt;}
.wse4{word-spacing:3.120000pt;}
.ws98{word-spacing:3.146667pt;}
.wseb{word-spacing:3.168000pt;}
.wsb8{word-spacing:3.200000pt;}
.ws91{word-spacing:3.253333pt;}
.wsc6{word-spacing:3.306667pt;}
.ws53{word-spacing:3.360000pt;}
.wsae{word-spacing:3.370667pt;}
.wsea{word-spacing:3.408000pt;}
.wsbc{word-spacing:3.413333pt;}
.wse9{word-spacing:3.456000pt;}
.wsc7{word-spacing:3.466667pt;}
.wse5{word-spacing:3.504000pt;}
.wsc5{word-spacing:3.520000pt;}
.wsdf{word-spacing:3.552000pt;}
.ws8b{word-spacing:3.573333pt;}
.ws6e{word-spacing:3.626667pt;}
.ws88{word-spacing:3.680000pt;}
.ws5a{word-spacing:3.733333pt;}
.ws10b{word-spacing:3.770667pt;}
.wsd7{word-spacing:3.786667pt;}
.ws10d{word-spacing:3.808000pt;}
.ws3a{word-spacing:3.840000pt;}
.ws27{word-spacing:3.893333pt;}
.ws28{word-spacing:3.946667pt;}
.wsfa{word-spacing:3.957333pt;}
.wsf8{word-spacing:3.968000pt;}
.ws32{word-spacing:4.000000pt;}
.ws108{word-spacing:4.096000pt;}
.wsaa{word-spacing:4.213333pt;}
.wscb{word-spacing:4.373333pt;}
.ws103{word-spacing:4.394667pt;}
.wse{word-spacing:4.480000pt;}
.ws10c{word-spacing:4.592000pt;}
.ws10a{word-spacing:4.741333pt;}
.ws100{word-spacing:6.309333pt;}
.wsf9{word-spacing:7.504000pt;}
.wsfb{word-spacing:7.616000pt;}
.ws2c{word-spacing:7.840000pt;}
.wsf7{word-spacing:8.928000pt;}
.wsd6{word-spacing:11.520000pt;}
._2d{margin-left:-24.332645pt;}
._2b{margin-left:-15.160178pt;}
._2c{margin-left:-12.757354pt;}
._1e{margin-left:-10.192000pt;}
._7{margin-left:-8.533333pt;}
._10{margin-left:-6.613333pt;}
._b{margin-left:-5.026667pt;}
._1d{margin-left:-3.844800pt;}
._8{margin-left:-2.798933pt;}
._a{margin-left:-1.435200pt;}
._9{width:1.430400pt;}
._c{width:2.720000pt;}
._e{width:3.712000pt;}
._6{width:5.085867pt;}
._4{width:6.212267pt;}
._2{width:7.270400pt;}
._5{width:9.147733pt;}
._21{width:10.133333pt;}
._f{width:11.029333pt;}
._d{width:12.074667pt;}
._1f{width:13.533333pt;}
._20{width:14.533333pt;}
._3{width:17.544533pt;}
._1{width:18.875733pt;}
._0{width:20.036267pt;}
._14{width:22.752000pt;}
._15{width:23.817600pt;}
._1c{width:25.595733pt;}
._1b{width:26.880533pt;}
._13{width:35.376000pt;}
._16{width:36.297600pt;}
._12{width:47.433600pt;}
._1a{width:79.598933pt;}
._18{width:83.246933pt;}
._19{width:85.454933pt;}
._17{width:87.182933pt;}
._11{width:216.901867pt;}
._25{width:245.891200pt;}
._2a{width:396.767205pt;}
._26{width:467.755733pt;}
._24{width:473.744171pt;}
._29{width:520.203461pt;}
._27{width:562.948437pt;}
._28{width:566.137013pt;}
._22{width:648.007227pt;}
._23{width:674.817008pt;}
.fsd{font-size:24.874667pt;}
.fsb{font-size:31.093333pt;}
.fs7{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fsf{font-size:39.893333pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs9{font-size:66.666667pt;}
.fsa{font-size:80.000000pt;}
.fs8{font-size:96.000000pt;}
.fs10{font-size:100.965333pt;}
.fse{font-size:122.666667pt;}
.fs5{font-size:213.333333pt;}
.fs0{font-size:341.333333pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:65.562400pt;}
.y38{bottom:72.462400pt;}
.y39{bottom:75.962400pt;}
.y37{bottom:124.609733pt;}
.ye{bottom:124.611067pt;}
.y6a{bottom:124.611200pt;}
.y58{bottom:124.611333pt;}
.y7c{bottom:124.614133pt;}
.yab{bottom:124.615333pt;}
.yc8{bottom:124.619467pt;}
.ya1{bottom:124.623600pt;}
.y8c{bottom:124.627467pt;}
.yc4{bottom:124.627600pt;}
.ybe{bottom:124.627733pt;}
.y94{bottom:124.631733pt;}
.y9c{bottom:124.639733pt;}
.yfe{bottom:126.655067pt;}
.y69{bottom:135.811200pt;}
.y57{bottom:135.811333pt;}
.yce{bottom:137.411067pt;}
.yd1{bottom:137.411200pt;}
.yaa{bottom:137.411333pt;}
.yc7{bottom:137.415467pt;}
.ya0{bottom:137.419600pt;}
.y8b{bottom:137.423467pt;}
.yc3{bottom:137.423600pt;}
.ybd{bottom:137.423733pt;}
.y93{bottom:137.427733pt;}
.y9b{bottom:137.435733pt;}
.y7b{bottom:139.015467pt;}
.y12d{bottom:140.745867pt;}
.y12e{bottom:140.879200pt;}
.yfd{bottom:141.055067pt;}
.y36{bottom:141.277733pt;}
.y148{bottom:143.499200pt;}
.y68{bottom:147.011200pt;}
.y56{bottom:147.011333pt;}
.y87{bottom:147.019467pt;}
.ycf{bottom:148.615467pt;}
.y9f{bottom:148.619600pt;}
.ycd{bottom:150.211200pt;}
.ya9{bottom:150.211467pt;}
.y7a{bottom:150.215467pt;}
.yb9{bottom:150.215600pt;}
.y8a{bottom:150.219467pt;}
.yc2{bottom:150.219600pt;}
.ybc{bottom:150.219733pt;}
.y92{bottom:150.223733pt;}
.y9a{bottom:150.231733pt;}
.y145{bottom:154.565867pt;}
.y147{bottom:154.699200pt;}
.yfc{bottom:155.455067pt;}
.y67{bottom:158.211333pt;}
.y86{bottom:159.815467pt;}
.ycc{bottom:161.411200pt;}
.yc6{bottom:161.411467pt;}
.y9e{bottom:161.415600pt;}
.y35{bottom:161.859067pt;}
.y79{bottom:163.011467pt;}
.yb8{bottom:163.011600pt;}
.y89{bottom:163.015467pt;}
.yc1{bottom:163.015600pt;}
.ybb{bottom:163.015733pt;}
.y91{bottom:163.019733pt;}
.y99{bottom:163.027733pt;}
.y146{bottom:165.899200pt;}
.y83{bottom:169.411333pt;}
.yfb{bottom:169.855067pt;}
.y85{bottom:172.611467pt;}
.ycb{bottom:172.615600pt;}
.y78{bottom:174.211467pt;}
.y9d{bottom:174.211600pt;}
.y88{bottom:175.811467pt;}
.yc0{bottom:175.811600pt;}
.yba{bottom:175.811733pt;}
.y90{bottom:175.815733pt;}
.y98{bottom:175.823733pt;}
.y82{bottom:180.611467pt;}
.y12c{bottom:182.530667pt;}
.yfa{bottom:184.255067pt;}
.y77{bottom:185.411467pt;}
.yca{bottom:185.411600pt;}
.ybf{bottom:188.611467pt;}
.y8f{bottom:188.611733pt;}
.y97{bottom:188.619733pt;}
.yd0{bottom:191.321733pt;}
.y81{bottom:193.411467pt;}
.y76{bottom:196.611467pt;}
.yf9{bottom:198.655067pt;}
.y142{bottom:201.330133pt;}
.y96{bottom:201.415733pt;}
.y144{bottom:201.463467pt;}
.y80{bottom:206.211600pt;}
.y34{bottom:206.931067pt;}
.y75{bottom:207.811467pt;}
.y55{bottom:207.988400pt;}
.y143{bottom:212.663467pt;}
.yf8{bottom:213.055067pt;}
.y95{bottom:214.211733pt;}
.y74{bottom:219.011600pt;}
.y12b{bottom:222.541200pt;}
.y33{bottom:223.599067pt;}
.y54{bottom:224.655067pt;}
.yf7{bottom:227.455067pt;}
.y73{bottom:230.211600pt;}
.y7f{bottom:231.815867pt;}
.y128{bottom:233.607867pt;}
.y12a{bottom:233.741200pt;}
.y32{bottom:240.267067pt;}
.y66{bottom:241.321733pt;}
.y72{bottom:241.411600pt;}
.yf6{bottom:241.855067pt;}
.y7e{bottom:244.611867pt;}
.y129{bottom:244.941200pt;}
.y141{bottom:250.674000pt;}
.y71{bottom:252.615733pt;}
.yf5{bottom:256.255067pt;}
.y53{bottom:257.988400pt;}
.y13e{bottom:261.740667pt;}
.y140{bottom:261.874000pt;}
.y70{bottom:265.411733pt;}
.y31{bottom:268.671067pt;}
.yf4{bottom:270.655067pt;}
.y13f{bottom:273.074000pt;}
.y52{bottom:274.655067pt;}
.y127{bottom:275.392667pt;}
.y6f{bottom:276.611733pt;}
.yd{bottom:282.204667pt;}
.yf3{bottom:285.055067pt;}
.y126{bottom:286.592667pt;}
.y6e{bottom:287.811733pt;}
.y124{bottom:290.592667pt;}
.y51{bottom:291.321733pt;}
.y7d{bottom:295.761733pt;}
.y30{bottom:297.075067pt;}
.y6d{bottom:299.011733pt;}
.yf2{bottom:299.455067pt;}
.yc{bottom:300.871333pt;}
.y125{bottom:301.926000pt;}
.y50{bottom:307.988400pt;}
.y6c{bottom:310.211733pt;}
.y13d{bottom:312.417867pt;}
.y8e{bottom:312.428400pt;}
.yf1{bottom:313.855067pt;}
.y6b{bottom:321.411733pt;}
.y13a{bottom:323.484533pt;}
.y13c{bottom:323.617867pt;}
.y4f{bottom:324.655067pt;}
.y2f{bottom:325.479067pt;}
.yf0{bottom:328.255067pt;}
.y123{bottom:332.377333pt;}
.y13b{bottom:334.817867pt;}
.yb{bottom:338.190000pt;}
.y1b{bottom:341.320400pt;}
.y4e{bottom:341.321733pt;}
.yef{bottom:342.655067pt;}
.y121{bottom:343.444133pt;}
.y122{bottom:343.577467pt;}
.y2e{bottom:353.883067pt;}
.yee{bottom:357.055067pt;}
.y1a{bottom:357.988400pt;}
.ya{bottom:359.530000pt;}
.yed{bottom:371.455067pt;}
.y137{bottom:372.694933pt;}
.y139{bottom:372.828400pt;}
.y4d{bottom:374.655067pt;}
.ya8{bottom:375.988400pt;}
.y2d{bottom:382.287067pt;}
.y138{bottom:384.028267pt;}
.y120{bottom:385.228800pt;}
.yec{bottom:385.855067pt;}
.ya7{bottom:389.321733pt;}
.y4c{bottom:391.321733pt;}
.y11f{bottom:396.428800pt;}
.y2c{bottom:398.955067pt;}
.yeb{bottom:400.255067pt;}
.ya6{bottom:402.655067pt;}
.y11d{bottom:407.495467pt;}
.y11e{bottom:407.628800pt;}
.y19{bottom:407.988400pt;}
.yea{bottom:414.655067pt;}
.ya5{bottom:415.988400pt;}
.y18{bottom:424.655067pt;}
.y136{bottom:425.818400pt;}
.ye9{bottom:429.055067pt;}
.ya4{bottom:429.321733pt;}
.y9{bottom:436.867333pt;}
.y4b{bottom:441.321733pt;}
.ya3{bottom:442.655067pt;}
.ye8{bottom:443.455067pt;}
.y11c{bottom:449.280267pt;}
.y8{bottom:455.538000pt;}
.ya2{bottom:455.988400pt;}
.ye7{bottom:457.855067pt;}
.y4a{bottom:457.988400pt;}
.y11a{bottom:460.346933pt;}
.y11b{bottom:460.480267pt;}
.ye6{bottom:472.255067pt;}
.y49{bottom:474.655067pt;}
.y134{bottom:479.034133pt;}
.y135{bottom:479.167467pt;}
.ye5{bottom:486.655067pt;}
.y17{bottom:491.316400pt;}
.y48{bottom:491.321733pt;}
.ye4{bottom:501.055067pt;}
.y119{bottom:502.131733pt;}
.y65{bottom:507.988400pt;}
.y117{bottom:513.198400pt;}
.y118{bottom:513.331733pt;}
.ye3{bottom:515.455067pt;}
.y2b{bottom:518.691067pt;}
.y64{bottom:524.655067pt;}
.y133{bottom:528.377867pt;}
.yc5{bottom:529.095067pt;}
.ye2{bottom:529.855067pt;}
.y131{bottom:539.444667pt;}
.y132{bottom:539.578000pt;}
.y16{bottom:541.320400pt;}
.y63{bottom:541.321733pt;}
.ye1{bottom:544.255067pt;}
.y2a{bottom:547.095067pt;}
.y15{bottom:557.988400pt;}
.ye0{bottom:558.655067pt;}
.y7{bottom:561.716533pt;}
.y3{bottom:561.945467pt;}
.y29{bottom:563.763067pt;}
.y116{bottom:566.321733pt;}
.ydf{bottom:573.055067pt;}
.y41{bottom:574.655067pt;}
.y28{bottom:580.431067pt;}
.y115{bottom:582.321733pt;}
.yde{bottom:587.455067pt;}
.y12f{bottom:588.655067pt;}
.y130{bottom:588.788400pt;}
.y40{bottom:591.321733pt;}
.y27{bottom:597.099067pt;}
.y11{bottom:597.943467pt;}
.y114{bottom:598.988400pt;}
.ydd{bottom:601.855067pt;}
.yb7{bottom:605.988400pt;}
.y62{bottom:607.988400pt;}
.ydc{bottom:616.255067pt;}
.yb6{bottom:619.321733pt;}
.y3f{bottom:624.655067pt;}
.y26{bottom:625.503067pt;}
.y8d{bottom:629.095067pt;}
.ydb{bottom:630.655067pt;}
.yb5{bottom:632.655067pt;}
.y10a{bottom:635.188533pt;}
.y2{bottom:635.246800pt;}
.y6{bottom:638.238667pt;}
.y47{bottom:638.372400pt;}
.y3e{bottom:641.321733pt;}
.yda{bottom:645.055067pt;}
.yb4{bottom:645.988400pt;}
.y14{bottom:648.186267pt;}
.y10{bottom:648.610133pt;}
.y109{bottom:649.588533pt;}
.y5{bottom:652.902667pt;}
.y25{bottom:653.907067pt;}
.y61{bottom:657.988400pt;}
.y46{bottom:658.372400pt;}
.y13{bottom:658.854267pt;}
.yb3{bottom:659.321733pt;}
.yd9{bottom:659.455067pt;}
.y84{bottom:662.428400pt;}
.y108{bottom:663.988533pt;}
.y4{bottom:667.566667pt;}
.y12{bottom:669.522267pt;}
.y24{bottom:670.575067pt;}
.yb2{bottom:672.655067pt;}
.yd8{bottom:673.855067pt;}
.y3d{bottom:674.655067pt;}
.y45{bottom:678.372400pt;}
.y107{bottom:678.388533pt;}
.y10c{bottom:682.858667pt;}
.y10f{bottom:683.408400pt;}
.yb1{bottom:685.988400pt;}
.y23{bottom:687.243067pt;}
.yd7{bottom:688.255067pt;}
.y3c{bottom:691.321733pt;}
.y106{bottom:692.788533pt;}
.y10b{bottom:697.525333pt;}
.yf{bottom:699.276800pt;}
.yb0{bottom:699.321733pt;}
.yd6{bottom:702.655200pt;}
.y22{bottom:703.911067pt;}
.y105{bottom:707.188533pt;}
.y60{bottom:707.988400pt;}
.y1{bottom:708.548133pt;}
.y10e{bottom:710.088400pt;}
.yaf{bottom:712.655067pt;}
.yd5{bottom:717.055200pt;}
.y21{bottom:720.579067pt;}
.y104{bottom:721.588400pt;}
.y5f{bottom:724.655067pt;}
.yae{bottom:725.988400pt;}
.yd4{bottom:731.455200pt;}
.y44{bottom:734.655067pt;}
.y103{bottom:735.988400pt;}
.y10d{bottom:736.768400pt;}
.y20{bottom:737.247067pt;}
.yad{bottom:739.321733pt;}
.y5e{bottom:741.321733pt;}
.yc9{bottom:745.761867pt;}
.yd3{bottom:745.855200pt;}
.y102{bottom:750.388533pt;}
.y1f{bottom:753.915067pt;}
.y5d{bottom:757.988400pt;}
.y43{bottom:758.655067pt;}
.yd2{bottom:760.255067pt;}
.y101{bottom:764.788533pt;}
.y113{bottom:766.516800pt;}
.y5c{bottom:774.655067pt;}
.y100{bottom:779.188533pt;}
.y1e{bottom:782.319067pt;}
.y42{bottom:782.655067pt;}
.y5b{bottom:791.321733pt;}
.yff{bottom:793.588400pt;}
.y1d{bottom:798.987067pt;}
.y3b{bottom:806.655067pt;}
.y5a{bottom:807.988400pt;}
.yac{bottom:812.428533pt;}
.y1c{bottom:815.655067pt;}
.y112{bottom:816.203253pt;}
.y111{bottom:827.433227pt;}
.y110{bottom:838.663200pt;}
.y59{bottom:862.370800pt;}
.h1a{height:26.771360pt;}
.hc{height:27.178667pt;}
.h1f{height:29.042347pt;}
.h10{height:29.744000pt;}
.h19{height:31.994667pt;}
.h18{height:32.032000pt;}
.hb{height:32.480000pt;}
.h20{height:34.560000pt;}
.h1e{height:34.707200pt;}
.h4{height:34.944000pt;}
.h8{height:36.608000pt;}
.h23{height:36.906667pt;}
.h1c{height:37.120000pt;}
.hf{height:41.136000pt;}
.hd{height:41.184000pt;}
.h1b{height:41.328000pt;}
.h3{height:41.760000pt;}
.h7{height:45.760000pt;}
.h17{height:45.920000pt;}
.h14{height:46.133333pt;}
.he{height:46.400000pt;}
.h6{height:50.336000pt;}
.h5{height:51.040000pt;}
.h16{height:55.360000pt;}
.h13{height:57.666667pt;}
.h12{height:58.000000pt;}
.h15{height:69.600000pt;}
.h24{height:75.925931pt;}
.h21{height:81.941333pt;}
.h22{height:82.240000pt;}
.h11{height:83.520000pt;}
.h1d{height:92.245333pt;}
.h9{height:160.426667pt;}
.ha{height:162.773333pt;}
.h2{height:256.682667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:40.157467pt;}
.x23{left:43.562000pt;}
.x21{left:44.598400pt;}
.x22{left:69.437467pt;}
.x25{left:72.689867pt;}
.x24{left:73.949600pt;}
.x1{left:74.926533pt;}
.x3{left:80.314933pt;}
.x27{left:83.341467pt;}
.x26{left:84.366533pt;}
.x9{left:97.170667pt;}
.xa{left:100.552533pt;}
.x5{left:120.472400pt;}
.x6{left:136.468400pt;}
.x18{left:160.472400pt;}
.x7{left:187.842533pt;}
.x10{left:211.661467pt;}
.x15{left:214.836133pt;}
.x11{left:217.718667pt;}
.x16{left:222.530000pt;}
.x1e{left:331.339600pt;}
.x20{left:332.597467pt;}
.x1f{left:333.676800pt;}
.xd{left:339.537600pt;}
.xc{left:341.972933pt;}
.x4{left:361.606267pt;}
.x28{left:371.038800pt;}
.x29{left:372.616267pt;}
.x2a{left:375.514133pt;}
.x2b{left:377.369333pt;}
.xb{left:429.670267pt;}
.x19{left:449.023867pt;}
.x1a{left:456.053333pt;}
.x2{left:462.720400pt;}
.xe{left:496.438400pt;}
.xf{left:503.362667pt;}
.x12{left:517.314800pt;}
.x8{left:522.047333pt;}
.x1b{left:524.156400pt;}
.x17{left:529.766400pt;}
.x1c{left:531.390133pt;}
.x13{left:552.041467pt;}
.x14{left:558.854267pt;}
}




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