
    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_93b0ac0d2904b1bf6f7cce26.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179800;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_885b1afdab38a077bc6c6747.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.179800;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_93b0ac0d2904b1bf6f7cce26.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.179800;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_6f1a659e285aed8c309e6e1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.182000;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_0d799c11d734343c2fff558f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_93b0ac0d2904b1bf6f7cce26.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.179800;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_57e955afe67858c89b9d057f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.174000;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;}
.m53{transform:matrix(0.243166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243166,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.243904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243904,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.244791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244791,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.245329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245329,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.245515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245515,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245541,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.245891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245891,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.245924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245924,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.245979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245979,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246003,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246241,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246256,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.246379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246379,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246426,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246712,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.246847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246847,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246938,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.246956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246956,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247032,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247141,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247144,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247226,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247306,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247318,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247509,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247512,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247521,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247588,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.247738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247738,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247759,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.247776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247776,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.247926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247926,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247994,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248012,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.248091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248091,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.248212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248212,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248253,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248265,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248356,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248412,0.000000,0.000000,0.250000,0,0);}
.m63{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);}
.mc4{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248535,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248559,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.248629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248629,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248879,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249138,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249376,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249482,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249494,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m56{transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249829,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,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);}
.m31{transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250044,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);}
.m55{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);}
.m68{transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250212,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250756,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250794,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250885,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251003,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251138,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m81{transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251424,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251476,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251694,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251891,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251979,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252029,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252235,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252247,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252253,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.252256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252256,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252368,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252426,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252574,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.252726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252726,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252865,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252944,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.253059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253059,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.253262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253262,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.253421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253421,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253744,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253847,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.254015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254015,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.254256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254256,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.254579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254579,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.254794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254794,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.840600px;}
.v4{vertical-align:28.176000px;}
.v3{vertical-align:56.400000px;}
.ls36{letter-spacing:-2.640000px;}
.ls16{letter-spacing:-1.377000px;}
.ls15{letter-spacing:-1.275000px;}
.ls18{letter-spacing:-1.224000px;}
.ls12{letter-spacing:-1.071000px;}
.ls13{letter-spacing:-1.020000px;}
.ls14{letter-spacing:-0.969000px;}
.ls20{letter-spacing:-0.867000px;}
.ls17{letter-spacing:-0.816000px;}
.ls33{letter-spacing:-0.765000px;}
.ls32{letter-spacing:-0.663000px;}
.ls28{letter-spacing:-0.624000px;}
.ls1f{letter-spacing:-0.510000px;}
.ls29{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.480000px;}
.ls37{letter-spacing:-0.459000px;}
.ls8{letter-spacing:-0.420000px;}
.lsb{letter-spacing:-0.408000px;}
.ls34{letter-spacing:-0.357000px;}
.ls31{letter-spacing:-0.306000px;}
.ls1a{letter-spacing:-0.255000px;}
.ls9{letter-spacing:-0.243600px;}
.ls21{letter-spacing:-0.210000px;}
.ls11{letter-spacing:-0.204000px;}
.ls19{letter-spacing:-0.153000px;}
.ls1b{letter-spacing:-0.102000px;}
.lsa{letter-spacing:-0.051000px;}
.ls5{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.025500px;}
.lsd{letter-spacing:0.051000px;}
.ls0{letter-spacing:0.078000px;}
.lsf{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.111000px;}
.ls10{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.168000px;}
.ls1c{letter-spacing:0.178500px;}
.ls1d{letter-spacing:0.204000px;}
.lse{letter-spacing:0.255000px;}
.ls35{letter-spacing:0.306000px;}
.ls1e{letter-spacing:0.357000px;}
.ls38{letter-spacing:0.408000px;}
.ls2e{letter-spacing:0.459000px;}
.ls7{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.510000px;}
.ls4{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.561000px;}
.ls3a{letter-spacing:0.570000px;}
.ls27{letter-spacing:0.586500px;}
.ls2f{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.663000px;}
.ls22{letter-spacing:0.714000px;}
.ls26{letter-spacing:0.816000px;}
.lsc{letter-spacing:0.840000px;}
.ls2d{letter-spacing:0.867000px;}
.ls39{letter-spacing:0.969000px;}
.ls2c{letter-spacing:1.020000px;}
.ls2a{letter-spacing:1.122000px;}
.ls2b{letter-spacing:1.479000px;}
.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;}
}
.ws3f{word-spacing:-14.637000px;}
.ws86{word-spacing:-14.178000px;}
.ws3{word-spacing:-13.968000px;}
.ws88{word-spacing:-13.872000px;}
.ws51{word-spacing:-13.344000px;}
.ws7f{word-spacing:-12.516000px;}
.ws0{word-spacing:-6.772080px;}
.ws1{word-spacing:-6.528480px;}
.ws89{word-spacing:-2.805000px;}
.ws7c{word-spacing:-2.244000px;}
.ws18{word-spacing:-2.193000px;}
.ws17{word-spacing:-2.142000px;}
.ws31{word-spacing:-2.091000px;}
.ws46{word-spacing:-2.040000px;}
.ws2a{word-spacing:-1.989000px;}
.wse{word-spacing:-1.968000px;}
.ws26{word-spacing:-1.938000px;}
.ws37{word-spacing:-1.887000px;}
.ws74{word-spacing:-1.785000px;}
.ws45{word-spacing:-1.764000px;}
.ws7d{word-spacing:-1.734000px;}
.ws2d{word-spacing:-1.683000px;}
.ws39{word-spacing:-1.632000px;}
.ws61{word-spacing:-1.581000px;}
.ws23{word-spacing:-1.530000px;}
.ws28{word-spacing:-1.479000px;}
.wsf{word-spacing:-1.440000px;}
.ws38{word-spacing:-1.428000px;}
.ws3e{word-spacing:-1.377000px;}
.wsb{word-spacing:-1.344000px;}
.ws85{word-spacing:-1.326000px;}
.ws72{word-spacing:-1.275000px;}
.ws1f{word-spacing:-1.224000px;}
.ws4{word-spacing:-1.152000px;}
.ws1d{word-spacing:-1.122000px;}
.ws40{word-spacing:-1.092000px;}
.ws33{word-spacing:-1.071000px;}
.ws7e{word-spacing:-1.020000px;}
.ws2b{word-spacing:-0.969000px;}
.ws41{word-spacing:-0.918000px;}
.ws2f{word-spacing:-0.867000px;}
.ws35{word-spacing:-0.840000px;}
.ws3d{word-spacing:-0.816000px;}
.ws3a{word-spacing:-0.765000px;}
.ws82{word-spacing:-0.663000px;}
.ws2c{word-spacing:-0.612000px;}
.ws34{word-spacing:-0.561000px;}
.ws7b{word-spacing:-0.510000px;}
.ws56{word-spacing:-0.459000px;}
.ws32{word-spacing:-0.408000px;}
.ws1b{word-spacing:-0.357000px;}
.ws69{word-spacing:-0.306000px;}
.ws3b{word-spacing:-0.255000px;}
.ws62{word-spacing:-0.204000px;}
.ws7a{word-spacing:-0.153000px;}
.ws57{word-spacing:-0.102000px;}
.ws36{word-spacing:-0.051000px;}
.ws2{word-spacing:0.000000px;}
.ws83{word-spacing:0.051000px;}
.ws54{word-spacing:0.102000px;}
.ws29{word-spacing:0.204000px;}
.ws44{word-spacing:0.210000px;}
.ws60{word-spacing:0.255000px;}
.ws59{word-spacing:0.306000px;}
.ws42{word-spacing:0.357000px;}
.ws8a{word-spacing:0.408000px;}
.ws9{word-spacing:0.432000px;}
.ws55{word-spacing:0.459000px;}
.ws52{word-spacing:0.504000px;}
.ws27{word-spacing:0.561000px;}
.ws6a{word-spacing:0.612000px;}
.ws50{word-spacing:0.624000px;}
.ws19{word-spacing:0.663000px;}
.ws64{word-spacing:0.765000px;}
.ws24{word-spacing:0.816000px;}
.ws84{word-spacing:0.867000px;}
.ws79{word-spacing:0.918000px;}
.ws6b{word-spacing:1.020000px;}
.ws71{word-spacing:1.071000px;}
.ws73{word-spacing:1.122000px;}
.wsa{word-spacing:1.152000px;}
.ws30{word-spacing:1.173000px;}
.ws1c{word-spacing:1.275000px;}
.ws78{word-spacing:1.377000px;}
.ws22{word-spacing:1.428000px;}
.ws6d{word-spacing:1.479000px;}
.ws11{word-spacing:1.488000px;}
.ws25{word-spacing:1.530000px;}
.ws3c{word-spacing:1.581000px;}
.ws58{word-spacing:1.632000px;}
.ws43{word-spacing:1.683000px;}
.ws47{word-spacing:1.734000px;}
.ws53{word-spacing:1.764000px;}
.ws2e{word-spacing:1.785000px;}
.ws6c{word-spacing:1.887000px;}
.ws48{word-spacing:1.938000px;}
.ws63{word-spacing:1.989000px;}
.ws20{word-spacing:2.040000px;}
.ws21{word-spacing:2.091000px;}
.ws1e{word-spacing:2.142000px;}
.ws12{word-spacing:2.304000px;}
.ws87{word-spacing:2.958000px;}
.wsc{word-spacing:3.888000px;}
.ws10{word-spacing:4.752000px;}
.ws7{word-spacing:4.800000px;}
.wsd{word-spacing:4.896000px;}
.ws6{word-spacing:5.808000px;}
.ws5{word-spacing:6.144000px;}
.ws8{word-spacing:6.480000px;}
.ws16{word-spacing:13.020000px;}
.ws15{word-spacing:24.948000px;}
.ws14{word-spacing:36.876000px;}
.ws80{word-spacing:42.384000px;}
.ws13{word-spacing:48.804000px;}
.ws4a{word-spacing:116.112000px;}
.ws49{word-spacing:169.680000px;}
.ws6e{word-spacing:183.072000px;}
.ws6f{word-spacing:197.664000px;}
.ws4e{word-spacing:200.880000px;}
.ws4f{word-spacing:206.208000px;}
.ws4d{word-spacing:219.552000px;}
.ws5a{word-spacing:224.208000px;}
.ws4b{word-spacing:239.568000px;}
.ws81{word-spacing:241.920000px;}
.ws4c{word-spacing:252.960000px;}
.ws75{word-spacing:290.880000px;}
.ws77{word-spacing:326.352000px;}
.ws76{word-spacing:327.792000px;}
.ws70{word-spacing:357.264000px;}
.ws67{word-spacing:358.080000px;}
.ws65{word-spacing:396.432000px;}
.ws5b{word-spacing:417.888000px;}
.ws5f{word-spacing:419.712000px;}
.ws68{word-spacing:429.648000px;}
.ws5d{word-spacing:446.304000px;}
.ws66{word-spacing:454.944000px;}
.ws5c{word-spacing:460.128000px;}
.ws5e{word-spacing:467.668800px;}
.ws8c{word-spacing:507.984000px;}
.ws8d{word-spacing:541.272000px;}
.ws8b{word-spacing:555.009000px;}
.ws1a{word-spacing:1416.526200px;}
._18{margin-left:-17.310000px;}
._3d{margin-left:-16.116000px;}
._8{margin-left:-14.637000px;}
._9{margin-left:-13.281000px;}
._3b{margin-left:-12.058200px;}
._2{margin-left:-9.340800px;}
._3{margin-left:-7.744800px;}
._c{margin-left:-6.579000px;}
._1{margin-left:-5.332800px;}
._a{margin-left:-4.327200px;}
._0{margin-left:-2.886000px;}
._6{margin-left:-1.020000px;}
._5{width:1.071000px;}
._1e{width:2.295000px;}
._3c{width:11.730000px;}
._14{width:13.344000px;}
._b{width:14.637000px;}
._3e{width:36.291000px;}
._1c{width:58.848000px;}
._36{width:66.240000px;}
._29{width:95.712000px;}
._35{width:97.440000px;}
._31{width:108.576000px;}
._2a{width:115.248000px;}
._21{width:116.596800px;}
._20{width:127.056000px;}
._22{width:128.356800px;}
._1f{width:147.552000px;}
._2b{width:152.208000px;}
._3a{width:154.422000px;}
._27{width:169.878000px;}
._28{width:184.416000px;}
._15{width:188.112000px;}
._2f{width:194.976000px;}
._24{width:217.728000px;}
._12{width:269.520000px;}
._23{width:270.720000px;}
._11{width:273.984000px;}
._13{width:275.526000px;}
._39{width:286.176000px;}
._d{width:289.536000px;}
._e{width:294.000000px;}
._10{width:295.296000px;}
._37{width:296.928000px;}
._f{width:302.880000px;}
._38{width:304.896000px;}
._2e{width:326.352000px;}
._1a{width:330.096000px;}
._17{width:347.664000px;}
._16{width:350.928000px;}
._26{width:370.608000px;}
._25{width:383.712000px;}
._2d{width:386.592000px;}
._19{width:453.696000px;}
._2c{width:472.992000px;}
._1d{width:478.416000px;}
._1b{width:491.760000px;}
._30{width:587.764800px;}
._32{width:696.244800px;}
._33{width:740.692800px;}
._4{width:749.424000px;}
._7{width:1174.961400px;}
._34{width:1177.268400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.360000px;}
.fs2{font-size:27.840000px;}
.fs0{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.848300px;}
.yf9{bottom:85.029600px;}
.y93{bottom:85.033650px;}
.y64{bottom:85.039350px;}
.ya4{bottom:85.040100px;}
.y17f{bottom:85.040400px;}
.y2bb{bottom:85.041300px;}
.y12a{bottom:85.042950px;}
.y161{bottom:85.044600px;}
.y25{bottom:88.504350px;}
.ya3{bottom:98.952600px;}
.y63{bottom:100.038600px;}
.yf8{bottom:100.125600px;}
.y1d1{bottom:100.186050px;}
.y1a0{bottom:100.203000px;}
.y14b{bottom:100.211850px;}
.yc8{bottom:100.232400px;}
.y129{bottom:100.279200px;}
.y1ff{bottom:100.303200px;}
.y267{bottom:100.311450px;}
.y92{bottom:100.333650px;}
.y17e{bottom:100.493400px;}
.y160{bottom:100.523100px;}
.y231{bottom:100.675500px;}
.y24{bottom:100.841850px;}
.y2ba{bottom:101.785050px;}
.y23{bottom:113.179350px;}
.y62{bottom:115.038000px;}
.y298{bottom:115.107000px;}
.yf7{bottom:115.221600px;}
.y1d0{bottom:115.320300px;}
.y19f{bottom:115.366650px;}
.y14a{bottom:115.384050px;}
.yc7{bottom:115.430400px;}
.y128{bottom:115.518900px;}
.y1fe{bottom:115.566900px;}
.y266{bottom:115.576050px;}
.y17d{bottom:115.947450px;}
.y15f{bottom:116.007000px;}
.y230{bottom:116.330100px;}
.y2b9{bottom:118.528800px;}
.y22{bottom:125.516850px;}
.y91{bottom:128.396400px;}
.y61{bottom:130.047900px;}
.y297{bottom:130.101000px;}
.yf6{bottom:130.312650px;}
.y1cf{bottom:130.454550px;}
.y149{bottom:130.556400px;}
.yc6{bottom:130.626000px;}
.y127{bottom:130.758600px;}
.y1fd{bottom:130.830600px;}
.y265{bottom:130.850550px;}
.y15e{bottom:131.490750px;}
.y22f{bottom:131.961600px;}
.y2b8{bottom:135.272550px;}
.y60{bottom:145.041900px;}
.y296{bottom:145.095000px;}
.yf5{bottom:145.403700px;}
.y1ce{bottom:145.593000px;}
.y148{bottom:145.728900px;}
.yc5{bottom:145.821600px;}
.y126{bottom:146.001900px;}
.y1fc{bottom:146.094300px;}
.y264{bottom:146.125050px;}
.y22e{bottom:147.593100px;}
.y29{bottom:153.537000px;}
.y5f{bottom:160.035900px;}
.y295{bottom:160.089000px;}
.yf4{bottom:160.494750px;}
.y1cd{bottom:160.739550px;}
.y147{bottom:160.901250px;}
.yc4{bottom:161.014500px;}
.y125{bottom:161.238150px;}
.y1fb{bottom:161.360100px;}
.y263{bottom:161.399550px;}
.y22d{bottom:163.224600px;}
.y28{bottom:168.518250px;}
.y90{bottom:173.467650px;}
.y5e{bottom:175.035300px;}
.y294{bottom:175.083000px;}
.yf3{bottom:175.571100px;}
.y1cc{bottom:175.873800px;}
.y146{bottom:176.073600px;}
.yc3{bottom:176.212500px;}
.y124{bottom:176.477850px;}
.y1fa{bottom:176.621850px;}
.y262{bottom:176.671500px;}
.y22c{bottom:178.856100px;}
.y27{bottom:183.499500px;}
.y8f{bottom:188.767650px;}
.y5d{bottom:190.034550px;}
.y293{bottom:190.077000px;}
.yf2{bottom:190.667100px;}
.y1cb{bottom:191.008050px;}
.y145{bottom:191.245950px;}
.yc2{bottom:191.408100px;}
.y123{bottom:191.721150px;}
.y1f9{bottom:191.885550px;}
.y261{bottom:191.936100px;}
.y22b{bottom:194.492100px;}
.y8e{bottom:204.069750px;}
.y5c{bottom:205.039200px;}
.y292{bottom:205.071000px;}
.yf1{bottom:205.763100px;}
.y1ca{bottom:206.146350px;}
.y144{bottom:206.418300px;}
.yc1{bottom:206.603550px;}
.y122{bottom:206.957400px;}
.y1f8{bottom:207.151350px;}
.y260{bottom:207.210600px;}
.y22a{bottom:210.142050px;}
.y26{bottom:211.236600px;}
.y8d{bottom:219.371850px;}
.y5b{bottom:220.033200px;}
.y291{bottom:220.065000px;}
.yf0{bottom:220.859100px;}
.y1c9{bottom:221.284800px;}
.y143{bottom:221.590650px;}
.yc0{bottom:221.799150px;}
.y121{bottom:222.197100px;}
.y1f7{bottom:222.413100px;}
.y25f{bottom:222.485100px;}
.y229{bottom:225.773550px;}
.y8c{bottom:234.673950px;}
.y5a{bottom:235.032450px;}
.y290{bottom:235.059000px;}
.yef{bottom:235.950150px;}
.y1c8{bottom:236.423100px;}
.y142{bottom:236.763000px;}
.ybf{bottom:236.994600px;}
.y120{bottom:237.439800px;}
.y1f6{bottom:237.676800px;}
.y25e{bottom:237.759600px;}
.y228{bottom:241.405050px;}
.y8b{bottom:249.976200px;}
.y59{bottom:250.031700px;}
.y28f{bottom:250.053000px;}
.yee{bottom:251.021550px;}
.y1c7{bottom:251.561400px;}
.y18{bottom:251.570250px;}
.y141{bottom:251.935350px;}
.ybe{bottom:252.190200px;}
.y1f5{bottom:252.940500px;}
.y25d{bottom:253.031550px;}
.y227{bottom:257.036550px;}
.y58{bottom:265.036350px;}
.y28e{bottom:265.047000px;}
.y8a{bottom:265.281900px;}
.yed{bottom:266.117550px;}
.y1c6{bottom:266.699850px;}
.y140{bottom:267.107700px;}
.ybd{bottom:267.385650px;}
.y1f4{bottom:268.204200px;}
.y25c{bottom:268.296150px;}
.y11f{bottom:269.684550px;}
.y17{bottom:270.818250px;}
.y226{bottom:272.672700px;}
.y57{bottom:280.030350px;}
.y28d{bottom:280.041000px;}
.y89{bottom:280.581900px;}
.yec{bottom:281.213550px;}
.y1c5{bottom:281.838300px;}
.y13f{bottom:282.280050px;}
.ybc{bottom:282.578700px;}
.y1f3{bottom:283.467900px;}
.y25b{bottom:283.570650px;}
.y11e{bottom:284.924250px;}
.y16{bottom:285.818250px;}
.y225{bottom:288.313350px;}
.y56{bottom:295.029600px;}
.y28c{bottom:295.035000px;}
.yeb{bottom:296.309550px;}
.y1c4{bottom:296.976600px;}
.y13e{bottom:297.452550px;}
.ybb{bottom:297.776700px;}
.y1f2{bottom:298.733700px;}
.y25a{bottom:298.845150px;}
.y11d{bottom:300.163950px;}
.y15{bottom:300.818250px;}
.y224{bottom:303.944850px;}
.y55{bottom:310.029000px;}
.yea{bottom:311.405550px;}
.y1c3{bottom:312.114900px;}
.y13d{bottom:312.624900px;}
.y88{bottom:312.890400px;}
.yba{bottom:312.972300px;}
.y1f1{bottom:313.995450px;}
.y259{bottom:314.119650px;}
.y11c{bottom:315.403800px;}
.y14{bottom:315.818250px;}
.y223{bottom:319.581000px;}
.ya2{bottom:319.914000px;}
.y54{bottom:325.028250px;}
.ye9{bottom:326.496600px;}
.y1c2{bottom:327.253350px;}
.y13c{bottom:327.797250px;}
.yb9{bottom:328.167750px;}
.y87{bottom:328.192500px;}
.y1f0{bottom:329.259150px;}
.y258{bottom:329.391750px;}
.y11b{bottom:330.643500px;}
.y13{bottom:330.818250px;}
.y222{bottom:335.217150px;}
.y53{bottom:340.027500px;}
.y28b{bottom:340.101750px;}
.ye8{bottom:341.587650px;}
.y1c1{bottom:342.395850px;}
.y86{bottom:343.494600px;}
.y1ef{bottom:344.522850px;}
.y257{bottom:344.661300px;}
.y12{bottom:345.818250px;}
.y11a{bottom:345.883200px;}
.y221{bottom:350.866950px;}
.y52{bottom:355.026900px;}
.y28a{bottom:355.095750px;}
.ye7{bottom:356.649150px;}
.y1c0{bottom:357.530100px;}
.ya1{bottom:357.730500px;}
.y85{bottom:358.796700px;}
.y1ee{bottom:359.786700px;}
.y256{bottom:359.935800px;}
.y11{bottom:360.818250px;}
.y19e{bottom:360.943650px;}
.y119{bottom:361.123050px;}
.y13b{bottom:363.929850px;}
.yb8{bottom:364.623150px;}
.y220{bottom:366.498450px;}
.y51{bottom:370.026150px;}
.y289{bottom:370.089750px;}
.ye6{bottom:371.745150px;}
.y1bf{bottom:372.668400px;}
.y84{bottom:374.100450px;}
.ya0{bottom:374.287500px;}
.y1ed{bottom:375.050400px;}
.y255{bottom:375.207750px;}
.y10{bottom:375.818250px;}
.y118{bottom:376.362750px;}
.yb7{bottom:377.175000px;}
.y13a{bottom:378.029850px;}
.y17c{bottom:381.501450px;}
.y15d{bottom:381.783000px;}
.y21f{bottom:382.129950px;}
.y50{bottom:385.025550px;}
.y288{bottom:385.083750px;}
.ye5{bottom:386.841150px;}
.y1be{bottom:387.806850px;}
.y254{bottom:390.477300px;}
.yf{bottom:390.818250px;}
.y9f{bottom:390.844350px;}
.y139{bottom:392.129850px;}
.y19d{bottom:397.370400px;}
.y21e{bottom:397.761450px;}
.y4f{bottom:400.024800px;}
.y287{bottom:400.077750px;}
.ye4{bottom:401.937150px;}
.y1bd{bottom:402.945150px;}
.y1ec{bottom:403.066500px;}
.y253{bottom:405.751800px;}
.y83{bottom:406.408950px;}
.y9e{bottom:407.401350px;}
.y117{bottom:408.624450px;}
.ye{bottom:410.066250px;}
.y19c{bottom:412.530150px;}
.y138{bottom:413.009850px;}
.y21d{bottom:413.397600px;}
.y4e{bottom:415.024050px;}
.y286{bottom:415.071750px;}
.ye3{bottom:417.033150px;}
.y1bc{bottom:418.083600px;}
.y252{bottom:421.023750px;}
.y82{bottom:421.711050px;}
.y116{bottom:423.860700px;}
.y9d{bottom:423.952650px;}
.y17b{bottom:426.712950px;}
.y15c{bottom:427.030500px;}
.y137{bottom:427.109850px;}
.y19b{bottom:427.693800px;}
.y21c{bottom:429.033750px;}
.y4d{bottom:430.033950px;}
.y285{bottom:430.065750px;}
.ye2{bottom:432.129150px;}
.y1bb{bottom:433.221900px;}
.y251{bottom:436.295850px;}
.y81{bottom:437.013150px;}
.y115{bottom:439.096950px;}
.yd{bottom:441.086250px;}
.y136{bottom:441.209850px;}
.y17a{bottom:442.166850px;}
.y15b{bottom:442.514250px;}
.y19a{bottom:442.857300px;}
.y21b{bottom:444.669750px;}
.y4c{bottom:445.027950px;}
.y284{bottom:445.059750px;}
.ye1{bottom:447.225150px;}
.y1eb{bottom:448.099500px;}
.y1ba{bottom:448.360350px;}
.y9c{bottom:449.019150px;}
.y250{bottom:451.565400px;}
.y80{bottom:452.315250px;}
.y114{bottom:454.333200px;}
.y179{bottom:457.620900px;}
.y15a{bottom:457.998000px;}
.y199{bottom:458.024850px;}
.y4b{bottom:460.021950px;}
.y283{bottom:460.053750px;}
.y21a{bottom:460.310550px;}
.yc{bottom:460.334250px;}
.y2b7{bottom:460.581600px;}
.ye0{bottom:462.316350px;}
.y1ea{bottom:463.361250px;}
.y1b9{bottom:463.498650px;}
.y135{bottom:463.793850px;}
.y24f{bottom:466.839900px;}
.y7f{bottom:467.617500px;}
.y113{bottom:469.569450px;}
.y178{bottom:473.075400px;}
.y198{bottom:473.184600px;}
.y159{bottom:473.481750px;}
.y4a{bottom:475.021200px;}
.y282{bottom:475.047750px;}
.yb{bottom:475.334250px;}
.y2b6{bottom:475.562850px;}
.y219{bottom:475.942050px;}
.y134{bottom:477.893850px;}
.y1e9{bottom:478.624950px;}
.y1b8{bottom:478.653450px;}
.y24e{bottom:482.111850px;}
.y7e{bottom:482.919600px;}
.y112{bottom:484.809150px;}
.y9b{bottom:486.835950px;}
.y197{bottom:488.348250px;}
.y158{bottom:488.965500px;}
.y281{bottom:490.041750px;}
.y49{bottom:490.047150px;}
.ya{bottom:490.334250px;}
.y2b5{bottom:490.544100px;}
.y218{bottom:491.578050px;}
.y1b7{bottom:493.787700px;}
.y1e8{bottom:493.888800px;}
.y24d{bottom:497.383950px;}
.y7d{bottom:498.223200px;}
.ydf{bottom:498.667200px;}
.y111{bottom:500.048850px;}
.y133{bottom:500.957850px;}
.y196{bottom:503.519700px;}
.y157{bottom:504.449250px;}
.y280{bottom:505.035750px;}
.y48{bottom:505.041150px;}
.y9{bottom:505.334250px;}
.y2b4{bottom:505.525350px;}
.y177{bottom:505.536900px;}
.y217{bottom:507.218850px;}
.y1b6{bottom:508.921950px;}
.y1e7{bottom:509.152500px;}
.yde{bottom:511.114500px;}
.y24c{bottom:512.650950px;}
.y132{bottom:515.057850px;}
.y110{bottom:515.299050px;}
.y195{bottom:518.679450px;}
.y156{bottom:519.933000px;}
.y27f{bottom:520.029750px;}
.y47{bottom:520.035150px;}
.y8{bottom:520.334250px;}
.y2b3{bottom:520.506600px;}
.y176{bottom:520.990950px;}
.y216{bottom:522.850350px;}
.ydd{bottom:523.561800px;}
.y1b5{bottom:524.056200px;}
.y1e6{bottom:524.416200px;}
.y24b{bottom:527.925450px;}
.y7c{bottom:530.531700px;}
.y10f{bottom:530.535300px;}
.y194{bottom:533.839200px;}
.y27e{bottom:535.023750px;}
.y46{bottom:535.029150px;}
.y7{bottom:535.334250px;}
.y155{bottom:535.427250px;}
.y2b2{bottom:535.487850px;}
.y131{bottom:536.417850px;}
.y175{bottom:536.444850px;}
.y215{bottom:538.486350px;}
.y1b4{bottom:539.190450px;}
.y1e5{bottom:539.679900px;}
.ydc{bottom:539.948850px;}
.y24a{bottom:543.199950px;}
.y10e{bottom:545.771550px;}
.y7b{bottom:545.833800px;}
.y193{bottom:549.002850px;}
.y27d{bottom:550.017750px;}
.y45{bottom:550.023150px;}
.y6{bottom:550.334250px;}
.y2b1{bottom:550.469100px;}
.y130{bottom:550.517850px;}
.y154{bottom:550.905750px;}
.y174{bottom:551.898900px;}
.y214{bottom:554.145450px;}
.y1b3{bottom:554.328900px;}
.y1e4{bottom:554.945700px;}
.y249{bottom:558.471900px;}
.ydb{bottom:560.828850px;}
.y10d{bottom:561.007800px;}
.y7a{bottom:561.125850px;}
.y192{bottom:564.166500px;}
.y44{bottom:565.017150px;}
.y5{bottom:565.334250px;}
.y2b0{bottom:565.450350px;}
.y153{bottom:566.384250px;}
.y173{bottom:567.354000px;}
.y1b2{bottom:569.471400px;}
.y213{bottom:569.776950px;}
.y1e3{bottom:570.207450px;}
.y248{bottom:573.736500px;}
.y10c{bottom:576.247650px;}
.y191{bottom:579.330150px;}
.y43{bottom:580.016400px;}
.y27c{bottom:580.032300px;}
.y4{bottom:580.334250px;}
.y2af{bottom:580.431600px;}
.yda{bottom:581.708850px;}
.y152{bottom:581.868000px;}
.y172{bottom:582.807000px;}
.y1b1{bottom:584.605650px;}
.y12f{bottom:584.940150px;}
.y212{bottom:585.408450px;}
.y1e2{bottom:585.471150px;}
.y247{bottom:589.011000px;}
.y79{bottom:589.188600px;}
.y10b{bottom:591.494400px;}
.y190{bottom:594.497700px;}
.y42{bottom:595.015650px;}
.y27b{bottom:595.026300px;}
.y2ae{bottom:595.412850px;}
.y151{bottom:597.351750px;}
.y1e1{bottom:600.734850px;}
.y211{bottom:601.039950px;}
.yd9{bottom:602.588850px;}
.y246{bottom:604.285500px;}
.y10a{bottom:606.730650px;}
.y18f{bottom:609.657450px;}
.y41{bottom:610.015050px;}
.y27a{bottom:610.020300px;}
.y2ad{bottom:610.394100px;}
.y150{bottom:612.840750px;}
.y1e0{bottom:615.998550px;}
.y210{bottom:616.671450px;}
.y20{bottom:617.234100px;}
.y171{bottom:619.218300px;}
.y245{bottom:619.560000px;}
.y1b0{bottom:620.695350px;}
.yb6{bottom:621.720000px;}
.y109{bottom:621.966900px;}
.yd8{bottom:623.468850px;}
.y40{bottom:625.014300px;}
.y2ac{bottom:625.375350px;}
.y14f{bottom:628.319250px;}
.y12e{bottom:629.876250px;}
.y1df{bottom:631.262400px;}
.y20f{bottom:632.302950px;}
.y1f{bottom:633.434100px;}
.y78{bottom:634.259850px;}
.y1af{bottom:634.795350px;}
.y244{bottom:634.832100px;}
.y108{bottom:637.206600px;}
.y3f{bottom:640.013700px;}
.y170{bottom:640.098300px;}
.y2ab{bottom:640.356600px;}
.y14e{bottom:643.803000px;}
.y12d{bottom:645.048600px;}
.y18e{bottom:645.795450px;}
.yd7{bottom:646.520850px;}
.y1de{bottom:646.526100px;}
.y20e{bottom:647.939100px;}
.y77{bottom:649.562100px;}
.y243{bottom:650.101500px;}
.y107{bottom:652.446300px;}
.yd5{bottom:653.570850px;}
.y3e{bottom:655.012950px;}
.y279{bottom:655.108350px;}
.y2aa{bottom:655.337850px;}
.y1ae{bottom:655.675350px;}
.y14d{bottom:659.286750px;}
.y18d{bottom:659.895450px;}
.y12c{bottom:660.220800px;}
.yd6{bottom:660.620850px;}
.y16f{bottom:660.978300px;}
.y1dd{bottom:661.791750px;}
.y20d{bottom:663.583950px;}
.y76{bottom:664.866300px;}
.y242{bottom:665.376000px;}
.yb5{bottom:666.676500px;}
.y106{bottom:667.686150px;}
.y16e{bottom:668.034300px;}
.y1e{bottom:668.115900px;}
.y1ad{bottom:669.775350px;}
.y3d{bottom:670.012200px;}
.y278{bottom:670.102350px;}
.y2a9{bottom:670.319100px;}
.y14c{bottom:674.770500px;}
.y12b{bottom:675.393300px;}
.y1dc{bottom:677.053500px;}
.y20c{bottom:679.215450px;}
.y75{bottom:680.166300px;}
.y241{bottom:680.648100px;}
.y18c{bottom:680.775450px;}
.yb4{bottom:681.872100px;}
.y105{bottom:682.925850px;}
.y1d{bottom:684.315900px;}
.y3c{bottom:685.022100px;}
.y277{bottom:685.096350px;}
.y2a8{bottom:685.300350px;}
.y1ac{bottom:690.655350px;}
.y20b{bottom:694.846950px;}
.y74{bottom:695.468400px;}
.y240{bottom:695.902800px;}
.yb3{bottom:697.067550px;}
.yd4{bottom:697.131300px;}
.y3b{bottom:700.016100px;}
.y276{bottom:700.090350px;}
.y2a7{bottom:700.281600px;}
.y18b{bottom:704.211450px;}
.y1ab{bottom:704.755350px;}
.y16d{bottom:709.785900px;}
.y73{bottom:710.772750px;}
.y23f{bottom:711.177300px;}
.yd3{bottom:712.227300px;}
.yb2{bottom:712.263000px;}
.y1db{bottom:713.274450px;}
.y3a{bottom:715.010100px;}
.y275{bottom:715.084350px;}
.y2a6{bottom:715.262850px;}
.y1c{bottom:718.997850px;}
.y104{bottom:719.425500px;}
.y20a{bottom:723.241200px;}
.y16c{bottom:725.238900px;}
.y1aa{bottom:725.635350px;}
.y72{bottom:726.072750px;}
.y23e{bottom:726.451800px;}
.yb1{bottom:727.458600px;}
.y39{bottom:730.009500px;}
.y274{bottom:730.078350px;}
.y2a5{bottom:730.244100px;}
.y1a9{bottom:732.691350px;}
.y1da{bottom:734.154450px;}
.y1b{bottom:735.197850px;}
.y103{bottom:735.947250px;}
.y18a{bottom:736.937250px;}
.y71{bottom:741.374850px;}
.y23d{bottom:741.726300px;}
.yb0{bottom:742.654050px;}
.y38{bottom:745.008750px;}
.y273{bottom:745.072350px;}
.y2a4{bottom:745.225350px;}
.y1d9{bottom:755.034450px;}
.y70{bottom:756.676950px;}
.y102{bottom:756.827250px;}
.y23c{bottom:757.000800px;}
.yd2{bottom:757.081800px;}
.yaf{bottom:757.844700px;}
.y37{bottom:760.008000px;}
.y272{bottom:760.066350px;}
.y2a3{bottom:760.206600px;}
.y1d8{bottom:762.090450px;}
.y1a{bottom:767.750700px;}
.y209{bottom:768.643950px;}
.y16b{bottom:770.463150px;}
.y6f{bottom:771.979050px;}
.yd1{bottom:772.172850px;}
.y23b{bottom:772.275300px;}
.yae{bottom:773.042700px;}
.y189{bottom:773.364000px;}
.y1a8{bottom:774.126300px;}
.y36{bottom:775.007400px;}
.y271{bottom:775.060350px;}
.y2a2{bottom:775.187850px;}
.y101{bottom:777.707250px;}
.y208{bottom:784.275450px;}
.y16a{bottom:785.916150px;}
.yd0{bottom:787.263900px;}
.y6e{bottom:787.281150px;}
.y23a{bottom:787.549800px;}
.y9a{bottom:787.842000px;}
.yad{bottom:788.240700px;}
.y188{bottom:788.527650px;}
.y35{bottom:790.006650px;}
.y270{bottom:790.054350px;}
.y2a1{bottom:790.169100px;}
.y19{bottom:791.753700px;}
.y100{bottom:798.587250px;}
.y207{bottom:799.911600px;}
.y169{bottom:801.369150px;}
.ycf{bottom:802.354950px;}
.y6d{bottom:802.583250px;}
.y239{bottom:802.824300px;}
.yac{bottom:803.436150px;}
.y1d7{bottom:803.652750px;}
.y187{bottom:803.691300px;}
.y34{bottom:805.006050px;}
.y26f{bottom:805.048350px;}
.y2a0{bottom:805.150350px;}
.y206{bottom:815.552250px;}
.y168{bottom:816.822150px;}
.yce{bottom:817.446150px;}
.y6c{bottom:817.885500px;}
.y238{bottom:818.096250px;}
.yab{bottom:818.631750px;}
.y186{bottom:818.854950px;}
.y1d6{bottom:818.914500px;}
.y1a7{bottom:819.031800px;}
.yff{bottom:819.467250px;}
.y33{bottom:820.005300px;}
.y26e{bottom:820.042350px;}
.y29f{bottom:820.131600px;}
.y99{bottom:825.658800px;}
.y205{bottom:831.183750px;}
.y167{bottom:832.276200px;}
.ycd{bottom:832.537200px;}
.y6b{bottom:833.187600px;}
.y237{bottom:833.365800px;}
.yaa{bottom:833.827200px;}
.y185{bottom:834.022500px;}
.y1a6{bottom:834.170250px;}
.y32{bottom:835.009950px;}
.y26d{bottom:835.036350px;}
.y29e{bottom:835.112850px;}
.yfe{bottom:840.347250px;}
.y98{bottom:842.215800px;}
.y204{bottom:846.819900px;}
.y21{bottom:846.952650px;}
.ycc{bottom:847.622550px;}
.y166{bottom:847.730250px;}
.y6a{bottom:848.489850px;}
.y236{bottom:848.640300px;}
.ya9{bottom:849.022800px;}
.y184{bottom:849.182250px;}
.y1a5{bottom:849.312600px;}
.y31{bottom:850.003950px;}
.y26c{bottom:850.030350px;}
.y29d{bottom:850.094100px;}
.y97{bottom:858.751350px;}
.yfd{bottom:861.227250px;}
.y203{bottom:862.460550px;}
.y165{bottom:863.184300px;}
.y69{bottom:863.791950px;}
.y235{bottom:863.912250px;}
.y1d5{bottom:863.947500px;}
.ya8{bottom:864.210900px;}
.y183{bottom:864.345750px;}
.y1a4{bottom:864.446850px;}
.y30{bottom:865.003200px;}
.y26b{bottom:865.024350px;}
.y29c{bottom:865.075350px;}
.yfc{bottom:868.283250px;}
.y96{bottom:875.313600px;}
.y202{bottom:878.092050px;}
.y164{bottom:878.640450px;}
.y68{bottom:879.096150px;}
.y234{bottom:879.181950px;}
.y1d4{bottom:879.209250px;}
.ya7{bottom:879.408900px;}
.y182{bottom:879.509550px;}
.y1a3{bottom:879.585300px;}
.ycb{bottom:879.727050px;}
.y2f{bottom:880.013100px;}
.y26a{bottom:880.018350px;}
.y29b{bottom:880.056600px;}
.y3{bottom:888.220350px;}
.y95{bottom:891.875850px;}
.y201{bottom:893.728200px;}
.y163{bottom:894.093450px;}
.y67{bottom:894.396150px;}
.y233{bottom:894.456450px;}
.y1d3{bottom:894.472950px;}
.ya6{bottom:894.606900px;}
.y181{bottom:894.673050px;}
.y1a2{bottom:894.723600px;}
.yca{bottom:894.818250px;}
.y2e{bottom:895.007100px;}
.y269{bottom:895.012350px;}
.y29a{bottom:895.037850px;}
.y2a{bottom:903.165000px;}
.y94{bottom:908.438100px;}
.y200{bottom:909.368850px;}
.y162{bottom:909.546450px;}
.y66{bottom:909.698250px;}
.y232{bottom:909.728400px;}
.y1d2{bottom:909.736650px;}
.ya5{bottom:909.804900px;}
.yfb{bottom:909.826650px;}
.y180{bottom:909.836850px;}
.y1a1{bottom:909.862050px;}
.yc9{bottom:909.909300px;}
.y2d{bottom:910.001100px;}
.y268{bottom:910.006350px;}
.y299{bottom:910.019100px;}
.y2c{bottom:925.000350px;}
.yfa{bottom:925.062900px;}
.y2{bottom:941.160300px;}
.y2b{bottom:969.502950px;}
.y65{bottom:969.659250px;}
.h9{height:27.300000px;}
.h2{height:38.220000px;}
.he{height:40.534800px;}
.hd{height:41.160000px;}
.hf{height:41.412000px;}
.h3{height:46.123800px;}
.h4{height:47.040000px;}
.h5{height:47.328000px;}
.hb{height:49.980000px;}
.hc{height:50.062500px;}
.ha{height:50.286000px;}
.h8{height:52.920000px;}
.h14{height:55.689000px;}
.h7{height:65.076000px;}
.h12{height:75.216000px;}
.h11{height:75.504000px;}
.h6{height:82.320000px;}
.h13{height:103.440000px;}
.h10{height:103.728000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x29{left:69.484800px;}
.x27{left:73.324800px;}
.x42{left:75.017850px;}
.x3{left:76.820550px;}
.xb{left:80.787450px;}
.x2a{left:82.828800px;}
.x37{left:83.890650px;}
.x25{left:85.619850px;}
.x28{left:88.048800px;}
.x3c{left:89.508900px;}
.x4{left:91.666350px;}
.x38{left:93.118650px;}
.xf{left:96.508800px;}
.x41{left:100.421850px;}
.x2e{left:104.017200px;}
.x33{left:111.427200px;}
.x11{left:115.633800px;}
.x2d{left:117.353700px;}
.x39{left:123.640800px;}
.x3a{left:125.796900px;}
.x26{left:128.554200px;}
.x5{left:133.540350px;}
.x6{left:135.609300px;}
.x10{left:138.189000px;}
.x34{left:141.490800px;}
.xe{left:143.279550px;}
.x1b{left:159.448800px;}
.x2f{left:160.641300px;}
.x35{left:170.815800px;}
.x36{left:172.462650px;}
.xd{left:177.552150px;}
.x30{left:180.442050px;}
.x12{left:183.310800px;}
.x1a{left:186.720000px;}
.x3d{left:188.500050px;}
.x7{left:189.982650px;}
.x24{left:198.779550px;}
.x19{left:203.736000px;}
.x14{left:204.750000px;}
.x13{left:206.413800px;}
.x3e{left:213.605850px;}
.x1c{left:222.400500px;}
.x1f{left:225.102150px;}
.xa{left:232.306200px;}
.x31{left:238.927200px;}
.x23{left:243.090150px;}
.x20{left:245.658150px;}
.x1d{left:248.010150px;}
.x21{left:249.870150px;}
.x9{left:251.319450px;}
.x22{left:252.750150px;}
.x8{left:256.024800px;}
.x15{left:279.194850px;}
.x2b{left:291.604800px;}
.x16{left:297.036000px;}
.x17{left:361.956000px;}
.x43{left:372.259800px;}
.x1e{left:404.550150px;}
.xc{left:424.260000px;}
.x18{left:456.528000px;}
.x2{left:484.450350px;}
.x3f{left:498.881850px;}
.x2c{left:515.032800px;}
.x3b{left:575.004900px;}
.x40{left:582.773850px;}
.x32{left:603.823200px;}
@media print{
.v2{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.747200pt;}
.v4{vertical-align:25.045333pt;}
.v3{vertical-align:50.133333pt;}
.ls36{letter-spacing:-2.346667pt;}
.ls16{letter-spacing:-1.224000pt;}
.ls15{letter-spacing:-1.133333pt;}
.ls18{letter-spacing:-1.088000pt;}
.ls12{letter-spacing:-0.952000pt;}
.ls13{letter-spacing:-0.906667pt;}
.ls14{letter-spacing:-0.861333pt;}
.ls20{letter-spacing:-0.770667pt;}
.ls17{letter-spacing:-0.725333pt;}
.ls33{letter-spacing:-0.680000pt;}
.ls32{letter-spacing:-0.589333pt;}
.ls28{letter-spacing:-0.554667pt;}
.ls1f{letter-spacing:-0.453333pt;}
.ls29{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls37{letter-spacing:-0.408000pt;}
.ls8{letter-spacing:-0.373333pt;}
.lsb{letter-spacing:-0.362667pt;}
.ls34{letter-spacing:-0.317333pt;}
.ls31{letter-spacing:-0.272000pt;}
.ls1a{letter-spacing:-0.226667pt;}
.ls9{letter-spacing:-0.216533pt;}
.ls21{letter-spacing:-0.186667pt;}
.ls11{letter-spacing:-0.181333pt;}
.ls19{letter-spacing:-0.136000pt;}
.ls1b{letter-spacing:-0.090667pt;}
.lsa{letter-spacing:-0.045333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.022667pt;}
.lsd{letter-spacing:0.045333pt;}
.ls0{letter-spacing:0.069333pt;}
.lsf{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.098667pt;}
.ls10{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.149333pt;}
.ls1c{letter-spacing:0.158667pt;}
.ls1d{letter-spacing:0.181333pt;}
.lse{letter-spacing:0.226667pt;}
.ls35{letter-spacing:0.272000pt;}
.ls1e{letter-spacing:0.317333pt;}
.ls38{letter-spacing:0.362667pt;}
.ls2e{letter-spacing:0.408000pt;}
.ls7{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.453333pt;}
.ls4{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.498667pt;}
.ls3a{letter-spacing:0.506667pt;}
.ls27{letter-spacing:0.521333pt;}
.ls2f{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.589333pt;}
.ls22{letter-spacing:0.634667pt;}
.ls26{letter-spacing:0.725333pt;}
.lsc{letter-spacing:0.746667pt;}
.ls2d{letter-spacing:0.770667pt;}
.ls39{letter-spacing:0.861333pt;}
.ls2c{letter-spacing:0.906667pt;}
.ls2a{letter-spacing:0.997333pt;}
.ls2b{letter-spacing:1.314667pt;}
.ws3f{word-spacing:-13.010667pt;}
.ws86{word-spacing:-12.602667pt;}
.ws3{word-spacing:-12.416000pt;}
.ws88{word-spacing:-12.330667pt;}
.ws51{word-spacing:-11.861333pt;}
.ws7f{word-spacing:-11.125333pt;}
.ws0{word-spacing:-6.019627pt;}
.ws1{word-spacing:-5.803093pt;}
.ws89{word-spacing:-2.493333pt;}
.ws7c{word-spacing:-1.994667pt;}
.ws18{word-spacing:-1.949333pt;}
.ws17{word-spacing:-1.904000pt;}
.ws31{word-spacing:-1.858667pt;}
.ws46{word-spacing:-1.813333pt;}
.ws2a{word-spacing:-1.768000pt;}
.wse{word-spacing:-1.749333pt;}
.ws26{word-spacing:-1.722667pt;}
.ws37{word-spacing:-1.677333pt;}
.ws74{word-spacing:-1.586667pt;}
.ws45{word-spacing:-1.568000pt;}
.ws7d{word-spacing:-1.541333pt;}
.ws2d{word-spacing:-1.496000pt;}
.ws39{word-spacing:-1.450667pt;}
.ws61{word-spacing:-1.405333pt;}
.ws23{word-spacing:-1.360000pt;}
.ws28{word-spacing:-1.314667pt;}
.wsf{word-spacing:-1.280000pt;}
.ws38{word-spacing:-1.269333pt;}
.ws3e{word-spacing:-1.224000pt;}
.wsb{word-spacing:-1.194667pt;}
.ws85{word-spacing:-1.178667pt;}
.ws72{word-spacing:-1.133333pt;}
.ws1f{word-spacing:-1.088000pt;}
.ws4{word-spacing:-1.024000pt;}
.ws1d{word-spacing:-0.997333pt;}
.ws40{word-spacing:-0.970667pt;}
.ws33{word-spacing:-0.952000pt;}
.ws7e{word-spacing:-0.906667pt;}
.ws2b{word-spacing:-0.861333pt;}
.ws41{word-spacing:-0.816000pt;}
.ws2f{word-spacing:-0.770667pt;}
.ws35{word-spacing:-0.746667pt;}
.ws3d{word-spacing:-0.725333pt;}
.ws3a{word-spacing:-0.680000pt;}
.ws82{word-spacing:-0.589333pt;}
.ws2c{word-spacing:-0.544000pt;}
.ws34{word-spacing:-0.498667pt;}
.ws7b{word-spacing:-0.453333pt;}
.ws56{word-spacing:-0.408000pt;}
.ws32{word-spacing:-0.362667pt;}
.ws1b{word-spacing:-0.317333pt;}
.ws69{word-spacing:-0.272000pt;}
.ws3b{word-spacing:-0.226667pt;}
.ws62{word-spacing:-0.181333pt;}
.ws7a{word-spacing:-0.136000pt;}
.ws57{word-spacing:-0.090667pt;}
.ws36{word-spacing:-0.045333pt;}
.ws2{word-spacing:0.000000pt;}
.ws83{word-spacing:0.045333pt;}
.ws54{word-spacing:0.090667pt;}
.ws29{word-spacing:0.181333pt;}
.ws44{word-spacing:0.186667pt;}
.ws60{word-spacing:0.226667pt;}
.ws59{word-spacing:0.272000pt;}
.ws42{word-spacing:0.317333pt;}
.ws8a{word-spacing:0.362667pt;}
.ws9{word-spacing:0.384000pt;}
.ws55{word-spacing:0.408000pt;}
.ws52{word-spacing:0.448000pt;}
.ws27{word-spacing:0.498667pt;}
.ws6a{word-spacing:0.544000pt;}
.ws50{word-spacing:0.554667pt;}
.ws19{word-spacing:0.589333pt;}
.ws64{word-spacing:0.680000pt;}
.ws24{word-spacing:0.725333pt;}
.ws84{word-spacing:0.770667pt;}
.ws79{word-spacing:0.816000pt;}
.ws6b{word-spacing:0.906667pt;}
.ws71{word-spacing:0.952000pt;}
.ws73{word-spacing:0.997333pt;}
.wsa{word-spacing:1.024000pt;}
.ws30{word-spacing:1.042667pt;}
.ws1c{word-spacing:1.133333pt;}
.ws78{word-spacing:1.224000pt;}
.ws22{word-spacing:1.269333pt;}
.ws6d{word-spacing:1.314667pt;}
.ws11{word-spacing:1.322667pt;}
.ws25{word-spacing:1.360000pt;}
.ws3c{word-spacing:1.405333pt;}
.ws58{word-spacing:1.450667pt;}
.ws43{word-spacing:1.496000pt;}
.ws47{word-spacing:1.541333pt;}
.ws53{word-spacing:1.568000pt;}
.ws2e{word-spacing:1.586667pt;}
.ws6c{word-spacing:1.677333pt;}
.ws48{word-spacing:1.722667pt;}
.ws63{word-spacing:1.768000pt;}
.ws20{word-spacing:1.813333pt;}
.ws21{word-spacing:1.858667pt;}
.ws1e{word-spacing:1.904000pt;}
.ws12{word-spacing:2.048000pt;}
.ws87{word-spacing:2.629333pt;}
.wsc{word-spacing:3.456000pt;}
.ws10{word-spacing:4.224000pt;}
.ws7{word-spacing:4.266667pt;}
.wsd{word-spacing:4.352000pt;}
.ws6{word-spacing:5.162667pt;}
.ws5{word-spacing:5.461333pt;}
.ws8{word-spacing:5.760000pt;}
.ws16{word-spacing:11.573333pt;}
.ws15{word-spacing:22.176000pt;}
.ws14{word-spacing:32.778667pt;}
.ws80{word-spacing:37.674667pt;}
.ws13{word-spacing:43.381333pt;}
.ws4a{word-spacing:103.210667pt;}
.ws49{word-spacing:150.826667pt;}
.ws6e{word-spacing:162.730667pt;}
.ws6f{word-spacing:175.701333pt;}
.ws4e{word-spacing:178.560000pt;}
.ws4f{word-spacing:183.296000pt;}
.ws4d{word-spacing:195.157333pt;}
.ws5a{word-spacing:199.296000pt;}
.ws4b{word-spacing:212.949333pt;}
.ws81{word-spacing:215.040000pt;}
.ws4c{word-spacing:224.853333pt;}
.ws75{word-spacing:258.560000pt;}
.ws77{word-spacing:290.090667pt;}
.ws76{word-spacing:291.370667pt;}
.ws70{word-spacing:317.568000pt;}
.ws67{word-spacing:318.293333pt;}
.ws65{word-spacing:352.384000pt;}
.ws5b{word-spacing:371.456000pt;}
.ws5f{word-spacing:373.077333pt;}
.ws68{word-spacing:381.909333pt;}
.ws5d{word-spacing:396.714667pt;}
.ws66{word-spacing:404.394667pt;}
.ws5c{word-spacing:409.002667pt;}
.ws5e{word-spacing:415.705600pt;}
.ws8c{word-spacing:451.541333pt;}
.ws8d{word-spacing:481.130667pt;}
.ws8b{word-spacing:493.341333pt;}
.ws1a{word-spacing:1259.134400pt;}
._18{margin-left:-15.386667pt;}
._3d{margin-left:-14.325333pt;}
._8{margin-left:-13.010667pt;}
._9{margin-left:-11.805333pt;}
._3b{margin-left:-10.718400pt;}
._2{margin-left:-8.302933pt;}
._3{margin-left:-6.884267pt;}
._c{margin-left:-5.848000pt;}
._1{margin-left:-4.740267pt;}
._a{margin-left:-3.846400pt;}
._0{margin-left:-2.565333pt;}
._6{margin-left:-0.906667pt;}
._5{width:0.952000pt;}
._1e{width:2.040000pt;}
._3c{width:10.426667pt;}
._14{width:11.861333pt;}
._b{width:13.010667pt;}
._3e{width:32.258667pt;}
._1c{width:52.309333pt;}
._36{width:58.880000pt;}
._29{width:85.077333pt;}
._35{width:86.613333pt;}
._31{width:96.512000pt;}
._2a{width:102.442667pt;}
._21{width:103.641600pt;}
._20{width:112.938667pt;}
._22{width:114.094933pt;}
._1f{width:131.157333pt;}
._2b{width:135.296000pt;}
._3a{width:137.264000pt;}
._27{width:151.002667pt;}
._28{width:163.925333pt;}
._15{width:167.210667pt;}
._2f{width:173.312000pt;}
._24{width:193.536000pt;}
._12{width:239.573333pt;}
._23{width:240.640000pt;}
._11{width:243.541333pt;}
._13{width:244.912000pt;}
._39{width:254.378667pt;}
._d{width:257.365333pt;}
._e{width:261.333333pt;}
._10{width:262.485333pt;}
._37{width:263.936000pt;}
._f{width:269.226667pt;}
._38{width:271.018667pt;}
._2e{width:290.090667pt;}
._1a{width:293.418667pt;}
._17{width:309.034667pt;}
._16{width:311.936000pt;}
._26{width:329.429333pt;}
._25{width:341.077333pt;}
._2d{width:343.637333pt;}
._19{width:403.285333pt;}
._2c{width:420.437333pt;}
._1d{width:425.258667pt;}
._1b{width:437.120000pt;}
._30{width:522.457600pt;}
._32{width:618.884267pt;}
._33{width:658.393600pt;}
._4{width:666.154667pt;}
._7{width:1044.410133pt;}
._34{width:1046.460800pt;}
.fs7{font-size:21.653333pt;}
.fs2{font-size:24.746667pt;}
.fs0{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.976267pt;}
.yf9{bottom:75.581867pt;}
.y93{bottom:75.585467pt;}
.y64{bottom:75.590533pt;}
.ya4{bottom:75.591200pt;}
.y17f{bottom:75.591467pt;}
.y2bb{bottom:75.592267pt;}
.y12a{bottom:75.593733pt;}
.y161{bottom:75.595200pt;}
.y25{bottom:78.670533pt;}
.ya3{bottom:87.957867pt;}
.y63{bottom:88.923200pt;}
.yf8{bottom:89.000533pt;}
.y1d1{bottom:89.054267pt;}
.y1a0{bottom:89.069333pt;}
.y14b{bottom:89.077200pt;}
.yc8{bottom:89.095467pt;}
.y129{bottom:89.137067pt;}
.y1ff{bottom:89.158400pt;}
.y267{bottom:89.165733pt;}
.y92{bottom:89.185467pt;}
.y17e{bottom:89.327467pt;}
.y160{bottom:89.353867pt;}
.y231{bottom:89.489333pt;}
.y24{bottom:89.637200pt;}
.y2ba{bottom:90.475600pt;}
.y23{bottom:100.603867pt;}
.y62{bottom:102.256000pt;}
.y298{bottom:102.317333pt;}
.yf7{bottom:102.419200pt;}
.y1d0{bottom:102.506933pt;}
.y19f{bottom:102.548133pt;}
.y14a{bottom:102.563600pt;}
.yc7{bottom:102.604800pt;}
.y128{bottom:102.683467pt;}
.y1fe{bottom:102.726133pt;}
.y266{bottom:102.734267pt;}
.y17d{bottom:103.064400pt;}
.y15f{bottom:103.117333pt;}
.y230{bottom:103.404533pt;}
.y2b9{bottom:105.358933pt;}
.y22{bottom:111.570533pt;}
.y91{bottom:114.130133pt;}
.y61{bottom:115.598133pt;}
.y297{bottom:115.645333pt;}
.yf6{bottom:115.833467pt;}
.y1cf{bottom:115.959600pt;}
.y149{bottom:116.050133pt;}
.yc6{bottom:116.112000pt;}
.y127{bottom:116.229867pt;}
.y1fd{bottom:116.293867pt;}
.y265{bottom:116.311600pt;}
.y15e{bottom:116.880667pt;}
.y22f{bottom:117.299200pt;}
.y2b8{bottom:120.242267pt;}
.y60{bottom:128.926133pt;}
.y296{bottom:128.973333pt;}
.yf5{bottom:129.247733pt;}
.y1ce{bottom:129.416000pt;}
.y148{bottom:129.536800pt;}
.yc5{bottom:129.619200pt;}
.y126{bottom:129.779467pt;}
.y1fc{bottom:129.861600pt;}
.y264{bottom:129.888933pt;}
.y22e{bottom:131.193867pt;}
.y29{bottom:136.477333pt;}
.y5f{bottom:142.254133pt;}
.y295{bottom:142.301333pt;}
.yf4{bottom:142.662000pt;}
.y1cd{bottom:142.879600pt;}
.y147{bottom:143.023333pt;}
.yc4{bottom:143.124000pt;}
.y125{bottom:143.322800pt;}
.y1fb{bottom:143.431200pt;}
.y263{bottom:143.466267pt;}
.y22d{bottom:145.088533pt;}
.y28{bottom:149.794000pt;}
.y90{bottom:154.193467pt;}
.y5e{bottom:155.586933pt;}
.y294{bottom:155.629333pt;}
.yf3{bottom:156.063200pt;}
.y1cc{bottom:156.332267pt;}
.y146{bottom:156.509867pt;}
.yc3{bottom:156.633333pt;}
.y124{bottom:156.869200pt;}
.y1fa{bottom:156.997200pt;}
.y262{bottom:157.041333pt;}
.y22c{bottom:158.983200pt;}
.y27{bottom:163.110667pt;}
.y8f{bottom:167.793467pt;}
.y5d{bottom:168.919600pt;}
.y293{bottom:168.957333pt;}
.yf2{bottom:169.481867pt;}
.y1cb{bottom:169.784933pt;}
.y145{bottom:169.996400pt;}
.yc2{bottom:170.140533pt;}
.y123{bottom:170.418800pt;}
.y1f9{bottom:170.564933pt;}
.y261{bottom:170.609867pt;}
.y22b{bottom:172.881867pt;}
.y8e{bottom:181.395333pt;}
.y5c{bottom:182.257067pt;}
.y292{bottom:182.285333pt;}
.yf1{bottom:182.900533pt;}
.y1ca{bottom:183.241200pt;}
.y144{bottom:183.482933pt;}
.yc1{bottom:183.647600pt;}
.y122{bottom:183.962133pt;}
.y1f8{bottom:184.134533pt;}
.y260{bottom:184.187200pt;}
.y22a{bottom:186.792933pt;}
.y26{bottom:187.765867pt;}
.y8d{bottom:194.997200pt;}
.y5b{bottom:195.585067pt;}
.y291{bottom:195.613333pt;}
.yf0{bottom:196.319200pt;}
.y1c9{bottom:196.697600pt;}
.y143{bottom:196.969467pt;}
.yc0{bottom:197.154800pt;}
.y121{bottom:197.508533pt;}
.y1f7{bottom:197.700533pt;}
.y25f{bottom:197.764533pt;}
.y229{bottom:200.687600pt;}
.y8c{bottom:208.599067pt;}
.y5a{bottom:208.917733pt;}
.y290{bottom:208.941333pt;}
.yef{bottom:209.733467pt;}
.y1c8{bottom:210.153867pt;}
.y142{bottom:210.456000pt;}
.ybf{bottom:210.661867pt;}
.y120{bottom:211.057600pt;}
.y1f6{bottom:211.268267pt;}
.y25e{bottom:211.341867pt;}
.y228{bottom:214.582267pt;}
.y8b{bottom:222.201067pt;}
.y59{bottom:222.250400pt;}
.y28f{bottom:222.269333pt;}
.yee{bottom:223.130267pt;}
.y1c7{bottom:223.610133pt;}
.y18{bottom:223.618000pt;}
.y141{bottom:223.942533pt;}
.ybe{bottom:224.169067pt;}
.y1f5{bottom:224.836000pt;}
.y25d{bottom:224.916933pt;}
.y227{bottom:228.476933pt;}
.y58{bottom:235.587867pt;}
.y28e{bottom:235.597333pt;}
.y8a{bottom:235.806133pt;}
.yed{bottom:236.548933pt;}
.y1c6{bottom:237.066533pt;}
.y140{bottom:237.429067pt;}
.ybd{bottom:237.676133pt;}
.y1f4{bottom:238.403733pt;}
.y25c{bottom:238.485467pt;}
.y11f{bottom:239.719600pt;}
.y17{bottom:240.727333pt;}
.y226{bottom:242.375733pt;}
.y57{bottom:248.915867pt;}
.y28d{bottom:248.925333pt;}
.y89{bottom:249.406133pt;}
.yec{bottom:249.967600pt;}
.y1c5{bottom:250.522933pt;}
.y13f{bottom:250.915600pt;}
.ybc{bottom:251.181067pt;}
.y1f3{bottom:251.971467pt;}
.y25b{bottom:252.062800pt;}
.y11e{bottom:253.266000pt;}
.y16{bottom:254.060667pt;}
.y225{bottom:256.278533pt;}
.y56{bottom:262.248533pt;}
.y28c{bottom:262.253333pt;}
.yeb{bottom:263.386267pt;}
.y1c4{bottom:263.979200pt;}
.y13e{bottom:264.402267pt;}
.ybb{bottom:264.690400pt;}
.y1f2{bottom:265.541067pt;}
.y25a{bottom:265.640133pt;}
.y11d{bottom:266.812400pt;}
.y15{bottom:267.394000pt;}
.y224{bottom:270.173200pt;}
.y55{bottom:275.581333pt;}
.yea{bottom:276.804933pt;}
.y1c3{bottom:277.435467pt;}
.y13d{bottom:277.888800pt;}
.y88{bottom:278.124800pt;}
.yba{bottom:278.197600pt;}
.y1f1{bottom:279.107067pt;}
.y259{bottom:279.217467pt;}
.y11c{bottom:280.358933pt;}
.y14{bottom:280.727333pt;}
.y223{bottom:284.072000pt;}
.ya2{bottom:284.368000pt;}
.y54{bottom:288.914000pt;}
.ye9{bottom:290.219200pt;}
.y1c2{bottom:290.891867pt;}
.y13c{bottom:291.375333pt;}
.yb9{bottom:291.704667pt;}
.y87{bottom:291.726667pt;}
.y1f0{bottom:292.674800pt;}
.y258{bottom:292.792667pt;}
.y11b{bottom:293.905333pt;}
.y13{bottom:294.060667pt;}
.y222{bottom:297.970800pt;}
.y53{bottom:302.246667pt;}
.y28b{bottom:302.312667pt;}
.ye8{bottom:303.633467pt;}
.y1c1{bottom:304.351867pt;}
.y86{bottom:305.328533pt;}
.y1ef{bottom:306.242533pt;}
.y257{bottom:306.365600pt;}
.y12{bottom:307.394000pt;}
.y11a{bottom:307.451733pt;}
.y221{bottom:311.881733pt;}
.y52{bottom:315.579467pt;}
.y28a{bottom:315.640667pt;}
.ye7{bottom:317.021467pt;}
.y1c0{bottom:317.804533pt;}
.ya1{bottom:317.982667pt;}
.y85{bottom:318.930400pt;}
.y1ee{bottom:319.810400pt;}
.y256{bottom:319.942933pt;}
.y11{bottom:320.727333pt;}
.y19e{bottom:320.838800pt;}
.y119{bottom:320.998267pt;}
.y13b{bottom:323.493200pt;}
.yb8{bottom:324.109467pt;}
.y220{bottom:325.776400pt;}
.y51{bottom:328.912133pt;}
.y289{bottom:328.968667pt;}
.ye6{bottom:330.440133pt;}
.y1bf{bottom:331.260800pt;}
.y84{bottom:332.533733pt;}
.ya0{bottom:332.700000pt;}
.y1ed{bottom:333.378133pt;}
.y255{bottom:333.518000pt;}
.y10{bottom:334.060667pt;}
.y118{bottom:334.544667pt;}
.yb7{bottom:335.266667pt;}
.y13a{bottom:336.026533pt;}
.y17c{bottom:339.112400pt;}
.y15d{bottom:339.362667pt;}
.y21f{bottom:339.671067pt;}
.y50{bottom:342.244933pt;}
.y288{bottom:342.296667pt;}
.ye5{bottom:343.858800pt;}
.y1be{bottom:344.717200pt;}
.y254{bottom:347.090933pt;}
.yf{bottom:347.394000pt;}
.y9f{bottom:347.417200pt;}
.y139{bottom:348.559867pt;}
.y19d{bottom:353.218133pt;}
.y21e{bottom:353.565733pt;}
.y4f{bottom:355.577600pt;}
.y287{bottom:355.624667pt;}
.ye4{bottom:357.277467pt;}
.y1bd{bottom:358.173467pt;}
.y1ec{bottom:358.281333pt;}
.y253{bottom:360.668267pt;}
.y83{bottom:361.252400pt;}
.y9e{bottom:362.134533pt;}
.y117{bottom:363.221733pt;}
.ye{bottom:364.503333pt;}
.y19c{bottom:366.693467pt;}
.y138{bottom:367.119867pt;}
.y21d{bottom:367.464533pt;}
.y4e{bottom:368.910267pt;}
.y286{bottom:368.952667pt;}
.ye3{bottom:370.696133pt;}
.y1bc{bottom:371.629867pt;}
.y252{bottom:374.243333pt;}
.y82{bottom:374.854267pt;}
.y116{bottom:376.765067pt;}
.y9d{bottom:376.846800pt;}
.y17b{bottom:379.300400pt;}
.y15c{bottom:379.582667pt;}
.y137{bottom:379.653200pt;}
.y19b{bottom:380.172267pt;}
.y21c{bottom:381.363333pt;}
.y4d{bottom:382.252400pt;}
.y285{bottom:382.280667pt;}
.ye2{bottom:384.114800pt;}
.y1bb{bottom:385.086133pt;}
.y251{bottom:387.818533pt;}
.y81{bottom:388.456133pt;}
.y115{bottom:390.308400pt;}
.yd{bottom:392.076667pt;}
.y136{bottom:392.186533pt;}
.y17a{bottom:393.037200pt;}
.y15b{bottom:393.346000pt;}
.y19a{bottom:393.650933pt;}
.y21b{bottom:395.262000pt;}
.y4c{bottom:395.580400pt;}
.y284{bottom:395.608667pt;}
.ye1{bottom:397.533467pt;}
.y1eb{bottom:398.310667pt;}
.y1ba{bottom:398.542533pt;}
.y9c{bottom:399.128133pt;}
.y250{bottom:401.391467pt;}
.y80{bottom:402.058000pt;}
.y114{bottom:403.851733pt;}
.y179{bottom:406.774133pt;}
.y15a{bottom:407.109333pt;}
.y199{bottom:407.133200pt;}
.y4b{bottom:408.908400pt;}
.y283{bottom:408.936667pt;}
.y21a{bottom:409.164933pt;}
.yc{bottom:409.186000pt;}
.y2b7{bottom:409.405867pt;}
.ye0{bottom:410.947867pt;}
.y1ea{bottom:411.876667pt;}
.y1b9{bottom:411.998800pt;}
.y135{bottom:412.261200pt;}
.y24f{bottom:414.968800pt;}
.y7f{bottom:415.660000pt;}
.y113{bottom:417.395067pt;}
.y178{bottom:420.511467pt;}
.y198{bottom:420.608533pt;}
.y159{bottom:420.872667pt;}
.y4a{bottom:422.241067pt;}
.y282{bottom:422.264667pt;}
.yb{bottom:422.519333pt;}
.y2b6{bottom:422.722533pt;}
.y219{bottom:423.059600pt;}
.y134{bottom:424.794533pt;}
.y1e9{bottom:425.444400pt;}
.y1b8{bottom:425.469733pt;}
.y24e{bottom:428.543867pt;}
.y7e{bottom:429.261867pt;}
.y112{bottom:430.941467pt;}
.y9b{bottom:432.743067pt;}
.y197{bottom:434.087333pt;}
.y158{bottom:434.636000pt;}
.y281{bottom:435.592667pt;}
.y49{bottom:435.597467pt;}
.ya{bottom:435.852667pt;}
.y2b5{bottom:436.039200pt;}
.y218{bottom:436.958267pt;}
.y1b7{bottom:438.922400pt;}
.y1e8{bottom:439.012267pt;}
.y24d{bottom:442.119067pt;}
.y7d{bottom:442.865067pt;}
.ydf{bottom:443.259733pt;}
.y111{bottom:444.487867pt;}
.y133{bottom:445.295867pt;}
.y196{bottom:447.573067pt;}
.y157{bottom:448.399333pt;}
.y280{bottom:448.920667pt;}
.y48{bottom:448.925467pt;}
.y9{bottom:449.186000pt;}
.y2b4{bottom:449.355867pt;}
.y177{bottom:449.366133pt;}
.y217{bottom:450.861200pt;}
.y1b6{bottom:452.375067pt;}
.y1e7{bottom:452.580000pt;}
.yde{bottom:454.324000pt;}
.y24c{bottom:455.689733pt;}
.y132{bottom:457.829200pt;}
.y110{bottom:458.043600pt;}
.y195{bottom:461.048400pt;}
.y156{bottom:462.162667pt;}
.y27f{bottom:462.248667pt;}
.y47{bottom:462.253467pt;}
.y8{bottom:462.519333pt;}
.y2b3{bottom:462.672533pt;}
.y176{bottom:463.103067pt;}
.y216{bottom:464.755867pt;}
.ydd{bottom:465.388267pt;}
.y1b5{bottom:465.827733pt;}
.y1e6{bottom:466.147733pt;}
.y24b{bottom:469.267067pt;}
.y7c{bottom:471.583733pt;}
.y10f{bottom:471.586933pt;}
.y194{bottom:474.523733pt;}
.y27e{bottom:475.576667pt;}
.y46{bottom:475.581467pt;}
.y7{bottom:475.852667pt;}
.y155{bottom:475.935333pt;}
.y2b2{bottom:475.989200pt;}
.y131{bottom:476.815867pt;}
.y175{bottom:476.839867pt;}
.y215{bottom:478.654533pt;}
.y1b4{bottom:479.280400pt;}
.y1e5{bottom:479.715467pt;}
.ydc{bottom:479.954533pt;}
.y24a{bottom:482.844400pt;}
.y10e{bottom:485.130267pt;}
.y7b{bottom:485.185600pt;}
.y193{bottom:488.002533pt;}
.y27d{bottom:488.904667pt;}
.y45{bottom:488.909467pt;}
.y6{bottom:489.186000pt;}
.y2b1{bottom:489.305867pt;}
.y130{bottom:489.349200pt;}
.y154{bottom:489.694000pt;}
.y174{bottom:490.576800pt;}
.y214{bottom:492.573733pt;}
.y1b3{bottom:492.736800pt;}
.y1e4{bottom:493.285067pt;}
.y249{bottom:496.419467pt;}
.ydb{bottom:498.514533pt;}
.y10d{bottom:498.673600pt;}
.y7a{bottom:498.778533pt;}
.y192{bottom:501.481333pt;}
.y44{bottom:502.237467pt;}
.y5{bottom:502.519333pt;}
.y2b0{bottom:502.622533pt;}
.y153{bottom:503.452667pt;}
.y173{bottom:504.314667pt;}
.y1b2{bottom:506.196800pt;}
.y213{bottom:506.468400pt;}
.y1e3{bottom:506.851067pt;}
.y248{bottom:509.988000pt;}
.y10c{bottom:512.220133pt;}
.y191{bottom:514.960133pt;}
.y43{bottom:515.570133pt;}
.y27c{bottom:515.584267pt;}
.y4{bottom:515.852667pt;}
.y2af{bottom:515.939200pt;}
.yda{bottom:517.074533pt;}
.y152{bottom:517.216000pt;}
.y172{bottom:518.050667pt;}
.y1b1{bottom:519.649467pt;}
.y12f{bottom:519.946800pt;}
.y212{bottom:520.363067pt;}
.y1e2{bottom:520.418800pt;}
.y247{bottom:523.565333pt;}
.y79{bottom:523.723200pt;}
.y10b{bottom:525.772800pt;}
.y190{bottom:528.442400pt;}
.y42{bottom:528.902800pt;}
.y27b{bottom:528.912267pt;}
.y2ae{bottom:529.255867pt;}
.y151{bottom:530.979333pt;}
.y1e1{bottom:533.986533pt;}
.y211{bottom:534.257733pt;}
.yd9{bottom:535.634533pt;}
.y246{bottom:537.142667pt;}
.y10a{bottom:539.316133pt;}
.y18f{bottom:541.917733pt;}
.y41{bottom:542.235600pt;}
.y27a{bottom:542.240267pt;}
.y2ad{bottom:542.572533pt;}
.y150{bottom:544.747333pt;}
.y1e0{bottom:547.554267pt;}
.y210{bottom:548.152400pt;}
.y20{bottom:548.652533pt;}
.y171{bottom:550.416267pt;}
.y245{bottom:550.720000pt;}
.y1b0{bottom:551.729200pt;}
.yb6{bottom:552.640000pt;}
.y109{bottom:552.859467pt;}
.yd8{bottom:554.194533pt;}
.y40{bottom:555.568267pt;}
.y2ac{bottom:555.889200pt;}
.y14f{bottom:558.506000pt;}
.y12e{bottom:559.890000pt;}
.y1df{bottom:561.122133pt;}
.y20f{bottom:562.047067pt;}
.y1f{bottom:563.052533pt;}
.y78{bottom:563.786533pt;}
.y1af{bottom:564.262533pt;}
.y244{bottom:564.295200pt;}
.y108{bottom:566.405867pt;}
.y3f{bottom:568.901067pt;}
.y170{bottom:568.976267pt;}
.y2ab{bottom:569.205867pt;}
.y14e{bottom:572.269333pt;}
.y12d{bottom:573.376533pt;}
.y18e{bottom:574.040400pt;}
.yd7{bottom:574.685200pt;}
.y1de{bottom:574.689867pt;}
.y20e{bottom:575.945867pt;}
.y77{bottom:577.388533pt;}
.y243{bottom:577.868000pt;}
.y107{bottom:579.952267pt;}
.yd5{bottom:580.951867pt;}
.y3e{bottom:582.233733pt;}
.y279{bottom:582.318533pt;}
.y2aa{bottom:582.522533pt;}
.y1ae{bottom:582.822533pt;}
.y14d{bottom:586.032667pt;}
.y18d{bottom:586.573733pt;}
.y12c{bottom:586.862933pt;}
.yd6{bottom:587.218533pt;}
.y16f{bottom:587.536267pt;}
.y1dd{bottom:588.259333pt;}
.y20d{bottom:589.852400pt;}
.y76{bottom:590.992267pt;}
.y242{bottom:591.445333pt;}
.yb5{bottom:592.601333pt;}
.y106{bottom:593.498800pt;}
.y16e{bottom:593.808267pt;}
.y1e{bottom:593.880800pt;}
.y1ad{bottom:595.355867pt;}
.y3d{bottom:595.566400pt;}
.y278{bottom:595.646533pt;}
.y2a9{bottom:595.839200pt;}
.y14c{bottom:599.796000pt;}
.y12b{bottom:600.349600pt;}
.y1dc{bottom:601.825333pt;}
.y20c{bottom:603.747067pt;}
.y75{bottom:604.592267pt;}
.y241{bottom:605.020533pt;}
.y18c{bottom:605.133733pt;}
.yb4{bottom:606.108533pt;}
.y105{bottom:607.045200pt;}
.y1d{bottom:608.280800pt;}
.y3c{bottom:608.908533pt;}
.y277{bottom:608.974533pt;}
.y2a8{bottom:609.155867pt;}
.y1ac{bottom:613.915867pt;}
.y20b{bottom:617.641733pt;}
.y74{bottom:618.194133pt;}
.y240{bottom:618.580267pt;}
.yb3{bottom:619.615600pt;}
.yd4{bottom:619.672267pt;}
.y3b{bottom:622.236533pt;}
.y276{bottom:622.302533pt;}
.y2a7{bottom:622.472533pt;}
.y18b{bottom:625.965733pt;}
.y1ab{bottom:626.449200pt;}
.y16d{bottom:630.920800pt;}
.y73{bottom:631.798000pt;}
.y23f{bottom:632.157600pt;}
.yd3{bottom:633.090933pt;}
.yb2{bottom:633.122667pt;}
.y1db{bottom:634.021733pt;}
.y3a{bottom:635.564533pt;}
.y275{bottom:635.630533pt;}
.y2a6{bottom:635.789200pt;}
.y1c{bottom:639.109200pt;}
.y104{bottom:639.489333pt;}
.y20a{bottom:642.881067pt;}
.y16c{bottom:644.656800pt;}
.y1aa{bottom:645.009200pt;}
.y72{bottom:645.398000pt;}
.y23e{bottom:645.734933pt;}
.yb1{bottom:646.629867pt;}
.y39{bottom:648.897333pt;}
.y274{bottom:648.958533pt;}
.y2a5{bottom:649.105867pt;}
.y1a9{bottom:651.281200pt;}
.y1da{bottom:652.581733pt;}
.y1b{bottom:653.509200pt;}
.y103{bottom:654.175333pt;}
.y18a{bottom:655.055333pt;}
.y71{bottom:658.999867pt;}
.y23d{bottom:659.312267pt;}
.yb0{bottom:660.136933pt;}
.y38{bottom:662.230000pt;}
.y273{bottom:662.286533pt;}
.y2a4{bottom:662.422533pt;}
.y1d9{bottom:671.141733pt;}
.y70{bottom:672.601733pt;}
.y102{bottom:672.735333pt;}
.y23c{bottom:672.889600pt;}
.yd2{bottom:672.961600pt;}
.yaf{bottom:673.639733pt;}
.y37{bottom:675.562667pt;}
.y272{bottom:675.614533pt;}
.y2a3{bottom:675.739200pt;}
.y1d8{bottom:677.413733pt;}
.y1a{bottom:682.445067pt;}
.y209{bottom:683.239067pt;}
.y16b{bottom:684.856133pt;}
.y6f{bottom:686.203600pt;}
.yd1{bottom:686.375867pt;}
.y23b{bottom:686.466933pt;}
.yae{bottom:687.149067pt;}
.y189{bottom:687.434667pt;}
.y1a8{bottom:688.112267pt;}
.y36{bottom:688.895467pt;}
.y271{bottom:688.942533pt;}
.y2a2{bottom:689.055867pt;}
.y101{bottom:691.295333pt;}
.y208{bottom:697.133733pt;}
.y16a{bottom:698.592133pt;}
.yd0{bottom:699.790133pt;}
.y6e{bottom:699.805467pt;}
.y23a{bottom:700.044267pt;}
.y9a{bottom:700.304000pt;}
.yad{bottom:700.658400pt;}
.y188{bottom:700.913467pt;}
.y35{bottom:702.228133pt;}
.y270{bottom:702.270533pt;}
.y2a1{bottom:702.372533pt;}
.y19{bottom:703.781067pt;}
.y100{bottom:709.855333pt;}
.y207{bottom:711.032533pt;}
.y169{bottom:712.328133pt;}
.ycf{bottom:713.204400pt;}
.y6d{bottom:713.407333pt;}
.y239{bottom:713.621600pt;}
.yac{bottom:714.165467pt;}
.y1d7{bottom:714.358000pt;}
.y187{bottom:714.392267pt;}
.y34{bottom:715.560933pt;}
.y26f{bottom:715.598533pt;}
.y2a0{bottom:715.689200pt;}
.y206{bottom:724.935333pt;}
.y168{bottom:726.064133pt;}
.yce{bottom:726.618800pt;}
.y6c{bottom:727.009333pt;}
.y238{bottom:727.196667pt;}
.yab{bottom:727.672667pt;}
.y186{bottom:727.871067pt;}
.y1d6{bottom:727.924000pt;}
.y1a7{bottom:728.028267pt;}
.yff{bottom:728.415333pt;}
.y33{bottom:728.893600pt;}
.y26e{bottom:728.926533pt;}
.y29f{bottom:729.005867pt;}
.y99{bottom:733.918933pt;}
.y205{bottom:738.830000pt;}
.y167{bottom:739.801067pt;}
.ycd{bottom:740.033067pt;}
.y6b{bottom:740.611200pt;}
.y237{bottom:740.769600pt;}
.yaa{bottom:741.179733pt;}
.y185{bottom:741.353333pt;}
.y1a6{bottom:741.484667pt;}
.y32{bottom:742.231067pt;}
.y26d{bottom:742.254533pt;}
.y29e{bottom:742.322533pt;}
.yfe{bottom:746.975333pt;}
.y98{bottom:748.636267pt;}
.y204{bottom:752.728800pt;}
.y21{bottom:752.846800pt;}
.ycc{bottom:753.442267pt;}
.y166{bottom:753.538000pt;}
.y6a{bottom:754.213200pt;}
.y236{bottom:754.346933pt;}
.ya9{bottom:754.686933pt;}
.y184{bottom:754.828667pt;}
.y1a5{bottom:754.944533pt;}
.y31{bottom:755.559067pt;}
.y26c{bottom:755.582533pt;}
.y29d{bottom:755.639200pt;}
.y97{bottom:763.334533pt;}
.yfd{bottom:765.535333pt;}
.y203{bottom:766.631600pt;}
.y165{bottom:767.274933pt;}
.y69{bottom:767.815067pt;}
.y235{bottom:767.922000pt;}
.y1d5{bottom:767.953333pt;}
.ya8{bottom:768.187467pt;}
.y183{bottom:768.307333pt;}
.y1a4{bottom:768.397200pt;}
.y30{bottom:768.891733pt;}
.y26b{bottom:768.910533pt;}
.y29c{bottom:768.955867pt;}
.yfc{bottom:771.807333pt;}
.y96{bottom:778.056533pt;}
.y202{bottom:780.526267pt;}
.y164{bottom:781.013733pt;}
.y68{bottom:781.418800pt;}
.y234{bottom:781.495067pt;}
.y1d4{bottom:781.519333pt;}
.ya7{bottom:781.696800pt;}
.y182{bottom:781.786267pt;}
.y1a3{bottom:781.853600pt;}
.ycb{bottom:781.979600pt;}
.y2f{bottom:782.233867pt;}
.y26a{bottom:782.238533pt;}
.y29b{bottom:782.272533pt;}
.y3{bottom:789.529200pt;}
.y95{bottom:792.778533pt;}
.y201{bottom:794.425067pt;}
.y163{bottom:794.749733pt;}
.y67{bottom:795.018800pt;}
.y233{bottom:795.072400pt;}
.y1d3{bottom:795.087067pt;}
.ya6{bottom:795.206133pt;}
.y181{bottom:795.264933pt;}
.y1a2{bottom:795.309867pt;}
.yca{bottom:795.394000pt;}
.y2e{bottom:795.561867pt;}
.y269{bottom:795.566533pt;}
.y29a{bottom:795.589200pt;}
.y2a{bottom:802.813333pt;}
.y94{bottom:807.500533pt;}
.y200{bottom:808.327867pt;}
.y162{bottom:808.485733pt;}
.y66{bottom:808.620667pt;}
.y232{bottom:808.647467pt;}
.y1d2{bottom:808.654800pt;}
.ya5{bottom:808.715467pt;}
.yfb{bottom:808.734800pt;}
.y180{bottom:808.743867pt;}
.y1a1{bottom:808.766267pt;}
.yc9{bottom:808.808267pt;}
.y2d{bottom:808.889867pt;}
.y268{bottom:808.894533pt;}
.y299{bottom:808.905867pt;}
.y2c{bottom:822.222533pt;}
.yfa{bottom:822.278133pt;}
.y2{bottom:836.586933pt;}
.y2b{bottom:861.780400pt;}
.y65{bottom:861.919333pt;}
.h9{height:24.266667pt;}
.h2{height:33.973333pt;}
.he{height:36.030933pt;}
.hd{height:36.586667pt;}
.hf{height:36.810667pt;}
.h3{height:40.998933pt;}
.h4{height:41.813333pt;}
.h5{height:42.069333pt;}
.hb{height:44.426667pt;}
.hc{height:44.500000pt;}
.ha{height:44.698667pt;}
.h8{height:47.040000pt;}
.h14{height:49.501333pt;}
.h7{height:57.845333pt;}
.h12{height:66.858667pt;}
.h11{height:67.114667pt;}
.h6{height:73.173333pt;}
.h13{height:91.946667pt;}
.h10{height:92.202667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x29{left:61.764267pt;}
.x27{left:65.177600pt;}
.x42{left:66.682533pt;}
.x3{left:68.284933pt;}
.xb{left:71.811067pt;}
.x2a{left:73.625600pt;}
.x37{left:74.569467pt;}
.x25{left:76.106533pt;}
.x28{left:78.265600pt;}
.x3c{left:79.563467pt;}
.x4{left:81.481200pt;}
.x38{left:82.772133pt;}
.xf{left:85.785600pt;}
.x41{left:89.263867pt;}
.x2e{left:92.459733pt;}
.x33{left:99.046400pt;}
.x11{left:102.785600pt;}
.x2d{left:104.314400pt;}
.x39{left:109.902933pt;}
.x3a{left:111.819467pt;}
.x26{left:114.270400pt;}
.x5{left:118.702533pt;}
.x6{left:120.541600pt;}
.x10{left:122.834667pt;}
.x34{left:125.769600pt;}
.xe{left:127.359600pt;}
.x1b{left:141.732267pt;}
.x2f{left:142.792267pt;}
.x35{left:151.836267pt;}
.x36{left:153.300133pt;}
.xd{left:157.824133pt;}
.x30{left:160.392933pt;}
.x12{left:162.942933pt;}
.x1a{left:165.973333pt;}
.x3d{left:167.555600pt;}
.x7{left:168.873467pt;}
.x24{left:176.692933pt;}
.x19{left:181.098667pt;}
.x14{left:182.000000pt;}
.x13{left:183.478933pt;}
.x3e{left:189.871867pt;}
.x1c{left:197.689333pt;}
.x1f{left:200.090800pt;}
.xa{left:206.494400pt;}
.x31{left:212.379733pt;}
.x23{left:216.080133pt;}
.x20{left:218.362800pt;}
.x1d{left:220.453467pt;}
.x21{left:222.106800pt;}
.x9{left:223.395067pt;}
.x22{left:224.666800pt;}
.x8{left:227.577600pt;}
.x15{left:248.173200pt;}
.x2b{left:259.204267pt;}
.x16{left:264.032000pt;}
.x17{left:321.738667pt;}
.x43{left:330.897600pt;}
.x1e{left:359.600133pt;}
.xc{left:377.120000pt;}
.x18{left:405.802667pt;}
.x2{left:430.622533pt;}
.x3f{left:443.450533pt;}
.x2c{left:457.806933pt;}
.x3b{left:511.115467pt;}
.x40{left:518.021200pt;}
.x32{left:536.731733pt;}
}




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