
    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_e05db1d43c64b371f27e1c88.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_91730537eaeea0a9d45c5a70.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932000;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_684ebfc0b367620884189b1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952000;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_e667b465e4fc4792cfccd0d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_5a6ef6bd3f76ef80602a00c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e12b8a47d04c65418cad6352.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_5d8bd93dc21da565d00cb381.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a5a501bc09b0a39f454ed27b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m77{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.242717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242717,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.242856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242856,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.242861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242861,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243056,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.243111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243111,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.243189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243189,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.243197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243197,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.243242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243242,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.243319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243319,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.243339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243339,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.243378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243378,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.243406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243406,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.243417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243417,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.243494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243494,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.243514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243514,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.243517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243517,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.243547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243547,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.243592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243592,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.243672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243672,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.243719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243719,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.243733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243733,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.243769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243769,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.243892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243892,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.244017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244017,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.244147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244147,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.244228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244228,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.244289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244289,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.244333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244333,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.244394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244394,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.244422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244422,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.244511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244511,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.244583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244583,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.244633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244633,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.244661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244661,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.244836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244836,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244883,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.244931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244931,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.244983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244983,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.m5d{transform:matrix(0.245069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245069,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.245071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245071,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.245272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245272,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.245364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245364,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.245468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245468,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245508,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245586,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245778,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.245882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245882,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246008,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.246083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246083,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.246128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246128,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.246133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246133,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.246208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246208,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.246253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246253,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.246278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246278,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246333,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246431,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.246482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246482,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.246547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246547,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246561,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.246589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246589,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246643,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246661,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246669,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.246731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246731,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246881,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.246904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246904,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.246996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246996,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.247014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247014,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247056,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.247129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247129,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247161,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247253,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247444,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247467,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247628,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247689,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247744,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.247771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247771,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.247796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247796,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247872,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247893,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248058,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248421,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.248493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248493,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m68{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248844,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249197,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249403,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249417,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,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);}
.m8b{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250094,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250279,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250456,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250658,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250661,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.250679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250679,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251089,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251150,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251156,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251181,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251294,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251354,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251439,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251489,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251589,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);}
.m55{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);}
.mb9{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251942,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.252093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252093,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.252196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252196,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.252428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252428,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252693,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.252818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252818,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.252918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252918,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253642,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253644,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.253864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253864,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.254264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254264,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.254521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254521,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.254568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254568,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.254657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254657,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.254779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254779,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.me{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);}
.v1{vertical-align:-23.760600px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v4{vertical-align:19.440000px;}
.ls14{letter-spacing:-5.076000px;}
.ls32{letter-spacing:-2.856000px;}
.ls11{letter-spacing:-2.376000px;}
.ls21{letter-spacing:-1.944000px;}
.ls2c{letter-spacing:-1.890000px;}
.ls23{letter-spacing:-1.674000px;}
.ls29{letter-spacing:-1.620000px;}
.ls31{letter-spacing:-1.554000px;}
.ls22{letter-spacing:-1.512000px;}
.ls2e{letter-spacing:-1.470000px;}
.ls2a{letter-spacing:-1.080000px;}
.ls34{letter-spacing:-1.050000px;}
.ls16{letter-spacing:-0.972000px;}
.ls8{letter-spacing:-0.882000px;}
.lsf{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.798000px;}
.ls9{letter-spacing:-0.756000px;}
.lsd{letter-spacing:-0.729000px;}
.ls2f{letter-spacing:-0.672000px;}
.ls13{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.588000px;}
.ls15{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.546000px;}
.lsb{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.486000px;}
.ls12{letter-spacing:-0.432000px;}
.ls2d{letter-spacing:-0.420000px;}
.ls2b{letter-spacing:-0.405000px;}
.ls1a{letter-spacing:-0.378000px;}
.ls18{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.336000px;}
.lsc{letter-spacing:-0.330000px;}
.lse{letter-spacing:-0.270000px;}
.ls1c{letter-spacing:-0.252000px;}
.ls33{letter-spacing:-0.126000px;}
.ls5{letter-spacing:-0.099000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000120px;}
.lsa{letter-spacing:0.066000px;}
.ls7{letter-spacing:0.121500px;}
.ls1e{letter-spacing:0.210000px;}
.ls1b{letter-spacing:0.252000px;}
.ls0{letter-spacing:0.297000px;}
.ls28{letter-spacing:1.026000px;}
.ls20{letter-spacing:1.079714px;}
.ls1f{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.585140px;}
.ls4{letter-spacing:2.100000px;}
.ls26{letter-spacing:112.354200px;}
.ls25{letter-spacing:151.160400px;}
.ls24{letter-spacing:156.942000px;}
.ls17{letter-spacing:969.629400px;}
.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;}
}
.ws5{word-spacing:-31.626000px;}
.wsb3{word-spacing:-20.331000px;}
.ws23{word-spacing:-20.088000px;}
.wsb2{word-spacing:-19.845000px;}
.ws76{word-spacing:-18.873000px;}
.ws5a{word-spacing:-13.878000px;}
.ws75{word-spacing:-13.338000px;}
.ws9{word-spacing:-13.122000px;}
.ws8{word-spacing:-12.582000px;}
.ws25{word-spacing:-12.258000px;}
.ws24{word-spacing:-11.988000px;}
.ws3{word-spacing:-11.298000px;}
.ws2{word-spacing:-10.794000px;}
.ws77{word-spacing:-10.746000px;}
.ws20{word-spacing:-10.248000px;}
.ws6{word-spacing:-10.007580px;}
.ws62{word-spacing:-9.744000px;}
.wsb4{word-spacing:-9.282000px;}
.ws5c{word-spacing:-9.198000px;}
.ws5b{word-spacing:-8.988000px;}
.wsde{word-spacing:-8.820000px;}
.wsdf{word-spacing:-8.106000px;}
.ws4{word-spacing:-8.019000px;}
.wsa{word-spacing:-7.689000px;}
.ws7{word-spacing:-6.665820px;}
.wsc8{word-spacing:-2.310000px;}
.wsc1{word-spacing:-1.680000px;}
.ws15{word-spacing:-1.458000px;}
.ws89{word-spacing:-1.404000px;}
.wsc2{word-spacing:-1.260000px;}
.ws28{word-spacing:-1.242000px;}
.ws31{word-spacing:-1.188000px;}
.wsaa{word-spacing:-1.134000px;}
.ws26{word-spacing:-1.050000px;}
.ws87{word-spacing:-1.026000px;}
.ws65{word-spacing:-0.972000px;}
.wsc7{word-spacing:-0.966000px;}
.ws8a{word-spacing:-0.918000px;}
.ws57{word-spacing:-0.864000px;}
.ws84{word-spacing:-0.810000px;}
.wsf7{word-spacing:-0.798000px;}
.wse9{word-spacing:-0.714000px;}
.ws2b{word-spacing:-0.648000px;}
.wseb{word-spacing:-0.588000px;}
.ws4f{word-spacing:-0.540000px;}
.ws51{word-spacing:-0.486000px;}
.ws7c{word-spacing:-0.432000px;}
.wsf0{word-spacing:-0.420000px;}
.ws7a{word-spacing:-0.378000px;}
.ws67{word-spacing:-0.324000px;}
.wsf{word-spacing:-0.297000px;}
.wsf8{word-spacing:-0.294000px;}
.ws85{word-spacing:-0.270000px;}
.ws71{word-spacing:-0.252000px;}
.ws41{word-spacing:-0.216000px;}
.ws3b{word-spacing:-0.162000px;}
.ws19{word-spacing:-0.108000px;}
.wsec{word-spacing:-0.084000px;}
.ws14{word-spacing:-0.066000px;}
.ws16{word-spacing:-0.054000px;}
.ws94{word-spacing:-0.042000px;}
.ws63{word-spacing:-0.039000px;}
.ws11{word-spacing:-0.001000px;}
.ws10{word-spacing:-0.000786px;}
.wsb{word-spacing:0.000000px;}
.ws47{word-spacing:0.054000px;}
.ws4d{word-spacing:0.081000px;}
.ws112{word-spacing:0.084000px;}
.wsc{word-spacing:0.099000px;}
.ws52{word-spacing:0.108000px;}
.wsce{word-spacing:0.126000px;}
.ws55{word-spacing:0.162000px;}
.wsea{word-spacing:0.168000px;}
.ws46{word-spacing:0.216000px;}
.wscc{word-spacing:0.252000px;}
.ws2c{word-spacing:0.270000px;}
.ws106{word-spacing:0.294000px;}
.ws1c{word-spacing:0.324000px;}
.ws72{word-spacing:0.336000px;}
.wsc9{word-spacing:0.420000px;}
.ws32{word-spacing:0.432000px;}
.wsf2{word-spacing:0.462000px;}
.ws56{word-spacing:0.486000px;}
.ws3a{word-spacing:0.540000px;}
.wscd{word-spacing:0.546000px;}
.wsbb{word-spacing:0.567000px;}
.wsd6{word-spacing:0.630000px;}
.ws3f{word-spacing:0.648000px;}
.ws30{word-spacing:0.702000px;}
.wsd5{word-spacing:0.714000px;}
.ws13{word-spacing:0.756000px;}
.ws114{word-spacing:0.798000px;}
.ws39{word-spacing:0.864000px;}
.ws12{word-spacing:0.882000px;}
.ws35{word-spacing:0.918000px;}
.wsc4{word-spacing:0.924000px;}
.wsc5{word-spacing:0.966000px;}
.wsa3{word-spacing:0.972000px;}
.ws117{word-spacing:1.008000px;}
.ws1d{word-spacing:1.026000px;}
.wsd7{word-spacing:1.050000px;}
.ws1b{word-spacing:1.080000px;}
.wsac{word-spacing:1.134000px;}
.ws116{word-spacing:1.176000px;}
.ws2d{word-spacing:1.188000px;}
.wsb6{word-spacing:1.215000px;}
.ws29{word-spacing:1.242000px;}
.wsd0{word-spacing:1.344000px;}
.ws3c{word-spacing:1.350000px;}
.wscf{word-spacing:1.386000px;}
.ws4a{word-spacing:1.404000px;}
.ws17{word-spacing:1.458000px;}
.wsca{word-spacing:1.470000px;}
.ws2e{word-spacing:1.512000px;}
.wsf3{word-spacing:1.554000px;}
.ws82{word-spacing:1.566000px;}
.wsc6{word-spacing:1.638000px;}
.ws109{word-spacing:1.680000px;}
.wsdb{word-spacing:1.722000px;}
.wsbe{word-spacing:1.728000px;}
.wsfb{word-spacing:1.764000px;}
.ws54{word-spacing:1.836000px;}
.ws113{word-spacing:1.890000px;}
.ws33{word-spacing:1.944000px;}
.wsc3{word-spacing:1.974000px;}
.ws18{word-spacing:1.998000px;}
.ws3d{word-spacing:2.052000px;}
.ws110{word-spacing:2.100000px;}
.wsa0{word-spacing:2.106000px;}
.wscb{word-spacing:2.184000px;}
.wsd{word-spacing:2.202905px;}
.ws70{word-spacing:2.214000px;}
.ws111{word-spacing:2.268000px;}
.ws81{word-spacing:2.322000px;}
.ws38{word-spacing:2.376000px;}
.ws102{word-spacing:2.394000px;}
.ws86{word-spacing:2.430000px;}
.wsa9{word-spacing:2.484000px;}
.ws7e{word-spacing:2.538000px;}
.wsfd{word-spacing:2.604000px;}
.ws66{word-spacing:2.646000px;}
.wsa5{word-spacing:2.700000px;}
.wsef{word-spacing:2.730000px;}
.ws8d{word-spacing:2.754000px;}
.wse{word-spacing:2.803697px;}
.ws1a{word-spacing:2.808000px;}
.ws10e{word-spacing:2.856000px;}
.wsa4{word-spacing:2.916000px;}
.ws2f{word-spacing:2.970000px;}
.ws107{word-spacing:3.024000px;}
.wse8{word-spacing:3.150000px;}
.ws7b{word-spacing:3.240000px;}
.ws10f{word-spacing:3.276000px;}
.wsba{word-spacing:3.294000px;}
.ws27{word-spacing:3.348000px;}
.wse2{word-spacing:3.360000px;}
.wse3{word-spacing:3.402000px;}
.ws6d{word-spacing:3.456000px;}
.ws48{word-spacing:3.510000px;}
.ws80{word-spacing:3.564000px;}
.wsd9{word-spacing:3.570000px;}
.ws6a{word-spacing:3.618000px;}
.wse5{word-spacing:3.654000px;}
.ws1e{word-spacing:3.780000px;}
.ws50{word-spacing:3.834000px;}
.wsda{word-spacing:3.864000px;}
.ws8c{word-spacing:3.942000px;}
.ws115{word-spacing:3.990000px;}
.ws37{word-spacing:4.104000px;}
.wsb5{word-spacing:4.158000px;}
.ws6f{word-spacing:4.212000px;}
.wsa8{word-spacing:4.482000px;}
.ws36{word-spacing:4.590000px;}
.ws101{word-spacing:4.620000px;}
.wsab{word-spacing:4.752000px;}
.ws34{word-spacing:4.806000px;}
.ws7d{word-spacing:4.914000px;}
.ws118{word-spacing:4.956000px;}
.ws119{word-spacing:4.998000px;}
.ws4c{word-spacing:5.076000px;}
.ws43{word-spacing:5.130000px;}
.wsfe{word-spacing:5.334000px;}
.wsa6{word-spacing:5.346000px;}
.wsf9{word-spacing:5.376000px;}
.ws78{word-spacing:5.400000px;}
.wsfa{word-spacing:5.418000px;}
.ws4e{word-spacing:5.454000px;}
.wsa7{word-spacing:5.562000px;}
.wsa1{word-spacing:5.724000px;}
.wsc0{word-spacing:5.964000px;}
.ws103{word-spacing:6.384000px;}
.ws2a{word-spacing:6.426000px;}
.wsf1{word-spacing:6.510000px;}
.ws6c{word-spacing:6.534000px;}
.ws104{word-spacing:6.552000px;}
.ws4b{word-spacing:6.858000px;}
.ws68{word-spacing:7.074000px;}
.wsb7{word-spacing:7.182000px;}
.wse0{word-spacing:7.224000px;}
.ws8b{word-spacing:7.236000px;}
.ws1f{word-spacing:7.290000px;}
.ws88{word-spacing:7.452000px;}
.wse1{word-spacing:7.476000px;}
.wsa2{word-spacing:7.560000px;}
.wsad{word-spacing:7.614000px;}
.wsf6{word-spacing:7.644000px;}
.wsd8{word-spacing:7.728000px;}
.wsbc{word-spacing:7.884000px;}
.wsfc{word-spacing:8.232000px;}
.ws100{word-spacing:8.358000px;}
.ws40{word-spacing:8.532000px;}
.ws7f{word-spacing:8.748000px;}
.ws45{word-spacing:8.856000px;}
.wse6{word-spacing:9.072000px;}
.wse7{word-spacing:9.156000px;}
.ws49{word-spacing:9.342000px;}
.wsb8{word-spacing:9.450000px;}
.ws6b{word-spacing:10.044000px;}
.wsb9{word-spacing:10.584000px;}
.ws44{word-spacing:10.854000px;}
.ws105{word-spacing:11.382000px;}
.wsbd{word-spacing:11.610000px;}
.wsae{word-spacing:11.664000px;}
.ws10a{word-spacing:11.676000px;}
.ws10b{word-spacing:11.802000px;}
.ws3e{word-spacing:11.826000px;}
.wsaf{word-spacing:12.096000px;}
.ws6e{word-spacing:12.798000px;}
.ws64{word-spacing:12.906000px;}
.wse4{word-spacing:13.482000px;}
.wsbf{word-spacing:13.650000px;}
.ws79{word-spacing:13.932000px;}
.wsd4{word-spacing:15.162000px;}
.ws53{word-spacing:15.336000px;}
.wsd1{word-spacing:17.136000px;}
.ws83{word-spacing:17.172000px;}
.wsd2{word-spacing:17.262000px;}
.ws42{word-spacing:17.496000px;}
.wsd3{word-spacing:18.480000px;}
.wsed{word-spacing:18.522000px;}
.wsee{word-spacing:18.858000px;}
.wsff{word-spacing:21.882000px;}
.ws10c{word-spacing:26.124000px;}
.ws10d{word-spacing:26.334000px;}
.ws69{word-spacing:29.268000px;}
.ws108{word-spacing:35.154000px;}
.wsf4{word-spacing:36.246000px;}
.wsf5{word-spacing:36.582000px;}
.ws90{word-spacing:47.615400px;}
.ws99{word-spacing:51.273600px;}
.ws95{word-spacing:51.480600px;}
.ws9e{word-spacing:55.578000px;}
.ws96{word-spacing:62.865000px;}
.ws9c{word-spacing:63.348000px;}
.ws92{word-spacing:65.658600px;}
.ws9f{word-spacing:77.250000px;}
.ws9b{word-spacing:83.798400px;}
.ws9a{word-spacing:90.980400px;}
.ws93{word-spacing:109.334400px;}
.ws98{word-spacing:119.032200px;}
.ws97{word-spacing:215.506200px;}
.ws5f{word-spacing:273.146400px;}
.ws60{word-spacing:298.682400px;}
.ws9d{word-spacing:312.535200px;}
.ws91{word-spacing:322.614600px;}
.ws5e{word-spacing:480.169200px;}
.ws61{word-spacing:482.075400px;}
.ws5d{word-spacing:978.322800px;}
.ws73{word-spacing:997.106400px;}
.wsb0{word-spacing:997.253400px;}
.ws21{word-spacing:997.820400px;}
.ws58{word-spacing:997.925400px;}
.ws8e{word-spacing:998.009400px;}
.wsdc{word-spacing:998.723400px;}
.ws0{word-spacing:999.563400px;}
.ws74{word-spacing:1168.340400px;}
.wsb1{word-spacing:1168.487400px;}
.ws22{word-spacing:1169.054400px;}
.ws59{word-spacing:1169.159400px;}
.ws8f{word-spacing:1169.243400px;}
.wsdd{word-spacing:1169.957400px;}
.ws1{word-spacing:1170.797400px;}
._5{margin-left:-11.298000px;}
._37{margin-left:-7.002899px;}
._8{margin-left:-5.238000px;}
._4{margin-left:-4.120200px;}
._2{margin-left:-3.046700px;}
._3{margin-left:-1.093501px;}
._6{width:1.282501px;}
._9{width:2.539966px;}
._a{width:3.984825px;}
._b{width:5.076000px;}
._1{width:6.275698px;}
._0{width:9.313800px;}
._30{width:59.087400px;}
._32{width:61.901400px;}
._33{width:67.793701px;}
._36{width:89.784000px;}
._f{width:98.562000px;}
._34{width:104.489400px;}
._2f{width:111.068701px;}
._e{width:126.238200px;}
._31{width:136.110297px;}
._35{width:142.152600px;}
._1d{width:248.746204px;}
._c{width:254.315701px;}
._16{width:279.802800px;}
._15{width:283.762800px;}
._12{width:299.962800px;}
._11{width:304.522800px;}
._10{width:310.198200px;}
._21{width:316.974000px;}
._14{width:319.522800px;}
._20{width:329.008800px;}
._2e{width:333.236101px;}
._2a{width:334.324802px;}
._1b{width:339.088800px;}
._1f{width:344.009400px;}
._2b{width:348.868198px;}
._29{width:352.964400px;}
._27{width:355.081200px;}
._1a{width:358.856400px;}
._26{width:364.184099px;}
._1c{width:369.556200px;}
._24{width:379.408800px;}
._25{width:389.716800px;}
._28{width:392.439297px;}
._23{width:399.176400px;}
._2c{width:419.588996px;}
._2d{width:421.117503px;}
._22{width:474.348901px;}
._1e{width:492.345000px;}
._13{width:680.044804px;}
._19{width:836.531701px;}
._17{width:941.320800px;}
._18{width:944.134800px;}
._d{width:1043.199301px;}
._7{width:1960.792501px;}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(25,25,25);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,36,176);}
.fc0{color:rgb(95,99,110);}
.fs5{font-size:24.780000px;}
.fsb{font-size:31.860000px;}
.fs1{font-size:33.000000px;}
.fs4{font-size:38.940000px;}
.fsa{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.149650px;}
.ye1{bottom:96.401700px;}
.y95{bottom:96.661200px;}
.yf5{bottom:97.151700px;}
.ye0{bottom:108.401700px;}
.yf4{bottom:109.151700px;}
.y94{bottom:114.661200px;}
.ydf{bottom:120.401700px;}
.yf3{bottom:121.151700px;}
.y93{bottom:132.661200px;}
.yde{bottom:138.776700px;}
.yf2{bottom:139.526700px;}
.y5a{bottom:150.661050px;}
.y92{bottom:150.661200px;}
.ydd{bottom:150.776700px;}
.yf1{bottom:151.526700px;}
.y13e{bottom:153.152850px;}
.y17f{bottom:153.291150px;}
.ydc{bottom:162.776700px;}
.yf0{bottom:163.526700px;}
.y13d{bottom:165.152850px;}
.y17e{bottom:165.378150px;}
.y59{bottom:168.661050px;}
.y91{bottom:168.661200px;}
.y13c{bottom:177.152850px;}
.y17d{bottom:177.465300px;}
.ydb{bottom:181.151700px;}
.yef{bottom:181.901700px;}
.y90{bottom:186.661200px;}
.y13b{bottom:189.152850px;}
.yda{bottom:193.151700px;}
.yee{bottom:193.901700px;}
.y17c{bottom:195.927450px;}
.y58{bottom:204.661050px;}
.y8f{bottom:204.661200px;}
.yed{bottom:205.901700px;}
.y13a{bottom:207.527850px;}
.y17b{bottom:208.014450px;}
.yd9{bottom:211.526700px;}
.yec{bottom:217.901700px;}
.y139{bottom:219.527850px;}
.y57{bottom:222.661050px;}
.y8e{bottom:222.661200px;}
.yd8{bottom:223.526700px;}
.y17a{bottom:226.476600px;}
.yd7{bottom:235.526700px;}
.yeb{bottom:236.276700px;}
.y138{bottom:237.902850px;}
.y179{bottom:238.563600px;}
.y56{bottom:240.661050px;}
.y8d{bottom:240.661200px;}
.yea{bottom:248.276700px;}
.y137{bottom:249.902850px;}
.y178{bottom:250.650750px;}
.yd6{bottom:253.901700px;}
.y55{bottom:258.661050px;}
.y8c{bottom:258.661200px;}
.ye9{bottom:260.276700px;}
.y136{bottom:261.902850px;}
.yd5{bottom:265.901700px;}
.y177{bottom:269.112900px;}
.ye8{bottom:272.276700px;}
.y54{bottom:276.661050px;}
.y8b{bottom:276.661200px;}
.yd4{bottom:277.901700px;}
.y135{bottom:280.277850px;}
.y176{bottom:281.199900px;}
.ye7{bottom:290.651700px;}
.y134{bottom:292.277850px;}
.y175{bottom:293.287050px;}
.y53{bottom:294.661050px;}
.y8a{bottom:294.661200px;}
.yd3{bottom:296.276700px;}
.ye6{bottom:302.651700px;}
.y133{bottom:304.277850px;}
.y174{bottom:305.374200px;}
.yd2{bottom:308.276700px;}
.y52{bottom:312.661050px;}
.y89{bottom:312.661200px;}
.ye5{bottom:314.651700px;}
.yd1{bottom:320.276700px;}
.y132{bottom:322.652850px;}
.y173{bottom:323.836200px;}
.ye4{bottom:326.651700px;}
.y51{bottom:330.661050px;}
.y88{bottom:330.661200px;}
.y131{bottom:334.652850px;}
.y172{bottom:335.923350px;}
.yd0{bottom:338.651700px;}
.ye3{bottom:345.026700px;}
.y130{bottom:346.652850px;}
.y171{bottom:348.010500px;}
.y50{bottom:348.661050px;}
.y87{bottom:348.661200px;}
.ycf{bottom:350.651700px;}
.ye2{bottom:357.026700px;}
.y12f{bottom:365.027850px;}
.y170{bottom:366.472500px;}
.y4f{bottom:366.661050px;}
.y86{bottom:366.661200px;}
.yce{bottom:369.026700px;}
.y12e{bottom:377.027850px;}
.y16f{bottom:378.559500px;}
.ycd{bottom:381.026700px;}
.y4e{bottom:384.661050px;}
.y85{bottom:384.661200px;}
.y12d{bottom:389.027850px;}
.y2e{bottom:389.093700px;}
.y16e{bottom:390.646650px;}
.ycc{bottom:393.026700px;}
.y2d{bottom:402.593700px;}
.y4d{bottom:402.661050px;}
.y84{bottom:402.661200px;}
.y16d{bottom:402.733800px;}
.y12c{bottom:407.402850px;}
.ycb{bottom:411.401700px;}
.y2c{bottom:416.093700px;}
.y12b{bottom:419.402850px;}
.y4c{bottom:420.661050px;}
.y83{bottom:420.661200px;}
.y16c{bottom:421.195800px;}
.yca{bottom:423.401700px;}
.y2b{bottom:429.593700px;}
.y12a{bottom:431.402850px;}
.y16b{bottom:433.282950px;}
.yc9{bottom:435.401700px;}
.y4b{bottom:438.661050px;}
.y82{bottom:438.661200px;}
.y2a{bottom:443.093700px;}
.y129{bottom:443.402850px;}
.y16a{bottom:445.370100px;}
.y29{bottom:456.593700px;}
.y4a{bottom:456.661050px;}
.y81{bottom:456.661200px;}
.y128{bottom:461.777850px;}
.y169{bottom:463.832100px;}
.y28{bottom:470.093700px;}
.y127{bottom:473.777850px;}
.y49{bottom:474.661050px;}
.y80{bottom:474.661200px;}
.y168{bottom:475.919250px;}
.y27{bottom:483.593700px;}
.y126{bottom:485.777850px;}
.y167{bottom:488.006250px;}
.y48{bottom:492.661050px;}
.y7f{bottom:492.661200px;}
.y26{bottom:497.093700px;}
.y125{bottom:504.152850px;}
.y166{bottom:506.468400px;}
.y25{bottom:510.593700px;}
.y47{bottom:510.661050px;}
.y7e{bottom:510.661200px;}
.y124{bottom:516.152850px;}
.y165{bottom:518.555400px;}
.y24{bottom:524.093700px;}
.y123{bottom:528.152850px;}
.y46{bottom:528.661050px;}
.y7d{bottom:528.661200px;}
.y164{bottom:530.642550px;}
.y23{bottom:537.593700px;}
.y122{bottom:546.527850px;}
.y45{bottom:546.661050px;}
.y7c{bottom:546.661200px;}
.y163{bottom:549.104700px;}
.y22{bottom:551.093700px;}
.y121{bottom:558.527850px;}
.y162{bottom:561.191700px;}
.y21{bottom:564.593700px;}
.y44{bottom:564.661050px;}
.y7b{bottom:564.661200px;}
.y120{bottom:570.527850px;}
.y20{bottom:578.093700px;}
.yb1{bottom:579.257550px;}
.y161{bottom:579.653850px;}
.y11f{bottom:582.527850px;}
.y43{bottom:582.661050px;}
.y7a{bottom:582.661200px;}
.y160{bottom:591.741000px;}
.yb0{bottom:592.757550px;}
.y1f{bottom:600.274200px;}
.y42{bottom:600.661050px;}
.y79{bottom:600.661200px;}
.y11e{bottom:600.902850px;}
.y15f{bottom:603.828000px;}
.y11d{bottom:612.902850px;}
.yaf{bottom:613.673400px;}
.y1e{bottom:613.774200px;}
.y41{bottom:618.661050px;}
.y78{bottom:618.661200px;}
.yc8{bottom:619.330800px;}
.y15e{bottom:622.290150px;}
.y11c{bottom:624.902850px;}
.y1d{bottom:627.274200px;}
.yae{bottom:632.423400px;}
.yc7{bottom:632.830800px;}
.y15d{bottom:634.377150px;}
.y40{bottom:636.661050px;}
.y77{bottom:636.661200px;}
.y1c{bottom:640.774200px;}
.y11b{bottom:643.277850px;}
.y15c{bottom:646.464300px;}
.yc6{bottom:653.988300px;}
.y1b{bottom:654.274200px;}
.yad{bottom:654.513450px;}
.y3f{bottom:654.661050px;}
.y76{bottom:654.661200px;}
.y11a{bottom:655.277850px;}
.y15b{bottom:658.551300px;}
.y1a{bottom:667.774200px;}
.y3e{bottom:672.661050px;}
.y75{bottom:672.661200px;}
.y119{bottom:673.652850px;}
.yc5{bottom:676.320000px;}
.yac{bottom:676.603500px;}
.y15a{bottom:677.013450px;}
.y19{bottom:681.274200px;}
.y118{bottom:685.652850px;}
.y159{bottom:689.100600px;}
.y3d{bottom:690.661050px;}
.y74{bottom:690.661200px;}
.y18{bottom:694.774200px;}
.yab{bottom:695.353500px;}
.y117{bottom:697.652850px;}
.yc4{bottom:698.651700px;}
.y158{bottom:701.187600px;}
.y3c{bottom:708.661050px;}
.y73{bottom:708.661200px;}
.y116{bottom:716.027850px;}
.y17{bottom:716.954700px;}
.yaa{bottom:717.443550px;}
.y157{bottom:719.649750px;}
.yc3{bottom:720.741750px;}
.y72{bottom:726.661200px;}
.y115{bottom:728.027850px;}
.y16{bottom:728.504700px;}
.y156{bottom:731.736900px;}
.ya9{bottom:739.533750px;}
.y114{bottom:740.027850px;}
.y15{bottom:740.054700px;}
.yc2{bottom:743.073450px;}
.y155{bottom:743.823900px;}
.y71{bottom:744.661200px;}
.y14{bottom:751.604700px;}
.y3b{bottom:753.517050px;}
.y113{bottom:758.402850px;}
.ya8{bottom:761.623800px;}
.y154{bottom:762.286050px;}
.y70{bottom:762.661200px;}
.yc1{bottom:765.163500px;}
.y3a{bottom:767.017050px;}
.y112{bottom:770.402850px;}
.y13{bottom:773.804700px;}
.y153{bottom:774.373050px;}
.y39{bottom:780.517050px;}
.y6f{bottom:780.661200px;}
.y111{bottom:782.402850px;}
.ya7{bottom:783.713850px;}
.y152{bottom:786.460200px;}
.y12{bottom:787.304700px;}
.yc0{bottom:787.495200px;}
.y38{bottom:797.797050px;}
.y6e{bottom:798.661200px;}
.y110{bottom:800.777850px;}
.y11{bottom:800.804700px;}
.y151{bottom:804.922350px;}
.ya6{bottom:805.803900px;}
.ybf{bottom:809.826900px;}
.y10f{bottom:812.777850px;}
.y10{bottom:814.304700px;}
.y6d{bottom:816.661200px;}
.y150{bottom:817.009350px;}
.y36{bottom:818.317050px;}
.y37{bottom:824.257200px;}
.y10e{bottom:824.777850px;}
.ya5{bottom:827.894100px;}
.ybe{bottom:831.916950px;}
.y6c{bottom:834.661200px;}
.y14f{bottom:835.471500px;}
.yf{bottom:836.485200px;}
.y10d{bottom:836.777850px;}
.y34{bottom:840.817050px;}
.y35{bottom:846.757200px;}
.y14e{bottom:847.558650px;}
.y10c{bottom:848.777850px;}
.ya4{bottom:849.984150px;}
.ye{bottom:849.985200px;}
.y6b{bottom:852.661200px;}
.ybd{bottom:854.248650px;}
.y14d{bottom:859.645650px;}
.yd{bottom:863.485200px;}
.y10b{bottom:867.152850px;}
.y6a{bottom:870.661200px;}
.y14c{bottom:871.732800px;}
.ya3{bottom:872.074200px;}
.ybc{bottom:876.580350px;}
.yc{bottom:876.985200px;}
.y10a{bottom:879.152850px;}
.y33{bottom:888.661050px;}
.y69{bottom:888.661200px;}
.y14b{bottom:890.194800px;}
.yb{bottom:890.485200px;}
.y109{bottom:891.152850px;}
.ya2{bottom:894.164400px;}
.ybb{bottom:898.912050px;}
.y14a{bottom:902.281800px;}
.y108{bottom:903.152850px;}
.ya{bottom:903.985200px;}
.y68{bottom:906.661200px;}
.y149{bottom:914.368950px;}
.ya1{bottom:916.254300px;}
.yba{bottom:921.243750px;}
.y107{bottom:921.527850px;}
.y32{bottom:924.661050px;}
.y67{bottom:924.661200px;}
.y9{bottom:926.165700px;}
.y148{bottom:932.831100px;}
.y106{bottom:933.527850px;}
.ya0{bottom:938.344500px;}
.y8{bottom:939.665700px;}
.y66{bottom:942.661200px;}
.yb9{bottom:943.575450px;}
.y147{bottom:944.918100px;}
.y105{bottom:945.527850px;}
.y7{bottom:953.165700px;}
.y146{bottom:957.005250px;}
.y9f{bottom:960.434550px;}
.y31{bottom:960.661050px;}
.y65{bottom:960.661200px;}
.y104{bottom:963.902850px;}
.yb8{bottom:965.907150px;}
.y6{bottom:966.665700px;}
.y145{bottom:969.092400px;}
.y103{bottom:975.902850px;}
.y64{bottom:978.661200px;}
.y9e{bottom:982.524600px;}
.y144{bottom:987.554400px;}
.y102{bottom:987.902850px;}
.yb7{bottom:987.997350px;}
.y5{bottom:988.846200px;}
.y30{bottom:996.661050px;}
.y63{bottom:996.661200px;}
.y143{bottom:999.641550px;}
.y101{bottom:999.902850px;}
.y9d{bottom:1001.274600px;}
.yb6{bottom:1010.328900px;}
.y62{bottom:1014.661200px;}
.y142{bottom:1018.103550px;}
.y100{bottom:1018.277850px;}
.y9c{bottom:1023.364800px;}
.y141{bottom:1030.190700px;}
.yff{bottom:1030.277850px;}
.yb5{bottom:1032.660600px;}
.y2f{bottom:1032.661050px;}
.y61{bottom:1032.661200px;}
.y140{bottom:1042.190700px;}
.yfe{bottom:1042.277850px;}
.y9b{bottom:1045.454700px;}
.y60{bottom:1050.661200px;}
.y13f{bottom:1054.190700px;}
.yfd{bottom:1054.277850px;}
.yb4{bottom:1054.992300px;}
.y5f{bottom:1068.661200px;}
.y9a{bottom:1071.188700px;}
.yfc{bottom:1072.652850px;}
.yb3{bottom:1077.082350px;}
.yfb{bottom:1084.652850px;}
.y5e{bottom:1086.661200px;}
.y99{bottom:1087.388700px;}
.yfa{bottom:1096.652850px;}
.yb2{bottom:1102.574700px;}
.y5d{bottom:1104.661200px;}
.yf9{bottom:1115.027850px;}
.y98{bottom:1118.774700px;}
.y96{bottom:1122.661200px;}
.yf8{bottom:1127.027850px;}
.yf7{bottom:1139.027850px;}
.y5c{bottom:1140.661200px;}
.y4{bottom:1148.045850px;}
.yf6{bottom:1151.027850px;}
.y97{bottom:1152.473700px;}
.y3{bottom:1161.545850px;}
.y2{bottom:1175.045850px;}
.y5b{bottom:1201.870050px;}
.h9{height:18.386760px;}
.h5{height:23.826000px;}
.h8{height:28.971360px;}
.h4{height:30.324000px;}
.h3{height:31.164000px;}
.h2{height:31.248000px;}
.h13{height:31.629000px;}
.ha{height:33.506760px;}
.h12{height:34.062000px;}
.hc{height:34.656000px;}
.h11{height:35.028600px;}
.hb{height:40.068000px;}
.h10{height:40.176000px;}
.h14{height:43.143840px;}
.he{height:43.794000px;}
.h7{height:49.104000px;}
.hf{height:53.568000px;}
.hd{height:60.264000px;}
.h6{height:93.744000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:74.409450px;}
.x3{left:84.280950px;}
.xc{left:91.605450px;}
.x8{left:95.653950px;}
.x15{left:152.325300px;}
.x11{left:211.341000px;}
.x4{left:329.527950px;}
.xd{left:340.808850px;}
.xf{left:355.674150px;}
.x12{left:359.994750px;}
.x13{left:363.711750px;}
.x14{left:381.623400px;}
.x9{left:431.004000px;}
.x7{left:451.824000px;}
.xa{left:457.071600px;}
.xb{left:478.331100px;}
.x5{left:524.245200px;}
.x10{left:555.657300px;}
.x6{left:646.462050px;}
.x2{left:661.618500px;}
.xe{left:729.098400px;}
@media print{
.v1{vertical-align:-21.120533pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v4{vertical-align:17.280000pt;}
.ls14{letter-spacing:-4.512000pt;}
.ls32{letter-spacing:-2.538667pt;}
.ls11{letter-spacing:-2.112000pt;}
.ls21{letter-spacing:-1.728000pt;}
.ls2c{letter-spacing:-1.680000pt;}
.ls23{letter-spacing:-1.488000pt;}
.ls29{letter-spacing:-1.440000pt;}
.ls31{letter-spacing:-1.381333pt;}
.ls22{letter-spacing:-1.344000pt;}
.ls2e{letter-spacing:-1.306667pt;}
.ls2a{letter-spacing:-0.960000pt;}
.ls34{letter-spacing:-0.933333pt;}
.ls16{letter-spacing:-0.864000pt;}
.ls8{letter-spacing:-0.784000pt;}
.lsf{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.709333pt;}
.ls9{letter-spacing:-0.672000pt;}
.lsd{letter-spacing:-0.648000pt;}
.ls2f{letter-spacing:-0.597333pt;}
.ls13{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.522667pt;}
.ls15{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.485333pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.432000pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls2d{letter-spacing:-0.373333pt;}
.ls2b{letter-spacing:-0.360000pt;}
.ls1a{letter-spacing:-0.336000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.298667pt;}
.lsc{letter-spacing:-0.293333pt;}
.lse{letter-spacing:-0.240000pt;}
.ls1c{letter-spacing:-0.224000pt;}
.ls33{letter-spacing:-0.112000pt;}
.ls5{letter-spacing:-0.088000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000107pt;}
.lsa{letter-spacing:0.058667pt;}
.ls7{letter-spacing:0.108000pt;}
.ls1e{letter-spacing:0.186667pt;}
.ls1b{letter-spacing:0.224000pt;}
.ls0{letter-spacing:0.264000pt;}
.ls28{letter-spacing:0.912000pt;}
.ls20{letter-spacing:0.959746pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.409013pt;}
.ls4{letter-spacing:1.866667pt;}
.ls26{letter-spacing:99.870400pt;}
.ls25{letter-spacing:134.364800pt;}
.ls24{letter-spacing:139.504000pt;}
.ls17{letter-spacing:861.892800pt;}
.ws5{word-spacing:-28.112000pt;}
.wsb3{word-spacing:-18.072000pt;}
.ws23{word-spacing:-17.856000pt;}
.wsb2{word-spacing:-17.640000pt;}
.ws76{word-spacing:-16.776000pt;}
.ws5a{word-spacing:-12.336000pt;}
.ws75{word-spacing:-11.856000pt;}
.ws9{word-spacing:-11.664000pt;}
.ws8{word-spacing:-11.184000pt;}
.ws25{word-spacing:-10.896000pt;}
.ws24{word-spacing:-10.656000pt;}
.ws3{word-spacing:-10.042667pt;}
.ws2{word-spacing:-9.594667pt;}
.ws77{word-spacing:-9.552000pt;}
.ws20{word-spacing:-9.109333pt;}
.ws6{word-spacing:-8.895627pt;}
.ws62{word-spacing:-8.661333pt;}
.wsb4{word-spacing:-8.250667pt;}
.ws5c{word-spacing:-8.176000pt;}
.ws5b{word-spacing:-7.989333pt;}
.wsde{word-spacing:-7.840000pt;}
.wsdf{word-spacing:-7.205333pt;}
.ws4{word-spacing:-7.128000pt;}
.wsa{word-spacing:-6.834667pt;}
.ws7{word-spacing:-5.925173pt;}
.wsc8{word-spacing:-2.053333pt;}
.wsc1{word-spacing:-1.493333pt;}
.ws15{word-spacing:-1.296000pt;}
.ws89{word-spacing:-1.248000pt;}
.wsc2{word-spacing:-1.120000pt;}
.ws28{word-spacing:-1.104000pt;}
.ws31{word-spacing:-1.056000pt;}
.wsaa{word-spacing:-1.008000pt;}
.ws26{word-spacing:-0.933333pt;}
.ws87{word-spacing:-0.912000pt;}
.ws65{word-spacing:-0.864000pt;}
.wsc7{word-spacing:-0.858667pt;}
.ws8a{word-spacing:-0.816000pt;}
.ws57{word-spacing:-0.768000pt;}
.ws84{word-spacing:-0.720000pt;}
.wsf7{word-spacing:-0.709333pt;}
.wse9{word-spacing:-0.634667pt;}
.ws2b{word-spacing:-0.576000pt;}
.wseb{word-spacing:-0.522667pt;}
.ws4f{word-spacing:-0.480000pt;}
.ws51{word-spacing:-0.432000pt;}
.ws7c{word-spacing:-0.384000pt;}
.wsf0{word-spacing:-0.373333pt;}
.ws7a{word-spacing:-0.336000pt;}
.ws67{word-spacing:-0.288000pt;}
.wsf{word-spacing:-0.264000pt;}
.wsf8{word-spacing:-0.261333pt;}
.ws85{word-spacing:-0.240000pt;}
.ws71{word-spacing:-0.224000pt;}
.ws41{word-spacing:-0.192000pt;}
.ws3b{word-spacing:-0.144000pt;}
.ws19{word-spacing:-0.096000pt;}
.wsec{word-spacing:-0.074667pt;}
.ws14{word-spacing:-0.058667pt;}
.ws16{word-spacing:-0.048000pt;}
.ws94{word-spacing:-0.037333pt;}
.ws63{word-spacing:-0.034667pt;}
.ws11{word-spacing:-0.000889pt;}
.ws10{word-spacing:-0.000698pt;}
.wsb{word-spacing:0.000000pt;}
.ws47{word-spacing:0.048000pt;}
.ws4d{word-spacing:0.072000pt;}
.ws112{word-spacing:0.074667pt;}
.wsc{word-spacing:0.088000pt;}
.ws52{word-spacing:0.096000pt;}
.wsce{word-spacing:0.112000pt;}
.ws55{word-spacing:0.144000pt;}
.wsea{word-spacing:0.149333pt;}
.ws46{word-spacing:0.192000pt;}
.wscc{word-spacing:0.224000pt;}
.ws2c{word-spacing:0.240000pt;}
.ws106{word-spacing:0.261333pt;}
.ws1c{word-spacing:0.288000pt;}
.ws72{word-spacing:0.298667pt;}
.wsc9{word-spacing:0.373333pt;}
.ws32{word-spacing:0.384000pt;}
.wsf2{word-spacing:0.410667pt;}
.ws56{word-spacing:0.432000pt;}
.ws3a{word-spacing:0.480000pt;}
.wscd{word-spacing:0.485333pt;}
.wsbb{word-spacing:0.504000pt;}
.wsd6{word-spacing:0.560000pt;}
.ws3f{word-spacing:0.576000pt;}
.ws30{word-spacing:0.624000pt;}
.wsd5{word-spacing:0.634667pt;}
.ws13{word-spacing:0.672000pt;}
.ws114{word-spacing:0.709333pt;}
.ws39{word-spacing:0.768000pt;}
.ws12{word-spacing:0.784000pt;}
.ws35{word-spacing:0.816000pt;}
.wsc4{word-spacing:0.821333pt;}
.wsc5{word-spacing:0.858667pt;}
.wsa3{word-spacing:0.864000pt;}
.ws117{word-spacing:0.896000pt;}
.ws1d{word-spacing:0.912000pt;}
.wsd7{word-spacing:0.933333pt;}
.ws1b{word-spacing:0.960000pt;}
.wsac{word-spacing:1.008000pt;}
.ws116{word-spacing:1.045333pt;}
.ws2d{word-spacing:1.056000pt;}
.wsb6{word-spacing:1.080000pt;}
.ws29{word-spacing:1.104000pt;}
.wsd0{word-spacing:1.194667pt;}
.ws3c{word-spacing:1.200000pt;}
.wscf{word-spacing:1.232000pt;}
.ws4a{word-spacing:1.248000pt;}
.ws17{word-spacing:1.296000pt;}
.wsca{word-spacing:1.306667pt;}
.ws2e{word-spacing:1.344000pt;}
.wsf3{word-spacing:1.381333pt;}
.ws82{word-spacing:1.392000pt;}
.wsc6{word-spacing:1.456000pt;}
.ws109{word-spacing:1.493333pt;}
.wsdb{word-spacing:1.530667pt;}
.wsbe{word-spacing:1.536000pt;}
.wsfb{word-spacing:1.568000pt;}
.ws54{word-spacing:1.632000pt;}
.ws113{word-spacing:1.680000pt;}
.ws33{word-spacing:1.728000pt;}
.wsc3{word-spacing:1.754667pt;}
.ws18{word-spacing:1.776000pt;}
.ws3d{word-spacing:1.824000pt;}
.ws110{word-spacing:1.866667pt;}
.wsa0{word-spacing:1.872000pt;}
.wscb{word-spacing:1.941333pt;}
.wsd{word-spacing:1.958138pt;}
.ws70{word-spacing:1.968000pt;}
.ws111{word-spacing:2.016000pt;}
.ws81{word-spacing:2.064000pt;}
.ws38{word-spacing:2.112000pt;}
.ws102{word-spacing:2.128000pt;}
.ws86{word-spacing:2.160000pt;}
.wsa9{word-spacing:2.208000pt;}
.ws7e{word-spacing:2.256000pt;}
.wsfd{word-spacing:2.314667pt;}
.ws66{word-spacing:2.352000pt;}
.wsa5{word-spacing:2.400000pt;}
.wsef{word-spacing:2.426667pt;}
.ws8d{word-spacing:2.448000pt;}
.wse{word-spacing:2.492175pt;}
.ws1a{word-spacing:2.496000pt;}
.ws10e{word-spacing:2.538667pt;}
.wsa4{word-spacing:2.592000pt;}
.ws2f{word-spacing:2.640000pt;}
.ws107{word-spacing:2.688000pt;}
.wse8{word-spacing:2.800000pt;}
.ws7b{word-spacing:2.880000pt;}
.ws10f{word-spacing:2.912000pt;}
.wsba{word-spacing:2.928000pt;}
.ws27{word-spacing:2.976000pt;}
.wse2{word-spacing:2.986667pt;}
.wse3{word-spacing:3.024000pt;}
.ws6d{word-spacing:3.072000pt;}
.ws48{word-spacing:3.120000pt;}
.ws80{word-spacing:3.168000pt;}
.wsd9{word-spacing:3.173333pt;}
.ws6a{word-spacing:3.216000pt;}
.wse5{word-spacing:3.248000pt;}
.ws1e{word-spacing:3.360000pt;}
.ws50{word-spacing:3.408000pt;}
.wsda{word-spacing:3.434667pt;}
.ws8c{word-spacing:3.504000pt;}
.ws115{word-spacing:3.546667pt;}
.ws37{word-spacing:3.648000pt;}
.wsb5{word-spacing:3.696000pt;}
.ws6f{word-spacing:3.744000pt;}
.wsa8{word-spacing:3.984000pt;}
.ws36{word-spacing:4.080000pt;}
.ws101{word-spacing:4.106667pt;}
.wsab{word-spacing:4.224000pt;}
.ws34{word-spacing:4.272000pt;}
.ws7d{word-spacing:4.368000pt;}
.ws118{word-spacing:4.405333pt;}
.ws119{word-spacing:4.442667pt;}
.ws4c{word-spacing:4.512000pt;}
.ws43{word-spacing:4.560000pt;}
.wsfe{word-spacing:4.741333pt;}
.wsa6{word-spacing:4.752000pt;}
.wsf9{word-spacing:4.778667pt;}
.ws78{word-spacing:4.800000pt;}
.wsfa{word-spacing:4.816000pt;}
.ws4e{word-spacing:4.848000pt;}
.wsa7{word-spacing:4.944000pt;}
.wsa1{word-spacing:5.088000pt;}
.wsc0{word-spacing:5.301333pt;}
.ws103{word-spacing:5.674667pt;}
.ws2a{word-spacing:5.712000pt;}
.wsf1{word-spacing:5.786667pt;}
.ws6c{word-spacing:5.808000pt;}
.ws104{word-spacing:5.824000pt;}
.ws4b{word-spacing:6.096000pt;}
.ws68{word-spacing:6.288000pt;}
.wsb7{word-spacing:6.384000pt;}
.wse0{word-spacing:6.421333pt;}
.ws8b{word-spacing:6.432000pt;}
.ws1f{word-spacing:6.480000pt;}
.ws88{word-spacing:6.624000pt;}
.wse1{word-spacing:6.645333pt;}
.wsa2{word-spacing:6.720000pt;}
.wsad{word-spacing:6.768000pt;}
.wsf6{word-spacing:6.794667pt;}
.wsd8{word-spacing:6.869333pt;}
.wsbc{word-spacing:7.008000pt;}
.wsfc{word-spacing:7.317333pt;}
.ws100{word-spacing:7.429333pt;}
.ws40{word-spacing:7.584000pt;}
.ws7f{word-spacing:7.776000pt;}
.ws45{word-spacing:7.872000pt;}
.wse6{word-spacing:8.064000pt;}
.wse7{word-spacing:8.138667pt;}
.ws49{word-spacing:8.304000pt;}
.wsb8{word-spacing:8.400000pt;}
.ws6b{word-spacing:8.928000pt;}
.wsb9{word-spacing:9.408000pt;}
.ws44{word-spacing:9.648000pt;}
.ws105{word-spacing:10.117333pt;}
.wsbd{word-spacing:10.320000pt;}
.wsae{word-spacing:10.368000pt;}
.ws10a{word-spacing:10.378667pt;}
.ws10b{word-spacing:10.490667pt;}
.ws3e{word-spacing:10.512000pt;}
.wsaf{word-spacing:10.752000pt;}
.ws6e{word-spacing:11.376000pt;}
.ws64{word-spacing:11.472000pt;}
.wse4{word-spacing:11.984000pt;}
.wsbf{word-spacing:12.133333pt;}
.ws79{word-spacing:12.384000pt;}
.wsd4{word-spacing:13.477333pt;}
.ws53{word-spacing:13.632000pt;}
.wsd1{word-spacing:15.232000pt;}
.ws83{word-spacing:15.264000pt;}
.wsd2{word-spacing:15.344000pt;}
.ws42{word-spacing:15.552000pt;}
.wsd3{word-spacing:16.426667pt;}
.wsed{word-spacing:16.464000pt;}
.wsee{word-spacing:16.762667pt;}
.wsff{word-spacing:19.450667pt;}
.ws10c{word-spacing:23.221333pt;}
.ws10d{word-spacing:23.408000pt;}
.ws69{word-spacing:26.016000pt;}
.ws108{word-spacing:31.248000pt;}
.wsf4{word-spacing:32.218667pt;}
.wsf5{word-spacing:32.517333pt;}
.ws90{word-spacing:42.324800pt;}
.ws99{word-spacing:45.576533pt;}
.ws95{word-spacing:45.760533pt;}
.ws9e{word-spacing:49.402667pt;}
.ws96{word-spacing:55.880000pt;}
.ws9c{word-spacing:56.309333pt;}
.ws92{word-spacing:58.363200pt;}
.ws9f{word-spacing:68.666667pt;}
.ws9b{word-spacing:74.487467pt;}
.ws9a{word-spacing:80.871467pt;}
.ws93{word-spacing:97.186133pt;}
.ws98{word-spacing:105.806400pt;}
.ws97{word-spacing:191.561067pt;}
.ws5f{word-spacing:242.796800pt;}
.ws60{word-spacing:265.495467pt;}
.ws9d{word-spacing:277.809067pt;}
.ws91{word-spacing:286.768533pt;}
.ws5e{word-spacing:426.817067pt;}
.ws61{word-spacing:428.511467pt;}
.ws5d{word-spacing:869.620267pt;}
.ws73{word-spacing:886.316800pt;}
.wsb0{word-spacing:886.447467pt;}
.ws21{word-spacing:886.951467pt;}
.ws58{word-spacing:887.044800pt;}
.ws8e{word-spacing:887.119467pt;}
.wsdc{word-spacing:887.754133pt;}
.ws0{word-spacing:888.500800pt;}
.ws74{word-spacing:1038.524800pt;}
.wsb1{word-spacing:1038.655467pt;}
.ws22{word-spacing:1039.159467pt;}
.ws59{word-spacing:1039.252800pt;}
.ws8f{word-spacing:1039.327467pt;}
.wsdd{word-spacing:1039.962133pt;}
.ws1{word-spacing:1040.708800pt;}
._5{margin-left:-10.042667pt;}
._37{margin-left:-6.224799pt;}
._8{margin-left:-4.656000pt;}
._4{margin-left:-3.662400pt;}
._2{margin-left:-2.708178pt;}
._3{margin-left:-0.972001pt;}
._6{width:1.140001pt;}
._9{width:2.257748pt;}
._a{width:3.542067pt;}
._b{width:4.512000pt;}
._1{width:5.578398pt;}
._0{width:8.278933pt;}
._30{width:52.522133pt;}
._32{width:55.023467pt;}
._33{width:60.261068pt;}
._36{width:79.808000pt;}
._f{width:87.610667pt;}
._34{width:92.879467pt;}
._2f{width:98.727734pt;}
._e{width:112.211733pt;}
._31{width:120.986930pt;}
._35{width:126.357867pt;}
._1d{width:221.107737pt;}
._c{width:226.058401pt;}
._16{width:248.713600pt;}
._15{width:252.233600pt;}
._12{width:266.633600pt;}
._11{width:270.686933pt;}
._10{width:275.731733pt;}
._21{width:281.754667pt;}
._14{width:284.020267pt;}
._20{width:292.452267pt;}
._2e{width:296.209868pt;}
._2a{width:297.177602pt;}
._1b{width:301.412267pt;}
._1f{width:305.786133pt;}
._2b{width:310.105065pt;}
._29{width:313.746133pt;}
._27{width:315.627733pt;}
._1a{width:318.983467pt;}
._26{width:323.719199pt;}
._1c{width:328.494400pt;}
._24{width:337.252267pt;}
._25{width:346.414933pt;}
._28{width:348.834930pt;}
._23{width:354.823467pt;}
._2c{width:372.967996pt;}
._2d{width:374.326670pt;}
._22{width:421.643468pt;}
._1e{width:437.640000pt;}
._13{width:604.484271pt;}
._19{width:743.583734pt;}
._17{width:836.729600pt;}
._18{width:839.230933pt;}
._d{width:927.288268pt;}
._7{width:1742.926668pt;}
.fs5{font-size:22.026667pt;}
.fsb{font-size:28.320000pt;}
.fs1{font-size:29.333333pt;}
.fs4{font-size:34.613333pt;}
.fsa{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.244133pt;}
.ye1{bottom:85.690400pt;}
.y95{bottom:85.921067pt;}
.yf5{bottom:86.357067pt;}
.ye0{bottom:96.357067pt;}
.yf4{bottom:97.023733pt;}
.y94{bottom:101.921067pt;}
.ydf{bottom:107.023733pt;}
.yf3{bottom:107.690400pt;}
.y93{bottom:117.921067pt;}
.yde{bottom:123.357067pt;}
.yf2{bottom:124.023733pt;}
.y5a{bottom:133.920933pt;}
.y92{bottom:133.921067pt;}
.ydd{bottom:134.023733pt;}
.yf1{bottom:134.690400pt;}
.y13e{bottom:136.135867pt;}
.y17f{bottom:136.258800pt;}
.ydc{bottom:144.690400pt;}
.yf0{bottom:145.357067pt;}
.y13d{bottom:146.802533pt;}
.y17e{bottom:147.002800pt;}
.y59{bottom:149.920933pt;}
.y91{bottom:149.921067pt;}
.y13c{bottom:157.469200pt;}
.y17d{bottom:157.746933pt;}
.ydb{bottom:161.023733pt;}
.yef{bottom:161.690400pt;}
.y90{bottom:165.921067pt;}
.y13b{bottom:168.135867pt;}
.yda{bottom:171.690400pt;}
.yee{bottom:172.357067pt;}
.y17c{bottom:174.157733pt;}
.y58{bottom:181.920933pt;}
.y8f{bottom:181.921067pt;}
.yed{bottom:183.023733pt;}
.y13a{bottom:184.469200pt;}
.y17b{bottom:184.901733pt;}
.yd9{bottom:188.023733pt;}
.yec{bottom:193.690400pt;}
.y139{bottom:195.135867pt;}
.y57{bottom:197.920933pt;}
.y8e{bottom:197.921067pt;}
.yd8{bottom:198.690400pt;}
.y17a{bottom:201.312533pt;}
.yd7{bottom:209.357067pt;}
.yeb{bottom:210.023733pt;}
.y138{bottom:211.469200pt;}
.y179{bottom:212.056533pt;}
.y56{bottom:213.920933pt;}
.y8d{bottom:213.921067pt;}
.yea{bottom:220.690400pt;}
.y137{bottom:222.135867pt;}
.y178{bottom:222.800667pt;}
.yd6{bottom:225.690400pt;}
.y55{bottom:229.920933pt;}
.y8c{bottom:229.921067pt;}
.ye9{bottom:231.357067pt;}
.y136{bottom:232.802533pt;}
.yd5{bottom:236.357067pt;}
.y177{bottom:239.211467pt;}
.ye8{bottom:242.023733pt;}
.y54{bottom:245.920933pt;}
.y8b{bottom:245.921067pt;}
.yd4{bottom:247.023733pt;}
.y135{bottom:249.135867pt;}
.y176{bottom:249.955467pt;}
.ye7{bottom:258.357067pt;}
.y134{bottom:259.802533pt;}
.y175{bottom:260.699600pt;}
.y53{bottom:261.920933pt;}
.y8a{bottom:261.921067pt;}
.yd3{bottom:263.357067pt;}
.ye6{bottom:269.023733pt;}
.y133{bottom:270.469200pt;}
.y174{bottom:271.443733pt;}
.yd2{bottom:274.023733pt;}
.y52{bottom:277.920933pt;}
.y89{bottom:277.921067pt;}
.ye5{bottom:279.690400pt;}
.yd1{bottom:284.690400pt;}
.y132{bottom:286.802533pt;}
.y173{bottom:287.854400pt;}
.ye4{bottom:290.357067pt;}
.y51{bottom:293.920933pt;}
.y88{bottom:293.921067pt;}
.y131{bottom:297.469200pt;}
.y172{bottom:298.598533pt;}
.yd0{bottom:301.023733pt;}
.ye3{bottom:306.690400pt;}
.y130{bottom:308.135867pt;}
.y171{bottom:309.342667pt;}
.y50{bottom:309.920933pt;}
.y87{bottom:309.921067pt;}
.ycf{bottom:311.690400pt;}
.ye2{bottom:317.357067pt;}
.y12f{bottom:324.469200pt;}
.y170{bottom:325.753333pt;}
.y4f{bottom:325.920933pt;}
.y86{bottom:325.921067pt;}
.yce{bottom:328.023733pt;}
.y12e{bottom:335.135867pt;}
.y16f{bottom:336.497333pt;}
.ycd{bottom:338.690400pt;}
.y4e{bottom:341.920933pt;}
.y85{bottom:341.921067pt;}
.y12d{bottom:345.802533pt;}
.y2e{bottom:345.861067pt;}
.y16e{bottom:347.241467pt;}
.ycc{bottom:349.357067pt;}
.y2d{bottom:357.861067pt;}
.y4d{bottom:357.920933pt;}
.y84{bottom:357.921067pt;}
.y16d{bottom:357.985600pt;}
.y12c{bottom:362.135867pt;}
.ycb{bottom:365.690400pt;}
.y2c{bottom:369.861067pt;}
.y12b{bottom:372.802533pt;}
.y4c{bottom:373.920933pt;}
.y83{bottom:373.921067pt;}
.y16c{bottom:374.396267pt;}
.yca{bottom:376.357067pt;}
.y2b{bottom:381.861067pt;}
.y12a{bottom:383.469200pt;}
.y16b{bottom:385.140400pt;}
.yc9{bottom:387.023733pt;}
.y4b{bottom:389.920933pt;}
.y82{bottom:389.921067pt;}
.y2a{bottom:393.861067pt;}
.y129{bottom:394.135867pt;}
.y16a{bottom:395.884533pt;}
.y29{bottom:405.861067pt;}
.y4a{bottom:405.920933pt;}
.y81{bottom:405.921067pt;}
.y128{bottom:410.469200pt;}
.y169{bottom:412.295200pt;}
.y28{bottom:417.861067pt;}
.y127{bottom:421.135867pt;}
.y49{bottom:421.920933pt;}
.y80{bottom:421.921067pt;}
.y168{bottom:423.039333pt;}
.y27{bottom:429.861067pt;}
.y126{bottom:431.802533pt;}
.y167{bottom:433.783333pt;}
.y48{bottom:437.920933pt;}
.y7f{bottom:437.921067pt;}
.y26{bottom:441.861067pt;}
.y125{bottom:448.135867pt;}
.y166{bottom:450.194133pt;}
.y25{bottom:453.861067pt;}
.y47{bottom:453.920933pt;}
.y7e{bottom:453.921067pt;}
.y124{bottom:458.802533pt;}
.y165{bottom:460.938133pt;}
.y24{bottom:465.861067pt;}
.y123{bottom:469.469200pt;}
.y46{bottom:469.920933pt;}
.y7d{bottom:469.921067pt;}
.y164{bottom:471.682267pt;}
.y23{bottom:477.861067pt;}
.y122{bottom:485.802533pt;}
.y45{bottom:485.920933pt;}
.y7c{bottom:485.921067pt;}
.y163{bottom:488.093067pt;}
.y22{bottom:489.861067pt;}
.y121{bottom:496.469200pt;}
.y162{bottom:498.837067pt;}
.y21{bottom:501.861067pt;}
.y44{bottom:501.920933pt;}
.y7b{bottom:501.921067pt;}
.y120{bottom:507.135867pt;}
.y20{bottom:513.861067pt;}
.yb1{bottom:514.895600pt;}
.y161{bottom:515.247867pt;}
.y11f{bottom:517.802533pt;}
.y43{bottom:517.920933pt;}
.y7a{bottom:517.921067pt;}
.y160{bottom:525.992000pt;}
.yb0{bottom:526.895600pt;}
.y1f{bottom:533.577067pt;}
.y42{bottom:533.920933pt;}
.y79{bottom:533.921067pt;}
.y11e{bottom:534.135867pt;}
.y15f{bottom:536.736000pt;}
.y11d{bottom:544.802533pt;}
.yaf{bottom:545.487467pt;}
.y1e{bottom:545.577067pt;}
.y41{bottom:549.920933pt;}
.y78{bottom:549.921067pt;}
.yc8{bottom:550.516267pt;}
.y15e{bottom:553.146800pt;}
.y11c{bottom:555.469200pt;}
.y1d{bottom:557.577067pt;}
.yae{bottom:562.154133pt;}
.yc7{bottom:562.516267pt;}
.y15d{bottom:563.890800pt;}
.y40{bottom:565.920933pt;}
.y77{bottom:565.921067pt;}
.y1c{bottom:569.577067pt;}
.y11b{bottom:571.802533pt;}
.y15c{bottom:574.634933pt;}
.yc6{bottom:581.322933pt;}
.y1b{bottom:581.577067pt;}
.yad{bottom:581.789733pt;}
.y3f{bottom:581.920933pt;}
.y76{bottom:581.921067pt;}
.y11a{bottom:582.469200pt;}
.y15b{bottom:585.378933pt;}
.y1a{bottom:593.577067pt;}
.y3e{bottom:597.920933pt;}
.y75{bottom:597.921067pt;}
.y119{bottom:598.802533pt;}
.yc5{bottom:601.173333pt;}
.yac{bottom:601.425333pt;}
.y15a{bottom:601.789733pt;}
.y19{bottom:605.577067pt;}
.y118{bottom:609.469200pt;}
.y159{bottom:612.533867pt;}
.y3d{bottom:613.920933pt;}
.y74{bottom:613.921067pt;}
.y18{bottom:617.577067pt;}
.yab{bottom:618.092000pt;}
.y117{bottom:620.135867pt;}
.yc4{bottom:621.023733pt;}
.y158{bottom:623.277867pt;}
.y3c{bottom:629.920933pt;}
.y73{bottom:629.921067pt;}
.y116{bottom:636.469200pt;}
.y17{bottom:637.293067pt;}
.yaa{bottom:637.727600pt;}
.y157{bottom:639.688667pt;}
.yc3{bottom:640.659333pt;}
.y72{bottom:645.921067pt;}
.y115{bottom:647.135867pt;}
.y16{bottom:647.559733pt;}
.y156{bottom:650.432800pt;}
.ya9{bottom:657.363333pt;}
.y114{bottom:657.802533pt;}
.y15{bottom:657.826400pt;}
.yc2{bottom:660.509733pt;}
.y155{bottom:661.176800pt;}
.y71{bottom:661.921067pt;}
.y14{bottom:668.093067pt;}
.y3b{bottom:669.792933pt;}
.y113{bottom:674.135867pt;}
.ya8{bottom:676.998933pt;}
.y154{bottom:677.587600pt;}
.y70{bottom:677.921067pt;}
.yc1{bottom:680.145333pt;}
.y3a{bottom:681.792933pt;}
.y112{bottom:684.802533pt;}
.y13{bottom:687.826400pt;}
.y153{bottom:688.331600pt;}
.y39{bottom:693.792933pt;}
.y6f{bottom:693.921067pt;}
.y111{bottom:695.469200pt;}
.ya7{bottom:696.634533pt;}
.y152{bottom:699.075733pt;}
.y12{bottom:699.826400pt;}
.yc0{bottom:699.995733pt;}
.y38{bottom:709.152933pt;}
.y6e{bottom:709.921067pt;}
.y110{bottom:711.802533pt;}
.y11{bottom:711.826400pt;}
.y151{bottom:715.486533pt;}
.ya6{bottom:716.270133pt;}
.ybf{bottom:719.846133pt;}
.y10f{bottom:722.469200pt;}
.y10{bottom:723.826400pt;}
.y6d{bottom:725.921067pt;}
.y150{bottom:726.230533pt;}
.y36{bottom:727.392933pt;}
.y37{bottom:732.673067pt;}
.y10e{bottom:733.135867pt;}
.ya5{bottom:735.905867pt;}
.ybe{bottom:739.481733pt;}
.y6c{bottom:741.921067pt;}
.y14f{bottom:742.641333pt;}
.yf{bottom:743.542400pt;}
.y10d{bottom:743.802533pt;}
.y34{bottom:747.392933pt;}
.y35{bottom:752.673067pt;}
.y14e{bottom:753.385467pt;}
.y10c{bottom:754.469200pt;}
.ya4{bottom:755.541467pt;}
.ye{bottom:755.542400pt;}
.y6b{bottom:757.921067pt;}
.ybd{bottom:759.332133pt;}
.y14d{bottom:764.129467pt;}
.yd{bottom:767.542400pt;}
.y10b{bottom:770.802533pt;}
.y6a{bottom:773.921067pt;}
.y14c{bottom:774.873600pt;}
.ya3{bottom:775.177067pt;}
.ybc{bottom:779.182533pt;}
.yc{bottom:779.542400pt;}
.y10a{bottom:781.469200pt;}
.y33{bottom:789.920933pt;}
.y69{bottom:789.921067pt;}
.y14b{bottom:791.284267pt;}
.yb{bottom:791.542400pt;}
.y109{bottom:792.135867pt;}
.ya2{bottom:794.812800pt;}
.ybb{bottom:799.032933pt;}
.y14a{bottom:802.028267pt;}
.y108{bottom:802.802533pt;}
.ya{bottom:803.542400pt;}
.y68{bottom:805.921067pt;}
.y149{bottom:812.772400pt;}
.ya1{bottom:814.448267pt;}
.yba{bottom:818.883333pt;}
.y107{bottom:819.135867pt;}
.y32{bottom:821.920933pt;}
.y67{bottom:821.921067pt;}
.y9{bottom:823.258400pt;}
.y148{bottom:829.183200pt;}
.y106{bottom:829.802533pt;}
.ya0{bottom:834.084000pt;}
.y8{bottom:835.258400pt;}
.y66{bottom:837.921067pt;}
.yb9{bottom:838.733733pt;}
.y147{bottom:839.927200pt;}
.y105{bottom:840.469200pt;}
.y7{bottom:847.258400pt;}
.y146{bottom:850.671333pt;}
.y9f{bottom:853.719600pt;}
.y31{bottom:853.920933pt;}
.y65{bottom:853.921067pt;}
.y104{bottom:856.802533pt;}
.yb8{bottom:858.584133pt;}
.y6{bottom:859.258400pt;}
.y145{bottom:861.415467pt;}
.y103{bottom:867.469200pt;}
.y64{bottom:869.921067pt;}
.y9e{bottom:873.355200pt;}
.y144{bottom:877.826133pt;}
.y102{bottom:878.135867pt;}
.yb7{bottom:878.219867pt;}
.y5{bottom:878.974400pt;}
.y30{bottom:885.920933pt;}
.y63{bottom:885.921067pt;}
.y143{bottom:888.570267pt;}
.y101{bottom:888.802533pt;}
.y9d{bottom:890.021867pt;}
.yb6{bottom:898.070133pt;}
.y62{bottom:901.921067pt;}
.y142{bottom:904.980933pt;}
.y100{bottom:905.135867pt;}
.y9c{bottom:909.657600pt;}
.y141{bottom:915.725067pt;}
.yff{bottom:915.802533pt;}
.yb5{bottom:917.920533pt;}
.y2f{bottom:917.920933pt;}
.y61{bottom:917.921067pt;}
.y140{bottom:926.391733pt;}
.yfe{bottom:926.469200pt;}
.y9b{bottom:929.293067pt;}
.y60{bottom:933.921067pt;}
.y13f{bottom:937.058400pt;}
.yfd{bottom:937.135867pt;}
.yb4{bottom:937.770933pt;}
.y5f{bottom:949.921067pt;}
.y9a{bottom:952.167733pt;}
.yfc{bottom:953.469200pt;}
.yb3{bottom:957.406533pt;}
.yfb{bottom:964.135867pt;}
.y5e{bottom:965.921067pt;}
.y99{bottom:966.567733pt;}
.yfa{bottom:974.802533pt;}
.yb2{bottom:980.066400pt;}
.y5d{bottom:981.921067pt;}
.yf9{bottom:991.135867pt;}
.y98{bottom:994.466400pt;}
.y96{bottom:997.921067pt;}
.yf8{bottom:1001.802533pt;}
.yf7{bottom:1012.469200pt;}
.y5c{bottom:1013.921067pt;}
.y4{bottom:1020.485200pt;}
.yf6{bottom:1023.135867pt;}
.y97{bottom:1024.421067pt;}
.y3{bottom:1032.485200pt;}
.y2{bottom:1044.485200pt;}
.y5b{bottom:1068.328933pt;}
.h9{height:16.343787pt;}
.h5{height:21.178667pt;}
.h8{height:25.752320pt;}
.h4{height:26.954667pt;}
.h3{height:27.701333pt;}
.h2{height:27.776000pt;}
.h13{height:28.114667pt;}
.ha{height:29.783787pt;}
.h12{height:30.277333pt;}
.hc{height:30.805333pt;}
.h11{height:31.136533pt;}
.hb{height:35.616000pt;}
.h10{height:35.712000pt;}
.h14{height:38.350080pt;}
.he{height:38.928000pt;}
.h7{height:43.648000pt;}
.hf{height:47.616000pt;}
.hd{height:53.568000pt;}
.h6{height:83.328000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.141733pt;}
.x3{left:74.916400pt;}
.xc{left:81.427067pt;}
.x8{left:85.025733pt;}
.x15{left:135.400267pt;}
.x11{left:187.858667pt;}
.x4{left:292.913733pt;}
.xd{left:302.941200pt;}
.xf{left:316.154800pt;}
.x12{left:319.995333pt;}
.x13{left:323.299333pt;}
.x14{left:339.220800pt;}
.x9{left:383.114667pt;}
.x7{left:401.621333pt;}
.xa{left:406.285867pt;}
.xb{left:425.183200pt;}
.x5{left:465.995733pt;}
.x10{left:493.917600pt;}
.x6{left:574.632933pt;}
.x2{left:588.105333pt;}
.xe{left:648.087467pt;}
}




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